@membranehq/sdk 0.8.2 → 0.8.4
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 +162 -40
- package/dist/bundle.js +4 -2
- package/dist/bundle.js.map +1 -1
- package/dist/dts/agent/session.d.ts +41 -0
- package/dist/dts/index.browser.d.ts +2 -0
- package/dist/dts/index.d.ts +2 -0
- package/dist/dts/orgs/types.d.ts +9 -1
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +3 -1
- package/dist/dts/workspace-elements/api/actions-api.d.ts +48 -28
- package/dist/dts/workspace-elements/api/data-source-instances-api.d.ts +4 -0
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +32 -6
- package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +8 -0
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +32 -6
- package/dist/dts/workspace-elements/api/flows-api.d.ts +48 -17
- package/dist/dts/workspace-elements/api/packages-api.d.ts +50 -5
- package/dist/dts/workspace-elements/base/action-instances/types.d.ts +3 -1
- package/dist/dts/workspace-elements/base/actions/index.d.ts +9 -3
- package/dist/dts/workspace-elements/base/data-sources/index.d.ts +8 -0
- package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +8 -0
- package/dist/dts/workspace-elements/base/flows/index.d.ts +10 -2
- package/dist/dts/workspace-elements/base/packages/index.d.ts +2 -0
- package/dist/dts/workspace-elements/types.d.ts +16 -6
- package/dist/dts/workspace-elements-catalog/index.d.ts +1 -0
- package/dist/index.browser.d.mts +309 -55
- package/dist/index.browser.d.ts +309 -55
- package/dist/index.browser.js +82 -29
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +76 -30
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +309 -55
- package/dist/index.node.d.ts +309 -55
- package/dist/index.node.js +82 -29
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +76 -30
- package/dist/index.node.mjs.map +1 -1
- package/package.json +2 -1
package/dist/index.browser.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import https from 'https';
|
|
3
|
+
import * as _axios from 'axios';
|
|
3
4
|
import { AxiosRequestConfig } from 'axios';
|
|
4
5
|
import { Readable } from 'node:stream';
|
|
5
6
|
|
|
@@ -208,6 +209,8 @@ declare const BaseIntegrationLevelMembraneInterfaceEditableProperties: z.ZodObje
|
|
|
208
209
|
uuid: z.ZodOptional<z.ZodString>;
|
|
209
210
|
description: z.ZodOptional<z.ZodString>;
|
|
210
211
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
212
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
213
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
211
214
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
212
215
|
parentId: z.ZodOptional<z.ZodString>;
|
|
213
216
|
}, z.core.$strip>;
|
|
@@ -223,25 +226,31 @@ declare const BaseIntegrationLevelMembraneInterfaceReadOnlyProperties: z.ZodObje
|
|
|
223
226
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
224
227
|
}, z.core.$strip>;
|
|
225
228
|
declare const IntegrationLevelMembraneInterfaceSelectorQuery: z.ZodObject<{
|
|
229
|
+
layer: z.ZodOptional<z.ZodEnum<{
|
|
230
|
+
connection: "connection";
|
|
231
|
+
integration: "integration";
|
|
232
|
+
universal: "universal";
|
|
233
|
+
}>>;
|
|
226
234
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
235
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
227
236
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
228
237
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
229
238
|
}, z.core.$strip>;
|
|
230
239
|
type IntegrationLevelMembraneInterfaceSelectorQuery = z.infer<typeof IntegrationLevelMembraneInterfaceSelectorQuery>;
|
|
231
240
|
declare const FindIntegrationLevelMembraneInterfaceQuery: z.ZodObject<{
|
|
241
|
+
layer: z.ZodOptional<z.ZodEnum<{
|
|
242
|
+
connection: "connection";
|
|
243
|
+
integration: "integration";
|
|
244
|
+
universal: "universal";
|
|
245
|
+
}>>;
|
|
232
246
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
247
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
233
248
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
234
249
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
235
250
|
search: z.ZodOptional<z.ZodString>;
|
|
236
251
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
237
252
|
cursor: z.ZodOptional<z.ZodString>;
|
|
238
253
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
239
|
-
layer: z.ZodOptional<z.ZodEnum<{
|
|
240
|
-
connection: "connection";
|
|
241
|
-
integration: "integration";
|
|
242
|
-
universal: "universal";
|
|
243
|
-
}>>;
|
|
244
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
245
254
|
parentId: z.ZodOptional<z.ZodString>;
|
|
246
255
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
247
256
|
userId: z.ZodOptional<z.ZodString>;
|
|
@@ -253,6 +262,8 @@ declare const BaseIntegrationLevelMembraneInterface: z.ZodObject<{
|
|
|
253
262
|
uuid: z.ZodOptional<z.ZodString>;
|
|
254
263
|
description: z.ZodOptional<z.ZodString>;
|
|
255
264
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
265
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
266
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
256
267
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
257
268
|
parentId: z.ZodOptional<z.ZodString>;
|
|
258
269
|
name: z.ZodString;
|
|
@@ -582,6 +593,7 @@ declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
582
593
|
}, z.core.$strip>], "type">;
|
|
583
594
|
type ConnectionMessagePayload = z.infer<typeof ConnectionMessagePayload>;
|
|
584
595
|
|
|
596
|
+
declare const axios: _axios.AxiosInstance;
|
|
585
597
|
interface MembraneClientOptions {
|
|
586
598
|
token?: string;
|
|
587
599
|
fetchToken?: () => Promise<string>;
|
|
@@ -962,6 +974,10 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
962
974
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
963
975
|
uuid: z.ZodOptional<z.ZodString>;
|
|
964
976
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
977
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
978
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
979
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
980
|
+
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
965
981
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
966
982
|
udm: z.ZodOptional<z.ZodString>;
|
|
967
983
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1511,9 +1527,13 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
1511
1527
|
id: z.ZodString;
|
|
1512
1528
|
key: z.ZodOptional<z.ZodString>;
|
|
1513
1529
|
description: z.ZodOptional<z.ZodString>;
|
|
1530
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
1514
1531
|
uuid: z.ZodOptional<z.ZodString>;
|
|
1515
1532
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1516
|
-
|
|
1533
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
1534
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
1535
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
1536
|
+
flowId: z.ZodOptional<z.ZodString>;
|
|
1517
1537
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
1518
1538
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
1519
1539
|
nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -1642,22 +1662,36 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
1642
1662
|
type FlowApiResponse = z.infer<typeof FlowApiResponse>;
|
|
1643
1663
|
type Flow = FlowApiResponse;
|
|
1644
1664
|
declare const FindFlowsQuery: z.ZodObject<{
|
|
1665
|
+
search: z.ZodOptional<z.ZodString>;
|
|
1666
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
1645
1667
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
1646
1668
|
cursor: z.ZodOptional<z.ZodString>;
|
|
1669
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
1670
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
1671
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
1647
1672
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
1648
1673
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
1674
|
+
layer: z.ZodOptional<z.ZodEnum<{
|
|
1675
|
+
connection: "connection";
|
|
1676
|
+
integration: "integration";
|
|
1677
|
+
universal: "universal";
|
|
1678
|
+
}>>;
|
|
1679
|
+
universalParentId: z.ZodOptional<z.ZodString>;
|
|
1680
|
+
flowId: z.ZodOptional<z.ZodString>;
|
|
1649
1681
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
1650
|
-
search: z.ZodOptional<z.ZodString>;
|
|
1651
|
-
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
1652
1682
|
}, z.core.$strip>;
|
|
1653
1683
|
type FindFlowsQuery = z.infer<typeof FindFlowsQuery>;
|
|
1654
1684
|
declare const CreateFlowRequest: z.ZodObject<{
|
|
1655
1685
|
key: z.ZodOptional<z.ZodString>;
|
|
1656
1686
|
description: z.ZodOptional<z.ZodString>;
|
|
1687
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
1657
1688
|
name: z.ZodOptional<z.ZodString>;
|
|
1658
1689
|
uuid: z.ZodOptional<z.ZodString>;
|
|
1659
1690
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1660
|
-
|
|
1691
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
1692
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
1693
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
1694
|
+
flowId: z.ZodOptional<z.ZodString>;
|
|
1661
1695
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
1662
1696
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
1663
1697
|
nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -1688,10 +1722,14 @@ type CreateFlowRequest = z.infer<typeof CreateFlowRequest>;
|
|
|
1688
1722
|
declare const UpdateFlowRequest: z.ZodObject<{
|
|
1689
1723
|
key: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1690
1724
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1725
|
+
integrationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1691
1726
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1692
1727
|
uuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1693
1728
|
meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
1694
|
-
|
|
1729
|
+
integrationUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1730
|
+
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1731
|
+
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1732
|
+
flowId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1695
1733
|
universalFlowId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
1696
1734
|
parametersSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
1697
1735
|
nodes: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -1761,6 +1799,11 @@ declare const ResetFlowInstanceOptions: z.ZodObject<{
|
|
|
1761
1799
|
allNodes: z.ZodOptional<z.ZodBoolean>;
|
|
1762
1800
|
}, z.core.$strip>;
|
|
1763
1801
|
type ResetFlowInstanceOptions = z.infer<typeof ResetFlowInstanceOptions>;
|
|
1802
|
+
declare const RunFlowApiRequest: z.ZodObject<{
|
|
1803
|
+
nodeKey: z.ZodOptional<z.ZodString>;
|
|
1804
|
+
input: z.ZodOptional<z.ZodAny>;
|
|
1805
|
+
}, z.core.$strip>;
|
|
1806
|
+
type RunFlowApiRequest = z.infer<typeof RunFlowApiRequest>;
|
|
1764
1807
|
interface RunFlowOptions {
|
|
1765
1808
|
nodeKey?: string;
|
|
1766
1809
|
input?: any;
|
|
@@ -1862,9 +1905,13 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
1862
1905
|
id: z.ZodString;
|
|
1863
1906
|
key: z.ZodOptional<z.ZodString>;
|
|
1864
1907
|
description: z.ZodOptional<z.ZodString>;
|
|
1908
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
1865
1909
|
uuid: z.ZodOptional<z.ZodString>;
|
|
1866
1910
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1867
|
-
|
|
1911
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
1912
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
1913
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
1914
|
+
flowId: z.ZodOptional<z.ZodString>;
|
|
1868
1915
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
1869
1916
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
1870
1917
|
nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -2082,6 +2129,10 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
2082
2129
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
2083
2130
|
uuid: z.ZodOptional<z.ZodString>;
|
|
2084
2131
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2132
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
2133
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
2134
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
2135
|
+
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
2085
2136
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
2086
2137
|
udm: z.ZodOptional<z.ZodString>;
|
|
2087
2138
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2147,6 +2198,10 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
2147
2198
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
2148
2199
|
uuid: z.ZodOptional<z.ZodString>;
|
|
2149
2200
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2201
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
2202
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
2203
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
2204
|
+
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
2150
2205
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
2151
2206
|
udm: z.ZodOptional<z.ZodString>;
|
|
2152
2207
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2210,13 +2265,23 @@ declare const DataSourceApiResponse: z.ZodObject<{
|
|
|
2210
2265
|
type DataSourceApiResponse = z.infer<typeof DataSourceApiResponse>;
|
|
2211
2266
|
type DataSource = DataSourceApiResponse;
|
|
2212
2267
|
declare const FindDataSourcesQuery: z.ZodObject<{
|
|
2268
|
+
search: z.ZodOptional<z.ZodString>;
|
|
2269
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
2213
2270
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
2214
2271
|
cursor: z.ZodOptional<z.ZodString>;
|
|
2272
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
2273
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
2274
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
2215
2275
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
2216
2276
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
2277
|
+
layer: z.ZodOptional<z.ZodEnum<{
|
|
2278
|
+
connection: "connection";
|
|
2279
|
+
integration: "integration";
|
|
2280
|
+
universal: "universal";
|
|
2281
|
+
}>>;
|
|
2282
|
+
universalParentId: z.ZodOptional<z.ZodString>;
|
|
2283
|
+
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
2217
2284
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
2218
|
-
search: z.ZodOptional<z.ZodString>;
|
|
2219
|
-
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
2220
2285
|
}, z.core.$strip>;
|
|
2221
2286
|
type FindDataSourcesQuery = z.infer<typeof FindDataSourcesQuery>;
|
|
2222
2287
|
declare const CreateDataSourceRequest: z.ZodObject<{
|
|
@@ -2226,6 +2291,10 @@ declare const CreateDataSourceRequest: z.ZodObject<{
|
|
|
2226
2291
|
name: z.ZodOptional<z.ZodString>;
|
|
2227
2292
|
uuid: z.ZodOptional<z.ZodString>;
|
|
2228
2293
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2294
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
2295
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
2296
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
2297
|
+
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
2229
2298
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
2230
2299
|
udm: z.ZodOptional<z.ZodString>;
|
|
2231
2300
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2242,6 +2311,10 @@ declare const UpdateDataSourceRequest: z.ZodObject<{
|
|
|
2242
2311
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2243
2312
|
uuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2244
2313
|
meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
2314
|
+
integrationUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2315
|
+
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2316
|
+
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2317
|
+
dataSourceId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2245
2318
|
universalDataSourceId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2246
2319
|
udm: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
2247
2320
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -3831,6 +3904,10 @@ declare const FieldMappingEditableProperties: z.ZodObject<{
|
|
|
3831
3904
|
name: z.ZodOptional<z.ZodString>;
|
|
3832
3905
|
uuid: z.ZodOptional<z.ZodString>;
|
|
3833
3906
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3907
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
3908
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
3909
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
3910
|
+
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
3834
3911
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
3835
3912
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
3836
3913
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -3852,6 +3929,10 @@ declare const BaseFieldMapping: z.ZodObject<{
|
|
|
3852
3929
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
3853
3930
|
uuid: z.ZodOptional<z.ZodString>;
|
|
3854
3931
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3932
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
3933
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
3934
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
3935
|
+
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
3855
3936
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
3856
3937
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
3857
3938
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -4024,6 +4105,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
4024
4105
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
4025
4106
|
uuid: z.ZodOptional<z.ZodString>;
|
|
4026
4107
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4108
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
4109
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
4110
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
4111
|
+
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
4027
4112
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
4028
4113
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
4029
4114
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -4208,6 +4293,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
4208
4293
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
4209
4294
|
uuid: z.ZodOptional<z.ZodString>;
|
|
4210
4295
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4296
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
4297
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
4298
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
4299
|
+
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
4211
4300
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
4212
4301
|
udm: z.ZodOptional<z.ZodString>;
|
|
4213
4302
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4628,6 +4717,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
4628
4717
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
4629
4718
|
uuid: z.ZodOptional<z.ZodString>;
|
|
4630
4719
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4720
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
4721
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
4722
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
4723
|
+
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
4631
4724
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
4632
4725
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
4633
4726
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -4698,6 +4791,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
4698
4791
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
4699
4792
|
uuid: z.ZodOptional<z.ZodString>;
|
|
4700
4793
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4794
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
4795
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
4796
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
4797
|
+
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
4701
4798
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
4702
4799
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
4703
4800
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -4766,13 +4863,23 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
4766
4863
|
type FieldMappingApiResponse = z.infer<typeof FieldMappingApiResponse>;
|
|
4767
4864
|
type FieldMapping = FieldMappingApiResponse;
|
|
4768
4865
|
declare const FindFieldMappingsQuery: z.ZodObject<{
|
|
4866
|
+
search: z.ZodOptional<z.ZodString>;
|
|
4867
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
4769
4868
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
4770
4869
|
cursor: z.ZodOptional<z.ZodString>;
|
|
4870
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
4871
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
4872
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
4771
4873
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
4772
4874
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
4875
|
+
layer: z.ZodOptional<z.ZodEnum<{
|
|
4876
|
+
connection: "connection";
|
|
4877
|
+
integration: "integration";
|
|
4878
|
+
universal: "universal";
|
|
4879
|
+
}>>;
|
|
4880
|
+
universalParentId: z.ZodOptional<z.ZodString>;
|
|
4881
|
+
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
4773
4882
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
4774
|
-
search: z.ZodOptional<z.ZodString>;
|
|
4775
|
-
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
4776
4883
|
}, z.core.$strip>;
|
|
4777
4884
|
type FindFieldMappingsQuery = z.infer<typeof FindFieldMappingsQuery>;
|
|
4778
4885
|
declare const CreateFieldMappingRequest: z.ZodObject<{
|
|
@@ -4782,6 +4889,10 @@ declare const CreateFieldMappingRequest: z.ZodObject<{
|
|
|
4782
4889
|
name: z.ZodOptional<z.ZodString>;
|
|
4783
4890
|
uuid: z.ZodOptional<z.ZodString>;
|
|
4784
4891
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4892
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
4893
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
4894
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
4895
|
+
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
4785
4896
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
4786
4897
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
4787
4898
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
@@ -4803,6 +4914,10 @@ declare const UpdateFieldMappingRequest: z.ZodObject<{
|
|
|
4803
4914
|
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4804
4915
|
uuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4805
4916
|
meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
4917
|
+
integrationUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4918
|
+
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4919
|
+
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4920
|
+
fieldMappingId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4806
4921
|
universalFieldMappingId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4807
4922
|
dataSourceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
4808
4923
|
dataSourceId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -5247,15 +5362,58 @@ declare const PackageElementApi: z.ZodObject<{
|
|
|
5247
5362
|
}, z.core.$strip>;
|
|
5248
5363
|
type PackageElementApi = z.infer<typeof PackageElementApi>;
|
|
5249
5364
|
declare const FindPackagesQuery: z.ZodObject<{
|
|
5250
|
-
|
|
5365
|
+
layer: z.ZodOptional<z.ZodEnum<{
|
|
5366
|
+
connection: "connection";
|
|
5367
|
+
integration: "integration";
|
|
5368
|
+
universal: "universal";
|
|
5369
|
+
}>>;
|
|
5251
5370
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
5252
|
-
|
|
5371
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5372
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
5373
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
5253
5374
|
search: z.ZodOptional<z.ZodString>;
|
|
5254
5375
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5255
5376
|
cursor: z.ZodOptional<z.ZodString>;
|
|
5256
5377
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
5378
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
5379
|
+
universalParentId: z.ZodOptional<z.ZodString>;
|
|
5380
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
5257
5381
|
}, z.core.$strip>;
|
|
5258
5382
|
type FindPackagesQuery = z.infer<typeof FindPackagesQuery>;
|
|
5383
|
+
declare const CreatePackageRequest: z.ZodObject<{
|
|
5384
|
+
key: z.ZodOptional<z.ZodString>;
|
|
5385
|
+
name: z.ZodOptional<z.ZodString>;
|
|
5386
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
5387
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5388
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
5389
|
+
scenarioTemplateId: z.ZodOptional<z.ZodString>;
|
|
5390
|
+
elements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5391
|
+
id: z.ZodString;
|
|
5392
|
+
type: z.ZodEnum<typeof IntegrationElementType>;
|
|
5393
|
+
element: z.ZodOptional<z.ZodAny>;
|
|
5394
|
+
}, z.core.$strip>>>;
|
|
5395
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
5396
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
5397
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
5398
|
+
}, z.core.$strip>;
|
|
5399
|
+
type CreatePackageRequest = z.infer<typeof CreatePackageRequest>;
|
|
5400
|
+
declare const UpdatePackageRequest: z.ZodObject<{
|
|
5401
|
+
key: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5402
|
+
name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5403
|
+
uuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5404
|
+
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5405
|
+
meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
5406
|
+
scenarioTemplateId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5407
|
+
elements: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5408
|
+
id: z.ZodString;
|
|
5409
|
+
type: z.ZodEnum<typeof IntegrationElementType>;
|
|
5410
|
+
element: z.ZodOptional<z.ZodAny>;
|
|
5411
|
+
}, z.core.$strip>>>>;
|
|
5412
|
+
integrationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5413
|
+
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5414
|
+
parentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
5415
|
+
}, z.core.$strip>;
|
|
5416
|
+
type UpdatePackageRequest = z.infer<typeof UpdatePackageRequest>;
|
|
5259
5417
|
declare const PackageApiResponse: z.ZodObject<{
|
|
5260
5418
|
id: z.ZodString;
|
|
5261
5419
|
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
@@ -5275,6 +5433,7 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
5275
5433
|
element: z.ZodOptional<z.ZodAny>;
|
|
5276
5434
|
}, z.core.$strip>>>;
|
|
5277
5435
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
5436
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
5278
5437
|
parentId: z.ZodOptional<z.ZodString>;
|
|
5279
5438
|
key: z.ZodString;
|
|
5280
5439
|
name: z.ZodString;
|
|
@@ -5299,6 +5458,7 @@ declare const PackageApiResponse: z.ZodObject<{
|
|
|
5299
5458
|
element: z.ZodOptional<z.ZodAny>;
|
|
5300
5459
|
}, z.core.$strip>>>;
|
|
5301
5460
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
5461
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
5302
5462
|
parentId: z.ZodOptional<z.ZodString>;
|
|
5303
5463
|
key: z.ZodString;
|
|
5304
5464
|
name: z.ZodString;
|
|
@@ -6310,9 +6470,11 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
6310
6470
|
uuid: z.ZodOptional<z.ZodString>;
|
|
6311
6471
|
description: z.ZodOptional<z.ZodString>;
|
|
6312
6472
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
6473
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
6474
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
6313
6475
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
6314
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
6315
6476
|
parentId: z.ZodOptional<z.ZodString>;
|
|
6477
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
6316
6478
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
6317
6479
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
6318
6480
|
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
@@ -6389,9 +6551,11 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
6389
6551
|
uuid: z.ZodOptional<z.ZodString>;
|
|
6390
6552
|
description: z.ZodOptional<z.ZodString>;
|
|
6391
6553
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
6554
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
6555
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
6392
6556
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
6393
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
6394
6557
|
parentId: z.ZodOptional<z.ZodString>;
|
|
6558
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
6395
6559
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
6396
6560
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
6397
6561
|
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
@@ -6418,9 +6582,11 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
6418
6582
|
uuid: z.ZodOptional<z.ZodString>;
|
|
6419
6583
|
description: z.ZodOptional<z.ZodString>;
|
|
6420
6584
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
6585
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
6586
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
6421
6587
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
6422
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
6423
6588
|
parentId: z.ZodOptional<z.ZodString>;
|
|
6589
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
6424
6590
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
6425
6591
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
6426
6592
|
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
@@ -6489,19 +6655,19 @@ declare const ActionApiResponse: z.ZodObject<{
|
|
|
6489
6655
|
type ActionApiResponse = z.infer<typeof ActionApiResponse>;
|
|
6490
6656
|
type Action = ActionApiResponse;
|
|
6491
6657
|
declare const FindActionsQuery: z.ZodObject<{
|
|
6658
|
+
layer: z.ZodOptional<z.ZodEnum<{
|
|
6659
|
+
connection: "connection";
|
|
6660
|
+
integration: "integration";
|
|
6661
|
+
universal: "universal";
|
|
6662
|
+
}>>;
|
|
6492
6663
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
6664
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
6493
6665
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
6494
6666
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
6495
6667
|
search: z.ZodOptional<z.ZodString>;
|
|
6496
6668
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
6497
6669
|
cursor: z.ZodOptional<z.ZodString>;
|
|
6498
6670
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
6499
|
-
layer: z.ZodOptional<z.ZodEnum<{
|
|
6500
|
-
connection: "connection";
|
|
6501
|
-
integration: "integration";
|
|
6502
|
-
universal: "universal";
|
|
6503
|
-
}>>;
|
|
6504
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
6505
6671
|
parentId: z.ZodOptional<z.ZodString>;
|
|
6506
6672
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
6507
6673
|
userId: z.ZodOptional<z.ZodString>;
|
|
@@ -6513,9 +6679,11 @@ declare const CreateActionRequest: z.ZodObject<{
|
|
|
6513
6679
|
uuid: z.ZodOptional<z.ZodString>;
|
|
6514
6680
|
description: z.ZodOptional<z.ZodString>;
|
|
6515
6681
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
6682
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
6683
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
6516
6684
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
6517
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
6518
6685
|
parentId: z.ZodOptional<z.ZodString>;
|
|
6686
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
6519
6687
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
6520
6688
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
6521
6689
|
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
@@ -6530,9 +6698,11 @@ declare const UpdateActionRequest: z.ZodObject<{
|
|
|
6530
6698
|
uuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6531
6699
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6532
6700
|
meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
6701
|
+
integrationUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6702
|
+
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6533
6703
|
integrationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6534
|
-
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6535
6704
|
parentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6705
|
+
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6536
6706
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6537
6707
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
6538
6708
|
type: z.ZodOptional<z.ZodOptional<z.ZodEnum<typeof ActionType>>>;
|
|
@@ -6547,9 +6717,11 @@ declare const CreateActionInstanceRequest: z.ZodObject<{
|
|
|
6547
6717
|
uuid: z.ZodOptional<z.ZodString>;
|
|
6548
6718
|
description: z.ZodOptional<z.ZodString>;
|
|
6549
6719
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
6720
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
6721
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
6550
6722
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
6551
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
6552
6723
|
parentId: z.ZodOptional<z.ZodString>;
|
|
6724
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
6553
6725
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
6554
6726
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
6555
6727
|
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
@@ -6564,9 +6736,11 @@ declare const UpdateActionInstanceRequest: z.ZodObject<{
|
|
|
6564
6736
|
uuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6565
6737
|
description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6566
6738
|
meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
6739
|
+
integrationUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6740
|
+
parentUuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6567
6741
|
integrationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6568
|
-
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6569
6742
|
parentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6743
|
+
connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6570
6744
|
instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
6571
6745
|
inputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
|
|
6572
6746
|
type: z.ZodOptional<z.ZodOptional<z.ZodEnum<typeof ActionType>>>;
|
|
@@ -6590,9 +6764,11 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
6590
6764
|
uuid: z.ZodOptional<z.ZodString>;
|
|
6591
6765
|
description: z.ZodOptional<z.ZodString>;
|
|
6592
6766
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
6767
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
6768
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
6593
6769
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
6594
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
6595
6770
|
parentId: z.ZodOptional<z.ZodString>;
|
|
6771
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
6596
6772
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
6597
6773
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
6598
6774
|
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
@@ -6669,9 +6845,11 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
6669
6845
|
uuid: z.ZodOptional<z.ZodString>;
|
|
6670
6846
|
description: z.ZodOptional<z.ZodString>;
|
|
6671
6847
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
6848
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
6849
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
6672
6850
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
6673
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
6674
6851
|
parentId: z.ZodOptional<z.ZodString>;
|
|
6852
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
6675
6853
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
6676
6854
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
6677
6855
|
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
@@ -6698,9 +6876,11 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
6698
6876
|
uuid: z.ZodOptional<z.ZodString>;
|
|
6699
6877
|
description: z.ZodOptional<z.ZodString>;
|
|
6700
6878
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
6879
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
6880
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
6701
6881
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
6702
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
6703
6882
|
parentId: z.ZodOptional<z.ZodString>;
|
|
6883
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
6704
6884
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
6705
6885
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
6706
6886
|
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
@@ -6771,38 +6951,38 @@ type ActionInstance = ActionInstanceApiResponse;
|
|
|
6771
6951
|
interface ActionInstanceSelector extends ConnectionSelector, ElementInstanceSelector {
|
|
6772
6952
|
}
|
|
6773
6953
|
declare const ListActionInstancesForConnectionQuery: z.ZodObject<{
|
|
6954
|
+
layer: z.ZodOptional<z.ZodEnum<{
|
|
6955
|
+
connection: "connection";
|
|
6956
|
+
integration: "integration";
|
|
6957
|
+
universal: "universal";
|
|
6958
|
+
}>>;
|
|
6774
6959
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
6960
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
6775
6961
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
6776
6962
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
6777
6963
|
search: z.ZodOptional<z.ZodString>;
|
|
6778
6964
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
6779
6965
|
cursor: z.ZodOptional<z.ZodString>;
|
|
6780
6966
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
6781
|
-
layer: z.ZodOptional<z.ZodEnum<{
|
|
6782
|
-
connection: "connection";
|
|
6783
|
-
integration: "integration";
|
|
6784
|
-
universal: "universal";
|
|
6785
|
-
}>>;
|
|
6786
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
6787
6967
|
parentId: z.ZodOptional<z.ZodString>;
|
|
6788
6968
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
6789
6969
|
userId: z.ZodOptional<z.ZodString>;
|
|
6790
6970
|
}, z.core.$strip>;
|
|
6791
6971
|
type ListActionInstancesForConnectionQuery = FindActionsQuery;
|
|
6792
6972
|
declare const FindActionInstancesQuery: z.ZodObject<{
|
|
6973
|
+
layer: z.ZodOptional<z.ZodEnum<{
|
|
6974
|
+
connection: "connection";
|
|
6975
|
+
integration: "integration";
|
|
6976
|
+
universal: "universal";
|
|
6977
|
+
}>>;
|
|
6793
6978
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
6979
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
6794
6980
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
6795
6981
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
6796
6982
|
search: z.ZodOptional<z.ZodString>;
|
|
6797
6983
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
6798
6984
|
cursor: z.ZodOptional<z.ZodString>;
|
|
6799
6985
|
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
6800
|
-
layer: z.ZodOptional<z.ZodEnum<{
|
|
6801
|
-
connection: "connection";
|
|
6802
|
-
integration: "integration";
|
|
6803
|
-
universal: "universal";
|
|
6804
|
-
}>>;
|
|
6805
|
-
integrationId: z.ZodOptional<z.ZodString>;
|
|
6806
6986
|
parentId: z.ZodOptional<z.ZodString>;
|
|
6807
6987
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
6808
6988
|
userId: z.ZodOptional<z.ZodString>;
|
|
@@ -6848,9 +7028,11 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
6848
7028
|
uuid: z.ZodOptional<z.ZodString>;
|
|
6849
7029
|
description: z.ZodOptional<z.ZodString>;
|
|
6850
7030
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7031
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
7032
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
6851
7033
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
6852
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
6853
7034
|
parentId: z.ZodOptional<z.ZodString>;
|
|
7035
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
6854
7036
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
6855
7037
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
6856
7038
|
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
@@ -7427,6 +7609,7 @@ interface WorkspaceElementSpec {
|
|
|
7427
7609
|
isMembraneInterface?: boolean;
|
|
7428
7610
|
isIntegrationLevel?: boolean;
|
|
7429
7611
|
parentFieldKey?: string;
|
|
7612
|
+
universalParentFieldKey?: string;
|
|
7430
7613
|
}
|
|
7431
7614
|
interface WorkspaceElements {
|
|
7432
7615
|
flows?: Record<string, CreateFlowRequest>;
|
|
@@ -8491,12 +8674,16 @@ interface WorkspaceUpdate {
|
|
|
8491
8674
|
declare enum OrgLimitsType {
|
|
8492
8675
|
NUMBER_OF_WORKSPACES = "numberOfWorkspaces",
|
|
8493
8676
|
TODAY_USAGE = "todayUsage",
|
|
8494
|
-
LAST_THIRTY_DAY_USAGE = "lastThirtyDayUsage"
|
|
8677
|
+
LAST_THIRTY_DAY_USAGE = "lastThirtyDayUsage",
|
|
8678
|
+
MEMBRANE_AGENT_MONTHLY_USAGE = "membraneAgentMonthlyUsage",
|
|
8679
|
+
MEMBRANE_EXPERT_CREDITS_CAP = "membraneExpertCreditsCapPerMonth"
|
|
8495
8680
|
}
|
|
8496
8681
|
interface OrgLimits {
|
|
8497
8682
|
[OrgLimitsType.NUMBER_OF_WORKSPACES]?: number;
|
|
8498
8683
|
[OrgLimitsType.TODAY_USAGE]?: number;
|
|
8499
8684
|
[OrgLimitsType.LAST_THIRTY_DAY_USAGE]?: number;
|
|
8685
|
+
[OrgLimitsType.MEMBRANE_AGENT_MONTHLY_USAGE]?: number;
|
|
8686
|
+
[OrgLimitsType.MEMBRANE_EXPERT_CREDITS_CAP]?: number | null;
|
|
8500
8687
|
}
|
|
8501
8688
|
interface Org {
|
|
8502
8689
|
id: string;
|
|
@@ -8548,6 +8735,10 @@ interface OrgWorkspace {
|
|
|
8548
8735
|
trialEndDate?: string;
|
|
8549
8736
|
featureFlags?: string[];
|
|
8550
8737
|
}
|
|
8738
|
+
interface MembraneAgentKey {
|
|
8739
|
+
key: string;
|
|
8740
|
+
expiresAt: Date;
|
|
8741
|
+
}
|
|
8551
8742
|
|
|
8552
8743
|
declare enum WebhookTypeEnum {
|
|
8553
8744
|
USER_INVITED_TO_ORG = "user-invited-to-org",
|
|
@@ -8820,6 +9011,45 @@ interface HandyScenarioTemplateElementApi {
|
|
|
8820
9011
|
} & Record<string, any>;
|
|
8821
9012
|
}
|
|
8822
9013
|
|
|
9014
|
+
declare enum AgentSessionStatus {
|
|
9015
|
+
QUEUED = "queued",
|
|
9016
|
+
STARTING = "starting",
|
|
9017
|
+
RUNNING = "running",
|
|
9018
|
+
COMPLETED = "completed",
|
|
9019
|
+
FAILED = "failed",
|
|
9020
|
+
CANCELLED = "cancelled"
|
|
9021
|
+
}
|
|
9022
|
+
declare const AgentSession: z.ZodObject<{
|
|
9023
|
+
id: z.ZodString;
|
|
9024
|
+
workspaceId: z.ZodString;
|
|
9025
|
+
workspaceElementType: z.ZodEnum<typeof WorkspaceElementType>;
|
|
9026
|
+
workspaceElementId: z.ZodString;
|
|
9027
|
+
type: z.ZodString;
|
|
9028
|
+
status: z.ZodEnum<typeof AgentSessionStatus>;
|
|
9029
|
+
workerId: z.ZodOptional<z.ZodString>;
|
|
9030
|
+
workerUrl: z.ZodOptional<z.ZodString>;
|
|
9031
|
+
prompt: z.ZodString;
|
|
9032
|
+
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
9033
|
+
createdBy: z.ZodString;
|
|
9034
|
+
lastActivityAt: z.ZodISODateTime;
|
|
9035
|
+
createdAt: z.ZodISODateTime;
|
|
9036
|
+
updatedAt: z.ZodISODateTime;
|
|
9037
|
+
storedMessagesUri: z.ZodOptional<z.ZodString>;
|
|
9038
|
+
sessionFilesZipUri: z.ZodOptional<z.ZodString>;
|
|
9039
|
+
logs: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
9040
|
+
}, z.core.$strip>;
|
|
9041
|
+
type AgentSession = z.infer<typeof AgentSession>;
|
|
9042
|
+
declare const CreateAgentSession: z.ZodObject<{
|
|
9043
|
+
workspaceElementType: z.ZodEnum<typeof WorkspaceElementType>;
|
|
9044
|
+
workspaceElementId: z.ZodString;
|
|
9045
|
+
prompt: z.ZodString;
|
|
9046
|
+
}, z.core.$strip>;
|
|
9047
|
+
type CreateAgentSession = z.infer<typeof CreateAgentSession>;
|
|
9048
|
+
declare const AgentSessionInputSchema: z.ZodObject<{
|
|
9049
|
+
input: z.ZodOptional<z.ZodString>;
|
|
9050
|
+
}, z.core.$strip>;
|
|
9051
|
+
type AgentSessionInput = z.infer<typeof AgentSessionInputSchema>;
|
|
9052
|
+
|
|
8823
9053
|
interface OpenMembraneConfigurationOptions extends OpenConfigurationOptions {
|
|
8824
9054
|
}
|
|
8825
9055
|
declare class MembraneClient extends MembraneApiClient {
|
|
@@ -8914,9 +9144,11 @@ declare const ActionEditableProperties: z.ZodObject<{
|
|
|
8914
9144
|
uuid: z.ZodOptional<z.ZodString>;
|
|
8915
9145
|
description: z.ZodOptional<z.ZodString>;
|
|
8916
9146
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9147
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
9148
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
8917
9149
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
8918
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
8919
9150
|
parentId: z.ZodOptional<z.ZodString>;
|
|
9151
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
8920
9152
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8921
9153
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
8922
9154
|
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
@@ -8931,9 +9163,11 @@ declare const BaseAction: z.ZodObject<{
|
|
|
8931
9163
|
uuid: z.ZodOptional<z.ZodString>;
|
|
8932
9164
|
description: z.ZodOptional<z.ZodString>;
|
|
8933
9165
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9166
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
9167
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
8934
9168
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
8935
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
8936
9169
|
parentId: z.ZodOptional<z.ZodString>;
|
|
9170
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
8937
9171
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8938
9172
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
8939
9173
|
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
@@ -8960,9 +9194,11 @@ declare const BaseActionInstance: z.ZodObject<{
|
|
|
8960
9194
|
uuid: z.ZodOptional<z.ZodString>;
|
|
8961
9195
|
description: z.ZodOptional<z.ZodString>;
|
|
8962
9196
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9197
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
9198
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
8963
9199
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
8964
|
-
connectionId: z.ZodOptional<z.ZodString>;
|
|
8965
9200
|
parentId: z.ZodOptional<z.ZodString>;
|
|
9201
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
8966
9202
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
8967
9203
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
8968
9204
|
type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
|
|
@@ -8995,6 +9231,10 @@ declare const DataSourceEditableProperties: z.ZodObject<{
|
|
|
8995
9231
|
name: z.ZodOptional<z.ZodString>;
|
|
8996
9232
|
uuid: z.ZodOptional<z.ZodString>;
|
|
8997
9233
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9234
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
9235
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
9236
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
9237
|
+
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
8998
9238
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
8999
9239
|
udm: z.ZodOptional<z.ZodString>;
|
|
9000
9240
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9011,6 +9251,10 @@ declare const BaseDataSource: z.ZodObject<{
|
|
|
9011
9251
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
9012
9252
|
uuid: z.ZodOptional<z.ZodString>;
|
|
9013
9253
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9254
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
9255
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
9256
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
9257
|
+
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
9014
9258
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
9015
9259
|
udm: z.ZodOptional<z.ZodString>;
|
|
9016
9260
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9269,10 +9513,14 @@ declare const FLOW_NODE_SPECS: Record<FlowNodeType, FlowNodeSpec>;
|
|
|
9269
9513
|
declare const FlowEditableProperties: z.ZodObject<{
|
|
9270
9514
|
key: z.ZodOptional<z.ZodString>;
|
|
9271
9515
|
description: z.ZodOptional<z.ZodString>;
|
|
9516
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
9272
9517
|
name: z.ZodOptional<z.ZodString>;
|
|
9273
9518
|
uuid: z.ZodOptional<z.ZodString>;
|
|
9274
9519
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9275
|
-
|
|
9520
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
9521
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
9522
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
9523
|
+
flowId: z.ZodOptional<z.ZodString>;
|
|
9276
9524
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
9277
9525
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
9278
9526
|
nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -9304,9 +9552,13 @@ declare const BaseFlow: z.ZodObject<{
|
|
|
9304
9552
|
id: z.ZodString;
|
|
9305
9553
|
key: z.ZodOptional<z.ZodString>;
|
|
9306
9554
|
description: z.ZodOptional<z.ZodString>;
|
|
9555
|
+
integrationId: z.ZodOptional<z.ZodString>;
|
|
9307
9556
|
uuid: z.ZodOptional<z.ZodString>;
|
|
9308
9557
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9309
|
-
|
|
9558
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
9559
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
9560
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
9561
|
+
flowId: z.ZodOptional<z.ZodString>;
|
|
9310
9562
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
9311
9563
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
9312
9564
|
nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -9453,6 +9705,7 @@ declare const PackageEditableProperties: z.ZodObject<{
|
|
|
9453
9705
|
element: z.ZodOptional<z.ZodAny>;
|
|
9454
9706
|
}, z.core.$strip>>>;
|
|
9455
9707
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
9708
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
9456
9709
|
parentId: z.ZodOptional<z.ZodString>;
|
|
9457
9710
|
}, z.core.$strip>;
|
|
9458
9711
|
type PackageEditableProperties = z.infer<typeof PackageEditableProperties>;
|
|
@@ -9481,6 +9734,7 @@ declare const BasePackage: z.ZodObject<{
|
|
|
9481
9734
|
element: z.ZodOptional<z.ZodAny>;
|
|
9482
9735
|
}, z.core.$strip>>>;
|
|
9483
9736
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
9737
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
9484
9738
|
parentId: z.ZodOptional<z.ZodString>;
|
|
9485
9739
|
key: z.ZodString;
|
|
9486
9740
|
name: z.ZodString;
|
|
@@ -9676,5 +9930,5 @@ declare function getParentNodeKeys(flow: Flow | FlowInstance, nodeKey: string):
|
|
|
9676
9930
|
declare function getUpstreamNodeKeys(flow: Flow | FlowInstance, nodeKey: string): string[];
|
|
9677
9931
|
declare function hasCycles(nodes?: Record<string, FlowNode>): boolean;
|
|
9678
9932
|
|
|
9679
|
-
export { ACTIONS, AccessDeniedError, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionType, ActionsAccessor, AlertSeverity, AlertStatus, AlertType, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypesAccessor, AppliedToIntegrations, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnection, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BasePackage, BaseScreen, BaseWorkspaceElement, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionError, ConnectionErrorKey, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionProxy, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionsAccessor, ConnectorAuthMethodTypes, ConnectorCopilotFileChunkTopicKey, ConnectorCopilotSuggestionType, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType, ConnectorFileUpdateType, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorStatus, CopilotActionStatus, CopilotActionType, CopilotActivityScope, CopilotActivityType, CopilotTaskStatus, CopilotTaskType, CreateActionInstanceRequest, CreateActionRequest, CreateConnectionRequest, CreateCustomerRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaType, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, ErrorData, ErrorDataSchema, ErrorType, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindPackagesQuery, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceNode, FlowInstanceNodeState, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowsAccessor, Formula, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhooksState, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAuthOption, IntegrationAuthUi, IntegrationElementLevel, IntegrationElementType, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationsAccessor, InternalError, InvalidLocatorError, LimitUnits, ListActionInstancesForConnectionQuery, ListDataSourceInstancesForConnectionQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListFlowInstancesForConnectionQuery, LogRecordType, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MembraneClient, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OrgLimitsType, OrgUserRole, OrgUserStatus, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, RATE_LIMITS, RateLimitExceededError, RateLimits, ResetFlowInstanceOptions, RunActionRequest, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateCustomerRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, WorkspaceElementDependencyType, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceEventType, WorkspaceNotificationType, WorkspaceOnboardingStep, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getErrorFromData, getEventMethodFileKey, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isSameDataLocation, isSchemaEmpty, isStream, isValidLocator, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
9680
|
-
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, Alert, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, BaseConnector, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, ConfigurationStateResult, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthOAuth1, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthType, ConnectorCopilotSuggestion, ConnectorCopilotSuggestionAction, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorOperationHandler, ConnectorOperationMethod, ConnectorSpec, ConnectorUdmCollectionMapping, ConnectorUdmListLitem, ConnectorUdmSpec, ConnectorUiSpec, CopilotAction, CopilotActionReference, CopilotActivity, CopilotActivityDataTask, CopilotActivityNotificationData, CopilotTask, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateDataLinkTableRequest, CreateFieldMappingInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateScreenRequest, CreateUserRequest, Customer, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocationPointer, DataLocator, DataRecord, DataSource, DataSourceInstance, DataSourceInstanceSelector, DataSourceSelector, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstance, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindDataLinkQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventPullsQuery, FindExternalEventSubscriptionsQuery, FindFieldMappingInstancesQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindScreensQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, IntegrationSpecificElementSelector, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, Org, OrgLimits, OrgUser, OrgWorkspace, Package, PatchSchemaOption, PlatformUser, PullLatestRecordsEventOutput, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, ScreenSelector, Self, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateDataLinkTableRequest, UpdateFieldMappingInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateScreenRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, Workspace, WorkspaceElementCalculateStateResult, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|
|
9933
|
+
export { ACTIONS, AccessDeniedError, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionType, ActionsAccessor, AgentSession, AgentSessionInputSchema, AgentSessionStatus, AlertSeverity, AlertStatus, AlertType, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypesAccessor, AppliedToIntegrations, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnection, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BasePackage, BaseScreen, BaseWorkspaceElement, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionError, ConnectionErrorKey, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionProxy, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionsAccessor, ConnectorAuthMethodTypes, ConnectorCopilotFileChunkTopicKey, ConnectorCopilotSuggestionType, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType, ConnectorFileUpdateType, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorStatus, CopilotActionStatus, CopilotActionType, CopilotActivityScope, CopilotActivityType, CopilotTaskStatus, CopilotTaskType, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateConnectionRequest, CreateCustomerRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreatePackageRequest, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaType, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, ErrorData, ErrorDataSchema, ErrorType, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindPackagesQuery, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceNode, FlowInstanceNodeState, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowsAccessor, Formula, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhooksState, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAuthOption, IntegrationAuthUi, IntegrationElementLevel, IntegrationElementType, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationsAccessor, InternalError, InvalidLocatorError, LimitUnits, ListActionInstancesForConnectionQuery, ListDataSourceInstancesForConnectionQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListFlowInstancesForConnectionQuery, LogRecordType, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, axios as MembraneAxiosInstance, MembraneClient, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OrgLimitsType, OrgUserRole, OrgUserStatus, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, RATE_LIMITS, RateLimitExceededError, RateLimits, ResetFlowInstanceOptions, RunActionRequest, RunFlowApiRequest, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateCustomerRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdatePackageRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, WorkspaceElementDependencyType, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceEventType, WorkspaceNotificationType, WorkspaceOnboardingStep, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getErrorFromData, getEventMethodFileKey, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isSameDataLocation, isSchemaEmpty, isStream, isValidLocator, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
9934
|
+
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, Alert, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, BaseConnector, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, ConfigurationStateResult, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthOAuth1, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthType, ConnectorCopilotSuggestion, ConnectorCopilotSuggestionAction, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorOperationHandler, ConnectorOperationMethod, ConnectorSpec, ConnectorUdmCollectionMapping, ConnectorUdmListLitem, ConnectorUdmSpec, ConnectorUiSpec, CopilotAction, CopilotActionReference, CopilotActivity, CopilotActivityDataTask, CopilotActivityNotificationData, CopilotTask, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateDataLinkTableRequest, CreateFieldMappingInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateScreenRequest, CreateUserRequest, Customer, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocationPointer, DataLocator, DataRecord, DataSource, DataSourceInstance, DataSourceInstanceSelector, DataSourceSelector, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstance, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindDataLinkQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventPullsQuery, FindExternalEventSubscriptionsQuery, FindFieldMappingInstancesQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindScreensQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, IntegrationSpecificElementSelector, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, MembraneAgentKey, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, Org, OrgLimits, OrgUser, OrgWorkspace, Package, PatchSchemaOption, PlatformUser, PullLatestRecordsEventOutput, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, ScreenSelector, Self, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateDataLinkTableRequest, UpdateFieldMappingInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateScreenRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, Workspace, WorkspaceElementCalculateStateResult, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|