@membranehq/sdk 0.10.10 → 0.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.d.ts +201 -4
- package/dist/bundle.js +182 -53
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/connections-accessors.d.ts +8 -1
- package/dist/dts/accessors/integrations-accessors.d.ts +9 -1
- package/dist/dts/agent/session.d.ts +5 -0
- package/dist/dts/alerts/types.d.ts +18 -0
- package/dist/dts/index.browser.d.ts +1 -0
- package/dist/dts/orgs/types.d.ts +17 -0
- package/dist/dts/stats/index.d.ts +33 -0
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +18 -0
- package/dist/dts/workspace-elements/api/actions-api.d.ts +34 -0
- package/dist/dts/workspace-elements/api/app-data-schema-instances-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/app-event-log-records-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/app-event-subscriptions-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/connections-api.d.ts +22 -1
- package/dist/dts/workspace-elements/api/customers-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +7 -0
- package/dist/dts/workspace-elements/api/data-source-instances-api.d.ts +8 -0
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +14 -0
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +7 -0
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +7 -0
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +7 -0
- package/dist/dts/workspace-elements/api/external-events-api.d.ts +4 -0
- package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +16 -0
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +14 -0
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +14 -0
- package/dist/dts/workspace-elements/api/flows-api.d.ts +38 -0
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +16 -3
- package/dist/dts/workspace-elements/api/packages-api.d.ts +10 -0
- package/dist/dts/workspace-elements/base/action-instances/types.d.ts +1 -0
- package/dist/dts/workspace-elements/base/actions/index.d.ts +3 -0
- package/dist/dts/workspace-elements/base/connections/types.d.ts +2 -0
- package/dist/dts/workspace-elements/base/customers/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/data-sources/index.d.ts +3 -0
- package/dist/dts/workspace-elements/base/external-apps/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/flows/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/integrations/index.d.ts +28 -2
- package/dist/dts/workspace-elements/base/packages/index.d.ts +2 -0
- package/dist/dts/workspace-elements/filter-meta.d.ts +9 -0
- package/dist/dts/workspace-elements/index.d.ts +1 -0
- package/dist/dts/workspace-elements/types.d.ts +4 -0
- package/dist/dts/workspaces/types.d.ts +276 -34
- package/dist/index.browser.d.mts +665 -41
- package/dist/index.browser.d.ts +665 -41
- package/dist/index.browser.js +202 -24
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +191 -25
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +665 -41
- package/dist/index.node.d.ts +665 -41
- package/dist/index.node.js +202 -24
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +191 -25
- package/dist/index.node.mjs.map +1 -1
- package/package.json +2 -2
package/dist/bundle.d.ts
CHANGED
|
@@ -1742,6 +1742,7 @@ declare const PackageEditableProperties: z.ZodObject<{
|
|
|
1742
1742
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
1743
1743
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
1744
1744
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
1745
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
1745
1746
|
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
1746
1747
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
1747
1748
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -2056,6 +2057,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
2056
2057
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
2057
2058
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
2058
2059
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
2060
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
2059
2061
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
2060
2062
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
2061
2063
|
}, z.core.$strip>>;
|
|
@@ -2069,6 +2071,7 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
2069
2071
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2070
2072
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
2071
2073
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
2074
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
2072
2075
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
2073
2076
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
2074
2077
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -2107,6 +2110,8 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
2107
2110
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
2108
2111
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
2109
2112
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
2113
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
2114
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
2110
2115
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
2111
2116
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
2112
2117
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -2150,6 +2155,10 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
2150
2155
|
oauth1: "oauth1";
|
|
2151
2156
|
"client-credentials": "client-credentials";
|
|
2152
2157
|
}>>;
|
|
2158
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2159
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
2160
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2161
|
+
}, z.core.$strip>>>;
|
|
2153
2162
|
}, z.core.$strip>>;
|
|
2154
2163
|
path: z.ZodOptional<z.ZodString>;
|
|
2155
2164
|
defaultPath: z.ZodOptional<z.ZodString>;
|
|
@@ -2251,6 +2260,8 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
2251
2260
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
2252
2261
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
2253
2262
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
2263
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
2264
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
2254
2265
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
2255
2266
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
2256
2267
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -2294,6 +2305,10 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
2294
2305
|
oauth1: "oauth1";
|
|
2295
2306
|
"client-credentials": "client-credentials";
|
|
2296
2307
|
}>>;
|
|
2308
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2309
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
2310
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2311
|
+
}, z.core.$strip>>>;
|
|
2297
2312
|
}, z.core.$strip>>;
|
|
2298
2313
|
user: z.ZodOptional<z.ZodObject<{
|
|
2299
2314
|
id: z.ZodString;
|
|
@@ -2305,6 +2320,7 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
2305
2320
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
2306
2321
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
2307
2322
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
2323
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
2308
2324
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
2309
2325
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
2310
2326
|
}, z.core.$strip>>;
|
|
@@ -2384,6 +2400,8 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
2384
2400
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
2385
2401
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
2386
2402
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
2403
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
2404
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
2387
2405
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
2388
2406
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
2389
2407
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -2427,6 +2445,10 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
2427
2445
|
oauth1: "oauth1";
|
|
2428
2446
|
"client-credentials": "client-credentials";
|
|
2429
2447
|
}>>;
|
|
2448
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2449
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
2450
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2451
|
+
}, z.core.$strip>>>;
|
|
2430
2452
|
}, z.core.$strip>>;
|
|
2431
2453
|
user: z.ZodOptional<z.ZodObject<{
|
|
2432
2454
|
id: z.ZodString;
|
|
@@ -2438,6 +2460,7 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
2438
2460
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
2439
2461
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
2440
2462
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
2463
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
2441
2464
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
2442
2465
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
2443
2466
|
}, z.core.$strip>>;
|
|
@@ -2458,6 +2481,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
2458
2481
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2459
2482
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
2460
2483
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
2484
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
2461
2485
|
flowId: z.ZodOptional<z.ZodString>;
|
|
2462
2486
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
2463
2487
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -2535,6 +2559,10 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
2535
2559
|
oauth1: "oauth1";
|
|
2536
2560
|
"client-credentials": "client-credentials";
|
|
2537
2561
|
}>>;
|
|
2562
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2563
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
2564
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2565
|
+
}, z.core.$strip>>>;
|
|
2538
2566
|
}, z.core.$strip>>;
|
|
2539
2567
|
appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2540
2568
|
element: z.ZodObject<{
|
|
@@ -2548,6 +2576,7 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
2548
2576
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2549
2577
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
2550
2578
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
2579
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
2551
2580
|
flowId: z.ZodOptional<z.ZodString>;
|
|
2552
2581
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
2553
2582
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -2626,6 +2655,10 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
2626
2655
|
oauth1: "oauth1";
|
|
2627
2656
|
"client-credentials": "client-credentials";
|
|
2628
2657
|
}>>;
|
|
2658
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2659
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
2660
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2661
|
+
}, z.core.$strip>>>;
|
|
2629
2662
|
}, z.core.$strip>;
|
|
2630
2663
|
}, z.core.$strip>>>;
|
|
2631
2664
|
dependencies: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
@@ -2642,12 +2675,14 @@ declare const FindFlowsQuery: z.ZodObject<{
|
|
|
2642
2675
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
2643
2676
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
2644
2677
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
2678
|
+
isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
2645
2679
|
layer: z.ZodOptional<z.ZodEnum<{
|
|
2646
2680
|
connection: "connection";
|
|
2647
2681
|
integration: "integration";
|
|
2648
2682
|
universal: "universal";
|
|
2649
2683
|
}>>;
|
|
2650
2684
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
2685
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
2651
2686
|
flowId: z.ZodOptional<z.ZodString>;
|
|
2652
2687
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
2653
2688
|
}, z.core.$strip>;
|
|
@@ -2663,6 +2698,7 @@ declare const CreateFlowRequest: z.ZodObject<{
|
|
|
2663
2698
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2664
2699
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
2665
2700
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
2701
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
2666
2702
|
flowId: z.ZodOptional<z.ZodString>;
|
|
2667
2703
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
2668
2704
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -2704,6 +2740,7 @@ declare const UpdateFlowRequest: z.ZodObject<{
|
|
|
2704
2740
|
meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
2705
2741
|
integrationUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2706
2742
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2743
|
+
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2707
2744
|
flowId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2708
2745
|
universalFlowId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2709
2746
|
parametersSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
@@ -2821,6 +2858,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
2821
2858
|
lastActiveAt?: string | undefined;
|
|
2822
2859
|
isTest?: boolean | undefined;
|
|
2823
2860
|
isBillable?: boolean | undefined;
|
|
2861
|
+
isActive?: boolean | undefined;
|
|
2824
2862
|
createdAt?: string | undefined;
|
|
2825
2863
|
archivedAt?: string | undefined;
|
|
2826
2864
|
}, unknown, z.core.$ZodTypeInternals<{
|
|
@@ -2833,6 +2871,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
2833
2871
|
lastActiveAt?: string | undefined;
|
|
2834
2872
|
isTest?: boolean | undefined;
|
|
2835
2873
|
isBillable?: boolean | undefined;
|
|
2874
|
+
isActive?: boolean | undefined;
|
|
2836
2875
|
createdAt?: string | undefined;
|
|
2837
2876
|
archivedAt?: string | undefined;
|
|
2838
2877
|
}, unknown>>>>;
|
|
@@ -2855,6 +2894,8 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
2855
2894
|
nextCredentialsRefreshAt?: string | undefined;
|
|
2856
2895
|
nextRetryTimestamp?: string | undefined;
|
|
2857
2896
|
retryAttempts?: number | undefined;
|
|
2897
|
+
canTest?: boolean | undefined;
|
|
2898
|
+
canRefreshCredentials?: boolean | undefined;
|
|
2858
2899
|
archivedAt?: string | undefined;
|
|
2859
2900
|
isDeactivated?: boolean | undefined;
|
|
2860
2901
|
meta?: Record<string, any> | undefined;
|
|
@@ -2877,6 +2918,8 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
2877
2918
|
nextCredentialsRefreshAt?: string | undefined;
|
|
2878
2919
|
nextRetryTimestamp?: string | undefined;
|
|
2879
2920
|
retryAttempts?: number | undefined;
|
|
2921
|
+
canTest?: boolean | undefined;
|
|
2922
|
+
canRefreshCredentials?: boolean | undefined;
|
|
2880
2923
|
archivedAt?: string | undefined;
|
|
2881
2924
|
isDeactivated?: boolean | undefined;
|
|
2882
2925
|
meta?: Record<string, any> | undefined;
|
|
@@ -2892,6 +2935,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
2892
2935
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2893
2936
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
2894
2937
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
2938
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
2895
2939
|
flowId: z.ZodOptional<z.ZodString>;
|
|
2896
2940
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
2897
2941
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -2969,6 +3013,10 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
2969
3013
|
oauth1: "oauth1";
|
|
2970
3014
|
"client-credentials": "client-credentials";
|
|
2971
3015
|
}>>;
|
|
3016
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3017
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
3018
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3019
|
+
}, z.core.$strip>>>;
|
|
2972
3020
|
}, z.core.$strip>>;
|
|
2973
3021
|
appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2974
3022
|
element: z.ZodObject<{
|
|
@@ -2982,6 +3030,7 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
2982
3030
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2983
3031
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
2984
3032
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
3033
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
2985
3034
|
flowId: z.ZodOptional<z.ZodString>;
|
|
2986
3035
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
2987
3036
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -3060,6 +3109,10 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
3060
3109
|
oauth1: "oauth1";
|
|
3061
3110
|
"client-credentials": "client-credentials";
|
|
3062
3111
|
}>>;
|
|
3112
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3113
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
3114
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3115
|
+
}, z.core.$strip>>>;
|
|
3063
3116
|
}, z.core.$strip>;
|
|
3064
3117
|
}, z.core.$strip>>>;
|
|
3065
3118
|
dependencies: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
@@ -3096,6 +3149,10 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
3096
3149
|
appUuid?: string | undefined;
|
|
3097
3150
|
isDeactivated?: boolean | undefined;
|
|
3098
3151
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
3152
|
+
optionsConfig?: Record<string, {
|
|
3153
|
+
disabled?: boolean | undefined;
|
|
3154
|
+
parameters?: Record<string, any> | undefined;
|
|
3155
|
+
}> | undefined;
|
|
3099
3156
|
}, unknown, z.core.$ZodTypeInternals<{
|
|
3100
3157
|
id: string;
|
|
3101
3158
|
name: string;
|
|
@@ -3128,6 +3185,10 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
3128
3185
|
appUuid?: string | undefined;
|
|
3129
3186
|
isDeactivated?: boolean | undefined;
|
|
3130
3187
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
3188
|
+
optionsConfig?: Record<string, {
|
|
3189
|
+
disabled?: boolean | undefined;
|
|
3190
|
+
parameters?: Record<string, any> | undefined;
|
|
3191
|
+
}> | undefined;
|
|
3131
3192
|
}, unknown>>>>;
|
|
3132
3193
|
}, z.core.$strip>;
|
|
3133
3194
|
type FlowInstanceApiResponse = z.infer<typeof FlowInstanceApiResponse>;
|
|
@@ -3144,6 +3205,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
3144
3205
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3145
3206
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
3146
3207
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
3208
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
3147
3209
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
3148
3210
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
3149
3211
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -3201,6 +3263,10 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
3201
3263
|
oauth1: "oauth1";
|
|
3202
3264
|
"client-credentials": "client-credentials";
|
|
3203
3265
|
}>>;
|
|
3266
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3267
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
3268
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3269
|
+
}, z.core.$strip>>>;
|
|
3204
3270
|
}, z.core.$strip>>;
|
|
3205
3271
|
appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3206
3272
|
element: z.ZodObject<{
|
|
@@ -3213,6 +3279,7 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
3213
3279
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3214
3280
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
3215
3281
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
3282
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
3216
3283
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
3217
3284
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
3218
3285
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -3271,6 +3338,10 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
3271
3338
|
oauth1: "oauth1";
|
|
3272
3339
|
"client-credentials": "client-credentials";
|
|
3273
3340
|
}>>;
|
|
3341
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3342
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
3343
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3344
|
+
}, z.core.$strip>>>;
|
|
3274
3345
|
}, z.core.$strip>;
|
|
3275
3346
|
}, z.core.$strip>>>;
|
|
3276
3347
|
defaultPath: z.ZodOptional<z.ZodString>;
|
|
@@ -3287,12 +3358,14 @@ declare const FindDataSourcesQuery: z.ZodObject<{
|
|
|
3287
3358
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
3288
3359
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
3289
3360
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
3361
|
+
isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
3290
3362
|
layer: z.ZodOptional<z.ZodEnum<{
|
|
3291
3363
|
connection: "connection";
|
|
3292
3364
|
integration: "integration";
|
|
3293
3365
|
universal: "universal";
|
|
3294
3366
|
}>>;
|
|
3295
3367
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
3368
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
3296
3369
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
3297
3370
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
3298
3371
|
}, z.core.$strip>;
|
|
@@ -3307,6 +3380,7 @@ declare const CreateDataSourceRequest: z.ZodObject<{
|
|
|
3307
3380
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3308
3381
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
3309
3382
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
3383
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
3310
3384
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
3311
3385
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
3312
3386
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -3327,6 +3401,7 @@ declare const UpdateDataSourceRequest: z.ZodObject<{
|
|
|
3327
3401
|
meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
3328
3402
|
integrationUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3329
3403
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3404
|
+
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
3330
3405
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3331
3406
|
dataSourceId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3332
3407
|
universalDataSourceId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -3401,7 +3476,6 @@ declare const CreateIntegrationRequest: z.ZodObject<{
|
|
|
3401
3476
|
name: z.ZodOptional<z.ZodString>;
|
|
3402
3477
|
description: z.ZodOptional<z.ZodString>;
|
|
3403
3478
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3404
|
-
baseUri: z.ZodOptional<z.ZodString>;
|
|
3405
3479
|
logoUri: z.ZodOptional<z.ZodString>;
|
|
3406
3480
|
appUuid: z.ZodOptional<z.ZodString>;
|
|
3407
3481
|
oAuthCallbackUri: z.ZodOptional<z.ZodUnion<[z.ZodURL, z.ZodLiteral<"">]>>;
|
|
@@ -3409,6 +3483,11 @@ declare const CreateIntegrationRequest: z.ZodObject<{
|
|
|
3409
3483
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
3410
3484
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
3411
3485
|
connectorUuid: z.ZodOptional<z.ZodString>;
|
|
3486
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3487
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3488
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
3489
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3490
|
+
}, z.core.$strip>>>;
|
|
3412
3491
|
}, z.core.$strip>;
|
|
3413
3492
|
type CreateIntegrationRequest = z.infer<typeof CreateIntegrationRequest>;
|
|
3414
3493
|
declare const UpdateIntegrationRequest: z.ZodObject<{
|
|
@@ -3417,7 +3496,6 @@ declare const UpdateIntegrationRequest: z.ZodObject<{
|
|
|
3417
3496
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3418
3497
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3419
3498
|
meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
3420
|
-
baseUri: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3421
3499
|
logoUri: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3422
3500
|
appUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3423
3501
|
oAuthCallbackUri: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodURL, z.ZodLiteral<"">]>>>;
|
|
@@ -3425,6 +3503,11 @@ declare const UpdateIntegrationRequest: z.ZodObject<{
|
|
|
3425
3503
|
connectorVersion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3426
3504
|
connectorId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3427
3505
|
connectorUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3506
|
+
parameters: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
3507
|
+
optionsConfig: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3508
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
3509
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3510
|
+
}, z.core.$strip>>>>;
|
|
3428
3511
|
}, z.core.$strip>;
|
|
3429
3512
|
type UpdateIntegrationRequest = z.infer<typeof UpdateIntegrationRequest>;
|
|
3430
3513
|
declare const FindIntegrationsQuery: z.ZodObject<{
|
|
@@ -3477,6 +3560,10 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
3477
3560
|
oauth1: "oauth1";
|
|
3478
3561
|
"client-credentials": "client-credentials";
|
|
3479
3562
|
}>>;
|
|
3563
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3564
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
3565
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3566
|
+
}, z.core.$strip>>>;
|
|
3480
3567
|
connection: z.ZodOptional<z.ZodObject<{
|
|
3481
3568
|
id: z.ZodString;
|
|
3482
3569
|
name: z.ZodString;
|
|
@@ -3496,6 +3583,8 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
3496
3583
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
3497
3584
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
3498
3585
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
3586
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
3587
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
3499
3588
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
3500
3589
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
3501
3590
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -3519,7 +3608,6 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
3519
3608
|
helpUri: z.ZodOptional<z.ZodString>;
|
|
3520
3609
|
}, z.core.$strip>>;
|
|
3521
3610
|
}, z.core.$strip>>>;
|
|
3522
|
-
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
3523
3611
|
}, z.core.$strip>;
|
|
3524
3612
|
type IntegrationApiResponse = z.infer<typeof IntegrationApiResponse>;
|
|
3525
3613
|
|
|
@@ -3539,7 +3627,9 @@ declare const FindPackagesQuery: z.ZodObject<{
|
|
|
3539
3627
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
3540
3628
|
parentId: z.ZodOptional<z.ZodString>;
|
|
3541
3629
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
3630
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
3542
3631
|
userId: z.ZodOptional<z.ZodString>;
|
|
3632
|
+
isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
3543
3633
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
3544
3634
|
}, z.core.$strip>;
|
|
3545
3635
|
type FindPackagesQuery = z.infer<typeof FindPackagesQuery>;
|
|
@@ -3561,6 +3651,7 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
3561
3651
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
3562
3652
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
3563
3653
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
3654
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
3564
3655
|
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
3565
3656
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
3566
3657
|
key: z.ZodString;
|
|
@@ -3594,6 +3685,7 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
3594
3685
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
3595
3686
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
3596
3687
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
3688
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
3597
3689
|
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
3598
3690
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
3599
3691
|
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -3645,6 +3737,10 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
3645
3737
|
oauth1: "oauth1";
|
|
3646
3738
|
"client-credentials": "client-credentials";
|
|
3647
3739
|
}>>;
|
|
3740
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3741
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
3742
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3743
|
+
}, z.core.$strip>>>;
|
|
3648
3744
|
}, z.core.$strip>;
|
|
3649
3745
|
}, z.core.$strip>>>;
|
|
3650
3746
|
}, z.core.$strip>;
|
|
@@ -3722,6 +3818,7 @@ declare const CustomerApiResponse: z.ZodObject<{
|
|
|
3722
3818
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
3723
3819
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
3724
3820
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
3821
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
3725
3822
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
3726
3823
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
3727
3824
|
}, z.core.$strip>;
|
|
@@ -3738,6 +3835,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
3738
3835
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3739
3836
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
3740
3837
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
3838
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
3741
3839
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
3742
3840
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
3743
3841
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -3800,6 +3898,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
3800
3898
|
oauth1: "oauth1";
|
|
3801
3899
|
"client-credentials": "client-credentials";
|
|
3802
3900
|
}>>;
|
|
3901
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3902
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
3903
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3904
|
+
}, z.core.$strip>>>;
|
|
3803
3905
|
}, z.core.$strip>>;
|
|
3804
3906
|
appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3805
3907
|
element: z.ZodObject<{
|
|
@@ -3812,6 +3914,7 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
3812
3914
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3813
3915
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
3814
3916
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
3917
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
3815
3918
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
3816
3919
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
3817
3920
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -3875,6 +3978,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
3875
3978
|
oauth1: "oauth1";
|
|
3876
3979
|
"client-credentials": "client-credentials";
|
|
3877
3980
|
}>>;
|
|
3981
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3982
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
3983
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3984
|
+
}, z.core.$strip>>>;
|
|
3878
3985
|
}, z.core.$strip>;
|
|
3879
3986
|
}, z.core.$strip>>>;
|
|
3880
3987
|
}, z.core.$strip>;
|
|
@@ -3890,12 +3997,14 @@ declare const FindFieldMappingsQuery: z.ZodObject<{
|
|
|
3890
3997
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
3891
3998
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
3892
3999
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
4000
|
+
isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
3893
4001
|
layer: z.ZodOptional<z.ZodEnum<{
|
|
3894
4002
|
connection: "connection";
|
|
3895
4003
|
integration: "integration";
|
|
3896
4004
|
universal: "universal";
|
|
3897
4005
|
}>>;
|
|
3898
4006
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
4007
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
3899
4008
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
3900
4009
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
3901
4010
|
}, z.core.$strip>;
|
|
@@ -3910,6 +4019,7 @@ declare const CreateFieldMappingRequest: z.ZodObject<{
|
|
|
3910
4019
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3911
4020
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
3912
4021
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
4022
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
3913
4023
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
3914
4024
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
3915
4025
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -3935,6 +4045,7 @@ declare const UpdateFieldMappingRequest: z.ZodObject<{
|
|
|
3935
4045
|
meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
3936
4046
|
integrationUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3937
4047
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4048
|
+
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
3938
4049
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3939
4050
|
fieldMappingId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
3940
4051
|
universalFieldMappingId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -4021,6 +4132,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
4021
4132
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
4022
4133
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
4023
4134
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
4135
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
4024
4136
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4025
4137
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
4026
4138
|
}, z.core.$strip>>;
|
|
@@ -4043,6 +4155,8 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
4043
4155
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
4044
4156
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
4045
4157
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
4158
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
4159
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
4046
4160
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
4047
4161
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
4048
4162
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -4086,6 +4200,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
4086
4200
|
oauth1: "oauth1";
|
|
4087
4201
|
"client-credentials": "client-credentials";
|
|
4088
4202
|
}>>;
|
|
4203
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4204
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
4205
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4206
|
+
}, z.core.$strip>>>;
|
|
4089
4207
|
}, z.core.$strip>>;
|
|
4090
4208
|
fieldMapping: z.ZodOptional<z.ZodObject<{
|
|
4091
4209
|
id: z.ZodString;
|
|
@@ -4097,6 +4215,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
4097
4215
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4098
4216
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
4099
4217
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
4218
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
4100
4219
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
4101
4220
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
4102
4221
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
@@ -4270,6 +4389,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
4270
4389
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
4271
4390
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
4272
4391
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
4392
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
4273
4393
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4274
4394
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
4275
4395
|
}, z.core.$strip>>;
|
|
@@ -4283,6 +4403,7 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
4283
4403
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4284
4404
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
4285
4405
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
4406
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
4286
4407
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
4287
4408
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
4288
4409
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -4321,6 +4442,8 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
4321
4442
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
4322
4443
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
4323
4444
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
4445
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
4446
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
4324
4447
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
4325
4448
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
4326
4449
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -4364,6 +4487,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
4364
4487
|
oauth1: "oauth1";
|
|
4365
4488
|
"client-credentials": "client-credentials";
|
|
4366
4489
|
}>>;
|
|
4490
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4491
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
4492
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4493
|
+
}, z.core.$strip>>>;
|
|
4367
4494
|
}, z.core.$strip>>;
|
|
4368
4495
|
path: z.ZodOptional<z.ZodString>;
|
|
4369
4496
|
defaultPath: z.ZodOptional<z.ZodString>;
|
|
@@ -4495,6 +4622,8 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
4495
4622
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
4496
4623
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
4497
4624
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
4625
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
4626
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
4498
4627
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
4499
4628
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
4500
4629
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -4538,6 +4667,10 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
4538
4667
|
oauth1: "oauth1";
|
|
4539
4668
|
"client-credentials": "client-credentials";
|
|
4540
4669
|
}>>;
|
|
4670
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4671
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
4672
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4673
|
+
}, z.core.$strip>>>;
|
|
4541
4674
|
}, z.core.$strip>>;
|
|
4542
4675
|
user: z.ZodOptional<z.ZodObject<{
|
|
4543
4676
|
id: z.ZodString;
|
|
@@ -4549,6 +4682,7 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
4549
4682
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
4550
4683
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
4551
4684
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
4685
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
4552
4686
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4553
4687
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
4554
4688
|
}, z.core.$strip>>;
|
|
@@ -4662,6 +4796,7 @@ declare const AppEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
4662
4796
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
4663
4797
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
4664
4798
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
4799
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
4665
4800
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4666
4801
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
4667
4802
|
}, z.core.$strip>>;
|
|
@@ -4733,6 +4868,7 @@ declare const AppDataSchemaInstanceApiResponse: z.ZodObject<{
|
|
|
4733
4868
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
4734
4869
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
4735
4870
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
4871
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
4736
4872
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4737
4873
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
4738
4874
|
}, z.core.$strip>>;
|
|
@@ -4803,6 +4939,7 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
4803
4939
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
4804
4940
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
4805
4941
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
4942
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
4806
4943
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4807
4944
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
4808
4945
|
}, z.core.$strip>>;
|
|
@@ -4825,6 +4962,8 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
4825
4962
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
4826
4963
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
4827
4964
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
4965
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
4966
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
4828
4967
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
4829
4968
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
4830
4969
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -4868,6 +5007,10 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
4868
5007
|
oauth1: "oauth1";
|
|
4869
5008
|
"client-credentials": "client-credentials";
|
|
4870
5009
|
}>>;
|
|
5010
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5011
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
5012
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
5013
|
+
}, z.core.$strip>>>;
|
|
4871
5014
|
}, z.core.$strip>>;
|
|
4872
5015
|
}, z.core.$strip>;
|
|
4873
5016
|
type ExternalEventSubscriptionApiResponse = z.infer<typeof ExternalEventSubscriptionApiResponse>;
|
|
@@ -4928,6 +5071,8 @@ declare const ConnectionApiResponse: z.ZodObject<{
|
|
|
4928
5071
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
4929
5072
|
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
4930
5073
|
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
5074
|
+
canTest: z.ZodOptional<z.ZodBoolean>;
|
|
5075
|
+
canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
|
|
4931
5076
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
4932
5077
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
4933
5078
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -4941,6 +5086,7 @@ declare const ConnectionApiResponse: z.ZodObject<{
|
|
|
4941
5086
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
4942
5087
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
4943
5088
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
5089
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
4944
5090
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
4945
5091
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
4946
5092
|
}, z.core.$strip>>;
|
|
@@ -4983,6 +5129,10 @@ declare const ConnectionApiResponse: z.ZodObject<{
|
|
|
4983
5129
|
oauth1: "oauth1";
|
|
4984
5130
|
"client-credentials": "client-credentials";
|
|
4985
5131
|
}>>;
|
|
5132
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5133
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
5134
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
5135
|
+
}, z.core.$strip>>>;
|
|
4986
5136
|
}, z.core.$strip>>;
|
|
4987
5137
|
}, z.core.$strip>;
|
|
4988
5138
|
type ConnectionApiResponse = z.infer<typeof ConnectionApiResponse>;
|
|
@@ -4997,6 +5147,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
4997
5147
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
4998
5148
|
parentId: z.ZodOptional<z.ZodString>;
|
|
4999
5149
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
5150
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
5000
5151
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
5001
5152
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
5002
5153
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -5054,6 +5205,10 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
5054
5205
|
oauth1: "oauth1";
|
|
5055
5206
|
"client-credentials": "client-credentials";
|
|
5056
5207
|
}>>;
|
|
5208
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5209
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
5210
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
5211
|
+
}, z.core.$strip>>>;
|
|
5057
5212
|
}, z.core.$strip>>;
|
|
5058
5213
|
user: z.ZodOptional<z.ZodObject<{
|
|
5059
5214
|
id: z.ZodString;
|
|
@@ -5065,6 +5220,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
5065
5220
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
5066
5221
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
5067
5222
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
5223
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
5068
5224
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5069
5225
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
5070
5226
|
}, z.core.$strip>>;
|
|
@@ -5078,6 +5234,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
5078
5234
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
5079
5235
|
parentId: z.ZodOptional<z.ZodString>;
|
|
5080
5236
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
5237
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
5081
5238
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
5082
5239
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
5083
5240
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -5109,6 +5266,7 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
5109
5266
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
5110
5267
|
parentId: z.ZodOptional<z.ZodString>;
|
|
5111
5268
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
5269
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
5112
5270
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
5113
5271
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
5114
5272
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -5168,6 +5326,10 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
5168
5326
|
oauth1: "oauth1";
|
|
5169
5327
|
"client-credentials": "client-credentials";
|
|
5170
5328
|
}>>;
|
|
5329
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5330
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
5331
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
5332
|
+
}, z.core.$strip>>>;
|
|
5171
5333
|
}, z.core.$strip>;
|
|
5172
5334
|
}, z.core.$strip>>>;
|
|
5173
5335
|
defaultOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -5192,7 +5354,9 @@ declare const FindActionsQuery: z.ZodObject<{
|
|
|
5192
5354
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
5193
5355
|
parentId: z.ZodOptional<z.ZodString>;
|
|
5194
5356
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
5357
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
5195
5358
|
userId: z.ZodOptional<z.ZodString>;
|
|
5359
|
+
isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
5196
5360
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
5197
5361
|
}, z.core.$strip>;
|
|
5198
5362
|
type FindActionsQuery = z.infer<typeof FindActionsQuery>;
|
|
@@ -5206,6 +5370,7 @@ declare const CreateActionRequest: z.ZodObject<{
|
|
|
5206
5370
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
5207
5371
|
parentId: z.ZodOptional<z.ZodString>;
|
|
5208
5372
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
5373
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
5209
5374
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
5210
5375
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
5211
5376
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -5225,6 +5390,7 @@ declare const UpdateActionRequest: z.ZodObject<{
|
|
|
5225
5390
|
integrationUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5226
5391
|
parentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5227
5392
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5393
|
+
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5228
5394
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5229
5395
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5230
5396
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
@@ -5244,6 +5410,7 @@ declare const CreateActionInstanceRequest: z.ZodObject<{
|
|
|
5244
5410
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
5245
5411
|
parentId: z.ZodOptional<z.ZodString>;
|
|
5246
5412
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
5413
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
5247
5414
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
5248
5415
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
5249
5416
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -5263,6 +5430,7 @@ declare const UpdateActionInstanceRequest: z.ZodObject<{
|
|
|
5263
5430
|
integrationUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5264
5431
|
parentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5265
5432
|
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5433
|
+
isUniversal: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
5266
5434
|
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5267
5435
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5268
5436
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
@@ -5289,6 +5457,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
5289
5457
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
5290
5458
|
parentId: z.ZodOptional<z.ZodString>;
|
|
5291
5459
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
5460
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
5292
5461
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
5293
5462
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
5294
5463
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -5346,6 +5515,10 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
5346
5515
|
oauth1: "oauth1";
|
|
5347
5516
|
"client-credentials": "client-credentials";
|
|
5348
5517
|
}>>;
|
|
5518
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5519
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
5520
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
5521
|
+
}, z.core.$strip>>>;
|
|
5349
5522
|
}, z.core.$strip>>;
|
|
5350
5523
|
user: z.ZodOptional<z.ZodObject<{
|
|
5351
5524
|
id: z.ZodString;
|
|
@@ -5357,6 +5530,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
5357
5530
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
5358
5531
|
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
5359
5532
|
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
5533
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
5360
5534
|
createdAt: z.ZodOptional<z.ZodString>;
|
|
5361
5535
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
5362
5536
|
}, z.core.$strip>>;
|
|
@@ -5370,6 +5544,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
5370
5544
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
5371
5545
|
parentId: z.ZodOptional<z.ZodString>;
|
|
5372
5546
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
5547
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
5373
5548
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
5374
5549
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
5375
5550
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -5401,6 +5576,7 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
5401
5576
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
5402
5577
|
parentId: z.ZodOptional<z.ZodString>;
|
|
5403
5578
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
5579
|
+
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
5404
5580
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
5405
5581
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
5406
5582
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -5460,6 +5636,10 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
5460
5636
|
oauth1: "oauth1";
|
|
5461
5637
|
"client-credentials": "client-credentials";
|
|
5462
5638
|
}>>;
|
|
5639
|
+
optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5640
|
+
disabled: z.ZodOptional<z.ZodBoolean>;
|
|
5641
|
+
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
5642
|
+
}, z.core.$strip>>>;
|
|
5463
5643
|
}, z.core.$strip>;
|
|
5464
5644
|
}, z.core.$strip>>>;
|
|
5465
5645
|
defaultOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -5487,7 +5667,9 @@ declare const FindActionInstancesQuery: z.ZodObject<{
|
|
|
5487
5667
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
5488
5668
|
parentId: z.ZodOptional<z.ZodString>;
|
|
5489
5669
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
5670
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
5490
5671
|
userId: z.ZodOptional<z.ZodString>;
|
|
5672
|
+
isUniversal: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
5491
5673
|
externalAppId: z.ZodOptional<z.ZodString>;
|
|
5492
5674
|
}, z.core.$strip>;
|
|
5493
5675
|
type FindActionInstancesQuery = FindActionsQuery;
|
|
@@ -5708,6 +5890,8 @@ declare class ConnectionAccessor {
|
|
|
5708
5890
|
nextCredentialsRefreshAt?: string | undefined;
|
|
5709
5891
|
nextRetryTimestamp?: string | undefined;
|
|
5710
5892
|
retryAttempts?: number | undefined;
|
|
5893
|
+
canTest?: boolean | undefined;
|
|
5894
|
+
canRefreshCredentials?: boolean | undefined;
|
|
5711
5895
|
archivedAt?: string | undefined;
|
|
5712
5896
|
isDeactivated?: boolean | undefined;
|
|
5713
5897
|
meta?: Record<string, any> | undefined;
|
|
@@ -5721,6 +5905,7 @@ declare class ConnectionAccessor {
|
|
|
5721
5905
|
lastActiveAt?: string | undefined;
|
|
5722
5906
|
isTest?: boolean | undefined;
|
|
5723
5907
|
isBillable?: boolean | undefined;
|
|
5908
|
+
isActive?: boolean | undefined;
|
|
5724
5909
|
createdAt?: string | undefined;
|
|
5725
5910
|
archivedAt?: string | undefined;
|
|
5726
5911
|
} | undefined;
|
|
@@ -5756,6 +5941,10 @@ declare class ConnectionAccessor {
|
|
|
5756
5941
|
appUuid?: string | undefined;
|
|
5757
5942
|
isDeactivated?: boolean | undefined;
|
|
5758
5943
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
5944
|
+
optionsConfig?: Record<string, {
|
|
5945
|
+
disabled?: boolean | undefined;
|
|
5946
|
+
parameters?: Record<string, any> | undefined;
|
|
5947
|
+
}> | undefined;
|
|
5759
5948
|
} | undefined;
|
|
5760
5949
|
} | null>;
|
|
5761
5950
|
openReconnectUI({}?: OpenConfigurationOptions): Promise<ConnectionApiResponse | null>;
|
|
@@ -5889,8 +6078,9 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
5889
6078
|
getConnectorSpec(): Promise<ConnectionSpec>;
|
|
5890
6079
|
open({ onClose }?: OpenIntegrationUIIntegrationConfigurationOptions): Promise<void>;
|
|
5891
6080
|
openNewConnection({ allowMultipleConnections, name, connectorParameters, }?: OpenNewConnectionOptions): Promise<ConnectionApiResponse | null>;
|
|
5892
|
-
connect({ name, parameters, connectorParameters, authOptionKey, allowMultipleConnections, redirectUri, sameWindow, onPopupClosed, }?: {
|
|
6081
|
+
connect({ name, input, parameters, connectorParameters, authOptionKey, allowMultipleConnections, redirectUri, sameWindow, onPopupClosed, }?: {
|
|
5893
6082
|
name?: string;
|
|
6083
|
+
input?: any;
|
|
5894
6084
|
parameters?: any;
|
|
5895
6085
|
connectorParameters?: any;
|
|
5896
6086
|
authOptionKey?: string;
|
|
@@ -5921,6 +6111,8 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
5921
6111
|
nextCredentialsRefreshAt?: string | undefined;
|
|
5922
6112
|
nextRetryTimestamp?: string | undefined;
|
|
5923
6113
|
retryAttempts?: number | undefined;
|
|
6114
|
+
canTest?: boolean | undefined;
|
|
6115
|
+
canRefreshCredentials?: boolean | undefined;
|
|
5924
6116
|
archivedAt?: string | undefined;
|
|
5925
6117
|
isDeactivated?: boolean | undefined;
|
|
5926
6118
|
meta?: Record<string, any> | undefined;
|
|
@@ -5934,6 +6126,7 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
5934
6126
|
lastActiveAt?: string | undefined;
|
|
5935
6127
|
isTest?: boolean | undefined;
|
|
5936
6128
|
isBillable?: boolean | undefined;
|
|
6129
|
+
isActive?: boolean | undefined;
|
|
5937
6130
|
createdAt?: string | undefined;
|
|
5938
6131
|
archivedAt?: string | undefined;
|
|
5939
6132
|
} | undefined;
|
|
@@ -5969,6 +6162,10 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
|
|
|
5969
6162
|
appUuid?: string | undefined;
|
|
5970
6163
|
isDeactivated?: boolean | undefined;
|
|
5971
6164
|
authType?: "proxy" | "integration-app-token" | "membrane-token" | "oauth2" | "oauth1" | "client-credentials" | undefined;
|
|
6165
|
+
optionsConfig?: Record<string, {
|
|
6166
|
+
disabled?: boolean | undefined;
|
|
6167
|
+
parameters?: Record<string, any> | undefined;
|
|
6168
|
+
}> | undefined;
|
|
5972
6169
|
} | undefined;
|
|
5973
6170
|
} | null>;
|
|
5974
6171
|
createConnection({ parameters, name, }: {
|