mirror of
https://github.com/LukeHagar/discoursejs.git
synced 2025-12-06 04:19:37 +00:00
ci: regenerated with OpenAPI Doc latest, Speakeasy CLI 1.396.9
This commit is contained in:
@@ -3,10 +3,10 @@ id: 599a9576-4665-431e-be1e-44cc13ef28aa
|
||||
management:
|
||||
docChecksum: dd4d04e62622de8f631720b5be68964d
|
||||
docVersion: latest
|
||||
speakeasyVersion: 1.396.6
|
||||
generationVersion: 2.415.6
|
||||
releaseVersion: 0.10.0
|
||||
configChecksum: e3f3c876ebbb6b6bd0d485f0c5cba545
|
||||
speakeasyVersion: 1.396.9
|
||||
generationVersion: 2.415.7
|
||||
releaseVersion: 0.10.1
|
||||
configChecksum: 73f9f8473715d7d4593a2b6c1ccdb784
|
||||
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.2
|
||||
core: 3.17.3
|
||||
defaultEnabledRetries: 0.1.0
|
||||
deprecations: 2.81.1
|
||||
enumUnions: 0.1.0
|
||||
|
||||
12
RELEASES.md
12
RELEASES.md
@@ -298,4 +298,14 @@ Based on:
|
||||
### Generated
|
||||
- [typescript v0.10.0] .
|
||||
### Releases
|
||||
- [NPM v0.10.0] https://www.npmjs.com/package/@lukehagar/discoursejs/v/0.10.0 - .
|
||||
- [NPM v0.10.0] https://www.npmjs.com/package/@lukehagar/discoursejs/v/0.10.0 - .
|
||||
|
||||
## 2024-09-14 00:23:24
|
||||
### Changes
|
||||
Based on:
|
||||
- OpenAPI Doc latest
|
||||
- Speakeasy CLI 1.396.9 (2.415.7) https://github.com/speakeasy-api/speakeasy
|
||||
### Generated
|
||||
- [typescript v0.10.1] .
|
||||
### Releases
|
||||
- [NPM v0.10.1] https://www.npmjs.com/package/@lukehagar/discoursejs/v/0.10.1 - .
|
||||
2
gen.yaml
2
gen.yaml
@@ -11,7 +11,7 @@ generation:
|
||||
auth:
|
||||
oAuth2ClientCredentialsEnabled: false
|
||||
typescript:
|
||||
version: 0.10.0
|
||||
version: 0.10.1
|
||||
additionalDependencies:
|
||||
dependencies: {}
|
||||
devDependencies: {}
|
||||
|
||||
2
jsr.json
2
jsr.json
@@ -2,7 +2,7 @@
|
||||
|
||||
{
|
||||
"name": "@lukehagar/discoursejs",
|
||||
"version": "0.10.0",
|
||||
"version": "0.10.1",
|
||||
"exports": {
|
||||
".": "./src/index.ts",
|
||||
"./sdk/models/errors": "./src/sdk/models/errors/index.ts",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@lukehagar/discoursejs",
|
||||
"version": "0.10.0",
|
||||
"version": "0.10.1",
|
||||
"author": "LukeHagar",
|
||||
"main": "./index.js",
|
||||
"sideEffects": false,
|
||||
@@ -18,7 +18,6 @@
|
||||
"zod": ">= 3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^18.19.3",
|
||||
"@typescript-eslint/eslint-plugin": "^7.7.1",
|
||||
"@typescript-eslint/parser": "^7.7.1",
|
||||
"eslint": "^8.57.0",
|
||||
|
||||
@@ -62,8 +62,8 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
||||
export const SDK_METADATA = {
|
||||
language: "typescript",
|
||||
openapiDocVersion: "latest",
|
||||
sdkVersion: "0.10.0",
|
||||
genVersion: "2.415.6",
|
||||
sdkVersion: "0.10.1",
|
||||
genVersion: "2.415.7",
|
||||
userAgent:
|
||||
"speakeasy-sdk/typescript 0.10.0 2.415.6 latest @lukehagar/discoursejs",
|
||||
"speakeasy-sdk/typescript 0.10.1 2.415.7 latest @lukehagar/discoursejs",
|
||||
} as const;
|
||||
|
||||
@@ -8,7 +8,7 @@ import { blobLikeSchema } from "../../types/blobs.js";
|
||||
import { ClosedEnum } from "../../types/enums.js";
|
||||
|
||||
export type FileT = {
|
||||
content: ReadableStream<Uint8Array> | Blob | ArrayBuffer | Buffer;
|
||||
content: ReadableStream<Uint8Array> | Blob | ArrayBuffer;
|
||||
fileName: string;
|
||||
};
|
||||
|
||||
@@ -61,14 +61,13 @@ export const FileT$inboundSchema: z.ZodType<FileT, z.ZodTypeDef, unknown> = z
|
||||
z.instanceof(ReadableStream<Uint8Array>),
|
||||
z.instanceof(Blob),
|
||||
z.instanceof(ArrayBuffer),
|
||||
z.instanceof(Buffer),
|
||||
]),
|
||||
fileName: z.string(),
|
||||
});
|
||||
|
||||
/** @internal */
|
||||
export type FileT$Outbound = {
|
||||
content: ReadableStream<Uint8Array> | Blob | ArrayBuffer | Buffer;
|
||||
content: ReadableStream<Uint8Array> | Blob | ArrayBuffer;
|
||||
fileName: string;
|
||||
};
|
||||
|
||||
@@ -82,7 +81,6 @@ export const FileT$outboundSchema: z.ZodType<
|
||||
z.instanceof(ReadableStream<Uint8Array>),
|
||||
z.instanceof(Blob),
|
||||
z.instanceof(ArrayBuffer),
|
||||
z.instanceof(Buffer),
|
||||
]),
|
||||
fileName: z.string(),
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user