@membranehq/sdk 0.17.1 → 0.17.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.d.ts +2 -1
- package/dist/bundle.js +4 -2
- package/dist/bundle.js.map +1 -1
- package/dist/dts/client-tokens/types.d.ts +21 -2
- package/dist/dts/oauth/types.d.ts +2 -2
- package/dist/dts/workspace-elements/api/connected-products-api.d.ts +83 -0
- package/dist/dts/workspace-elements/api/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/connected-products/index.d.ts +58 -0
- package/dist/dts/workspace-elements/base/connection-requests/index.d.ts +2 -0
- package/dist/dts/workspace-elements/base/index.d.ts +1 -0
- package/dist/dts/workspace-elements/types.d.ts +2 -1
- package/dist/dts/workspaces/compare.d.ts +7 -0
- package/dist/index.browser.d.mts +177 -7
- package/dist/index.browser.d.ts +177 -7
- package/dist/index.browser.js +128 -21
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +99 -22
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +177 -7
- package/dist/index.node.d.ts +177 -7
- package/dist/index.node.js +110 -23
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +99 -23
- package/dist/index.node.mjs.map +1 -1
- package/package.json +2 -1
|
@@ -20,10 +20,28 @@ export declare const ClientToken: z.ZodObject<{
|
|
|
20
20
|
}>;
|
|
21
21
|
grantId: z.ZodOptional<z.ZodString>;
|
|
22
22
|
grantName: z.ZodOptional<z.ZodString>;
|
|
23
|
-
|
|
23
|
+
connectedProductId: z.ZodOptional<z.ZodString>;
|
|
24
24
|
createdAt: z.ZodString;
|
|
25
25
|
}, z.core.$strip>;
|
|
26
26
|
export type ClientToken = z.infer<typeof ClientToken>;
|
|
27
|
+
export declare const CreateClientTokenResponse: z.ZodObject<{
|
|
28
|
+
id: z.ZodString;
|
|
29
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
30
|
+
platformUserId: z.ZodOptional<z.ZodString>;
|
|
31
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
32
|
+
grantType: z.ZodEnum<{
|
|
33
|
+
api: "api";
|
|
34
|
+
"mcp-oauth": "mcp-oauth";
|
|
35
|
+
"cli-oauth": "cli-oauth";
|
|
36
|
+
"agent-session": "agent-session";
|
|
37
|
+
}>;
|
|
38
|
+
grantId: z.ZodOptional<z.ZodString>;
|
|
39
|
+
grantName: z.ZodOptional<z.ZodString>;
|
|
40
|
+
connectedProductId: z.ZodOptional<z.ZodString>;
|
|
41
|
+
createdAt: z.ZodString;
|
|
42
|
+
accessToken: z.ZodString;
|
|
43
|
+
}, z.core.$strip>;
|
|
44
|
+
export type CreateClientTokenResponse = z.infer<typeof CreateClientTokenResponse>;
|
|
27
45
|
export declare const CreateClientTokenRequest: z.ZodObject<{
|
|
28
46
|
grantType: z.ZodEnum<{
|
|
29
47
|
api: "api";
|
|
@@ -34,6 +52,7 @@ export declare const CreateClientTokenRequest: z.ZodObject<{
|
|
|
34
52
|
grantId: z.ZodString;
|
|
35
53
|
grantName: z.ZodString;
|
|
36
54
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
55
|
+
productKey: z.ZodOptional<z.ZodString>;
|
|
37
56
|
}, z.core.$strip>;
|
|
38
57
|
export type CreateClientTokenRequest = z.infer<typeof CreateClientTokenRequest>;
|
|
39
58
|
export declare const ClientTokenListResponse: z.ZodObject<{
|
|
@@ -50,7 +69,7 @@ export declare const ClientTokenListResponse: z.ZodObject<{
|
|
|
50
69
|
}>;
|
|
51
70
|
grantId: z.ZodOptional<z.ZodString>;
|
|
52
71
|
grantName: z.ZodOptional<z.ZodString>;
|
|
53
|
-
|
|
72
|
+
connectedProductId: z.ZodOptional<z.ZodString>;
|
|
54
73
|
createdAt: z.ZodString;
|
|
55
74
|
}, z.core.$strip>>;
|
|
56
75
|
}, z.core.$strip>;
|
|
@@ -9,7 +9,7 @@ export declare const OAuthTokenResponse: z.ZodObject<{
|
|
|
9
9
|
token_type: z.ZodString;
|
|
10
10
|
expires_in: z.ZodNumber;
|
|
11
11
|
refresh_token: z.ZodOptional<z.ZodString>;
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
default_workspace_key: z.ZodOptional<z.ZodString>;
|
|
13
|
+
default_tenant_key: z.ZodOptional<z.ZodString>;
|
|
14
14
|
}, z.core.$strip>;
|
|
15
15
|
export type OAuthTokenResponse = z.infer<typeof OAuthTokenResponse>;
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const CreateConnectedProductRequest: z.ZodObject<{
|
|
3
|
+
name: z.ZodString;
|
|
4
|
+
type: z.ZodEnum<{
|
|
5
|
+
app: "app";
|
|
6
|
+
"ai-agent": "ai-agent";
|
|
7
|
+
}>;
|
|
8
|
+
audience: z.ZodOptional<z.ZodEnum<{
|
|
9
|
+
customers: "customers";
|
|
10
|
+
personal: "personal";
|
|
11
|
+
}>>;
|
|
12
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
13
|
+
agentType: z.ZodOptional<z.ZodEnum<{
|
|
14
|
+
custom: "custom";
|
|
15
|
+
openclaw: "openclaw";
|
|
16
|
+
claude: "claude";
|
|
17
|
+
chatgpt: "chatgpt";
|
|
18
|
+
}>>;
|
|
19
|
+
}, z.core.$strip>>;
|
|
20
|
+
}, z.core.$strip>;
|
|
21
|
+
export type CreateConnectedProductRequest = z.infer<typeof CreateConnectedProductRequest>;
|
|
22
|
+
export declare const UpdateConnectedProductRequest: z.ZodObject<{
|
|
23
|
+
name: z.ZodOptional<z.ZodString>;
|
|
24
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
25
|
+
app: "app";
|
|
26
|
+
"ai-agent": "ai-agent";
|
|
27
|
+
}>>;
|
|
28
|
+
audience: z.ZodOptional<z.ZodEnum<{
|
|
29
|
+
customers: "customers";
|
|
30
|
+
personal: "personal";
|
|
31
|
+
}>>;
|
|
32
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
33
|
+
agentType: z.ZodOptional<z.ZodEnum<{
|
|
34
|
+
custom: "custom";
|
|
35
|
+
openclaw: "openclaw";
|
|
36
|
+
claude: "claude";
|
|
37
|
+
chatgpt: "chatgpt";
|
|
38
|
+
}>>;
|
|
39
|
+
}, z.core.$strip>>;
|
|
40
|
+
}, z.core.$strip>;
|
|
41
|
+
export type UpdateConnectedProductRequest = z.infer<typeof UpdateConnectedProductRequest>;
|
|
42
|
+
export declare const FindConnectedProductsQuery: z.ZodObject<{
|
|
43
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
44
|
+
app: "app";
|
|
45
|
+
"ai-agent": "ai-agent";
|
|
46
|
+
}>>;
|
|
47
|
+
audience: z.ZodOptional<z.ZodEnum<{
|
|
48
|
+
customers: "customers";
|
|
49
|
+
personal: "personal";
|
|
50
|
+
}>>;
|
|
51
|
+
key: z.ZodOptional<z.ZodString>;
|
|
52
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
53
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
54
|
+
search: z.ZodOptional<z.ZodString>;
|
|
55
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
56
|
+
}, z.core.$strip>;
|
|
57
|
+
export type FindConnectedProductsQuery = z.infer<typeof FindConnectedProductsQuery>;
|
|
58
|
+
export declare const ConnectedProductApiResponse: z.ZodObject<{
|
|
59
|
+
id: z.ZodString;
|
|
60
|
+
name: z.ZodString;
|
|
61
|
+
key: z.ZodString;
|
|
62
|
+
type: z.ZodEnum<{
|
|
63
|
+
app: "app";
|
|
64
|
+
"ai-agent": "ai-agent";
|
|
65
|
+
}>;
|
|
66
|
+
audience: z.ZodOptional<z.ZodEnum<{
|
|
67
|
+
customers: "customers";
|
|
68
|
+
personal: "personal";
|
|
69
|
+
}>>;
|
|
70
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
71
|
+
agentType: z.ZodOptional<z.ZodEnum<{
|
|
72
|
+
custom: "custom";
|
|
73
|
+
openclaw: "openclaw";
|
|
74
|
+
claude: "claude";
|
|
75
|
+
chatgpt: "chatgpt";
|
|
76
|
+
}>>;
|
|
77
|
+
}, z.core.$strip>>;
|
|
78
|
+
isConnected: z.ZodOptional<z.ZodBoolean>;
|
|
79
|
+
lastApiRequestDate: z.ZodOptional<z.ZodString>;
|
|
80
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
81
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
82
|
+
}, z.core.$strip>;
|
|
83
|
+
export type ConnectedProductApiResponse = z.infer<typeof ConnectedProductApiResponse>;
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const ConnectedProductType: z.ZodEnum<{
|
|
3
|
+
app: "app";
|
|
4
|
+
"ai-agent": "ai-agent";
|
|
5
|
+
}>;
|
|
6
|
+
export type ConnectedProductType = z.infer<typeof ConnectedProductType>;
|
|
7
|
+
export declare const ConnectedProductAudience: z.ZodEnum<{
|
|
8
|
+
customers: "customers";
|
|
9
|
+
personal: "personal";
|
|
10
|
+
}>;
|
|
11
|
+
export type ConnectedProductAudience = z.infer<typeof ConnectedProductAudience>;
|
|
12
|
+
export declare const AiAgentAudience: z.ZodEnum<{
|
|
13
|
+
customers: "customers";
|
|
14
|
+
personal: "personal";
|
|
15
|
+
}>;
|
|
16
|
+
export type AiAgentAudience = ConnectedProductAudience;
|
|
17
|
+
export declare const AiAgentType: z.ZodEnum<{
|
|
18
|
+
custom: "custom";
|
|
19
|
+
openclaw: "openclaw";
|
|
20
|
+
claude: "claude";
|
|
21
|
+
chatgpt: "chatgpt";
|
|
22
|
+
}>;
|
|
23
|
+
export type AiAgentType = z.infer<typeof AiAgentType>;
|
|
24
|
+
export declare const AiAgentParameters: z.ZodObject<{
|
|
25
|
+
agentType: z.ZodOptional<z.ZodEnum<{
|
|
26
|
+
custom: "custom";
|
|
27
|
+
openclaw: "openclaw";
|
|
28
|
+
claude: "claude";
|
|
29
|
+
chatgpt: "chatgpt";
|
|
30
|
+
}>>;
|
|
31
|
+
}, z.core.$strip>;
|
|
32
|
+
export type AiAgentParameters = z.infer<typeof AiAgentParameters>;
|
|
33
|
+
export declare const BaseConnectedProduct: z.ZodObject<{
|
|
34
|
+
id: z.ZodString;
|
|
35
|
+
name: z.ZodString;
|
|
36
|
+
key: z.ZodString;
|
|
37
|
+
type: z.ZodEnum<{
|
|
38
|
+
app: "app";
|
|
39
|
+
"ai-agent": "ai-agent";
|
|
40
|
+
}>;
|
|
41
|
+
audience: z.ZodOptional<z.ZodEnum<{
|
|
42
|
+
customers: "customers";
|
|
43
|
+
personal: "personal";
|
|
44
|
+
}>>;
|
|
45
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
46
|
+
agentType: z.ZodOptional<z.ZodEnum<{
|
|
47
|
+
custom: "custom";
|
|
48
|
+
openclaw: "openclaw";
|
|
49
|
+
claude: "claude";
|
|
50
|
+
chatgpt: "chatgpt";
|
|
51
|
+
}>>;
|
|
52
|
+
}, z.core.$strip>>;
|
|
53
|
+
isConnected: z.ZodOptional<z.ZodBoolean>;
|
|
54
|
+
lastApiRequestDate: z.ZodOptional<z.ZodString>;
|
|
55
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
56
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
57
|
+
}, z.core.$strip>;
|
|
58
|
+
export type BaseConnectedProduct = z.infer<typeof BaseConnectedProduct>;
|
|
@@ -12,6 +12,7 @@ export declare const CreateConnectionRequestPayload: z.ZodObject<{
|
|
|
12
12
|
name: z.ZodOptional<z.ZodString>;
|
|
13
13
|
allowMultipleConnections: z.ZodOptional<z.ZodBoolean>;
|
|
14
14
|
connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
15
|
+
redirectUri: z.ZodOptional<z.ZodString>;
|
|
15
16
|
}, z.core.$strip>;
|
|
16
17
|
export type CreateConnectionRequestPayload = z.infer<typeof CreateConnectionRequestPayload>;
|
|
17
18
|
export declare const ConnectionRequest: z.ZodObject<{
|
|
@@ -25,6 +26,7 @@ export declare const ConnectionRequest: z.ZodObject<{
|
|
|
25
26
|
name: z.ZodOptional<z.ZodString>;
|
|
26
27
|
allowMultipleConnections: z.ZodOptional<z.ZodBoolean>;
|
|
27
28
|
connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
29
|
+
redirectUri: z.ZodOptional<z.ZodString>;
|
|
28
30
|
status: z.ZodEnum<{
|
|
29
31
|
success: "success";
|
|
30
32
|
error: "error";
|
|
@@ -36,7 +36,8 @@ export declare enum WorkspaceElementType {
|
|
|
36
36
|
ExternalEventLogRecord = "external-event-log-record",
|
|
37
37
|
ExternalEventPull = "external-event-pull",
|
|
38
38
|
Screen = "screen",
|
|
39
|
-
ActionRunLogRecord = "action-run-log-record"
|
|
39
|
+
ActionRunLogRecord = "action-run-log-record",
|
|
40
|
+
ConnectedProduct = "connected-product"
|
|
40
41
|
}
|
|
41
42
|
export declare enum WorkspaceEventType {
|
|
42
43
|
ConnectionCreated = "connection.created",
|
|
@@ -14,12 +14,19 @@ export interface WorkspaceExportComparison {
|
|
|
14
14
|
[WorkspaceElementChangeType.UPDATE]: Set<string>;
|
|
15
15
|
[WorkspaceElementChangeType.DELETE]: Set<string>;
|
|
16
16
|
}
|
|
17
|
+
export interface WorkspaceElementChangeInfo {
|
|
18
|
+
elementType: WorkspaceElementType;
|
|
19
|
+
path: string;
|
|
20
|
+
}
|
|
17
21
|
export interface WorkspaceExportComparisonResult {
|
|
18
22
|
comparison: WorkspaceExportComparison;
|
|
23
|
+
changes: Record<string, WorkspaceElementChangeInfo>;
|
|
19
24
|
sourceUuidByTargetUuid: Map<string, string>;
|
|
25
|
+
diff?: string;
|
|
20
26
|
}
|
|
21
27
|
export interface WorkspaceExportComparisonOptions {
|
|
22
28
|
includeDeletions?: boolean;
|
|
29
|
+
includeDiff?: boolean;
|
|
23
30
|
}
|
|
24
31
|
export declare function compareWorkspaceExports(baseExport: Partial<WorkspaceExport>, targetExport: Partial<WorkspaceExport>, options?: WorkspaceExportComparisonOptions): WorkspaceExportComparisonResult;
|
|
25
32
|
export declare function getElementSelector(type: WorkspaceElementType, key: string, integrationIdentifier?: string): string;
|
package/dist/index.browser.d.mts
CHANGED
|
@@ -148,7 +148,8 @@ declare enum WorkspaceElementType {
|
|
|
148
148
|
ExternalEventLogRecord = "external-event-log-record",
|
|
149
149
|
ExternalEventPull = "external-event-pull",
|
|
150
150
|
Screen = "screen",
|
|
151
|
-
ActionRunLogRecord = "action-run-log-record"
|
|
151
|
+
ActionRunLogRecord = "action-run-log-record",
|
|
152
|
+
ConnectedProduct = "connected-product"
|
|
152
153
|
}
|
|
153
154
|
declare enum WorkspaceEventType {
|
|
154
155
|
ConnectionCreated = "connection.created",
|
|
@@ -754,6 +755,7 @@ declare const CreateConnectionRequestPayload: z.ZodObject<{
|
|
|
754
755
|
name: z.ZodOptional<z.ZodString>;
|
|
755
756
|
allowMultipleConnections: z.ZodOptional<z.ZodBoolean>;
|
|
756
757
|
connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
758
|
+
redirectUri: z.ZodOptional<z.ZodString>;
|
|
757
759
|
}, z.core.$strip>;
|
|
758
760
|
type CreateConnectionRequestPayload = z.infer<typeof CreateConnectionRequestPayload>;
|
|
759
761
|
declare const ConnectionRequest: z.ZodObject<{
|
|
@@ -767,6 +769,7 @@ declare const ConnectionRequest: z.ZodObject<{
|
|
|
767
769
|
name: z.ZodOptional<z.ZodString>;
|
|
768
770
|
allowMultipleConnections: z.ZodOptional<z.ZodBoolean>;
|
|
769
771
|
connectorParameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
772
|
+
redirectUri: z.ZodOptional<z.ZodString>;
|
|
770
773
|
status: z.ZodEnum<{
|
|
771
774
|
success: "success";
|
|
772
775
|
error: "error";
|
|
@@ -11941,6 +11944,64 @@ declare const BaseActionRunLogRecord: z.ZodObject<{
|
|
|
11941
11944
|
}, z.core.$strip>;
|
|
11942
11945
|
type BaseActionRunLogRecord = z.infer<typeof BaseActionRunLogRecord>;
|
|
11943
11946
|
|
|
11947
|
+
declare const ConnectedProductType: z.ZodEnum<{
|
|
11948
|
+
app: "app";
|
|
11949
|
+
"ai-agent": "ai-agent";
|
|
11950
|
+
}>;
|
|
11951
|
+
type ConnectedProductType = z.infer<typeof ConnectedProductType>;
|
|
11952
|
+
declare const ConnectedProductAudience: z.ZodEnum<{
|
|
11953
|
+
customers: "customers";
|
|
11954
|
+
personal: "personal";
|
|
11955
|
+
}>;
|
|
11956
|
+
type ConnectedProductAudience = z.infer<typeof ConnectedProductAudience>;
|
|
11957
|
+
declare const AiAgentAudience: z.ZodEnum<{
|
|
11958
|
+
customers: "customers";
|
|
11959
|
+
personal: "personal";
|
|
11960
|
+
}>;
|
|
11961
|
+
type AiAgentAudience = ConnectedProductAudience;
|
|
11962
|
+
declare const AiAgentType: z.ZodEnum<{
|
|
11963
|
+
custom: "custom";
|
|
11964
|
+
openclaw: "openclaw";
|
|
11965
|
+
claude: "claude";
|
|
11966
|
+
chatgpt: "chatgpt";
|
|
11967
|
+
}>;
|
|
11968
|
+
type AiAgentType = z.infer<typeof AiAgentType>;
|
|
11969
|
+
declare const AiAgentParameters: z.ZodObject<{
|
|
11970
|
+
agentType: z.ZodOptional<z.ZodEnum<{
|
|
11971
|
+
custom: "custom";
|
|
11972
|
+
openclaw: "openclaw";
|
|
11973
|
+
claude: "claude";
|
|
11974
|
+
chatgpt: "chatgpt";
|
|
11975
|
+
}>>;
|
|
11976
|
+
}, z.core.$strip>;
|
|
11977
|
+
type AiAgentParameters = z.infer<typeof AiAgentParameters>;
|
|
11978
|
+
declare const BaseConnectedProduct: z.ZodObject<{
|
|
11979
|
+
id: z.ZodString;
|
|
11980
|
+
name: z.ZodString;
|
|
11981
|
+
key: z.ZodString;
|
|
11982
|
+
type: z.ZodEnum<{
|
|
11983
|
+
app: "app";
|
|
11984
|
+
"ai-agent": "ai-agent";
|
|
11985
|
+
}>;
|
|
11986
|
+
audience: z.ZodOptional<z.ZodEnum<{
|
|
11987
|
+
customers: "customers";
|
|
11988
|
+
personal: "personal";
|
|
11989
|
+
}>>;
|
|
11990
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
11991
|
+
agentType: z.ZodOptional<z.ZodEnum<{
|
|
11992
|
+
custom: "custom";
|
|
11993
|
+
openclaw: "openclaw";
|
|
11994
|
+
claude: "claude";
|
|
11995
|
+
chatgpt: "chatgpt";
|
|
11996
|
+
}>>;
|
|
11997
|
+
}, z.core.$strip>>;
|
|
11998
|
+
isConnected: z.ZodOptional<z.ZodBoolean>;
|
|
11999
|
+
lastApiRequestDate: z.ZodOptional<z.ZodString>;
|
|
12000
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
12001
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
12002
|
+
}, z.core.$strip>;
|
|
12003
|
+
type BaseConnectedProduct = z.infer<typeof BaseConnectedProduct>;
|
|
12004
|
+
|
|
11944
12005
|
declare const PaginationQuery: z.ZodObject<{
|
|
11945
12006
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
11946
12007
|
cursor: z.ZodOptional<z.ZodString>;
|
|
@@ -19644,6 +19705,89 @@ declare const IncomingWebhookApiResponse: z.ZodObject<{
|
|
|
19644
19705
|
}, z.core.$strip>;
|
|
19645
19706
|
type IncomingWebhookApiResponse = z.infer<typeof IncomingWebhookApiResponse>;
|
|
19646
19707
|
|
|
19708
|
+
declare const CreateConnectedProductRequest: z.ZodObject<{
|
|
19709
|
+
name: z.ZodString;
|
|
19710
|
+
type: z.ZodEnum<{
|
|
19711
|
+
app: "app";
|
|
19712
|
+
"ai-agent": "ai-agent";
|
|
19713
|
+
}>;
|
|
19714
|
+
audience: z.ZodOptional<z.ZodEnum<{
|
|
19715
|
+
customers: "customers";
|
|
19716
|
+
personal: "personal";
|
|
19717
|
+
}>>;
|
|
19718
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
19719
|
+
agentType: z.ZodOptional<z.ZodEnum<{
|
|
19720
|
+
custom: "custom";
|
|
19721
|
+
openclaw: "openclaw";
|
|
19722
|
+
claude: "claude";
|
|
19723
|
+
chatgpt: "chatgpt";
|
|
19724
|
+
}>>;
|
|
19725
|
+
}, z.core.$strip>>;
|
|
19726
|
+
}, z.core.$strip>;
|
|
19727
|
+
type CreateConnectedProductRequest = z.infer<typeof CreateConnectedProductRequest>;
|
|
19728
|
+
declare const UpdateConnectedProductRequest: z.ZodObject<{
|
|
19729
|
+
name: z.ZodOptional<z.ZodString>;
|
|
19730
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
19731
|
+
app: "app";
|
|
19732
|
+
"ai-agent": "ai-agent";
|
|
19733
|
+
}>>;
|
|
19734
|
+
audience: z.ZodOptional<z.ZodEnum<{
|
|
19735
|
+
customers: "customers";
|
|
19736
|
+
personal: "personal";
|
|
19737
|
+
}>>;
|
|
19738
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
19739
|
+
agentType: z.ZodOptional<z.ZodEnum<{
|
|
19740
|
+
custom: "custom";
|
|
19741
|
+
openclaw: "openclaw";
|
|
19742
|
+
claude: "claude";
|
|
19743
|
+
chatgpt: "chatgpt";
|
|
19744
|
+
}>>;
|
|
19745
|
+
}, z.core.$strip>>;
|
|
19746
|
+
}, z.core.$strip>;
|
|
19747
|
+
type UpdateConnectedProductRequest = z.infer<typeof UpdateConnectedProductRequest>;
|
|
19748
|
+
declare const FindConnectedProductsQuery: z.ZodObject<{
|
|
19749
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
19750
|
+
app: "app";
|
|
19751
|
+
"ai-agent": "ai-agent";
|
|
19752
|
+
}>>;
|
|
19753
|
+
audience: z.ZodOptional<z.ZodEnum<{
|
|
19754
|
+
customers: "customers";
|
|
19755
|
+
personal: "personal";
|
|
19756
|
+
}>>;
|
|
19757
|
+
key: z.ZodOptional<z.ZodString>;
|
|
19758
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
19759
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
19760
|
+
search: z.ZodOptional<z.ZodString>;
|
|
19761
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
19762
|
+
}, z.core.$strip>;
|
|
19763
|
+
type FindConnectedProductsQuery = z.infer<typeof FindConnectedProductsQuery>;
|
|
19764
|
+
declare const ConnectedProductApiResponse: z.ZodObject<{
|
|
19765
|
+
id: z.ZodString;
|
|
19766
|
+
name: z.ZodString;
|
|
19767
|
+
key: z.ZodString;
|
|
19768
|
+
type: z.ZodEnum<{
|
|
19769
|
+
app: "app";
|
|
19770
|
+
"ai-agent": "ai-agent";
|
|
19771
|
+
}>;
|
|
19772
|
+
audience: z.ZodOptional<z.ZodEnum<{
|
|
19773
|
+
customers: "customers";
|
|
19774
|
+
personal: "personal";
|
|
19775
|
+
}>>;
|
|
19776
|
+
parameters: z.ZodOptional<z.ZodObject<{
|
|
19777
|
+
agentType: z.ZodOptional<z.ZodEnum<{
|
|
19778
|
+
custom: "custom";
|
|
19779
|
+
openclaw: "openclaw";
|
|
19780
|
+
claude: "claude";
|
|
19781
|
+
chatgpt: "chatgpt";
|
|
19782
|
+
}>>;
|
|
19783
|
+
}, z.core.$strip>>;
|
|
19784
|
+
isConnected: z.ZodOptional<z.ZodBoolean>;
|
|
19785
|
+
lastApiRequestDate: z.ZodOptional<z.ZodString>;
|
|
19786
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
19787
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
19788
|
+
}, z.core.$strip>;
|
|
19789
|
+
type ConnectedProductApiResponse = z.infer<typeof ConnectedProductApiResponse>;
|
|
19790
|
+
|
|
19647
19791
|
declare class DependencyError extends MembraneError {
|
|
19648
19792
|
constructor(arg: ErrorConstructorArg, workspaceElementReference?: WorkspaceElementReference);
|
|
19649
19793
|
}
|
|
@@ -20984,12 +21128,19 @@ interface WorkspaceExportComparison {
|
|
|
20984
21128
|
[WorkspaceElementChangeType.UPDATE]: Set<string>;
|
|
20985
21129
|
[WorkspaceElementChangeType.DELETE]: Set<string>;
|
|
20986
21130
|
}
|
|
21131
|
+
interface WorkspaceElementChangeInfo {
|
|
21132
|
+
elementType: WorkspaceElementType;
|
|
21133
|
+
path: string;
|
|
21134
|
+
}
|
|
20987
21135
|
interface WorkspaceExportComparisonResult {
|
|
20988
21136
|
comparison: WorkspaceExportComparison;
|
|
21137
|
+
changes: Record<string, WorkspaceElementChangeInfo>;
|
|
20989
21138
|
sourceUuidByTargetUuid: Map<string, string>;
|
|
21139
|
+
diff?: string;
|
|
20990
21140
|
}
|
|
20991
21141
|
interface WorkspaceExportComparisonOptions {
|
|
20992
21142
|
includeDeletions?: boolean;
|
|
21143
|
+
includeDiff?: boolean;
|
|
20993
21144
|
}
|
|
20994
21145
|
declare function compareWorkspaceExports(baseExport: Partial<WorkspaceExport>, targetExport: Partial<WorkspaceExport>, options?: WorkspaceExportComparisonOptions): WorkspaceExportComparisonResult;
|
|
20995
21146
|
declare function getElementSelector(type: WorkspaceElementType, key: string, integrationIdentifier?: string): string;
|
|
@@ -23238,10 +23389,28 @@ declare const ClientToken: z.ZodObject<{
|
|
|
23238
23389
|
}>;
|
|
23239
23390
|
grantId: z.ZodOptional<z.ZodString>;
|
|
23240
23391
|
grantName: z.ZodOptional<z.ZodString>;
|
|
23241
|
-
|
|
23392
|
+
connectedProductId: z.ZodOptional<z.ZodString>;
|
|
23242
23393
|
createdAt: z.ZodString;
|
|
23243
23394
|
}, z.core.$strip>;
|
|
23244
23395
|
type ClientToken = z.infer<typeof ClientToken>;
|
|
23396
|
+
declare const CreateClientTokenResponse: z.ZodObject<{
|
|
23397
|
+
id: z.ZodString;
|
|
23398
|
+
workspaceId: z.ZodOptional<z.ZodString>;
|
|
23399
|
+
platformUserId: z.ZodOptional<z.ZodString>;
|
|
23400
|
+
tenantId: z.ZodOptional<z.ZodString>;
|
|
23401
|
+
grantType: z.ZodEnum<{
|
|
23402
|
+
api: "api";
|
|
23403
|
+
"mcp-oauth": "mcp-oauth";
|
|
23404
|
+
"cli-oauth": "cli-oauth";
|
|
23405
|
+
"agent-session": "agent-session";
|
|
23406
|
+
}>;
|
|
23407
|
+
grantId: z.ZodOptional<z.ZodString>;
|
|
23408
|
+
grantName: z.ZodOptional<z.ZodString>;
|
|
23409
|
+
connectedProductId: z.ZodOptional<z.ZodString>;
|
|
23410
|
+
createdAt: z.ZodString;
|
|
23411
|
+
accessToken: z.ZodString;
|
|
23412
|
+
}, z.core.$strip>;
|
|
23413
|
+
type CreateClientTokenResponse = z.infer<typeof CreateClientTokenResponse>;
|
|
23245
23414
|
declare const CreateClientTokenRequest: z.ZodObject<{
|
|
23246
23415
|
grantType: z.ZodEnum<{
|
|
23247
23416
|
api: "api";
|
|
@@ -23252,6 +23421,7 @@ declare const CreateClientTokenRequest: z.ZodObject<{
|
|
|
23252
23421
|
grantId: z.ZodString;
|
|
23253
23422
|
grantName: z.ZodString;
|
|
23254
23423
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
23424
|
+
productKey: z.ZodOptional<z.ZodString>;
|
|
23255
23425
|
}, z.core.$strip>;
|
|
23256
23426
|
type CreateClientTokenRequest = z.infer<typeof CreateClientTokenRequest>;
|
|
23257
23427
|
declare const ClientTokenListResponse: z.ZodObject<{
|
|
@@ -23268,7 +23438,7 @@ declare const ClientTokenListResponse: z.ZodObject<{
|
|
|
23268
23438
|
}>;
|
|
23269
23439
|
grantId: z.ZodOptional<z.ZodString>;
|
|
23270
23440
|
grantName: z.ZodOptional<z.ZodString>;
|
|
23271
|
-
|
|
23441
|
+
connectedProductId: z.ZodOptional<z.ZodString>;
|
|
23272
23442
|
createdAt: z.ZodString;
|
|
23273
23443
|
}, z.core.$strip>>;
|
|
23274
23444
|
}, z.core.$strip>;
|
|
@@ -23284,8 +23454,8 @@ declare const OAuthTokenResponse: z.ZodObject<{
|
|
|
23284
23454
|
token_type: z.ZodString;
|
|
23285
23455
|
expires_in: z.ZodNumber;
|
|
23286
23456
|
refresh_token: z.ZodOptional<z.ZodString>;
|
|
23287
|
-
|
|
23288
|
-
|
|
23457
|
+
default_workspace_key: z.ZodOptional<z.ZodString>;
|
|
23458
|
+
default_tenant_key: z.ZodOptional<z.ZodString>;
|
|
23289
23459
|
}, z.core.$strip>;
|
|
23290
23460
|
type OAuthTokenResponse = z.infer<typeof OAuthTokenResponse>;
|
|
23291
23461
|
|
|
@@ -23351,5 +23521,5 @@ declare class MembraneClient extends MembraneApiClient {
|
|
|
23351
23521
|
connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
|
|
23352
23522
|
}
|
|
23353
23523
|
|
|
23354
|
-
export { ACTIONS, ALERT_DELIVERY_METHODS, ALERT_TYPE_CATEGORIES, AccessDeniedError, AccountResponse, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionRunsStatsQuery, ActionType, ActionsAccessor, ActivityLogRecord, ActivityStatsQuery, AgentName, AgentSession, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, Alert, AlertCategory, AlertDeliverySettingsSchema, AlertSchema, AlertSeverity, AlertStatus, AlertType, AlertTypeDeliverySettingsSchema, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, AsyncRequestStatus, AsyncRequestTriggerResponse, AuthContextPermissionsSchema, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnection, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BaseOrgUser, BasePackage, BaseScreen, BaseWorkspaceElement, CLIENT_TOKEN_GRANT_TYPES, CONNECTION_REQUEST_ID_PARAM, CONNECTION_REQUEST_SCREEN_PATH, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CONSOLE_ACCOUNT_API_TOKEN_PATH, CheckpointApiResponse, CheckpointDiffOperationSchema, CheckpointDiffResponseSchema, ClientToken, ClientTokenGrantType, ClientTokenListResponse, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectPayload, ConnectUIOptions, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionEditableProperties, ConnectionError, ConnectionErrorKey, ConnectionExportProperties, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionOperationRunInput, ConnectionOperationRunResponse, ConnectionProxy, ConnectionProxyRequest, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionTestResponse, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthSuccessRecord, ConnectorAuthWithFunctions, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorExportProperties, ConnectorFileUpdateType, ConnectorFunctionSpecs, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorOption, ConnectorOptions, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateAlert, CreateClientTokenRequest, CreateConnectionRequest, CreateConnectionRequestPayload, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateOrgInvitationRequest, CreateOrgRequest, CreateOrgUserRequest, CreatePackageRequest, CreateScreenRequest, CreateSelfHostingTokenRequest, CreateSelfHostingTokenResponse, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_ALERT_DELIVERY_SETTINGS, DEFAULT_ALERT_TYPE_DELIVERY_SETTINGS, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, 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, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTableLayer, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineCreditsProjectionResponse, EngineWorkspaceSettingsSchema, ErrorData, ErrorDataSchema, ErrorType, ExternalApiLogApiResponse, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionRunLogsQuery, FindActionRunLogsResponse, FindActionsQuery, FindAlertsQuery, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTableInstanceLinksQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindExternalEventPullsQuery, FindFieldMappingInstancesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindOrgWorkspacesQuery, FindOrgsQuery, FindPackagesQuery, FindScreensQuery, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeState, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowRunsStatsQuery, FlowsAccessor, Formula, FullOrgUser, FullPlatformUser, FunctionDefinition, FunctionType, GenerateOptionsRequest, GeneratedConnectorOption, GenericFunctionDefinition, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhookApiResponse, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationEditableProperties, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLayerStatsQuery, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationOptionConfig, IntegrationOptions, IntegrationSpecificElementSelector, IntegrationsAccessor, InternalError, InvalidLocatorError, JavascriptFunction, LimitUnits, ListActionInstancesForConnectionQuery, ListAppEventLogRecordsQuery, ListDataSourceInstancesForConnectionQuery, ListExternalApiLogsQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListIncomingWebhooksQuery, ListPublicConnectorsQuery, ListPublicPackagesQuery, LogRecordType, MEMBRANE_CLI_CLIENT_ID, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneElementLayer, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OAUTH_SCOPES, OAUTH_SCOPE_PLATFORM_USER, OAUTH_SCOPE_TENANT, OAuthTokenResponse, OpenRouterNotConfiguredError, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, Org, OrgInvitation, OrgLimits, OrgLimitsType, OrgPlan, OrgUserRole, OrgUserStatus, OrgWorkspace, OrgWorkspaceUser, PACKAGE_VERSION_DEVELOPMENT, PACKAGE_VERSION_LATEST, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackageVersionData, PackageVersionListItem, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PatchAgentSessionSchema, PlatformUser, RATE_LIMITS, REFERENCE_ELEMENT_TYPE_SELF, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RunActionRequest, RunFieldMappingRequest, RunFieldMappingResponse, RunFlowApiRequest, SYSTEM_FIELDS, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenSelector, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, SelfHostingToken, SessionCredentials, SessionParameters, StatsFilterQuery, TenantLayerElement, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingInstanceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateOrgInvitationRequest, UpdateOrgRequest, UpdateOrgUserRequest, UpdatePackageRequest, UpdateScreenRequest, UpdateSelfHostingTokenRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, ValidateSelfHostingTokenRequest, ValidateSelfHostingTokenResponse, WORKSPACE_ELEMENTS_STATS_COLLECTIONS, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, Workspace, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceElementsStatsSchema, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspacePublicKey, WorkspaceSettingsSchema, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WritablePackageVersionData, WriteableConnectorFields, WriteableConnectorOption, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, addUndefinedWriteableProperties, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createPaginationResponseSchema, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAlertCategoryDisplayName, getAlertDeliveryMethodLabel, getAlertTypeDisplayName, getAlertTypesByCategory, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getConnectionRequestUrl, getConnectorSpecPath, getConnectorVersionPath, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getEditablePathsForElementType, getEditablePathsFromSchema, getEffectiveConnectorOption, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldMeta, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaDescription, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
23355
|
-
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, AlertDeliveryMethod, AlertDeliverySettings, AlertTypeDeliverySettings, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, AsyncRequestStatusResponse, AuthContextPermissions, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, CheckpointDiffOperation, CheckpointDiffResponse, ConfigurationStateResult, ConnectOptions, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthType, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorExport, ConnectorFunctionSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorOperationHandler, ConnectorOperationMethod, ConnectorVersionExport, CopilotActivityNotificationData, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateUserRequest, Customer, CustomerRateLimitAlerts, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocator, DataRecord, DataSource, DataSourceInstanceSelector, DataSourceSelector, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineCreditsProjection, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FilterFieldMeta, FindDataLinkQuery, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventSubscriptionsQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, IneligibilityReason, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, OAuthScope, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, OrgFeatureFlags, OrgPermissions, OrgUser, Package, PatchAgentSession, PatchSchemaOption, PlatformUserPermissions, PullLatestRecordsEventOutput, RateLimitAlerts, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, Self, SessionStatus, TenantPermissions, TestAlerts, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageAlerts, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, WorkspaceElementCalculateStateResult, WorkspaceElementChange, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceElementsStats, WorkspaceExport, WorkspaceExportComparison, WorkspaceExportComparisonOptions, WorkspaceExportComparisonResult, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspacePermissions, WorkspaceSettings, WorkspaceSizeAlerts, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|
|
23524
|
+
export { ACTIONS, ALERT_DELIVERY_METHODS, ALERT_TYPE_CATEGORIES, AccessDeniedError, AccountResponse, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionRunsStatsQuery, ActionType, ActionsAccessor, ActivityLogRecord, ActivityStatsQuery, AgentName, AgentSession, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, AiAgentAudience, AiAgentParameters, AiAgentType, Alert, AlertCategory, AlertDeliverySettingsSchema, AlertSchema, AlertSeverity, AlertStatus, AlertType, AlertTypeDeliverySettingsSchema, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, AsyncRequestStatus, AsyncRequestTriggerResponse, AuthContextPermissionsSchema, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnectedProduct, BaseConnection, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BaseOrgUser, BasePackage, BaseScreen, BaseWorkspaceElement, CLIENT_TOKEN_GRANT_TYPES, CONNECTION_REQUEST_ID_PARAM, CONNECTION_REQUEST_SCREEN_PATH, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CONSOLE_ACCOUNT_API_TOKEN_PATH, CheckpointApiResponse, CheckpointDiffOperationSchema, CheckpointDiffResponseSchema, ClientToken, ClientTokenGrantType, ClientTokenListResponse, CommonFindElementsQuery, CommonFindInstancesQuery, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectPayload, ConnectUIOptions, ConnectedProductApiResponse, ConnectedProductAudience, ConnectedProductType, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionEditableProperties, ConnectionError, ConnectionErrorKey, ConnectionExportProperties, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionOperationRunInput, ConnectionOperationRunResponse, ConnectionProxy, ConnectionProxyRequest, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionTestResponse, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthSuccessRecord, ConnectorAuthWithFunctions, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorExportProperties, ConnectorFileUpdateType, ConnectorFunctionSpecs, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorOption, ConnectorOptions, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateAlert, CreateClientTokenRequest, CreateClientTokenResponse, CreateConnectedProductRequest, CreateConnectionRequest, CreateConnectionRequestPayload, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingInstanceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreateOrgInvitationRequest, CreateOrgRequest, CreateOrgUserRequest, CreatePackageRequest, CreateScreenRequest, CreateSelfHostingTokenRequest, CreateSelfHostingTokenResponse, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_ALERT_DELIVERY_SETTINGS, DEFAULT_ALERT_TYPE_DELIVERY_SETTINGS, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, 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, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTableLayer, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineCreditsProjectionResponse, EngineWorkspaceSettingsSchema, ErrorData, ErrorDataSchema, ErrorType, ExternalApiLogApiResponse, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionRunLogsQuery, FindActionRunLogsResponse, FindActionsQuery, FindAlertsQuery, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindConnectedProductsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTableInstanceLinksQuery, FindDataLinkTableInstancesQuery, FindDataLinkTablesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindExternalEventPullsQuery, FindFieldMappingInstancesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindOrgWorkspacesQuery, FindOrgsQuery, FindPackagesQuery, FindScreensQuery, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeState, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowRunsStatsQuery, FlowsAccessor, Formula, FullOrgUser, FullPlatformUser, FunctionDefinition, FunctionType, GenerateOptionsRequest, GeneratedConnectorOption, GenericFunctionDefinition, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhookApiResponse, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationEditableProperties, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLayerStatsQuery, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationOptionConfig, IntegrationOptions, IntegrationSpecificElementSelector, IntegrationsAccessor, InternalError, InvalidLocatorError, JavascriptFunction, LimitUnits, ListActionInstancesForConnectionQuery, ListAppEventLogRecordsQuery, ListDataSourceInstancesForConnectionQuery, ListExternalApiLogsQuery, ListExternalAppsQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, ListIncomingWebhooksQuery, ListPublicConnectorsQuery, ListPublicPackagesQuery, LogRecordType, MEMBRANE_CLI_CLIENT_ID, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneElementLayer, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OAUTH_SCOPES, OAUTH_SCOPE_PLATFORM_USER, OAUTH_SCOPE_TENANT, OAuthTokenResponse, OpenRouterNotConfiguredError, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, Org, OrgInvitation, OrgLimits, OrgLimitsType, OrgPlan, OrgUserRole, OrgUserStatus, OrgWorkspace, OrgWorkspaceUser, PACKAGE_VERSION_DEVELOPMENT, PACKAGE_VERSION_LATEST, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackageVersionData, PackageVersionListItem, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PatchAgentSessionSchema, PlatformUser, RATE_LIMITS, REFERENCE_ELEMENT_TYPE_SELF, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RunActionRequest, RunFieldMappingRequest, RunFieldMappingResponse, RunFlowApiRequest, SYSTEM_FIELDS, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenSelector, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, SelfHostingToken, SessionCredentials, SessionParameters, StatsFilterQuery, TenantLayerElement, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectedProductRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingInstanceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdateOrgInvitationRequest, UpdateOrgRequest, UpdateOrgUserRequest, UpdatePackageRequest, UpdateScreenRequest, UpdateSelfHostingTokenRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, ValidateSelfHostingTokenRequest, ValidateSelfHostingTokenResponse, WORKSPACE_ELEMENTS_STATS_COLLECTIONS, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, Workspace, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSearchQuery, WorkspaceElementSearchResult, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceElementsStatsSchema, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspacePublicKey, WorkspaceSettingsSchema, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WritablePackageVersionData, WriteableConnectorFields, WriteableConnectorOption, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, addUndefinedWriteableProperties, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createPaginationResponseSchema, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAlertCategoryDisplayName, getAlertDeliveryMethodLabel, getAlertTypeDisplayName, getAlertTypesByCategory, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getConnectionRequestUrl, getConnectorSpecPath, getConnectorVersionPath, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getEditablePathsForElementType, getEditablePathsFromSchema, getEffectiveConnectorOption, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldMeta, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaDescription, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBlob, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isDeliveryMethodEnabled, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isPathUserEditable, isSameDataLocation, isSchemaEmpty, isStream, isValidAlertType, isValidLocator, jsonPointerToDotPath, lenientParseWithSchema, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setEditablePropertiesForWorkspaceElement, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
23525
|
+
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, AlertDeliveryMethod, AlertDeliverySettings, AlertTypeDeliverySettings, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, AsyncRequestStatusResponse, AuthContextPermissions, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, CheckpointDiffOperation, CheckpointDiffResponse, ConfigurationStateResult, ConnectOptions, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthType, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorExport, ConnectorFunctionSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorOperationHandler, ConnectorOperationMethod, ConnectorVersionExport, CopilotActivityNotificationData, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateUserRequest, Customer, CustomerRateLimitAlerts, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocator, DataRecord, DataSource, DataSourceInstanceSelector, DataSourceSelector, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineCreditsProjection, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FilterFieldMeta, FindDataLinkQuery, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventSubscriptionsQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, IneligibilityReason, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, OAuthScope, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, OrgFeatureFlags, OrgPermissions, OrgUser, Package, PatchAgentSession, PatchSchemaOption, PlatformUserPermissions, PullLatestRecordsEventOutput, RateLimitAlerts, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, Self, SessionStatus, TenantPermissions, TestAlerts, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageAlerts, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, WorkspaceElementCalculateStateResult, WorkspaceElementChange, WorkspaceElementChangeInfo, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceElementsStats, WorkspaceExport, WorkspaceExportComparison, WorkspaceExportComparisonOptions, WorkspaceExportComparisonResult, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspacePermissions, WorkspaceSettings, WorkspaceSizeAlerts, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|