@membranehq/sdk 0.6.0 → 0.7.1
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 +177 -804
- package/dist/bundle.js +23 -19
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/action-instances-accessors.d.ts +8 -8
- package/dist/dts/accessors/actions-accessors.d.ts +7 -7
- package/dist/dts/accessors/app-data-schema-instances-accessors.d.ts +3 -3
- package/dist/dts/accessors/app-data-schemas-accessors.d.ts +3 -3
- package/dist/dts/accessors/app-event-subscriptions-accessors.d.ts +3 -3
- package/dist/dts/accessors/app-event-types-accessors.d.ts +3 -3
- package/dist/dts/accessors/base-accessors.d.ts +8 -8
- package/dist/dts/accessors/connections-accessors.d.ts +8 -8
- package/dist/dts/accessors/customers-accessors.d.ts +5 -5
- package/dist/dts/accessors/data-link-table-instances-accessors.d.ts +3 -3
- package/dist/dts/accessors/data-link-tables-accessors.d.ts +3 -3
- package/dist/dts/accessors/data-sources-accessors.d.ts +14 -14
- package/dist/dts/accessors/external-event-subscriptions-accessors.d.ts +3 -3
- package/dist/dts/accessors/field-mapping-instances-accessors.d.ts +7 -7
- package/dist/dts/accessors/field-mappings-accessors.d.ts +7 -7
- package/dist/dts/accessors/flow-instances-accessors.d.ts +8 -8
- package/dist/dts/accessors/flow-runs-accessors.d.ts +3 -3
- package/dist/dts/accessors/flows-accessors.d.ts +7 -7
- package/dist/dts/accessors/integrations-accessors.d.ts +3 -3
- package/dist/dts/accessors/scenarios-accessors.d.ts +3 -3
- package/dist/dts/accessors/screens-accessors.d.ts +3 -3
- package/dist/dts/api-client.d.ts +3 -3
- package/dist/dts/auth/accessors.d.ts +2 -2
- package/dist/dts/client.d.ts +5 -5
- package/dist/dts/data-builder/index.d.ts +1 -1
- package/dist/dts/data-schema/arbitrary-fields.test.d.ts +1 -0
- package/dist/dts/data-schema/types.d.ts +1 -0
- package/dist/dts/error-tools/index.d.ts +1 -1
- package/dist/dts/errors/index.d.ts +14 -14
- package/dist/dts/formulas/base.d.ts +3 -1
- package/dist/dts/index.d.ts +2 -1
- package/dist/dts/index.umd.d.ts +2 -2
- package/dist/dts/integration-elements/connection-level-element.accessor.d.ts +5 -5
- package/dist/dts/integration-elements/integration-level-element.accessor.d.ts +5 -5
- package/dist/dts/orgs/types.d.ts +1 -0
- package/dist/dts/workspace-elements/api/action-instances-api.d.ts +0 -3
- package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +20 -20
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +40 -40
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +0 -12
- package/dist/dts/workspace-elements/api/flows-api.d.ts +10 -623
- package/dist/dts/workspace-elements/base/action-instances/types.d.ts +0 -3
- package/dist/dts/workspace-elements/base/field-mappings/types.d.ts +12 -12
- package/dist/dts/workspace-elements/base/flow-instances/types.d.ts +0 -3
- package/dist/dts/workspace-elements/errors.d.ts +2 -2
- package/dist/index.d.ts +212 -842
- package/dist/index.js +84 -73
- package/dist/index.js.map +1 -1
- package/dist/index.module.d.mts +212 -842
- package/dist/index.module.mjs +79 -69
- package/dist/index.module.mjs.map +1 -1
- package/package.json +1 -1
package/dist/bundle.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { AxiosRequestConfig } from 'axios';
|
|
|
2
2
|
import * as zod from 'zod';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
|
|
5
|
-
interface
|
|
5
|
+
interface MembraneClientOptions {
|
|
6
6
|
token?: string;
|
|
7
7
|
fetchToken?: () => Promise<string>;
|
|
8
8
|
credentials?: any;
|
|
@@ -11,12 +11,12 @@ interface IntegrationAppClientOptions {
|
|
|
11
11
|
uiUri?: string;
|
|
12
12
|
accessToken?: string;
|
|
13
13
|
}
|
|
14
|
-
declare class
|
|
14
|
+
declare class MembraneApiClient {
|
|
15
15
|
apiUri: string;
|
|
16
16
|
uiUri: string;
|
|
17
17
|
token?: string;
|
|
18
18
|
protected fetchToken?: () => Promise<string>;
|
|
19
|
-
constructor({ uiUri, apiUri, accessToken, token, fetchToken, fetchCredentials, credentials, }?:
|
|
19
|
+
constructor({ uiUri, apiUri, accessToken, token, fetchToken, fetchCredentials, credentials, }?: MembraneClientOptions);
|
|
20
20
|
setCredentials(credentials: any): Promise<any>;
|
|
21
21
|
getToken(): Promise<string>;
|
|
22
22
|
get<T = any>(uri: string, queryParams?: Record<string, any>, options?: AxiosRequestConfig): Promise<T>;
|
|
@@ -189,12 +189,12 @@ type SelectorType = {
|
|
|
189
189
|
} | string;
|
|
190
190
|
declare class ElementAccessor<Element, UpdateRequest, Selector extends SelectorType = string> {
|
|
191
191
|
protected options: {
|
|
192
|
-
client:
|
|
192
|
+
client: MembraneApiClient;
|
|
193
193
|
path: string;
|
|
194
194
|
selector: string | Selector;
|
|
195
195
|
};
|
|
196
196
|
constructor(options: {
|
|
197
|
-
client:
|
|
197
|
+
client: MembraneApiClient;
|
|
198
198
|
path: string;
|
|
199
199
|
selector: string | Selector;
|
|
200
200
|
});
|
|
@@ -209,29 +209,29 @@ declare class ElementAccessor<Element, UpdateRequest, Selector extends SelectorT
|
|
|
209
209
|
declare class ElementListAccessor<Element, FindQuery, CreateRequest> {
|
|
210
210
|
private client;
|
|
211
211
|
private path;
|
|
212
|
-
constructor(client:
|
|
212
|
+
constructor(client: MembraneApiClient, path: string);
|
|
213
213
|
find(query?: FindQuery): Promise<PaginationResponse<Element>>;
|
|
214
214
|
findAll(query?: Omit<FindQuery, 'limit'>): Promise<Element[]>;
|
|
215
215
|
create(data: CreateRequest): Promise<Element>;
|
|
216
216
|
}
|
|
217
217
|
declare class ElementInstanceListAccessor<ElementInstance extends BaseElementInstance, FindQuery> {
|
|
218
|
-
protected client:
|
|
218
|
+
protected client: MembraneApiClient;
|
|
219
219
|
private path;
|
|
220
|
-
constructor(client:
|
|
220
|
+
constructor(client: MembraneApiClient, path: string);
|
|
221
221
|
find(query?: FindQuery): Promise<PaginationResponse<ElementInstance>>;
|
|
222
222
|
}
|
|
223
223
|
declare class ElementInstanceAccessor<ElementInstance extends BaseElementInstance, Selector extends {
|
|
224
224
|
id?: string;
|
|
225
225
|
}, CreateRequest, UpdateRequest> {
|
|
226
226
|
protected options: {
|
|
227
|
-
client:
|
|
227
|
+
client: MembraneApiClient;
|
|
228
228
|
instancePath: string;
|
|
229
229
|
selector: string | Selector;
|
|
230
230
|
type?: WorkspaceElementType;
|
|
231
231
|
};
|
|
232
232
|
private id;
|
|
233
233
|
constructor(options: {
|
|
234
|
-
client:
|
|
234
|
+
client: MembraneApiClient;
|
|
235
235
|
instancePath: string;
|
|
236
236
|
selector: string | Selector;
|
|
237
237
|
type?: WorkspaceElementType;
|
|
@@ -250,12 +250,12 @@ declare class ElementInstanceAccessor<ElementInstance extends BaseElementInstanc
|
|
|
250
250
|
}
|
|
251
251
|
|
|
252
252
|
declare class IntegrationLevelElementAccessor<Element, UpdateElementData> {
|
|
253
|
-
protected client:
|
|
253
|
+
protected client: MembraneApiClient;
|
|
254
254
|
protected integrationSelector: string;
|
|
255
255
|
protected elementSelector: string;
|
|
256
256
|
protected elementKey: string;
|
|
257
257
|
protected endpoint: string;
|
|
258
|
-
constructor(client:
|
|
258
|
+
constructor(client: MembraneApiClient, integrationSelector: string, elementSelector: string, elementKey: string);
|
|
259
259
|
getUniqueIdentifier(): string;
|
|
260
260
|
get(): Promise<Element>;
|
|
261
261
|
patch(data: Partial<UpdateElementData>): Promise<Element>;
|
|
@@ -264,11 +264,11 @@ declare class IntegrationLevelElementAccessor<Element, UpdateElementData> {
|
|
|
264
264
|
reset(): Promise<Element>;
|
|
265
265
|
}
|
|
266
266
|
declare class IntegrationLevelElementsListAccessor<Element, Query, CreateElementData> {
|
|
267
|
-
protected client:
|
|
267
|
+
protected client: MembraneApiClient;
|
|
268
268
|
protected integrationSelector: string;
|
|
269
269
|
protected elementKey: string;
|
|
270
270
|
protected endpoint: string;
|
|
271
|
-
constructor(client:
|
|
271
|
+
constructor(client: MembraneApiClient, integrationSelector: string, elementKey: string);
|
|
272
272
|
list(query?: Query): Promise<PaginationResponse<Element>>;
|
|
273
273
|
create(data: CreateElementData): Promise<Element>;
|
|
274
274
|
}
|
|
@@ -392,6 +392,7 @@ interface DataSchema {
|
|
|
392
392
|
isSensitive?: boolean;
|
|
393
393
|
referenceCollectionPath?: string;
|
|
394
394
|
referenceCollectionUri?: string;
|
|
395
|
+
[key: string]: any;
|
|
395
396
|
}
|
|
396
397
|
declare const DataSchema: z.ZodType<DataSchema>;
|
|
397
398
|
|
|
@@ -2669,7 +2670,6 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
2669
2670
|
inputSchema: z.ZodOptional<z.ZodAny>;
|
|
2670
2671
|
config: z.ZodOptional<z.ZodAny>;
|
|
2671
2672
|
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
2672
|
-
isOutdated: z.ZodOptional<z.ZodBoolean>;
|
|
2673
2673
|
} & {
|
|
2674
2674
|
user: z.ZodOptional<z.ZodObject<{
|
|
2675
2675
|
id: z.ZodString;
|
|
@@ -2807,7 +2807,6 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
2807
2807
|
parentRevision?: string | undefined;
|
|
2808
2808
|
outputSchema?: any;
|
|
2809
2809
|
universalParentId?: string | undefined;
|
|
2810
|
-
isOutdated?: boolean | undefined;
|
|
2811
2810
|
parent?: {
|
|
2812
2811
|
key: string;
|
|
2813
2812
|
id: string;
|
|
@@ -2865,7 +2864,6 @@ declare const ActionInstanceApiResponse: z.ZodObject<{
|
|
|
2865
2864
|
parentRevision?: string | undefined;
|
|
2866
2865
|
outputSchema?: any;
|
|
2867
2866
|
universalParentId?: string | undefined;
|
|
2868
|
-
isOutdated?: boolean | undefined;
|
|
2869
2867
|
parent?: {
|
|
2870
2868
|
key: string;
|
|
2871
2869
|
id: string;
|
|
@@ -4964,163 +4962,19 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
4964
4962
|
appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4965
4963
|
element: z.ZodObject<{
|
|
4966
4964
|
id: z.ZodString;
|
|
4967
|
-
key: z.ZodOptional<z.ZodString>;
|
|
4968
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
4969
|
-
description: z.ZodOptional<z.ZodString>;
|
|
4970
|
-
name: z.ZodString;
|
|
4971
|
-
state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
|
|
4972
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, z.ZodTypeDef, ErrorDataSchema>, "many">>;
|
|
4973
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
4974
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
4975
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
4976
|
-
} & {
|
|
4977
4965
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
4978
|
-
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
4979
|
-
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
4980
|
-
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
|
|
4981
|
-
nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4982
|
-
type: z.ZodOptional<z.ZodString>;
|
|
4983
|
-
version: z.ZodOptional<z.ZodNumber>;
|
|
4984
|
-
name: z.ZodOptional<z.ZodString>;
|
|
4985
|
-
description: z.ZodOptional<z.ZodString>;
|
|
4986
|
-
config: z.ZodOptional<z.ZodAny>;
|
|
4987
|
-
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
4988
|
-
onError: z.ZodOptional<z.ZodEnum<["stop", "continue"]>>;
|
|
4989
|
-
ui: z.ZodOptional<z.ZodAny>;
|
|
4990
|
-
inputSchema: z.ZodOptional<z.ZodAny>;
|
|
4991
|
-
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
4992
|
-
outputExample: z.ZodOptional<z.ZodAny>;
|
|
4993
|
-
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4994
|
-
key: z.ZodOptional<z.ZodString>;
|
|
4995
|
-
filter: z.ZodOptional<z.ZodAny>;
|
|
4996
|
-
name: z.ZodOptional<z.ZodString>;
|
|
4997
|
-
}, "strip", z.ZodTypeAny, {
|
|
4998
|
-
key?: string | undefined;
|
|
4999
|
-
filter?: any;
|
|
5000
|
-
name?: string | undefined;
|
|
5001
|
-
}, {
|
|
5002
|
-
key?: string | undefined;
|
|
5003
|
-
filter?: any;
|
|
5004
|
-
name?: string | undefined;
|
|
5005
|
-
}>, "many">>;
|
|
5006
|
-
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
5007
|
-
}, "strip", z.ZodTypeAny, {
|
|
5008
|
-
concurrency?: number | undefined;
|
|
5009
|
-
type?: string | undefined;
|
|
5010
|
-
name?: string | undefined;
|
|
5011
|
-
description?: string | undefined;
|
|
5012
|
-
inputSchema?: any;
|
|
5013
|
-
config?: any;
|
|
5014
|
-
isCustomized?: boolean | undefined;
|
|
5015
|
-
outputSchema?: any;
|
|
5016
|
-
version?: number | undefined;
|
|
5017
|
-
onError?: "stop" | "continue" | undefined;
|
|
5018
|
-
ui?: any;
|
|
5019
|
-
outputExample?: any;
|
|
5020
|
-
links?: {
|
|
5021
|
-
key?: string | undefined;
|
|
5022
|
-
filter?: any;
|
|
5023
|
-
name?: string | undefined;
|
|
5024
|
-
}[] | undefined;
|
|
5025
|
-
}, {
|
|
5026
|
-
concurrency?: number | undefined;
|
|
5027
|
-
type?: string | undefined;
|
|
5028
|
-
name?: string | undefined;
|
|
5029
|
-
description?: string | undefined;
|
|
5030
|
-
inputSchema?: any;
|
|
5031
|
-
config?: any;
|
|
5032
|
-
isCustomized?: boolean | undefined;
|
|
5033
|
-
outputSchema?: any;
|
|
5034
|
-
version?: number | undefined;
|
|
5035
|
-
onError?: "stop" | "continue" | undefined;
|
|
5036
|
-
ui?: any;
|
|
5037
|
-
outputExample?: any;
|
|
5038
|
-
links?: {
|
|
5039
|
-
key?: string | undefined;
|
|
5040
|
-
filter?: any;
|
|
5041
|
-
name?: string | undefined;
|
|
5042
|
-
}[] | undefined;
|
|
5043
|
-
}>>>;
|
|
5044
|
-
autoCreateInstances: z.ZodOptional<z.ZodBoolean>;
|
|
5045
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
5046
|
-
revision: z.ZodString;
|
|
5047
4966
|
customized: z.ZodOptional<z.ZodBoolean>;
|
|
4967
|
+
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
5048
4968
|
}, "strip", z.ZodTypeAny, {
|
|
5049
4969
|
id: string;
|
|
5050
|
-
name: string;
|
|
5051
|
-
revision: string;
|
|
5052
|
-
key?: string | undefined;
|
|
5053
|
-
uuid?: string | undefined;
|
|
5054
|
-
description?: string | undefined;
|
|
5055
|
-
state?: WorkspaceElementState | undefined;
|
|
5056
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
5057
|
-
createdAt?: string | undefined;
|
|
5058
|
-
updatedAt?: string | undefined;
|
|
5059
|
-
archivedAt?: string | undefined;
|
|
5060
|
-
isDeactivated?: boolean | undefined;
|
|
5061
4970
|
integrationId?: string | undefined;
|
|
5062
4971
|
customized?: boolean | undefined;
|
|
5063
|
-
parametersSchema?: DataSchema | undefined;
|
|
5064
4972
|
universalFlowId?: string | undefined;
|
|
5065
|
-
universalFlowRevision?: string | undefined;
|
|
5066
|
-
nodes?: Record<string, {
|
|
5067
|
-
concurrency?: number | undefined;
|
|
5068
|
-
type?: string | undefined;
|
|
5069
|
-
name?: string | undefined;
|
|
5070
|
-
description?: string | undefined;
|
|
5071
|
-
inputSchema?: any;
|
|
5072
|
-
config?: any;
|
|
5073
|
-
isCustomized?: boolean | undefined;
|
|
5074
|
-
outputSchema?: any;
|
|
5075
|
-
version?: number | undefined;
|
|
5076
|
-
onError?: "stop" | "continue" | undefined;
|
|
5077
|
-
ui?: any;
|
|
5078
|
-
outputExample?: any;
|
|
5079
|
-
links?: {
|
|
5080
|
-
key?: string | undefined;
|
|
5081
|
-
filter?: any;
|
|
5082
|
-
name?: string | undefined;
|
|
5083
|
-
}[] | undefined;
|
|
5084
|
-
}> | undefined;
|
|
5085
|
-
autoCreateInstances?: boolean | undefined;
|
|
5086
4973
|
}, {
|
|
5087
4974
|
id: string;
|
|
5088
|
-
name: string;
|
|
5089
|
-
revision: string;
|
|
5090
|
-
key?: string | undefined;
|
|
5091
|
-
uuid?: string | undefined;
|
|
5092
|
-
description?: string | undefined;
|
|
5093
|
-
state?: WorkspaceElementState | undefined;
|
|
5094
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
5095
|
-
createdAt?: string | undefined;
|
|
5096
|
-
updatedAt?: string | undefined;
|
|
5097
|
-
archivedAt?: string | undefined;
|
|
5098
|
-
isDeactivated?: boolean | undefined;
|
|
5099
4975
|
integrationId?: string | undefined;
|
|
5100
4976
|
customized?: boolean | undefined;
|
|
5101
|
-
parametersSchema?: DataSchema | undefined;
|
|
5102
4977
|
universalFlowId?: string | undefined;
|
|
5103
|
-
universalFlowRevision?: string | undefined;
|
|
5104
|
-
nodes?: Record<string, {
|
|
5105
|
-
concurrency?: number | undefined;
|
|
5106
|
-
type?: string | undefined;
|
|
5107
|
-
name?: string | undefined;
|
|
5108
|
-
description?: string | undefined;
|
|
5109
|
-
inputSchema?: any;
|
|
5110
|
-
config?: any;
|
|
5111
|
-
isCustomized?: boolean | undefined;
|
|
5112
|
-
outputSchema?: any;
|
|
5113
|
-
version?: number | undefined;
|
|
5114
|
-
onError?: "stop" | "continue" | undefined;
|
|
5115
|
-
ui?: any;
|
|
5116
|
-
outputExample?: any;
|
|
5117
|
-
links?: {
|
|
5118
|
-
key?: string | undefined;
|
|
5119
|
-
filter?: any;
|
|
5120
|
-
name?: string | undefined;
|
|
5121
|
-
}[] | undefined;
|
|
5122
|
-
}> | undefined;
|
|
5123
|
-
autoCreateInstances?: boolean | undefined;
|
|
5124
4978
|
}>;
|
|
5125
4979
|
integration: z.ZodObject<{
|
|
5126
4980
|
id: z.ZodString;
|
|
@@ -5252,42 +5106,9 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
5252
5106
|
};
|
|
5253
5107
|
element: {
|
|
5254
5108
|
id: string;
|
|
5255
|
-
name: string;
|
|
5256
|
-
revision: string;
|
|
5257
|
-
key?: string | undefined;
|
|
5258
|
-
uuid?: string | undefined;
|
|
5259
|
-
description?: string | undefined;
|
|
5260
|
-
state?: WorkspaceElementState | undefined;
|
|
5261
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
5262
|
-
createdAt?: string | undefined;
|
|
5263
|
-
updatedAt?: string | undefined;
|
|
5264
|
-
archivedAt?: string | undefined;
|
|
5265
|
-
isDeactivated?: boolean | undefined;
|
|
5266
5109
|
integrationId?: string | undefined;
|
|
5267
5110
|
customized?: boolean | undefined;
|
|
5268
|
-
parametersSchema?: DataSchema | undefined;
|
|
5269
5111
|
universalFlowId?: string | undefined;
|
|
5270
|
-
universalFlowRevision?: string | undefined;
|
|
5271
|
-
nodes?: Record<string, {
|
|
5272
|
-
concurrency?: number | undefined;
|
|
5273
|
-
type?: string | undefined;
|
|
5274
|
-
name?: string | undefined;
|
|
5275
|
-
description?: string | undefined;
|
|
5276
|
-
inputSchema?: any;
|
|
5277
|
-
config?: any;
|
|
5278
|
-
isCustomized?: boolean | undefined;
|
|
5279
|
-
outputSchema?: any;
|
|
5280
|
-
version?: number | undefined;
|
|
5281
|
-
onError?: "stop" | "continue" | undefined;
|
|
5282
|
-
ui?: any;
|
|
5283
|
-
outputExample?: any;
|
|
5284
|
-
links?: {
|
|
5285
|
-
key?: string | undefined;
|
|
5286
|
-
filter?: any;
|
|
5287
|
-
name?: string | undefined;
|
|
5288
|
-
}[] | undefined;
|
|
5289
|
-
}> | undefined;
|
|
5290
|
-
autoCreateInstances?: boolean | undefined;
|
|
5291
5112
|
};
|
|
5292
5113
|
}, {
|
|
5293
5114
|
integration: {
|
|
@@ -5324,44 +5145,12 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
5324
5145
|
};
|
|
5325
5146
|
element: {
|
|
5326
5147
|
id: string;
|
|
5327
|
-
name: string;
|
|
5328
|
-
revision: string;
|
|
5329
|
-
key?: string | undefined;
|
|
5330
|
-
uuid?: string | undefined;
|
|
5331
|
-
description?: string | undefined;
|
|
5332
|
-
state?: WorkspaceElementState | undefined;
|
|
5333
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
5334
|
-
createdAt?: string | undefined;
|
|
5335
|
-
updatedAt?: string | undefined;
|
|
5336
|
-
archivedAt?: string | undefined;
|
|
5337
|
-
isDeactivated?: boolean | undefined;
|
|
5338
5148
|
integrationId?: string | undefined;
|
|
5339
5149
|
customized?: boolean | undefined;
|
|
5340
|
-
parametersSchema?: DataSchema | undefined;
|
|
5341
5150
|
universalFlowId?: string | undefined;
|
|
5342
|
-
universalFlowRevision?: string | undefined;
|
|
5343
|
-
nodes?: Record<string, {
|
|
5344
|
-
concurrency?: number | undefined;
|
|
5345
|
-
type?: string | undefined;
|
|
5346
|
-
name?: string | undefined;
|
|
5347
|
-
description?: string | undefined;
|
|
5348
|
-
inputSchema?: any;
|
|
5349
|
-
config?: any;
|
|
5350
|
-
isCustomized?: boolean | undefined;
|
|
5351
|
-
outputSchema?: any;
|
|
5352
|
-
version?: number | undefined;
|
|
5353
|
-
onError?: "stop" | "continue" | undefined;
|
|
5354
|
-
ui?: any;
|
|
5355
|
-
outputExample?: any;
|
|
5356
|
-
links?: {
|
|
5357
|
-
key?: string | undefined;
|
|
5358
|
-
filter?: any;
|
|
5359
|
-
name?: string | undefined;
|
|
5360
|
-
}[] | undefined;
|
|
5361
|
-
}> | undefined;
|
|
5362
|
-
autoCreateInstances?: boolean | undefined;
|
|
5363
5151
|
};
|
|
5364
5152
|
}>, "many">>;
|
|
5153
|
+
dependencies: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
5365
5154
|
}, "strip", z.ZodTypeAny, {
|
|
5366
5155
|
id: string;
|
|
5367
5156
|
name: string;
|
|
@@ -5445,44 +5234,12 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
5445
5234
|
};
|
|
5446
5235
|
element: {
|
|
5447
5236
|
id: string;
|
|
5448
|
-
name: string;
|
|
5449
|
-
revision: string;
|
|
5450
|
-
key?: string | undefined;
|
|
5451
|
-
uuid?: string | undefined;
|
|
5452
|
-
description?: string | undefined;
|
|
5453
|
-
state?: WorkspaceElementState | undefined;
|
|
5454
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
5455
|
-
createdAt?: string | undefined;
|
|
5456
|
-
updatedAt?: string | undefined;
|
|
5457
|
-
archivedAt?: string | undefined;
|
|
5458
|
-
isDeactivated?: boolean | undefined;
|
|
5459
5237
|
integrationId?: string | undefined;
|
|
5460
5238
|
customized?: boolean | undefined;
|
|
5461
|
-
parametersSchema?: DataSchema | undefined;
|
|
5462
5239
|
universalFlowId?: string | undefined;
|
|
5463
|
-
universalFlowRevision?: string | undefined;
|
|
5464
|
-
nodes?: Record<string, {
|
|
5465
|
-
concurrency?: number | undefined;
|
|
5466
|
-
type?: string | undefined;
|
|
5467
|
-
name?: string | undefined;
|
|
5468
|
-
description?: string | undefined;
|
|
5469
|
-
inputSchema?: any;
|
|
5470
|
-
config?: any;
|
|
5471
|
-
isCustomized?: boolean | undefined;
|
|
5472
|
-
outputSchema?: any;
|
|
5473
|
-
version?: number | undefined;
|
|
5474
|
-
onError?: "stop" | "continue" | undefined;
|
|
5475
|
-
ui?: any;
|
|
5476
|
-
outputExample?: any;
|
|
5477
|
-
links?: {
|
|
5478
|
-
key?: string | undefined;
|
|
5479
|
-
filter?: any;
|
|
5480
|
-
name?: string | undefined;
|
|
5481
|
-
}[] | undefined;
|
|
5482
|
-
}> | undefined;
|
|
5483
|
-
autoCreateInstances?: boolean | undefined;
|
|
5484
5240
|
};
|
|
5485
5241
|
}[] | undefined;
|
|
5242
|
+
dependencies?: any[] | undefined;
|
|
5486
5243
|
universalFlowId?: string | undefined;
|
|
5487
5244
|
universalFlowRevision?: string | undefined;
|
|
5488
5245
|
nodes?: Record<string, {
|
|
@@ -5588,44 +5345,12 @@ declare const FlowApiResponse: z.ZodObject<{
|
|
|
5588
5345
|
};
|
|
5589
5346
|
element: {
|
|
5590
5347
|
id: string;
|
|
5591
|
-
name: string;
|
|
5592
|
-
revision: string;
|
|
5593
|
-
key?: string | undefined;
|
|
5594
|
-
uuid?: string | undefined;
|
|
5595
|
-
description?: string | undefined;
|
|
5596
|
-
state?: WorkspaceElementState | undefined;
|
|
5597
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
5598
|
-
createdAt?: string | undefined;
|
|
5599
|
-
updatedAt?: string | undefined;
|
|
5600
|
-
archivedAt?: string | undefined;
|
|
5601
|
-
isDeactivated?: boolean | undefined;
|
|
5602
5348
|
integrationId?: string | undefined;
|
|
5603
5349
|
customized?: boolean | undefined;
|
|
5604
|
-
parametersSchema?: DataSchema | undefined;
|
|
5605
5350
|
universalFlowId?: string | undefined;
|
|
5606
|
-
universalFlowRevision?: string | undefined;
|
|
5607
|
-
nodes?: Record<string, {
|
|
5608
|
-
concurrency?: number | undefined;
|
|
5609
|
-
type?: string | undefined;
|
|
5610
|
-
name?: string | undefined;
|
|
5611
|
-
description?: string | undefined;
|
|
5612
|
-
inputSchema?: any;
|
|
5613
|
-
config?: any;
|
|
5614
|
-
isCustomized?: boolean | undefined;
|
|
5615
|
-
outputSchema?: any;
|
|
5616
|
-
version?: number | undefined;
|
|
5617
|
-
onError?: "stop" | "continue" | undefined;
|
|
5618
|
-
ui?: any;
|
|
5619
|
-
outputExample?: any;
|
|
5620
|
-
links?: {
|
|
5621
|
-
key?: string | undefined;
|
|
5622
|
-
filter?: any;
|
|
5623
|
-
name?: string | undefined;
|
|
5624
|
-
}[] | undefined;
|
|
5625
|
-
}> | undefined;
|
|
5626
|
-
autoCreateInstances?: boolean | undefined;
|
|
5627
5351
|
};
|
|
5628
5352
|
}[] | undefined;
|
|
5353
|
+
dependencies?: any[] | undefined;
|
|
5629
5354
|
universalFlowId?: string | undefined;
|
|
5630
5355
|
universalFlowRevision?: string | undefined;
|
|
5631
5356
|
nodes?: Record<string, {
|
|
@@ -5675,7 +5400,6 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
5675
5400
|
createdAt: z.ZodString;
|
|
5676
5401
|
updatedAt: z.ZodString;
|
|
5677
5402
|
state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
|
|
5678
|
-
outdated: z.ZodOptional<z.ZodBoolean>;
|
|
5679
5403
|
customized: z.ZodOptional<z.ZodObject<{
|
|
5680
5404
|
name: z.ZodOptional<z.ZodBoolean>;
|
|
5681
5405
|
nodes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5932,163 +5656,19 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
5932
5656
|
appliedToIntegrations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5933
5657
|
element: z.ZodObject<{
|
|
5934
5658
|
id: z.ZodString;
|
|
5935
|
-
key: z.ZodOptional<z.ZodString>;
|
|
5936
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
5937
|
-
description: z.ZodOptional<z.ZodString>;
|
|
5938
|
-
name: z.ZodString;
|
|
5939
|
-
state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
|
|
5940
|
-
errors: z.ZodOptional<z.ZodArray<z.ZodType<ErrorDataSchema, z.ZodTypeDef, ErrorDataSchema>, "many">>;
|
|
5941
|
-
createdAt: z.ZodOptional<z.ZodString>;
|
|
5942
|
-
updatedAt: z.ZodOptional<z.ZodString>;
|
|
5943
|
-
isDeactivated: z.ZodOptional<z.ZodBoolean>;
|
|
5944
|
-
} & {
|
|
5945
5659
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
5946
|
-
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
5947
|
-
universalFlowRevision: z.ZodOptional<z.ZodString>;
|
|
5948
|
-
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
|
|
5949
|
-
nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5950
|
-
type: z.ZodOptional<z.ZodString>;
|
|
5951
|
-
version: z.ZodOptional<z.ZodNumber>;
|
|
5952
|
-
name: z.ZodOptional<z.ZodString>;
|
|
5953
|
-
description: z.ZodOptional<z.ZodString>;
|
|
5954
|
-
config: z.ZodOptional<z.ZodAny>;
|
|
5955
|
-
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
5956
|
-
onError: z.ZodOptional<z.ZodEnum<["stop", "continue"]>>;
|
|
5957
|
-
ui: z.ZodOptional<z.ZodAny>;
|
|
5958
|
-
inputSchema: z.ZodOptional<z.ZodAny>;
|
|
5959
|
-
outputSchema: z.ZodOptional<z.ZodAny>;
|
|
5960
|
-
outputExample: z.ZodOptional<z.ZodAny>;
|
|
5961
|
-
links: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5962
|
-
key: z.ZodOptional<z.ZodString>;
|
|
5963
|
-
filter: z.ZodOptional<z.ZodAny>;
|
|
5964
|
-
name: z.ZodOptional<z.ZodString>;
|
|
5965
|
-
}, "strip", z.ZodTypeAny, {
|
|
5966
|
-
key?: string | undefined;
|
|
5967
|
-
filter?: any;
|
|
5968
|
-
name?: string | undefined;
|
|
5969
|
-
}, {
|
|
5970
|
-
key?: string | undefined;
|
|
5971
|
-
filter?: any;
|
|
5972
|
-
name?: string | undefined;
|
|
5973
|
-
}>, "many">>;
|
|
5974
|
-
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
5975
|
-
}, "strip", z.ZodTypeAny, {
|
|
5976
|
-
concurrency?: number | undefined;
|
|
5977
|
-
type?: string | undefined;
|
|
5978
|
-
name?: string | undefined;
|
|
5979
|
-
description?: string | undefined;
|
|
5980
|
-
inputSchema?: any;
|
|
5981
|
-
config?: any;
|
|
5982
|
-
isCustomized?: boolean | undefined;
|
|
5983
|
-
outputSchema?: any;
|
|
5984
|
-
version?: number | undefined;
|
|
5985
|
-
onError?: "stop" | "continue" | undefined;
|
|
5986
|
-
ui?: any;
|
|
5987
|
-
outputExample?: any;
|
|
5988
|
-
links?: {
|
|
5989
|
-
key?: string | undefined;
|
|
5990
|
-
filter?: any;
|
|
5991
|
-
name?: string | undefined;
|
|
5992
|
-
}[] | undefined;
|
|
5993
|
-
}, {
|
|
5994
|
-
concurrency?: number | undefined;
|
|
5995
|
-
type?: string | undefined;
|
|
5996
|
-
name?: string | undefined;
|
|
5997
|
-
description?: string | undefined;
|
|
5998
|
-
inputSchema?: any;
|
|
5999
|
-
config?: any;
|
|
6000
|
-
isCustomized?: boolean | undefined;
|
|
6001
|
-
outputSchema?: any;
|
|
6002
|
-
version?: number | undefined;
|
|
6003
|
-
onError?: "stop" | "continue" | undefined;
|
|
6004
|
-
ui?: any;
|
|
6005
|
-
outputExample?: any;
|
|
6006
|
-
links?: {
|
|
6007
|
-
key?: string | undefined;
|
|
6008
|
-
filter?: any;
|
|
6009
|
-
name?: string | undefined;
|
|
6010
|
-
}[] | undefined;
|
|
6011
|
-
}>>>;
|
|
6012
|
-
autoCreateInstances: z.ZodOptional<z.ZodBoolean>;
|
|
6013
|
-
archivedAt: z.ZodOptional<z.ZodString>;
|
|
6014
|
-
revision: z.ZodString;
|
|
6015
5660
|
customized: z.ZodOptional<z.ZodBoolean>;
|
|
5661
|
+
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
6016
5662
|
}, "strip", z.ZodTypeAny, {
|
|
6017
5663
|
id: string;
|
|
6018
|
-
name: string;
|
|
6019
|
-
revision: string;
|
|
6020
|
-
key?: string | undefined;
|
|
6021
|
-
uuid?: string | undefined;
|
|
6022
|
-
description?: string | undefined;
|
|
6023
|
-
state?: WorkspaceElementState | undefined;
|
|
6024
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
6025
|
-
createdAt?: string | undefined;
|
|
6026
|
-
updatedAt?: string | undefined;
|
|
6027
|
-
archivedAt?: string | undefined;
|
|
6028
|
-
isDeactivated?: boolean | undefined;
|
|
6029
5664
|
integrationId?: string | undefined;
|
|
6030
5665
|
customized?: boolean | undefined;
|
|
6031
|
-
parametersSchema?: DataSchema | undefined;
|
|
6032
5666
|
universalFlowId?: string | undefined;
|
|
6033
|
-
universalFlowRevision?: string | undefined;
|
|
6034
|
-
nodes?: Record<string, {
|
|
6035
|
-
concurrency?: number | undefined;
|
|
6036
|
-
type?: string | undefined;
|
|
6037
|
-
name?: string | undefined;
|
|
6038
|
-
description?: string | undefined;
|
|
6039
|
-
inputSchema?: any;
|
|
6040
|
-
config?: any;
|
|
6041
|
-
isCustomized?: boolean | undefined;
|
|
6042
|
-
outputSchema?: any;
|
|
6043
|
-
version?: number | undefined;
|
|
6044
|
-
onError?: "stop" | "continue" | undefined;
|
|
6045
|
-
ui?: any;
|
|
6046
|
-
outputExample?: any;
|
|
6047
|
-
links?: {
|
|
6048
|
-
key?: string | undefined;
|
|
6049
|
-
filter?: any;
|
|
6050
|
-
name?: string | undefined;
|
|
6051
|
-
}[] | undefined;
|
|
6052
|
-
}> | undefined;
|
|
6053
|
-
autoCreateInstances?: boolean | undefined;
|
|
6054
5667
|
}, {
|
|
6055
5668
|
id: string;
|
|
6056
|
-
name: string;
|
|
6057
|
-
revision: string;
|
|
6058
|
-
key?: string | undefined;
|
|
6059
|
-
uuid?: string | undefined;
|
|
6060
|
-
description?: string | undefined;
|
|
6061
|
-
state?: WorkspaceElementState | undefined;
|
|
6062
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
6063
|
-
createdAt?: string | undefined;
|
|
6064
|
-
updatedAt?: string | undefined;
|
|
6065
|
-
archivedAt?: string | undefined;
|
|
6066
|
-
isDeactivated?: boolean | undefined;
|
|
6067
5669
|
integrationId?: string | undefined;
|
|
6068
5670
|
customized?: boolean | undefined;
|
|
6069
|
-
parametersSchema?: DataSchema | undefined;
|
|
6070
5671
|
universalFlowId?: string | undefined;
|
|
6071
|
-
universalFlowRevision?: string | undefined;
|
|
6072
|
-
nodes?: Record<string, {
|
|
6073
|
-
concurrency?: number | undefined;
|
|
6074
|
-
type?: string | undefined;
|
|
6075
|
-
name?: string | undefined;
|
|
6076
|
-
description?: string | undefined;
|
|
6077
|
-
inputSchema?: any;
|
|
6078
|
-
config?: any;
|
|
6079
|
-
isCustomized?: boolean | undefined;
|
|
6080
|
-
outputSchema?: any;
|
|
6081
|
-
version?: number | undefined;
|
|
6082
|
-
onError?: "stop" | "continue" | undefined;
|
|
6083
|
-
ui?: any;
|
|
6084
|
-
outputExample?: any;
|
|
6085
|
-
links?: {
|
|
6086
|
-
key?: string | undefined;
|
|
6087
|
-
filter?: any;
|
|
6088
|
-
name?: string | undefined;
|
|
6089
|
-
}[] | undefined;
|
|
6090
|
-
}> | undefined;
|
|
6091
|
-
autoCreateInstances?: boolean | undefined;
|
|
6092
5672
|
}>;
|
|
6093
5673
|
integration: z.ZodObject<{
|
|
6094
5674
|
id: z.ZodString;
|
|
@@ -6220,42 +5800,9 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
6220
5800
|
};
|
|
6221
5801
|
element: {
|
|
6222
5802
|
id: string;
|
|
6223
|
-
name: string;
|
|
6224
|
-
revision: string;
|
|
6225
|
-
key?: string | undefined;
|
|
6226
|
-
uuid?: string | undefined;
|
|
6227
|
-
description?: string | undefined;
|
|
6228
|
-
state?: WorkspaceElementState | undefined;
|
|
6229
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
6230
|
-
createdAt?: string | undefined;
|
|
6231
|
-
updatedAt?: string | undefined;
|
|
6232
|
-
archivedAt?: string | undefined;
|
|
6233
|
-
isDeactivated?: boolean | undefined;
|
|
6234
5803
|
integrationId?: string | undefined;
|
|
6235
5804
|
customized?: boolean | undefined;
|
|
6236
|
-
parametersSchema?: DataSchema | undefined;
|
|
6237
5805
|
universalFlowId?: string | undefined;
|
|
6238
|
-
universalFlowRevision?: string | undefined;
|
|
6239
|
-
nodes?: Record<string, {
|
|
6240
|
-
concurrency?: number | undefined;
|
|
6241
|
-
type?: string | undefined;
|
|
6242
|
-
name?: string | undefined;
|
|
6243
|
-
description?: string | undefined;
|
|
6244
|
-
inputSchema?: any;
|
|
6245
|
-
config?: any;
|
|
6246
|
-
isCustomized?: boolean | undefined;
|
|
6247
|
-
outputSchema?: any;
|
|
6248
|
-
version?: number | undefined;
|
|
6249
|
-
onError?: "stop" | "continue" | undefined;
|
|
6250
|
-
ui?: any;
|
|
6251
|
-
outputExample?: any;
|
|
6252
|
-
links?: {
|
|
6253
|
-
key?: string | undefined;
|
|
6254
|
-
filter?: any;
|
|
6255
|
-
name?: string | undefined;
|
|
6256
|
-
}[] | undefined;
|
|
6257
|
-
}> | undefined;
|
|
6258
|
-
autoCreateInstances?: boolean | undefined;
|
|
6259
5806
|
};
|
|
6260
5807
|
}, {
|
|
6261
5808
|
integration: {
|
|
@@ -6292,44 +5839,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
6292
5839
|
};
|
|
6293
5840
|
element: {
|
|
6294
5841
|
id: string;
|
|
6295
|
-
name: string;
|
|
6296
|
-
revision: string;
|
|
6297
|
-
key?: string | undefined;
|
|
6298
|
-
uuid?: string | undefined;
|
|
6299
|
-
description?: string | undefined;
|
|
6300
|
-
state?: WorkspaceElementState | undefined;
|
|
6301
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
6302
|
-
createdAt?: string | undefined;
|
|
6303
|
-
updatedAt?: string | undefined;
|
|
6304
|
-
archivedAt?: string | undefined;
|
|
6305
|
-
isDeactivated?: boolean | undefined;
|
|
6306
5842
|
integrationId?: string | undefined;
|
|
6307
5843
|
customized?: boolean | undefined;
|
|
6308
|
-
parametersSchema?: DataSchema | undefined;
|
|
6309
5844
|
universalFlowId?: string | undefined;
|
|
6310
|
-
universalFlowRevision?: string | undefined;
|
|
6311
|
-
nodes?: Record<string, {
|
|
6312
|
-
concurrency?: number | undefined;
|
|
6313
|
-
type?: string | undefined;
|
|
6314
|
-
name?: string | undefined;
|
|
6315
|
-
description?: string | undefined;
|
|
6316
|
-
inputSchema?: any;
|
|
6317
|
-
config?: any;
|
|
6318
|
-
isCustomized?: boolean | undefined;
|
|
6319
|
-
outputSchema?: any;
|
|
6320
|
-
version?: number | undefined;
|
|
6321
|
-
onError?: "stop" | "continue" | undefined;
|
|
6322
|
-
ui?: any;
|
|
6323
|
-
outputExample?: any;
|
|
6324
|
-
links?: {
|
|
6325
|
-
key?: string | undefined;
|
|
6326
|
-
filter?: any;
|
|
6327
|
-
name?: string | undefined;
|
|
6328
|
-
}[] | undefined;
|
|
6329
|
-
}> | undefined;
|
|
6330
|
-
autoCreateInstances?: boolean | undefined;
|
|
6331
5845
|
};
|
|
6332
5846
|
}>, "many">>;
|
|
5847
|
+
dependencies: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
6333
5848
|
}, "strip", z.ZodTypeAny, {
|
|
6334
5849
|
id: string;
|
|
6335
5850
|
name: string;
|
|
@@ -6413,44 +5928,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
6413
5928
|
};
|
|
6414
5929
|
element: {
|
|
6415
5930
|
id: string;
|
|
6416
|
-
name: string;
|
|
6417
|
-
revision: string;
|
|
6418
|
-
key?: string | undefined;
|
|
6419
|
-
uuid?: string | undefined;
|
|
6420
|
-
description?: string | undefined;
|
|
6421
|
-
state?: WorkspaceElementState | undefined;
|
|
6422
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
6423
|
-
createdAt?: string | undefined;
|
|
6424
|
-
updatedAt?: string | undefined;
|
|
6425
|
-
archivedAt?: string | undefined;
|
|
6426
|
-
isDeactivated?: boolean | undefined;
|
|
6427
5931
|
integrationId?: string | undefined;
|
|
6428
5932
|
customized?: boolean | undefined;
|
|
6429
|
-
parametersSchema?: DataSchema | undefined;
|
|
6430
5933
|
universalFlowId?: string | undefined;
|
|
6431
|
-
universalFlowRevision?: string | undefined;
|
|
6432
|
-
nodes?: Record<string, {
|
|
6433
|
-
concurrency?: number | undefined;
|
|
6434
|
-
type?: string | undefined;
|
|
6435
|
-
name?: string | undefined;
|
|
6436
|
-
description?: string | undefined;
|
|
6437
|
-
inputSchema?: any;
|
|
6438
|
-
config?: any;
|
|
6439
|
-
isCustomized?: boolean | undefined;
|
|
6440
|
-
outputSchema?: any;
|
|
6441
|
-
version?: number | undefined;
|
|
6442
|
-
onError?: "stop" | "continue" | undefined;
|
|
6443
|
-
ui?: any;
|
|
6444
|
-
outputExample?: any;
|
|
6445
|
-
links?: {
|
|
6446
|
-
key?: string | undefined;
|
|
6447
|
-
filter?: any;
|
|
6448
|
-
name?: string | undefined;
|
|
6449
|
-
}[] | undefined;
|
|
6450
|
-
}> | undefined;
|
|
6451
|
-
autoCreateInstances?: boolean | undefined;
|
|
6452
5934
|
};
|
|
6453
5935
|
}[] | undefined;
|
|
5936
|
+
dependencies?: any[] | undefined;
|
|
6454
5937
|
universalFlowId?: string | undefined;
|
|
6455
5938
|
universalFlowRevision?: string | undefined;
|
|
6456
5939
|
nodes?: Record<string, {
|
|
@@ -6556,44 +6039,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
6556
6039
|
};
|
|
6557
6040
|
element: {
|
|
6558
6041
|
id: string;
|
|
6559
|
-
name: string;
|
|
6560
|
-
revision: string;
|
|
6561
|
-
key?: string | undefined;
|
|
6562
|
-
uuid?: string | undefined;
|
|
6563
|
-
description?: string | undefined;
|
|
6564
|
-
state?: WorkspaceElementState | undefined;
|
|
6565
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
6566
|
-
createdAt?: string | undefined;
|
|
6567
|
-
updatedAt?: string | undefined;
|
|
6568
|
-
archivedAt?: string | undefined;
|
|
6569
|
-
isDeactivated?: boolean | undefined;
|
|
6570
6042
|
integrationId?: string | undefined;
|
|
6571
6043
|
customized?: boolean | undefined;
|
|
6572
|
-
parametersSchema?: DataSchema | undefined;
|
|
6573
6044
|
universalFlowId?: string | undefined;
|
|
6574
|
-
universalFlowRevision?: string | undefined;
|
|
6575
|
-
nodes?: Record<string, {
|
|
6576
|
-
concurrency?: number | undefined;
|
|
6577
|
-
type?: string | undefined;
|
|
6578
|
-
name?: string | undefined;
|
|
6579
|
-
description?: string | undefined;
|
|
6580
|
-
inputSchema?: any;
|
|
6581
|
-
config?: any;
|
|
6582
|
-
isCustomized?: boolean | undefined;
|
|
6583
|
-
outputSchema?: any;
|
|
6584
|
-
version?: number | undefined;
|
|
6585
|
-
onError?: "stop" | "continue" | undefined;
|
|
6586
|
-
ui?: any;
|
|
6587
|
-
outputExample?: any;
|
|
6588
|
-
links?: {
|
|
6589
|
-
key?: string | undefined;
|
|
6590
|
-
filter?: any;
|
|
6591
|
-
name?: string | undefined;
|
|
6592
|
-
}[] | undefined;
|
|
6593
|
-
}> | undefined;
|
|
6594
|
-
autoCreateInstances?: boolean | undefined;
|
|
6595
6045
|
};
|
|
6596
6046
|
}[] | undefined;
|
|
6047
|
+
dependencies?: any[] | undefined;
|
|
6597
6048
|
universalFlowId?: string | undefined;
|
|
6598
6049
|
universalFlowRevision?: string | undefined;
|
|
6599
6050
|
nodes?: Record<string, {
|
|
@@ -6824,44 +6275,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
6824
6275
|
};
|
|
6825
6276
|
element: {
|
|
6826
6277
|
id: string;
|
|
6827
|
-
name: string;
|
|
6828
|
-
revision: string;
|
|
6829
|
-
key?: string | undefined;
|
|
6830
|
-
uuid?: string | undefined;
|
|
6831
|
-
description?: string | undefined;
|
|
6832
|
-
state?: WorkspaceElementState | undefined;
|
|
6833
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
6834
|
-
createdAt?: string | undefined;
|
|
6835
|
-
updatedAt?: string | undefined;
|
|
6836
|
-
archivedAt?: string | undefined;
|
|
6837
|
-
isDeactivated?: boolean | undefined;
|
|
6838
6278
|
integrationId?: string | undefined;
|
|
6839
6279
|
customized?: boolean | undefined;
|
|
6840
|
-
parametersSchema?: DataSchema | undefined;
|
|
6841
6280
|
universalFlowId?: string | undefined;
|
|
6842
|
-
universalFlowRevision?: string | undefined;
|
|
6843
|
-
nodes?: Record<string, {
|
|
6844
|
-
concurrency?: number | undefined;
|
|
6845
|
-
type?: string | undefined;
|
|
6846
|
-
name?: string | undefined;
|
|
6847
|
-
description?: string | undefined;
|
|
6848
|
-
inputSchema?: any;
|
|
6849
|
-
config?: any;
|
|
6850
|
-
isCustomized?: boolean | undefined;
|
|
6851
|
-
outputSchema?: any;
|
|
6852
|
-
version?: number | undefined;
|
|
6853
|
-
onError?: "stop" | "continue" | undefined;
|
|
6854
|
-
ui?: any;
|
|
6855
|
-
outputExample?: any;
|
|
6856
|
-
links?: {
|
|
6857
|
-
key?: string | undefined;
|
|
6858
|
-
filter?: any;
|
|
6859
|
-
name?: string | undefined;
|
|
6860
|
-
}[] | undefined;
|
|
6861
|
-
}> | undefined;
|
|
6862
|
-
autoCreateInstances?: boolean | undefined;
|
|
6863
6281
|
};
|
|
6864
6282
|
}[] | undefined;
|
|
6283
|
+
dependencies?: any[] | undefined;
|
|
6865
6284
|
universalFlowId?: string | undefined;
|
|
6866
6285
|
universalFlowRevision?: string | undefined;
|
|
6867
6286
|
nodes?: Record<string, {
|
|
@@ -6916,7 +6335,6 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
6916
6335
|
universalFlowId?: string | undefined;
|
|
6917
6336
|
nodes?: Record<string, any> | undefined;
|
|
6918
6337
|
flowId?: string | undefined;
|
|
6919
|
-
outdated?: boolean | undefined;
|
|
6920
6338
|
}, {
|
|
6921
6339
|
id: string;
|
|
6922
6340
|
name: string;
|
|
@@ -7061,44 +6479,12 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
7061
6479
|
};
|
|
7062
6480
|
element: {
|
|
7063
6481
|
id: string;
|
|
7064
|
-
name: string;
|
|
7065
|
-
revision: string;
|
|
7066
|
-
key?: string | undefined;
|
|
7067
|
-
uuid?: string | undefined;
|
|
7068
|
-
description?: string | undefined;
|
|
7069
|
-
state?: WorkspaceElementState | undefined;
|
|
7070
|
-
errors?: ErrorDataSchema[] | undefined;
|
|
7071
|
-
createdAt?: string | undefined;
|
|
7072
|
-
updatedAt?: string | undefined;
|
|
7073
|
-
archivedAt?: string | undefined;
|
|
7074
|
-
isDeactivated?: boolean | undefined;
|
|
7075
6482
|
integrationId?: string | undefined;
|
|
7076
6483
|
customized?: boolean | undefined;
|
|
7077
|
-
parametersSchema?: DataSchema | undefined;
|
|
7078
6484
|
universalFlowId?: string | undefined;
|
|
7079
|
-
universalFlowRevision?: string | undefined;
|
|
7080
|
-
nodes?: Record<string, {
|
|
7081
|
-
concurrency?: number | undefined;
|
|
7082
|
-
type?: string | undefined;
|
|
7083
|
-
name?: string | undefined;
|
|
7084
|
-
description?: string | undefined;
|
|
7085
|
-
inputSchema?: any;
|
|
7086
|
-
config?: any;
|
|
7087
|
-
isCustomized?: boolean | undefined;
|
|
7088
|
-
outputSchema?: any;
|
|
7089
|
-
version?: number | undefined;
|
|
7090
|
-
onError?: "stop" | "continue" | undefined;
|
|
7091
|
-
ui?: any;
|
|
7092
|
-
outputExample?: any;
|
|
7093
|
-
links?: {
|
|
7094
|
-
key?: string | undefined;
|
|
7095
|
-
filter?: any;
|
|
7096
|
-
name?: string | undefined;
|
|
7097
|
-
}[] | undefined;
|
|
7098
|
-
}> | undefined;
|
|
7099
|
-
autoCreateInstances?: boolean | undefined;
|
|
7100
6485
|
};
|
|
7101
6486
|
}[] | undefined;
|
|
6487
|
+
dependencies?: any[] | undefined;
|
|
7102
6488
|
universalFlowId?: string | undefined;
|
|
7103
6489
|
universalFlowRevision?: string | undefined;
|
|
7104
6490
|
nodes?: Record<string, {
|
|
@@ -7153,7 +6539,6 @@ declare const FlowInstanceApiResponse: z.ZodObject<{
|
|
|
7153
6539
|
universalFlowId?: string | undefined;
|
|
7154
6540
|
nodes?: Record<string, any> | undefined;
|
|
7155
6541
|
flowId?: string | undefined;
|
|
7156
|
-
outdated?: boolean | undefined;
|
|
7157
6542
|
}>;
|
|
7158
6543
|
type FlowInstanceApiResponse = z.infer<typeof FlowInstanceApiResponse>;
|
|
7159
6544
|
type FlowInstance = FlowInstanceApiResponse;
|
|
@@ -8136,7 +7521,6 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
8136
7521
|
createdAt: z.ZodString;
|
|
8137
7522
|
updatedAt: z.ZodString;
|
|
8138
7523
|
state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
|
|
8139
|
-
outdated: z.ZodOptional<z.ZodBoolean>;
|
|
8140
7524
|
customized: z.ZodOptional<z.ZodObject<{
|
|
8141
7525
|
name: z.ZodOptional<z.ZodBoolean>;
|
|
8142
7526
|
nodes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8176,7 +7560,6 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
8176
7560
|
universalFlowId?: string | undefined;
|
|
8177
7561
|
nodes?: Record<string, any> | undefined;
|
|
8178
7562
|
flowId?: string | undefined;
|
|
8179
|
-
outdated?: boolean | undefined;
|
|
8180
7563
|
}, {
|
|
8181
7564
|
id: string;
|
|
8182
7565
|
name: string;
|
|
@@ -8205,7 +7588,6 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
8205
7588
|
universalFlowId?: string | undefined;
|
|
8206
7589
|
nodes?: Record<string, any> | undefined;
|
|
8207
7590
|
flowId?: string | undefined;
|
|
8208
|
-
outdated?: boolean | undefined;
|
|
8209
7591
|
}>>;
|
|
8210
7592
|
connection: z.ZodOptional<z.ZodObject<{
|
|
8211
7593
|
id: z.ZodString;
|
|
@@ -8511,7 +7893,6 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
8511
7893
|
universalFlowId?: string | undefined;
|
|
8512
7894
|
nodes?: Record<string, any> | undefined;
|
|
8513
7895
|
flowId?: string | undefined;
|
|
8514
|
-
outdated?: boolean | undefined;
|
|
8515
7896
|
} | undefined;
|
|
8516
7897
|
}, {
|
|
8517
7898
|
id: string;
|
|
@@ -8629,7 +8010,6 @@ declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
8629
8010
|
universalFlowId?: string | undefined;
|
|
8630
8011
|
nodes?: Record<string, any> | undefined;
|
|
8631
8012
|
flowId?: string | undefined;
|
|
8632
|
-
outdated?: boolean | undefined;
|
|
8633
8013
|
} | undefined;
|
|
8634
8014
|
}>;
|
|
8635
8015
|
type FlowRunApiResponse = z.infer<typeof FlowRunApiResponse>;
|
|
@@ -8699,7 +8079,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
8699
8079
|
createdAt: z.ZodString;
|
|
8700
8080
|
updatedAt: z.ZodString;
|
|
8701
8081
|
state: z.ZodOptional<z.ZodNativeEnum<typeof WorkspaceElementState>>;
|
|
8702
|
-
outdated: z.ZodOptional<z.ZodBoolean>;
|
|
8703
8082
|
customized: z.ZodOptional<z.ZodObject<{
|
|
8704
8083
|
name: z.ZodOptional<z.ZodBoolean>;
|
|
8705
8084
|
nodes: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8739,7 +8118,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
8739
8118
|
universalFlowId?: string | undefined;
|
|
8740
8119
|
nodes?: Record<string, any> | undefined;
|
|
8741
8120
|
flowId?: string | undefined;
|
|
8742
|
-
outdated?: boolean | undefined;
|
|
8743
8121
|
}, {
|
|
8744
8122
|
id: string;
|
|
8745
8123
|
name: string;
|
|
@@ -8768,7 +8146,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
8768
8146
|
universalFlowId?: string | undefined;
|
|
8769
8147
|
nodes?: Record<string, any> | undefined;
|
|
8770
8148
|
flowId?: string | undefined;
|
|
8771
|
-
outdated?: boolean | undefined;
|
|
8772
8149
|
}>>;
|
|
8773
8150
|
connection: z.ZodOptional<z.ZodObject<{
|
|
8774
8151
|
id: z.ZodString;
|
|
@@ -9074,7 +8451,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
9074
8451
|
universalFlowId?: string | undefined;
|
|
9075
8452
|
nodes?: Record<string, any> | undefined;
|
|
9076
8453
|
flowId?: string | undefined;
|
|
9077
|
-
outdated?: boolean | undefined;
|
|
9078
8454
|
} | undefined;
|
|
9079
8455
|
}, {
|
|
9080
8456
|
id: string;
|
|
@@ -9192,7 +8568,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
9192
8568
|
universalFlowId?: string | undefined;
|
|
9193
8569
|
nodes?: Record<string, any> | undefined;
|
|
9194
8570
|
flowId?: string | undefined;
|
|
9195
|
-
outdated?: boolean | undefined;
|
|
9196
8571
|
} | undefined;
|
|
9197
8572
|
}>, "many">;
|
|
9198
8573
|
cursor: z.ZodOptional<z.ZodString>;
|
|
@@ -9313,7 +8688,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
9313
8688
|
universalFlowId?: string | undefined;
|
|
9314
8689
|
nodes?: Record<string, any> | undefined;
|
|
9315
8690
|
flowId?: string | undefined;
|
|
9316
|
-
outdated?: boolean | undefined;
|
|
9317
8691
|
} | undefined;
|
|
9318
8692
|
}[];
|
|
9319
8693
|
cursor?: string | undefined;
|
|
@@ -9434,7 +8808,6 @@ declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
9434
8808
|
universalFlowId?: string | undefined;
|
|
9435
8809
|
nodes?: Record<string, any> | undefined;
|
|
9436
8810
|
flowId?: string | undefined;
|
|
9437
|
-
outdated?: boolean | undefined;
|
|
9438
8811
|
} | undefined;
|
|
9439
8812
|
}[];
|
|
9440
8813
|
cursor?: string | undefined;
|
|
@@ -9853,10 +9226,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
9853
9226
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
9854
9227
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
9855
9228
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
9856
|
-
dataSourceId: z.ZodString
|
|
9857
|
-
dataSourceKey: z.ZodString
|
|
9858
|
-
appSchema: z.ZodType<DataSchema, z.ZodTypeDef, DataSchema
|
|
9859
|
-
direction: z.ZodNativeEnum<typeof FieldMappingDirection
|
|
9229
|
+
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
9230
|
+
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
9231
|
+
appSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
|
|
9232
|
+
direction: z.ZodOptional<z.ZodNativeEnum<typeof FieldMappingDirection>>;
|
|
9860
9233
|
defaultImportValue: z.ZodOptional<z.ZodAny>;
|
|
9861
9234
|
defaultExportValue: z.ZodOptional<z.ZodAny>;
|
|
9862
9235
|
importValue: z.ZodOptional<z.ZodAny>;
|
|
@@ -9980,10 +9353,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
9980
9353
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
9981
9354
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
9982
9355
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
9983
|
-
dataSourceId: z.ZodString
|
|
9984
|
-
dataSourceKey: z.ZodString
|
|
9985
|
-
appSchema: z.ZodType<DataSchema, z.ZodTypeDef, DataSchema
|
|
9986
|
-
direction: z.ZodNativeEnum<typeof FieldMappingDirection
|
|
9356
|
+
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
9357
|
+
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
9358
|
+
appSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
|
|
9359
|
+
direction: z.ZodOptional<z.ZodNativeEnum<typeof FieldMappingDirection>>;
|
|
9987
9360
|
defaultImportValue: z.ZodOptional<z.ZodAny>;
|
|
9988
9361
|
defaultExportValue: z.ZodOptional<z.ZodAny>;
|
|
9989
9362
|
importValue: z.ZodOptional<z.ZodAny>;
|
|
@@ -9997,10 +9370,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
9997
9370
|
id: string;
|
|
9998
9371
|
name: string;
|
|
9999
9372
|
revision: string;
|
|
10000
|
-
dataSourceId: string;
|
|
10001
|
-
dataSourceKey: string;
|
|
10002
|
-
appSchema: DataSchema;
|
|
10003
|
-
direction: FieldMappingDirection;
|
|
10004
9373
|
key?: string | undefined;
|
|
10005
9374
|
uuid?: string | undefined;
|
|
10006
9375
|
description?: string | undefined;
|
|
@@ -10014,6 +9383,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
10014
9383
|
publishedRevision?: string | undefined;
|
|
10015
9384
|
universalFieldMappingId?: string | undefined;
|
|
10016
9385
|
universalFieldMappingRevision?: string | undefined;
|
|
9386
|
+
dataSourceId?: string | undefined;
|
|
9387
|
+
dataSourceKey?: string | undefined;
|
|
9388
|
+
appSchema?: DataSchema | undefined;
|
|
9389
|
+
direction?: FieldMappingDirection | undefined;
|
|
10017
9390
|
defaultImportValue?: any;
|
|
10018
9391
|
defaultExportValue?: any;
|
|
10019
9392
|
importValue?: any;
|
|
@@ -10026,10 +9399,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
10026
9399
|
id: string;
|
|
10027
9400
|
name: string;
|
|
10028
9401
|
revision: string;
|
|
10029
|
-
dataSourceId: string;
|
|
10030
|
-
dataSourceKey: string;
|
|
10031
|
-
appSchema: DataSchema;
|
|
10032
|
-
direction: FieldMappingDirection;
|
|
10033
9402
|
key?: string | undefined;
|
|
10034
9403
|
uuid?: string | undefined;
|
|
10035
9404
|
description?: string | undefined;
|
|
@@ -10043,6 +9412,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
10043
9412
|
publishedRevision?: string | undefined;
|
|
10044
9413
|
universalFieldMappingId?: string | undefined;
|
|
10045
9414
|
universalFieldMappingRevision?: string | undefined;
|
|
9415
|
+
dataSourceId?: string | undefined;
|
|
9416
|
+
dataSourceKey?: string | undefined;
|
|
9417
|
+
appSchema?: DataSchema | undefined;
|
|
9418
|
+
direction?: FieldMappingDirection | undefined;
|
|
10046
9419
|
defaultImportValue?: any;
|
|
10047
9420
|
defaultExportValue?: any;
|
|
10048
9421
|
importValue?: any;
|
|
@@ -10184,10 +9557,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
10184
9557
|
id: string;
|
|
10185
9558
|
name: string;
|
|
10186
9559
|
revision: string;
|
|
10187
|
-
dataSourceId: string;
|
|
10188
|
-
dataSourceKey: string;
|
|
10189
|
-
appSchema: DataSchema;
|
|
10190
|
-
direction: FieldMappingDirection;
|
|
10191
9560
|
key?: string | undefined;
|
|
10192
9561
|
uuid?: string | undefined;
|
|
10193
9562
|
description?: string | undefined;
|
|
@@ -10201,6 +9570,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
10201
9570
|
publishedRevision?: string | undefined;
|
|
10202
9571
|
universalFieldMappingId?: string | undefined;
|
|
10203
9572
|
universalFieldMappingRevision?: string | undefined;
|
|
9573
|
+
dataSourceId?: string | undefined;
|
|
9574
|
+
dataSourceKey?: string | undefined;
|
|
9575
|
+
appSchema?: DataSchema | undefined;
|
|
9576
|
+
direction?: FieldMappingDirection | undefined;
|
|
10204
9577
|
defaultImportValue?: any;
|
|
10205
9578
|
defaultExportValue?: any;
|
|
10206
9579
|
importValue?: any;
|
|
@@ -10247,10 +9620,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
10247
9620
|
id: string;
|
|
10248
9621
|
name: string;
|
|
10249
9622
|
revision: string;
|
|
10250
|
-
dataSourceId: string;
|
|
10251
|
-
dataSourceKey: string;
|
|
10252
|
-
appSchema: DataSchema;
|
|
10253
|
-
direction: FieldMappingDirection;
|
|
10254
9623
|
key?: string | undefined;
|
|
10255
9624
|
uuid?: string | undefined;
|
|
10256
9625
|
description?: string | undefined;
|
|
@@ -10264,6 +9633,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
10264
9633
|
publishedRevision?: string | undefined;
|
|
10265
9634
|
universalFieldMappingId?: string | undefined;
|
|
10266
9635
|
universalFieldMappingRevision?: string | undefined;
|
|
9636
|
+
dataSourceId?: string | undefined;
|
|
9637
|
+
dataSourceKey?: string | undefined;
|
|
9638
|
+
appSchema?: DataSchema | undefined;
|
|
9639
|
+
direction?: FieldMappingDirection | undefined;
|
|
10267
9640
|
defaultImportValue?: any;
|
|
10268
9641
|
defaultExportValue?: any;
|
|
10269
9642
|
importValue?: any;
|
|
@@ -10278,10 +9651,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
10278
9651
|
id: string;
|
|
10279
9652
|
name: string;
|
|
10280
9653
|
revision: string;
|
|
10281
|
-
dataSourceId: string;
|
|
10282
|
-
dataSourceKey: string;
|
|
10283
|
-
appSchema: DataSchema;
|
|
10284
|
-
direction: FieldMappingDirection;
|
|
10285
9654
|
key?: string | undefined;
|
|
10286
9655
|
integration?: {
|
|
10287
9656
|
id: string;
|
|
@@ -10327,6 +9696,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
10327
9696
|
publishedRevision?: string | undefined;
|
|
10328
9697
|
universalFieldMappingId?: string | undefined;
|
|
10329
9698
|
universalFieldMappingRevision?: string | undefined;
|
|
9699
|
+
dataSourceId?: string | undefined;
|
|
9700
|
+
dataSourceKey?: string | undefined;
|
|
9701
|
+
appSchema?: DataSchema | undefined;
|
|
9702
|
+
direction?: FieldMappingDirection | undefined;
|
|
10330
9703
|
defaultImportValue?: any;
|
|
10331
9704
|
defaultExportValue?: any;
|
|
10332
9705
|
importValue?: any;
|
|
@@ -10372,10 +9745,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
10372
9745
|
id: string;
|
|
10373
9746
|
name: string;
|
|
10374
9747
|
revision: string;
|
|
10375
|
-
dataSourceId: string;
|
|
10376
|
-
dataSourceKey: string;
|
|
10377
|
-
appSchema: DataSchema;
|
|
10378
|
-
direction: FieldMappingDirection;
|
|
10379
9748
|
key?: string | undefined;
|
|
10380
9749
|
uuid?: string | undefined;
|
|
10381
9750
|
description?: string | undefined;
|
|
@@ -10389,6 +9758,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
10389
9758
|
publishedRevision?: string | undefined;
|
|
10390
9759
|
universalFieldMappingId?: string | undefined;
|
|
10391
9760
|
universalFieldMappingRevision?: string | undefined;
|
|
9761
|
+
dataSourceId?: string | undefined;
|
|
9762
|
+
dataSourceKey?: string | undefined;
|
|
9763
|
+
appSchema?: DataSchema | undefined;
|
|
9764
|
+
direction?: FieldMappingDirection | undefined;
|
|
10392
9765
|
defaultImportValue?: any;
|
|
10393
9766
|
defaultExportValue?: any;
|
|
10394
9767
|
importValue?: any;
|
|
@@ -10403,10 +9776,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
10403
9776
|
id: string;
|
|
10404
9777
|
name: string;
|
|
10405
9778
|
revision: string;
|
|
10406
|
-
dataSourceId: string;
|
|
10407
|
-
dataSourceKey: string;
|
|
10408
|
-
appSchema: DataSchema;
|
|
10409
|
-
direction: FieldMappingDirection;
|
|
10410
9779
|
key?: string | undefined;
|
|
10411
9780
|
integration?: {
|
|
10412
9781
|
id: string;
|
|
@@ -10452,6 +9821,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
10452
9821
|
publishedRevision?: string | undefined;
|
|
10453
9822
|
universalFieldMappingId?: string | undefined;
|
|
10454
9823
|
universalFieldMappingRevision?: string | undefined;
|
|
9824
|
+
dataSourceId?: string | undefined;
|
|
9825
|
+
dataSourceKey?: string | undefined;
|
|
9826
|
+
appSchema?: DataSchema | undefined;
|
|
9827
|
+
direction?: FieldMappingDirection | undefined;
|
|
10455
9828
|
defaultImportValue?: any;
|
|
10456
9829
|
defaultExportValue?: any;
|
|
10457
9830
|
importValue?: any;
|
|
@@ -10497,10 +9870,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
10497
9870
|
id: string;
|
|
10498
9871
|
name: string;
|
|
10499
9872
|
revision: string;
|
|
10500
|
-
dataSourceId: string;
|
|
10501
|
-
dataSourceKey: string;
|
|
10502
|
-
appSchema: DataSchema;
|
|
10503
|
-
direction: FieldMappingDirection;
|
|
10504
9873
|
key?: string | undefined;
|
|
10505
9874
|
uuid?: string | undefined;
|
|
10506
9875
|
description?: string | undefined;
|
|
@@ -10514,6 +9883,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
10514
9883
|
publishedRevision?: string | undefined;
|
|
10515
9884
|
universalFieldMappingId?: string | undefined;
|
|
10516
9885
|
universalFieldMappingRevision?: string | undefined;
|
|
9886
|
+
dataSourceId?: string | undefined;
|
|
9887
|
+
dataSourceKey?: string | undefined;
|
|
9888
|
+
appSchema?: DataSchema | undefined;
|
|
9889
|
+
direction?: FieldMappingDirection | undefined;
|
|
10517
9890
|
defaultImportValue?: any;
|
|
10518
9891
|
defaultExportValue?: any;
|
|
10519
9892
|
importValue?: any;
|
|
@@ -11368,10 +10741,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
11368
10741
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
11369
10742
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
11370
10743
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
11371
|
-
dataSourceId: z.ZodString
|
|
11372
|
-
dataSourceKey: z.ZodString
|
|
11373
|
-
appSchema: z.ZodType<DataSchema, z.ZodTypeDef, DataSchema
|
|
11374
|
-
direction: z.ZodNativeEnum<typeof FieldMappingDirection
|
|
10744
|
+
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
10745
|
+
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
10746
|
+
appSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
|
|
10747
|
+
direction: z.ZodOptional<z.ZodNativeEnum<typeof FieldMappingDirection>>;
|
|
11375
10748
|
defaultImportValue: z.ZodOptional<z.ZodAny>;
|
|
11376
10749
|
defaultExportValue: z.ZodOptional<z.ZodAny>;
|
|
11377
10750
|
importValue: z.ZodOptional<z.ZodAny>;
|
|
@@ -11385,10 +10758,6 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
11385
10758
|
id: string;
|
|
11386
10759
|
name: string;
|
|
11387
10760
|
revision: string;
|
|
11388
|
-
dataSourceId: string;
|
|
11389
|
-
dataSourceKey: string;
|
|
11390
|
-
appSchema: DataSchema;
|
|
11391
|
-
direction: FieldMappingDirection;
|
|
11392
10761
|
key?: string | undefined;
|
|
11393
10762
|
uuid?: string | undefined;
|
|
11394
10763
|
description?: string | undefined;
|
|
@@ -11402,6 +10771,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
11402
10771
|
publishedRevision?: string | undefined;
|
|
11403
10772
|
universalFieldMappingId?: string | undefined;
|
|
11404
10773
|
universalFieldMappingRevision?: string | undefined;
|
|
10774
|
+
dataSourceId?: string | undefined;
|
|
10775
|
+
dataSourceKey?: string | undefined;
|
|
10776
|
+
appSchema?: DataSchema | undefined;
|
|
10777
|
+
direction?: FieldMappingDirection | undefined;
|
|
11405
10778
|
defaultImportValue?: any;
|
|
11406
10779
|
defaultExportValue?: any;
|
|
11407
10780
|
importValue?: any;
|
|
@@ -11414,10 +10787,6 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
11414
10787
|
id: string;
|
|
11415
10788
|
name: string;
|
|
11416
10789
|
revision: string;
|
|
11417
|
-
dataSourceId: string;
|
|
11418
|
-
dataSourceKey: string;
|
|
11419
|
-
appSchema: DataSchema;
|
|
11420
|
-
direction: FieldMappingDirection;
|
|
11421
10790
|
key?: string | undefined;
|
|
11422
10791
|
uuid?: string | undefined;
|
|
11423
10792
|
description?: string | undefined;
|
|
@@ -11431,6 +10800,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
11431
10800
|
publishedRevision?: string | undefined;
|
|
11432
10801
|
universalFieldMappingId?: string | undefined;
|
|
11433
10802
|
universalFieldMappingRevision?: string | undefined;
|
|
10803
|
+
dataSourceId?: string | undefined;
|
|
10804
|
+
dataSourceKey?: string | undefined;
|
|
10805
|
+
appSchema?: DataSchema | undefined;
|
|
10806
|
+
direction?: FieldMappingDirection | undefined;
|
|
11434
10807
|
defaultImportValue?: any;
|
|
11435
10808
|
defaultExportValue?: any;
|
|
11436
10809
|
importValue?: any;
|
|
@@ -13033,10 +12406,6 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
13033
12406
|
id: string;
|
|
13034
12407
|
name: string;
|
|
13035
12408
|
revision: string;
|
|
13036
|
-
dataSourceId: string;
|
|
13037
|
-
dataSourceKey: string;
|
|
13038
|
-
appSchema: DataSchema;
|
|
13039
|
-
direction: FieldMappingDirection;
|
|
13040
12409
|
key?: string | undefined;
|
|
13041
12410
|
uuid?: string | undefined;
|
|
13042
12411
|
description?: string | undefined;
|
|
@@ -13050,6 +12419,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
13050
12419
|
publishedRevision?: string | undefined;
|
|
13051
12420
|
universalFieldMappingId?: string | undefined;
|
|
13052
12421
|
universalFieldMappingRevision?: string | undefined;
|
|
12422
|
+
dataSourceId?: string | undefined;
|
|
12423
|
+
dataSourceKey?: string | undefined;
|
|
12424
|
+
appSchema?: DataSchema | undefined;
|
|
12425
|
+
direction?: FieldMappingDirection | undefined;
|
|
13053
12426
|
defaultImportValue?: any;
|
|
13054
12427
|
defaultExportValue?: any;
|
|
13055
12428
|
importValue?: any;
|
|
@@ -13414,10 +12787,6 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
13414
12787
|
id: string;
|
|
13415
12788
|
name: string;
|
|
13416
12789
|
revision: string;
|
|
13417
|
-
dataSourceId: string;
|
|
13418
|
-
dataSourceKey: string;
|
|
13419
|
-
appSchema: DataSchema;
|
|
13420
|
-
direction: FieldMappingDirection;
|
|
13421
12790
|
key?: string | undefined;
|
|
13422
12791
|
uuid?: string | undefined;
|
|
13423
12792
|
description?: string | undefined;
|
|
@@ -13431,6 +12800,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
13431
12800
|
publishedRevision?: string | undefined;
|
|
13432
12801
|
universalFieldMappingId?: string | undefined;
|
|
13433
12802
|
universalFieldMappingRevision?: string | undefined;
|
|
12803
|
+
dataSourceId?: string | undefined;
|
|
12804
|
+
dataSourceKey?: string | undefined;
|
|
12805
|
+
appSchema?: DataSchema | undefined;
|
|
12806
|
+
direction?: FieldMappingDirection | undefined;
|
|
13434
12807
|
defaultImportValue?: any;
|
|
13435
12808
|
defaultExportValue?: any;
|
|
13436
12809
|
importValue?: any;
|
|
@@ -15167,7 +14540,7 @@ type ExternalEventSubscription = ExternalEventSubscriptionApiResponse;
|
|
|
15167
14540
|
|
|
15168
14541
|
declare class SelfAccessor {
|
|
15169
14542
|
private client;
|
|
15170
|
-
constructor(client:
|
|
14543
|
+
constructor(client: MembraneApiClient);
|
|
15171
14544
|
get(): Promise<Customer>;
|
|
15172
14545
|
patch(data: Partial<{
|
|
15173
14546
|
credentials: any;
|
|
@@ -15926,23 +15299,23 @@ interface ActionSelector extends IntegrationSpecificElementSelector {
|
|
|
15926
15299
|
}
|
|
15927
15300
|
|
|
15928
15301
|
declare class ActionsAccessor extends ElementListAccessor<Action, FindActionsQuery, CreateActionRequest> {
|
|
15929
|
-
constructor(client:
|
|
15302
|
+
constructor(client: MembraneApiClient);
|
|
15930
15303
|
}
|
|
15931
15304
|
declare class ActionAccessor extends ElementAccessor<Action, UpdateActionRequest, ActionSelector> {
|
|
15932
|
-
constructor(client:
|
|
15305
|
+
constructor(client: MembraneApiClient, selector: ActionSelector | string);
|
|
15933
15306
|
apply(integrationKeys: string[]): Promise<Action[]>;
|
|
15934
15307
|
reset(): Promise<any>;
|
|
15935
15308
|
}
|
|
15936
15309
|
declare class IntegrationLevelActionAccessor extends IntegrationLevelElementAccessor<Action, UpdateActionRequest> {
|
|
15937
|
-
client:
|
|
15310
|
+
client: MembraneApiClient;
|
|
15938
15311
|
integrationSelector: string;
|
|
15939
15312
|
actionSelector: string;
|
|
15940
|
-
constructor(client:
|
|
15313
|
+
constructor(client: MembraneApiClient, integrationSelector: string, actionSelector: string);
|
|
15941
15314
|
}
|
|
15942
15315
|
declare class IntegrationLevelActionsListAccessor extends IntegrationLevelElementsListAccessor<Action, Omit<FindActionsQuery, 'integrationId'>, Omit<CreateActionRequest, 'integrationId'>> {
|
|
15943
|
-
client:
|
|
15316
|
+
client: MembraneApiClient;
|
|
15944
15317
|
integrationSelector: string;
|
|
15945
|
-
constructor(client:
|
|
15318
|
+
constructor(client: MembraneApiClient, integrationSelector: string);
|
|
15946
15319
|
}
|
|
15947
15320
|
|
|
15948
15321
|
declare const OpenConfigurationOptions: z.ZodObject<{
|
|
@@ -15962,13 +15335,13 @@ type InstanceKeyQuery = {
|
|
|
15962
15335
|
};
|
|
15963
15336
|
|
|
15964
15337
|
declare class ConnectionLevelElementAccessor<Element, UpdateElement> {
|
|
15965
|
-
protected client:
|
|
15338
|
+
protected client: MembraneApiClient;
|
|
15966
15339
|
protected connectionSelector: string;
|
|
15967
15340
|
protected selector: string;
|
|
15968
15341
|
protected elementKey: string;
|
|
15969
15342
|
protected query: Record<string, any>;
|
|
15970
15343
|
protected endpoint: string;
|
|
15971
|
-
constructor(client:
|
|
15344
|
+
constructor(client: MembraneApiClient, connectionSelector: string, selector: string, elementKey: string, query: Record<string, any>);
|
|
15972
15345
|
protected uri(path?: string, query?: {}): string;
|
|
15973
15346
|
getUniqueIdentifier(): string;
|
|
15974
15347
|
get(query?: {
|
|
@@ -15982,57 +15355,57 @@ declare class ConnectionLevelElementAccessor<Element, UpdateElement> {
|
|
|
15982
15355
|
setup(): Promise<Element>;
|
|
15983
15356
|
}
|
|
15984
15357
|
declare class ConnectionLevelElementsListAccessor<Element, Query> {
|
|
15985
|
-
protected client:
|
|
15358
|
+
protected client: MembraneApiClient;
|
|
15986
15359
|
protected connectionSelector: string;
|
|
15987
15360
|
protected elementKey: string;
|
|
15988
|
-
constructor(client:
|
|
15361
|
+
constructor(client: MembraneApiClient, connectionSelector: string, elementKey: string);
|
|
15989
15362
|
list(query?: Query): Promise<PaginationResponse<Element[]>>;
|
|
15990
15363
|
}
|
|
15991
15364
|
|
|
15992
15365
|
interface OpenActionConfigurationOptions extends OpenConfigurationOptions {
|
|
15993
15366
|
}
|
|
15994
15367
|
declare class ActionInstancesAccessor extends ElementInstanceListAccessor<ActionInstance, FindActionInstancesQuery> {
|
|
15995
|
-
constructor(client:
|
|
15368
|
+
constructor(client: MembraneApiClient);
|
|
15996
15369
|
}
|
|
15997
15370
|
declare class ActionInstanceAccessor extends ElementInstanceAccessor<ActionInstance, ActionInstanceSelector, CreateActionInstanceRequest, UpdateActionInstanceRequest> {
|
|
15998
|
-
client:
|
|
15999
|
-
constructor(client:
|
|
15371
|
+
client: MembraneApiClient;
|
|
15372
|
+
constructor(client: MembraneApiClient, selector: string | ActionInstanceSelector);
|
|
16000
15373
|
setup(): Promise<void>;
|
|
16001
15374
|
reset(): Promise<void>;
|
|
16002
15375
|
run(input?: any): Promise<ActionRunResponse>;
|
|
16003
15376
|
open({ onClose }?: OpenActionConfigurationOptions): Promise<void>;
|
|
16004
15377
|
}
|
|
16005
15378
|
declare class ConnectionLevelActionAccessor extends ConnectionLevelElementAccessor<ActionInstance, UpdateActionInstanceRequest> {
|
|
16006
|
-
client:
|
|
15379
|
+
client: MembraneApiClient;
|
|
16007
15380
|
connectionSelector: string;
|
|
16008
15381
|
actionSelector: string;
|
|
16009
15382
|
query: InstanceKeyQuery;
|
|
16010
|
-
constructor(client:
|
|
15383
|
+
constructor(client: MembraneApiClient, connectionSelector: string, actionSelector: string, query: InstanceKeyQuery);
|
|
16011
15384
|
run(input?: any): Promise<ActionRunResponse>;
|
|
16012
15385
|
}
|
|
16013
15386
|
declare class ConnectionLevelActionsAccessor extends ConnectionLevelElementsListAccessor<ActionInstance, ListActionInstancesForConnectionQuery> {
|
|
16014
|
-
client:
|
|
15387
|
+
client: MembraneApiClient;
|
|
16015
15388
|
connectionSelector: string;
|
|
16016
|
-
constructor(client:
|
|
15389
|
+
constructor(client: MembraneApiClient, connectionSelector: string);
|
|
16017
15390
|
}
|
|
16018
15391
|
|
|
16019
15392
|
interface OpenDataSourceConfigurationOptions extends OpenConfigurationOptions {
|
|
16020
15393
|
}
|
|
16021
15394
|
declare class DataSourcesAccessor extends ElementListAccessor<DataSource, FindDataSourcesQuery, CreateDataSourceRequest> {
|
|
16022
|
-
constructor(client:
|
|
15395
|
+
constructor(client: MembraneApiClient);
|
|
16023
15396
|
}
|
|
16024
15397
|
declare class DataSourceAccessor extends ElementAccessor<DataSource, UpdateDataSourceRequest, DataSourceSelector> {
|
|
16025
|
-
constructor(client:
|
|
15398
|
+
constructor(client: MembraneApiClient, selector: DataSourceSelector | string);
|
|
16026
15399
|
apply(integrationKeys: string[]): Promise<DataSource[]>;
|
|
16027
15400
|
setup(): Promise<void>;
|
|
16028
15401
|
reset(): Promise<any>;
|
|
16029
15402
|
}
|
|
16030
15403
|
declare class DataSourceInstancesAccessor extends ElementInstanceListAccessor<DataSourceInstance, FindDataSourceInstancesQuery> {
|
|
16031
|
-
constructor(client:
|
|
15404
|
+
constructor(client: MembraneApiClient);
|
|
16032
15405
|
}
|
|
16033
15406
|
declare class DataSourceInstanceAccessor extends ElementInstanceAccessor<DataSourceInstance, DataSourceInstanceSelector, CreateDataSourceInstanceRequest, UpdateDataSourceInstanceRequest> {
|
|
16034
|
-
client:
|
|
16035
|
-
constructor(client:
|
|
15407
|
+
client: MembraneApiClient;
|
|
15408
|
+
constructor(client: MembraneApiClient, selector: string | DataSourceInstanceSelector);
|
|
16036
15409
|
setup(): Promise<void>;
|
|
16037
15410
|
reset(): Promise<void>;
|
|
16038
15411
|
openConfiguration({ onClose }?: OpenDataSourceConfigurationOptions): Promise<void>;
|
|
@@ -16048,54 +15421,54 @@ declare class DataSourceInstanceAccessor extends ElementInstanceAccessor<DataSou
|
|
|
16048
15421
|
findRecords(request?: DataCollectionFindRequest): Promise<DataCollectionFindResponse>;
|
|
16049
15422
|
}
|
|
16050
15423
|
declare class IntegrationLevelDataSourceAccessor extends IntegrationLevelElementAccessor<DataSource, UpdateDataSourceRequest> {
|
|
16051
|
-
client:
|
|
15424
|
+
client: MembraneApiClient;
|
|
16052
15425
|
integrationSelector: string;
|
|
16053
15426
|
dataSourceSelector: string;
|
|
16054
|
-
constructor(client:
|
|
15427
|
+
constructor(client: MembraneApiClient, integrationSelector: string, dataSourceSelector: string);
|
|
16055
15428
|
}
|
|
16056
15429
|
declare class IntegrationLevelDataSourcesListAccessor extends IntegrationLevelElementsListAccessor<DataSource, ListDataSourcesForIntegrationQuery, Omit<CreateDataSourceRequest, 'integrationId'>> {
|
|
16057
|
-
client:
|
|
15430
|
+
client: MembraneApiClient;
|
|
16058
15431
|
integrationSelector: string;
|
|
16059
|
-
constructor(client:
|
|
15432
|
+
constructor(client: MembraneApiClient, integrationSelector: string);
|
|
16060
15433
|
}
|
|
16061
15434
|
declare class ConnectionLevelDataSourceAccessor extends ConnectionLevelElementAccessor<DataSourceInstance, UpdateDataSourceInstanceRequest> {
|
|
16062
|
-
client:
|
|
15435
|
+
client: MembraneApiClient;
|
|
16063
15436
|
connectionSelector: string;
|
|
16064
15437
|
dataSourceSelector: string;
|
|
16065
15438
|
query: InstanceKeyQuery;
|
|
16066
|
-
constructor(client:
|
|
15439
|
+
constructor(client: MembraneApiClient, connectionSelector: string, dataSourceSelector: string, query: InstanceKeyQuery);
|
|
16067
15440
|
openConfiguration(options?: OpenDataSourceConfigurationOptions): Promise<void>;
|
|
16068
15441
|
}
|
|
16069
15442
|
declare class ConnectionLevelDataSourcesAccessor extends ConnectionLevelElementsListAccessor<DataSource, ListDataSourceInstancesForConnectionQuery> {
|
|
16070
|
-
client:
|
|
15443
|
+
client: MembraneApiClient;
|
|
16071
15444
|
connectionSelector: string;
|
|
16072
|
-
constructor(client:
|
|
15445
|
+
constructor(client: MembraneApiClient, connectionSelector: string);
|
|
16073
15446
|
}
|
|
16074
15447
|
|
|
16075
15448
|
interface OpenFieldMappingInstanceConfigurationOptions extends OpenConfigurationOptions {
|
|
16076
15449
|
}
|
|
16077
15450
|
declare class FieldMappingInstancesAccessor extends ElementInstanceListAccessor<FieldMappingInstance, FindFieldMappingInstancesQuery> {
|
|
16078
|
-
constructor(client:
|
|
15451
|
+
constructor(client: MembraneApiClient);
|
|
16079
15452
|
}
|
|
16080
15453
|
declare class FieldMappingInstanceAccessor extends ElementInstanceAccessor<FieldMappingInstance, FieldMappingInstanceSelector, CreateFieldMappingInstanceRequest, UpdateFieldMappingInstanceRequest> {
|
|
16081
15454
|
private client;
|
|
16082
|
-
constructor(client:
|
|
15455
|
+
constructor(client: MembraneApiClient, selector: string | FieldMappingInstanceSelector);
|
|
16083
15456
|
setup(): Promise<void>;
|
|
16084
15457
|
reset(): Promise<void>;
|
|
16085
15458
|
openConfiguration({ onClose }?: OpenFieldMappingInstanceConfigurationOptions): Promise<void>;
|
|
16086
15459
|
}
|
|
16087
15460
|
declare class ConnectionLevelFieldMappingAccessor extends ConnectionLevelElementAccessor<FieldMappingInstance, UpdateFieldMappingInstanceRequest> {
|
|
16088
|
-
client:
|
|
15461
|
+
client: MembraneApiClient;
|
|
16089
15462
|
connectionSelector: string;
|
|
16090
15463
|
fieldMappingSelector: string;
|
|
16091
15464
|
query: InstanceKeyQuery;
|
|
16092
|
-
constructor(client:
|
|
15465
|
+
constructor(client: MembraneApiClient, connectionSelector: string, fieldMappingSelector: string, query: InstanceKeyQuery);
|
|
16093
15466
|
openConfiguration({ onClose }?: OpenFieldMappingInstanceConfigurationOptions): Promise<void>;
|
|
16094
15467
|
}
|
|
16095
15468
|
declare class ConnectionLevelFieldMappingsAccessor extends ConnectionLevelElementsListAccessor<FieldMappingInstance, ListFieldMappingInstancesForConnectionQuery> {
|
|
16096
|
-
client:
|
|
15469
|
+
client: MembraneApiClient;
|
|
16097
15470
|
connectionSelector: string;
|
|
16098
|
-
constructor(client:
|
|
15471
|
+
constructor(client: MembraneApiClient, connectionSelector: string);
|
|
16099
15472
|
}
|
|
16100
15473
|
|
|
16101
15474
|
interface OpenFlowInstanceConfigurationOptions extends OpenConfigurationOptions {
|
|
@@ -16104,13 +15477,13 @@ interface OpenFlowInstanceConfigurationOptions extends OpenConfigurationOptions
|
|
|
16104
15477
|
interface OpenFlowInstanceEditorOptions extends OpenConfigurationOptions {
|
|
16105
15478
|
}
|
|
16106
15479
|
declare class FlowInstancesAccessor extends ElementInstanceListAccessor<FlowInstance, FindFlowInstancesQuery> {
|
|
16107
|
-
constructor(client:
|
|
15480
|
+
constructor(client: MembraneApiClient);
|
|
16108
15481
|
create(data: CreateFlowInstanceRequest): Promise<FlowInstance>;
|
|
16109
15482
|
}
|
|
16110
15483
|
declare class FlowInstanceAccessor extends ElementInstanceAccessor<FlowInstance, FlowInstanceSelector, CreateFlowInstanceRequest, UpdateFlowInstanceRequest> {
|
|
16111
|
-
protected client:
|
|
15484
|
+
protected client: MembraneApiClient;
|
|
16112
15485
|
protected selector: FlowInstanceSelector | string;
|
|
16113
|
-
constructor(client:
|
|
15486
|
+
constructor(client: MembraneApiClient, selector: FlowInstanceSelector | string);
|
|
16114
15487
|
enable(): Promise<FlowInstance>;
|
|
16115
15488
|
disable(): Promise<FlowInstance>;
|
|
16116
15489
|
updateToLatestFlow(): Promise<FlowInstance>;
|
|
@@ -16125,11 +15498,11 @@ declare class FlowInstanceAccessor extends ElementInstanceAccessor<FlowInstance,
|
|
|
16125
15498
|
run(options?: RunFlowOptions): Promise<FlowRun>;
|
|
16126
15499
|
}
|
|
16127
15500
|
declare class ConnectionLevelFlowAccessor extends ConnectionLevelElementAccessor<FlowInstance, UpdateFlowInstanceRequest> {
|
|
16128
|
-
client:
|
|
15501
|
+
client: MembraneApiClient;
|
|
16129
15502
|
connectionSelector: string;
|
|
16130
15503
|
flowSelector: string;
|
|
16131
15504
|
query: InstanceKeyQuery;
|
|
16132
|
-
constructor(client:
|
|
15505
|
+
constructor(client: MembraneApiClient, connectionSelector: string, flowSelector: string, query: InstanceKeyQuery);
|
|
16133
15506
|
enable(): Promise<FlowInstance>;
|
|
16134
15507
|
disable(): Promise<FlowInstance>;
|
|
16135
15508
|
run(options: {
|
|
@@ -16140,19 +15513,19 @@ declare class ConnectionLevelFlowAccessor extends ConnectionLevelElementAccessor
|
|
|
16140
15513
|
openEditor(options?: OpenFlowInstanceEditorOptions): Promise<void>;
|
|
16141
15514
|
}
|
|
16142
15515
|
declare class ConnectionLevelFlowsAccessor extends ConnectionLevelElementsListAccessor<FlowInstance, ListFlowInstancesForConnectionQuery> {
|
|
16143
|
-
client:
|
|
15516
|
+
client: MembraneApiClient;
|
|
16144
15517
|
connectionSelector: string;
|
|
16145
|
-
constructor(client:
|
|
15518
|
+
constructor(client: MembraneApiClient, connectionSelector: string);
|
|
16146
15519
|
}
|
|
16147
15520
|
|
|
16148
15521
|
declare class ConnectionsAccessor extends ElementInstanceListAccessor<Connection, FindConnectionsQuery> {
|
|
16149
|
-
constructor(client:
|
|
15522
|
+
constructor(client: MembraneApiClient);
|
|
16150
15523
|
create(data: CreateConnectionRequest): Promise<Connection>;
|
|
16151
15524
|
}
|
|
16152
15525
|
declare class ConnectionAccessor {
|
|
16153
|
-
client:
|
|
15526
|
+
client: MembraneApiClient;
|
|
16154
15527
|
connectionSelector: string;
|
|
16155
|
-
constructor(client:
|
|
15528
|
+
constructor(client: MembraneApiClient, connectionSelector: string);
|
|
16156
15529
|
get actions(): ConnectionLevelActionsAccessor;
|
|
16157
15530
|
action(actionSelector: string, query?: InstanceKeyQuery): ConnectionLevelActionAccessor;
|
|
16158
15531
|
get flows(): ConnectionLevelFlowsAccessor;
|
|
@@ -16244,19 +15617,19 @@ declare class ConnectionAccessor {
|
|
|
16244
15617
|
getPath(subpath?: string, query?: Record<string, any>): string;
|
|
16245
15618
|
}
|
|
16246
15619
|
declare class ConnectionOperationAccessor {
|
|
16247
|
-
client:
|
|
15620
|
+
client: MembraneApiClient;
|
|
16248
15621
|
connectionAccessor: ConnectionAccessor;
|
|
16249
15622
|
key: string;
|
|
16250
|
-
constructor(client:
|
|
15623
|
+
constructor(client: MembraneApiClient, connectionAccessor: ConnectionAccessor, key: string);
|
|
16251
15624
|
get(): Promise<OperationSpec>;
|
|
16252
15625
|
run(request?: OperationRunRequest): Promise<OperationRunResponse>;
|
|
16253
15626
|
}
|
|
16254
15627
|
declare class ConnectionDataCollectionAccessor {
|
|
16255
|
-
client:
|
|
15628
|
+
client: MembraneApiClient;
|
|
16256
15629
|
connectionAccessor: ConnectionAccessor;
|
|
16257
15630
|
key: string;
|
|
16258
15631
|
parameters: Record<string, any>;
|
|
16259
|
-
constructor(client:
|
|
15632
|
+
constructor(client: MembraneApiClient, connectionAccessor: ConnectionAccessor, key: string, parameters: Record<string, any>);
|
|
16260
15633
|
get(): Promise<DataCollectionSpec>;
|
|
16261
15634
|
findById(request?: DataCollectionFindByIdRequest): Promise<DataCollectionFindByIdResponse>;
|
|
16262
15635
|
list(request?: DataCollectionListRequest): Promise<DataCollectionListResponse>;
|
|
@@ -16278,30 +15651,30 @@ declare class ConnectionProxy {
|
|
|
16278
15651
|
}
|
|
16279
15652
|
|
|
16280
15653
|
declare class FlowsAccessor extends ElementListAccessor<Flow, FindFlowsQuery, CreateFlowRequest> {
|
|
16281
|
-
constructor(client:
|
|
15654
|
+
constructor(client: MembraneApiClient);
|
|
16282
15655
|
}
|
|
16283
15656
|
declare class FlowAccessor extends ElementAccessor<Flow, UpdateFlowRequest, FlowSelector> {
|
|
16284
|
-
constructor(client:
|
|
15657
|
+
constructor(client: MembraneApiClient, selector: FlowSelector | string);
|
|
16285
15658
|
apply(integrationKeys: string[]): Promise<Flow[]>;
|
|
16286
15659
|
reset(): Promise<Flow>;
|
|
16287
15660
|
}
|
|
16288
15661
|
declare class IntegrationLevelFlowAccessor extends IntegrationLevelElementAccessor<Flow, UpdateFlowRequest> {
|
|
16289
|
-
client:
|
|
15662
|
+
client: MembraneApiClient;
|
|
16290
15663
|
integrationSelector: string;
|
|
16291
15664
|
flowSelector: string;
|
|
16292
|
-
constructor(client:
|
|
15665
|
+
constructor(client: MembraneApiClient, integrationSelector: string, flowSelector: string);
|
|
16293
15666
|
}
|
|
16294
15667
|
declare class IntegrationLevelFlowsListAccessor extends IntegrationLevelElementsListAccessor<Flow, ListFlowsForIntegrationQuery, Omit<CreateFlowRequest, 'integrationId'>> {
|
|
16295
|
-
client:
|
|
15668
|
+
client: MembraneApiClient;
|
|
16296
15669
|
integrationSelector: string;
|
|
16297
|
-
constructor(client:
|
|
15670
|
+
constructor(client: MembraneApiClient, integrationSelector: string);
|
|
16298
15671
|
}
|
|
16299
15672
|
|
|
16300
15673
|
interface OpenFlowRunEditorOptions extends OpenConfigurationOptions {
|
|
16301
15674
|
}
|
|
16302
15675
|
declare class FlowRunsAccessor {
|
|
16303
15676
|
private readonly client;
|
|
16304
|
-
constructor(client:
|
|
15677
|
+
constructor(client: MembraneApiClient);
|
|
16305
15678
|
find(query: FindFlowRunsQuery): Promise<FindFlowRunsResponse>;
|
|
16306
15679
|
create(request: CreateFlowRunRequest): Promise<FlowRun>;
|
|
16307
15680
|
}
|
|
@@ -16309,7 +15682,7 @@ declare class FlowRunAccessor {
|
|
|
16309
15682
|
private readonly client;
|
|
16310
15683
|
id: string;
|
|
16311
15684
|
private baseUri;
|
|
16312
|
-
constructor(client:
|
|
15685
|
+
constructor(client: MembraneApiClient, id: string);
|
|
16313
15686
|
get(): Promise<FlowRun>;
|
|
16314
15687
|
stop(): Promise<void>;
|
|
16315
15688
|
getOutput(): Promise<any>;
|
|
@@ -16329,37 +15702,37 @@ declare class FlowRunAccessor {
|
|
|
16329
15702
|
}
|
|
16330
15703
|
|
|
16331
15704
|
declare class FieldMappingsAccessor extends ElementListAccessor<FieldMapping, FindFieldMappingsQuery, CreateFieldMappingRequest> {
|
|
16332
|
-
constructor(client:
|
|
15705
|
+
constructor(client: MembraneApiClient);
|
|
16333
15706
|
}
|
|
16334
15707
|
declare class FieldMappingAccessor extends ElementAccessor<FieldMapping, UpdateFieldMappingRequest, FieldMappingSelector> {
|
|
16335
|
-
constructor(client:
|
|
15708
|
+
constructor(client: MembraneApiClient, selector: string | FieldMappingSelector);
|
|
16336
15709
|
getAppSchema(): Promise<any>;
|
|
16337
15710
|
apply(integrationKeys: string[]): Promise<FieldMapping[]>;
|
|
16338
15711
|
setup(): Promise<any>;
|
|
16339
15712
|
reset(): Promise<any>;
|
|
16340
15713
|
}
|
|
16341
15714
|
declare class IntegrationLevelFieldMappingAccessor extends IntegrationLevelElementAccessor<FieldMapping, UpdateFieldMappingRequest> {
|
|
16342
|
-
client:
|
|
15715
|
+
client: MembraneApiClient;
|
|
16343
15716
|
integrationSelector: string;
|
|
16344
15717
|
fieldMappingSelector: string;
|
|
16345
|
-
constructor(client:
|
|
15718
|
+
constructor(client: MembraneApiClient, integrationSelector: string, fieldMappingSelector: string);
|
|
16346
15719
|
}
|
|
16347
15720
|
declare class IntegrationLevelFieldMappingsListAccessor extends IntegrationLevelElementsListAccessor<FieldMapping, ListFieldMappingsForIntegrationQuery, Omit<CreateFieldMappingRequest, 'integrationId'>> {
|
|
16348
|
-
client:
|
|
15721
|
+
client: MembraneApiClient;
|
|
16349
15722
|
integrationSelector: string;
|
|
16350
|
-
constructor(client:
|
|
15723
|
+
constructor(client: MembraneApiClient, integrationSelector: string);
|
|
16351
15724
|
}
|
|
16352
15725
|
|
|
16353
15726
|
interface OpenIntegrationUIIntegrationConfigurationOptions extends OpenConfigurationOptions {
|
|
16354
15727
|
}
|
|
16355
15728
|
declare class IntegrationsAccessor extends ElementListAccessor<Integration, FindIntegrationsQuery, CreateIntegrationRequest> {
|
|
16356
|
-
constructor(client:
|
|
15729
|
+
constructor(client: MembraneApiClient);
|
|
16357
15730
|
}
|
|
16358
15731
|
declare class IntegrationAccessor extends ElementAccessor<Integration, UpdateIntegrationRequest> {
|
|
16359
15732
|
private client;
|
|
16360
15733
|
private integrationSelector;
|
|
16361
15734
|
baseUri: string;
|
|
16362
|
-
constructor(client:
|
|
15735
|
+
constructor(client: MembraneApiClient, integrationSelector: string);
|
|
16363
15736
|
get actions(): IntegrationLevelActionsListAccessor;
|
|
16364
15737
|
action(actionSelector: string): IntegrationLevelActionAccessor;
|
|
16365
15738
|
get flows(): IntegrationLevelFlowsListAccessor;
|
|
@@ -16459,82 +15832,82 @@ declare class IntegrationAccessor extends ElementAccessor<Integration, UpdateInt
|
|
|
16459
15832
|
}
|
|
16460
15833
|
|
|
16461
15834
|
declare class ScenariosAccessor extends ElementListAccessor<Scenario, FindScenariosQuery, CreateScenarioRequest> {
|
|
16462
|
-
constructor(client:
|
|
15835
|
+
constructor(client: MembraneApiClient);
|
|
16463
15836
|
}
|
|
16464
15837
|
declare class ScenarioAccessor extends ElementAccessor<Scenario, UpdateScenarioRequest> {
|
|
16465
|
-
constructor(client:
|
|
15838
|
+
constructor(client: MembraneApiClient, selector: string);
|
|
16466
15839
|
}
|
|
16467
15840
|
|
|
16468
15841
|
declare class ScreensAccessor extends ElementListAccessor<Screen, FindScreensQuery, CreateScreenRequest> {
|
|
16469
|
-
constructor(client:
|
|
15842
|
+
constructor(client: MembraneApiClient);
|
|
16470
15843
|
}
|
|
16471
15844
|
declare class ScreenAccessor extends ElementAccessor<Screen, UpdateScreenRequest, ScreenSelector> {
|
|
16472
|
-
constructor(client:
|
|
15845
|
+
constructor(client: MembraneApiClient, selector: ScreenSelector | string);
|
|
16473
15846
|
}
|
|
16474
15847
|
|
|
16475
15848
|
declare class CustomersAccessor extends ElementListAccessor<Customer, FindCustomersQuery, CreateCustomerRequest> {
|
|
16476
|
-
constructor(client:
|
|
15849
|
+
constructor(client: MembraneApiClient);
|
|
16477
15850
|
}
|
|
16478
15851
|
declare class CustomerAccessor extends ElementAccessor<Customer, UpdateCustomerRequest, CustomerSelector> {
|
|
16479
|
-
constructor(client:
|
|
15852
|
+
constructor(client: MembraneApiClient, selector: CustomerSelector | string);
|
|
16480
15853
|
}
|
|
16481
15854
|
|
|
16482
15855
|
declare class DataLinkTablesAccessor extends ElementListAccessor<BaseDataLinkTable, FindDataLinkTablesQuery, CreateDataLinkTableRequest> {
|
|
16483
|
-
constructor(client:
|
|
15856
|
+
constructor(client: MembraneApiClient);
|
|
16484
15857
|
}
|
|
16485
15858
|
declare class DataLinkTableAccessor extends ElementAccessor<BaseDataLinkTable, UpdateDataLinkTableRequest> {
|
|
16486
|
-
constructor(client:
|
|
15859
|
+
constructor(client: MembraneApiClient, idOrKey: string);
|
|
16487
15860
|
}
|
|
16488
15861
|
|
|
16489
15862
|
declare class DataLinkTableInstancesAccessor extends ElementInstanceListAccessor<DataLinkTableInstance, FindDataLinkTableInstancesQuery> {
|
|
16490
|
-
constructor(client:
|
|
15863
|
+
constructor(client: MembraneApiClient);
|
|
16491
15864
|
}
|
|
16492
15865
|
declare class DataLinkTableInstanceAccessor extends ElementInstanceAccessor<DataLinkTableInstance, DataLinkTableInstanceSelector, UpdateDataLinkTableInstanceRequest, UpdateDataLinkTableInstanceRequest> {
|
|
16493
15866
|
private client;
|
|
16494
|
-
constructor(client:
|
|
15867
|
+
constructor(client: MembraneApiClient, selector: string | DataLinkTableInstanceSelector);
|
|
16495
15868
|
findLinks(query?: FindDataLinksInTableQuery): Promise<FindDataLinksResponse>;
|
|
16496
15869
|
createLink(data: CreateDataLinkRequest): Promise<void>;
|
|
16497
15870
|
deleteLink(data: DeleteDataLinkRequest): Promise<void>;
|
|
16498
15871
|
}
|
|
16499
15872
|
|
|
16500
15873
|
declare class AppEventTypesAccessor extends ElementListAccessor<BaseAppEventType, FindAppEventTypesQuery, CreateAppEventTypeRequest> {
|
|
16501
|
-
constructor(client:
|
|
15874
|
+
constructor(client: MembraneApiClient);
|
|
16502
15875
|
}
|
|
16503
15876
|
declare class AppEventTypeAccessor extends ElementAccessor<BaseAppEventType, UpdateAppEventTypeRequest> {
|
|
16504
|
-
constructor(client:
|
|
15877
|
+
constructor(client: MembraneApiClient, idOrKey: string);
|
|
16505
15878
|
}
|
|
16506
15879
|
|
|
16507
15880
|
declare class AppEventSubscriptionsAccessor extends ElementInstanceListAccessor<AppEventSubscription, FindAppEventSubscriptionsQuery> {
|
|
16508
|
-
constructor(client:
|
|
15881
|
+
constructor(client: MembraneApiClient);
|
|
16509
15882
|
}
|
|
16510
15883
|
declare class AppEventSubscriptionAccessor extends ElementInstanceAccessor<AppEventSubscription, AppEventSubscriptionSelector, UpdateAppEventSubscriptionRequest, UpdateAppEventSubscriptionRequest> {
|
|
16511
|
-
constructor(client:
|
|
15884
|
+
constructor(client: MembraneApiClient, selector: string | AppEventSubscriptionSelector);
|
|
16512
15885
|
subscribe(): Promise<void>;
|
|
16513
15886
|
}
|
|
16514
15887
|
|
|
16515
15888
|
declare class AppDataSchemasAccessor extends ElementListAccessor<BaseAppDataSchema, FindAppDataSchemasQuery, CreateAppDataSchemaRequest> {
|
|
16516
|
-
constructor(client:
|
|
15889
|
+
constructor(client: MembraneApiClient);
|
|
16517
15890
|
}
|
|
16518
15891
|
declare class AppDataSchemaAccessor extends ElementAccessor<BaseAppDataSchema, UpdateAppDataSchemaRequest> {
|
|
16519
|
-
constructor(client:
|
|
15892
|
+
constructor(client: MembraneApiClient, idOrKey: string);
|
|
16520
15893
|
}
|
|
16521
15894
|
|
|
16522
15895
|
declare class AppDataSchemaInstancesAccessor extends ElementInstanceListAccessor<AppDataSchemaInstance, FindAppDataSchemaInstancesQuery> {
|
|
16523
|
-
constructor(client:
|
|
15896
|
+
constructor(client: MembraneApiClient);
|
|
16524
15897
|
}
|
|
16525
15898
|
declare class AppDataSchemaInstanceAccessor extends ElementInstanceAccessor<AppDataSchemaInstance, AppDataSchemaInstanceSelector, UpdateAppDataSchemaInstanceRequest, CreateAppDataSchemaInstanceRequest> {
|
|
16526
15899
|
private client;
|
|
16527
|
-
constructor(client:
|
|
15900
|
+
constructor(client: MembraneApiClient, selector: string | AppDataSchemaInstanceSelector);
|
|
16528
15901
|
setup(): Promise<void>;
|
|
16529
15902
|
}
|
|
16530
15903
|
|
|
16531
15904
|
declare class ExternalEventSubscriptionsAccessor extends ElementInstanceListAccessor<ExternalEventSubscription, FindExternalEventSubscriptionsQuery> {
|
|
16532
|
-
constructor(client:
|
|
15905
|
+
constructor(client: MembraneApiClient);
|
|
16533
15906
|
}
|
|
16534
15907
|
declare class ExternalEventSubscriptionAccessor {
|
|
16535
15908
|
private client;
|
|
16536
15909
|
private id;
|
|
16537
|
-
constructor(client:
|
|
15910
|
+
constructor(client: MembraneApiClient, id: string);
|
|
16538
15911
|
get(): Promise<ExternalEventSubscription>;
|
|
16539
15912
|
setup(): Promise<void>;
|
|
16540
15913
|
subscribe(): Promise<void>;
|
|
@@ -16544,13 +15917,13 @@ declare class ExternalEventSubscriptionAccessor {
|
|
|
16544
15917
|
private getPath;
|
|
16545
15918
|
}
|
|
16546
15919
|
|
|
16547
|
-
interface
|
|
15920
|
+
interface OpenMembraneConfigurationOptions extends OpenConfigurationOptions {
|
|
16548
15921
|
}
|
|
16549
|
-
declare class
|
|
16550
|
-
constructor(options:
|
|
15922
|
+
declare class MembraneClient extends MembraneApiClient {
|
|
15923
|
+
constructor(options: MembraneClientOptions);
|
|
16551
15924
|
get self(): SelfAccessor;
|
|
16552
15925
|
get flows(): FlowsAccessor;
|
|
16553
|
-
open({ onClose }?:
|
|
15926
|
+
open({ onClose }?: OpenMembraneConfigurationOptions): Promise<void>;
|
|
16554
15927
|
action(selector: string | ActionSelector): ActionAccessor;
|
|
16555
15928
|
get actions(): ActionsAccessor;
|
|
16556
15929
|
screen(selector: string | ScreenSelector): ScreenAccessor;
|
|
@@ -16596,4 +15969,4 @@ declare class IntegrationAppClient extends IntegrationAppApiClient {
|
|
|
16596
15969
|
connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
|
|
16597
15970
|
}
|
|
16598
15971
|
|
|
16599
|
-
export {
|
|
15972
|
+
export { MembraneClient as default };
|