@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.
Files changed (36) hide show
  1. package/dist/bundle.d.ts +162 -40
  2. package/dist/bundle.js +4 -2
  3. package/dist/bundle.js.map +1 -1
  4. package/dist/dts/agent/session.d.ts +41 -0
  5. package/dist/dts/index.browser.d.ts +2 -0
  6. package/dist/dts/index.d.ts +2 -0
  7. package/dist/dts/orgs/types.d.ts +9 -1
  8. package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +3 -1
  9. package/dist/dts/workspace-elements/api/actions-api.d.ts +48 -28
  10. package/dist/dts/workspace-elements/api/data-source-instances-api.d.ts +4 -0
  11. package/dist/dts/workspace-elements/api/data-sources-api.d.ts +32 -6
  12. package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +8 -0
  13. package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +32 -6
  14. package/dist/dts/workspace-elements/api/flows-api.d.ts +48 -17
  15. package/dist/dts/workspace-elements/api/packages-api.d.ts +50 -5
  16. package/dist/dts/workspace-elements/base/action-instances/types.d.ts +3 -1
  17. package/dist/dts/workspace-elements/base/actions/index.d.ts +9 -3
  18. package/dist/dts/workspace-elements/base/data-sources/index.d.ts +8 -0
  19. package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +8 -0
  20. package/dist/dts/workspace-elements/base/flows/index.d.ts +10 -2
  21. package/dist/dts/workspace-elements/base/packages/index.d.ts +2 -0
  22. package/dist/dts/workspace-elements/types.d.ts +16 -6
  23. package/dist/dts/workspace-elements-catalog/index.d.ts +1 -0
  24. package/dist/index.browser.d.mts +309 -55
  25. package/dist/index.browser.d.ts +309 -55
  26. package/dist/index.browser.js +82 -29
  27. package/dist/index.browser.js.map +1 -1
  28. package/dist/index.browser.mjs +76 -30
  29. package/dist/index.browser.mjs.map +1 -1
  30. package/dist/index.node.d.mts +309 -55
  31. package/dist/index.node.d.ts +309 -55
  32. package/dist/index.node.js +82 -29
  33. package/dist/index.node.js.map +1 -1
  34. package/dist/index.node.mjs +76 -30
  35. package/dist/index.node.mjs.map +1 -1
  36. package/package.json +2 -1
@@ -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
- integrationId: z.ZodOptional<z.ZodString>;
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
- integrationId: z.ZodOptional<z.ZodString>;
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
- integrationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
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
- integrationId: z.ZodOptional<z.ZodString>;
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
- integrationId: z.ZodOptional<z.ZodString>;
5365
+ layer: z.ZodOptional<z.ZodEnum<{
5366
+ connection: "connection";
5367
+ integration: "integration";
5368
+ universal: "universal";
5369
+ }>>;
5251
5370
  integrationKey: z.ZodOptional<z.ZodString>;
5252
- parentId: z.ZodOptional<z.ZodString>;
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",
@@ -8852,6 +9043,45 @@ declare function getDefaultMembraneConfigLoader(): MembraneConfigLoader;
8852
9043
  declare function loadMembraneConfig(cwd?: string, options?: LoadConfigOptions): PartialMembraneConfig;
8853
9044
  declare function hasMembraneCredentials(cwd?: string): boolean;
8854
9045
 
9046
+ declare enum AgentSessionStatus {
9047
+ QUEUED = "queued",
9048
+ STARTING = "starting",
9049
+ RUNNING = "running",
9050
+ COMPLETED = "completed",
9051
+ FAILED = "failed",
9052
+ CANCELLED = "cancelled"
9053
+ }
9054
+ declare const AgentSession: z.ZodObject<{
9055
+ id: z.ZodString;
9056
+ workspaceId: z.ZodString;
9057
+ workspaceElementType: z.ZodEnum<typeof WorkspaceElementType>;
9058
+ workspaceElementId: z.ZodString;
9059
+ type: z.ZodString;
9060
+ status: z.ZodEnum<typeof AgentSessionStatus>;
9061
+ workerId: z.ZodOptional<z.ZodString>;
9062
+ workerUrl: z.ZodOptional<z.ZodString>;
9063
+ prompt: z.ZodString;
9064
+ error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
9065
+ createdBy: z.ZodString;
9066
+ lastActivityAt: z.ZodISODateTime;
9067
+ createdAt: z.ZodISODateTime;
9068
+ updatedAt: z.ZodISODateTime;
9069
+ storedMessagesUri: z.ZodOptional<z.ZodString>;
9070
+ sessionFilesZipUri: z.ZodOptional<z.ZodString>;
9071
+ logs: z.ZodOptional<z.ZodArray<z.ZodAny>>;
9072
+ }, z.core.$strip>;
9073
+ type AgentSession = z.infer<typeof AgentSession>;
9074
+ declare const CreateAgentSession: z.ZodObject<{
9075
+ workspaceElementType: z.ZodEnum<typeof WorkspaceElementType>;
9076
+ workspaceElementId: z.ZodString;
9077
+ prompt: z.ZodString;
9078
+ }, z.core.$strip>;
9079
+ type CreateAgentSession = z.infer<typeof CreateAgentSession>;
9080
+ declare const AgentSessionInputSchema: z.ZodObject<{
9081
+ input: z.ZodOptional<z.ZodString>;
9082
+ }, z.core.$strip>;
9083
+ type AgentSessionInput = z.infer<typeof AgentSessionInputSchema>;
9084
+
8855
9085
  interface OpenMembraneConfigurationOptions extends OpenConfigurationOptions {
8856
9086
  }
8857
9087
  declare class MembraneClient extends MembraneApiClient {
@@ -8946,9 +9176,11 @@ declare const ActionEditableProperties: z.ZodObject<{
8946
9176
  uuid: z.ZodOptional<z.ZodString>;
8947
9177
  description: z.ZodOptional<z.ZodString>;
8948
9178
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
9179
+ integrationUuid: z.ZodOptional<z.ZodString>;
9180
+ parentUuid: z.ZodOptional<z.ZodString>;
8949
9181
  integrationId: z.ZodOptional<z.ZodString>;
8950
- connectionId: z.ZodOptional<z.ZodString>;
8951
9182
  parentId: z.ZodOptional<z.ZodString>;
9183
+ connectionId: z.ZodOptional<z.ZodString>;
8952
9184
  instanceKey: z.ZodOptional<z.ZodString>;
8953
9185
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
8954
9186
  type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
@@ -8963,9 +9195,11 @@ declare const BaseAction: z.ZodObject<{
8963
9195
  uuid: z.ZodOptional<z.ZodString>;
8964
9196
  description: z.ZodOptional<z.ZodString>;
8965
9197
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
9198
+ integrationUuid: z.ZodOptional<z.ZodString>;
9199
+ parentUuid: z.ZodOptional<z.ZodString>;
8966
9200
  integrationId: z.ZodOptional<z.ZodString>;
8967
- connectionId: z.ZodOptional<z.ZodString>;
8968
9201
  parentId: z.ZodOptional<z.ZodString>;
9202
+ connectionId: z.ZodOptional<z.ZodString>;
8969
9203
  instanceKey: z.ZodOptional<z.ZodString>;
8970
9204
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
8971
9205
  type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
@@ -8992,9 +9226,11 @@ declare const BaseActionInstance: z.ZodObject<{
8992
9226
  uuid: z.ZodOptional<z.ZodString>;
8993
9227
  description: z.ZodOptional<z.ZodString>;
8994
9228
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
9229
+ integrationUuid: z.ZodOptional<z.ZodString>;
9230
+ parentUuid: z.ZodOptional<z.ZodString>;
8995
9231
  integrationId: z.ZodOptional<z.ZodString>;
8996
- connectionId: z.ZodOptional<z.ZodString>;
8997
9232
  parentId: z.ZodOptional<z.ZodString>;
9233
+ connectionId: z.ZodOptional<z.ZodString>;
8998
9234
  instanceKey: z.ZodOptional<z.ZodString>;
8999
9235
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
9000
9236
  type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
@@ -9027,6 +9263,10 @@ declare const DataSourceEditableProperties: z.ZodObject<{
9027
9263
  name: z.ZodOptional<z.ZodString>;
9028
9264
  uuid: z.ZodOptional<z.ZodString>;
9029
9265
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
9266
+ integrationUuid: z.ZodOptional<z.ZodString>;
9267
+ parentUuid: z.ZodOptional<z.ZodString>;
9268
+ connectionId: z.ZodOptional<z.ZodString>;
9269
+ dataSourceId: z.ZodOptional<z.ZodString>;
9030
9270
  universalDataSourceId: z.ZodOptional<z.ZodString>;
9031
9271
  udm: z.ZodOptional<z.ZodString>;
9032
9272
  pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
@@ -9043,6 +9283,10 @@ declare const BaseDataSource: z.ZodObject<{
9043
9283
  integrationId: z.ZodOptional<z.ZodString>;
9044
9284
  uuid: z.ZodOptional<z.ZodString>;
9045
9285
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
9286
+ integrationUuid: z.ZodOptional<z.ZodString>;
9287
+ parentUuid: z.ZodOptional<z.ZodString>;
9288
+ connectionId: z.ZodOptional<z.ZodString>;
9289
+ dataSourceId: z.ZodOptional<z.ZodString>;
9046
9290
  universalDataSourceId: z.ZodOptional<z.ZodString>;
9047
9291
  udm: z.ZodOptional<z.ZodString>;
9048
9292
  pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
@@ -9301,10 +9545,14 @@ declare const FLOW_NODE_SPECS: Record<FlowNodeType, FlowNodeSpec>;
9301
9545
  declare const FlowEditableProperties: z.ZodObject<{
9302
9546
  key: z.ZodOptional<z.ZodString>;
9303
9547
  description: z.ZodOptional<z.ZodString>;
9548
+ integrationId: z.ZodOptional<z.ZodString>;
9304
9549
  name: z.ZodOptional<z.ZodString>;
9305
9550
  uuid: z.ZodOptional<z.ZodString>;
9306
9551
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
9307
- integrationId: z.ZodOptional<z.ZodString>;
9552
+ integrationUuid: z.ZodOptional<z.ZodString>;
9553
+ parentUuid: z.ZodOptional<z.ZodString>;
9554
+ connectionId: z.ZodOptional<z.ZodString>;
9555
+ flowId: z.ZodOptional<z.ZodString>;
9308
9556
  universalFlowId: z.ZodOptional<z.ZodString>;
9309
9557
  parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
9310
9558
  nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -9336,9 +9584,13 @@ declare const BaseFlow: z.ZodObject<{
9336
9584
  id: z.ZodString;
9337
9585
  key: z.ZodOptional<z.ZodString>;
9338
9586
  description: z.ZodOptional<z.ZodString>;
9587
+ integrationId: z.ZodOptional<z.ZodString>;
9339
9588
  uuid: z.ZodOptional<z.ZodString>;
9340
9589
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
9341
- integrationId: z.ZodOptional<z.ZodString>;
9590
+ integrationUuid: z.ZodOptional<z.ZodString>;
9591
+ parentUuid: z.ZodOptional<z.ZodString>;
9592
+ connectionId: z.ZodOptional<z.ZodString>;
9593
+ flowId: z.ZodOptional<z.ZodString>;
9342
9594
  universalFlowId: z.ZodOptional<z.ZodString>;
9343
9595
  parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
9344
9596
  nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -9485,6 +9737,7 @@ declare const PackageEditableProperties: z.ZodObject<{
9485
9737
  element: z.ZodOptional<z.ZodAny>;
9486
9738
  }, z.core.$strip>>>;
9487
9739
  integrationId: z.ZodOptional<z.ZodString>;
9740
+ parentUuid: z.ZodOptional<z.ZodString>;
9488
9741
  parentId: z.ZodOptional<z.ZodString>;
9489
9742
  }, z.core.$strip>;
9490
9743
  type PackageEditableProperties = z.infer<typeof PackageEditableProperties>;
@@ -9513,6 +9766,7 @@ declare const BasePackage: z.ZodObject<{
9513
9766
  element: z.ZodOptional<z.ZodAny>;
9514
9767
  }, z.core.$strip>>>;
9515
9768
  integrationId: z.ZodOptional<z.ZodString>;
9769
+ parentUuid: z.ZodOptional<z.ZodString>;
9516
9770
  parentId: z.ZodOptional<z.ZodString>;
9517
9771
  key: z.ZodString;
9518
9772
  name: z.ZodString;
@@ -9708,5 +9962,5 @@ declare function getParentNodeKeys(flow: Flow | FlowInstance, nodeKey: string):
9708
9962
  declare function getUpstreamNodeKeys(flow: Flow | FlowInstance, nodeKey: string): string[];
9709
9963
  declare function hasCycles(nodes?: Record<string, FlowNode>): boolean;
9710
9964
 
9711
- 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, CONFIG_FILE_NAME, 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, MembraneConfigLoader, 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, getDefaultMembraneConfigLoader, 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, hasMembraneCredentials, injectFormulaCatalog, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isSameDataLocation, isSchemaEmpty, isStream, isValidLocator, loadMembraneConfig, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, membraneConfigSchema, 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 };
9712
- 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, LoadConfigOptions, LogRecord, LookupValue, MapFormulaValue, MappingItem, MembraneConfig, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, Org, OrgLimits, OrgUser, OrgWorkspace, Package, PartialMembraneConfig, 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 };
9965
+ 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, CONFIG_FILE_NAME, 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, MembraneConfigLoader, 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, getDefaultMembraneConfigLoader, 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, hasMembraneCredentials, injectFormulaCatalog, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isSameDataLocation, isSchemaEmpty, isStream, isValidLocator, loadMembraneConfig, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, membraneConfigSchema, 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 };
9966
+ 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, LoadConfigOptions, LogRecord, LookupValue, MapFormulaValue, MappingItem, MembraneAgentKey, MembraneConfig, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, Org, OrgLimits, OrgUser, OrgWorkspace, Package, PartialMembraneConfig, 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 };