Skip to content

Commit f79fb7f

Browse files
committed
ci: regenerated with OpenAPI Doc 0.2.0, Speakeay CLI 1.0.0
1 parent 119d7d4 commit f79fb7f

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

RELEASES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22

3-
## Version 1.0.0
3+
## Version 1.0.1
44
### Changes
55
Based on:
66
- OpenAPI Doc 0.2.0 https://docs.speakeasyapi.dev/openapi.yaml
77
- Speakeasy CLI 1.0.0 https://github.com/speakeasy-api/speakeasy
88
### Releases
9-
- [NPM v1.0.0] https://www.npmjs.com/package/@speakeasy-api/speakeasy-client-sdk-typescript/v/1.0.0 - .
9+
- [NPM v1.0.1] https://www.npmjs.com/package/@speakeasy-api/speakeasy-client-sdk-typescript/v/1.0.1 - .

gen.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
management:
2-
openapi-checksum: 85121b09180ffa7f639ebd829f945718
2+
openapi-checksum: 00ed1d6e3f9aae0492c8f1c9fa66e916
33
openapi-version: 0.2.0
44
speakeasy-version: 1.0.0
55
typescript:
6-
version: 1.0.0
6+
version: 1.0.1
77
packagename: '@speakeasy-api/speakeasy-client-sdk-typescript'
88
author: Speakeasy
99
telemetryenabled: null

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@speakeasy-api/speakeasy-client-sdk-typescript",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"author": "Speakeasy",
55
"scripts": {
66
"prepare": "tsc --build"

src/sdk/plugins.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export class Plugins {
7272
}
7373

7474
const baseURL: string = this._serverURL;
75-
const url: string = utils.generateURL(baseURL, "/v1/plugin/{pluginID}", req.pathParams);
75+
const url: string = utils.generateURL(baseURL, "/v1/plugins/{pluginID}", req.pathParams);
7676

7777
const client: AxiosInstance = this._securityClient!;
7878

@@ -126,7 +126,7 @@ export class Plugins {
126126
}
127127

128128
const baseURL: string = this._serverURL;
129-
const url: string = baseURL.replace(/\/$/, "") + "/v1/plugin";
129+
const url: string = baseURL.replace(/\/$/, "") + "/v1/plugins";
130130

131131
let [reqBodyHeaders, reqBody]: [object, any] = [{}, {}];
132132

src/sdk/sdk.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export class SDK {
4040
public _securityClient: AxiosInstance;
4141
public _serverURL: string;
4242
private _language = "typescript";
43-
private _sdkVersion = "1.0.0";
43+
private _sdkVersion = "1.0.1";
4444
private _genVersion = "1.0.0";
4545

4646
constructor(props: SDKProps) {

0 commit comments

Comments
 (0)