@membranehq/sdk 0.17.2 → 0.17.4
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 +12 -4
- package/dist/bundle.js +5 -2
- package/dist/bundle.js.map +1 -1
- package/dist/dts/clusters/types.d.ts +19 -0
- package/dist/dts/index.browser.d.ts +2 -0
- package/dist/dts/orgs/types.d.ts +2 -2
- package/dist/dts/pending-tasks/index.d.ts +1 -0
- package/dist/dts/pending-tasks/types.d.ts +48 -0
- package/dist/dts/platform-users/index.d.ts +1 -3
- package/dist/dts/stats/index.d.ts +3 -3
- package/dist/dts/workspace-elements/api/action-run-log-records-api.d.ts +15 -6
- package/dist/dts/workspace-elements/api/app-event-log-records-api.d.ts +2 -2
- package/dist/dts/workspace-elements/api/customers-api.d.ts +16 -0
- package/dist/dts/workspace-elements/api/external-api-logs-api.d.ts +2 -2
- package/dist/dts/workspace-elements/api/external-event-log-records-api.d.ts +2 -1
- package/dist/dts/workspace-elements/api/external-event-pulls-api.d.ts +2 -1
- package/dist/dts/workspace-elements/api/external-events-api.d.ts +2 -1
- package/dist/dts/workspace-elements/api/flow-runs-api.d.ts +12 -4
- package/dist/dts/workspace-elements/api/incoming-webhooks-api.d.ts +2 -1
- package/dist/dts/workspace-elements/base/action-run-log-records/index.d.ts +5 -2
- package/dist/dts/workspace-elements/base/external-events/api.d.ts +4 -2
- package/dist/dts/workspace-elements/base/flow-runs/index.d.ts +4 -1
- package/dist/dts/workspace-elements/filter-meta.d.ts +2 -0
- package/dist/index.browser.d.mts +141 -31
- package/dist/index.browser.d.ts +141 -31
- package/dist/index.browser.js +152 -44
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +146 -45
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +141 -31
- package/dist/index.node.d.ts +141 -31
- package/dist/index.node.js +152 -44
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +146 -45
- package/dist/index.node.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const Cluster: z.ZodObject<{
|
|
3
|
+
id: z.ZodString;
|
|
4
|
+
name: z.ZodString;
|
|
5
|
+
apiBaseUri: z.ZodString;
|
|
6
|
+
consoleBaseUri: z.ZodOptional<z.ZodString>;
|
|
7
|
+
}, z.core.$strip>;
|
|
8
|
+
export type ClusterDto = z.infer<typeof Cluster>;
|
|
9
|
+
export declare const CreateClusterRequest: z.ZodObject<{
|
|
10
|
+
name: z.ZodString;
|
|
11
|
+
apiBaseUri: z.ZodString;
|
|
12
|
+
consoleBaseUri: z.ZodOptional<z.ZodString>;
|
|
13
|
+
}, z.core.$strip>;
|
|
14
|
+
export type CreateClusterRequest = z.infer<typeof CreateClusterRequest>;
|
|
15
|
+
export declare const ListClustersQuery: z.ZodObject<{
|
|
16
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
17
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
18
|
+
}, z.core.$strip>;
|
|
19
|
+
export type ListClustersQuery = z.infer<typeof ListClustersQuery>;
|
|
@@ -38,5 +38,7 @@ export * from './self-hosting-tokens';
|
|
|
38
38
|
export * from './client-tokens';
|
|
39
39
|
export * from './oauth';
|
|
40
40
|
export * from './console-paths';
|
|
41
|
+
export * from './pending-tasks';
|
|
42
|
+
export * from './clusters/types';
|
|
41
43
|
export { MembraneClient as IntegrationAppClient, MembraneClient } from './client';
|
|
42
44
|
export { axios as MembraneAxiosInstance } from './api-client';
|
package/dist/dts/orgs/types.d.ts
CHANGED
|
@@ -179,9 +179,9 @@ export declare const FullOrgUser: z.ZodObject<{
|
|
|
179
179
|
ineligibilityReason: z.ZodOptional<z.ZodEnum<{
|
|
180
180
|
disposable: "disposable";
|
|
181
181
|
blockedDomain: "blockedDomain";
|
|
182
|
-
notCompanyEmail: "notCompanyEmail";
|
|
183
182
|
}>>;
|
|
184
183
|
emailVerified: z.ZodOptional<z.ZodBoolean>;
|
|
184
|
+
isCompanyEmail: z.ZodOptional<z.ZodBoolean>;
|
|
185
185
|
}, z.core.$strip>;
|
|
186
186
|
org: z.ZodObject<{
|
|
187
187
|
id: z.ZodString;
|
|
@@ -316,9 +316,9 @@ export declare const AccountResponse: z.ZodObject<{
|
|
|
316
316
|
ineligibilityReason: z.ZodOptional<z.ZodEnum<{
|
|
317
317
|
disposable: "disposable";
|
|
318
318
|
blockedDomain: "blockedDomain";
|
|
319
|
-
notCompanyEmail: "notCompanyEmail";
|
|
320
319
|
}>>;
|
|
321
320
|
emailVerified: z.ZodOptional<z.ZodBoolean>;
|
|
321
|
+
isCompanyEmail: z.ZodOptional<z.ZodBoolean>;
|
|
322
322
|
}, z.core.$strip>>;
|
|
323
323
|
workspace: z.ZodOptional<z.ZodObject<{
|
|
324
324
|
id: z.ZodString;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './types';
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const PendingQueueCountSchema: z.ZodObject<{
|
|
3
|
+
pending: z.ZodNullable<z.ZodNumber>;
|
|
4
|
+
error: z.ZodOptional<z.ZodString>;
|
|
5
|
+
}, z.core.$strip>;
|
|
6
|
+
export type PendingQueueCount = z.infer<typeof PendingQueueCountSchema>;
|
|
7
|
+
export declare const DbBackedCountsSchema: z.ZodObject<{
|
|
8
|
+
flowRuns: z.ZodObject<{
|
|
9
|
+
pending: z.ZodNullable<z.ZodNumber>;
|
|
10
|
+
error: z.ZodOptional<z.ZodString>;
|
|
11
|
+
}, z.core.$strip>;
|
|
12
|
+
eventPulls: z.ZodObject<{
|
|
13
|
+
pending: z.ZodNullable<z.ZodNumber>;
|
|
14
|
+
error: z.ZodOptional<z.ZodString>;
|
|
15
|
+
}, z.core.$strip>;
|
|
16
|
+
eventLogs: z.ZodObject<{
|
|
17
|
+
pending: z.ZodNullable<z.ZodNumber>;
|
|
18
|
+
error: z.ZodOptional<z.ZodString>;
|
|
19
|
+
}, z.core.$strip>;
|
|
20
|
+
}, z.core.$strip>;
|
|
21
|
+
export type DbBackedCounts = z.infer<typeof DbBackedCountsSchema>;
|
|
22
|
+
export declare const PendingTasksSummarySchema: z.ZodObject<{
|
|
23
|
+
instant: z.ZodOptional<z.ZodObject<{
|
|
24
|
+
pending: z.ZodNullable<z.ZodNumber>;
|
|
25
|
+
error: z.ZodOptional<z.ZodString>;
|
|
26
|
+
}, z.core.$strip>>;
|
|
27
|
+
queued: z.ZodOptional<z.ZodObject<{
|
|
28
|
+
pending: z.ZodNullable<z.ZodNumber>;
|
|
29
|
+
error: z.ZodOptional<z.ZodString>;
|
|
30
|
+
}, z.core.$strip>>;
|
|
31
|
+
dbBacked: z.ZodOptional<z.ZodObject<{
|
|
32
|
+
flowRuns: z.ZodObject<{
|
|
33
|
+
pending: z.ZodNullable<z.ZodNumber>;
|
|
34
|
+
error: z.ZodOptional<z.ZodString>;
|
|
35
|
+
}, z.core.$strip>;
|
|
36
|
+
eventPulls: z.ZodObject<{
|
|
37
|
+
pending: z.ZodNullable<z.ZodNumber>;
|
|
38
|
+
error: z.ZodOptional<z.ZodString>;
|
|
39
|
+
}, z.core.$strip>;
|
|
40
|
+
eventLogs: z.ZodObject<{
|
|
41
|
+
pending: z.ZodNullable<z.ZodNumber>;
|
|
42
|
+
error: z.ZodOptional<z.ZodString>;
|
|
43
|
+
}, z.core.$strip>;
|
|
44
|
+
}, z.core.$strip>>;
|
|
45
|
+
total: z.ZodNumber;
|
|
46
|
+
}, z.core.$strip>;
|
|
47
|
+
export type PendingTasksSummary = z.infer<typeof PendingTasksSummarySchema>;
|
|
48
|
+
export type WorkerTypeFilter = 'instant' | 'queued';
|
|
@@ -2,7 +2,6 @@ import { z } from 'zod';
|
|
|
2
2
|
declare const IneligibilityReasonSchema: z.ZodEnum<{
|
|
3
3
|
disposable: "disposable";
|
|
4
4
|
blockedDomain: "blockedDomain";
|
|
5
|
-
notCompanyEmail: "notCompanyEmail";
|
|
6
5
|
}>;
|
|
7
6
|
export type IneligibilityReason = z.infer<typeof IneligibilityReasonSchema>;
|
|
8
7
|
export declare const PlatformUser: z.ZodObject<{
|
|
@@ -14,7 +13,6 @@ export declare const PlatformUser: z.ZodObject<{
|
|
|
14
13
|
ineligibilityReason: z.ZodOptional<z.ZodEnum<{
|
|
15
14
|
disposable: "disposable";
|
|
16
15
|
blockedDomain: "blockedDomain";
|
|
17
|
-
notCompanyEmail: "notCompanyEmail";
|
|
18
16
|
}>>;
|
|
19
17
|
emailVerified: z.ZodOptional<z.ZodBoolean>;
|
|
20
18
|
}, z.core.$strip>;
|
|
@@ -33,9 +31,9 @@ export declare const FullPlatformUser: z.ZodObject<{
|
|
|
33
31
|
ineligibilityReason: z.ZodOptional<z.ZodEnum<{
|
|
34
32
|
disposable: "disposable";
|
|
35
33
|
blockedDomain: "blockedDomain";
|
|
36
|
-
notCompanyEmail: "notCompanyEmail";
|
|
37
34
|
}>>;
|
|
38
35
|
emailVerified: z.ZodOptional<z.ZodBoolean>;
|
|
36
|
+
isCompanyEmail: z.ZodOptional<z.ZodBoolean>;
|
|
39
37
|
}, z.core.$strip>;
|
|
40
38
|
export type FullPlatformUser = z.infer<typeof FullPlatformUser>;
|
|
41
39
|
export {};
|
|
@@ -20,13 +20,13 @@ export declare const IntegrationLayerStatsQuery: z.ZodObject<{
|
|
|
20
20
|
export type IntegrationLayerStatsQuery = z.infer<typeof IntegrationLayerStatsQuery>;
|
|
21
21
|
export declare const ActionRunsStatsQuery: z.ZodObject<{
|
|
22
22
|
actionId: z.ZodOptional<z.ZodString>;
|
|
23
|
-
|
|
23
|
+
connectionActionId: z.ZodOptional<z.ZodString>;
|
|
24
24
|
startDatetime: z.ZodString;
|
|
25
25
|
}, z.core.$strip>;
|
|
26
26
|
export type ActionRunsStatsQuery = z.infer<typeof ActionRunsStatsQuery>;
|
|
27
27
|
export declare const FlowRunsStatsQuery: z.ZodObject<{
|
|
28
|
-
|
|
29
|
-
|
|
28
|
+
integrationFlowId: z.ZodOptional<z.ZodString>;
|
|
29
|
+
connectionFlowId: z.ZodOptional<z.ZodString>;
|
|
30
30
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
31
31
|
startDatetime: z.ZodString;
|
|
32
32
|
}, z.core.$strip>;
|
|
@@ -5,8 +5,11 @@ export declare const ActionRunLogRecordApiResponse: z.ZodObject<{
|
|
|
5
5
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
6
6
|
id: z.ZodString;
|
|
7
7
|
name: z.ZodString;
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
universalActionId: z.ZodOptional<z.ZodString>;
|
|
9
|
+
integrationActionId: z.ZodString;
|
|
10
|
+
connectionActionId: z.ZodOptional<z.ZodString>;
|
|
11
|
+
actionId: z.ZodOptional<z.ZodString>;
|
|
12
|
+
actionInstanceId: z.ZodOptional<z.ZodString>;
|
|
10
13
|
integrationId: z.ZodString;
|
|
11
14
|
connectionId: z.ZodString;
|
|
12
15
|
input: z.ZodOptional<z.ZodAny>;
|
|
@@ -182,14 +185,17 @@ export type ActionRunLogRecordApiResponse = z.infer<typeof ActionRunLogRecordApi
|
|
|
182
185
|
export declare const FindActionRunLogsQuery: z.ZodObject<{
|
|
183
186
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
184
187
|
cursor: z.ZodOptional<z.ZodString>;
|
|
185
|
-
actionInstanceId: z.ZodOptional<z.ZodString>;
|
|
186
188
|
actionId: z.ZodOptional<z.ZodString>;
|
|
189
|
+
universalActionId: z.ZodOptional<z.ZodString>;
|
|
190
|
+
integrationActionId: z.ZodOptional<z.ZodString>;
|
|
191
|
+
connectionActionId: z.ZodOptional<z.ZodString>;
|
|
187
192
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
188
193
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
189
194
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
190
195
|
userId: z.ZodOptional<z.ZodString>;
|
|
191
196
|
status: z.ZodOptional<z.ZodEnum<typeof ActionRunLogStatus>>;
|
|
192
|
-
|
|
197
|
+
from: z.ZodOptional<z.ZodString>;
|
|
198
|
+
to: z.ZodOptional<z.ZodString>;
|
|
193
199
|
}, z.core.$strip>;
|
|
194
200
|
export type FindActionRunLogsQuery = z.infer<typeof FindActionRunLogsQuery>;
|
|
195
201
|
export declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
@@ -198,8 +204,11 @@ export declare const FindActionRunLogsResponse: z.ZodObject<{
|
|
|
198
204
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
199
205
|
id: z.ZodString;
|
|
200
206
|
name: z.ZodString;
|
|
201
|
-
|
|
202
|
-
|
|
207
|
+
universalActionId: z.ZodOptional<z.ZodString>;
|
|
208
|
+
integrationActionId: z.ZodString;
|
|
209
|
+
connectionActionId: z.ZodOptional<z.ZodString>;
|
|
210
|
+
actionId: z.ZodOptional<z.ZodString>;
|
|
211
|
+
actionInstanceId: z.ZodOptional<z.ZodString>;
|
|
203
212
|
integrationId: z.ZodString;
|
|
204
213
|
connectionId: z.ZodString;
|
|
205
214
|
input: z.ZodOptional<z.ZodAny>;
|
|
@@ -7,8 +7,8 @@ export declare const ListAppEventLogRecordsQuery: z.ZodObject<{
|
|
|
7
7
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
8
8
|
userId: z.ZodOptional<z.ZodString>;
|
|
9
9
|
appEventTypeId: z.ZodOptional<z.ZodString>;
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
from: z.ZodOptional<z.ZodString>;
|
|
11
|
+
to: z.ZodOptional<z.ZodString>;
|
|
12
12
|
}, z.core.$strip>;
|
|
13
13
|
export type ListAppEventLogRecordsQuery = z.infer<typeof ListAppEventLogRecordsQuery>;
|
|
14
14
|
export declare const AppEventLogRecordApiResponse: z.ZodObject<{
|
|
@@ -44,5 +44,21 @@ export declare const CustomerApiResponse: z.ZodObject<{
|
|
|
44
44
|
archivedAt: z.ZodOptional<z.ZodString>;
|
|
45
45
|
}, z.core.$strip>;
|
|
46
46
|
export type CustomerApiResponse = z.infer<typeof CustomerApiResponse>;
|
|
47
|
+
export declare const TenantSelfResponse: z.ZodObject<{
|
|
48
|
+
id: z.ZodString;
|
|
49
|
+
name: z.ZodString;
|
|
50
|
+
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
51
|
+
internalId: z.ZodString;
|
|
52
|
+
fields: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
53
|
+
credentials: z.ZodOptional<z.ZodAny>;
|
|
54
|
+
lastActiveAt: z.ZodOptional<z.ZodString>;
|
|
55
|
+
isTest: z.ZodOptional<z.ZodBoolean>;
|
|
56
|
+
isBillable: z.ZodOptional<z.ZodBoolean>;
|
|
57
|
+
isActive: z.ZodOptional<z.ZodBoolean>;
|
|
58
|
+
createdAt: z.ZodOptional<z.ZodString>;
|
|
59
|
+
archivedAt: z.ZodOptional<z.ZodString>;
|
|
60
|
+
workspaceKey: z.ZodOptional<z.ZodString>;
|
|
61
|
+
}, z.core.$strip>;
|
|
62
|
+
export type TenantSelfResponse = z.infer<typeof TenantSelfResponse>;
|
|
47
63
|
export type Customer = CustomerApiResponse;
|
|
48
64
|
export type User = Customer;
|
|
@@ -6,8 +6,8 @@ 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
|
-
|
|
10
|
-
|
|
9
|
+
from: z.ZodOptional<z.ZodString>;
|
|
10
|
+
to: z.ZodOptional<z.ZodString>;
|
|
11
11
|
sortOrder: z.ZodOptional<z.ZodEnum<{
|
|
12
12
|
desc: "desc";
|
|
13
13
|
asc: "asc";
|
|
@@ -9,7 +9,8 @@ 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
|
-
|
|
12
|
+
from: z.ZodOptional<z.ZodString>;
|
|
13
|
+
to: z.ZodOptional<z.ZodString>;
|
|
13
14
|
}, z.core.$strip>;
|
|
14
15
|
export type ListExternalEventLogRecordsQuery = z.infer<typeof ListExternalEventLogRecordsQuery>;
|
|
15
16
|
export declare const ExternalEventLogRecordApiResponse: z.ZodObject<{
|
|
@@ -20,7 +20,8 @@ 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
|
-
|
|
23
|
+
from: z.ZodOptional<z.ZodString>;
|
|
24
|
+
to: z.ZodOptional<z.ZodString>;
|
|
24
25
|
}, z.core.$strip>;
|
|
25
26
|
export type FindExternalEventPullsQuery = z.infer<typeof FindExternalEventPullsQuery>;
|
|
26
27
|
export declare const ExternalEventPullApiResponse: z.ZodObject<{
|
|
@@ -11,7 +11,8 @@ export interface FindExternalEventLogsQuery extends PaginationQuery {
|
|
|
11
11
|
externalEventSubscriptionId?: string;
|
|
12
12
|
connectionId?: string;
|
|
13
13
|
integrationId?: string;
|
|
14
|
-
|
|
14
|
+
from?: string;
|
|
15
|
+
to?: string;
|
|
15
16
|
status?: ExternalEventLogStatus;
|
|
16
17
|
}
|
|
17
18
|
export interface ExternalEventCustomPullSubscribeResponse {
|
|
@@ -11,15 +11,17 @@ export type CreateFlowRunRequest = z.infer<typeof CreateFlowRunRequest>;
|
|
|
11
11
|
export declare const FindFlowRunsQuery: z.ZodObject<{
|
|
12
12
|
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
13
13
|
cursor: z.ZodOptional<z.ZodString>;
|
|
14
|
-
flowInstanceId: z.ZodOptional<z.ZodString>;
|
|
15
14
|
flowId: z.ZodOptional<z.ZodString>;
|
|
16
15
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
16
|
+
integrationFlowId: z.ZodOptional<z.ZodString>;
|
|
17
|
+
connectionFlowId: z.ZodOptional<z.ZodString>;
|
|
17
18
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
18
19
|
userId: z.ZodOptional<z.ZodString>;
|
|
19
20
|
state: z.ZodOptional<z.ZodEnum<typeof FlowRunState>>;
|
|
20
21
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
21
22
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
22
|
-
|
|
23
|
+
from: z.ZodOptional<z.ZodString>;
|
|
24
|
+
to: z.ZodOptional<z.ZodString>;
|
|
23
25
|
}, z.core.$strip>;
|
|
24
26
|
export type FindFlowRunsQuery = z.infer<typeof FindFlowRunsQuery>;
|
|
25
27
|
export declare const FlowRunLaunchedByApi: z.ZodObject<{
|
|
@@ -34,8 +36,11 @@ export declare const FlowRunApiResponse: z.ZodObject<{
|
|
|
34
36
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
35
37
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
36
38
|
name: z.ZodOptional<z.ZodString>;
|
|
37
|
-
|
|
39
|
+
connectionFlowId: z.ZodString;
|
|
40
|
+
integrationFlowId: z.ZodOptional<z.ZodString>;
|
|
38
41
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
42
|
+
flowInstanceId: z.ZodOptional<z.ZodString>;
|
|
43
|
+
flowId: z.ZodOptional<z.ZodString>;
|
|
39
44
|
startNodeKey: z.ZodString;
|
|
40
45
|
input: z.ZodOptional<z.ZodAny>;
|
|
41
46
|
state: z.ZodEnum<typeof FlowRunState>;
|
|
@@ -216,8 +221,11 @@ export declare const FindFlowRunsResponse: z.ZodObject<{
|
|
|
216
221
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
217
222
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
218
223
|
name: z.ZodOptional<z.ZodString>;
|
|
219
|
-
|
|
224
|
+
connectionFlowId: z.ZodString;
|
|
225
|
+
integrationFlowId: z.ZodOptional<z.ZodString>;
|
|
220
226
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
227
|
+
flowInstanceId: z.ZodOptional<z.ZodString>;
|
|
228
|
+
flowId: z.ZodOptional<z.ZodString>;
|
|
221
229
|
startNodeKey: z.ZodString;
|
|
222
230
|
input: z.ZodOptional<z.ZodAny>;
|
|
223
231
|
state: z.ZodEnum<typeof FlowRunState>;
|
|
@@ -7,7 +7,8 @@ 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
|
-
|
|
10
|
+
from: z.ZodOptional<z.ZodString>;
|
|
11
|
+
to: z.ZodOptional<z.ZodString>;
|
|
11
12
|
}, z.core.$strip>;
|
|
12
13
|
export type ListIncomingWebhooksQuery = z.infer<typeof ListIncomingWebhooksQuery>;
|
|
13
14
|
export declare const IncomingWebhookApiResponse: z.ZodObject<{
|
|
@@ -9,8 +9,11 @@ export declare const BaseActionRunLogRecord: z.ZodObject<{
|
|
|
9
9
|
tenantId: z.ZodOptional<z.ZodString>;
|
|
10
10
|
id: z.ZodString;
|
|
11
11
|
name: z.ZodString;
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
universalActionId: z.ZodOptional<z.ZodString>;
|
|
13
|
+
integrationActionId: z.ZodString;
|
|
14
|
+
connectionActionId: z.ZodOptional<z.ZodString>;
|
|
15
|
+
actionId: z.ZodOptional<z.ZodString>;
|
|
16
|
+
actionInstanceId: z.ZodOptional<z.ZodString>;
|
|
14
17
|
integrationId: z.ZodString;
|
|
15
18
|
connectionId: z.ZodString;
|
|
16
19
|
input: z.ZodOptional<z.ZodAny>;
|
|
@@ -10,7 +10,8 @@ export interface FindExternalEventLogsQuery extends PaginationQuery {
|
|
|
10
10
|
externalEventSubscriptionId?: string;
|
|
11
11
|
connectionId?: string;
|
|
12
12
|
integrationId?: string;
|
|
13
|
-
|
|
13
|
+
from?: string;
|
|
14
|
+
to?: string;
|
|
14
15
|
status?: ExternalEventLogStatus;
|
|
15
16
|
}
|
|
16
17
|
export interface FindExternalEventPullsQuery extends PaginationQuery {
|
|
@@ -18,5 +19,6 @@ export interface FindExternalEventPullsQuery extends PaginationQuery {
|
|
|
18
19
|
externalEventSubscriptionId?: string;
|
|
19
20
|
integrationId?: string;
|
|
20
21
|
connectionId?: string;
|
|
21
|
-
|
|
22
|
+
from?: string;
|
|
23
|
+
to?: string;
|
|
22
24
|
}
|
|
@@ -39,8 +39,11 @@ export declare const BaseFlowRun: z.ZodObject<{
|
|
|
39
39
|
integrationId: z.ZodOptional<z.ZodString>;
|
|
40
40
|
connectionId: z.ZodOptional<z.ZodString>;
|
|
41
41
|
name: z.ZodOptional<z.ZodString>;
|
|
42
|
-
|
|
42
|
+
connectionFlowId: z.ZodString;
|
|
43
|
+
integrationFlowId: z.ZodOptional<z.ZodString>;
|
|
43
44
|
universalFlowId: z.ZodOptional<z.ZodString>;
|
|
45
|
+
flowInstanceId: z.ZodOptional<z.ZodString>;
|
|
46
|
+
flowId: z.ZodOptional<z.ZodString>;
|
|
44
47
|
startNodeKey: z.ZodString;
|
|
45
48
|
input: z.ZodOptional<z.ZodAny>;
|
|
46
49
|
state: z.ZodEnum<typeof FlowRunState>;
|