@membranehq/sdk 0.6.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.d.ts +177 -804
- package/dist/bundle.js +23 -19
- package/dist/bundle.js.map +1 -1
- package/dist/dts/accessors/action-instances-accessors.d.ts +8 -8
- package/dist/dts/accessors/actions-accessors.d.ts +7 -7
- package/dist/dts/accessors/app-data-schema-instances-accessors.d.ts +3 -3
- package/dist/dts/accessors/app-data-schemas-accessors.d.ts +3 -3
- package/dist/dts/accessors/app-event-subscriptions-accessors.d.ts +3 -3
- package/dist/dts/accessors/app-event-types-accessors.d.ts +3 -3
- package/dist/dts/accessors/base-accessors.d.ts +8 -8
- package/dist/dts/accessors/connections-accessors.d.ts +8 -8
- package/dist/dts/accessors/customers-accessors.d.ts +5 -5
- package/dist/dts/accessors/data-link-table-instances-accessors.d.ts +3 -3
- package/dist/dts/accessors/data-link-tables-accessors.d.ts +3 -3
- package/dist/dts/accessors/data-sources-accessors.d.ts +14 -14
- package/dist/dts/accessors/external-event-subscriptions-accessors.d.ts +3 -3
- package/dist/dts/accessors/field-mapping-instances-accessors.d.ts +7 -7
- package/dist/dts/accessors/field-mappings-accessors.d.ts +7 -7
- package/dist/dts/accessors/flow-instances-accessors.d.ts +8 -8
- package/dist/dts/accessors/flow-runs-accessors.d.ts +3 -3
- package/dist/dts/accessors/flows-accessors.d.ts +7 -7
- package/dist/dts/accessors/integrations-accessors.d.ts +3 -3
- package/dist/dts/accessors/scenarios-accessors.d.ts +3 -3
- package/dist/dts/accessors/screens-accessors.d.ts +3 -3
- package/dist/dts/api-client.d.ts +3 -3
- package/dist/dts/auth/accessors.d.ts +2 -2
- package/dist/dts/client.d.ts +5 -5
- package/dist/dts/data-builder/index.d.ts +1 -1
- package/dist/dts/data-schema/arbitrary-fields.test.d.ts +1 -0
- package/dist/dts/data-schema/types.d.ts +1 -0
- package/dist/dts/error-tools/index.d.ts +1 -1
- package/dist/dts/errors/index.d.ts +14 -14
- package/dist/dts/formulas/base.d.ts +3 -1
- package/dist/dts/index.d.ts +2 -1
- package/dist/dts/index.umd.d.ts +2 -2
- package/dist/dts/integration-elements/connection-level-element.accessor.d.ts +5 -5
- package/dist/dts/integration-elements/integration-level-element.accessor.d.ts +5 -5
- package/dist/dts/orgs/types.d.ts +1 -0
- package/dist/dts/workspace-elements/api/action-instances-api.d.ts +0 -3
- package/dist/dts/workspace-elements/api/field-mapping-instances-api.d.ts +20 -20
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +40 -40
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +0 -12
- package/dist/dts/workspace-elements/api/flows-api.d.ts +10 -623
- package/dist/dts/workspace-elements/base/action-instances/types.d.ts +0 -3
- package/dist/dts/workspace-elements/base/field-mappings/types.d.ts +12 -12
- package/dist/dts/workspace-elements/base/flow-instances/types.d.ts +0 -3
- package/dist/dts/workspace-elements/errors.d.ts +2 -2
- package/dist/index.d.ts +212 -842
- package/dist/index.js +84 -73
- package/dist/index.js.map +1 -1
- package/dist/index.module.d.mts +212 -842
- package/dist/index.module.mjs +79 -69
- package/dist/index.module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MembraneApiClient } from '../api-client';
|
|
2
2
|
import { OpenConfigurationOptions } from '../iframe';
|
|
3
3
|
import { ElementInstanceAccessor, ElementInstanceListAccessor } from './base-accessors';
|
|
4
4
|
import { InstanceKeyQuery } from '../integration-elements/common';
|
|
@@ -8,26 +8,26 @@ import { ActionRunResponse } from '../workspace-elements/api/actions-api';
|
|
|
8
8
|
export interface OpenActionConfigurationOptions extends OpenConfigurationOptions {
|
|
9
9
|
}
|
|
10
10
|
export declare class ActionInstancesAccessor extends ElementInstanceListAccessor<ActionInstance, FindActionInstancesQuery> {
|
|
11
|
-
constructor(client:
|
|
11
|
+
constructor(client: MembraneApiClient);
|
|
12
12
|
}
|
|
13
13
|
export declare class ActionInstanceAccessor extends ElementInstanceAccessor<ActionInstance, ActionInstanceSelector, CreateActionInstanceRequest, UpdateActionInstanceRequest> {
|
|
14
|
-
client:
|
|
15
|
-
constructor(client:
|
|
14
|
+
client: MembraneApiClient;
|
|
15
|
+
constructor(client: MembraneApiClient, selector: string | ActionInstanceSelector);
|
|
16
16
|
setup(): Promise<void>;
|
|
17
17
|
reset(): Promise<void>;
|
|
18
18
|
run(input?: any): Promise<ActionRunResponse>;
|
|
19
19
|
open({ onClose }?: OpenActionConfigurationOptions): Promise<void>;
|
|
20
20
|
}
|
|
21
21
|
export declare class ConnectionLevelActionAccessor extends ConnectionLevelElementAccessor<ActionInstance, UpdateActionInstanceRequest> {
|
|
22
|
-
client:
|
|
22
|
+
client: MembraneApiClient;
|
|
23
23
|
connectionSelector: string;
|
|
24
24
|
actionSelector: string;
|
|
25
25
|
query: InstanceKeyQuery;
|
|
26
|
-
constructor(client:
|
|
26
|
+
constructor(client: MembraneApiClient, connectionSelector: string, actionSelector: string, query: InstanceKeyQuery);
|
|
27
27
|
run(input?: any): Promise<ActionRunResponse>;
|
|
28
28
|
}
|
|
29
29
|
export declare class ConnectionLevelActionsAccessor extends ConnectionLevelElementsListAccessor<ActionInstance, ListActionInstancesForConnectionQuery> {
|
|
30
|
-
client:
|
|
30
|
+
client: MembraneApiClient;
|
|
31
31
|
connectionSelector: string;
|
|
32
|
-
constructor(client:
|
|
32
|
+
constructor(client: MembraneApiClient, connectionSelector: string);
|
|
33
33
|
}
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MembraneApiClient } from '../api-client';
|
|
2
2
|
import { ElementAccessor, ElementListAccessor } from './base-accessors';
|
|
3
3
|
import { IntegrationLevelElementAccessor, IntegrationLevelElementsListAccessor } from '../integration-elements/integration-level-element.accessor';
|
|
4
4
|
import { Action, ActionSelector, CreateActionRequest, FindActionsQuery, UpdateActionRequest } from '../workspace-elements/api/actions-api';
|
|
5
5
|
export declare class ActionsAccessor extends ElementListAccessor<Action, FindActionsQuery, CreateActionRequest> {
|
|
6
|
-
constructor(client:
|
|
6
|
+
constructor(client: MembraneApiClient);
|
|
7
7
|
}
|
|
8
8
|
export declare class ActionAccessor extends ElementAccessor<Action, UpdateActionRequest, ActionSelector> {
|
|
9
|
-
constructor(client:
|
|
9
|
+
constructor(client: MembraneApiClient, selector: ActionSelector | string);
|
|
10
10
|
apply(integrationKeys: string[]): Promise<Action[]>;
|
|
11
11
|
reset(): Promise<any>;
|
|
12
12
|
}
|
|
13
13
|
export declare class IntegrationLevelActionAccessor extends IntegrationLevelElementAccessor<Action, UpdateActionRequest> {
|
|
14
|
-
client:
|
|
14
|
+
client: MembraneApiClient;
|
|
15
15
|
integrationSelector: string;
|
|
16
16
|
actionSelector: string;
|
|
17
|
-
constructor(client:
|
|
17
|
+
constructor(client: MembraneApiClient, integrationSelector: string, actionSelector: string);
|
|
18
18
|
}
|
|
19
19
|
export declare class IntegrationLevelActionsListAccessor extends IntegrationLevelElementsListAccessor<Action, Omit<FindActionsQuery, 'integrationId'>, Omit<CreateActionRequest, 'integrationId'>> {
|
|
20
|
-
client:
|
|
20
|
+
client: MembraneApiClient;
|
|
21
21
|
integrationSelector: string;
|
|
22
|
-
constructor(client:
|
|
22
|
+
constructor(client: MembraneApiClient, integrationSelector: string);
|
|
23
23
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MembraneApiClient } from '../api-client';
|
|
2
2
|
import { ElementInstanceAccessor, ElementInstanceListAccessor } from './base-accessors';
|
|
3
3
|
import { AppDataSchemaInstanceSelector, FindAppDataSchemaInstancesQuery, CreateAppDataSchemaInstanceRequest, UpdateAppDataSchemaInstanceRequest } from '../workspace-elements/api';
|
|
4
4
|
import { AppDataSchemaInstance } from '../workspace-elements/api/app-data-schema-instances-api';
|
|
5
5
|
export declare class AppDataSchemaInstancesAccessor extends ElementInstanceListAccessor<AppDataSchemaInstance, FindAppDataSchemaInstancesQuery> {
|
|
6
|
-
constructor(client:
|
|
6
|
+
constructor(client: MembraneApiClient);
|
|
7
7
|
}
|
|
8
8
|
export declare class AppDataSchemaInstanceAccessor extends ElementInstanceAccessor<AppDataSchemaInstance, AppDataSchemaInstanceSelector, UpdateAppDataSchemaInstanceRequest, CreateAppDataSchemaInstanceRequest> {
|
|
9
9
|
private client;
|
|
10
|
-
constructor(client:
|
|
10
|
+
constructor(client: MembraneApiClient, selector: string | AppDataSchemaInstanceSelector);
|
|
11
11
|
setup(): Promise<void>;
|
|
12
12
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MembraneApiClient } from '../api-client';
|
|
2
2
|
import { ElementAccessor, ElementListAccessor } from './base-accessors';
|
|
3
3
|
import { CreateAppDataSchemaRequest, FindAppDataSchemasQuery, UpdateAppDataSchemaRequest } from '../workspace-elements/api';
|
|
4
4
|
import { BaseAppDataSchema } from '../workspace-elements/base/app-data-schemas';
|
|
5
5
|
export declare class AppDataSchemasAccessor extends ElementListAccessor<BaseAppDataSchema, FindAppDataSchemasQuery, CreateAppDataSchemaRequest> {
|
|
6
|
-
constructor(client:
|
|
6
|
+
constructor(client: MembraneApiClient);
|
|
7
7
|
}
|
|
8
8
|
export declare class AppDataSchemaAccessor extends ElementAccessor<BaseAppDataSchema, UpdateAppDataSchemaRequest> {
|
|
9
|
-
constructor(client:
|
|
9
|
+
constructor(client: MembraneApiClient, idOrKey: string);
|
|
10
10
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MembraneApiClient } from '../api-client';
|
|
2
2
|
import { ElementInstanceAccessor, ElementInstanceListAccessor } from './base-accessors';
|
|
3
3
|
import { AppEventSubscriptionSelector, UpdateAppEventSubscriptionRequest, FindAppEventSubscriptionsQuery } from '../workspace-elements/api';
|
|
4
4
|
import { AppEventSubscription } from '../workspace-elements/api/app-event-subscriptions-api';
|
|
5
5
|
export declare class AppEventSubscriptionsAccessor extends ElementInstanceListAccessor<AppEventSubscription, FindAppEventSubscriptionsQuery> {
|
|
6
|
-
constructor(client:
|
|
6
|
+
constructor(client: MembraneApiClient);
|
|
7
7
|
}
|
|
8
8
|
export declare class AppEventSubscriptionAccessor extends ElementInstanceAccessor<AppEventSubscription, AppEventSubscriptionSelector, UpdateAppEventSubscriptionRequest, UpdateAppEventSubscriptionRequest> {
|
|
9
|
-
constructor(client:
|
|
9
|
+
constructor(client: MembraneApiClient, selector: string | AppEventSubscriptionSelector);
|
|
10
10
|
subscribe(): Promise<void>;
|
|
11
11
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MembraneApiClient } from '../api-client';
|
|
2
2
|
import { ElementAccessor, ElementListAccessor } from './base-accessors';
|
|
3
3
|
import { CreateAppEventTypeRequest, FindAppEventTypesQuery, UpdateAppEventTypeRequest } from '../workspace-elements/api';
|
|
4
4
|
import { BaseAppEventType } from '../workspace-elements/base/app-event-types';
|
|
5
5
|
export declare class AppEventTypesAccessor extends ElementListAccessor<BaseAppEventType, FindAppEventTypesQuery, CreateAppEventTypeRequest> {
|
|
6
|
-
constructor(client:
|
|
6
|
+
constructor(client: MembraneApiClient);
|
|
7
7
|
}
|
|
8
8
|
export declare class AppEventTypeAccessor extends ElementAccessor<BaseAppEventType, UpdateAppEventTypeRequest> {
|
|
9
|
-
constructor(client:
|
|
9
|
+
constructor(client: MembraneApiClient, idOrKey: string);
|
|
10
10
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MembraneApiClient } from '../api-client';
|
|
2
2
|
import { PaginationResponse } from '../entity-repository';
|
|
3
3
|
import { WorkspaceElementType } from '../workspace-elements/types';
|
|
4
4
|
export interface BaseElementInstance {
|
|
@@ -23,12 +23,12 @@ type SelectorType = {
|
|
|
23
23
|
} | string;
|
|
24
24
|
export declare class ElementAccessor<Element, UpdateRequest, Selector extends SelectorType = string> {
|
|
25
25
|
protected options: {
|
|
26
|
-
client:
|
|
26
|
+
client: MembraneApiClient;
|
|
27
27
|
path: string;
|
|
28
28
|
selector: string | Selector;
|
|
29
29
|
};
|
|
30
30
|
constructor(options: {
|
|
31
|
-
client:
|
|
31
|
+
client: MembraneApiClient;
|
|
32
32
|
path: string;
|
|
33
33
|
selector: string | Selector;
|
|
34
34
|
});
|
|
@@ -43,29 +43,29 @@ export declare class ElementAccessor<Element, UpdateRequest, Selector extends Se
|
|
|
43
43
|
export declare class ElementListAccessor<Element, FindQuery, CreateRequest> {
|
|
44
44
|
private client;
|
|
45
45
|
private path;
|
|
46
|
-
constructor(client:
|
|
46
|
+
constructor(client: MembraneApiClient, path: string);
|
|
47
47
|
find(query?: FindQuery): Promise<PaginationResponse<Element>>;
|
|
48
48
|
findAll(query?: Omit<FindQuery, 'limit'>): Promise<Element[]>;
|
|
49
49
|
create(data: CreateRequest): Promise<Element>;
|
|
50
50
|
}
|
|
51
51
|
export declare class ElementInstanceListAccessor<ElementInstance extends BaseElementInstance, FindQuery> {
|
|
52
|
-
protected client:
|
|
52
|
+
protected client: MembraneApiClient;
|
|
53
53
|
private path;
|
|
54
|
-
constructor(client:
|
|
54
|
+
constructor(client: MembraneApiClient, path: string);
|
|
55
55
|
find(query?: FindQuery): Promise<PaginationResponse<ElementInstance>>;
|
|
56
56
|
}
|
|
57
57
|
export declare class ElementInstanceAccessor<ElementInstance extends BaseElementInstance, Selector extends {
|
|
58
58
|
id?: string;
|
|
59
59
|
}, CreateRequest, UpdateRequest> {
|
|
60
60
|
protected options: {
|
|
61
|
-
client:
|
|
61
|
+
client: MembraneApiClient;
|
|
62
62
|
instancePath: string;
|
|
63
63
|
selector: string | Selector;
|
|
64
64
|
type?: WorkspaceElementType;
|
|
65
65
|
};
|
|
66
66
|
private id;
|
|
67
67
|
constructor(options: {
|
|
68
|
-
client:
|
|
68
|
+
client: MembraneApiClient;
|
|
69
69
|
instancePath: string;
|
|
70
70
|
selector: string | Selector;
|
|
71
71
|
type?: WorkspaceElementType;
|
|
@@ -3,7 +3,7 @@ import { ElementInstanceListAccessor } from './base-accessors';
|
|
|
3
3
|
import { ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor } from './data-sources-accessors';
|
|
4
4
|
import { ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor } from './field-mapping-instances-accessors';
|
|
5
5
|
import { ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor } from './flow-instances-accessors';
|
|
6
|
-
import {
|
|
6
|
+
import { MembraneApiClient } from '../api-client';
|
|
7
7
|
import { OpenConfigurationOptions } from '../iframe';
|
|
8
8
|
import { InstanceKeyQuery } from '../integration-elements/common';
|
|
9
9
|
import { Connection, CreateConnectionRequest, FindConnectionsQuery, UpdateConnectionRequest } from '../workspace-elements/api/connections-api';
|
|
@@ -11,13 +11,13 @@ import { ConnectorSpec } from '../workspace-elements/base/connectors';
|
|
|
11
11
|
import { OperationRunRequest, OperationRunResponse, OperationSpec } from '../workspace-elements/base/connectors/operations/types';
|
|
12
12
|
import { DataCollectionSpec, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionListRequest, DataCollectionListResponse, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionUpdateRequest, DataCollectionUpdateResponse } from '../workspace-elements/base/data-collections';
|
|
13
13
|
export declare class ConnectionsAccessor extends ElementInstanceListAccessor<Connection, FindConnectionsQuery> {
|
|
14
|
-
constructor(client:
|
|
14
|
+
constructor(client: MembraneApiClient);
|
|
15
15
|
create(data: CreateConnectionRequest): Promise<Connection>;
|
|
16
16
|
}
|
|
17
17
|
export declare class ConnectionAccessor {
|
|
18
|
-
client:
|
|
18
|
+
client: MembraneApiClient;
|
|
19
19
|
connectionSelector: string;
|
|
20
|
-
constructor(client:
|
|
20
|
+
constructor(client: MembraneApiClient, connectionSelector: string);
|
|
21
21
|
get actions(): ConnectionLevelActionsAccessor;
|
|
22
22
|
action(actionSelector: string, query?: InstanceKeyQuery): ConnectionLevelActionAccessor;
|
|
23
23
|
get flows(): ConnectionLevelFlowsAccessor;
|
|
@@ -109,19 +109,19 @@ export declare class ConnectionAccessor {
|
|
|
109
109
|
getPath(subpath?: string, query?: Record<string, any>): string;
|
|
110
110
|
}
|
|
111
111
|
export declare class ConnectionOperationAccessor {
|
|
112
|
-
client:
|
|
112
|
+
client: MembraneApiClient;
|
|
113
113
|
connectionAccessor: ConnectionAccessor;
|
|
114
114
|
key: string;
|
|
115
|
-
constructor(client:
|
|
115
|
+
constructor(client: MembraneApiClient, connectionAccessor: ConnectionAccessor, key: string);
|
|
116
116
|
get(): Promise<OperationSpec>;
|
|
117
117
|
run(request?: OperationRunRequest): Promise<OperationRunResponse>;
|
|
118
118
|
}
|
|
119
119
|
export declare class ConnectionDataCollectionAccessor {
|
|
120
|
-
client:
|
|
120
|
+
client: MembraneApiClient;
|
|
121
121
|
connectionAccessor: ConnectionAccessor;
|
|
122
122
|
key: string;
|
|
123
123
|
parameters: Record<string, any>;
|
|
124
|
-
constructor(client:
|
|
124
|
+
constructor(client: MembraneApiClient, connectionAccessor: ConnectionAccessor, key: string, parameters: Record<string, any>);
|
|
125
125
|
get(): Promise<DataCollectionSpec>;
|
|
126
126
|
findById(request?: DataCollectionFindByIdRequest): Promise<DataCollectionFindByIdResponse>;
|
|
127
127
|
list(request?: DataCollectionListRequest): Promise<DataCollectionListResponse>;
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MembraneApiClient } from '../api-client';
|
|
2
2
|
import { ElementAccessor, ElementListAccessor } from './base-accessors';
|
|
3
3
|
import { Customer, CreateCustomerRequest, FindCustomersQuery, UpdateCustomerRequest, CustomerSelector } from '../workspace-elements/api/customers-api';
|
|
4
4
|
export declare class CustomersAccessor extends ElementListAccessor<Customer, FindCustomersQuery, CreateCustomerRequest> {
|
|
5
|
-
constructor(client:
|
|
5
|
+
constructor(client: MembraneApiClient);
|
|
6
6
|
}
|
|
7
7
|
export declare class CustomerAccessor extends ElementAccessor<Customer, UpdateCustomerRequest, CustomerSelector> {
|
|
8
|
-
constructor(client:
|
|
8
|
+
constructor(client: MembraneApiClient, selector: CustomerSelector | string);
|
|
9
9
|
}
|
|
10
10
|
export declare class UsersAccessor extends CustomersAccessor {
|
|
11
|
-
constructor(client:
|
|
11
|
+
constructor(client: MembraneApiClient);
|
|
12
12
|
}
|
|
13
13
|
export declare class UserAccessor extends CustomerAccessor {
|
|
14
|
-
constructor(client:
|
|
14
|
+
constructor(client: MembraneApiClient, selector: string);
|
|
15
15
|
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MembraneApiClient } from '../api-client';
|
|
2
2
|
import { ElementInstanceAccessor, ElementInstanceListAccessor } from './base-accessors';
|
|
3
3
|
import { CreateDataLinkRequest, DataLinkTableInstanceSelector, DeleteDataLinkRequest, FindDataLinkTableInstancesQuery, FindDataLinksInTableQuery, FindDataLinksResponse, UpdateDataLinkTableInstanceRequest } from '../workspace-elements/api';
|
|
4
4
|
import { DataLinkTableInstance } from '../workspace-elements/api/data-link-table-instances-api';
|
|
5
5
|
export declare class DataLinkTableInstancesAccessor extends ElementInstanceListAccessor<DataLinkTableInstance, FindDataLinkTableInstancesQuery> {
|
|
6
|
-
constructor(client:
|
|
6
|
+
constructor(client: MembraneApiClient);
|
|
7
7
|
}
|
|
8
8
|
export declare class DataLinkTableInstanceAccessor extends ElementInstanceAccessor<DataLinkTableInstance, DataLinkTableInstanceSelector, UpdateDataLinkTableInstanceRequest, UpdateDataLinkTableInstanceRequest> {
|
|
9
9
|
private client;
|
|
10
|
-
constructor(client:
|
|
10
|
+
constructor(client: MembraneApiClient, selector: string | DataLinkTableInstanceSelector);
|
|
11
11
|
findLinks(query?: FindDataLinksInTableQuery): Promise<FindDataLinksResponse>;
|
|
12
12
|
createLink(data: CreateDataLinkRequest): Promise<void>;
|
|
13
13
|
deleteLink(data: DeleteDataLinkRequest): Promise<void>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MembraneApiClient } from '../api-client';
|
|
2
2
|
import { ElementAccessor, ElementListAccessor } from './base-accessors';
|
|
3
3
|
import { CreateDataLinkTableRequest, FindDataLinkTablesQuery, UpdateDataLinkTableRequest } from '../workspace-elements/api';
|
|
4
4
|
import { BaseDataLinkTable } from '../workspace-elements/base/data-link-tables';
|
|
5
5
|
export declare class DataLinkTablesAccessor extends ElementListAccessor<BaseDataLinkTable, FindDataLinkTablesQuery, CreateDataLinkTableRequest> {
|
|
6
|
-
constructor(client:
|
|
6
|
+
constructor(client: MembraneApiClient);
|
|
7
7
|
}
|
|
8
8
|
export declare class DataLinkTableAccessor extends ElementAccessor<BaseDataLinkTable, UpdateDataLinkTableRequest> {
|
|
9
|
-
constructor(client:
|
|
9
|
+
constructor(client: MembraneApiClient, idOrKey: string);
|
|
10
10
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MembraneApiClient } from '../api-client';
|
|
2
2
|
import { OpenConfigurationOptions } from '../iframe';
|
|
3
3
|
import { ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor } from './base-accessors';
|
|
4
4
|
import { InstanceKeyQuery } from '../integration-elements/common';
|
|
@@ -10,20 +10,20 @@ import { DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollecti
|
|
|
10
10
|
export interface OpenDataSourceConfigurationOptions extends OpenConfigurationOptions {
|
|
11
11
|
}
|
|
12
12
|
export declare class DataSourcesAccessor extends ElementListAccessor<DataSource, FindDataSourcesQuery, CreateDataSourceRequest> {
|
|
13
|
-
constructor(client:
|
|
13
|
+
constructor(client: MembraneApiClient);
|
|
14
14
|
}
|
|
15
15
|
export declare class DataSourceAccessor extends ElementAccessor<DataSource, UpdateDataSourceRequest, DataSourceSelector> {
|
|
16
|
-
constructor(client:
|
|
16
|
+
constructor(client: MembraneApiClient, selector: DataSourceSelector | string);
|
|
17
17
|
apply(integrationKeys: string[]): Promise<DataSource[]>;
|
|
18
18
|
setup(): Promise<void>;
|
|
19
19
|
reset(): Promise<any>;
|
|
20
20
|
}
|
|
21
21
|
export declare class DataSourceInstancesAccessor extends ElementInstanceListAccessor<DataSourceInstance, FindDataSourceInstancesQuery> {
|
|
22
|
-
constructor(client:
|
|
22
|
+
constructor(client: MembraneApiClient);
|
|
23
23
|
}
|
|
24
24
|
export declare class DataSourceInstanceAccessor extends ElementInstanceAccessor<DataSourceInstance, DataSourceInstanceSelector, CreateDataSourceInstanceRequest, UpdateDataSourceInstanceRequest> {
|
|
25
|
-
client:
|
|
26
|
-
constructor(client:
|
|
25
|
+
client: MembraneApiClient;
|
|
26
|
+
constructor(client: MembraneApiClient, selector: string | DataSourceInstanceSelector);
|
|
27
27
|
setup(): Promise<void>;
|
|
28
28
|
reset(): Promise<void>;
|
|
29
29
|
openConfiguration({ onClose }?: OpenDataSourceConfigurationOptions): Promise<void>;
|
|
@@ -39,26 +39,26 @@ export declare class DataSourceInstanceAccessor extends ElementInstanceAccessor<
|
|
|
39
39
|
findRecords(request?: DataCollectionFindRequest): Promise<DataCollectionFindResponse>;
|
|
40
40
|
}
|
|
41
41
|
export declare class IntegrationLevelDataSourceAccessor extends IntegrationLevelElementAccessor<DataSource, UpdateDataSourceRequest> {
|
|
42
|
-
client:
|
|
42
|
+
client: MembraneApiClient;
|
|
43
43
|
integrationSelector: string;
|
|
44
44
|
dataSourceSelector: string;
|
|
45
|
-
constructor(client:
|
|
45
|
+
constructor(client: MembraneApiClient, integrationSelector: string, dataSourceSelector: string);
|
|
46
46
|
}
|
|
47
47
|
export declare class IntegrationLevelDataSourcesListAccessor extends IntegrationLevelElementsListAccessor<DataSource, ListDataSourcesForIntegrationQuery, Omit<CreateDataSourceRequest, 'integrationId'>> {
|
|
48
|
-
client:
|
|
48
|
+
client: MembraneApiClient;
|
|
49
49
|
integrationSelector: string;
|
|
50
|
-
constructor(client:
|
|
50
|
+
constructor(client: MembraneApiClient, integrationSelector: string);
|
|
51
51
|
}
|
|
52
52
|
export declare class ConnectionLevelDataSourceAccessor extends ConnectionLevelElementAccessor<DataSourceInstance, UpdateDataSourceInstanceRequest> {
|
|
53
|
-
client:
|
|
53
|
+
client: MembraneApiClient;
|
|
54
54
|
connectionSelector: string;
|
|
55
55
|
dataSourceSelector: string;
|
|
56
56
|
query: InstanceKeyQuery;
|
|
57
|
-
constructor(client:
|
|
57
|
+
constructor(client: MembraneApiClient, connectionSelector: string, dataSourceSelector: string, query: InstanceKeyQuery);
|
|
58
58
|
openConfiguration(options?: OpenDataSourceConfigurationOptions): Promise<void>;
|
|
59
59
|
}
|
|
60
60
|
export declare class ConnectionLevelDataSourcesAccessor extends ConnectionLevelElementsListAccessor<DataSource, ListDataSourceInstancesForConnectionQuery> {
|
|
61
|
-
client:
|
|
61
|
+
client: MembraneApiClient;
|
|
62
62
|
connectionSelector: string;
|
|
63
|
-
constructor(client:
|
|
63
|
+
constructor(client: MembraneApiClient, connectionSelector: string);
|
|
64
64
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MembraneApiClient } from '../api-client';
|
|
2
2
|
import { ElementInstanceListAccessor } from './base-accessors';
|
|
3
3
|
import { ExternalEventSubscription } from '../workspace-elements/api/external-event-subscriptions-api';
|
|
4
4
|
import { FindExternalEventSubscriptionsQuery } from '../workspace-elements/api/external-events-api';
|
|
5
5
|
export declare class ExternalEventSubscriptionsAccessor extends ElementInstanceListAccessor<ExternalEventSubscription, FindExternalEventSubscriptionsQuery> {
|
|
6
|
-
constructor(client:
|
|
6
|
+
constructor(client: MembraneApiClient);
|
|
7
7
|
}
|
|
8
8
|
export declare class ExternalEventSubscriptionAccessor {
|
|
9
9
|
private client;
|
|
10
10
|
private id;
|
|
11
|
-
constructor(client:
|
|
11
|
+
constructor(client: MembraneApiClient, id: string);
|
|
12
12
|
get(): Promise<ExternalEventSubscription>;
|
|
13
13
|
setup(): Promise<void>;
|
|
14
14
|
subscribe(): Promise<void>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MembraneApiClient } from '../api-client';
|
|
2
2
|
import { OpenConfigurationOptions } from '../iframe';
|
|
3
3
|
import { ElementInstanceAccessor, ElementInstanceListAccessor } from './base-accessors';
|
|
4
4
|
import { InstanceKeyQuery } from '../integration-elements/common';
|
|
@@ -7,25 +7,25 @@ import { CreateFieldMappingInstanceRequest, FieldMappingInstance, FieldMappingIn
|
|
|
7
7
|
export interface OpenFieldMappingInstanceConfigurationOptions extends OpenConfigurationOptions {
|
|
8
8
|
}
|
|
9
9
|
export declare class FieldMappingInstancesAccessor extends ElementInstanceListAccessor<FieldMappingInstance, FindFieldMappingInstancesQuery> {
|
|
10
|
-
constructor(client:
|
|
10
|
+
constructor(client: MembraneApiClient);
|
|
11
11
|
}
|
|
12
12
|
export declare class FieldMappingInstanceAccessor extends ElementInstanceAccessor<FieldMappingInstance, FieldMappingInstanceSelector, CreateFieldMappingInstanceRequest, UpdateFieldMappingInstanceRequest> {
|
|
13
13
|
private client;
|
|
14
|
-
constructor(client:
|
|
14
|
+
constructor(client: MembraneApiClient, selector: string | FieldMappingInstanceSelector);
|
|
15
15
|
setup(): Promise<void>;
|
|
16
16
|
reset(): Promise<void>;
|
|
17
17
|
openConfiguration({ onClose }?: OpenFieldMappingInstanceConfigurationOptions): Promise<void>;
|
|
18
18
|
}
|
|
19
19
|
export declare class ConnectionLevelFieldMappingAccessor extends ConnectionLevelElementAccessor<FieldMappingInstance, UpdateFieldMappingInstanceRequest> {
|
|
20
|
-
client:
|
|
20
|
+
client: MembraneApiClient;
|
|
21
21
|
connectionSelector: string;
|
|
22
22
|
fieldMappingSelector: string;
|
|
23
23
|
query: InstanceKeyQuery;
|
|
24
|
-
constructor(client:
|
|
24
|
+
constructor(client: MembraneApiClient, connectionSelector: string, fieldMappingSelector: string, query: InstanceKeyQuery);
|
|
25
25
|
openConfiguration({ onClose }?: OpenFieldMappingInstanceConfigurationOptions): Promise<void>;
|
|
26
26
|
}
|
|
27
27
|
export declare class ConnectionLevelFieldMappingsAccessor extends ConnectionLevelElementsListAccessor<FieldMappingInstance, ListFieldMappingInstancesForConnectionQuery> {
|
|
28
|
-
client:
|
|
28
|
+
client: MembraneApiClient;
|
|
29
29
|
connectionSelector: string;
|
|
30
|
-
constructor(client:
|
|
30
|
+
constructor(client: MembraneApiClient, connectionSelector: string);
|
|
31
31
|
}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MembraneApiClient } from '../api-client';
|
|
2
2
|
import { ElementAccessor, ElementListAccessor } from './base-accessors';
|
|
3
3
|
import { IntegrationLevelElementAccessor, IntegrationLevelElementsListAccessor } from '../integration-elements/integration-level-element.accessor';
|
|
4
4
|
import { CreateFieldMappingRequest, FieldMapping, FindFieldMappingsQuery, FieldMappingSelector, ListFieldMappingsForIntegrationQuery, UpdateFieldMappingRequest } from '../workspace-elements/api/field-mappings-api';
|
|
5
5
|
export declare class FieldMappingsAccessor extends ElementListAccessor<FieldMapping, FindFieldMappingsQuery, CreateFieldMappingRequest> {
|
|
6
|
-
constructor(client:
|
|
6
|
+
constructor(client: MembraneApiClient);
|
|
7
7
|
}
|
|
8
8
|
export declare class FieldMappingAccessor extends ElementAccessor<FieldMapping, UpdateFieldMappingRequest, FieldMappingSelector> {
|
|
9
|
-
constructor(client:
|
|
9
|
+
constructor(client: MembraneApiClient, selector: string | FieldMappingSelector);
|
|
10
10
|
getAppSchema(): Promise<any>;
|
|
11
11
|
apply(integrationKeys: string[]): Promise<FieldMapping[]>;
|
|
12
12
|
setup(): Promise<any>;
|
|
13
13
|
reset(): Promise<any>;
|
|
14
14
|
}
|
|
15
15
|
export declare class IntegrationLevelFieldMappingAccessor extends IntegrationLevelElementAccessor<FieldMapping, UpdateFieldMappingRequest> {
|
|
16
|
-
client:
|
|
16
|
+
client: MembraneApiClient;
|
|
17
17
|
integrationSelector: string;
|
|
18
18
|
fieldMappingSelector: string;
|
|
19
|
-
constructor(client:
|
|
19
|
+
constructor(client: MembraneApiClient, integrationSelector: string, fieldMappingSelector: string);
|
|
20
20
|
}
|
|
21
21
|
export declare class IntegrationLevelFieldMappingsListAccessor extends IntegrationLevelElementsListAccessor<FieldMapping, ListFieldMappingsForIntegrationQuery, Omit<CreateFieldMappingRequest, 'integrationId'>> {
|
|
22
|
-
client:
|
|
22
|
+
client: MembraneApiClient;
|
|
23
23
|
integrationSelector: string;
|
|
24
|
-
constructor(client:
|
|
24
|
+
constructor(client: MembraneApiClient, integrationSelector: string);
|
|
25
25
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MembraneApiClient } from '../api-client';
|
|
2
2
|
import { OpenConfigurationOptions } from '../iframe';
|
|
3
3
|
import { ElementInstanceAccessor, ElementInstanceListAccessor } from './base-accessors';
|
|
4
4
|
import { InstanceKeyQuery } from '../integration-elements/common';
|
|
@@ -12,13 +12,13 @@ export interface OpenFlowInstanceConfigurationOptions extends OpenConfigurationO
|
|
|
12
12
|
export interface OpenFlowInstanceEditorOptions extends OpenConfigurationOptions {
|
|
13
13
|
}
|
|
14
14
|
export declare class FlowInstancesAccessor extends ElementInstanceListAccessor<FlowInstance, FindFlowInstancesQuery> {
|
|
15
|
-
constructor(client:
|
|
15
|
+
constructor(client: MembraneApiClient);
|
|
16
16
|
create(data: CreateFlowInstanceRequest): Promise<FlowInstance>;
|
|
17
17
|
}
|
|
18
18
|
export declare class FlowInstanceAccessor extends ElementInstanceAccessor<FlowInstance, FlowInstanceSelector, CreateFlowInstanceRequest, UpdateFlowInstanceRequest> {
|
|
19
|
-
protected client:
|
|
19
|
+
protected client: MembraneApiClient;
|
|
20
20
|
protected selector: FlowInstanceSelector | string;
|
|
21
|
-
constructor(client:
|
|
21
|
+
constructor(client: MembraneApiClient, selector: FlowInstanceSelector | string);
|
|
22
22
|
enable(): Promise<FlowInstance>;
|
|
23
23
|
disable(): Promise<FlowInstance>;
|
|
24
24
|
updateToLatestFlow(): Promise<FlowInstance>;
|
|
@@ -33,11 +33,11 @@ export declare class FlowInstanceAccessor extends ElementInstanceAccessor<FlowIn
|
|
|
33
33
|
run(options?: RunFlowOptions): Promise<FlowRun>;
|
|
34
34
|
}
|
|
35
35
|
export declare class ConnectionLevelFlowAccessor extends ConnectionLevelElementAccessor<FlowInstance, UpdateFlowInstanceRequest> {
|
|
36
|
-
client:
|
|
36
|
+
client: MembraneApiClient;
|
|
37
37
|
connectionSelector: string;
|
|
38
38
|
flowSelector: string;
|
|
39
39
|
query: InstanceKeyQuery;
|
|
40
|
-
constructor(client:
|
|
40
|
+
constructor(client: MembraneApiClient, connectionSelector: string, flowSelector: string, query: InstanceKeyQuery);
|
|
41
41
|
enable(): Promise<FlowInstance>;
|
|
42
42
|
disable(): Promise<FlowInstance>;
|
|
43
43
|
run(options: {
|
|
@@ -48,7 +48,7 @@ export declare class ConnectionLevelFlowAccessor extends ConnectionLevelElementA
|
|
|
48
48
|
openEditor(options?: OpenFlowInstanceEditorOptions): Promise<void>;
|
|
49
49
|
}
|
|
50
50
|
export declare class ConnectionLevelFlowsAccessor extends ConnectionLevelElementsListAccessor<FlowInstance, ListFlowInstancesForConnectionQuery> {
|
|
51
|
-
client:
|
|
51
|
+
client: MembraneApiClient;
|
|
52
52
|
connectionSelector: string;
|
|
53
|
-
constructor(client:
|
|
53
|
+
constructor(client: MembraneApiClient, connectionSelector: string);
|
|
54
54
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MembraneApiClient } from '../api-client';
|
|
2
2
|
import { OpenConfigurationOptions } from '../iframe';
|
|
3
3
|
import { CreateFlowRunRequest, FindFlowRunsQuery, FindFlowRunsResponse, FlowRun } from '../workspace-elements/api/flow-runs-api';
|
|
4
4
|
export interface OpenFlowRunEditorOptions extends OpenConfigurationOptions {
|
|
5
5
|
}
|
|
6
6
|
export declare class FlowRunsAccessor {
|
|
7
7
|
private readonly client;
|
|
8
|
-
constructor(client:
|
|
8
|
+
constructor(client: MembraneApiClient);
|
|
9
9
|
find(query: FindFlowRunsQuery): Promise<FindFlowRunsResponse>;
|
|
10
10
|
create(request: CreateFlowRunRequest): Promise<FlowRun>;
|
|
11
11
|
}
|
|
@@ -13,7 +13,7 @@ export declare class FlowRunAccessor {
|
|
|
13
13
|
private readonly client;
|
|
14
14
|
id: string;
|
|
15
15
|
private baseUri;
|
|
16
|
-
constructor(client:
|
|
16
|
+
constructor(client: MembraneApiClient, id: string);
|
|
17
17
|
get(): Promise<FlowRun>;
|
|
18
18
|
stop(): Promise<void>;
|
|
19
19
|
getOutput(): Promise<any>;
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MembraneApiClient } from '../api-client';
|
|
2
2
|
import { ElementAccessor, ElementListAccessor } from './base-accessors';
|
|
3
3
|
import { IntegrationLevelElementAccessor, IntegrationLevelElementsListAccessor } from '../integration-elements/integration-level-element.accessor';
|
|
4
4
|
import { CreateFlowRequest, FindFlowsQuery, Flow, FlowSelector, ListFlowsForIntegrationQuery, UpdateFlowRequest } from '../workspace-elements/api/flows-api';
|
|
5
5
|
export declare class FlowsAccessor extends ElementListAccessor<Flow, FindFlowsQuery, CreateFlowRequest> {
|
|
6
|
-
constructor(client:
|
|
6
|
+
constructor(client: MembraneApiClient);
|
|
7
7
|
}
|
|
8
8
|
export declare class FlowAccessor extends ElementAccessor<Flow, UpdateFlowRequest, FlowSelector> {
|
|
9
|
-
constructor(client:
|
|
9
|
+
constructor(client: MembraneApiClient, selector: FlowSelector | string);
|
|
10
10
|
apply(integrationKeys: string[]): Promise<Flow[]>;
|
|
11
11
|
reset(): Promise<Flow>;
|
|
12
12
|
}
|
|
13
13
|
export declare class IntegrationLevelFlowAccessor extends IntegrationLevelElementAccessor<Flow, UpdateFlowRequest> {
|
|
14
|
-
client:
|
|
14
|
+
client: MembraneApiClient;
|
|
15
15
|
integrationSelector: string;
|
|
16
16
|
flowSelector: string;
|
|
17
|
-
constructor(client:
|
|
17
|
+
constructor(client: MembraneApiClient, integrationSelector: string, flowSelector: string);
|
|
18
18
|
}
|
|
19
19
|
export declare class IntegrationLevelFlowsListAccessor extends IntegrationLevelElementsListAccessor<Flow, ListFlowsForIntegrationQuery, Omit<CreateFlowRequest, 'integrationId'>> {
|
|
20
|
-
client:
|
|
20
|
+
client: MembraneApiClient;
|
|
21
21
|
integrationSelector: string;
|
|
22
|
-
constructor(client:
|
|
22
|
+
constructor(client: MembraneApiClient, integrationSelector: string);
|
|
23
23
|
}
|
|
@@ -3,7 +3,7 @@ import { ElementAccessor, ElementListAccessor } from './base-accessors';
|
|
|
3
3
|
import { IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor } from './data-sources-accessors';
|
|
4
4
|
import { IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor } from './field-mappings-accessors';
|
|
5
5
|
import { IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor } from './flows-accessors';
|
|
6
|
-
import {
|
|
6
|
+
import { MembraneApiClient } from '../api-client';
|
|
7
7
|
import { OpenConfigurationOptions } from '../iframe';
|
|
8
8
|
import { Connection } from '../workspace-elements/api/connections-api';
|
|
9
9
|
import { CreateIntegrationRequest, UpdateIntegrationRequest, FindIntegrationsQuery, OpenNewConnectionOptions, Integration } from '../workspace-elements/api/integrations-api';
|
|
@@ -13,13 +13,13 @@ import { DataCollectionListItem, DataCollectionSpec } from '../workspace-element
|
|
|
13
13
|
interface OpenIntegrationUIIntegrationConfigurationOptions extends OpenConfigurationOptions {
|
|
14
14
|
}
|
|
15
15
|
export declare class IntegrationsAccessor extends ElementListAccessor<Integration, FindIntegrationsQuery, CreateIntegrationRequest> {
|
|
16
|
-
constructor(client:
|
|
16
|
+
constructor(client: MembraneApiClient);
|
|
17
17
|
}
|
|
18
18
|
export declare class IntegrationAccessor extends ElementAccessor<Integration, UpdateIntegrationRequest> {
|
|
19
19
|
private client;
|
|
20
20
|
private integrationSelector;
|
|
21
21
|
baseUri: string;
|
|
22
|
-
constructor(client:
|
|
22
|
+
constructor(client: MembraneApiClient, integrationSelector: string);
|
|
23
23
|
get actions(): IntegrationLevelActionsListAccessor;
|
|
24
24
|
action(actionSelector: string): IntegrationLevelActionAccessor;
|
|
25
25
|
get flows(): IntegrationLevelFlowsListAccessor;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MembraneApiClient } from '../api-client';
|
|
2
2
|
import { ElementAccessor, ElementListAccessor } from './base-accessors';
|
|
3
3
|
import { CreateScenarioRequest, FindScenariosQuery, Scenario, UpdateScenarioRequest } from '../workspace-elements/api/scenarios-api';
|
|
4
4
|
export declare class ScenariosAccessor extends ElementListAccessor<Scenario, FindScenariosQuery, CreateScenarioRequest> {
|
|
5
|
-
constructor(client:
|
|
5
|
+
constructor(client: MembraneApiClient);
|
|
6
6
|
}
|
|
7
7
|
export declare class ScenarioAccessor extends ElementAccessor<Scenario, UpdateScenarioRequest> {
|
|
8
|
-
constructor(client:
|
|
8
|
+
constructor(client: MembraneApiClient, selector: string);
|
|
9
9
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { MembraneApiClient } from '../api-client';
|
|
2
2
|
import { ElementAccessor, ElementListAccessor } from './base-accessors';
|
|
3
3
|
import { CreateScreenRequest, FindScreensQuery, Screen, UpdateScreenRequest, ScreenSelector } from '../workspace-elements/api/screens-api';
|
|
4
4
|
export declare class ScreensAccessor extends ElementListAccessor<Screen, FindScreensQuery, CreateScreenRequest> {
|
|
5
|
-
constructor(client:
|
|
5
|
+
constructor(client: MembraneApiClient);
|
|
6
6
|
}
|
|
7
7
|
export declare class ScreenAccessor extends ElementAccessor<Screen, UpdateScreenRequest, ScreenSelector> {
|
|
8
|
-
constructor(client:
|
|
8
|
+
constructor(client: MembraneApiClient, selector: ScreenSelector | string);
|
|
9
9
|
}
|