@membranehq/sdk 0.17.6 → 0.18.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 +17 -4
- package/dist/bundle.js +26 -5
- package/dist/bundle.js.map +1 -1
- package/dist/dts/agent/session.d.ts +2 -0
- package/dist/dts/alerts/types.d.ts +14 -0
- package/dist/dts/client-tokens/types.d.ts +5 -5
- package/dist/dts/orgs/types.d.ts +2 -0
- package/dist/dts/stats/index.d.ts +8 -5
- package/dist/dts/ui.d.ts +5 -0
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/connected-products-api.d.ts +2 -1
- package/dist/dts/workspace-elements/api/connections-api.d.ts +1 -2
- package/dist/dts/workspace-elements/api/connectors-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/customers-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/data-sources-api.d.ts +2 -2
- package/dist/dts/workspace-elements/api/external-api-logs-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/external-apps-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/external-event-subscriptions-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/external-events-api.d.ts +1 -0
- package/dist/dts/workspace-elements/api/field-mappings-api.d.ts +2 -2
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +3 -0
- package/dist/dts/workspace-elements/api/flows-api.d.ts +1 -1
- package/dist/dts/workspace-elements/api/incoming-webhooks-api.d.ts +2 -0
- package/dist/dts/workspace-elements/api/integrations-api.d.ts +1 -0
- package/dist/dts/workspace-elements/base/action-run-log-records/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/app-data-schemas/index.d.ts +4 -5
- package/dist/dts/workspace-elements/base/connectors/index.d.ts +7 -7
- package/dist/dts/workspace-elements/base/data-link-tables/index.d.ts +0 -1
- package/dist/dts/workspace-elements/base/data-sources/index.d.ts +0 -2
- package/dist/dts/workspace-elements/base/external-event-log-records/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/external-event-pulls/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/field-mappings/index.d.ts +0 -3
- package/dist/dts/workspace-elements/base/flow-runs/index.d.ts +1 -0
- package/dist/dts/workspace-elements/base/flows/index.d.ts +0 -2
- package/dist/dts/workspace-elements/base/integrations/index.d.ts +8 -10
- package/dist/dts/workspace-elements/types.d.ts +3 -0
- package/dist/dts/workspace-elements-catalog/index.d.ts +3 -0
- package/dist/dts/workspaces/types.d.ts +7 -1
- package/dist/index.browser.d.mts +99 -49
- package/dist/index.browser.d.ts +99 -49
- package/dist/index.browser.js +214 -17
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +214 -17
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +99 -49
- package/dist/index.node.d.ts +99 -49
- package/dist/index.node.js +214 -17
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +214 -17
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -41,6 +41,7 @@ export declare const AgentSession: z.ZodObject<{
|
|
|
41
41
|
hasWorker: z.ZodBoolean;
|
|
42
42
|
isExternal: z.ZodOptional<z.ZodBoolean>;
|
|
43
43
|
agentName: z.ZodOptional<z.ZodEnum<typeof AgentName>>;
|
|
44
|
+
output: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
44
45
|
createdAt: z.ZodISODateTime;
|
|
45
46
|
updatedAt: z.ZodISODateTime;
|
|
46
47
|
}, z.core.$strip>;
|
|
@@ -68,6 +69,7 @@ export declare const PatchAgentSessionSchema: z.ZodObject<{
|
|
|
68
69
|
cost: z.ZodOptional<z.ZodNumber>;
|
|
69
70
|
error: z.ZodOptional<z.ZodType<ErrorDataSchema, unknown, z.core.$ZodTypeInternals<ErrorDataSchema, unknown>>>;
|
|
70
71
|
opencodeSessionUuid: z.ZodOptional<z.ZodString>;
|
|
72
|
+
output: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
71
73
|
status: z.ZodOptional<z.ZodEnum<typeof AgentSessionStatus>>;
|
|
72
74
|
}, z.core.$strip>;
|
|
73
75
|
export type PatchAgentSession = z.infer<typeof PatchAgentSessionSchema>;
|
|
@@ -30,6 +30,8 @@ export declare enum AlertType {
|
|
|
30
30
|
totalNumberOfWorkspaceElements = "totalNumberOfWorkspaceElements",
|
|
31
31
|
instantTasksQueueSize = "instantTasksQueueSize",
|
|
32
32
|
queuedTasksQueueSize = "queuedTasksQueueSize",
|
|
33
|
+
flowRunsQueueSizePerConnection = "flowRunsQueueSizePerConnection",
|
|
34
|
+
eventsProcessingQueueSizePerConnection = "eventsProcessingQueueSizePerConnection",
|
|
33
35
|
parallelApiRequests = "parallelApiRequests",
|
|
34
36
|
testAlert = "testAlert"
|
|
35
37
|
}
|
|
@@ -64,6 +66,8 @@ export declare const ALERT_TYPE_CATEGORIES: {
|
|
|
64
66
|
readonly totalNumberOfWorkspaceElements: AlertCategory.WORKSPACE_SIZE;
|
|
65
67
|
readonly instantTasksQueueSize: AlertCategory.WORKSPACE_SIZE;
|
|
66
68
|
readonly queuedTasksQueueSize: AlertCategory.WORKSPACE_SIZE;
|
|
69
|
+
readonly flowRunsQueueSizePerConnection: AlertCategory.WORKSPACE_SIZE;
|
|
70
|
+
readonly eventsProcessingQueueSizePerConnection: AlertCategory.WORKSPACE_SIZE;
|
|
67
71
|
readonly parallelApiRequests: AlertCategory.RATE_LIMIT;
|
|
68
72
|
};
|
|
69
73
|
type AlertsByCategory<C extends AlertCategory> = {
|
|
@@ -105,6 +109,8 @@ export declare const Alert: z.ZodObject<{
|
|
|
105
109
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
106
110
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
107
111
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
112
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
113
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
108
114
|
parallelApiRequests: AlertType.parallelApiRequests;
|
|
109
115
|
testAlert: AlertType.testAlert;
|
|
110
116
|
}>;
|
|
@@ -152,6 +158,8 @@ export declare const AlertSchema: z.ZodObject<{
|
|
|
152
158
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
153
159
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
154
160
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
161
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
162
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
155
163
|
parallelApiRequests: AlertType.parallelApiRequests;
|
|
156
164
|
testAlert: AlertType.testAlert;
|
|
157
165
|
}>;
|
|
@@ -208,6 +216,8 @@ export declare const AlertDeliverySettingsSchema: z.ZodObject<{
|
|
|
208
216
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
209
217
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
210
218
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
219
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
220
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
211
221
|
parallelApiRequests: AlertType.parallelApiRequests;
|
|
212
222
|
testAlert: AlertType.testAlert;
|
|
213
223
|
}>, z.ZodOptional<z.ZodObject<{
|
|
@@ -256,6 +266,8 @@ export declare const FindAlertsQuery: z.ZodObject<{
|
|
|
256
266
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
257
267
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
258
268
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
269
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
270
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
259
271
|
parallelApiRequests: AlertType.parallelApiRequests;
|
|
260
272
|
testAlert: AlertType.testAlert;
|
|
261
273
|
}>>;
|
|
@@ -289,6 +301,8 @@ export declare const CreateAlert: z.ZodObject<{
|
|
|
289
301
|
totalNumberOfWorkspaceElements: AlertType.totalNumberOfWorkspaceElements;
|
|
290
302
|
instantTasksQueueSize: AlertType.instantTasksQueueSize;
|
|
291
303
|
queuedTasksQueueSize: AlertType.queuedTasksQueueSize;
|
|
304
|
+
flowRunsQueueSizePerConnection: AlertType.flowRunsQueueSizePerConnection;
|
|
305
|
+
eventsProcessingQueueSizePerConnection: AlertType.eventsProcessingQueueSizePerConnection;
|
|
292
306
|
parallelApiRequests: AlertType.parallelApiRequests;
|
|
293
307
|
testAlert: AlertType.testAlert;
|
|
294
308
|
}>;
|
|
@@ -2,9 +2,9 @@ import { z } from 'zod';
|
|
|
2
2
|
export declare const CLIENT_TOKEN_GRANT_TYPES: readonly ["mcp-oauth", "cli-oauth", "agent-session", "api"];
|
|
3
3
|
export declare const ClientTokenGrantType: z.ZodEnum<{
|
|
4
4
|
api: "api";
|
|
5
|
+
"agent-session": "agent-session";
|
|
5
6
|
"mcp-oauth": "mcp-oauth";
|
|
6
7
|
"cli-oauth": "cli-oauth";
|
|
7
|
-
"agent-session": "agent-session";
|
|
8
8
|
}>;
|
|
9
9
|
export type ClientTokenGrantType = z.infer<typeof ClientTokenGrantType>;
|
|
10
10
|
export declare const ClientToken: z.ZodObject<{
|
|
@@ -14,9 +14,9 @@ export declare const ClientToken: z.ZodObject<{
|
|
|
14
14
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
15
15
|
grantType: z.ZodEnum<{
|
|
16
16
|
api: "api";
|
|
17
|
+
"agent-session": "agent-session";
|
|
17
18
|
"mcp-oauth": "mcp-oauth";
|
|
18
19
|
"cli-oauth": "cli-oauth";
|
|
19
|
-
"agent-session": "agent-session";
|
|
20
20
|
}>;
|
|
21
21
|
grantId: z.ZodOptional<z.ZodString>;
|
|
22
22
|
grantName: z.ZodOptional<z.ZodString>;
|
|
@@ -31,9 +31,9 @@ export declare const CreateClientTokenResponse: z.ZodObject<{
|
|
|
31
31
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
32
32
|
grantType: z.ZodEnum<{
|
|
33
33
|
api: "api";
|
|
34
|
+
"agent-session": "agent-session";
|
|
34
35
|
"mcp-oauth": "mcp-oauth";
|
|
35
36
|
"cli-oauth": "cli-oauth";
|
|
36
|
-
"agent-session": "agent-session";
|
|
37
37
|
}>;
|
|
38
38
|
grantId: z.ZodOptional<z.ZodString>;
|
|
39
39
|
grantName: z.ZodOptional<z.ZodString>;
|
|
@@ -45,9 +45,9 @@ export type CreateClientTokenResponse = z.infer<typeof CreateClientTokenResponse
|
|
|
45
45
|
export declare const CreateClientTokenRequest: z.ZodObject<{
|
|
46
46
|
grantType: z.ZodEnum<{
|
|
47
47
|
api: "api";
|
|
48
|
+
"agent-session": "agent-session";
|
|
48
49
|
"mcp-oauth": "mcp-oauth";
|
|
49
50
|
"cli-oauth": "cli-oauth";
|
|
50
|
-
"agent-session": "agent-session";
|
|
51
51
|
}>;
|
|
52
52
|
grantId: z.ZodString;
|
|
53
53
|
grantName: z.ZodString;
|
|
@@ -63,9 +63,9 @@ export declare const ClientTokenListResponse: z.ZodObject<{
|
|
|
63
63
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
64
64
|
grantType: z.ZodEnum<{
|
|
65
65
|
api: "api";
|
|
66
|
+
"agent-session": "agent-session";
|
|
66
67
|
"mcp-oauth": "mcp-oauth";
|
|
67
68
|
"cli-oauth": "cli-oauth";
|
|
68
|
-
"agent-session": "agent-session";
|
|
69
69
|
}>;
|
|
70
70
|
grantId: z.ZodOptional<z.ZodString>;
|
|
71
71
|
grantName: z.ZodOptional<z.ZodString>;
|
package/dist/dts/orgs/types.d.ts
CHANGED
|
@@ -628,6 +628,8 @@ export declare const AccountResponse: z.ZodObject<{
|
|
|
628
628
|
totalNumberOfWorkspaceElements: import("../alerts").AlertType.totalNumberOfWorkspaceElements;
|
|
629
629
|
instantTasksQueueSize: import("../alerts").AlertType.instantTasksQueueSize;
|
|
630
630
|
queuedTasksQueueSize: import("../alerts").AlertType.queuedTasksQueueSize;
|
|
631
|
+
flowRunsQueueSizePerConnection: import("../alerts").AlertType.flowRunsQueueSizePerConnection;
|
|
632
|
+
eventsProcessingQueueSizePerConnection: import("../alerts").AlertType.eventsProcessingQueueSizePerConnection;
|
|
631
633
|
parallelApiRequests: import("../alerts").AlertType.parallelApiRequests;
|
|
632
634
|
testAlert: import("../alerts").AlertType.testAlert;
|
|
633
635
|
}>, z.ZodOptional<z.ZodObject<{
|
|
@@ -1,33 +1,36 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
+
import { WorkspaceElementType } from '../workspace-elements/types';
|
|
2
3
|
export declare const StatsFilterQuery: z.ZodObject<{
|
|
3
4
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
4
5
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
5
6
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
7
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
6
8
|
}, z.core.$strip>;
|
|
7
9
|
export type StatsFilterQuery = z.infer<typeof StatsFilterQuery>;
|
|
8
10
|
export declare const ActivityStatsQuery: z.ZodObject<{
|
|
9
11
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
10
12
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
11
13
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
14
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12
15
|
startDatetime: z.ZodString;
|
|
16
|
+
elementType: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementType>>;
|
|
13
17
|
}, z.core.$strip>;
|
|
14
18
|
export type ActivityStatsQuery = z.infer<typeof ActivityStatsQuery>;
|
|
15
19
|
export declare const IntegrationLayerStatsQuery: z.ZodObject<{
|
|
16
20
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
17
21
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
18
22
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
23
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
24
|
+
elementType: z.ZodOptional<z.ZodEnum<typeof WorkspaceElementType>>;
|
|
19
25
|
}, z.core.$strip>;
|
|
20
26
|
export type IntegrationLayerStatsQuery = z.infer<typeof IntegrationLayerStatsQuery>;
|
|
21
27
|
export declare const ActionRunsStatsQuery: z.ZodObject<{
|
|
22
|
-
actionId: z.
|
|
23
|
-
connectionActionId: z.ZodOptional<z.ZodString>;
|
|
28
|
+
actionId: z.ZodString;
|
|
24
29
|
startDatetime: z.ZodString;
|
|
25
30
|
}, z.core.$strip>;
|
|
26
31
|
export type ActionRunsStatsQuery = z.infer<typeof ActionRunsStatsQuery>;
|
|
27
32
|
export declare const FlowRunsStatsQuery: z.ZodObject<{
|
|
28
|
-
|
|
29
|
-
connectionFlowId: z.ZodOptional<z.ZodString>;
|
|
30
|
-
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
33
|
+
flowId: z.ZodString;
|
|
31
34
|
startDatetime: z.ZodString;
|
|
32
35
|
}, z.core.$strip>;
|
|
33
36
|
export type FlowRunsStatsQuery = z.infer<typeof FlowRunsStatsQuery>;
|
package/dist/dts/ui.d.ts
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
import { MembraneApiClient } from './api-client';
|
|
2
2
|
import { ConnectionApiResponse, ConnectUIOptions } from './workspace-elements/api/connections-api';
|
|
3
3
|
export { ConnectUIOptions };
|
|
4
|
+
export interface UNSAFE_AgentSessionUIOptions {
|
|
5
|
+
sessionId: string;
|
|
6
|
+
theme?: 'light' | 'dark' | 'auto';
|
|
7
|
+
}
|
|
4
8
|
export declare class UI {
|
|
5
9
|
private client;
|
|
6
10
|
constructor(client: MembraneApiClient);
|
|
7
11
|
connect(options?: ConnectUIOptions): Promise<ConnectionApiResponse | null>;
|
|
12
|
+
UNSAFE_agentSession(options: UNSAFE_AgentSessionUIOptions): Promise<void>;
|
|
8
13
|
}
|
|
@@ -4,6 +4,7 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
4
4
|
userId: z.ZodString;
|
|
5
5
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
6
6
|
id: z.ZodString;
|
|
7
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
7
8
|
name: z.ZodString;
|
|
8
9
|
universalActionId: z.ZodOptional<z.ZodString>;
|
|
9
10
|
integrationActionId: z.ZodString;
|
|
@@ -195,6 +196,7 @@ export declare const FindActionRunLogsQuery: z.ZodObject<{
|
|
|
195
196
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
196
197
|
userId: z.ZodOptional<z.ZodString>;
|
|
197
198
|
status: z.ZodOptional<z.ZodEnum<typeof ActionRunLogStatus>>;
|
|
199
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
198
200
|
from: z.ZodOptional<z.ZodString>;
|
|
199
201
|
to: z.ZodOptional<z.ZodString>;
|
|
200
202
|
}, z.core.$strip>;
|
|
@@ -204,6 +206,7 @@ export declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
204
206
|
userId: z.ZodString;
|
|
205
207
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
206
208
|
id: z.ZodString;
|
|
209
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
207
210
|
name: z.ZodString;
|
|
208
211
|
universalActionId: z.ZodOptional<z.ZodString>;
|
|
209
212
|
integrationActionId: z.ZodString;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const CreateConnectedProductRequest: z.ZodObject<{
|
|
3
3
|
name: z.ZodString;
|
|
4
|
+
key: z.ZodOptional<z.ZodString>;
|
|
4
5
|
type: z.ZodEnum<{
|
|
5
6
|
app: "app";
|
|
6
7
|
"ai-agent": "ai-agent";
|
|
@@ -21,6 +22,7 @@ export declare const CreateConnectedProductRequest: z.ZodObject<{
|
|
|
21
22
|
export type CreateConnectedProductRequest = z.infer<typeof CreateConnectedProductRequest>;
|
|
22
23
|
export declare const UpdateConnectedProductRequest: z.ZodObject<{
|
|
23
24
|
name: z.ZodOptional<z.ZodString>;
|
|
25
|
+
key: z.ZodOptional<z.ZodString>;
|
|
24
26
|
type: z.ZodOptional<z.ZodEnum<{
|
|
25
27
|
app: "app";
|
|
26
28
|
"ai-agent": "ai-agent";
|
|
@@ -48,7 +50,6 @@ export declare const FindConnectedProductsQuery: z.ZodObject<{
|
|
|
48
50
|
customers: "customers";
|
|
49
51
|
personal: "personal";
|
|
50
52
|
}>>;
|
|
51
|
-
key: z.ZodOptional<z.ZodString>;
|
|
52
53
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
53
54
|
cursor: z.ZodOptional<z.ZodString>;
|
|
54
55
|
search: z.ZodOptional<z.ZodString>;
|
|
@@ -10,11 +10,11 @@ export declare const FindConnectionsQuery: z.ZodObject<{
|
|
|
10
10
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
11
11
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
12
12
|
connectorId: z.ZodOptional<z.ZodString>;
|
|
13
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13
14
|
disconnected: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
14
15
|
isTest: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
15
16
|
userId: z.ZodOptional<z.ZodString>;
|
|
16
17
|
connectorVersion: z.ZodOptional<z.ZodString>;
|
|
17
|
-
externalAppId: z.ZodOptional<z.ZodString>;
|
|
18
18
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
19
19
|
includeSecrets: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
20
20
|
}, z.core.$strip>;
|
|
@@ -51,7 +51,6 @@ export type UpdateConnectionRequest = z.infer<typeof UpdateConnectionRequest>;
|
|
|
51
51
|
export declare const ConnectionExportProperties: z.ZodObject<{
|
|
52
52
|
name: z.ZodOptional<z.ZodString>;
|
|
53
53
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
54
|
-
externalAppId: z.ZodOptional<z.ZodString>;
|
|
55
54
|
authOptionKey: z.ZodOptional<z.ZodString>;
|
|
56
55
|
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
57
56
|
}, z.core.$strip>;
|
|
@@ -2,6 +2,7 @@ import { z } from 'zod';
|
|
|
2
2
|
export declare const ListPublicConnectorsQuery: z.ZodObject<{
|
|
3
3
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
4
4
|
cursor: z.ZodOptional<z.ZodString>;
|
|
5
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
5
6
|
search: z.ZodOptional<z.ZodString>;
|
|
6
7
|
}, z.core.$strip>;
|
|
7
8
|
export type ListPublicConnectorsQuery = z.infer<typeof ListPublicConnectorsQuery>;
|
|
@@ -19,6 +19,7 @@ export declare const FindCustomersQuery: z.ZodObject<{
|
|
|
19
19
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
20
20
|
cursor: z.ZodOptional<z.ZodString>;
|
|
21
21
|
search: z.ZodOptional<z.ZodString>;
|
|
22
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
22
23
|
}, z.core.$strip>;
|
|
23
24
|
export type FindCustomersQuery = z.infer<typeof FindCustomersQuery>;
|
|
24
25
|
export declare const CustomerSelector: z.ZodObject<{
|
|
@@ -1186,9 +1186,9 @@ export declare const FindDataSourcesQuery: z.ZodObject<{
|
|
|
1186
1186
|
}>>;
|
|
1187
1187
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
1188
1188
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
1189
|
-
externalAppId: z.ZodOptional<z.ZodString>;
|
|
1190
1189
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
1191
1190
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
1191
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
1192
1192
|
}, z.core.$strip>;
|
|
1193
1193
|
export type FindDataSourcesQuery = z.infer<typeof FindDataSourcesQuery>;
|
|
1194
1194
|
export declare const FindDataSourceInstancesQuery: z.ZodObject<{
|
|
@@ -1209,9 +1209,9 @@ export declare const FindDataSourceInstancesQuery: z.ZodObject<{
|
|
|
1209
1209
|
}>>;
|
|
1210
1210
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
1211
1211
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
1212
|
-
externalAppId: z.ZodOptional<z.ZodString>;
|
|
1213
1212
|
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
1214
1213
|
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
1214
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
1215
1215
|
}, z.core.$strip>;
|
|
1216
1216
|
export type FindDataSourceInstancesQuery = FindDataSourcesQuery;
|
|
1217
1217
|
export declare const CreateDataSourceRequest: z.ZodObject<{
|
|
@@ -6,6 +6,7 @@ export declare const ListExternalApiLogsQuery: z.ZodObject<{
|
|
|
6
6
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
7
7
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
8
8
|
isSuccess: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
9
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
9
10
|
from: z.ZodOptional<z.ZodString>;
|
|
10
11
|
to: z.ZodOptional<z.ZodString>;
|
|
11
12
|
sortOrder: z.ZodOptional<z.ZodEnum<{
|
|
@@ -20,6 +21,7 @@ export declare const ExternalApiLogApiResponse: z.ZodObject<{
|
|
|
20
21
|
customerId: z.ZodString;
|
|
21
22
|
integrationId: z.ZodString;
|
|
22
23
|
connectionId: z.ZodString;
|
|
24
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
23
25
|
statusCode: z.ZodNumber;
|
|
24
26
|
isSuccess: z.ZodBoolean;
|
|
25
27
|
s3Uri: z.ZodString;
|
|
@@ -2,6 +2,7 @@ import { z } from 'zod';
|
|
|
2
2
|
export declare const ListExternalAppsQuery: z.ZodObject<{
|
|
3
3
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
4
4
|
cursor: z.ZodOptional<z.ZodString>;
|
|
5
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
5
6
|
search: z.ZodOptional<z.ZodString>;
|
|
6
7
|
category: z.ZodOptional<z.ZodString>;
|
|
7
8
|
isConnected: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
@@ -9,6 +9,7 @@ export declare const ListExternalEventLogRecordsQuery: z.ZodObject<{
|
|
|
9
9
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
10
10
|
externalEventSubscriptionId: z.ZodOptional<z.ZodString>;
|
|
11
11
|
status: z.ZodOptional<z.ZodEnum<typeof ExternalEventLogStatus>>;
|
|
12
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12
13
|
from: z.ZodOptional<z.ZodString>;
|
|
13
14
|
to: z.ZodOptional<z.ZodString>;
|
|
14
15
|
}, z.core.$strip>;
|
|
@@ -17,6 +18,7 @@ export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
|
17
18
|
userId: z.ZodString;
|
|
18
19
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
19
20
|
id: z.ZodString;
|
|
21
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
20
22
|
name: z.ZodOptional<z.ZodString>;
|
|
21
23
|
externalEventSubscriptionId: z.ZodString;
|
|
22
24
|
integrationId: z.ZodString;
|
|
@@ -20,6 +20,7 @@ export declare const FindExternalEventPullsQuery: z.ZodObject<{
|
|
|
20
20
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
21
21
|
userId: z.ZodOptional<z.ZodString>;
|
|
22
22
|
status: z.ZodOptional<z.ZodEnum<typeof ExternalEventPullStatus>>;
|
|
23
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
23
24
|
from: z.ZodOptional<z.ZodString>;
|
|
24
25
|
to: z.ZodOptional<z.ZodString>;
|
|
25
26
|
}, z.core.$strip>;
|
|
@@ -28,6 +29,7 @@ export declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
|
28
29
|
userId: z.ZodString;
|
|
29
30
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
30
31
|
id: z.ZodString;
|
|
32
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
31
33
|
name: z.ZodOptional<z.ZodString>;
|
|
32
34
|
externalEventSubscriptionId: z.ZodString;
|
|
33
35
|
integrationId: z.ZodString;
|
|
@@ -7,6 +7,7 @@ export declare const ListExternalEventSubscriptionsQuery: z.ZodObject<{
|
|
|
7
7
|
userId: z.ZodOptional<z.ZodString>;
|
|
8
8
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
9
9
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
10
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
10
11
|
}, z.core.$strip>;
|
|
11
12
|
export type ListExternalEventSubscriptionsQuery = z.infer<typeof ListExternalEventSubscriptionsQuery>;
|
|
12
13
|
export declare const ExternalEventSubscriptionApiResponse: z.ZodObject<{
|
|
@@ -5,6 +5,7 @@ export interface FindExternalEventSubscriptionsQuery extends PaginationQuery {
|
|
|
5
5
|
userId?: string;
|
|
6
6
|
connectionId?: string;
|
|
7
7
|
integrationId?: string;
|
|
8
|
+
externalAppId?: string;
|
|
8
9
|
}
|
|
9
10
|
export interface FindExternalEventLogsQuery extends PaginationQuery {
|
|
10
11
|
userId?: string;
|
|
@@ -582,9 +582,9 @@ export declare const FindFieldMappingsQuery: z.ZodObject<{
|
|
|
582
582
|
}>>;
|
|
583
583
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
584
584
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
585
|
-
externalAppId: z.ZodOptional<z.ZodString>;
|
|
586
585
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
587
586
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
587
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
588
588
|
}, z.core.$strip>;
|
|
589
589
|
export type FindFieldMappingsQuery = z.infer<typeof FindFieldMappingsQuery>;
|
|
590
590
|
export declare const FindFieldMappingInstancesQuery: z.ZodObject<{
|
|
@@ -605,9 +605,9 @@ export declare const FindFieldMappingInstancesQuery: z.ZodObject<{
|
|
|
605
605
|
}>>;
|
|
606
606
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
607
607
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
608
|
-
externalAppId: z.ZodOptional<z.ZodString>;
|
|
609
608
|
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
610
609
|
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
610
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
611
611
|
}, z.core.$strip>;
|
|
612
612
|
export type FindFieldMappingInstancesQuery = FindFieldMappingsQuery;
|
|
613
613
|
export declare const CreateFieldMappingRequest: z.ZodObject<{
|
|
@@ -20,6 +20,7 @@ export declare const FindFlowRunsQuery: z.ZodObject<{
|
|
|
20
20
|
state: z.ZodOptional<z.ZodEnum<typeof FlowRunState>>;
|
|
21
21
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
22
22
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
23
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
23
24
|
from: z.ZodOptional<z.ZodString>;
|
|
24
25
|
to: z.ZodOptional<z.ZodString>;
|
|
25
26
|
}, z.core.$strip>;
|
|
@@ -35,6 +36,7 @@ export declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
35
36
|
id: z.ZodString;
|
|
36
37
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
37
38
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
39
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
38
40
|
name: z.ZodOptional<z.ZodString>;
|
|
39
41
|
connectionFlowId: z.ZodString;
|
|
40
42
|
integrationFlowId: z.ZodOptional<z.ZodString>;
|
|
@@ -221,6 +223,7 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
221
223
|
id: z.ZodString;
|
|
222
224
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
223
225
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
226
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
224
227
|
name: z.ZodOptional<z.ZodString>;
|
|
225
228
|
connectionFlowId: z.ZodString;
|
|
226
229
|
integrationFlowId: z.ZodOptional<z.ZodString>;
|
|
@@ -696,9 +696,9 @@ export declare const FindFlowsQuery: z.ZodObject<{
|
|
|
696
696
|
}>>;
|
|
697
697
|
universalParentId: z.ZodOptional<z.ZodString>;
|
|
698
698
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
699
|
-
externalAppId: z.ZodOptional<z.ZodString>;
|
|
700
699
|
flowId: z.ZodOptional<z.ZodString>;
|
|
701
700
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
701
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
702
702
|
}, z.core.$strip>;
|
|
703
703
|
export type FindFlowsQuery = z.infer<typeof FindFlowsQuery>;
|
|
704
704
|
export declare const CreateFlowRequest: z.ZodObject<{
|
|
@@ -7,6 +7,7 @@ export declare const ListIncomingWebhooksQuery: z.ZodObject<{
|
|
|
7
7
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
8
8
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
9
9
|
status: z.ZodOptional<z.ZodEnum<typeof IncomingWebhooksState>>;
|
|
10
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
10
11
|
from: z.ZodOptional<z.ZodString>;
|
|
11
12
|
to: z.ZodOptional<z.ZodString>;
|
|
12
13
|
}, z.core.$strip>;
|
|
@@ -18,6 +19,7 @@ export declare const IncomingWebhookApiResponse: z.ZodObject<{
|
|
|
18
19
|
customerId: z.ZodString;
|
|
19
20
|
integrationId: z.ZodString;
|
|
20
21
|
connectionId: z.ZodString;
|
|
22
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
21
23
|
subscriptionId: z.ZodString;
|
|
22
24
|
userId: z.ZodString;
|
|
23
25
|
uuid: z.ZodString;
|
|
@@ -53,6 +53,7 @@ export declare const FindIntegrationsQuery: z.ZodObject<{
|
|
|
53
53
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
54
54
|
cursor: z.ZodOptional<z.ZodString>;
|
|
55
55
|
search: z.ZodOptional<z.ZodString>;
|
|
56
|
+
includeArchived: z.ZodOptional<z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>>;
|
|
56
57
|
}, z.core.$strip>;
|
|
57
58
|
export type FindIntegrationsQuery = z.infer<typeof FindIntegrationsQuery>;
|
|
58
59
|
export interface FindIntegrationsResponse extends PaginationResponse<IntegrationApiResponse> {
|
|
@@ -8,6 +8,7 @@ export declare const BaseActionRunLogRecord: z.ZodObject<{
|
|
|
8
8
|
userId: z.ZodString;
|
|
9
9
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
10
10
|
id: z.ZodString;
|
|
11
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
11
12
|
name: z.ZodString;
|
|
12
13
|
universalActionId: z.ZodOptional<z.ZodString>;
|
|
13
14
|
integrationActionId: z.ZodString;
|
|
@@ -13,15 +13,14 @@ export declare const AppDataSchemaEditableProperties: z.ZodObject<{
|
|
|
13
13
|
}, z.core.$strip>;
|
|
14
14
|
export type AppDataSchemaEditableProperties = z.infer<typeof AppDataSchemaEditableProperties>;
|
|
15
15
|
export declare const AppDataSchemaExportProperties: z.ZodObject<{
|
|
16
|
-
uuid: z.ZodOptional<z.ZodString>;
|
|
17
16
|
key: z.ZodOptional<z.ZodString>;
|
|
18
|
-
|
|
17
|
+
code: z.ZodOptional<z.ZodString>;
|
|
19
18
|
description: z.ZodOptional<z.ZodString>;
|
|
20
|
-
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
21
19
|
instanceKey: z.ZodOptional<z.ZodString>;
|
|
22
|
-
|
|
20
|
+
name: z.ZodOptional<z.ZodString>;
|
|
21
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
22
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
23
23
|
schema: z.ZodOptional<z.ZodAny>;
|
|
24
|
-
code: z.ZodOptional<z.ZodString>;
|
|
25
24
|
}, z.core.$strip>;
|
|
26
25
|
export type AppDataSchemaExportProperties = z.infer<typeof AppDataSchemaExportProperties>;
|
|
27
26
|
export declare const BaseAppDataSchema: z.ZodObject<{
|
|
@@ -2179,6 +2179,7 @@ export declare const GeneratedConnectorOption: z.ZodObject<{
|
|
|
2179
2179
|
description: z.ZodOptional<z.ZodString>;
|
|
2180
2180
|
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2181
2181
|
connectorParametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2182
|
+
oAuthCallbackUri: z.ZodOptional<z.ZodString>;
|
|
2182
2183
|
}, z.core.$strip>;
|
|
2183
2184
|
export type GeneratedConnectorOption = z.infer<typeof GeneratedConnectorOption>;
|
|
2184
2185
|
export declare const ConnectorOptions: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -3059,12 +3060,6 @@ export declare const WriteableConnectorFields: z.ZodObject<{
|
|
|
3059
3060
|
}, z.core.$strip>;
|
|
3060
3061
|
export declare const ConnectorExportProperties: z.ZodObject<{
|
|
3061
3062
|
key: z.ZodOptional<z.ZodString>;
|
|
3062
|
-
name: z.ZodOptional<z.ZodString>;
|
|
3063
|
-
logoUri: z.ZodOptional<z.ZodString>;
|
|
3064
|
-
externalAppId: z.ZodOptional<z.ZodString>;
|
|
3065
|
-
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
3066
|
-
appUuid: z.ZodOptional<z.ZodString>;
|
|
3067
|
-
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3068
3063
|
type: z.ZodOptional<z.ZodEnum<{
|
|
3069
3064
|
proxy: "proxy";
|
|
3070
3065
|
"integration-app-token": "integration-app-token";
|
|
@@ -3073,6 +3068,8 @@ export declare const ConnectorExportProperties: z.ZodObject<{
|
|
|
3073
3068
|
oauth1: "oauth1";
|
|
3074
3069
|
"client-credentials": "client-credentials";
|
|
3075
3070
|
}>>;
|
|
3071
|
+
name: z.ZodOptional<z.ZodString>;
|
|
3072
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
3076
3073
|
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3077
3074
|
type: z.ZodOptional<z.ZodEnum<{
|
|
3078
3075
|
proxy: "proxy";
|
|
@@ -3202,6 +3199,7 @@ export declare const ConnectorExportProperties: z.ZodObject<{
|
|
|
3202
3199
|
javascript: "javascript";
|
|
3203
3200
|
}>>;
|
|
3204
3201
|
}, z.core.$loose>>;
|
|
3202
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
3205
3203
|
getOAuthConfig: z.ZodOptional<z.ZodObject<{
|
|
3206
3204
|
type: z.ZodOptional<z.ZodEnum<{
|
|
3207
3205
|
mapping: "mapping";
|
|
@@ -3248,7 +3246,9 @@ export declare const ConnectorExportProperties: z.ZodObject<{
|
|
|
3248
3246
|
}>>;
|
|
3249
3247
|
}, z.core.$loose>>;
|
|
3250
3248
|
proxyKey: z.ZodOptional<z.ZodString>;
|
|
3251
|
-
|
|
3249
|
+
appUuid: z.ZodOptional<z.ZodString>;
|
|
3250
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3251
|
+
externalAppUuid: z.ZodOptional<z.ZodString>;
|
|
3252
3252
|
}, z.core.$strip>;
|
|
3253
3253
|
export type ConnectorExportProperties = z.infer<typeof ConnectorExportProperties>;
|
|
3254
3254
|
export interface ConnectorVersionExport {
|
|
@@ -22,7 +22,6 @@ export declare const DataLinkTableExportProperties: z.ZodObject<{
|
|
|
22
22
|
name: z.ZodOptional<z.ZodString>;
|
|
23
23
|
uuid: z.ZodOptional<z.ZodString>;
|
|
24
24
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
25
|
-
dataLinkTableId: z.ZodOptional<z.ZodString>;
|
|
26
25
|
}, z.core.$strip>;
|
|
27
26
|
export type DataLinkTableExportProperties = z.infer<typeof DataLinkTableExportProperties>;
|
|
28
27
|
export declare const BaseDataLinkTable: z.ZodObject<{
|
|
@@ -65,8 +65,6 @@ export declare const DataSourceExportProperties: z.ZodObject<{
|
|
|
65
65
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
66
66
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
67
67
|
udm: z.ZodOptional<z.ZodString>;
|
|
68
|
-
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
69
|
-
universalDataSourceId: z.ZodOptional<z.ZodString>;
|
|
70
68
|
pullUpdatesIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
71
69
|
fullSyncIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
72
70
|
collectionKey: z.ZodOptional<z.ZodString>;
|
|
@@ -9,6 +9,7 @@ export declare const BaseExternalEventLogRecord: z.ZodObject<{
|
|
|
9
9
|
userId: z.ZodString;
|
|
10
10
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
11
11
|
id: z.ZodString;
|
|
12
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
12
13
|
name: z.ZodOptional<z.ZodString>;
|
|
13
14
|
externalEventSubscriptionId: z.ZodString;
|
|
14
15
|
integrationId: z.ZodString;
|
|
@@ -10,6 +10,7 @@ export declare const BaseExternalEventPull: z.ZodObject<{
|
|
|
10
10
|
userId: z.ZodString;
|
|
11
11
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
12
12
|
id: z.ZodString;
|
|
13
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
13
14
|
name: z.ZodOptional<z.ZodString>;
|
|
14
15
|
externalEventSubscriptionId: z.ZodString;
|
|
15
16
|
integrationId: z.ZodString;
|
|
@@ -51,9 +51,6 @@ export declare const FieldMappingExportProperties: z.ZodObject<{
|
|
|
51
51
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
52
52
|
isUniversal: z.ZodOptional<z.ZodBoolean>;
|
|
53
53
|
isCustomized: z.ZodOptional<z.ZodBoolean>;
|
|
54
|
-
fieldMappingId: z.ZodOptional<z.ZodString>;
|
|
55
|
-
universalFieldMappingId: z.ZodOptional<z.ZodString>;
|
|
56
|
-
dataSourceId: z.ZodOptional<z.ZodString>;
|
|
57
54
|
dataSourceUuid: z.ZodOptional<z.ZodString>;
|
|
58
55
|
dataSourceKey: z.ZodOptional<z.ZodString>;
|
|
59
56
|
appSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
@@ -38,6 +38,7 @@ export declare const BaseFlowRun: z.ZodObject<{
|
|
|
38
38
|
id: z.ZodString;
|
|
39
39
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
40
40
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
41
|
+
externalAppId: z.ZodOptional<z.ZodString>;
|
|
41
42
|
name: z.ZodOptional<z.ZodString>;
|
|
42
43
|
connectionFlowId: z.ZodString;
|
|
43
44
|
integrationFlowId: z.ZodOptional<z.ZodString>;
|
|
@@ -65,8 +65,6 @@ export declare const FlowExportProperties: z.ZodObject<{
|
|
|
65
65
|
parameters: z.ZodOptional<z.ZodAny>;
|
|
66
66
|
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
67
67
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
68
|
-
flowId: z.ZodOptional<z.ZodString>;
|
|
69
|
-
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
70
68
|
nodes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
71
69
|
type: z.ZodOptional<z.ZodString>;
|
|
72
70
|
version: z.ZodOptional<z.ZodNumber>;
|