@membranehq/sdk 0.6.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.d.ts +167 -166
- 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/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/base/field-mappings/types.d.ts +12 -12
- package/dist/dts/workspace-elements/errors.d.ts +2 -2
- package/dist/index.d.ts +201 -198
- package/dist/index.js +77 -70
- package/dist/index.js.map +1 -1
- package/dist/index.module.d.mts +201 -198
- package/dist/index.module.mjs +72 -66
- package/dist/index.module.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -46,45 +46,45 @@ declare const ErrorDataSchema: z.ZodType<ErrorDataSchema>;
|
|
|
46
46
|
interface ErrorDataFields extends z.infer<typeof ErrorDataSchema> {
|
|
47
47
|
}
|
|
48
48
|
type ErrorConstructorArg = string | ErrorDataFields | Error;
|
|
49
|
-
declare function
|
|
49
|
+
declare function isMembraneError(error: any): any;
|
|
50
50
|
declare class ErrorData implements ErrorDataFields {
|
|
51
51
|
constructor(arg: ErrorConstructorArg);
|
|
52
52
|
}
|
|
53
53
|
interface ErrorData extends ErrorDataFields {
|
|
54
54
|
}
|
|
55
|
-
declare class
|
|
56
|
-
|
|
55
|
+
declare class MembraneError extends Error {
|
|
56
|
+
isMembraneError: true;
|
|
57
57
|
data: ErrorData;
|
|
58
58
|
constructor(arg: ErrorConstructorArg);
|
|
59
59
|
}
|
|
60
|
-
declare class InternalError extends
|
|
60
|
+
declare class InternalError extends MembraneError {
|
|
61
61
|
constructor(arg: ErrorConstructorArg);
|
|
62
62
|
}
|
|
63
|
-
declare class BadRequestError extends
|
|
63
|
+
declare class BadRequestError extends MembraneError {
|
|
64
64
|
constructor(arg: ErrorConstructorArg);
|
|
65
65
|
}
|
|
66
|
-
declare class ConcurrencyError extends
|
|
66
|
+
declare class ConcurrencyError extends MembraneError {
|
|
67
67
|
constructor(arg: ErrorConstructorArg);
|
|
68
68
|
}
|
|
69
|
-
declare class ConfigurationError extends
|
|
69
|
+
declare class ConfigurationError extends MembraneError {
|
|
70
70
|
constructor(arg: ErrorConstructorArg);
|
|
71
71
|
}
|
|
72
|
-
declare class FlowInstanceSetupError extends
|
|
72
|
+
declare class FlowInstanceSetupError extends MembraneError {
|
|
73
73
|
constructor(arg: ErrorConstructorArg);
|
|
74
74
|
}
|
|
75
|
-
declare class FlowRunError extends
|
|
75
|
+
declare class FlowRunError extends MembraneError {
|
|
76
76
|
constructor(arg: ErrorConstructorArg);
|
|
77
77
|
}
|
|
78
|
-
declare class ActionRunError extends
|
|
78
|
+
declare class ActionRunError extends MembraneError {
|
|
79
79
|
constructor(arg: ErrorConstructorArg);
|
|
80
80
|
}
|
|
81
|
-
declare class ActionInstanceSetupError extends
|
|
81
|
+
declare class ActionInstanceSetupError extends MembraneError {
|
|
82
82
|
constructor(arg: ErrorConstructorArg);
|
|
83
83
|
}
|
|
84
|
-
declare class UnitRunError extends
|
|
84
|
+
declare class UnitRunError extends MembraneError {
|
|
85
85
|
constructor(arg: ErrorConstructorArg);
|
|
86
86
|
}
|
|
87
|
-
declare class ConnectionError extends
|
|
87
|
+
declare class ConnectionError extends MembraneError {
|
|
88
88
|
constructor(arg: ErrorConstructorArg);
|
|
89
89
|
}
|
|
90
90
|
declare class NotFoundError extends BadRequestError {
|
|
@@ -99,7 +99,7 @@ declare class NotAuthenticatedError extends BadRequestError {
|
|
|
99
99
|
declare class AccessDeniedError extends BadRequestError {
|
|
100
100
|
constructor(arg: ErrorConstructorArg);
|
|
101
101
|
}
|
|
102
|
-
declare class CustomCodeError extends
|
|
102
|
+
declare class CustomCodeError extends MembraneError {
|
|
103
103
|
constructor(arg: ErrorConstructorArg);
|
|
104
104
|
}
|
|
105
105
|
|
|
@@ -308,6 +308,7 @@ interface DataSchema {
|
|
|
308
308
|
isSensitive?: boolean;
|
|
309
309
|
referenceCollectionPath?: string;
|
|
310
310
|
referenceCollectionUri?: string;
|
|
311
|
+
[key: string]: any;
|
|
311
312
|
}
|
|
312
313
|
declare const DataSchema: z.ZodType<DataSchema>;
|
|
313
314
|
|
|
@@ -343,10 +344,10 @@ declare const BaseFieldMapping: z.ZodObject<{
|
|
|
343
344
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
344
345
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
345
346
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
346
|
-
dataSourceId: z.ZodString
|
|
347
|
-
dataSourceKey: z.ZodString
|
|
348
|
-
appSchema: z.ZodType<DataSchema, z.ZodTypeDef, DataSchema
|
|
349
|
-
direction: z.ZodNativeEnum<typeof FieldMappingDirection
|
|
347
|
+
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
348
|
+
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
349
|
+
appSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
|
|
350
|
+
direction: z.ZodOptional<z.ZodNativeEnum<typeof FieldMappingDirection>>;
|
|
350
351
|
defaultImportValue: z.ZodOptional<z.ZodAny>;
|
|
351
352
|
defaultExportValue: z.ZodOptional<z.ZodAny>;
|
|
352
353
|
importValue: z.ZodOptional<z.ZodAny>;
|
|
@@ -360,10 +361,6 @@ declare const BaseFieldMapping: z.ZodObject<{
|
|
|
360
361
|
id: string;
|
|
361
362
|
name: string;
|
|
362
363
|
revision: string;
|
|
363
|
-
dataSourceId: string;
|
|
364
|
-
dataSourceKey: string;
|
|
365
|
-
appSchema: DataSchema;
|
|
366
|
-
direction: FieldMappingDirection;
|
|
367
364
|
key?: string | undefined;
|
|
368
365
|
uuid?: string | undefined;
|
|
369
366
|
description?: string | undefined;
|
|
@@ -377,6 +374,10 @@ declare const BaseFieldMapping: z.ZodObject<{
|
|
|
377
374
|
publishedRevision?: string | undefined;
|
|
378
375
|
universalFieldMappingId?: string | undefined;
|
|
379
376
|
universalFieldMappingRevision?: string | undefined;
|
|
377
|
+
dataSourceId?: string | undefined;
|
|
378
|
+
dataSourceKey?: string | undefined;
|
|
379
|
+
appSchema?: DataSchema | undefined;
|
|
380
|
+
direction?: FieldMappingDirection | undefined;
|
|
380
381
|
defaultImportValue?: any;
|
|
381
382
|
defaultExportValue?: any;
|
|
382
383
|
importValue?: any;
|
|
@@ -389,10 +390,6 @@ declare const BaseFieldMapping: z.ZodObject<{
|
|
|
389
390
|
id: string;
|
|
390
391
|
name: string;
|
|
391
392
|
revision: string;
|
|
392
|
-
dataSourceId: string;
|
|
393
|
-
dataSourceKey: string;
|
|
394
|
-
appSchema: DataSchema;
|
|
395
|
-
direction: FieldMappingDirection;
|
|
396
393
|
key?: string | undefined;
|
|
397
394
|
uuid?: string | undefined;
|
|
398
395
|
description?: string | undefined;
|
|
@@ -406,6 +403,10 @@ declare const BaseFieldMapping: z.ZodObject<{
|
|
|
406
403
|
publishedRevision?: string | undefined;
|
|
407
404
|
universalFieldMappingId?: string | undefined;
|
|
408
405
|
universalFieldMappingRevision?: string | undefined;
|
|
406
|
+
dataSourceId?: string | undefined;
|
|
407
|
+
dataSourceKey?: string | undefined;
|
|
408
|
+
appSchema?: DataSchema | undefined;
|
|
409
|
+
direction?: FieldMappingDirection | undefined;
|
|
409
410
|
defaultImportValue?: any;
|
|
410
411
|
defaultExportValue?: any;
|
|
411
412
|
importValue?: any;
|
|
@@ -8371,7 +8372,7 @@ declare const BaseActionRunLogRecord: z.ZodObject<{
|
|
|
8371
8372
|
}>;
|
|
8372
8373
|
type BaseActionRunLogRecord = z.infer<typeof BaseActionRunLogRecord>;
|
|
8373
8374
|
|
|
8374
|
-
interface
|
|
8375
|
+
interface MembraneClientOptions {
|
|
8375
8376
|
token?: string;
|
|
8376
8377
|
fetchToken?: () => Promise<string>;
|
|
8377
8378
|
credentials?: any;
|
|
@@ -8380,12 +8381,12 @@ interface IntegrationAppClientOptions {
|
|
|
8380
8381
|
uiUri?: string;
|
|
8381
8382
|
accessToken?: string;
|
|
8382
8383
|
}
|
|
8383
|
-
declare class
|
|
8384
|
+
declare class MembraneApiClient {
|
|
8384
8385
|
apiUri: string;
|
|
8385
8386
|
uiUri: string;
|
|
8386
8387
|
token?: string;
|
|
8387
8388
|
protected fetchToken?: () => Promise<string>;
|
|
8388
|
-
constructor({ uiUri, apiUri, accessToken, token, fetchToken, fetchCredentials, credentials, }?:
|
|
8389
|
+
constructor({ uiUri, apiUri, accessToken, token, fetchToken, fetchCredentials, credentials, }?: MembraneClientOptions);
|
|
8389
8390
|
setCredentials(credentials: any): Promise<any>;
|
|
8390
8391
|
getToken(): Promise<string>;
|
|
8391
8392
|
get<T = any>(uri: string, queryParams?: Record<string, any>, options?: AxiosRequestConfig): Promise<T>;
|
|
@@ -8515,12 +8516,12 @@ type SelectorType = {
|
|
|
8515
8516
|
} | string;
|
|
8516
8517
|
declare class ElementAccessor<Element, UpdateRequest, Selector extends SelectorType = string> {
|
|
8517
8518
|
protected options: {
|
|
8518
|
-
client:
|
|
8519
|
+
client: MembraneApiClient;
|
|
8519
8520
|
path: string;
|
|
8520
8521
|
selector: string | Selector;
|
|
8521
8522
|
};
|
|
8522
8523
|
constructor(options: {
|
|
8523
|
-
client:
|
|
8524
|
+
client: MembraneApiClient;
|
|
8524
8525
|
path: string;
|
|
8525
8526
|
selector: string | Selector;
|
|
8526
8527
|
});
|
|
@@ -8535,29 +8536,29 @@ declare class ElementAccessor<Element, UpdateRequest, Selector extends SelectorT
|
|
|
8535
8536
|
declare class ElementListAccessor<Element, FindQuery, CreateRequest> {
|
|
8536
8537
|
private client;
|
|
8537
8538
|
private path;
|
|
8538
|
-
constructor(client:
|
|
8539
|
+
constructor(client: MembraneApiClient, path: string);
|
|
8539
8540
|
find(query?: FindQuery): Promise<PaginationResponse<Element>>;
|
|
8540
8541
|
findAll(query?: Omit<FindQuery, 'limit'>): Promise<Element[]>;
|
|
8541
8542
|
create(data: CreateRequest): Promise<Element>;
|
|
8542
8543
|
}
|
|
8543
8544
|
declare class ElementInstanceListAccessor<ElementInstance extends BaseElementInstance, FindQuery> {
|
|
8544
|
-
protected client:
|
|
8545
|
+
protected client: MembraneApiClient;
|
|
8545
8546
|
private path;
|
|
8546
|
-
constructor(client:
|
|
8547
|
+
constructor(client: MembraneApiClient, path: string);
|
|
8547
8548
|
find(query?: FindQuery): Promise<PaginationResponse<ElementInstance>>;
|
|
8548
8549
|
}
|
|
8549
8550
|
declare class ElementInstanceAccessor<ElementInstance extends BaseElementInstance, Selector extends {
|
|
8550
8551
|
id?: string;
|
|
8551
8552
|
}, CreateRequest, UpdateRequest> {
|
|
8552
8553
|
protected options: {
|
|
8553
|
-
client:
|
|
8554
|
+
client: MembraneApiClient;
|
|
8554
8555
|
instancePath: string;
|
|
8555
8556
|
selector: string | Selector;
|
|
8556
8557
|
type?: WorkspaceElementType;
|
|
8557
8558
|
};
|
|
8558
8559
|
private id;
|
|
8559
8560
|
constructor(options: {
|
|
8560
|
-
client:
|
|
8561
|
+
client: MembraneApiClient;
|
|
8561
8562
|
instancePath: string;
|
|
8562
8563
|
selector: string | Selector;
|
|
8563
8564
|
type?: WorkspaceElementType;
|
|
@@ -8576,12 +8577,12 @@ declare class ElementInstanceAccessor<ElementInstance extends BaseElementInstanc
|
|
|
8576
8577
|
}
|
|
8577
8578
|
|
|
8578
8579
|
declare class IntegrationLevelElementAccessor<Element, UpdateElementData> {
|
|
8579
|
-
protected client:
|
|
8580
|
+
protected client: MembraneApiClient;
|
|
8580
8581
|
protected integrationSelector: string;
|
|
8581
8582
|
protected elementSelector: string;
|
|
8582
8583
|
protected elementKey: string;
|
|
8583
8584
|
protected endpoint: string;
|
|
8584
|
-
constructor(client:
|
|
8585
|
+
constructor(client: MembraneApiClient, integrationSelector: string, elementSelector: string, elementKey: string);
|
|
8585
8586
|
getUniqueIdentifier(): string;
|
|
8586
8587
|
get(): Promise<Element>;
|
|
8587
8588
|
patch(data: Partial<UpdateElementData>): Promise<Element>;
|
|
@@ -8590,33 +8591,33 @@ declare class IntegrationLevelElementAccessor<Element, UpdateElementData> {
|
|
|
8590
8591
|
reset(): Promise<Element>;
|
|
8591
8592
|
}
|
|
8592
8593
|
declare class IntegrationLevelElementsListAccessor<Element, Query, CreateElementData> {
|
|
8593
|
-
protected client:
|
|
8594
|
+
protected client: MembraneApiClient;
|
|
8594
8595
|
protected integrationSelector: string;
|
|
8595
8596
|
protected elementKey: string;
|
|
8596
8597
|
protected endpoint: string;
|
|
8597
|
-
constructor(client:
|
|
8598
|
+
constructor(client: MembraneApiClient, integrationSelector: string, elementKey: string);
|
|
8598
8599
|
list(query?: Query): Promise<PaginationResponse<Element>>;
|
|
8599
8600
|
create(data: CreateElementData): Promise<Element>;
|
|
8600
8601
|
}
|
|
8601
8602
|
|
|
8602
8603
|
declare class ActionsAccessor extends ElementListAccessor<Action, FindActionsQuery, CreateActionRequest> {
|
|
8603
|
-
constructor(client:
|
|
8604
|
+
constructor(client: MembraneApiClient);
|
|
8604
8605
|
}
|
|
8605
8606
|
declare class ActionAccessor extends ElementAccessor<Action, UpdateActionRequest, ActionSelector> {
|
|
8606
|
-
constructor(client:
|
|
8607
|
+
constructor(client: MembraneApiClient, selector: ActionSelector | string);
|
|
8607
8608
|
apply(integrationKeys: string[]): Promise<Action[]>;
|
|
8608
8609
|
reset(): Promise<any>;
|
|
8609
8610
|
}
|
|
8610
8611
|
declare class IntegrationLevelActionAccessor extends IntegrationLevelElementAccessor<Action, UpdateActionRequest> {
|
|
8611
|
-
client:
|
|
8612
|
+
client: MembraneApiClient;
|
|
8612
8613
|
integrationSelector: string;
|
|
8613
8614
|
actionSelector: string;
|
|
8614
|
-
constructor(client:
|
|
8615
|
+
constructor(client: MembraneApiClient, integrationSelector: string, actionSelector: string);
|
|
8615
8616
|
}
|
|
8616
8617
|
declare class IntegrationLevelActionsListAccessor extends IntegrationLevelElementsListAccessor<Action, Omit<FindActionsQuery, 'integrationId'>, Omit<CreateActionRequest, 'integrationId'>> {
|
|
8617
|
-
client:
|
|
8618
|
+
client: MembraneApiClient;
|
|
8618
8619
|
integrationSelector: string;
|
|
8619
|
-
constructor(client:
|
|
8620
|
+
constructor(client: MembraneApiClient, integrationSelector: string);
|
|
8620
8621
|
}
|
|
8621
8622
|
|
|
8622
8623
|
declare const OpenConfigurationOptions: z.ZodObject<{
|
|
@@ -8636,13 +8637,13 @@ type InstanceKeyQuery = {
|
|
|
8636
8637
|
};
|
|
8637
8638
|
|
|
8638
8639
|
declare class ConnectionLevelElementAccessor<Element, UpdateElement> {
|
|
8639
|
-
protected client:
|
|
8640
|
+
protected client: MembraneApiClient;
|
|
8640
8641
|
protected connectionSelector: string;
|
|
8641
8642
|
protected selector: string;
|
|
8642
8643
|
protected elementKey: string;
|
|
8643
8644
|
protected query: Record<string, any>;
|
|
8644
8645
|
protected endpoint: string;
|
|
8645
|
-
constructor(client:
|
|
8646
|
+
constructor(client: MembraneApiClient, connectionSelector: string, selector: string, elementKey: string, query: Record<string, any>);
|
|
8646
8647
|
protected uri(path?: string, query?: {}): string;
|
|
8647
8648
|
getUniqueIdentifier(): string;
|
|
8648
8649
|
get(query?: {
|
|
@@ -8656,10 +8657,10 @@ declare class ConnectionLevelElementAccessor<Element, UpdateElement> {
|
|
|
8656
8657
|
setup(): Promise<Element>;
|
|
8657
8658
|
}
|
|
8658
8659
|
declare class ConnectionLevelElementsListAccessor<Element, Query> {
|
|
8659
|
-
protected client:
|
|
8660
|
+
protected client: MembraneApiClient;
|
|
8660
8661
|
protected connectionSelector: string;
|
|
8661
8662
|
protected elementKey: string;
|
|
8662
|
-
constructor(client:
|
|
8663
|
+
constructor(client: MembraneApiClient, connectionSelector: string, elementKey: string);
|
|
8663
8664
|
list(query?: Query): Promise<PaginationResponse<Element[]>>;
|
|
8664
8665
|
}
|
|
8665
8666
|
|
|
@@ -10066,28 +10067,28 @@ type UpdateActionInstanceRequest = z.infer<typeof UpdateActionInstanceRequest>;
|
|
|
10066
10067
|
interface OpenActionConfigurationOptions extends OpenConfigurationOptions {
|
|
10067
10068
|
}
|
|
10068
10069
|
declare class ActionInstancesAccessor extends ElementInstanceListAccessor<ActionInstance, FindActionInstancesQuery> {
|
|
10069
|
-
constructor(client:
|
|
10070
|
+
constructor(client: MembraneApiClient);
|
|
10070
10071
|
}
|
|
10071
10072
|
declare class ActionInstanceAccessor extends ElementInstanceAccessor<ActionInstance, ActionInstanceSelector, CreateActionInstanceRequest, UpdateActionInstanceRequest> {
|
|
10072
|
-
client:
|
|
10073
|
-
constructor(client:
|
|
10073
|
+
client: MembraneApiClient;
|
|
10074
|
+
constructor(client: MembraneApiClient, selector: string | ActionInstanceSelector);
|
|
10074
10075
|
setup(): Promise<void>;
|
|
10075
10076
|
reset(): Promise<void>;
|
|
10076
10077
|
run(input?: any): Promise<ActionRunResponse>;
|
|
10077
10078
|
open({ onClose }?: OpenActionConfigurationOptions): Promise<void>;
|
|
10078
10079
|
}
|
|
10079
10080
|
declare class ConnectionLevelActionAccessor extends ConnectionLevelElementAccessor<ActionInstance, UpdateActionInstanceRequest> {
|
|
10080
|
-
client:
|
|
10081
|
+
client: MembraneApiClient;
|
|
10081
10082
|
connectionSelector: string;
|
|
10082
10083
|
actionSelector: string;
|
|
10083
10084
|
query: InstanceKeyQuery;
|
|
10084
|
-
constructor(client:
|
|
10085
|
+
constructor(client: MembraneApiClient, connectionSelector: string, actionSelector: string, query: InstanceKeyQuery);
|
|
10085
10086
|
run(input?: any): Promise<ActionRunResponse>;
|
|
10086
10087
|
}
|
|
10087
10088
|
declare class ConnectionLevelActionsAccessor extends ConnectionLevelElementsListAccessor<ActionInstance, ListActionInstancesForConnectionQuery> {
|
|
10088
|
-
client:
|
|
10089
|
+
client: MembraneApiClient;
|
|
10089
10090
|
connectionSelector: string;
|
|
10090
|
-
constructor(client:
|
|
10091
|
+
constructor(client: MembraneApiClient, connectionSelector: string);
|
|
10091
10092
|
}
|
|
10092
10093
|
|
|
10093
10094
|
declare const DataSourceInstanceApiResponse: z.ZodObject<{
|
|
@@ -15255,20 +15256,20 @@ type DataSource = DataSourceApiResponse;
|
|
|
15255
15256
|
interface OpenDataSourceConfigurationOptions extends OpenConfigurationOptions {
|
|
15256
15257
|
}
|
|
15257
15258
|
declare class DataSourcesAccessor extends ElementListAccessor<DataSource, FindDataSourcesQuery, CreateDataSourceRequest> {
|
|
15258
|
-
constructor(client:
|
|
15259
|
+
constructor(client: MembraneApiClient);
|
|
15259
15260
|
}
|
|
15260
15261
|
declare class DataSourceAccessor extends ElementAccessor<DataSource, UpdateDataSourceRequest, DataSourceSelector> {
|
|
15261
|
-
constructor(client:
|
|
15262
|
+
constructor(client: MembraneApiClient, selector: DataSourceSelector | string);
|
|
15262
15263
|
apply(integrationKeys: string[]): Promise<DataSource[]>;
|
|
15263
15264
|
setup(): Promise<void>;
|
|
15264
15265
|
reset(): Promise<any>;
|
|
15265
15266
|
}
|
|
15266
15267
|
declare class DataSourceInstancesAccessor extends ElementInstanceListAccessor<DataSourceInstance, FindDataSourceInstancesQuery> {
|
|
15267
|
-
constructor(client:
|
|
15268
|
+
constructor(client: MembraneApiClient);
|
|
15268
15269
|
}
|
|
15269
15270
|
declare class DataSourceInstanceAccessor extends ElementInstanceAccessor<DataSourceInstance, DataSourceInstanceSelector, CreateDataSourceInstanceRequest, UpdateDataSourceInstanceRequest> {
|
|
15270
|
-
client:
|
|
15271
|
-
constructor(client:
|
|
15271
|
+
client: MembraneApiClient;
|
|
15272
|
+
constructor(client: MembraneApiClient, selector: string | DataSourceInstanceSelector);
|
|
15272
15273
|
setup(): Promise<void>;
|
|
15273
15274
|
reset(): Promise<void>;
|
|
15274
15275
|
openConfiguration({ onClose }?: OpenDataSourceConfigurationOptions): Promise<void>;
|
|
@@ -15284,28 +15285,28 @@ declare class DataSourceInstanceAccessor extends ElementInstanceAccessor<DataSou
|
|
|
15284
15285
|
findRecords(request?: DataCollectionFindRequest): Promise<DataCollectionFindResponse>;
|
|
15285
15286
|
}
|
|
15286
15287
|
declare class IntegrationLevelDataSourceAccessor extends IntegrationLevelElementAccessor<DataSource, UpdateDataSourceRequest> {
|
|
15287
|
-
client:
|
|
15288
|
+
client: MembraneApiClient;
|
|
15288
15289
|
integrationSelector: string;
|
|
15289
15290
|
dataSourceSelector: string;
|
|
15290
|
-
constructor(client:
|
|
15291
|
+
constructor(client: MembraneApiClient, integrationSelector: string, dataSourceSelector: string);
|
|
15291
15292
|
}
|
|
15292
15293
|
declare class IntegrationLevelDataSourcesListAccessor extends IntegrationLevelElementsListAccessor<DataSource, ListDataSourcesForIntegrationQuery, Omit<CreateDataSourceRequest, 'integrationId'>> {
|
|
15293
|
-
client:
|
|
15294
|
+
client: MembraneApiClient;
|
|
15294
15295
|
integrationSelector: string;
|
|
15295
|
-
constructor(client:
|
|
15296
|
+
constructor(client: MembraneApiClient, integrationSelector: string);
|
|
15296
15297
|
}
|
|
15297
15298
|
declare class ConnectionLevelDataSourceAccessor extends ConnectionLevelElementAccessor<DataSourceInstance, UpdateDataSourceInstanceRequest> {
|
|
15298
|
-
client:
|
|
15299
|
+
client: MembraneApiClient;
|
|
15299
15300
|
connectionSelector: string;
|
|
15300
15301
|
dataSourceSelector: string;
|
|
15301
15302
|
query: InstanceKeyQuery;
|
|
15302
|
-
constructor(client:
|
|
15303
|
+
constructor(client: MembraneApiClient, connectionSelector: string, dataSourceSelector: string, query: InstanceKeyQuery);
|
|
15303
15304
|
openConfiguration(options?: OpenDataSourceConfigurationOptions): Promise<void>;
|
|
15304
15305
|
}
|
|
15305
15306
|
declare class ConnectionLevelDataSourcesAccessor extends ConnectionLevelElementsListAccessor<DataSource, ListDataSourceInstancesForConnectionQuery> {
|
|
15306
|
-
client:
|
|
15307
|
+
client: MembraneApiClient;
|
|
15307
15308
|
connectionSelector: string;
|
|
15308
|
-
constructor(client:
|
|
15309
|
+
constructor(client: MembraneApiClient, connectionSelector: string);
|
|
15309
15310
|
}
|
|
15310
15311
|
|
|
15311
15312
|
type ListFieldMappingInstancesForConnectionQuery = CommonInstancesListQuery & {
|
|
@@ -15570,10 +15571,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15570
15571
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
15571
15572
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
15572
15573
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
15573
|
-
dataSourceId: z.ZodString
|
|
15574
|
-
dataSourceKey: z.ZodString
|
|
15575
|
-
appSchema: z.ZodType<DataSchema, z.ZodTypeDef, DataSchema
|
|
15576
|
-
direction: z.ZodNativeEnum<typeof FieldMappingDirection
|
|
15574
|
+
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
15575
|
+
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
15576
|
+
appSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
|
|
15577
|
+
direction: z.ZodOptional<z.ZodNativeEnum<typeof FieldMappingDirection>>;
|
|
15577
15578
|
defaultImportValue: z.ZodOptional<z.ZodAny>;
|
|
15578
15579
|
defaultExportValue: z.ZodOptional<z.ZodAny>;
|
|
15579
15580
|
importValue: z.ZodOptional<z.ZodAny>;
|
|
@@ -15587,10 +15588,6 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15587
15588
|
id: string;
|
|
15588
15589
|
name: string;
|
|
15589
15590
|
revision: string;
|
|
15590
|
-
dataSourceId: string;
|
|
15591
|
-
dataSourceKey: string;
|
|
15592
|
-
appSchema: DataSchema;
|
|
15593
|
-
direction: FieldMappingDirection;
|
|
15594
15591
|
key?: string | undefined;
|
|
15595
15592
|
uuid?: string | undefined;
|
|
15596
15593
|
description?: string | undefined;
|
|
@@ -15604,6 +15601,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15604
15601
|
publishedRevision?: string | undefined;
|
|
15605
15602
|
universalFieldMappingId?: string | undefined;
|
|
15606
15603
|
universalFieldMappingRevision?: string | undefined;
|
|
15604
|
+
dataSourceId?: string | undefined;
|
|
15605
|
+
dataSourceKey?: string | undefined;
|
|
15606
|
+
appSchema?: DataSchema | undefined;
|
|
15607
|
+
direction?: FieldMappingDirection | undefined;
|
|
15607
15608
|
defaultImportValue?: any;
|
|
15608
15609
|
defaultExportValue?: any;
|
|
15609
15610
|
importValue?: any;
|
|
@@ -15616,10 +15617,6 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15616
15617
|
id: string;
|
|
15617
15618
|
name: string;
|
|
15618
15619
|
revision: string;
|
|
15619
|
-
dataSourceId: string;
|
|
15620
|
-
dataSourceKey: string;
|
|
15621
|
-
appSchema: DataSchema;
|
|
15622
|
-
direction: FieldMappingDirection;
|
|
15623
15620
|
key?: string | undefined;
|
|
15624
15621
|
uuid?: string | undefined;
|
|
15625
15622
|
description?: string | undefined;
|
|
@@ -15633,6 +15630,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
15633
15630
|
publishedRevision?: string | undefined;
|
|
15634
15631
|
universalFieldMappingId?: string | undefined;
|
|
15635
15632
|
universalFieldMappingRevision?: string | undefined;
|
|
15633
|
+
dataSourceId?: string | undefined;
|
|
15634
|
+
dataSourceKey?: string | undefined;
|
|
15635
|
+
appSchema?: DataSchema | undefined;
|
|
15636
|
+
direction?: FieldMappingDirection | undefined;
|
|
15636
15637
|
defaultImportValue?: any;
|
|
15637
15638
|
defaultExportValue?: any;
|
|
15638
15639
|
importValue?: any;
|
|
@@ -17235,10 +17236,6 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
17235
17236
|
id: string;
|
|
17236
17237
|
name: string;
|
|
17237
17238
|
revision: string;
|
|
17238
|
-
dataSourceId: string;
|
|
17239
|
-
dataSourceKey: string;
|
|
17240
|
-
appSchema: DataSchema;
|
|
17241
|
-
direction: FieldMappingDirection;
|
|
17242
17239
|
key?: string | undefined;
|
|
17243
17240
|
uuid?: string | undefined;
|
|
17244
17241
|
description?: string | undefined;
|
|
@@ -17252,6 +17249,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
17252
17249
|
publishedRevision?: string | undefined;
|
|
17253
17250
|
universalFieldMappingId?: string | undefined;
|
|
17254
17251
|
universalFieldMappingRevision?: string | undefined;
|
|
17252
|
+
dataSourceId?: string | undefined;
|
|
17253
|
+
dataSourceKey?: string | undefined;
|
|
17254
|
+
appSchema?: DataSchema | undefined;
|
|
17255
|
+
direction?: FieldMappingDirection | undefined;
|
|
17255
17256
|
defaultImportValue?: any;
|
|
17256
17257
|
defaultExportValue?: any;
|
|
17257
17258
|
importValue?: any;
|
|
@@ -17616,10 +17617,6 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
17616
17617
|
id: string;
|
|
17617
17618
|
name: string;
|
|
17618
17619
|
revision: string;
|
|
17619
|
-
dataSourceId: string;
|
|
17620
|
-
dataSourceKey: string;
|
|
17621
|
-
appSchema: DataSchema;
|
|
17622
|
-
direction: FieldMappingDirection;
|
|
17623
17620
|
key?: string | undefined;
|
|
17624
17621
|
uuid?: string | undefined;
|
|
17625
17622
|
description?: string | undefined;
|
|
@@ -17633,6 +17630,10 @@ declare const FieldMappingInstanceApiResponse: z.ZodObject<{
|
|
|
17633
17630
|
publishedRevision?: string | undefined;
|
|
17634
17631
|
universalFieldMappingId?: string | undefined;
|
|
17635
17632
|
universalFieldMappingRevision?: string | undefined;
|
|
17633
|
+
dataSourceId?: string | undefined;
|
|
17634
|
+
dataSourceKey?: string | undefined;
|
|
17635
|
+
appSchema?: DataSchema | undefined;
|
|
17636
|
+
direction?: FieldMappingDirection | undefined;
|
|
17636
17637
|
defaultImportValue?: any;
|
|
17637
17638
|
defaultExportValue?: any;
|
|
17638
17639
|
importValue?: any;
|
|
@@ -17904,27 +17905,27 @@ type FieldMappingInstance = FieldMappingInstanceApiResponse;
|
|
|
17904
17905
|
interface OpenFieldMappingInstanceConfigurationOptions extends OpenConfigurationOptions {
|
|
17905
17906
|
}
|
|
17906
17907
|
declare class FieldMappingInstancesAccessor extends ElementInstanceListAccessor<FieldMappingInstance, FindFieldMappingInstancesQuery> {
|
|
17907
|
-
constructor(client:
|
|
17908
|
+
constructor(client: MembraneApiClient);
|
|
17908
17909
|
}
|
|
17909
17910
|
declare class FieldMappingInstanceAccessor extends ElementInstanceAccessor<FieldMappingInstance, FieldMappingInstanceSelector, CreateFieldMappingInstanceRequest, UpdateFieldMappingInstanceRequest> {
|
|
17910
17911
|
private client;
|
|
17911
|
-
constructor(client:
|
|
17912
|
+
constructor(client: MembraneApiClient, selector: string | FieldMappingInstanceSelector);
|
|
17912
17913
|
setup(): Promise<void>;
|
|
17913
17914
|
reset(): Promise<void>;
|
|
17914
17915
|
openConfiguration({ onClose }?: OpenFieldMappingInstanceConfigurationOptions): Promise<void>;
|
|
17915
17916
|
}
|
|
17916
17917
|
declare class ConnectionLevelFieldMappingAccessor extends ConnectionLevelElementAccessor<FieldMappingInstance, UpdateFieldMappingInstanceRequest> {
|
|
17917
|
-
client:
|
|
17918
|
+
client: MembraneApiClient;
|
|
17918
17919
|
connectionSelector: string;
|
|
17919
17920
|
fieldMappingSelector: string;
|
|
17920
17921
|
query: InstanceKeyQuery;
|
|
17921
|
-
constructor(client:
|
|
17922
|
+
constructor(client: MembraneApiClient, connectionSelector: string, fieldMappingSelector: string, query: InstanceKeyQuery);
|
|
17922
17923
|
openConfiguration({ onClose }?: OpenFieldMappingInstanceConfigurationOptions): Promise<void>;
|
|
17923
17924
|
}
|
|
17924
17925
|
declare class ConnectionLevelFieldMappingsAccessor extends ConnectionLevelElementsListAccessor<FieldMappingInstance, ListFieldMappingInstancesForConnectionQuery> {
|
|
17925
|
-
client:
|
|
17926
|
+
client: MembraneApiClient;
|
|
17926
17927
|
connectionSelector: string;
|
|
17927
|
-
constructor(client:
|
|
17928
|
+
constructor(client: MembraneApiClient, connectionSelector: string);
|
|
17928
17929
|
}
|
|
17929
17930
|
|
|
17930
17931
|
declare const CreateFlowRunRequest: z.ZodObject<{
|
|
@@ -19371,13 +19372,13 @@ interface OpenFlowInstanceConfigurationOptions extends OpenConfigurationOptions
|
|
|
19371
19372
|
interface OpenFlowInstanceEditorOptions extends OpenConfigurationOptions {
|
|
19372
19373
|
}
|
|
19373
19374
|
declare class FlowInstancesAccessor extends ElementInstanceListAccessor<FlowInstance, FindFlowInstancesQuery> {
|
|
19374
|
-
constructor(client:
|
|
19375
|
+
constructor(client: MembraneApiClient);
|
|
19375
19376
|
create(data: CreateFlowInstanceRequest): Promise<FlowInstance>;
|
|
19376
19377
|
}
|
|
19377
19378
|
declare class FlowInstanceAccessor extends ElementInstanceAccessor<FlowInstance, FlowInstanceSelector, CreateFlowInstanceRequest, UpdateFlowInstanceRequest> {
|
|
19378
|
-
protected client:
|
|
19379
|
+
protected client: MembraneApiClient;
|
|
19379
19380
|
protected selector: FlowInstanceSelector | string;
|
|
19380
|
-
constructor(client:
|
|
19381
|
+
constructor(client: MembraneApiClient, selector: FlowInstanceSelector | string);
|
|
19381
19382
|
enable(): Promise<FlowInstance>;
|
|
19382
19383
|
disable(): Promise<FlowInstance>;
|
|
19383
19384
|
updateToLatestFlow(): Promise<FlowInstance>;
|
|
@@ -19392,11 +19393,11 @@ declare class FlowInstanceAccessor extends ElementInstanceAccessor<FlowInstance,
|
|
|
19392
19393
|
run(options?: RunFlowOptions): Promise<FlowRun>;
|
|
19393
19394
|
}
|
|
19394
19395
|
declare class ConnectionLevelFlowAccessor extends ConnectionLevelElementAccessor<FlowInstance, UpdateFlowInstanceRequest> {
|
|
19395
|
-
client:
|
|
19396
|
+
client: MembraneApiClient;
|
|
19396
19397
|
connectionSelector: string;
|
|
19397
19398
|
flowSelector: string;
|
|
19398
19399
|
query: InstanceKeyQuery;
|
|
19399
|
-
constructor(client:
|
|
19400
|
+
constructor(client: MembraneApiClient, connectionSelector: string, flowSelector: string, query: InstanceKeyQuery);
|
|
19400
19401
|
enable(): Promise<FlowInstance>;
|
|
19401
19402
|
disable(): Promise<FlowInstance>;
|
|
19402
19403
|
run(options: {
|
|
@@ -19407,19 +19408,19 @@ declare class ConnectionLevelFlowAccessor extends ConnectionLevelElementAccessor
|
|
|
19407
19408
|
openEditor(options?: OpenFlowInstanceEditorOptions): Promise<void>;
|
|
19408
19409
|
}
|
|
19409
19410
|
declare class ConnectionLevelFlowsAccessor extends ConnectionLevelElementsListAccessor<FlowInstance, ListFlowInstancesForConnectionQuery> {
|
|
19410
|
-
client:
|
|
19411
|
+
client: MembraneApiClient;
|
|
19411
19412
|
connectionSelector: string;
|
|
19412
|
-
constructor(client:
|
|
19413
|
+
constructor(client: MembraneApiClient, connectionSelector: string);
|
|
19413
19414
|
}
|
|
19414
19415
|
|
|
19415
19416
|
declare class ConnectionsAccessor extends ElementInstanceListAccessor<Connection, FindConnectionsQuery> {
|
|
19416
|
-
constructor(client:
|
|
19417
|
+
constructor(client: MembraneApiClient);
|
|
19417
19418
|
create(data: CreateConnectionRequest): Promise<Connection>;
|
|
19418
19419
|
}
|
|
19419
19420
|
declare class ConnectionAccessor {
|
|
19420
|
-
client:
|
|
19421
|
+
client: MembraneApiClient;
|
|
19421
19422
|
connectionSelector: string;
|
|
19422
|
-
constructor(client:
|
|
19423
|
+
constructor(client: MembraneApiClient, connectionSelector: string);
|
|
19423
19424
|
get actions(): ConnectionLevelActionsAccessor;
|
|
19424
19425
|
action(actionSelector: string, query?: InstanceKeyQuery): ConnectionLevelActionAccessor;
|
|
19425
19426
|
get flows(): ConnectionLevelFlowsAccessor;
|
|
@@ -19511,19 +19512,19 @@ declare class ConnectionAccessor {
|
|
|
19511
19512
|
getPath(subpath?: string, query?: Record<string, any>): string;
|
|
19512
19513
|
}
|
|
19513
19514
|
declare class ConnectionOperationAccessor {
|
|
19514
|
-
client:
|
|
19515
|
+
client: MembraneApiClient;
|
|
19515
19516
|
connectionAccessor: ConnectionAccessor;
|
|
19516
19517
|
key: string;
|
|
19517
|
-
constructor(client:
|
|
19518
|
+
constructor(client: MembraneApiClient, connectionAccessor: ConnectionAccessor, key: string);
|
|
19518
19519
|
get(): Promise<OperationSpec>;
|
|
19519
19520
|
run(request?: OperationRunRequest): Promise<OperationRunResponse>;
|
|
19520
19521
|
}
|
|
19521
19522
|
declare class ConnectionDataCollectionAccessor {
|
|
19522
|
-
client:
|
|
19523
|
+
client: MembraneApiClient;
|
|
19523
19524
|
connectionAccessor: ConnectionAccessor;
|
|
19524
19525
|
key: string;
|
|
19525
19526
|
parameters: Record<string, any>;
|
|
19526
|
-
constructor(client:
|
|
19527
|
+
constructor(client: MembraneApiClient, connectionAccessor: ConnectionAccessor, key: string, parameters: Record<string, any>);
|
|
19527
19528
|
get(): Promise<DataCollectionSpec>;
|
|
19528
19529
|
findById(request?: DataCollectionFindByIdRequest): Promise<DataCollectionFindByIdResponse>;
|
|
19529
19530
|
list(request?: DataCollectionListRequest): Promise<DataCollectionListResponse>;
|
|
@@ -19558,30 +19559,30 @@ declare function createOrUpdateConnection(options?: {
|
|
|
19558
19559
|
}): Promise<Connection | undefined>;
|
|
19559
19560
|
|
|
19560
19561
|
declare class FlowsAccessor extends ElementListAccessor<Flow, FindFlowsQuery, CreateFlowRequest> {
|
|
19561
|
-
constructor(client:
|
|
19562
|
+
constructor(client: MembraneApiClient);
|
|
19562
19563
|
}
|
|
19563
19564
|
declare class FlowAccessor extends ElementAccessor<Flow, UpdateFlowRequest, FlowSelector> {
|
|
19564
|
-
constructor(client:
|
|
19565
|
+
constructor(client: MembraneApiClient, selector: FlowSelector | string);
|
|
19565
19566
|
apply(integrationKeys: string[]): Promise<Flow[]>;
|
|
19566
19567
|
reset(): Promise<Flow>;
|
|
19567
19568
|
}
|
|
19568
19569
|
declare class IntegrationLevelFlowAccessor extends IntegrationLevelElementAccessor<Flow, UpdateFlowRequest> {
|
|
19569
|
-
client:
|
|
19570
|
+
client: MembraneApiClient;
|
|
19570
19571
|
integrationSelector: string;
|
|
19571
19572
|
flowSelector: string;
|
|
19572
|
-
constructor(client:
|
|
19573
|
+
constructor(client: MembraneApiClient, integrationSelector: string, flowSelector: string);
|
|
19573
19574
|
}
|
|
19574
19575
|
declare class IntegrationLevelFlowsListAccessor extends IntegrationLevelElementsListAccessor<Flow, ListFlowsForIntegrationQuery, Omit<CreateFlowRequest, 'integrationId'>> {
|
|
19575
|
-
client:
|
|
19576
|
+
client: MembraneApiClient;
|
|
19576
19577
|
integrationSelector: string;
|
|
19577
|
-
constructor(client:
|
|
19578
|
+
constructor(client: MembraneApiClient, integrationSelector: string);
|
|
19578
19579
|
}
|
|
19579
19580
|
|
|
19580
19581
|
interface OpenFlowRunEditorOptions extends OpenConfigurationOptions {
|
|
19581
19582
|
}
|
|
19582
19583
|
declare class FlowRunsAccessor {
|
|
19583
19584
|
private readonly client;
|
|
19584
|
-
constructor(client:
|
|
19585
|
+
constructor(client: MembraneApiClient);
|
|
19585
19586
|
find(query: FindFlowRunsQuery): Promise<FindFlowRunsResponse>;
|
|
19586
19587
|
create(request: CreateFlowRunRequest): Promise<FlowRun>;
|
|
19587
19588
|
}
|
|
@@ -19589,7 +19590,7 @@ declare class FlowRunAccessor {
|
|
|
19589
19590
|
private readonly client;
|
|
19590
19591
|
id: string;
|
|
19591
19592
|
private baseUri;
|
|
19592
|
-
constructor(client:
|
|
19593
|
+
constructor(client: MembraneApiClient, id: string);
|
|
19593
19594
|
get(): Promise<FlowRun>;
|
|
19594
19595
|
stop(): Promise<void>;
|
|
19595
19596
|
getOutput(): Promise<any>;
|
|
@@ -19654,10 +19655,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
19654
19655
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
19655
19656
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
19656
19657
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
19657
|
-
dataSourceId: z.ZodString
|
|
19658
|
-
dataSourceKey: z.ZodString
|
|
19659
|
-
appSchema: z.ZodType<DataSchema, z.ZodTypeDef, DataSchema
|
|
19660
|
-
direction: z.ZodNativeEnum<typeof FieldMappingDirection
|
|
19658
|
+
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
19659
|
+
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
19660
|
+
appSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
|
|
19661
|
+
direction: z.ZodOptional<z.ZodNativeEnum<typeof FieldMappingDirection>>;
|
|
19661
19662
|
defaultImportValue: z.ZodOptional<z.ZodAny>;
|
|
19662
19663
|
defaultExportValue: z.ZodOptional<z.ZodAny>;
|
|
19663
19664
|
importValue: z.ZodOptional<z.ZodAny>;
|
|
@@ -19781,10 +19782,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
19781
19782
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
19782
19783
|
universalFieldMappingRevision: z.ZodOptional<z.ZodString>;
|
|
19783
19784
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
19784
|
-
dataSourceId: z.ZodString
|
|
19785
|
-
dataSourceKey: z.ZodString
|
|
19786
|
-
appSchema: z.ZodType<DataSchema, z.ZodTypeDef, DataSchema
|
|
19787
|
-
direction: z.ZodNativeEnum<typeof FieldMappingDirection
|
|
19785
|
+
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
19786
|
+
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
19787
|
+
appSchema: z.ZodOptional<z.ZodType<DataSchema, z.ZodTypeDef, DataSchema>>;
|
|
19788
|
+
direction: z.ZodOptional<z.ZodNativeEnum<typeof FieldMappingDirection>>;
|
|
19788
19789
|
defaultImportValue: z.ZodOptional<z.ZodAny>;
|
|
19789
19790
|
defaultExportValue: z.ZodOptional<z.ZodAny>;
|
|
19790
19791
|
importValue: z.ZodOptional<z.ZodAny>;
|
|
@@ -19798,10 +19799,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
19798
19799
|
id: string;
|
|
19799
19800
|
name: string;
|
|
19800
19801
|
revision: string;
|
|
19801
|
-
dataSourceId: string;
|
|
19802
|
-
dataSourceKey: string;
|
|
19803
|
-
appSchema: DataSchema;
|
|
19804
|
-
direction: FieldMappingDirection;
|
|
19805
19802
|
key?: string | undefined;
|
|
19806
19803
|
uuid?: string | undefined;
|
|
19807
19804
|
description?: string | undefined;
|
|
@@ -19815,6 +19812,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
19815
19812
|
publishedRevision?: string | undefined;
|
|
19816
19813
|
universalFieldMappingId?: string | undefined;
|
|
19817
19814
|
universalFieldMappingRevision?: string | undefined;
|
|
19815
|
+
dataSourceId?: string | undefined;
|
|
19816
|
+
dataSourceKey?: string | undefined;
|
|
19817
|
+
appSchema?: DataSchema | undefined;
|
|
19818
|
+
direction?: FieldMappingDirection | undefined;
|
|
19818
19819
|
defaultImportValue?: any;
|
|
19819
19820
|
defaultExportValue?: any;
|
|
19820
19821
|
importValue?: any;
|
|
@@ -19827,10 +19828,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
19827
19828
|
id: string;
|
|
19828
19829
|
name: string;
|
|
19829
19830
|
revision: string;
|
|
19830
|
-
dataSourceId: string;
|
|
19831
|
-
dataSourceKey: string;
|
|
19832
|
-
appSchema: DataSchema;
|
|
19833
|
-
direction: FieldMappingDirection;
|
|
19834
19831
|
key?: string | undefined;
|
|
19835
19832
|
uuid?: string | undefined;
|
|
19836
19833
|
description?: string | undefined;
|
|
@@ -19844,6 +19841,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
19844
19841
|
publishedRevision?: string | undefined;
|
|
19845
19842
|
universalFieldMappingId?: string | undefined;
|
|
19846
19843
|
universalFieldMappingRevision?: string | undefined;
|
|
19844
|
+
dataSourceId?: string | undefined;
|
|
19845
|
+
dataSourceKey?: string | undefined;
|
|
19846
|
+
appSchema?: DataSchema | undefined;
|
|
19847
|
+
direction?: FieldMappingDirection | undefined;
|
|
19847
19848
|
defaultImportValue?: any;
|
|
19848
19849
|
defaultExportValue?: any;
|
|
19849
19850
|
importValue?: any;
|
|
@@ -19985,10 +19986,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
19985
19986
|
id: string;
|
|
19986
19987
|
name: string;
|
|
19987
19988
|
revision: string;
|
|
19988
|
-
dataSourceId: string;
|
|
19989
|
-
dataSourceKey: string;
|
|
19990
|
-
appSchema: DataSchema;
|
|
19991
|
-
direction: FieldMappingDirection;
|
|
19992
19989
|
key?: string | undefined;
|
|
19993
19990
|
uuid?: string | undefined;
|
|
19994
19991
|
description?: string | undefined;
|
|
@@ -20002,6 +19999,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
20002
19999
|
publishedRevision?: string | undefined;
|
|
20003
20000
|
universalFieldMappingId?: string | undefined;
|
|
20004
20001
|
universalFieldMappingRevision?: string | undefined;
|
|
20002
|
+
dataSourceId?: string | undefined;
|
|
20003
|
+
dataSourceKey?: string | undefined;
|
|
20004
|
+
appSchema?: DataSchema | undefined;
|
|
20005
|
+
direction?: FieldMappingDirection | undefined;
|
|
20005
20006
|
defaultImportValue?: any;
|
|
20006
20007
|
defaultExportValue?: any;
|
|
20007
20008
|
importValue?: any;
|
|
@@ -20048,10 +20049,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
20048
20049
|
id: string;
|
|
20049
20050
|
name: string;
|
|
20050
20051
|
revision: string;
|
|
20051
|
-
dataSourceId: string;
|
|
20052
|
-
dataSourceKey: string;
|
|
20053
|
-
appSchema: DataSchema;
|
|
20054
|
-
direction: FieldMappingDirection;
|
|
20055
20052
|
key?: string | undefined;
|
|
20056
20053
|
uuid?: string | undefined;
|
|
20057
20054
|
description?: string | undefined;
|
|
@@ -20065,6 +20062,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
20065
20062
|
publishedRevision?: string | undefined;
|
|
20066
20063
|
universalFieldMappingId?: string | undefined;
|
|
20067
20064
|
universalFieldMappingRevision?: string | undefined;
|
|
20065
|
+
dataSourceId?: string | undefined;
|
|
20066
|
+
dataSourceKey?: string | undefined;
|
|
20067
|
+
appSchema?: DataSchema | undefined;
|
|
20068
|
+
direction?: FieldMappingDirection | undefined;
|
|
20068
20069
|
defaultImportValue?: any;
|
|
20069
20070
|
defaultExportValue?: any;
|
|
20070
20071
|
importValue?: any;
|
|
@@ -20079,10 +20080,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
20079
20080
|
id: string;
|
|
20080
20081
|
name: string;
|
|
20081
20082
|
revision: string;
|
|
20082
|
-
dataSourceId: string;
|
|
20083
|
-
dataSourceKey: string;
|
|
20084
|
-
appSchema: DataSchema;
|
|
20085
|
-
direction: FieldMappingDirection;
|
|
20086
20083
|
key?: string | undefined;
|
|
20087
20084
|
integration?: {
|
|
20088
20085
|
id: string;
|
|
@@ -20128,6 +20125,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
20128
20125
|
publishedRevision?: string | undefined;
|
|
20129
20126
|
universalFieldMappingId?: string | undefined;
|
|
20130
20127
|
universalFieldMappingRevision?: string | undefined;
|
|
20128
|
+
dataSourceId?: string | undefined;
|
|
20129
|
+
dataSourceKey?: string | undefined;
|
|
20130
|
+
appSchema?: DataSchema | undefined;
|
|
20131
|
+
direction?: FieldMappingDirection | undefined;
|
|
20131
20132
|
defaultImportValue?: any;
|
|
20132
20133
|
defaultExportValue?: any;
|
|
20133
20134
|
importValue?: any;
|
|
@@ -20173,10 +20174,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
20173
20174
|
id: string;
|
|
20174
20175
|
name: string;
|
|
20175
20176
|
revision: string;
|
|
20176
|
-
dataSourceId: string;
|
|
20177
|
-
dataSourceKey: string;
|
|
20178
|
-
appSchema: DataSchema;
|
|
20179
|
-
direction: FieldMappingDirection;
|
|
20180
20177
|
key?: string | undefined;
|
|
20181
20178
|
uuid?: string | undefined;
|
|
20182
20179
|
description?: string | undefined;
|
|
@@ -20190,6 +20187,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
20190
20187
|
publishedRevision?: string | undefined;
|
|
20191
20188
|
universalFieldMappingId?: string | undefined;
|
|
20192
20189
|
universalFieldMappingRevision?: string | undefined;
|
|
20190
|
+
dataSourceId?: string | undefined;
|
|
20191
|
+
dataSourceKey?: string | undefined;
|
|
20192
|
+
appSchema?: DataSchema | undefined;
|
|
20193
|
+
direction?: FieldMappingDirection | undefined;
|
|
20193
20194
|
defaultImportValue?: any;
|
|
20194
20195
|
defaultExportValue?: any;
|
|
20195
20196
|
importValue?: any;
|
|
@@ -20204,10 +20205,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
20204
20205
|
id: string;
|
|
20205
20206
|
name: string;
|
|
20206
20207
|
revision: string;
|
|
20207
|
-
dataSourceId: string;
|
|
20208
|
-
dataSourceKey: string;
|
|
20209
|
-
appSchema: DataSchema;
|
|
20210
|
-
direction: FieldMappingDirection;
|
|
20211
20208
|
key?: string | undefined;
|
|
20212
20209
|
integration?: {
|
|
20213
20210
|
id: string;
|
|
@@ -20253,6 +20250,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
20253
20250
|
publishedRevision?: string | undefined;
|
|
20254
20251
|
universalFieldMappingId?: string | undefined;
|
|
20255
20252
|
universalFieldMappingRevision?: string | undefined;
|
|
20253
|
+
dataSourceId?: string | undefined;
|
|
20254
|
+
dataSourceKey?: string | undefined;
|
|
20255
|
+
appSchema?: DataSchema | undefined;
|
|
20256
|
+
direction?: FieldMappingDirection | undefined;
|
|
20256
20257
|
defaultImportValue?: any;
|
|
20257
20258
|
defaultExportValue?: any;
|
|
20258
20259
|
importValue?: any;
|
|
@@ -20298,10 +20299,6 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
20298
20299
|
id: string;
|
|
20299
20300
|
name: string;
|
|
20300
20301
|
revision: string;
|
|
20301
|
-
dataSourceId: string;
|
|
20302
|
-
dataSourceKey: string;
|
|
20303
|
-
appSchema: DataSchema;
|
|
20304
|
-
direction: FieldMappingDirection;
|
|
20305
20302
|
key?: string | undefined;
|
|
20306
20303
|
uuid?: string | undefined;
|
|
20307
20304
|
description?: string | undefined;
|
|
@@ -20315,6 +20312,10 @@ declare const FieldMappingApiResponse: z.ZodObject<{
|
|
|
20315
20312
|
publishedRevision?: string | undefined;
|
|
20316
20313
|
universalFieldMappingId?: string | undefined;
|
|
20317
20314
|
universalFieldMappingRevision?: string | undefined;
|
|
20315
|
+
dataSourceId?: string | undefined;
|
|
20316
|
+
dataSourceKey?: string | undefined;
|
|
20317
|
+
appSchema?: DataSchema | undefined;
|
|
20318
|
+
direction?: FieldMappingDirection | undefined;
|
|
20318
20319
|
defaultImportValue?: any;
|
|
20319
20320
|
defaultExportValue?: any;
|
|
20320
20321
|
importValue?: any;
|
|
@@ -20330,25 +20331,25 @@ type FieldMappingApiResponse = z.infer<typeof FieldMappingApiResponse>;
|
|
|
20330
20331
|
type FieldMapping = FieldMappingApiResponse;
|
|
20331
20332
|
|
|
20332
20333
|
declare class FieldMappingsAccessor extends ElementListAccessor<FieldMapping, FindFieldMappingsQuery, CreateFieldMappingRequest> {
|
|
20333
|
-
constructor(client:
|
|
20334
|
+
constructor(client: MembraneApiClient);
|
|
20334
20335
|
}
|
|
20335
20336
|
declare class FieldMappingAccessor extends ElementAccessor<FieldMapping, UpdateFieldMappingRequest, FieldMappingSelector> {
|
|
20336
|
-
constructor(client:
|
|
20337
|
+
constructor(client: MembraneApiClient, selector: string | FieldMappingSelector);
|
|
20337
20338
|
getAppSchema(): Promise<any>;
|
|
20338
20339
|
apply(integrationKeys: string[]): Promise<FieldMapping[]>;
|
|
20339
20340
|
setup(): Promise<any>;
|
|
20340
20341
|
reset(): Promise<any>;
|
|
20341
20342
|
}
|
|
20342
20343
|
declare class IntegrationLevelFieldMappingAccessor extends IntegrationLevelElementAccessor<FieldMapping, UpdateFieldMappingRequest> {
|
|
20343
|
-
client:
|
|
20344
|
+
client: MembraneApiClient;
|
|
20344
20345
|
integrationSelector: string;
|
|
20345
20346
|
fieldMappingSelector: string;
|
|
20346
|
-
constructor(client:
|
|
20347
|
+
constructor(client: MembraneApiClient, integrationSelector: string, fieldMappingSelector: string);
|
|
20347
20348
|
}
|
|
20348
20349
|
declare class IntegrationLevelFieldMappingsListAccessor extends IntegrationLevelElementsListAccessor<FieldMapping, ListFieldMappingsForIntegrationQuery, Omit<CreateFieldMappingRequest, 'integrationId'>> {
|
|
20349
|
-
client:
|
|
20350
|
+
client: MembraneApiClient;
|
|
20350
20351
|
integrationSelector: string;
|
|
20351
|
-
constructor(client:
|
|
20352
|
+
constructor(client: MembraneApiClient, integrationSelector: string);
|
|
20352
20353
|
}
|
|
20353
20354
|
|
|
20354
20355
|
declare const CreateIntegrationRequest: z.ZodObject<{
|
|
@@ -20730,13 +20731,13 @@ type Integration = IntegrationApiResponse;
|
|
|
20730
20731
|
interface OpenIntegrationUIIntegrationConfigurationOptions extends OpenConfigurationOptions {
|
|
20731
20732
|
}
|
|
20732
20733
|
declare class IntegrationsAccessor extends ElementListAccessor<Integration, FindIntegrationsQuery, CreateIntegrationRequest> {
|
|
20733
|
-
constructor(client:
|
|
20734
|
+
constructor(client: MembraneApiClient);
|
|
20734
20735
|
}
|
|
20735
20736
|
declare class IntegrationAccessor extends ElementAccessor<Integration, UpdateIntegrationRequest> {
|
|
20736
20737
|
private client;
|
|
20737
20738
|
private integrationSelector;
|
|
20738
20739
|
baseUri: string;
|
|
20739
|
-
constructor(client:
|
|
20740
|
+
constructor(client: MembraneApiClient, integrationSelector: string);
|
|
20740
20741
|
get actions(): IntegrationLevelActionsListAccessor;
|
|
20741
20742
|
action(actionSelector: string): IntegrationLevelActionAccessor;
|
|
20742
20743
|
get flows(): IntegrationLevelFlowsListAccessor;
|
|
@@ -21753,10 +21754,10 @@ type ScenarioApiResponse = z.infer<typeof ScenarioApiResponse>;
|
|
|
21753
21754
|
type Scenario = ScenarioApiResponse;
|
|
21754
21755
|
|
|
21755
21756
|
declare class ScenariosAccessor extends ElementListAccessor<Scenario, FindScenariosQuery, CreateScenarioRequest> {
|
|
21756
|
-
constructor(client:
|
|
21757
|
+
constructor(client: MembraneApiClient);
|
|
21757
21758
|
}
|
|
21758
21759
|
declare class ScenarioAccessor extends ElementAccessor<Scenario, UpdateScenarioRequest> {
|
|
21759
|
-
constructor(client:
|
|
21760
|
+
constructor(client: MembraneApiClient, selector: string);
|
|
21760
21761
|
}
|
|
21761
21762
|
|
|
21762
21763
|
interface ScreenBlockApi {
|
|
@@ -21814,30 +21815,30 @@ type ScreenApiResponse = typeof ScreenApiResponse._type;
|
|
|
21814
21815
|
type Screen = ScreenApiResponse;
|
|
21815
21816
|
|
|
21816
21817
|
declare class ScreensAccessor extends ElementListAccessor<Screen, FindScreensQuery, CreateScreenRequest> {
|
|
21817
|
-
constructor(client:
|
|
21818
|
+
constructor(client: MembraneApiClient);
|
|
21818
21819
|
}
|
|
21819
21820
|
declare class ScreenAccessor extends ElementAccessor<Screen, UpdateScreenRequest, ScreenSelector> {
|
|
21820
|
-
constructor(client:
|
|
21821
|
+
constructor(client: MembraneApiClient, selector: ScreenSelector | string);
|
|
21821
21822
|
}
|
|
21822
21823
|
|
|
21823
21824
|
declare class CustomersAccessor extends ElementListAccessor<Customer, FindCustomersQuery, CreateCustomerRequest> {
|
|
21824
|
-
constructor(client:
|
|
21825
|
+
constructor(client: MembraneApiClient);
|
|
21825
21826
|
}
|
|
21826
21827
|
declare class CustomerAccessor extends ElementAccessor<Customer, UpdateCustomerRequest, CustomerSelector> {
|
|
21827
|
-
constructor(client:
|
|
21828
|
+
constructor(client: MembraneApiClient, selector: CustomerSelector | string);
|
|
21828
21829
|
}
|
|
21829
21830
|
declare class UsersAccessor extends CustomersAccessor {
|
|
21830
|
-
constructor(client:
|
|
21831
|
+
constructor(client: MembraneApiClient);
|
|
21831
21832
|
}
|
|
21832
21833
|
declare class UserAccessor extends CustomerAccessor {
|
|
21833
|
-
constructor(client:
|
|
21834
|
+
constructor(client: MembraneApiClient, selector: string);
|
|
21834
21835
|
}
|
|
21835
21836
|
|
|
21836
21837
|
declare class DataLinkTablesAccessor extends ElementListAccessor<BaseDataLinkTable, FindDataLinkTablesQuery, CreateDataLinkTableRequest> {
|
|
21837
|
-
constructor(client:
|
|
21838
|
+
constructor(client: MembraneApiClient);
|
|
21838
21839
|
}
|
|
21839
21840
|
declare class DataLinkTableAccessor extends ElementAccessor<BaseDataLinkTable, UpdateDataLinkTableRequest> {
|
|
21840
|
-
constructor(client:
|
|
21841
|
+
constructor(client: MembraneApiClient, idOrKey: string);
|
|
21841
21842
|
}
|
|
21842
21843
|
|
|
21843
21844
|
interface FindDataLinkTableInstancesQuery extends PaginationQuery {
|
|
@@ -22334,21 +22335,21 @@ type DataLinkTableInstanceApiResponse = z.infer<typeof DataLinkTableInstanceApiR
|
|
|
22334
22335
|
type DataLinkTableInstance = DataLinkTableInstanceApiResponse;
|
|
22335
22336
|
|
|
22336
22337
|
declare class DataLinkTableInstancesAccessor extends ElementInstanceListAccessor<DataLinkTableInstance, FindDataLinkTableInstancesQuery> {
|
|
22337
|
-
constructor(client:
|
|
22338
|
+
constructor(client: MembraneApiClient);
|
|
22338
22339
|
}
|
|
22339
22340
|
declare class DataLinkTableInstanceAccessor extends ElementInstanceAccessor<DataLinkTableInstance, DataLinkTableInstanceSelector, UpdateDataLinkTableInstanceRequest, UpdateDataLinkTableInstanceRequest> {
|
|
22340
22341
|
private client;
|
|
22341
|
-
constructor(client:
|
|
22342
|
+
constructor(client: MembraneApiClient, selector: string | DataLinkTableInstanceSelector);
|
|
22342
22343
|
findLinks(query?: FindDataLinksInTableQuery): Promise<FindDataLinksResponse>;
|
|
22343
22344
|
createLink(data: CreateDataLinkRequest): Promise<void>;
|
|
22344
22345
|
deleteLink(data: DeleteDataLinkRequest): Promise<void>;
|
|
22345
22346
|
}
|
|
22346
22347
|
|
|
22347
22348
|
declare class AppEventTypesAccessor extends ElementListAccessor<BaseAppEventType, FindAppEventTypesQuery, CreateAppEventTypeRequest> {
|
|
22348
|
-
constructor(client:
|
|
22349
|
+
constructor(client: MembraneApiClient);
|
|
22349
22350
|
}
|
|
22350
22351
|
declare class AppEventTypeAccessor extends ElementAccessor<BaseAppEventType, UpdateAppEventTypeRequest> {
|
|
22351
|
-
constructor(client:
|
|
22352
|
+
constructor(client: MembraneApiClient, idOrKey: string);
|
|
22352
22353
|
}
|
|
22353
22354
|
|
|
22354
22355
|
interface FindAppEventSubscriptionsQuery extends PaginationQuery {
|
|
@@ -22665,18 +22666,18 @@ type AppEventSubscriptionApiResponse = z.infer<typeof AppEventSubscriptionApiRes
|
|
|
22665
22666
|
type AppEventSubscription = AppEventSubscriptionApiResponse;
|
|
22666
22667
|
|
|
22667
22668
|
declare class AppEventSubscriptionsAccessor extends ElementInstanceListAccessor<AppEventSubscription, FindAppEventSubscriptionsQuery> {
|
|
22668
|
-
constructor(client:
|
|
22669
|
+
constructor(client: MembraneApiClient);
|
|
22669
22670
|
}
|
|
22670
22671
|
declare class AppEventSubscriptionAccessor extends ElementInstanceAccessor<AppEventSubscription, AppEventSubscriptionSelector, UpdateAppEventSubscriptionRequest, UpdateAppEventSubscriptionRequest> {
|
|
22671
|
-
constructor(client:
|
|
22672
|
+
constructor(client: MembraneApiClient, selector: string | AppEventSubscriptionSelector);
|
|
22672
22673
|
subscribe(): Promise<void>;
|
|
22673
22674
|
}
|
|
22674
22675
|
|
|
22675
22676
|
declare class AppDataSchemasAccessor extends ElementListAccessor<BaseAppDataSchema, FindAppDataSchemasQuery, CreateAppDataSchemaRequest> {
|
|
22676
|
-
constructor(client:
|
|
22677
|
+
constructor(client: MembraneApiClient);
|
|
22677
22678
|
}
|
|
22678
22679
|
declare class AppDataSchemaAccessor extends ElementAccessor<BaseAppDataSchema, UpdateAppDataSchemaRequest> {
|
|
22679
|
-
constructor(client:
|
|
22680
|
+
constructor(client: MembraneApiClient, idOrKey: string);
|
|
22680
22681
|
}
|
|
22681
22682
|
|
|
22682
22683
|
interface FindAppDataSchemaInstancesQuery extends PaginationQuery {
|
|
@@ -22900,11 +22901,11 @@ type AppDataSchemaInstanceApiResponse = z.infer<typeof AppDataSchemaInstanceApiR
|
|
|
22900
22901
|
type AppDataSchemaInstance = AppDataSchemaInstanceApiResponse;
|
|
22901
22902
|
|
|
22902
22903
|
declare class AppDataSchemaInstancesAccessor extends ElementInstanceListAccessor<AppDataSchemaInstance, FindAppDataSchemaInstancesQuery> {
|
|
22903
|
-
constructor(client:
|
|
22904
|
+
constructor(client: MembraneApiClient);
|
|
22904
22905
|
}
|
|
22905
22906
|
declare class AppDataSchemaInstanceAccessor extends ElementInstanceAccessor<AppDataSchemaInstance, AppDataSchemaInstanceSelector, UpdateAppDataSchemaInstanceRequest, CreateAppDataSchemaInstanceRequest> {
|
|
22906
22907
|
private client;
|
|
22907
|
-
constructor(client:
|
|
22908
|
+
constructor(client: MembraneApiClient, selector: string | AppDataSchemaInstanceSelector);
|
|
22908
22909
|
setup(): Promise<void>;
|
|
22909
22910
|
}
|
|
22910
22911
|
|
|
@@ -23913,12 +23914,12 @@ type ExternalEvent = z.infer<typeof ExternalEvent>;
|
|
|
23913
23914
|
type ExternalEventApiResponse = ExternalEvent;
|
|
23914
23915
|
|
|
23915
23916
|
declare class ExternalEventSubscriptionsAccessor extends ElementInstanceListAccessor<ExternalEventSubscription, FindExternalEventSubscriptionsQuery> {
|
|
23916
|
-
constructor(client:
|
|
23917
|
+
constructor(client: MembraneApiClient);
|
|
23917
23918
|
}
|
|
23918
23919
|
declare class ExternalEventSubscriptionAccessor {
|
|
23919
23920
|
private client;
|
|
23920
23921
|
private id;
|
|
23921
|
-
constructor(client:
|
|
23922
|
+
constructor(client: MembraneApiClient, id: string);
|
|
23922
23923
|
get(): Promise<ExternalEventSubscription>;
|
|
23923
23924
|
setup(): Promise<void>;
|
|
23924
23925
|
subscribe(): Promise<void>;
|
|
@@ -26677,7 +26678,7 @@ declare const AppEventLogRecordApiResponse: z.ZodObject<{
|
|
|
26677
26678
|
type AppEventLogRecordApiResponse = z.infer<typeof AppEventLogRecordApiResponse>;
|
|
26678
26679
|
type AppEvent = AppEventLogRecordApiResponse;
|
|
26679
26680
|
|
|
26680
|
-
declare class DependencyError extends
|
|
26681
|
+
declare class DependencyError extends MembraneError {
|
|
26681
26682
|
constructor(arg: ErrorConstructorArg, workspaceElementReference?: WorkspaceElementReference);
|
|
26682
26683
|
}
|
|
26683
26684
|
|
|
@@ -26870,7 +26871,7 @@ declare const EDITABLE_LIMITS: string[];
|
|
|
26870
26871
|
|
|
26871
26872
|
declare class SelfAccessor {
|
|
26872
26873
|
private client;
|
|
26873
|
-
constructor(client:
|
|
26874
|
+
constructor(client: MembraneApiClient);
|
|
26874
26875
|
get(): Promise<Customer>;
|
|
26875
26876
|
patch(data: Partial<{
|
|
26876
26877
|
credentials: any;
|
|
@@ -27096,10 +27097,12 @@ interface ResolveFormulaParams {
|
|
|
27096
27097
|
dataLinkTableKey: string;
|
|
27097
27098
|
recordId: string;
|
|
27098
27099
|
}) => Promise<string | undefined>;
|
|
27099
|
-
resolveLookup?: ({ lookup, schema, }: {
|
|
27100
|
+
resolveLookup?: ({ lookup, schema, fullValue, }: {
|
|
27100
27101
|
lookup: LookupValue;
|
|
27101
27102
|
schema: DataSchema | undefined;
|
|
27103
|
+
fullValue: unknown;
|
|
27102
27104
|
}) => Promise<string | undefined>;
|
|
27105
|
+
fullValue?: unknown;
|
|
27103
27106
|
}
|
|
27104
27107
|
declare abstract class DataBuilderFormulaBase<ArgsType = any> implements DataBuilderFormula {
|
|
27105
27108
|
type: DataBuilderFormulaType;
|
|
@@ -27121,7 +27124,7 @@ declare function injectFormulaCatalog(getFormulaFn: any, isFormulaFn: any, hasFo
|
|
|
27121
27124
|
|
|
27122
27125
|
declare function buildData(value: any, variables?: any): any;
|
|
27123
27126
|
declare function buildValue(value: any, variables: any): any;
|
|
27124
|
-
declare function
|
|
27127
|
+
declare function __resolveValue<T = unknown>(value: unknown, params: ResolveFormulaParams): Promise<T>;
|
|
27125
27128
|
declare function transformVars(value: any, transformations: Record<string, any>): any;
|
|
27126
27129
|
declare function valueToString(value: any, variablesSchema: any): string;
|
|
27127
27130
|
declare function resolveFormulas<T = unknown>(value: any, params: ResolveFormulaParams): Promise<T>;
|
|
@@ -27577,7 +27580,7 @@ declare function hasFormulas(value: any): any;
|
|
|
27577
27580
|
declare function getFormula(value: any): DataBuilderFormulaBase | undefined;
|
|
27578
27581
|
|
|
27579
27582
|
declare function getErrorFromData(data: any): any;
|
|
27580
|
-
declare function
|
|
27583
|
+
declare function extractMembraneErrorData(error: any): ErrorData;
|
|
27581
27584
|
|
|
27582
27585
|
interface DataField {
|
|
27583
27586
|
name: string;
|
|
@@ -27867,13 +27870,13 @@ interface WorkspaceSyncEvent {
|
|
|
27867
27870
|
elementId: string;
|
|
27868
27871
|
}
|
|
27869
27872
|
|
|
27870
|
-
interface
|
|
27873
|
+
interface OpenMembraneConfigurationOptions extends OpenConfigurationOptions {
|
|
27871
27874
|
}
|
|
27872
|
-
declare class
|
|
27873
|
-
constructor(options:
|
|
27875
|
+
declare class MembraneClient extends MembraneApiClient {
|
|
27876
|
+
constructor(options: MembraneClientOptions);
|
|
27874
27877
|
get self(): SelfAccessor;
|
|
27875
27878
|
get flows(): FlowsAccessor;
|
|
27876
|
-
open({ onClose }?:
|
|
27879
|
+
open({ onClose }?: OpenMembraneConfigurationOptions): Promise<void>;
|
|
27877
27880
|
action(selector: string | ActionSelector): ActionAccessor;
|
|
27878
27881
|
get actions(): ActionsAccessor;
|
|
27879
27882
|
screen(selector: string | ScreenSelector): ScreenAccessor;
|
|
@@ -27919,5 +27922,5 @@ declare class IntegrationAppClient extends IntegrationAppApiClient {
|
|
|
27919
27922
|
connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
|
|
27920
27923
|
}
|
|
27921
27924
|
|
|
27922
|
-
export { ACTIONS, AccessDeniedError, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionType, ActionsAccessor, AlertSeverity, AlertStatus, AlertType, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypesAccessor, AppliedToIntegrations, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnection, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseIntegration, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BaseScenario, BaseScreen, BaseWorkspaceElement, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionError, ConnectionErrorKey, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionProxy, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionsAccessor, ConnectorAuthMethodTypes, ConnectorCopilotFileChunkTopicKey, ConnectorCopilotSuggestionType, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorStatus, CopilotActionStatus, CopilotActionType, CopilotActivityScope, CopilotActivityType, CopilotTaskStatus, CopilotTaskType, CreateActionInstanceRequest, CreateActionRequest, CreateConnectionRequest, CreateCustomerRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateScenarioRequest, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaType, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields$1 as ElementsExportFields, ErrorData, ErrorDataSchema, ErrorType, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationsQuery, FindScenariosQuery, FlowAccessor, FlowApiResponse, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceNode, FlowInstanceNodeState, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowsAccessor, Formula, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhooksState, IntegrationAccessor, IntegrationApiResponse, IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationElementLevel, IntegrationElementType, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationsAccessor, InternalError, InvalidLocatorError, LimitUnits, ListActionInstancesForConnectionQuery, ListDataSourceInstancesForConnectionQuery, ListDataSourcesForIntegrationQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListFlowInstancesForConnectionQuery, ListFlowsForIntegrationQuery, LogRecordType, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OpenNewConnectionOptions, OrgLimitsType, OrgUserRole, OrgUserStatus, PARALLEL_EXECUTION_LIMITS, PaginationQuery, PaginationResponse, ParallelExecutionLimits, RATE_LIMITS, RateLimitExceededError, RateLimits, ResetFlowInstanceOptions, RunFlowOptions, ScenarioAccessor, ScenarioApiResponse, ScenarioElement, ScenarioElementApi, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenarioToDo, ScenarioToDoApi, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateCustomerRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateScenarioRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, WorkspaceElementDependencyType, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceEventType, WorkspaceNotificationType, WorkspaceOnboardingStep, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, addRequiredFieldsToSchema, addUdmFallbackFields, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractIntegrationAppErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAllEventMethodFilePaths, getChildNodeKeys, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getErrorFromData, getEventMethodFileKey, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isDataActionType, isDataLocationMethodSupported, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isIntegrationAppError, isObject, isSameDataLocation, isSchemaEmpty, isStream, isValidLocator, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, resolveValue, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
27925
|
+
export { ACTIONS, AccessDeniedError, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionType, ActionsAccessor, AlertSeverity, AlertStatus, AlertType, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypesAccessor, AppliedToIntegrations, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnection, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseIntegration, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BaseScenario, BaseScreen, BaseWorkspaceElement, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionError, ConnectionErrorKey, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionProxy, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionsAccessor, ConnectorAuthMethodTypes, ConnectorCopilotFileChunkTopicKey, ConnectorCopilotSuggestionType, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorStatus, CopilotActionStatus, CopilotActionType, CopilotActivityScope, CopilotActivityType, CopilotTaskStatus, CopilotTaskType, CreateActionInstanceRequest, CreateActionRequest, CreateConnectionRequest, CreateCustomerRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateScenarioRequest, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaType, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields$1 as ElementsExportFields, ErrorData, ErrorDataSchema, ErrorType, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationsQuery, FindScenariosQuery, FlowAccessor, FlowApiResponse, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceNode, FlowInstanceNodeState, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowsAccessor, Formula, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhooksState, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAuthOption, IntegrationAuthUi, IntegrationElementLevel, IntegrationElementType, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationsAccessor, InternalError, InvalidLocatorError, LimitUnits, ListActionInstancesForConnectionQuery, ListDataSourceInstancesForConnectionQuery, ListDataSourcesForIntegrationQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListFlowInstancesForConnectionQuery, ListFlowsForIntegrationQuery, LogRecordType, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MembraneClient, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OpenNewConnectionOptions, OrgLimitsType, OrgUserRole, OrgUserStatus, PARALLEL_EXECUTION_LIMITS, PaginationQuery, PaginationResponse, ParallelExecutionLimits, RATE_LIMITS, RateLimitExceededError, RateLimits, ResetFlowInstanceOptions, RunFlowOptions, ScenarioAccessor, ScenarioApiResponse, ScenarioElement, ScenarioElementApi, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenarioToDo, ScenarioToDoApi, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateCustomerRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateScenarioRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, WorkspaceElementDependencyType, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceEventType, WorkspaceNotificationType, WorkspaceOnboardingStep, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAllEventMethodFilePaths, getChildNodeKeys, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getErrorFromData, getEventMethodFileKey, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isDataActionType, isDataLocationMethodSupported, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isSameDataLocation, isSchemaEmpty, isStream, isValidLocator, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
27923
27926
|
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, Alert, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, BaseConnector, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, ConfigurationStateResult, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthOAuth1, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthType, ConnectorCopilotSuggestion, ConnectorCopilotSuggestionAction, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorOperationHandler, ConnectorOperationMethod, ConnectorSpec, ConnectorUdmCollectionMapping, ConnectorUdmListLitem, ConnectorUdmSpec, ConnectorUiSpec, CopilotAction, CopilotActionReference, CopilotActivity, CopilotActivityDataTask, CopilotActivityNotificationData, CopilotTask, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateDataLinkTableRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateScreenRequest, CreateUserRequest, Customer, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocationPointer, DataLocator, DataRecord, DataSource, DataSourceInstance, DataSourceInstanceSelector, DataSourceSelector, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstance, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindDataLinkQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventPullsQuery, FindExternalEventSubscriptionsQuery, FindFieldMappingInstancesQuery, FindFieldMappingsQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindScreensQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, IntegrationSpecificElementSelector, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, Org, OrgLimits, OrgUser, OrgWorkspace, PatchSchemaOption, PlatformUser, PullLatestRecordsEventOutput, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, ScreenSelector, Self, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateDataLinkTableRequest, UpdateFieldMappingInstanceRequest, UpdateFieldMappingRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateScreenRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, Workspace, WorkspaceElementCalculateStateResult, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|