@keystrokehq/proofly 0.1.4 → 0.1.6

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 (37) hide show
  1. package/dist/action.cjs.map +1 -1
  2. package/dist/action.mjs.map +1 -1
  3. package/dist/actions/get-activity-logs.cjs +1 -0
  4. package/dist/actions/get-activity-logs.cjs.map +1 -1
  5. package/dist/actions/get-activity-logs.d.cts +3 -1
  6. package/dist/actions/get-activity-logs.d.cts.map +1 -1
  7. package/dist/actions/get-activity-logs.d.mts +3 -1
  8. package/dist/actions/get-activity-logs.d.mts.map +1 -1
  9. package/dist/actions/get-activity-logs.mjs +1 -0
  10. package/dist/actions/get-activity-logs.mjs.map +1 -1
  11. package/dist/actions/get-campaigns.cjs +1 -0
  12. package/dist/actions/get-campaigns.cjs.map +1 -1
  13. package/dist/actions/get-campaigns.d.cts +3 -1
  14. package/dist/actions/get-campaigns.d.cts.map +1 -1
  15. package/dist/actions/get-campaigns.d.mts +3 -1
  16. package/dist/actions/get-campaigns.d.mts.map +1 -1
  17. package/dist/actions/get-campaigns.mjs +1 -0
  18. package/dist/actions/get-campaigns.mjs.map +1 -1
  19. package/dist/actions/get-user.cjs +1 -0
  20. package/dist/actions/get-user.cjs.map +1 -1
  21. package/dist/actions/get-user.d.cts +3 -1
  22. package/dist/actions/get-user.d.cts.map +1 -1
  23. package/dist/actions/get-user.d.mts +3 -1
  24. package/dist/actions/get-user.d.mts.map +1 -1
  25. package/dist/actions/get-user.mjs +1 -0
  26. package/dist/actions/get-user.mjs.map +1 -1
  27. package/dist/app.cjs +5 -2
  28. package/dist/app.cjs.map +1 -1
  29. package/dist/app.d.cts +7 -1
  30. package/dist/app.d.cts.map +1 -1
  31. package/dist/app.d.mts +7 -1
  32. package/dist/app.d.mts.map +1 -1
  33. package/dist/app.mjs +3 -2
  34. package/dist/app.mjs.map +1 -1
  35. package/dist/index.d.cts +1 -1
  36. package/dist/index.d.mts +1 -1
  37. package/package.json +2 -2
@@ -1 +1 @@
1
- {"version":3,"file":"action.cjs","names":["proofly","executeProoflyTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { proofly } from \"./app\";\nimport { executeProoflyTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: z.ZodType;\n },\n) {\n return proofly.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output as z.ZodTypeAny,\n async run(input) {\n return def.output.parse(await executeProoflyTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,QAAQ,OAAO;EACpB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAMC,gBAAAA,mBAAmB,MAAM,KAAgC,CAAC;EAC1F;CACF,CAAC;AACH"}
1
+ {"version":3,"file":"action.cjs","names":["proofly","executeProoflyTool"],"sources":["../src/action.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { proofly } from \"./app\";\nimport { executeProoflyTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType, TOutput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: TOutput;\n },\n): AppAction<TInput, TOutput, typeof proofly.credential> {\n return proofly.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output,\n async run(input) {\n return def.output.parse(await executeProoflyTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAOA,SAAgB,OACd,MACA,KAOuD;CACvD,OAAOA,YAAAA,QAAQ,OAAO;EACpB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAMC,gBAAAA,mBAAmB,MAAM,KAAgC,CAAC;EAC1F;CACF,CAAC;AACH"}
@@ -1 +1 @@
1
- {"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { proofly } from \"./app\";\nimport { executeProoflyTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: z.ZodType;\n },\n) {\n return proofly.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output as z.ZodTypeAny,\n async run(input) {\n return def.output.parse(await executeProoflyTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,QAAQ,OAAO;EACpB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,mBAAmB,MAAM,KAAgC,CAAC;EAC1F;CACF,CAAC;AACH"}
1
+ {"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { proofly } from \"./app\";\nimport { executeProoflyTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action<TInput extends z.ZodType, TOutput extends z.ZodType>(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: TInput;\n output: TOutput;\n },\n): AppAction<TInput, TOutput, typeof proofly.credential> {\n return proofly.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output,\n async run(input) {\n return def.output.parse(await executeProoflyTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAOA,SAAgB,OACd,MACA,KAOuD;CACvD,OAAO,QAAQ,OAAO;EACpB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,mBAAmB,MAAM,KAAgC,CAAC;EAC1F;CACF,CAAC;AACH"}
@@ -1,3 +1,4 @@
1
+ require("../app.cjs");
1
2
  const require_action = require("../action.cjs");
2
3
  let zod = require("zod");
3
4
  //#region src/actions/get-activity-logs.ts
@@ -1 +1 @@
1
- {"version":3,"file":"get-activity-logs.cjs","names":["z","action"],"sources":["../../src/actions/get-activity-logs.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProoflyGetActivityLogsInput = z.object({}).describe(\"Request model for retrieving user activity logs. No parameters required.\");\nconst ProoflyGetActivityLogs_ActivityLogEntrySchema = z.object({\n ip: z.string().describe(\"IP address from which the activity originated.\").nullable(),\n date: z.string().describe(\"Timestamp of the activity in 'YYYY-MM-DD HH:MM:SS' format.\").nullable(),\n type: z.string().describe(\"Type of activity (e.g., 'login.success', 'register.success').\").nullable(),\n}).passthrough().describe(\"Represents a single activity log entry.\");\nexport const ProoflyGetActivityLogsOutput = z.object({\n ok: z.boolean().describe(\"Indicates the success status of the request.\").nullable(),\n data: z.array(ProoflyGetActivityLogs_ActivityLogEntrySchema).describe(\"List of activity log entries.\"),\n status: z.number().int().describe(\"HTTP status code of the response.\").nullable(),\n}).passthrough().describe(\"Response model for user activity logs.\");\n\nexport const prooflyGetActivityLogs = action(\"PROOFLY_GET_ACTIVITY_LOGS\", {\n slug: \"proofly-get-activity-logs\",\n name: \"Get Activity Logs\",\n description: \"Tool to retrieve activity logs of the user. Use when needing recent actions; call after confirming authentication.\",\n input: ProoflyGetActivityLogsInput,\n output: ProoflyGetActivityLogsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,8BAA8BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0EAA0E;AAC3I,MAAM,gDAAgDA,IAAAA,EAAE,OAAO;CAC7D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;CACnF,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;CACjG,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS;AACtG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,yCAAyC;AACnE,MAAa,+BAA+BA,IAAAA,EAAE,OAAO;CACnD,IAAIA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;CAClF,MAAMA,IAAAA,EAAE,MAAM,6CAA6C,CAAC,CAAC,SAAS,+BAA+B;CACrG,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;AAClF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wCAAwC;AAElE,MAAa,yBAAyBC,eAAAA,OAAO,6BAA6B;CACxE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-activity-logs.cjs","names":["z","action"],"sources":["../../src/actions/get-activity-logs.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { proofly } from \"../app\";\n\nexport const ProoflyGetActivityLogsInput = z.object({}).describe(\"Request model for retrieving user activity logs. No parameters required.\");\nconst ProoflyGetActivityLogs_ActivityLogEntrySchema = z.object({\n ip: z.string().describe(\"IP address from which the activity originated.\").nullable(),\n date: z.string().describe(\"Timestamp of the activity in 'YYYY-MM-DD HH:MM:SS' format.\").nullable(),\n type: z.string().describe(\"Type of activity (e.g., 'login.success', 'register.success').\").nullable(),\n}).passthrough().describe(\"Represents a single activity log entry.\");\nexport const ProoflyGetActivityLogsOutput = z.object({\n ok: z.boolean().describe(\"Indicates the success status of the request.\").nullable(),\n data: z.array(ProoflyGetActivityLogs_ActivityLogEntrySchema).describe(\"List of activity log entries.\"),\n status: z.number().int().describe(\"HTTP status code of the response.\").nullable(),\n}).passthrough().describe(\"Response model for user activity logs.\");\n\nexport const prooflyGetActivityLogs: AppAction<\n typeof ProoflyGetActivityLogsInput,\n typeof ProoflyGetActivityLogsOutput,\n typeof proofly.credential\n> = action(\"PROOFLY_GET_ACTIVITY_LOGS\", {\n slug: \"proofly-get-activity-logs\",\n name: \"Get Activity Logs\",\n description: \"Tool to retrieve activity logs of the user. Use when needing recent actions; call after confirming authentication.\",\n input: ProoflyGetActivityLogsInput,\n output: ProoflyGetActivityLogsOutput,\n});\n"],"mappings":";;;;AAMA,MAAa,8BAA8BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0EAA0E;AAC3I,MAAM,gDAAgDA,IAAAA,EAAE,OAAO;CAC7D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;CACnF,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;CACjG,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS;AACtG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,yCAAyC;AACnE,MAAa,+BAA+BA,IAAAA,EAAE,OAAO;CACnD,IAAIA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;CAClF,MAAMA,IAAAA,EAAE,MAAM,6CAA6C,CAAC,CAAC,SAAS,+BAA+B;CACrG,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;AAClF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wCAAwC;AAElE,MAAa,yBAITC,eAAAA,OAAO,6BAA6B;CACtC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,3 +1,5 @@
1
+ import { proofly } from "../app.cjs";
2
+ import { AppAction } from "@keystrokehq/keystroke/app";
1
3
  import { z } from "zod";
2
4
 
3
5
  //#region src/actions/get-activity-logs.d.ts
@@ -11,7 +13,7 @@ declare const ProoflyGetActivityLogsOutput: z.ZodObject<{
11
13
  }, z.core.$loose>>;
12
14
  status: z.ZodNullable<z.ZodNumber>;
13
15
  }, z.core.$loose>;
14
- declare const prooflyGetActivityLogs: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
16
+ declare const prooflyGetActivityLogs: AppAction<typeof ProoflyGetActivityLogsInput, typeof ProoflyGetActivityLogsOutput, typeof proofly.credential>;
15
17
  //#endregion
16
18
  export { prooflyGetActivityLogs };
17
19
  //# sourceMappingURL=get-activity-logs.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-activity-logs.d.cts","names":[],"sources":["../../src/actions/get-activity-logs.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAM3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;;cAM5B,sBAAA,gCAAsB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-activity-logs.d.cts","names":[],"sources":["../../src/actions/get-activity-logs.ts"],"mappings":";;;;;cAMa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAM3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;;cAM5B,sBAAA,EAAwB,SAAA,QAC5B,2BAAA,SACA,4BAAA,SACA,OAAA,CAAQ,UAAA"}
@@ -1,3 +1,5 @@
1
+ import { proofly } from "../app.mjs";
2
+ import { AppAction } from "@keystrokehq/keystroke/app";
1
3
  import { z } from "zod";
2
4
 
3
5
  //#region src/actions/get-activity-logs.d.ts
@@ -11,7 +13,7 @@ declare const ProoflyGetActivityLogsOutput: z.ZodObject<{
11
13
  }, z.core.$loose>>;
12
14
  status: z.ZodNullable<z.ZodNumber>;
13
15
  }, z.core.$loose>;
14
- declare const prooflyGetActivityLogs: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
16
+ declare const prooflyGetActivityLogs: AppAction<typeof ProoflyGetActivityLogsInput, typeof ProoflyGetActivityLogsOutput, typeof proofly.credential>;
15
17
  //#endregion
16
18
  export { prooflyGetActivityLogs };
17
19
  //# sourceMappingURL=get-activity-logs.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-activity-logs.d.mts","names":[],"sources":["../../src/actions/get-activity-logs.ts"],"mappings":";;;cAIa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAM3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;;cAM5B,sBAAA,gCAAsB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-activity-logs.d.mts","names":[],"sources":["../../src/actions/get-activity-logs.ts"],"mappings":";;;;;cAMa,2BAAA,EAA2B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAM3B,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;;;;;cAM5B,sBAAA,EAAwB,SAAA,QAC5B,2BAAA,SACA,4BAAA,SACA,OAAA,CAAQ,UAAA"}
@@ -1,3 +1,4 @@
1
+ import "../app.mjs";
1
2
  import { action } from "../action.mjs";
2
3
  import { z } from "zod";
3
4
  //#region src/actions/get-activity-logs.ts
@@ -1 +1 @@
1
- {"version":3,"file":"get-activity-logs.mjs","names":[],"sources":["../../src/actions/get-activity-logs.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProoflyGetActivityLogsInput = z.object({}).describe(\"Request model for retrieving user activity logs. No parameters required.\");\nconst ProoflyGetActivityLogs_ActivityLogEntrySchema = z.object({\n ip: z.string().describe(\"IP address from which the activity originated.\").nullable(),\n date: z.string().describe(\"Timestamp of the activity in 'YYYY-MM-DD HH:MM:SS' format.\").nullable(),\n type: z.string().describe(\"Type of activity (e.g., 'login.success', 'register.success').\").nullable(),\n}).passthrough().describe(\"Represents a single activity log entry.\");\nexport const ProoflyGetActivityLogsOutput = z.object({\n ok: z.boolean().describe(\"Indicates the success status of the request.\").nullable(),\n data: z.array(ProoflyGetActivityLogs_ActivityLogEntrySchema).describe(\"List of activity log entries.\"),\n status: z.number().int().describe(\"HTTP status code of the response.\").nullable(),\n}).passthrough().describe(\"Response model for user activity logs.\");\n\nexport const prooflyGetActivityLogs = action(\"PROOFLY_GET_ACTIVITY_LOGS\", {\n slug: \"proofly-get-activity-logs\",\n name: \"Get Activity Logs\",\n description: \"Tool to retrieve activity logs of the user. Use when needing recent actions; call after confirming authentication.\",\n input: ProoflyGetActivityLogsInput,\n output: ProoflyGetActivityLogsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,8BAA8B,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0EAA0E;AAC3I,MAAM,gDAAgD,EAAE,OAAO;CAC7D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;CACnF,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;CACjG,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS;AACtG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,yCAAyC;AAOnE,MAAa,yBAAyB,OAAO,6BAA6B;CACxE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAX0C,EAAE,OAAO;EACnD,IAAI,EAAE,QAAQ,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;EAClF,MAAM,EAAE,MAAM,6CAA6C,CAAC,CAAC,SAAS,+BAA+B;EACrG,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;CAClF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wCAOhB;AACV,CAAC"}
1
+ {"version":3,"file":"get-activity-logs.mjs","names":[],"sources":["../../src/actions/get-activity-logs.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { proofly } from \"../app\";\n\nexport const ProoflyGetActivityLogsInput = z.object({}).describe(\"Request model for retrieving user activity logs. No parameters required.\");\nconst ProoflyGetActivityLogs_ActivityLogEntrySchema = z.object({\n ip: z.string().describe(\"IP address from which the activity originated.\").nullable(),\n date: z.string().describe(\"Timestamp of the activity in 'YYYY-MM-DD HH:MM:SS' format.\").nullable(),\n type: z.string().describe(\"Type of activity (e.g., 'login.success', 'register.success').\").nullable(),\n}).passthrough().describe(\"Represents a single activity log entry.\");\nexport const ProoflyGetActivityLogsOutput = z.object({\n ok: z.boolean().describe(\"Indicates the success status of the request.\").nullable(),\n data: z.array(ProoflyGetActivityLogs_ActivityLogEntrySchema).describe(\"List of activity log entries.\"),\n status: z.number().int().describe(\"HTTP status code of the response.\").nullable(),\n}).passthrough().describe(\"Response model for user activity logs.\");\n\nexport const prooflyGetActivityLogs: AppAction<\n typeof ProoflyGetActivityLogsInput,\n typeof ProoflyGetActivityLogsOutput,\n typeof proofly.credential\n> = action(\"PROOFLY_GET_ACTIVITY_LOGS\", {\n slug: \"proofly-get-activity-logs\",\n name: \"Get Activity Logs\",\n description: \"Tool to retrieve activity logs of the user. Use when needing recent actions; call after confirming authentication.\",\n input: ProoflyGetActivityLogsInput,\n output: ProoflyGetActivityLogsOutput,\n});\n"],"mappings":";;;;AAMA,MAAa,8BAA8B,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,0EAA0E;AAC3I,MAAM,gDAAgD,EAAE,OAAO;CAC7D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;CACnF,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;CACjG,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS;AACtG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,yCAAyC;AAOnE,MAAa,yBAIT,OAAO,6BAA6B;CACtC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAf0C,EAAE,OAAO;EACnD,IAAI,EAAE,QAAQ,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;EAClF,MAAM,EAAE,MAAM,6CAA6C,CAAC,CAAC,SAAS,+BAA+B;EACrG,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;CAClF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wCAWhB;AACV,CAAC"}
@@ -1,3 +1,4 @@
1
+ require("../app.cjs");
1
2
  const require_action = require("../action.cjs");
2
3
  let zod = require("zod");
3
4
  //#region src/actions/get-campaigns.ts
@@ -1 +1 @@
1
- {"version":3,"file":"get-campaigns.cjs","names":["z","action"],"sources":["../../src/actions/get-campaigns.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProoflyGetCampaignsInput = z.object({}).describe(\"Request model for GetCampaigns. No parameters required.\");\nconst ProoflyGetCampaigns_CampaignSchema = z.object({\n id: z.number().int().describe(\"Unique ID of the campaign\").nullable(),\n name: z.string().describe(\"Name of the campaign\").nullable(),\n status: z.string().describe(\"Current status of the campaign\").nullable(),\n created_at: z.string().describe(\"Creation timestamp in ISO8601 format\").nullable(),\n updated_at: z.string().describe(\"Last update timestamp in ISO8601 format\").nullable(),\n}).passthrough().describe(\"Schema for a single Proofly campaign.\");\nexport const ProoflyGetCampaignsOutput = z.object({\n campaigns: z.array(ProoflyGetCampaigns_CampaignSchema).describe(\"List of campaigns retrieved from the account\"),\n}).passthrough().describe(\"Response model for GetCampaigns.\");\n\nexport const prooflyGetCampaigns = action(\"PROOFLY_GET_CAMPAIGNS\", {\n slug: \"proofly-get-campaigns\",\n name: \"Get Proofly Campaigns\",\n description: \"Tool to retrieve all Proofly campaigns. Use after authenticating to list your campaigns.\",\n input: ProoflyGetCampaignsInput,\n output: ProoflyGetCampaignsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,yDAAyD;AACvH,MAAM,qCAAqCA,IAAAA,EAAE,OAAO;CAClD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;CACpE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAC3D,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;CACvE,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;CACjF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;AACtF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uCAAuC;AACjE,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,EAChD,WAAWA,IAAAA,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,8CAA8C,EAChH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,kCAAkC;AAE5D,MAAa,sBAAsBC,eAAAA,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-campaigns.cjs","names":["z","action"],"sources":["../../src/actions/get-campaigns.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { proofly } from \"../app\";\n\nexport const ProoflyGetCampaignsInput = z.object({}).describe(\"Request model for GetCampaigns. No parameters required.\");\nconst ProoflyGetCampaigns_CampaignSchema = z.object({\n id: z.number().int().describe(\"Unique ID of the campaign\").nullable(),\n name: z.string().describe(\"Name of the campaign\").nullable(),\n status: z.string().describe(\"Current status of the campaign\").nullable(),\n created_at: z.string().describe(\"Creation timestamp in ISO8601 format\").nullable(),\n updated_at: z.string().describe(\"Last update timestamp in ISO8601 format\").nullable(),\n}).passthrough().describe(\"Schema for a single Proofly campaign.\");\nexport const ProoflyGetCampaignsOutput = z.object({\n campaigns: z.array(ProoflyGetCampaigns_CampaignSchema).describe(\"List of campaigns retrieved from the account\"),\n}).passthrough().describe(\"Response model for GetCampaigns.\");\n\nexport const prooflyGetCampaigns: AppAction<\n typeof ProoflyGetCampaignsInput,\n typeof ProoflyGetCampaignsOutput,\n typeof proofly.credential\n> = action(\"PROOFLY_GET_CAMPAIGNS\", {\n slug: \"proofly-get-campaigns\",\n name: \"Get Proofly Campaigns\",\n description: \"Tool to retrieve all Proofly campaigns. Use after authenticating to list your campaigns.\",\n input: ProoflyGetCampaignsInput,\n output: ProoflyGetCampaignsOutput,\n});\n"],"mappings":";;;;AAMA,MAAa,2BAA2BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,yDAAyD;AACvH,MAAM,qCAAqCA,IAAAA,EAAE,OAAO;CAClD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;CACpE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAC3D,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;CACvE,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;CACjF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;AACtF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uCAAuC;AACjE,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,EAChD,WAAWA,IAAAA,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,8CAA8C,EAChH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,kCAAkC;AAE5D,MAAa,sBAITC,eAAAA,OAAO,yBAAyB;CAClC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,3 +1,5 @@
1
+ import { proofly } from "../app.cjs";
2
+ import { AppAction } from "@keystrokehq/keystroke/app";
1
3
  import { z } from "zod";
2
4
 
3
5
  //#region src/actions/get-campaigns.d.ts
@@ -11,7 +13,7 @@ declare const ProoflyGetCampaignsOutput: z.ZodObject<{
11
13
  updated_at: z.ZodNullable<z.ZodString>;
12
14
  }, z.core.$loose>>;
13
15
  }, z.core.$loose>;
14
- declare const prooflyGetCampaigns: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
16
+ declare const prooflyGetCampaigns: AppAction<typeof ProoflyGetCampaignsInput, typeof ProoflyGetCampaignsOutput, typeof proofly.credential>;
15
17
  //#endregion
16
18
  export { prooflyGetCampaigns };
17
19
  //# sourceMappingURL=get-campaigns.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-campaigns.d.cts","names":[],"sources":["../../src/actions/get-campaigns.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-campaigns.d.cts","names":[],"sources":["../../src/actions/get-campaigns.ts"],"mappings":";;;;;cAMa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;cAIzB,mBAAA,EAAqB,SAAA,QACzB,wBAAA,SACA,yBAAA,SACA,OAAA,CAAQ,UAAA"}
@@ -1,3 +1,5 @@
1
+ import { proofly } from "../app.mjs";
2
+ import { AppAction } from "@keystrokehq/keystroke/app";
1
3
  import { z } from "zod";
2
4
 
3
5
  //#region src/actions/get-campaigns.d.ts
@@ -11,7 +13,7 @@ declare const ProoflyGetCampaignsOutput: z.ZodObject<{
11
13
  updated_at: z.ZodNullable<z.ZodString>;
12
14
  }, z.core.$loose>>;
13
15
  }, z.core.$loose>;
14
- declare const prooflyGetCampaigns: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
16
+ declare const prooflyGetCampaigns: AppAction<typeof ProoflyGetCampaignsInput, typeof ProoflyGetCampaignsOutput, typeof proofly.credential>;
15
17
  //#endregion
16
18
  export { prooflyGetCampaigns };
17
19
  //# sourceMappingURL=get-campaigns.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-campaigns.d.mts","names":[],"sources":["../../src/actions/get-campaigns.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-campaigns.d.mts","names":[],"sources":["../../src/actions/get-campaigns.ts"],"mappings":";;;;;cAMa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAQxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;cAIzB,mBAAA,EAAqB,SAAA,QACzB,wBAAA,SACA,yBAAA,SACA,OAAA,CAAQ,UAAA"}
@@ -1,3 +1,4 @@
1
+ import "../app.mjs";
1
2
  import { action } from "../action.mjs";
2
3
  import { z } from "zod";
3
4
  //#region src/actions/get-campaigns.ts
@@ -1 +1 @@
1
- {"version":3,"file":"get-campaigns.mjs","names":[],"sources":["../../src/actions/get-campaigns.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProoflyGetCampaignsInput = z.object({}).describe(\"Request model for GetCampaigns. No parameters required.\");\nconst ProoflyGetCampaigns_CampaignSchema = z.object({\n id: z.number().int().describe(\"Unique ID of the campaign\").nullable(),\n name: z.string().describe(\"Name of the campaign\").nullable(),\n status: z.string().describe(\"Current status of the campaign\").nullable(),\n created_at: z.string().describe(\"Creation timestamp in ISO8601 format\").nullable(),\n updated_at: z.string().describe(\"Last update timestamp in ISO8601 format\").nullable(),\n}).passthrough().describe(\"Schema for a single Proofly campaign.\");\nexport const ProoflyGetCampaignsOutput = z.object({\n campaigns: z.array(ProoflyGetCampaigns_CampaignSchema).describe(\"List of campaigns retrieved from the account\"),\n}).passthrough().describe(\"Response model for GetCampaigns.\");\n\nexport const prooflyGetCampaigns = action(\"PROOFLY_GET_CAMPAIGNS\", {\n slug: \"proofly-get-campaigns\",\n name: \"Get Proofly Campaigns\",\n description: \"Tool to retrieve all Proofly campaigns. Use after authenticating to list your campaigns.\",\n input: ProoflyGetCampaignsInput,\n output: ProoflyGetCampaignsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2B,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,yDAAyD;AACvH,MAAM,qCAAqC,EAAE,OAAO;CAClD,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;CACpE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAC3D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;CACvE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;CACjF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;AACtF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uCAAuC;AAKjE,MAAa,sBAAsB,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATuC,EAAE,OAAO,EAChD,WAAW,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,8CAA8C,EAChH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,kCAOhB;AACV,CAAC"}
1
+ {"version":3,"file":"get-campaigns.mjs","names":[],"sources":["../../src/actions/get-campaigns.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { proofly } from \"../app\";\n\nexport const ProoflyGetCampaignsInput = z.object({}).describe(\"Request model for GetCampaigns. No parameters required.\");\nconst ProoflyGetCampaigns_CampaignSchema = z.object({\n id: z.number().int().describe(\"Unique ID of the campaign\").nullable(),\n name: z.string().describe(\"Name of the campaign\").nullable(),\n status: z.string().describe(\"Current status of the campaign\").nullable(),\n created_at: z.string().describe(\"Creation timestamp in ISO8601 format\").nullable(),\n updated_at: z.string().describe(\"Last update timestamp in ISO8601 format\").nullable(),\n}).passthrough().describe(\"Schema for a single Proofly campaign.\");\nexport const ProoflyGetCampaignsOutput = z.object({\n campaigns: z.array(ProoflyGetCampaigns_CampaignSchema).describe(\"List of campaigns retrieved from the account\"),\n}).passthrough().describe(\"Response model for GetCampaigns.\");\n\nexport const prooflyGetCampaigns: AppAction<\n typeof ProoflyGetCampaignsInput,\n typeof ProoflyGetCampaignsOutput,\n typeof proofly.credential\n> = action(\"PROOFLY_GET_CAMPAIGNS\", {\n slug: \"proofly-get-campaigns\",\n name: \"Get Proofly Campaigns\",\n description: \"Tool to retrieve all Proofly campaigns. Use after authenticating to list your campaigns.\",\n input: ProoflyGetCampaignsInput,\n output: ProoflyGetCampaignsOutput,\n});\n"],"mappings":";;;;AAMA,MAAa,2BAA2B,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,yDAAyD;AACvH,MAAM,qCAAqC,EAAE,OAAO;CAClD,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;CACpE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAC3D,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;CACvE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS;CACjF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS;AACtF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,uCAAuC;AAKjE,MAAa,sBAIT,OAAO,yBAAyB;CAClC,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAbuC,EAAE,OAAO,EAChD,WAAW,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,8CAA8C,EAChH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,kCAWhB;AACV,CAAC"}
@@ -1,3 +1,4 @@
1
+ require("../app.cjs");
1
2
  const require_action = require("../action.cjs");
2
3
  let zod = require("zod");
3
4
  //#region src/actions/get-user.ts
@@ -1 +1 @@
1
- {"version":3,"file":"get-user.cjs","names":["z","action"],"sources":["../../src/actions/get-user.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProoflyGetUserInput = z.object({}).describe(\"No input parameters required. Authentication header is supplied via metadata.\");\nconst ProoflyGetUser_UserMetaSchema = z.object({\n logins: z.number().int().describe(\"Number of times the user has logged in\").nullable(),\n registered: z.string().describe(\"Account registration timestamp\").nullable(),\n}).passthrough();\nconst ProoflyGetUser_UserPixelSchema = z.object({\n key: z.string().describe(\"User's unique pixel tracking key\").nullable(),\n debug: z.boolean().describe(\"Debug mode status for the pixel\").nullable(),\n}).passthrough();\nconst ProoflyGetUser_UserImpressionsSchema = z.object({\n total: z.number().int().describe(\"Total number of impressions\").nullable(),\n period: z.number().int().describe(\"Number of impressions in the current period\").nullable(),\n}).passthrough();\nexport const ProoflyGetUserOutput = z.object({\n meta: ProoflyGetUser_UserMetaSchema.nullable(),\n name: z.string().describe(\"User's full name\").nullable(),\n email: z.string().describe(\"User's email address\").nullable(),\n pixel: ProoflyGetUser_UserPixelSchema.nullable(),\n impressions: ProoflyGetUser_UserImpressionsSchema.nullable(),\n}).passthrough();\n\nexport const prooflyGetUser = action(\"PROOFLY_GET_USER\", {\n slug: \"proofly-get-user\",\n name: \"Get Proofly User Info\",\n description: \"Tool to retrieve general information of the authenticated user. Use after authentication to fetch user profile details.\",\n input: ProoflyGetUserInput,\n output: ProoflyGetUserOutput,\n});\n"],"mappings":";;;AAIA,MAAa,sBAAsBA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,+EAA+E;AACxI,MAAM,gCAAgCA,IAAAA,EAAE,OAAO;CAC7C,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;CACrF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;AAC7E,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,iCAAiCA,IAAAA,EAAE,OAAO;CAC9C,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CACtE,OAAOA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;AAC1E,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,uCAAuCA,IAAAA,EAAE,OAAO;CACpD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;CACzE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS;AAC5F,CAAC,CAAC,CAAC,YAAY;AACf,MAAa,uBAAuBA,IAAAA,EAAE,OAAO;CAC3C,MAAM,8BAA8B,SAAS;CAC7C,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;CACvD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAC5D,OAAO,+BAA+B,SAAS;CAC/C,aAAa,qCAAqC,SAAS;AAC7D,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,iBAAiBC,eAAAA,OAAO,oBAAoB;CACvD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"get-user.cjs","names":["z","action"],"sources":["../../src/actions/get-user.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { proofly } from \"../app\";\n\nexport const ProoflyGetUserInput = z.object({}).describe(\"No input parameters required. Authentication header is supplied via metadata.\");\nconst ProoflyGetUser_UserMetaSchema = z.object({\n logins: z.number().int().describe(\"Number of times the user has logged in\").nullable(),\n registered: z.string().describe(\"Account registration timestamp\").nullable(),\n}).passthrough();\nconst ProoflyGetUser_UserPixelSchema = z.object({\n key: z.string().describe(\"User's unique pixel tracking key\").nullable(),\n debug: z.boolean().describe(\"Debug mode status for the pixel\").nullable(),\n}).passthrough();\nconst ProoflyGetUser_UserImpressionsSchema = z.object({\n total: z.number().int().describe(\"Total number of impressions\").nullable(),\n period: z.number().int().describe(\"Number of impressions in the current period\").nullable(),\n}).passthrough();\nexport const ProoflyGetUserOutput = z.object({\n meta: ProoflyGetUser_UserMetaSchema.nullable(),\n name: z.string().describe(\"User's full name\").nullable(),\n email: z.string().describe(\"User's email address\").nullable(),\n pixel: ProoflyGetUser_UserPixelSchema.nullable(),\n impressions: ProoflyGetUser_UserImpressionsSchema.nullable(),\n}).passthrough();\n\nexport const prooflyGetUser: AppAction<\n typeof ProoflyGetUserInput,\n typeof ProoflyGetUserOutput,\n typeof proofly.credential\n> = action(\"PROOFLY_GET_USER\", {\n slug: \"proofly-get-user\",\n name: \"Get Proofly User Info\",\n description: \"Tool to retrieve general information of the authenticated user. Use after authentication to fetch user profile details.\",\n input: ProoflyGetUserInput,\n output: ProoflyGetUserOutput,\n});\n"],"mappings":";;;;AAMA,MAAa,sBAAsBA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,+EAA+E;AACxI,MAAM,gCAAgCA,IAAAA,EAAE,OAAO;CAC7C,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;CACrF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;AAC7E,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,iCAAiCA,IAAAA,EAAE,OAAO;CAC9C,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CACtE,OAAOA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;AAC1E,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,uCAAuCA,IAAAA,EAAE,OAAO;CACpD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;CACzE,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS;AAC5F,CAAC,CAAC,CAAC,YAAY;AACf,MAAa,uBAAuBA,IAAAA,EAAE,OAAO;CAC3C,MAAM,8BAA8B,SAAS;CAC7C,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;CACvD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;CAC5D,OAAO,+BAA+B,SAAS;CAC/C,aAAa,qCAAqC,SAAS;AAC7D,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,iBAITC,eAAAA,OAAO,oBAAoB;CAC7B,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,3 +1,5 @@
1
+ import { proofly } from "../app.cjs";
2
+ import { AppAction } from "@keystrokehq/keystroke/app";
1
3
  import { z } from "zod";
2
4
 
3
5
  //#region src/actions/get-user.d.ts
@@ -18,7 +20,7 @@ declare const ProoflyGetUserOutput: z.ZodObject<{
18
20
  period: z.ZodNullable<z.ZodNumber>;
19
21
  }, z.core.$loose>>;
20
22
  }, z.core.$loose>;
21
- declare const prooflyGetUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
23
+ declare const prooflyGetUser: AppAction<typeof ProoflyGetUserInput, typeof ProoflyGetUserOutput, typeof proofly.credential>;
22
24
  //#endregion
23
25
  export { prooflyGetUser };
24
26
  //# sourceMappingURL=get-user.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-user.d.cts","names":[],"sources":["../../src/actions/get-user.ts"],"mappings":";;;cAIa,mBAAA,EAAmB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAanB,oBAAA,EAAoB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;cAQpB,cAAA,gCAAc,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-user.d.cts","names":[],"sources":["../../src/actions/get-user.ts"],"mappings":";;;;;cAMa,mBAAA,EAAmB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAanB,oBAAA,EAAoB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;cAQpB,cAAA,EAAgB,SAAA,QACpB,mBAAA,SACA,oBAAA,SACA,OAAA,CAAQ,UAAA"}
@@ -1,3 +1,5 @@
1
+ import { proofly } from "../app.mjs";
2
+ import { AppAction } from "@keystrokehq/keystroke/app";
1
3
  import { z } from "zod";
2
4
 
3
5
  //#region src/actions/get-user.d.ts
@@ -18,7 +20,7 @@ declare const ProoflyGetUserOutput: z.ZodObject<{
18
20
  period: z.ZodNullable<z.ZodNumber>;
19
21
  }, z.core.$loose>>;
20
22
  }, z.core.$loose>;
21
- declare const prooflyGetUser: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
23
+ declare const prooflyGetUser: AppAction<typeof ProoflyGetUserInput, typeof ProoflyGetUserOutput, typeof proofly.credential>;
22
24
  //#endregion
23
25
  export { prooflyGetUser };
24
26
  //# sourceMappingURL=get-user.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"get-user.d.mts","names":[],"sources":["../../src/actions/get-user.ts"],"mappings":";;;cAIa,mBAAA,EAAmB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAanB,oBAAA,EAAoB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;cAQpB,cAAA,gCAAc,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"get-user.d.mts","names":[],"sources":["../../src/actions/get-user.ts"],"mappings":";;;;;cAMa,mBAAA,EAAmB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAanB,oBAAA,EAAoB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;cAQpB,cAAA,EAAgB,SAAA,QACpB,mBAAA,SACA,oBAAA,SACA,OAAA,CAAQ,UAAA"}
@@ -1,3 +1,4 @@
1
+ import "../app.mjs";
1
2
  import { action } from "../action.mjs";
2
3
  import { z } from "zod";
3
4
  //#region src/actions/get-user.ts
@@ -1 +1 @@
1
- {"version":3,"file":"get-user.mjs","names":[],"sources":["../../src/actions/get-user.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const ProoflyGetUserInput = z.object({}).describe(\"No input parameters required. Authentication header is supplied via metadata.\");\nconst ProoflyGetUser_UserMetaSchema = z.object({\n logins: z.number().int().describe(\"Number of times the user has logged in\").nullable(),\n registered: z.string().describe(\"Account registration timestamp\").nullable(),\n}).passthrough();\nconst ProoflyGetUser_UserPixelSchema = z.object({\n key: z.string().describe(\"User's unique pixel tracking key\").nullable(),\n debug: z.boolean().describe(\"Debug mode status for the pixel\").nullable(),\n}).passthrough();\nconst ProoflyGetUser_UserImpressionsSchema = z.object({\n total: z.number().int().describe(\"Total number of impressions\").nullable(),\n period: z.number().int().describe(\"Number of impressions in the current period\").nullable(),\n}).passthrough();\nexport const ProoflyGetUserOutput = z.object({\n meta: ProoflyGetUser_UserMetaSchema.nullable(),\n name: z.string().describe(\"User's full name\").nullable(),\n email: z.string().describe(\"User's email address\").nullable(),\n pixel: ProoflyGetUser_UserPixelSchema.nullable(),\n impressions: ProoflyGetUser_UserImpressionsSchema.nullable(),\n}).passthrough();\n\nexport const prooflyGetUser = action(\"PROOFLY_GET_USER\", {\n slug: \"proofly-get-user\",\n name: \"Get Proofly User Info\",\n description: \"Tool to retrieve general information of the authenticated user. Use after authentication to fetch user profile details.\",\n input: ProoflyGetUserInput,\n output: ProoflyGetUserOutput,\n});\n"],"mappings":";;;AAIA,MAAa,sBAAsB,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,+EAA+E;AACxI,MAAM,gCAAgC,EAAE,OAAO;CAC7C,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;CACrF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;AAC7E,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,iCAAiC,EAAE,OAAO;CAC9C,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CACtE,OAAO,EAAE,QAAQ,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;AAC1E,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,uCAAuC,EAAE,OAAO;CACpD,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;CACzE,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS;AAC5F,CAAC,CAAC,CAAC,YAAY;AASf,MAAa,iBAAiB,OAAO,oBAAoB;CACvD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAbkC,EAAE,OAAO;EAC3C,MAAM,8BAA8B,SAAS;EAC7C,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;EACvD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;EAC5D,OAAO,+BAA+B,SAAS;EAC/C,aAAa,qCAAqC,SAAS;CAC7D,CAAC,CAAC,CAAC,YAOO;AACV,CAAC"}
1
+ {"version":3,"file":"get-user.mjs","names":[],"sources":["../../src/actions/get-user.ts"],"sourcesContent":["import type { AppAction } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nimport { action } from \"../action\";\nimport { proofly } from \"../app\";\n\nexport const ProoflyGetUserInput = z.object({}).describe(\"No input parameters required. Authentication header is supplied via metadata.\");\nconst ProoflyGetUser_UserMetaSchema = z.object({\n logins: z.number().int().describe(\"Number of times the user has logged in\").nullable(),\n registered: z.string().describe(\"Account registration timestamp\").nullable(),\n}).passthrough();\nconst ProoflyGetUser_UserPixelSchema = z.object({\n key: z.string().describe(\"User's unique pixel tracking key\").nullable(),\n debug: z.boolean().describe(\"Debug mode status for the pixel\").nullable(),\n}).passthrough();\nconst ProoflyGetUser_UserImpressionsSchema = z.object({\n total: z.number().int().describe(\"Total number of impressions\").nullable(),\n period: z.number().int().describe(\"Number of impressions in the current period\").nullable(),\n}).passthrough();\nexport const ProoflyGetUserOutput = z.object({\n meta: ProoflyGetUser_UserMetaSchema.nullable(),\n name: z.string().describe(\"User's full name\").nullable(),\n email: z.string().describe(\"User's email address\").nullable(),\n pixel: ProoflyGetUser_UserPixelSchema.nullable(),\n impressions: ProoflyGetUser_UserImpressionsSchema.nullable(),\n}).passthrough();\n\nexport const prooflyGetUser: AppAction<\n typeof ProoflyGetUserInput,\n typeof ProoflyGetUserOutput,\n typeof proofly.credential\n> = action(\"PROOFLY_GET_USER\", {\n slug: \"proofly-get-user\",\n name: \"Get Proofly User Info\",\n description: \"Tool to retrieve general information of the authenticated user. Use after authentication to fetch user profile details.\",\n input: ProoflyGetUserInput,\n output: ProoflyGetUserOutput,\n});\n"],"mappings":";;;;AAMA,MAAa,sBAAsB,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,+EAA+E;AACxI,MAAM,gCAAgC,EAAE,OAAO;CAC7C,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;CACrF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS;AAC7E,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,iCAAiC,EAAE,OAAO;CAC9C,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CACtE,OAAO,EAAE,QAAQ,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;AAC1E,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,uCAAuC,EAAE,OAAO;CACpD,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;CACzE,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS;AAC5F,CAAC,CAAC,CAAC,YAAY;AASf,MAAa,iBAIT,OAAO,oBAAoB;CAC7B,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAjBkC,EAAE,OAAO;EAC3C,MAAM,8BAA8B,SAAS;EAC7C,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kBAAkB,CAAC,CAAC,SAAS;EACvD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,sBAAsB,CAAC,CAAC,SAAS;EAC5D,OAAO,+BAA+B,SAAS;EAC/C,aAAa,qCAAqC,SAAS;CAC7D,CAAC,CAAC,CAAC,YAWO;AACV,CAAC"}
package/dist/app.cjs CHANGED
@@ -1,7 +1,10 @@
1
+ let _keystrokehq_keystroke_app = require("@keystrokehq/keystroke/app");
1
2
  //#region src/app.ts
2
- const proofly = (0, require("@keystrokehq/keystroke/app").defineApp)({
3
+ const credential = { generic_api_key: require("zod").z.string() };
4
+ const proofly = (0, _keystrokehq_keystroke_app.defineApp)({
3
5
  slug: "proofly",
4
- auth: "keystroke"
6
+ auth: "keystroke",
7
+ credential
5
8
  });
6
9
  //#endregion
7
10
  exports.proofly = proofly;
package/dist/app.cjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const proofly = defineApp({\n slug: \"proofly\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,WAAA,uCAAA,CAAA,CAAA,UAAA,CAAoB;CAC/B,MAAM;CACN,MAAM;AACR,CAAC"}
1
+ {"version":3,"file":"app.cjs","names":["z"],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp, type KeystrokeApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nconst credential = {\n generic_api_key: z.string(),\n};\n\nexport const proofly: KeystrokeApp<\"proofly\", typeof credential> = defineApp({\n slug: \"proofly\",\n auth: \"keystroke\",\n credential,\n});\n"],"mappings":";;AAGA,MAAM,aAAa,EACjB,8BAAiBA,CAAAA,CAAAA,EAAE,OAAO,EAC5B;AAEA,MAAa,WAAA,GAAA,2BAAA,UAAA,CAAgE;CAC3E,MAAM;CACN,MAAM;CACN;AACF,CAAC"}
package/dist/app.d.cts CHANGED
@@ -1,5 +1,11 @@
1
+ import { KeystrokeApp } from "@keystrokehq/keystroke/app";
2
+ import { z } from "zod";
3
+
1
4
  //#region src/app.d.ts
2
- declare const proofly: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
5
+ declare const credential: {
6
+ generic_api_key: z.ZodString;
7
+ };
8
+ declare const proofly: KeystrokeApp<"proofly", typeof credential>;
3
9
  //#endregion
4
10
  export { proofly };
5
11
  //# sourceMappingURL=app.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,OAAA,6BAAO,GAAA,+BAAA,UAAA"}
1
+ {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";;;;cAGM,UAAA;mBAEL,CAAA,CAAA,SAAA;AAAA;AAAA,cAEY,OAAA,EAAS,YAAY,mBAAmB,UAAA"}
package/dist/app.d.mts CHANGED
@@ -1,5 +1,11 @@
1
+ import { KeystrokeApp } from "@keystrokehq/keystroke/app";
2
+ import { z } from "zod";
3
+
1
4
  //#region src/app.d.ts
2
- declare const proofly: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
5
+ declare const credential: {
6
+ generic_api_key: z.ZodString;
7
+ };
8
+ declare const proofly: KeystrokeApp<"proofly", typeof credential>;
3
9
  //#endregion
4
10
  export { proofly };
5
11
  //# sourceMappingURL=app.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,OAAA,6BAAO,GAAA,+BAAA,UAAA"}
1
+ {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";;;;cAGM,UAAA;mBAEL,CAAA,CAAA,SAAA;AAAA;AAAA,cAEY,OAAA,EAAS,YAAY,mBAAmB,UAAA"}
package/dist/app.mjs CHANGED
@@ -1,8 +1,9 @@
1
1
  import { defineApp } from "@keystrokehq/keystroke/app";
2
- //#region src/app.ts
2
+ import { z } from "zod";
3
3
  const proofly = defineApp({
4
4
  slug: "proofly",
5
- auth: "keystroke"
5
+ auth: "keystroke",
6
+ credential: { generic_api_key: z.string() }
6
7
  });
7
8
  //#endregion
8
9
  export { proofly };
package/dist/app.mjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const proofly = defineApp({\n slug: \"proofly\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,UAAU,UAAU;CAC/B,MAAM;CACN,MAAM;AACR,CAAC"}
1
+ {"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp, type KeystrokeApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nconst credential = {\n generic_api_key: z.string(),\n};\n\nexport const proofly: KeystrokeApp<\"proofly\", typeof credential> = defineApp({\n slug: \"proofly\",\n auth: \"keystroke\",\n credential,\n});\n"],"mappings":";;AAOA,MAAa,UAAsD,UAAU;CAC3E,MAAM;CACN,MAAM;CACN,cANA,iBAAiB,EAAE,OAAO,EAM1B;AACF,CAAC"}
package/dist/index.d.cts CHANGED
@@ -1,6 +1,6 @@
1
+ import { proofly } from "./app.cjs";
1
2
  import { prooflyGetActivityLogs } from "./actions/get-activity-logs.cjs";
2
3
  import { prooflyGetCampaigns } from "./actions/get-campaigns.cjs";
3
4
  import { prooflyGetUser } from "./actions/get-user.cjs";
4
- import { proofly } from "./app.cjs";
5
5
  import { prooflyCatalog } from "./catalog.cjs";
6
6
  export { proofly, prooflyCatalog, prooflyGetActivityLogs, prooflyGetCampaigns, prooflyGetUser };
package/dist/index.d.mts CHANGED
@@ -1,6 +1,6 @@
1
+ import { proofly } from "./app.mjs";
1
2
  import { prooflyGetActivityLogs } from "./actions/get-activity-logs.mjs";
2
3
  import { prooflyGetCampaigns } from "./actions/get-campaigns.mjs";
3
4
  import { prooflyGetUser } from "./actions/get-user.mjs";
4
- import { proofly } from "./app.mjs";
5
5
  import { prooflyCatalog } from "./catalog.mjs";
6
6
  export { proofly, prooflyCatalog, prooflyGetActivityLogs, prooflyGetCampaigns, prooflyGetUser };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/proofly",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -31,7 +31,7 @@
31
31
  }
32
32
  },
33
33
  "peerDependencies": {
34
- "@keystrokehq/keystroke": ">=0.1.4",
34
+ "@keystrokehq/keystroke": ">=0.1.104",
35
35
  "zod": "^4.4.3"
36
36
  },
37
37
  "devDependencies": {