Skip to content

Commit 8c5cae2

Browse files
committed
SDK regeneration
1 parent 09d2b32 commit 8c5cae2

File tree

95 files changed

+125
-687
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+125
-687
lines changed

src/api/resources/actions/client/requests/RunActionOpts.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ export interface RunActionOpts {
1616
id: string;
1717
/** The external user ID */
1818
externalUserId: string;
19-
configuredProps?: Pipedream.ConfiguredProps;
19+
/** The configured properties for the action */
20+
configuredProps?: Record<string, unknown>;
2021
/** The ID for dynamic props */
2122
dynamicPropsId?: string;
2223
stashId?: Pipedream.RunActionOptsStashId;

src/api/resources/deployedTriggers/client/requests/UpdateTriggerOpts.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
* This file was auto-generated by Fern from our API Definition.
33
*/
44

5-
import * as Pipedream from "../../../../index.js";
6-
75
/**
86
* @example
97
* {
@@ -15,7 +13,8 @@ export interface UpdateTriggerOpts {
1513
externalUserId: string;
1614
/** Whether the trigger should be active */
1715
active?: boolean;
18-
configuredProps?: Pipedream.ConfiguredProps;
16+
/** The configured properties for the trigger */
17+
configuredProps?: Record<string, unknown>;
1918
/** The name of the trigger */
2019
name?: string;
2120
}

src/api/resources/triggers/client/requests/DeployTriggerOpts.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
* This file was auto-generated by Fern from our API Definition.
33
*/
44

5-
import * as Pipedream from "../../../../index.js";
6-
75
/**
86
* @example
97
* {
@@ -16,7 +14,8 @@ export interface DeployTriggerOpts {
1614
id: string;
1715
/** The external user ID */
1816
externalUserId: string;
19-
configuredProps?: Pipedream.ConfiguredProps;
17+
/** The configured properties for the trigger */
18+
configuredProps?: Record<string, unknown>;
2019
/** The ID for dynamic props */
2120
dynamicPropsId?: string;
2221
/** Optional webhook URL to receive trigger events */

src/api/types/Account.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import * as Pipedream from "../index.js";
88
* End user account data, returned from the API.
99
*/
1010
export interface Account {
11-
id: Pipedream.AccountId;
11+
/** The unique ID of the account. */
12+
id: string;
1213
/** The custom name of the account if set. */
1314
name?: string;
1415
/** The external ID associated with the account. */

src/api/types/AccountId.ts

Lines changed: 0 additions & 8 deletions
This file was deleted.

src/api/types/ConfigurableProp.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@
22
* This file was auto-generated by Fern from our API Definition.
33
*/
44

5-
import * as Pipedream from "../index.js";
6-
75
/**
86
* A configuration or input field for a component.
97
*/
108
export interface ConfigurableProp {
119
/** When building `configuredProps`, make sure to use this field as the key when setting the prop value */
1210
name: string;
13-
type: Pipedream.ConfigurablePropType;
11+
type?: string;
1412
/** Value to use as an input label. In cases where `type` is "app", should load the app via `getApp`, etc. and show `app.name` instead. */
1513
label?: string;
1614
/** A description of the prop, shown to the user when configuring the component. */

src/api/types/ConfigurablePropAirtableBaseId.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*/
44

55
export interface ConfigurablePropAirtableBaseId {
6-
type: "$.airtable.baseId";
6+
type?: "$.airtable.baseId";
77
/** The name of the app prop that provides Airtable authentication */
88
appProp?: string;
99
/** When building `configuredProps`, make sure to use this field as the key when setting the prop value */

src/api/types/ConfigurablePropAirtableFieldId.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*/
44

55
export interface ConfigurablePropAirtableFieldId {
6-
type: "$.airtable.fieldId";
6+
type?: "$.airtable.fieldId";
77
/** The name of the prop that provides the Airtable table ID */
88
tableIdProp?: string;
99
/** When building `configuredProps`, make sure to use this field as the key when setting the prop value */

src/api/types/ConfigurablePropAirtableTableId.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*/
44

55
export interface ConfigurablePropAirtableTableId {
6-
type: "$.airtable.tableId";
6+
type?: "$.airtable.tableId";
77
/** The name of the prop that provides the Airtable base ID */
88
baseIdProp?: string;
99
/** When building `configuredProps`, make sure to use this field as the key when setting the prop value */

src/api/types/ConfigurablePropAirtableViewId.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*/
44

55
export interface ConfigurablePropAirtableViewId {
6-
type: "$.airtable.viewId";
6+
type?: "$.airtable.viewId";
77
/** The name of the prop that provides the Airtable table ID */
88
tableIdProp?: string;
99
/** When building `configuredProps`, make sure to use this field as the key when setting the prop value */

0 commit comments

Comments
 (0)