diff --git a/.speakeasy/workflow.lock b/.speakeasy/workflow.lock index 927f9a4..b8cb382 100644 --- a/.speakeasy/workflow.lock +++ b/.speakeasy/workflow.lock @@ -2,8 +2,8 @@ speakeasyVersion: 1.335.2 sources: source1: sourceNamespace: source-1 - sourceRevisionDigest: sha256:eabb4a6af01606d6e6fb07e6381921ecc0b25e031e2d172afa497a17aa8d4e1b - sourceBlobDigest: sha256:614ef27789e2ab0d262263d1dbf21398cb6240c4c4173bddad2fa3fcff4cada0 + sourceRevisionDigest: sha256:ad99f5e6b321b7dbf7afd0e61263ec3f00ab6b031d6380af771ebda63e49ec9c + sourceBlobDigest: sha256:21e43da8e397352630177b567bb8e3620e6ed5ac072b262fc56305a03d8b204f tags: - latest - main @@ -23,9 +23,9 @@ targets: lending: source: source1 sourceNamespace: source-1 - sourceRevisionDigest: sha256:70427d8936519bbb31834da18b6a64ce50e62c8caa39ab27fadf1279d25bb412 - sourceBlobDigest: sha256:41d6992001501dc4f8757117e3902f01178807fd20fbd9ce3a0b33ac2a99e283 - outLocation: ./lending + sourceRevisionDigest: sha256:ad99f5e6b321b7dbf7afd0e61263ec3f00ab6b031d6380af771ebda63e49ec9c + sourceBlobDigest: sha256:21e43da8e397352630177b567bb8e3620e6ed5ac072b262fc56305a03d8b204f + outLocation: lending workflow: workflowVersion: 1.0.0 speakeasyVersion: latest @@ -39,7 +39,7 @@ workflow: accounting: target: typescript source: source1 - output: ./accounting + output: accounting publish: npm: token: $npm_token @@ -53,7 +53,7 @@ workflow: lending: target: typescript source: source1 - output: ./lending + output: lending publish: npm: token: $npm_token diff --git a/lending/.speakeasy/gen.lock b/lending/.speakeasy/gen.lock index 3aaedff..3bd7a08 100755 --- a/lending/.speakeasy/gen.lock +++ b/lending/.speakeasy/gen.lock @@ -5,8 +5,8 @@ management: docVersion: 1.0.0 speakeasyVersion: 1.335.2 generationVersion: 2.372.3 - releaseVersion: 0.1.0 - configChecksum: 83b6549f9c6e71f0f8c0c20aae613df1 + releaseVersion: 0.1.1 + configChecksum: ff630174fc11b8698f6c0ad3c50a61a7 repoURL: https://github.com/ryan-timothy-albert/sample-ts-monorepo.git repoSubDirectory: lending installationURL: https://gitpkg.now.sh/ryan-timothy-albert/sample-ts-monorepo/lending diff --git a/lending/.speakeasy/gen.yaml b/lending/.speakeasy/gen.yaml index 3c99de7..a5cbc3e 100644 --- a/lending/.speakeasy/gen.yaml +++ b/lending/.speakeasy/gen.yaml @@ -12,7 +12,7 @@ generation: auth: oAuth2ClientCredentialsEnabled: true typescript: - version: 0.1.0 + version: 0.1.1 additionalDependencies: dependencies: {} devDependencies: {} diff --git a/lending/RELEASES.md b/lending/RELEASES.md index 4b6fc1b..6d6b9c6 100644 --- a/lending/RELEASES.md +++ b/lending/RELEASES.md @@ -138,4 +138,14 @@ Based on: ### Generated - [typescript v0.1.0] lending ### Releases -- [NPM v0.1.0] https://www.npmjs.com/package/ryan-lending/v/0.1.0 - lending \ No newline at end of file +- [NPM v0.1.0] https://www.npmjs.com/package/ryan-lending/v/0.1.0 - lending + +## 2024-07-15 19:45:11 +### Changes +Based on: +- OpenAPI Doc +- Speakeasy CLI 1.335.2 (2.372.3) https://github.com/speakeasy-api/speakeasy +### Generated +- [typescript v0.1.1] lending +### Releases +- [NPM v0.1.1] https://www.npmjs.com/package/ryan-lending/v/0.1.1 - lending \ No newline at end of file diff --git a/lending/jsr.json b/lending/jsr.json index 2d3b336..a20d207 100644 --- a/lending/jsr.json +++ b/lending/jsr.json @@ -2,7 +2,7 @@ { "name": "ryan-lending", - "version": "0.1.0", + "version": "0.1.1", "exports": { ".": "./src/index.ts", "./models/errors": "./src/models/errors/index.ts", diff --git a/lending/package-lock.json b/lending/package-lock.json index d119e99..27d0634 100644 --- a/lending/package-lock.json +++ b/lending/package-lock.json @@ -1,12 +1,12 @@ { "name": "ryan-lending", - "version": "0.1.0", + "version": "0.1.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ryan-lending", - "version": "0.1.0", + "version": "0.1.1", "devDependencies": { "@typescript-eslint/eslint-plugin": "^7.7.1", "@typescript-eslint/parser": "^7.7.1", diff --git a/lending/package.json b/lending/package.json index 6c1af26..54193e8 100644 --- a/lending/package.json +++ b/lending/package.json @@ -1,6 +1,6 @@ { "name": "ryan-lending", - "version": "0.1.0", + "version": "0.1.1", "author": "ryan-timothy-albert", "main": "./index.js", "sideEffects": false, diff --git a/lending/src/lib/config.ts b/lending/src/lib/config.ts index 5873e3a..4b26c5a 100644 --- a/lending/src/lib/config.ts +++ b/lending/src/lib/config.ts @@ -48,7 +48,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null { export const SDK_METADATA = { language: "typescript", openapiDocVersion: "1.0.0", - sdkVersion: "0.1.0", + sdkVersion: "0.1.1", genVersion: "2.372.3", - userAgent: "speakeasy-sdk/typescript 0.1.0 2.372.3 1.0.0 ryan-lending", + userAgent: "speakeasy-sdk/typescript 0.1.1 2.372.3 1.0.0 ryan-lending", } as const;