@keystrokehq/signaturely 0.1.0 → 0.1.3
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/action.cjs.map +1 -1
- package/dist/action.mjs.map +1 -1
- package/dist/actions/create-folder.cjs +5 -5
- package/dist/actions/create-folder.cjs.map +1 -1
- package/dist/actions/create-folder.d.cts +13 -3
- package/dist/actions/create-folder.d.cts.map +1 -1
- package/dist/actions/create-folder.d.mts +13 -3
- package/dist/actions/create-folder.d.mts.map +1 -1
- package/dist/actions/create-folder.mjs +5 -5
- package/dist/actions/create-folder.mjs.map +1 -1
- package/dist/actions/get-current-user.cjs +4 -4
- package/dist/actions/get-current-user.cjs.map +1 -1
- package/dist/actions/get-current-user.d.cts +21 -3
- package/dist/actions/get-current-user.d.cts.map +1 -1
- package/dist/actions/get-current-user.d.mts +21 -3
- package/dist/actions/get-current-user.d.mts.map +1 -1
- package/dist/actions/get-current-user.mjs +4 -4
- package/dist/actions/get-current-user.mjs.map +1 -1
- package/dist/actions/get-folder.cjs +4 -4
- package/dist/actions/get-folder.cjs.map +1 -1
- package/dist/actions/get-folder.d.cts +13 -3
- package/dist/actions/get-folder.d.cts.map +1 -1
- package/dist/actions/get-folder.d.mts +13 -3
- package/dist/actions/get-folder.d.mts.map +1 -1
- package/dist/actions/get-folder.mjs +4 -4
- package/dist/actions/get-folder.mjs.map +1 -1
- package/dist/actions/get-recent-document.cjs.map +1 -1
- package/dist/actions/get-recent-document.d.cts +16 -3
- package/dist/actions/get-recent-document.d.cts.map +1 -1
- package/dist/actions/get-recent-document.d.mts +16 -3
- package/dist/actions/get-recent-document.d.mts.map +1 -1
- package/dist/actions/get-recent-document.mjs.map +1 -1
- package/dist/actions/list-documents.cjs +1 -1
- package/dist/actions/list-documents.cjs.map +1 -1
- package/dist/actions/list-documents.d.cts +38 -3
- package/dist/actions/list-documents.d.cts.map +1 -1
- package/dist/actions/list-documents.d.mts +38 -3
- package/dist/actions/list-documents.d.mts.map +1 -1
- package/dist/actions/list-documents.mjs +1 -1
- package/dist/actions/list-documents.mjs.map +1 -1
- package/dist/actions/list-folders.cjs.map +1 -1
- package/dist/actions/list-folders.d.cts +23 -3
- package/dist/actions/list-folders.d.cts.map +1 -1
- package/dist/actions/list-folders.d.mts +23 -3
- package/dist/actions/list-folders.d.mts.map +1 -1
- package/dist/actions/list-folders.mjs.map +1 -1
- package/dist/actions/list-team-members.cjs.map +1 -1
- package/dist/actions/list-team-members.d.cts +12 -3
- package/dist/actions/list-team-members.d.cts.map +1 -1
- package/dist/actions/list-team-members.d.mts +12 -3
- package/dist/actions/list-team-members.d.mts.map +1 -1
- package/dist/actions/list-team-members.mjs.map +1 -1
- package/dist/actions/rename-folder.cjs +5 -5
- package/dist/actions/rename-folder.cjs.map +1 -1
- package/dist/actions/rename-folder.d.cts +15 -3
- package/dist/actions/rename-folder.d.cts.map +1 -1
- package/dist/actions/rename-folder.d.mts +15 -3
- package/dist/actions/rename-folder.d.mts.map +1 -1
- package/dist/actions/rename-folder.mjs +5 -5
- package/dist/actions/rename-folder.mjs.map +1 -1
- package/dist/actions/search-templates-documents.cjs.map +1 -1
- package/dist/actions/search-templates-documents.d.cts +29 -3
- package/dist/actions/search-templates-documents.d.cts.map +1 -1
- package/dist/actions/search-templates-documents.d.mts +29 -3
- package/dist/actions/search-templates-documents.d.mts.map +1 -1
- package/dist/actions/search-templates-documents.mjs.map +1 -1
- package/dist/catalog.cjs +7 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +8 -0
- package/dist/catalog.d.mts +8 -0
- package/dist/catalog.mjs +7 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +2 -2
package/dist/action.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.cjs","names":["signaturely","executeSignaturelyTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { signaturely } from \"./app\";\nimport { executeSignaturelyTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input:
|
|
1
|
+
{"version":3,"file":"action.cjs","names":["signaturely","executeSignaturelyTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { signaturely } from \"./app\";\nimport { executeSignaturelyTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: z.ZodType;\n },\n) {\n return signaturely.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output as z.ZodTypeAny,\n async run(input) {\n return def.output.parse(await executeSignaturelyTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,YAAY,OAAO;EACxB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAMC,gBAAAA,uBAAuB,MAAM,KAAgC,CAAC;EAC9F;CACF,CAAC;AACH"}
|
package/dist/action.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { signaturely } from \"./app\";\nimport { executeSignaturelyTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input:
|
|
1
|
+
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { signaturely } from \"./app\";\nimport { executeSignaturelyTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: z.ZodType;\n },\n) {\n return signaturely.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output as z.ZodTypeAny,\n async run(input) {\n return def.output.parse(await executeSignaturelyTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,YAAY,OAAO;EACxB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,uBAAuB,MAAM,KAAgC,CAAC;EAC9F;CACF,CAAC;AACH"}
|
|
@@ -3,12 +3,12 @@ let zod = require("zod");
|
|
|
3
3
|
//#region src/actions/create-folder.ts
|
|
4
4
|
const SignaturelyCreateFolderInput = zod.z.object({ title: zod.z.string().describe("The title/name of the folder to create") }).describe("Request parameters for creating a folder.");
|
|
5
5
|
const SignaturelyCreateFolderOutput = zod.z.object({
|
|
6
|
-
id: zod.z.string().describe("Unique identifier for the folder (UUID format)"),
|
|
7
|
-
title: zod.z.string().describe("The title of the created folder"),
|
|
6
|
+
id: zod.z.string().describe("Unique identifier for the folder (UUID format)").nullable(),
|
|
7
|
+
title: zod.z.string().describe("The title of the created folder").nullable(),
|
|
8
8
|
parentId: zod.z.string().describe("ID of the parent folder, null for root level").nullable().optional(),
|
|
9
|
-
foldersCount: zod.z.string().describe("Number of subfolders in this folder (returns as string)"),
|
|
10
|
-
documentsCount: zod.z.string().describe("Number of documents in this folder (returns as string)")
|
|
11
|
-
}).describe("Response model for creating a folder.");
|
|
9
|
+
foldersCount: zod.z.string().describe("Number of subfolders in this folder (returns as string)").nullable(),
|
|
10
|
+
documentsCount: zod.z.string().describe("Number of documents in this folder (returns as string)").nullable()
|
|
11
|
+
}).passthrough().describe("Response model for creating a folder.");
|
|
12
12
|
const signaturelyCreateFolder = require_action.action("SIGNATURELY_CREATE_FOLDER", {
|
|
13
13
|
slug: "signaturely-create-folder",
|
|
14
14
|
name: "Create Folder",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-folder.cjs","names":["z","action"],"sources":["../../src/actions/create-folder.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignaturelyCreateFolderInput
|
|
1
|
+
{"version":3,"file":"create-folder.cjs","names":["z","action"],"sources":["../../src/actions/create-folder.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignaturelyCreateFolderInput = z.object({\n title: z.string().describe(\"The title/name of the folder to create\"),\n}).describe(\"Request parameters for creating a folder.\");\nexport const SignaturelyCreateFolderOutput = z.object({\n id: z.string().describe(\"Unique identifier for the folder (UUID format)\").nullable(),\n title: z.string().describe(\"The title of the created folder\").nullable(),\n parentId: z.string().describe(\"ID of the parent folder, null for root level\").nullable().optional(),\n foldersCount: z.string().describe(\"Number of subfolders in this folder (returns as string)\").nullable(),\n documentsCount: z.string().describe(\"Number of documents in this folder (returns as string)\").nullable(),\n}).passthrough().describe(\"Response model for creating a folder.\");\n\nexport const signaturelyCreateFolder = action(\"SIGNATURELY_CREATE_FOLDER\", {\n slug: \"signaturely-create-folder\",\n name: \"Create Folder\",\n description: \"Tool to create a new folder for organizing documents. Use when you need to create a folder structure for document management.\",\n input: SignaturelyCreateFolderInput,\n output: SignaturelyCreateFolderOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA+BA,IAAAA,EAAE,OAAO,EACnD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,EACrE,CAAC,CAAC,CAAC,SAAS,2CAA2C;AACvD,MAAa,gCAAgCA,IAAAA,EAAE,OAAO;CACpD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;CACnF,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CACvE,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;CACtG,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS;AACzG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uCAAuC;AAEjE,MAAa,0BAA0BC,eAAAA,OAAO,6BAA6B;CACzE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/create-folder.d.ts
|
|
4
|
-
declare const SignaturelyCreateFolderInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const SignaturelyCreateFolderInput: z.ZodObject<{
|
|
5
|
+
title: z.ZodString;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const SignaturelyCreateFolderOutput: z.ZodObject<{
|
|
8
|
+
id: z.ZodNullable<z.ZodString>;
|
|
9
|
+
title: z.ZodNullable<z.ZodString>;
|
|
10
|
+
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11
|
+
foldersCount: z.ZodNullable<z.ZodString>;
|
|
12
|
+
documentsCount: z.ZodNullable<z.ZodString>;
|
|
13
|
+
}, z.core.$loose>;
|
|
14
|
+
declare const signaturelyCreateFolder: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
15
|
+
title: string;
|
|
16
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
17
|
//#endregion
|
|
8
18
|
export { signaturelyCreateFolder };
|
|
9
19
|
//# sourceMappingURL=create-folder.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-folder.d.cts","names":[],"sources":["../../src/actions/create-folder.ts"],"mappings":";;;cAIa,4BAAA,
|
|
1
|
+
{"version":3,"file":"create-folder.d.cts","names":[],"sources":["../../src/actions/create-folder.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;cAG5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;cAQ7B,uBAAA,gCAAuB,wBAAA"}
|
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/create-folder.d.ts
|
|
4
|
-
declare const SignaturelyCreateFolderInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const SignaturelyCreateFolderInput: z.ZodObject<{
|
|
5
|
+
title: z.ZodString;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const SignaturelyCreateFolderOutput: z.ZodObject<{
|
|
8
|
+
id: z.ZodNullable<z.ZodString>;
|
|
9
|
+
title: z.ZodNullable<z.ZodString>;
|
|
10
|
+
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11
|
+
foldersCount: z.ZodNullable<z.ZodString>;
|
|
12
|
+
documentsCount: z.ZodNullable<z.ZodString>;
|
|
13
|
+
}, z.core.$loose>;
|
|
14
|
+
declare const signaturelyCreateFolder: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
15
|
+
title: string;
|
|
16
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
17
|
//#endregion
|
|
8
18
|
export { signaturelyCreateFolder };
|
|
9
19
|
//# sourceMappingURL=create-folder.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-folder.d.mts","names":[],"sources":["../../src/actions/create-folder.ts"],"mappings":";;;cAIa,4BAAA,
|
|
1
|
+
{"version":3,"file":"create-folder.d.mts","names":[],"sources":["../../src/actions/create-folder.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;cAG5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;cAQ7B,uBAAA,gCAAuB,wBAAA"}
|
|
@@ -6,12 +6,12 @@ const signaturelyCreateFolder = action("SIGNATURELY_CREATE_FOLDER", {
|
|
|
6
6
|
description: "Tool to create a new folder for organizing documents. Use when you need to create a folder structure for document management.",
|
|
7
7
|
input: z.object({ title: z.string().describe("The title/name of the folder to create") }).describe("Request parameters for creating a folder."),
|
|
8
8
|
output: z.object({
|
|
9
|
-
id: z.string().describe("Unique identifier for the folder (UUID format)"),
|
|
10
|
-
title: z.string().describe("The title of the created folder"),
|
|
9
|
+
id: z.string().describe("Unique identifier for the folder (UUID format)").nullable(),
|
|
10
|
+
title: z.string().describe("The title of the created folder").nullable(),
|
|
11
11
|
parentId: z.string().describe("ID of the parent folder, null for root level").nullable().optional(),
|
|
12
|
-
foldersCount: z.string().describe("Number of subfolders in this folder (returns as string)"),
|
|
13
|
-
documentsCount: z.string().describe("Number of documents in this folder (returns as string)")
|
|
14
|
-
}).describe("Response model for creating a folder.")
|
|
12
|
+
foldersCount: z.string().describe("Number of subfolders in this folder (returns as string)").nullable(),
|
|
13
|
+
documentsCount: z.string().describe("Number of documents in this folder (returns as string)").nullable()
|
|
14
|
+
}).passthrough().describe("Response model for creating a folder.")
|
|
15
15
|
});
|
|
16
16
|
//#endregion
|
|
17
17
|
export { signaturelyCreateFolder };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-folder.mjs","names":[],"sources":["../../src/actions/create-folder.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignaturelyCreateFolderInput
|
|
1
|
+
{"version":3,"file":"create-folder.mjs","names":[],"sources":["../../src/actions/create-folder.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignaturelyCreateFolderInput = z.object({\n title: z.string().describe(\"The title/name of the folder to create\"),\n}).describe(\"Request parameters for creating a folder.\");\nexport const SignaturelyCreateFolderOutput = z.object({\n id: z.string().describe(\"Unique identifier for the folder (UUID format)\").nullable(),\n title: z.string().describe(\"The title of the created folder\").nullable(),\n parentId: z.string().describe(\"ID of the parent folder, null for root level\").nullable().optional(),\n foldersCount: z.string().describe(\"Number of subfolders in this folder (returns as string)\").nullable(),\n documentsCount: z.string().describe(\"Number of documents in this folder (returns as string)\").nullable(),\n}).passthrough().describe(\"Response model for creating a folder.\");\n\nexport const signaturelyCreateFolder = action(\"SIGNATURELY_CREATE_FOLDER\", {\n slug: \"signaturely-create-folder\",\n name: \"Create Folder\",\n description: \"Tool to create a new folder for organizing documents. Use when you need to create a folder structure for document management.\",\n input: SignaturelyCreateFolderInput,\n output: SignaturelyCreateFolderOutput,\n});\n"],"mappings":";;AAeA,MAAa,0BAA0B,OAAO,6BAA6B;CACzE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAf0C,EAAE,OAAO,EACnD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,EACrE,CAAC,CAAC,CAAC,SAAS,2CAaH;CACP,QAb2C,EAAE,OAAO;EACpD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;EACnF,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;EACvE,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAClG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;EACtG,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS;CACzG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uCAOhB;AACV,CAAC"}
|
|
@@ -10,14 +10,14 @@ const SignaturelyGetCurrentUser_UserRoleSchema = zod.z.enum([
|
|
|
10
10
|
const SignaturelyGetCurrentUser_UserStatusSchema = zod.z.enum(["active", "freeze"]).describe("User account status.");
|
|
11
11
|
const SignaturelyGetCurrentUser_AppSumoStatusSchema = zod.z.enum(["standard", "full"]).describe("AppSumo status for the user account.");
|
|
12
12
|
const SignaturelyGetCurrentUserOutput = zod.z.object({
|
|
13
|
-
id: zod.z.string().describe("User's unique identifier (UUID format)"),
|
|
14
|
-
name: zod.z.string().describe("User's display name"),
|
|
13
|
+
id: zod.z.string().describe("User's unique identifier (UUID format)").nullable(),
|
|
14
|
+
name: zod.z.string().describe("User's display name").nullable(),
|
|
15
15
|
role: SignaturelyGetCurrentUser_UserRoleSchema.nullable(),
|
|
16
|
-
email: zod.z.string().describe("User's email address"),
|
|
16
|
+
email: zod.z.string().describe("User's email address").nullable(),
|
|
17
17
|
status: SignaturelyGetCurrentUser_UserStatusSchema.nullable(),
|
|
18
18
|
avatarUrl: zod.z.string().describe("URL to the user's avatar image (null if not set)").nullable().optional(),
|
|
19
19
|
appSumoStatus: SignaturelyGetCurrentUser_AppSumoStatusSchema.nullable().optional()
|
|
20
|
-
}).describe("Response schema for getting current user information.\nContains authenticated user's account details.");
|
|
20
|
+
}).passthrough().describe("Response schema for getting current user information.\nContains authenticated user's account details.");
|
|
21
21
|
const signaturelyGetCurrentUser = require_action.action("SIGNATURELY_GET_CURRENT_USER", {
|
|
22
22
|
slug: "signaturely-get-current-user",
|
|
23
23
|
name: "Get Current User",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-current-user.cjs","names":["z","action"],"sources":["../../src/actions/get-current-user.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignaturelyGetCurrentUserInput
|
|
1
|
+
{"version":3,"file":"get-current-user.cjs","names":["z","action"],"sources":["../../src/actions/get-current-user.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignaturelyGetCurrentUserInput = z.object({}).describe(\"Request parameters for getting current user information.\\nThis endpoint does not require any parameters.\");\nconst SignaturelyGetCurrentUser_UserRoleSchema = z.enum([\"owner\", \"admin\", \"user\"]).describe(\"User role in the account.\");\nconst SignaturelyGetCurrentUser_UserStatusSchema = z.enum([\"active\", \"freeze\"]).describe(\"User account status.\");\nconst SignaturelyGetCurrentUser_AppSumoStatusSchema = z.enum([\"standard\", \"full\"]).describe(\"AppSumo status for the user account.\");\nexport const SignaturelyGetCurrentUserOutput = z.object({\n id: z.string().describe(\"User's unique identifier (UUID format)\").nullable(),\n name: z.string().describe(\"User's display name\").nullable(),\n role: SignaturelyGetCurrentUser_UserRoleSchema.nullable(),\n email: z.string().describe(\"User's email address\").nullable(),\n status: SignaturelyGetCurrentUser_UserStatusSchema.nullable(),\n avatarUrl: z.string().describe(\"URL to the user's avatar image (null if not set)\").nullable().optional(),\n appSumoStatus: SignaturelyGetCurrentUser_AppSumoStatusSchema.nullable().optional(),\n}).passthrough().describe(\"Response schema for getting current user information.\\nContains authenticated user's account details.\");\n\nexport const signaturelyGetCurrentUser = action(\"SIGNATURELY_GET_CURRENT_USER\", {\n slug: \"signaturely-get-current-user\",\n name: \"Get Current User\",\n description: \"Tool to get the current authenticated user information. Use this to retrieve account details including email, name, role, status, and avatar URL.\",\n input: SignaturelyGetCurrentUserInput,\n output: SignaturelyGetCurrentUserOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0GAA0G;AAC9K,MAAM,2CAA2CA,IAAAA,EAAE,KAAK;CAAC;CAAS;CAAS;AAAM,CAAC,CAAC,CAAC,SAAS,2BAA2B;AACxH,MAAM,6CAA6CA,IAAAA,EAAE,KAAK,CAAC,UAAU,QAAQ,CAAC,CAAC,CAAC,SAAS,sBAAsB;AAC/G,MAAM,gDAAgDA,IAAAA,EAAE,KAAK,CAAC,YAAY,MAAM,CAAC,CAAC,CAAC,SAAS,sCAAsC;AAClI,MAAa,kCAAkCA,IAAAA,EAAE,OAAO;CACtD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;CAC3E,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS;CAC1D,MAAM,yCAAyC,SAAS;CACxD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAC5D,QAAQ,2CAA2C,SAAS;CAC5D,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,eAAe,8CAA8C,SAAS,CAAC,CAAC,SAAS;AACnF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uGAAuG;AAEjI,MAAa,4BAA4BC,eAAAA,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,27 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-current-user.d.ts
|
|
4
|
-
declare const SignaturelyGetCurrentUserInput: z.
|
|
5
|
-
declare const SignaturelyGetCurrentUserOutput: z.
|
|
6
|
-
|
|
4
|
+
declare const SignaturelyGetCurrentUserInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
|
+
declare const SignaturelyGetCurrentUserOutput: z.ZodObject<{
|
|
6
|
+
id: z.ZodNullable<z.ZodString>;
|
|
7
|
+
name: z.ZodNullable<z.ZodString>;
|
|
8
|
+
role: z.ZodNullable<z.ZodEnum<{
|
|
9
|
+
user: "user";
|
|
10
|
+
owner: "owner";
|
|
11
|
+
admin: "admin";
|
|
12
|
+
}>>;
|
|
13
|
+
email: z.ZodNullable<z.ZodString>;
|
|
14
|
+
status: z.ZodNullable<z.ZodEnum<{
|
|
15
|
+
active: "active";
|
|
16
|
+
freeze: "freeze";
|
|
17
|
+
}>>;
|
|
18
|
+
avatarUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
|
+
appSumoStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
20
|
+
standard: "standard";
|
|
21
|
+
full: "full";
|
|
22
|
+
}>>>;
|
|
23
|
+
}, z.core.$loose>;
|
|
24
|
+
declare const signaturelyGetCurrentUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
25
|
//#endregion
|
|
8
26
|
export { signaturelyGetCurrentUser };
|
|
9
27
|
//# sourceMappingURL=get-current-user.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-current-user.d.cts","names":[],"sources":["../../src/actions/get-current-user.ts"],"mappings":";;;cAIa,8BAAA,
|
|
1
|
+
{"version":3,"file":"get-current-user.d.cts","names":[],"sources":["../../src/actions/get-current-user.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAI9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;cAU/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -1,9 +1,27 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-current-user.d.ts
|
|
4
|
-
declare const SignaturelyGetCurrentUserInput: z.
|
|
5
|
-
declare const SignaturelyGetCurrentUserOutput: z.
|
|
6
|
-
|
|
4
|
+
declare const SignaturelyGetCurrentUserInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
|
+
declare const SignaturelyGetCurrentUserOutput: z.ZodObject<{
|
|
6
|
+
id: z.ZodNullable<z.ZodString>;
|
|
7
|
+
name: z.ZodNullable<z.ZodString>;
|
|
8
|
+
role: z.ZodNullable<z.ZodEnum<{
|
|
9
|
+
user: "user";
|
|
10
|
+
owner: "owner";
|
|
11
|
+
admin: "admin";
|
|
12
|
+
}>>;
|
|
13
|
+
email: z.ZodNullable<z.ZodString>;
|
|
14
|
+
status: z.ZodNullable<z.ZodEnum<{
|
|
15
|
+
active: "active";
|
|
16
|
+
freeze: "freeze";
|
|
17
|
+
}>>;
|
|
18
|
+
avatarUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
|
+
appSumoStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
20
|
+
standard: "standard";
|
|
21
|
+
full: "full";
|
|
22
|
+
}>>>;
|
|
23
|
+
}, z.core.$loose>;
|
|
24
|
+
declare const signaturelyGetCurrentUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
25
|
//#endregion
|
|
8
26
|
export { signaturelyGetCurrentUser };
|
|
9
27
|
//# sourceMappingURL=get-current-user.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-current-user.d.mts","names":[],"sources":["../../src/actions/get-current-user.ts"],"mappings":";;;cAIa,8BAAA,
|
|
1
|
+
{"version":3,"file":"get-current-user.d.mts","names":[],"sources":["../../src/actions/get-current-user.ts"],"mappings":";;;cAIa,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAI9B,+BAAA,EAA+B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;cAU/B,yBAAA,gCAAyB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -15,14 +15,14 @@ const signaturelyGetCurrentUser = action("SIGNATURELY_GET_CURRENT_USER", {
|
|
|
15
15
|
description: "Tool to get the current authenticated user information. Use this to retrieve account details including email, name, role, status, and avatar URL.",
|
|
16
16
|
input: SignaturelyGetCurrentUserInput,
|
|
17
17
|
output: z.object({
|
|
18
|
-
id: z.string().describe("User's unique identifier (UUID format)"),
|
|
19
|
-
name: z.string().describe("User's display name"),
|
|
18
|
+
id: z.string().describe("User's unique identifier (UUID format)").nullable(),
|
|
19
|
+
name: z.string().describe("User's display name").nullable(),
|
|
20
20
|
role: SignaturelyGetCurrentUser_UserRoleSchema.nullable(),
|
|
21
|
-
email: z.string().describe("User's email address"),
|
|
21
|
+
email: z.string().describe("User's email address").nullable(),
|
|
22
22
|
status: SignaturelyGetCurrentUser_UserStatusSchema.nullable(),
|
|
23
23
|
avatarUrl: z.string().describe("URL to the user's avatar image (null if not set)").nullable().optional(),
|
|
24
24
|
appSumoStatus: SignaturelyGetCurrentUser_AppSumoStatusSchema.nullable().optional()
|
|
25
|
-
}).describe("Response schema for getting current user information.\nContains authenticated user's account details.")
|
|
25
|
+
}).passthrough().describe("Response schema for getting current user information.\nContains authenticated user's account details.")
|
|
26
26
|
});
|
|
27
27
|
//#endregion
|
|
28
28
|
export { signaturelyGetCurrentUser };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-current-user.mjs","names":[],"sources":["../../src/actions/get-current-user.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignaturelyGetCurrentUserInput
|
|
1
|
+
{"version":3,"file":"get-current-user.mjs","names":[],"sources":["../../src/actions/get-current-user.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignaturelyGetCurrentUserInput = z.object({}).describe(\"Request parameters for getting current user information.\\nThis endpoint does not require any parameters.\");\nconst SignaturelyGetCurrentUser_UserRoleSchema = z.enum([\"owner\", \"admin\", \"user\"]).describe(\"User role in the account.\");\nconst SignaturelyGetCurrentUser_UserStatusSchema = z.enum([\"active\", \"freeze\"]).describe(\"User account status.\");\nconst SignaturelyGetCurrentUser_AppSumoStatusSchema = z.enum([\"standard\", \"full\"]).describe(\"AppSumo status for the user account.\");\nexport const SignaturelyGetCurrentUserOutput = z.object({\n id: z.string().describe(\"User's unique identifier (UUID format)\").nullable(),\n name: z.string().describe(\"User's display name\").nullable(),\n role: SignaturelyGetCurrentUser_UserRoleSchema.nullable(),\n email: z.string().describe(\"User's email address\").nullable(),\n status: SignaturelyGetCurrentUser_UserStatusSchema.nullable(),\n avatarUrl: z.string().describe(\"URL to the user's avatar image (null if not set)\").nullable().optional(),\n appSumoStatus: SignaturelyGetCurrentUser_AppSumoStatusSchema.nullable().optional(),\n}).passthrough().describe(\"Response schema for getting current user information.\\nContains authenticated user's account details.\");\n\nexport const signaturelyGetCurrentUser = action(\"SIGNATURELY_GET_CURRENT_USER\", {\n slug: \"signaturely-get-current-user\",\n name: \"Get Current User\",\n description: \"Tool to get the current authenticated user information. Use this to retrieve account details including email, name, role, status, and avatar URL.\",\n input: SignaturelyGetCurrentUserInput,\n output: SignaturelyGetCurrentUserOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0GAA0G;AAC9K,MAAM,2CAA2C,EAAE,KAAK;CAAC;CAAS;CAAS;AAAM,CAAC,CAAC,CAAC,SAAS,2BAA2B;AACxH,MAAM,6CAA6C,EAAE,KAAK,CAAC,UAAU,QAAQ,CAAC,CAAC,CAAC,SAAS,sBAAsB;AAC/G,MAAM,gDAAgD,EAAE,KAAK,CAAC,YAAY,MAAM,CAAC,CAAC,CAAC,SAAS,sCAAsC;AAWlI,MAAa,4BAA4B,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAf6C,EAAE,OAAO;EACtD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;EAC3E,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS;EAC1D,MAAM,yCAAyC,SAAS;EACxD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;EAC5D,QAAQ,2CAA2C,SAAS;EAC5D,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvG,eAAe,8CAA8C,SAAS,CAAC,CAAC,SAAS;CACnF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uGAOhB;AACV,CAAC"}
|
|
@@ -3,11 +3,11 @@ let zod = require("zod");
|
|
|
3
3
|
//#region src/actions/get-folder.ts
|
|
4
4
|
const SignaturelyGetFolderInput = zod.z.object({ id: zod.z.string().describe("The unique identifier (UUID) of the folder to retrieve") }).describe("Request parameters for getting a folder.");
|
|
5
5
|
const SignaturelyGetFolderOutput = zod.z.object({
|
|
6
|
-
id: zod.z.string().describe("Unique folder identifier (UUID)"),
|
|
7
|
-
title: zod.z.string().describe("Name of the folder"),
|
|
6
|
+
id: zod.z.string().describe("Unique folder identifier (UUID)").nullable(),
|
|
7
|
+
title: zod.z.string().describe("Name of the folder").nullable(),
|
|
8
8
|
parentId: zod.z.string().describe("ID of parent folder if nested, null for root folders").nullable().optional(),
|
|
9
|
-
foldersCount: zod.z.string().describe("Number of subfolders"),
|
|
10
|
-
documentsCount: zod.z.string().describe("Number of documents in folder")
|
|
9
|
+
foldersCount: zod.z.string().describe("Number of subfolders").nullable(),
|
|
10
|
+
documentsCount: zod.z.string().describe("Number of documents in folder").nullable()
|
|
11
11
|
}).passthrough().describe("Response schema for getting a folder.\nContains folder information including subfolders and documents count.");
|
|
12
12
|
const signaturelyGetFolder = require_action.action("SIGNATURELY_GET_FOLDER", {
|
|
13
13
|
slug: "signaturely-get-folder",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-folder.cjs","names":["z","action"],"sources":["../../src/actions/get-folder.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignaturelyGetFolderInput
|
|
1
|
+
{"version":3,"file":"get-folder.cjs","names":["z","action"],"sources":["../../src/actions/get-folder.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignaturelyGetFolderInput = z.object({\n id: z.string().describe(\"The unique identifier (UUID) of the folder to retrieve\"),\n}).describe(\"Request parameters for getting a folder.\");\nexport const SignaturelyGetFolderOutput = z.object({\n id: z.string().describe(\"Unique folder identifier (UUID)\").nullable(),\n title: z.string().describe(\"Name of the folder\").nullable(),\n parentId: z.string().describe(\"ID of parent folder if nested, null for root folders\").nullable().optional(),\n foldersCount: z.string().describe(\"Number of subfolders\").nullable(),\n documentsCount: z.string().describe(\"Number of documents in folder\").nullable(),\n}).passthrough().describe(\"Response schema for getting a folder.\\nContains folder information including subfolders and documents count.\");\n\nexport const signaturelyGetFolder = action(\"SIGNATURELY_GET_FOLDER\", {\n slug: \"signaturely-get-folder\",\n name: \"Get Folder\",\n description: \"Tool to get folder information by ID. Use when you need to retrieve details about a specific folder including its subfolders and documents count.\",\n input: SignaturelyGetFolderInput,\n output: SignaturelyGetFolderOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,EAChD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wDAAwD,EAClF,CAAC,CAAC,CAAC,SAAS,0CAA0C;AACtD,MAAa,6BAA6BA,IAAAA,EAAE,OAAO;CACjD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CACpE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS;CAC1D,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1G,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CACnE,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;AAChF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8GAA8G;AAExI,MAAa,uBAAuBC,eAAAA,OAAO,0BAA0B;CACnE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-folder.d.ts
|
|
4
|
-
declare const SignaturelyGetFolderInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const SignaturelyGetFolderInput: z.ZodObject<{
|
|
5
|
+
id: z.ZodString;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const SignaturelyGetFolderOutput: z.ZodObject<{
|
|
8
|
+
id: z.ZodNullable<z.ZodString>;
|
|
9
|
+
title: z.ZodNullable<z.ZodString>;
|
|
10
|
+
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11
|
+
foldersCount: z.ZodNullable<z.ZodString>;
|
|
12
|
+
documentsCount: z.ZodNullable<z.ZodString>;
|
|
13
|
+
}, z.core.$loose>;
|
|
14
|
+
declare const signaturelyGetFolder: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
15
|
+
id: string;
|
|
16
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
17
|
//#endregion
|
|
8
18
|
export { signaturelyGetFolder };
|
|
9
19
|
//# sourceMappingURL=get-folder.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-folder.d.cts","names":[],"sources":["../../src/actions/get-folder.ts"],"mappings":";;;cAIa,yBAAA,
|
|
1
|
+
{"version":3,"file":"get-folder.d.cts","names":[],"sources":["../../src/actions/get-folder.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;cAGzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;cAQ1B,oBAAA,gCAAoB,wBAAA"}
|
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-folder.d.ts
|
|
4
|
-
declare const SignaturelyGetFolderInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const SignaturelyGetFolderInput: z.ZodObject<{
|
|
5
|
+
id: z.ZodString;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const SignaturelyGetFolderOutput: z.ZodObject<{
|
|
8
|
+
id: z.ZodNullable<z.ZodString>;
|
|
9
|
+
title: z.ZodNullable<z.ZodString>;
|
|
10
|
+
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11
|
+
foldersCount: z.ZodNullable<z.ZodString>;
|
|
12
|
+
documentsCount: z.ZodNullable<z.ZodString>;
|
|
13
|
+
}, z.core.$loose>;
|
|
14
|
+
declare const signaturelyGetFolder: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
15
|
+
id: string;
|
|
16
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
17
|
//#endregion
|
|
8
18
|
export { signaturelyGetFolder };
|
|
9
19
|
//# sourceMappingURL=get-folder.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-folder.d.mts","names":[],"sources":["../../src/actions/get-folder.ts"],"mappings":";;;cAIa,yBAAA,
|
|
1
|
+
{"version":3,"file":"get-folder.d.mts","names":[],"sources":["../../src/actions/get-folder.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;cAGzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;cAQ1B,oBAAA,gCAAoB,wBAAA"}
|
|
@@ -6,11 +6,11 @@ const signaturelyGetFolder = action("SIGNATURELY_GET_FOLDER", {
|
|
|
6
6
|
description: "Tool to get folder information by ID. Use when you need to retrieve details about a specific folder including its subfolders and documents count.",
|
|
7
7
|
input: z.object({ id: z.string().describe("The unique identifier (UUID) of the folder to retrieve") }).describe("Request parameters for getting a folder."),
|
|
8
8
|
output: z.object({
|
|
9
|
-
id: z.string().describe("Unique folder identifier (UUID)"),
|
|
10
|
-
title: z.string().describe("Name of the folder"),
|
|
9
|
+
id: z.string().describe("Unique folder identifier (UUID)").nullable(),
|
|
10
|
+
title: z.string().describe("Name of the folder").nullable(),
|
|
11
11
|
parentId: z.string().describe("ID of parent folder if nested, null for root folders").nullable().optional(),
|
|
12
|
-
foldersCount: z.string().describe("Number of subfolders"),
|
|
13
|
-
documentsCount: z.string().describe("Number of documents in folder")
|
|
12
|
+
foldersCount: z.string().describe("Number of subfolders").nullable(),
|
|
13
|
+
documentsCount: z.string().describe("Number of documents in folder").nullable()
|
|
14
14
|
}).passthrough().describe("Response schema for getting a folder.\nContains folder information including subfolders and documents count.")
|
|
15
15
|
});
|
|
16
16
|
//#endregion
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-folder.mjs","names":[],"sources":["../../src/actions/get-folder.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignaturelyGetFolderInput
|
|
1
|
+
{"version":3,"file":"get-folder.mjs","names":[],"sources":["../../src/actions/get-folder.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignaturelyGetFolderInput = z.object({\n id: z.string().describe(\"The unique identifier (UUID) of the folder to retrieve\"),\n}).describe(\"Request parameters for getting a folder.\");\nexport const SignaturelyGetFolderOutput = z.object({\n id: z.string().describe(\"Unique folder identifier (UUID)\").nullable(),\n title: z.string().describe(\"Name of the folder\").nullable(),\n parentId: z.string().describe(\"ID of parent folder if nested, null for root folders\").nullable().optional(),\n foldersCount: z.string().describe(\"Number of subfolders\").nullable(),\n documentsCount: z.string().describe(\"Number of documents in folder\").nullable(),\n}).passthrough().describe(\"Response schema for getting a folder.\\nContains folder information including subfolders and documents count.\");\n\nexport const signaturelyGetFolder = action(\"SIGNATURELY_GET_FOLDER\", {\n slug: \"signaturely-get-folder\",\n name: \"Get Folder\",\n description: \"Tool to get folder information by ID. Use when you need to retrieve details about a specific folder including its subfolders and documents count.\",\n input: SignaturelyGetFolderInput,\n output: SignaturelyGetFolderOutput,\n});\n"],"mappings":";;AAeA,MAAa,uBAAuB,OAAO,0BAA0B;CACnE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAfuC,EAAE,OAAO,EAChD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,wDAAwD,EAClF,CAAC,CAAC,CAAC,SAAS,0CAaH;CACP,QAbwC,EAAE,OAAO;EACjD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;EACpE,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS;EAC1D,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC1G,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;EACnE,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CAChF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8GAOhB;AACV,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-recent-document.cjs","names":["z","action"],"sources":["../../src/actions/get-recent-document.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignaturelyGetRecentDocumentInput
|
|
1
|
+
{"version":3,"file":"get-recent-document.cjs","names":["z","action"],"sources":["../../src/actions/get-recent-document.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignaturelyGetRecentDocumentInput = z.object({\n recentDocumentType: z.enum([\"sent\", \"completed\"]).describe(\"Type of recent document to retrieve. Use 'sent' for recently sent documents or 'completed' for recently completed documents.\"),\n}).describe(\"Request parameters for getting the most recent document.\");\nexport const SignaturelyGetRecentDocumentOutput = z.object({\n id: z.number().int().describe(\"Unique identifier for the document\").nullable().optional(),\n title: z.string().describe(\"Title of the document\").nullable().optional(),\n status: z.string().describe(\"Current status of the document\").nullable().optional(),\n createdAt: z.string().describe(\"Timestamp when the document was created\").nullable().optional(),\n updatedAt: z.string().describe(\"Timestamp when the document was last updated\").nullable().optional(),\n}).passthrough().describe(\"Response schema for getting a recent document.\\nMay return an empty response if no documents are found.\");\n\nexport const signaturelyGetRecentDocument = action(\"SIGNATURELY_GET_RECENT_DOCUMENT\", {\n slug: \"signaturely-get-recent-document\",\n name: \"Get Recent Document\",\n description: \"Tool to retrieve the most recent sent or completed document. Use when you need to fetch the latest document of a specific type (sent or completed).\",\n input: SignaturelyGetRecentDocumentInput,\n output: SignaturelyGetRecentDocumentOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAoCA,IAAAA,EAAE,OAAO,EACxD,oBAAoBA,IAAAA,EAAE,KAAK,CAAC,QAAQ,WAAW,CAAC,CAAC,CAAC,SAAS,8HAA8H,EAC3L,CAAC,CAAC,CAAC,SAAS,0DAA0D;AACtE,MAAa,qCAAqCA,IAAAA,EAAE,OAAO;CACzD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACrG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,yGAAyG;AAEnI,MAAa,+BAA+BC,eAAAA,OAAO,mCAAmC;CACpF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,22 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-recent-document.d.ts
|
|
4
|
-
declare const SignaturelyGetRecentDocumentInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const SignaturelyGetRecentDocumentInput: z.ZodObject<{
|
|
5
|
+
recentDocumentType: z.ZodEnum<{
|
|
6
|
+
sent: "sent";
|
|
7
|
+
completed: "completed";
|
|
8
|
+
}>;
|
|
9
|
+
}, z.core.$strip>;
|
|
10
|
+
declare const SignaturelyGetRecentDocumentOutput: z.ZodObject<{
|
|
11
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
12
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
|
+
createdAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15
|
+
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
+
}, z.core.$loose>;
|
|
17
|
+
declare const signaturelyGetRecentDocument: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
18
|
+
recentDocumentType: "sent" | "completed";
|
|
19
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
20
|
//#endregion
|
|
8
21
|
export { signaturelyGetRecentDocument };
|
|
9
22
|
//# sourceMappingURL=get-recent-document.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-recent-document.d.cts","names":[],"sources":["../../src/actions/get-recent-document.ts"],"mappings":";;;cAIa,iCAAA,
|
|
1
|
+
{"version":3,"file":"get-recent-document.d.cts","names":[],"sources":["../../src/actions/get-recent-document.ts"],"mappings":";;;cAIa,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;;cAGjC,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;cAQlC,4BAAA,gCAA4B,wBAAA"}
|
|
@@ -1,9 +1,22 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-recent-document.d.ts
|
|
4
|
-
declare const SignaturelyGetRecentDocumentInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const SignaturelyGetRecentDocumentInput: z.ZodObject<{
|
|
5
|
+
recentDocumentType: z.ZodEnum<{
|
|
6
|
+
sent: "sent";
|
|
7
|
+
completed: "completed";
|
|
8
|
+
}>;
|
|
9
|
+
}, z.core.$strip>;
|
|
10
|
+
declare const SignaturelyGetRecentDocumentOutput: z.ZodObject<{
|
|
11
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
12
|
+
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
|
+
createdAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15
|
+
updatedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
+
}, z.core.$loose>;
|
|
17
|
+
declare const signaturelyGetRecentDocument: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
18
|
+
recentDocumentType: "sent" | "completed";
|
|
19
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
20
|
//#endregion
|
|
8
21
|
export { signaturelyGetRecentDocument };
|
|
9
22
|
//# sourceMappingURL=get-recent-document.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-recent-document.d.mts","names":[],"sources":["../../src/actions/get-recent-document.ts"],"mappings":";;;cAIa,iCAAA,
|
|
1
|
+
{"version":3,"file":"get-recent-document.d.mts","names":[],"sources":["../../src/actions/get-recent-document.ts"],"mappings":";;;cAIa,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;;cAGjC,kCAAA,EAAkC,CAAA,CAAA,SAAA;;;;;;;cAQlC,4BAAA,gCAA4B,wBAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-recent-document.mjs","names":[],"sources":["../../src/actions/get-recent-document.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignaturelyGetRecentDocumentInput
|
|
1
|
+
{"version":3,"file":"get-recent-document.mjs","names":[],"sources":["../../src/actions/get-recent-document.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignaturelyGetRecentDocumentInput = z.object({\n recentDocumentType: z.enum([\"sent\", \"completed\"]).describe(\"Type of recent document to retrieve. Use 'sent' for recently sent documents or 'completed' for recently completed documents.\"),\n}).describe(\"Request parameters for getting the most recent document.\");\nexport const SignaturelyGetRecentDocumentOutput = z.object({\n id: z.number().int().describe(\"Unique identifier for the document\").nullable().optional(),\n title: z.string().describe(\"Title of the document\").nullable().optional(),\n status: z.string().describe(\"Current status of the document\").nullable().optional(),\n createdAt: z.string().describe(\"Timestamp when the document was created\").nullable().optional(),\n updatedAt: z.string().describe(\"Timestamp when the document was last updated\").nullable().optional(),\n}).passthrough().describe(\"Response schema for getting a recent document.\\nMay return an empty response if no documents are found.\");\n\nexport const signaturelyGetRecentDocument = action(\"SIGNATURELY_GET_RECENT_DOCUMENT\", {\n slug: \"signaturely-get-recent-document\",\n name: \"Get Recent Document\",\n description: \"Tool to retrieve the most recent sent or completed document. Use when you need to fetch the latest document of a specific type (sent or completed).\",\n input: SignaturelyGetRecentDocumentInput,\n output: SignaturelyGetRecentDocumentOutput,\n});\n"],"mappings":";;AAeA,MAAa,+BAA+B,OAAO,mCAAmC;CACpF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAf+C,EAAE,OAAO,EACxD,oBAAoB,EAAE,KAAK,CAAC,QAAQ,WAAW,CAAC,CAAC,CAAC,SAAS,8HAA8H,EAC3L,CAAC,CAAC,CAAC,SAAS,0DAaH;CACP,QAbgD,EAAE,OAAO;EACzD,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACxF,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACxE,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAClF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC9F,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,yGAOhB;AACV,CAAC"}
|
|
@@ -17,7 +17,7 @@ const SignaturelyListDocumentsInput = zod.z.object({
|
|
|
17
17
|
created_at_from: zod.z.string().describe("Return documents created after this date (ISO 8601)").optional()
|
|
18
18
|
}).describe("Query parameters for listing documents.");
|
|
19
19
|
const SignaturelyListDocuments_DocumentSchema = zod.z.object({
|
|
20
|
-
id: zod.z.number().int().describe("Unique identifier for the document"),
|
|
20
|
+
id: zod.z.number().int().describe("Unique identifier for the document").nullable(),
|
|
21
21
|
title: zod.z.string().describe("Title of the document").nullable().optional(),
|
|
22
22
|
status: zod.z.string().describe("Current status of the document").nullable().optional(),
|
|
23
23
|
createdAt: zod.z.string().describe("Timestamp when the document was created").nullable().optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-documents.cjs","names":["z","action"],"sources":["../../src/actions/list-documents.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignaturelyListDocumentsInput
|
|
1
|
+
{"version":3,"file":"list-documents.cjs","names":["z","action"],"sources":["../../src/actions/list-documents.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SignaturelyListDocumentsInput = z.object({\n page: z.number().int().default(1).describe(\"Page number for pagination (minimum 1)\").optional(),\n limit: z.number().int().default(10).describe(\"Number of results per page (1–100)\").optional(),\n user_id: z.number().int().describe(\"Filter documents by user ID\").optional(),\n statuses: z.array(z.enum([\"draft\", \"sent\", \"signed\", \"declined\", \"canceled\"])).describe(\"Filter by document statuses. Provide a list of statuses to filter by (e.g., ['draft', 'sent']). Valid values: draft, sent, signed, declined, canceled\").optional(),\n template: z.boolean().describe(\"Filter by template flag (true for templates, false for documents)\").optional(),\n created_at_to: z.string().describe(\"Return documents created before this date (ISO 8601)\").optional(),\n created_at_from: z.string().describe(\"Return documents created after this date (ISO 8601)\").optional(),\n}).describe(\"Query parameters for listing documents.\");\nconst SignaturelyListDocuments_DocumentSchema = z.object({\n id: z.number().int().describe(\"Unique identifier for the document\").nullable(),\n title: z.string().describe(\"Title of the document\").nullable().optional(),\n status: z.string().describe(\"Current status of the document\").nullable().optional(),\n createdAt: z.string().describe(\"Timestamp when the document was created\").nullable().optional(),\n updatedAt: z.string().describe(\"Timestamp when the document was last updated\").nullable().optional(),\n}).passthrough().describe(\"A document object.\");\nexport const SignaturelyListDocumentsOutput = z.object({\n items: z.array(SignaturelyListDocuments_DocumentSchema).describe(\"List of document objects\").nullable().optional(),\n itemCount: z.number().int().default(0).describe(\"Number of items in current page\").nullable().optional(),\n totalItems: z.number().int().default(0).describe(\"Total number of documents\").nullable().optional(),\n totalPages: z.number().int().default(0).describe(\"Total number of pages available\").nullable().optional(),\n currentPage: z.number().int().default(1).describe(\"Current page number\").nullable().optional(),\n itemsPerPage: z.number().int().default(10).describe(\"Number of documents per page\").nullable().optional(),\n}).passthrough().describe(\"Response schema for listing documents.\\nContains the documents list with pagination info.\");\n\nexport const signaturelyListDocuments = action(\"SIGNATURELY_LIST_DOCUMENTS\", {\n slug: \"signaturely-list-documents\",\n name: \"List Documents\",\n description: \"Tool to list all documents. Use after authenticating to retrieve documents with optional filters and pagination.\",\n input: SignaturelyListDocumentsInput,\n output: SignaturelyListDocumentsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAAgCA,IAAAA,EAAE,OAAO;CACpD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;CAC9F,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CAC5F,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;CAC3E,UAAUA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,KAAK;EAAC;EAAS;EAAQ;EAAU;EAAY;CAAU,CAAC,CAAC,CAAC,CAAC,SAAS,uJAAuJ,CAAC,CAAC,SAAS;CAC1P,UAAUA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,mEAAmE,CAAC,CAAC,SAAS;CAC7G,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CACpG,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS;AACvG,CAAC,CAAC,CAAC,SAAS,yCAAyC;AACrD,MAAM,0CAA0CA,IAAAA,EAAE,OAAO;CACvD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CAC7E,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACrG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,oBAAoB;AAC9C,MAAa,iCAAiCA,IAAAA,EAAE,OAAO;CACrD,OAAOA,IAAAA,EAAE,MAAM,uCAAuC,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjH,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7F,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,EAAE,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC1G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2FAA2F;AAErH,MAAa,2BAA2BC,eAAAA,OAAO,8BAA8B;CAC3E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|