@keystrokehq/passcreator 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (122) hide show
  1. package/README.md +17 -0
  2. package/dist/action.cjs +21 -0
  3. package/dist/action.cjs.map +1 -0
  4. package/dist/action.mjs +21 -0
  5. package/dist/action.mjs.map +1 -0
  6. package/dist/actions/check-pass-existence.cjs +25 -0
  7. package/dist/actions/check-pass-existence.cjs.map +1 -0
  8. package/dist/actions/check-pass-existence.d.cts +9 -0
  9. package/dist/actions/check-pass-existence.d.cts.map +1 -0
  10. package/dist/actions/check-pass-existence.d.mts +9 -0
  11. package/dist/actions/check-pass-existence.d.mts.map +1 -0
  12. package/dist/actions/check-pass-existence.mjs +22 -0
  13. package/dist/actions/check-pass-existence.mjs.map +1 -0
  14. package/dist/actions/create-app-scan.cjs +35 -0
  15. package/dist/actions/create-app-scan.cjs.map +1 -0
  16. package/dist/actions/create-app-scan.d.cts +9 -0
  17. package/dist/actions/create-app-scan.d.cts.map +1 -0
  18. package/dist/actions/create-app-scan.d.mts +9 -0
  19. package/dist/actions/create-app-scan.d.mts.map +1 -0
  20. package/dist/actions/create-app-scan.mjs +32 -0
  21. package/dist/actions/create-app-scan.mjs.map +1 -0
  22. package/dist/actions/get-app-configuration.cjs +40 -0
  23. package/dist/actions/get-app-configuration.cjs.map +1 -0
  24. package/dist/actions/get-app-configuration.d.cts +9 -0
  25. package/dist/actions/get-app-configuration.d.cts.map +1 -0
  26. package/dist/actions/get-app-configuration.d.mts +9 -0
  27. package/dist/actions/get-app-configuration.d.mts.map +1 -0
  28. package/dist/actions/get-app-configuration.mjs +39 -0
  29. package/dist/actions/get-app-configuration.mjs.map +1 -0
  30. package/dist/actions/get-process-status.cjs +35 -0
  31. package/dist/actions/get-process-status.cjs.map +1 -0
  32. package/dist/actions/get-process-status.d.cts +9 -0
  33. package/dist/actions/get-process-status.d.cts.map +1 -0
  34. package/dist/actions/get-process-status.d.mts +9 -0
  35. package/dist/actions/get-process-status.d.mts.map +1 -0
  36. package/dist/actions/get-process-status.mjs +34 -0
  37. package/dist/actions/get-process-status.mjs.map +1 -0
  38. package/dist/actions/get-signing-public-key.cjs +25 -0
  39. package/dist/actions/get-signing-public-key.cjs.map +1 -0
  40. package/dist/actions/get-signing-public-key.d.cts +9 -0
  41. package/dist/actions/get-signing-public-key.d.cts.map +1 -0
  42. package/dist/actions/get-signing-public-key.d.mts +9 -0
  43. package/dist/actions/get-signing-public-key.d.mts.map +1 -0
  44. package/dist/actions/get-signing-public-key.mjs +24 -0
  45. package/dist/actions/get-signing-public-key.mjs.map +1 -0
  46. package/dist/actions/index.cjs +23 -0
  47. package/dist/actions/index.d.cts +12 -0
  48. package/dist/actions/index.d.mts +12 -0
  49. package/dist/actions/index.mjs +12 -0
  50. package/dist/actions/list-app-configurations.cjs +35 -0
  51. package/dist/actions/list-app-configurations.cjs.map +1 -0
  52. package/dist/actions/list-app-configurations.d.cts +9 -0
  53. package/dist/actions/list-app-configurations.d.cts.map +1 -0
  54. package/dist/actions/list-app-configurations.d.mts +9 -0
  55. package/dist/actions/list-app-configurations.d.mts.map +1 -0
  56. package/dist/actions/list-app-configurations.mjs +34 -0
  57. package/dist/actions/list-app-configurations.mjs.map +1 -0
  58. package/dist/actions/list-app-scans.cjs +52 -0
  59. package/dist/actions/list-app-scans.cjs.map +1 -0
  60. package/dist/actions/list-app-scans.d.cts +9 -0
  61. package/dist/actions/list-app-scans.d.cts.map +1 -0
  62. package/dist/actions/list-app-scans.d.mts +9 -0
  63. package/dist/actions/list-app-scans.d.mts.map +1 -0
  64. package/dist/actions/list-app-scans.mjs +51 -0
  65. package/dist/actions/list-app-scans.mjs.map +1 -0
  66. package/dist/actions/list-pass-templates.cjs +16 -0
  67. package/dist/actions/list-pass-templates.cjs.map +1 -0
  68. package/dist/actions/list-pass-templates.d.cts +9 -0
  69. package/dist/actions/list-pass-templates.d.cts.map +1 -0
  70. package/dist/actions/list-pass-templates.d.mts +9 -0
  71. package/dist/actions/list-pass-templates.d.mts.map +1 -0
  72. package/dist/actions/list-pass-templates.mjs +13 -0
  73. package/dist/actions/list-pass-templates.mjs.map +1 -0
  74. package/dist/actions/list-passes.cjs +41 -0
  75. package/dist/actions/list-passes.cjs.map +1 -0
  76. package/dist/actions/list-passes.d.cts +9 -0
  77. package/dist/actions/list-passes.d.cts.map +1 -0
  78. package/dist/actions/list-passes.d.mts +9 -0
  79. package/dist/actions/list-passes.d.mts.map +1 -0
  80. package/dist/actions/list-passes.mjs +40 -0
  81. package/dist/actions/list-passes.mjs.map +1 -0
  82. package/dist/actions/send-bulk-push-notifications.cjs +23 -0
  83. package/dist/actions/send-bulk-push-notifications.cjs.map +1 -0
  84. package/dist/actions/send-bulk-push-notifications.d.cts +9 -0
  85. package/dist/actions/send-bulk-push-notifications.d.cts.map +1 -0
  86. package/dist/actions/send-bulk-push-notifications.d.mts +9 -0
  87. package/dist/actions/send-bulk-push-notifications.d.mts.map +1 -0
  88. package/dist/actions/send-bulk-push-notifications.mjs +20 -0
  89. package/dist/actions/send-bulk-push-notifications.mjs.map +1 -0
  90. package/dist/actions/update-passes-bulk.cjs +31 -0
  91. package/dist/actions/update-passes-bulk.cjs.map +1 -0
  92. package/dist/actions/update-passes-bulk.d.cts +9 -0
  93. package/dist/actions/update-passes-bulk.d.cts.map +1 -0
  94. package/dist/actions/update-passes-bulk.d.mts +9 -0
  95. package/dist/actions/update-passes-bulk.d.mts.map +1 -0
  96. package/dist/actions/update-passes-bulk.mjs +30 -0
  97. package/dist/actions/update-passes-bulk.mjs.map +1 -0
  98. package/dist/app.cjs +9 -0
  99. package/dist/app.cjs.map +1 -0
  100. package/dist/app.d.cts +5 -0
  101. package/dist/app.d.cts.map +1 -0
  102. package/dist/app.d.mts +5 -0
  103. package/dist/app.d.mts.map +1 -0
  104. package/dist/app.mjs +10 -0
  105. package/dist/app.mjs.map +1 -0
  106. package/dist/catalog.cjs +15 -0
  107. package/dist/catalog.cjs.map +1 -0
  108. package/dist/catalog.d.cts +14 -0
  109. package/dist/catalog.d.cts.map +1 -0
  110. package/dist/catalog.d.mts +14 -0
  111. package/dist/catalog.d.mts.map +1 -0
  112. package/dist/catalog.mjs +15 -0
  113. package/dist/catalog.mjs.map +1 -0
  114. package/dist/execute.cjs +18 -0
  115. package/dist/execute.cjs.map +1 -0
  116. package/dist/execute.mjs +18 -0
  117. package/dist/execute.mjs.map +1 -0
  118. package/dist/index.cjs +28 -0
  119. package/dist/index.d.cts +14 -0
  120. package/dist/index.d.mts +14 -0
  121. package/dist/index.mjs +15 -0
  122. package/package.json +49 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-signing-public-key.cjs","names":["z","action"],"sources":["../../src/actions/get-signing-public-key.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PasscreatorGetSigningPublicKeyInput: z.ZodTypeAny = z.object({}).describe(\"Request model for obtaining the public key for signature verification.\\nThis endpoint requires no parameters - authentication is handled via headers.\");\nconst PasscreatorGetSigningPublicKey_PublicKeyDataSchema: z.ZodTypeAny = z.object({\n publicKey: z.string().describe(\"The public key in PEM format needed to verify signatures from the placeholder sign() function.\"),\n}).describe(\"Data container for the public key response.\");\nexport const PasscreatorGetSigningPublicKeyOutput: z.ZodTypeAny = z.object({\n data: PasscreatorGetSigningPublicKey_PublicKeyDataSchema.nullable(),\n count: z.number().int().describe(\"Number of items returned in the data field.\"),\n errors: z.array(z.string()).describe(\"List of error messages if any occurred.\").nullable().optional(),\n success: z.boolean().describe(\"Whether the API request was successful.\"),\n statusCode: z.number().int().describe(\"HTTP status code returned by the API (200 for success).\"),\n description: z.string().describe(\"Human-readable description of the response status.\").nullable().optional(),\n responseMetaData: z.unknown().describe(\"Additional metadata from the API response (always null for this endpoint).\").nullable().optional(),\n}).describe(\"Response model containing the public key for signature verification.\");\n\nexport const passcreatorGetSigningPublicKey = action(\"PASSCREATOR_GET_SIGNING_PUBLIC_KEY\", {\n slug: \"passcreator-get-signing-public-key\",\n name: \"Get Signing Public Key\",\n description: \"Tool to obtain the public key needed to verify signatures from the placeholder sign() function. Use when you need to verify cryptographic signatures generated by Passcreator's sign placeholder.\",\n input: PasscreatorGetSigningPublicKeyInput,\n output: PasscreatorGetSigningPublicKeyOutput,\n});\n"],"mappings":";;;AAIA,MAAa,sCAAoDA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,uJAAuJ;AAC9O,MAAM,qDAAmEA,IAAAA,EAAE,OAAO,EAChF,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gGAAgG,EACjI,CAAC,CAAC,CAAC,SAAS,6CAA6C;AACzD,MAAa,uCAAqDA,IAAAA,EAAE,OAAO;CACzE,MAAM,mDAAmD,SAAS;CAClE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6CAA6C;CAC9E,QAAQA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,yCAAyC;CACvE,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yDAAyD;CAC/F,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3G,kBAAkBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,4EAA4E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3I,CAAC,CAAC,CAAC,SAAS,sEAAsE;AAElF,MAAa,iCAAiCC,eAAAA,OAAO,sCAAsC;CACzF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-signing-public-key.d.ts
4
+ declare const PasscreatorGetSigningPublicKeyInput: z.ZodTypeAny;
5
+ declare const PasscreatorGetSigningPublicKeyOutput: z.ZodTypeAny;
6
+ declare const passcreatorGetSigningPublicKey: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { passcreatorGetSigningPublicKey };
9
+ //# sourceMappingURL=get-signing-public-key.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-signing-public-key.d.cts","names":[],"sources":["../../src/actions/get-signing-public-key.ts"],"mappings":";;;cAIa,mCAAA,EAAqC,CAAA,CAAE,UAA2L;AAAA,cAIlO,oCAAA,EAAsC,CAAA,CAAE,UAQ8B;AAAA,cAEtE,8BAAA,gCAA8B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/get-signing-public-key.d.ts
4
+ declare const PasscreatorGetSigningPublicKeyInput: z.ZodTypeAny;
5
+ declare const PasscreatorGetSigningPublicKeyOutput: z.ZodTypeAny;
6
+ declare const passcreatorGetSigningPublicKey: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { passcreatorGetSigningPublicKey };
9
+ //# sourceMappingURL=get-signing-public-key.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-signing-public-key.d.mts","names":[],"sources":["../../src/actions/get-signing-public-key.ts"],"mappings":";;;cAIa,mCAAA,EAAqC,CAAA,CAAE,UAA2L;AAAA,cAIlO,oCAAA,EAAsC,CAAA,CAAE,UAQ8B;AAAA,cAEtE,8BAAA,gCAA8B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,24 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/get-signing-public-key.ts
4
+ const PasscreatorGetSigningPublicKeyInput = z.object({}).describe("Request model for obtaining the public key for signature verification.\nThis endpoint requires no parameters - authentication is handled via headers.");
5
+ const PasscreatorGetSigningPublicKey_PublicKeyDataSchema = z.object({ publicKey: z.string().describe("The public key in PEM format needed to verify signatures from the placeholder sign() function.") }).describe("Data container for the public key response.");
6
+ const passcreatorGetSigningPublicKey = action("PASSCREATOR_GET_SIGNING_PUBLIC_KEY", {
7
+ slug: "passcreator-get-signing-public-key",
8
+ name: "Get Signing Public Key",
9
+ description: "Tool to obtain the public key needed to verify signatures from the placeholder sign() function. Use when you need to verify cryptographic signatures generated by Passcreator's sign placeholder.",
10
+ input: PasscreatorGetSigningPublicKeyInput,
11
+ output: z.object({
12
+ data: PasscreatorGetSigningPublicKey_PublicKeyDataSchema.nullable(),
13
+ count: z.number().int().describe("Number of items returned in the data field."),
14
+ errors: z.array(z.string()).describe("List of error messages if any occurred.").nullable().optional(),
15
+ success: z.boolean().describe("Whether the API request was successful."),
16
+ statusCode: z.number().int().describe("HTTP status code returned by the API (200 for success)."),
17
+ description: z.string().describe("Human-readable description of the response status.").nullable().optional(),
18
+ responseMetaData: z.unknown().describe("Additional metadata from the API response (always null for this endpoint).").nullable().optional()
19
+ }).describe("Response model containing the public key for signature verification.")
20
+ });
21
+ //#endregion
22
+ export { passcreatorGetSigningPublicKey };
23
+
24
+ //# sourceMappingURL=get-signing-public-key.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-signing-public-key.mjs","names":[],"sources":["../../src/actions/get-signing-public-key.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PasscreatorGetSigningPublicKeyInput: z.ZodTypeAny = z.object({}).describe(\"Request model for obtaining the public key for signature verification.\\nThis endpoint requires no parameters - authentication is handled via headers.\");\nconst PasscreatorGetSigningPublicKey_PublicKeyDataSchema: z.ZodTypeAny = z.object({\n publicKey: z.string().describe(\"The public key in PEM format needed to verify signatures from the placeholder sign() function.\"),\n}).describe(\"Data container for the public key response.\");\nexport const PasscreatorGetSigningPublicKeyOutput: z.ZodTypeAny = z.object({\n data: PasscreatorGetSigningPublicKey_PublicKeyDataSchema.nullable(),\n count: z.number().int().describe(\"Number of items returned in the data field.\"),\n errors: z.array(z.string()).describe(\"List of error messages if any occurred.\").nullable().optional(),\n success: z.boolean().describe(\"Whether the API request was successful.\"),\n statusCode: z.number().int().describe(\"HTTP status code returned by the API (200 for success).\"),\n description: z.string().describe(\"Human-readable description of the response status.\").nullable().optional(),\n responseMetaData: z.unknown().describe(\"Additional metadata from the API response (always null for this endpoint).\").nullable().optional(),\n}).describe(\"Response model containing the public key for signature verification.\");\n\nexport const passcreatorGetSigningPublicKey = action(\"PASSCREATOR_GET_SIGNING_PUBLIC_KEY\", {\n slug: \"passcreator-get-signing-public-key\",\n name: \"Get Signing Public Key\",\n description: \"Tool to obtain the public key needed to verify signatures from the placeholder sign() function. Use when you need to verify cryptographic signatures generated by Passcreator's sign placeholder.\",\n input: PasscreatorGetSigningPublicKeyInput,\n output: PasscreatorGetSigningPublicKeyOutput,\n});\n"],"mappings":";;;AAIA,MAAa,sCAAoD,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,uJAAuJ;AAC9O,MAAM,qDAAmE,EAAE,OAAO,EAChF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,gGAAgG,EACjI,CAAC,CAAC,CAAC,SAAS,6CAA6C;AAWzD,MAAa,iCAAiC,OAAO,sCAAsC;CACzF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAfgE,EAAE,OAAO;EACzE,MAAM,mDAAmD,SAAS;EAClE,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6CAA6C;EAC9E,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACpG,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,yCAAyC;EACvE,YAAY,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yDAAyD;EAC/F,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC3G,kBAAkB,EAAE,QAAQ,CAAC,CAAC,SAAS,4EAA4E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3I,CAAC,CAAC,CAAC,SAAS,sEAOF;AACV,CAAC"}
@@ -0,0 +1,23 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_check_pass_existence = require("./check-pass-existence.cjs");
3
+ const require_create_app_scan = require("./create-app-scan.cjs");
4
+ const require_get_app_configuration = require("./get-app-configuration.cjs");
5
+ const require_get_process_status = require("./get-process-status.cjs");
6
+ const require_get_signing_public_key = require("./get-signing-public-key.cjs");
7
+ const require_list_app_configurations = require("./list-app-configurations.cjs");
8
+ const require_list_app_scans = require("./list-app-scans.cjs");
9
+ const require_list_pass_templates = require("./list-pass-templates.cjs");
10
+ const require_list_passes = require("./list-passes.cjs");
11
+ const require_send_bulk_push_notifications = require("./send-bulk-push-notifications.cjs");
12
+ const require_update_passes_bulk = require("./update-passes-bulk.cjs");
13
+ exports.passcreatorCheckPassExistence = require_check_pass_existence.passcreatorCheckPassExistence;
14
+ exports.passcreatorCreateAppScan = require_create_app_scan.passcreatorCreateAppScan;
15
+ exports.passcreatorGetAppConfiguration = require_get_app_configuration.passcreatorGetAppConfiguration;
16
+ exports.passcreatorGetProcessStatus = require_get_process_status.passcreatorGetProcessStatus;
17
+ exports.passcreatorGetSigningPublicKey = require_get_signing_public_key.passcreatorGetSigningPublicKey;
18
+ exports.passcreatorListAppConfigurations = require_list_app_configurations.passcreatorListAppConfigurations;
19
+ exports.passcreatorListAppScans = require_list_app_scans.passcreatorListAppScans;
20
+ exports.passcreatorListPassTemplates = require_list_pass_templates.passcreatorListPassTemplates;
21
+ exports.passcreatorListPasses = require_list_passes.passcreatorListPasses;
22
+ exports.passcreatorSendBulkPushNotifications = require_send_bulk_push_notifications.passcreatorSendBulkPushNotifications;
23
+ exports.passcreatorUpdatePassesBulk = require_update_passes_bulk.passcreatorUpdatePassesBulk;
@@ -0,0 +1,12 @@
1
+ import { passcreatorCheckPassExistence } from "./check-pass-existence.cjs";
2
+ import { passcreatorCreateAppScan } from "./create-app-scan.cjs";
3
+ import { passcreatorGetAppConfiguration } from "./get-app-configuration.cjs";
4
+ import { passcreatorGetProcessStatus } from "./get-process-status.cjs";
5
+ import { passcreatorGetSigningPublicKey } from "./get-signing-public-key.cjs";
6
+ import { passcreatorListAppConfigurations } from "./list-app-configurations.cjs";
7
+ import { passcreatorListAppScans } from "./list-app-scans.cjs";
8
+ import { passcreatorListPassTemplates } from "./list-pass-templates.cjs";
9
+ import { passcreatorListPasses } from "./list-passes.cjs";
10
+ import { passcreatorSendBulkPushNotifications } from "./send-bulk-push-notifications.cjs";
11
+ import { passcreatorUpdatePassesBulk } from "./update-passes-bulk.cjs";
12
+ export { passcreatorCheckPassExistence, passcreatorCreateAppScan, passcreatorGetAppConfiguration, passcreatorGetProcessStatus, passcreatorGetSigningPublicKey, passcreatorListAppConfigurations, passcreatorListAppScans, passcreatorListPassTemplates, passcreatorListPasses, passcreatorSendBulkPushNotifications, passcreatorUpdatePassesBulk };
@@ -0,0 +1,12 @@
1
+ import { passcreatorCheckPassExistence } from "./check-pass-existence.mjs";
2
+ import { passcreatorCreateAppScan } from "./create-app-scan.mjs";
3
+ import { passcreatorGetAppConfiguration } from "./get-app-configuration.mjs";
4
+ import { passcreatorGetProcessStatus } from "./get-process-status.mjs";
5
+ import { passcreatorGetSigningPublicKey } from "./get-signing-public-key.mjs";
6
+ import { passcreatorListAppConfigurations } from "./list-app-configurations.mjs";
7
+ import { passcreatorListAppScans } from "./list-app-scans.mjs";
8
+ import { passcreatorListPassTemplates } from "./list-pass-templates.mjs";
9
+ import { passcreatorListPasses } from "./list-passes.mjs";
10
+ import { passcreatorSendBulkPushNotifications } from "./send-bulk-push-notifications.mjs";
11
+ import { passcreatorUpdatePassesBulk } from "./update-passes-bulk.mjs";
12
+ export { passcreatorCheckPassExistence, passcreatorCreateAppScan, passcreatorGetAppConfiguration, passcreatorGetProcessStatus, passcreatorGetSigningPublicKey, passcreatorListAppConfigurations, passcreatorListAppScans, passcreatorListPassTemplates, passcreatorListPasses, passcreatorSendBulkPushNotifications, passcreatorUpdatePassesBulk };
@@ -0,0 +1,12 @@
1
+ import { passcreatorCheckPassExistence } from "./check-pass-existence.mjs";
2
+ import { passcreatorCreateAppScan } from "./create-app-scan.mjs";
3
+ import { passcreatorGetAppConfiguration } from "./get-app-configuration.mjs";
4
+ import { passcreatorGetProcessStatus } from "./get-process-status.mjs";
5
+ import { passcreatorGetSigningPublicKey } from "./get-signing-public-key.mjs";
6
+ import { passcreatorListAppConfigurations } from "./list-app-configurations.mjs";
7
+ import { passcreatorListAppScans } from "./list-app-scans.mjs";
8
+ import { passcreatorListPassTemplates } from "./list-pass-templates.mjs";
9
+ import { passcreatorListPasses } from "./list-passes.mjs";
10
+ import { passcreatorSendBulkPushNotifications } from "./send-bulk-push-notifications.mjs";
11
+ import { passcreatorUpdatePassesBulk } from "./update-passes-bulk.mjs";
12
+ export { passcreatorCheckPassExistence, passcreatorCreateAppScan, passcreatorGetAppConfiguration, passcreatorGetProcessStatus, passcreatorGetSigningPublicKey, passcreatorListAppConfigurations, passcreatorListAppScans, passcreatorListPassTemplates, passcreatorListPasses, passcreatorSendBulkPushNotifications, passcreatorUpdatePassesBulk };
@@ -0,0 +1,35 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/list-app-configurations.ts
4
+ const PasscreatorListAppConfigurationsInput = zod.z.object({}).describe("Request parameters for listing App Configurations.\nNote: The Passcreator API does not support pagination or filtering\nfor this endpoint. All configurations are returned at once.");
5
+ const PasscreatorListAppConfigurations_AppConfigurationLinkSchema = zod.z.object({
6
+ url: zod.z.string().describe("URL of the configuration link").nullable().optional(),
7
+ label: zod.z.string().describe("Label or description of the link").nullable().optional()
8
+ }).passthrough().describe("A link associated with an App Configuration.");
9
+ const PasscreatorListAppConfigurations_AppConfigurationSchema = zod.z.object({
10
+ name: zod.z.string().describe("The configuration's label/name"),
11
+ place: zod.z.string().describe("Venue location identifier"),
12
+ scanMode: zod.z.number().int().describe("Scan mode: 0 (void after scan) or 1 (attendance tracking)"),
13
+ createdOn: zod.z.string().describe("Timestamp when created in customer timezone (format: Y-m-d H:i:s)"),
14
+ textColor: zod.z.string().describe("Hex color code for interface text").nullable().optional(),
15
+ createdOnUtc: zod.z.string().describe("Timestamp when created in UTC timezone"),
16
+ passTemplateId: zod.z.string().describe("Associated Pass Template ID; null means it validates all passes").nullable().optional(),
17
+ backgroundColor: zod.z.string().describe("Hex color code for validation interface background").nullable().optional(),
18
+ configurationId: zod.z.string().describe("Unique UUID identifier for this configuration"),
19
+ passTemplateIds: zod.z.array(zod.z.string()).describe("Multiple template IDs if assigned to multiple templates").nullable().optional(),
20
+ passTemplateName: zod.z.string().describe("Pass Template label/name").nullable().optional(),
21
+ additionalProperties: zod.z.array(zod.z.unknown()).describe("Custom fields collected during scans").nullable().optional(),
22
+ appConfigurationLinks: zod.z.array(PasscreatorListAppConfigurations_AppConfigurationLinkSchema).describe("Associated configuration links with metadata").nullable().optional()
23
+ }).passthrough().describe("An App Configuration object from the Passcreator account.");
24
+ const PasscreatorListAppConfigurationsOutput = zod.z.object({ configurations: zod.z.array(PasscreatorListAppConfigurations_AppConfigurationSchema).describe("List of App Configuration objects in the account").nullable().optional() }).describe("Response containing an array of App Configuration objects.\nEach configuration includes details about scan validation settings.");
25
+ const passcreatorListAppConfigurations = require_action.action("PASSCREATOR_LIST_APP_CONFIGURATIONS", {
26
+ slug: "passcreator-list-app-configurations",
27
+ name: "List App Configurations",
28
+ description: "Retrieves all App Configurations for your Passcreator account. Use this action to get a list of validation configurations that control how passes are scanned and validated. Each configuration can be linked to specific pass templates or validate all passes.",
29
+ input: PasscreatorListAppConfigurationsInput,
30
+ output: PasscreatorListAppConfigurationsOutput
31
+ });
32
+ //#endregion
33
+ exports.passcreatorListAppConfigurations = passcreatorListAppConfigurations;
34
+
35
+ //# sourceMappingURL=list-app-configurations.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-app-configurations.cjs","names":["z","action"],"sources":["../../src/actions/list-app-configurations.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PasscreatorListAppConfigurationsInput: z.ZodTypeAny = z.object({}).describe(\"Request parameters for listing App Configurations.\\nNote: The Passcreator API does not support pagination or filtering\\nfor this endpoint. All configurations are returned at once.\");\nconst PasscreatorListAppConfigurations_AppConfigurationLinkSchema: z.ZodTypeAny = z.object({\n url: z.string().describe(\"URL of the configuration link\").nullable().optional(),\n label: z.string().describe(\"Label or description of the link\").nullable().optional(),\n}).passthrough().describe(\"A link associated with an App Configuration.\");\nconst PasscreatorListAppConfigurations_AppConfigurationSchema: z.ZodTypeAny = z.object({\n name: z.string().describe(\"The configuration's label/name\"),\n place: z.string().describe(\"Venue location identifier\"),\n scanMode: z.number().int().describe(\"Scan mode: 0 (void after scan) or 1 (attendance tracking)\"),\n createdOn: z.string().describe(\"Timestamp when created in customer timezone (format: Y-m-d H:i:s)\"),\n textColor: z.string().describe(\"Hex color code for interface text\").nullable().optional(),\n createdOnUtc: z.string().describe(\"Timestamp when created in UTC timezone\"),\n passTemplateId: z.string().describe(\"Associated Pass Template ID; null means it validates all passes\").nullable().optional(),\n backgroundColor: z.string().describe(\"Hex color code for validation interface background\").nullable().optional(),\n configurationId: z.string().describe(\"Unique UUID identifier for this configuration\"),\n passTemplateIds: z.array(z.string()).describe(\"Multiple template IDs if assigned to multiple templates\").nullable().optional(),\n passTemplateName: z.string().describe(\"Pass Template label/name\").nullable().optional(),\n additionalProperties: z.array(z.unknown()).describe(\"Custom fields collected during scans\").nullable().optional(),\n appConfigurationLinks: z.array(PasscreatorListAppConfigurations_AppConfigurationLinkSchema).describe(\"Associated configuration links with metadata\").nullable().optional(),\n}).passthrough().describe(\"An App Configuration object from the Passcreator account.\");\nexport const PasscreatorListAppConfigurationsOutput: z.ZodTypeAny = z.object({\n configurations: z.array(PasscreatorListAppConfigurations_AppConfigurationSchema).describe(\"List of App Configuration objects in the account\").nullable().optional(),\n}).describe(\"Response containing an array of App Configuration objects.\\nEach configuration includes details about scan validation settings.\");\n\nexport const passcreatorListAppConfigurations = action(\"PASSCREATOR_LIST_APP_CONFIGURATIONS\", {\n slug: \"passcreator-list-app-configurations\",\n name: \"List App Configurations\",\n description: \"Retrieves all App Configurations for your Passcreator account. Use this action to get a list of validation configurations that control how passes are scanned and validated. Each configuration can be linked to specific pass templates or validate all passes.\",\n input: PasscreatorListAppConfigurationsInput,\n output: PasscreatorListAppConfigurationsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wCAAsDA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,qLAAqL;AAC9Q,MAAM,8DAA4EA,IAAAA,EAAE,OAAO;CACzF,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACrF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8CAA8C;AACxE,MAAM,0DAAwEA,IAAAA,EAAE,OAAO;CACrF,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;CAC1D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;CACtD,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2DAA2D;CAC/F,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mEAAmE;CAClG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC;CAC1E,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3H,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/G,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C;CACpF,iBAAiBA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7H,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,sBAAsBA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChH,uBAAuBA,IAAAA,EAAE,MAAM,2DAA2D,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3K,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2DAA2D;AACrF,MAAa,yCAAuDA,IAAAA,EAAE,OAAO,EAC3E,gBAAgBA,IAAAA,EAAE,MAAM,uDAAuD,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACpK,CAAC,CAAC,CAAC,SAAS,iIAAiI;AAE7I,MAAa,mCAAmCC,eAAAA,OAAO,uCAAuC;CAC5F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-app-configurations.d.ts
4
+ declare const PasscreatorListAppConfigurationsInput: z.ZodTypeAny;
5
+ declare const PasscreatorListAppConfigurationsOutput: z.ZodTypeAny;
6
+ declare const passcreatorListAppConfigurations: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { passcreatorListAppConfigurations };
9
+ //# sourceMappingURL=list-app-configurations.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-app-configurations.d.cts","names":[],"sources":["../../src/actions/list-app-configurations.ts"],"mappings":";;;cAIa,qCAAA,EAAuC,CAAA,CAAE,UAAyN;AAAA,cAoBlQ,sCAAA,EAAwC,CAAA,CAAE,UAEuF;AAAA,cAEjI,gCAAA,gCAAgC,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-app-configurations.d.ts
4
+ declare const PasscreatorListAppConfigurationsInput: z.ZodTypeAny;
5
+ declare const PasscreatorListAppConfigurationsOutput: z.ZodTypeAny;
6
+ declare const passcreatorListAppConfigurations: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { passcreatorListAppConfigurations };
9
+ //# sourceMappingURL=list-app-configurations.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-app-configurations.d.mts","names":[],"sources":["../../src/actions/list-app-configurations.ts"],"mappings":";;;cAIa,qCAAA,EAAuC,CAAA,CAAE,UAAyN;AAAA,cAoBlQ,sCAAA,EAAwC,CAAA,CAAE,UAEuF;AAAA,cAEjI,gCAAA,gCAAgC,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,34 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/list-app-configurations.ts
4
+ const PasscreatorListAppConfigurationsInput = z.object({}).describe("Request parameters for listing App Configurations.\nNote: The Passcreator API does not support pagination or filtering\nfor this endpoint. All configurations are returned at once.");
5
+ const PasscreatorListAppConfigurations_AppConfigurationLinkSchema = z.object({
6
+ url: z.string().describe("URL of the configuration link").nullable().optional(),
7
+ label: z.string().describe("Label or description of the link").nullable().optional()
8
+ }).passthrough().describe("A link associated with an App Configuration.");
9
+ const PasscreatorListAppConfigurations_AppConfigurationSchema = z.object({
10
+ name: z.string().describe("The configuration's label/name"),
11
+ place: z.string().describe("Venue location identifier"),
12
+ scanMode: z.number().int().describe("Scan mode: 0 (void after scan) or 1 (attendance tracking)"),
13
+ createdOn: z.string().describe("Timestamp when created in customer timezone (format: Y-m-d H:i:s)"),
14
+ textColor: z.string().describe("Hex color code for interface text").nullable().optional(),
15
+ createdOnUtc: z.string().describe("Timestamp when created in UTC timezone"),
16
+ passTemplateId: z.string().describe("Associated Pass Template ID; null means it validates all passes").nullable().optional(),
17
+ backgroundColor: z.string().describe("Hex color code for validation interface background").nullable().optional(),
18
+ configurationId: z.string().describe("Unique UUID identifier for this configuration"),
19
+ passTemplateIds: z.array(z.string()).describe("Multiple template IDs if assigned to multiple templates").nullable().optional(),
20
+ passTemplateName: z.string().describe("Pass Template label/name").nullable().optional(),
21
+ additionalProperties: z.array(z.unknown()).describe("Custom fields collected during scans").nullable().optional(),
22
+ appConfigurationLinks: z.array(PasscreatorListAppConfigurations_AppConfigurationLinkSchema).describe("Associated configuration links with metadata").nullable().optional()
23
+ }).passthrough().describe("An App Configuration object from the Passcreator account.");
24
+ const passcreatorListAppConfigurations = action("PASSCREATOR_LIST_APP_CONFIGURATIONS", {
25
+ slug: "passcreator-list-app-configurations",
26
+ name: "List App Configurations",
27
+ description: "Retrieves all App Configurations for your Passcreator account. Use this action to get a list of validation configurations that control how passes are scanned and validated. Each configuration can be linked to specific pass templates or validate all passes.",
28
+ input: PasscreatorListAppConfigurationsInput,
29
+ output: z.object({ configurations: z.array(PasscreatorListAppConfigurations_AppConfigurationSchema).describe("List of App Configuration objects in the account").nullable().optional() }).describe("Response containing an array of App Configuration objects.\nEach configuration includes details about scan validation settings.")
30
+ });
31
+ //#endregion
32
+ export { passcreatorListAppConfigurations };
33
+
34
+ //# sourceMappingURL=list-app-configurations.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-app-configurations.mjs","names":[],"sources":["../../src/actions/list-app-configurations.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PasscreatorListAppConfigurationsInput: z.ZodTypeAny = z.object({}).describe(\"Request parameters for listing App Configurations.\\nNote: The Passcreator API does not support pagination or filtering\\nfor this endpoint. All configurations are returned at once.\");\nconst PasscreatorListAppConfigurations_AppConfigurationLinkSchema: z.ZodTypeAny = z.object({\n url: z.string().describe(\"URL of the configuration link\").nullable().optional(),\n label: z.string().describe(\"Label or description of the link\").nullable().optional(),\n}).passthrough().describe(\"A link associated with an App Configuration.\");\nconst PasscreatorListAppConfigurations_AppConfigurationSchema: z.ZodTypeAny = z.object({\n name: z.string().describe(\"The configuration's label/name\"),\n place: z.string().describe(\"Venue location identifier\"),\n scanMode: z.number().int().describe(\"Scan mode: 0 (void after scan) or 1 (attendance tracking)\"),\n createdOn: z.string().describe(\"Timestamp when created in customer timezone (format: Y-m-d H:i:s)\"),\n textColor: z.string().describe(\"Hex color code for interface text\").nullable().optional(),\n createdOnUtc: z.string().describe(\"Timestamp when created in UTC timezone\"),\n passTemplateId: z.string().describe(\"Associated Pass Template ID; null means it validates all passes\").nullable().optional(),\n backgroundColor: z.string().describe(\"Hex color code for validation interface background\").nullable().optional(),\n configurationId: z.string().describe(\"Unique UUID identifier for this configuration\"),\n passTemplateIds: z.array(z.string()).describe(\"Multiple template IDs if assigned to multiple templates\").nullable().optional(),\n passTemplateName: z.string().describe(\"Pass Template label/name\").nullable().optional(),\n additionalProperties: z.array(z.unknown()).describe(\"Custom fields collected during scans\").nullable().optional(),\n appConfigurationLinks: z.array(PasscreatorListAppConfigurations_AppConfigurationLinkSchema).describe(\"Associated configuration links with metadata\").nullable().optional(),\n}).passthrough().describe(\"An App Configuration object from the Passcreator account.\");\nexport const PasscreatorListAppConfigurationsOutput: z.ZodTypeAny = z.object({\n configurations: z.array(PasscreatorListAppConfigurations_AppConfigurationSchema).describe(\"List of App Configuration objects in the account\").nullable().optional(),\n}).describe(\"Response containing an array of App Configuration objects.\\nEach configuration includes details about scan validation settings.\");\n\nexport const passcreatorListAppConfigurations = action(\"PASSCREATOR_LIST_APP_CONFIGURATIONS\", {\n slug: \"passcreator-list-app-configurations\",\n name: \"List App Configurations\",\n description: \"Retrieves all App Configurations for your Passcreator account. Use this action to get a list of validation configurations that control how passes are scanned and validated. Each configuration can be linked to specific pass templates or validate all passes.\",\n input: PasscreatorListAppConfigurationsInput,\n output: PasscreatorListAppConfigurationsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wCAAsD,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,qLAAqL;AAC9Q,MAAM,8DAA4E,EAAE,OAAO;CACzF,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9E,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACrF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8CAA8C;AACxE,MAAM,0DAAwE,EAAE,OAAO;CACrF,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC;CAC1D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B;CACtD,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2DAA2D;CAC/F,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,mEAAmE;CAClG,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC;CAC1E,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3H,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/G,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C;CACpF,iBAAiB,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7H,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,sBAAsB,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChH,uBAAuB,EAAE,MAAM,2DAA2D,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3K,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2DAA2D;AAKrF,MAAa,mCAAmC,OAAO,uCAAuC;CAC5F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATkE,EAAE,OAAO,EAC3E,gBAAgB,EAAE,MAAM,uDAAuD,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EACpK,CAAC,CAAC,CAAC,SAAS,iIAOF;AACV,CAAC"}
@@ -0,0 +1,52 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/list-app-scans.ts
4
+ const PasscreatorListAppScansInput = zod.z.object({
5
+ start: zod.z.number().int().describe("Pagination offset - the starting index for results (default: 0).").optional(),
6
+ pageSize: zod.z.number().int().describe("Number of results per page (default: 100, max: 100).").optional(),
7
+ createdSince: zod.z.string().describe("Filter scans created after this datetime. Format: Y-m-d H:i (e.g., '2024-01-15 14:30').").optional(),
8
+ appConfigurationId: zod.z.string().describe("App Configuration identifier (UUID format) to retrieve scans for.")
9
+ }).describe("Parameters to list scans for a specific app configuration.\nReturns paginated results ordered by creation date.");
10
+ const PasscreatorListAppScans_QueryMetadataSchema = zod.z.object({
11
+ next: zod.z.string().describe("URL for the next page of results (omitted if at end).").nullable().optional(),
12
+ self: zod.z.string().describe("URL of the current request.").nullable().optional(),
13
+ start: zod.z.number().int().describe("The starting offset parameter provided in the request.").nullable().optional(),
14
+ pageSize: zod.z.number().int().describe("Number of results per request.").nullable().optional()
15
+ }).passthrough().describe("Pagination metadata from the API response.");
16
+ const PasscreatorListAppScans_ScanObjectSchema = zod.z.object({
17
+ place: zod.z.string().describe("Scan location.").nullable().optional(),
18
+ passId: zod.z.string().describe("Unique pass identifier (UUID format).").nullable().optional(),
19
+ passData: zod.z.string().describe("Additional pass data.").nullable().optional(),
20
+ appScanId: zod.z.string().describe("Unique scan identifier (UUID format).").nullable().optional(),
21
+ createdOn: zod.z.string().describe("Timestamp when scan was created in customer timezone (Y-m-d H:i:s format).").nullable().optional(),
22
+ deviceName: zod.z.string().describe("Name of the device that performed the scan.").nullable().optional(),
23
+ passVoided: zod.z.boolean().describe("Whether the pass is voided.").nullable().optional(),
24
+ scanStatus: zod.z.number().int().describe("Scan status code: 0=voided, 1=already voided, 2=attendance saved, 3=not found.").nullable().optional(),
25
+ storedValue: zod.z.number().describe("Pass stored value balance (if applicable).").nullable().optional(),
26
+ createdOnUtc: zod.z.string().describe("Timestamp when scan was created in UTC timezone.").nullable().optional(),
27
+ passGeneratedId: zod.z.string().describe("System-generated pass identifier.").nullable().optional(),
28
+ passSearchString: zod.z.string().describe("Searchable concatenated pass data.").nullable().optional(),
29
+ passTemplateGuid: zod.z.string().describe("Associated template identifier (UUID format).").nullable().optional(),
30
+ passTemplateName: zod.z.string().describe("Name of the pass template.").nullable().optional(),
31
+ appConfigurationId: zod.z.string().describe("Configuration identifier used for this scan.").nullable().optional(),
32
+ passUserProvidedId: zod.z.string().describe("User-supplied pass identifier.").nullable().optional(),
33
+ scannedBarcodeValue: zod.z.string().describe("The barcode value that was scanned.").nullable().optional(),
34
+ additionalProperties: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Pass properties at the time of scan (key-value pairs).").nullable().optional(),
35
+ additionalPropertiesScan: zod.z.array(zod.z.unknown()).describe("Custom properties collected during the scan.").nullable().optional()
36
+ }).passthrough().describe("A single scan record returned by the API.\nContains scan status, timing, pass information, and scan details.");
37
+ const PasscreatorListAppScansOutput = zod.z.object({
38
+ query: PasscreatorListAppScans_QueryMetadataSchema.nullable().optional(),
39
+ total: zod.z.number().int().describe("Total number of scans matching the query across all pages.").nullable().optional(),
40
+ results: zod.z.array(PasscreatorListAppScans_ScanObjectSchema).describe("Array of scan objects for this page.").nullable().optional()
41
+ }).passthrough().describe("Response containing paginated scan results for an app configuration.\nIncludes pagination metadata and array of scan objects.");
42
+ const passcreatorListAppScans = require_action.action("PASSCREATOR_LIST_APP_SCANS", {
43
+ slug: "passcreator-list-app-scans",
44
+ name: "List App Scans",
45
+ description: "Retrieves a paginated list of scans for a given app configuration. Use this tool to view scan history, track attendance, and analyze scan data ordered by creation date.",
46
+ input: PasscreatorListAppScansInput,
47
+ output: PasscreatorListAppScansOutput
48
+ });
49
+ //#endregion
50
+ exports.passcreatorListAppScans = passcreatorListAppScans;
51
+
52
+ //# sourceMappingURL=list-app-scans.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-app-scans.cjs","names":["z","action"],"sources":["../../src/actions/list-app-scans.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PasscreatorListAppScansInput: z.ZodTypeAny = z.object({\n start: z.number().int().describe(\"Pagination offset - the starting index for results (default: 0).\").optional(),\n pageSize: z.number().int().describe(\"Number of results per page (default: 100, max: 100).\").optional(),\n createdSince: z.string().describe(\"Filter scans created after this datetime. Format: Y-m-d H:i (e.g., '2024-01-15 14:30').\").optional(),\n appConfigurationId: z.string().describe(\"App Configuration identifier (UUID format) to retrieve scans for.\"),\n}).describe(\"Parameters to list scans for a specific app configuration.\\nReturns paginated results ordered by creation date.\");\nconst PasscreatorListAppScans_QueryMetadataSchema: z.ZodTypeAny = z.object({\n next: z.string().describe(\"URL for the next page of results (omitted if at end).\").nullable().optional(),\n self: z.string().describe(\"URL of the current request.\").nullable().optional(),\n start: z.number().int().describe(\"The starting offset parameter provided in the request.\").nullable().optional(),\n pageSize: z.number().int().describe(\"Number of results per request.\").nullable().optional(),\n}).passthrough().describe(\"Pagination metadata from the API response.\");\nconst PasscreatorListAppScans_ScanObjectSchema: z.ZodTypeAny = z.object({\n place: z.string().describe(\"Scan location.\").nullable().optional(),\n passId: z.string().describe(\"Unique pass identifier (UUID format).\").nullable().optional(),\n passData: z.string().describe(\"Additional pass data.\").nullable().optional(),\n appScanId: z.string().describe(\"Unique scan identifier (UUID format).\").nullable().optional(),\n createdOn: z.string().describe(\"Timestamp when scan was created in customer timezone (Y-m-d H:i:s format).\").nullable().optional(),\n deviceName: z.string().describe(\"Name of the device that performed the scan.\").nullable().optional(),\n passVoided: z.boolean().describe(\"Whether the pass is voided.\").nullable().optional(),\n scanStatus: z.number().int().describe(\"Scan status code: 0=voided, 1=already voided, 2=attendance saved, 3=not found.\").nullable().optional(),\n storedValue: z.number().describe(\"Pass stored value balance (if applicable).\").nullable().optional(),\n createdOnUtc: z.string().describe(\"Timestamp when scan was created in UTC timezone.\").nullable().optional(),\n passGeneratedId: z.string().describe(\"System-generated pass identifier.\").nullable().optional(),\n passSearchString: z.string().describe(\"Searchable concatenated pass data.\").nullable().optional(),\n passTemplateGuid: z.string().describe(\"Associated template identifier (UUID format).\").nullable().optional(),\n passTemplateName: z.string().describe(\"Name of the pass template.\").nullable().optional(),\n appConfigurationId: z.string().describe(\"Configuration identifier used for this scan.\").nullable().optional(),\n passUserProvidedId: z.string().describe(\"User-supplied pass identifier.\").nullable().optional(),\n scannedBarcodeValue: z.string().describe(\"The barcode value that was scanned.\").nullable().optional(),\n additionalProperties: z.record(z.string(), z.unknown()).describe(\"Pass properties at the time of scan (key-value pairs).\").nullable().optional(),\n additionalPropertiesScan: z.array(z.unknown()).describe(\"Custom properties collected during the scan.\").nullable().optional(),\n}).passthrough().describe(\"A single scan record returned by the API.\\nContains scan status, timing, pass information, and scan details.\");\nexport const PasscreatorListAppScansOutput: z.ZodTypeAny = z.object({\n query: PasscreatorListAppScans_QueryMetadataSchema.nullable().optional(),\n total: z.number().int().describe(\"Total number of scans matching the query across all pages.\").nullable().optional(),\n results: z.array(PasscreatorListAppScans_ScanObjectSchema).describe(\"Array of scan objects for this page.\").nullable().optional(),\n}).passthrough().describe(\"Response containing paginated scan results for an app configuration.\\nIncludes pagination metadata and array of scan objects.\");\n\nexport const passcreatorListAppScans = action(\"PASSCREATOR_LIST_APP_SCANS\", {\n slug: \"passcreator-list-app-scans\",\n name: \"List App Scans\",\n description: \"Retrieves a paginated list of scans for a given app configuration. Use this tool to view scan history, track attendance, and analyze scan data ordered by creation date.\",\n input: PasscreatorListAppScansInput,\n output: PasscreatorListAppScansOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA6CA,IAAAA,EAAE,OAAO;CACjE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kEAAkE,CAAC,CAAC,SAAS;CAC9G,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CACrG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yFAAyF,CAAC,CAAC,SAAS;CACtI,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mEAAmE;AAC7G,CAAC,CAAC,CAAC,SAAS,iHAAiH;AAC7H,MAAM,8CAA4DA,IAAAA,EAAE,OAAO;CACzE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7E,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/G,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,4CAA4C;AACtE,MAAM,2CAAyDA,IAAAA,EAAE,OAAO;CACtE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gBAAgB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzF,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3E,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4EAA4E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjI,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnG,YAAYA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gFAAgF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5I,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1G,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3G,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5G,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,qBAAqBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,sBAAsBA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/I,0BAA0BA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9H,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8GAA8G;AACxI,MAAa,gCAA8CA,IAAAA,EAAE,OAAO;CAClE,OAAO,4CAA4C,SAAS,CAAC,CAAC,SAAS;CACvE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,SAASA,IAAAA,EAAE,MAAM,wCAAwC,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAClI,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+HAA+H;AAEzJ,MAAa,0BAA0BC,eAAAA,OAAO,8BAA8B;CAC1E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-app-scans.d.ts
4
+ declare const PasscreatorListAppScansInput: z.ZodTypeAny;
5
+ declare const PasscreatorListAppScansOutput: z.ZodTypeAny;
6
+ declare const passcreatorListAppScans: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { passcreatorListAppScans };
9
+ //# sourceMappingURL=list-app-scans.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-app-scans.d.cts","names":[],"sources":["../../src/actions/list-app-scans.ts"],"mappings":";;;cAIa,4BAAA,EAA8B,CAAA,CAAE,UAKiF;AAAA,cA4BjH,6BAAA,EAA+B,CAAA,CAAE,UAI4G;AAAA,cAE7I,uBAAA,gCAAuB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-app-scans.d.ts
4
+ declare const PasscreatorListAppScansInput: z.ZodTypeAny;
5
+ declare const PasscreatorListAppScansOutput: z.ZodTypeAny;
6
+ declare const passcreatorListAppScans: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { passcreatorListAppScans };
9
+ //# sourceMappingURL=list-app-scans.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-app-scans.d.mts","names":[],"sources":["../../src/actions/list-app-scans.ts"],"mappings":";;;cAIa,4BAAA,EAA8B,CAAA,CAAE,UAKiF;AAAA,cA4BjH,6BAAA,EAA+B,CAAA,CAAE,UAI4G;AAAA,cAE7I,uBAAA,gCAAuB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,51 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/list-app-scans.ts
4
+ const PasscreatorListAppScansInput = z.object({
5
+ start: z.number().int().describe("Pagination offset - the starting index for results (default: 0).").optional(),
6
+ pageSize: z.number().int().describe("Number of results per page (default: 100, max: 100).").optional(),
7
+ createdSince: z.string().describe("Filter scans created after this datetime. Format: Y-m-d H:i (e.g., '2024-01-15 14:30').").optional(),
8
+ appConfigurationId: z.string().describe("App Configuration identifier (UUID format) to retrieve scans for.")
9
+ }).describe("Parameters to list scans for a specific app configuration.\nReturns paginated results ordered by creation date.");
10
+ const PasscreatorListAppScans_QueryMetadataSchema = z.object({
11
+ next: z.string().describe("URL for the next page of results (omitted if at end).").nullable().optional(),
12
+ self: z.string().describe("URL of the current request.").nullable().optional(),
13
+ start: z.number().int().describe("The starting offset parameter provided in the request.").nullable().optional(),
14
+ pageSize: z.number().int().describe("Number of results per request.").nullable().optional()
15
+ }).passthrough().describe("Pagination metadata from the API response.");
16
+ const PasscreatorListAppScans_ScanObjectSchema = z.object({
17
+ place: z.string().describe("Scan location.").nullable().optional(),
18
+ passId: z.string().describe("Unique pass identifier (UUID format).").nullable().optional(),
19
+ passData: z.string().describe("Additional pass data.").nullable().optional(),
20
+ appScanId: z.string().describe("Unique scan identifier (UUID format).").nullable().optional(),
21
+ createdOn: z.string().describe("Timestamp when scan was created in customer timezone (Y-m-d H:i:s format).").nullable().optional(),
22
+ deviceName: z.string().describe("Name of the device that performed the scan.").nullable().optional(),
23
+ passVoided: z.boolean().describe("Whether the pass is voided.").nullable().optional(),
24
+ scanStatus: z.number().int().describe("Scan status code: 0=voided, 1=already voided, 2=attendance saved, 3=not found.").nullable().optional(),
25
+ storedValue: z.number().describe("Pass stored value balance (if applicable).").nullable().optional(),
26
+ createdOnUtc: z.string().describe("Timestamp when scan was created in UTC timezone.").nullable().optional(),
27
+ passGeneratedId: z.string().describe("System-generated pass identifier.").nullable().optional(),
28
+ passSearchString: z.string().describe("Searchable concatenated pass data.").nullable().optional(),
29
+ passTemplateGuid: z.string().describe("Associated template identifier (UUID format).").nullable().optional(),
30
+ passTemplateName: z.string().describe("Name of the pass template.").nullable().optional(),
31
+ appConfigurationId: z.string().describe("Configuration identifier used for this scan.").nullable().optional(),
32
+ passUserProvidedId: z.string().describe("User-supplied pass identifier.").nullable().optional(),
33
+ scannedBarcodeValue: z.string().describe("The barcode value that was scanned.").nullable().optional(),
34
+ additionalProperties: z.record(z.string(), z.unknown()).describe("Pass properties at the time of scan (key-value pairs).").nullable().optional(),
35
+ additionalPropertiesScan: z.array(z.unknown()).describe("Custom properties collected during the scan.").nullable().optional()
36
+ }).passthrough().describe("A single scan record returned by the API.\nContains scan status, timing, pass information, and scan details.");
37
+ const passcreatorListAppScans = action("PASSCREATOR_LIST_APP_SCANS", {
38
+ slug: "passcreator-list-app-scans",
39
+ name: "List App Scans",
40
+ description: "Retrieves a paginated list of scans for a given app configuration. Use this tool to view scan history, track attendance, and analyze scan data ordered by creation date.",
41
+ input: PasscreatorListAppScansInput,
42
+ output: z.object({
43
+ query: PasscreatorListAppScans_QueryMetadataSchema.nullable().optional(),
44
+ total: z.number().int().describe("Total number of scans matching the query across all pages.").nullable().optional(),
45
+ results: z.array(PasscreatorListAppScans_ScanObjectSchema).describe("Array of scan objects for this page.").nullable().optional()
46
+ }).passthrough().describe("Response containing paginated scan results for an app configuration.\nIncludes pagination metadata and array of scan objects.")
47
+ });
48
+ //#endregion
49
+ export { passcreatorListAppScans };
50
+
51
+ //# sourceMappingURL=list-app-scans.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-app-scans.mjs","names":[],"sources":["../../src/actions/list-app-scans.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PasscreatorListAppScansInput: z.ZodTypeAny = z.object({\n start: z.number().int().describe(\"Pagination offset - the starting index for results (default: 0).\").optional(),\n pageSize: z.number().int().describe(\"Number of results per page (default: 100, max: 100).\").optional(),\n createdSince: z.string().describe(\"Filter scans created after this datetime. Format: Y-m-d H:i (e.g., '2024-01-15 14:30').\").optional(),\n appConfigurationId: z.string().describe(\"App Configuration identifier (UUID format) to retrieve scans for.\"),\n}).describe(\"Parameters to list scans for a specific app configuration.\\nReturns paginated results ordered by creation date.\");\nconst PasscreatorListAppScans_QueryMetadataSchema: z.ZodTypeAny = z.object({\n next: z.string().describe(\"URL for the next page of results (omitted if at end).\").nullable().optional(),\n self: z.string().describe(\"URL of the current request.\").nullable().optional(),\n start: z.number().int().describe(\"The starting offset parameter provided in the request.\").nullable().optional(),\n pageSize: z.number().int().describe(\"Number of results per request.\").nullable().optional(),\n}).passthrough().describe(\"Pagination metadata from the API response.\");\nconst PasscreatorListAppScans_ScanObjectSchema: z.ZodTypeAny = z.object({\n place: z.string().describe(\"Scan location.\").nullable().optional(),\n passId: z.string().describe(\"Unique pass identifier (UUID format).\").nullable().optional(),\n passData: z.string().describe(\"Additional pass data.\").nullable().optional(),\n appScanId: z.string().describe(\"Unique scan identifier (UUID format).\").nullable().optional(),\n createdOn: z.string().describe(\"Timestamp when scan was created in customer timezone (Y-m-d H:i:s format).\").nullable().optional(),\n deviceName: z.string().describe(\"Name of the device that performed the scan.\").nullable().optional(),\n passVoided: z.boolean().describe(\"Whether the pass is voided.\").nullable().optional(),\n scanStatus: z.number().int().describe(\"Scan status code: 0=voided, 1=already voided, 2=attendance saved, 3=not found.\").nullable().optional(),\n storedValue: z.number().describe(\"Pass stored value balance (if applicable).\").nullable().optional(),\n createdOnUtc: z.string().describe(\"Timestamp when scan was created in UTC timezone.\").nullable().optional(),\n passGeneratedId: z.string().describe(\"System-generated pass identifier.\").nullable().optional(),\n passSearchString: z.string().describe(\"Searchable concatenated pass data.\").nullable().optional(),\n passTemplateGuid: z.string().describe(\"Associated template identifier (UUID format).\").nullable().optional(),\n passTemplateName: z.string().describe(\"Name of the pass template.\").nullable().optional(),\n appConfigurationId: z.string().describe(\"Configuration identifier used for this scan.\").nullable().optional(),\n passUserProvidedId: z.string().describe(\"User-supplied pass identifier.\").nullable().optional(),\n scannedBarcodeValue: z.string().describe(\"The barcode value that was scanned.\").nullable().optional(),\n additionalProperties: z.record(z.string(), z.unknown()).describe(\"Pass properties at the time of scan (key-value pairs).\").nullable().optional(),\n additionalPropertiesScan: z.array(z.unknown()).describe(\"Custom properties collected during the scan.\").nullable().optional(),\n}).passthrough().describe(\"A single scan record returned by the API.\\nContains scan status, timing, pass information, and scan details.\");\nexport const PasscreatorListAppScansOutput: z.ZodTypeAny = z.object({\n query: PasscreatorListAppScans_QueryMetadataSchema.nullable().optional(),\n total: z.number().int().describe(\"Total number of scans matching the query across all pages.\").nullable().optional(),\n results: z.array(PasscreatorListAppScans_ScanObjectSchema).describe(\"Array of scan objects for this page.\").nullable().optional(),\n}).passthrough().describe(\"Response containing paginated scan results for an app configuration.\\nIncludes pagination metadata and array of scan objects.\");\n\nexport const passcreatorListAppScans = action(\"PASSCREATOR_LIST_APP_SCANS\", {\n slug: \"passcreator-list-app-scans\",\n name: \"List App Scans\",\n description: \"Retrieves a paginated list of scans for a given app configuration. Use this tool to view scan history, track attendance, and analyze scan data ordered by creation date.\",\n input: PasscreatorListAppScansInput,\n output: PasscreatorListAppScansOutput,\n});\n"],"mappings":"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"}
@@ -0,0 +1,16 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/list-pass-templates.ts
4
+ const PasscreatorListPassTemplatesInput = zod.z.object({}).describe("Request parameters for listing pass templates.\nNote: The Passcreator V1 API does not support pagination or filtering\nfor the list templates endpoint. All templates are returned at once.");
5
+ const PasscreatorListPassTemplatesOutput = zod.z.unknown();
6
+ const passcreatorListPassTemplates = require_action.action("PASSCREATOR_LIST_PASS_TEMPLATES", {
7
+ slug: "passcreator-list-pass-templates",
8
+ name: "List Pass Templates",
9
+ description: "Retrieves all pass templates for your Passcreator account. Use this action to get a list of available templates (each with its unique identifier and name) which are needed to create new passes. Templates must be created via the Passcreator web app.",
10
+ input: PasscreatorListPassTemplatesInput,
11
+ output: PasscreatorListPassTemplatesOutput
12
+ });
13
+ //#endregion
14
+ exports.passcreatorListPassTemplates = passcreatorListPassTemplates;
15
+
16
+ //# sourceMappingURL=list-pass-templates.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-pass-templates.cjs","names":["z","action"],"sources":["../../src/actions/list-pass-templates.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PasscreatorListPassTemplatesInput: z.ZodTypeAny = z.object({}).describe(\"Request parameters for listing pass templates.\\nNote: The Passcreator V1 API does not support pagination or filtering\\nfor the list templates endpoint. All templates are returned at once.\");\nexport const PasscreatorListPassTemplatesOutput: z.ZodTypeAny = z.unknown();\n\nexport const passcreatorListPassTemplates = action(\"PASSCREATOR_LIST_PASS_TEMPLATES\", {\n slug: \"passcreator-list-pass-templates\",\n name: \"List Pass Templates\",\n description: \"Retrieves all pass templates for your Passcreator account. Use this action to get a list of available templates (each with its unique identifier and name) which are needed to create new passes. Templates must be created via the Passcreator web app.\",\n input: PasscreatorListPassTemplatesInput,\n output: PasscreatorListPassTemplatesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAkDA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6LAA6L;AAClR,MAAa,qCAAmDA,IAAAA,EAAE,QAAQ;AAE1E,MAAa,+BAA+BC,eAAAA,OAAO,mCAAmC;CACpF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-pass-templates.d.ts
4
+ declare const PasscreatorListPassTemplatesInput: z.ZodTypeAny;
5
+ declare const PasscreatorListPassTemplatesOutput: z.ZodTypeAny;
6
+ declare const passcreatorListPassTemplates: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { passcreatorListPassTemplates };
9
+ //# sourceMappingURL=list-pass-templates.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-pass-templates.d.cts","names":[],"sources":["../../src/actions/list-pass-templates.ts"],"mappings":";;;cAIa,iCAAA,EAAmC,CAAA,CAAE,UAAiO;AAAA,cACtQ,kCAAA,EAAoC,CAAA,CAAE,UAAwB;AAAA,cAE9D,4BAAA,gCAA4B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,9 @@
1
+ import { z } from "zod";
2
+
3
+ //#region src/actions/list-pass-templates.d.ts
4
+ declare const PasscreatorListPassTemplatesInput: z.ZodTypeAny;
5
+ declare const PasscreatorListPassTemplatesOutput: z.ZodTypeAny;
6
+ declare const passcreatorListPassTemplates: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
+ //#endregion
8
+ export { passcreatorListPassTemplates };
9
+ //# sourceMappingURL=list-pass-templates.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-pass-templates.d.mts","names":[],"sources":["../../src/actions/list-pass-templates.ts"],"mappings":";;;cAIa,iCAAA,EAAmC,CAAA,CAAE,UAAiO;AAAA,cACtQ,kCAAA,EAAoC,CAAA,CAAE,UAAwB;AAAA,cAE9D,4BAAA,gCAA4B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
@@ -0,0 +1,13 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ const passcreatorListPassTemplates = action("PASSCREATOR_LIST_PASS_TEMPLATES", {
4
+ slug: "passcreator-list-pass-templates",
5
+ name: "List Pass Templates",
6
+ description: "Retrieves all pass templates for your Passcreator account. Use this action to get a list of available templates (each with its unique identifier and name) which are needed to create new passes. Templates must be created via the Passcreator web app.",
7
+ input: z.object({}).describe("Request parameters for listing pass templates.\nNote: The Passcreator V1 API does not support pagination or filtering\nfor the list templates endpoint. All templates are returned at once."),
8
+ output: z.unknown()
9
+ });
10
+ //#endregion
11
+ export { passcreatorListPassTemplates };
12
+
13
+ //# sourceMappingURL=list-pass-templates.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-pass-templates.mjs","names":[],"sources":["../../src/actions/list-pass-templates.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PasscreatorListPassTemplatesInput: z.ZodTypeAny = z.object({}).describe(\"Request parameters for listing pass templates.\\nNote: The Passcreator V1 API does not support pagination or filtering\\nfor the list templates endpoint. All templates are returned at once.\");\nexport const PasscreatorListPassTemplatesOutput: z.ZodTypeAny = z.unknown();\n\nexport const passcreatorListPassTemplates = action(\"PASSCREATOR_LIST_PASS_TEMPLATES\", {\n slug: \"passcreator-list-pass-templates\",\n name: \"List Pass Templates\",\n description: \"Retrieves all pass templates for your Passcreator account. Use this action to get a list of available templates (each with its unique identifier and name) which are needed to create new passes. Templates must be created via the Passcreator web app.\",\n input: PasscreatorListPassTemplatesInput,\n output: PasscreatorListPassTemplatesOutput,\n});\n"],"mappings":";;AAOA,MAAa,+BAA+B,OAAO,mCAAmC;CACpF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAP6D,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6LAO5E;CACP,QAP8D,EAAE,QAOxD;AACV,CAAC"}
@@ -0,0 +1,41 @@
1
+ const require_action = require("../action.cjs");
2
+ let zod = require("zod");
3
+ //#region src/actions/list-passes.ts
4
+ const PasscreatorListPassesInput = zod.z.object({
5
+ pageSize: zod.z.number().int().default(100).describe("Number of passes to return per page (10-1000, default 100).").optional(),
6
+ projectId: zod.z.string().describe("Filter passes by project ID (UUID format). Only return passes belonging to this project.").optional(),
7
+ templateId: zod.z.string().describe("Filter passes by pass template ID (UUID format). Only return passes created from this template.").optional(),
8
+ searchPhrase: zod.z.string().describe("Wildcard search phrase to match across all pass data fields. Use for general text searching.").optional()
9
+ }).describe("Parameters to list or search passes using Passcreator v3 API.\nSupports filtering by template, project, search phrase, and pagination.");
10
+ const PasscreatorListPasses_PassObjectSchema = zod.z.object({
11
+ voided: zod.z.boolean().describe("Whether the pass has been voided/invalidated.").nullable().optional(),
12
+ redeemed: zod.z.boolean().describe("Whether the pass has been redeemed (for loyalty/coupon passes).").nullable().optional(),
13
+ identifier: zod.z.string().describe("Unique pass identifier (UUID format).").nullable().optional(),
14
+ templateId: zod.z.string().describe("ID of the template used to create this pass.").nullable().optional(),
15
+ serialNumber: zod.z.string().describe("Unique serial number for the pass.").nullable().optional(),
16
+ passTypeIdentifier: zod.z.string().describe("Pass type identifier from the pass template.").nullable().optional()
17
+ }).passthrough().describe("A single pass object returned by the Passcreator v3 API.\nAdditional fields may be present depending on pass template configuration.");
18
+ const PasscreatorListPasses_ResponseMetaDataSchema = zod.z.object({
19
+ resultsTotal: zod.z.number().int().describe("Total number of passes matching the query across all pages."),
20
+ resultsThisPage: zod.z.number().int().describe("Number of passes returned in this page.")
21
+ }).passthrough().describe("Pagination metadata from the Passcreator API.");
22
+ const PasscreatorListPassesOutput = zod.z.object({
23
+ data: zod.z.array(PasscreatorListPasses_PassObjectSchema).describe("Array of pass objects matching the query.").nullable().optional(),
24
+ count: zod.z.number().int().describe("Number of passes in the data array for this response."),
25
+ errors: zod.z.array(zod.z.string()).describe("List of error messages if any occurred.").nullable().optional(),
26
+ success: zod.z.boolean().describe("Whether the API request was successful."),
27
+ statusCode: zod.z.number().int().describe("HTTP status code returned by the API (200 for success)."),
28
+ description: zod.z.string().describe("Human-readable description of the response status.").nullable().optional(),
29
+ responseMetaData: PasscreatorListPasses_ResponseMetaDataSchema.nullable()
30
+ }).passthrough().describe("Response from the Passcreator v3 API for listing/searching passes.\nContains pagination metadata and list of pass objects.");
31
+ const passcreatorListPasses = require_action.action("PASSCREATOR_LIST_PASSES", {
32
+ slug: "passcreator-list-passes",
33
+ name: "List/Search Passes",
34
+ description: "List and search wallet passes from Passcreator using the v3 API. Use this tool to: - Retrieve all passes in your account - Filter passes by template ID or project ID - Search passes using a search phrase across all data fields - Paginate through large result sets Returns passes with metadata including identifiers, serial numbers, template info, and voided/redeemed status.",
35
+ input: PasscreatorListPassesInput,
36
+ output: PasscreatorListPassesOutput
37
+ });
38
+ //#endregion
39
+ exports.passcreatorListPasses = passcreatorListPasses;
40
+
41
+ //# sourceMappingURL=list-passes.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-passes.cjs","names":["z","action"],"sources":["../../src/actions/list-passes.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PasscreatorListPassesInput: z.ZodTypeAny = z.object({\n pageSize: z.number().int().default(100).describe(\"Number of passes to return per page (10-1000, default 100).\").optional(),\n projectId: z.string().describe(\"Filter passes by project ID (UUID format). Only return passes belonging to this project.\").optional(),\n templateId: z.string().describe(\"Filter passes by pass template ID (UUID format). Only return passes created from this template.\").optional(),\n searchPhrase: z.string().describe(\"Wildcard search phrase to match across all pass data fields. Use for general text searching.\").optional(),\n}).describe(\"Parameters to list or search passes using Passcreator v3 API.\\nSupports filtering by template, project, search phrase, and pagination.\");\nconst PasscreatorListPasses_PassObjectSchema: z.ZodTypeAny = z.object({\n voided: z.boolean().describe(\"Whether the pass has been voided/invalidated.\").nullable().optional(),\n redeemed: z.boolean().describe(\"Whether the pass has been redeemed (for loyalty/coupon passes).\").nullable().optional(),\n identifier: z.string().describe(\"Unique pass identifier (UUID format).\").nullable().optional(),\n templateId: z.string().describe(\"ID of the template used to create this pass.\").nullable().optional(),\n serialNumber: z.string().describe(\"Unique serial number for the pass.\").nullable().optional(),\n passTypeIdentifier: z.string().describe(\"Pass type identifier from the pass template.\").nullable().optional(),\n}).passthrough().describe(\"A single pass object returned by the Passcreator v3 API.\\nAdditional fields may be present depending on pass template configuration.\");\nconst PasscreatorListPasses_ResponseMetaDataSchema: z.ZodTypeAny = z.object({\n resultsTotal: z.number().int().describe(\"Total number of passes matching the query across all pages.\"),\n resultsThisPage: z.number().int().describe(\"Number of passes returned in this page.\"),\n}).passthrough().describe(\"Pagination metadata from the Passcreator API.\");\nexport const PasscreatorListPassesOutput: z.ZodTypeAny = z.object({\n data: z.array(PasscreatorListPasses_PassObjectSchema).describe(\"Array of pass objects matching the query.\").nullable().optional(),\n count: z.number().int().describe(\"Number of passes in the data array for this response.\"),\n errors: z.array(z.string()).describe(\"List of error messages if any occurred.\").nullable().optional(),\n success: z.boolean().describe(\"Whether the API request was successful.\"),\n statusCode: z.number().int().describe(\"HTTP status code returned by the API (200 for success).\"),\n description: z.string().describe(\"Human-readable description of the response status.\").nullable().optional(),\n responseMetaData: PasscreatorListPasses_ResponseMetaDataSchema.nullable(),\n}).passthrough().describe(\"Response from the Passcreator v3 API for listing/searching passes.\\nContains pagination metadata and list of pass objects.\");\n\nexport const passcreatorListPasses = action(\"PASSCREATOR_LIST_PASSES\", {\n slug: \"passcreator-list-passes\",\n name: \"List/Search Passes\",\n description: \"List and search wallet passes from Passcreator using the v3 API. Use this tool to: - Retrieve all passes in your account - Filter passes by template ID or project ID - Search passes using a search phrase across all data fields - Paginate through large result sets Returns passes with metadata including identifiers, serial numbers, template info, and voided/redeemed status.\",\n input: PasscreatorListPassesInput,\n output: PasscreatorListPassesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA2CA,IAAAA,EAAE,OAAO;CAC/D,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,QAAQ,GAAG,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS;CACzH,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0FAA0F,CAAC,CAAC,SAAS;CACpI,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iGAAiG,CAAC,CAAC,SAAS;CAC5I,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8FAA8F,CAAC,CAAC,SAAS;AAC7I,CAAC,CAAC,CAAC,SAAS,wIAAwI;AACpJ,MAAM,yCAAuDA,IAAAA,EAAE,OAAO;CACpE,QAAQA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,UAAUA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtH,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7F,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sIAAsI;AAChK,MAAM,+CAA6DA,IAAAA,EAAE,OAAO;CAC1E,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6DAA6D;CACrG,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yCAAyC;AACtF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+CAA+C;AACzE,MAAa,8BAA4CA,IAAAA,EAAE,OAAO;CAChE,MAAMA,IAAAA,EAAE,MAAM,sCAAsC,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChI,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,uDAAuD;CACxF,QAAQA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,yCAAyC;CACvE,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yDAAyD;CAC/F,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3G,kBAAkB,6CAA6C,SAAS;AAC1E,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,4HAA4H;AAEtJ,MAAa,wBAAwBC,eAAAA,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}