ci: regenerated with OpenAPI Doc latest, Speakeasy CLI 1.399.2

This commit is contained in:
speakeasybot
2024-09-19 00:25:03 +00:00
parent b410d7ca44
commit 1c1295f8d4
7 changed files with 26 additions and 14 deletions

View File

@@ -3,10 +3,10 @@ id: 599a9576-4665-431e-be1e-44cc13ef28aa
management:
docChecksum: dd4d04e62622de8f631720b5be68964d
docVersion: latest
speakeasyVersion: 1.396.9
generationVersion: 2.415.7
releaseVersion: 0.10.1
configChecksum: 73f9f8473715d7d4593a2b6c1ccdb784
speakeasyVersion: 1.399.2
generationVersion: 2.416.6
releaseVersion: 0.10.2
configChecksum: 3588184c143dbcd45ca6ac5634c8bc94
repoURL: https://github.com/LukeHagar/discoursejs.git
repoSubDirectory: .
installationURL: https://github.com/LukeHagar/discoursejs
@@ -16,7 +16,7 @@ features:
additionalDependencies: 0.1.0
additionalProperties: 0.1.1
constsAndDefaults: 0.1.11
core: 3.17.3
core: 3.17.4
defaultEnabledRetries: 0.1.0
deprecations: 2.81.1
enumUnions: 0.1.0

View File

@@ -309,3 +309,13 @@ Based on:
- [typescript v0.10.1] .
### Releases
- [NPM v0.10.1] https://www.npmjs.com/package/@lukehagar/discoursejs/v/0.10.1 - .
## 2024-09-19 00:24:16
### Changes
Based on:
- OpenAPI Doc latest
- Speakeasy CLI 1.399.2 (2.416.6) https://github.com/speakeasy-api/speakeasy
### Generated
- [typescript v0.10.2] .
### Releases
- [NPM v0.10.2] https://www.npmjs.com/package/@lukehagar/discoursejs/v/0.10.2 - .

View File

@@ -11,7 +11,7 @@ generation:
auth:
oAuth2ClientCredentialsEnabled: false
typescript:
version: 0.10.1
version: 0.10.2
additionalDependencies:
dependencies: {}
devDependencies: {}

View File

@@ -2,7 +2,7 @@
{
"name": "@lukehagar/discoursejs",
"version": "0.10.1",
"version": "0.10.2",
"exports": {
".": "./src/index.ts",
"./sdk/models/errors": "./src/sdk/models/errors/index.ts",

View File

@@ -1,6 +1,6 @@
{
"name": "@lukehagar/discoursejs",
"version": "0.10.1",
"version": "0.10.2",
"author": "LukeHagar",
"main": "./index.js",
"sideEffects": false,

View File

@@ -62,8 +62,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
export const SDK_METADATA = {
language: "typescript",
openapiDocVersion: "latest",
sdkVersion: "0.10.1",
genVersion: "2.415.7",
sdkVersion: "0.10.2",
genVersion: "2.416.6",
userAgent:
"speakeasy-sdk/typescript 0.10.1 2.415.7 latest @lukehagar/discoursejs",
"speakeasy-sdk/typescript 0.10.2 2.416.6 latest @lukehagar/discoursejs",
} as const;

View File

@@ -8,7 +8,7 @@ import { blobLikeSchema } from "../../types/blobs.js";
import { ClosedEnum } from "../../types/enums.js";
export type FileT = {
content: ReadableStream<Uint8Array> | Blob | ArrayBuffer;
content: ReadableStream<Uint8Array> | Blob | ArrayBuffer | Uint8Array;
fileName: string;
};
@@ -61,13 +61,14 @@ export const FileT$inboundSchema: z.ZodType<FileT, z.ZodTypeDef, unknown> = z
z.instanceof(ReadableStream<Uint8Array>),
z.instanceof(Blob),
z.instanceof(ArrayBuffer),
z.instanceof(Uint8Array),
]),
fileName: z.string(),
});
/** @internal */
export type FileT$Outbound = {
content: ReadableStream<Uint8Array> | Blob | ArrayBuffer;
content: ReadableStream<Uint8Array> | Blob | ArrayBuffer | Uint8Array;
fileName: string;
};
@@ -81,6 +82,7 @@ export const FileT$outboundSchema: z.ZodType<
z.instanceof(ReadableStream<Uint8Array>),
z.instanceof(Blob),
z.instanceof(ArrayBuffer),
z.instanceof(Uint8Array),
]),
fileName: z.string(),
});