@keystrokehq/passslot 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-scanner.cjs +1 -1
- package/dist/actions/create-scanner.cjs.map +1 -1
- package/dist/actions/create-scanner.d.cts +23 -3
- package/dist/actions/create-scanner.d.cts.map +1 -1
- package/dist/actions/create-scanner.d.mts +23 -3
- package/dist/actions/create-scanner.d.mts.map +1 -1
- package/dist/actions/create-scanner.mjs +1 -1
- package/dist/actions/create-scanner.mjs.map +1 -1
- package/dist/actions/delete-scanner.cjs +1 -1
- package/dist/actions/delete-scanner.cjs.map +1 -1
- package/dist/actions/delete-scanner.d.cts +10 -3
- package/dist/actions/delete-scanner.d.cts.map +1 -1
- package/dist/actions/delete-scanner.d.mts +10 -3
- package/dist/actions/delete-scanner.d.mts.map +1 -1
- package/dist/actions/delete-scanner.mjs +1 -1
- package/dist/actions/delete-scanner.mjs.map +1 -1
- package/dist/actions/get-pass-types.cjs.map +1 -1
- package/dist/actions/get-pass-types.d.cts +3 -3
- package/dist/actions/get-pass-types.d.cts.map +1 -1
- package/dist/actions/get-pass-types.d.mts +3 -3
- package/dist/actions/get-pass-types.d.mts.map +1 -1
- package/dist/actions/get-pass-types.mjs.map +1 -1
- package/dist/actions/get-passes-by-pass-type.cjs.map +1 -1
- package/dist/actions/get-passes-by-pass-type.d.cts +7 -3
- package/dist/actions/get-passes-by-pass-type.d.cts.map +1 -1
- package/dist/actions/get-passes-by-pass-type.d.mts +7 -3
- package/dist/actions/get-passes-by-pass-type.d.mts.map +1 -1
- package/dist/actions/get-passes-by-pass-type.mjs.map +1 -1
- package/dist/actions/get-scanner.cjs +3 -3
- package/dist/actions/get-scanner.cjs.map +1 -1
- package/dist/actions/get-scanner.d.cts +14 -3
- package/dist/actions/get-scanner.d.cts.map +1 -1
- package/dist/actions/get-scanner.d.mts +14 -3
- package/dist/actions/get-scanner.d.mts.map +1 -1
- package/dist/actions/get-scanner.mjs +3 -3
- package/dist/actions/get-scanner.mjs.map +1 -1
- package/dist/actions/list-scanners.cjs.map +1 -1
- package/dist/actions/list-scanners.d.cts +3 -3
- package/dist/actions/list-scanners.d.cts.map +1 -1
- package/dist/actions/list-scanners.d.mts +3 -3
- package/dist/actions/list-scanners.d.mts.map +1 -1
- package/dist/actions/list-scanners.mjs.map +1 -1
- package/dist/actions/list-templates.cjs.map +1 -1
- package/dist/actions/list-templates.d.cts +3 -3
- package/dist/actions/list-templates.d.cts.map +1 -1
- package/dist/actions/list-templates.d.mts +3 -3
- package/dist/actions/list-templates.d.mts.map +1 -1
- package/dist/actions/list-templates.mjs.map +1 -1
- package/dist/actions/update-scanner.cjs +4 -4
- package/dist/actions/update-scanner.cjs.map +1 -1
- package/dist/actions/update-scanner.d.cts +20 -3
- package/dist/actions/update-scanner.d.cts.map +1 -1
- package/dist/actions/update-scanner.d.mts +20 -3
- package/dist/actions/update-scanner.d.mts.map +1 -1
- package/dist/actions/update-scanner.mjs +4 -4
- package/dist/actions/update-scanner.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":["passslot","executePassslotTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { passslot } from \"./app\";\nimport { executePassslotTool } 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":["passslot","executePassslotTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { passslot } from \"./app\";\nimport { executePassslotTool } 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 passslot.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 executePassslotTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,SAAS,OAAO;EACrB,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,oBAAoB,MAAM,KAAgC,CAAC;EAC3F;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 { passslot } from \"./app\";\nimport { executePassslotTool } 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 { passslot } from \"./app\";\nimport { executePassslotTool } 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 passslot.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 executePassslotTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,SAAS,OAAO;EACrB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,oBAAoB,MAAM,KAAgC,CAAC;EAC3F;CACF,CAAC;AACH"}
|
|
@@ -14,7 +14,7 @@ const PassslotCreateScannerOutput = zod.z.object({
|
|
|
14
14
|
fullAccess: zod.z.boolean().describe("Whether scanner has full access to all templates").nullable().optional(),
|
|
15
15
|
authenticationToken: zod.z.string().describe("Authentication token for the scanner").nullable().optional(),
|
|
16
16
|
passverifierAuthorizationURL: zod.z.string().describe("Authorization URL for PassVerifier scanner type").nullable().optional()
|
|
17
|
-
}).describe("Response model for scanner creation - returns scanner details.");
|
|
17
|
+
}).passthrough().describe("Response model for scanner creation - returns scanner details.");
|
|
18
18
|
const passslotCreateScanner = require_action.action("PASSSLOT_CREATE_SCANNER", {
|
|
19
19
|
slug: "passslot-create-scanner",
|
|
20
20
|
name: "Create Scanner",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-scanner.cjs","names":["z","action"],"sources":["../../src/actions/create-scanner.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotCreateScannerInput
|
|
1
|
+
{"version":3,"file":"create-scanner.cjs","names":["z","action"],"sources":["../../src/actions/create-scanner.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotCreateScannerInput = z.object({\n name: z.string().describe(\"Scanner name\"),\n type: z.enum([\"PassVerifier\", \"Browser\"]).describe(\"Scanner type: PassVerifier or Browser (case sensitive)\"),\n fullAccess: z.boolean().describe(\"Whether scanner has full access to all templates. If false, allowedTemplates array is required\").optional(),\n allowedTemplates: z.array(z.string()).describe(\"Array of template IDs that the scanner can access. Required if fullAccess is false\").optional(),\n}).describe(\"Request model for creating a new scanner in Passslot.\");\nexport const PassslotCreateScannerOutput = z.object({\n id: z.number().int().describe(\"Unique identifier for the scanner\").nullable().optional(),\n name: z.string().describe(\"Scanner name\").nullable().optional(),\n type: z.string().describe(\"Scanner type (PassVerifier or Browser)\").nullable().optional(),\n fullAccess: z.boolean().describe(\"Whether scanner has full access to all templates\").nullable().optional(),\n authenticationToken: z.string().describe(\"Authentication token for the scanner\").nullable().optional(),\n passverifierAuthorizationURL: z.string().describe(\"Authorization URL for PassVerifier scanner type\").nullable().optional(),\n}).passthrough().describe(\"Response model for scanner creation - returns scanner details.\");\n\nexport const passslotCreateScanner = action(\"PASSSLOT_CREATE_SCANNER\", {\n slug: \"passslot-create-scanner\",\n name: \"Create Scanner\",\n description: \"Tool to create a new scanner in Passslot. Use when you need to create a PassVerifier or Browser type scanner. Your app key must have full access to manage scanners. If fullAccess is false, provide allowedTemplates array.\",\n input: PassslotCreateScannerInput,\n output: PassslotCreateScannerOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO;CACjD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc;CACxC,MAAMA,IAAAA,EAAE,KAAK,CAAC,gBAAgB,SAAS,CAAC,CAAC,CAAC,SAAS,wDAAwD;CAC3G,YAAYA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,gGAAgG,CAAC,CAAC,SAAS;CAC5I,kBAAkBA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,oFAAoF,CAAC,CAAC,SAAS;AAChJ,CAAC,CAAC,CAAC,SAAS,uDAAuD;AACnE,MAAa,8BAA8BA,IAAAA,EAAE,OAAO;CAClD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvF,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,YAAYA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzG,qBAAqBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,8BAA8BA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3H,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,gEAAgE;AAE1F,MAAa,wBAAwBC,eAAAA,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,29 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/create-scanner.d.ts
|
|
4
|
-
declare const PassslotCreateScannerInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const PassslotCreateScannerInput: z.ZodObject<{
|
|
5
|
+
name: z.ZodString;
|
|
6
|
+
type: z.ZodEnum<{
|
|
7
|
+
PassVerifier: "PassVerifier";
|
|
8
|
+
Browser: "Browser";
|
|
9
|
+
}>;
|
|
10
|
+
fullAccess: z.ZodOptional<z.ZodBoolean>;
|
|
11
|
+
allowedTemplates: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12
|
+
}, z.core.$strip>;
|
|
13
|
+
declare const PassslotCreateScannerOutput: z.ZodObject<{
|
|
14
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
15
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
+
type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17
|
+
fullAccess: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
18
|
+
authenticationToken: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
|
+
passverifierAuthorizationURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
|
+
}, z.core.$loose>;
|
|
21
|
+
declare const passslotCreateScanner: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
22
|
+
name: string;
|
|
23
|
+
type: "PassVerifier" | "Browser";
|
|
24
|
+
fullAccess?: boolean | undefined;
|
|
25
|
+
allowedTemplates?: string[] | undefined;
|
|
26
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
27
|
//#endregion
|
|
8
28
|
export { passslotCreateScanner };
|
|
9
29
|
//# sourceMappingURL=create-scanner.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-scanner.d.cts","names":[],"sources":["../../src/actions/create-scanner.ts"],"mappings":";;;cAIa,0BAAA,
|
|
1
|
+
{"version":3,"file":"create-scanner.d.cts","names":[],"sources":["../../src/actions/create-scanner.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;cAM1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;cAS3B,qBAAA,gCAAqB,wBAAA"}
|
|
@@ -1,9 +1,29 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/create-scanner.d.ts
|
|
4
|
-
declare const PassslotCreateScannerInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const PassslotCreateScannerInput: z.ZodObject<{
|
|
5
|
+
name: z.ZodString;
|
|
6
|
+
type: z.ZodEnum<{
|
|
7
|
+
PassVerifier: "PassVerifier";
|
|
8
|
+
Browser: "Browser";
|
|
9
|
+
}>;
|
|
10
|
+
fullAccess: z.ZodOptional<z.ZodBoolean>;
|
|
11
|
+
allowedTemplates: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
12
|
+
}, z.core.$strip>;
|
|
13
|
+
declare const PassslotCreateScannerOutput: z.ZodObject<{
|
|
14
|
+
id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
15
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
+
type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17
|
+
fullAccess: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
18
|
+
authenticationToken: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
|
+
passverifierAuthorizationURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
|
+
}, z.core.$loose>;
|
|
21
|
+
declare const passslotCreateScanner: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
22
|
+
name: string;
|
|
23
|
+
type: "PassVerifier" | "Browser";
|
|
24
|
+
fullAccess?: boolean | undefined;
|
|
25
|
+
allowedTemplates?: string[] | undefined;
|
|
26
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
27
|
//#endregion
|
|
8
28
|
export { passslotCreateScanner };
|
|
9
29
|
//# sourceMappingURL=create-scanner.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-scanner.d.mts","names":[],"sources":["../../src/actions/create-scanner.ts"],"mappings":";;;cAIa,0BAAA,
|
|
1
|
+
{"version":3,"file":"create-scanner.d.mts","names":[],"sources":["../../src/actions/create-scanner.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;cAM1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;cAS3B,qBAAA,gCAAqB,wBAAA"}
|
|
@@ -17,7 +17,7 @@ const passslotCreateScanner = action("PASSSLOT_CREATE_SCANNER", {
|
|
|
17
17
|
fullAccess: z.boolean().describe("Whether scanner has full access to all templates").nullable().optional(),
|
|
18
18
|
authenticationToken: z.string().describe("Authentication token for the scanner").nullable().optional(),
|
|
19
19
|
passverifierAuthorizationURL: z.string().describe("Authorization URL for PassVerifier scanner type").nullable().optional()
|
|
20
|
-
}).describe("Response model for scanner creation - returns scanner details.")
|
|
20
|
+
}).passthrough().describe("Response model for scanner creation - returns scanner details.")
|
|
21
21
|
});
|
|
22
22
|
//#endregion
|
|
23
23
|
export { passslotCreateScanner };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-scanner.mjs","names":[],"sources":["../../src/actions/create-scanner.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotCreateScannerInput
|
|
1
|
+
{"version":3,"file":"create-scanner.mjs","names":[],"sources":["../../src/actions/create-scanner.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotCreateScannerInput = z.object({\n name: z.string().describe(\"Scanner name\"),\n type: z.enum([\"PassVerifier\", \"Browser\"]).describe(\"Scanner type: PassVerifier or Browser (case sensitive)\"),\n fullAccess: z.boolean().describe(\"Whether scanner has full access to all templates. If false, allowedTemplates array is required\").optional(),\n allowedTemplates: z.array(z.string()).describe(\"Array of template IDs that the scanner can access. Required if fullAccess is false\").optional(),\n}).describe(\"Request model for creating a new scanner in Passslot.\");\nexport const PassslotCreateScannerOutput = z.object({\n id: z.number().int().describe(\"Unique identifier for the scanner\").nullable().optional(),\n name: z.string().describe(\"Scanner name\").nullable().optional(),\n type: z.string().describe(\"Scanner type (PassVerifier or Browser)\").nullable().optional(),\n fullAccess: z.boolean().describe(\"Whether scanner has full access to all templates\").nullable().optional(),\n authenticationToken: z.string().describe(\"Authentication token for the scanner\").nullable().optional(),\n passverifierAuthorizationURL: z.string().describe(\"Authorization URL for PassVerifier scanner type\").nullable().optional(),\n}).passthrough().describe(\"Response model for scanner creation - returns scanner details.\");\n\nexport const passslotCreateScanner = action(\"PASSSLOT_CREATE_SCANNER\", {\n slug: \"passslot-create-scanner\",\n name: \"Create Scanner\",\n description: \"Tool to create a new scanner in Passslot. Use when you need to create a PassVerifier or Browser type scanner. Your app key must have full access to manage scanners. If fullAccess is false, provide allowedTemplates array.\",\n input: PassslotCreateScannerInput,\n output: PassslotCreateScannerOutput,\n});\n"],"mappings":";;AAmBA,MAAa,wBAAwB,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAnBwC,EAAE,OAAO;EACjD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc;EACxC,MAAM,EAAE,KAAK,CAAC,gBAAgB,SAAS,CAAC,CAAC,CAAC,SAAS,wDAAwD;EAC3G,YAAY,EAAE,QAAQ,CAAC,CAAC,SAAS,gGAAgG,CAAC,CAAC,SAAS;EAC5I,kBAAkB,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,oFAAoF,CAAC,CAAC,SAAS;CAChJ,CAAC,CAAC,CAAC,SAAS,uDAcH;CACP,QAdyC,EAAE,OAAO;EAClD,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvF,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC9D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACxF,YAAY,EAAE,QAAQ,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACzG,qBAAqB,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACrG,8BAA8B,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3H,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,gEAOhB;AACV,CAAC"}
|
|
@@ -5,7 +5,7 @@ const PassslotDeleteScannerInput = zod.z.object({ id: zod.z.number().int().descr
|
|
|
5
5
|
const PassslotDeleteScannerOutput = zod.z.object({
|
|
6
6
|
message: zod.z.string().describe("Optional message from the API response").nullable().optional(),
|
|
7
7
|
success: zod.z.boolean().default(true).describe("Whether the scanner was successfully deleted").nullable().optional()
|
|
8
|
-
}).describe("Response model for delete scanner operation.");
|
|
8
|
+
}).passthrough().describe("Response model for delete scanner operation.");
|
|
9
9
|
const passslotDeleteScanner = require_action.action("PASSSLOT_DELETE_SCANNER", {
|
|
10
10
|
slug: "passslot-delete-scanner",
|
|
11
11
|
name: "Delete Scanner",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"delete-scanner.cjs","names":["z","action"],"sources":["../../src/actions/delete-scanner.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotDeleteScannerInput
|
|
1
|
+
{"version":3,"file":"delete-scanner.cjs","names":["z","action"],"sources":["../../src/actions/delete-scanner.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotDeleteScannerInput = z.object({\n id: z.number().int().describe(\"The scanner ID to delete\"),\n}).describe(\"Request model for deleting a scanner.\");\nexport const PassslotDeleteScannerOutput = z.object({\n message: z.string().describe(\"Optional message from the API response\").nullable().optional(),\n success: z.boolean().default(true).describe(\"Whether the scanner was successfully deleted\").nullable().optional(),\n}).passthrough().describe(\"Response model for delete scanner operation.\");\n\nexport const passslotDeleteScanner = action(\"PASSSLOT_DELETE_SCANNER\", {\n slug: \"passslot-delete-scanner\",\n name: \"Delete Scanner\",\n description: \"Tool to delete a scanner by ID. Use when you need to remove a scanner from the system. Requires full access app key to manage scanners.\",\n input: PassslotDeleteScannerInput,\n output: PassslotDeleteScannerOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO,EACjD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,EAC1D,CAAC,CAAC,CAAC,SAAS,uCAAuC;AACnD,MAAa,8BAA8BA,IAAAA,EAAE,OAAO;CAClD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3F,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAClH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8CAA8C;AAExE,MAAa,wBAAwBC,eAAAA,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/delete-scanner.d.ts
|
|
4
|
-
declare const PassslotDeleteScannerInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const PassslotDeleteScannerInput: z.ZodObject<{
|
|
5
|
+
id: z.ZodNumber;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const PassslotDeleteScannerOutput: z.ZodObject<{
|
|
8
|
+
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9
|
+
success: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
10
|
+
}, z.core.$loose>;
|
|
11
|
+
declare const passslotDeleteScanner: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
12
|
+
id: number;
|
|
13
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
14
|
//#endregion
|
|
8
15
|
export { passslotDeleteScanner };
|
|
9
16
|
//# sourceMappingURL=delete-scanner.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"delete-scanner.d.cts","names":[],"sources":["../../src/actions/delete-scanner.ts"],"mappings":";;;cAIa,0BAAA,
|
|
1
|
+
{"version":3,"file":"delete-scanner.d.cts","names":[],"sources":["../../src/actions/delete-scanner.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;cAG1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;cAK3B,qBAAA,gCAAqB,wBAAA"}
|
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/delete-scanner.d.ts
|
|
4
|
-
declare const PassslotDeleteScannerInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const PassslotDeleteScannerInput: z.ZodObject<{
|
|
5
|
+
id: z.ZodNumber;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const PassslotDeleteScannerOutput: z.ZodObject<{
|
|
8
|
+
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9
|
+
success: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
10
|
+
}, z.core.$loose>;
|
|
11
|
+
declare const passslotDeleteScanner: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
12
|
+
id: number;
|
|
13
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
14
|
//#endregion
|
|
8
15
|
export { passslotDeleteScanner };
|
|
9
16
|
//# sourceMappingURL=delete-scanner.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"delete-scanner.d.mts","names":[],"sources":["../../src/actions/delete-scanner.ts"],"mappings":";;;cAIa,0BAAA,
|
|
1
|
+
{"version":3,"file":"delete-scanner.d.mts","names":[],"sources":["../../src/actions/delete-scanner.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;cAG1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;cAK3B,qBAAA,gCAAqB,wBAAA"}
|
|
@@ -8,7 +8,7 @@ const passslotDeleteScanner = action("PASSSLOT_DELETE_SCANNER", {
|
|
|
8
8
|
output: z.object({
|
|
9
9
|
message: z.string().describe("Optional message from the API response").nullable().optional(),
|
|
10
10
|
success: z.boolean().default(true).describe("Whether the scanner was successfully deleted").nullable().optional()
|
|
11
|
-
}).describe("Response model for delete scanner operation.")
|
|
11
|
+
}).passthrough().describe("Response model for delete scanner operation.")
|
|
12
12
|
});
|
|
13
13
|
//#endregion
|
|
14
14
|
export { passslotDeleteScanner };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"delete-scanner.mjs","names":[],"sources":["../../src/actions/delete-scanner.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotDeleteScannerInput
|
|
1
|
+
{"version":3,"file":"delete-scanner.mjs","names":[],"sources":["../../src/actions/delete-scanner.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotDeleteScannerInput = z.object({\n id: z.number().int().describe(\"The scanner ID to delete\"),\n}).describe(\"Request model for deleting a scanner.\");\nexport const PassslotDeleteScannerOutput = z.object({\n message: z.string().describe(\"Optional message from the API response\").nullable().optional(),\n success: z.boolean().default(true).describe(\"Whether the scanner was successfully deleted\").nullable().optional(),\n}).passthrough().describe(\"Response model for delete scanner operation.\");\n\nexport const passslotDeleteScanner = action(\"PASSSLOT_DELETE_SCANNER\", {\n slug: \"passslot-delete-scanner\",\n name: \"Delete Scanner\",\n description: \"Tool to delete a scanner by ID. Use when you need to remove a scanner from the system. Requires full access app key to manage scanners.\",\n input: PassslotDeleteScannerInput,\n output: PassslotDeleteScannerOutput,\n});\n"],"mappings":";;AAYA,MAAa,wBAAwB,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAZwC,EAAE,OAAO,EACjD,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,EAC1D,CAAC,CAAC,CAAC,SAAS,uCAUH;CACP,QAVyC,EAAE,OAAO;EAClD,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC3F,SAAS,EAAE,QAAQ,CAAC,CAAC,QAAQ,IAAI,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8CAOhB;AACV,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-pass-types.cjs","names":["z","action"],"sources":["../../src/actions/get-pass-types.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotGetPassTypesInput
|
|
1
|
+
{"version":3,"file":"get-pass-types.cjs","names":["z","action"],"sources":["../../src/actions/get-pass-types.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotGetPassTypesInput = z.object({}).describe(\"Request model for GET_PASS_TYPES: no parameters.\");\nexport const PassslotGetPassTypesOutput = z.unknown();\n\nexport const passslotGetPassTypes = action(\"PASSSLOT_GET_PASS_TYPES\", {\n slug: \"passslot-get-pass-types\",\n name: \"Get Pass Types\",\n description: \"Tool to list all available pass types. Use when you need to retrieve supported pass-type identifiers before creating passes.\",\n input: PassslotGetPassTypesInput,\n output: PassslotGetPassTypesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,kDAAkD;AACjH,MAAa,6BAA6BA,IAAAA,EAAE,QAAQ;AAEpD,MAAa,uBAAuBC,eAAAA,OAAO,2BAA2B;CACpE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-pass-types.d.ts
|
|
4
|
-
declare const PassslotGetPassTypesInput: z.
|
|
5
|
-
declare const PassslotGetPassTypesOutput: z.
|
|
6
|
-
declare const passslotGetPassTypes: import("@keystrokehq/action").WorkflowActionDefinition<
|
|
4
|
+
declare const PassslotGetPassTypesInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
|
+
declare const PassslotGetPassTypesOutput: z.ZodUnknown;
|
|
6
|
+
declare const passslotGetPassTypes: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
7
|
//#endregion
|
|
8
8
|
export { passslotGetPassTypes };
|
|
9
9
|
//# sourceMappingURL=get-pass-types.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-pass-types.d.cts","names":[],"sources":["../../src/actions/get-pass-types.ts"],"mappings":";;;cAIa,yBAAA,
|
|
1
|
+
{"version":3,"file":"get-pass-types.d.cts","names":[],"sources":["../../src/actions/get-pass-types.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACzB,0BAAA,EAA0B,CAAA,CAAA,UAAc;AAAA,cAExC,oBAAA,gCAAoB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-pass-types.d.ts
|
|
4
|
-
declare const PassslotGetPassTypesInput: z.
|
|
5
|
-
declare const PassslotGetPassTypesOutput: z.
|
|
6
|
-
declare const passslotGetPassTypes: import("@keystrokehq/action").WorkflowActionDefinition<
|
|
4
|
+
declare const PassslotGetPassTypesInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
|
+
declare const PassslotGetPassTypesOutput: z.ZodUnknown;
|
|
6
|
+
declare const passslotGetPassTypes: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
7
|
//#endregion
|
|
8
8
|
export { passslotGetPassTypes };
|
|
9
9
|
//# sourceMappingURL=get-pass-types.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-pass-types.d.mts","names":[],"sources":["../../src/actions/get-pass-types.ts"],"mappings":";;;cAIa,yBAAA,
|
|
1
|
+
{"version":3,"file":"get-pass-types.d.mts","names":[],"sources":["../../src/actions/get-pass-types.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACzB,0BAAA,EAA0B,CAAA,CAAA,UAAc;AAAA,cAExC,oBAAA,gCAAoB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-pass-types.mjs","names":[],"sources":["../../src/actions/get-pass-types.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotGetPassTypesInput
|
|
1
|
+
{"version":3,"file":"get-pass-types.mjs","names":[],"sources":["../../src/actions/get-pass-types.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotGetPassTypesInput = z.object({}).describe(\"Request model for GET_PASS_TYPES: no parameters.\");\nexport const PassslotGetPassTypesOutput = z.unknown();\n\nexport const passslotGetPassTypes = action(\"PASSSLOT_GET_PASS_TYPES\", {\n slug: \"passslot-get-pass-types\",\n name: \"Get Pass Types\",\n description: \"Tool to list all available pass types. Use when you need to retrieve supported pass-type identifiers before creating passes.\",\n input: PassslotGetPassTypesInput,\n output: PassslotGetPassTypesOutput,\n});\n"],"mappings":";;AAOA,MAAa,uBAAuB,OAAO,2BAA2B;CACpE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAPuC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,kDAOtD;CACP,QAPwC,EAAE,QAOlC;AACV,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-passes-by-pass-type.cjs","names":["z","action"],"sources":["../../src/actions/get-passes-by-pass-type.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotGetPassesByPassTypeInput
|
|
1
|
+
{"version":3,"file":"get-passes-by-pass-type.cjs","names":["z","action"],"sources":["../../src/actions/get-passes-by-pass-type.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotGetPassesByPassTypeInput = z.object({\n passtype_id: z.string().describe(\"Filter passes by this Pass Type ID (e.g., 'pass.example.id1'). If not provided, returns all passes.\").optional(),\n}).describe(\"Request model for GetPassesByPassType API.\");\nexport const PassslotGetPassesByPassTypeOutput = z.unknown();\n\nexport const passslotGetPassesByPassType = action(\"PASSSLOT_GET_PASSES_BY_PASS_TYPE\", {\n slug: \"passslot-get-passes-by-pass-type\",\n name: \"Get Passes by Pass Type\",\n description: \"Tool to list Wallet passes, optionally filtered by a Pass Type ID. If passtype_id is provided, returns passes for that specific pass type. If passtype_id is not provided, returns all passes.\",\n input: PassslotGetPassesByPassTypeInput,\n output: PassslotGetPassesByPassTypeOutput,\n});\n"],"mappings":";;;AAIA,MAAa,mCAAmCA,IAAAA,EAAE,OAAO,EACvD,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qGAAqG,CAAC,CAAC,SAAS,EACnJ,CAAC,CAAC,CAAC,SAAS,4CAA4C;AACxD,MAAa,oCAAoCA,IAAAA,EAAE,QAAQ;AAE3D,MAAa,8BAA8BC,eAAAA,OAAO,oCAAoC;CACpF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-passes-by-pass-type.d.ts
|
|
4
|
-
declare const PassslotGetPassesByPassTypeInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const PassslotGetPassesByPassTypeInput: z.ZodObject<{
|
|
5
|
+
passtype_id: z.ZodOptional<z.ZodString>;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const PassslotGetPassesByPassTypeOutput: z.ZodUnknown;
|
|
8
|
+
declare const passslotGetPassesByPassType: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
9
|
+
passtype_id?: string | undefined;
|
|
10
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
11
|
//#endregion
|
|
8
12
|
export { passslotGetPassesByPassType };
|
|
9
13
|
//# sourceMappingURL=get-passes-by-pass-type.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-passes-by-pass-type.d.cts","names":[],"sources":["../../src/actions/get-passes-by-pass-type.ts"],"mappings":";;;cAIa,gCAAA,
|
|
1
|
+
{"version":3,"file":"get-passes-by-pass-type.d.cts","names":[],"sources":["../../src/actions/get-passes-by-pass-type.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;cAGhC,iCAAA,EAAiC,CAAA,CAAA,UAAc;AAAA,cAE/C,2BAAA,gCAA2B,wBAAA"}
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-passes-by-pass-type.d.ts
|
|
4
|
-
declare const PassslotGetPassesByPassTypeInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const PassslotGetPassesByPassTypeInput: z.ZodObject<{
|
|
5
|
+
passtype_id: z.ZodOptional<z.ZodString>;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const PassslotGetPassesByPassTypeOutput: z.ZodUnknown;
|
|
8
|
+
declare const passslotGetPassesByPassType: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
9
|
+
passtype_id?: string | undefined;
|
|
10
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
11
|
//#endregion
|
|
8
12
|
export { passslotGetPassesByPassType };
|
|
9
13
|
//# sourceMappingURL=get-passes-by-pass-type.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-passes-by-pass-type.d.mts","names":[],"sources":["../../src/actions/get-passes-by-pass-type.ts"],"mappings":";;;cAIa,gCAAA,
|
|
1
|
+
{"version":3,"file":"get-passes-by-pass-type.d.mts","names":[],"sources":["../../src/actions/get-passes-by-pass-type.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;cAGhC,iCAAA,EAAiC,CAAA,CAAA,UAAc;AAAA,cAE/C,2BAAA,gCAA2B,wBAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-passes-by-pass-type.mjs","names":[],"sources":["../../src/actions/get-passes-by-pass-type.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotGetPassesByPassTypeInput
|
|
1
|
+
{"version":3,"file":"get-passes-by-pass-type.mjs","names":[],"sources":["../../src/actions/get-passes-by-pass-type.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotGetPassesByPassTypeInput = z.object({\n passtype_id: z.string().describe(\"Filter passes by this Pass Type ID (e.g., 'pass.example.id1'). If not provided, returns all passes.\").optional(),\n}).describe(\"Request model for GetPassesByPassType API.\");\nexport const PassslotGetPassesByPassTypeOutput = z.unknown();\n\nexport const passslotGetPassesByPassType = action(\"PASSSLOT_GET_PASSES_BY_PASS_TYPE\", {\n slug: \"passslot-get-passes-by-pass-type\",\n name: \"Get Passes by Pass Type\",\n description: \"Tool to list Wallet passes, optionally filtered by a Pass Type ID. If passtype_id is provided, returns passes for that specific pass type. If passtype_id is not provided, returns all passes.\",\n input: PassslotGetPassesByPassTypeInput,\n output: PassslotGetPassesByPassTypeOutput,\n});\n"],"mappings":";;AASA,MAAa,8BAA8B,OAAO,oCAAoC;CACpF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAT8C,EAAE,OAAO,EACvD,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,qGAAqG,CAAC,CAAC,SAAS,EACnJ,CAAC,CAAC,CAAC,SAAS,4CAOH;CACP,QAP+C,EAAE,QAOzC;AACV,CAAC"}
|
|
@@ -3,13 +3,13 @@ let zod = require("zod");
|
|
|
3
3
|
//#region src/actions/get-scanner.ts
|
|
4
4
|
const PassslotGetScannerInput = zod.z.object({ id: zod.z.number().int().describe("The scanner ID to retrieve") }).describe("Request model for retrieving a specific scanner by ID.");
|
|
5
5
|
const PassslotGetScannerOutput = zod.z.object({
|
|
6
|
-
id: zod.z.number().int().describe("Scanner identifier"),
|
|
7
|
-
name: zod.z.string().describe("Scanner display name"),
|
|
6
|
+
id: zod.z.number().int().describe("Scanner identifier").nullable(),
|
|
7
|
+
name: zod.z.string().describe("Scanner display name").nullable(),
|
|
8
8
|
type: zod.z.string().describe("Scanner type (e.g., PassVerifier)").nullable().optional(),
|
|
9
9
|
fullAccess: zod.z.boolean().describe("Indicates whether scanner has full access permissions").nullable().optional(),
|
|
10
10
|
authenticationToken: zod.z.string().describe("Token for authentication purposes").nullable().optional(),
|
|
11
11
|
passverifierAuthorizationURL: zod.z.string().describe("Authorization URL in passverifier protocol format").nullable().optional()
|
|
12
|
-
}).describe("Response model for retrieving scanner details.");
|
|
12
|
+
}).passthrough().describe("Response model for retrieving scanner details.");
|
|
13
13
|
const passslotGetScanner = require_action.action("PASSSLOT_GET_SCANNER", {
|
|
14
14
|
slug: "passslot-get-scanner",
|
|
15
15
|
name: "Get Scanner",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-scanner.cjs","names":["z","action"],"sources":["../../src/actions/get-scanner.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotGetScannerInput
|
|
1
|
+
{"version":3,"file":"get-scanner.cjs","names":["z","action"],"sources":["../../src/actions/get-scanner.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotGetScannerInput = z.object({\n id: z.number().int().describe(\"The scanner ID to retrieve\"),\n}).describe(\"Request model for retrieving a specific scanner by ID.\");\nexport const PassslotGetScannerOutput = z.object({\n id: z.number().int().describe(\"Scanner identifier\").nullable(),\n name: z.string().describe(\"Scanner display name\").nullable(),\n type: z.string().describe(\"Scanner type (e.g., PassVerifier)\").nullable().optional(),\n fullAccess: z.boolean().describe(\"Indicates whether scanner has full access permissions\").nullable().optional(),\n authenticationToken: z.string().describe(\"Token for authentication purposes\").nullable().optional(),\n passverifierAuthorizationURL: z.string().describe(\"Authorization URL in passverifier protocol format\").nullable().optional(),\n}).passthrough().describe(\"Response model for retrieving scanner details.\");\n\nexport const passslotGetScanner = action(\"PASSSLOT_GET_SCANNER\", {\n slug: \"passslot-get-scanner\",\n name: \"Get Scanner\",\n description: \"Tool to retrieve details of a specific scanner. Use when you need to get information about a scanner by its ID. Requires app key with full access to manage scanners.\",\n input: PassslotGetScannerInput,\n output: PassslotGetScannerOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0BAA0BA,IAAAA,EAAE,OAAO,EAC9C,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4BAA4B,EAC5D,CAAC,CAAC,CAAC,SAAS,wDAAwD;AACpE,MAAa,2BAA2BA,IAAAA,EAAE,OAAO;CAC/C,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS;CAC7D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAC3D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnF,YAAYA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9G,qBAAqBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,8BAA8BA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC7H,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,gDAAgD;AAE1E,MAAa,qBAAqBC,eAAAA,OAAO,wBAAwB;CAC/D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,20 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-scanner.d.ts
|
|
4
|
-
declare const PassslotGetScannerInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const PassslotGetScannerInput: z.ZodObject<{
|
|
5
|
+
id: z.ZodNumber;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const PassslotGetScannerOutput: z.ZodObject<{
|
|
8
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
9
|
+
name: z.ZodNullable<z.ZodString>;
|
|
10
|
+
type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11
|
+
fullAccess: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
12
|
+
authenticationToken: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13
|
+
passverifierAuthorizationURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
|
+
}, z.core.$loose>;
|
|
15
|
+
declare const passslotGetScanner: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
16
|
+
id: number;
|
|
17
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
18
|
//#endregion
|
|
8
19
|
export { passslotGetScanner };
|
|
9
20
|
//# sourceMappingURL=get-scanner.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-scanner.d.cts","names":[],"sources":["../../src/actions/get-scanner.ts"],"mappings":";;;cAIa,uBAAA,
|
|
1
|
+
{"version":3,"file":"get-scanner.d.cts","names":[],"sources":["../../src/actions/get-scanner.ts"],"mappings":";;;cAIa,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;cAGvB,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;cASxB,kBAAA,gCAAkB,wBAAA"}
|
|
@@ -1,9 +1,20 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-scanner.d.ts
|
|
4
|
-
declare const PassslotGetScannerInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const PassslotGetScannerInput: z.ZodObject<{
|
|
5
|
+
id: z.ZodNumber;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const PassslotGetScannerOutput: z.ZodObject<{
|
|
8
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
9
|
+
name: z.ZodNullable<z.ZodString>;
|
|
10
|
+
type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11
|
+
fullAccess: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
12
|
+
authenticationToken: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13
|
+
passverifierAuthorizationURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
|
+
}, z.core.$loose>;
|
|
15
|
+
declare const passslotGetScanner: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
16
|
+
id: number;
|
|
17
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
18
|
//#endregion
|
|
8
19
|
export { passslotGetScanner };
|
|
9
20
|
//# sourceMappingURL=get-scanner.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-scanner.d.mts","names":[],"sources":["../../src/actions/get-scanner.ts"],"mappings":";;;cAIa,uBAAA,
|
|
1
|
+
{"version":3,"file":"get-scanner.d.mts","names":[],"sources":["../../src/actions/get-scanner.ts"],"mappings":";;;cAIa,uBAAA,EAAuB,CAAA,CAAA,SAAA;;;cAGvB,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;cASxB,kBAAA,gCAAkB,wBAAA"}
|
|
@@ -6,13 +6,13 @@ const passslotGetScanner = action("PASSSLOT_GET_SCANNER", {
|
|
|
6
6
|
description: "Tool to retrieve details of a specific scanner. Use when you need to get information about a scanner by its ID. Requires app key with full access to manage scanners.",
|
|
7
7
|
input: z.object({ id: z.number().int().describe("The scanner ID to retrieve") }).describe("Request model for retrieving a specific scanner by ID."),
|
|
8
8
|
output: z.object({
|
|
9
|
-
id: z.number().int().describe("Scanner identifier"),
|
|
10
|
-
name: z.string().describe("Scanner display name"),
|
|
9
|
+
id: z.number().int().describe("Scanner identifier").nullable(),
|
|
10
|
+
name: z.string().describe("Scanner display name").nullable(),
|
|
11
11
|
type: z.string().describe("Scanner type (e.g., PassVerifier)").nullable().optional(),
|
|
12
12
|
fullAccess: z.boolean().describe("Indicates whether scanner has full access permissions").nullable().optional(),
|
|
13
13
|
authenticationToken: z.string().describe("Token for authentication purposes").nullable().optional(),
|
|
14
14
|
passverifierAuthorizationURL: z.string().describe("Authorization URL in passverifier protocol format").nullable().optional()
|
|
15
|
-
}).describe("Response model for retrieving scanner details.")
|
|
15
|
+
}).passthrough().describe("Response model for retrieving scanner details.")
|
|
16
16
|
});
|
|
17
17
|
//#endregion
|
|
18
18
|
export { passslotGetScanner };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-scanner.mjs","names":[],"sources":["../../src/actions/get-scanner.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotGetScannerInput
|
|
1
|
+
{"version":3,"file":"get-scanner.mjs","names":[],"sources":["../../src/actions/get-scanner.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotGetScannerInput = z.object({\n id: z.number().int().describe(\"The scanner ID to retrieve\"),\n}).describe(\"Request model for retrieving a specific scanner by ID.\");\nexport const PassslotGetScannerOutput = z.object({\n id: z.number().int().describe(\"Scanner identifier\").nullable(),\n name: z.string().describe(\"Scanner display name\").nullable(),\n type: z.string().describe(\"Scanner type (e.g., PassVerifier)\").nullable().optional(),\n fullAccess: z.boolean().describe(\"Indicates whether scanner has full access permissions\").nullable().optional(),\n authenticationToken: z.string().describe(\"Token for authentication purposes\").nullable().optional(),\n passverifierAuthorizationURL: z.string().describe(\"Authorization URL in passverifier protocol format\").nullable().optional(),\n}).passthrough().describe(\"Response model for retrieving scanner details.\");\n\nexport const passslotGetScanner = action(\"PASSSLOT_GET_SCANNER\", {\n slug: \"passslot-get-scanner\",\n name: \"Get Scanner\",\n description: \"Tool to retrieve details of a specific scanner. Use when you need to get information about a scanner by its ID. Requires app key with full access to manage scanners.\",\n input: PassslotGetScannerInput,\n output: PassslotGetScannerOutput,\n});\n"],"mappings":";;AAgBA,MAAa,qBAAqB,OAAO,wBAAwB;CAC/D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAhBqC,EAAE,OAAO,EAC9C,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4BAA4B,EAC5D,CAAC,CAAC,CAAC,SAAS,wDAcH;CACP,QAdsC,EAAE,OAAO;EAC/C,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS;EAC7D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;EAC3D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACnF,YAAY,EAAE,QAAQ,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC9G,qBAAqB,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAClG,8BAA8B,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7H,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,gDAOhB;AACV,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-scanners.cjs","names":["z","action"],"sources":["../../src/actions/list-scanners.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotListScannersInput
|
|
1
|
+
{"version":3,"file":"list-scanners.cjs","names":["z","action"],"sources":["../../src/actions/list-scanners.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotListScannersInput = z.object({}).describe(\"Request model for listing scanners. No parameters required.\");\nexport const PassslotListScannersOutput = z.unknown();\n\nexport const passslotListScanners = action(\"PASSSLOT_LIST_SCANNERS\", {\n slug: \"passslot-list-scanners\",\n name: \"List Scanners\",\n description: \"Tool to retrieve a list of all scanners. Use when you need to list all configured scanners. Your app key must have full access to manage scanners.\",\n input: PassslotListScannersInput,\n output: PassslotListScannersOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6DAA6D;AAC5H,MAAa,6BAA6BA,IAAAA,EAAE,QAAQ;AAEpD,MAAa,uBAAuBC,eAAAA,OAAO,0BAA0B;CACnE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/list-scanners.d.ts
|
|
4
|
-
declare const PassslotListScannersInput: z.
|
|
5
|
-
declare const PassslotListScannersOutput: z.
|
|
6
|
-
declare const passslotListScanners: import("@keystrokehq/action").WorkflowActionDefinition<
|
|
4
|
+
declare const PassslotListScannersInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
|
+
declare const PassslotListScannersOutput: z.ZodUnknown;
|
|
6
|
+
declare const passslotListScanners: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
7
|
//#endregion
|
|
8
8
|
export { passslotListScanners };
|
|
9
9
|
//# sourceMappingURL=list-scanners.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-scanners.d.cts","names":[],"sources":["../../src/actions/list-scanners.ts"],"mappings":";;;cAIa,yBAAA,
|
|
1
|
+
{"version":3,"file":"list-scanners.d.cts","names":[],"sources":["../../src/actions/list-scanners.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACzB,0BAAA,EAA0B,CAAA,CAAA,UAAc;AAAA,cAExC,oBAAA,gCAAoB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/list-scanners.d.ts
|
|
4
|
-
declare const PassslotListScannersInput: z.
|
|
5
|
-
declare const PassslotListScannersOutput: z.
|
|
6
|
-
declare const passslotListScanners: import("@keystrokehq/action").WorkflowActionDefinition<
|
|
4
|
+
declare const PassslotListScannersInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
|
+
declare const PassslotListScannersOutput: z.ZodUnknown;
|
|
6
|
+
declare const passslotListScanners: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
7
|
//#endregion
|
|
8
8
|
export { passslotListScanners };
|
|
9
9
|
//# sourceMappingURL=list-scanners.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-scanners.d.mts","names":[],"sources":["../../src/actions/list-scanners.ts"],"mappings":";;;cAIa,yBAAA,
|
|
1
|
+
{"version":3,"file":"list-scanners.d.mts","names":[],"sources":["../../src/actions/list-scanners.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACzB,0BAAA,EAA0B,CAAA,CAAA,UAAc;AAAA,cAExC,oBAAA,gCAAoB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-scanners.mjs","names":[],"sources":["../../src/actions/list-scanners.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotListScannersInput
|
|
1
|
+
{"version":3,"file":"list-scanners.mjs","names":[],"sources":["../../src/actions/list-scanners.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotListScannersInput = z.object({}).describe(\"Request model for listing scanners. No parameters required.\");\nexport const PassslotListScannersOutput = z.unknown();\n\nexport const passslotListScanners = action(\"PASSSLOT_LIST_SCANNERS\", {\n slug: \"passslot-list-scanners\",\n name: \"List Scanners\",\n description: \"Tool to retrieve a list of all scanners. Use when you need to list all configured scanners. Your app key must have full access to manage scanners.\",\n input: PassslotListScannersInput,\n output: PassslotListScannersOutput,\n});\n"],"mappings":";;AAOA,MAAa,uBAAuB,OAAO,0BAA0B;CACnE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAPuC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6DAOtD;CACP,QAPwC,EAAE,QAOlC;AACV,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-templates.cjs","names":["z","action"],"sources":["../../src/actions/list-templates.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotListTemplatesInput
|
|
1
|
+
{"version":3,"file":"list-templates.cjs","names":["z","action"],"sources":["../../src/actions/list-templates.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotListTemplatesInput = z.object({}).describe(\"Request model for listing templates. No parameters required.\");\nexport const PassslotListTemplatesOutput = z.unknown();\n\nexport const passslotListTemplates = action(\"PASSSLOT_LIST_TEMPLATES\", {\n slug: \"passslot-list-templates\",\n name: \"List Templates\",\n description: \"Tool to retrieve a list of all pass templates. Use when you need to see available templates for creating passes.\",\n input: PassslotListTemplatesInput,\n output: PassslotListTemplatesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAC9H,MAAa,8BAA8BA,IAAAA,EAAE,QAAQ;AAErD,MAAa,wBAAwBC,eAAAA,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/list-templates.d.ts
|
|
4
|
-
declare const PassslotListTemplatesInput: z.
|
|
5
|
-
declare const PassslotListTemplatesOutput: z.
|
|
6
|
-
declare const passslotListTemplates: import("@keystrokehq/action").WorkflowActionDefinition<
|
|
4
|
+
declare const PassslotListTemplatesInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
|
+
declare const PassslotListTemplatesOutput: z.ZodUnknown;
|
|
6
|
+
declare const passslotListTemplates: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
7
|
//#endregion
|
|
8
8
|
export { passslotListTemplates };
|
|
9
9
|
//# sourceMappingURL=list-templates.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-templates.d.cts","names":[],"sources":["../../src/actions/list-templates.ts"],"mappings":";;;cAIa,0BAAA,
|
|
1
|
+
{"version":3,"file":"list-templates.d.cts","names":[],"sources":["../../src/actions/list-templates.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC1B,2BAAA,EAA2B,CAAA,CAAA,UAAc;AAAA,cAEzC,qBAAA,gCAAqB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/list-templates.d.ts
|
|
4
|
-
declare const PassslotListTemplatesInput: z.
|
|
5
|
-
declare const PassslotListTemplatesOutput: z.
|
|
6
|
-
declare const passslotListTemplates: import("@keystrokehq/action").WorkflowActionDefinition<
|
|
4
|
+
declare const PassslotListTemplatesInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
|
+
declare const PassslotListTemplatesOutput: z.ZodUnknown;
|
|
6
|
+
declare const passslotListTemplates: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
7
|
//#endregion
|
|
8
8
|
export { passslotListTemplates };
|
|
9
9
|
//# sourceMappingURL=list-templates.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-templates.d.mts","names":[],"sources":["../../src/actions/list-templates.ts"],"mappings":";;;cAIa,0BAAA,
|
|
1
|
+
{"version":3,"file":"list-templates.d.mts","names":[],"sources":["../../src/actions/list-templates.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAC1B,2BAAA,EAA2B,CAAA,CAAA,UAAc;AAAA,cAEzC,qBAAA,gCAAqB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-templates.mjs","names":[],"sources":["../../src/actions/list-templates.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotListTemplatesInput
|
|
1
|
+
{"version":3,"file":"list-templates.mjs","names":[],"sources":["../../src/actions/list-templates.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotListTemplatesInput = z.object({}).describe(\"Request model for listing templates. No parameters required.\");\nexport const PassslotListTemplatesOutput = z.unknown();\n\nexport const passslotListTemplates = action(\"PASSSLOT_LIST_TEMPLATES\", {\n slug: \"passslot-list-templates\",\n name: \"List Templates\",\n description: \"Tool to retrieve a list of all pass templates. Use when you need to see available templates for creating passes.\",\n input: PassslotListTemplatesInput,\n output: PassslotListTemplatesOutput,\n});\n"],"mappings":";;AAOA,MAAa,wBAAwB,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAPwC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DAOvD;CACP,QAPyC,EAAE,QAOnC;AACV,CAAC"}
|
|
@@ -8,13 +8,13 @@ const PassslotUpdateScannerInput = zod.z.object({
|
|
|
8
8
|
allowedTemplates: zod.z.array(zod.z.number().int()).describe("Array of template IDs that the scanner is allowed to access. Only relevant when fullAccess is false.").optional()
|
|
9
9
|
}).describe("Request model for updating a scanner. Only name, fullAccess, and allowedTemplates can be updated.");
|
|
10
10
|
const PassslotUpdateScannerOutput = zod.z.object({
|
|
11
|
-
id: zod.z.number().int().describe("The scanner's unique identifier"),
|
|
12
|
-
name: zod.z.string().describe("The scanner's display name"),
|
|
13
|
-
fullAccess: zod.z.boolean().describe("Whether scanner has unrestricted template access"),
|
|
11
|
+
id: zod.z.number().int().describe("The scanner's unique identifier").nullable(),
|
|
12
|
+
name: zod.z.string().describe("The scanner's display name").nullable(),
|
|
13
|
+
fullAccess: zod.z.boolean().describe("Whether scanner has unrestricted template access").nullable(),
|
|
14
14
|
allowedTemplates: zod.z.array(zod.z.number().int()).describe("List of template IDs the scanner can access").nullable().optional(),
|
|
15
15
|
authenticationToken: zod.z.string().describe("Token for scanner authentication").nullable().optional(),
|
|
16
16
|
passverifierAuthorizationURL: zod.z.string().describe("Deep link URL for pass verifier setup").nullable().optional()
|
|
17
|
-
}).describe("Response model for updating a scanner.");
|
|
17
|
+
}).passthrough().describe("Response model for updating a scanner.");
|
|
18
18
|
const passslotUpdateScanner = require_action.action("PASSSLOT_UPDATE_SCANNER", {
|
|
19
19
|
slug: "passslot-update-scanner",
|
|
20
20
|
name: "Update Scanner",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-scanner.cjs","names":["z","action"],"sources":["../../src/actions/update-scanner.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotUpdateScannerInput
|
|
1
|
+
{"version":3,"file":"update-scanner.cjs","names":["z","action"],"sources":["../../src/actions/update-scanner.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotUpdateScannerInput = z.object({\n id: z.number().int().describe(\"The scanner ID to update\"),\n name: z.string().describe(\"Scanner name\").optional(),\n fullAccess: z.boolean().describe(\"Whether scanner has full access to all templates. If true, scanner can access all templates. If false, only allowedTemplates are accessible.\").optional(),\n allowedTemplates: z.array(z.number().int()).describe(\"Array of template IDs that the scanner is allowed to access. Only relevant when fullAccess is false.\").optional(),\n}).describe(\"Request model for updating a scanner. Only name, fullAccess, and allowedTemplates can be updated.\");\nexport const PassslotUpdateScannerOutput = z.object({\n id: z.number().int().describe(\"The scanner's unique identifier\").nullable(),\n name: z.string().describe(\"The scanner's display name\").nullable(),\n fullAccess: z.boolean().describe(\"Whether scanner has unrestricted template access\").nullable(),\n allowedTemplates: z.array(z.number().int()).describe(\"List of template IDs the scanner can access\").nullable().optional(),\n authenticationToken: z.string().describe(\"Token for scanner authentication\").nullable().optional(),\n passverifierAuthorizationURL: z.string().describe(\"Deep link URL for pass verifier setup\").nullable().optional(),\n}).passthrough().describe(\"Response model for updating a scanner.\");\n\nexport const passslotUpdateScanner = action(\"PASSSLOT_UPDATE_SCANNER\", {\n slug: \"passslot-update-scanner\",\n name: \"Update Scanner\",\n description: \"Tool to update a scanner's configuration. Only name, fullAccess, and allowedTemplates can be updated. Use when you need to modify scanner permissions or rename a scanner. Your app key must have full access to manage scanners.\",\n input: PassslotUpdateScannerInput,\n output: PassslotUpdateScannerOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO;CACjD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B;CACxD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS;CACnD,YAAYA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,8IAA8I,CAAC,CAAC,SAAS;CAC1L,kBAAkBA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,sGAAsG,CAAC,CAAC,SAAS;AACxK,CAAC,CAAC,CAAC,SAAS,mGAAmG;AAC/G,MAAa,8BAA8BA,IAAAA,EAAE,OAAO;CAClD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CAC1E,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CACjE,YAAYA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS;CAC9F,kBAAkBA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxH,qBAAqBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjG,8BAA8BA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACjH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wCAAwC;AAElE,MAAa,wBAAwBC,eAAAA,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,26 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/update-scanner.d.ts
|
|
4
|
-
declare const PassslotUpdateScannerInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const PassslotUpdateScannerInput: z.ZodObject<{
|
|
5
|
+
id: z.ZodNumber;
|
|
6
|
+
name: z.ZodOptional<z.ZodString>;
|
|
7
|
+
fullAccess: z.ZodOptional<z.ZodBoolean>;
|
|
8
|
+
allowedTemplates: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
9
|
+
}, z.core.$strip>;
|
|
10
|
+
declare const PassslotUpdateScannerOutput: z.ZodObject<{
|
|
11
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
12
|
+
name: z.ZodNullable<z.ZodString>;
|
|
13
|
+
fullAccess: z.ZodNullable<z.ZodBoolean>;
|
|
14
|
+
allowedTemplates: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber>>>;
|
|
15
|
+
authenticationToken: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
+
passverifierAuthorizationURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17
|
+
}, z.core.$loose>;
|
|
18
|
+
declare const passslotUpdateScanner: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
19
|
+
id: number;
|
|
20
|
+
name?: string | undefined;
|
|
21
|
+
fullAccess?: boolean | undefined;
|
|
22
|
+
allowedTemplates?: number[] | undefined;
|
|
23
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
24
|
//#endregion
|
|
8
25
|
export { passslotUpdateScanner };
|
|
9
26
|
//# sourceMappingURL=update-scanner.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-scanner.d.cts","names":[],"sources":["../../src/actions/update-scanner.ts"],"mappings":";;;cAIa,0BAAA,
|
|
1
|
+
{"version":3,"file":"update-scanner.d.cts","names":[],"sources":["../../src/actions/update-scanner.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;cAM1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;cAS3B,qBAAA,gCAAqB,wBAAA"}
|
|
@@ -1,9 +1,26 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/update-scanner.d.ts
|
|
4
|
-
declare const PassslotUpdateScannerInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const PassslotUpdateScannerInput: z.ZodObject<{
|
|
5
|
+
id: z.ZodNumber;
|
|
6
|
+
name: z.ZodOptional<z.ZodString>;
|
|
7
|
+
fullAccess: z.ZodOptional<z.ZodBoolean>;
|
|
8
|
+
allowedTemplates: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
9
|
+
}, z.core.$strip>;
|
|
10
|
+
declare const PassslotUpdateScannerOutput: z.ZodObject<{
|
|
11
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
12
|
+
name: z.ZodNullable<z.ZodString>;
|
|
13
|
+
fullAccess: z.ZodNullable<z.ZodBoolean>;
|
|
14
|
+
allowedTemplates: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber>>>;
|
|
15
|
+
authenticationToken: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
+
passverifierAuthorizationURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17
|
+
}, z.core.$loose>;
|
|
18
|
+
declare const passslotUpdateScanner: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
19
|
+
id: number;
|
|
20
|
+
name?: string | undefined;
|
|
21
|
+
fullAccess?: boolean | undefined;
|
|
22
|
+
allowedTemplates?: number[] | undefined;
|
|
23
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
24
|
//#endregion
|
|
8
25
|
export { passslotUpdateScanner };
|
|
9
26
|
//# sourceMappingURL=update-scanner.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-scanner.d.mts","names":[],"sources":["../../src/actions/update-scanner.ts"],"mappings":";;;cAIa,0BAAA,
|
|
1
|
+
{"version":3,"file":"update-scanner.d.mts","names":[],"sources":["../../src/actions/update-scanner.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;cAM1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;cAS3B,qBAAA,gCAAqB,wBAAA"}
|
|
@@ -11,13 +11,13 @@ const passslotUpdateScanner = action("PASSSLOT_UPDATE_SCANNER", {
|
|
|
11
11
|
allowedTemplates: z.array(z.number().int()).describe("Array of template IDs that the scanner is allowed to access. Only relevant when fullAccess is false.").optional()
|
|
12
12
|
}).describe("Request model for updating a scanner. Only name, fullAccess, and allowedTemplates can be updated."),
|
|
13
13
|
output: z.object({
|
|
14
|
-
id: z.number().int().describe("The scanner's unique identifier"),
|
|
15
|
-
name: z.string().describe("The scanner's display name"),
|
|
16
|
-
fullAccess: z.boolean().describe("Whether scanner has unrestricted template access"),
|
|
14
|
+
id: z.number().int().describe("The scanner's unique identifier").nullable(),
|
|
15
|
+
name: z.string().describe("The scanner's display name").nullable(),
|
|
16
|
+
fullAccess: z.boolean().describe("Whether scanner has unrestricted template access").nullable(),
|
|
17
17
|
allowedTemplates: z.array(z.number().int()).describe("List of template IDs the scanner can access").nullable().optional(),
|
|
18
18
|
authenticationToken: z.string().describe("Token for scanner authentication").nullable().optional(),
|
|
19
19
|
passverifierAuthorizationURL: z.string().describe("Deep link URL for pass verifier setup").nullable().optional()
|
|
20
|
-
}).describe("Response model for updating a scanner.")
|
|
20
|
+
}).passthrough().describe("Response model for updating a scanner.")
|
|
21
21
|
});
|
|
22
22
|
//#endregion
|
|
23
23
|
export { passslotUpdateScanner };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-scanner.mjs","names":[],"sources":["../../src/actions/update-scanner.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotUpdateScannerInput
|
|
1
|
+
{"version":3,"file":"update-scanner.mjs","names":[],"sources":["../../src/actions/update-scanner.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PassslotUpdateScannerInput = z.object({\n id: z.number().int().describe(\"The scanner ID to update\"),\n name: z.string().describe(\"Scanner name\").optional(),\n fullAccess: z.boolean().describe(\"Whether scanner has full access to all templates. If true, scanner can access all templates. If false, only allowedTemplates are accessible.\").optional(),\n allowedTemplates: z.array(z.number().int()).describe(\"Array of template IDs that the scanner is allowed to access. Only relevant when fullAccess is false.\").optional(),\n}).describe(\"Request model for updating a scanner. Only name, fullAccess, and allowedTemplates can be updated.\");\nexport const PassslotUpdateScannerOutput = z.object({\n id: z.number().int().describe(\"The scanner's unique identifier\").nullable(),\n name: z.string().describe(\"The scanner's display name\").nullable(),\n fullAccess: z.boolean().describe(\"Whether scanner has unrestricted template access\").nullable(),\n allowedTemplates: z.array(z.number().int()).describe(\"List of template IDs the scanner can access\").nullable().optional(),\n authenticationToken: z.string().describe(\"Token for scanner authentication\").nullable().optional(),\n passverifierAuthorizationURL: z.string().describe(\"Deep link URL for pass verifier setup\").nullable().optional(),\n}).passthrough().describe(\"Response model for updating a scanner.\");\n\nexport const passslotUpdateScanner = action(\"PASSSLOT_UPDATE_SCANNER\", {\n slug: \"passslot-update-scanner\",\n name: \"Update Scanner\",\n description: \"Tool to update a scanner's configuration. Only name, fullAccess, and allowedTemplates can be updated. Use when you need to modify scanner permissions or rename a scanner. Your app key must have full access to manage scanners.\",\n input: PassslotUpdateScannerInput,\n output: PassslotUpdateScannerOutput,\n});\n"],"mappings":";;AAmBA,MAAa,wBAAwB,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAnBwC,EAAE,OAAO;EACjD,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B;EACxD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS;EACnD,YAAY,EAAE,QAAQ,CAAC,CAAC,SAAS,8IAA8I,CAAC,CAAC,SAAS;EAC1L,kBAAkB,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,sGAAsG,CAAC,CAAC,SAAS;CACxK,CAAC,CAAC,CAAC,SAAS,mGAcH;CACP,QAdyC,EAAE,OAAO;EAClD,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;EAC1E,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;EACjE,YAAY,EAAE,QAAQ,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS;EAC9F,kBAAkB,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACxH,qBAAqB,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACjG,8BAA8B,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wCAOhB;AACV,CAAC"}
|
package/dist/catalog.cjs
CHANGED
|
@@ -7,7 +7,13 @@ const passslotCatalog = {
|
|
|
7
7
|
"category": "Event Management",
|
|
8
8
|
"logo": "https://logos.composio.dev/api/passslot",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
|
-
"oauthScopes": []
|
|
10
|
+
"oauthScopes": [],
|
|
11
|
+
"credentialFields": { "api_key": {
|
|
12
|
+
"label": "PassSlot App Key",
|
|
13
|
+
"secret": true,
|
|
14
|
+
"description": "The App Key used for authenticating API requests. Enter your PassSlot App Key."
|
|
15
|
+
} },
|
|
16
|
+
"credentialScheme": "API_KEY"
|
|
11
17
|
};
|
|
12
18
|
//#endregion
|
|
13
19
|
exports.passslotCatalog = passslotCatalog;
|
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 passslotCatalog = {\n \"slug\": \"passslot\",\n \"name\": \"Passslot\",\n \"description\": \"PassSlot is a service that simplifies the creation, design, and distribution of Apple Wallet passes, including coupons, store cards, event tickets, membership cards, and boarding passes.\",\n \"category\": \"Event Management\",\n \"logo\": \"https://logos.composio.dev/api/passslot\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const passslotCatalog = {\n \"slug\": \"passslot\",\n \"name\": \"Passslot\",\n \"description\": \"PassSlot is a service that simplifies the creation, design, and distribution of Apple Wallet passes, including coupons, store cards, event tickets, membership cards, and boarding passes.\",\n \"category\": \"Event Management\",\n \"logo\": \"https://logos.composio.dev/api/passslot\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"PassSlot App Key\",\n \"secret\": true,\n \"description\": \"The App Key used for authenticating API requests. Enter your PassSlot App Key.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -8,6 +8,14 @@ declare const passslotCatalog: {
|
|
|
8
8
|
readonly logo: "https://logos.composio.dev/api/passslot";
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
|
+
readonly credentialFields: {
|
|
12
|
+
readonly api_key: {
|
|
13
|
+
readonly label: "PassSlot App Key";
|
|
14
|
+
readonly secret: true;
|
|
15
|
+
readonly description: "The App Key used for authenticating API requests. Enter your PassSlot App Key.";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
readonly credentialScheme: "API_KEY";
|
|
11
19
|
};
|
|
12
20
|
//#endregion
|
|
13
21
|
export { passslotCatalog };
|
package/dist/catalog.d.mts
CHANGED
|
@@ -8,6 +8,14 @@ declare const passslotCatalog: {
|
|
|
8
8
|
readonly logo: "https://logos.composio.dev/api/passslot";
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
|
+
readonly credentialFields: {
|
|
12
|
+
readonly api_key: {
|
|
13
|
+
readonly label: "PassSlot App Key";
|
|
14
|
+
readonly secret: true;
|
|
15
|
+
readonly description: "The App Key used for authenticating API requests. Enter your PassSlot App Key.";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
readonly credentialScheme: "API_KEY";
|
|
11
19
|
};
|
|
12
20
|
//#endregion
|
|
13
21
|
export { passslotCatalog };
|
package/dist/catalog.mjs
CHANGED
|
@@ -7,7 +7,13 @@ const passslotCatalog = {
|
|
|
7
7
|
"category": "Event Management",
|
|
8
8
|
"logo": "https://logos.composio.dev/api/passslot",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
|
-
"oauthScopes": []
|
|
10
|
+
"oauthScopes": [],
|
|
11
|
+
"credentialFields": { "api_key": {
|
|
12
|
+
"label": "PassSlot App Key",
|
|
13
|
+
"secret": true,
|
|
14
|
+
"description": "The App Key used for authenticating API requests. Enter your PassSlot App Key."
|
|
15
|
+
} },
|
|
16
|
+
"credentialScheme": "API_KEY"
|
|
11
17
|
};
|
|
12
18
|
//#endregion
|
|
13
19
|
export { passslotCatalog };
|
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 passslotCatalog = {\n \"slug\": \"passslot\",\n \"name\": \"Passslot\",\n \"description\": \"PassSlot is a service that simplifies the creation, design, and distribution of Apple Wallet passes, including coupons, store cards, event tickets, membership cards, and boarding passes.\",\n \"category\": \"Event Management\",\n \"logo\": \"https://logos.composio.dev/api/passslot\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const passslotCatalog = {\n \"slug\": \"passslot\",\n \"name\": \"Passslot\",\n \"description\": \"PassSlot is a service that simplifies the creation, design, and distribution of Apple Wallet passes, including coupons, store cards, event tickets, membership cards, and boarding passes.\",\n \"category\": \"Event Management\",\n \"logo\": \"https://logos.composio.dev/api/passslot\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"PassSlot App Key\",\n \"secret\": true,\n \"description\": \"The App Key used for authenticating API requests. Enter your PassSlot App Key.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/passslot",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@keystrokehq/keystroke": "
|
|
34
|
+
"@keystrokehq/keystroke": ">=0.1.4",
|
|
35
35
|
"zod": "^4.4.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|