Skip to content

Commit

Permalink
ci: regenerated with OpenAPI Doc 1.0, Speakeay CLI 1.30.1
Browse files Browse the repository at this point in the history
  • Loading branch information
speakeasybot committed May 12, 2023
1 parent da8abd3 commit 67c4b84
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 12 deletions.
10 changes: 9 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,4 +188,12 @@ Based on:
- OpenAPI Doc 1.0 https://prod.speakeasyapi.dev/v1/apis/Structure/version/1.0.0/schema/download
- Speakeasy CLI 1.30.0 (2.26.3) https://github.com/speakeasy-api/speakeasy
### Releases
- [NPM v0.9.3] https://www.npmjs.com/package/structure-ac/v/0.9.3 - .
- [NPM v0.9.3] https://www.npmjs.com/package/structure-ac/v/0.9.3 - .

## 2023-05-12 00:35:17
### Changes
Based on:
- OpenAPI Doc 1.0 https://prod.speakeasyapi.dev/v1/apis/Structure/version/1.0.0/schema/download
- Speakeasy CLI 1.30.1 (2.26.4) https://github.com/speakeasy-api/speakeasy
### Releases
- [NPM v0.9.4] https://www.npmjs.com/package/structure-ac/v/0.9.4 - .
6 changes: 3 additions & 3 deletions gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ configVersion: 1.0.0
management:
docChecksum: e0bf2d205ca94a0d32bd91d6ea558d5b
docVersion: "1.0"
speakeasyVersion: 1.30.0
generationVersion: 2.26.3
speakeasyVersion: 1.30.1
generationVersion: 2.26.4
generation:
telemetryEnabled: false
sdkClassName: structure
singleTagPerOp: false
typescript:
version: 0.9.3
version: 0.9.4
author: structure
maxMethodParams: 0
packageName: structure-ac
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "structure-ac",
"version": "0.9.3",
"version": "0.9.4",
"author": "structure",
"scripts": {
"prepare": "tsc --build"
Expand Down
4 changes: 2 additions & 2 deletions src/internal/utils/queryparams.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ function noExplodeSerializer(params: Record<string, any>, delimiter = ","): stri

if (qpDecorator == null) return;

return `${paramKey},${valToString(value[paramKey])}`;
return `${paramKey}${delimiter}${valToString(value[paramKey])}`;
})
.join(",");
.join(delimiter);
query.push(`${key}=${encodeURIComponent(values)}`);
}
});
Expand Down
2 changes: 1 addition & 1 deletion src/internal/utils/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export interface PropInfo {
}

function isSpeakeasyBase(type: any): boolean {
return type && Object.getPrototypeOf(type)?.name == "SpeakeasyBase";
return type && Object.getPrototypeOf(type)?.name == SpeakeasyBase.name;
}

function handleArray(value: any, elemType: any, elemDepth: number): any {
Expand Down
4 changes: 2 additions & 2 deletions src/sdk/sdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ export class Structure {
public _securityClient: AxiosInstance;
public _serverURL: string;
private _language = "typescript";
private _sdkVersion = "0.9.3";
private _genVersion = "2.26.3";
private _sdkVersion = "0.9.4";
private _genVersion = "2.26.4";
private _globals: any;

constructor(props?: SDKProps) {
Expand Down

0 comments on commit 67c4b84

Please sign in to comment.