@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.
Files changed (65) hide show
  1. package/dist/actions/copy-document.d.cts +13 -1
  2. package/dist/actions/copy-document.d.mts +13 -1
  3. package/dist/actions/copy-mailbox.d.cts +13 -1
  4. package/dist/actions/copy-mailbox.d.mts +13 -1
  5. package/dist/actions/create-custom-download.d.cts +13 -1
  6. package/dist/actions/create-custom-download.d.mts +13 -1
  7. package/dist/actions/create-mailbox.d.cts +18 -6
  8. package/dist/actions/create-mailbox.d.mts +18 -6
  9. package/dist/actions/delete-custom-download.d.cts +13 -1
  10. package/dist/actions/delete-custom-download.d.mts +13 -1
  11. package/dist/actions/delete-document.d.cts +13 -1
  12. package/dist/actions/delete-document.d.mts +13 -1
  13. package/dist/actions/delete-mailbox.d.cts +13 -1
  14. package/dist/actions/delete-mailbox.d.mts +13 -1
  15. package/dist/actions/delete-webhook.d.cts +13 -1
  16. package/dist/actions/delete-webhook.d.mts +13 -1
  17. package/dist/actions/disable-webhook.d.cts +13 -1
  18. package/dist/actions/disable-webhook.d.mts +13 -1
  19. package/dist/actions/enable-webhook.d.cts +13 -1
  20. package/dist/actions/enable-webhook.d.mts +13 -1
  21. package/dist/actions/get-bootstrap-config.d.cts +13 -1
  22. package/dist/actions/get-bootstrap-config.d.cts.map +1 -1
  23. package/dist/actions/get-bootstrap-config.d.mts +13 -1
  24. package/dist/actions/get-bootstrap-config.d.mts.map +1 -1
  25. package/dist/actions/get-document-logs.d.cts +13 -1
  26. package/dist/actions/get-document-logs.d.mts +13 -1
  27. package/dist/actions/get-document.d.cts +15 -3
  28. package/dist/actions/get-document.d.mts +15 -3
  29. package/dist/actions/get-mailbox-schema.d.cts +13 -1
  30. package/dist/actions/get-mailbox-schema.d.mts +13 -1
  31. package/dist/actions/get-mailbox.d.cts +13 -1
  32. package/dist/actions/get-mailbox.d.mts +13 -1
  33. package/dist/actions/list-custom-downloads.d.cts +13 -1
  34. package/dist/actions/list-custom-downloads.d.mts +13 -1
  35. package/dist/actions/list-documents-in-mailbox.d.cts +13 -1
  36. package/dist/actions/list-documents-in-mailbox.d.mts +13 -1
  37. package/dist/actions/list-mailboxes2.d.cts +13 -1
  38. package/dist/actions/list-mailboxes2.d.mts +13 -1
  39. package/dist/actions/list-templates.d.cts +16 -4
  40. package/dist/actions/list-templates.d.mts +16 -4
  41. package/dist/actions/reprocess-document.d.cts +13 -1
  42. package/dist/actions/reprocess-document.d.mts +13 -1
  43. package/dist/actions/retrieve-webhook.d.cts +13 -1
  44. package/dist/actions/retrieve-webhook.d.mts +13 -1
  45. package/dist/actions/skip-document.d.cts +13 -1
  46. package/dist/actions/skip-document.d.mts +13 -1
  47. package/dist/actions/update-custom-download.d.cts +13 -1
  48. package/dist/actions/update-custom-download.d.mts +13 -1
  49. package/dist/actions/update-mailbox.d.cts +16 -4
  50. package/dist/actions/update-mailbox.d.mts +16 -4
  51. package/dist/actions/update-webhook.d.cts +13 -1
  52. package/dist/actions/update-webhook.d.cts.map +1 -1
  53. package/dist/actions/update-webhook.d.mts +13 -1
  54. package/dist/actions/update-webhook.d.mts.map +1 -1
  55. package/dist/actions/upload-email-document.d.cts +13 -1
  56. package/dist/actions/upload-email-document.d.mts +13 -1
  57. package/dist/app.cjs +5 -2
  58. package/dist/app.cjs.map +1 -1
  59. package/dist/app.d.cts +9 -1
  60. package/dist/app.d.cts.map +1 -1
  61. package/dist/app.d.mts +9 -1
  62. package/dist/app.d.mts.map +1 -1
  63. package/dist/app.mjs +3 -1
  64. package/dist/app.mjs.map +1 -1
  65. package/package.json +1 -1
@@ -13,7 +13,19 @@ declare const ParseurCopyDocumentOutput: z.ZodObject<{
13
13
  declare const parseurCopyDocument: import("@keystrokehq/action").WorkflowActionDefinition<{
14
14
  id: string;
15
15
  target_mailbox_id: string;
16
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
16
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
17
+ connectionId: z.ZodString;
18
+ entityId: z.ZodString;
19
+ instanceId: z.ZodString;
20
+ }, z.core.$strip>, z.ZodObject<{
21
+ generic_api_key: z.ZodString;
22
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
23
+ connectionId: z.ZodString;
24
+ entityId: z.ZodString;
25
+ instanceId: z.ZodString;
26
+ }, z.core.$strip>, z.ZodObject<{
27
+ generic_api_key: z.ZodString;
28
+ }, z.core.$strip>>]>;
17
29
  //#endregion
18
30
  export { parseurCopyDocument };
19
31
  //# sourceMappingURL=copy-document.d.cts.map
@@ -13,7 +13,19 @@ declare const ParseurCopyDocumentOutput: z.ZodObject<{
13
13
  declare const parseurCopyDocument: import("@keystrokehq/action").WorkflowActionDefinition<{
14
14
  id: string;
15
15
  target_mailbox_id: string;
16
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
16
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
17
+ connectionId: z.ZodString;
18
+ entityId: z.ZodString;
19
+ instanceId: z.ZodString;
20
+ }, z.core.$strip>, z.ZodObject<{
21
+ generic_api_key: z.ZodString;
22
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
23
+ connectionId: z.ZodString;
24
+ entityId: z.ZodString;
25
+ instanceId: z.ZodString;
26
+ }, z.core.$strip>, z.ZodObject<{
27
+ generic_api_key: z.ZodString;
28
+ }, z.core.$strip>>]>;
17
29
  //#endregion
18
30
  export { parseurCopyDocument };
19
31
  //# sourceMappingURL=copy-document.d.mts.map
@@ -11,7 +11,19 @@ declare const ParseurCopyMailboxOutput: z.ZodObject<{
11
11
  }, z.core.$loose>;
12
12
  declare const parseurCopyMailbox: import("@keystrokehq/action").WorkflowActionDefinition<{
13
13
  id: number;
14
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, 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 { parseurCopyMailbox };
17
29
  //# sourceMappingURL=copy-mailbox.d.cts.map
@@ -11,7 +11,19 @@ declare const ParseurCopyMailboxOutput: z.ZodObject<{
11
11
  }, z.core.$loose>;
12
12
  declare const parseurCopyMailbox: import("@keystrokehq/action").WorkflowActionDefinition<{
13
13
  id: number;
14
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, 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 { parseurCopyMailbox };
17
29
  //# sourceMappingURL=copy-mailbox.d.mts.map
@@ -38,7 +38,19 @@ declare const parseurCreateCustomDownload: import("@keystrokehq/action").Workflo
38
38
  type?: "PARSER" | "PARSER_FIELD" | undefined;
39
39
  parser_field_id?: string | undefined;
40
40
  parser_field_name?: string | undefined;
41
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
41
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
42
+ connectionId: z.ZodString;
43
+ entityId: z.ZodString;
44
+ instanceId: z.ZodString;
45
+ }, z.core.$strip>, z.ZodObject<{
46
+ generic_api_key: z.ZodString;
47
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
48
+ connectionId: z.ZodString;
49
+ entityId: z.ZodString;
50
+ instanceId: z.ZodString;
51
+ }, z.core.$strip>, z.ZodObject<{
52
+ generic_api_key: z.ZodString;
53
+ }, z.core.$strip>>]>;
42
54
  //#endregion
43
55
  export { parseurCreateCustomDownload };
44
56
  //# sourceMappingURL=create-custom-download.d.cts.map
@@ -38,7 +38,19 @@ declare const parseurCreateCustomDownload: import("@keystrokehq/action").Workflo
38
38
  type?: "PARSER" | "PARSER_FIELD" | undefined;
39
39
  parser_field_id?: string | undefined;
40
40
  parser_field_name?: string | undefined;
41
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
41
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
42
+ connectionId: z.ZodString;
43
+ entityId: z.ZodString;
44
+ instanceId: z.ZodString;
45
+ }, z.core.$strip>, z.ZodObject<{
46
+ generic_api_key: z.ZodString;
47
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
48
+ connectionId: z.ZodString;
49
+ entityId: z.ZodString;
50
+ instanceId: z.ZodString;
51
+ }, z.core.$strip>, z.ZodObject<{
52
+ generic_api_key: z.ZodString;
53
+ }, z.core.$strip>>]>;
42
54
  //#endregion
43
55
  export { parseurCreateCustomDownload };
44
56
  //# sourceMappingURL=create-custom-download.d.mts.map
@@ -61,10 +61,10 @@ declare const ParseurCreateMailboxInput: z.ZodObject<{
61
61
  }>>;
62
62
  process_attachments: z.ZodOptional<z.ZodBoolean>;
63
63
  identification_status: z.ZodOptional<z.ZodEnum<{
64
- REQUESTED: "REQUESTED";
65
64
  PROGRESS: "PROGRESS";
66
- COMPLETED: "COMPLETED";
67
65
  MANUAL: "MANUAL";
66
+ REQUESTED: "REQUESTED";
67
+ COMPLETED: "COMPLETED";
68
68
  }>>;
69
69
  }, z.core.$strip>;
70
70
  declare const ParseurCreateMailboxOutput: z.ZodObject<{
@@ -156,10 +156,10 @@ declare const ParseurCreateMailboxOutput: z.ZodObject<{
156
156
  parser_field_set: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
157
157
  }, z.core.$loose>>;
158
158
  identification_status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
159
- REQUESTED: "REQUESTED";
160
159
  PROGRESS: "PROGRESS";
161
- COMPLETED: "COMPLETED";
162
160
  MANUAL: "MANUAL";
161
+ REQUESTED: "REQUESTED";
162
+ COMPLETED: "COMPLETED";
163
163
  }>>>;
164
164
  document_per_status_count: z.ZodNullable<z.ZodObject<{
165
165
  SPLIT: z.ZodNullable<z.ZodNumber>;
@@ -186,8 +186,20 @@ declare const parseurCreateMailbox: import("@keystrokehq/action").WorkflowAction
186
186
  allowed_extensions?: ("bmp" | "csv" | "doc" | "docx" | "eml" | "gif" | "html" | "ics" | "jpg" | "mbox" | "msg" | "ods" | "odt" | "pdf" | "png" | "rtf" | "tif" | "txt" | "xhtml" | "xls" | "xlsm" | "xlsx" | "xml" | "zip")[] | undefined;
187
187
  master_parser_slug?: "invoices" | "statements" | "job-application" | "leads" | "resume-cv" | "food-delivery" | "search-alerts" | "real-estate" | "work-order" | "financial-statement" | "utility" | "contact-list" | "delivery-notes" | "property-bookings" | "job-search" | "travel" | "automotive" | "payslip" | "event-ticketing" | undefined;
188
188
  process_attachments?: boolean | undefined;
189
- identification_status?: "REQUESTED" | "PROGRESS" | "COMPLETED" | "MANUAL" | undefined;
190
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
189
+ identification_status?: "PROGRESS" | "MANUAL" | "REQUESTED" | "COMPLETED" | undefined;
190
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
191
+ connectionId: z.ZodString;
192
+ entityId: z.ZodString;
193
+ instanceId: z.ZodString;
194
+ }, z.core.$strip>, z.ZodObject<{
195
+ generic_api_key: z.ZodString;
196
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
197
+ connectionId: z.ZodString;
198
+ entityId: z.ZodString;
199
+ instanceId: z.ZodString;
200
+ }, z.core.$strip>, z.ZodObject<{
201
+ generic_api_key: z.ZodString;
202
+ }, z.core.$strip>>]>;
191
203
  //#endregion
192
204
  export { parseurCreateMailbox };
193
205
  //# sourceMappingURL=create-mailbox.d.cts.map
@@ -61,10 +61,10 @@ declare const ParseurCreateMailboxInput: z.ZodObject<{
61
61
  }>>;
62
62
  process_attachments: z.ZodOptional<z.ZodBoolean>;
63
63
  identification_status: z.ZodOptional<z.ZodEnum<{
64
- REQUESTED: "REQUESTED";
65
64
  PROGRESS: "PROGRESS";
66
- COMPLETED: "COMPLETED";
67
65
  MANUAL: "MANUAL";
66
+ REQUESTED: "REQUESTED";
67
+ COMPLETED: "COMPLETED";
68
68
  }>>;
69
69
  }, z.core.$strip>;
70
70
  declare const ParseurCreateMailboxOutput: z.ZodObject<{
@@ -156,10 +156,10 @@ declare const ParseurCreateMailboxOutput: z.ZodObject<{
156
156
  parser_field_set: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
157
157
  }, z.core.$loose>>;
158
158
  identification_status: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
159
- REQUESTED: "REQUESTED";
160
159
  PROGRESS: "PROGRESS";
161
- COMPLETED: "COMPLETED";
162
160
  MANUAL: "MANUAL";
161
+ REQUESTED: "REQUESTED";
162
+ COMPLETED: "COMPLETED";
163
163
  }>>>;
164
164
  document_per_status_count: z.ZodNullable<z.ZodObject<{
165
165
  SPLIT: z.ZodNullable<z.ZodNumber>;
@@ -186,8 +186,20 @@ declare const parseurCreateMailbox: import("@keystrokehq/action").WorkflowAction
186
186
  allowed_extensions?: ("bmp" | "csv" | "doc" | "docx" | "eml" | "gif" | "html" | "ics" | "jpg" | "mbox" | "msg" | "ods" | "odt" | "pdf" | "png" | "rtf" | "tif" | "txt" | "xhtml" | "xls" | "xlsm" | "xlsx" | "xml" | "zip")[] | undefined;
187
187
  master_parser_slug?: "invoices" | "statements" | "job-application" | "leads" | "resume-cv" | "food-delivery" | "search-alerts" | "real-estate" | "work-order" | "financial-statement" | "utility" | "contact-list" | "delivery-notes" | "property-bookings" | "job-search" | "travel" | "automotive" | "payslip" | "event-ticketing" | undefined;
188
188
  process_attachments?: boolean | undefined;
189
- identification_status?: "REQUESTED" | "PROGRESS" | "COMPLETED" | "MANUAL" | undefined;
190
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
189
+ identification_status?: "PROGRESS" | "MANUAL" | "REQUESTED" | "COMPLETED" | undefined;
190
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
191
+ connectionId: z.ZodString;
192
+ entityId: z.ZodString;
193
+ instanceId: z.ZodString;
194
+ }, z.core.$strip>, z.ZodObject<{
195
+ generic_api_key: z.ZodString;
196
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
197
+ connectionId: z.ZodString;
198
+ entityId: z.ZodString;
199
+ instanceId: z.ZodString;
200
+ }, z.core.$strip>, z.ZodObject<{
201
+ generic_api_key: z.ZodString;
202
+ }, z.core.$strip>>]>;
191
203
  //#endregion
192
204
  export { parseurCreateMailbox };
193
205
  //# sourceMappingURL=create-mailbox.d.mts.map
@@ -11,7 +11,19 @@ declare const ParseurDeleteCustomDownloadOutput: z.ZodObject<{
11
11
  declare const parseurDeleteCustomDownload: import("@keystrokehq/action").WorkflowActionDefinition<{
12
12
  id: string;
13
13
  mailbox_id: string;
14
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, 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 { parseurDeleteCustomDownload };
17
29
  //# sourceMappingURL=delete-custom-download.d.cts.map
@@ -11,7 +11,19 @@ declare const ParseurDeleteCustomDownloadOutput: z.ZodObject<{
11
11
  declare const parseurDeleteCustomDownload: import("@keystrokehq/action").WorkflowActionDefinition<{
12
12
  id: string;
13
13
  mailbox_id: string;
14
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, 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 { parseurDeleteCustomDownload };
17
29
  //# sourceMappingURL=delete-custom-download.d.mts.map
@@ -9,7 +9,19 @@ declare const ParseurDeleteDocumentOutput: z.ZodObject<{
9
9
  }, z.core.$loose>;
10
10
  declare const parseurDeleteDocument: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  document_id: string;
12
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
12
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
13
+ connectionId: z.ZodString;
14
+ entityId: z.ZodString;
15
+ instanceId: z.ZodString;
16
+ }, z.core.$strip>, z.ZodObject<{
17
+ generic_api_key: z.ZodString;
18
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
19
+ connectionId: z.ZodString;
20
+ entityId: z.ZodString;
21
+ instanceId: z.ZodString;
22
+ }, z.core.$strip>, z.ZodObject<{
23
+ generic_api_key: z.ZodString;
24
+ }, z.core.$strip>>]>;
13
25
  //#endregion
14
26
  export { parseurDeleteDocument };
15
27
  //# sourceMappingURL=delete-document.d.cts.map
@@ -9,7 +9,19 @@ declare const ParseurDeleteDocumentOutput: z.ZodObject<{
9
9
  }, z.core.$loose>;
10
10
  declare const parseurDeleteDocument: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  document_id: string;
12
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
12
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
13
+ connectionId: z.ZodString;
14
+ entityId: z.ZodString;
15
+ instanceId: z.ZodString;
16
+ }, z.core.$strip>, z.ZodObject<{
17
+ generic_api_key: z.ZodString;
18
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
19
+ connectionId: z.ZodString;
20
+ entityId: z.ZodString;
21
+ instanceId: z.ZodString;
22
+ }, z.core.$strip>, z.ZodObject<{
23
+ generic_api_key: z.ZodString;
24
+ }, z.core.$strip>>]>;
13
25
  //#endregion
14
26
  export { parseurDeleteDocument };
15
27
  //# sourceMappingURL=delete-document.d.mts.map
@@ -11,7 +11,19 @@ declare const ParseurDeleteMailboxOutput: z.ZodObject<{
11
11
  }, z.core.$loose>;
12
12
  declare const parseurDeleteMailbox: import("@keystrokehq/action").WorkflowActionDefinition<{
13
13
  id: number;
14
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, 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 { parseurDeleteMailbox };
17
29
  //# sourceMappingURL=delete-mailbox.d.cts.map
@@ -11,7 +11,19 @@ declare const ParseurDeleteMailboxOutput: z.ZodObject<{
11
11
  }, z.core.$loose>;
12
12
  declare const parseurDeleteMailbox: import("@keystrokehq/action").WorkflowActionDefinition<{
13
13
  id: number;
14
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, 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 { parseurDeleteMailbox };
17
29
  //# sourceMappingURL=delete-mailbox.d.mts.map
@@ -9,7 +9,19 @@ declare const ParseurDeleteWebhookOutput: z.ZodObject<{
9
9
  }, z.core.$loose>;
10
10
  declare const parseurDeleteWebhook: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  webhook_id: number;
12
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
12
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
13
+ connectionId: z.ZodString;
14
+ entityId: z.ZodString;
15
+ instanceId: z.ZodString;
16
+ }, z.core.$strip>, z.ZodObject<{
17
+ generic_api_key: z.ZodString;
18
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
19
+ connectionId: z.ZodString;
20
+ entityId: z.ZodString;
21
+ instanceId: z.ZodString;
22
+ }, z.core.$strip>, z.ZodObject<{
23
+ generic_api_key: z.ZodString;
24
+ }, z.core.$strip>>]>;
13
25
  //#endregion
14
26
  export { parseurDeleteWebhook };
15
27
  //# sourceMappingURL=delete-webhook.d.cts.map
@@ -9,7 +9,19 @@ declare const ParseurDeleteWebhookOutput: z.ZodObject<{
9
9
  }, z.core.$loose>;
10
10
  declare const parseurDeleteWebhook: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  webhook_id: number;
12
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
12
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
13
+ connectionId: z.ZodString;
14
+ entityId: z.ZodString;
15
+ instanceId: z.ZodString;
16
+ }, z.core.$strip>, z.ZodObject<{
17
+ generic_api_key: z.ZodString;
18
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
19
+ connectionId: z.ZodString;
20
+ entityId: z.ZodString;
21
+ instanceId: z.ZodString;
22
+ }, z.core.$strip>, z.ZodObject<{
23
+ generic_api_key: z.ZodString;
24
+ }, z.core.$strip>>]>;
13
25
  //#endregion
14
26
  export { parseurDeleteWebhook };
15
27
  //# sourceMappingURL=delete-webhook.d.mts.map
@@ -47,7 +47,19 @@ declare const ParseurDisableWebhookOutput: z.ZodObject<{
47
47
  declare const parseurDisableWebhook: import("@keystrokehq/action").WorkflowActionDefinition<{
48
48
  mailbox_id: number;
49
49
  webhook_id: number;
50
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
50
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
57
+ connectionId: z.ZodString;
58
+ entityId: z.ZodString;
59
+ instanceId: z.ZodString;
60
+ }, z.core.$strip>, z.ZodObject<{
61
+ generic_api_key: z.ZodString;
62
+ }, z.core.$strip>>]>;
51
63
  //#endregion
52
64
  export { parseurDisableWebhook };
53
65
  //# sourceMappingURL=disable-webhook.d.cts.map
@@ -47,7 +47,19 @@ declare const ParseurDisableWebhookOutput: z.ZodObject<{
47
47
  declare const parseurDisableWebhook: import("@keystrokehq/action").WorkflowActionDefinition<{
48
48
  mailbox_id: number;
49
49
  webhook_id: number;
50
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
50
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<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>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
57
+ connectionId: z.ZodString;
58
+ entityId: z.ZodString;
59
+ instanceId: z.ZodString;
60
+ }, z.core.$strip>, z.ZodObject<{
61
+ generic_api_key: z.ZodString;
62
+ }, z.core.$strip>>]>;
51
63
  //#endregion
52
64
  export { parseurDisableWebhook };
53
65
  //# sourceMappingURL=disable-webhook.d.mts.map
@@ -26,7 +26,19 @@ declare const ParseurEnableWebhookOutput: z.ZodObject<{
26
26
  declare const parseurEnableWebhook: import("@keystrokehq/action").WorkflowActionDefinition<{
27
27
  mailbox_id: number;
28
28
  webhook_id: number;
29
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
29
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
30
+ connectionId: z.ZodString;
31
+ entityId: z.ZodString;
32
+ instanceId: z.ZodString;
33
+ }, z.core.$strip>, z.ZodObject<{
34
+ generic_api_key: z.ZodString;
35
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
36
+ connectionId: z.ZodString;
37
+ entityId: z.ZodString;
38
+ instanceId: z.ZodString;
39
+ }, z.core.$strip>, z.ZodObject<{
40
+ generic_api_key: z.ZodString;
41
+ }, z.core.$strip>>]>;
30
42
  //#endregion
31
43
  export { parseurEnableWebhook };
32
44
  //# sourceMappingURL=enable-webhook.d.cts.map
@@ -26,7 +26,19 @@ declare const ParseurEnableWebhookOutput: z.ZodObject<{
26
26
  declare const parseurEnableWebhook: import("@keystrokehq/action").WorkflowActionDefinition<{
27
27
  mailbox_id: number;
28
28
  webhook_id: number;
29
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
29
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
30
+ connectionId: z.ZodString;
31
+ entityId: z.ZodString;
32
+ instanceId: z.ZodString;
33
+ }, z.core.$strip>, z.ZodObject<{
34
+ generic_api_key: z.ZodString;
35
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
36
+ connectionId: z.ZodString;
37
+ entityId: z.ZodString;
38
+ instanceId: z.ZodString;
39
+ }, z.core.$strip>, z.ZodObject<{
40
+ generic_api_key: z.ZodString;
41
+ }, z.core.$strip>>]>;
30
42
  //#endregion
31
43
  export { parseurEnableWebhook };
32
44
  //# sourceMappingURL=enable-webhook.d.mts.map
@@ -54,7 +54,19 @@ declare const ParseurGetBootstrapConfigOutput: z.ZodObject<{
54
54
  email: z.ZodNullable<z.ZodNumber>;
55
55
  }, z.core.$loose>>;
56
56
  }, z.core.$loose>;
57
- declare const parseurGetBootstrapConfig: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
57
+ declare const parseurGetBootstrapConfig: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
58
+ connectionId: z.ZodString;
59
+ entityId: z.ZodString;
60
+ instanceId: z.ZodString;
61
+ }, z.core.$strip>, z.ZodObject<{
62
+ generic_api_key: z.ZodString;
63
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
64
+ connectionId: z.ZodString;
65
+ entityId: z.ZodString;
66
+ instanceId: z.ZodString;
67
+ }, z.core.$strip>, z.ZodObject<{
68
+ generic_api_key: z.ZodString;
69
+ }, z.core.$strip>>]>;
58
70
  //#endregion
59
71
  export { parseurGetBootstrapConfig };
60
72
  //# sourceMappingURL=get-bootstrap-config.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-bootstrap-config.d.cts","names":[],"sources":["../../src/actions/get-bootstrap-config.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAmD9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAS/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-bootstrap-config.d.cts","names":[],"sources":["../../src/actions/get-bootstrap-config.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAmD9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAS/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,YAAA,CAAA,CAAA,SAAA"}
@@ -54,7 +54,19 @@ declare const ParseurGetBootstrapConfigOutput: z.ZodObject<{
54
54
  email: z.ZodNullable<z.ZodNumber>;
55
55
  }, z.core.$loose>>;
56
56
  }, z.core.$loose>;
57
- declare const parseurGetBootstrapConfig: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
57
+ declare const parseurGetBootstrapConfig: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
58
+ connectionId: z.ZodString;
59
+ entityId: z.ZodString;
60
+ instanceId: z.ZodString;
61
+ }, z.core.$strip>, z.ZodObject<{
62
+ generic_api_key: z.ZodString;
63
+ }, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
64
+ connectionId: z.ZodString;
65
+ entityId: z.ZodString;
66
+ instanceId: z.ZodString;
67
+ }, z.core.$strip>, z.ZodObject<{
68
+ generic_api_key: z.ZodString;
69
+ }, z.core.$strip>>]>;
58
70
  //#endregion
59
71
  export { parseurGetBootstrapConfig };
60
72
  //# sourceMappingURL=get-bootstrap-config.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-bootstrap-config.d.mts","names":[],"sources":["../../src/actions/get-bootstrap-config.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAmD9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAS/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-bootstrap-config.d.mts","names":[],"sources":["../../src/actions/get-bootstrap-config.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAmD9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAS/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,YAAA,CAAA,CAAA,SAAA"}
@@ -34,7 +34,19 @@ declare const parseurGetDocumentLogs: import("@keystrokehq/action").WorkflowActi
34
34
  search?: string | undefined;
35
35
  ordering?: string | undefined;
36
36
  page_size?: number | undefined;
37
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, 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 { parseurGetDocumentLogs };
40
52
  //# sourceMappingURL=get-document-logs.d.cts.map
@@ -34,7 +34,19 @@ declare const parseurGetDocumentLogs: import("@keystrokehq/action").WorkflowActi
34
34
  search?: string | undefined;
35
35
  ordering?: string | undefined;
36
36
  page_size?: number | undefined;
37
- }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, 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 { parseurGetDocumentLogs };
40
52
  //# sourceMappingURL=get-document-logs.d.mts.map