diff --git a/.speakeasy/workflow.lock b/.speakeasy/workflow.lock index 7430856..1cc34d7 100644 --- a/.speakeasy/workflow.lock +++ b/.speakeasy/workflow.lock @@ -2,8 +2,8 @@ speakeasyVersion: 1.335.2 sources: source1: sourceNamespace: source-1 - sourceRevisionDigest: sha256:75560e49e43997686d2c4a213e10c7386f4f3f993c2c2bbbd782ef62a6d6dc21 - sourceBlobDigest: sha256:af9c3817a50dedbaec6fb0bb6e8f64526954a036ae80417395d1f739ea9d81ee + sourceRevisionDigest: sha256:5f48817c3c11c1e7106d72b6defd8769073fa35bbd18c6f6ed57a1ec79445c0d + sourceBlobDigest: sha256:a32b8aa44c94b9f36570a301587ee1485bf1f5ad957d4908c8da646b61ce8aef tags: - latest - main @@ -23,9 +23,9 @@ targets: lending: source: source1 sourceNamespace: source-1 - sourceRevisionDigest: sha256:75560e49e43997686d2c4a213e10c7386f4f3f993c2c2bbbd782ef62a6d6dc21 - sourceBlobDigest: sha256:af9c3817a50dedbaec6fb0bb6e8f64526954a036ae80417395d1f739ea9d81ee - outLocation: ./lending + sourceRevisionDigest: sha256:5f48817c3c11c1e7106d72b6defd8769073fa35bbd18c6f6ed57a1ec79445c0d + sourceBlobDigest: sha256:a32b8aa44c94b9f36570a301587ee1485bf1f5ad957d4908c8da646b61ce8aef + 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 @@ -50,7 +50,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 2635ec6..dc7329b 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.2 - configChecksum: 85b941624ed476982498ef2d3cdf897a + releaseVersion: 0.1.3 + configChecksum: f6cf680c51fc29e951fb98b83bd4846e 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 9d73234..06059de 100644 --- a/lending/.speakeasy/gen.yaml +++ b/lending/.speakeasy/gen.yaml @@ -12,7 +12,7 @@ generation: auth: oAuth2ClientCredentialsEnabled: true typescript: - version: 0.1.2 + version: 0.1.3 additionalDependencies: dependencies: {} devDependencies: {} diff --git a/lending/RELEASES.md b/lending/RELEASES.md index b486919..d79f66e 100644 --- a/lending/RELEASES.md +++ b/lending/RELEASES.md @@ -158,4 +158,14 @@ Based on: ### Generated - [typescript v0.1.2] lending ### Releases -- [NPM v0.1.2] https://www.npmjs.com/package/ryan-lending/v/0.1.2 - lending \ No newline at end of file +- [NPM v0.1.2] https://www.npmjs.com/package/ryan-lending/v/0.1.2 - lending + +## 2024-07-15 21:47:29 +### Changes +Based on: +- OpenAPI Doc +- Speakeasy CLI 1.335.2 (2.372.3) https://github.com/speakeasy-api/speakeasy +### Generated +- [typescript v0.1.3] lending +### Releases +- [NPM v0.1.3] https://www.npmjs.com/package/ryan-lending/v/0.1.3 - lending \ No newline at end of file diff --git a/lending/jsr.json b/lending/jsr.json index a1d6570..f7da130 100644 --- a/lending/jsr.json +++ b/lending/jsr.json @@ -2,7 +2,7 @@ { "name": "ryan-lending", - "version": "0.1.2", + "version": "0.1.3", "exports": { ".": "./src/index.ts", "./models/errors": "./src/models/errors/index.ts", diff --git a/lending/package-lock.json b/lending/package-lock.json index a8348f0..8d8db92 100644 --- a/lending/package-lock.json +++ b/lending/package-lock.json @@ -1,12 +1,12 @@ { "name": "ryan-lending", - "version": "0.1.2", + "version": "0.1.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ryan-lending", - "version": "0.1.2", + "version": "0.1.3", "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 35ad10c..ae0c375 100644 --- a/lending/package.json +++ b/lending/package.json @@ -1,6 +1,6 @@ { "name": "ryan-lending", - "version": "0.1.2", + "version": "0.1.3", "author": "ryan-timothy-albert", "main": "./index.js", "sideEffects": false, diff --git a/lending/src/lib/config.ts b/lending/src/lib/config.ts index 5f609de..d5a7c78 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.2", + sdkVersion: "0.1.3", genVersion: "2.372.3", - userAgent: "speakeasy-sdk/typescript 0.1.2 2.372.3 1.0.0 ryan-lending", + userAgent: "speakeasy-sdk/typescript 0.1.3 2.372.3 1.0.0 ryan-lending", } as const;