@keystrokehq/parseur 0.1.4 → 0.1.5
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/actions/copy-document.d.cts +13 -1
- package/dist/actions/copy-document.d.mts +13 -1
- package/dist/actions/copy-mailbox.d.cts +13 -1
- package/dist/actions/copy-mailbox.d.mts +13 -1
- package/dist/actions/create-custom-download.d.cts +13 -1
- package/dist/actions/create-custom-download.d.mts +13 -1
- package/dist/actions/create-mailbox.d.cts +18 -6
- package/dist/actions/create-mailbox.d.mts +18 -6
- package/dist/actions/delete-custom-download.d.cts +13 -1
- package/dist/actions/delete-custom-download.d.mts +13 -1
- package/dist/actions/delete-document.d.cts +13 -1
- package/dist/actions/delete-document.d.mts +13 -1
- package/dist/actions/delete-mailbox.d.cts +13 -1
- package/dist/actions/delete-mailbox.d.mts +13 -1
- package/dist/actions/delete-webhook.d.cts +13 -1
- package/dist/actions/delete-webhook.d.mts +13 -1
- package/dist/actions/disable-webhook.d.cts +13 -1
- package/dist/actions/disable-webhook.d.mts +13 -1
- package/dist/actions/enable-webhook.d.cts +13 -1
- package/dist/actions/enable-webhook.d.mts +13 -1
- package/dist/actions/get-bootstrap-config.d.cts +13 -1
- package/dist/actions/get-bootstrap-config.d.cts.map +1 -1
- package/dist/actions/get-bootstrap-config.d.mts +13 -1
- package/dist/actions/get-bootstrap-config.d.mts.map +1 -1
- package/dist/actions/get-document-logs.d.cts +13 -1
- package/dist/actions/get-document-logs.d.mts +13 -1
- package/dist/actions/get-document.d.cts +15 -3
- package/dist/actions/get-document.d.mts +15 -3
- package/dist/actions/get-mailbox-schema.d.cts +13 -1
- package/dist/actions/get-mailbox-schema.d.mts +13 -1
- package/dist/actions/get-mailbox.d.cts +13 -1
- package/dist/actions/get-mailbox.d.mts +13 -1
- package/dist/actions/list-custom-downloads.d.cts +13 -1
- package/dist/actions/list-custom-downloads.d.mts +13 -1
- package/dist/actions/list-documents-in-mailbox.d.cts +13 -1
- package/dist/actions/list-documents-in-mailbox.d.mts +13 -1
- package/dist/actions/list-mailboxes2.d.cts +13 -1
- package/dist/actions/list-mailboxes2.d.mts +13 -1
- package/dist/actions/list-templates.d.cts +16 -4
- package/dist/actions/list-templates.d.mts +16 -4
- package/dist/actions/reprocess-document.d.cts +13 -1
- package/dist/actions/reprocess-document.d.mts +13 -1
- package/dist/actions/retrieve-webhook.d.cts +13 -1
- package/dist/actions/retrieve-webhook.d.mts +13 -1
- package/dist/actions/skip-document.d.cts +13 -1
- package/dist/actions/skip-document.d.mts +13 -1
- package/dist/actions/update-custom-download.d.cts +13 -1
- package/dist/actions/update-custom-download.d.mts +13 -1
- package/dist/actions/update-mailbox.d.cts +16 -4
- package/dist/actions/update-mailbox.d.mts +16 -4
- package/dist/actions/update-webhook.d.cts +13 -1
- package/dist/actions/update-webhook.d.cts.map +1 -1
- package/dist/actions/update-webhook.d.mts +13 -1
- package/dist/actions/update-webhook.d.mts.map +1 -1
- package/dist/actions/upload-email-document.d.cts +13 -1
- package/dist/actions/upload-email-document.d.mts +13 -1
- package/dist/app.cjs +5 -2
- package/dist/app.cjs.map +1 -1
- package/dist/app.d.cts +9 -1
- package/dist/app.d.cts.map +1 -1
- package/dist/app.d.mts +9 -1
- package/dist/app.d.mts.map +1 -1
- package/dist/app.mjs +3 -1
- package/dist/app.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -10,7 +10,6 @@ declare const ParseurGetDocumentOutput: z.ZodObject<{
|
|
|
10
10
|
parser: z.ZodNullable<z.ZodNumber>;
|
|
11
11
|
result: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
12
|
status: z.ZodNullable<z.ZodEnum<{
|
|
13
|
-
PROGRESS: "PROGRESS";
|
|
14
13
|
SPLIT: "SPLIT";
|
|
15
14
|
INVALID: "INVALID";
|
|
16
15
|
SKIPPED: "SKIPPED";
|
|
@@ -19,6 +18,7 @@ declare const ParseurGetDocumentOutput: z.ZodObject<{
|
|
|
19
18
|
INCOMING: "INCOMING";
|
|
20
19
|
PARSEDKO: "PARSEDKO";
|
|
21
20
|
PARSEDOK: "PARSEDOK";
|
|
21
|
+
PROGRESS: "PROGRESS";
|
|
22
22
|
QUOTAEXC: "QUOTAEXC";
|
|
23
23
|
ANALYZING: "ANALYZING";
|
|
24
24
|
}>>;
|
|
@@ -46,11 +46,11 @@ declare const ParseurGetDocumentOutput: z.ZodObject<{
|
|
|
46
46
|
is_splittable: z.ZodNullable<z.ZodBoolean>;
|
|
47
47
|
ocr_ready_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
48
48
|
status_source: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
49
|
-
MANUAL: "MANUAL";
|
|
50
49
|
AI: "AI";
|
|
51
50
|
AUTO: "AUTO";
|
|
52
51
|
CSV: "CSV";
|
|
53
52
|
METADATA: "METADATA";
|
|
53
|
+
MANUAL: "MANUAL";
|
|
54
54
|
TEMPLATE: "TEMPLATE";
|
|
55
55
|
TRANSFORM: "TRANSFORM";
|
|
56
56
|
}>>>;
|
|
@@ -65,7 +65,19 @@ declare const ParseurGetDocumentOutput: z.ZodObject<{
|
|
|
65
65
|
}, z.core.$loose>;
|
|
66
66
|
declare const parseurGetDocument: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
67
67
|
id: string;
|
|
68
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
68
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
69
|
+
connectionId: z.ZodString;
|
|
70
|
+
entityId: z.ZodString;
|
|
71
|
+
instanceId: z.ZodString;
|
|
72
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
73
|
+
generic_api_key: z.ZodString;
|
|
74
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
75
|
+
connectionId: z.ZodString;
|
|
76
|
+
entityId: z.ZodString;
|
|
77
|
+
instanceId: z.ZodString;
|
|
78
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
79
|
+
generic_api_key: z.ZodString;
|
|
80
|
+
}, z.core.$strip>>]>;
|
|
69
81
|
//#endregion
|
|
70
82
|
export { parseurGetDocument };
|
|
71
83
|
//# sourceMappingURL=get-document.d.cts.map
|
|
@@ -10,7 +10,6 @@ declare const ParseurGetDocumentOutput: z.ZodObject<{
|
|
|
10
10
|
parser: z.ZodNullable<z.ZodNumber>;
|
|
11
11
|
result: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
12
|
status: z.ZodNullable<z.ZodEnum<{
|
|
13
|
-
PROGRESS: "PROGRESS";
|
|
14
13
|
SPLIT: "SPLIT";
|
|
15
14
|
INVALID: "INVALID";
|
|
16
15
|
SKIPPED: "SKIPPED";
|
|
@@ -19,6 +18,7 @@ declare const ParseurGetDocumentOutput: z.ZodObject<{
|
|
|
19
18
|
INCOMING: "INCOMING";
|
|
20
19
|
PARSEDKO: "PARSEDKO";
|
|
21
20
|
PARSEDOK: "PARSEDOK";
|
|
21
|
+
PROGRESS: "PROGRESS";
|
|
22
22
|
QUOTAEXC: "QUOTAEXC";
|
|
23
23
|
ANALYZING: "ANALYZING";
|
|
24
24
|
}>>;
|
|
@@ -46,11 +46,11 @@ declare const ParseurGetDocumentOutput: z.ZodObject<{
|
|
|
46
46
|
is_splittable: z.ZodNullable<z.ZodBoolean>;
|
|
47
47
|
ocr_ready_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
48
48
|
status_source: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
49
|
-
MANUAL: "MANUAL";
|
|
50
49
|
AI: "AI";
|
|
51
50
|
AUTO: "AUTO";
|
|
52
51
|
CSV: "CSV";
|
|
53
52
|
METADATA: "METADATA";
|
|
53
|
+
MANUAL: "MANUAL";
|
|
54
54
|
TEMPLATE: "TEMPLATE";
|
|
55
55
|
TRANSFORM: "TRANSFORM";
|
|
56
56
|
}>>>;
|
|
@@ -65,7 +65,19 @@ declare const ParseurGetDocumentOutput: z.ZodObject<{
|
|
|
65
65
|
}, z.core.$loose>;
|
|
66
66
|
declare const parseurGetDocument: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
67
67
|
id: string;
|
|
68
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
68
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
69
|
+
connectionId: z.ZodString;
|
|
70
|
+
entityId: z.ZodString;
|
|
71
|
+
instanceId: z.ZodString;
|
|
72
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
73
|
+
generic_api_key: z.ZodString;
|
|
74
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
75
|
+
connectionId: z.ZodString;
|
|
76
|
+
entityId: z.ZodString;
|
|
77
|
+
instanceId: z.ZodString;
|
|
78
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
79
|
+
generic_api_key: z.ZodString;
|
|
80
|
+
}, z.core.$strip>>]>;
|
|
69
81
|
//#endregion
|
|
70
82
|
export { parseurGetDocument };
|
|
71
83
|
//# sourceMappingURL=get-document.d.mts.map
|
|
@@ -10,7 +10,19 @@ declare const ParseurGetMailboxSchemaOutput: z.ZodObject<{
|
|
|
10
10
|
}, z.core.$loose>;
|
|
11
11
|
declare const parseurGetMailboxSchema: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
12
12
|
mailbox_id: string;
|
|
13
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
13
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
14
|
+
connectionId: z.ZodString;
|
|
15
|
+
entityId: z.ZodString;
|
|
16
|
+
instanceId: z.ZodString;
|
|
17
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18
|
+
generic_api_key: z.ZodString;
|
|
19
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
20
|
+
connectionId: z.ZodString;
|
|
21
|
+
entityId: z.ZodString;
|
|
22
|
+
instanceId: z.ZodString;
|
|
23
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24
|
+
generic_api_key: z.ZodString;
|
|
25
|
+
}, z.core.$strip>>]>;
|
|
14
26
|
//#endregion
|
|
15
27
|
export { parseurGetMailboxSchema };
|
|
16
28
|
//# sourceMappingURL=get-mailbox-schema.d.cts.map
|
|
@@ -10,7 +10,19 @@ declare const ParseurGetMailboxSchemaOutput: z.ZodObject<{
|
|
|
10
10
|
}, z.core.$loose>;
|
|
11
11
|
declare const parseurGetMailboxSchema: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
12
12
|
mailbox_id: string;
|
|
13
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
13
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
14
|
+
connectionId: z.ZodString;
|
|
15
|
+
entityId: z.ZodString;
|
|
16
|
+
instanceId: z.ZodString;
|
|
17
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18
|
+
generic_api_key: z.ZodString;
|
|
19
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
20
|
+
connectionId: z.ZodString;
|
|
21
|
+
entityId: z.ZodString;
|
|
22
|
+
instanceId: z.ZodString;
|
|
23
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24
|
+
generic_api_key: z.ZodString;
|
|
25
|
+
}, z.core.$strip>>]>;
|
|
14
26
|
//#endregion
|
|
15
27
|
export { parseurGetMailboxSchema };
|
|
16
28
|
//# sourceMappingURL=get-mailbox-schema.d.mts.map
|
|
@@ -147,7 +147,19 @@ declare const ParseurGetMailboxOutput: z.ZodObject<{
|
|
|
147
147
|
}, z.core.$loose>;
|
|
148
148
|
declare const parseurGetMailbox: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
149
149
|
id: number;
|
|
150
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
150
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
151
|
+
connectionId: z.ZodString;
|
|
152
|
+
entityId: z.ZodString;
|
|
153
|
+
instanceId: z.ZodString;
|
|
154
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
155
|
+
generic_api_key: z.ZodString;
|
|
156
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
157
|
+
connectionId: z.ZodString;
|
|
158
|
+
entityId: z.ZodString;
|
|
159
|
+
instanceId: z.ZodString;
|
|
160
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
161
|
+
generic_api_key: z.ZodString;
|
|
162
|
+
}, z.core.$strip>>]>;
|
|
151
163
|
//#endregion
|
|
152
164
|
export { parseurGetMailbox };
|
|
153
165
|
//# sourceMappingURL=get-mailbox.d.cts.map
|
|
@@ -147,7 +147,19 @@ declare const ParseurGetMailboxOutput: z.ZodObject<{
|
|
|
147
147
|
}, z.core.$loose>;
|
|
148
148
|
declare const parseurGetMailbox: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
149
149
|
id: number;
|
|
150
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
150
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
151
|
+
connectionId: z.ZodString;
|
|
152
|
+
entityId: z.ZodString;
|
|
153
|
+
instanceId: z.ZodString;
|
|
154
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
155
|
+
generic_api_key: z.ZodString;
|
|
156
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
157
|
+
connectionId: z.ZodString;
|
|
158
|
+
entityId: z.ZodString;
|
|
159
|
+
instanceId: z.ZodString;
|
|
160
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
161
|
+
generic_api_key: z.ZodString;
|
|
162
|
+
}, z.core.$strip>>]>;
|
|
151
163
|
//#endregion
|
|
152
164
|
export { parseurGetMailbox };
|
|
153
165
|
//# sourceMappingURL=get-mailbox.d.mts.map
|
|
@@ -21,7 +21,19 @@ declare const ParseurListCustomDownloadsOutput: z.ZodObject<{
|
|
|
21
21
|
}, z.core.$loose>;
|
|
22
22
|
declare const parseurListCustomDownloads: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
23
23
|
id: string;
|
|
24
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
24
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
generic_api_key: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
generic_api_key: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>;
|
|
25
37
|
//#endregion
|
|
26
38
|
export { parseurListCustomDownloads };
|
|
27
39
|
//# sourceMappingURL=list-custom-downloads.d.cts.map
|
|
@@ -21,7 +21,19 @@ declare const ParseurListCustomDownloadsOutput: z.ZodObject<{
|
|
|
21
21
|
}, z.core.$loose>;
|
|
22
22
|
declare const parseurListCustomDownloads: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
23
23
|
id: string;
|
|
24
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
24
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
generic_api_key: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
31
|
+
connectionId: z.ZodString;
|
|
32
|
+
entityId: z.ZodString;
|
|
33
|
+
instanceId: z.ZodString;
|
|
34
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
35
|
+
generic_api_key: z.ZodString;
|
|
36
|
+
}, z.core.$strip>>]>;
|
|
25
37
|
//#endregion
|
|
26
38
|
export { parseurListCustomDownloads };
|
|
27
39
|
//# sourceMappingURL=list-custom-downloads.d.mts.map
|
|
@@ -49,7 +49,19 @@ declare const parseurListDocumentsInMailbox: import("@keystrokehq/action").Workf
|
|
|
49
49
|
with_result?: boolean | undefined;
|
|
50
50
|
received_after?: string | undefined;
|
|
51
51
|
received_before?: string | undefined;
|
|
52
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
52
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
53
|
+
connectionId: z.ZodString;
|
|
54
|
+
entityId: z.ZodString;
|
|
55
|
+
instanceId: z.ZodString;
|
|
56
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
57
|
+
generic_api_key: z.ZodString;
|
|
58
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
59
|
+
connectionId: z.ZodString;
|
|
60
|
+
entityId: z.ZodString;
|
|
61
|
+
instanceId: z.ZodString;
|
|
62
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
63
|
+
generic_api_key: z.ZodString;
|
|
64
|
+
}, z.core.$strip>>]>;
|
|
53
65
|
//#endregion
|
|
54
66
|
export { parseurListDocumentsInMailbox };
|
|
55
67
|
//# sourceMappingURL=list-documents-in-mailbox.d.cts.map
|
|
@@ -49,7 +49,19 @@ declare const parseurListDocumentsInMailbox: import("@keystrokehq/action").Workf
|
|
|
49
49
|
with_result?: boolean | undefined;
|
|
50
50
|
received_after?: string | undefined;
|
|
51
51
|
received_before?: string | undefined;
|
|
52
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
52
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
53
|
+
connectionId: z.ZodString;
|
|
54
|
+
entityId: z.ZodString;
|
|
55
|
+
instanceId: z.ZodString;
|
|
56
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
57
|
+
generic_api_key: z.ZodString;
|
|
58
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
59
|
+
connectionId: z.ZodString;
|
|
60
|
+
entityId: z.ZodString;
|
|
61
|
+
instanceId: z.ZodString;
|
|
62
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
63
|
+
generic_api_key: z.ZodString;
|
|
64
|
+
}, z.core.$strip>>]>;
|
|
53
65
|
//#endregion
|
|
54
66
|
export { parseurListDocumentsInMailbox };
|
|
55
67
|
//# sourceMappingURL=list-documents-in-mailbox.d.mts.map
|
|
@@ -120,7 +120,19 @@ declare const parseurListMailboxes2: import("@keystrokehq/action").WorkflowActio
|
|
|
120
120
|
search?: string | undefined;
|
|
121
121
|
ordering?: "name" | "document_count" | "template_count" | "-name" | "-document_count" | "-template_count" | "PARSEDOK_count" | "-PARSEDOK_count" | "PARSEDKO_count" | "-PARSEDKO_count" | "QUOTAEXC_count" | "-QUOTAEXC_count" | "EXPORTKO_count" | "-EXPORTKO_count" | "TRANSKO_count" | "-TRANSKO_count" | undefined;
|
|
122
122
|
page_size?: number | undefined;
|
|
123
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
123
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
124
|
+
connectionId: z.ZodString;
|
|
125
|
+
entityId: z.ZodString;
|
|
126
|
+
instanceId: z.ZodString;
|
|
127
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
128
|
+
generic_api_key: z.ZodString;
|
|
129
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
130
|
+
connectionId: z.ZodString;
|
|
131
|
+
entityId: z.ZodString;
|
|
132
|
+
instanceId: z.ZodString;
|
|
133
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
134
|
+
generic_api_key: z.ZodString;
|
|
135
|
+
}, z.core.$strip>>]>;
|
|
124
136
|
//#endregion
|
|
125
137
|
export { parseurListMailboxes2 };
|
|
126
138
|
//# sourceMappingURL=list-mailboxes2.d.cts.map
|
|
@@ -120,7 +120,19 @@ declare const parseurListMailboxes2: import("@keystrokehq/action").WorkflowActio
|
|
|
120
120
|
search?: string | undefined;
|
|
121
121
|
ordering?: "name" | "document_count" | "template_count" | "-name" | "-document_count" | "-template_count" | "PARSEDOK_count" | "-PARSEDOK_count" | "PARSEDKO_count" | "-PARSEDKO_count" | "QUOTAEXC_count" | "-QUOTAEXC_count" | "EXPORTKO_count" | "-EXPORTKO_count" | "TRANSKO_count" | "-TRANSKO_count" | undefined;
|
|
122
122
|
page_size?: number | undefined;
|
|
123
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
123
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
124
|
+
connectionId: z.ZodString;
|
|
125
|
+
entityId: z.ZodString;
|
|
126
|
+
instanceId: z.ZodString;
|
|
127
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
128
|
+
generic_api_key: z.ZodString;
|
|
129
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
130
|
+
connectionId: z.ZodString;
|
|
131
|
+
entityId: z.ZodString;
|
|
132
|
+
instanceId: z.ZodString;
|
|
133
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
134
|
+
generic_api_key: z.ZodString;
|
|
135
|
+
}, z.core.$strip>>]>;
|
|
124
136
|
//#endregion
|
|
125
137
|
export { parseurListMailboxes2 };
|
|
126
138
|
//# sourceMappingURL=list-mailboxes2.d.mts.map
|
|
@@ -7,16 +7,16 @@ declare const ParseurListTemplatesInput: z.ZodObject<{
|
|
|
7
7
|
ordering: z.ZodOptional<z.ZodEnum<{
|
|
8
8
|
name: "name";
|
|
9
9
|
last_activity: "last_activity";
|
|
10
|
-
document_count: "document_count";
|
|
11
10
|
status: "status";
|
|
11
|
+
document_count: "document_count";
|
|
12
12
|
created: "created";
|
|
13
13
|
"-name": "-name";
|
|
14
14
|
"-created": "-created";
|
|
15
15
|
modified: "modified";
|
|
16
16
|
"-modified": "-modified";
|
|
17
17
|
"-status": "-status";
|
|
18
|
-
"-document_count": "-document_count";
|
|
19
18
|
"-last_activity": "-last_activity";
|
|
19
|
+
"-document_count": "-document_count";
|
|
20
20
|
}>>;
|
|
21
21
|
page_size: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
22
22
|
mailbox_id: z.ZodString;
|
|
@@ -39,9 +39,21 @@ declare const parseurListTemplates: import("@keystrokehq/action").WorkflowAction
|
|
|
39
39
|
mailbox_id: string;
|
|
40
40
|
page?: number | undefined;
|
|
41
41
|
search?: string | undefined;
|
|
42
|
-
ordering?: "name" | "last_activity" | "
|
|
42
|
+
ordering?: "name" | "last_activity" | "status" | "document_count" | "created" | "-name" | "-created" | "modified" | "-modified" | "-status" | "-last_activity" | "-document_count" | undefined;
|
|
43
43
|
page_size?: number | undefined;
|
|
44
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
44
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
45
|
+
connectionId: z.ZodString;
|
|
46
|
+
entityId: z.ZodString;
|
|
47
|
+
instanceId: z.ZodString;
|
|
48
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
49
|
+
generic_api_key: z.ZodString;
|
|
50
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
51
|
+
connectionId: z.ZodString;
|
|
52
|
+
entityId: z.ZodString;
|
|
53
|
+
instanceId: z.ZodString;
|
|
54
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
55
|
+
generic_api_key: z.ZodString;
|
|
56
|
+
}, z.core.$strip>>]>;
|
|
45
57
|
//#endregion
|
|
46
58
|
export { parseurListTemplates };
|
|
47
59
|
//# sourceMappingURL=list-templates.d.cts.map
|
|
@@ -7,16 +7,16 @@ declare const ParseurListTemplatesInput: z.ZodObject<{
|
|
|
7
7
|
ordering: z.ZodOptional<z.ZodEnum<{
|
|
8
8
|
name: "name";
|
|
9
9
|
last_activity: "last_activity";
|
|
10
|
-
document_count: "document_count";
|
|
11
10
|
status: "status";
|
|
11
|
+
document_count: "document_count";
|
|
12
12
|
created: "created";
|
|
13
13
|
"-name": "-name";
|
|
14
14
|
"-created": "-created";
|
|
15
15
|
modified: "modified";
|
|
16
16
|
"-modified": "-modified";
|
|
17
17
|
"-status": "-status";
|
|
18
|
-
"-document_count": "-document_count";
|
|
19
18
|
"-last_activity": "-last_activity";
|
|
19
|
+
"-document_count": "-document_count";
|
|
20
20
|
}>>;
|
|
21
21
|
page_size: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
22
22
|
mailbox_id: z.ZodString;
|
|
@@ -39,9 +39,21 @@ declare const parseurListTemplates: import("@keystrokehq/action").WorkflowAction
|
|
|
39
39
|
mailbox_id: string;
|
|
40
40
|
page?: number | undefined;
|
|
41
41
|
search?: string | undefined;
|
|
42
|
-
ordering?: "name" | "last_activity" | "
|
|
42
|
+
ordering?: "name" | "last_activity" | "status" | "document_count" | "created" | "-name" | "-created" | "modified" | "-modified" | "-status" | "-last_activity" | "-document_count" | undefined;
|
|
43
43
|
page_size?: number | undefined;
|
|
44
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
44
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
45
|
+
connectionId: z.ZodString;
|
|
46
|
+
entityId: z.ZodString;
|
|
47
|
+
instanceId: z.ZodString;
|
|
48
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
49
|
+
generic_api_key: z.ZodString;
|
|
50
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
51
|
+
connectionId: z.ZodString;
|
|
52
|
+
entityId: z.ZodString;
|
|
53
|
+
instanceId: z.ZodString;
|
|
54
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
55
|
+
generic_api_key: z.ZodString;
|
|
56
|
+
}, z.core.$strip>>]>;
|
|
45
57
|
//#endregion
|
|
46
58
|
export { parseurListTemplates };
|
|
47
59
|
//# sourceMappingURL=list-templates.d.mts.map
|
|
@@ -11,7 +11,19 @@ declare const ParseurReprocessDocumentOutput: z.ZodObject<{
|
|
|
11
11
|
}, z.core.$loose>;
|
|
12
12
|
declare const parseurReprocessDocument: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
13
13
|
document_id: string;
|
|
14
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
14
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
15
|
+
connectionId: z.ZodString;
|
|
16
|
+
entityId: z.ZodString;
|
|
17
|
+
instanceId: z.ZodString;
|
|
18
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19
|
+
generic_api_key: z.ZodString;
|
|
20
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
generic_api_key: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>;
|
|
15
27
|
//#endregion
|
|
16
28
|
export { parseurReprocessDocument };
|
|
17
29
|
//# sourceMappingURL=reprocess-document.d.cts.map
|
|
@@ -11,7 +11,19 @@ declare const ParseurReprocessDocumentOutput: z.ZodObject<{
|
|
|
11
11
|
}, z.core.$loose>;
|
|
12
12
|
declare const parseurReprocessDocument: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
13
13
|
document_id: string;
|
|
14
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
14
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
15
|
+
connectionId: z.ZodString;
|
|
16
|
+
entityId: z.ZodString;
|
|
17
|
+
instanceId: z.ZodString;
|
|
18
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19
|
+
generic_api_key: z.ZodString;
|
|
20
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
generic_api_key: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>;
|
|
15
27
|
//#endregion
|
|
16
28
|
export { parseurReprocessDocument };
|
|
17
29
|
//# sourceMappingURL=reprocess-document.d.mts.map
|
|
@@ -23,7 +23,19 @@ declare const ParseurRetrieveWebhookOutput: z.ZodObject<{
|
|
|
23
23
|
}, z.core.$loose>;
|
|
24
24
|
declare const parseurRetrieveWebhook: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
25
25
|
webhook_id: string;
|
|
26
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
26
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
generic_api_key: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
33
|
+
connectionId: z.ZodString;
|
|
34
|
+
entityId: z.ZodString;
|
|
35
|
+
instanceId: z.ZodString;
|
|
36
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37
|
+
generic_api_key: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>;
|
|
27
39
|
//#endregion
|
|
28
40
|
export { parseurRetrieveWebhook };
|
|
29
41
|
//# sourceMappingURL=retrieve-webhook.d.cts.map
|
|
@@ -23,7 +23,19 @@ declare const ParseurRetrieveWebhookOutput: z.ZodObject<{
|
|
|
23
23
|
}, z.core.$loose>;
|
|
24
24
|
declare const parseurRetrieveWebhook: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
25
25
|
webhook_id: string;
|
|
26
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
26
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
27
|
+
connectionId: z.ZodString;
|
|
28
|
+
entityId: z.ZodString;
|
|
29
|
+
instanceId: z.ZodString;
|
|
30
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31
|
+
generic_api_key: z.ZodString;
|
|
32
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
33
|
+
connectionId: z.ZodString;
|
|
34
|
+
entityId: z.ZodString;
|
|
35
|
+
instanceId: z.ZodString;
|
|
36
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
37
|
+
generic_api_key: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>;
|
|
27
39
|
//#endregion
|
|
28
40
|
export { parseurRetrieveWebhook };
|
|
29
41
|
//# sourceMappingURL=retrieve-webhook.d.mts.map
|
|
@@ -45,7 +45,19 @@ declare const ParseurSkipDocumentOutput: z.ZodObject<{
|
|
|
45
45
|
}, z.core.$loose>;
|
|
46
46
|
declare const parseurSkipDocument: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
47
47
|
id: string;
|
|
48
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
48
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
49
|
+
connectionId: z.ZodString;
|
|
50
|
+
entityId: z.ZodString;
|
|
51
|
+
instanceId: z.ZodString;
|
|
52
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
53
|
+
generic_api_key: z.ZodString;
|
|
54
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
55
|
+
connectionId: z.ZodString;
|
|
56
|
+
entityId: z.ZodString;
|
|
57
|
+
instanceId: z.ZodString;
|
|
58
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
59
|
+
generic_api_key: z.ZodString;
|
|
60
|
+
}, z.core.$strip>>]>;
|
|
49
61
|
//#endregion
|
|
50
62
|
export { parseurSkipDocument };
|
|
51
63
|
//# sourceMappingURL=skip-document.d.cts.map
|
|
@@ -45,7 +45,19 @@ declare const ParseurSkipDocumentOutput: z.ZodObject<{
|
|
|
45
45
|
}, z.core.$loose>;
|
|
46
46
|
declare const parseurSkipDocument: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
47
47
|
id: string;
|
|
48
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
48
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
49
|
+
connectionId: z.ZodString;
|
|
50
|
+
entityId: z.ZodString;
|
|
51
|
+
instanceId: z.ZodString;
|
|
52
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
53
|
+
generic_api_key: z.ZodString;
|
|
54
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
55
|
+
connectionId: z.ZodString;
|
|
56
|
+
entityId: z.ZodString;
|
|
57
|
+
instanceId: z.ZodString;
|
|
58
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
59
|
+
generic_api_key: z.ZodString;
|
|
60
|
+
}, z.core.$strip>>]>;
|
|
49
61
|
//#endregion
|
|
50
62
|
export { parseurSkipDocument };
|
|
51
63
|
//# sourceMappingURL=skip-document.d.mts.map
|
|
@@ -34,7 +34,19 @@ declare const parseurUpdateCustomDownload: import("@keystrokehq/action").Workflo
|
|
|
34
34
|
items?: string[] | undefined;
|
|
35
35
|
parser_field_id?: string | undefined;
|
|
36
36
|
parser_field_name?: string | undefined;
|
|
37
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
37
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
38
|
+
connectionId: z.ZodString;
|
|
39
|
+
entityId: z.ZodString;
|
|
40
|
+
instanceId: z.ZodString;
|
|
41
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
42
|
+
generic_api_key: z.ZodString;
|
|
43
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
44
|
+
connectionId: z.ZodString;
|
|
45
|
+
entityId: z.ZodString;
|
|
46
|
+
instanceId: z.ZodString;
|
|
47
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
48
|
+
generic_api_key: z.ZodString;
|
|
49
|
+
}, z.core.$strip>>]>;
|
|
38
50
|
//#endregion
|
|
39
51
|
export { parseurUpdateCustomDownload };
|
|
40
52
|
//# sourceMappingURL=update-custom-download.d.cts.map
|
|
@@ -34,7 +34,19 @@ declare const parseurUpdateCustomDownload: import("@keystrokehq/action").Workflo
|
|
|
34
34
|
items?: string[] | undefined;
|
|
35
35
|
parser_field_id?: string | undefined;
|
|
36
36
|
parser_field_name?: string | undefined;
|
|
37
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
37
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
38
|
+
connectionId: z.ZodString;
|
|
39
|
+
entityId: z.ZodString;
|
|
40
|
+
instanceId: z.ZodString;
|
|
41
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
42
|
+
generic_api_key: z.ZodString;
|
|
43
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
44
|
+
connectionId: z.ZodString;
|
|
45
|
+
entityId: z.ZodString;
|
|
46
|
+
instanceId: z.ZodString;
|
|
47
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
48
|
+
generic_api_key: z.ZodString;
|
|
49
|
+
}, z.core.$strip>>]>;
|
|
38
50
|
//#endregion
|
|
39
51
|
export { parseurUpdateCustomDownload };
|
|
40
52
|
//# sourceMappingURL=update-custom-download.d.mts.map
|
|
@@ -81,10 +81,10 @@ declare const ParseurUpdateMailboxInput: z.ZodObject<{
|
|
|
81
81
|
start_index: z.ZodNumber;
|
|
82
82
|
}, z.core.$loose>>>;
|
|
83
83
|
identification_status: z.ZodOptional<z.ZodEnum<{
|
|
84
|
-
REQUESTED: "REQUESTED";
|
|
85
84
|
PROGRESS: "PROGRESS";
|
|
86
|
-
COMPLETED: "COMPLETED";
|
|
87
85
|
MANUAL: "MANUAL";
|
|
86
|
+
REQUESTED: "REQUESTED";
|
|
87
|
+
COMPLETED: "COMPLETED";
|
|
88
88
|
}>>;
|
|
89
89
|
attachments_only_override: z.ZodOptional<z.ZodBoolean>;
|
|
90
90
|
}, z.core.$strip>;
|
|
@@ -195,9 +195,21 @@ declare const parseurUpdateMailbox: import("@keystrokehq/action").WorkflowAction
|
|
|
195
195
|
start_index: number;
|
|
196
196
|
end_index?: number | undefined;
|
|
197
197
|
}[] | undefined;
|
|
198
|
-
identification_status?: "
|
|
198
|
+
identification_status?: "PROGRESS" | "MANUAL" | "REQUESTED" | "COMPLETED" | undefined;
|
|
199
199
|
attachments_only_override?: boolean | undefined;
|
|
200
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
200
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
201
|
+
connectionId: z.ZodString;
|
|
202
|
+
entityId: z.ZodString;
|
|
203
|
+
instanceId: z.ZodString;
|
|
204
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
205
|
+
generic_api_key: z.ZodString;
|
|
206
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
207
|
+
connectionId: z.ZodString;
|
|
208
|
+
entityId: z.ZodString;
|
|
209
|
+
instanceId: z.ZodString;
|
|
210
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
211
|
+
generic_api_key: z.ZodString;
|
|
212
|
+
}, z.core.$strip>>]>;
|
|
201
213
|
//#endregion
|
|
202
214
|
export { parseurUpdateMailbox };
|
|
203
215
|
//# sourceMappingURL=update-mailbox.d.cts.map
|