Skip to content

Commit 671dde1

Browse files
Fix typo in ConfigurePropResponse (#297)
The correct name for the "string options" field is `stringOptions` instead of `string_options`. This solves issue #271 --------- Co-authored-by: Jay Vercellone <jay@pipedream.com>
1 parent 49eeb03 commit 671dde1

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pipedream/sdk",
3-
"version": "2.3.4",
3+
"version": "2.3.5",
44
"private": false,
55
"repository": "github:PipedreamHQ/pipedream-sdk-typescript",
66
"type": "commonjs",

src/api/resources/apps/client/requests/AppsListRequest.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ export interface AppsListRequest {
3131
sortDirection?: Pipedream.AppsListRequestSortDirection;
3232
/** Only return apps in these categories */
3333
categoryIds?: string | string[];
34-
/** Filter to apps that have components (actions or triggers) */
34+
/** Only return apps that have components (actions or triggers) */
3535
hasComponents?: boolean;
36-
/** Filter to apps that have actions */
36+
/** Only return apps that have actions */
3737
hasActions?: boolean;
38-
/** Filter to apps that have triggers */
38+
/** Only return apps that have triggers */
3939
hasTriggers?: boolean;
4040
}

src/serialization/types/ConfigurePropResponse.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,7 @@ export const ConfigurePropResponse: core.serialization.ObjectSchema<
1111
Pipedream.ConfigurePropResponse
1212
> = core.serialization.object({
1313
options: ConfigurePropOptions.optional(),
14-
stringOptions: core.serialization.property(
15-
"string_options",
16-
core.serialization.list(core.serialization.string()).optional(),
17-
),
14+
stringOptions: core.serialization.list(core.serialization.string()).optional(),
1815
observations: core.serialization.list(Observation).optional(),
1916
context: core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(),
2017
errors: core.serialization.list(core.serialization.string()).optional(),
@@ -23,7 +20,7 @@ export const ConfigurePropResponse: core.serialization.ObjectSchema<
2320
export declare namespace ConfigurePropResponse {
2421
export interface Raw {
2522
options?: (ConfigurePropOptions.Raw | undefined) | null;
26-
string_options?: string[] | null;
23+
stringOptions?: string[] | null;
2724
observations?: Observation.Raw[] | null;
2825
context?: Record<string, unknown> | null;
2926
errors?: string[] | null;

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const SDK_VERSION = "2.3.4";
1+
export const SDK_VERSION = "2.3.5";

0 commit comments

Comments
 (0)