@membranehq/sdk 0.8.5 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.d.ts +118 -3
- package/dist/bundle.js +21 -0
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/connections-accessors.d.ts +2 -0
- package/dist/dts/accessors/integrations-accessors.d.ts +2 -0
- package/dist/dts/agent/index.d.ts +2 -0
- package/dist/dts/agent/mcp.d.ts +6 -0
- package/dist/dts/agent/session.d.ts +4 -1
- package/dist/dts/api-version.generated.d.ts +10 -0
- package/dist/dts/apps/types.d.ts +371 -0
- package/dist/dts/errors/index.d.ts +5 -1
- package/dist/dts/index.browser.d.ts +2 -1
- package/dist/dts/orgs/types.d.ts +341 -3
- package/dist/dts/platform-users.d.ts +24 -0
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +4 -0
- package/dist/dts/workspace-elements/api/connections-api.d.ts +6 -0
- package/dist/dts/workspace-elements/api/data-link-table-instances-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/data-source-instances-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +4 -0
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +4 -0
- package/dist/dts/workspace-elements/api/flows-api.d.ts +94 -2
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +2 -0
- package/dist/dts/workspace-elements/base/action-run-log-records/types.d.ts +2 -0
- package/dist/dts/workspace-elements/base/connections/types.d.ts +2 -0
- package/dist/dts/workspace-elements/compare.d.ts +16 -0
- package/dist/dts/workspace-elements/compare.test.d.ts +1 -0
- package/dist/dts/workspace-elements/index.d.ts +1 -0
- package/dist/dts/workspaces/index.d.ts +1 -0
- package/dist/dts/workspaces/schemas.d.ts +24 -0
- package/dist/dts/workspaces/types.d.ts +3 -8
- package/dist/index.browser.d.mts +951 -44
- package/dist/index.browser.d.ts +951 -44
- package/dist/index.browser.js +293 -9
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +280 -10
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +951 -44
- package/dist/index.node.d.ts +951 -44
- package/dist/index.node.js +293 -9
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +280 -10
- package/dist/index.node.mjs.map +1 -1
- package/package.json +2 -1
package/dist/index.node.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { z } from 'zod';
|
|
1
|
+
import z$1, { z } from 'zod';
|
|
2
2
|
import https from 'https';
|
|
3
3
|
import * as _axios from 'axios';
|
|
4
4
|
import { AxiosRequestConfig } from 'axios';
|
|
@@ -16,7 +16,8 @@ declare enum ErrorType {
|
|
|
16
16
|
ACTION_RUN = "action_run",
|
|
17
17
|
ACTION_INSTANCE_SETUP = "action_instance_setup",
|
|
18
18
|
UNIT_RUN = "unit_run",
|
|
19
|
-
CUSTOM_CODE = "custom_code"
|
|
19
|
+
CUSTOM_CODE = "custom_code",
|
|
20
|
+
INSUFFICIENT_CREDIT = "insufficient_credit"
|
|
20
21
|
}
|
|
21
22
|
declare enum BadRequestErrorKey {
|
|
22
23
|
NOT_FOUND = "not_found",
|
|
@@ -102,6 +103,9 @@ declare class AccessDeniedError extends BadRequestError {
|
|
|
102
103
|
declare class CustomCodeError extends MembraneError {
|
|
103
104
|
constructor(arg: ErrorConstructorArg);
|
|
104
105
|
}
|
|
106
|
+
declare class InsufficientCreditsError extends MembraneError {
|
|
107
|
+
constructor(arg: ErrorConstructorArg);
|
|
108
|
+
}
|
|
105
109
|
|
|
106
110
|
interface ConfigurationStateResult {
|
|
107
111
|
state: ConfigurationState;
|
|
@@ -1996,6 +2000,8 @@ declare const BaseConnection: z.ZodObject<{
|
|
|
1996
2000
|
updatedAt: z.ZodString;
|
|
1997
2001
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
1998
2002
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
2003
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
2004
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
1999
2005
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
2000
2006
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
2001
2007
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -2860,6 +2866,8 @@ declare const ConnectionApiResponse: z.ZodObject<{
|
|
|
2860
2866
|
updatedAt: z.ZodString;
|
|
2861
2867
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
2862
2868
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
2869
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
2870
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
2863
2871
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
2864
2872
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
2865
2873
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -2933,6 +2941,8 @@ declare const ConnectionApiResponseWithSecrets: z.ZodObject<{
|
|
|
2933
2941
|
updatedAt: z.ZodString;
|
|
2934
2942
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
2935
2943
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
2944
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
2945
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
2936
2946
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
2937
2947
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
2938
2948
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -3014,6 +3024,8 @@ declare const ConnectionMessagePayload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
3014
3024
|
updatedAt: z.ZodString;
|
|
3015
3025
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
3016
3026
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
3027
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
3028
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
3017
3029
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
3018
3030
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
3019
3031
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -3235,6 +3247,8 @@ declare const IntegrationApiResponse: z.ZodObject<{
|
|
|
3235
3247
|
updatedAt: z.ZodString;
|
|
3236
3248
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
3237
3249
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
3250
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
3251
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
3238
3252
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
3239
3253
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
3240
3254
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -3888,6 +3902,7 @@ declare const BaseActionRunLogRecord: z.ZodObject<{
|
|
|
3888
3902
|
id: z.ZodString;
|
|
3889
3903
|
name: z.ZodString;
|
|
3890
3904
|
actionId: z.ZodString;
|
|
3905
|
+
actionInstanceId: z.ZodString;
|
|
3891
3906
|
integrationId: z.ZodString;
|
|
3892
3907
|
connectionId: z.ZodString;
|
|
3893
3908
|
input: z.ZodOptional<z.ZodAny>;
|
|
@@ -3896,6 +3911,7 @@ declare const BaseActionRunLogRecord: z.ZodObject<{
|
|
|
3896
3911
|
createdAt: z.ZodString;
|
|
3897
3912
|
completedAt: z.ZodOptional<z.ZodString>;
|
|
3898
3913
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
3914
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
3899
3915
|
}, z.core.$strip>;
|
|
3900
3916
|
type BaseActionRunLogRecord = z.infer<typeof BaseActionRunLogRecord>;
|
|
3901
3917
|
|
|
@@ -4303,6 +4319,8 @@ declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
|
4303
4319
|
updatedAt: z.ZodString;
|
|
4304
4320
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
4305
4321
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
4322
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
4323
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
4306
4324
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
4307
4325
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
4308
4326
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -4446,6 +4464,8 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
4446
4464
|
updatedAt: z.ZodString;
|
|
4447
4465
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
4448
4466
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
4467
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
4468
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
4449
4469
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
4450
4470
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
4451
4471
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -4575,6 +4595,8 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
4575
4595
|
updatedAt: z.ZodString;
|
|
4576
4596
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
4577
4597
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
4598
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
4599
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
4578
4600
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
4579
4601
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
4580
4602
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -4730,9 +4752,53 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
4730
4752
|
appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4731
4753
|
element: z.ZodObject<{
|
|
4732
4754
|
id: z.ZodString;
|
|
4755
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4756
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4757
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
4758
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
4733
4759
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
4734
|
-
|
|
4760
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
4761
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
4762
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
4763
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
4764
|
+
flowId: z.ZodOptional<z.ZodString>;
|
|
4735
4765
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
4766
|
+
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
4767
|
+
parameters: z.ZodOptional<z.ZodAny>;
|
|
4768
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4769
|
+
nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4770
|
+
type: z.ZodOptional<z.ZodString>;
|
|
4771
|
+
version: z.ZodOptional<z.ZodNumber>;
|
|
4772
|
+
name: z.ZodOptional<z.ZodString>;
|
|
4773
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4774
|
+
config: z.ZodOptional<z.ZodAny>;
|
|
4775
|
+
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
4776
|
+
onError: z.ZodOptional<z.ZodEnum<{
|
|
4777
|
+
continue: "continue";
|
|
4778
|
+
stop: "stop";
|
|
4779
|
+
}>>;
|
|
4780
|
+
ui: z.ZodOptional<z.ZodAny>;
|
|
4781
|
+
inputSchema: z.ZodOptional<z.ZodAny>;
|
|
4782
|
+
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
4783
|
+
outputExample: z.ZodOptional<z.ZodAny>;
|
|
4784
|
+
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4785
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4786
|
+
filter: z.ZodOptional<z.ZodAny>;
|
|
4787
|
+
name: z.ZodOptional<z.ZodString>;
|
|
4788
|
+
}, z.core.$strip>>>;
|
|
4789
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
4790
|
+
}, z.core.$strip>>>;
|
|
4791
|
+
autoCreateInstances: z.ZodOptional<z.ZodBoolean>;
|
|
4792
|
+
name: z.ZodString;
|
|
4793
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
4794
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
4795
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
4796
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
4797
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4798
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
4799
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
4800
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
4801
|
+
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
4736
4802
|
}, z.core.$strip>;
|
|
4737
4803
|
integration: z.ZodObject<{
|
|
4738
4804
|
id: z.ZodString;
|
|
@@ -5003,6 +5069,8 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
5003
5069
|
authOptionKey?: string | undefined;
|
|
5004
5070
|
lastActiveAt?: string | undefined;
|
|
5005
5071
|
nextCredentialsRefreshAt?: string | undefined;
|
|
5072
|
+
nextRetryTimestamp?: string | undefined;
|
|
5073
|
+
retryAttempts?: number | undefined;
|
|
5006
5074
|
archivedAt?: string | undefined;
|
|
5007
5075
|
isDeactivated?: boolean | undefined;
|
|
5008
5076
|
meta?: Record<string, any> | undefined;
|
|
@@ -5021,6 +5089,8 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
5021
5089
|
authOptionKey?: string | undefined;
|
|
5022
5090
|
lastActiveAt?: string | undefined;
|
|
5023
5091
|
nextCredentialsRefreshAt?: string | undefined;
|
|
5092
|
+
nextRetryTimestamp?: string | undefined;
|
|
5093
|
+
retryAttempts?: number | undefined;
|
|
5024
5094
|
archivedAt?: string | undefined;
|
|
5025
5095
|
isDeactivated?: boolean | undefined;
|
|
5026
5096
|
meta?: Record<string, any> | undefined;
|
|
@@ -5117,9 +5187,53 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
5117
5187
|
appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5118
5188
|
element: z.ZodObject<{
|
|
5119
5189
|
id: z.ZodString;
|
|
5190
|
+
key: z.ZodOptional<z.ZodString>;
|
|
5191
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5192
|
+
instanceKey: z.ZodOptional<z.ZodString>;
|
|
5193
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
5120
5194
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
5121
|
-
|
|
5195
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
5196
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
5197
|
+
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
5198
|
+
parentUuid: z.ZodOptional<z.ZodString>;
|
|
5199
|
+
flowId: z.ZodOptional<z.ZodString>;
|
|
5122
5200
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
5201
|
+
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
5202
|
+
parameters: z.ZodOptional<z.ZodAny>;
|
|
5203
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5204
|
+
nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5205
|
+
type: z.ZodOptional<z.ZodString>;
|
|
5206
|
+
version: z.ZodOptional<z.ZodNumber>;
|
|
5207
|
+
name: z.ZodOptional<z.ZodString>;
|
|
5208
|
+
description: z.ZodOptional<z.ZodString>;
|
|
5209
|
+
config: z.ZodOptional<z.ZodAny>;
|
|
5210
|
+
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
5211
|
+
onError: z.ZodOptional<z.ZodEnum<{
|
|
5212
|
+
continue: "continue";
|
|
5213
|
+
stop: "stop";
|
|
5214
|
+
}>>;
|
|
5215
|
+
ui: z.ZodOptional<z.ZodAny>;
|
|
5216
|
+
inputSchema: z.ZodOptional<z.ZodAny>;
|
|
5217
|
+
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
5218
|
+
outputExample: z.ZodOptional<z.ZodAny>;
|
|
5219
|
+
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5220
|
+
key: z.ZodOptional<z.ZodString>;
|
|
5221
|
+
filter: z.ZodOptional<z.ZodAny>;
|
|
5222
|
+
name: z.ZodOptional<z.ZodString>;
|
|
5223
|
+
}, z.core.$strip>>>;
|
|
5224
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
5225
|
+
}, z.core.$strip>>>;
|
|
5226
|
+
autoCreateInstances: z.ZodOptional<z.ZodBoolean>;
|
|
5227
|
+
name: z.ZodString;
|
|
5228
|
+
state: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementState>>;
|
|
5229
|
+
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>>;
|
|
5230
|
+
revision: z.ZodOptional<z.ZodString>;
|
|
5231
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
5232
|
+
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5233
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
5234
|
+
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
5235
|
+
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
5236
|
+
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
5123
5237
|
}, z.core.$strip>;
|
|
5124
5238
|
integration: z.ZodObject<{
|
|
5125
5239
|
id: z.ZodString;
|
|
@@ -5673,6 +5787,8 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
5673
5787
|
updatedAt: z.ZodString;
|
|
5674
5788
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
5675
5789
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
5790
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
5791
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
5676
5792
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
5677
5793
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
5678
5794
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -5950,6 +6066,8 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
5950
6066
|
updatedAt: z.ZodString;
|
|
5951
6067
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
5952
6068
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
6069
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
6070
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
5953
6071
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
5954
6072
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
5955
6073
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -6117,6 +6235,8 @@ declare class ConnectionAccessor {
|
|
|
6117
6235
|
authOptionKey?: string | undefined;
|
|
6118
6236
|
lastActiveAt?: string | undefined;
|
|
6119
6237
|
nextCredentialsRefreshAt?: string | undefined;
|
|
6238
|
+
nextRetryTimestamp?: string | undefined;
|
|
6239
|
+
retryAttempts?: number | undefined;
|
|
6120
6240
|
archivedAt?: string | undefined;
|
|
6121
6241
|
isDeactivated?: boolean | undefined;
|
|
6122
6242
|
meta?: Record<string, any> | undefined;
|
|
@@ -6565,6 +6685,8 @@ declare class IntegrationAccessor extends ElementAccessor<Integration, UpdateInt
|
|
|
6565
6685
|
authOptionKey?: string | undefined;
|
|
6566
6686
|
lastActiveAt?: string | undefined;
|
|
6567
6687
|
nextCredentialsRefreshAt?: string | undefined;
|
|
6688
|
+
nextRetryTimestamp?: string | undefined;
|
|
6689
|
+
retryAttempts?: number | undefined;
|
|
6568
6690
|
archivedAt?: string | undefined;
|
|
6569
6691
|
isDeactivated?: boolean | undefined;
|
|
6570
6692
|
meta?: Record<string, any> | undefined;
|
|
@@ -6972,6 +7094,8 @@ declare const DataLinkTableInstanceApiResponse: z.ZodObject<{
|
|
|
6972
7094
|
updatedAt: z.ZodString;
|
|
6973
7095
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
6974
7096
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
7097
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
7098
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
6975
7099
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
6976
7100
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
6977
7101
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -7302,6 +7426,8 @@ declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
|
7302
7426
|
updatedAt: z.ZodString;
|
|
7303
7427
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
7304
7428
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
7429
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
7430
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
7305
7431
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
7306
7432
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
7307
7433
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -8042,6 +8168,7 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
8042
8168
|
id: z.ZodString;
|
|
8043
8169
|
name: z.ZodString;
|
|
8044
8170
|
actionId: z.ZodString;
|
|
8171
|
+
actionInstanceId: z.ZodString;
|
|
8045
8172
|
integrationId: z.ZodString;
|
|
8046
8173
|
connectionId: z.ZodString;
|
|
8047
8174
|
input: z.ZodOptional<z.ZodAny>;
|
|
@@ -8050,6 +8177,7 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
8050
8177
|
createdAt: z.ZodString;
|
|
8051
8178
|
completedAt: z.ZodOptional<z.ZodString>;
|
|
8052
8179
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
8180
|
+
duration: z.ZodOptional<z.ZodNumber>;
|
|
8053
8181
|
action: z.ZodOptional<z.ZodObject<{
|
|
8054
8182
|
id: z.ZodString;
|
|
8055
8183
|
uuid: z.ZodOptional<z.ZodString>;
|
|
@@ -8135,6 +8263,8 @@ declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
8135
8263
|
updatedAt: z.ZodString;
|
|
8136
8264
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8137
8265
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
8266
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
8267
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
8138
8268
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8139
8269
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8140
8270
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -8380,6 +8510,8 @@ declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
8380
8510
|
updatedAt: z.ZodString;
|
|
8381
8511
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8382
8512
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
8513
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
8514
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
8383
8515
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8384
8516
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8385
8517
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -8516,6 +8648,8 @@ declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
|
8516
8648
|
updatedAt: z.ZodString;
|
|
8517
8649
|
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
8518
8650
|
nextCredentialsRefreshAt: z.ZodOptional<z.ZodString>;
|
|
8651
|
+
nextRetryTimestamp: z.ZodOptional<z.ZodString>;
|
|
8652
|
+
retryAttempts: z.ZodOptional<z.ZodNumber>;
|
|
8519
8653
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
8520
8654
|
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
8521
8655
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
@@ -8624,6 +8758,22 @@ declare function getParentNodeKeys(flow: Flow | FlowInstance, nodeKey: string):
|
|
|
8624
8758
|
declare function getUpstreamNodeKeys(flow: Flow | FlowInstance, nodeKey: string): string[];
|
|
8625
8759
|
declare function hasCycles(nodes?: Record<string, FlowNode>): boolean;
|
|
8626
8760
|
|
|
8761
|
+
declare enum WorkspaceElementChangeType {
|
|
8762
|
+
CREATE = "create",
|
|
8763
|
+
UPDATE = "update",
|
|
8764
|
+
DELETE = "delete"
|
|
8765
|
+
}
|
|
8766
|
+
interface WorkspaceElementChange {
|
|
8767
|
+
type: WorkspaceElementChangeType;
|
|
8768
|
+
uuid: string;
|
|
8769
|
+
}
|
|
8770
|
+
interface WorkspaceExportComparison {
|
|
8771
|
+
[WorkspaceElementChangeType.CREATE]: Set<string>;
|
|
8772
|
+
[WorkspaceElementChangeType.UPDATE]: Set<string>;
|
|
8773
|
+
[WorkspaceElementChangeType.DELETE]: Set<string>;
|
|
8774
|
+
}
|
|
8775
|
+
declare function compareWorkspaceExports(primaryExport: Partial<Record<WorkspaceElementType, any[]>>, targetExport: Partial<Record<WorkspaceElementType, any[]>>): WorkspaceExportComparison;
|
|
8776
|
+
|
|
8627
8777
|
interface WorkspaceElementSpec {
|
|
8628
8778
|
type: WorkspaceElementType;
|
|
8629
8779
|
apiPath: string;
|
|
@@ -8665,6 +8815,396 @@ interface IWorkspaceUpdate {
|
|
|
8665
8815
|
apiRequestQuery: Record<string, any>;
|
|
8666
8816
|
}
|
|
8667
8817
|
|
|
8818
|
+
interface App {
|
|
8819
|
+
id: string;
|
|
8820
|
+
apiDocsUri: string;
|
|
8821
|
+
appUri: string;
|
|
8822
|
+
canIntegrate: boolean;
|
|
8823
|
+
categories: string[];
|
|
8824
|
+
defaultConnectorId: string;
|
|
8825
|
+
key: string;
|
|
8826
|
+
logoUri: string;
|
|
8827
|
+
name: string;
|
|
8828
|
+
popularity: number;
|
|
8829
|
+
uuid: string;
|
|
8830
|
+
knowledgeBaseUuid?: string;
|
|
8831
|
+
hasFreeTestAccount?: boolean;
|
|
8832
|
+
freeTestAccountGuide?: string;
|
|
8833
|
+
}
|
|
8834
|
+
interface AppCategory {
|
|
8835
|
+
count: number;
|
|
8836
|
+
category: string;
|
|
8837
|
+
}
|
|
8838
|
+
declare const WorkspaceLimitsSchema: z.ZodObject<{
|
|
8839
|
+
parallelEventPulls: z.ZodOptional<z.ZodObject<{
|
|
8840
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8841
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8842
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8843
|
+
}, z.core.$strip>>;
|
|
8844
|
+
parallelIncrementalEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
8845
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8846
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8847
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8848
|
+
}, z.core.$strip>>;
|
|
8849
|
+
parallelFullSyncEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
8850
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8851
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8852
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8853
|
+
}, z.core.$strip>>;
|
|
8854
|
+
parallelFlowRuns: z.ZodOptional<z.ZodObject<{
|
|
8855
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8856
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8857
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8858
|
+
}, z.core.$strip>>;
|
|
8859
|
+
parallelFlowRunsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
8860
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8861
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8862
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8863
|
+
}, z.core.$strip>>;
|
|
8864
|
+
parallelApiRequests: z.ZodOptional<z.ZodObject<{
|
|
8865
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8866
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8867
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8868
|
+
}, z.core.$strip>>;
|
|
8869
|
+
parallelSseRequests: z.ZodOptional<z.ZodObject<{
|
|
8870
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8871
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8872
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8873
|
+
}, z.core.$strip>>;
|
|
8874
|
+
parallelBackgroundJobs: z.ZodOptional<z.ZodObject<{
|
|
8875
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8876
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8877
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8878
|
+
}, z.core.$strip>>;
|
|
8879
|
+
parallelEventLogs: z.ZodOptional<z.ZodObject<{
|
|
8880
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8881
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8882
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8883
|
+
}, z.core.$strip>>;
|
|
8884
|
+
parallelEventLogsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
8885
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8886
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8887
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8888
|
+
}, z.core.$strip>>;
|
|
8889
|
+
ParallelWriteDatabaseRequests: z.ZodOptional<z.ZodObject<{
|
|
8890
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8891
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8892
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8893
|
+
}, z.core.$strip>>;
|
|
8894
|
+
fileUploadsMbPerHour: z.ZodOptional<z.ZodObject<{
|
|
8895
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8896
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8897
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8898
|
+
}, z.core.$strip>>;
|
|
8899
|
+
apiRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
8900
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8901
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8902
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8903
|
+
}, z.core.$strip>>;
|
|
8904
|
+
apiRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
8905
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8906
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8907
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8908
|
+
}, z.core.$strip>>;
|
|
8909
|
+
webhookRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
8910
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8911
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8912
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8913
|
+
}, z.core.$strip>>;
|
|
8914
|
+
webhookRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
8915
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8916
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8917
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8918
|
+
}, z.core.$strip>>;
|
|
8919
|
+
workspaceElementCreationsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
8920
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8921
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8922
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8923
|
+
}, z.core.$strip>>;
|
|
8924
|
+
workspaceElementCreationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
8925
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8926
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8927
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8928
|
+
}, z.core.$strip>>;
|
|
8929
|
+
createDatabaseRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
8930
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8931
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8932
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8933
|
+
}, z.core.$strip>>;
|
|
8934
|
+
totalNumberOfCustomers: z.ZodOptional<z.ZodObject<{
|
|
8935
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8936
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8937
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8938
|
+
}, z.core.$strip>>;
|
|
8939
|
+
totalNumberOfConnections: z.ZodOptional<z.ZodObject<{
|
|
8940
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8941
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8942
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8943
|
+
}, z.core.$strip>>;
|
|
8944
|
+
totalNumberOfWorkspaceElements: z.ZodOptional<z.ZodObject<{
|
|
8945
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8946
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8947
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8948
|
+
}, z.core.$strip>>;
|
|
8949
|
+
parallelApiRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
8950
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8951
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8952
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8953
|
+
}, z.core.$strip>>;
|
|
8954
|
+
parallelBackgroundJobsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
8955
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8956
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8957
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8958
|
+
}, z.core.$strip>>;
|
|
8959
|
+
apiRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
8960
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8961
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8962
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8963
|
+
}, z.core.$strip>>;
|
|
8964
|
+
apiRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
8965
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8966
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8967
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8968
|
+
}, z.core.$strip>>;
|
|
8969
|
+
webhookRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
8970
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8971
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8972
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8973
|
+
}, z.core.$strip>>;
|
|
8974
|
+
webhookRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
8975
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8976
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8977
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8978
|
+
}, z.core.$strip>>;
|
|
8979
|
+
externalEventsPerCustomerPerDay: z.ZodOptional<z.ZodObject<{
|
|
8980
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8981
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8982
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8983
|
+
}, z.core.$strip>>;
|
|
8984
|
+
createDatabaseRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
8985
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8986
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8987
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8988
|
+
}, z.core.$strip>>;
|
|
8989
|
+
updateDatabaseRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
8990
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8991
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8992
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8993
|
+
}, z.core.$strip>>;
|
|
8994
|
+
parallelWriteDatabaseRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
8995
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
8996
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8997
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
8998
|
+
}, z.core.$strip>>;
|
|
8999
|
+
}, z.core.$strip>;
|
|
9000
|
+
declare const EngineWorkspaceSettingsSchema: z.ZodObject<{
|
|
9001
|
+
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
9002
|
+
enableWebhookLogs: z.ZodOptional<z.ZodBoolean>;
|
|
9003
|
+
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
9004
|
+
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
9005
|
+
}, z.core.$strip>;
|
|
9006
|
+
declare const AppPublicKey: z.ZodObject<{
|
|
9007
|
+
name: z.ZodString;
|
|
9008
|
+
publicKey: z.ZodString;
|
|
9009
|
+
}, z.core.$strip>;
|
|
9010
|
+
declare const AppSchema: z.ZodObject<{
|
|
9011
|
+
id: z.ZodString;
|
|
9012
|
+
key: z.ZodString;
|
|
9013
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
9014
|
+
userFieldsSchema: z.ZodOptional<z.ZodAny>;
|
|
9015
|
+
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
9016
|
+
webhookUri: z.ZodOptional<z.ZodString>;
|
|
9017
|
+
publicKey: z.ZodOptional<z.ZodString>;
|
|
9018
|
+
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9019
|
+
name: z.ZodString;
|
|
9020
|
+
publicKey: z.ZodString;
|
|
9021
|
+
}, z.core.$strip>>>;
|
|
9022
|
+
enabledWebhookEvents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9023
|
+
auth: z.ZodOptional<z.ZodAny>;
|
|
9024
|
+
credentialsSchema: z.ZodOptional<z.ZodAny>;
|
|
9025
|
+
apiClient: z.ZodOptional<z.ZodAny>;
|
|
9026
|
+
apiRequestHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9027
|
+
apiRequestQuery: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
9028
|
+
isOnPrem: z.ZodOptional<z.ZodBoolean>;
|
|
9029
|
+
connectorBaseUri: z.ZodOptional<z.ZodString>;
|
|
9030
|
+
connectorRevision: z.ZodOptional<z.ZodString>;
|
|
9031
|
+
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9032
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
9033
|
+
parallelEventPulls: z.ZodOptional<z.ZodObject<{
|
|
9034
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9035
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9036
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9037
|
+
}, z.core.$strip>>;
|
|
9038
|
+
parallelIncrementalEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
9039
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9040
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9041
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9042
|
+
}, z.core.$strip>>;
|
|
9043
|
+
parallelFullSyncEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
9044
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9045
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9046
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9047
|
+
}, z.core.$strip>>;
|
|
9048
|
+
parallelFlowRuns: z.ZodOptional<z.ZodObject<{
|
|
9049
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9050
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9051
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9052
|
+
}, z.core.$strip>>;
|
|
9053
|
+
parallelFlowRunsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
9054
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9055
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9056
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9057
|
+
}, z.core.$strip>>;
|
|
9058
|
+
parallelApiRequests: z.ZodOptional<z.ZodObject<{
|
|
9059
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9060
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9061
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9062
|
+
}, z.core.$strip>>;
|
|
9063
|
+
parallelSseRequests: z.ZodOptional<z.ZodObject<{
|
|
9064
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9065
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9066
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9067
|
+
}, z.core.$strip>>;
|
|
9068
|
+
parallelBackgroundJobs: z.ZodOptional<z.ZodObject<{
|
|
9069
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9070
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9071
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9072
|
+
}, z.core.$strip>>;
|
|
9073
|
+
parallelEventLogs: z.ZodOptional<z.ZodObject<{
|
|
9074
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9075
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9076
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9077
|
+
}, z.core.$strip>>;
|
|
9078
|
+
parallelEventLogsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
9079
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9080
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9081
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9082
|
+
}, z.core.$strip>>;
|
|
9083
|
+
ParallelWriteDatabaseRequests: z.ZodOptional<z.ZodObject<{
|
|
9084
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9085
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9086
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9087
|
+
}, z.core.$strip>>;
|
|
9088
|
+
fileUploadsMbPerHour: z.ZodOptional<z.ZodObject<{
|
|
9089
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9090
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9091
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9092
|
+
}, z.core.$strip>>;
|
|
9093
|
+
apiRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
9094
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9095
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9096
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9097
|
+
}, z.core.$strip>>;
|
|
9098
|
+
apiRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
9099
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9100
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9101
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9102
|
+
}, z.core.$strip>>;
|
|
9103
|
+
webhookRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
9104
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9105
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9106
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9107
|
+
}, z.core.$strip>>;
|
|
9108
|
+
webhookRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
9109
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9110
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9111
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9112
|
+
}, z.core.$strip>>;
|
|
9113
|
+
workspaceElementCreationsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
9114
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9115
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9116
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9117
|
+
}, z.core.$strip>>;
|
|
9118
|
+
workspaceElementCreationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
9119
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9120
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9121
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9122
|
+
}, z.core.$strip>>;
|
|
9123
|
+
createDatabaseRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
9124
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9125
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9126
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9127
|
+
}, z.core.$strip>>;
|
|
9128
|
+
totalNumberOfCustomers: z.ZodOptional<z.ZodObject<{
|
|
9129
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9130
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9131
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9132
|
+
}, z.core.$strip>>;
|
|
9133
|
+
totalNumberOfConnections: z.ZodOptional<z.ZodObject<{
|
|
9134
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9135
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9136
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9137
|
+
}, z.core.$strip>>;
|
|
9138
|
+
totalNumberOfWorkspaceElements: z.ZodOptional<z.ZodObject<{
|
|
9139
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9140
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9141
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9142
|
+
}, z.core.$strip>>;
|
|
9143
|
+
parallelApiRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
9144
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9145
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9146
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9147
|
+
}, z.core.$strip>>;
|
|
9148
|
+
parallelBackgroundJobsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
9149
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9150
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9151
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9152
|
+
}, z.core.$strip>>;
|
|
9153
|
+
apiRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
9154
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9155
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9156
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9157
|
+
}, z.core.$strip>>;
|
|
9158
|
+
apiRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
9159
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9160
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9161
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9162
|
+
}, z.core.$strip>>;
|
|
9163
|
+
webhookRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
9164
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9165
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9166
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9167
|
+
}, z.core.$strip>>;
|
|
9168
|
+
webhookRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
9169
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9170
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9171
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9172
|
+
}, z.core.$strip>>;
|
|
9173
|
+
externalEventsPerCustomerPerDay: z.ZodOptional<z.ZodObject<{
|
|
9174
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9175
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9176
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9177
|
+
}, z.core.$strip>>;
|
|
9178
|
+
createDatabaseRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
9179
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9180
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9181
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9182
|
+
}, z.core.$strip>>;
|
|
9183
|
+
updateDatabaseRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
9184
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9185
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9186
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9187
|
+
}, z.core.$strip>>;
|
|
9188
|
+
parallelWriteDatabaseRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
9189
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
9190
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
9191
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
9192
|
+
}, z.core.$strip>>;
|
|
9193
|
+
}, z.core.$strip>>;
|
|
9194
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
9195
|
+
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
9196
|
+
enableWebhookLogs: z.ZodOptional<z.ZodBoolean>;
|
|
9197
|
+
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
9198
|
+
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
9199
|
+
}, z.core.$strip>>;
|
|
9200
|
+
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
9201
|
+
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9202
|
+
isTrial: z.ZodOptional<z.ZodBoolean>;
|
|
9203
|
+
isThrottled: z.ZodOptional<z.ZodBoolean>;
|
|
9204
|
+
isDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
9205
|
+
isBackgroundJobsDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
9206
|
+
}, z.core.$strip>;
|
|
9207
|
+
|
|
8668
9208
|
declare enum WorkspaceOnboardingStep {
|
|
8669
9209
|
AddConnectors = "add-connectors",
|
|
8670
9210
|
ConnectYourApp = "first-connection",
|
|
@@ -8683,12 +9223,7 @@ interface Workspace {
|
|
|
8683
9223
|
onboardingStep?: WorkspaceOnboardingStep;
|
|
8684
9224
|
trialEndDate?: string;
|
|
8685
9225
|
}
|
|
8686
|
-
|
|
8687
|
-
enableApiLogs?: boolean;
|
|
8688
|
-
enableWebhookLogs?: boolean;
|
|
8689
|
-
enableActionRunLogs?: boolean;
|
|
8690
|
-
disableSecretKeyAuth?: boolean;
|
|
8691
|
-
}
|
|
9226
|
+
type EngineWorkspaceSettings = z$1.Infer<typeof EngineWorkspaceSettingsSchema>;
|
|
8692
9227
|
interface EngineWorkspace {
|
|
8693
9228
|
id: string;
|
|
8694
9229
|
key: string;
|
|
@@ -8719,7 +9254,6 @@ interface WorkspaceUser {
|
|
|
8719
9254
|
workspaceId: string;
|
|
8720
9255
|
testCustomerId: string;
|
|
8721
9256
|
userId: string;
|
|
8722
|
-
user: User;
|
|
8723
9257
|
role: string;
|
|
8724
9258
|
}
|
|
8725
9259
|
interface UserWorkspaceSettings {
|
|
@@ -8809,6 +9343,29 @@ declare const RATE_LIMITS: string[];
|
|
|
8809
9343
|
declare const WORKSPACE_SIZE_LIMITS: string[];
|
|
8810
9344
|
declare const EDITABLE_LIMITS: string[];
|
|
8811
9345
|
|
|
9346
|
+
declare const OrgWorkspaceSchema: z.ZodObject<{
|
|
9347
|
+
id: z.ZodString;
|
|
9348
|
+
name: z.ZodString;
|
|
9349
|
+
orgId: z.ZodString;
|
|
9350
|
+
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
9351
|
+
key: z.ZodString;
|
|
9352
|
+
secret: z.ZodString;
|
|
9353
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
9354
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
9355
|
+
engineAccessToken: z.ZodOptional<z.ZodString>;
|
|
9356
|
+
onboardingStep: z.ZodOptional<z.ZodEnum<typeof WorkspaceOnboardingStep>>;
|
|
9357
|
+
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
9358
|
+
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9359
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
9360
|
+
}, z.core.$strip>;
|
|
9361
|
+
declare const OrgWorkspaceUser: z.ZodObject<{
|
|
9362
|
+
id: z.ZodString;
|
|
9363
|
+
workspaceId: z.ZodString;
|
|
9364
|
+
testCustomerId: z.ZodString;
|
|
9365
|
+
userId: z.ZodString;
|
|
9366
|
+
role: z.ZodString;
|
|
9367
|
+
}, z.core.$strip>;
|
|
9368
|
+
|
|
8812
9369
|
declare class SelfAccessor {
|
|
8813
9370
|
private client;
|
|
8814
9371
|
constructor(client: MembraneApiClient);
|
|
@@ -9522,27 +10079,6 @@ declare function getFlowNodeRunTimeVariablesSchema({ parametersSchema, inputSche
|
|
|
9522
10079
|
userSchema: DataSchema;
|
|
9523
10080
|
}): DataSchema;
|
|
9524
10081
|
|
|
9525
|
-
interface App {
|
|
9526
|
-
id: string;
|
|
9527
|
-
apiDocsUri: string;
|
|
9528
|
-
appUri: string;
|
|
9529
|
-
canIntegrate: boolean;
|
|
9530
|
-
categories: string[];
|
|
9531
|
-
defaultConnectorId: string;
|
|
9532
|
-
key: string;
|
|
9533
|
-
logoUri: string;
|
|
9534
|
-
name: string;
|
|
9535
|
-
popularity: number;
|
|
9536
|
-
uuid: string;
|
|
9537
|
-
knowledgeBaseUuid?: string;
|
|
9538
|
-
hasFreeTestAccount?: boolean;
|
|
9539
|
-
freeTestAccountGuide?: string;
|
|
9540
|
-
}
|
|
9541
|
-
interface AppCategory {
|
|
9542
|
-
count: number;
|
|
9543
|
-
category: string;
|
|
9544
|
-
}
|
|
9545
|
-
|
|
9546
10082
|
interface WorkspaceUpdate {
|
|
9547
10083
|
id: string;
|
|
9548
10084
|
path: string;
|
|
@@ -9554,15 +10090,7 @@ declare enum OrgLimitsType {
|
|
|
9554
10090
|
NUMBER_OF_WORKSPACES = "numberOfWorkspaces",
|
|
9555
10091
|
TODAY_USAGE = "todayUsage",
|
|
9556
10092
|
LAST_THIRTY_DAY_USAGE = "lastThirtyDayUsage",
|
|
9557
|
-
MEMBRANE_EXPERT_CREDITS_CAP = "membraneExpertCreditsCapPerMonth"
|
|
9558
|
-
MEMBRANE_AGENT_LAST_THIRTY_DAYS_USAGE = "membraneAgentLastThirtyDaysUsage"
|
|
9559
|
-
}
|
|
9560
|
-
interface OrgLimits {
|
|
9561
|
-
[OrgLimitsType.NUMBER_OF_WORKSPACES]?: number;
|
|
9562
|
-
[OrgLimitsType.TODAY_USAGE]?: number;
|
|
9563
|
-
[OrgLimitsType.LAST_THIRTY_DAY_USAGE]?: number;
|
|
9564
|
-
[OrgLimitsType.MEMBRANE_AGENT_LAST_THIRTY_DAYS_USAGE]?: number;
|
|
9565
|
-
[OrgLimitsType.MEMBRANE_EXPERT_CREDITS_CAP]?: number | null;
|
|
10093
|
+
MEMBRANE_EXPERT_CREDITS_CAP = "membraneExpertCreditsCapPerMonth"
|
|
9566
10094
|
}
|
|
9567
10095
|
interface Org {
|
|
9568
10096
|
id: string;
|
|
@@ -9614,11 +10142,380 @@ interface OrgWorkspace {
|
|
|
9614
10142
|
trialEndDate?: string;
|
|
9615
10143
|
featureFlags?: string[];
|
|
9616
10144
|
}
|
|
10145
|
+
interface OrgLimits {
|
|
10146
|
+
[OrgLimitsType.NUMBER_OF_WORKSPACES]?: number;
|
|
10147
|
+
[OrgLimitsType.TODAY_USAGE]?: number;
|
|
10148
|
+
[OrgLimitsType.LAST_THIRTY_DAY_USAGE]?: number;
|
|
10149
|
+
[OrgLimitsType.MEMBRANE_EXPERT_CREDITS_CAP]?: number | null;
|
|
10150
|
+
}
|
|
10151
|
+
declare const OrgLimits: z.ZodOptional<z.ZodObject<{
|
|
10152
|
+
numberOfWorkspaces: z.ZodOptional<z.ZodNumber>;
|
|
10153
|
+
todayUsage: z.ZodOptional<z.ZodNumber>;
|
|
10154
|
+
lastThirtyDayUsage: z.ZodOptional<z.ZodNumber>;
|
|
10155
|
+
membraneAgentLastThirtyDaysUsage: z.ZodOptional<z.ZodNumber>;
|
|
10156
|
+
membraneExpertCreditsCapPerMonth: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
10157
|
+
}, z.core.$strip>>;
|
|
9617
10158
|
interface MembraneAgentKey {
|
|
9618
10159
|
key: string;
|
|
9619
10160
|
activityDate: Date;
|
|
9620
10161
|
hash: string;
|
|
9621
10162
|
}
|
|
10163
|
+
declare const MembraneAgentKey: z.ZodOptional<z.ZodObject<{
|
|
10164
|
+
key: z.ZodOptional<z.ZodString>;
|
|
10165
|
+
expiresAt: z.ZodOptional<z.ZodString>;
|
|
10166
|
+
}, z.core.$strip>>;
|
|
10167
|
+
declare const OrgSchema: z.ZodObject<{
|
|
10168
|
+
id: z.ZodString;
|
|
10169
|
+
key: z.ZodString;
|
|
10170
|
+
name: z.ZodString;
|
|
10171
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
10172
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
10173
|
+
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
10174
|
+
lastTrialExtensionDate: z.ZodOptional<z.ZodString>;
|
|
10175
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
10176
|
+
numberOfWorkspaces: z.ZodOptional<z.ZodNumber>;
|
|
10177
|
+
todayUsage: z.ZodOptional<z.ZodNumber>;
|
|
10178
|
+
lastThirtyDayUsage: z.ZodOptional<z.ZodNumber>;
|
|
10179
|
+
membraneAgentLastThirtyDaysUsage: z.ZodOptional<z.ZodNumber>;
|
|
10180
|
+
membraneExpertCreditsCapPerMonth: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
10181
|
+
}, z.core.$strip>>;
|
|
10182
|
+
thirtyDayTotalCredits: z.ZodOptional<z.ZodNumber>;
|
|
10183
|
+
lastThirtyDayUsagePercent: z.ZodOptional<z.ZodNumber>;
|
|
10184
|
+
todayUsagePercent: z.ZodOptional<z.ZodNumber>;
|
|
10185
|
+
domains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10186
|
+
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10187
|
+
freeAiMonthlyCredits: z.ZodOptional<z.ZodNumber>;
|
|
10188
|
+
paidAiCredits: z.ZodOptional<z.ZodNumber>;
|
|
10189
|
+
stripeCustomerId: z.ZodOptional<z.ZodString>;
|
|
10190
|
+
}, z.core.$strip>;
|
|
10191
|
+
declare const AccountResponse: z.ZodObject<{
|
|
10192
|
+
user: z.ZodOptional<z.ZodObject<{
|
|
10193
|
+
id: z.ZodString;
|
|
10194
|
+
auth0Id: z.ZodOptional<z.ZodString>;
|
|
10195
|
+
email: z.ZodString;
|
|
10196
|
+
name: z.ZodString;
|
|
10197
|
+
defaultAccountId: z.ZodOptional<z.ZodString>;
|
|
10198
|
+
defaultWorkspaceId: z.ZodOptional<z.ZodString>;
|
|
10199
|
+
isAdmin: z.ZodOptional<z.ZodBoolean>;
|
|
10200
|
+
trialRequested: z.ZodBoolean;
|
|
10201
|
+
pat: z.ZodOptional<z.ZodString>;
|
|
10202
|
+
introVideoStatus: z.ZodOptional<z.ZodString>;
|
|
10203
|
+
isEligible: z.ZodOptional<z.ZodBoolean>;
|
|
10204
|
+
emailVerified: z.ZodOptional<z.ZodBoolean>;
|
|
10205
|
+
}, z.core.$strip>>;
|
|
10206
|
+
workspace: z.ZodOptional<z.ZodObject<{
|
|
10207
|
+
id: z.ZodString;
|
|
10208
|
+
name: z.ZodString;
|
|
10209
|
+
orgId: z.ZodString;
|
|
10210
|
+
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
10211
|
+
key: z.ZodString;
|
|
10212
|
+
secret: z.ZodString;
|
|
10213
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
10214
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
10215
|
+
engineAccessToken: z.ZodOptional<z.ZodString>;
|
|
10216
|
+
onboardingStep: z.ZodOptional<z.ZodEnum<typeof WorkspaceOnboardingStep>>;
|
|
10217
|
+
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
10218
|
+
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10219
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
10220
|
+
}, z.core.$strip>>;
|
|
10221
|
+
workspaces: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10222
|
+
id: z.ZodString;
|
|
10223
|
+
name: z.ZodString;
|
|
10224
|
+
orgId: z.ZodString;
|
|
10225
|
+
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
10226
|
+
key: z.ZodString;
|
|
10227
|
+
secret: z.ZodString;
|
|
10228
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
10229
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
10230
|
+
engineAccessToken: z.ZodOptional<z.ZodString>;
|
|
10231
|
+
onboardingStep: z.ZodOptional<z.ZodEnum<typeof WorkspaceOnboardingStep>>;
|
|
10232
|
+
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
10233
|
+
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10234
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
10235
|
+
}, z.core.$strip>>>;
|
|
10236
|
+
workspaceUser: z.ZodOptional<z.ZodObject<{
|
|
10237
|
+
id: z.ZodString;
|
|
10238
|
+
workspaceId: z.ZodString;
|
|
10239
|
+
userId: z.ZodString;
|
|
10240
|
+
role: z.ZodString;
|
|
10241
|
+
testCustomerId: z.ZodString;
|
|
10242
|
+
}, z.core.$strip>>;
|
|
10243
|
+
engineTestUser: z.ZodOptional<z.ZodObject<{
|
|
10244
|
+
id: z.ZodString;
|
|
10245
|
+
name: z.ZodString;
|
|
10246
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
10247
|
+
internalId: z.ZodString;
|
|
10248
|
+
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
10249
|
+
credentials: z.ZodOptional<z.ZodAny>;
|
|
10250
|
+
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
10251
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
10252
|
+
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
10253
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
10254
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
10255
|
+
}, z.core.$strip>>;
|
|
10256
|
+
testCustomer: z.ZodOptional<z.ZodObject<{
|
|
10257
|
+
id: z.ZodString;
|
|
10258
|
+
name: z.ZodString;
|
|
10259
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
10260
|
+
internalId: z.ZodString;
|
|
10261
|
+
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
10262
|
+
credentials: z.ZodOptional<z.ZodAny>;
|
|
10263
|
+
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
10264
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
10265
|
+
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
10266
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
10267
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
10268
|
+
}, z.core.$strip>>;
|
|
10269
|
+
engineApp: z.ZodOptional<z.ZodObject<{
|
|
10270
|
+
id: z.ZodString;
|
|
10271
|
+
key: z.ZodString;
|
|
10272
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
10273
|
+
userFieldsSchema: z.ZodOptional<z.ZodAny>;
|
|
10274
|
+
apiBaseUri: z.ZodOptional<z.ZodString>;
|
|
10275
|
+
webhookUri: z.ZodOptional<z.ZodString>;
|
|
10276
|
+
publicKey: z.ZodOptional<z.ZodString>;
|
|
10277
|
+
publicKeys: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10278
|
+
name: z.ZodString;
|
|
10279
|
+
publicKey: z.ZodString;
|
|
10280
|
+
}, z.core.$strip>>>;
|
|
10281
|
+
enabledWebhookEvents: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10282
|
+
auth: z.ZodOptional<z.ZodAny>;
|
|
10283
|
+
credentialsSchema: z.ZodOptional<z.ZodAny>;
|
|
10284
|
+
apiClient: z.ZodOptional<z.ZodAny>;
|
|
10285
|
+
apiRequestHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
10286
|
+
apiRequestQuery: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
10287
|
+
isOnPrem: z.ZodOptional<z.ZodBoolean>;
|
|
10288
|
+
connectorBaseUri: z.ZodOptional<z.ZodString>;
|
|
10289
|
+
connectorRevision: z.ZodOptional<z.ZodString>;
|
|
10290
|
+
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10291
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
10292
|
+
parallelEventPulls: z.ZodOptional<z.ZodObject<{
|
|
10293
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10294
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10295
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10296
|
+
}, z.core.$strip>>;
|
|
10297
|
+
parallelIncrementalEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
10298
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10299
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10300
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10301
|
+
}, z.core.$strip>>;
|
|
10302
|
+
parallelFullSyncEventPullsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
10303
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10304
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10305
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10306
|
+
}, z.core.$strip>>;
|
|
10307
|
+
parallelFlowRuns: z.ZodOptional<z.ZodObject<{
|
|
10308
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10309
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10310
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10311
|
+
}, z.core.$strip>>;
|
|
10312
|
+
parallelFlowRunsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
10313
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10314
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10315
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10316
|
+
}, z.core.$strip>>;
|
|
10317
|
+
parallelApiRequests: z.ZodOptional<z.ZodObject<{
|
|
10318
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10319
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10320
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10321
|
+
}, z.core.$strip>>;
|
|
10322
|
+
parallelSseRequests: z.ZodOptional<z.ZodObject<{
|
|
10323
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10324
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10325
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10326
|
+
}, z.core.$strip>>;
|
|
10327
|
+
parallelBackgroundJobs: z.ZodOptional<z.ZodObject<{
|
|
10328
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10329
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10330
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10331
|
+
}, z.core.$strip>>;
|
|
10332
|
+
parallelEventLogs: z.ZodOptional<z.ZodObject<{
|
|
10333
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10334
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10335
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10336
|
+
}, z.core.$strip>>;
|
|
10337
|
+
parallelEventLogsPerConnection: z.ZodOptional<z.ZodObject<{
|
|
10338
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10339
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10340
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10341
|
+
}, z.core.$strip>>;
|
|
10342
|
+
ParallelWriteDatabaseRequests: z.ZodOptional<z.ZodObject<{
|
|
10343
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10344
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10345
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10346
|
+
}, z.core.$strip>>;
|
|
10347
|
+
fileUploadsMbPerHour: z.ZodOptional<z.ZodObject<{
|
|
10348
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10349
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10350
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10351
|
+
}, z.core.$strip>>;
|
|
10352
|
+
apiRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
10353
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10354
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10355
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10356
|
+
}, z.core.$strip>>;
|
|
10357
|
+
apiRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
10358
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10359
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10360
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10361
|
+
}, z.core.$strip>>;
|
|
10362
|
+
webhookRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
10363
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10364
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10365
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10366
|
+
}, z.core.$strip>>;
|
|
10367
|
+
webhookRequestsPerHour: z.ZodOptional<z.ZodObject<{
|
|
10368
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10369
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10370
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10371
|
+
}, z.core.$strip>>;
|
|
10372
|
+
workspaceElementCreationsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
10373
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10374
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10375
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10376
|
+
}, z.core.$strip>>;
|
|
10377
|
+
workspaceElementCreationsPerHour: z.ZodOptional<z.ZodObject<{
|
|
10378
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10379
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10380
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10381
|
+
}, z.core.$strip>>;
|
|
10382
|
+
createDatabaseRequestsPerSecond: z.ZodOptional<z.ZodObject<{
|
|
10383
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10384
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10385
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10386
|
+
}, z.core.$strip>>;
|
|
10387
|
+
totalNumberOfCustomers: z.ZodOptional<z.ZodObject<{
|
|
10388
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10389
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10390
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10391
|
+
}, z.core.$strip>>;
|
|
10392
|
+
totalNumberOfConnections: z.ZodOptional<z.ZodObject<{
|
|
10393
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10394
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10395
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10396
|
+
}, z.core.$strip>>;
|
|
10397
|
+
totalNumberOfWorkspaceElements: z.ZodOptional<z.ZodObject<{
|
|
10398
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10399
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10400
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10401
|
+
}, z.core.$strip>>;
|
|
10402
|
+
parallelApiRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
10403
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10404
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10405
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10406
|
+
}, z.core.$strip>>;
|
|
10407
|
+
parallelBackgroundJobsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
10408
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10409
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10410
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10411
|
+
}, z.core.$strip>>;
|
|
10412
|
+
apiRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
10413
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10414
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10415
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10416
|
+
}, z.core.$strip>>;
|
|
10417
|
+
apiRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
10418
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10419
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10420
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10421
|
+
}, z.core.$strip>>;
|
|
10422
|
+
webhookRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
10423
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10424
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10425
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10426
|
+
}, z.core.$strip>>;
|
|
10427
|
+
webhookRequestsPerCustomerPerHour: z.ZodOptional<z.ZodObject<{
|
|
10428
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10429
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10430
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10431
|
+
}, z.core.$strip>>;
|
|
10432
|
+
externalEventsPerCustomerPerDay: z.ZodOptional<z.ZodObject<{
|
|
10433
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10434
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10435
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10436
|
+
}, z.core.$strip>>;
|
|
10437
|
+
createDatabaseRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
10438
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10439
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10440
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10441
|
+
}, z.core.$strip>>;
|
|
10442
|
+
updateDatabaseRequestsPerCustomerPerSecond: z.ZodOptional<z.ZodObject<{
|
|
10443
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10444
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10445
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10446
|
+
}, z.core.$strip>>;
|
|
10447
|
+
parallelWriteDatabaseRequestsPerCustomer: z.ZodOptional<z.ZodObject<{
|
|
10448
|
+
value: z.ZodOptional<z.ZodNumber>;
|
|
10449
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
10450
|
+
unit: z.ZodEnum<typeof LimitUnits>;
|
|
10451
|
+
}, z.core.$strip>>;
|
|
10452
|
+
}, z.core.$strip>>;
|
|
10453
|
+
settings: z.ZodOptional<z.ZodObject<{
|
|
10454
|
+
enableApiLogs: z.ZodOptional<z.ZodBoolean>;
|
|
10455
|
+
enableWebhookLogs: z.ZodOptional<z.ZodBoolean>;
|
|
10456
|
+
enableActionRunLogs: z.ZodOptional<z.ZodBoolean>;
|
|
10457
|
+
disableSecretKeyAuth: z.ZodOptional<z.ZodBoolean>;
|
|
10458
|
+
}, z.core.$strip>>;
|
|
10459
|
+
type: z.ZodOptional<z.ZodEnum<typeof WorkspaceType>>;
|
|
10460
|
+
jwksUri: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
10461
|
+
isTrial: z.ZodOptional<z.ZodBoolean>;
|
|
10462
|
+
isThrottled: z.ZodOptional<z.ZodBoolean>;
|
|
10463
|
+
isDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
10464
|
+
isBackgroundJobsDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
10465
|
+
}, z.core.$strip>>;
|
|
10466
|
+
superAdminToken: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
10467
|
+
orgs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10468
|
+
id: z.ZodString;
|
|
10469
|
+
key: z.ZodString;
|
|
10470
|
+
name: z.ZodString;
|
|
10471
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
10472
|
+
updatedAt: z.ZodCoercedDate<unknown>;
|
|
10473
|
+
trialEndDate: z.ZodOptional<z.ZodString>;
|
|
10474
|
+
lastTrialExtensionDate: z.ZodOptional<z.ZodString>;
|
|
10475
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
10476
|
+
numberOfWorkspaces: z.ZodOptional<z.ZodNumber>;
|
|
10477
|
+
todayUsage: z.ZodOptional<z.ZodNumber>;
|
|
10478
|
+
lastThirtyDayUsage: z.ZodOptional<z.ZodNumber>;
|
|
10479
|
+
membraneAgentLastThirtyDaysUsage: z.ZodOptional<z.ZodNumber>;
|
|
10480
|
+
membraneExpertCreditsCapPerMonth: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
10481
|
+
}, z.core.$strip>>;
|
|
10482
|
+
thirtyDayTotalCredits: z.ZodOptional<z.ZodNumber>;
|
|
10483
|
+
lastThirtyDayUsagePercent: z.ZodOptional<z.ZodNumber>;
|
|
10484
|
+
todayUsagePercent: z.ZodOptional<z.ZodNumber>;
|
|
10485
|
+
domains: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10486
|
+
featureFlags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10487
|
+
freeAiMonthlyCredits: z.ZodOptional<z.ZodNumber>;
|
|
10488
|
+
paidAiCredits: z.ZodOptional<z.ZodNumber>;
|
|
10489
|
+
stripeCustomerId: z.ZodOptional<z.ZodString>;
|
|
10490
|
+
}, z.core.$strip>>>;
|
|
10491
|
+
permissions: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
10492
|
+
message: z.ZodOptional<z.ZodString>;
|
|
10493
|
+
error: z.ZodOptional<z.ZodString>;
|
|
10494
|
+
}, z.core.$strip>;
|
|
10495
|
+
|
|
10496
|
+
declare const PlatformUserSchema: z.ZodObject<{
|
|
10497
|
+
id: z.ZodString;
|
|
10498
|
+
email: z.ZodString;
|
|
10499
|
+
name: z.ZodString;
|
|
10500
|
+
trialRequested: z.ZodBoolean;
|
|
10501
|
+
introVideoStatus: z.ZodOptional<z.ZodString>;
|
|
10502
|
+
isEligible: z.ZodOptional<z.ZodBoolean>;
|
|
10503
|
+
emailVerified: z.ZodOptional<z.ZodBoolean>;
|
|
10504
|
+
}, z.core.$strip>;
|
|
10505
|
+
declare const FullPlatformUser: z.ZodObject<{
|
|
10506
|
+
id: z.ZodString;
|
|
10507
|
+
auth0Id: z.ZodOptional<z.ZodString>;
|
|
10508
|
+
email: z.ZodString;
|
|
10509
|
+
name: z.ZodString;
|
|
10510
|
+
defaultAccountId: z.ZodOptional<z.ZodString>;
|
|
10511
|
+
defaultWorkspaceId: z.ZodOptional<z.ZodString>;
|
|
10512
|
+
isAdmin: z.ZodOptional<z.ZodBoolean>;
|
|
10513
|
+
trialRequested: z.ZodBoolean;
|
|
10514
|
+
pat: z.ZodOptional<z.ZodString>;
|
|
10515
|
+
introVideoStatus: z.ZodOptional<z.ZodString>;
|
|
10516
|
+
isEligible: z.ZodOptional<z.ZodBoolean>;
|
|
10517
|
+
emailVerified: z.ZodOptional<z.ZodBoolean>;
|
|
10518
|
+
}, z.core.$strip>;
|
|
9622
10519
|
|
|
9623
10520
|
declare enum WebhookTypeEnum {
|
|
9624
10521
|
USER_INVITED_TO_ORG = "user-invited-to-org",
|
|
@@ -9918,19 +10815,29 @@ declare const AgentSession: z.ZodObject<{
|
|
|
9918
10815
|
storedMessagesUri: z.ZodOptional<z.ZodString>;
|
|
9919
10816
|
sessionFilesZipUri: z.ZodOptional<z.ZodString>;
|
|
9920
10817
|
logs: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
10818
|
+
usage: z.ZodOptional<z.ZodNumber>;
|
|
9921
10819
|
}, z.core.$strip>;
|
|
9922
10820
|
type AgentSession = z.infer<typeof AgentSession>;
|
|
9923
10821
|
declare const CreateAgentSession: z.ZodObject<{
|
|
9924
10822
|
workspaceElementType: z.ZodEnum<typeof WorkspaceElementType>;
|
|
9925
10823
|
workspaceElementId: z.ZodString;
|
|
9926
10824
|
prompt: z.ZodString;
|
|
10825
|
+
testCustomerId: z.ZodOptional<z.ZodString>;
|
|
9927
10826
|
}, z.core.$strip>;
|
|
9928
10827
|
type CreateAgentSession = z.infer<typeof CreateAgentSession>;
|
|
9929
10828
|
declare const AgentSessionInputSchema: z.ZodObject<{
|
|
9930
|
-
input: z.
|
|
10829
|
+
input: z.ZodString;
|
|
10830
|
+
synthetic: z.ZodOptional<z.ZodBoolean>;
|
|
9931
10831
|
}, z.core.$strip>;
|
|
9932
10832
|
type AgentSessionInput = z.infer<typeof AgentSessionInputSchema>;
|
|
9933
10833
|
|
|
10834
|
+
declare enum InteractiveMcpToolName {
|
|
10835
|
+
REQUEST_TEST_CONNECTION = "requestTestConnection"
|
|
10836
|
+
}
|
|
10837
|
+
declare enum InteractiveMcpToolStatus {
|
|
10838
|
+
AWAITING_USER_INPUT = "awaiting_user_input"
|
|
10839
|
+
}
|
|
10840
|
+
|
|
9934
10841
|
declare const zodBooleanCoercion: () => z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>;
|
|
9935
10842
|
|
|
9936
10843
|
interface OpenMembraneConfigurationOptions extends OpenConfigurationOptions {
|
|
@@ -10017,5 +10924,5 @@ declare function getDefaultMembraneConfigLoader(): MembraneConfigLoader;
|
|
|
10017
10924
|
declare function loadMembraneConfig(cwd?: string, options?: LoadConfigOptions): PartialMembraneConfig;
|
|
10018
10925
|
declare function hasMembraneCredentials(cwd?: string): boolean;
|
|
10019
10926
|
|
|
10020
|
-
export { ACTIONS, AccessDeniedError, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionType, ActionsAccessor, AgentSession, AgentSessionInputSchema, AgentSessionStatus, AlertSeverity, AlertStatus, AlertType, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypesAccessor, AppliedToIntegrations, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnection, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BasePackage, BaseScreen, BaseWorkspaceElement, CONFIG_FILE_NAME, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionError, ConnectionErrorKey, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionProxy, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionsAccessor, ConnectorAuthMethodTypes, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType, ConnectorFileUpdateType, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorStatus, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateConnectionRequest, CreateCustomerRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreatePackageRequest, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaType, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, ErrorData, ErrorDataSchema, ErrorType, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindPackagesQuery, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceNode, FlowInstanceNodeState, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowsAccessor, Formula, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhooksState, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAuthOption, IntegrationAuthUi, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationsAccessor, InternalError, InvalidLocatorError, LimitUnits, ListActionInstancesForConnectionQuery, ListDataSourceInstancesForConnectionQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListFlowInstancesForConnectionQuery, LogRecordType, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, axios as MembraneAxiosInstance, MembraneClient, MembraneConfigLoader, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OrgLimitsType, OrgUserRole, OrgUserStatus, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, RATE_LIMITS, RateLimitExceededError, RateLimits, ResetFlowInstanceOptions, RunActionRequest, RunFlowApiRequest, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateCustomerRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdatePackageRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, WorkspaceElementDependencyType, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceEventType, WorkspaceNotificationType, WorkspaceOnboardingStep, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDefaultMembraneConfigLoader, getDownstreamNodeKeys, getErrorFromData, getEventMethodFileKey, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, hasMembraneCredentials, injectFormulaCatalog, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isSameDataLocation, isSchemaEmpty, isStream, isValidLocator, loadMembraneConfig, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, membraneConfigSchema, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
10021
|
-
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, Alert, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, BaseConnector, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, ConfigurationStateResult, Connection, ConnectionUiSpec, Connector, ConnectorApiType, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthOAuth1, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthType, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorOperationHandler, ConnectorOperationMethod, ConnectorSpec, ConnectorUdmCollectionMapping, ConnectorUdmListLitem, ConnectorUdmSpec, ConnectorUiSpec, CopilotActivityNotificationData, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateDataLinkTableRequest, CreateFieldMappingInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateScreenRequest, CreateUserRequest, Customer, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocationPointer, DataLocator, DataRecord, DataSource, DataSourceInstance, DataSourceInstanceSelector, DataSourceSelector, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstance, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindDataLinkQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventPullsQuery, FindExternalEventSubscriptionsQuery, FindFieldMappingInstancesQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindScreensQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, IntegrationSpecificElementSelector, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LoadConfigOptions, LogRecord, LookupValue, MapFormulaValue, MappingItem,
|
|
10927
|
+
export { ACTIONS, AccessDeniedError, AccountResponse, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionType, ActionsAccessor, AgentSession, AgentSessionInputSchema, AgentSessionStatus, AlertSeverity, AlertStatus, AlertType, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypesAccessor, AppPublicKey, AppSchema, AppliedToIntegrations, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnection, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BasePackage, BaseScreen, BaseWorkspaceElement, CONFIG_FILE_NAME, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionError, ConnectionErrorKey, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionProxy, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionsAccessor, ConnectorAuthMethodTypes, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType, ConnectorFileUpdateType, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorStatus, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateConnectionRequest, CreateCustomerRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreatePackageRequest, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaType, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineWorkspaceSettingsSchema, ErrorData, ErrorDataSchema, ErrorType, 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, FindActionsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindPackagesQuery, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceNode, FlowInstanceNodeState, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowsAccessor, Formula, FullPlatformUser, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAuthOption, IntegrationAuthUi, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationsAccessor, InteractiveMcpToolName, InteractiveMcpToolStatus, InternalError, InvalidLocatorError, LimitUnits, ListActionInstancesForConnectionQuery, ListDataSourceInstancesForConnectionQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListFlowInstancesForConnectionQuery, LogRecordType, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneConfigLoader, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OrgLimits, OrgLimitsType, OrgSchema, OrgUserRole, OrgUserStatus, OrgWorkspaceSchema, OrgWorkspaceUser, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PlatformUserSchema, RATE_LIMITS, RateLimitExceededError, RateLimits, ResetFlowInstanceOptions, RunActionRequest, RunFlowApiRequest, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateCustomerRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdatePackageRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspaceOnboardingStep, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDefaultMembraneConfigLoader, getDownstreamNodeKeys, getErrorFromData, getEventMethodFileKey, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, hasMembraneCredentials, injectFormulaCatalog, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isSameDataLocation, isSchemaEmpty, isStream, isValidLocator, loadMembraneConfig, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, membraneConfigSchema, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
10928
|
+
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, Alert, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, BaseConnector, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, ConfigurationStateResult, Connection, ConnectionUiSpec, Connector, ConnectorApiType, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthOAuth1, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthType, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorOperationHandler, ConnectorOperationMethod, ConnectorSpec, ConnectorUdmCollectionMapping, ConnectorUdmListLitem, ConnectorUdmSpec, ConnectorUiSpec, CopilotActivityNotificationData, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateDataLinkTableRequest, CreateFieldMappingInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateScreenRequest, CreateUserRequest, Customer, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocationPointer, DataLocator, DataRecord, DataSource, DataSourceInstance, DataSourceInstanceSelector, DataSourceSelector, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstance, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindDataLinkQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventPullsQuery, FindExternalEventSubscriptionsQuery, FindFieldMappingInstancesQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindScreensQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, IntegrationSpecificElementSelector, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LoadConfigOptions, LogRecord, LookupValue, MapFormulaValue, MappingItem, MembraneConfig, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, Org, OrgUser, OrgWorkspace, Package, PartialMembraneConfig, PatchSchemaOption, PlatformUser, PullLatestRecordsEventOutput, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, ScreenSelector, Self, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateDataLinkTableRequest, UpdateFieldMappingInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateScreenRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, Workspace, WorkspaceElementCalculateStateResult, WorkspaceElementChange, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceExportComparison, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|