@membranehq/sdk 0.8.3 → 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 +1 -0
  6. package/dist/dts/index.d.ts +1 -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 +307 -55
  25. package/dist/index.browser.d.ts +307 -55
  26. package/dist/index.browser.js +81 -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 +307 -55
  31. package/dist/index.node.d.ts +307 -55
  32. package/dist/index.node.js +81 -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
@@ -209,6 +209,8 @@ declare const BaseIntegrationLevelMembraneInterfaceEditableProperties: z.ZodObje
209
209
  uuid: z.ZodOptional<z.ZodString>;
210
210
  description: z.ZodOptional<z.ZodString>;
211
211
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
212
+ integrationUuid: z.ZodOptional<z.ZodString>;
213
+ parentUuid: z.ZodOptional<z.ZodString>;
212
214
  integrationId: z.ZodOptional<z.ZodString>;
213
215
  parentId: z.ZodOptional<z.ZodString>;
214
216
  }, z.core.$strip>;
@@ -224,25 +226,31 @@ declare const BaseIntegrationLevelMembraneInterfaceReadOnlyProperties: z.ZodObje
224
226
  isCustomized: z.ZodOptional<z.ZodBoolean>;
225
227
  }, z.core.$strip>;
226
228
  declare const IntegrationLevelMembraneInterfaceSelectorQuery: z.ZodObject<{
229
+ layer: z.ZodOptional<z.ZodEnum<{
230
+ connection: "connection";
231
+ integration: "integration";
232
+ universal: "universal";
233
+ }>>;
227
234
  integrationKey: z.ZodOptional<z.ZodString>;
235
+ integrationId: z.ZodOptional<z.ZodString>;
228
236
  connectionId: z.ZodOptional<z.ZodString>;
229
237
  instanceKey: z.ZodOptional<z.ZodString>;
230
238
  }, z.core.$strip>;
231
239
  type IntegrationLevelMembraneInterfaceSelectorQuery = z.infer<typeof IntegrationLevelMembraneInterfaceSelectorQuery>;
232
240
  declare const FindIntegrationLevelMembraneInterfaceQuery: z.ZodObject<{
241
+ layer: z.ZodOptional<z.ZodEnum<{
242
+ connection: "connection";
243
+ integration: "integration";
244
+ universal: "universal";
245
+ }>>;
233
246
  integrationKey: z.ZodOptional<z.ZodString>;
247
+ integrationId: z.ZodOptional<z.ZodString>;
234
248
  connectionId: z.ZodOptional<z.ZodString>;
235
249
  instanceKey: z.ZodOptional<z.ZodString>;
236
250
  search: z.ZodOptional<z.ZodString>;
237
251
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
238
252
  cursor: z.ZodOptional<z.ZodString>;
239
253
  includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
240
- layer: z.ZodOptional<z.ZodEnum<{
241
- connection: "connection";
242
- integration: "integration";
243
- universal: "universal";
244
- }>>;
245
- integrationId: z.ZodOptional<z.ZodString>;
246
254
  parentId: z.ZodOptional<z.ZodString>;
247
255
  universalParentId: z.ZodOptional<z.ZodString>;
248
256
  userId: z.ZodOptional<z.ZodString>;
@@ -254,6 +262,8 @@ declare const BaseIntegrationLevelMembraneInterface: z.ZodObject<{
254
262
  uuid: z.ZodOptional<z.ZodString>;
255
263
  description: z.ZodOptional<z.ZodString>;
256
264
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
265
+ integrationUuid: z.ZodOptional<z.ZodString>;
266
+ parentUuid: z.ZodOptional<z.ZodString>;
257
267
  integrationId: z.ZodOptional<z.ZodString>;
258
268
  parentId: z.ZodOptional<z.ZodString>;
259
269
  name: z.ZodString;
@@ -964,6 +974,10 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
964
974
  integrationId: z.ZodOptional<z.ZodString>;
965
975
  uuid: z.ZodOptional<z.ZodString>;
966
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>;
967
981
  universalDataSourceId: z.ZodOptional<z.ZodString>;
968
982
  udm: z.ZodOptional<z.ZodString>;
969
983
  pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
@@ -1513,9 +1527,13 @@ declare const FlowApiResponse: z.ZodObject<{
1513
1527
  id: z.ZodString;
1514
1528
  key: z.ZodOptional<z.ZodString>;
1515
1529
  description: z.ZodOptional<z.ZodString>;
1530
+ integrationId: z.ZodOptional<z.ZodString>;
1516
1531
  uuid: z.ZodOptional<z.ZodString>;
1517
1532
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1518
- 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>;
1519
1537
  universalFlowId: z.ZodOptional<z.ZodString>;
1520
1538
  parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
1521
1539
  nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -1644,22 +1662,36 @@ declare const FlowApiResponse: z.ZodObject<{
1644
1662
  type FlowApiResponse = z.infer<typeof FlowApiResponse>;
1645
1663
  type Flow = FlowApiResponse;
1646
1664
  declare const FindFlowsQuery: z.ZodObject<{
1665
+ search: z.ZodOptional<z.ZodString>;
1666
+ includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
1647
1667
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
1648
1668
  cursor: z.ZodOptional<z.ZodString>;
1669
+ userId: z.ZodOptional<z.ZodString>;
1670
+ instanceKey: z.ZodOptional<z.ZodString>;
1671
+ connectionId: z.ZodOptional<z.ZodString>;
1649
1672
  integrationId: z.ZodOptional<z.ZodString>;
1650
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>;
1651
1681
  universalFlowId: z.ZodOptional<z.ZodString>;
1652
- search: z.ZodOptional<z.ZodString>;
1653
- includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
1654
1682
  }, z.core.$strip>;
1655
1683
  type FindFlowsQuery = z.infer<typeof FindFlowsQuery>;
1656
1684
  declare const CreateFlowRequest: z.ZodObject<{
1657
1685
  key: z.ZodOptional<z.ZodString>;
1658
1686
  description: z.ZodOptional<z.ZodString>;
1687
+ integrationId: z.ZodOptional<z.ZodString>;
1659
1688
  name: z.ZodOptional<z.ZodString>;
1660
1689
  uuid: z.ZodOptional<z.ZodString>;
1661
1690
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1662
- 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>;
1663
1695
  universalFlowId: z.ZodOptional<z.ZodString>;
1664
1696
  parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
1665
1697
  nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -1690,10 +1722,14 @@ type CreateFlowRequest = z.infer<typeof CreateFlowRequest>;
1690
1722
  declare const UpdateFlowRequest: z.ZodObject<{
1691
1723
  key: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1692
1724
  description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1725
+ integrationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1693
1726
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1694
1727
  uuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1695
1728
  meta: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>>;
1696
- 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>>;
1697
1733
  universalFlowId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
1698
1734
  parametersSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
1699
1735
  nodes: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -1763,6 +1799,11 @@ declare const ResetFlowInstanceOptions: z.ZodObject<{
1763
1799
  allNodes: z.ZodOptional<z.ZodBoolean>;
1764
1800
  }, z.core.$strip>;
1765
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>;
1766
1807
  interface RunFlowOptions {
1767
1808
  nodeKey?: string;
1768
1809
  input?: any;
@@ -1864,9 +1905,13 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
1864
1905
  id: z.ZodString;
1865
1906
  key: z.ZodOptional<z.ZodString>;
1866
1907
  description: z.ZodOptional<z.ZodString>;
1908
+ integrationId: z.ZodOptional<z.ZodString>;
1867
1909
  uuid: z.ZodOptional<z.ZodString>;
1868
1910
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
1869
- 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>;
1870
1915
  universalFlowId: z.ZodOptional<z.ZodString>;
1871
1916
  parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
1872
1917
  nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -2084,6 +2129,10 @@ declare const DataSourceApiResponse: z.ZodObject<{
2084
2129
  integrationId: z.ZodOptional<z.ZodString>;
2085
2130
  uuid: z.ZodOptional<z.ZodString>;
2086
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>;
2087
2136
  universalDataSourceId: z.ZodOptional<z.ZodString>;
2088
2137
  udm: z.ZodOptional<z.ZodString>;
2089
2138
  pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
@@ -2149,6 +2198,10 @@ declare const DataSourceApiResponse: z.ZodObject<{
2149
2198
  integrationId: z.ZodOptional<z.ZodString>;
2150
2199
  uuid: z.ZodOptional<z.ZodString>;
2151
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>;
2152
2205
  universalDataSourceId: z.ZodOptional<z.ZodString>;
2153
2206
  udm: z.ZodOptional<z.ZodString>;
2154
2207
  pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
@@ -2212,13 +2265,23 @@ declare const DataSourceApiResponse: z.ZodObject<{
2212
2265
  type DataSourceApiResponse = z.infer<typeof DataSourceApiResponse>;
2213
2266
  type DataSource = DataSourceApiResponse;
2214
2267
  declare const FindDataSourcesQuery: z.ZodObject<{
2268
+ search: z.ZodOptional<z.ZodString>;
2269
+ includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
2215
2270
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
2216
2271
  cursor: z.ZodOptional<z.ZodString>;
2272
+ userId: z.ZodOptional<z.ZodString>;
2273
+ instanceKey: z.ZodOptional<z.ZodString>;
2274
+ connectionId: z.ZodOptional<z.ZodString>;
2217
2275
  integrationId: z.ZodOptional<z.ZodString>;
2218
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>;
2219
2284
  universalDataSourceId: z.ZodOptional<z.ZodString>;
2220
- search: z.ZodOptional<z.ZodString>;
2221
- includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
2222
2285
  }, z.core.$strip>;
2223
2286
  type FindDataSourcesQuery = z.infer<typeof FindDataSourcesQuery>;
2224
2287
  declare const CreateDataSourceRequest: z.ZodObject<{
@@ -2228,6 +2291,10 @@ declare const CreateDataSourceRequest: z.ZodObject<{
2228
2291
  name: z.ZodOptional<z.ZodString>;
2229
2292
  uuid: z.ZodOptional<z.ZodString>;
2230
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>;
2231
2298
  universalDataSourceId: z.ZodOptional<z.ZodString>;
2232
2299
  udm: z.ZodOptional<z.ZodString>;
2233
2300
  pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
@@ -2244,6 +2311,10 @@ declare const UpdateDataSourceRequest: z.ZodObject<{
2244
2311
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2245
2312
  uuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2246
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>>;
2247
2318
  universalDataSourceId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2248
2319
  udm: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2249
2320
  pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
@@ -3833,6 +3904,10 @@ declare const FieldMappingEditableProperties: z.ZodObject<{
3833
3904
  name: z.ZodOptional<z.ZodString>;
3834
3905
  uuid: z.ZodOptional<z.ZodString>;
3835
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>;
3836
3911
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
3837
3912
  dataSourceKey: z.ZodOptional<z.ZodString>;
3838
3913
  dataSourceId: z.ZodOptional<z.ZodString>;
@@ -3854,6 +3929,10 @@ declare const BaseFieldMapping: z.ZodObject<{
3854
3929
  integrationId: z.ZodOptional<z.ZodString>;
3855
3930
  uuid: z.ZodOptional<z.ZodString>;
3856
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>;
3857
3936
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
3858
3937
  dataSourceKey: z.ZodOptional<z.ZodString>;
3859
3938
  dataSourceId: z.ZodOptional<z.ZodString>;
@@ -4026,6 +4105,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
4026
4105
  integrationId: z.ZodOptional<z.ZodString>;
4027
4106
  uuid: z.ZodOptional<z.ZodString>;
4028
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>;
4029
4112
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
4030
4113
  dataSourceKey: z.ZodOptional<z.ZodString>;
4031
4114
  dataSourceId: z.ZodOptional<z.ZodString>;
@@ -4210,6 +4293,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
4210
4293
  integrationId: z.ZodOptional<z.ZodString>;
4211
4294
  uuid: z.ZodOptional<z.ZodString>;
4212
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>;
4213
4300
  universalDataSourceId: z.ZodOptional<z.ZodString>;
4214
4301
  udm: z.ZodOptional<z.ZodString>;
4215
4302
  pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
@@ -4630,6 +4717,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
4630
4717
  integrationId: z.ZodOptional<z.ZodString>;
4631
4718
  uuid: z.ZodOptional<z.ZodString>;
4632
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>;
4633
4724
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
4634
4725
  dataSourceKey: z.ZodOptional<z.ZodString>;
4635
4726
  dataSourceId: z.ZodOptional<z.ZodString>;
@@ -4700,6 +4791,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
4700
4791
  integrationId: z.ZodOptional<z.ZodString>;
4701
4792
  uuid: z.ZodOptional<z.ZodString>;
4702
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>;
4703
4798
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
4704
4799
  dataSourceKey: z.ZodOptional<z.ZodString>;
4705
4800
  dataSourceId: z.ZodOptional<z.ZodString>;
@@ -4768,13 +4863,23 @@ declare const FieldMappingApiResponse: z.ZodObject<{
4768
4863
  type FieldMappingApiResponse = z.infer<typeof FieldMappingApiResponse>;
4769
4864
  type FieldMapping = FieldMappingApiResponse;
4770
4865
  declare const FindFieldMappingsQuery: z.ZodObject<{
4866
+ search: z.ZodOptional<z.ZodString>;
4867
+ includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
4771
4868
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
4772
4869
  cursor: z.ZodOptional<z.ZodString>;
4870
+ userId: z.ZodOptional<z.ZodString>;
4871
+ instanceKey: z.ZodOptional<z.ZodString>;
4872
+ connectionId: z.ZodOptional<z.ZodString>;
4773
4873
  integrationId: z.ZodOptional<z.ZodString>;
4774
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>;
4775
4882
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
4776
- search: z.ZodOptional<z.ZodString>;
4777
- includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
4778
4883
  }, z.core.$strip>;
4779
4884
  type FindFieldMappingsQuery = z.infer<typeof FindFieldMappingsQuery>;
4780
4885
  declare const CreateFieldMappingRequest: z.ZodObject<{
@@ -4784,6 +4889,10 @@ declare const CreateFieldMappingRequest: z.ZodObject<{
4784
4889
  name: z.ZodOptional<z.ZodString>;
4785
4890
  uuid: z.ZodOptional<z.ZodString>;
4786
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>;
4787
4896
  universalFieldMappingId: z.ZodOptional<z.ZodString>;
4788
4897
  dataSourceKey: z.ZodOptional<z.ZodString>;
4789
4898
  dataSourceId: z.ZodOptional<z.ZodString>;
@@ -4805,6 +4914,10 @@ declare const UpdateFieldMappingRequest: z.ZodObject<{
4805
4914
  name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4806
4915
  uuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4807
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>>;
4808
4921
  universalFieldMappingId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4809
4922
  dataSourceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4810
4923
  dataSourceId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
@@ -5249,15 +5362,58 @@ declare const PackageElementApi: z.ZodObject<{
5249
5362
  }, z.core.$strip>;
5250
5363
  type PackageElementApi = z.infer<typeof PackageElementApi>;
5251
5364
  declare const FindPackagesQuery: z.ZodObject<{
5252
- integrationId: z.ZodOptional<z.ZodString>;
5365
+ layer: z.ZodOptional<z.ZodEnum<{
5366
+ connection: "connection";
5367
+ integration: "integration";
5368
+ universal: "universal";
5369
+ }>>;
5253
5370
  integrationKey: z.ZodOptional<z.ZodString>;
5254
- parentId: z.ZodOptional<z.ZodString>;
5371
+ integrationId: z.ZodOptional<z.ZodString>;
5372
+ connectionId: z.ZodOptional<z.ZodString>;
5373
+ instanceKey: z.ZodOptional<z.ZodString>;
5255
5374
  search: z.ZodOptional<z.ZodString>;
5256
5375
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5257
5376
  cursor: z.ZodOptional<z.ZodString>;
5258
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>;
5259
5381
  }, z.core.$strip>;
5260
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>;
5261
5417
  declare const PackageApiResponse: z.ZodObject<{
5262
5418
  id: z.ZodString;
5263
5419
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -5277,6 +5433,7 @@ declare const PackageApiResponse: z.ZodObject<{
5277
5433
  element: z.ZodOptional<z.ZodAny>;
5278
5434
  }, z.core.$strip>>>;
5279
5435
  integrationId: z.ZodOptional<z.ZodString>;
5436
+ parentUuid: z.ZodOptional<z.ZodString>;
5280
5437
  parentId: z.ZodOptional<z.ZodString>;
5281
5438
  key: z.ZodString;
5282
5439
  name: z.ZodString;
@@ -5301,6 +5458,7 @@ declare const PackageApiResponse: z.ZodObject<{
5301
5458
  element: z.ZodOptional<z.ZodAny>;
5302
5459
  }, z.core.$strip>>>;
5303
5460
  integrationId: z.ZodOptional<z.ZodString>;
5461
+ parentUuid: z.ZodOptional<z.ZodString>;
5304
5462
  parentId: z.ZodOptional<z.ZodString>;
5305
5463
  key: z.ZodString;
5306
5464
  name: z.ZodString;
@@ -6312,9 +6470,11 @@ declare const ActionApiResponse: z.ZodObject<{
6312
6470
  uuid: z.ZodOptional<z.ZodString>;
6313
6471
  description: z.ZodOptional<z.ZodString>;
6314
6472
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
6473
+ integrationUuid: z.ZodOptional<z.ZodString>;
6474
+ parentUuid: z.ZodOptional<z.ZodString>;
6315
6475
  integrationId: z.ZodOptional<z.ZodString>;
6316
- connectionId: z.ZodOptional<z.ZodString>;
6317
6476
  parentId: z.ZodOptional<z.ZodString>;
6477
+ connectionId: z.ZodOptional<z.ZodString>;
6318
6478
  instanceKey: z.ZodOptional<z.ZodString>;
6319
6479
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
6320
6480
  type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
@@ -6391,9 +6551,11 @@ declare const ActionApiResponse: z.ZodObject<{
6391
6551
  uuid: z.ZodOptional<z.ZodString>;
6392
6552
  description: z.ZodOptional<z.ZodString>;
6393
6553
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
6554
+ integrationUuid: z.ZodOptional<z.ZodString>;
6555
+ parentUuid: z.ZodOptional<z.ZodString>;
6394
6556
  integrationId: z.ZodOptional<z.ZodString>;
6395
- connectionId: z.ZodOptional<z.ZodString>;
6396
6557
  parentId: z.ZodOptional<z.ZodString>;
6558
+ connectionId: z.ZodOptional<z.ZodString>;
6397
6559
  instanceKey: z.ZodOptional<z.ZodString>;
6398
6560
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
6399
6561
  type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
@@ -6420,9 +6582,11 @@ declare const ActionApiResponse: z.ZodObject<{
6420
6582
  uuid: z.ZodOptional<z.ZodString>;
6421
6583
  description: z.ZodOptional<z.ZodString>;
6422
6584
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
6585
+ integrationUuid: z.ZodOptional<z.ZodString>;
6586
+ parentUuid: z.ZodOptional<z.ZodString>;
6423
6587
  integrationId: z.ZodOptional<z.ZodString>;
6424
- connectionId: z.ZodOptional<z.ZodString>;
6425
6588
  parentId: z.ZodOptional<z.ZodString>;
6589
+ connectionId: z.ZodOptional<z.ZodString>;
6426
6590
  instanceKey: z.ZodOptional<z.ZodString>;
6427
6591
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
6428
6592
  type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
@@ -6491,19 +6655,19 @@ declare const ActionApiResponse: z.ZodObject<{
6491
6655
  type ActionApiResponse = z.infer<typeof ActionApiResponse>;
6492
6656
  type Action = ActionApiResponse;
6493
6657
  declare const FindActionsQuery: z.ZodObject<{
6658
+ layer: z.ZodOptional<z.ZodEnum<{
6659
+ connection: "connection";
6660
+ integration: "integration";
6661
+ universal: "universal";
6662
+ }>>;
6494
6663
  integrationKey: z.ZodOptional<z.ZodString>;
6664
+ integrationId: z.ZodOptional<z.ZodString>;
6495
6665
  connectionId: z.ZodOptional<z.ZodString>;
6496
6666
  instanceKey: z.ZodOptional<z.ZodString>;
6497
6667
  search: z.ZodOptional<z.ZodString>;
6498
6668
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
6499
6669
  cursor: z.ZodOptional<z.ZodString>;
6500
6670
  includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
6501
- layer: z.ZodOptional<z.ZodEnum<{
6502
- connection: "connection";
6503
- integration: "integration";
6504
- universal: "universal";
6505
- }>>;
6506
- integrationId: z.ZodOptional<z.ZodString>;
6507
6671
  parentId: z.ZodOptional<z.ZodString>;
6508
6672
  universalParentId: z.ZodOptional<z.ZodString>;
6509
6673
  userId: z.ZodOptional<z.ZodString>;
@@ -6515,9 +6679,11 @@ declare const CreateActionRequest: z.ZodObject<{
6515
6679
  uuid: z.ZodOptional<z.ZodString>;
6516
6680
  description: z.ZodOptional<z.ZodString>;
6517
6681
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
6682
+ integrationUuid: z.ZodOptional<z.ZodString>;
6683
+ parentUuid: z.ZodOptional<z.ZodString>;
6518
6684
  integrationId: z.ZodOptional<z.ZodString>;
6519
- connectionId: z.ZodOptional<z.ZodString>;
6520
6685
  parentId: z.ZodOptional<z.ZodString>;
6686
+ connectionId: z.ZodOptional<z.ZodString>;
6521
6687
  instanceKey: z.ZodOptional<z.ZodString>;
6522
6688
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
6523
6689
  type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
@@ -6532,9 +6698,11 @@ declare const UpdateActionRequest: z.ZodObject<{
6532
6698
  uuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6533
6699
  description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6534
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>>;
6535
6703
  integrationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6536
- connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6537
6704
  parentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6705
+ connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6538
6706
  instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6539
6707
  inputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
6540
6708
  type: z.ZodOptional<z.ZodOptional<z.ZodEnum<typeof ActionType>>>;
@@ -6549,9 +6717,11 @@ declare const CreateActionInstanceRequest: z.ZodObject<{
6549
6717
  uuid: z.ZodOptional<z.ZodString>;
6550
6718
  description: z.ZodOptional<z.ZodString>;
6551
6719
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
6720
+ integrationUuid: z.ZodOptional<z.ZodString>;
6721
+ parentUuid: z.ZodOptional<z.ZodString>;
6552
6722
  integrationId: z.ZodOptional<z.ZodString>;
6553
- connectionId: z.ZodOptional<z.ZodString>;
6554
6723
  parentId: z.ZodOptional<z.ZodString>;
6724
+ connectionId: z.ZodOptional<z.ZodString>;
6555
6725
  instanceKey: z.ZodOptional<z.ZodString>;
6556
6726
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
6557
6727
  type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
@@ -6566,9 +6736,11 @@ declare const UpdateActionInstanceRequest: z.ZodObject<{
6566
6736
  uuid: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6567
6737
  description: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6568
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>>;
6569
6741
  integrationId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6570
- connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6571
6742
  parentId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6743
+ connectionId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6572
6744
  instanceKey: z.ZodOptional<z.ZodOptional<z.ZodString>>;
6573
6745
  inputSchema: z.ZodOptional<z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>>;
6574
6746
  type: z.ZodOptional<z.ZodOptional<z.ZodEnum<typeof ActionType>>>;
@@ -6592,9 +6764,11 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
6592
6764
  uuid: z.ZodOptional<z.ZodString>;
6593
6765
  description: z.ZodOptional<z.ZodString>;
6594
6766
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
6767
+ integrationUuid: z.ZodOptional<z.ZodString>;
6768
+ parentUuid: z.ZodOptional<z.ZodString>;
6595
6769
  integrationId: z.ZodOptional<z.ZodString>;
6596
- connectionId: z.ZodOptional<z.ZodString>;
6597
6770
  parentId: z.ZodOptional<z.ZodString>;
6771
+ connectionId: z.ZodOptional<z.ZodString>;
6598
6772
  instanceKey: z.ZodOptional<z.ZodString>;
6599
6773
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
6600
6774
  type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
@@ -6671,9 +6845,11 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
6671
6845
  uuid: z.ZodOptional<z.ZodString>;
6672
6846
  description: z.ZodOptional<z.ZodString>;
6673
6847
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
6848
+ integrationUuid: z.ZodOptional<z.ZodString>;
6849
+ parentUuid: z.ZodOptional<z.ZodString>;
6674
6850
  integrationId: z.ZodOptional<z.ZodString>;
6675
- connectionId: z.ZodOptional<z.ZodString>;
6676
6851
  parentId: z.ZodOptional<z.ZodString>;
6852
+ connectionId: z.ZodOptional<z.ZodString>;
6677
6853
  instanceKey: z.ZodOptional<z.ZodString>;
6678
6854
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
6679
6855
  type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
@@ -6700,9 +6876,11 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
6700
6876
  uuid: z.ZodOptional<z.ZodString>;
6701
6877
  description: z.ZodOptional<z.ZodString>;
6702
6878
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
6879
+ integrationUuid: z.ZodOptional<z.ZodString>;
6880
+ parentUuid: z.ZodOptional<z.ZodString>;
6703
6881
  integrationId: z.ZodOptional<z.ZodString>;
6704
- connectionId: z.ZodOptional<z.ZodString>;
6705
6882
  parentId: z.ZodOptional<z.ZodString>;
6883
+ connectionId: z.ZodOptional<z.ZodString>;
6706
6884
  instanceKey: z.ZodOptional<z.ZodString>;
6707
6885
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
6708
6886
  type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
@@ -6773,38 +6951,38 @@ type ActionInstance = ActionInstanceApiResponse;
6773
6951
  interface ActionInstanceSelector extends ConnectionSelector, ElementInstanceSelector {
6774
6952
  }
6775
6953
  declare const ListActionInstancesForConnectionQuery: z.ZodObject<{
6954
+ layer: z.ZodOptional<z.ZodEnum<{
6955
+ connection: "connection";
6956
+ integration: "integration";
6957
+ universal: "universal";
6958
+ }>>;
6776
6959
  integrationKey: z.ZodOptional<z.ZodString>;
6960
+ integrationId: z.ZodOptional<z.ZodString>;
6777
6961
  connectionId: z.ZodOptional<z.ZodString>;
6778
6962
  instanceKey: z.ZodOptional<z.ZodString>;
6779
6963
  search: z.ZodOptional<z.ZodString>;
6780
6964
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
6781
6965
  cursor: z.ZodOptional<z.ZodString>;
6782
6966
  includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
6783
- layer: z.ZodOptional<z.ZodEnum<{
6784
- connection: "connection";
6785
- integration: "integration";
6786
- universal: "universal";
6787
- }>>;
6788
- integrationId: z.ZodOptional<z.ZodString>;
6789
6967
  parentId: z.ZodOptional<z.ZodString>;
6790
6968
  universalParentId: z.ZodOptional<z.ZodString>;
6791
6969
  userId: z.ZodOptional<z.ZodString>;
6792
6970
  }, z.core.$strip>;
6793
6971
  type ListActionInstancesForConnectionQuery = FindActionsQuery;
6794
6972
  declare const FindActionInstancesQuery: z.ZodObject<{
6973
+ layer: z.ZodOptional<z.ZodEnum<{
6974
+ connection: "connection";
6975
+ integration: "integration";
6976
+ universal: "universal";
6977
+ }>>;
6795
6978
  integrationKey: z.ZodOptional<z.ZodString>;
6979
+ integrationId: z.ZodOptional<z.ZodString>;
6796
6980
  connectionId: z.ZodOptional<z.ZodString>;
6797
6981
  instanceKey: z.ZodOptional<z.ZodString>;
6798
6982
  search: z.ZodOptional<z.ZodString>;
6799
6983
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
6800
6984
  cursor: z.ZodOptional<z.ZodString>;
6801
6985
  includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
6802
- layer: z.ZodOptional<z.ZodEnum<{
6803
- connection: "connection";
6804
- integration: "integration";
6805
- universal: "universal";
6806
- }>>;
6807
- integrationId: z.ZodOptional<z.ZodString>;
6808
6986
  parentId: z.ZodOptional<z.ZodString>;
6809
6987
  universalParentId: z.ZodOptional<z.ZodString>;
6810
6988
  userId: z.ZodOptional<z.ZodString>;
@@ -6850,9 +7028,11 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
6850
7028
  uuid: z.ZodOptional<z.ZodString>;
6851
7029
  description: z.ZodOptional<z.ZodString>;
6852
7030
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
7031
+ integrationUuid: z.ZodOptional<z.ZodString>;
7032
+ parentUuid: z.ZodOptional<z.ZodString>;
6853
7033
  integrationId: z.ZodOptional<z.ZodString>;
6854
- connectionId: z.ZodOptional<z.ZodString>;
6855
7034
  parentId: z.ZodOptional<z.ZodString>;
7035
+ connectionId: z.ZodOptional<z.ZodString>;
6856
7036
  instanceKey: z.ZodOptional<z.ZodString>;
6857
7037
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
6858
7038
  type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
@@ -7429,6 +7609,7 @@ interface WorkspaceElementSpec {
7429
7609
  isMembraneInterface?: boolean;
7430
7610
  isIntegrationLevel?: boolean;
7431
7611
  parentFieldKey?: string;
7612
+ universalParentFieldKey?: string;
7432
7613
  }
7433
7614
  interface WorkspaceElements {
7434
7615
  flows?: Record<string, CreateFlowRequest>;
@@ -8493,12 +8674,16 @@ interface WorkspaceUpdate {
8493
8674
  declare enum OrgLimitsType {
8494
8675
  NUMBER_OF_WORKSPACES = "numberOfWorkspaces",
8495
8676
  TODAY_USAGE = "todayUsage",
8496
- LAST_THIRTY_DAY_USAGE = "lastThirtyDayUsage"
8677
+ LAST_THIRTY_DAY_USAGE = "lastThirtyDayUsage",
8678
+ MEMBRANE_AGENT_MONTHLY_USAGE = "membraneAgentMonthlyUsage",
8679
+ MEMBRANE_EXPERT_CREDITS_CAP = "membraneExpertCreditsCapPerMonth"
8497
8680
  }
8498
8681
  interface OrgLimits {
8499
8682
  [OrgLimitsType.NUMBER_OF_WORKSPACES]?: number;
8500
8683
  [OrgLimitsType.TODAY_USAGE]?: number;
8501
8684
  [OrgLimitsType.LAST_THIRTY_DAY_USAGE]?: number;
8685
+ [OrgLimitsType.MEMBRANE_AGENT_MONTHLY_USAGE]?: number;
8686
+ [OrgLimitsType.MEMBRANE_EXPERT_CREDITS_CAP]?: number | null;
8502
8687
  }
8503
8688
  interface Org {
8504
8689
  id: string;
@@ -8550,6 +8735,10 @@ interface OrgWorkspace {
8550
8735
  trialEndDate?: string;
8551
8736
  featureFlags?: string[];
8552
8737
  }
8738
+ interface MembraneAgentKey {
8739
+ key: string;
8740
+ expiresAt: Date;
8741
+ }
8553
8742
 
8554
8743
  declare enum WebhookTypeEnum {
8555
8744
  USER_INVITED_TO_ORG = "user-invited-to-org",
@@ -8822,6 +9011,45 @@ interface HandyScenarioTemplateElementApi {
8822
9011
  } & Record<string, any>;
8823
9012
  }
8824
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
+
8825
9053
  interface OpenMembraneConfigurationOptions extends OpenConfigurationOptions {
8826
9054
  }
8827
9055
  declare class MembraneClient extends MembraneApiClient {
@@ -8916,9 +9144,11 @@ declare const ActionEditableProperties: z.ZodObject<{
8916
9144
  uuid: z.ZodOptional<z.ZodString>;
8917
9145
  description: z.ZodOptional<z.ZodString>;
8918
9146
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
9147
+ integrationUuid: z.ZodOptional<z.ZodString>;
9148
+ parentUuid: z.ZodOptional<z.ZodString>;
8919
9149
  integrationId: z.ZodOptional<z.ZodString>;
8920
- connectionId: z.ZodOptional<z.ZodString>;
8921
9150
  parentId: z.ZodOptional<z.ZodString>;
9151
+ connectionId: z.ZodOptional<z.ZodString>;
8922
9152
  instanceKey: z.ZodOptional<z.ZodString>;
8923
9153
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
8924
9154
  type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
@@ -8933,9 +9163,11 @@ declare const BaseAction: z.ZodObject<{
8933
9163
  uuid: z.ZodOptional<z.ZodString>;
8934
9164
  description: z.ZodOptional<z.ZodString>;
8935
9165
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
9166
+ integrationUuid: z.ZodOptional<z.ZodString>;
9167
+ parentUuid: z.ZodOptional<z.ZodString>;
8936
9168
  integrationId: z.ZodOptional<z.ZodString>;
8937
- connectionId: z.ZodOptional<z.ZodString>;
8938
9169
  parentId: z.ZodOptional<z.ZodString>;
9170
+ connectionId: z.ZodOptional<z.ZodString>;
8939
9171
  instanceKey: z.ZodOptional<z.ZodString>;
8940
9172
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
8941
9173
  type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
@@ -8962,9 +9194,11 @@ declare const BaseActionInstance: z.ZodObject<{
8962
9194
  uuid: z.ZodOptional<z.ZodString>;
8963
9195
  description: z.ZodOptional<z.ZodString>;
8964
9196
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
9197
+ integrationUuid: z.ZodOptional<z.ZodString>;
9198
+ parentUuid: z.ZodOptional<z.ZodString>;
8965
9199
  integrationId: z.ZodOptional<z.ZodString>;
8966
- connectionId: z.ZodOptional<z.ZodString>;
8967
9200
  parentId: z.ZodOptional<z.ZodString>;
9201
+ connectionId: z.ZodOptional<z.ZodString>;
8968
9202
  instanceKey: z.ZodOptional<z.ZodString>;
8969
9203
  inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
8970
9204
  type: z.ZodOptional<z.ZodEnum<typeof ActionType>>;
@@ -8997,6 +9231,10 @@ declare const DataSourceEditableProperties: z.ZodObject<{
8997
9231
  name: z.ZodOptional<z.ZodString>;
8998
9232
  uuid: z.ZodOptional<z.ZodString>;
8999
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>;
9000
9238
  universalDataSourceId: z.ZodOptional<z.ZodString>;
9001
9239
  udm: z.ZodOptional<z.ZodString>;
9002
9240
  pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
@@ -9013,6 +9251,10 @@ declare const BaseDataSource: z.ZodObject<{
9013
9251
  integrationId: z.ZodOptional<z.ZodString>;
9014
9252
  uuid: z.ZodOptional<z.ZodString>;
9015
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>;
9016
9258
  universalDataSourceId: z.ZodOptional<z.ZodString>;
9017
9259
  udm: z.ZodOptional<z.ZodString>;
9018
9260
  pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
@@ -9271,10 +9513,14 @@ declare const FLOW_NODE_SPECS: Record<FlowNodeType, FlowNodeSpec>;
9271
9513
  declare const FlowEditableProperties: z.ZodObject<{
9272
9514
  key: z.ZodOptional<z.ZodString>;
9273
9515
  description: z.ZodOptional<z.ZodString>;
9516
+ integrationId: z.ZodOptional<z.ZodString>;
9274
9517
  name: z.ZodOptional<z.ZodString>;
9275
9518
  uuid: z.ZodOptional<z.ZodString>;
9276
9519
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
9277
- integrationId: z.ZodOptional<z.ZodString>;
9520
+ integrationUuid: z.ZodOptional<z.ZodString>;
9521
+ parentUuid: z.ZodOptional<z.ZodString>;
9522
+ connectionId: z.ZodOptional<z.ZodString>;
9523
+ flowId: z.ZodOptional<z.ZodString>;
9278
9524
  universalFlowId: z.ZodOptional<z.ZodString>;
9279
9525
  parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
9280
9526
  nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -9306,9 +9552,13 @@ declare const BaseFlow: z.ZodObject<{
9306
9552
  id: z.ZodString;
9307
9553
  key: z.ZodOptional<z.ZodString>;
9308
9554
  description: z.ZodOptional<z.ZodString>;
9555
+ integrationId: z.ZodOptional<z.ZodString>;
9309
9556
  uuid: z.ZodOptional<z.ZodString>;
9310
9557
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
9311
- integrationId: z.ZodOptional<z.ZodString>;
9558
+ integrationUuid: z.ZodOptional<z.ZodString>;
9559
+ parentUuid: z.ZodOptional<z.ZodString>;
9560
+ connectionId: z.ZodOptional<z.ZodString>;
9561
+ flowId: z.ZodOptional<z.ZodString>;
9312
9562
  universalFlowId: z.ZodOptional<z.ZodString>;
9313
9563
  parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
9314
9564
  nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
@@ -9455,6 +9705,7 @@ declare const PackageEditableProperties: z.ZodObject<{
9455
9705
  element: z.ZodOptional<z.ZodAny>;
9456
9706
  }, z.core.$strip>>>;
9457
9707
  integrationId: z.ZodOptional<z.ZodString>;
9708
+ parentUuid: z.ZodOptional<z.ZodString>;
9458
9709
  parentId: z.ZodOptional<z.ZodString>;
9459
9710
  }, z.core.$strip>;
9460
9711
  type PackageEditableProperties = z.infer<typeof PackageEditableProperties>;
@@ -9483,6 +9734,7 @@ declare const BasePackage: z.ZodObject<{
9483
9734
  element: z.ZodOptional<z.ZodAny>;
9484
9735
  }, z.core.$strip>>>;
9485
9736
  integrationId: z.ZodOptional<z.ZodString>;
9737
+ parentUuid: z.ZodOptional<z.ZodString>;
9486
9738
  parentId: z.ZodOptional<z.ZodString>;
9487
9739
  key: z.ZodString;
9488
9740
  name: z.ZodString;
@@ -9678,5 +9930,5 @@ declare function getParentNodeKeys(flow: Flow | FlowInstance, nodeKey: string):
9678
9930
  declare function getUpstreamNodeKeys(flow: Flow | FlowInstance, nodeKey: string): string[];
9679
9931
  declare function hasCycles(nodes?: Record<string, FlowNode>): boolean;
9680
9932
 
9681
- 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, 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, 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 };
9682
- 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 };