@membranehq/sdk 0.28.0 → 0.28.2

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 (65) hide show
  1. package/dist/bundle.d.ts +60 -4
  2. package/dist/bundle.js +233 -126
  3. package/dist/bundle.js.map +1 -1
  4. package/dist/dts/accessors/actions-accessors.d.ts +1 -0
  5. package/dist/dts/accessors/connections-accessors.d.ts +3 -0
  6. package/dist/dts/accessors/integrations-accessors.d.ts +2 -0
  7. package/dist/dts/agent/index.d.ts +1 -0
  8. package/dist/dts/agent/session-cost.d.ts +1 -0
  9. package/dist/dts/agent/session.d.ts +10 -2
  10. package/dist/dts/ai-gateway/models.d.ts +43 -0
  11. package/dist/dts/ai-gateway/models.test.d.ts +1 -0
  12. package/dist/dts/alerts/types.d.ts +7 -0
  13. package/dist/dts/api-client.d.ts +22 -3
  14. package/dist/dts/api-version.generated.d.ts +1 -1
  15. package/dist/dts/index.browser.d.ts +1 -0
  16. package/dist/dts/membrane-instances/types.d.ts +19 -35
  17. package/dist/dts/membrane-instances/types.test.d.ts +1 -0
  18. package/dist/dts/oauth/types.d.ts +11 -5
  19. package/dist/dts/orgs/types.d.ts +154 -281
  20. package/dist/dts/webhooks/types.d.ts +4 -2
  21. package/dist/dts/workspace-elements/api/act-api.d.ts +33 -0
  22. package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +4 -0
  23. package/dist/dts/workspace-elements/api/actions-api.d.ts +3 -0
  24. package/dist/dts/workspace-elements/api/connected-products-api.d.ts +6 -21
  25. package/dist/dts/workspace-elements/api/connection-attempt-logs-api.d.ts +53 -0
  26. package/dist/dts/workspace-elements/api/connections-api.d.ts +15 -0
  27. package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +3 -0
  28. package/dist/dts/workspace-elements/api/data-sources-api.d.ts +6 -0
  29. package/dist/dts/workspace-elements/api/external-api-logs-api.d.ts +2 -0
  30. package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +2 -0
  31. package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +2 -0
  32. package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +5 -1
  33. package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +6 -0
  34. package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +4 -0
  35. package/dist/dts/workspace-elements/api/flows-api.d.ts +5 -0
  36. package/dist/dts/workspace-elements/api/incoming-webhooks-api.d.ts +2 -0
  37. package/dist/dts/workspace-elements/api/index.d.ts +2 -0
  38. package/dist/dts/workspace-elements/api/integrations-api.d.ts +113 -0
  39. package/dist/dts/workspace-elements/api/packages-api.d.ts +1 -0
  40. package/dist/dts/workspace-elements/base/connected-products/index.d.ts +9 -14
  41. package/dist/dts/workspace-elements/base/connection-attempt-logs/index.d.ts +21 -0
  42. package/dist/dts/workspace-elements/base/connection-requests/index.d.ts +2 -0
  43. package/dist/dts/workspace-elements/base/connections/index.d.ts +3 -0
  44. package/dist/dts/workspace-elements/base/connectors/functions.d.ts +1 -1
  45. package/dist/dts/workspace-elements/base/connectors/index.d.ts +2 -0
  46. package/dist/dts/workspace-elements/base/connectors/rest-api.d.ts +1 -1
  47. package/dist/dts/workspace-elements/base/index.d.ts +1 -0
  48. package/dist/dts/workspace-elements/paths.d.ts +2 -2
  49. package/dist/dts/workspace-elements/types.d.ts +4 -1
  50. package/dist/dts/workspaces/api.d.ts +20 -0
  51. package/dist/dts/workspaces/compare.d.ts +1 -1
  52. package/dist/dts/workspaces/types.d.ts +29 -0
  53. package/dist/index.browser.d.mts +637 -373
  54. package/dist/index.browser.d.ts +637 -373
  55. package/dist/index.browser.js +307 -47
  56. package/dist/index.browser.js.map +1 -1
  57. package/dist/index.browser.mjs +287 -44
  58. package/dist/index.browser.mjs.map +1 -1
  59. package/dist/index.node.d.mts +637 -373
  60. package/dist/index.node.d.ts +637 -373
  61. package/dist/index.node.js +307 -47
  62. package/dist/index.node.js.map +1 -1
  63. package/dist/index.node.mjs +287 -44
  64. package/dist/index.node.mjs.map +1 -1
  65. package/package.json +2 -2
@@ -170,7 +170,8 @@ declare enum WorkspaceElementState {
170
170
  CLIENT_ACTION_REQUIRED = "CLIENT_ACTION_REQUIRED",
171
171
  CONFIGURATION_ERROR = "CONFIGURATION_ERROR",
172
172
  SETUP_FAILED = "SETUP_FAILED",
173
- READY = "READY"
173
+ READY = "READY",
174
+ DISCONNECTING = "DISCONNECTING"
174
175
  }
175
176
  declare enum WorkspaceElementDependencyType {
176
177
  Configuration = "CONFIGURATION",
@@ -285,6 +286,7 @@ declare const IntegrationLevelMembraneInterfaceSelectorQuery: z.ZodObject<{
285
286
  integrationKey: z.ZodOptional<z.ZodString>;
286
287
  integrationId: z.ZodOptional<z.ZodString>;
287
288
  connectionId: z.ZodOptional<z.ZodString>;
289
+ connectionKey: z.ZodOptional<z.ZodString>;
288
290
  instanceKey: z.ZodOptional<z.ZodString>;
289
291
  }, z.core.$strip>;
290
292
  type IntegrationLevelMembraneInterfaceSelectorQuery = z.infer<typeof IntegrationLevelMembraneInterfaceSelectorQuery>;
@@ -292,6 +294,7 @@ declare const FindIntegrationLevelMembraneInterfaceQuery: z.ZodObject<{
292
294
  integrationKey: z.ZodOptional<z.ZodString>;
293
295
  integrationId: z.ZodOptional<z.ZodString>;
294
296
  connectionId: z.ZodOptional<z.ZodString>;
297
+ connectionKey: z.ZodOptional<z.ZodString>;
295
298
  instanceKey: z.ZodOptional<z.ZodString>;
296
299
  search: z.ZodOptional<z.ZodString>;
297
300
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
@@ -787,6 +790,7 @@ declare const CreateConnectionRequestPayload: z.ZodObject<{
787
790
  connectorKey: z.ZodOptional<z.ZodString>;
788
791
  connectorVersion: z.ZodOptional<z.ZodString>;
789
792
  connectionId: z.ZodOptional<z.ZodString>;
793
+ connectionKey: z.ZodOptional<z.ZodString>;
790
794
  name: z.ZodOptional<z.ZodString>;
791
795
  allowMultipleConnections: z.ZodOptional<z.ZodBoolean>;
792
796
  connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
@@ -805,6 +809,7 @@ declare const ConnectionRequest: z.ZodObject<{
805
809
  connectorKey: z.ZodOptional<z.ZodString>;
806
810
  connectorVersion: z.ZodOptional<z.ZodString>;
807
811
  connectionId: z.ZodOptional<z.ZodString>;
812
+ connectionKey: z.ZodOptional<z.ZodString>;
808
813
  name: z.ZodOptional<z.ZodString>;
809
814
  allowMultipleConnections: z.ZodOptional<z.ZodBoolean>;
810
815
  connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
@@ -3649,7 +3654,7 @@ declare const GenericFunctionDefinition: z.ZodObject<{
3649
3654
  type GenericFunctionDefinition = z.infer<typeof GenericFunctionDefinition>;
3650
3655
  declare function validateFunctionDefinitions(functions: Record<string, GenericFunctionDefinition>, schema: z.ZodType): void;
3651
3656
 
3652
- declare function getEffectiveConnectorOption(connector: ConnectorVersionData, optionKey: string): ConnectorOption;
3657
+ declare function getEffectiveConnectorOption(connector: ConnectorVersionData, optionKey: string): ConnectorOption | undefined;
3653
3658
  interface ConnectorFunctionSpec {
3654
3659
  authTypes?: ConnectorAuthType[];
3655
3660
  getInputSchema?: (authConfig: ConnectorAuthWithFunctions) => DataSchema | undefined;
@@ -3800,7 +3805,7 @@ interface RestApiClientOptions {
3800
3805
  };
3801
3806
  returnFullResponse?: boolean;
3802
3807
  responseHandlers?: Array<RestApiClientResponseHandler>;
3803
- dynamicOptions?: (input: RestApiClientInput) => RestApiClientOptions;
3808
+ dynamicOptions?: (input: RestApiClientInput) => RestApiClientOptions | Promise<RestApiClientOptions>;
3804
3809
  binary?: boolean;
3805
3810
  stream?: boolean;
3806
3811
  onError?: (error: any) => any;
@@ -7899,6 +7904,7 @@ declare const BaseConnector: z.ZodObject<{
7899
7904
  isPublic: z.ZodOptional<z.ZodBoolean>;
7900
7905
  popularity: z.ZodOptional<z.ZodNumber>;
7901
7906
  tenantId: z.ZodOptional<z.ZodString>;
7907
+ archivedAt: z.ZodOptional<z.ZodString>;
7902
7908
  }, z.core.$strip>;
7903
7909
  type BaseConnector = z.infer<typeof BaseConnector>;
7904
7910
  declare const Connector: z.ZodObject<{
@@ -7912,6 +7918,7 @@ declare const Connector: z.ZodObject<{
7912
7918
  isPublic: z.ZodOptional<z.ZodBoolean>;
7913
7919
  popularity: z.ZodOptional<z.ZodNumber>;
7914
7920
  tenantId: z.ZodOptional<z.ZodString>;
7921
+ archivedAt: z.ZodOptional<z.ZodString>;
7915
7922
  baseUri: z.ZodString;
7916
7923
  revision: z.ZodOptional<z.ZodString>;
7917
7924
  dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
@@ -8143,6 +8150,7 @@ declare const ConnectionEditableProperties: z.ZodObject<{
8143
8150
  name: z.ZodOptional<z.ZodString>;
8144
8151
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
8145
8152
  authOptionKey: z.ZodOptional<z.ZodString>;
8153
+ key: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8146
8154
  integrationId: z.ZodOptional<z.ZodString>;
8147
8155
  integrationUuid: z.ZodOptional<z.ZodString>;
8148
8156
  integrationKey: z.ZodOptional<z.ZodString>;
@@ -8170,7 +8178,9 @@ type ConnectionClientAction = z.infer<typeof ConnectionClientAction>;
8170
8178
  declare const BaseConnection: z.ZodObject<{
8171
8179
  id: z.ZodString;
8172
8180
  name: z.ZodString;
8181
+ key: z.ZodOptional<z.ZodString>;
8173
8182
  isTest: z.ZodOptional<z.ZodBoolean>;
8183
+ connected: z.ZodOptional<z.ZodBoolean>;
8174
8184
  disconnected: z.ZodOptional<z.ZodBoolean>;
8175
8185
  isDefunct: z.ZodOptional<z.ZodBoolean>;
8176
8186
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -10818,19 +10828,19 @@ declare const AiAgentAudience: z.ZodEnum<{
10818
10828
  type AiAgentAudience = ConnectedProductAudience;
10819
10829
  declare const AiAgentType: z.ZodEnum<{
10820
10830
  custom: "custom";
10831
+ cursor: "cursor";
10832
+ "claude-code": "claude-code";
10833
+ codex: "codex";
10821
10834
  openclaw: "openclaw";
10835
+ copilot: "copilot";
10836
+ windsurf: "windsurf";
10822
10837
  claude: "claude";
10823
10838
  chatgpt: "chatgpt";
10824
10839
  }>;
10825
10840
  type AiAgentType = z.infer<typeof AiAgentType>;
10826
10841
  declare const AiAgentParameters: z.ZodObject<{
10827
- agentType: z.ZodOptional<z.ZodEnum<{
10828
- custom: "custom";
10829
- openclaw: "openclaw";
10830
- claude: "claude";
10831
- chatgpt: "chatgpt";
10832
- }>>;
10833
- }, z.core.$strip>;
10842
+ agentType: z.ZodOptional<z.ZodString>;
10843
+ }, z.core.$loose>;
10834
10844
  type AiAgentParameters = z.infer<typeof AiAgentParameters>;
10835
10845
  declare const BaseConnectedProduct: z.ZodObject<{
10836
10846
  id: z.ZodString;
@@ -10845,13 +10855,8 @@ declare const BaseConnectedProduct: z.ZodObject<{
10845
10855
  personal: "personal";
10846
10856
  }>>;
10847
10857
  parameters: z.ZodOptional<z.ZodObject<{
10848
- agentType: z.ZodOptional<z.ZodEnum<{
10849
- custom: "custom";
10850
- openclaw: "openclaw";
10851
- claude: "claude";
10852
- chatgpt: "chatgpt";
10853
- }>>;
10854
- }, z.core.$strip>>;
10858
+ agentType: z.ZodOptional<z.ZodString>;
10859
+ }, z.core.$loose>>;
10855
10860
  isConnected: z.ZodOptional<z.ZodBoolean>;
10856
10861
  lastApiRequestDate: z.ZodOptional<z.ZodString>;
10857
10862
  createdAt: z.ZodOptional<z.ZodString>;
@@ -10859,6 +10864,58 @@ declare const BaseConnectedProduct: z.ZodObject<{
10859
10864
  }, z.core.$strip>;
10860
10865
  type BaseConnectedProduct = z.infer<typeof BaseConnectedProduct>;
10861
10866
 
10867
+ declare const BaseConnectionAttemptLog: z.ZodObject<{
10868
+ userId: z.ZodString;
10869
+ tenantId: z.ZodOptional<z.ZodString>;
10870
+ id: z.ZodString;
10871
+ integrationId: z.ZodOptional<z.ZodString>;
10872
+ connectionId: z.ZodOptional<z.ZodString>;
10873
+ externalAppId: z.ZodOptional<z.ZodString>;
10874
+ connectorId: z.ZodOptional<z.ZodString>;
10875
+ connectorVersion: z.ZodOptional<z.ZodString>;
10876
+ authOptionKey: z.ZodOptional<z.ZodString>;
10877
+ connectionRequestId: z.ZodOptional<z.ZodString>;
10878
+ status: z.ZodEnum<{
10879
+ success: "success";
10880
+ error: "error";
10881
+ }>;
10882
+ error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
10883
+ createdAt: z.ZodString;
10884
+ }, z.core.$strip>;
10885
+ type BaseConnectionAttemptLog = z.infer<typeof BaseConnectionAttemptLog>;
10886
+
10887
+ declare const ActApiDispatch: z.ZodObject<{
10888
+ method: z.ZodEnum<typeof HttpRequestMethod>;
10889
+ path: z.ZodOptional<z.ZodString>;
10890
+ body: z.ZodOptional<z.ZodAny>;
10891
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
10892
+ query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
10893
+ url: z.ZodOptional<z.ZodString>;
10894
+ data: z.ZodOptional<z.ZodAny>;
10895
+ }, z.core.$strip>;
10896
+ type ActApiDispatch = z.infer<typeof ActApiDispatch>;
10897
+ declare const ActRequest: z.ZodObject<{
10898
+ id: z.ZodOptional<z.ZodString>;
10899
+ key: z.ZodOptional<z.ZodString>;
10900
+ api: z.ZodOptional<z.ZodObject<{
10901
+ method: z.ZodEnum<typeof HttpRequestMethod>;
10902
+ path: z.ZodOptional<z.ZodString>;
10903
+ body: z.ZodOptional<z.ZodAny>;
10904
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
10905
+ query: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean]>>>;
10906
+ url: z.ZodOptional<z.ZodString>;
10907
+ data: z.ZodOptional<z.ZodAny>;
10908
+ }, z.core.$strip>>;
10909
+ code: z.ZodOptional<z.ZodString>;
10910
+ integrationId: z.ZodOptional<z.ZodString>;
10911
+ integrationKey: z.ZodOptional<z.ZodString>;
10912
+ connectionId: z.ZodOptional<z.ZodString>;
10913
+ connectionKey: z.ZodOptional<z.ZodString>;
10914
+ input: z.ZodOptional<z.ZodAny>;
10915
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
10916
+ }, z.core.$strict>;
10917
+ type ActRequest = z.infer<typeof ActRequest>;
10918
+
10862
10919
  declare const PaginationQuery: z.ZodObject<{
10863
10920
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
10864
10921
  cursor: z.ZodOptional<z.ZodString>;
@@ -10951,24 +11008,42 @@ declare function isBlob(value: unknown): value is BlobLike;
10951
11008
  declare function truncateData(data: any, depth?: number): any;
10952
11009
 
10953
11010
  declare const axios: _axios.AxiosInstance;
10954
- interface MembraneClientOptions {
10955
- token?: string;
10956
- fetchToken?: () => Promise<string>;
11011
+ interface BaseClientOptions {
10957
11012
  credentials?: any;
10958
11013
  fetchCredentials?: () => Promise<any>;
10959
11014
  apiUri?: string;
10960
11015
  uiUri?: string;
11016
+ }
11017
+ interface TokenBasedClientOptions extends BaseClientOptions {
11018
+ token?: string;
11019
+ fetchToken?: () => Promise<string>;
11020
+ workspaceKey?: never;
11021
+ workspaceSecret?: never;
11022
+ tenantKey?: never;
10961
11023
  accessToken?: string;
10962
11024
  }
11025
+ interface WorkspaceCredentialClientOptions extends BaseClientOptions {
11026
+ token?: never;
11027
+ fetchToken?: never;
11028
+ workspaceKey: string;
11029
+ workspaceSecret: string;
11030
+ tenantKey: string;
11031
+ accessToken?: never;
11032
+ }
11033
+ type MembraneClientOptions = TokenBasedClientOptions | WorkspaceCredentialClientOptions;
10963
11034
  declare class MembraneApiClient {
10964
11035
  apiUri: string;
10965
11036
  uiUri: string;
10966
11037
  token?: string;
10967
11038
  protected fetchToken?: () => Promise<string>;
10968
11039
  private logs;
11040
+ private _workspaceKey?;
11041
+ private _workspaceSecret?;
11042
+ private _tenantKey?;
10969
11043
  constructor(options?: MembraneClientOptions);
10970
11044
  setCredentials(credentials: any): Promise<any>;
10971
11045
  getToken(): Promise<string>;
11046
+ private mintToken;
10972
11047
  get<T = any>(uri: string, queryParams?: Record<string, any>, options?: AxiosRequestConfig): Promise<T>;
10973
11048
  post<T = any>(uri: string, data?: any, options?: AxiosRequestConfig): Promise<T>;
10974
11049
  put<T = any>(uri: string, data?: any, options?: AxiosRequestConfig): Promise<T>;
@@ -11139,6 +11214,7 @@ declare class ActionAccessor<RunInput = any, RunOutput = any> extends ElementAcc
11139
11214
  run(input?: RunInput, options?: {
11140
11215
  integrationKey?: string;
11141
11216
  connectionId?: string;
11217
+ connectionKey?: string;
11142
11218
  }): Promise<ActionRunResponse<RunOutput>>;
11143
11219
  }
11144
11220
  declare class IntegrationLevelActionAccessor extends IntegrationLevelElementAccessor<ActionApiResponse, UpdateActionRequest> {
@@ -11180,6 +11256,7 @@ declare const FindConnectionsQuery: z.ZodObject<{
11180
11256
  integrationId: z.ZodOptional<z.ZodString>;
11181
11257
  connectorId: z.ZodOptional<z.ZodString>;
11182
11258
  externalAppId: z.ZodOptional<z.ZodString>;
11259
+ connected: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
11183
11260
  disconnected: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
11184
11261
  isTest: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
11185
11262
  userId: z.ZodOptional<z.ZodString>;
@@ -11197,6 +11274,7 @@ declare const CreateConnectionRequest: z.ZodObject<{
11197
11274
  name: z.ZodOptional<z.ZodString>;
11198
11275
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
11199
11276
  authOptionKey: z.ZodOptional<z.ZodString>;
11277
+ key: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11200
11278
  integrationId: z.ZodOptional<z.ZodString>;
11201
11279
  integrationUuid: z.ZodOptional<z.ZodString>;
11202
11280
  integrationKey: z.ZodOptional<z.ZodString>;
@@ -11216,6 +11294,7 @@ declare const UpdateConnectionRequest: z.ZodObject<{
11216
11294
  name: z.ZodOptional<z.ZodString>;
11217
11295
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
11218
11296
  authOptionKey: z.ZodOptional<z.ZodString>;
11297
+ key: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11219
11298
  integrationId: z.ZodOptional<z.ZodString>;
11220
11299
  integrationUuid: z.ZodOptional<z.ZodString>;
11221
11300
  integrationKey: z.ZodOptional<z.ZodString>;
@@ -11232,6 +11311,7 @@ declare const UpdateConnectionRequest: z.ZodObject<{
11232
11311
  }, z.core.$strip>;
11233
11312
  type UpdateConnectionRequest = z.infer<typeof UpdateConnectionRequest>;
11234
11313
  declare const ConnectionExportProperties: z.ZodObject<{
11314
+ key: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11235
11315
  name: z.ZodOptional<z.ZodString>;
11236
11316
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
11237
11317
  integrationUuid: z.ZodOptional<z.ZodString>;
@@ -11269,12 +11349,15 @@ declare const ConnectionSelector: z.ZodObject<{
11269
11349
  integrationKey: z.ZodOptional<z.ZodString>;
11270
11350
  integrationId: z.ZodOptional<z.ZodString>;
11271
11351
  connectionId: z.ZodOptional<z.ZodString>;
11352
+ connectionKey: z.ZodOptional<z.ZodString>;
11272
11353
  }, z.core.$strip>;
11273
11354
  type ConnectionSelector = z.infer<typeof ConnectionSelector>;
11274
11355
  declare const ConnectionApiResponse: z.ZodObject<{
11275
11356
  id: z.ZodString;
11276
11357
  name: z.ZodString;
11358
+ key: z.ZodOptional<z.ZodString>;
11277
11359
  isTest: z.ZodOptional<z.ZodBoolean>;
11360
+ connected: z.ZodOptional<z.ZodBoolean>;
11278
11361
  disconnected: z.ZodOptional<z.ZodBoolean>;
11279
11362
  isDefunct: z.ZodOptional<z.ZodBoolean>;
11280
11363
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -11375,7 +11458,9 @@ type ConnectionApiResponse = z.infer<typeof ConnectionApiResponse>;
11375
11458
  declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
11376
11459
  id: z.ZodString;
11377
11460
  name: z.ZodString;
11461
+ key: z.ZodOptional<z.ZodString>;
11378
11462
  isTest: z.ZodOptional<z.ZodBoolean>;
11463
+ connected: z.ZodOptional<z.ZodBoolean>;
11379
11464
  disconnected: z.ZodOptional<z.ZodBoolean>;
11380
11465
  isDefunct: z.ZodOptional<z.ZodBoolean>;
11381
11466
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -11484,7 +11569,9 @@ declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
11484
11569
  connection: z.ZodObject<{
11485
11570
  id: z.ZodString;
11486
11571
  name: z.ZodString;
11572
+ key: z.ZodOptional<z.ZodString>;
11487
11573
  isTest: z.ZodOptional<z.ZodBoolean>;
11574
+ connected: z.ZodOptional<z.ZodBoolean>;
11488
11575
  disconnected: z.ZodOptional<z.ZodBoolean>;
11489
11576
  isDefunct: z.ZodOptional<z.ZodBoolean>;
11490
11577
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -11608,6 +11695,7 @@ declare const ConnectPayload: z.ZodObject<{
11608
11695
  connectorKey: z.ZodOptional<z.ZodString>;
11609
11696
  connectorVersion: z.ZodOptional<z.ZodString>;
11610
11697
  connectionId: z.ZodOptional<z.ZodString>;
11698
+ connectionKey: z.ZodOptional<z.ZodString>;
11611
11699
  name: z.ZodOptional<z.ZodString>;
11612
11700
  input: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
11613
11701
  connectionParameters: z.ZodOptional<z.ZodAny>;
@@ -11617,6 +11705,7 @@ declare const ConnectPayload: z.ZodObject<{
11617
11705
  redirectUri: z.ZodOptional<z.ZodString>;
11618
11706
  customState: z.ZodOptional<z.ZodString>;
11619
11707
  connectionRequestId: z.ZodOptional<z.ZodString>;
11708
+ intent: z.ZodOptional<z.ZodString>;
11620
11709
  }, z.core.$strip>;
11621
11710
  type ConnectPayload = z.infer<typeof ConnectPayload>;
11622
11711
  declare const ConnectUIOptions: z.ZodObject<{
@@ -11624,6 +11713,8 @@ declare const ConnectUIOptions: z.ZodObject<{
11624
11713
  integrationId: z.ZodOptional<z.ZodString>;
11625
11714
  integrationKey: z.ZodOptional<z.ZodString>;
11626
11715
  name: z.ZodOptional<z.ZodString>;
11716
+ intent: z.ZodOptional<z.ZodString>;
11717
+ connectionKey: z.ZodOptional<z.ZodString>;
11627
11718
  authOptionKey: z.ZodOptional<z.ZodString>;
11628
11719
  connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
11629
11720
  connectorId: z.ZodOptional<z.ZodString>;
@@ -11779,7 +11870,9 @@ declare const FlowRunApiResponse: z.ZodObject<{
11779
11870
  connection: z.ZodOptional<z.ZodObject<{
11780
11871
  id: z.ZodString;
11781
11872
  name: z.ZodString;
11873
+ key: z.ZodOptional<z.ZodString>;
11782
11874
  isTest: z.ZodOptional<z.ZodBoolean>;
11875
+ connected: z.ZodOptional<z.ZodBoolean>;
11783
11876
  disconnected: z.ZodOptional<z.ZodBoolean>;
11784
11877
  isDefunct: z.ZodOptional<z.ZodBoolean>;
11785
11878
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -11982,7 +12075,9 @@ declare const FindFlowRunsResponse: z.ZodObject<{
11982
12075
  connection: z.ZodOptional<z.ZodObject<{
11983
12076
  id: z.ZodString;
11984
12077
  name: z.ZodString;
12078
+ key: z.ZodOptional<z.ZodString>;
11985
12079
  isTest: z.ZodOptional<z.ZodBoolean>;
12080
+ connected: z.ZodOptional<z.ZodBoolean>;
11986
12081
  disconnected: z.ZodOptional<z.ZodBoolean>;
11987
12082
  isDefunct: z.ZodOptional<z.ZodBoolean>;
11988
12083
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -12336,7 +12431,9 @@ declare const FlowApiResponse: z.ZodObject<{
12336
12431
  connection: z.ZodOptional<z.ZodObject<{
12337
12432
  id: z.ZodString;
12338
12433
  name: z.ZodString;
12434
+ key: z.ZodOptional<z.ZodString>;
12339
12435
  isTest: z.ZodOptional<z.ZodBoolean>;
12436
+ connected: z.ZodOptional<z.ZodBoolean>;
12340
12437
  disconnected: z.ZodOptional<z.ZodBoolean>;
12341
12438
  isDefunct: z.ZodOptional<z.ZodBoolean>;
12342
12439
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -12695,7 +12792,9 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
12695
12792
  connection: z.ZodOptional<z.ZodObject<{
12696
12793
  id: z.ZodString;
12697
12794
  name: z.ZodString;
12795
+ key: z.ZodOptional<z.ZodString>;
12698
12796
  isTest: z.ZodOptional<z.ZodBoolean>;
12797
+ connected: z.ZodOptional<z.ZodBoolean>;
12699
12798
  disconnected: z.ZodOptional<z.ZodBoolean>;
12700
12799
  isDefunct: z.ZodOptional<z.ZodBoolean>;
12701
12800
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -12821,6 +12920,7 @@ declare const FindFlowsQuery: z.ZodObject<{
12821
12920
  integration: "integration";
12822
12921
  universal: "universal";
12823
12922
  }>>;
12923
+ connectionKey: z.ZodOptional<z.ZodString>;
12824
12924
  universalParentId: z.ZodOptional<z.ZodString>;
12825
12925
  tenantId: z.ZodOptional<z.ZodString>;
12826
12926
  flowId: z.ZodOptional<z.ZodString>;
@@ -13412,7 +13512,9 @@ declare const DataSourceApiResponse: z.ZodObject<{
13412
13512
  connection: z.ZodOptional<z.ZodObject<{
13413
13513
  id: z.ZodString;
13414
13514
  name: z.ZodString;
13515
+ key: z.ZodOptional<z.ZodString>;
13415
13516
  isTest: z.ZodOptional<z.ZodBoolean>;
13517
+ connected: z.ZodOptional<z.ZodBoolean>;
13416
13518
  disconnected: z.ZodOptional<z.ZodBoolean>;
13417
13519
  isDefunct: z.ZodOptional<z.ZodBoolean>;
13418
13520
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -14016,7 +14118,9 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
14016
14118
  connection: z.ZodOptional<z.ZodObject<{
14017
14119
  id: z.ZodString;
14018
14120
  name: z.ZodString;
14121
+ key: z.ZodOptional<z.ZodString>;
14019
14122
  isTest: z.ZodOptional<z.ZodBoolean>;
14123
+ connected: z.ZodOptional<z.ZodBoolean>;
14020
14124
  disconnected: z.ZodOptional<z.ZodBoolean>;
14021
14125
  isDefunct: z.ZodOptional<z.ZodBoolean>;
14022
14126
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -14224,6 +14328,7 @@ declare const FindDataSourcesQuery: z.ZodObject<{
14224
14328
  integration: "integration";
14225
14329
  universal: "universal";
14226
14330
  }>>;
14331
+ connectionKey: z.ZodOptional<z.ZodString>;
14227
14332
  universalParentId: z.ZodOptional<z.ZodString>;
14228
14333
  tenantId: z.ZodOptional<z.ZodString>;
14229
14334
  dataSourceId: z.ZodOptional<z.ZodString>;
@@ -14247,6 +14352,7 @@ declare const FindDataSourceInstancesQuery: z.ZodObject<{
14247
14352
  integration: "integration";
14248
14353
  universal: "universal";
14249
14354
  }>>;
14355
+ connectionKey: z.ZodOptional<z.ZodString>;
14250
14356
  universalParentId: z.ZodOptional<z.ZodString>;
14251
14357
  tenantId: z.ZodOptional<z.ZodString>;
14252
14358
  dataSourceId: z.ZodOptional<z.ZodString>;
@@ -14539,7 +14645,9 @@ declare class ConnectionAccessor {
14539
14645
  createdAt: string;
14540
14646
  updatedAt: string;
14541
14647
  userId: string;
14648
+ key?: string | undefined;
14542
14649
  isTest?: boolean | undefined;
14650
+ connected?: boolean | undefined;
14543
14651
  disconnected?: boolean | undefined;
14544
14652
  isDefunct?: boolean | undefined;
14545
14653
  state?: WorkspaceElementState | undefined;
@@ -14671,6 +14779,7 @@ declare function createOrUpdateConnection(options: {
14671
14779
  connectorId?: string;
14672
14780
  connectorVersion?: string;
14673
14781
  connectionId?: string;
14782
+ connectionKey?: string;
14674
14783
  allowMultipleConnections?: boolean;
14675
14784
  connectionRequestId?: string;
14676
14785
  apiUri: string;
@@ -14776,6 +14885,9 @@ declare const UpdateIntegrationRequest: z.ZodObject<{
14776
14885
  type UpdateIntegrationRequest = z.infer<typeof UpdateIntegrationRequest>;
14777
14886
  declare const FindIntegrationsQuery: z.ZodObject<{
14778
14887
  appUuid: z.ZodOptional<z.ZodString>;
14888
+ connectors: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
14889
+ externalApps: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
14890
+ websearch: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
14779
14891
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
14780
14892
  cursor: z.ZodOptional<z.ZodString>;
14781
14893
  search: z.ZodOptional<z.ZodString>;
@@ -14861,7 +14973,9 @@ declare const IntegrationApiResponse: z.ZodObject<{
14861
14973
  connection: z.ZodOptional<z.ZodObject<{
14862
14974
  id: z.ZodString;
14863
14975
  name: z.ZodString;
14976
+ key: z.ZodOptional<z.ZodString>;
14864
14977
  isTest: z.ZodOptional<z.ZodBoolean>;
14978
+ connected: z.ZodOptional<z.ZodBoolean>;
14865
14979
  disconnected: z.ZodOptional<z.ZodBoolean>;
14866
14980
  isDefunct: z.ZodOptional<z.ZodBoolean>;
14867
14981
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -14918,6 +15032,114 @@ declare const IntegrationApiResponse: z.ZodObject<{
14918
15032
  }, z.core.$strip>>>;
14919
15033
  }, z.core.$strip>;
14920
15034
  type IntegrationApiResponse = z.infer<typeof IntegrationApiResponse>;
15035
+ declare const IntegrationListItem: z.ZodObject<{
15036
+ uuid: z.ZodOptional<z.ZodString>;
15037
+ key: z.ZodOptional<z.ZodString>;
15038
+ description: z.ZodOptional<z.ZodString>;
15039
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
15040
+ name: z.ZodString;
15041
+ state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
15042
+ errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
15043
+ revision: z.ZodOptional<z.ZodString>;
15044
+ createdAt: z.ZodOptional<z.ZodString>;
15045
+ updatedAt: z.ZodOptional<z.ZodString>;
15046
+ isReadOnly: z.ZodOptional<z.ZodBoolean>;
15047
+ connectorId: z.ZodOptional<z.ZodString>;
15048
+ connectorVersion: z.ZodOptional<z.ZodString>;
15049
+ oAuthCallbackUri: z.ZodOptional<z.ZodString>;
15050
+ parameters: z.ZodOptional<z.ZodAny>;
15051
+ archivedAt: z.ZodOptional<z.ZodString>;
15052
+ hasMissingParameters: z.ZodOptional<z.ZodBoolean>;
15053
+ hasDocumentation: z.ZodOptional<z.ZodBoolean>;
15054
+ hasOperations: z.ZodOptional<z.ZodBoolean>;
15055
+ operationsCount: z.ZodOptional<z.ZodNumber>;
15056
+ hasData: z.ZodOptional<z.ZodBoolean>;
15057
+ dataCollectionsCount: z.ZodOptional<z.ZodNumber>;
15058
+ hasEvents: z.ZodOptional<z.ZodBoolean>;
15059
+ eventsCount: z.ZodOptional<z.ZodNumber>;
15060
+ hasGlobalWebhooks: z.ZodOptional<z.ZodBoolean>;
15061
+ hasUdm: z.ZodOptional<z.ZodBoolean>;
15062
+ isTest: z.ZodOptional<z.ZodBoolean>;
15063
+ externalAppId: z.ZodOptional<z.ZodString>;
15064
+ appUuid: z.ZodOptional<z.ZodString>;
15065
+ isDeactivated: z.ZodOptional<z.ZodBoolean>;
15066
+ authType: z.ZodOptional<z.ZodEnum<{
15067
+ proxy: "proxy";
15068
+ "integration-app-token": "integration-app-token";
15069
+ "membrane-token": "membrane-token";
15070
+ oauth2: "oauth2";
15071
+ oauth1: "oauth1";
15072
+ "client-credentials": "client-credentials";
15073
+ }>>;
15074
+ optionsConfig: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
15075
+ disabled: z.ZodOptional<z.ZodBoolean>;
15076
+ parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
15077
+ }, z.core.$strip>>>;
15078
+ connection: z.ZodOptional<z.ZodObject<{
15079
+ id: z.ZodString;
15080
+ name: z.ZodString;
15081
+ key: z.ZodOptional<z.ZodString>;
15082
+ isTest: z.ZodOptional<z.ZodBoolean>;
15083
+ connected: z.ZodOptional<z.ZodBoolean>;
15084
+ disconnected: z.ZodOptional<z.ZodBoolean>;
15085
+ isDefunct: z.ZodOptional<z.ZodBoolean>;
15086
+ state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
15087
+ errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
15088
+ requestError: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
15089
+ error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
15090
+ integrationId: z.ZodOptional<z.ZodString>;
15091
+ connectorId: z.ZodOptional<z.ZodString>;
15092
+ externalAppId: z.ZodOptional<z.ZodString>;
15093
+ connectorVersion: z.ZodOptional<z.ZodString>;
15094
+ authOptionKey: z.ZodOptional<z.ZodString>;
15095
+ createdAt: z.ZodString;
15096
+ updatedAt: z.ZodString;
15097
+ lastActiveAt: z.ZodOptional<z.ZodString>;
15098
+ nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
15099
+ nextRetryTimestamp: z.ZodOptional<z.ZodString>;
15100
+ retryAttempts: z.ZodOptional<z.ZodNumber>;
15101
+ canTest: z.ZodOptional<z.ZodBoolean>;
15102
+ canRefreshCredentials: z.ZodOptional<z.ZodBoolean>;
15103
+ archivedAt: z.ZodOptional<z.ZodString>;
15104
+ isDeactivated: z.ZodOptional<z.ZodBoolean>;
15105
+ meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
15106
+ buildingAgentSessionId: z.ZodOptional<z.ZodString>;
15107
+ clientAction: z.ZodOptional<z.ZodObject<{
15108
+ type: z.ZodEnum<{
15109
+ connect: "connect";
15110
+ "provide-input": "provide-input";
15111
+ }>;
15112
+ description: z.ZodString;
15113
+ uiUrl: z.ZodOptional<z.ZodString>;
15114
+ agentInstructions: z.ZodOptional<z.ZodString>;
15115
+ }, z.core.$strip>>;
15116
+ userId: z.ZodString;
15117
+ tenantId: z.ZodOptional<z.ZodString>;
15118
+ }, z.core.$strip>>;
15119
+ spec: z.ZodOptional<z.ZodAny>;
15120
+ authOptions: z.ZodOptional<z.ZodArray<z.ZodObject<{
15121
+ key: z.ZodString;
15122
+ type: z.ZodEnum<{
15123
+ proxy: "proxy";
15124
+ "integration-app-token": "integration-app-token";
15125
+ "membrane-token": "membrane-token";
15126
+ oauth2: "oauth2";
15127
+ oauth1: "oauth1";
15128
+ "client-credentials": "client-credentials";
15129
+ }>;
15130
+ title: z.ZodOptional<z.ZodString>;
15131
+ description: z.ZodOptional<z.ZodString>;
15132
+ inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
15133
+ ui: z.ZodOptional<z.ZodObject<{
15134
+ schema: z.ZodOptional<z.ZodAny>;
15135
+ helpUri: z.ZodOptional<z.ZodString>;
15136
+ }, z.core.$strip>>;
15137
+ }, z.core.$strip>>>;
15138
+ id: z.ZodOptional<z.ZodString>;
15139
+ logoUri: z.ZodOptional<z.ZodString>;
15140
+ appUri: z.ZodOptional<z.ZodString>;
15141
+ }, z.core.$strip>;
15142
+ type IntegrationListItem = z.infer<typeof IntegrationListItem>;
14921
15143
  type Integration = IntegrationApiResponse;
14922
15144
 
14923
15145
  declare const FieldMappingApiResponse: z.ZodObject<{
@@ -15133,7 +15355,9 @@ declare const FieldMappingApiResponse: z.ZodObject<{
15133
15355
  connection: z.ZodOptional<z.ZodObject<{
15134
15356
  id: z.ZodString;
15135
15357
  name: z.ZodString;
15358
+ key: z.ZodOptional<z.ZodString>;
15136
15359
  isTest: z.ZodOptional<z.ZodBoolean>;
15360
+ connected: z.ZodOptional<z.ZodBoolean>;
15137
15361
  disconnected: z.ZodOptional<z.ZodBoolean>;
15138
15362
  isDefunct: z.ZodOptional<z.ZodBoolean>;
15139
15363
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -15436,7 +15660,9 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
15436
15660
  connection: z.ZodOptional<z.ZodObject<{
15437
15661
  id: z.ZodString;
15438
15662
  name: z.ZodString;
15663
+ key: z.ZodOptional<z.ZodString>;
15439
15664
  isTest: z.ZodOptional<z.ZodBoolean>;
15665
+ connected: z.ZodOptional<z.ZodBoolean>;
15440
15666
  disconnected: z.ZodOptional<z.ZodBoolean>;
15441
15667
  isDefunct: z.ZodOptional<z.ZodBoolean>;
15442
15668
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -15541,6 +15767,7 @@ declare const FindFieldMappingsQuery: z.ZodObject<{
15541
15767
  integration: "integration";
15542
15768
  universal: "universal";
15543
15769
  }>>;
15770
+ connectionKey: z.ZodOptional<z.ZodString>;
15544
15771
  universalParentId: z.ZodOptional<z.ZodString>;
15545
15772
  tenantId: z.ZodOptional<z.ZodString>;
15546
15773
  fieldMappingId: z.ZodOptional<z.ZodString>;
@@ -15564,6 +15791,7 @@ declare const FindFieldMappingInstancesQuery: z.ZodObject<{
15564
15791
  integration: "integration";
15565
15792
  universal: "universal";
15566
15793
  }>>;
15794
+ connectionKey: z.ZodOptional<z.ZodString>;
15567
15795
  universalParentId: z.ZodOptional<z.ZodString>;
15568
15796
  tenantId: z.ZodOptional<z.ZodString>;
15569
15797
  fieldMappingId: z.ZodOptional<z.ZodString>;
@@ -15796,7 +16024,9 @@ declare class IntegrationAccessor extends ElementAccessor<IntegrationApiResponse
15796
16024
  createdAt: string;
15797
16025
  updatedAt: string;
15798
16026
  userId: string;
16027
+ key?: string | undefined;
15799
16028
  isTest?: boolean | undefined;
16029
+ connected?: boolean | undefined;
15800
16030
  disconnected?: boolean | undefined;
15801
16031
  isDefunct?: boolean | undefined;
15802
16032
  state?: WorkspaceElementState | undefined;
@@ -15900,6 +16130,7 @@ declare const FindPackagesQuery: z.ZodObject<{
15900
16130
  integrationKey: z.ZodOptional<z.ZodString>;
15901
16131
  integrationId: z.ZodOptional<z.ZodString>;
15902
16132
  connectionId: z.ZodOptional<z.ZodString>;
16133
+ connectionKey: z.ZodOptional<z.ZodString>;
15903
16134
  instanceKey: z.ZodOptional<z.ZodString>;
15904
16135
  search: z.ZodOptional<z.ZodString>;
15905
16136
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
@@ -16426,6 +16657,7 @@ declare const ListExternalEventSubscriptionsQuery: z.ZodObject<{
16426
16657
  connectionId: z.ZodOptional<z.ZodString>;
16427
16658
  integrationId: z.ZodOptional<z.ZodString>;
16428
16659
  externalAppId: z.ZodOptional<z.ZodString>;
16660
+ status: z.ZodOptional<z.ZodEnum<typeof ExternalEventSubscriptionStatus>>;
16429
16661
  }, z.core.$strip>;
16430
16662
  type ListExternalEventSubscriptionsQuery = z.infer<typeof ListExternalEventSubscriptionsQuery>;
16431
16663
  declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
@@ -16484,7 +16716,9 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
16484
16716
  connection: z.ZodOptional<z.ZodObject<{
16485
16717
  id: z.ZodString;
16486
16718
  name: z.ZodString;
16719
+ key: z.ZodOptional<z.ZodString>;
16487
16720
  isTest: z.ZodOptional<z.ZodBoolean>;
16721
+ connected: z.ZodOptional<z.ZodBoolean>;
16488
16722
  disconnected: z.ZodOptional<z.ZodBoolean>;
16489
16723
  isDefunct: z.ZodOptional<z.ZodBoolean>;
16490
16724
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -16969,6 +17203,7 @@ declare const FindActionsQuery: z.ZodObject<{
16969
17203
  integrationKey: z.ZodOptional<z.ZodString>;
16970
17204
  integrationId: z.ZodOptional<z.ZodString>;
16971
17205
  connectionId: z.ZodOptional<z.ZodString>;
17206
+ connectionKey: z.ZodOptional<z.ZodString>;
16972
17207
  instanceKey: z.ZodOptional<z.ZodString>;
16973
17208
  search: z.ZodOptional<z.ZodString>;
16974
17209
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
@@ -17344,6 +17579,7 @@ declare const ListActionInstancesForConnectionQuery: z.ZodObject<{
17344
17579
  integrationKey: z.ZodOptional<z.ZodString>;
17345
17580
  integrationId: z.ZodOptional<z.ZodString>;
17346
17581
  connectionId: z.ZodOptional<z.ZodString>;
17582
+ connectionKey: z.ZodOptional<z.ZodString>;
17347
17583
  instanceKey: z.ZodOptional<z.ZodString>;
17348
17584
  search: z.ZodOptional<z.ZodString>;
17349
17585
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
@@ -17367,6 +17603,7 @@ declare const FindActionInstancesQuery: z.ZodObject<{
17367
17603
  integrationKey: z.ZodOptional<z.ZodString>;
17368
17604
  integrationId: z.ZodOptional<z.ZodString>;
17369
17605
  connectionId: z.ZodOptional<z.ZodString>;
17606
+ connectionKey: z.ZodOptional<z.ZodString>;
17370
17607
  instanceKey: z.ZodOptional<z.ZodString>;
17371
17608
  search: z.ZodOptional<z.ZodString>;
17372
17609
  limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
@@ -17539,7 +17776,9 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
17539
17776
  connection: z.ZodOptional<z.ZodObject<{
17540
17777
  id: z.ZodString;
17541
17778
  name: z.ZodString;
17779
+ key: z.ZodOptional<z.ZodString>;
17542
17780
  isTest: z.ZodOptional<z.ZodBoolean>;
17781
+ connected: z.ZodOptional<z.ZodBoolean>;
17543
17782
  disconnected: z.ZodOptional<z.ZodBoolean>;
17544
17783
  isDefunct: z.ZodOptional<z.ZodBoolean>;
17545
17784
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -17760,7 +17999,9 @@ declare const FindActionRunLogsResponse: z.ZodObject<{
17760
17999
  connection: z.ZodOptional<z.ZodObject<{
17761
18000
  id: z.ZodString;
17762
18001
  name: z.ZodString;
18002
+ key: z.ZodOptional<z.ZodString>;
17763
18003
  isTest: z.ZodOptional<z.ZodBoolean>;
18004
+ connected: z.ZodOptional<z.ZodBoolean>;
17764
18005
  disconnected: z.ZodOptional<z.ZodBoolean>;
17765
18006
  isDefunct: z.ZodOptional<z.ZodBoolean>;
17766
18007
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -18022,6 +18263,7 @@ declare const FindDataLinkTableInstanceLinksQuery: z.ZodObject<{
18022
18263
  integrationKey: z.ZodOptional<z.ZodString>;
18023
18264
  integrationId: z.ZodOptional<z.ZodString>;
18024
18265
  connectionId: z.ZodOptional<z.ZodString>;
18266
+ connectionKey: z.ZodOptional<z.ZodString>;
18025
18267
  id: z.ZodOptional<z.ZodString>;
18026
18268
  instanceKey: z.ZodOptional<z.ZodString>;
18027
18269
  dataLinkTableId: z.ZodOptional<z.ZodString>;
@@ -18082,7 +18324,9 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
18082
18324
  connection: z.ZodOptional<z.ZodObject<{
18083
18325
  id: z.ZodString;
18084
18326
  name: z.ZodString;
18327
+ key: z.ZodOptional<z.ZodString>;
18085
18328
  isTest: z.ZodOptional<z.ZodBoolean>;
18329
+ connected: z.ZodOptional<z.ZodBoolean>;
18086
18330
  disconnected: z.ZodOptional<z.ZodBoolean>;
18087
18331
  isDefunct: z.ZodOptional<z.ZodBoolean>;
18088
18332
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -18523,7 +18767,9 @@ declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
18523
18767
  connection: z.ZodOptional<z.ZodObject<{
18524
18768
  id: z.ZodString;
18525
18769
  name: z.ZodString;
18770
+ key: z.ZodOptional<z.ZodString>;
18526
18771
  isTest: z.ZodOptional<z.ZodBoolean>;
18772
+ connected: z.ZodOptional<z.ZodBoolean>;
18527
18773
  disconnected: z.ZodOptional<z.ZodBoolean>;
18528
18774
  isDefunct: z.ZodOptional<z.ZodBoolean>;
18529
18775
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -18706,7 +18952,9 @@ declare const ExternalEventPullApiResponse: z.ZodObject<{
18706
18952
  connection: z.ZodOptional<z.ZodObject<{
18707
18953
  id: z.ZodString;
18708
18954
  name: z.ZodString;
18955
+ key: z.ZodOptional<z.ZodString>;
18709
18956
  isTest: z.ZodOptional<z.ZodBoolean>;
18957
+ connected: z.ZodOptional<z.ZodBoolean>;
18710
18958
  disconnected: z.ZodOptional<z.ZodBoolean>;
18711
18959
  isDefunct: z.ZodOptional<z.ZodBoolean>;
18712
18960
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -18893,7 +19141,9 @@ declare const ExternalApiLogApiResponse: z.ZodObject<{
18893
19141
  connection: z.ZodOptional<z.ZodObject<{
18894
19142
  id: z.ZodString;
18895
19143
  name: z.ZodString;
19144
+ key: z.ZodOptional<z.ZodString>;
18896
19145
  isTest: z.ZodOptional<z.ZodBoolean>;
19146
+ connected: z.ZodOptional<z.ZodBoolean>;
18897
19147
  disconnected: z.ZodOptional<z.ZodBoolean>;
18898
19148
  isDefunct: z.ZodOptional<z.ZodBoolean>;
18899
19149
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -19022,7 +19272,9 @@ declare const IncomingWebhookApiResponse: z.ZodObject<{
19022
19272
  connection: z.ZodOptional<z.ZodObject<{
19023
19273
  id: z.ZodString;
19024
19274
  name: z.ZodString;
19275
+ key: z.ZodOptional<z.ZodString>;
19025
19276
  isTest: z.ZodOptional<z.ZodBoolean>;
19277
+ connected: z.ZodOptional<z.ZodBoolean>;
19026
19278
  disconnected: z.ZodOptional<z.ZodBoolean>;
19027
19279
  isDefunct: z.ZodOptional<z.ZodBoolean>;
19028
19280
  state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
@@ -19112,13 +19364,8 @@ declare const CreateConnectedProductRequest: z.ZodObject<{
19112
19364
  personal: "personal";
19113
19365
  }>>;
19114
19366
  parameters: z.ZodOptional<z.ZodObject<{
19115
- agentType: z.ZodOptional<z.ZodEnum<{
19116
- custom: "custom";
19117
- openclaw: "openclaw";
19118
- claude: "claude";
19119
- chatgpt: "chatgpt";
19120
- }>>;
19121
- }, z.core.$strip>>;
19367
+ agentType: z.ZodOptional<z.ZodString>;
19368
+ }, z.core.$loose>>;
19122
19369
  }, z.core.$strip>;
19123
19370
  type CreateConnectedProductRequest = z.infer<typeof CreateConnectedProductRequest>;
19124
19371
  declare const UpdateConnectedProductRequest: z.ZodObject<{
@@ -19133,13 +19380,8 @@ declare const UpdateConnectedProductRequest: z.ZodObject<{
19133
19380
  personal: "personal";
19134
19381
  }>>;
19135
19382
  parameters: z.ZodOptional<z.ZodObject<{
19136
- agentType: z.ZodOptional<z.ZodEnum<{
19137
- custom: "custom";
19138
- openclaw: "openclaw";
19139
- claude: "claude";
19140
- chatgpt: "chatgpt";
19141
- }>>;
19142
- }, z.core.$strip>>;
19383
+ agentType: z.ZodOptional<z.ZodString>;
19384
+ }, z.core.$loose>>;
19143
19385
  }, z.core.$strip>;
19144
19386
  type UpdateConnectedProductRequest = z.infer<typeof UpdateConnectedProductRequest>;
19145
19387
  declare const FindConnectedProductsQuery: z.ZodObject<{
@@ -19170,13 +19412,8 @@ declare const ConnectedProductApiResponse: z.ZodObject<{
19170
19412
  personal: "personal";
19171
19413
  }>>;
19172
19414
  parameters: z.ZodOptional<z.ZodObject<{
19173
- agentType: z.ZodOptional<z.ZodEnum<{
19174
- custom: "custom";
19175
- openclaw: "openclaw";
19176
- claude: "claude";
19177
- chatgpt: "chatgpt";
19178
- }>>;
19179
- }, z.core.$strip>>;
19415
+ agentType: z.ZodOptional<z.ZodString>;
19416
+ }, z.core.$loose>>;
19180
19417
  isConnected: z.ZodOptional<z.ZodBoolean>;
19181
19418
  lastApiRequestDate: z.ZodOptional<z.ZodString>;
19182
19419
  createdAt: z.ZodOptional<z.ZodString>;
@@ -19184,6 +19421,59 @@ declare const ConnectedProductApiResponse: z.ZodObject<{
19184
19421
  }, z.core.$strip>;
19185
19422
  type ConnectedProductApiResponse = z.infer<typeof ConnectedProductApiResponse>;
19186
19423
 
19424
+ declare const ConnectionAttemptLogApiResponse: z.ZodObject<{
19425
+ userId: z.ZodString;
19426
+ tenantId: z.ZodOptional<z.ZodString>;
19427
+ id: z.ZodString;
19428
+ integrationId: z.ZodOptional<z.ZodString>;
19429
+ connectionId: z.ZodOptional<z.ZodString>;
19430
+ externalAppId: z.ZodOptional<z.ZodString>;
19431
+ connectorId: z.ZodOptional<z.ZodString>;
19432
+ connectorVersion: z.ZodOptional<z.ZodString>;
19433
+ authOptionKey: z.ZodOptional<z.ZodString>;
19434
+ connectionRequestId: z.ZodOptional<z.ZodString>;
19435
+ status: z.ZodEnum<{
19436
+ success: "success";
19437
+ error: "error";
19438
+ }>;
19439
+ error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
19440
+ createdAt: z.ZodString;
19441
+ }, z.core.$strip>;
19442
+ type ConnectionAttemptLogApiResponse = z.infer<typeof ConnectionAttemptLogApiResponse>;
19443
+ declare const FindConnectionAttemptLogsQuery: z.ZodObject<{
19444
+ limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
19445
+ cursor: z.ZodOptional<z.ZodString>;
19446
+ connectionId: z.ZodOptional<z.ZodString>;
19447
+ integrationId: z.ZodOptional<z.ZodString>;
19448
+ status: z.ZodOptional<z.ZodEnum<{
19449
+ success: "success";
19450
+ error: "error";
19451
+ }>>;
19452
+ }, z.core.$strip>;
19453
+ type FindConnectionAttemptLogsQuery = z.infer<typeof FindConnectionAttemptLogsQuery>;
19454
+ declare const FindConnectionAttemptLogsResponse: z.ZodObject<{
19455
+ items: z.ZodArray<z.ZodObject<{
19456
+ userId: z.ZodString;
19457
+ tenantId: z.ZodOptional<z.ZodString>;
19458
+ id: z.ZodString;
19459
+ integrationId: z.ZodOptional<z.ZodString>;
19460
+ connectionId: z.ZodOptional<z.ZodString>;
19461
+ externalAppId: z.ZodOptional<z.ZodString>;
19462
+ connectorId: z.ZodOptional<z.ZodString>;
19463
+ connectorVersion: z.ZodOptional<z.ZodString>;
19464
+ authOptionKey: z.ZodOptional<z.ZodString>;
19465
+ connectionRequestId: z.ZodOptional<z.ZodString>;
19466
+ status: z.ZodEnum<{
19467
+ success: "success";
19468
+ error: "error";
19469
+ }>;
19470
+ error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
19471
+ createdAt: z.ZodString;
19472
+ }, z.core.$strip>>;
19473
+ cursor: z.ZodOptional<z.ZodString>;
19474
+ }, z.core.$strip>;
19475
+ type FindConnectionAttemptLogsResponse = z.infer<typeof FindConnectionAttemptLogsResponse>;
19476
+
19187
19477
  declare class DependencyError extends MembraneError {
19188
19478
  constructor(arg: ErrorConstructorArg, workspaceElementReference?: WorkspaceElementReference);
19189
19479
  }
@@ -19322,7 +19612,6 @@ declare const AgentSession: z.ZodObject<{
19322
19612
  summary: z.ZodOptional<z.ZodString>;
19323
19613
  cost: z.ZodOptional<z.ZodNumber>;
19324
19614
  state: z.ZodDefault<z.ZodEnum<typeof AgentSessionState>>;
19325
- usage: z.ZodOptional<z.ZodNumber>;
19326
19615
  hasWorker: z.ZodBoolean;
19327
19616
  isExternal: z.ZodOptional<z.ZodBoolean>;
19328
19617
  agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
@@ -19344,7 +19633,16 @@ declare const CreateAgentSession: z.ZodObject<{
19344
19633
  prompt: z.ZodString;
19345
19634
  testCustomerId: z.ZodOptional<z.ZodString>;
19346
19635
  isExternal: z.ZodOptional<z.ZodBoolean>;
19347
- modelId: z.ZodOptional<z.ZodString>;
19636
+ modelId: z.ZodOptional<z.ZodEnum<{
19637
+ "anthropic/claude-sonnet-4.6": "anthropic/claude-sonnet-4.6";
19638
+ "anthropic/claude-opus-4.6": "anthropic/claude-opus-4.6";
19639
+ "anthropic/claude-sonnet-4.5": "anthropic/claude-sonnet-4.5";
19640
+ "anthropic/claude-opus-4.5": "anthropic/claude-opus-4.5";
19641
+ "openai/gpt-5.2": "openai/gpt-5.2";
19642
+ "openai/gpt-5-nano": "openai/gpt-5-nano";
19643
+ "google/gemini-3-pro-preview": "google/gemini-3-pro-preview";
19644
+ "moonshotai/kimi-k2.5": "moonshotai/kimi-k2.5";
19645
+ }>>;
19348
19646
  agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
19349
19647
  promptAttachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
19350
19648
  title: z.ZodString;
@@ -19428,8 +19726,8 @@ declare function parseMembraneElementPath(relativePath: string): {
19428
19726
  key: string;
19429
19727
  integrationKey?: string;
19430
19728
  } | undefined;
19431
- declare function getConnectorSpecPath(connectorKey: string): string;
19432
- declare function getConnectorVersionPath(connectorKey: string, version: string): string;
19729
+ declare function getConnectorSpecPath(connectorUuid: string): string;
19730
+ declare function getConnectorVersionPath(connectorUuid: string, version: string): string;
19433
19731
 
19434
19732
  declare enum AlertStatus {
19435
19733
  ONGOING = "ongoing",
@@ -19456,6 +19754,7 @@ declare enum AlertType {
19456
19754
  parallelApiRequestsPerCustomer = "parallelApiRequestsPerCustomer",
19457
19755
  engineCreditsExhaustionProjected = "engineCreditsExhaustionProjected",
19458
19756
  engineCreditsExhaustionActual = "engineCreditsExhaustionActual",
19757
+ aiCreditsDebtAccumulated = "aiCreditsDebtAccumulated",
19459
19758
  totalNumberOfDatabaseEntitiesPerCustomer = "totalNumberOfDatabaseEntitiesPerCustomer",
19460
19759
  totalNumberOfCustomers = "totalNumberOfCustomers",
19461
19760
  totalNumberOfConnections = "totalNumberOfConnections",
@@ -19492,6 +19791,7 @@ declare const ALERT_TYPE_CATEGORIES: {
19492
19791
  readonly parallelApiRequestsPerCustomer: AlertCategory.CUSTOMER_RATE_LIMIT;
19493
19792
  readonly engineCreditsExhaustionProjected: AlertCategory.USAGE;
19494
19793
  readonly engineCreditsExhaustionActual: AlertCategory.USAGE;
19794
+ readonly aiCreditsDebtAccumulated: AlertCategory.USAGE;
19495
19795
  readonly totalNumberOfDatabaseEntitiesPerCustomer: AlertCategory.WORKSPACE_SIZE;
19496
19796
  readonly testAlert: AlertCategory.TEST;
19497
19797
  readonly totalNumberOfCustomers: AlertCategory.WORKSPACE_SIZE;
@@ -19537,6 +19837,7 @@ declare const Alert: z.ZodObject<{
19537
19837
  parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
19538
19838
  engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
19539
19839
  engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
19840
+ aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
19540
19841
  totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
19541
19842
  totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
19542
19843
  totalNumberOfConnections: AlertType.totalNumberOfConnections;
@@ -19587,6 +19888,7 @@ declare const AlertSchema: z.ZodObject<{
19587
19888
  parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
19588
19889
  engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
19589
19890
  engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
19891
+ aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
19590
19892
  totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
19591
19893
  totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
19592
19894
  totalNumberOfConnections: AlertType.totalNumberOfConnections;
@@ -19646,6 +19948,7 @@ declare const AlertDeliverySettingsSchema: z.ZodObject<{
19646
19948
  parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
19647
19949
  engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
19648
19950
  engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
19951
+ aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
19649
19952
  totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
19650
19953
  totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
19651
19954
  totalNumberOfConnections: AlertType.totalNumberOfConnections;
@@ -19697,6 +20000,7 @@ declare const FindAlertsQuery: z.ZodObject<{
19697
20000
  parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
19698
20001
  engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
19699
20002
  engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
20003
+ aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
19700
20004
  totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
19701
20005
  totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
19702
20006
  totalNumberOfConnections: AlertType.totalNumberOfConnections;
@@ -19733,6 +20037,7 @@ declare const CreateAlert: z.ZodObject<{
19733
20037
  parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
19734
20038
  engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
19735
20039
  engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
20040
+ aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
19736
20041
  totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
19737
20042
  totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
19738
20043
  totalNumberOfConnections: AlertType.totalNumberOfConnections;
@@ -19987,6 +20292,11 @@ declare const WorkspaceLimitsSchema: z$1.ZodObject<{
19987
20292
  defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
19988
20293
  unit: z$1.ZodEnum<typeof LimitUnits>;
19989
20294
  }, z$1.core.$strip>>;
20295
+ flowRunsQueueSizePerConnection: z$1.ZodOptional<z$1.ZodObject<{
20296
+ value: z$1.ZodOptional<z$1.ZodNumber>;
20297
+ defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
20298
+ unit: z$1.ZodEnum<typeof LimitUnits>;
20299
+ }, z$1.core.$strip>>;
19990
20300
  instantTasksQueueSize: z$1.ZodOptional<z$1.ZodObject<{
19991
20301
  value: z$1.ZodOptional<z$1.ZodNumber>;
19992
20302
  defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
@@ -20066,6 +20376,9 @@ declare const WorkspaceSettingsSchema: z$1.ZodObject<{
20066
20376
  disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
20067
20377
  useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
20068
20378
  useRemoteRepository: z$1.ZodOptional<z$1.ZodBoolean>;
20379
+ autoGenerateIntegrationsFromConnectors: z$1.ZodOptional<z$1.ZodBoolean>;
20380
+ autoGenerateIntegrationsFromExternalApps: z$1.ZodOptional<z$1.ZodBoolean>;
20381
+ autoGenerateIntegrationsFromWebSearch: z$1.ZodOptional<z$1.ZodBoolean>;
20069
20382
  }, z$1.core.$strip>;
20070
20383
  declare const EngineWorkspaceSettingsSchema: z$1.ZodObject<{
20071
20384
  enableApiLogs: z$1.ZodOptional<z$1.ZodBoolean>;
@@ -20074,6 +20387,9 @@ declare const EngineWorkspaceSettingsSchema: z$1.ZodObject<{
20074
20387
  disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
20075
20388
  useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
20076
20389
  useRemoteRepository: z$1.ZodOptional<z$1.ZodBoolean>;
20390
+ autoGenerateIntegrationsFromConnectors: z$1.ZodOptional<z$1.ZodBoolean>;
20391
+ autoGenerateIntegrationsFromExternalApps: z$1.ZodOptional<z$1.ZodBoolean>;
20392
+ autoGenerateIntegrationsFromWebSearch: z$1.ZodOptional<z$1.ZodBoolean>;
20077
20393
  }, z$1.core.$strip>;
20078
20394
  declare const WorkspacePublicKey: z$1.ZodObject<{
20079
20395
  name: z$1.ZodString;
@@ -20242,6 +20558,11 @@ declare const AppSchema: z$1.ZodObject<{
20242
20558
  defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
20243
20559
  unit: z$1.ZodEnum<typeof LimitUnits>;
20244
20560
  }, z$1.core.$strip>>;
20561
+ flowRunsQueueSizePerConnection: z$1.ZodOptional<z$1.ZodObject<{
20562
+ value: z$1.ZodOptional<z$1.ZodNumber>;
20563
+ defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
20564
+ unit: z$1.ZodEnum<typeof LimitUnits>;
20565
+ }, z$1.core.$strip>>;
20245
20566
  instantTasksQueueSize: z$1.ZodOptional<z$1.ZodObject<{
20246
20567
  value: z$1.ZodOptional<z$1.ZodNumber>;
20247
20568
  defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
@@ -20310,6 +20631,9 @@ declare const AppSchema: z$1.ZodObject<{
20310
20631
  disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
20311
20632
  useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
20312
20633
  useRemoteRepository: z$1.ZodOptional<z$1.ZodBoolean>;
20634
+ autoGenerateIntegrationsFromConnectors: z$1.ZodOptional<z$1.ZodBoolean>;
20635
+ autoGenerateIntegrationsFromExternalApps: z$1.ZodOptional<z$1.ZodBoolean>;
20636
+ autoGenerateIntegrationsFromWebSearch: z$1.ZodOptional<z$1.ZodBoolean>;
20313
20637
  }, z$1.core.$strip>>;
20314
20638
  alertDeliverySettings: z$1.ZodOptional<z$1.ZodObject<{
20315
20639
  alertTypes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodEnum<{
@@ -20329,6 +20653,7 @@ declare const AppSchema: z$1.ZodObject<{
20329
20653
  parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
20330
20654
  engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
20331
20655
  engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
20656
+ aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
20332
20657
  totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
20333
20658
  totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
20334
20659
  totalNumberOfConnections: AlertType.totalNumberOfConnections;
@@ -20522,6 +20847,11 @@ declare const Workspace: z$1.ZodObject<{
20522
20847
  defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
20523
20848
  unit: z$1.ZodEnum<typeof LimitUnits>;
20524
20849
  }, z$1.core.$strip>>;
20850
+ flowRunsQueueSizePerConnection: z$1.ZodOptional<z$1.ZodObject<{
20851
+ value: z$1.ZodOptional<z$1.ZodNumber>;
20852
+ defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
20853
+ unit: z$1.ZodEnum<typeof LimitUnits>;
20854
+ }, z$1.core.$strip>>;
20525
20855
  instantTasksQueueSize: z$1.ZodOptional<z$1.ZodObject<{
20526
20856
  value: z$1.ZodOptional<z$1.ZodNumber>;
20527
20857
  defaultValue: z$1.ZodOptional<z$1.ZodNumber>;
@@ -20590,6 +20920,9 @@ declare const Workspace: z$1.ZodObject<{
20590
20920
  disableSecretKeyAuth: z$1.ZodOptional<z$1.ZodBoolean>;
20591
20921
  useMembraneUniverse: z$1.ZodOptional<z$1.ZodBoolean>;
20592
20922
  useRemoteRepository: z$1.ZodOptional<z$1.ZodBoolean>;
20923
+ autoGenerateIntegrationsFromConnectors: z$1.ZodOptional<z$1.ZodBoolean>;
20924
+ autoGenerateIntegrationsFromExternalApps: z$1.ZodOptional<z$1.ZodBoolean>;
20925
+ autoGenerateIntegrationsFromWebSearch: z$1.ZodOptional<z$1.ZodBoolean>;
20593
20926
  }, z$1.core.$strip>>;
20594
20927
  alertDeliverySettings: z$1.ZodOptional<z$1.ZodObject<{
20595
20928
  alertTypes: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodEnum<{
@@ -20609,6 +20942,7 @@ declare const Workspace: z$1.ZodObject<{
20609
20942
  parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
20610
20943
  engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
20611
20944
  engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
20945
+ aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
20612
20946
  totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
20613
20947
  totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
20614
20948
  totalNumberOfConnections: AlertType.totalNumberOfConnections;
@@ -20676,6 +21010,9 @@ declare const CreateWorkspaceRequest: z.ZodObject<{
20676
21010
  disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
20677
21011
  useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
20678
21012
  useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
21013
+ autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
21014
+ autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
21015
+ autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
20679
21016
  }, z.core.$strip>>;
20680
21017
  }, z.core.$strip>;
20681
21018
  type CreateWorkspaceRequest = z.infer<typeof CreateWorkspaceRequest>;
@@ -20704,6 +21041,9 @@ declare const UpdateWorkspaceRequest: z.ZodObject<{
20704
21041
  disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
20705
21042
  useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
20706
21043
  useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
21044
+ autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
21045
+ autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
21046
+ autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
20707
21047
  }, z.core.$strip>>;
20708
21048
  alertDeliverySettings: z.ZodOptional<z.ZodObject<{
20709
21049
  alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
@@ -20723,6 +21063,7 @@ declare const UpdateWorkspaceRequest: z.ZodObject<{
20723
21063
  parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
20724
21064
  engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
20725
21065
  engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
21066
+ aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
20726
21067
  totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
20727
21068
  totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
20728
21069
  totalNumberOfConnections: AlertType.totalNumberOfConnections;
@@ -20891,6 +21232,11 @@ declare const UpdateWorkspaceLimitsRequest: z.ZodObject<{
20891
21232
  defaultValue: z.ZodOptional<z.ZodNumber>;
20892
21233
  unit: z.ZodEnum<typeof LimitUnits>;
20893
21234
  }, z.core.$strip>>>;
21235
+ flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodOptional<z.ZodObject<{
21236
+ value: z.ZodOptional<z.ZodNumber>;
21237
+ defaultValue: z.ZodOptional<z.ZodNumber>;
21238
+ unit: z.ZodEnum<typeof LimitUnits>;
21239
+ }, z.core.$strip>>>;
20894
21240
  instantTasksQueueSize: z.ZodOptional<z.ZodOptional<z.ZodObject<{
20895
21241
  value: z.ZodOptional<z.ZodNumber>;
20896
21242
  defaultValue: z.ZodOptional<z.ZodNumber>;
@@ -20976,6 +21322,14 @@ declare const GetWorkspaceQuery: z.ZodObject<{
20976
21322
  includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
20977
21323
  }, z.core.$strip>;
20978
21324
  type GetWorkspaceQuery = z.infer<typeof GetWorkspaceQuery>;
21325
+ declare const MembraneCredentials: z.ZodObject<{
21326
+ apiUri: z.ZodString;
21327
+ workspaceKey: z.ZodString;
21328
+ workspaceSecret: z.ZodOptional<z.ZodString>;
21329
+ tenantKey: z.ZodOptional<z.ZodString>;
21330
+ notes: z.ZodOptional<z.ZodString>;
21331
+ }, z.core.$strip>;
21332
+ type MembraneCredentials = z.infer<typeof MembraneCredentials>;
20979
21333
 
20980
21334
  declare const PARALLEL_EXECUTION_LIMITS: string[];
20981
21335
  declare const RATE_LIMITS: string[];
@@ -21003,7 +21357,7 @@ interface WorkspaceElementChangeInfo {
21003
21357
  interface WorkspaceExportComparisonResult {
21004
21358
  comparison: WorkspaceExportComparison;
21005
21359
  changes: Record<string, WorkspaceElementChangeInfo>;
21006
- sourceUuidByTargetUuid: Map<string, string>;
21360
+ baseUuidByTargetUuid: Map<string, string>;
21007
21361
  diff?: string;
21008
21362
  }
21009
21363
  interface WorkspaceExportComparisonOptions {
@@ -21305,12 +21659,17 @@ declare const WorkspaceEditableFields: z.ZodObject<{
21305
21659
  defaultValue: z.ZodOptional<z.ZodNumber>;
21306
21660
  unit: z.ZodEnum<typeof LimitUnits>;
21307
21661
  }, z.core.$strip>>;
21308
- instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
21662
+ flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
21309
21663
  value: z.ZodOptional<z.ZodNumber>;
21310
21664
  defaultValue: z.ZodOptional<z.ZodNumber>;
21311
21665
  unit: z.ZodEnum<typeof LimitUnits>;
21312
21666
  }, z.core.$strip>>;
21313
- QueuedTasksQueueSize: z.ZodOptional<z.ZodObject<{
21667
+ instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
21668
+ value: z.ZodOptional<z.ZodNumber>;
21669
+ defaultValue: z.ZodOptional<z.ZodNumber>;
21670
+ unit: z.ZodEnum<typeof LimitUnits>;
21671
+ }, z.core.$strip>>;
21672
+ QueuedTasksQueueSize: z.ZodOptional<z.ZodObject<{
21314
21673
  value: z.ZodOptional<z.ZodNumber>;
21315
21674
  defaultValue: z.ZodOptional<z.ZodNumber>;
21316
21675
  unit: z.ZodEnum<typeof LimitUnits>;
@@ -21373,6 +21732,9 @@ declare const WorkspaceEditableFields: z.ZodObject<{
21373
21732
  disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
21374
21733
  useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
21375
21734
  useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
21735
+ autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
21736
+ autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
21737
+ autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
21376
21738
  }, z.core.$strip>>;
21377
21739
  publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
21378
21740
  name: z.ZodString;
@@ -21399,6 +21761,7 @@ declare const WorkspaceEditableFields: z.ZodObject<{
21399
21761
  parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
21400
21762
  engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
21401
21763
  engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
21764
+ aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
21402
21765
  totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
21403
21766
  totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
21404
21767
  totalNumberOfConnections: AlertType.totalNumberOfConnections;
@@ -21422,6 +21785,7 @@ declare const WorkspaceEditableFields: z.ZodObject<{
21422
21785
  }, z.core.$strip>>;
21423
21786
  jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21424
21787
  type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
21788
+ isReadOnly: z.ZodOptional<z.ZodBoolean>;
21425
21789
  }, z.core.$strip>;
21426
21790
  type WorkspaceEditableFields = z.infer<typeof WorkspaceEditableFields>;
21427
21791
  declare const OrgWorkspace: z.ZodObject<{
@@ -21579,6 +21943,11 @@ declare const OrgWorkspace: z.ZodObject<{
21579
21943
  defaultValue: z.ZodOptional<z.ZodNumber>;
21580
21944
  unit: z.ZodEnum<typeof LimitUnits>;
21581
21945
  }, z.core.$strip>>;
21946
+ flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
21947
+ value: z.ZodOptional<z.ZodNumber>;
21948
+ defaultValue: z.ZodOptional<z.ZodNumber>;
21949
+ unit: z.ZodEnum<typeof LimitUnits>;
21950
+ }, z.core.$strip>>;
21582
21951
  instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
21583
21952
  value: z.ZodOptional<z.ZodNumber>;
21584
21953
  defaultValue: z.ZodOptional<z.ZodNumber>;
@@ -21647,6 +22016,9 @@ declare const OrgWorkspace: z.ZodObject<{
21647
22016
  disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
21648
22017
  useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
21649
22018
  useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
22019
+ autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
22020
+ autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
22021
+ autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
21650
22022
  }, z.core.$strip>>;
21651
22023
  publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
21652
22024
  name: z.ZodString;
@@ -21673,6 +22045,7 @@ declare const OrgWorkspace: z.ZodObject<{
21673
22045
  parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
21674
22046
  engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
21675
22047
  engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
22048
+ aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
21676
22049
  totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
21677
22050
  totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
21678
22051
  totalNumberOfConnections: AlertType.totalNumberOfConnections;
@@ -21696,6 +22069,7 @@ declare const OrgWorkspace: z.ZodObject<{
21696
22069
  }, z.core.$strip>>;
21697
22070
  jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21698
22071
  type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
22072
+ isReadOnly: z.ZodOptional<z.ZodBoolean>;
21699
22073
  }, z.core.$strip>;
21700
22074
  type OrgWorkspace = z.infer<typeof OrgWorkspace>;
21701
22075
  declare const OrgWorkspaceUpdateRequest: z.ZodObject<{
@@ -21842,6 +22216,11 @@ declare const OrgWorkspaceUpdateRequest: z.ZodObject<{
21842
22216
  defaultValue: z.ZodOptional<z.ZodNumber>;
21843
22217
  unit: z.ZodEnum<typeof LimitUnits>;
21844
22218
  }, z.core.$strip>>;
22219
+ flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
22220
+ value: z.ZodOptional<z.ZodNumber>;
22221
+ defaultValue: z.ZodOptional<z.ZodNumber>;
22222
+ unit: z.ZodEnum<typeof LimitUnits>;
22223
+ }, z.core.$strip>>;
21845
22224
  instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
21846
22225
  value: z.ZodOptional<z.ZodNumber>;
21847
22226
  defaultValue: z.ZodOptional<z.ZodNumber>;
@@ -21910,6 +22289,9 @@ declare const OrgWorkspaceUpdateRequest: z.ZodObject<{
21910
22289
  disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
21911
22290
  useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
21912
22291
  useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
22292
+ autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
22293
+ autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
22294
+ autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
21913
22295
  }, z.core.$strip>>;
21914
22296
  publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
21915
22297
  name: z.ZodString;
@@ -21936,6 +22318,7 @@ declare const OrgWorkspaceUpdateRequest: z.ZodObject<{
21936
22318
  parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
21937
22319
  engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
21938
22320
  engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
22321
+ aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
21939
22322
  totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
21940
22323
  totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
21941
22324
  totalNumberOfConnections: AlertType.totalNumberOfConnections;
@@ -21959,16 +22342,90 @@ declare const OrgWorkspaceUpdateRequest: z.ZodObject<{
21959
22342
  }, z.core.$strip>>;
21960
22343
  jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21961
22344
  type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
22345
+ isReadOnly: z.ZodOptional<z.ZodBoolean>;
21962
22346
  }, z.core.$strip>;
21963
22347
  type OrgWorkspaceUpdateRequest = z.infer<typeof OrgWorkspaceUpdateRequest>;
22348
+ declare const WorkspaceOnboardingData: z.ZodObject<{
22349
+ productSetup: z.ZodOptional<z.ZodObject<{
22350
+ type: z.ZodOptional<z.ZodEnum<{
22351
+ app: "app";
22352
+ "ai-agent": "ai-agent";
22353
+ }>>;
22354
+ agentType: z.ZodOptional<z.ZodString>;
22355
+ name: z.ZodOptional<z.ZodString>;
22356
+ connectedProductId: z.ZodOptional<z.ZodString>;
22357
+ }, z.core.$strip>>;
22358
+ connections: z.ZodOptional<z.ZodObject<{
22359
+ apps: z.ZodArray<z.ZodObject<{
22360
+ externalAppId: z.ZodOptional<z.ZodString>;
22361
+ name: z.ZodOptional<z.ZodString>;
22362
+ url: z.ZodOptional<z.ZodString>;
22363
+ status: z.ZodOptional<z.ZodEnum<{
22364
+ connected: "connected";
22365
+ skipped: "skipped";
22366
+ pending: "pending";
22367
+ }>>;
22368
+ }, z.core.$strip>>;
22369
+ }, z.core.$strip>>;
22370
+ }, z.core.$loose>;
22371
+ type WorkspaceOnboardingData = z.infer<typeof WorkspaceOnboardingData>;
21964
22372
  declare const OrgWorkspaceUser: z.ZodObject<{
21965
22373
  id: z.ZodString;
21966
22374
  workspaceId: z.ZodString;
21967
22375
  testCustomerId: z.ZodString;
21968
22376
  userId: z.ZodString;
21969
22377
  role: z.ZodString;
22378
+ onboardingData: z.ZodOptional<z.ZodObject<{
22379
+ productSetup: z.ZodOptional<z.ZodObject<{
22380
+ type: z.ZodOptional<z.ZodEnum<{
22381
+ app: "app";
22382
+ "ai-agent": "ai-agent";
22383
+ }>>;
22384
+ agentType: z.ZodOptional<z.ZodString>;
22385
+ name: z.ZodOptional<z.ZodString>;
22386
+ connectedProductId: z.ZodOptional<z.ZodString>;
22387
+ }, z.core.$strip>>;
22388
+ connections: z.ZodOptional<z.ZodObject<{
22389
+ apps: z.ZodArray<z.ZodObject<{
22390
+ externalAppId: z.ZodOptional<z.ZodString>;
22391
+ name: z.ZodOptional<z.ZodString>;
22392
+ url: z.ZodOptional<z.ZodString>;
22393
+ status: z.ZodOptional<z.ZodEnum<{
22394
+ connected: "connected";
22395
+ skipped: "skipped";
22396
+ pending: "pending";
22397
+ }>>;
22398
+ }, z.core.$strip>>;
22399
+ }, z.core.$strip>>;
22400
+ }, z.core.$loose>>;
21970
22401
  }, z.core.$strip>;
21971
22402
  type OrgWorkspaceUser = z.infer<typeof OrgWorkspaceUser>;
22403
+ declare const PatchUserWorkspaceSettings: z.ZodObject<{
22404
+ onboardingData: z.ZodOptional<z.ZodObject<{
22405
+ productSetup: z.ZodOptional<z.ZodObject<{
22406
+ type: z.ZodOptional<z.ZodEnum<{
22407
+ app: "app";
22408
+ "ai-agent": "ai-agent";
22409
+ }>>;
22410
+ agentType: z.ZodOptional<z.ZodString>;
22411
+ name: z.ZodOptional<z.ZodString>;
22412
+ connectedProductId: z.ZodOptional<z.ZodString>;
22413
+ }, z.core.$strip>>;
22414
+ connections: z.ZodOptional<z.ZodObject<{
22415
+ apps: z.ZodArray<z.ZodObject<{
22416
+ externalAppId: z.ZodOptional<z.ZodString>;
22417
+ name: z.ZodOptional<z.ZodString>;
22418
+ url: z.ZodOptional<z.ZodString>;
22419
+ status: z.ZodOptional<z.ZodEnum<{
22420
+ connected: "connected";
22421
+ skipped: "skipped";
22422
+ pending: "pending";
22423
+ }>>;
22424
+ }, z.core.$strip>>;
22425
+ }, z.core.$strip>>;
22426
+ }, z.core.$loose>>;
22427
+ }, z.core.$strip>;
22428
+ type PatchUserWorkspaceSettings = z.infer<typeof PatchUserWorkspaceSettings>;
21972
22429
  declare const CreateOrgRequest: z.ZodObject<{
21973
22430
  name: z.ZodString;
21974
22431
  website: z.ZodOptional<z.ZodString>;
@@ -21981,17 +22438,7 @@ declare const CreateOrgRequest: z.ZodObject<{
21981
22438
  team: "team";
21982
22439
  }>>>;
21983
22440
  stripeCustomerId: z.ZodOptional<z.ZodString>;
21984
- signupSource: z.ZodOptional<z.ZodEnum<{
21985
- cursor: "cursor";
21986
- other: "other";
21987
- openclaw: "openclaw";
21988
- claude: "claude";
21989
- chatgpt: "chatgpt";
21990
- web: "web";
21991
- "membrane-cli": "membrane-cli";
21992
- warp: "warp";
21993
- lovable: "lovable";
21994
- }>>;
22441
+ signupSource: z.ZodOptional<z.ZodString>;
21995
22442
  }, z.core.$strip>;
21996
22443
  type CreateOrgRequest = z.infer<typeof CreateOrgRequest>;
21997
22444
  declare const UpdateOrgRequest: z.ZodObject<{
@@ -22316,6 +22763,11 @@ declare const ListOrgWorkspacesResponse: z.ZodObject<{
22316
22763
  defaultValue: z.ZodOptional<z.ZodNumber>;
22317
22764
  unit: z.ZodEnum<typeof LimitUnits>;
22318
22765
  }, z.core.$strip>>;
22766
+ flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
22767
+ value: z.ZodOptional<z.ZodNumber>;
22768
+ defaultValue: z.ZodOptional<z.ZodNumber>;
22769
+ unit: z.ZodEnum<typeof LimitUnits>;
22770
+ }, z.core.$strip>>;
22319
22771
  instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
22320
22772
  value: z.ZodOptional<z.ZodNumber>;
22321
22773
  defaultValue: z.ZodOptional<z.ZodNumber>;
@@ -22384,6 +22836,9 @@ declare const ListOrgWorkspacesResponse: z.ZodObject<{
22384
22836
  disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
22385
22837
  useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
22386
22838
  useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
22839
+ autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
22840
+ autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
22841
+ autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
22387
22842
  }, z.core.$strip>>;
22388
22843
  publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
22389
22844
  name: z.ZodString;
@@ -22410,6 +22865,7 @@ declare const ListOrgWorkspacesResponse: z.ZodObject<{
22410
22865
  parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
22411
22866
  engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
22412
22867
  engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
22868
+ aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
22413
22869
  totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
22414
22870
  totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
22415
22871
  totalNumberOfConnections: AlertType.totalNumberOfConnections;
@@ -22433,6 +22889,7 @@ declare const ListOrgWorkspacesResponse: z.ZodObject<{
22433
22889
  }, z.core.$strip>>;
22434
22890
  jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22435
22891
  type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
22892
+ isReadOnly: z.ZodOptional<z.ZodBoolean>;
22436
22893
  }, z.core.$strip>>;
22437
22894
  cursor: z.ZodOptional<z.ZodString>;
22438
22895
  }, z.core.$strip>;
@@ -22622,275 +23079,7 @@ declare const AccountResponse: z.ZodObject<{
22622
23079
  defaultValue: z.ZodOptional<z.ZodNumber>;
22623
23080
  unit: z.ZodEnum<typeof LimitUnits>;
22624
23081
  }, z.core.$strip>>;
22625
- instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
22626
- value: z.ZodOptional<z.ZodNumber>;
22627
- defaultValue: z.ZodOptional<z.ZodNumber>;
22628
- unit: z.ZodEnum<typeof LimitUnits>;
22629
- }, z.core.$strip>>;
22630
- QueuedTasksQueueSize: z.ZodOptional<z.ZodObject<{
22631
- value: z.ZodOptional<z.ZodNumber>;
22632
- defaultValue: z.ZodOptional<z.ZodNumber>;
22633
- unit: z.ZodEnum<typeof LimitUnits>;
22634
- }, z.core.$strip>>;
22635
- parallelApiRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
22636
- value: z.ZodOptional<z.ZodNumber>;
22637
- defaultValue: z.ZodOptional<z.ZodNumber>;
22638
- unit: z.ZodEnum<typeof LimitUnits>;
22639
- }, z.core.$strip>>;
22640
- parallelBackgroundJobsPerCustomer: z.ZodOptional<z.ZodObject<{
22641
- value: z.ZodOptional<z.ZodNumber>;
22642
- defaultValue: z.ZodOptional<z.ZodNumber>;
22643
- unit: z.ZodEnum<typeof LimitUnits>;
22644
- }, z.core.$strip>>;
22645
- parallelCustomCodeRunsPerCustomer: z.ZodOptional<z.ZodObject<{
22646
- value: z.ZodOptional<z.ZodNumber>;
22647
- defaultValue: z.ZodOptional<z.ZodNumber>;
22648
- unit: z.ZodEnum<typeof LimitUnits>;
22649
- }, z.core.$strip>>;
22650
- totalNumberOfDatabaseEntitiesPerCustomer: z.ZodOptional<z.ZodObject<{
22651
- value: z.ZodOptional<z.ZodNumber>;
22652
- defaultValue: z.ZodOptional<z.ZodNumber>;
22653
- unit: z.ZodEnum<typeof LimitUnits>;
22654
- }, z.core.$strip>>;
22655
- apiRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
22656
- value: z.ZodOptional<z.ZodNumber>;
22657
- defaultValue: z.ZodOptional<z.ZodNumber>;
22658
- unit: z.ZodEnum<typeof LimitUnits>;
22659
- }, z.core.$strip>>;
22660
- apiRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
22661
- value: z.ZodOptional<z.ZodNumber>;
22662
- defaultValue: z.ZodOptional<z.ZodNumber>;
22663
- unit: z.ZodEnum<typeof LimitUnits>;
22664
- }, z.core.$strip>>;
22665
- webhookRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
22666
- value: z.ZodOptional<z.ZodNumber>;
22667
- defaultValue: z.ZodOptional<z.ZodNumber>;
22668
- unit: z.ZodEnum<typeof LimitUnits>;
22669
- }, z.core.$strip>>;
22670
- webhookRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
22671
- value: z.ZodOptional<z.ZodNumber>;
22672
- defaultValue: z.ZodOptional<z.ZodNumber>;
22673
- unit: z.ZodEnum<typeof LimitUnits>;
22674
- }, z.core.$strip>>;
22675
- externalEventsPerCustomerPerDay: z.ZodOptional<z.ZodObject<{
22676
- value: z.ZodOptional<z.ZodNumber>;
22677
- defaultValue: z.ZodOptional<z.ZodNumber>;
22678
- unit: z.ZodEnum<typeof LimitUnits>;
22679
- }, z.core.$strip>>;
22680
- defaultTenantAiCreditsRolling30DayLimit: z.ZodOptional<z.ZodObject<{
22681
- value: z.ZodOptional<z.ZodNumber>;
22682
- defaultValue: z.ZodOptional<z.ZodNumber>;
22683
- unit: z.ZodEnum<typeof LimitUnits>;
22684
- }, z.core.$strip>>;
22685
- }, z.core.$strip>>;
22686
- settings: z.ZodOptional<z.ZodObject<{
22687
- enableApiLogs: z.ZodOptional<z.ZodBoolean>;
22688
- enableWebhookLogs: z.ZodOptional<z.ZodBoolean>;
22689
- enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
22690
- disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
22691
- useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
22692
- useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
22693
- }, z.core.$strip>>;
22694
- publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
22695
- name: z.ZodString;
22696
- publicKey: z.ZodString;
22697
- }, z.core.$strip>>>;
22698
- userFieldsSchema: z.ZodOptional<z.ZodAny>;
22699
- webhookUri: z.ZodOptional<z.ZodString>;
22700
- enabledWebhookEvents: z.ZodOptional<z.ZodArray<z.ZodString>>;
22701
- alertDeliverySettings: z.ZodOptional<z.ZodObject<{
22702
- alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
22703
- fileUploadsMbPerHour: AlertType.fileUploadsMbPerHour;
22704
- apiRequestsPerSecond: AlertType.apiRequestsPerSecond;
22705
- apiRequestsPerHour: AlertType.apiRequestsPerHour;
22706
- webhookRequestsPerSecond: AlertType.webhookRequestsPerSecond;
22707
- webhookRequestsPerHour: AlertType.webhookRequestsPerHour;
22708
- workspaceElementCreationsPerSecond: AlertType.workspaceElementCreationsPerSecond;
22709
- workspaceElementCreationsPerHour: AlertType.workspaceElementCreationsPerHour;
22710
- workspaceElementSearchIndexingPerMinute: AlertType.workspaceElementSearchIndexingPerMinute;
22711
- externalEventsPerCustomerPerDay: AlertType.externalEventsPerCustomerPerDay;
22712
- apiRequestsPerCustomerPerSecond: AlertType.apiRequestsPerCustomerPerSecond;
22713
- apiRequestsPerCustomerPerHour: AlertType.apiRequestsPerCustomerPerHour;
22714
- webhookRequestsPerCustomerPerSecond: AlertType.webhookRequestsPerCustomerPerSecond;
22715
- webhookRequestsPerCustomerPerHour: AlertType.webhookRequestsPerCustomerPerHour;
22716
- parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
22717
- engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
22718
- engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
22719
- totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
22720
- totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
22721
- totalNumberOfConnections: AlertType.totalNumberOfConnections;
22722
- totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
22723
- totalNumberOfWorkspaceDatabaseRecords: AlertType.totalNumberOfWorkspaceDatabaseRecords;
22724
- instantTasksQueueSize: AlertType.instantTasksQueueSize;
22725
- queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
22726
- flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
22727
- eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
22728
- parallelApiRequests: AlertType.parallelApiRequests;
22729
- testAlert: AlertType.testAlert;
22730
- }>, z.ZodOptional<z.ZodObject<{
22731
- internal: z.ZodLiteral<true>;
22732
- webhook: z.ZodOptional<z.ZodObject<{
22733
- enabled: z.ZodBoolean;
22734
- }, z.core.$strip>>;
22735
- email: z.ZodOptional<z.ZodObject<{
22736
- enabled: z.ZodBoolean;
22737
- }, z.core.$strip>>;
22738
- }, z.core.$strip>>>>;
22739
- }, z.core.$strip>>;
22740
- jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22741
- type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
22742
- }, z.core.$strip>>;
22743
- workspaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
22744
- id: z.ZodString;
22745
- name: z.ZodString;
22746
- orgId: z.ZodString;
22747
- apiBaseUri: z.ZodOptional<z.ZodString>;
22748
- key: z.ZodString;
22749
- secret: z.ZodString;
22750
- createdAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
22751
- updatedAt: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodPipe<z.ZodString, z.ZodTransform<Date, string>>>;
22752
- engineAccessToken: z.ZodOptional<z.ZodString>;
22753
- trialEndDate: z.ZodOptional<z.ZodString>;
22754
- featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
22755
- logoUri: z.ZodOptional<z.ZodString>;
22756
- membraneInstanceId: z.ZodOptional<z.ZodString>;
22757
- limits: z.ZodOptional<z.ZodObject<{
22758
- parallelEventPulls: z.ZodOptional<z.ZodObject<{
22759
- value: z.ZodOptional<z.ZodNumber>;
22760
- defaultValue: z.ZodOptional<z.ZodNumber>;
22761
- unit: z.ZodEnum<typeof LimitUnits>;
22762
- }, z.core.$strip>>;
22763
- parallelIncrementalEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
22764
- value: z.ZodOptional<z.ZodNumber>;
22765
- defaultValue: z.ZodOptional<z.ZodNumber>;
22766
- unit: z.ZodEnum<typeof LimitUnits>;
22767
- }, z.core.$strip>>;
22768
- parallelFullSyncEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
22769
- value: z.ZodOptional<z.ZodNumber>;
22770
- defaultValue: z.ZodOptional<z.ZodNumber>;
22771
- unit: z.ZodEnum<typeof LimitUnits>;
22772
- }, z.core.$strip>>;
22773
- parallelFlowRuns: z.ZodOptional<z.ZodObject<{
22774
- value: z.ZodOptional<z.ZodNumber>;
22775
- defaultValue: z.ZodOptional<z.ZodNumber>;
22776
- unit: z.ZodEnum<typeof LimitUnits>;
22777
- }, z.core.$strip>>;
22778
- parallelFlowRunsPerConnection: z.ZodOptional<z.ZodObject<{
22779
- value: z.ZodOptional<z.ZodNumber>;
22780
- defaultValue: z.ZodOptional<z.ZodNumber>;
22781
- unit: z.ZodEnum<typeof LimitUnits>;
22782
- }, z.core.$strip>>;
22783
- parallelApiRequests: z.ZodOptional<z.ZodObject<{
22784
- value: z.ZodOptional<z.ZodNumber>;
22785
- defaultValue: z.ZodOptional<z.ZodNumber>;
22786
- unit: z.ZodEnum<typeof LimitUnits>;
22787
- }, z.core.$strip>>;
22788
- parallelSseRequests: z.ZodOptional<z.ZodObject<{
22789
- value: z.ZodOptional<z.ZodNumber>;
22790
- defaultValue: z.ZodOptional<z.ZodNumber>;
22791
- unit: z.ZodEnum<typeof LimitUnits>;
22792
- }, z.core.$strip>>;
22793
- parallelBackgroundJobs: z.ZodOptional<z.ZodObject<{
22794
- value: z.ZodOptional<z.ZodNumber>;
22795
- defaultValue: z.ZodOptional<z.ZodNumber>;
22796
- unit: z.ZodEnum<typeof LimitUnits>;
22797
- }, z.core.$strip>>;
22798
- parallelEventProcessingJobs: z.ZodOptional<z.ZodObject<{
22799
- value: z.ZodOptional<z.ZodNumber>;
22800
- defaultValue: z.ZodOptional<z.ZodNumber>;
22801
- unit: z.ZodEnum<typeof LimitUnits>;
22802
- }, z.core.$strip>>;
22803
- parallelEventProcessingJobsPerConnection: z.ZodOptional<z.ZodObject<{
22804
- value: z.ZodOptional<z.ZodNumber>;
22805
- defaultValue: z.ZodOptional<z.ZodNumber>;
22806
- unit: z.ZodEnum<typeof LimitUnits>;
22807
- }, z.core.$strip>>;
22808
- parallelInstantTasksActiveJobs: z.ZodOptional<z.ZodObject<{
22809
- value: z.ZodOptional<z.ZodNumber>;
22810
- defaultValue: z.ZodOptional<z.ZodNumber>;
22811
- unit: z.ZodEnum<typeof LimitUnits>;
22812
- }, z.core.$strip>>;
22813
- parallelAgentSessions: z.ZodOptional<z.ZodObject<{
22814
- value: z.ZodOptional<z.ZodNumber>;
22815
- defaultValue: z.ZodOptional<z.ZodNumber>;
22816
- unit: z.ZodEnum<typeof LimitUnits>;
22817
- }, z.core.$strip>>;
22818
- parallelCustomCodeRuns: z.ZodOptional<z.ZodObject<{
22819
- value: z.ZodOptional<z.ZodNumber>;
22820
- defaultValue: z.ZodOptional<z.ZodNumber>;
22821
- unit: z.ZodEnum<typeof LimitUnits>;
22822
- }, z.core.$strip>>;
22823
- ParallelWriteDatabaseRequests: z.ZodOptional<z.ZodObject<{
22824
- value: z.ZodOptional<z.ZodNumber>;
22825
- defaultValue: z.ZodOptional<z.ZodNumber>;
22826
- unit: z.ZodEnum<typeof LimitUnits>;
22827
- }, z.core.$strip>>;
22828
- fileUploadsMbPerHour: z.ZodOptional<z.ZodObject<{
22829
- value: z.ZodOptional<z.ZodNumber>;
22830
- defaultValue: z.ZodOptional<z.ZodNumber>;
22831
- unit: z.ZodEnum<typeof LimitUnits>;
22832
- }, z.core.$strip>>;
22833
- apiRequestsPerSecond: z.ZodOptional<z.ZodObject<{
22834
- value: z.ZodOptional<z.ZodNumber>;
22835
- defaultValue: z.ZodOptional<z.ZodNumber>;
22836
- unit: z.ZodEnum<typeof LimitUnits>;
22837
- }, z.core.$strip>>;
22838
- apiRequestsPerHour: z.ZodOptional<z.ZodObject<{
22839
- value: z.ZodOptional<z.ZodNumber>;
22840
- defaultValue: z.ZodOptional<z.ZodNumber>;
22841
- unit: z.ZodEnum<typeof LimitUnits>;
22842
- }, z.core.$strip>>;
22843
- webhookRequestsPerSecond: z.ZodOptional<z.ZodObject<{
22844
- value: z.ZodOptional<z.ZodNumber>;
22845
- defaultValue: z.ZodOptional<z.ZodNumber>;
22846
- unit: z.ZodEnum<typeof LimitUnits>;
22847
- }, z.core.$strip>>;
22848
- webhookRequestsPerHour: z.ZodOptional<z.ZodObject<{
22849
- value: z.ZodOptional<z.ZodNumber>;
22850
- defaultValue: z.ZodOptional<z.ZodNumber>;
22851
- unit: z.ZodEnum<typeof LimitUnits>;
22852
- }, z.core.$strip>>;
22853
- workspaceElementCreationsPerSecond: z.ZodOptional<z.ZodObject<{
22854
- value: z.ZodOptional<z.ZodNumber>;
22855
- defaultValue: z.ZodOptional<z.ZodNumber>;
22856
- unit: z.ZodEnum<typeof LimitUnits>;
22857
- }, z.core.$strip>>;
22858
- workspaceElementCreationsPerHour: z.ZodOptional<z.ZodObject<{
22859
- value: z.ZodOptional<z.ZodNumber>;
22860
- defaultValue: z.ZodOptional<z.ZodNumber>;
22861
- unit: z.ZodEnum<typeof LimitUnits>;
22862
- }, z.core.$strip>>;
22863
- workspaceElementSearchIndexingPerMinute: z.ZodOptional<z.ZodObject<{
22864
- value: z.ZodOptional<z.ZodNumber>;
22865
- defaultValue: z.ZodOptional<z.ZodNumber>;
22866
- unit: z.ZodEnum<typeof LimitUnits>;
22867
- }, z.core.$strip>>;
22868
- mcpOAuthAuthorizationsPerHour: z.ZodOptional<z.ZodObject<{
22869
- value: z.ZodOptional<z.ZodNumber>;
22870
- defaultValue: z.ZodOptional<z.ZodNumber>;
22871
- unit: z.ZodEnum<typeof LimitUnits>;
22872
- }, z.core.$strip>>;
22873
- mcpOAuthTokensPerHour: z.ZodOptional<z.ZodObject<{
22874
- value: z.ZodOptional<z.ZodNumber>;
22875
- defaultValue: z.ZodOptional<z.ZodNumber>;
22876
- unit: z.ZodEnum<typeof LimitUnits>;
22877
- }, z.core.$strip>>;
22878
- totalNumberOfCustomers: z.ZodOptional<z.ZodObject<{
22879
- value: z.ZodOptional<z.ZodNumber>;
22880
- defaultValue: z.ZodOptional<z.ZodNumber>;
22881
- unit: z.ZodEnum<typeof LimitUnits>;
22882
- }, z.core.$strip>>;
22883
- totalNumberOfConnections: z.ZodOptional<z.ZodObject<{
22884
- value: z.ZodOptional<z.ZodNumber>;
22885
- defaultValue: z.ZodOptional<z.ZodNumber>;
22886
- unit: z.ZodEnum<typeof LimitUnits>;
22887
- }, z.core.$strip>>;
22888
- totalNumberOfWorkspaceElements: z.ZodOptional<z.ZodObject<{
22889
- value: z.ZodOptional<z.ZodNumber>;
22890
- defaultValue: z.ZodOptional<z.ZodNumber>;
22891
- unit: z.ZodEnum<typeof LimitUnits>;
22892
- }, z.core.$strip>>;
22893
- totalNumberOfWorkspaceDatabaseRecords: z.ZodOptional<z.ZodObject<{
23082
+ flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
22894
23083
  value: z.ZodOptional<z.ZodNumber>;
22895
23084
  defaultValue: z.ZodOptional<z.ZodNumber>;
22896
23085
  unit: z.ZodEnum<typeof LimitUnits>;
@@ -22963,6 +23152,9 @@ declare const AccountResponse: z.ZodObject<{
22963
23152
  disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
22964
23153
  useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
22965
23154
  useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
23155
+ autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
23156
+ autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
23157
+ autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
22966
23158
  }, z.core.$strip>>;
22967
23159
  publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
22968
23160
  name: z.ZodString;
@@ -22989,6 +23181,7 @@ declare const AccountResponse: z.ZodObject<{
22989
23181
  parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
22990
23182
  engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
22991
23183
  engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
23184
+ aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
22992
23185
  totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
22993
23186
  totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
22994
23187
  totalNumberOfConnections: AlertType.totalNumberOfConnections;
@@ -23012,12 +23205,37 @@ declare const AccountResponse: z.ZodObject<{
23012
23205
  }, z.core.$strip>>;
23013
23206
  jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23014
23207
  type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
23015
- }, z.core.$strip>>>;
23208
+ isReadOnly: z.ZodOptional<z.ZodBoolean>;
23209
+ }, z.core.$strip>>;
23210
+ hasWorkspaces: z.ZodOptional<z.ZodBoolean>;
23016
23211
  workspaceUser: z.ZodOptional<z.ZodObject<{
23017
23212
  id: z.ZodString;
23018
23213
  workspaceId: z.ZodString;
23019
23214
  userId: z.ZodString;
23020
23215
  role: z.ZodString;
23216
+ onboardingData: z.ZodOptional<z.ZodObject<{
23217
+ productSetup: z.ZodOptional<z.ZodObject<{
23218
+ type: z.ZodOptional<z.ZodEnum<{
23219
+ app: "app";
23220
+ "ai-agent": "ai-agent";
23221
+ }>>;
23222
+ agentType: z.ZodOptional<z.ZodString>;
23223
+ name: z.ZodOptional<z.ZodString>;
23224
+ connectedProductId: z.ZodOptional<z.ZodString>;
23225
+ }, z.core.$strip>>;
23226
+ connections: z.ZodOptional<z.ZodObject<{
23227
+ apps: z.ZodArray<z.ZodObject<{
23228
+ externalAppId: z.ZodOptional<z.ZodString>;
23229
+ name: z.ZodOptional<z.ZodString>;
23230
+ url: z.ZodOptional<z.ZodString>;
23231
+ status: z.ZodOptional<z.ZodEnum<{
23232
+ connected: "connected";
23233
+ skipped: "skipped";
23234
+ pending: "pending";
23235
+ }>>;
23236
+ }, z.core.$strip>>;
23237
+ }, z.core.$strip>>;
23238
+ }, z.core.$loose>>;
23021
23239
  testCustomerId: z.ZodString;
23022
23240
  }, z.core.$strip>>;
23023
23241
  engineTestUser: z.ZodOptional<z.ZodObject<{
@@ -23213,6 +23431,11 @@ declare const AccountResponse: z.ZodObject<{
23213
23431
  defaultValue: z.ZodOptional<z.ZodNumber>;
23214
23432
  unit: z.ZodEnum<typeof LimitUnits>;
23215
23433
  }, z.core.$strip>>;
23434
+ flowRunsQueueSizePerConnection: z.ZodOptional<z.ZodObject<{
23435
+ value: z.ZodOptional<z.ZodNumber>;
23436
+ defaultValue: z.ZodOptional<z.ZodNumber>;
23437
+ unit: z.ZodEnum<typeof LimitUnits>;
23438
+ }, z.core.$strip>>;
23216
23439
  instantTasksQueueSize: z.ZodOptional<z.ZodObject<{
23217
23440
  value: z.ZodOptional<z.ZodNumber>;
23218
23441
  defaultValue: z.ZodOptional<z.ZodNumber>;
@@ -23281,6 +23504,9 @@ declare const AccountResponse: z.ZodObject<{
23281
23504
  disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
23282
23505
  useMembraneUniverse: z.ZodOptional<z.ZodBoolean>;
23283
23506
  useRemoteRepository: z.ZodOptional<z.ZodBoolean>;
23507
+ autoGenerateIntegrationsFromConnectors: z.ZodOptional<z.ZodBoolean>;
23508
+ autoGenerateIntegrationsFromExternalApps: z.ZodOptional<z.ZodBoolean>;
23509
+ autoGenerateIntegrationsFromWebSearch: z.ZodOptional<z.ZodBoolean>;
23284
23510
  }, z.core.$strip>>;
23285
23511
  alertDeliverySettings: z.ZodOptional<z.ZodObject<{
23286
23512
  alertTypes: z.ZodOptional<z.ZodRecord<z.ZodEnum<{
@@ -23300,6 +23526,7 @@ declare const AccountResponse: z.ZodObject<{
23300
23526
  parallelApiRequestsPerCustomer: AlertType.parallelApiRequestsPerCustomer;
23301
23527
  engineCreditsExhaustionProjected: AlertType.engineCreditsExhaustionProjected;
23302
23528
  engineCreditsExhaustionActual: AlertType.engineCreditsExhaustionActual;
23529
+ aiCreditsDebtAccumulated: AlertType.aiCreditsDebtAccumulated;
23303
23530
  totalNumberOfDatabaseEntitiesPerCustomer: AlertType.totalNumberOfDatabaseEntitiesPerCustomer;
23304
23531
  totalNumberOfCustomers: AlertType.totalNumberOfCustomers;
23305
23532
  totalNumberOfConnections: AlertType.totalNumberOfConnections;
@@ -24093,6 +24320,49 @@ declare function parseDate(value: any): Date | undefined;
24093
24320
  declare function isBusinessDay(date: Date): boolean;
24094
24321
  declare function getBusinessDaysBetween(startDate: Date, endDate: Date): Set<string>;
24095
24322
 
24323
+ declare const AI_GATEWAY_SUPPORTED_MODELS: readonly [{
24324
+ readonly id: "anthropic/claude-sonnet-4.6";
24325
+ readonly name: "Claude Sonnet 4.6";
24326
+ }, {
24327
+ readonly id: "anthropic/claude-opus-4.6";
24328
+ readonly name: "Claude Opus 4.6";
24329
+ }, {
24330
+ readonly id: "anthropic/claude-sonnet-4.5";
24331
+ readonly name: "Claude Sonnet 4.5";
24332
+ }, {
24333
+ readonly id: "anthropic/claude-opus-4.5";
24334
+ readonly name: "Claude Opus 4.5";
24335
+ }, {
24336
+ readonly id: "openai/gpt-5.2";
24337
+ readonly name: "GPT-5.2";
24338
+ }, {
24339
+ readonly id: "openai/gpt-5-nano";
24340
+ readonly name: "GPT-5 Nano";
24341
+ }, {
24342
+ readonly id: "google/gemini-3-pro-preview";
24343
+ readonly name: "Gemini 3 Pro";
24344
+ }, {
24345
+ readonly id: "moonshotai/kimi-k2.5";
24346
+ readonly name: "Kimi K2.5";
24347
+ }];
24348
+ declare const AI_GATEWAY_SUPPORTED_MODEL_IDS: [(typeof AI_GATEWAY_SUPPORTED_MODELS)[number]["id"], ...(typeof AI_GATEWAY_SUPPORTED_MODELS)[number]["id"][]];
24349
+ declare const AIGatewaySupportedModelIdSchema: z.ZodEnum<{
24350
+ "anthropic/claude-sonnet-4.6": "anthropic/claude-sonnet-4.6";
24351
+ "anthropic/claude-opus-4.6": "anthropic/claude-opus-4.6";
24352
+ "anthropic/claude-sonnet-4.5": "anthropic/claude-sonnet-4.5";
24353
+ "anthropic/claude-opus-4.5": "anthropic/claude-opus-4.5";
24354
+ "openai/gpt-5.2": "openai/gpt-5.2";
24355
+ "openai/gpt-5-nano": "openai/gpt-5-nano";
24356
+ "google/gemini-3-pro-preview": "google/gemini-3-pro-preview";
24357
+ "moonshotai/kimi-k2.5": "moonshotai/kimi-k2.5";
24358
+ }>;
24359
+ type AIGatewaySupportedModelId = z.infer<typeof AIGatewaySupportedModelIdSchema>;
24360
+ declare const DEFAULT_AI_GATEWAY_MODEL_ID: AIGatewaySupportedModelId;
24361
+ declare const AI_GATEWAY_PROVIDER_MODELS: Readonly<Record<AIGatewaySupportedModelId, {
24362
+ name: string;
24363
+ }>>;
24364
+ declare function isAIGatewaySupportedModelId(modelId: string): modelId is AIGatewaySupportedModelId;
24365
+
24096
24366
  declare const StatsFilterQuery: z.ZodObject<{
24097
24367
  tenantId: z.ZodOptional<z.ZodString>;
24098
24368
  integrationId: z.ZodOptional<z.ZodString>;
@@ -24256,9 +24526,11 @@ declare enum WebhookTypeEnum {
24256
24526
  CONNECTOR_VERSION_PUBLISHED = "connector-version-published",
24257
24527
  AGENT_SESSION_FINISHED = "agent-session-finished",
24258
24528
  SEND_ALERT_EMAIL = "send-alert-email",
24259
- PUBLIC_PACKAGE_ACTION_RUN_FAILED = "public-package-action-run-failed"
24529
+ PUBLIC_PACKAGE_ACTION_RUN_FAILED = "public-package-action-run-failed",
24530
+ BETTER_AUTH_SIGNUP_VERIFY = "better-auth-signup-verify",
24531
+ BETTER_AUTH_RESET_PASSWORD = "better-auth-reset-password"
24260
24532
  }
24261
- type WebhookType = WebhookTypeEnum.USER_INVITED_TO_ORG | WebhookTypeEnum.ORG_ACCESS_REQUESTED | WebhookTypeEnum.ORG_CREATED | WebhookTypeEnum.TASK_CREATED | WebhookTypeEnum.TASK_UPDATED | WebhookTypeEnum.TASK_ACTIVITY_CREATED | WebhookTypeEnum.CONNECTOR_VERSION_PUBLISHED | WebhookTypeEnum.AGENT_SESSION_FINISHED | WebhookTypeEnum.SEND_ALERT_EMAIL | WebhookTypeEnum.PUBLIC_PACKAGE_ACTION_RUN_FAILED;
24533
+ type WebhookType = WebhookTypeEnum.USER_INVITED_TO_ORG | WebhookTypeEnum.ORG_ACCESS_REQUESTED | WebhookTypeEnum.ORG_CREATED | WebhookTypeEnum.TASK_CREATED | WebhookTypeEnum.TASK_UPDATED | WebhookTypeEnum.TASK_ACTIVITY_CREATED | WebhookTypeEnum.CONNECTOR_VERSION_PUBLISHED | WebhookTypeEnum.AGENT_SESSION_FINISHED | WebhookTypeEnum.SEND_ALERT_EMAIL | WebhookTypeEnum.PUBLIC_PACKAGE_ACTION_RUN_FAILED | WebhookTypeEnum.BETTER_AUTH_SIGNUP_VERIFY | WebhookTypeEnum.BETTER_AUTH_RESET_PASSWORD;
24262
24534
  interface Webhook {
24263
24535
  type: WebhookType;
24264
24536
  url: string;
@@ -24501,6 +24773,8 @@ interface HandyScenarioTemplateElementApi {
24501
24773
  } & Record<string, any>;
24502
24774
  }
24503
24775
 
24776
+ declare function formatSessionCost(cost?: number | null): string;
24777
+
24504
24778
  declare const SessionCredentials: z.ZodObject<{
24505
24779
  accessKeyId: z.ZodString;
24506
24780
  secretAccessKey: z.ZodString;
@@ -24892,11 +25166,16 @@ declare const ClientTokenListResponse: z.ZodObject<{
24892
25166
  type ClientTokenListResponse = z.infer<typeof ClientTokenListResponse>;
24893
25167
 
24894
25168
  declare const MEMBRANE_CLI_CLIENT_ID: "membrane-cli";
24895
- declare const OAUTH_SCOPE_PLATFORM_USER: "platform-user";
24896
- declare const OAUTH_SCOPE_TENANT: "tenant";
24897
- declare const OAUTH_SCOPES: readonly ["platform-user", "tenant"];
24898
- type OAuthScope = (typeof OAUTH_SCOPES)[number];
24899
- declare function selectHighestPriorityScope(scopes: string[]): string | undefined;
25169
+ declare const OAUTH_TOKEN_TYPE_PLATFORM_USER: "platform-user";
25170
+ declare const OAUTH_TOKEN_TYPE_TENANT: "tenant";
25171
+ declare const OAUTH_TOKEN_TYPE_CONNECTION: "connection";
25172
+ declare const OAUTH_TOKEN_TYPES: readonly ["platform-user", "tenant", "connection"];
25173
+ type OAuthTokenType = (typeof OAUTH_TOKEN_TYPES)[number];
25174
+ interface AuthContextSettings {
25175
+ defaultWorkspaceKey?: string;
25176
+ defaultTenantKey?: string;
25177
+ connectionId?: string;
25178
+ }
24900
25179
  declare const OAuthTokenResponse: z.ZodObject<{
24901
25180
  access_token: z.ZodString;
24902
25181
  token_type: z.ZodString;
@@ -24905,6 +25184,7 @@ declare const OAuthTokenResponse: z.ZodObject<{
24905
25184
  default_workspace_key: z.ZodOptional<z.ZodString>;
24906
25185
  default_tenant_key: z.ZodOptional<z.ZodString>;
24907
25186
  email: z.ZodOptional<z.ZodString>;
25187
+ org_id: z.ZodOptional<z.ZodString>;
24908
25188
  }, z.core.$strip>;
24909
25189
  type OAuthTokenResponse = z.infer<typeof OAuthTokenResponse>;
24910
25190
 
@@ -24980,6 +25260,24 @@ declare const MembraneInstance: z.ZodObject<{
24980
25260
  lastReportedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
24981
25261
  activeTenants: z.ZodOptional<z.ZodNumber>;
24982
25262
  billableTenants: z.ZodOptional<z.ZodNumber>;
25263
+ }, z.core.$strip>;
25264
+ type MembraneInstanceDto = z.infer<typeof MembraneInstance>;
25265
+ declare const MembraneInstanceAdmin: z.ZodObject<{
25266
+ id: z.ZodString;
25267
+ name: z.ZodString;
25268
+ apiBaseUri: z.ZodString;
25269
+ consoleBaseUri: z.ZodOptional<z.ZodString>;
25270
+ orgId: z.ZodOptional<z.ZodString>;
25271
+ type: z.ZodOptional<z.ZodString>;
25272
+ engineVersion: z.ZodOptional<z.ZodString>;
25273
+ commitSHA: z.ZodOptional<z.ZodString>;
25274
+ buildDate: z.ZodOptional<z.ZodString>;
25275
+ cloudProvider: z.ZodOptional<z.ZodString>;
25276
+ lastReportedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
25277
+ activeTenants: z.ZodOptional<z.ZodNumber>;
25278
+ billableTenants: z.ZodOptional<z.ZodNumber>;
25279
+ orgName: z.ZodOptional<z.ZodString>;
25280
+ workspaceCount: z.ZodOptional<z.ZodNumber>;
24983
25281
  clusterName: z.ZodOptional<z.ZodString>;
24984
25282
  argoCdUrl: z.ZodOptional<z.ZodURL>;
24985
25283
  grafanaUrl: z.ZodOptional<z.ZodURL>;
@@ -24989,7 +25287,7 @@ declare const MembraneInstance: z.ZodObject<{
24989
25287
  awsAccountName: z.ZodOptional<z.ZodString>;
24990
25288
  awsSsoUrl: z.ZodOptional<z.ZodURL>;
24991
25289
  }, z.core.$strip>;
24992
- type MembraneInstanceDto = z.infer<typeof MembraneInstance>;
25290
+ type MembraneInstanceAdmin = z.infer<typeof MembraneInstanceAdmin>;
24993
25291
  declare const CreateMembraneInstanceRequest: z.ZodObject<{
24994
25292
  name: z.ZodString;
24995
25293
  apiBaseUri: z.ZodString;
@@ -25033,44 +25331,10 @@ declare const ListMembraneInstancesResponse: z.ZodObject<{
25033
25331
  lastReportedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
25034
25332
  activeTenants: z.ZodOptional<z.ZodNumber>;
25035
25333
  billableTenants: z.ZodOptional<z.ZodNumber>;
25036
- clusterName: z.ZodOptional<z.ZodString>;
25037
- argoCdUrl: z.ZodOptional<z.ZodURL>;
25038
- grafanaUrl: z.ZodOptional<z.ZodURL>;
25039
- mongoAtlasUrl: z.ZodOptional<z.ZodURL>;
25040
- helmBranch: z.ZodOptional<z.ZodString>;
25041
- helmValuesPath: z.ZodOptional<z.ZodURL>;
25042
- awsAccountName: z.ZodOptional<z.ZodString>;
25043
- awsSsoUrl: z.ZodOptional<z.ZodURL>;
25044
25334
  }, z.core.$strip>>;
25045
25335
  cursor: z.ZodOptional<z.ZodString>;
25046
25336
  }, z.core.$strip>;
25047
25337
  type ListMembraneInstancesResponse = z.infer<typeof ListMembraneInstancesResponse>;
25048
- declare const MembraneInstanceAdmin: z.ZodObject<{
25049
- id: z.ZodString;
25050
- name: z.ZodString;
25051
- apiBaseUri: z.ZodString;
25052
- consoleBaseUri: z.ZodOptional<z.ZodString>;
25053
- orgId: z.ZodOptional<z.ZodString>;
25054
- type: z.ZodOptional<z.ZodString>;
25055
- engineVersion: z.ZodOptional<z.ZodString>;
25056
- commitSHA: z.ZodOptional<z.ZodString>;
25057
- buildDate: z.ZodOptional<z.ZodString>;
25058
- cloudProvider: z.ZodOptional<z.ZodString>;
25059
- lastReportedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
25060
- activeTenants: z.ZodOptional<z.ZodNumber>;
25061
- billableTenants: z.ZodOptional<z.ZodNumber>;
25062
- clusterName: z.ZodOptional<z.ZodString>;
25063
- argoCdUrl: z.ZodOptional<z.ZodURL>;
25064
- grafanaUrl: z.ZodOptional<z.ZodURL>;
25065
- mongoAtlasUrl: z.ZodOptional<z.ZodURL>;
25066
- helmBranch: z.ZodOptional<z.ZodString>;
25067
- helmValuesPath: z.ZodOptional<z.ZodURL>;
25068
- awsAccountName: z.ZodOptional<z.ZodString>;
25069
- awsSsoUrl: z.ZodOptional<z.ZodURL>;
25070
- orgName: z.ZodOptional<z.ZodString>;
25071
- workspaceCount: z.ZodOptional<z.ZodNumber>;
25072
- }, z.core.$strip>;
25073
- type MembraneInstanceAdmin = z.infer<typeof MembraneInstanceAdmin>;
25074
25338
 
25075
25339
  declare const OrgInstanceType: z.ZodEnum<{
25076
25340
  "membrane-hosted": "membrane-hosted";
@@ -25179,5 +25443,5 @@ declare class MembraneClient extends MembraneApiClient {
25179
25443
  connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
25180
25444
  }
25181
25445
 
25182
- export { ACTIONS, AGENTIC_CONNECTION_REQUEST_SCREEN_PATH, ALERT_DELIVERY_METHODS, ALERT_TYPE_CATEGORIES, AccessDeniedError, AccountResponse, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionRunsStatsQuery, ActionType, ActionsAccessor, ActivityLogRecord, ActivityStatsQuery, AgentName, AgentSession, AgentSessionAttachment, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, AiAgentAudience, AiAgentParameters, AiAgentType, Alert, AlertCategory, AlertDeliverySettingsSchema, AlertSchema, AlertSeverity, AlertStatus, AlertType, AlertTypeDeliverySettingsSchema, And, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, AsyncRequestStatus, AsyncRequestTriggerResponse, AuthContextPermissionsSchema, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnectedProduct, BaseConnection, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BaseOrgUser, BasePackage, BaseScreen, BaseWorkspaceElement, CLIENT_TOKEN_GRANT_TYPES, CONNECTION_REQUEST_ID_PARAM, CONNECTION_REQUEST_SCREEN_PATH, 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, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CONSOLE_ACCOUNT_API_TOKEN_PATH, CheckpointApiResponse, CheckpointDiffOperationSchema, CheckpointDiffResponseSchema, ClientToken, ClientTokenGrantType, ClientTokenListResponse, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectPayload, ConnectUIOptions, ConnectedProductApiResponse, ConnectedProductAudience, ConnectedProductType, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionClientAction, ConnectionDataCollectionAccessor, ConnectionEditableProperties, ConnectionError, ConnectionErrorKey, ConnectionExportProperties, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionOperationRunInput, ConnectionOperationRunResponse, ConnectionProxy, ConnectionProxyRequest, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionTestResponse, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthSuccessRecord, ConnectorAuthWithFunctions, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorExportProperties, ConnectorFileUpdateType, ConnectorFunctionSpecs, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorOption, ConnectorOptions, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateAlert, CreateClientTokenRequest, CreateClientTokenResponse, CreateConnectedProductRequest, CreateConnectionRequest, CreateConnectionRequestPayload, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateMembraneInstanceRequest, CreateOrgInvitationRequest, CreateOrgRequest, CreateOrgUserRequest, CreateOrgWorkspaceRequest, CreatePackageRequest, CreateScreenRequest, CreateSelfHostingTokenRequest, CreateSelfHostingTokenResponse, CreateWorkspaceRequest, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_ALERT_DELIVERY_SETTINGS, DEFAULT_ALERT_TYPE_DELIVERY_SETTINGS, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaBase, DataBuilderFormulaCase, DataBuilderFormulaConcat, DataBuilderFormulaCopy, DataBuilderFormulaExtractDate, DataBuilderFormulaExtractTime, DataBuilderFormulaFindAppRecordId, DataBuilderFormulaFindExternalRecordId, DataBuilderFormulaFirstName, DataBuilderFormulaIterate, DataBuilderFormulaLastName, DataBuilderFormulaLookup, DataBuilderFormulaMap, DataBuilderFormulaPlain, DataBuilderFormulaRecord, DataBuilderFormulaTpl, DataBuilderFormulaType, DataBuilderFormulaVar, 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, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTableLayer, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSchemaRef, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DbBackedCountsSchema, DependencyError, DomainFromEmail, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineCreditsProjectionResponse, EngineWorkspaceSettingsSchema, EnsureConnectionRequest, ErrorData, ErrorDataSchema, ErrorType, Eval, ExternalApiLogApiResponse, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionRunLogsQuery, FindActionRunLogsResponse, FindActionsQuery, FindAlertsQuery, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindConnectedProductsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTableInstanceLinksQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindExternalEventPullsQuery, FindFieldMappingInstancesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindOrgWorkspacesQuery, FindOrgsQuery, FindPackagesQuery, FindScreensQuery, FirstNotEmpty, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeState, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowRunsStatsQuery, FlowsAccessor, Formula, FormulaFormula, FullOrgUser, FullPlatformUser, FunctionDefinition, FunctionType, GenerateOptionsRequest, GenerateWorkspaceAccessTokenRequest, GenerateWorkspaceAccessTokenResponse, GeneratedConnectorOption, GenericFunctionDefinition, GetWorkspaceQuery, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HUB_INSTANCE_ID, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhookApiResponse, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationEditableProperties, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLayerStatsQuery, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationOptionConfig, IntegrationOptions, IntegrationSpecificElementSelector, IntegrationsAccessor, IntentProperties, InternalError, InvalidLocatorError, JavascriptFunction, JsonataFormula, LimitUnits, ListActionInstancesForConnectionQuery, ListAppEventLogRecordsQuery, ListDataSourceInstancesForConnectionQuery, ListExternalApiLogsQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListIncomingWebhooksQuery, ListMembraneInstancesQuery, ListMembraneInstancesResponse, ListOrgWorkspacesQuery, ListOrgWorkspacesResponse, ListPublicConnectorsQuery, ListPublicPackagesQuery, ListWorkspacesQuery, LogRecordType, MEMBRANE_CLI_CLIENT_ID, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MEMBRANE_SESSION_ID_HEADER, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneElementLayer, MembraneError, MembraneInstance, MembraneInstanceAdmin, MergeObjects, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OAUTH_SCOPES, OAUTH_SCOPE_PLATFORM_USER, OAUTH_SCOPE_TENANT, OAuthTokenResponse, OpenRouterNotConfiguredError, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, Or, Org, OrgInstance, OrgInstanceType, OrgInstanceWorkspace, OrgInvitation, OrgLimits, OrgLimitsType, OrgPlan, OrgUserRole, OrgUserStatus, OrgWorkspace, OrgWorkspaceUpdateRequest, OrgWorkspaceUser, PACKAGE_VERSION_DEVELOPMENT, PACKAGE_VERSION_LATEST, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackageVersionData, PackageVersionListItem, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PatchAgentSessionSchema, PatchConnectionRequestPayload, PendingQueueCountSchema, PendingTasksSummarySchema, PlatformUser, RATE_LIMITS, REFERENCE_ELEMENT_TYPE_SELF, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RotateOrgWorkspaceSecretResponse, RunActionRequest, RunFieldMappingRequest, RunFieldMappingResponse, RunFlowApiRequest, SYSTEM_FIELDS, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenSelector, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, SelfHostingToken, SessionCredentials, SessionParameters, StatsFilterQuery, TenantLayerElement, TenantSelfResponse, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectedProductRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingInstanceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateMembraneInstanceRequest, UpdateOrgInvitationRequest, UpdateOrgRequest, UpdateOrgUserRequest, UpdatePackageRequest, UpdateScreenRequest, UpdateSelfHostingTokenRequest, UpdateWorkspaceLimitsRequest, UpdateWorkspaceRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, ValidateSelfHostingTokenRequest, ValidateSelfHostingTokenResponse, WORKSPACE_DATABASE_RECORD_COLLECTIONS, WORKSPACE_ELEMENTS_STATS_COLLECTIONS, WORKSPACE_ELEMENT_COLLECTIONS, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, Workspace, WorkspaceAiCreditLimits, WorkspaceEditableFields, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceElementsStatsSchema, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspacePublicKey, WorkspaceSettingsSchema, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WritablePackageVersionData, WriteableConnectorFields, WriteableConnectorOption, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, addUndefinedWriteableProperties, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createPaginationResponseSchema, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAlertCategoryDisplayName, getAlertDeliveryMethodLabel, getAlertTypeDisplayName, getAlertTypesByCategory, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getConnectionRequestUrl, getConnectorSpecPath, getConnectorVersionPath, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getEditablePathsForElementType, getEditablePathsFromSchema, getEffectiveConnectorOption, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldMeta, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaDescription, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isHubInstanceId, isHubWorkspace, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isSelfHostedInstance, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, selectHighestPriorityScope, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, validateFunctionDefinitions, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion, zodDateCoercion };
25183
- export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, AlertDeliveryMethod, AlertDeliverySettings, AlertTypeDeliverySettings, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, AsyncRequestStatusResponse, AuthContextPermissions, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, CheckpointDiffOperation, CheckpointDiffResponse, ConfigurationStateResult, ConnectOptions, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthType, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorExport, ConnectorFunctionSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorOperationHandler, ConnectorOperationMethod, ConnectorVersionExport, CopilotActivityNotificationData, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateUserRequest, Customer, CustomerRateLimitAlerts, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocator, DataRecord, DataSource, DataSourceInstanceSelector, DataSourceSelector, DbBackedCounts, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineCreditsProjection, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FilterFieldMeta, FindDataLinkQuery, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventSubscriptionsQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IneligibilityReason, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, MembraneInstanceDto, OAuthScope, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, OrgFeatureFlags, OrgPermissions, OrgUser, Package, PatchAgentSession, PatchSchemaOption, PendingQueueCount, PendingTasksSummary, PlatformUserPermissions, PullLatestRecordsEventOutput, RateLimitAlerts, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, Self, SessionStatus, TenantPermissions, TestAlerts, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageAlerts, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, WorkerTypeFilter, WorkspaceElementCalculateStateResult, WorkspaceElementChange, WorkspaceElementChangeInfo, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceElementsStats, WorkspaceExport, WorkspaceExportComparison, WorkspaceExportComparisonOptions, WorkspaceExportComparisonResult, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspacePermissions, WorkspaceSettings, WorkspaceSizeAlerts, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
25446
+ export { ACTIONS, AGENTIC_CONNECTION_REQUEST_SCREEN_PATH, AIGatewaySupportedModelIdSchema, AI_GATEWAY_PROVIDER_MODELS, AI_GATEWAY_SUPPORTED_MODELS, AI_GATEWAY_SUPPORTED_MODEL_IDS, ALERT_DELIVERY_METHODS, ALERT_TYPE_CATEGORIES, AccessDeniedError, AccountResponse, ActApiDispatch, ActRequest, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionRunsStatsQuery, ActionType, ActionsAccessor, ActivityLogRecord, ActivityStatsQuery, AgentName, AgentSession, AgentSessionAttachment, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, AiAgentAudience, AiAgentParameters, AiAgentType, Alert, AlertCategory, AlertDeliverySettingsSchema, AlertSchema, AlertSeverity, AlertStatus, AlertType, AlertTypeDeliverySettingsSchema, And, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, AsyncRequestStatus, AsyncRequestTriggerResponse, AuthContextPermissionsSchema, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnectedProduct, BaseConnection, BaseConnectionAttemptLog, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BaseOrgUser, BasePackage, BaseScreen, BaseWorkspaceElement, CLIENT_TOKEN_GRANT_TYPES, CONNECTION_REQUEST_ID_PARAM, CONNECTION_REQUEST_SCREEN_PATH, 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, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CONSOLE_ACCOUNT_API_TOKEN_PATH, CheckpointApiResponse, CheckpointDiffOperationSchema, CheckpointDiffResponseSchema, ClientToken, ClientTokenGrantType, ClientTokenListResponse, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectPayload, ConnectUIOptions, ConnectedProductApiResponse, ConnectedProductAudience, ConnectedProductType, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionAttemptLogApiResponse, ConnectionClientAction, ConnectionDataCollectionAccessor, ConnectionEditableProperties, ConnectionError, ConnectionErrorKey, ConnectionExportProperties, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionOperationRunInput, ConnectionOperationRunResponse, ConnectionProxy, ConnectionProxyRequest, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionTestResponse, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthSuccessRecord, ConnectorAuthWithFunctions, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorExportProperties, ConnectorFileUpdateType, ConnectorFunctionSpecs, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorOption, ConnectorOptions, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateAlert, CreateClientTokenRequest, CreateClientTokenResponse, CreateConnectedProductRequest, CreateConnectionRequest, CreateConnectionRequestPayload, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateMembraneInstanceRequest, CreateOrgInvitationRequest, CreateOrgRequest, CreateOrgUserRequest, CreateOrgWorkspaceRequest, CreatePackageRequest, CreateScreenRequest, CreateSelfHostingTokenRequest, CreateSelfHostingTokenResponse, CreateWorkspaceRequest, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_AI_GATEWAY_MODEL_ID, DEFAULT_ALERT_DELIVERY_SETTINGS, DEFAULT_ALERT_TYPE_DELIVERY_SETTINGS, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaBase, DataBuilderFormulaCase, DataBuilderFormulaConcat, DataBuilderFormulaCopy, DataBuilderFormulaExtractDate, DataBuilderFormulaExtractTime, DataBuilderFormulaFindAppRecordId, DataBuilderFormulaFindExternalRecordId, DataBuilderFormulaFirstName, DataBuilderFormulaIterate, DataBuilderFormulaLastName, DataBuilderFormulaLookup, DataBuilderFormulaMap, DataBuilderFormulaPlain, DataBuilderFormulaRecord, DataBuilderFormulaTpl, DataBuilderFormulaType, DataBuilderFormulaVar, 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, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTableLayer, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSchemaRef, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DbBackedCountsSchema, DependencyError, DomainFromEmail, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineCreditsProjectionResponse, EngineWorkspaceSettingsSchema, EnsureConnectionRequest, ErrorData, ErrorDataSchema, ErrorType, Eval, ExternalApiLogApiResponse, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionRunLogsQuery, FindActionRunLogsResponse, FindActionsQuery, FindAlertsQuery, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindConnectedProductsQuery, FindConnectionAttemptLogsQuery, FindConnectionAttemptLogsResponse, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTableInstanceLinksQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindExternalEventPullsQuery, FindFieldMappingInstancesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindOrgWorkspacesQuery, FindOrgsQuery, FindPackagesQuery, FindScreensQuery, FirstNotEmpty, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeState, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowRunsStatsQuery, FlowsAccessor, Formula, FormulaFormula, FullOrgUser, FullPlatformUser, FunctionDefinition, FunctionType, GenerateOptionsRequest, GenerateWorkspaceAccessTokenRequest, GenerateWorkspaceAccessTokenResponse, GeneratedConnectorOption, GenericFunctionDefinition, GetWorkspaceQuery, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HUB_INSTANCE_ID, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhookApiResponse, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationEditableProperties, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLayerStatsQuery, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationListItem, IntegrationOptionConfig, IntegrationOptions, IntegrationSpecificElementSelector, IntegrationsAccessor, IntentProperties, InternalError, InvalidLocatorError, JavascriptFunction, JsonataFormula, LimitUnits, ListActionInstancesForConnectionQuery, ListAppEventLogRecordsQuery, ListDataSourceInstancesForConnectionQuery, ListExternalApiLogsQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListIncomingWebhooksQuery, ListMembraneInstancesQuery, ListMembraneInstancesResponse, ListOrgWorkspacesQuery, ListOrgWorkspacesResponse, ListPublicConnectorsQuery, ListPublicPackagesQuery, ListWorkspacesQuery, LogRecordType, MEMBRANE_CLI_CLIENT_ID, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MEMBRANE_SESSION_ID_HEADER, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneCredentials, MembraneElementLayer, MembraneError, MembraneInstance, MembraneInstanceAdmin, MergeObjects, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OAUTH_TOKEN_TYPES, OAUTH_TOKEN_TYPE_CONNECTION, OAUTH_TOKEN_TYPE_PLATFORM_USER, OAUTH_TOKEN_TYPE_TENANT, OAuthTokenResponse, OpenRouterNotConfiguredError, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, Or, Org, OrgInstance, OrgInstanceType, OrgInstanceWorkspace, OrgInvitation, OrgLimits, OrgLimitsType, OrgPlan, OrgUserRole, OrgUserStatus, OrgWorkspace, OrgWorkspaceUpdateRequest, OrgWorkspaceUser, PACKAGE_VERSION_DEVELOPMENT, PACKAGE_VERSION_LATEST, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackageVersionData, PackageVersionListItem, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PatchAgentSessionSchema, PatchConnectionRequestPayload, PatchUserWorkspaceSettings, PendingQueueCountSchema, PendingTasksSummarySchema, PlatformUser, RATE_LIMITS, REFERENCE_ELEMENT_TYPE_SELF, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RotateOrgWorkspaceSecretResponse, RunActionRequest, RunFieldMappingRequest, RunFieldMappingResponse, RunFlowApiRequest, SYSTEM_FIELDS, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenSelector, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, SelfHostingToken, SessionCredentials, SessionParameters, StatsFilterQuery, TenantLayerElement, TenantSelfResponse, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectedProductRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingInstanceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateMembraneInstanceRequest, UpdateOrgInvitationRequest, UpdateOrgRequest, UpdateOrgUserRequest, UpdatePackageRequest, UpdateScreenRequest, UpdateSelfHostingTokenRequest, UpdateWorkspaceLimitsRequest, UpdateWorkspaceRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, ValidateSelfHostingTokenRequest, ValidateSelfHostingTokenResponse, WORKSPACE_DATABASE_RECORD_COLLECTIONS, WORKSPACE_ELEMENTS_STATS_COLLECTIONS, WORKSPACE_ELEMENT_COLLECTIONS, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, Workspace, WorkspaceAiCreditLimits, WorkspaceEditableFields, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceElementsStatsSchema, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspaceOnboardingData, WorkspacePublicKey, WorkspaceSettingsSchema, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WritablePackageVersionData, WriteableConnectorFields, WriteableConnectorOption, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, addUndefinedWriteableProperties, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createPaginationResponseSchema, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, formatSessionCost, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAlertCategoryDisplayName, getAlertDeliveryMethodLabel, getAlertTypeDisplayName, getAlertTypesByCategory, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getConnectionRequestUrl, getConnectorSpecPath, getConnectorVersionPath, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getEditablePathsForElementType, getEditablePathsFromSchema, getEffectiveConnectorOption, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldMeta, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaDescription, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isAIGatewaySupportedModelId, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isHubInstanceId, isHubWorkspace, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isSelfHostedInstance, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, validateFunctionDefinitions, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion, zodDateCoercion };
25447
+ export type { AIGatewaySupportedModelId, Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, AlertDeliveryMethod, AlertDeliverySettings, AlertTypeDeliverySettings, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, AsyncRequestStatusResponse, AuthContextPermissions, AuthContextSettings, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, CheckpointDiffOperation, CheckpointDiffResponse, ConfigurationStateResult, ConnectOptions, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthType, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorExport, ConnectorFunctionSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorOperationHandler, ConnectorOperationMethod, ConnectorVersionExport, CopilotActivityNotificationData, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateUserRequest, Customer, CustomerRateLimitAlerts, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocator, DataRecord, DataSource, DataSourceInstanceSelector, DataSourceSelector, DbBackedCounts, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineCreditsProjection, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FilterFieldMeta, FindDataLinkQuery, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventSubscriptionsQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IneligibilityReason, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, MembraneInstanceDto, OAuthTokenType, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, OrgFeatureFlags, OrgPermissions, OrgUser, Package, PatchAgentSession, PatchSchemaOption, PendingQueueCount, PendingTasksSummary, PlatformUserPermissions, PullLatestRecordsEventOutput, RateLimitAlerts, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, Self, SessionStatus, TenantPermissions, TestAlerts, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageAlerts, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, WorkerTypeFilter, WorkspaceElementCalculateStateResult, WorkspaceElementChange, WorkspaceElementChangeInfo, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceElementsStats, WorkspaceExport, WorkspaceExportComparison, WorkspaceExportComparisonOptions, WorkspaceExportComparisonResult, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspacePermissions, WorkspaceSettings, WorkspaceSizeAlerts, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };