@keystrokehq/parseur 0.1.3 → 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 +15 -3
- package/dist/actions/list-templates.d.mts +15 -3
- 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/dist/catalog.cjs +1 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +1 -1
- package/dist/catalog.d.mts +1 -1
- package/dist/catalog.mjs +1 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -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.mts.map
|
|
@@ -37,7 +37,19 @@ declare const parseurUpdateWebhook: import("@keystrokehq/action").WorkflowAction
|
|
|
37
37
|
target?: string | undefined;
|
|
38
38
|
headers?: Record<string, unknown> | undefined;
|
|
39
39
|
parser_field?: string | undefined;
|
|
40
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
40
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
41
|
+
connectionId: z.ZodString;
|
|
42
|
+
entityId: z.ZodString;
|
|
43
|
+
instanceId: z.ZodString;
|
|
44
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
45
|
+
generic_api_key: z.ZodString;
|
|
46
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
47
|
+
connectionId: z.ZodString;
|
|
48
|
+
entityId: z.ZodString;
|
|
49
|
+
instanceId: z.ZodString;
|
|
50
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
51
|
+
generic_api_key: z.ZodString;
|
|
52
|
+
}, z.core.$strip>>]>;
|
|
41
53
|
//#endregion
|
|
42
54
|
export { parseurUpdateWebhook };
|
|
43
55
|
//# sourceMappingURL=update-webhook.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-webhook.d.cts","names":[],"sources":["../../src/actions/update-webhook.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAQzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;cAY1B,oBAAA,gCAAoB,wBAAA
|
|
1
|
+
{"version":3,"file":"update-webhook.d.cts","names":[],"sources":["../../src/actions/update-webhook.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAQzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;cAY1B,oBAAA,gCAAoB,wBAAA"}
|
|
@@ -37,7 +37,19 @@ declare const parseurUpdateWebhook: import("@keystrokehq/action").WorkflowAction
|
|
|
37
37
|
target?: string | undefined;
|
|
38
38
|
headers?: Record<string, unknown> | undefined;
|
|
39
39
|
parser_field?: string | undefined;
|
|
40
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
40
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
41
|
+
connectionId: z.ZodString;
|
|
42
|
+
entityId: z.ZodString;
|
|
43
|
+
instanceId: z.ZodString;
|
|
44
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
45
|
+
generic_api_key: z.ZodString;
|
|
46
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
47
|
+
connectionId: z.ZodString;
|
|
48
|
+
entityId: z.ZodString;
|
|
49
|
+
instanceId: z.ZodString;
|
|
50
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
51
|
+
generic_api_key: z.ZodString;
|
|
52
|
+
}, z.core.$strip>>]>;
|
|
41
53
|
//#endregion
|
|
42
54
|
export { parseurUpdateWebhook };
|
|
43
55
|
//# sourceMappingURL=update-webhook.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-webhook.d.mts","names":[],"sources":["../../src/actions/update-webhook.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAQzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;cAY1B,oBAAA,gCAAoB,wBAAA
|
|
1
|
+
{"version":3,"file":"update-webhook.d.mts","names":[],"sources":["../../src/actions/update-webhook.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;cAQzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;cAY1B,oBAAA,gCAAoB,wBAAA"}
|
|
@@ -25,7 +25,19 @@ declare const parseurUploadEmailDocument: import("@keystrokehq/action").Workflow
|
|
|
25
25
|
body_html?: string | undefined;
|
|
26
26
|
body_plain?: string | undefined;
|
|
27
27
|
message_headers?: string[][] | undefined;
|
|
28
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
28
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
generic_api_key: z.ZodString;
|
|
34
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
35
|
+
connectionId: z.ZodString;
|
|
36
|
+
entityId: z.ZodString;
|
|
37
|
+
instanceId: z.ZodString;
|
|
38
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
39
|
+
generic_api_key: z.ZodString;
|
|
40
|
+
}, z.core.$strip>>]>;
|
|
29
41
|
//#endregion
|
|
30
42
|
export { parseurUploadEmailDocument };
|
|
31
43
|
//# sourceMappingURL=upload-email-document.d.cts.map
|
|
@@ -25,7 +25,19 @@ declare const parseurUploadEmailDocument: import("@keystrokehq/action").Workflow
|
|
|
25
25
|
body_html?: string | undefined;
|
|
26
26
|
body_plain?: string | undefined;
|
|
27
27
|
message_headers?: string[][] | undefined;
|
|
28
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
28
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
29
|
+
connectionId: z.ZodString;
|
|
30
|
+
entityId: z.ZodString;
|
|
31
|
+
instanceId: z.ZodString;
|
|
32
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
33
|
+
generic_api_key: z.ZodString;
|
|
34
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
35
|
+
connectionId: z.ZodString;
|
|
36
|
+
entityId: z.ZodString;
|
|
37
|
+
instanceId: z.ZodString;
|
|
38
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
39
|
+
generic_api_key: z.ZodString;
|
|
40
|
+
}, z.core.$strip>>]>;
|
|
29
41
|
//#endregion
|
|
30
42
|
export { parseurUploadEmailDocument };
|
|
31
43
|
//# sourceMappingURL=upload-email-document.d.mts.map
|
package/dist/app.cjs
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
let _keystrokehq_keystroke_app = require("@keystrokehq/keystroke/app");
|
|
2
|
+
let zod = require("zod");
|
|
1
3
|
//#region src/app.ts
|
|
2
|
-
const parseur = (0,
|
|
4
|
+
const parseur = (0, _keystrokehq_keystroke_app.defineApp)({
|
|
3
5
|
slug: "parseur",
|
|
4
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: { generic_api_key: zod.z.string() }
|
|
5
8
|
});
|
|
6
9
|
//#endregion
|
|
7
10
|
exports.parseur = parseur;
|
package/dist/app.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const parseur = defineApp({\n slug: \"parseur\",\n auth: \"keystroke\",\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.cjs","names":["z"],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nexport const parseur = defineApp({\n slug: \"parseur\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,WAAA,GAAA,2BAAA,UAAA,CAAoB;CAC/B,MAAM;CACN,MAAM;CACN,YAAY,EACV,iBAAiBA,IAAAA,EAAE,OAAO,EAC5B;AACF,CAAC"}
|
package/dist/app.d.cts
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
1
3
|
//#region src/app.d.ts
|
|
2
|
-
declare const parseur: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const parseur: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
5
|
+
connectionId: z.ZodString;
|
|
6
|
+
entityId: z.ZodString;
|
|
7
|
+
instanceId: z.ZodString;
|
|
8
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9
|
+
generic_api_key: z.ZodString;
|
|
10
|
+
}, z.core.$strip>>>;
|
|
3
11
|
//#endregion
|
|
4
12
|
export { parseur };
|
|
5
13
|
//# sourceMappingURL=app.d.cts.map
|
package/dist/app.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,OAAA,6BAAO,GAAA,+BAAA,UAAA,YAAA,CAAA,CAAA,SAAA"}
|
package/dist/app.d.mts
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
1
3
|
//#region src/app.d.ts
|
|
2
|
-
declare const parseur: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const parseur: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"parseur", z.ZodObject<{
|
|
5
|
+
connectionId: z.ZodString;
|
|
6
|
+
entityId: z.ZodString;
|
|
7
|
+
instanceId: z.ZodString;
|
|
8
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9
|
+
generic_api_key: z.ZodString;
|
|
10
|
+
}, z.core.$strip>>>;
|
|
3
11
|
//#endregion
|
|
4
12
|
export { parseur };
|
|
5
13
|
//# sourceMappingURL=app.d.mts.map
|
package/dist/app.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,OAAA,6BAAO,GAAA,+BAAA,UAAA,YAAA,CAAA,CAAA,SAAA"}
|
package/dist/app.mjs
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { defineApp } from "@keystrokehq/keystroke/app";
|
|
2
|
+
import { z } from "zod";
|
|
2
3
|
//#region src/app.ts
|
|
3
4
|
const parseur = defineApp({
|
|
4
5
|
slug: "parseur",
|
|
5
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: { generic_api_key: z.string() }
|
|
6
8
|
});
|
|
7
9
|
//#endregion
|
|
8
10
|
export { parseur };
|
package/dist/app.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const parseur = defineApp({\n slug: \"parseur\",\n auth: \"keystroke\",\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nexport const parseur = defineApp({\n slug: \"parseur\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,UAAU,UAAU;CAC/B,MAAM;CACN,MAAM;CACN,YAAY,EACV,iBAAiB,EAAE,OAAO,EAC5B;AACF,CAAC"}
|
package/dist/catalog.cjs
CHANGED
|
@@ -8,7 +8,7 @@ const parseurCatalog = {
|
|
|
8
8
|
"logo": "https://logos.composio.dev/api/parseur",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
10
|
"oauthScopes": [],
|
|
11
|
-
"credentialFields": { "
|
|
11
|
+
"credentialFields": { "generic_api_key": {
|
|
12
12
|
"label": "Parseur API Key",
|
|
13
13
|
"secret": true,
|
|
14
14
|
"description": "Your Parseur API token key, found in your Account Overview."
|
package/dist/catalog.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const parseurCatalog = {\n \"slug\": \"parseur\",\n \"name\": \"Parseur\",\n \"description\": \"Parseur is an AI-powered data extraction tool that automates the parsing of emails, PDFs, and other documents into structured data.\",\n \"category\": \"AI Document Extraction\",\n \"logo\": \"https://logos.composio.dev/api/parseur\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"
|
|
1
|
+
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const parseurCatalog = {\n \"slug\": \"parseur\",\n \"name\": \"Parseur\",\n \"description\": \"Parseur is an AI-powered data extraction tool that automates the parsing of emails, PDFs, and other documents into structured data.\",\n \"category\": \"AI Document Extraction\",\n \"logo\": \"https://logos.composio.dev/api/parseur\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"Parseur API Key\",\n \"secret\": true,\n \"description\": \"Your Parseur API token key, found in your Account Overview.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,iBAAiB;CAC5B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -9,7 +9,7 @@ declare const parseurCatalog: {
|
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
11
|
readonly credentialFields: {
|
|
12
|
-
readonly
|
|
12
|
+
readonly generic_api_key: {
|
|
13
13
|
readonly label: "Parseur API Key";
|
|
14
14
|
readonly secret: true;
|
|
15
15
|
readonly description: "Your Parseur API token key, found in your Account Overview.";
|
package/dist/catalog.d.mts
CHANGED
|
@@ -9,7 +9,7 @@ declare const parseurCatalog: {
|
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
11
|
readonly credentialFields: {
|
|
12
|
-
readonly
|
|
12
|
+
readonly generic_api_key: {
|
|
13
13
|
readonly label: "Parseur API Key";
|
|
14
14
|
readonly secret: true;
|
|
15
15
|
readonly description: "Your Parseur API token key, found in your Account Overview.";
|
package/dist/catalog.mjs
CHANGED
|
@@ -8,7 +8,7 @@ const parseurCatalog = {
|
|
|
8
8
|
"logo": "https://logos.composio.dev/api/parseur",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
10
|
"oauthScopes": [],
|
|
11
|
-
"credentialFields": { "
|
|
11
|
+
"credentialFields": { "generic_api_key": {
|
|
12
12
|
"label": "Parseur API Key",
|
|
13
13
|
"secret": true,
|
|
14
14
|
"description": "Your Parseur API token key, found in your Account Overview."
|
package/dist/catalog.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const parseurCatalog = {\n \"slug\": \"parseur\",\n \"name\": \"Parseur\",\n \"description\": \"Parseur is an AI-powered data extraction tool that automates the parsing of emails, PDFs, and other documents into structured data.\",\n \"category\": \"AI Document Extraction\",\n \"logo\": \"https://logos.composio.dev/api/parseur\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"
|
|
1
|
+
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const parseurCatalog = {\n \"slug\": \"parseur\",\n \"name\": \"Parseur\",\n \"description\": \"Parseur is an AI-powered data extraction tool that automates the parsing of emails, PDFs, and other documents into structured data.\",\n \"category\": \"AI Document Extraction\",\n \"logo\": \"https://logos.composio.dev/api/parseur\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"Parseur API Key\",\n \"secret\": true,\n \"description\": \"Your Parseur API token key, found in your Account Overview.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,iBAAiB;CAC5B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|