@keystrokehq/poof 0.1.2 → 0.1.4

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 (73) hide show
  1. package/dist/actions/check-balance.cjs +1 -1
  2. package/dist/actions/check-balance.cjs.map +1 -1
  3. package/dist/actions/check-balance.d.cts +1 -1
  4. package/dist/actions/check-balance.d.mts +1 -1
  5. package/dist/actions/check-balance.mjs +1 -1
  6. package/dist/actions/check-balance.mjs.map +1 -1
  7. package/dist/actions/create-checkout.cjs +1 -1
  8. package/dist/actions/create-checkout.cjs.map +1 -1
  9. package/dist/actions/create-checkout.d.cts +1 -1
  10. package/dist/actions/create-checkout.d.mts +1 -1
  11. package/dist/actions/create-checkout.mjs +1 -1
  12. package/dist/actions/create-checkout.mjs.map +1 -1
  13. package/dist/actions/create-deposit-address.cjs +1 -1
  14. package/dist/actions/create-deposit-address.cjs.map +1 -1
  15. package/dist/actions/create-deposit-address.d.cts +1 -1
  16. package/dist/actions/create-deposit-address.d.mts +1 -1
  17. package/dist/actions/create-deposit-address.mjs +1 -1
  18. package/dist/actions/create-deposit-address.mjs.map +1 -1
  19. package/dist/actions/create-fiat-charge.cjs +1 -1
  20. package/dist/actions/create-fiat-charge.cjs.map +1 -1
  21. package/dist/actions/create-fiat-charge.d.cts +1 -1
  22. package/dist/actions/create-fiat-charge.d.mts +1 -1
  23. package/dist/actions/create-fiat-charge.mjs +1 -1
  24. package/dist/actions/create-fiat-charge.mjs.map +1 -1
  25. package/dist/actions/create-fiat-invoice.cjs +1 -1
  26. package/dist/actions/create-fiat-invoice.cjs.map +1 -1
  27. package/dist/actions/create-fiat-invoice.d.cts +1 -1
  28. package/dist/actions/create-fiat-invoice.d.mts +1 -1
  29. package/dist/actions/create-fiat-invoice.mjs +1 -1
  30. package/dist/actions/create-fiat-invoice.mjs.map +1 -1
  31. package/dist/actions/create-payment-link.cjs +2 -2
  32. package/dist/actions/create-payment-link.cjs.map +1 -1
  33. package/dist/actions/create-payment-link.d.cts +3 -3
  34. package/dist/actions/create-payment-link.d.mts +3 -3
  35. package/dist/actions/create-payment-link.mjs +2 -2
  36. package/dist/actions/create-payment-link.mjs.map +1 -1
  37. package/dist/actions/create-webhook.cjs +1 -1
  38. package/dist/actions/create-webhook.cjs.map +1 -1
  39. package/dist/actions/create-webhook.d.cts +1 -1
  40. package/dist/actions/create-webhook.d.mts +1 -1
  41. package/dist/actions/create-webhook.mjs +1 -1
  42. package/dist/actions/create-webhook.mjs.map +1 -1
  43. package/dist/actions/fetch-gas-price.cjs +1 -1
  44. package/dist/actions/fetch-gas-price.cjs.map +1 -1
  45. package/dist/actions/fetch-gas-price.d.cts +1 -1
  46. package/dist/actions/fetch-gas-price.d.mts +1 -1
  47. package/dist/actions/fetch-gas-price.mjs +1 -1
  48. package/dist/actions/fetch-gas-price.mjs.map +1 -1
  49. package/dist/actions/fetch-price.cjs +1 -1
  50. package/dist/actions/fetch-price.cjs.map +1 -1
  51. package/dist/actions/fetch-price.d.cts +1 -1
  52. package/dist/actions/fetch-price.d.mts +1 -1
  53. package/dist/actions/fetch-price.mjs +1 -1
  54. package/dist/actions/fetch-price.mjs.map +1 -1
  55. package/dist/actions/fetch-smart-contracts.cjs +4 -4
  56. package/dist/actions/fetch-smart-contracts.cjs.map +1 -1
  57. package/dist/actions/fetch-smart-contracts.d.cts +4 -4
  58. package/dist/actions/fetch-smart-contracts.d.mts +4 -4
  59. package/dist/actions/fetch-smart-contracts.mjs +4 -4
  60. package/dist/actions/fetch-smart-contracts.mjs.map +1 -1
  61. package/dist/actions/send-payout.cjs +1 -1
  62. package/dist/actions/send-payout.cjs.map +1 -1
  63. package/dist/actions/send-payout.d.cts +1 -1
  64. package/dist/actions/send-payout.d.mts +1 -1
  65. package/dist/actions/send-payout.mjs +1 -1
  66. package/dist/actions/send-payout.mjs.map +1 -1
  67. package/dist/catalog.cjs +1 -1
  68. package/dist/catalog.cjs.map +1 -1
  69. package/dist/catalog.d.cts +1 -1
  70. package/dist/catalog.d.mts +1 -1
  71. package/dist/catalog.mjs +1 -1
  72. package/dist/catalog.mjs.map +1 -1
  73. package/package.json +1 -1
@@ -2,7 +2,7 @@ const require_action = require("../action.cjs");
2
2
  let zod = require("zod");
3
3
  //#region src/actions/check-balance.ts
4
4
  const PoofCheckBalanceInput = zod.z.object({ crypto: zod.z.string().describe("The cryptocurrency type to check balance for (e.g., 'bitcoin', 'ethereum', 'litecoin', 'dogecoin').") }).describe("Request model for checking cryptocurrency wallet balance.");
5
- const PoofCheckBalanceOutput = zod.z.object({ balance: zod.z.string().describe("The current balance of the specified cryptocurrency wallet.").nullable().optional() }).describe("Response model containing the cryptocurrency balance.");
5
+ const PoofCheckBalanceOutput = zod.z.object({ balance: zod.z.string().describe("The current balance of the specified cryptocurrency wallet.").nullable().optional() }).passthrough().describe("Response model containing the cryptocurrency balance.");
6
6
  const poofCheckBalance = require_action.action("POOF_CHECK_BALANCE", {
7
7
  slug: "poof-check-balance",
8
8
  name: "Check Balance",
@@ -1 +1 @@
1
- {"version":3,"file":"check-balance.cjs","names":["z","action"],"sources":["../../src/actions/check-balance.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCheckBalanceInput = z.object({\n crypto: z.string().describe(\"The cryptocurrency type to check balance for (e.g., 'bitcoin', 'ethereum', 'litecoin', 'dogecoin').\"),\n}).describe(\"Request model for checking cryptocurrency wallet balance.\");\nexport const PoofCheckBalanceOutput = z.object({\n balance: z.string().describe(\"The current balance of the specified cryptocurrency wallet.\").nullable().optional(),\n}).describe(\"Response model containing the cryptocurrency balance.\");\n\nexport const poofCheckBalance = action(\"POOF_CHECK_BALANCE\", {\n slug: \"poof-check-balance\",\n name: \"Check Balance\",\n description: \"Tool to check the balance of a cryptocurrency wallet. Use when you need to retrieve the current balance for a specified blockchain wallet address.\",\n input: PoofCheckBalanceInput,\n output: PoofCheckBalanceOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wBAAwBA,IAAAA,EAAE,OAAO,EAC5C,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qGAAqG,EACnI,CAAC,CAAC,CAAC,SAAS,2DAA2D;AACvE,MAAa,yBAAyBA,IAAAA,EAAE,OAAO,EAC7C,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAClH,CAAC,CAAC,CAAC,SAAS,uDAAuD;AAEnE,MAAa,mBAAmBC,eAAAA,OAAO,sBAAsB;CAC3D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"check-balance.cjs","names":["z","action"],"sources":["../../src/actions/check-balance.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCheckBalanceInput = z.object({\n crypto: z.string().describe(\"The cryptocurrency type to check balance for (e.g., 'bitcoin', 'ethereum', 'litecoin', 'dogecoin').\"),\n}).describe(\"Request model for checking cryptocurrency wallet balance.\");\nexport const PoofCheckBalanceOutput = z.object({\n balance: z.string().describe(\"The current balance of the specified cryptocurrency wallet.\").nullable().optional(),\n}).passthrough().describe(\"Response model containing the cryptocurrency balance.\");\n\nexport const poofCheckBalance = action(\"POOF_CHECK_BALANCE\", {\n slug: \"poof-check-balance\",\n name: \"Check Balance\",\n description: \"Tool to check the balance of a cryptocurrency wallet. Use when you need to retrieve the current balance for a specified blockchain wallet address.\",\n input: PoofCheckBalanceInput,\n output: PoofCheckBalanceOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wBAAwBA,IAAAA,EAAE,OAAO,EAC5C,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qGAAqG,EACnI,CAAC,CAAC,CAAC,SAAS,2DAA2D;AACvE,MAAa,yBAAyBA,IAAAA,EAAE,OAAO,EAC7C,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAClH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uDAAuD;AAEjF,MAAa,mBAAmBC,eAAAA,OAAO,sBAAsB;CAC3D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -6,7 +6,7 @@ declare const PoofCheckBalanceInput: z.ZodObject<{
6
6
  }, z.core.$strip>;
7
7
  declare const PoofCheckBalanceOutput: z.ZodObject<{
8
8
  balance: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9
- }, z.core.$strip>;
9
+ }, z.core.$loose>;
10
10
  declare const poofCheckBalance: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  crypto: string;
12
12
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -6,7 +6,7 @@ declare const PoofCheckBalanceInput: z.ZodObject<{
6
6
  }, z.core.$strip>;
7
7
  declare const PoofCheckBalanceOutput: z.ZodObject<{
8
8
  balance: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9
- }, z.core.$strip>;
9
+ }, z.core.$loose>;
10
10
  declare const poofCheckBalance: import("@keystrokehq/action").WorkflowActionDefinition<{
11
11
  crypto: string;
12
12
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -5,7 +5,7 @@ const poofCheckBalance = action("POOF_CHECK_BALANCE", {
5
5
  name: "Check Balance",
6
6
  description: "Tool to check the balance of a cryptocurrency wallet. Use when you need to retrieve the current balance for a specified blockchain wallet address.",
7
7
  input: z.object({ crypto: z.string().describe("The cryptocurrency type to check balance for (e.g., 'bitcoin', 'ethereum', 'litecoin', 'dogecoin').") }).describe("Request model for checking cryptocurrency wallet balance."),
8
- output: z.object({ balance: z.string().describe("The current balance of the specified cryptocurrency wallet.").nullable().optional() }).describe("Response model containing the cryptocurrency balance.")
8
+ output: z.object({ balance: z.string().describe("The current balance of the specified cryptocurrency wallet.").nullable().optional() }).passthrough().describe("Response model containing the cryptocurrency balance.")
9
9
  });
10
10
  //#endregion
11
11
  export { poofCheckBalance };
@@ -1 +1 @@
1
- {"version":3,"file":"check-balance.mjs","names":[],"sources":["../../src/actions/check-balance.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCheckBalanceInput = z.object({\n crypto: z.string().describe(\"The cryptocurrency type to check balance for (e.g., 'bitcoin', 'ethereum', 'litecoin', 'dogecoin').\"),\n}).describe(\"Request model for checking cryptocurrency wallet balance.\");\nexport const PoofCheckBalanceOutput = z.object({\n balance: z.string().describe(\"The current balance of the specified cryptocurrency wallet.\").nullable().optional(),\n}).describe(\"Response model containing the cryptocurrency balance.\");\n\nexport const poofCheckBalance = action(\"POOF_CHECK_BALANCE\", {\n slug: \"poof-check-balance\",\n name: \"Check Balance\",\n description: \"Tool to check the balance of a cryptocurrency wallet. Use when you need to retrieve the current balance for a specified blockchain wallet address.\",\n input: PoofCheckBalanceInput,\n output: PoofCheckBalanceOutput,\n});\n"],"mappings":";;AAWA,MAAa,mBAAmB,OAAO,sBAAsB;CAC3D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAXmC,EAAE,OAAO,EAC5C,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,qGAAqG,EACnI,CAAC,CAAC,CAAC,SAAS,2DASH;CACP,QAToC,EAAE,OAAO,EAC7C,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAClH,CAAC,CAAC,CAAC,SAAS,uDAOF;AACV,CAAC"}
1
+ {"version":3,"file":"check-balance.mjs","names":[],"sources":["../../src/actions/check-balance.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCheckBalanceInput = z.object({\n crypto: z.string().describe(\"The cryptocurrency type to check balance for (e.g., 'bitcoin', 'ethereum', 'litecoin', 'dogecoin').\"),\n}).describe(\"Request model for checking cryptocurrency wallet balance.\");\nexport const PoofCheckBalanceOutput = z.object({\n balance: z.string().describe(\"The current balance of the specified cryptocurrency wallet.\").nullable().optional(),\n}).passthrough().describe(\"Response model containing the cryptocurrency balance.\");\n\nexport const poofCheckBalance = action(\"POOF_CHECK_BALANCE\", {\n slug: \"poof-check-balance\",\n name: \"Check Balance\",\n description: \"Tool to check the balance of a cryptocurrency wallet. Use when you need to retrieve the current balance for a specified blockchain wallet address.\",\n input: PoofCheckBalanceInput,\n output: PoofCheckBalanceOutput,\n});\n"],"mappings":";;AAWA,MAAa,mBAAmB,OAAO,sBAAsB;CAC3D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAXmC,EAAE,OAAO,EAC5C,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,qGAAqG,EACnI,CAAC,CAAC,CAAC,SAAS,2DASH;CACP,QAToC,EAAE,OAAO,EAC7C,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAClH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uDAOhB;AACV,CAAC"}
@@ -17,7 +17,7 @@ const PoofCreateCheckoutInput = zod.z.object({
17
17
  product_quantity: zod.z.string().describe("Quantity of products").optional(),
18
18
  instant_payment_notification: zod.z.string().describe("Webhook URL for payment notifications").optional()
19
19
  }).describe("Request schema for creating a Poof checkout session.");
20
- const PoofCreateCheckoutOutput = zod.z.object({ checkout_url: zod.z.string().describe("URL to the checkout session where customer completes payment").nullable() }).describe("Response schema returned after creating a checkout session.");
20
+ const PoofCreateCheckoutOutput = zod.z.object({ checkout_url: zod.z.string().describe("URL to the checkout session where customer completes payment").nullable() }).passthrough().describe("Response schema returned after creating a checkout session.");
21
21
  const poofCreateCheckout = require_action.action("POOF_CREATE_CHECKOUT", {
22
22
  slug: "poof-create-checkout",
23
23
  name: "Create Checkout Session",
@@ -1 +1 @@
1
- {"version":3,"file":"create-checkout.cjs","names":["z","action"],"sources":["../../src/actions/create-checkout.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreateCheckoutInput = z.object({\n amount: z.string().describe(\"Payment amount to be charged\"),\n fields: z.array(z.string()).describe(\"Form fields to collect from customer (e.g., Email, Name)\").optional(),\n \"default\": z.object({\n name: z.string().describe(\"Pre-filled customer name\").optional(),\n email: z.string().describe(\"Pre-filled customer email address\").optional(),\n}).describe(\"Pre-filled customer data for checkout form.\").optional(),\n metadata: z.record(z.string(), z.unknown()).describe(\"Custom metadata (e.g., user information)\").optional(),\n redirect: z.string().describe(\"Alternative redirect destination\").optional(),\n username: z.string().describe(\"Merchant/seller identifier for the checkout\"),\n product_id: z.string().describe(\"Associated product identifier\").optional(),\n success_url: z.string().describe(\"Redirect URL after successful payment\").optional(),\n disable_payments: z.array(z.string()).describe(\"Payment methods to disable (e.g., paypal, bitcoin)\").optional(),\n product_quantity: z.string().describe(\"Quantity of products\").optional(),\n instant_payment_notification: z.string().describe(\"Webhook URL for payment notifications\").optional(),\n}).describe(\"Request schema for creating a Poof checkout session.\");\nexport const PoofCreateCheckoutOutput = z.object({\n checkout_url: z.string().describe(\"URL to the checkout session where customer completes payment\").nullable(),\n}).describe(\"Response schema returned after creating a checkout session.\");\n\nexport const poofCreateCheckout = action(\"POOF_CREATE_CHECKOUT\", {\n slug: \"poof-create-checkout\",\n name: \"Create Checkout Session\",\n description: \"Tool to create a checkout session for fiat payments. Use when you need to generate a payment link for customers to complete their purchase through the Poof payment infrastructure.\",\n input: PoofCreateCheckoutInput,\n output: PoofCreateCheckoutOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0BAA0BA,IAAAA,EAAE,OAAO;CAC9C,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B;CAC1D,QAAQA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;CAC1G,WAAWA,IAAAA,EAAE,OAAO;EACpB,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;EAC/D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;CAC3E,CAAC,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS;CAClE,UAAUA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;CAC1G,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CAC3E,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C;CAC3E,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CAC1E,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CACnF,kBAAkBA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CAC9G,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CACvE,8BAA8BA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;AACtG,CAAC,CAAC,CAAC,SAAS,sDAAsD;AAClE,MAAa,2BAA2BA,IAAAA,EAAE,OAAO,EAC/C,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,EAC7G,CAAC,CAAC,CAAC,SAAS,6DAA6D;AAEzE,MAAa,qBAAqBC,eAAAA,OAAO,wBAAwB;CAC/D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"create-checkout.cjs","names":["z","action"],"sources":["../../src/actions/create-checkout.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreateCheckoutInput = z.object({\n amount: z.string().describe(\"Payment amount to be charged\"),\n fields: z.array(z.string()).describe(\"Form fields to collect from customer (e.g., Email, Name)\").optional(),\n \"default\": z.object({\n name: z.string().describe(\"Pre-filled customer name\").optional(),\n email: z.string().describe(\"Pre-filled customer email address\").optional(),\n}).describe(\"Pre-filled customer data for checkout form.\").optional(),\n metadata: z.record(z.string(), z.unknown()).describe(\"Custom metadata (e.g., user information)\").optional(),\n redirect: z.string().describe(\"Alternative redirect destination\").optional(),\n username: z.string().describe(\"Merchant/seller identifier for the checkout\"),\n product_id: z.string().describe(\"Associated product identifier\").optional(),\n success_url: z.string().describe(\"Redirect URL after successful payment\").optional(),\n disable_payments: z.array(z.string()).describe(\"Payment methods to disable (e.g., paypal, bitcoin)\").optional(),\n product_quantity: z.string().describe(\"Quantity of products\").optional(),\n instant_payment_notification: z.string().describe(\"Webhook URL for payment notifications\").optional(),\n}).describe(\"Request schema for creating a Poof checkout session.\");\nexport const PoofCreateCheckoutOutput = z.object({\n checkout_url: z.string().describe(\"URL to the checkout session where customer completes payment\").nullable(),\n}).passthrough().describe(\"Response schema returned after creating a checkout session.\");\n\nexport const poofCreateCheckout = action(\"POOF_CREATE_CHECKOUT\", {\n slug: \"poof-create-checkout\",\n name: \"Create Checkout Session\",\n description: \"Tool to create a checkout session for fiat payments. Use when you need to generate a payment link for customers to complete their purchase through the Poof payment infrastructure.\",\n input: PoofCreateCheckoutInput,\n output: PoofCreateCheckoutOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0BAA0BA,IAAAA,EAAE,OAAO;CAC9C,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B;CAC1D,QAAQA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;CAC1G,WAAWA,IAAAA,EAAE,OAAO;EACpB,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;EAC/D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;CAC3E,CAAC,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS;CAClE,UAAUA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;CAC1G,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CAC3E,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C;CAC3E,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CAC1E,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CACnF,kBAAkBA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CAC9G,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CACvE,8BAA8BA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;AACtG,CAAC,CAAC,CAAC,SAAS,sDAAsD;AAClE,MAAa,2BAA2BA,IAAAA,EAAE,OAAO,EAC/C,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,EAC7G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,6DAA6D;AAEvF,MAAa,qBAAqBC,eAAAA,OAAO,wBAAwB;CAC/D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -19,7 +19,7 @@ declare const PoofCreateCheckoutInput: z.ZodObject<{
19
19
  }, z.core.$strip>;
20
20
  declare const PoofCreateCheckoutOutput: z.ZodObject<{
21
21
  checkout_url: z.ZodNullable<z.ZodString>;
22
- }, z.core.$strip>;
22
+ }, z.core.$loose>;
23
23
  declare const poofCreateCheckout: import("@keystrokehq/action").WorkflowActionDefinition<{
24
24
  amount: string;
25
25
  username: string;
@@ -19,7 +19,7 @@ declare const PoofCreateCheckoutInput: z.ZodObject<{
19
19
  }, z.core.$strip>;
20
20
  declare const PoofCreateCheckoutOutput: z.ZodObject<{
21
21
  checkout_url: z.ZodNullable<z.ZodString>;
22
- }, z.core.$strip>;
22
+ }, z.core.$loose>;
23
23
  declare const poofCreateCheckout: import("@keystrokehq/action").WorkflowActionDefinition<{
24
24
  amount: string;
25
25
  username: string;
@@ -20,7 +20,7 @@ const poofCreateCheckout = action("POOF_CREATE_CHECKOUT", {
20
20
  product_quantity: z.string().describe("Quantity of products").optional(),
21
21
  instant_payment_notification: z.string().describe("Webhook URL for payment notifications").optional()
22
22
  }).describe("Request schema for creating a Poof checkout session."),
23
- output: z.object({ checkout_url: z.string().describe("URL to the checkout session where customer completes payment").nullable() }).describe("Response schema returned after creating a checkout session.")
23
+ output: z.object({ checkout_url: z.string().describe("URL to the checkout session where customer completes payment").nullable() }).passthrough().describe("Response schema returned after creating a checkout session.")
24
24
  });
25
25
  //#endregion
26
26
  export { poofCreateCheckout };
@@ -1 +1 @@
1
- {"version":3,"file":"create-checkout.mjs","names":[],"sources":["../../src/actions/create-checkout.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreateCheckoutInput = z.object({\n amount: z.string().describe(\"Payment amount to be charged\"),\n fields: z.array(z.string()).describe(\"Form fields to collect from customer (e.g., Email, Name)\").optional(),\n \"default\": z.object({\n name: z.string().describe(\"Pre-filled customer name\").optional(),\n email: z.string().describe(\"Pre-filled customer email address\").optional(),\n}).describe(\"Pre-filled customer data for checkout form.\").optional(),\n metadata: z.record(z.string(), z.unknown()).describe(\"Custom metadata (e.g., user information)\").optional(),\n redirect: z.string().describe(\"Alternative redirect destination\").optional(),\n username: z.string().describe(\"Merchant/seller identifier for the checkout\"),\n product_id: z.string().describe(\"Associated product identifier\").optional(),\n success_url: z.string().describe(\"Redirect URL after successful payment\").optional(),\n disable_payments: z.array(z.string()).describe(\"Payment methods to disable (e.g., paypal, bitcoin)\").optional(),\n product_quantity: z.string().describe(\"Quantity of products\").optional(),\n instant_payment_notification: z.string().describe(\"Webhook URL for payment notifications\").optional(),\n}).describe(\"Request schema for creating a Poof checkout session.\");\nexport const PoofCreateCheckoutOutput = z.object({\n checkout_url: z.string().describe(\"URL to the checkout session where customer completes payment\").nullable(),\n}).describe(\"Response schema returned after creating a checkout session.\");\n\nexport const poofCreateCheckout = action(\"POOF_CREATE_CHECKOUT\", {\n slug: \"poof-create-checkout\",\n name: \"Create Checkout Session\",\n description: \"Tool to create a checkout session for fiat payments. Use when you need to generate a payment link for customers to complete their purchase through the Poof payment infrastructure.\",\n input: PoofCreateCheckoutInput,\n output: PoofCreateCheckoutOutput,\n});\n"],"mappings":";;AAwBA,MAAa,qBAAqB,OAAO,wBAAwB;CAC/D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAxBqC,EAAE,OAAO;EAC9C,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B;EAC1D,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;EAC1G,WAAW,EAAE,OAAO;GACpB,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;GAC/D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;EAC3E,CAAC,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS;EAClE,UAAU,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;EAC1G,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;EAC3E,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C;EAC3E,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;EAC1E,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;EACnF,kBAAkB,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;EAC9G,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;EACvE,8BAA8B,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CACtG,CAAC,CAAC,CAAC,SAAS,sDASH;CACP,QATsC,EAAE,OAAO,EAC/C,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,EAC7G,CAAC,CAAC,CAAC,SAAS,6DAOF;AACV,CAAC"}
1
+ {"version":3,"file":"create-checkout.mjs","names":[],"sources":["../../src/actions/create-checkout.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreateCheckoutInput = z.object({\n amount: z.string().describe(\"Payment amount to be charged\"),\n fields: z.array(z.string()).describe(\"Form fields to collect from customer (e.g., Email, Name)\").optional(),\n \"default\": z.object({\n name: z.string().describe(\"Pre-filled customer name\").optional(),\n email: z.string().describe(\"Pre-filled customer email address\").optional(),\n}).describe(\"Pre-filled customer data for checkout form.\").optional(),\n metadata: z.record(z.string(), z.unknown()).describe(\"Custom metadata (e.g., user information)\").optional(),\n redirect: z.string().describe(\"Alternative redirect destination\").optional(),\n username: z.string().describe(\"Merchant/seller identifier for the checkout\"),\n product_id: z.string().describe(\"Associated product identifier\").optional(),\n success_url: z.string().describe(\"Redirect URL after successful payment\").optional(),\n disable_payments: z.array(z.string()).describe(\"Payment methods to disable (e.g., paypal, bitcoin)\").optional(),\n product_quantity: z.string().describe(\"Quantity of products\").optional(),\n instant_payment_notification: z.string().describe(\"Webhook URL for payment notifications\").optional(),\n}).describe(\"Request schema for creating a Poof checkout session.\");\nexport const PoofCreateCheckoutOutput = z.object({\n checkout_url: z.string().describe(\"URL to the checkout session where customer completes payment\").nullable(),\n}).passthrough().describe(\"Response schema returned after creating a checkout session.\");\n\nexport const poofCreateCheckout = action(\"POOF_CREATE_CHECKOUT\", {\n slug: \"poof-create-checkout\",\n name: \"Create Checkout Session\",\n description: \"Tool to create a checkout session for fiat payments. Use when you need to generate a payment link for customers to complete their purchase through the Poof payment infrastructure.\",\n input: PoofCreateCheckoutInput,\n output: PoofCreateCheckoutOutput,\n});\n"],"mappings":";;AAwBA,MAAa,qBAAqB,OAAO,wBAAwB;CAC/D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAxBqC,EAAE,OAAO;EAC9C,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B;EAC1D,QAAQ,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;EAC1G,WAAW,EAAE,OAAO;GACpB,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;GAC/D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;EAC3E,CAAC,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS;EAClE,UAAU,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;EAC1G,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;EAC3E,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C;EAC3E,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;EAC1E,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;EACnF,kBAAkB,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;EAC9G,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;EACvE,8BAA8B,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CACtG,CAAC,CAAC,CAAC,SAAS,sDASH;CACP,QATsC,EAAE,OAAO,EAC/C,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,EAC7G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,6DAOhB;AACV,CAAC"}
@@ -16,7 +16,7 @@ const PoofCreateDepositAddressOutput = zod.z.object({
16
16
  metadata: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Custom metadata attached to the charge").nullable().optional(),
17
17
  charge_id: zod.z.string().describe("Unique identifier for the created charge").nullable().optional(),
18
18
  created_at: zod.z.string().describe("Timestamp when the charge was created").nullable().optional()
19
- }).describe("Response model returned after creating a deposit address.");
19
+ }).passthrough().describe("Response model returned after creating a deposit address.");
20
20
  const poofCreateDepositAddress = require_action.action("POOF_CREATE_DEPOSIT_ADDRESS", {
21
21
  slug: "poof-create-deposit-address",
22
22
  name: "Create Deposit Address",
@@ -1 +1 @@
1
- {"version":3,"file":"create-deposit-address.cjs","names":["z","action"],"sources":["../../src/actions/create-deposit-address.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreateDepositAddressInput = z.object({\n amount: z.string().describe(\"The deposit amount in the specified currency (e.g., '15', '100.50')\"),\n crypto: z.string().describe(\"The cryptocurrency type to receive. Supported values include: 'ethereum', 'bitcoin', 'polygon', 'solana', 'bnb'\"),\n currency: z.string().describe(\"The base currency for the amount (e.g., 'USD', 'EUR', 'CNY')\"),\n metadata: z.record(z.string(), z.unknown()).describe(\"Optional metadata dictionary for additional contextual data to attach to this charge\").optional(),\n}).describe(\"Request model for creating a deposit address for receiving cryptocurrency payments.\");\nexport const PoofCreateDepositAddressOutput = z.object({\n amount: z.string().describe(\"The deposit amount in the specified currency\").nullable().optional(),\n crypto: z.string().describe(\"The cryptocurrency type for the deposit\").nullable().optional(),\n status: z.string().describe(\"Status of the charge (e.g., 'pending', 'confirmed')\").nullable().optional(),\n address: z.string().describe(\"The generated blockchain address for receiving cryptocurrency deposits\").nullable(),\n currency: z.string().describe(\"The base currency for the amount\").nullable().optional(),\n metadata: z.record(z.string(), z.unknown()).describe(\"Custom metadata attached to the charge\").nullable().optional(),\n charge_id: z.string().describe(\"Unique identifier for the created charge\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the charge was created\").nullable().optional(),\n}).describe(\"Response model returned after creating a deposit address.\");\n\nexport const poofCreateDepositAddress = action(\"POOF_CREATE_DEPOSIT_ADDRESS\", {\n slug: \"poof-create-deposit-address\",\n name: \"Create Deposit Address\",\n description: \"Tool to create a deposit address for receiving cryptocurrency payments. Generates a unique blockchain address to accept incoming crypto deposits. Use when you need to create a payment address for a customer to send cryptocurrency to.\",\n input: PoofCreateDepositAddressInput,\n output: PoofCreateDepositAddressOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAAgCA,IAAAA,EAAE,OAAO;CACpD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qEAAqE;CACjG,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iHAAiH;CAC7I,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D;CAC5F,UAAUA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,sFAAsF,CAAC,CAAC,SAAS;AACxJ,CAAC,CAAC,CAAC,SAAS,qFAAqF;AACjG,MAAa,iCAAiCA,IAAAA,EAAE,OAAO;CACrD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3F,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wEAAwE,CAAC,CAAC,SAAS;CAChH,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,UAAUA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/F,CAAC,CAAC,CAAC,SAAS,2DAA2D;AAEvE,MAAa,2BAA2BC,eAAAA,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"create-deposit-address.cjs","names":["z","action"],"sources":["../../src/actions/create-deposit-address.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreateDepositAddressInput = z.object({\n amount: z.string().describe(\"The deposit amount in the specified currency (e.g., '15', '100.50')\"),\n crypto: z.string().describe(\"The cryptocurrency type to receive. Supported values include: 'ethereum', 'bitcoin', 'polygon', 'solana', 'bnb'\"),\n currency: z.string().describe(\"The base currency for the amount (e.g., 'USD', 'EUR', 'CNY')\"),\n metadata: z.record(z.string(), z.unknown()).describe(\"Optional metadata dictionary for additional contextual data to attach to this charge\").optional(),\n}).describe(\"Request model for creating a deposit address for receiving cryptocurrency payments.\");\nexport const PoofCreateDepositAddressOutput = z.object({\n amount: z.string().describe(\"The deposit amount in the specified currency\").nullable().optional(),\n crypto: z.string().describe(\"The cryptocurrency type for the deposit\").nullable().optional(),\n status: z.string().describe(\"Status of the charge (e.g., 'pending', 'confirmed')\").nullable().optional(),\n address: z.string().describe(\"The generated blockchain address for receiving cryptocurrency deposits\").nullable(),\n currency: z.string().describe(\"The base currency for the amount\").nullable().optional(),\n metadata: z.record(z.string(), z.unknown()).describe(\"Custom metadata attached to the charge\").nullable().optional(),\n charge_id: z.string().describe(\"Unique identifier for the created charge\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the charge was created\").nullable().optional(),\n}).passthrough().describe(\"Response model returned after creating a deposit address.\");\n\nexport const poofCreateDepositAddress = action(\"POOF_CREATE_DEPOSIT_ADDRESS\", {\n slug: \"poof-create-deposit-address\",\n name: \"Create Deposit Address\",\n description: \"Tool to create a deposit address for receiving cryptocurrency payments. Generates a unique blockchain address to accept incoming crypto deposits. Use when you need to create a payment address for a customer to send cryptocurrency to.\",\n input: PoofCreateDepositAddressInput,\n output: PoofCreateDepositAddressOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAAgCA,IAAAA,EAAE,OAAO;CACpD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qEAAqE;CACjG,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iHAAiH;CAC7I,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D;CAC5F,UAAUA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,sFAAsF,CAAC,CAAC,SAAS;AACxJ,CAAC,CAAC,CAAC,SAAS,qFAAqF;AACjG,MAAa,iCAAiCA,IAAAA,EAAE,OAAO;CACrD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3F,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wEAAwE,CAAC,CAAC,SAAS;CAChH,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,UAAUA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2DAA2D;AAErF,MAAa,2BAA2BC,eAAAA,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -16,7 +16,7 @@ declare const PoofCreateDepositAddressOutput: z.ZodObject<{
16
16
  metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
17
17
  charge_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18
18
  created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19
- }, z.core.$strip>;
19
+ }, z.core.$loose>;
20
20
  declare const poofCreateDepositAddress: import("@keystrokehq/action").WorkflowActionDefinition<{
21
21
  amount: string;
22
22
  crypto: string;
@@ -16,7 +16,7 @@ declare const PoofCreateDepositAddressOutput: z.ZodObject<{
16
16
  metadata: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
17
17
  charge_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18
18
  created_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19
- }, z.core.$strip>;
19
+ }, z.core.$loose>;
20
20
  declare const poofCreateDepositAddress: import("@keystrokehq/action").WorkflowActionDefinition<{
21
21
  amount: string;
22
22
  crypto: string;
@@ -19,7 +19,7 @@ const poofCreateDepositAddress = action("POOF_CREATE_DEPOSIT_ADDRESS", {
19
19
  metadata: z.record(z.string(), z.unknown()).describe("Custom metadata attached to the charge").nullable().optional(),
20
20
  charge_id: z.string().describe("Unique identifier for the created charge").nullable().optional(),
21
21
  created_at: z.string().describe("Timestamp when the charge was created").nullable().optional()
22
- }).describe("Response model returned after creating a deposit address.")
22
+ }).passthrough().describe("Response model returned after creating a deposit address.")
23
23
  });
24
24
  //#endregion
25
25
  export { poofCreateDepositAddress };
@@ -1 +1 @@
1
- {"version":3,"file":"create-deposit-address.mjs","names":[],"sources":["../../src/actions/create-deposit-address.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreateDepositAddressInput = z.object({\n amount: z.string().describe(\"The deposit amount in the specified currency (e.g., '15', '100.50')\"),\n crypto: z.string().describe(\"The cryptocurrency type to receive. Supported values include: 'ethereum', 'bitcoin', 'polygon', 'solana', 'bnb'\"),\n currency: z.string().describe(\"The base currency for the amount (e.g., 'USD', 'EUR', 'CNY')\"),\n metadata: z.record(z.string(), z.unknown()).describe(\"Optional metadata dictionary for additional contextual data to attach to this charge\").optional(),\n}).describe(\"Request model for creating a deposit address for receiving cryptocurrency payments.\");\nexport const PoofCreateDepositAddressOutput = z.object({\n amount: z.string().describe(\"The deposit amount in the specified currency\").nullable().optional(),\n crypto: z.string().describe(\"The cryptocurrency type for the deposit\").nullable().optional(),\n status: z.string().describe(\"Status of the charge (e.g., 'pending', 'confirmed')\").nullable().optional(),\n address: z.string().describe(\"The generated blockchain address for receiving cryptocurrency deposits\").nullable(),\n currency: z.string().describe(\"The base currency for the amount\").nullable().optional(),\n metadata: z.record(z.string(), z.unknown()).describe(\"Custom metadata attached to the charge\").nullable().optional(),\n charge_id: z.string().describe(\"Unique identifier for the created charge\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the charge was created\").nullable().optional(),\n}).describe(\"Response model returned after creating a deposit address.\");\n\nexport const poofCreateDepositAddress = action(\"POOF_CREATE_DEPOSIT_ADDRESS\", {\n slug: \"poof-create-deposit-address\",\n name: \"Create Deposit Address\",\n description: \"Tool to create a deposit address for receiving cryptocurrency payments. Generates a unique blockchain address to accept incoming crypto deposits. Use when you need to create a payment address for a customer to send cryptocurrency to.\",\n input: PoofCreateDepositAddressInput,\n output: PoofCreateDepositAddressOutput,\n});\n"],"mappings":";;AAqBA,MAAa,2BAA2B,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OArB2C,EAAE,OAAO;EACpD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,qEAAqE;EACjG,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,iHAAiH;EAC7I,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D;EAC5F,UAAU,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,sFAAsF,CAAC,CAAC,SAAS;CACxJ,CAAC,CAAC,CAAC,SAAS,qFAgBH;CACP,QAhB4C,EAAE,OAAO;EACrD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChG,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC3F,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvG,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,wEAAwE,CAAC,CAAC,SAAS;EAChH,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACtF,UAAU,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACnH,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC/F,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,CAAC,CAAC,CAAC,SAAS,2DAOF;AACV,CAAC"}
1
+ {"version":3,"file":"create-deposit-address.mjs","names":[],"sources":["../../src/actions/create-deposit-address.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreateDepositAddressInput = z.object({\n amount: z.string().describe(\"The deposit amount in the specified currency (e.g., '15', '100.50')\"),\n crypto: z.string().describe(\"The cryptocurrency type to receive. Supported values include: 'ethereum', 'bitcoin', 'polygon', 'solana', 'bnb'\"),\n currency: z.string().describe(\"The base currency for the amount (e.g., 'USD', 'EUR', 'CNY')\"),\n metadata: z.record(z.string(), z.unknown()).describe(\"Optional metadata dictionary for additional contextual data to attach to this charge\").optional(),\n}).describe(\"Request model for creating a deposit address for receiving cryptocurrency payments.\");\nexport const PoofCreateDepositAddressOutput = z.object({\n amount: z.string().describe(\"The deposit amount in the specified currency\").nullable().optional(),\n crypto: z.string().describe(\"The cryptocurrency type for the deposit\").nullable().optional(),\n status: z.string().describe(\"Status of the charge (e.g., 'pending', 'confirmed')\").nullable().optional(),\n address: z.string().describe(\"The generated blockchain address for receiving cryptocurrency deposits\").nullable(),\n currency: z.string().describe(\"The base currency for the amount\").nullable().optional(),\n metadata: z.record(z.string(), z.unknown()).describe(\"Custom metadata attached to the charge\").nullable().optional(),\n charge_id: z.string().describe(\"Unique identifier for the created charge\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the charge was created\").nullable().optional(),\n}).passthrough().describe(\"Response model returned after creating a deposit address.\");\n\nexport const poofCreateDepositAddress = action(\"POOF_CREATE_DEPOSIT_ADDRESS\", {\n slug: \"poof-create-deposit-address\",\n name: \"Create Deposit Address\",\n description: \"Tool to create a deposit address for receiving cryptocurrency payments. Generates a unique blockchain address to accept incoming crypto deposits. Use when you need to create a payment address for a customer to send cryptocurrency to.\",\n input: PoofCreateDepositAddressInput,\n output: PoofCreateDepositAddressOutput,\n});\n"],"mappings":";;AAqBA,MAAa,2BAA2B,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OArB2C,EAAE,OAAO;EACpD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,qEAAqE;EACjG,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,iHAAiH;EAC7I,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D;EAC5F,UAAU,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,sFAAsF,CAAC,CAAC,SAAS;CACxJ,CAAC,CAAC,CAAC,SAAS,qFAgBH;CACP,QAhB4C,EAAE,OAAO;EACrD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChG,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC3F,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvG,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,wEAAwE,CAAC,CAAC,SAAS;EAChH,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACtF,UAAU,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACnH,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC/F,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2DAOhB;AACV,CAAC"}
@@ -13,7 +13,7 @@ const PoofCreateFiatChargeOutput = zod.z.object({
13
13
  message: zod.z.string().describe("Additional message or information about the charge creation.").nullable().optional(),
14
14
  charge_id: zod.z.string().describe("Unique identifier for the created charge.").nullable().optional(),
15
15
  payment_link: zod.z.string().describe("URL for the payment page where the customer can complete the transaction.").nullable().optional()
16
- }).describe("Response model returned after creating a fiat charge.");
16
+ }).passthrough().describe("Response model returned after creating a fiat charge.");
17
17
  const poofCreateFiatCharge = require_action.action("POOF_CREATE_FIAT_CHARGE", {
18
18
  slug: "poof-create-fiat-charge",
19
19
  name: "Create Fiat Charge",
@@ -1 +1 @@
1
- {"version":3,"file":"create-fiat-charge.cjs","names":["z","action"],"sources":["../../src/actions/create-fiat-charge.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreateFiatChargeInput = z.object({\n amount: z.string().describe(\"The charge amount as a string (e.g., '15' for $15.00). Must be a valid numeric string.\"),\n payment: z.string().describe(\"Payment gateway to use. Must be lowercase (e.g., 'paypal', 'stripe', 'square').\"),\n currency: z.string().describe(\"Currency code for the charge. Must be lowercase (e.g., 'usd', 'eur', 'gbp').\"),\n success_url: z.string().describe(\"URL to redirect the user to after successful payment completion.\"),\n redirect_url: z.string().describe(\"URL to redirect the user to after canceling or closing the payment page.\"),\n}).describe(\"Request model for creating a fiat currency charge in Poof.\");\nexport const PoofCreateFiatChargeOutput = z.object({\n status: z.string().describe(\"Status of the charge creation request.\").nullable().optional(),\n message: z.string().describe(\"Additional message or information about the charge creation.\").nullable().optional(),\n charge_id: z.string().describe(\"Unique identifier for the created charge.\").nullable().optional(),\n payment_link: z.string().describe(\"URL for the payment page where the customer can complete the transaction.\").nullable().optional(),\n}).describe(\"Response model returned after creating a fiat charge.\");\n\nexport const poofCreateFiatCharge = action(\"POOF_CREATE_FIAT_CHARGE\", {\n slug: \"poof-create-fiat-charge\",\n name: \"Create Fiat Charge\",\n description: \"Tool to create a fiat currency charge through Poof's payment gateway integration. Use when initiating a one-time fiat payment collection via PayPal, Stripe, Square, or other supported gateways.\",\n input: PoofCreateFiatChargeInput,\n output: PoofCreateFiatChargeOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA4BA,IAAAA,EAAE,OAAO;CAChD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wFAAwF;CACpH,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF;CAC9G,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8EAA8E;CAC5G,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kEAAkE;CACnG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0EAA0E;AAC9G,CAAC,CAAC,CAAC,SAAS,4DAA4D;AACxE,MAAa,6BAA6BA,IAAAA,EAAE,OAAO;CACjD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1F,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjH,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2EAA2E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACrI,CAAC,CAAC,CAAC,SAAS,uDAAuD;AAEnE,MAAa,uBAAuBC,eAAAA,OAAO,2BAA2B;CACpE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"create-fiat-charge.cjs","names":["z","action"],"sources":["../../src/actions/create-fiat-charge.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreateFiatChargeInput = z.object({\n amount: z.string().describe(\"The charge amount as a string (e.g., '15' for $15.00). Must be a valid numeric string.\"),\n payment: z.string().describe(\"Payment gateway to use. Must be lowercase (e.g., 'paypal', 'stripe', 'square').\"),\n currency: z.string().describe(\"Currency code for the charge. Must be lowercase (e.g., 'usd', 'eur', 'gbp').\"),\n success_url: z.string().describe(\"URL to redirect the user to after successful payment completion.\"),\n redirect_url: z.string().describe(\"URL to redirect the user to after canceling or closing the payment page.\"),\n}).describe(\"Request model for creating a fiat currency charge in Poof.\");\nexport const PoofCreateFiatChargeOutput = z.object({\n status: z.string().describe(\"Status of the charge creation request.\").nullable().optional(),\n message: z.string().describe(\"Additional message or information about the charge creation.\").nullable().optional(),\n charge_id: z.string().describe(\"Unique identifier for the created charge.\").nullable().optional(),\n payment_link: z.string().describe(\"URL for the payment page where the customer can complete the transaction.\").nullable().optional(),\n}).passthrough().describe(\"Response model returned after creating a fiat charge.\");\n\nexport const poofCreateFiatCharge = action(\"POOF_CREATE_FIAT_CHARGE\", {\n slug: \"poof-create-fiat-charge\",\n name: \"Create Fiat Charge\",\n description: \"Tool to create a fiat currency charge through Poof's payment gateway integration. Use when initiating a one-time fiat payment collection via PayPal, Stripe, Square, or other supported gateways.\",\n input: PoofCreateFiatChargeInput,\n output: PoofCreateFiatChargeOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA4BA,IAAAA,EAAE,OAAO;CAChD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wFAAwF;CACpH,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF;CAC9G,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8EAA8E;CAC5G,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kEAAkE;CACnG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0EAA0E;AAC9G,CAAC,CAAC,CAAC,SAAS,4DAA4D;AACxE,MAAa,6BAA6BA,IAAAA,EAAE,OAAO;CACjD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1F,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjH,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2EAA2E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACrI,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uDAAuD;AAEjF,MAAa,uBAAuBC,eAAAA,OAAO,2BAA2B;CACpE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -13,7 +13,7 @@ declare const PoofCreateFiatChargeOutput: z.ZodObject<{
13
13
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14
14
  charge_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
15
  payment_link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16
- }, z.core.$strip>;
16
+ }, z.core.$loose>;
17
17
  declare const poofCreateFiatCharge: import("@keystrokehq/action").WorkflowActionDefinition<{
18
18
  amount: string;
19
19
  payment: string;
@@ -13,7 +13,7 @@ declare const PoofCreateFiatChargeOutput: z.ZodObject<{
13
13
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14
14
  charge_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
15
  payment_link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16
- }, z.core.$strip>;
16
+ }, z.core.$loose>;
17
17
  declare const poofCreateFiatCharge: import("@keystrokehq/action").WorkflowActionDefinition<{
18
18
  amount: string;
19
19
  payment: string;
@@ -16,7 +16,7 @@ const poofCreateFiatCharge = action("POOF_CREATE_FIAT_CHARGE", {
16
16
  message: z.string().describe("Additional message or information about the charge creation.").nullable().optional(),
17
17
  charge_id: z.string().describe("Unique identifier for the created charge.").nullable().optional(),
18
18
  payment_link: z.string().describe("URL for the payment page where the customer can complete the transaction.").nullable().optional()
19
- }).describe("Response model returned after creating a fiat charge.")
19
+ }).passthrough().describe("Response model returned after creating a fiat charge.")
20
20
  });
21
21
  //#endregion
22
22
  export { poofCreateFiatCharge };
@@ -1 +1 @@
1
- {"version":3,"file":"create-fiat-charge.mjs","names":[],"sources":["../../src/actions/create-fiat-charge.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreateFiatChargeInput = z.object({\n amount: z.string().describe(\"The charge amount as a string (e.g., '15' for $15.00). Must be a valid numeric string.\"),\n payment: z.string().describe(\"Payment gateway to use. Must be lowercase (e.g., 'paypal', 'stripe', 'square').\"),\n currency: z.string().describe(\"Currency code for the charge. Must be lowercase (e.g., 'usd', 'eur', 'gbp').\"),\n success_url: z.string().describe(\"URL to redirect the user to after successful payment completion.\"),\n redirect_url: z.string().describe(\"URL to redirect the user to after canceling or closing the payment page.\"),\n}).describe(\"Request model for creating a fiat currency charge in Poof.\");\nexport const PoofCreateFiatChargeOutput = z.object({\n status: z.string().describe(\"Status of the charge creation request.\").nullable().optional(),\n message: z.string().describe(\"Additional message or information about the charge creation.\").nullable().optional(),\n charge_id: z.string().describe(\"Unique identifier for the created charge.\").nullable().optional(),\n payment_link: z.string().describe(\"URL for the payment page where the customer can complete the transaction.\").nullable().optional(),\n}).describe(\"Response model returned after creating a fiat charge.\");\n\nexport const poofCreateFiatCharge = action(\"POOF_CREATE_FIAT_CHARGE\", {\n slug: \"poof-create-fiat-charge\",\n name: \"Create Fiat Charge\",\n description: \"Tool to create a fiat currency charge through Poof's payment gateway integration. Use when initiating a one-time fiat payment collection via PayPal, Stripe, Square, or other supported gateways.\",\n input: PoofCreateFiatChargeInput,\n output: PoofCreateFiatChargeOutput,\n});\n"],"mappings":";;AAkBA,MAAa,uBAAuB,OAAO,2BAA2B;CACpE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAlBuC,EAAE,OAAO;EAChD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,wFAAwF;EACpH,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF;EAC9G,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,8EAA8E;EAC5G,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,kEAAkE;EACnG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,0EAA0E;CAC9G,CAAC,CAAC,CAAC,SAAS,4DAYH;CACP,QAZwC,EAAE,OAAO;EACjD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC1F,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACjH,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,2EAA2E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrI,CAAC,CAAC,CAAC,SAAS,uDAOF;AACV,CAAC"}
1
+ {"version":3,"file":"create-fiat-charge.mjs","names":[],"sources":["../../src/actions/create-fiat-charge.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreateFiatChargeInput = z.object({\n amount: z.string().describe(\"The charge amount as a string (e.g., '15' for $15.00). Must be a valid numeric string.\"),\n payment: z.string().describe(\"Payment gateway to use. Must be lowercase (e.g., 'paypal', 'stripe', 'square').\"),\n currency: z.string().describe(\"Currency code for the charge. Must be lowercase (e.g., 'usd', 'eur', 'gbp').\"),\n success_url: z.string().describe(\"URL to redirect the user to after successful payment completion.\"),\n redirect_url: z.string().describe(\"URL to redirect the user to after canceling or closing the payment page.\"),\n}).describe(\"Request model for creating a fiat currency charge in Poof.\");\nexport const PoofCreateFiatChargeOutput = z.object({\n status: z.string().describe(\"Status of the charge creation request.\").nullable().optional(),\n message: z.string().describe(\"Additional message or information about the charge creation.\").nullable().optional(),\n charge_id: z.string().describe(\"Unique identifier for the created charge.\").nullable().optional(),\n payment_link: z.string().describe(\"URL for the payment page where the customer can complete the transaction.\").nullable().optional(),\n}).passthrough().describe(\"Response model returned after creating a fiat charge.\");\n\nexport const poofCreateFiatCharge = action(\"POOF_CREATE_FIAT_CHARGE\", {\n slug: \"poof-create-fiat-charge\",\n name: \"Create Fiat Charge\",\n description: \"Tool to create a fiat currency charge through Poof's payment gateway integration. Use when initiating a one-time fiat payment collection via PayPal, Stripe, Square, or other supported gateways.\",\n input: PoofCreateFiatChargeInput,\n output: PoofCreateFiatChargeOutput,\n});\n"],"mappings":";;AAkBA,MAAa,uBAAuB,OAAO,2BAA2B;CACpE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAlBuC,EAAE,OAAO;EAChD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,wFAAwF;EACpH,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF;EAC9G,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,8EAA8E;EAC5G,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,kEAAkE;EACnG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,0EAA0E;CAC9G,CAAC,CAAC,CAAC,SAAS,4DAYH;CACP,QAZwC,EAAE,OAAO;EACjD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC1F,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACjH,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,2EAA2E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrI,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uDAOhB;AACV,CAAC"}
@@ -13,7 +13,7 @@ const PoofCreateFiatInvoiceOutput = zod.z.object({
13
13
  invoice_id: zod.z.string().describe("Unique identifier for the created invoice.").nullable().optional(),
14
14
  checkout_url: zod.z.string().describe("Alternative field name for the payment checkout URL. Contains the same checkout session link.").nullable().optional(),
15
15
  payment_link: zod.z.string().describe("URL to the payment checkout page where the customer can complete payment. Redirect the customer to this URL or embed it in an iframe on your website.").nullable().optional()
16
- }).describe("Response from creating a fiat currency invoice.");
16
+ }).passthrough().describe("Response from creating a fiat currency invoice.");
17
17
  const poofCreateFiatInvoice = require_action.action("POOF_CREATE_FIAT_INVOICE", {
18
18
  slug: "poof-create-fiat-invoice",
19
19
  name: "Create Fiat Invoice",
@@ -1 +1 @@
1
- {"version":3,"file":"create-fiat-invoice.cjs","names":["z","action"],"sources":["../../src/actions/create-fiat-invoice.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreateFiatInvoiceInput = z.object({\n amount: z.string().describe(\"Payment amount as a string (e.g., '15.00', '100'). Specify the amount in the currency specified in the currency field.\"),\n payment: z.string().describe(\"Payment processor to use for collecting payment. Documented options: 'paypal', 'cashapp', 'skrill', 'coinbase'. Additional payment methods available at checkout include credit cards, Apple Pay, Google Pay, Venmo, Alipay, WeChat Pay, and Klarna. Note: Some payment methods like Venmo, Cash App, and Coinbase require additional setup in the Poof dashboard.\"),\n currency: z.string().describe(\"Three-letter ISO currency code for the invoice (e.g., 'usd', 'eur', 'cny'). Specify the currency in which the payment will be collected.\"),\n success_url: z.string().describe(\"URL to redirect the customer to after successful payment completion. This is typically your application's success/confirmation page.\"),\n redirect_url: z.string().describe(\"URL to redirect the customer to after they complete or cancel the payment. This is typically your application's return URL.\"),\n}).describe(\"Request parameters for creating a fiat currency invoice.\");\nexport const PoofCreateFiatInvoiceOutput = z.object({\n status: z.string().describe(\"Status of the invoice (e.g., 'pending', 'created').\").nullable().optional(),\n invoice_id: z.string().describe(\"Unique identifier for the created invoice.\").nullable().optional(),\n checkout_url: z.string().describe(\"Alternative field name for the payment checkout URL. Contains the same checkout session link.\").nullable().optional(),\n payment_link: z.string().describe(\"URL to the payment checkout page where the customer can complete payment. Redirect the customer to this URL or embed it in an iframe on your website.\").nullable().optional(),\n}).describe(\"Response from creating a fiat currency invoice.\");\n\nexport const poofCreateFiatInvoice = action(\"POOF_CREATE_FIAT_INVOICE\", {\n slug: \"poof-create-fiat-invoice\",\n name: \"Create Fiat Invoice\",\n description: \"Create a fiat currency invoice for payment collection. Generates an invoice for collecting payments in traditional currencies via payment processors like PayPal, Stripe, Square, Cash App, etc. Returns a checkout URL for customer payment.\",\n input: PoofCreateFiatInvoiceInput,\n output: PoofCreateFiatInvoiceOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO;CACjD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wHAAwH;CACpJ,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oWAAoW;CACjY,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0IAA0I;CACxK,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sIAAsI;CACvK,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6HAA6H;AACjK,CAAC,CAAC,CAAC,SAAS,0DAA0D;AACtE,MAAa,8BAA8BA,IAAAA,EAAE,OAAO;CAClD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+FAA+F,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvJ,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uJAAuJ,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACjN,CAAC,CAAC,CAAC,SAAS,iDAAiD;AAE7D,MAAa,wBAAwBC,eAAAA,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"create-fiat-invoice.cjs","names":["z","action"],"sources":["../../src/actions/create-fiat-invoice.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreateFiatInvoiceInput = z.object({\n amount: z.string().describe(\"Payment amount as a string (e.g., '15.00', '100'). Specify the amount in the currency specified in the currency field.\"),\n payment: z.string().describe(\"Payment processor to use for collecting payment. Documented options: 'paypal', 'cashapp', 'skrill', 'coinbase'. Additional payment methods available at checkout include credit cards, Apple Pay, Google Pay, Venmo, Alipay, WeChat Pay, and Klarna. Note: Some payment methods like Venmo, Cash App, and Coinbase require additional setup in the Poof dashboard.\"),\n currency: z.string().describe(\"Three-letter ISO currency code for the invoice (e.g., 'usd', 'eur', 'cny'). Specify the currency in which the payment will be collected.\"),\n success_url: z.string().describe(\"URL to redirect the customer to after successful payment completion. This is typically your application's success/confirmation page.\"),\n redirect_url: z.string().describe(\"URL to redirect the customer to after they complete or cancel the payment. This is typically your application's return URL.\"),\n}).describe(\"Request parameters for creating a fiat currency invoice.\");\nexport const PoofCreateFiatInvoiceOutput = z.object({\n status: z.string().describe(\"Status of the invoice (e.g., 'pending', 'created').\").nullable().optional(),\n invoice_id: z.string().describe(\"Unique identifier for the created invoice.\").nullable().optional(),\n checkout_url: z.string().describe(\"Alternative field name for the payment checkout URL. Contains the same checkout session link.\").nullable().optional(),\n payment_link: z.string().describe(\"URL to the payment checkout page where the customer can complete payment. Redirect the customer to this URL or embed it in an iframe on your website.\").nullable().optional(),\n}).passthrough().describe(\"Response from creating a fiat currency invoice.\");\n\nexport const poofCreateFiatInvoice = action(\"POOF_CREATE_FIAT_INVOICE\", {\n slug: \"poof-create-fiat-invoice\",\n name: \"Create Fiat Invoice\",\n description: \"Create a fiat currency invoice for payment collection. Generates an invoice for collecting payments in traditional currencies via payment processors like PayPal, Stripe, Square, Cash App, etc. Returns a checkout URL for customer payment.\",\n input: PoofCreateFiatInvoiceInput,\n output: PoofCreateFiatInvoiceOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO;CACjD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wHAAwH;CACpJ,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oWAAoW;CACjY,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0IAA0I;CACxK,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sIAAsI;CACvK,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6HAA6H;AACjK,CAAC,CAAC,CAAC,SAAS,0DAA0D;AACtE,MAAa,8BAA8BA,IAAAA,EAAE,OAAO;CAClD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+FAA+F,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvJ,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uJAAuJ,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACjN,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,iDAAiD;AAE3E,MAAa,wBAAwBC,eAAAA,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -13,7 +13,7 @@ declare const PoofCreateFiatInvoiceOutput: z.ZodObject<{
13
13
  invoice_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14
14
  checkout_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
15
  payment_link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16
- }, z.core.$strip>;
16
+ }, z.core.$loose>;
17
17
  declare const poofCreateFiatInvoice: import("@keystrokehq/action").WorkflowActionDefinition<{
18
18
  amount: string;
19
19
  payment: string;
@@ -13,7 +13,7 @@ declare const PoofCreateFiatInvoiceOutput: z.ZodObject<{
13
13
  invoice_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14
14
  checkout_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
15
  payment_link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16
- }, z.core.$strip>;
16
+ }, z.core.$loose>;
17
17
  declare const poofCreateFiatInvoice: import("@keystrokehq/action").WorkflowActionDefinition<{
18
18
  amount: string;
19
19
  payment: string;
@@ -16,7 +16,7 @@ const poofCreateFiatInvoice = action("POOF_CREATE_FIAT_INVOICE", {
16
16
  invoice_id: z.string().describe("Unique identifier for the created invoice.").nullable().optional(),
17
17
  checkout_url: z.string().describe("Alternative field name for the payment checkout URL. Contains the same checkout session link.").nullable().optional(),
18
18
  payment_link: z.string().describe("URL to the payment checkout page where the customer can complete payment. Redirect the customer to this URL or embed it in an iframe on your website.").nullable().optional()
19
- }).describe("Response from creating a fiat currency invoice.")
19
+ }).passthrough().describe("Response from creating a fiat currency invoice.")
20
20
  });
21
21
  //#endregion
22
22
  export { poofCreateFiatInvoice };
@@ -1 +1 @@
1
- {"version":3,"file":"create-fiat-invoice.mjs","names":[],"sources":["../../src/actions/create-fiat-invoice.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreateFiatInvoiceInput = z.object({\n amount: z.string().describe(\"Payment amount as a string (e.g., '15.00', '100'). Specify the amount in the currency specified in the currency field.\"),\n payment: z.string().describe(\"Payment processor to use for collecting payment. Documented options: 'paypal', 'cashapp', 'skrill', 'coinbase'. Additional payment methods available at checkout include credit cards, Apple Pay, Google Pay, Venmo, Alipay, WeChat Pay, and Klarna. Note: Some payment methods like Venmo, Cash App, and Coinbase require additional setup in the Poof dashboard.\"),\n currency: z.string().describe(\"Three-letter ISO currency code for the invoice (e.g., 'usd', 'eur', 'cny'). Specify the currency in which the payment will be collected.\"),\n success_url: z.string().describe(\"URL to redirect the customer to after successful payment completion. This is typically your application's success/confirmation page.\"),\n redirect_url: z.string().describe(\"URL to redirect the customer to after they complete or cancel the payment. This is typically your application's return URL.\"),\n}).describe(\"Request parameters for creating a fiat currency invoice.\");\nexport const PoofCreateFiatInvoiceOutput = z.object({\n status: z.string().describe(\"Status of the invoice (e.g., 'pending', 'created').\").nullable().optional(),\n invoice_id: z.string().describe(\"Unique identifier for the created invoice.\").nullable().optional(),\n checkout_url: z.string().describe(\"Alternative field name for the payment checkout URL. Contains the same checkout session link.\").nullable().optional(),\n payment_link: z.string().describe(\"URL to the payment checkout page where the customer can complete payment. Redirect the customer to this URL or embed it in an iframe on your website.\").nullable().optional(),\n}).describe(\"Response from creating a fiat currency invoice.\");\n\nexport const poofCreateFiatInvoice = action(\"POOF_CREATE_FIAT_INVOICE\", {\n slug: \"poof-create-fiat-invoice\",\n name: \"Create Fiat Invoice\",\n description: \"Create a fiat currency invoice for payment collection. Generates an invoice for collecting payments in traditional currencies via payment processors like PayPal, Stripe, Square, Cash App, etc. Returns a checkout URL for customer payment.\",\n input: PoofCreateFiatInvoiceInput,\n output: PoofCreateFiatInvoiceOutput,\n});\n"],"mappings":";;AAkBA,MAAa,wBAAwB,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAlBwC,EAAE,OAAO;EACjD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,wHAAwH;EACpJ,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,oWAAoW;EACjY,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,0IAA0I;EACxK,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,sIAAsI;EACvK,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,6HAA6H;CACjK,CAAC,CAAC,CAAC,SAAS,0DAYH;CACP,QAZyC,EAAE,OAAO;EAClD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvG,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAClG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,+FAA+F,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvJ,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,uJAAuJ,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjN,CAAC,CAAC,CAAC,SAAS,iDAOF;AACV,CAAC"}
1
+ {"version":3,"file":"create-fiat-invoice.mjs","names":[],"sources":["../../src/actions/create-fiat-invoice.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreateFiatInvoiceInput = z.object({\n amount: z.string().describe(\"Payment amount as a string (e.g., '15.00', '100'). Specify the amount in the currency specified in the currency field.\"),\n payment: z.string().describe(\"Payment processor to use for collecting payment. Documented options: 'paypal', 'cashapp', 'skrill', 'coinbase'. Additional payment methods available at checkout include credit cards, Apple Pay, Google Pay, Venmo, Alipay, WeChat Pay, and Klarna. Note: Some payment methods like Venmo, Cash App, and Coinbase require additional setup in the Poof dashboard.\"),\n currency: z.string().describe(\"Three-letter ISO currency code for the invoice (e.g., 'usd', 'eur', 'cny'). Specify the currency in which the payment will be collected.\"),\n success_url: z.string().describe(\"URL to redirect the customer to after successful payment completion. This is typically your application's success/confirmation page.\"),\n redirect_url: z.string().describe(\"URL to redirect the customer to after they complete or cancel the payment. This is typically your application's return URL.\"),\n}).describe(\"Request parameters for creating a fiat currency invoice.\");\nexport const PoofCreateFiatInvoiceOutput = z.object({\n status: z.string().describe(\"Status of the invoice (e.g., 'pending', 'created').\").nullable().optional(),\n invoice_id: z.string().describe(\"Unique identifier for the created invoice.\").nullable().optional(),\n checkout_url: z.string().describe(\"Alternative field name for the payment checkout URL. Contains the same checkout session link.\").nullable().optional(),\n payment_link: z.string().describe(\"URL to the payment checkout page where the customer can complete payment. Redirect the customer to this URL or embed it in an iframe on your website.\").nullable().optional(),\n}).passthrough().describe(\"Response from creating a fiat currency invoice.\");\n\nexport const poofCreateFiatInvoice = action(\"POOF_CREATE_FIAT_INVOICE\", {\n slug: \"poof-create-fiat-invoice\",\n name: \"Create Fiat Invoice\",\n description: \"Create a fiat currency invoice for payment collection. Generates an invoice for collecting payments in traditional currencies via payment processors like PayPal, Stripe, Square, Cash App, etc. Returns a checkout URL for customer payment.\",\n input: PoofCreateFiatInvoiceInput,\n output: PoofCreateFiatInvoiceOutput,\n});\n"],"mappings":";;AAkBA,MAAa,wBAAwB,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAlBwC,EAAE,OAAO;EACjD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,wHAAwH;EACpJ,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,oWAAoW;EACjY,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,0IAA0I;EACxK,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,sIAAsI;EACvK,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,6HAA6H;CACjK,CAAC,CAAC,CAAC,SAAS,0DAYH;CACP,QAZyC,EAAE,OAAO;EAClD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvG,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAClG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,+FAA+F,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvJ,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,uJAAuJ,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjN,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,iDAOhB;AACV,CAAC"}
@@ -4,12 +4,12 @@ let zod = require("zod");
4
4
  const PoofCreatePaymentLinkInput = zod.z.object({
5
5
  amount: zod.z.string().describe("The payment amount as a string (e.g., '10', '15.50')"),
6
6
  crypto: zod.z.string().describe("The cryptocurrency type to accept for payment (e.g., 'ethereum', 'bitcoin', 'litecoin')"),
7
- metadata: zod.z.object({}).describe("Additional metadata associated with the payment. Can contain arbitrary key-value pairs for transaction tracking or custom data.")
7
+ metadata: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Additional metadata associated with the payment. Can contain arbitrary key-value pairs for transaction tracking or custom data.")
8
8
  }).describe("Request model for creating a payment link (invoice) for cryptocurrency payments.");
9
9
  const PoofCreatePaymentLinkOutput = zod.z.object({
10
10
  message: zod.z.string().describe("Message from the API, such as 'link your wallet on poof' if wallet setup is required").nullable().optional(),
11
11
  payment_link: zod.z.string().describe("The generated payment link URL where customers can complete their cryptocurrency payment").nullable().optional()
12
- }).describe("Response model returned after creating a payment link.");
12
+ }).passthrough().describe("Response model returned after creating a payment link.");
13
13
  const poofCreatePaymentLink = require_action.action("POOF_CREATE_PAYMENT_LINK", {
14
14
  slug: "poof-create-payment-link",
15
15
  name: "Create Payment Link",
@@ -1 +1 @@
1
- {"version":3,"file":"create-payment-link.cjs","names":["z","action"],"sources":["../../src/actions/create-payment-link.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreatePaymentLinkInput = z.object({\n amount: z.string().describe(\"The payment amount as a string (e.g., '10', '15.50')\"),\n crypto: z.string().describe(\"The cryptocurrency type to accept for payment (e.g., 'ethereum', 'bitcoin', 'litecoin')\"),\n metadata: z.object({}).describe(\"Additional metadata associated with the payment. Can contain arbitrary key-value pairs for transaction tracking or custom data.\"),\n}).describe(\"Request model for creating a payment link (invoice) for cryptocurrency payments.\");\nexport const PoofCreatePaymentLinkOutput = z.object({\n message: z.string().describe(\"Message from the API, such as 'link your wallet on poof' if wallet setup is required\").nullable().optional(),\n payment_link: z.string().describe(\"The generated payment link URL where customers can complete their cryptocurrency payment\").nullable().optional(),\n}).describe(\"Response model returned after creating a payment link.\");\n\nexport const poofCreatePaymentLink = action(\"POOF_CREATE_PAYMENT_LINK\", {\n slug: \"poof-create-payment-link\",\n name: \"Create Payment Link\",\n description: \"Tool to create a payment link (invoice) for cryptocurrency payments. Use when you need to generate a shareable payment URL for collecting crypto payments from customers.\",\n input: PoofCreatePaymentLinkInput,\n output: PoofCreatePaymentLinkOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO;CACjD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD;CAClF,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yFAAyF;CACrH,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,iIAAiI;AACnK,CAAC,CAAC,CAAC,SAAS,kFAAkF;AAC9F,MAAa,8BAA8BA,IAAAA,EAAE,OAAO;CAClD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sFAAsF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzI,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0FAA0F,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACpJ,CAAC,CAAC,CAAC,SAAS,wDAAwD;AAEpE,MAAa,wBAAwBC,eAAAA,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"create-payment-link.cjs","names":["z","action"],"sources":["../../src/actions/create-payment-link.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreatePaymentLinkInput = z.object({\n amount: z.string().describe(\"The payment amount as a string (e.g., '10', '15.50')\"),\n crypto: z.string().describe(\"The cryptocurrency type to accept for payment (e.g., 'ethereum', 'bitcoin', 'litecoin')\"),\n metadata: z.record(z.string(), z.unknown()).describe(\"Additional metadata associated with the payment. Can contain arbitrary key-value pairs for transaction tracking or custom data.\"),\n}).describe(\"Request model for creating a payment link (invoice) for cryptocurrency payments.\");\nexport const PoofCreatePaymentLinkOutput = z.object({\n message: z.string().describe(\"Message from the API, such as 'link your wallet on poof' if wallet setup is required\").nullable().optional(),\n payment_link: z.string().describe(\"The generated payment link URL where customers can complete their cryptocurrency payment\").nullable().optional(),\n}).passthrough().describe(\"Response model returned after creating a payment link.\");\n\nexport const poofCreatePaymentLink = action(\"POOF_CREATE_PAYMENT_LINK\", {\n slug: \"poof-create-payment-link\",\n name: \"Create Payment Link\",\n description: \"Tool to create a payment link (invoice) for cryptocurrency payments. Use when you need to generate a shareable payment URL for collecting crypto payments from customers.\",\n input: PoofCreatePaymentLinkInput,\n output: PoofCreatePaymentLinkOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO;CACjD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD;CAClF,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yFAAyF;CACrH,UAAUA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,iIAAiI;AACxL,CAAC,CAAC,CAAC,SAAS,kFAAkF;AAC9F,MAAa,8BAA8BA,IAAAA,EAAE,OAAO;CAClD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sFAAsF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzI,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0FAA0F,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACpJ,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wDAAwD;AAElF,MAAa,wBAAwBC,eAAAA,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -4,16 +4,16 @@ import { z } from "zod";
4
4
  declare const PoofCreatePaymentLinkInput: z.ZodObject<{
5
5
  amount: z.ZodString;
6
6
  crypto: z.ZodString;
7
- metadata: z.ZodObject<{}, z.core.$strip>;
7
+ metadata: z.ZodRecord<z.ZodString, z.ZodUnknown>;
8
8
  }, z.core.$strip>;
9
9
  declare const PoofCreatePaymentLinkOutput: z.ZodObject<{
10
10
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11
11
  payment_link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12
- }, z.core.$strip>;
12
+ }, z.core.$loose>;
13
13
  declare const poofCreatePaymentLink: import("@keystrokehq/action").WorkflowActionDefinition<{
14
14
  amount: string;
15
15
  crypto: string;
16
- metadata: Record<string, never>;
16
+ metadata: Record<string, unknown>;
17
17
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
18
18
  //#endregion
19
19
  export { poofCreatePaymentLink };
@@ -4,16 +4,16 @@ import { z } from "zod";
4
4
  declare const PoofCreatePaymentLinkInput: z.ZodObject<{
5
5
  amount: z.ZodString;
6
6
  crypto: z.ZodString;
7
- metadata: z.ZodObject<{}, z.core.$strip>;
7
+ metadata: z.ZodRecord<z.ZodString, z.ZodUnknown>;
8
8
  }, z.core.$strip>;
9
9
  declare const PoofCreatePaymentLinkOutput: z.ZodObject<{
10
10
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11
11
  payment_link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12
- }, z.core.$strip>;
12
+ }, z.core.$loose>;
13
13
  declare const poofCreatePaymentLink: import("@keystrokehq/action").WorkflowActionDefinition<{
14
14
  amount: string;
15
15
  crypto: string;
16
- metadata: Record<string, never>;
16
+ metadata: Record<string, unknown>;
17
17
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
18
18
  //#endregion
19
19
  export { poofCreatePaymentLink };
@@ -7,12 +7,12 @@ const poofCreatePaymentLink = action("POOF_CREATE_PAYMENT_LINK", {
7
7
  input: z.object({
8
8
  amount: z.string().describe("The payment amount as a string (e.g., '10', '15.50')"),
9
9
  crypto: z.string().describe("The cryptocurrency type to accept for payment (e.g., 'ethereum', 'bitcoin', 'litecoin')"),
10
- metadata: z.object({}).describe("Additional metadata associated with the payment. Can contain arbitrary key-value pairs for transaction tracking or custom data.")
10
+ metadata: z.record(z.string(), z.unknown()).describe("Additional metadata associated with the payment. Can contain arbitrary key-value pairs for transaction tracking or custom data.")
11
11
  }).describe("Request model for creating a payment link (invoice) for cryptocurrency payments."),
12
12
  output: z.object({
13
13
  message: z.string().describe("Message from the API, such as 'link your wallet on poof' if wallet setup is required").nullable().optional(),
14
14
  payment_link: z.string().describe("The generated payment link URL where customers can complete their cryptocurrency payment").nullable().optional()
15
- }).describe("Response model returned after creating a payment link.")
15
+ }).passthrough().describe("Response model returned after creating a payment link.")
16
16
  });
17
17
  //#endregion
18
18
  export { poofCreatePaymentLink };
@@ -1 +1 @@
1
- {"version":3,"file":"create-payment-link.mjs","names":[],"sources":["../../src/actions/create-payment-link.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreatePaymentLinkInput = z.object({\n amount: z.string().describe(\"The payment amount as a string (e.g., '10', '15.50')\"),\n crypto: z.string().describe(\"The cryptocurrency type to accept for payment (e.g., 'ethereum', 'bitcoin', 'litecoin')\"),\n metadata: z.object({}).describe(\"Additional metadata associated with the payment. Can contain arbitrary key-value pairs for transaction tracking or custom data.\"),\n}).describe(\"Request model for creating a payment link (invoice) for cryptocurrency payments.\");\nexport const PoofCreatePaymentLinkOutput = z.object({\n message: z.string().describe(\"Message from the API, such as 'link your wallet on poof' if wallet setup is required\").nullable().optional(),\n payment_link: z.string().describe(\"The generated payment link URL where customers can complete their cryptocurrency payment\").nullable().optional(),\n}).describe(\"Response model returned after creating a payment link.\");\n\nexport const poofCreatePaymentLink = action(\"POOF_CREATE_PAYMENT_LINK\", {\n slug: \"poof-create-payment-link\",\n name: \"Create Payment Link\",\n description: \"Tool to create a payment link (invoice) for cryptocurrency payments. Use when you need to generate a shareable payment URL for collecting crypto payments from customers.\",\n input: PoofCreatePaymentLinkInput,\n output: PoofCreatePaymentLinkOutput,\n});\n"],"mappings":";;AAcA,MAAa,wBAAwB,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAdwC,EAAE,OAAO;EACjD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD;EAClF,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,yFAAyF;EACrH,UAAU,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,iIAAiI;CACnK,CAAC,CAAC,CAAC,SAAS,kFAUH;CACP,QAVyC,EAAE,OAAO;EAClD,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,sFAAsF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACzI,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,0FAA0F,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpJ,CAAC,CAAC,CAAC,SAAS,wDAOF;AACV,CAAC"}
1
+ {"version":3,"file":"create-payment-link.mjs","names":[],"sources":["../../src/actions/create-payment-link.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreatePaymentLinkInput = z.object({\n amount: z.string().describe(\"The payment amount as a string (e.g., '10', '15.50')\"),\n crypto: z.string().describe(\"The cryptocurrency type to accept for payment (e.g., 'ethereum', 'bitcoin', 'litecoin')\"),\n metadata: z.record(z.string(), z.unknown()).describe(\"Additional metadata associated with the payment. Can contain arbitrary key-value pairs for transaction tracking or custom data.\"),\n}).describe(\"Request model for creating a payment link (invoice) for cryptocurrency payments.\");\nexport const PoofCreatePaymentLinkOutput = z.object({\n message: z.string().describe(\"Message from the API, such as 'link your wallet on poof' if wallet setup is required\").nullable().optional(),\n payment_link: z.string().describe(\"The generated payment link URL where customers can complete their cryptocurrency payment\").nullable().optional(),\n}).passthrough().describe(\"Response model returned after creating a payment link.\");\n\nexport const poofCreatePaymentLink = action(\"POOF_CREATE_PAYMENT_LINK\", {\n slug: \"poof-create-payment-link\",\n name: \"Create Payment Link\",\n description: \"Tool to create a payment link (invoice) for cryptocurrency payments. Use when you need to generate a shareable payment URL for collecting crypto payments from customers.\",\n input: PoofCreatePaymentLinkInput,\n output: PoofCreatePaymentLinkOutput,\n});\n"],"mappings":";;AAcA,MAAa,wBAAwB,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAdwC,EAAE,OAAO;EACjD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD;EAClF,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,yFAAyF;EACrH,UAAU,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,iIAAiI;CACxL,CAAC,CAAC,CAAC,SAAS,kFAUH;CACP,QAVyC,EAAE,OAAO;EAClD,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,sFAAsF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACzI,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,0FAA0F,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpJ,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wDAOhB;AACV,CAAC"}
@@ -6,7 +6,7 @@ const PoofCreateWebhookOutput = zod.z.object({
6
6
  message: zod.z.string().describe("Response message from the API").nullable().optional(),
7
7
  success: zod.z.boolean().describe("Indicates whether the webhook was created successfully").nullable().optional(),
8
8
  webhook_url: zod.z.string().describe("The webhook URL that was registered").nullable().optional()
9
- }).describe("Response model for webhook creation in Poof.");
9
+ }).passthrough().describe("Response model for webhook creation in Poof.");
10
10
  const poofCreateWebhook = require_action.action("POOF_CREATE_WEBHOOK", {
11
11
  slug: "poof-create-webhook",
12
12
  name: "Create Poof Webhook",
@@ -1 +1 @@
1
- {"version":3,"file":"create-webhook.cjs","names":["z","action"],"sources":["../../src/actions/create-webhook.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreateWebhookInput = z.object({\n url: z.string().describe(\"The HTTPS endpoint URL where Poof will send webhook notifications for payment events\"),\n}).describe(\"Request model for creating a webhook subscription in Poof.\");\nexport const PoofCreateWebhookOutput = z.object({\n message: z.string().describe(\"Response message from the API\").nullable().optional(),\n success: z.boolean().describe(\"Indicates whether the webhook was created successfully\").nullable().optional(),\n webhook_url: z.string().describe(\"The webhook URL that was registered\").nullable().optional(),\n}).describe(\"Response model for webhook creation in Poof.\");\n\nexport const poofCreateWebhook = action(\"POOF_CREATE_WEBHOOK\", {\n slug: \"poof-create-webhook\",\n name: \"Create Poof Webhook\",\n description: \"Tool to create a webhook subscription for receiving payment event notifications. Use when you need to set up real-time notifications for transaction status changes and other payment events.\",\n input: PoofCreateWebhookInput,\n output: PoofCreateWebhookOutput,\n});\n"],"mappings":";;;AAIA,MAAa,yBAAyBA,IAAAA,EAAE,OAAO,EAC7C,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sFAAsF,EACjH,CAAC,CAAC,CAAC,SAAS,4DAA4D;AACxE,MAAa,0BAA0BA,IAAAA,EAAE,OAAO;CAC9C,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5G,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9F,CAAC,CAAC,CAAC,SAAS,8CAA8C;AAE1D,MAAa,oBAAoBC,eAAAA,OAAO,uBAAuB;CAC7D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"create-webhook.cjs","names":["z","action"],"sources":["../../src/actions/create-webhook.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreateWebhookInput = z.object({\n url: z.string().describe(\"The HTTPS endpoint URL where Poof will send webhook notifications for payment events\"),\n}).describe(\"Request model for creating a webhook subscription in Poof.\");\nexport const PoofCreateWebhookOutput = z.object({\n message: z.string().describe(\"Response message from the API\").nullable().optional(),\n success: z.boolean().describe(\"Indicates whether the webhook was created successfully\").nullable().optional(),\n webhook_url: z.string().describe(\"The webhook URL that was registered\").nullable().optional(),\n}).passthrough().describe(\"Response model for webhook creation in Poof.\");\n\nexport const poofCreateWebhook = action(\"POOF_CREATE_WEBHOOK\", {\n slug: \"poof-create-webhook\",\n name: \"Create Poof Webhook\",\n description: \"Tool to create a webhook subscription for receiving payment event notifications. Use when you need to set up real-time notifications for transaction status changes and other payment events.\",\n input: PoofCreateWebhookInput,\n output: PoofCreateWebhookOutput,\n});\n"],"mappings":";;;AAIA,MAAa,yBAAyBA,IAAAA,EAAE,OAAO,EAC7C,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sFAAsF,EACjH,CAAC,CAAC,CAAC,SAAS,4DAA4D;AACxE,MAAa,0BAA0BA,IAAAA,EAAE,OAAO;CAC9C,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5G,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8CAA8C;AAExE,MAAa,oBAAoBC,eAAAA,OAAO,uBAAuB;CAC7D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -8,7 +8,7 @@ declare const PoofCreateWebhookOutput: z.ZodObject<{
8
8
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9
9
  success: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
10
10
  webhook_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11
- }, z.core.$strip>;
11
+ }, z.core.$loose>;
12
12
  declare const poofCreateWebhook: import("@keystrokehq/action").WorkflowActionDefinition<{
13
13
  url: string;
14
14
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -8,7 +8,7 @@ declare const PoofCreateWebhookOutput: z.ZodObject<{
8
8
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9
9
  success: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
10
10
  webhook_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11
- }, z.core.$strip>;
11
+ }, z.core.$loose>;
12
12
  declare const poofCreateWebhook: import("@keystrokehq/action").WorkflowActionDefinition<{
13
13
  url: string;
14
14
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -9,7 +9,7 @@ const poofCreateWebhook = action("POOF_CREATE_WEBHOOK", {
9
9
  message: z.string().describe("Response message from the API").nullable().optional(),
10
10
  success: z.boolean().describe("Indicates whether the webhook was created successfully").nullable().optional(),
11
11
  webhook_url: z.string().describe("The webhook URL that was registered").nullable().optional()
12
- }).describe("Response model for webhook creation in Poof.")
12
+ }).passthrough().describe("Response model for webhook creation in Poof.")
13
13
  });
14
14
  //#endregion
15
15
  export { poofCreateWebhook };
@@ -1 +1 @@
1
- {"version":3,"file":"create-webhook.mjs","names":[],"sources":["../../src/actions/create-webhook.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreateWebhookInput = z.object({\n url: z.string().describe(\"The HTTPS endpoint URL where Poof will send webhook notifications for payment events\"),\n}).describe(\"Request model for creating a webhook subscription in Poof.\");\nexport const PoofCreateWebhookOutput = z.object({\n message: z.string().describe(\"Response message from the API\").nullable().optional(),\n success: z.boolean().describe(\"Indicates whether the webhook was created successfully\").nullable().optional(),\n webhook_url: z.string().describe(\"The webhook URL that was registered\").nullable().optional(),\n}).describe(\"Response model for webhook creation in Poof.\");\n\nexport const poofCreateWebhook = action(\"POOF_CREATE_WEBHOOK\", {\n slug: \"poof-create-webhook\",\n name: \"Create Poof Webhook\",\n description: \"Tool to create a webhook subscription for receiving payment event notifications. Use when you need to set up real-time notifications for transaction status changes and other payment events.\",\n input: PoofCreateWebhookInput,\n output: PoofCreateWebhookOutput,\n});\n"],"mappings":";;AAaA,MAAa,oBAAoB,OAAO,uBAAuB;CAC7D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAboC,EAAE,OAAO,EAC7C,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,sFAAsF,EACjH,CAAC,CAAC,CAAC,SAAS,4DAWH;CACP,QAXqC,EAAE,OAAO;EAC9C,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAClF,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC5G,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,CAAC,CAAC,CAAC,SAAS,8CAOF;AACV,CAAC"}
1
+ {"version":3,"file":"create-webhook.mjs","names":[],"sources":["../../src/actions/create-webhook.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofCreateWebhookInput = z.object({\n url: z.string().describe(\"The HTTPS endpoint URL where Poof will send webhook notifications for payment events\"),\n}).describe(\"Request model for creating a webhook subscription in Poof.\");\nexport const PoofCreateWebhookOutput = z.object({\n message: z.string().describe(\"Response message from the API\").nullable().optional(),\n success: z.boolean().describe(\"Indicates whether the webhook was created successfully\").nullable().optional(),\n webhook_url: z.string().describe(\"The webhook URL that was registered\").nullable().optional(),\n}).passthrough().describe(\"Response model for webhook creation in Poof.\");\n\nexport const poofCreateWebhook = action(\"POOF_CREATE_WEBHOOK\", {\n slug: \"poof-create-webhook\",\n name: \"Create Poof Webhook\",\n description: \"Tool to create a webhook subscription for receiving payment event notifications. Use when you need to set up real-time notifications for transaction status changes and other payment events.\",\n input: PoofCreateWebhookInput,\n output: PoofCreateWebhookOutput,\n});\n"],"mappings":";;AAaA,MAAa,oBAAoB,OAAO,uBAAuB;CAC7D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAboC,EAAE,OAAO,EAC7C,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,sFAAsF,EACjH,CAAC,CAAC,CAAC,SAAS,4DAWH;CACP,QAXqC,EAAE,OAAO;EAC9C,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAClF,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC5G,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8CAOhB;AACV,CAAC"}
@@ -10,7 +10,7 @@ const PoofFetchGasPriceOutput = zod.z.object({
10
10
  gas_fee_in_usd: zod.z.string().describe("The gas fee amount converted to USD.").nullable().optional(),
11
11
  transaction_fee: zod.z.string().describe("The estimated transaction fee for the blockchain operation.").nullable().optional(),
12
12
  gas_fee_currency: zod.z.string().describe("The gas fee amount in the specified cryptocurrency.").nullable().optional()
13
- }).describe("Response containing gas price estimates for blockchain transactions.");
13
+ }).passthrough().describe("Response containing gas price estimates for blockchain transactions.");
14
14
  const poofFetchGasPrice = require_action.action("POOF_FETCH_GAS_PRICE", {
15
15
  slug: "poof-fetch-gas-price",
16
16
  name: "Fetch Gas Price",
@@ -1 +1 @@
1
- {"version":3,"file":"fetch-gas-price.cjs","names":["z","action"],"sources":["../../src/actions/fetch-gas-price.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofFetchGasPriceInput = z.object({\n crypto: z.string().describe(\"The cryptocurrency identifier for which to fetch gas prices (e.g., 'usdc', 'eth', 'bnb', 'matic'). Determines which blockchain network's gas prices to retrieve.\"),\n});\nexport const PoofFetchGasPriceOutput = z.object({\n message: z.string().describe(\"Error or informational message (e.g., 'currency name invalid').\").nullable().optional(),\n gas_used: z.string().describe(\"The estimated amount of gas units that would be used for the transaction.\").nullable().optional(),\n gas_fee_usdc: z.string().describe(\"The gas fee amount in USDC stablecoin.\").nullable().optional(),\n gas_price_eth: z.string().describe(\"The gas price in ETH (Ethereum).\").nullable().optional(),\n gas_fee_in_usd: z.string().describe(\"The gas fee amount converted to USD.\").nullable().optional(),\n transaction_fee: z.string().describe(\"The estimated transaction fee for the blockchain operation.\").nullable().optional(),\n gas_fee_currency: z.string().describe(\"The gas fee amount in the specified cryptocurrency.\").nullable().optional(),\n}).describe(\"Response containing gas price estimates for blockchain transactions.\");\n\nexport const poofFetchGasPrice = action(\"POOF_FETCH_GAS_PRICE\", {\n slug: \"poof-fetch-gas-price\",\n name: \"Fetch Gas Price\",\n description: \"Tool to fetch current gas prices for blockchain transactions. Returns gas price estimates for Ethereum, Avalanche, Polygon, and other supported EVM chains across different priority levels (slow, standard, fast, instant).\",\n input: PoofFetchGasPriceInput,\n output: PoofFetchGasPriceOutput,\n});\n"],"mappings":";;;AAIA,MAAa,yBAAyBA,IAAAA,EAAE,OAAO,EAC7C,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kKAAkK,EAChM,CAAC;AACD,MAAa,0BAA0BA,IAAAA,EAAE,OAAO;CAC9C,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpH,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2EAA2E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/H,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3F,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxH,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACnH,CAAC,CAAC,CAAC,SAAS,sEAAsE;AAElF,MAAa,oBAAoBC,eAAAA,OAAO,wBAAwB;CAC9D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"fetch-gas-price.cjs","names":["z","action"],"sources":["../../src/actions/fetch-gas-price.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofFetchGasPriceInput = z.object({\n crypto: z.string().describe(\"The cryptocurrency identifier for which to fetch gas prices (e.g., 'usdc', 'eth', 'bnb', 'matic'). Determines which blockchain network's gas prices to retrieve.\"),\n});\nexport const PoofFetchGasPriceOutput = z.object({\n message: z.string().describe(\"Error or informational message (e.g., 'currency name invalid').\").nullable().optional(),\n gas_used: z.string().describe(\"The estimated amount of gas units that would be used for the transaction.\").nullable().optional(),\n gas_fee_usdc: z.string().describe(\"The gas fee amount in USDC stablecoin.\").nullable().optional(),\n gas_price_eth: z.string().describe(\"The gas price in ETH (Ethereum).\").nullable().optional(),\n gas_fee_in_usd: z.string().describe(\"The gas fee amount converted to USD.\").nullable().optional(),\n transaction_fee: z.string().describe(\"The estimated transaction fee for the blockchain operation.\").nullable().optional(),\n gas_fee_currency: z.string().describe(\"The gas fee amount in the specified cryptocurrency.\").nullable().optional(),\n}).passthrough().describe(\"Response containing gas price estimates for blockchain transactions.\");\n\nexport const poofFetchGasPrice = action(\"POOF_FETCH_GAS_PRICE\", {\n slug: \"poof-fetch-gas-price\",\n name: \"Fetch Gas Price\",\n description: \"Tool to fetch current gas prices for blockchain transactions. Returns gas price estimates for Ethereum, Avalanche, Polygon, and other supported EVM chains across different priority levels (slow, standard, fast, instant).\",\n input: PoofFetchGasPriceInput,\n output: PoofFetchGasPriceOutput,\n});\n"],"mappings":";;;AAIA,MAAa,yBAAyBA,IAAAA,EAAE,OAAO,EAC7C,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kKAAkK,EAChM,CAAC;AACD,MAAa,0BAA0BA,IAAAA,EAAE,OAAO;CAC9C,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpH,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2EAA2E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/H,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3F,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxH,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACnH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sEAAsE;AAEhG,MAAa,oBAAoBC,eAAAA,OAAO,wBAAwB;CAC9D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -12,7 +12,7 @@ declare const PoofFetchGasPriceOutput: z.ZodObject<{
12
12
  gas_fee_in_usd: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13
13
  transaction_fee: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14
14
  gas_fee_currency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
- }, z.core.$strip>;
15
+ }, z.core.$loose>;
16
16
  declare const poofFetchGasPrice: import("@keystrokehq/action").WorkflowActionDefinition<{
17
17
  crypto: string;
18
18
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -12,7 +12,7 @@ declare const PoofFetchGasPriceOutput: z.ZodObject<{
12
12
  gas_fee_in_usd: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13
13
  transaction_fee: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14
14
  gas_fee_currency: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15
- }, z.core.$strip>;
15
+ }, z.core.$loose>;
16
16
  declare const poofFetchGasPrice: import("@keystrokehq/action").WorkflowActionDefinition<{
17
17
  crypto: string;
18
18
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -13,7 +13,7 @@ const poofFetchGasPrice = action("POOF_FETCH_GAS_PRICE", {
13
13
  gas_fee_in_usd: z.string().describe("The gas fee amount converted to USD.").nullable().optional(),
14
14
  transaction_fee: z.string().describe("The estimated transaction fee for the blockchain operation.").nullable().optional(),
15
15
  gas_fee_currency: z.string().describe("The gas fee amount in the specified cryptocurrency.").nullable().optional()
16
- }).describe("Response containing gas price estimates for blockchain transactions.")
16
+ }).passthrough().describe("Response containing gas price estimates for blockchain transactions.")
17
17
  });
18
18
  //#endregion
19
19
  export { poofFetchGasPrice };
@@ -1 +1 @@
1
- {"version":3,"file":"fetch-gas-price.mjs","names":[],"sources":["../../src/actions/fetch-gas-price.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofFetchGasPriceInput = z.object({\n crypto: z.string().describe(\"The cryptocurrency identifier for which to fetch gas prices (e.g., 'usdc', 'eth', 'bnb', 'matic'). Determines which blockchain network's gas prices to retrieve.\"),\n});\nexport const PoofFetchGasPriceOutput = z.object({\n message: z.string().describe(\"Error or informational message (e.g., 'currency name invalid').\").nullable().optional(),\n gas_used: z.string().describe(\"The estimated amount of gas units that would be used for the transaction.\").nullable().optional(),\n gas_fee_usdc: z.string().describe(\"The gas fee amount in USDC stablecoin.\").nullable().optional(),\n gas_price_eth: z.string().describe(\"The gas price in ETH (Ethereum).\").nullable().optional(),\n gas_fee_in_usd: z.string().describe(\"The gas fee amount converted to USD.\").nullable().optional(),\n transaction_fee: z.string().describe(\"The estimated transaction fee for the blockchain operation.\").nullable().optional(),\n gas_fee_currency: z.string().describe(\"The gas fee amount in the specified cryptocurrency.\").nullable().optional(),\n}).describe(\"Response containing gas price estimates for blockchain transactions.\");\n\nexport const poofFetchGasPrice = action(\"POOF_FETCH_GAS_PRICE\", {\n slug: \"poof-fetch-gas-price\",\n name: \"Fetch Gas Price\",\n description: \"Tool to fetch current gas prices for blockchain transactions. Returns gas price estimates for Ethereum, Avalanche, Polygon, and other supported EVM chains across different priority levels (slow, standard, fast, instant).\",\n input: PoofFetchGasPriceInput,\n output: PoofFetchGasPriceOutput,\n});\n"],"mappings":";;AAiBA,MAAa,oBAAoB,OAAO,wBAAwB;CAC9D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAjBoC,EAAE,OAAO,EAC7C,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,kKAAkK,EAChM,CAeS;CACP,QAfqC,EAAE,OAAO;EAC9C,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACpH,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,2EAA2E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC/H,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChG,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC3F,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChG,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACxH,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,CAAC,CAAC,CAAC,SAAS,sEAOF;AACV,CAAC"}
1
+ {"version":3,"file":"fetch-gas-price.mjs","names":[],"sources":["../../src/actions/fetch-gas-price.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofFetchGasPriceInput = z.object({\n crypto: z.string().describe(\"The cryptocurrency identifier for which to fetch gas prices (e.g., 'usdc', 'eth', 'bnb', 'matic'). Determines which blockchain network's gas prices to retrieve.\"),\n});\nexport const PoofFetchGasPriceOutput = z.object({\n message: z.string().describe(\"Error or informational message (e.g., 'currency name invalid').\").nullable().optional(),\n gas_used: z.string().describe(\"The estimated amount of gas units that would be used for the transaction.\").nullable().optional(),\n gas_fee_usdc: z.string().describe(\"The gas fee amount in USDC stablecoin.\").nullable().optional(),\n gas_price_eth: z.string().describe(\"The gas price in ETH (Ethereum).\").nullable().optional(),\n gas_fee_in_usd: z.string().describe(\"The gas fee amount converted to USD.\").nullable().optional(),\n transaction_fee: z.string().describe(\"The estimated transaction fee for the blockchain operation.\").nullable().optional(),\n gas_fee_currency: z.string().describe(\"The gas fee amount in the specified cryptocurrency.\").nullable().optional(),\n}).passthrough().describe(\"Response containing gas price estimates for blockchain transactions.\");\n\nexport const poofFetchGasPrice = action(\"POOF_FETCH_GAS_PRICE\", {\n slug: \"poof-fetch-gas-price\",\n name: \"Fetch Gas Price\",\n description: \"Tool to fetch current gas prices for blockchain transactions. Returns gas price estimates for Ethereum, Avalanche, Polygon, and other supported EVM chains across different priority levels (slow, standard, fast, instant).\",\n input: PoofFetchGasPriceInput,\n output: PoofFetchGasPriceOutput,\n});\n"],"mappings":";;AAiBA,MAAa,oBAAoB,OAAO,wBAAwB;CAC9D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAjBoC,EAAE,OAAO,EAC7C,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,kKAAkK,EAChM,CAeS;CACP,QAfqC,EAAE,OAAO;EAC9C,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACpH,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,2EAA2E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC/H,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChG,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC3F,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChG,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACxH,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,sEAOhB;AACV,CAAC"}
@@ -11,7 +11,7 @@ const PoofFetchPriceOutput = zod.z.object({
11
11
  ]).nullable().optional(),
12
12
  error: zod.z.union([zod.z.string(), zod.z.record(zod.z.string(), zod.z.unknown())]).nullable().optional(),
13
13
  successfull: zod.z.boolean().describe("Indicates whether the API request was successful").nullable().optional()
14
- }).describe("Response model containing current cryptocurrency price data.");
14
+ }).passthrough().describe("Response model containing current cryptocurrency price data.");
15
15
  const poofFetchPrice = require_action.action("POOF_FETCH_PRICE", {
16
16
  slug: "poof-fetch-price",
17
17
  name: "Fetch Cryptocurrency Price",
@@ -1 +1 @@
1
- {"version":3,"file":"fetch-price.cjs","names":["z","action"],"sources":["../../src/actions/fetch-price.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofFetchPriceInput = z.object({\n crypto: z.string().describe(\"The cryptocurrency identifier to fetch price for (e.g., 'bnb', 'btc', 'eth', 'ethereum', 'bitcoin')\"),\n}).describe(\"Request model for fetching current cryptocurrency price.\");\nexport const PoofFetchPriceOutput = z.object({\n data: z.union([z.string(), z.record(z.string(), z.unknown()), z.number(), z.number().int()]).nullable().optional(),\n error: z.union([z.string(), z.record(z.string(), z.unknown())]).nullable().optional(),\n successfull: z.boolean().describe(\"Indicates whether the API request was successful\").nullable().optional(),\n}).describe(\"Response model containing current cryptocurrency price data.\");\n\nexport const poofFetchPrice = action(\"POOF_FETCH_PRICE\", {\n slug: \"poof-fetch-price\",\n name: \"Fetch Cryptocurrency Price\",\n description: \"Tool to fetch current cryptocurrency prices for supported tokens. Use when you need real-time price data for cryptocurrencies and tokens.\",\n input: PoofFetchPriceInput,\n output: PoofFetchPriceOutput,\n});\n"],"mappings":";;;AAIA,MAAa,sBAAsBA,IAAAA,EAAE,OAAO,EAC1C,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qGAAqG,EACnI,CAAC,CAAC,CAAC,SAAS,0DAA0D;AACtE,MAAa,uBAAuBA,IAAAA,EAAE,OAAO;CAC3C,MAAMA,IAAAA,EAAE,MAAM;EAACA,IAAAA,EAAE,OAAO;EAAGA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC;EAAGA,IAAAA,EAAE,OAAO;EAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI;CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjH,OAAOA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,aAAaA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5G,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAE1E,MAAa,iBAAiBC,eAAAA,OAAO,oBAAoB;CACvD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"fetch-price.cjs","names":["z","action"],"sources":["../../src/actions/fetch-price.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofFetchPriceInput = z.object({\n crypto: z.string().describe(\"The cryptocurrency identifier to fetch price for (e.g., 'bnb', 'btc', 'eth', 'ethereum', 'bitcoin')\"),\n}).describe(\"Request model for fetching current cryptocurrency price.\");\nexport const PoofFetchPriceOutput = z.object({\n data: z.union([z.string(), z.record(z.string(), z.unknown()), z.number(), z.number().int()]).nullable().optional(),\n error: z.union([z.string(), z.record(z.string(), z.unknown())]).nullable().optional(),\n successfull: z.boolean().describe(\"Indicates whether the API request was successful\").nullable().optional(),\n}).passthrough().describe(\"Response model containing current cryptocurrency price data.\");\n\nexport const poofFetchPrice = action(\"POOF_FETCH_PRICE\", {\n slug: \"poof-fetch-price\",\n name: \"Fetch Cryptocurrency Price\",\n description: \"Tool to fetch current cryptocurrency prices for supported tokens. Use when you need real-time price data for cryptocurrencies and tokens.\",\n input: PoofFetchPriceInput,\n output: PoofFetchPriceOutput,\n});\n"],"mappings":";;;AAIA,MAAa,sBAAsBA,IAAAA,EAAE,OAAO,EAC1C,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qGAAqG,EACnI,CAAC,CAAC,CAAC,SAAS,0DAA0D;AACtE,MAAa,uBAAuBA,IAAAA,EAAE,OAAO;CAC3C,MAAMA,IAAAA,EAAE,MAAM;EAACA,IAAAA,EAAE,OAAO;EAAGA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC;EAAGA,IAAAA,EAAE,OAAO;EAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI;CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjH,OAAOA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,aAAaA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC5G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8DAA8D;AAExF,MAAa,iBAAiBC,eAAAA,OAAO,oBAAoB;CACvD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -8,7 +8,7 @@ declare const PoofFetchPriceOutput: z.ZodObject<{
8
8
  data: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNumber, z.ZodNumber]>>>;
9
9
  error: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>>;
10
10
  successfull: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
11
- }, z.core.$strip>;
11
+ }, z.core.$loose>;
12
12
  declare const poofFetchPrice: import("@keystrokehq/action").WorkflowActionDefinition<{
13
13
  crypto: string;
14
14
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -8,7 +8,7 @@ declare const PoofFetchPriceOutput: z.ZodObject<{
8
8
  data: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNumber, z.ZodNumber]>>>;
9
9
  error: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnknown>]>>>;
10
10
  successfull: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
11
- }, z.core.$strip>;
11
+ }, z.core.$loose>;
12
12
  declare const poofFetchPrice: import("@keystrokehq/action").WorkflowActionDefinition<{
13
13
  crypto: string;
14
14
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -14,7 +14,7 @@ const poofFetchPrice = action("POOF_FETCH_PRICE", {
14
14
  ]).nullable().optional(),
15
15
  error: z.union([z.string(), z.record(z.string(), z.unknown())]).nullable().optional(),
16
16
  successfull: z.boolean().describe("Indicates whether the API request was successful").nullable().optional()
17
- }).describe("Response model containing current cryptocurrency price data.")
17
+ }).passthrough().describe("Response model containing current cryptocurrency price data.")
18
18
  });
19
19
  //#endregion
20
20
  export { poofFetchPrice };
@@ -1 +1 @@
1
- {"version":3,"file":"fetch-price.mjs","names":[],"sources":["../../src/actions/fetch-price.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofFetchPriceInput = z.object({\n crypto: z.string().describe(\"The cryptocurrency identifier to fetch price for (e.g., 'bnb', 'btc', 'eth', 'ethereum', 'bitcoin')\"),\n}).describe(\"Request model for fetching current cryptocurrency price.\");\nexport const PoofFetchPriceOutput = z.object({\n data: z.union([z.string(), z.record(z.string(), z.unknown()), z.number(), z.number().int()]).nullable().optional(),\n error: z.union([z.string(), z.record(z.string(), z.unknown())]).nullable().optional(),\n successfull: z.boolean().describe(\"Indicates whether the API request was successful\").nullable().optional(),\n}).describe(\"Response model containing current cryptocurrency price data.\");\n\nexport const poofFetchPrice = action(\"POOF_FETCH_PRICE\", {\n slug: \"poof-fetch-price\",\n name: \"Fetch Cryptocurrency Price\",\n description: \"Tool to fetch current cryptocurrency prices for supported tokens. Use when you need real-time price data for cryptocurrencies and tokens.\",\n input: PoofFetchPriceInput,\n output: PoofFetchPriceOutput,\n});\n"],"mappings":";;AAaA,MAAa,iBAAiB,OAAO,oBAAoB;CACvD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAbiC,EAAE,OAAO,EAC1C,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,qGAAqG,EACnI,CAAC,CAAC,CAAC,SAAS,0DAWH;CACP,QAXkC,EAAE,OAAO;EAC3C,MAAM,EAAE,MAAM;GAAC,EAAE,OAAO;GAAG,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC;GAAG,EAAE,OAAO;GAAG,EAAE,OAAO,CAAC,CAAC,IAAI;EAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACjH,OAAO,EAAE,MAAM,CAAC,EAAE,OAAO,GAAG,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACpF,aAAa,EAAE,QAAQ,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5G,CAAC,CAAC,CAAC,SAAS,8DAOF;AACV,CAAC"}
1
+ {"version":3,"file":"fetch-price.mjs","names":[],"sources":["../../src/actions/fetch-price.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofFetchPriceInput = z.object({\n crypto: z.string().describe(\"The cryptocurrency identifier to fetch price for (e.g., 'bnb', 'btc', 'eth', 'ethereum', 'bitcoin')\"),\n}).describe(\"Request model for fetching current cryptocurrency price.\");\nexport const PoofFetchPriceOutput = z.object({\n data: z.union([z.string(), z.record(z.string(), z.unknown()), z.number(), z.number().int()]).nullable().optional(),\n error: z.union([z.string(), z.record(z.string(), z.unknown())]).nullable().optional(),\n successfull: z.boolean().describe(\"Indicates whether the API request was successful\").nullable().optional(),\n}).passthrough().describe(\"Response model containing current cryptocurrency price data.\");\n\nexport const poofFetchPrice = action(\"POOF_FETCH_PRICE\", {\n slug: \"poof-fetch-price\",\n name: \"Fetch Cryptocurrency Price\",\n description: \"Tool to fetch current cryptocurrency prices for supported tokens. Use when you need real-time price data for cryptocurrencies and tokens.\",\n input: PoofFetchPriceInput,\n output: PoofFetchPriceOutput,\n});\n"],"mappings":";;AAaA,MAAa,iBAAiB,OAAO,oBAAoB;CACvD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAbiC,EAAE,OAAO,EAC1C,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,qGAAqG,EACnI,CAAC,CAAC,CAAC,SAAS,0DAWH;CACP,QAXkC,EAAE,OAAO;EAC3C,MAAM,EAAE,MAAM;GAAC,EAAE,OAAO;GAAG,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC;GAAG,EAAE,OAAO;GAAG,EAAE,OAAO,CAAC,CAAC,IAAI;EAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACjH,OAAO,EAAE,MAAM,CAAC,EAAE,OAAO,GAAG,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACpF,aAAa,EAAE,QAAQ,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8DAOhB;AACV,CAAC"}
@@ -3,10 +3,10 @@ let zod = require("zod");
3
3
  //#region src/actions/fetch-smart-contracts.ts
4
4
  const PoofFetchSmartContractsInput = zod.z.object({}).describe("Request model for fetching supported smart contracts.\nNo parameters required - the API returns all available contracts.");
5
5
  const PoofFetchSmartContractsOutput = zod.z.object({
6
- polygon: zod.z.object({}).describe("Polygon network token contracts keyed by token identifier").nullable().optional(),
7
- ethereum: zod.z.object({}).describe("Ethereum network ERC-20 token contracts keyed by token identifier").nullable().optional(),
8
- avalanche: zod.z.object({}).describe("Avalanche network token contracts keyed by token identifier").nullable().optional()
9
- }).describe("Response model containing smart contracts organized by blockchain network.\nEach network contains token identifiers mapped to their contract details.");
6
+ polygon: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Polygon network token contracts keyed by token identifier").nullable().optional(),
7
+ ethereum: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Ethereum network ERC-20 token contracts keyed by token identifier").nullable().optional(),
8
+ avalanche: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Avalanche network token contracts keyed by token identifier").nullable().optional()
9
+ }).passthrough().describe("Response model containing smart contracts organized by blockchain network.\nEach network contains token identifiers mapped to their contract details.");
10
10
  const poofFetchSmartContracts = require_action.action("POOF_FETCH_SMART_CONTRACTS", {
11
11
  slug: "poof-fetch-smart-contracts",
12
12
  name: "Fetch Smart Contracts",
@@ -1 +1 @@
1
- {"version":3,"file":"fetch-smart-contracts.cjs","names":["z","action"],"sources":["../../src/actions/fetch-smart-contracts.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofFetchSmartContractsInput = z.object({}).describe(\"Request model for fetching supported smart contracts.\\nNo parameters required - the API returns all available contracts.\");\nexport const PoofFetchSmartContractsOutput = z.object({\n polygon: z.object({}).describe(\"Polygon network token contracts keyed by token identifier\").nullable().optional(),\n ethereum: z.object({}).describe(\"Ethereum network ERC-20 token contracts keyed by token identifier\").nullable().optional(),\n avalanche: z.object({}).describe(\"Avalanche network token contracts keyed by token identifier\").nullable().optional(),\n}).describe(\"Response model containing smart contracts organized by blockchain network.\\nEach network contains token identifiers mapped to their contract details.\");\n\nexport const poofFetchSmartContracts = action(\"POOF_FETCH_SMART_CONTRACTS\", {\n slug: \"poof-fetch-smart-contracts\",\n name: \"Fetch Smart Contracts\",\n description: \"Tool to fetch all supported ERC-20 smart contracts across Ethereum, Avalanche, and Polygon networks. Use when you need to retrieve available token contracts and their details for blockchain operations.\",\n input: PoofFetchSmartContractsInput,\n output: PoofFetchSmartContractsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA+BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0HAA0H;AAC5L,MAAa,gCAAgCA,IAAAA,EAAE,OAAO;CACpD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChH,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,mEAAmE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzH,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtH,CAAC,CAAC,CAAC,SAAS,uJAAuJ;AAEnK,MAAa,0BAA0BC,eAAAA,OAAO,8BAA8B;CAC1E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"fetch-smart-contracts.cjs","names":["z","action"],"sources":["../../src/actions/fetch-smart-contracts.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofFetchSmartContractsInput = z.object({}).describe(\"Request model for fetching supported smart contracts.\\nNo parameters required - the API returns all available contracts.\");\nexport const PoofFetchSmartContractsOutput = z.object({\n polygon: z.record(z.string(), z.unknown()).describe(\"Polygon network token contracts keyed by token identifier\").nullable().optional(),\n ethereum: z.record(z.string(), z.unknown()).describe(\"Ethereum network ERC-20 token contracts keyed by token identifier\").nullable().optional(),\n avalanche: z.record(z.string(), z.unknown()).describe(\"Avalanche network token contracts keyed by token identifier\").nullable().optional(),\n}).passthrough().describe(\"Response model containing smart contracts organized by blockchain network.\\nEach network contains token identifiers mapped to their contract details.\");\n\nexport const poofFetchSmartContracts = action(\"POOF_FETCH_SMART_CONTRACTS\", {\n slug: \"poof-fetch-smart-contracts\",\n name: \"Fetch Smart Contracts\",\n description: \"Tool to fetch all supported ERC-20 smart contracts across Ethereum, Avalanche, and Polygon networks. Use when you need to retrieve available token contracts and their details for blockchain operations.\",\n input: PoofFetchSmartContractsInput,\n output: PoofFetchSmartContractsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA+BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0HAA0H;AAC5L,MAAa,gCAAgCA,IAAAA,EAAE,OAAO;CACpD,SAASA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrI,UAAUA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,mEAAmE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9I,WAAWA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3I,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uJAAuJ;AAEjL,MAAa,0BAA0BC,eAAAA,OAAO,8BAA8B;CAC1E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -3,10 +3,10 @@ import { z } from "zod";
3
3
  //#region src/actions/fetch-smart-contracts.d.ts
4
4
  declare const PoofFetchSmartContractsInput: z.ZodObject<{}, z.core.$strip>;
5
5
  declare const PoofFetchSmartContractsOutput: z.ZodObject<{
6
- polygon: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$strip>>>;
7
- ethereum: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$strip>>>;
8
- avalanche: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$strip>>>;
9
- }, z.core.$strip>;
6
+ polygon: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
7
+ ethereum: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
8
+ avalanche: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
9
+ }, z.core.$loose>;
10
10
  declare const poofFetchSmartContracts: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
11
11
  //#endregion
12
12
  export { poofFetchSmartContracts };
@@ -3,10 +3,10 @@ import { z } from "zod";
3
3
  //#region src/actions/fetch-smart-contracts.d.ts
4
4
  declare const PoofFetchSmartContractsInput: z.ZodObject<{}, z.core.$strip>;
5
5
  declare const PoofFetchSmartContractsOutput: z.ZodObject<{
6
- polygon: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$strip>>>;
7
- ethereum: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$strip>>>;
8
- avalanche: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, z.core.$strip>>>;
9
- }, z.core.$strip>;
6
+ polygon: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
7
+ ethereum: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
8
+ avalanche: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
9
+ }, z.core.$loose>;
10
10
  declare const poofFetchSmartContracts: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
11
11
  //#endregion
12
12
  export { poofFetchSmartContracts };
@@ -6,10 +6,10 @@ const poofFetchSmartContracts = action("POOF_FETCH_SMART_CONTRACTS", {
6
6
  description: "Tool to fetch all supported ERC-20 smart contracts across Ethereum, Avalanche, and Polygon networks. Use when you need to retrieve available token contracts and their details for blockchain operations.",
7
7
  input: z.object({}).describe("Request model for fetching supported smart contracts.\nNo parameters required - the API returns all available contracts."),
8
8
  output: z.object({
9
- polygon: z.object({}).describe("Polygon network token contracts keyed by token identifier").nullable().optional(),
10
- ethereum: z.object({}).describe("Ethereum network ERC-20 token contracts keyed by token identifier").nullable().optional(),
11
- avalanche: z.object({}).describe("Avalanche network token contracts keyed by token identifier").nullable().optional()
12
- }).describe("Response model containing smart contracts organized by blockchain network.\nEach network contains token identifiers mapped to their contract details.")
9
+ polygon: z.record(z.string(), z.unknown()).describe("Polygon network token contracts keyed by token identifier").nullable().optional(),
10
+ ethereum: z.record(z.string(), z.unknown()).describe("Ethereum network ERC-20 token contracts keyed by token identifier").nullable().optional(),
11
+ avalanche: z.record(z.string(), z.unknown()).describe("Avalanche network token contracts keyed by token identifier").nullable().optional()
12
+ }).passthrough().describe("Response model containing smart contracts organized by blockchain network.\nEach network contains token identifiers mapped to their contract details.")
13
13
  });
14
14
  //#endregion
15
15
  export { poofFetchSmartContracts };
@@ -1 +1 @@
1
- {"version":3,"file":"fetch-smart-contracts.mjs","names":[],"sources":["../../src/actions/fetch-smart-contracts.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofFetchSmartContractsInput = z.object({}).describe(\"Request model for fetching supported smart contracts.\\nNo parameters required - the API returns all available contracts.\");\nexport const PoofFetchSmartContractsOutput = z.object({\n polygon: z.object({}).describe(\"Polygon network token contracts keyed by token identifier\").nullable().optional(),\n ethereum: z.object({}).describe(\"Ethereum network ERC-20 token contracts keyed by token identifier\").nullable().optional(),\n avalanche: z.object({}).describe(\"Avalanche network token contracts keyed by token identifier\").nullable().optional(),\n}).describe(\"Response model containing smart contracts organized by blockchain network.\\nEach network contains token identifiers mapped to their contract details.\");\n\nexport const poofFetchSmartContracts = action(\"POOF_FETCH_SMART_CONTRACTS\", {\n slug: \"poof-fetch-smart-contracts\",\n name: \"Fetch Smart Contracts\",\n description: \"Tool to fetch all supported ERC-20 smart contracts across Ethereum, Avalanche, and Polygon networks. Use when you need to retrieve available token contracts and their details for blockchain operations.\",\n input: PoofFetchSmartContractsInput,\n output: PoofFetchSmartContractsOutput,\n});\n"],"mappings":";;AAWA,MAAa,0BAA0B,OAAO,8BAA8B;CAC1E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAX0C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0HAWzD;CACP,QAX2C,EAAE,OAAO;EACpD,SAAS,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChH,UAAU,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,mEAAmE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACzH,WAAW,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtH,CAAC,CAAC,CAAC,SAAS,uJAOF;AACV,CAAC"}
1
+ {"version":3,"file":"fetch-smart-contracts.mjs","names":[],"sources":["../../src/actions/fetch-smart-contracts.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofFetchSmartContractsInput = z.object({}).describe(\"Request model for fetching supported smart contracts.\\nNo parameters required - the API returns all available contracts.\");\nexport const PoofFetchSmartContractsOutput = z.object({\n polygon: z.record(z.string(), z.unknown()).describe(\"Polygon network token contracts keyed by token identifier\").nullable().optional(),\n ethereum: z.record(z.string(), z.unknown()).describe(\"Ethereum network ERC-20 token contracts keyed by token identifier\").nullable().optional(),\n avalanche: z.record(z.string(), z.unknown()).describe(\"Avalanche network token contracts keyed by token identifier\").nullable().optional(),\n}).passthrough().describe(\"Response model containing smart contracts organized by blockchain network.\\nEach network contains token identifiers mapped to their contract details.\");\n\nexport const poofFetchSmartContracts = action(\"POOF_FETCH_SMART_CONTRACTS\", {\n slug: \"poof-fetch-smart-contracts\",\n name: \"Fetch Smart Contracts\",\n description: \"Tool to fetch all supported ERC-20 smart contracts across Ethereum, Avalanche, and Polygon networks. Use when you need to retrieve available token contracts and their details for blockchain operations.\",\n input: PoofFetchSmartContractsInput,\n output: PoofFetchSmartContractsOutput,\n});\n"],"mappings":";;AAWA,MAAa,0BAA0B,OAAO,8BAA8B;CAC1E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAX0C,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0HAWzD;CACP,QAX2C,EAAE,OAAO;EACpD,SAAS,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACrI,UAAU,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,mEAAmE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC9I,WAAW,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3I,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uJAOhB;AACV,CAAC"}
@@ -11,7 +11,7 @@ const PoofSendPayoutOutput = zod.z.object({
11
11
  message: zod.z.string().describe("Additional message or details about the payout request.").nullable().optional(),
12
12
  success: zod.z.boolean().describe("Indicates whether the payout request was successful.").nullable().optional(),
13
13
  transaction_id: zod.z.string().describe("Unique identifier for the payout transaction.").nullable().optional()
14
- }).describe("Response model returned after initiating a cryptocurrency payout transaction.");
14
+ }).passthrough().describe("Response model returned after initiating a cryptocurrency payout transaction.");
15
15
  const poofSendPayout = require_action.action("POOF_SEND_PAYOUT", {
16
16
  slug: "poof-send-payout",
17
17
  name: "Send Cryptocurrency Payout",
@@ -1 +1 @@
1
- {"version":3,"file":"send-payout.cjs","names":["z","action"],"sources":["../../src/actions/send-payout.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofSendPayoutInput = z.object({\n amount: z.number().describe(\"Amount of cryptocurrency to send. Must be a positive number.\"),\n crypto: z.string().describe(\"Cryptocurrency type to use for the payout. Supported values include blockchain names such as 'solana', 'ethereum', 'bitcoin', etc.\"),\n address: z.string().describe(\"Destination wallet address on the specified blockchain. Must be a valid address format for the chosen cryptocurrency.\"),\n}).describe(\"Request model for sending a cryptocurrency payout transaction.\");\nexport const PoofSendPayoutOutput = z.object({\n status: z.string().describe(\"Current status of the payout transaction (e.g., pending, completed, failed).\").nullable().optional(),\n message: z.string().describe(\"Additional message or details about the payout request.\").nullable().optional(),\n success: z.boolean().describe(\"Indicates whether the payout request was successful.\").nullable().optional(),\n transaction_id: z.string().describe(\"Unique identifier for the payout transaction.\").nullable().optional(),\n}).describe(\"Response model returned after initiating a cryptocurrency payout transaction.\");\n\nexport const poofSendPayout = action(\"POOF_SEND_PAYOUT\", {\n slug: \"poof-send-payout\",\n name: \"Send Cryptocurrency Payout\",\n description: \"Tool to send a cryptocurrency payout transaction from your wallet to an external address. Use when you need to transfer crypto on supported blockchains.\",\n input: PoofSendPayoutInput,\n output: PoofSendPayoutOutput,\n});\n"],"mappings":";;;AAIA,MAAa,sBAAsBA,IAAAA,EAAE,OAAO;CAC1C,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D;CAC1F,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oIAAoI;CAChK,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uHAAuH;AACtJ,CAAC,CAAC,CAAC,SAAS,gEAAgE;AAC5E,MAAa,uBAAuBA,IAAAA,EAAE,OAAO;CAC3C,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8EAA8E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChI,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5G,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1G,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3G,CAAC,CAAC,CAAC,SAAS,+EAA+E;AAE3F,MAAa,iBAAiBC,eAAAA,OAAO,oBAAoB;CACvD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"send-payout.cjs","names":["z","action"],"sources":["../../src/actions/send-payout.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofSendPayoutInput = z.object({\n amount: z.number().describe(\"Amount of cryptocurrency to send. Must be a positive number.\"),\n crypto: z.string().describe(\"Cryptocurrency type to use for the payout. Supported values include blockchain names such as 'solana', 'ethereum', 'bitcoin', etc.\"),\n address: z.string().describe(\"Destination wallet address on the specified blockchain. Must be a valid address format for the chosen cryptocurrency.\"),\n}).describe(\"Request model for sending a cryptocurrency payout transaction.\");\nexport const PoofSendPayoutOutput = z.object({\n status: z.string().describe(\"Current status of the payout transaction (e.g., pending, completed, failed).\").nullable().optional(),\n message: z.string().describe(\"Additional message or details about the payout request.\").nullable().optional(),\n success: z.boolean().describe(\"Indicates whether the payout request was successful.\").nullable().optional(),\n transaction_id: z.string().describe(\"Unique identifier for the payout transaction.\").nullable().optional(),\n}).passthrough().describe(\"Response model returned after initiating a cryptocurrency payout transaction.\");\n\nexport const poofSendPayout = action(\"POOF_SEND_PAYOUT\", {\n slug: \"poof-send-payout\",\n name: \"Send Cryptocurrency Payout\",\n description: \"Tool to send a cryptocurrency payout transaction from your wallet to an external address. Use when you need to transfer crypto on supported blockchains.\",\n input: PoofSendPayoutInput,\n output: PoofSendPayoutOutput,\n});\n"],"mappings":";;;AAIA,MAAa,sBAAsBA,IAAAA,EAAE,OAAO;CAC1C,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D;CAC1F,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oIAAoI;CAChK,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uHAAuH;AACtJ,CAAC,CAAC,CAAC,SAAS,gEAAgE;AAC5E,MAAa,uBAAuBA,IAAAA,EAAE,OAAO;CAC3C,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8EAA8E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChI,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5G,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1G,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+EAA+E;AAEzG,MAAa,iBAAiBC,eAAAA,OAAO,oBAAoB;CACvD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -11,7 +11,7 @@ declare const PoofSendPayoutOutput: z.ZodObject<{
11
11
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12
12
  success: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
13
13
  transaction_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14
- }, z.core.$strip>;
14
+ }, z.core.$loose>;
15
15
  declare const poofSendPayout: import("@keystrokehq/action").WorkflowActionDefinition<{
16
16
  amount: number;
17
17
  crypto: string;
@@ -11,7 +11,7 @@ declare const PoofSendPayoutOutput: z.ZodObject<{
11
11
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12
12
  success: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
13
13
  transaction_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14
- }, z.core.$strip>;
14
+ }, z.core.$loose>;
15
15
  declare const poofSendPayout: import("@keystrokehq/action").WorkflowActionDefinition<{
16
16
  amount: number;
17
17
  crypto: string;
@@ -14,7 +14,7 @@ const poofSendPayout = action("POOF_SEND_PAYOUT", {
14
14
  message: z.string().describe("Additional message or details about the payout request.").nullable().optional(),
15
15
  success: z.boolean().describe("Indicates whether the payout request was successful.").nullable().optional(),
16
16
  transaction_id: z.string().describe("Unique identifier for the payout transaction.").nullable().optional()
17
- }).describe("Response model returned after initiating a cryptocurrency payout transaction.")
17
+ }).passthrough().describe("Response model returned after initiating a cryptocurrency payout transaction.")
18
18
  });
19
19
  //#endregion
20
20
  export { poofSendPayout };
@@ -1 +1 @@
1
- {"version":3,"file":"send-payout.mjs","names":[],"sources":["../../src/actions/send-payout.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofSendPayoutInput = z.object({\n amount: z.number().describe(\"Amount of cryptocurrency to send. Must be a positive number.\"),\n crypto: z.string().describe(\"Cryptocurrency type to use for the payout. Supported values include blockchain names such as 'solana', 'ethereum', 'bitcoin', etc.\"),\n address: z.string().describe(\"Destination wallet address on the specified blockchain. Must be a valid address format for the chosen cryptocurrency.\"),\n}).describe(\"Request model for sending a cryptocurrency payout transaction.\");\nexport const PoofSendPayoutOutput = z.object({\n status: z.string().describe(\"Current status of the payout transaction (e.g., pending, completed, failed).\").nullable().optional(),\n message: z.string().describe(\"Additional message or details about the payout request.\").nullable().optional(),\n success: z.boolean().describe(\"Indicates whether the payout request was successful.\").nullable().optional(),\n transaction_id: z.string().describe(\"Unique identifier for the payout transaction.\").nullable().optional(),\n}).describe(\"Response model returned after initiating a cryptocurrency payout transaction.\");\n\nexport const poofSendPayout = action(\"POOF_SEND_PAYOUT\", {\n slug: \"poof-send-payout\",\n name: \"Send Cryptocurrency Payout\",\n description: \"Tool to send a cryptocurrency payout transaction from your wallet to an external address. Use when you need to transfer crypto on supported blockchains.\",\n input: PoofSendPayoutInput,\n output: PoofSendPayoutOutput,\n});\n"],"mappings":";;AAgBA,MAAa,iBAAiB,OAAO,oBAAoB;CACvD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAhBiC,EAAE,OAAO;EAC1C,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D;EAC1F,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,oIAAoI;EAChK,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,uHAAuH;CACtJ,CAAC,CAAC,CAAC,SAAS,gEAYH;CACP,QAZkC,EAAE,OAAO;EAC3C,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,8EAA8E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChI,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC5G,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC1G,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3G,CAAC,CAAC,CAAC,SAAS,+EAOF;AACV,CAAC"}
1
+ {"version":3,"file":"send-payout.mjs","names":[],"sources":["../../src/actions/send-payout.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PoofSendPayoutInput = z.object({\n amount: z.number().describe(\"Amount of cryptocurrency to send. Must be a positive number.\"),\n crypto: z.string().describe(\"Cryptocurrency type to use for the payout. Supported values include blockchain names such as 'solana', 'ethereum', 'bitcoin', etc.\"),\n address: z.string().describe(\"Destination wallet address on the specified blockchain. Must be a valid address format for the chosen cryptocurrency.\"),\n}).describe(\"Request model for sending a cryptocurrency payout transaction.\");\nexport const PoofSendPayoutOutput = z.object({\n status: z.string().describe(\"Current status of the payout transaction (e.g., pending, completed, failed).\").nullable().optional(),\n message: z.string().describe(\"Additional message or details about the payout request.\").nullable().optional(),\n success: z.boolean().describe(\"Indicates whether the payout request was successful.\").nullable().optional(),\n transaction_id: z.string().describe(\"Unique identifier for the payout transaction.\").nullable().optional(),\n}).passthrough().describe(\"Response model returned after initiating a cryptocurrency payout transaction.\");\n\nexport const poofSendPayout = action(\"POOF_SEND_PAYOUT\", {\n slug: \"poof-send-payout\",\n name: \"Send Cryptocurrency Payout\",\n description: \"Tool to send a cryptocurrency payout transaction from your wallet to an external address. Use when you need to transfer crypto on supported blockchains.\",\n input: PoofSendPayoutInput,\n output: PoofSendPayoutOutput,\n});\n"],"mappings":";;AAgBA,MAAa,iBAAiB,OAAO,oBAAoB;CACvD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAhBiC,EAAE,OAAO;EAC1C,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D;EAC1F,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,oIAAoI;EAChK,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,uHAAuH;CACtJ,CAAC,CAAC,CAAC,SAAS,gEAYH;CACP,QAZkC,EAAE,OAAO;EAC3C,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,8EAA8E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChI,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC5G,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC1G,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+EAOhB;AACV,CAAC"}
package/dist/catalog.cjs CHANGED
@@ -8,7 +8,7 @@ const poofCatalog = {
8
8
  "logo": "https://logos.composio.dev/api/poof",
9
9
  "authKind": "keystroke",
10
10
  "oauthScopes": [],
11
- "credentialFields": { "api_key": {
11
+ "credentialFields": { "generic_api_key": {
12
12
  "label": "API Key",
13
13
  "secret": true,
14
14
  "description": "Sign in and manage your API Keys from the Developers settings at https://www.poof.io/developers"
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const poofCatalog = {\n \"slug\": \"poof\",\n \"name\": \"Poof\",\n \"description\": \"Empowering millions of digital businesses & creators with payments from crypto to fiat\",\n \"category\": \"Payment Processing\",\n \"logo\": \"https://logos.composio.dev/api/poof\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Sign in and manage your API Keys from the Developers settings at https://www.poof.io/developers\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,cAAc;CACzB,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"}
1
+ {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const poofCatalog = {\n \"slug\": \"poof\",\n \"name\": \"Poof\",\n \"description\": \"Empowering millions of digital businesses & creators with payments from crypto to fiat\",\n \"category\": \"Payment Processing\",\n \"logo\": \"https://logos.composio.dev/api/poof\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Sign in and manage your API Keys from the Developers settings at https://www.poof.io/developers\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,cAAc;CACzB,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
@@ -9,7 +9,7 @@ declare const poofCatalog: {
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
11
  readonly credentialFields: {
12
- readonly api_key: {
12
+ readonly generic_api_key: {
13
13
  readonly label: "API Key";
14
14
  readonly secret: true;
15
15
  readonly description: "Sign in and manage your API Keys from the Developers settings at https://www.poof.io/developers";
@@ -9,7 +9,7 @@ declare const poofCatalog: {
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
11
  readonly credentialFields: {
12
- readonly api_key: {
12
+ readonly generic_api_key: {
13
13
  readonly label: "API Key";
14
14
  readonly secret: true;
15
15
  readonly description: "Sign in and manage your API Keys from the Developers settings at https://www.poof.io/developers";
package/dist/catalog.mjs CHANGED
@@ -8,7 +8,7 @@ const poofCatalog = {
8
8
  "logo": "https://logos.composio.dev/api/poof",
9
9
  "authKind": "keystroke",
10
10
  "oauthScopes": [],
11
- "credentialFields": { "api_key": {
11
+ "credentialFields": { "generic_api_key": {
12
12
  "label": "API Key",
13
13
  "secret": true,
14
14
  "description": "Sign in and manage your API Keys from the Developers settings at https://www.poof.io/developers"
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const poofCatalog = {\n \"slug\": \"poof\",\n \"name\": \"Poof\",\n \"description\": \"Empowering millions of digital businesses & creators with payments from crypto to fiat\",\n \"category\": \"Payment Processing\",\n \"logo\": \"https://logos.composio.dev/api/poof\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Sign in and manage your API Keys from the Developers settings at https://www.poof.io/developers\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,cAAc;CACzB,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"}
1
+ {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const poofCatalog = {\n \"slug\": \"poof\",\n \"name\": \"Poof\",\n \"description\": \"Empowering millions of digital businesses & creators with payments from crypto to fiat\",\n \"category\": \"Payment Processing\",\n \"logo\": \"https://logos.composio.dev/api/poof\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Sign in and manage your API Keys from the Developers settings at https://www.poof.io/developers\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,cAAc;CACzB,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/poof",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"