@keystrokehq/pointagram 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 (55) hide show
  1. package/dist/actions/add-score.cjs +2 -2
  2. package/dist/actions/add-score.cjs.map +1 -1
  3. package/dist/actions/add-score.d.cts +3 -2
  4. package/dist/actions/add-score.d.mts +3 -2
  5. package/dist/actions/add-score.mjs +2 -2
  6. package/dist/actions/add-score.mjs.map +1 -1
  7. package/dist/actions/list-competition-players.cjs +2 -2
  8. package/dist/actions/list-competition-players.cjs.map +1 -1
  9. package/dist/actions/list-competition-players.d.cts +2 -2
  10. package/dist/actions/list-competition-players.d.mts +2 -2
  11. package/dist/actions/list-competition-players.mjs +2 -2
  12. package/dist/actions/list-competition-players.mjs.map +1 -1
  13. package/dist/actions/list-competitions.cjs +3 -3
  14. package/dist/actions/list-competitions.cjs.map +1 -1
  15. package/dist/actions/list-competitions.d.cts +3 -3
  16. package/dist/actions/list-competitions.d.mts +3 -3
  17. package/dist/actions/list-competitions.mjs +3 -3
  18. package/dist/actions/list-competitions.mjs.map +1 -1
  19. package/dist/actions/list-players.cjs +2 -2
  20. package/dist/actions/list-players.cjs.map +1 -1
  21. package/dist/actions/list-players.d.cts +2 -2
  22. package/dist/actions/list-players.d.mts +2 -2
  23. package/dist/actions/list-players.mjs +2 -2
  24. package/dist/actions/list-players.mjs.map +1 -1
  25. package/dist/actions/list-score-series-history.cjs +2 -2
  26. package/dist/actions/list-score-series-history.cjs.map +1 -1
  27. package/dist/actions/list-score-series-history.d.cts +2 -2
  28. package/dist/actions/list-score-series-history.d.mts +2 -2
  29. package/dist/actions/list-score-series-history.mjs +2 -2
  30. package/dist/actions/list-score-series-history.mjs.map +1 -1
  31. package/dist/actions/list-score-series-point-types.cjs +2 -2
  32. package/dist/actions/list-score-series-point-types.cjs.map +1 -1
  33. package/dist/actions/list-score-series-point-types.d.cts +2 -2
  34. package/dist/actions/list-score-series-point-types.d.mts +2 -2
  35. package/dist/actions/list-score-series-point-types.mjs +2 -2
  36. package/dist/actions/list-score-series-point-types.mjs.map +1 -1
  37. package/dist/actions/list-score-series.cjs +2 -2
  38. package/dist/actions/list-score-series.cjs.map +1 -1
  39. package/dist/actions/list-score-series.d.cts +2 -2
  40. package/dist/actions/list-score-series.d.mts +2 -2
  41. package/dist/actions/list-score-series.mjs +2 -2
  42. package/dist/actions/list-score-series.mjs.map +1 -1
  43. package/dist/actions/list-teams.cjs +2 -2
  44. package/dist/actions/list-teams.cjs.map +1 -1
  45. package/dist/actions/list-teams.d.cts +2 -2
  46. package/dist/actions/list-teams.d.mts +2 -2
  47. package/dist/actions/list-teams.mjs +2 -2
  48. package/dist/actions/list-teams.mjs.map +1 -1
  49. package/dist/catalog.cjs +2 -2
  50. package/dist/catalog.cjs.map +1 -1
  51. package/dist/catalog.d.cts +2 -2
  52. package/dist/catalog.d.mts +2 -2
  53. package/dist/catalog.mjs +2 -2
  54. package/dist/catalog.mjs.map +1 -1
  55. 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/add-score.ts
4
4
  const PointagramAddScoreInput = zod.z.object({
5
- tags: zod.z.array(zod.z.object({ name: zod.z.string().describe("Tag name to display with points.") }).describe("Tag to be displayed with points.")).describe("Tags displayed with points. Each tag should have a 'name' field.").optional(),
5
+ tags: zod.z.array(zod.z.object({ name: zod.z.string().describe("Tag name to display with points.") }).passthrough().describe("Tag to be displayed with points.")).describe("Tags displayed with points. Each tag should have a 'name' field.").optional(),
6
6
  points: zod.z.number().int().describe("Number of points to award. Use this OR pointtype_name.").optional(),
7
7
  comment: zod.z.string().describe("Description visible in the news feed about this score entry.").optional(),
8
8
  player_id: zod.z.string().describe("Internal Pointagram player identifier. Use this if you have the player's ID.").optional(),
@@ -20,7 +20,7 @@ const PointagramAddScoreOutput = zod.z.object({
20
20
  message: zod.z.string().describe("Response message describing the result of the operation.").nullable(),
21
21
  status_code: zod.z.number().int().describe("HTTP status code returned by the API. 200 indicates success, 409 indicates conflict (e.g., duplicate source_score_id).").nullable(),
22
22
  response_text: zod.z.string().describe("Raw response text from the API, if any.").nullable().optional()
23
- }).describe("Response model for add_score action. The API primarily returns HTTP status codes.");
23
+ }).passthrough().describe("Response model for add_score action. The API primarily returns HTTP status codes.");
24
24
  const pointagramAddScore = require_action.action("POINTAGRAM_ADD_SCORE", {
25
25
  slug: "pointagram-add-score",
26
26
  name: "Add Score",
@@ -1 +1 @@
1
- {"version":3,"file":"add-score.cjs","names":["z","action"],"sources":["../../src/actions/add-score.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramAddScoreInput = z.object({\n tags: z.array(z.object({\n name: z.string().describe(\"Tag name to display with points.\"),\n}).describe(\"Tag to be displayed with points.\")).describe(\"Tags displayed with points. Each tag should have a 'name' field.\").optional(),\n points: z.number().int().describe(\"Number of points to award. Use this OR pointtype_name.\").optional(),\n comment: z.string().describe(\"Description visible in the news feed about this score entry.\").optional(),\n player_id: z.string().describe(\"Internal Pointagram player identifier. Use this if you have the player's ID.\").optional(),\n score_time: z.string().describe(\"Sets transaction timestamp in datetime format (e.g., ISO 8601).\").optional(),\n player_name: z.string().describe(\"Player's display name for identification. Use when player_id is not available.\").optional(),\n player_email: z.string().describe(\"Player's email address for identification. Use when player_id is not available.\").optional(),\n create_player: z.number().int().describe(\"Set to 1 to automatically create missing players. Leave unset or set to 0 to not create players.\").optional(),\n pointtype_name: z.string().describe(\"Named point type to assign. Use this OR points.\").optional(),\n scoreseries_id: z.string().describe(\"ID of the target score series. Use this OR scoreseries_name.\").optional(),\n source_score_id: z.string().describe(\"Transaction identifier. Reusing this ID will revoke the previous entry with the same ID.\").optional(),\n scoreseries_name: z.string().describe(\"Name of the target score series. Use this OR scoreseries_id.\").optional(),\n player_external_id: z.string().describe(\"Your system's unique player identifier. Use for integration with external systems.\").optional(),\n}).describe(\"Request model for adding points to Pointagram. At least one player identification\\nfield and one score series identification field are required.\");\nexport const PointagramAddScoreOutput = z.object({\n message: z.string().describe(\"Response message describing the result of the operation.\").nullable(),\n status_code: z.number().int().describe(\"HTTP status code returned by the API. 200 indicates success, 409 indicates conflict (e.g., duplicate source_score_id).\").nullable(),\n response_text: z.string().describe(\"Raw response text from the API, if any.\").nullable().optional(),\n}).describe(\"Response model for add_score action. The API primarily returns HTTP status codes.\");\n\nexport const pointagramAddScore = action(\"POINTAGRAM_ADD_SCORE\", {\n slug: \"pointagram-add-score\",\n name: \"Add Score\",\n description: \"Tool to add points to Pointagram players in a score series. Use when you need to award points with optional tags, descriptions, and automatic player creation.\",\n input: PointagramAddScoreInput,\n output: PointagramAddScoreOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0BAA0BA,IAAAA,EAAE,OAAO;CAC9C,MAAMA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,EACvB,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,EAC9D,CAAC,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,CAAC,SAAS,kEAAkE,CAAC,CAAC,SAAS;CACrI,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS;CACrG,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;CACtG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8EAA8E,CAAC,CAAC,SAAS;CACxH,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS;CAC5G,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gFAAgF,CAAC,CAAC,SAAS;CAC5H,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF,CAAC,CAAC,SAAS;CAC9H,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kGAAkG,CAAC,CAAC,SAAS;CACtJ,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;CAChG,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;CAC7G,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0FAA0F,CAAC,CAAC,SAAS;CAC1I,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;CAC/G,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oFAAoF,CAAC,CAAC,SAAS;AACzI,CAAC,CAAC,CAAC,SAAS,kJAAkJ;AAC9J,MAAa,2BAA2BA,IAAAA,EAAE,OAAO;CAC/C,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;CAClG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wHAAwH,CAAC,CAAC,SAAS;CAC1K,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACpG,CAAC,CAAC,CAAC,SAAS,mFAAmF;AAE/F,MAAa,qBAAqBC,eAAAA,OAAO,wBAAwB;CAC/D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"add-score.cjs","names":["z","action"],"sources":["../../src/actions/add-score.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramAddScoreInput = z.object({\n tags: z.array(z.object({\n name: z.string().describe(\"Tag name to display with points.\"),\n}).passthrough().describe(\"Tag to be displayed with points.\")).describe(\"Tags displayed with points. Each tag should have a 'name' field.\").optional(),\n points: z.number().int().describe(\"Number of points to award. Use this OR pointtype_name.\").optional(),\n comment: z.string().describe(\"Description visible in the news feed about this score entry.\").optional(),\n player_id: z.string().describe(\"Internal Pointagram player identifier. Use this if you have the player's ID.\").optional(),\n score_time: z.string().describe(\"Sets transaction timestamp in datetime format (e.g., ISO 8601).\").optional(),\n player_name: z.string().describe(\"Player's display name for identification. Use when player_id is not available.\").optional(),\n player_email: z.string().describe(\"Player's email address for identification. Use when player_id is not available.\").optional(),\n create_player: z.number().int().describe(\"Set to 1 to automatically create missing players. Leave unset or set to 0 to not create players.\").optional(),\n pointtype_name: z.string().describe(\"Named point type to assign. Use this OR points.\").optional(),\n scoreseries_id: z.string().describe(\"ID of the target score series. Use this OR scoreseries_name.\").optional(),\n source_score_id: z.string().describe(\"Transaction identifier. Reusing this ID will revoke the previous entry with the same ID.\").optional(),\n scoreseries_name: z.string().describe(\"Name of the target score series. Use this OR scoreseries_id.\").optional(),\n player_external_id: z.string().describe(\"Your system's unique player identifier. Use for integration with external systems.\").optional(),\n}).describe(\"Request model for adding points to Pointagram. At least one player identification\\nfield and one score series identification field are required.\");\nexport const PointagramAddScoreOutput = z.object({\n message: z.string().describe(\"Response message describing the result of the operation.\").nullable(),\n status_code: z.number().int().describe(\"HTTP status code returned by the API. 200 indicates success, 409 indicates conflict (e.g., duplicate source_score_id).\").nullable(),\n response_text: z.string().describe(\"Raw response text from the API, if any.\").nullable().optional(),\n}).passthrough().describe(\"Response model for add_score action. The API primarily returns HTTP status codes.\");\n\nexport const pointagramAddScore = action(\"POINTAGRAM_ADD_SCORE\", {\n slug: \"pointagram-add-score\",\n name: \"Add Score\",\n description: \"Tool to add points to Pointagram players in a score series. Use when you need to award points with optional tags, descriptions, and automatic player creation.\",\n input: PointagramAddScoreInput,\n output: PointagramAddScoreOutput,\n});\n"],"mappings":";;;AAIA,MAAa,0BAA0BA,IAAAA,EAAE,OAAO;CAC9C,MAAMA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,EACvB,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,EAC9D,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,CAAC,SAAS,kEAAkE,CAAC,CAAC,SAAS;CACnJ,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS;CACrG,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;CACtG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8EAA8E,CAAC,CAAC,SAAS;CACxH,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS;CAC5G,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gFAAgF,CAAC,CAAC,SAAS;CAC5H,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF,CAAC,CAAC,SAAS;CAC9H,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kGAAkG,CAAC,CAAC,SAAS;CACtJ,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;CAChG,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;CAC7G,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0FAA0F,CAAC,CAAC,SAAS;CAC1I,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;CAC/G,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oFAAoF,CAAC,CAAC,SAAS;AACzI,CAAC,CAAC,CAAC,SAAS,kJAAkJ;AAC9J,MAAa,2BAA2BA,IAAAA,EAAE,OAAO;CAC/C,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;CAClG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wHAAwH,CAAC,CAAC,SAAS;CAC1K,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACpG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mFAAmF;AAE7G,MAAa,qBAAqBC,eAAAA,OAAO,wBAAwB;CAC/D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -4,7 +4,7 @@ import { z } from "zod";
4
4
  declare const PointagramAddScoreInput: z.ZodObject<{
5
5
  tags: z.ZodOptional<z.ZodArray<z.ZodObject<{
6
6
  name: z.ZodString;
7
- }, z.core.$strip>>>;
7
+ }, z.core.$loose>>>;
8
8
  points: z.ZodOptional<z.ZodNumber>;
9
9
  comment: z.ZodOptional<z.ZodString>;
10
10
  player_id: z.ZodOptional<z.ZodString>;
@@ -22,9 +22,10 @@ declare const PointagramAddScoreOutput: z.ZodObject<{
22
22
  message: z.ZodNullable<z.ZodString>;
23
23
  status_code: z.ZodNullable<z.ZodNumber>;
24
24
  response_text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25
- }, z.core.$strip>;
25
+ }, z.core.$loose>;
26
26
  declare const pointagramAddScore: import("@keystrokehq/action").WorkflowActionDefinition<{
27
27
  tags?: {
28
+ [x: string]: unknown;
28
29
  name: string;
29
30
  }[] | undefined;
30
31
  points?: number | undefined;
@@ -4,7 +4,7 @@ import { z } from "zod";
4
4
  declare const PointagramAddScoreInput: z.ZodObject<{
5
5
  tags: z.ZodOptional<z.ZodArray<z.ZodObject<{
6
6
  name: z.ZodString;
7
- }, z.core.$strip>>>;
7
+ }, z.core.$loose>>>;
8
8
  points: z.ZodOptional<z.ZodNumber>;
9
9
  comment: z.ZodOptional<z.ZodString>;
10
10
  player_id: z.ZodOptional<z.ZodString>;
@@ -22,9 +22,10 @@ declare const PointagramAddScoreOutput: z.ZodObject<{
22
22
  message: z.ZodNullable<z.ZodString>;
23
23
  status_code: z.ZodNullable<z.ZodNumber>;
24
24
  response_text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25
- }, z.core.$strip>;
25
+ }, z.core.$loose>;
26
26
  declare const pointagramAddScore: import("@keystrokehq/action").WorkflowActionDefinition<{
27
27
  tags?: {
28
+ [x: string]: unknown;
28
29
  name: string;
29
30
  }[] | undefined;
30
31
  points?: number | undefined;
@@ -5,7 +5,7 @@ const pointagramAddScore = action("POINTAGRAM_ADD_SCORE", {
5
5
  name: "Add Score",
6
6
  description: "Tool to add points to Pointagram players in a score series. Use when you need to award points with optional tags, descriptions, and automatic player creation.",
7
7
  input: z.object({
8
- tags: z.array(z.object({ name: z.string().describe("Tag name to display with points.") }).describe("Tag to be displayed with points.")).describe("Tags displayed with points. Each tag should have a 'name' field.").optional(),
8
+ tags: z.array(z.object({ name: z.string().describe("Tag name to display with points.") }).passthrough().describe("Tag to be displayed with points.")).describe("Tags displayed with points. Each tag should have a 'name' field.").optional(),
9
9
  points: z.number().int().describe("Number of points to award. Use this OR pointtype_name.").optional(),
10
10
  comment: z.string().describe("Description visible in the news feed about this score entry.").optional(),
11
11
  player_id: z.string().describe("Internal Pointagram player identifier. Use this if you have the player's ID.").optional(),
@@ -23,7 +23,7 @@ const pointagramAddScore = action("POINTAGRAM_ADD_SCORE", {
23
23
  message: z.string().describe("Response message describing the result of the operation.").nullable(),
24
24
  status_code: z.number().int().describe("HTTP status code returned by the API. 200 indicates success, 409 indicates conflict (e.g., duplicate source_score_id).").nullable(),
25
25
  response_text: z.string().describe("Raw response text from the API, if any.").nullable().optional()
26
- }).describe("Response model for add_score action. The API primarily returns HTTP status codes.")
26
+ }).passthrough().describe("Response model for add_score action. The API primarily returns HTTP status codes.")
27
27
  });
28
28
  //#endregion
29
29
  export { pointagramAddScore };
@@ -1 +1 @@
1
- {"version":3,"file":"add-score.mjs","names":[],"sources":["../../src/actions/add-score.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramAddScoreInput = z.object({\n tags: z.array(z.object({\n name: z.string().describe(\"Tag name to display with points.\"),\n}).describe(\"Tag to be displayed with points.\")).describe(\"Tags displayed with points. Each tag should have a 'name' field.\").optional(),\n points: z.number().int().describe(\"Number of points to award. Use this OR pointtype_name.\").optional(),\n comment: z.string().describe(\"Description visible in the news feed about this score entry.\").optional(),\n player_id: z.string().describe(\"Internal Pointagram player identifier. Use this if you have the player's ID.\").optional(),\n score_time: z.string().describe(\"Sets transaction timestamp in datetime format (e.g., ISO 8601).\").optional(),\n player_name: z.string().describe(\"Player's display name for identification. Use when player_id is not available.\").optional(),\n player_email: z.string().describe(\"Player's email address for identification. Use when player_id is not available.\").optional(),\n create_player: z.number().int().describe(\"Set to 1 to automatically create missing players. Leave unset or set to 0 to not create players.\").optional(),\n pointtype_name: z.string().describe(\"Named point type to assign. Use this OR points.\").optional(),\n scoreseries_id: z.string().describe(\"ID of the target score series. Use this OR scoreseries_name.\").optional(),\n source_score_id: z.string().describe(\"Transaction identifier. Reusing this ID will revoke the previous entry with the same ID.\").optional(),\n scoreseries_name: z.string().describe(\"Name of the target score series. Use this OR scoreseries_id.\").optional(),\n player_external_id: z.string().describe(\"Your system's unique player identifier. Use for integration with external systems.\").optional(),\n}).describe(\"Request model for adding points to Pointagram. At least one player identification\\nfield and one score series identification field are required.\");\nexport const PointagramAddScoreOutput = z.object({\n message: z.string().describe(\"Response message describing the result of the operation.\").nullable(),\n status_code: z.number().int().describe(\"HTTP status code returned by the API. 200 indicates success, 409 indicates conflict (e.g., duplicate source_score_id).\").nullable(),\n response_text: z.string().describe(\"Raw response text from the API, if any.\").nullable().optional(),\n}).describe(\"Response model for add_score action. The API primarily returns HTTP status codes.\");\n\nexport const pointagramAddScore = action(\"POINTAGRAM_ADD_SCORE\", {\n slug: \"pointagram-add-score\",\n name: \"Add Score\",\n description: \"Tool to add points to Pointagram players in a score series. Use when you need to award points with optional tags, descriptions, and automatic player creation.\",\n input: PointagramAddScoreInput,\n output: PointagramAddScoreOutput,\n});\n"],"mappings":";;AA2BA,MAAa,qBAAqB,OAAO,wBAAwB;CAC/D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OA3BqC,EAAE,OAAO;EAC9C,MAAM,EAAE,MAAM,EAAE,OAAO,EACvB,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,EAC9D,CAAC,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,CAAC,SAAS,kEAAkE,CAAC,CAAC,SAAS;EACrI,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS;EACrG,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;EACtG,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,8EAA8E,CAAC,CAAC,SAAS;EACxH,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS;EAC5G,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,gFAAgF,CAAC,CAAC,SAAS;EAC5H,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF,CAAC,CAAC,SAAS;EAC9H,eAAe,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kGAAkG,CAAC,CAAC,SAAS;EACtJ,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;EAChG,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;EAC7G,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,0FAA0F,CAAC,CAAC,SAAS;EAC1I,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;EAC/G,oBAAoB,EAAE,OAAO,CAAC,CAAC,SAAS,oFAAoF,CAAC,CAAC,SAAS;CACzI,CAAC,CAAC,CAAC,SAAS,kJAWH;CACP,QAXsC,EAAE,OAAO;EAC/C,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;EAClG,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wHAAwH,CAAC,CAAC,SAAS;EAC1K,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,CAAC,CAAC,CAAC,SAAS,mFAOF;AACV,CAAC"}
1
+ {"version":3,"file":"add-score.mjs","names":[],"sources":["../../src/actions/add-score.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramAddScoreInput = z.object({\n tags: z.array(z.object({\n name: z.string().describe(\"Tag name to display with points.\"),\n}).passthrough().describe(\"Tag to be displayed with points.\")).describe(\"Tags displayed with points. Each tag should have a 'name' field.\").optional(),\n points: z.number().int().describe(\"Number of points to award. Use this OR pointtype_name.\").optional(),\n comment: z.string().describe(\"Description visible in the news feed about this score entry.\").optional(),\n player_id: z.string().describe(\"Internal Pointagram player identifier. Use this if you have the player's ID.\").optional(),\n score_time: z.string().describe(\"Sets transaction timestamp in datetime format (e.g., ISO 8601).\").optional(),\n player_name: z.string().describe(\"Player's display name for identification. Use when player_id is not available.\").optional(),\n player_email: z.string().describe(\"Player's email address for identification. Use when player_id is not available.\").optional(),\n create_player: z.number().int().describe(\"Set to 1 to automatically create missing players. Leave unset or set to 0 to not create players.\").optional(),\n pointtype_name: z.string().describe(\"Named point type to assign. Use this OR points.\").optional(),\n scoreseries_id: z.string().describe(\"ID of the target score series. Use this OR scoreseries_name.\").optional(),\n source_score_id: z.string().describe(\"Transaction identifier. Reusing this ID will revoke the previous entry with the same ID.\").optional(),\n scoreseries_name: z.string().describe(\"Name of the target score series. Use this OR scoreseries_id.\").optional(),\n player_external_id: z.string().describe(\"Your system's unique player identifier. Use for integration with external systems.\").optional(),\n}).describe(\"Request model for adding points to Pointagram. At least one player identification\\nfield and one score series identification field are required.\");\nexport const PointagramAddScoreOutput = z.object({\n message: z.string().describe(\"Response message describing the result of the operation.\").nullable(),\n status_code: z.number().int().describe(\"HTTP status code returned by the API. 200 indicates success, 409 indicates conflict (e.g., duplicate source_score_id).\").nullable(),\n response_text: z.string().describe(\"Raw response text from the API, if any.\").nullable().optional(),\n}).passthrough().describe(\"Response model for add_score action. The API primarily returns HTTP status codes.\");\n\nexport const pointagramAddScore = action(\"POINTAGRAM_ADD_SCORE\", {\n slug: \"pointagram-add-score\",\n name: \"Add Score\",\n description: \"Tool to add points to Pointagram players in a score series. Use when you need to award points with optional tags, descriptions, and automatic player creation.\",\n input: PointagramAddScoreInput,\n output: PointagramAddScoreOutput,\n});\n"],"mappings":";;AA2BA,MAAa,qBAAqB,OAAO,wBAAwB;CAC/D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OA3BqC,EAAE,OAAO;EAC9C,MAAM,EAAE,MAAM,EAAE,OAAO,EACvB,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,EAC9D,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,CAAC,SAAS,kEAAkE,CAAC,CAAC,SAAS;EACnJ,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS;EACrG,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;EACtG,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,8EAA8E,CAAC,CAAC,SAAS;EACxH,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS;EAC5G,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,gFAAgF,CAAC,CAAC,SAAS;EAC5H,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF,CAAC,CAAC,SAAS;EAC9H,eAAe,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kGAAkG,CAAC,CAAC,SAAS;EACtJ,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;EAChG,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;EAC7G,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,0FAA0F,CAAC,CAAC,SAAS;EAC1I,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;EAC/G,oBAAoB,EAAE,OAAO,CAAC,CAAC,SAAS,oFAAoF,CAAC,CAAC,SAAS;CACzI,CAAC,CAAC,CAAC,SAAS,kJAWH;CACP,QAXsC,EAAE,OAAO;EAC/C,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;EAClG,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wHAAwH,CAAC,CAAC,SAAS;EAC1K,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mFAOhB;AACV,CAAC"}
@@ -26,8 +26,8 @@ const PointagramListCompetitionPlayers_CompetitionPlayerItemSchema = zod.z.objec
26
26
  player_email: zod.z.string().describe("Email address of the player.").nullable().optional(),
27
27
  competition_id: zod.z.string().describe("Competition identifier that the player is participating in.").nullable().optional(),
28
28
  competition_name: zod.z.string().describe("Name of the competition.").nullable().optional()
29
- }).describe("Model representing a player's competition data including rankings and scores.");
30
- const PointagramListCompetitionPlayersOutput = zod.z.object({ players: zod.z.array(PointagramListCompetitionPlayers_CompetitionPlayerItemSchema).describe("List of players with their competition participation, rankings, and scores.").nullable().optional() }).describe("Response model for listing competition players. Returns an array of player competition data.");
29
+ }).passthrough().describe("Model representing a player's competition data including rankings and scores.");
30
+ const PointagramListCompetitionPlayersOutput = zod.z.object({ players: zod.z.array(PointagramListCompetitionPlayers_CompetitionPlayerItemSchema).describe("List of players with their competition participation, rankings, and scores.").nullable().optional() }).passthrough().describe("Response model for listing competition players. Returns an array of player competition data.");
31
31
  const pointagramListCompetitionPlayers = require_action.action("POINTAGRAM_LIST_COMPETITION_PLAYERS", {
32
32
  slug: "pointagram-list-competition-players",
33
33
  name: "List Competition Players",
@@ -1 +1 @@
1
- {"version":3,"file":"list-competition-players.cjs","names":["z","action"],"sources":["../../src/actions/list-competition-players.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListCompetitionPlayersInput = z.object({\n player_id: z.string().describe(\"Filter by specific player ID to get their competition participation.\").optional(),\n competition_id: z.string().describe(\"Filter players by specific competition ID. If not provided, returns players from all competitions.\").optional(),\n player_external_id: z.string().describe(\"Filter by external player identifier from your system.\").optional(),\n}).describe(\"Request model for listing competition players with optional filtering.\");\nconst PointagramListCompetitionPlayers_CompetitionPlayerItemSchema = z.object({\n rank: z.union([z.number().int(), z.string()]).nullable().optional(),\n score: z.union([z.number().int(), z.number(), z.string()]).nullable().optional(),\n points: z.union([z.number().int(), z.number(), z.string()]).nullable().optional(),\n team_id: z.string().describe(\"Team identifier if the player is part of a team.\").nullable().optional(),\n player_id: z.string().describe(\"Unique player identifier in Pointagram.\").nullable().optional(),\n team_name: z.string().describe(\"Team name if the player is part of a team.\").nullable().optional(),\n external_id: z.string().describe(\"External identifier for the player from your system.\").nullable().optional(),\n player_name: z.string().describe(\"Name of the player in the competition.\").nullable().optional(),\n player_email: z.string().describe(\"Email address of the player.\").nullable().optional(),\n competition_id: z.string().describe(\"Competition identifier that the player is participating in.\").nullable().optional(),\n competition_name: z.string().describe(\"Name of the competition.\").nullable().optional(),\n}).describe(\"Model representing a player's competition data including rankings and scores.\");\nexport const PointagramListCompetitionPlayersOutput = z.object({\n players: z.array(PointagramListCompetitionPlayers_CompetitionPlayerItemSchema).describe(\"List of players with their competition participation, rankings, and scores.\").nullable().optional(),\n}).describe(\"Response model for listing competition players. Returns an array of player competition data.\");\n\nexport const pointagramListCompetitionPlayers = action(\"POINTAGRAM_LIST_COMPETITION_PLAYERS\", {\n slug: \"pointagram-list-competition-players\",\n name: \"List Competition Players\",\n description: \"Tool to fetch competition players and standings in Pointagram. Returns detailed player rankings, scores, and competition participation data. Use when you need to retrieve player standings, competition leaderboards, or analyze player performance across competitions.\",\n input: PointagramListCompetitionPlayersInput,\n output: PointagramListCompetitionPlayersOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wCAAwCA,IAAAA,EAAE,OAAO;CAC5D,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS;CAChH,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,SAAS;CACnJ,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS;AAC7G,CAAC,CAAC,CAAC,SAAS,wEAAwE;AACpF,MAAM,+DAA+DA,IAAAA,EAAE,OAAO;CAC5E,MAAMA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClE,OAAOA,IAAAA,EAAE,MAAM;EAACA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI;EAAGA,IAAAA,EAAE,OAAO;EAAGA,IAAAA,EAAE,OAAO;CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/E,QAAQA,IAAAA,EAAE,MAAM;EAACA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI;EAAGA,IAAAA,EAAE,OAAO;EAAGA,IAAAA,EAAE,OAAO;CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChF,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvH,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACxF,CAAC,CAAC,CAAC,SAAS,+EAA+E;AAC3F,MAAa,yCAAyCA,IAAAA,EAAE,OAAO,EAC7D,SAASA,IAAAA,EAAE,MAAM,4DAA4D,CAAC,CAAC,SAAS,6EAA6E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAC7L,CAAC,CAAC,CAAC,SAAS,8FAA8F;AAE1G,MAAa,mCAAmCC,eAAAA,OAAO,uCAAuC;CAC5F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"list-competition-players.cjs","names":["z","action"],"sources":["../../src/actions/list-competition-players.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListCompetitionPlayersInput = z.object({\n player_id: z.string().describe(\"Filter by specific player ID to get their competition participation.\").optional(),\n competition_id: z.string().describe(\"Filter players by specific competition ID. If not provided, returns players from all competitions.\").optional(),\n player_external_id: z.string().describe(\"Filter by external player identifier from your system.\").optional(),\n}).describe(\"Request model for listing competition players with optional filtering.\");\nconst PointagramListCompetitionPlayers_CompetitionPlayerItemSchema = z.object({\n rank: z.union([z.number().int(), z.string()]).nullable().optional(),\n score: z.union([z.number().int(), z.number(), z.string()]).nullable().optional(),\n points: z.union([z.number().int(), z.number(), z.string()]).nullable().optional(),\n team_id: z.string().describe(\"Team identifier if the player is part of a team.\").nullable().optional(),\n player_id: z.string().describe(\"Unique player identifier in Pointagram.\").nullable().optional(),\n team_name: z.string().describe(\"Team name if the player is part of a team.\").nullable().optional(),\n external_id: z.string().describe(\"External identifier for the player from your system.\").nullable().optional(),\n player_name: z.string().describe(\"Name of the player in the competition.\").nullable().optional(),\n player_email: z.string().describe(\"Email address of the player.\").nullable().optional(),\n competition_id: z.string().describe(\"Competition identifier that the player is participating in.\").nullable().optional(),\n competition_name: z.string().describe(\"Name of the competition.\").nullable().optional(),\n}).passthrough().describe(\"Model representing a player's competition data including rankings and scores.\");\nexport const PointagramListCompetitionPlayersOutput = z.object({\n players: z.array(PointagramListCompetitionPlayers_CompetitionPlayerItemSchema).describe(\"List of players with their competition participation, rankings, and scores.\").nullable().optional(),\n}).passthrough().describe(\"Response model for listing competition players. Returns an array of player competition data.\");\n\nexport const pointagramListCompetitionPlayers = action(\"POINTAGRAM_LIST_COMPETITION_PLAYERS\", {\n slug: \"pointagram-list-competition-players\",\n name: \"List Competition Players\",\n description: \"Tool to fetch competition players and standings in Pointagram. Returns detailed player rankings, scores, and competition participation data. Use when you need to retrieve player standings, competition leaderboards, or analyze player performance across competitions.\",\n input: PointagramListCompetitionPlayersInput,\n output: PointagramListCompetitionPlayersOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wCAAwCA,IAAAA,EAAE,OAAO;CAC5D,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS;CAChH,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,SAAS;CACnJ,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS;AAC7G,CAAC,CAAC,CAAC,SAAS,wEAAwE;AACpF,MAAM,+DAA+DA,IAAAA,EAAE,OAAO;CAC5E,MAAMA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClE,OAAOA,IAAAA,EAAE,MAAM;EAACA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI;EAAGA,IAAAA,EAAE,OAAO;EAAGA,IAAAA,EAAE,OAAO;CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/E,QAAQA,IAAAA,EAAE,MAAM;EAACA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI;EAAGA,IAAAA,EAAE,OAAO;EAAGA,IAAAA,EAAE,OAAO;CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChF,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvH,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACxF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+EAA+E;AACzG,MAAa,yCAAyCA,IAAAA,EAAE,OAAO,EAC7D,SAASA,IAAAA,EAAE,MAAM,4DAA4D,CAAC,CAAC,SAAS,6EAA6E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAC7L,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8FAA8F;AAExH,MAAa,mCAAmCC,eAAAA,OAAO,uCAAuC;CAC5F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -19,8 +19,8 @@ declare const PointagramListCompetitionPlayersOutput: z.ZodObject<{
19
19
  player_email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20
20
  competition_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21
21
  competition_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22
- }, z.core.$strip>>>>;
23
- }, z.core.$strip>;
22
+ }, z.core.$loose>>>>;
23
+ }, z.core.$loose>;
24
24
  declare const pointagramListCompetitionPlayers: import("@keystrokehq/action").WorkflowActionDefinition<{
25
25
  player_id?: string | undefined;
26
26
  competition_id?: string | undefined;
@@ -19,8 +19,8 @@ declare const PointagramListCompetitionPlayersOutput: z.ZodObject<{
19
19
  player_email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20
20
  competition_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21
21
  competition_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22
- }, z.core.$strip>>>>;
23
- }, z.core.$strip>;
22
+ }, z.core.$loose>>>>;
23
+ }, z.core.$loose>;
24
24
  declare const pointagramListCompetitionPlayers: import("@keystrokehq/action").WorkflowActionDefinition<{
25
25
  player_id?: string | undefined;
26
26
  competition_id?: string | undefined;
@@ -26,13 +26,13 @@ const PointagramListCompetitionPlayers_CompetitionPlayerItemSchema = z.object({
26
26
  player_email: z.string().describe("Email address of the player.").nullable().optional(),
27
27
  competition_id: z.string().describe("Competition identifier that the player is participating in.").nullable().optional(),
28
28
  competition_name: z.string().describe("Name of the competition.").nullable().optional()
29
- }).describe("Model representing a player's competition data including rankings and scores.");
29
+ }).passthrough().describe("Model representing a player's competition data including rankings and scores.");
30
30
  const pointagramListCompetitionPlayers = action("POINTAGRAM_LIST_COMPETITION_PLAYERS", {
31
31
  slug: "pointagram-list-competition-players",
32
32
  name: "List Competition Players",
33
33
  description: "Tool to fetch competition players and standings in Pointagram. Returns detailed player rankings, scores, and competition participation data. Use when you need to retrieve player standings, competition leaderboards, or analyze player performance across competitions.",
34
34
  input: PointagramListCompetitionPlayersInput,
35
- output: z.object({ players: z.array(PointagramListCompetitionPlayers_CompetitionPlayerItemSchema).describe("List of players with their competition participation, rankings, and scores.").nullable().optional() }).describe("Response model for listing competition players. Returns an array of player competition data.")
35
+ output: z.object({ players: z.array(PointagramListCompetitionPlayers_CompetitionPlayerItemSchema).describe("List of players with their competition participation, rankings, and scores.").nullable().optional() }).passthrough().describe("Response model for listing competition players. Returns an array of player competition data.")
36
36
  });
37
37
  //#endregion
38
38
  export { pointagramListCompetitionPlayers };
@@ -1 +1 @@
1
- {"version":3,"file":"list-competition-players.mjs","names":[],"sources":["../../src/actions/list-competition-players.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListCompetitionPlayersInput = z.object({\n player_id: z.string().describe(\"Filter by specific player ID to get their competition participation.\").optional(),\n competition_id: z.string().describe(\"Filter players by specific competition ID. If not provided, returns players from all competitions.\").optional(),\n player_external_id: z.string().describe(\"Filter by external player identifier from your system.\").optional(),\n}).describe(\"Request model for listing competition players with optional filtering.\");\nconst PointagramListCompetitionPlayers_CompetitionPlayerItemSchema = z.object({\n rank: z.union([z.number().int(), z.string()]).nullable().optional(),\n score: z.union([z.number().int(), z.number(), z.string()]).nullable().optional(),\n points: z.union([z.number().int(), z.number(), z.string()]).nullable().optional(),\n team_id: z.string().describe(\"Team identifier if the player is part of a team.\").nullable().optional(),\n player_id: z.string().describe(\"Unique player identifier in Pointagram.\").nullable().optional(),\n team_name: z.string().describe(\"Team name if the player is part of a team.\").nullable().optional(),\n external_id: z.string().describe(\"External identifier for the player from your system.\").nullable().optional(),\n player_name: z.string().describe(\"Name of the player in the competition.\").nullable().optional(),\n player_email: z.string().describe(\"Email address of the player.\").nullable().optional(),\n competition_id: z.string().describe(\"Competition identifier that the player is participating in.\").nullable().optional(),\n competition_name: z.string().describe(\"Name of the competition.\").nullable().optional(),\n}).describe(\"Model representing a player's competition data including rankings and scores.\");\nexport const PointagramListCompetitionPlayersOutput = z.object({\n players: z.array(PointagramListCompetitionPlayers_CompetitionPlayerItemSchema).describe(\"List of players with their competition participation, rankings, and scores.\").nullable().optional(),\n}).describe(\"Response model for listing competition players. Returns an array of player competition data.\");\n\nexport const pointagramListCompetitionPlayers = action(\"POINTAGRAM_LIST_COMPETITION_PLAYERS\", {\n slug: \"pointagram-list-competition-players\",\n name: \"List Competition Players\",\n description: \"Tool to fetch competition players and standings in Pointagram. Returns detailed player rankings, scores, and competition participation data. Use when you need to retrieve player standings, competition leaderboards, or analyze player performance across competitions.\",\n input: PointagramListCompetitionPlayersInput,\n output: PointagramListCompetitionPlayersOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wCAAwC,EAAE,OAAO;CAC5D,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS;CAChH,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,SAAS;CACnJ,oBAAoB,EAAE,OAAO,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS;AAC7G,CAAC,CAAC,CAAC,SAAS,wEAAwE;AACpF,MAAM,+DAA+D,EAAE,OAAO;CAC5E,MAAM,EAAE,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClE,OAAO,EAAE,MAAM;EAAC,EAAE,OAAO,CAAC,CAAC,IAAI;EAAG,EAAE,OAAO;EAAG,EAAE,OAAO;CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/E,QAAQ,EAAE,MAAM;EAAC,EAAE,OAAO,CAAC,CAAC,IAAI;EAAG,EAAE,OAAO;EAAG,EAAE,OAAO;CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChF,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvH,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACxF,CAAC,CAAC,CAAC,SAAS,+EAA+E;AAK3F,MAAa,mCAAmC,OAAO,uCAAuC;CAC5F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAToD,EAAE,OAAO,EAC7D,SAAS,EAAE,MAAM,4DAA4D,CAAC,CAAC,SAAS,6EAA6E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAC7L,CAAC,CAAC,CAAC,SAAS,8FAOF;AACV,CAAC"}
1
+ {"version":3,"file":"list-competition-players.mjs","names":[],"sources":["../../src/actions/list-competition-players.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListCompetitionPlayersInput = z.object({\n player_id: z.string().describe(\"Filter by specific player ID to get their competition participation.\").optional(),\n competition_id: z.string().describe(\"Filter players by specific competition ID. If not provided, returns players from all competitions.\").optional(),\n player_external_id: z.string().describe(\"Filter by external player identifier from your system.\").optional(),\n}).describe(\"Request model for listing competition players with optional filtering.\");\nconst PointagramListCompetitionPlayers_CompetitionPlayerItemSchema = z.object({\n rank: z.union([z.number().int(), z.string()]).nullable().optional(),\n score: z.union([z.number().int(), z.number(), z.string()]).nullable().optional(),\n points: z.union([z.number().int(), z.number(), z.string()]).nullable().optional(),\n team_id: z.string().describe(\"Team identifier if the player is part of a team.\").nullable().optional(),\n player_id: z.string().describe(\"Unique player identifier in Pointagram.\").nullable().optional(),\n team_name: z.string().describe(\"Team name if the player is part of a team.\").nullable().optional(),\n external_id: z.string().describe(\"External identifier for the player from your system.\").nullable().optional(),\n player_name: z.string().describe(\"Name of the player in the competition.\").nullable().optional(),\n player_email: z.string().describe(\"Email address of the player.\").nullable().optional(),\n competition_id: z.string().describe(\"Competition identifier that the player is participating in.\").nullable().optional(),\n competition_name: z.string().describe(\"Name of the competition.\").nullable().optional(),\n}).passthrough().describe(\"Model representing a player's competition data including rankings and scores.\");\nexport const PointagramListCompetitionPlayersOutput = z.object({\n players: z.array(PointagramListCompetitionPlayers_CompetitionPlayerItemSchema).describe(\"List of players with their competition participation, rankings, and scores.\").nullable().optional(),\n}).passthrough().describe(\"Response model for listing competition players. Returns an array of player competition data.\");\n\nexport const pointagramListCompetitionPlayers = action(\"POINTAGRAM_LIST_COMPETITION_PLAYERS\", {\n slug: \"pointagram-list-competition-players\",\n name: \"List Competition Players\",\n description: \"Tool to fetch competition players and standings in Pointagram. Returns detailed player rankings, scores, and competition participation data. Use when you need to retrieve player standings, competition leaderboards, or analyze player performance across competitions.\",\n input: PointagramListCompetitionPlayersInput,\n output: PointagramListCompetitionPlayersOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wCAAwC,EAAE,OAAO;CAC5D,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS;CAChH,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,SAAS;CACnJ,oBAAoB,EAAE,OAAO,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS;AAC7G,CAAC,CAAC,CAAC,SAAS,wEAAwE;AACpF,MAAM,+DAA+D,EAAE,OAAO;CAC5E,MAAM,EAAE,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClE,OAAO,EAAE,MAAM;EAAC,EAAE,OAAO,CAAC,CAAC,IAAI;EAAG,EAAE,OAAO;EAAG,EAAE,OAAO;CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/E,QAAQ,EAAE,MAAM;EAAC,EAAE,OAAO,CAAC,CAAC,IAAI;EAAG,EAAE,OAAO;EAAG,EAAE,OAAO;CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChF,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvH,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACxF,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+EAA+E;AAKzG,MAAa,mCAAmC,OAAO,uCAAuC;CAC5F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAToD,EAAE,OAAO,EAC7D,SAAS,EAAE,MAAM,4DAA4D,CAAC,CAAC,SAAS,6EAA6E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAC7L,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8FAOhB;AACV,CAAC"}
@@ -16,7 +16,7 @@ const PointagramListCompetitions_CompetitionRankingSchema = zod.z.object({
16
16
  score: zod.z.union([zod.z.number().int(), zod.z.number()]).nullable().optional(),
17
17
  player_id: zod.z.string().describe("Unique identifier of the player.").nullable().optional(),
18
18
  player_name: zod.z.string().describe("Name of the player.").nullable().optional()
19
- }).describe("Model representing a player's ranking within a competition.");
19
+ }).passthrough().describe("Model representing a player's ranking within a competition.");
20
20
  const PointagramListCompetitions_CompetitionItemSchema = zod.z.object({
21
21
  id: zod.z.union([zod.z.number().int(), zod.z.string()]).nullable().optional(),
22
22
  name: zod.z.string().describe("Name of the competition.").nullable().optional(),
@@ -26,8 +26,8 @@ const PointagramListCompetitions_CompetitionItemSchema = zod.z.object({
26
26
  accesskey: zod.z.string().describe("Access key associated with the competition.").nullable().optional(),
27
27
  start_date: zod.z.string().describe("Start date of the competition.").nullable().optional(),
28
28
  description: zod.z.string().describe("Description of the competition.").nullable().optional()
29
- }).describe("Model representing a single competition in Pointagram.");
30
- const PointagramListCompetitionsOutput = zod.z.object({ competitions: zod.z.array(PointagramListCompetitions_CompetitionItemSchema).describe("List of competitions matching the search criteria, including rankings and scores.").nullable().optional() }).describe("Response model for listing competitions. Returns an array of competition objects.");
29
+ }).passthrough().describe("Model representing a single competition in Pointagram.");
30
+ const PointagramListCompetitionsOutput = zod.z.object({ competitions: zod.z.array(PointagramListCompetitions_CompetitionItemSchema).describe("List of competitions matching the search criteria, including rankings and scores.").nullable().optional() }).passthrough().describe("Response model for listing competitions. Returns an array of competition objects.");
31
31
  const pointagramListCompetitions = require_action.action("POINTAGRAM_LIST_COMPETITIONS", {
32
32
  slug: "pointagram-list-competitions",
33
33
  name: "List Competitions",
@@ -1 +1 @@
1
- {"version":3,"file":"list-competitions.cjs","names":["z","action"],"sources":["../../src/actions/list-competitions.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListCompetitionsInput = z.object({\n filter: z.string().describe(\"The search value to match against the criteria specified in search_by parameter. Used to filter competitions by player information.\").optional(),\n accesskey: z.string().describe(\"Filter results to show only competitions associated with a specific access key identifier.\").optional(),\n search_by: z.enum([\"Email\", \"Name\", \"External Id\"]).describe(\"Specifies the search criteria type to filter competitions by player. Accepts 'Email', 'Name', or 'External Id'. Used in combination with 'filter' parameter.\").optional(),\n competition_id: z.union([z.number().int(), z.string()]).optional(),\n}).describe(\"Request model for listing competitions with optional filtering.\");\nconst PointagramListCompetitions_CompetitionRankingSchema = z.object({\n rank: z.number().int().describe(\"Player's rank in the competition.\").nullable().optional(),\n score: z.union([z.number().int(), z.number()]).nullable().optional(),\n player_id: z.string().describe(\"Unique identifier of the player.\").nullable().optional(),\n player_name: z.string().describe(\"Name of the player.\").nullable().optional(),\n}).describe(\"Model representing a player's ranking within a competition.\");\nconst PointagramListCompetitions_CompetitionItemSchema = z.object({\n id: z.union([z.number().int(), z.string()]).nullable().optional(),\n name: z.string().describe(\"Name of the competition.\").nullable().optional(),\n status: z.string().describe(\"Current status of the competition.\").nullable().optional(),\n end_date: z.string().describe(\"End date of the competition.\").nullable().optional(),\n rankings: z.array(PointagramListCompetitions_CompetitionRankingSchema).describe(\"List of player rankings and scores in the competition.\").nullable().optional(),\n accesskey: z.string().describe(\"Access key associated with the competition.\").nullable().optional(),\n start_date: z.string().describe(\"Start date of the competition.\").nullable().optional(),\n description: z.string().describe(\"Description of the competition.\").nullable().optional(),\n}).describe(\"Model representing a single competition in Pointagram.\");\nexport const PointagramListCompetitionsOutput = z.object({\n competitions: z.array(PointagramListCompetitions_CompetitionItemSchema).describe(\"List of competitions matching the search criteria, including rankings and scores.\").nullable().optional(),\n}).describe(\"Response model for listing competitions. Returns an array of competition objects.\");\n\nexport const pointagramListCompetitions = action(\"POINTAGRAM_LIST_COMPETITIONS\", {\n slug: \"pointagram-list-competitions\",\n name: \"List Competitions\",\n description: \"Tool to fetch competitions in Pointagram with optional filtering. Use when you need to retrieve competition information including rankings and scores. Supports filtering by player (email, name, external ID), competition ID, or access key.\",\n input: PointagramListCompetitionsInput,\n output: PointagramListCompetitionsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,kCAAkCA,IAAAA,EAAE,OAAO;CACtD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qIAAqI,CAAC,CAAC,SAAS;CAC5K,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4FAA4F,CAAC,CAAC,SAAS;CACtI,WAAWA,IAAAA,EAAE,KAAK;EAAC;EAAS;EAAQ;CAAa,CAAC,CAAC,CAAC,SAAS,8JAA8J,CAAC,CAAC,SAAS;CACtO,gBAAgBA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS;AACnE,CAAC,CAAC,CAAC,SAAS,iEAAiE;AAC7E,MAAM,sDAAsDA,IAAAA,EAAE,OAAO;CACnE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzF,OAAOA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9E,CAAC,CAAC,CAAC,SAAS,6DAA6D;AACzE,MAAM,mDAAmDA,IAAAA,EAAE,OAAO;CAChE,IAAIA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,UAAUA,IAAAA,EAAE,MAAM,mDAAmD,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9J,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC1F,CAAC,CAAC,CAAC,SAAS,wDAAwD;AACpE,MAAa,mCAAmCA,IAAAA,EAAE,OAAO,EACvD,cAAcA,IAAAA,EAAE,MAAM,gDAAgD,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAC5L,CAAC,CAAC,CAAC,SAAS,mFAAmF;AAE/F,MAAa,6BAA6BC,eAAAA,OAAO,gCAAgC;CAC/E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"list-competitions.cjs","names":["z","action"],"sources":["../../src/actions/list-competitions.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListCompetitionsInput = z.object({\n filter: z.string().describe(\"The search value to match against the criteria specified in search_by parameter. Used to filter competitions by player information.\").optional(),\n accesskey: z.string().describe(\"Filter results to show only competitions associated with a specific access key identifier.\").optional(),\n search_by: z.enum([\"Email\", \"Name\", \"External Id\"]).describe(\"Specifies the search criteria type to filter competitions by player. Accepts 'Email', 'Name', or 'External Id'. Used in combination with 'filter' parameter.\").optional(),\n competition_id: z.union([z.number().int(), z.string()]).optional(),\n}).describe(\"Request model for listing competitions with optional filtering.\");\nconst PointagramListCompetitions_CompetitionRankingSchema = z.object({\n rank: z.number().int().describe(\"Player's rank in the competition.\").nullable().optional(),\n score: z.union([z.number().int(), z.number()]).nullable().optional(),\n player_id: z.string().describe(\"Unique identifier of the player.\").nullable().optional(),\n player_name: z.string().describe(\"Name of the player.\").nullable().optional(),\n}).passthrough().describe(\"Model representing a player's ranking within a competition.\");\nconst PointagramListCompetitions_CompetitionItemSchema = z.object({\n id: z.union([z.number().int(), z.string()]).nullable().optional(),\n name: z.string().describe(\"Name of the competition.\").nullable().optional(),\n status: z.string().describe(\"Current status of the competition.\").nullable().optional(),\n end_date: z.string().describe(\"End date of the competition.\").nullable().optional(),\n rankings: z.array(PointagramListCompetitions_CompetitionRankingSchema).describe(\"List of player rankings and scores in the competition.\").nullable().optional(),\n accesskey: z.string().describe(\"Access key associated with the competition.\").nullable().optional(),\n start_date: z.string().describe(\"Start date of the competition.\").nullable().optional(),\n description: z.string().describe(\"Description of the competition.\").nullable().optional(),\n}).passthrough().describe(\"Model representing a single competition in Pointagram.\");\nexport const PointagramListCompetitionsOutput = z.object({\n competitions: z.array(PointagramListCompetitions_CompetitionItemSchema).describe(\"List of competitions matching the search criteria, including rankings and scores.\").nullable().optional(),\n}).passthrough().describe(\"Response model for listing competitions. Returns an array of competition objects.\");\n\nexport const pointagramListCompetitions = action(\"POINTAGRAM_LIST_COMPETITIONS\", {\n slug: \"pointagram-list-competitions\",\n name: \"List Competitions\",\n description: \"Tool to fetch competitions in Pointagram with optional filtering. Use when you need to retrieve competition information including rankings and scores. Supports filtering by player (email, name, external ID), competition ID, or access key.\",\n input: PointagramListCompetitionsInput,\n output: PointagramListCompetitionsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,kCAAkCA,IAAAA,EAAE,OAAO;CACtD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qIAAqI,CAAC,CAAC,SAAS;CAC5K,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4FAA4F,CAAC,CAAC,SAAS;CACtI,WAAWA,IAAAA,EAAE,KAAK;EAAC;EAAS;EAAQ;CAAa,CAAC,CAAC,CAAC,SAAS,8JAA8J,CAAC,CAAC,SAAS;CACtO,gBAAgBA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS;AACnE,CAAC,CAAC,CAAC,SAAS,iEAAiE;AAC7E,MAAM,sDAAsDA,IAAAA,EAAE,OAAO;CACnE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzF,OAAOA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9E,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,6DAA6D;AACvF,MAAM,mDAAmDA,IAAAA,EAAE,OAAO;CAChE,IAAIA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,UAAUA,IAAAA,EAAE,MAAM,mDAAmD,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9J,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC1F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wDAAwD;AAClF,MAAa,mCAAmCA,IAAAA,EAAE,OAAO,EACvD,cAAcA,IAAAA,EAAE,MAAM,gDAAgD,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAC5L,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mFAAmF;AAE7G,MAAa,6BAA6BC,eAAAA,OAAO,gCAAgC;CAC/E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -22,12 +22,12 @@ declare const PointagramListCompetitionsOutput: z.ZodObject<{
22
22
  score: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodNumber, z.ZodNumber]>>>;
23
23
  player_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24
24
  player_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25
- }, z.core.$strip>>>>;
25
+ }, z.core.$loose>>>>;
26
26
  accesskey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
27
27
  start_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
28
28
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29
- }, z.core.$strip>>>>;
30
- }, z.core.$strip>;
29
+ }, z.core.$loose>>>>;
30
+ }, z.core.$loose>;
31
31
  declare const pointagramListCompetitions: import("@keystrokehq/action").WorkflowActionDefinition<{
32
32
  filter?: string | undefined;
33
33
  accesskey?: string | undefined;
@@ -22,12 +22,12 @@ declare const PointagramListCompetitionsOutput: z.ZodObject<{
22
22
  score: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodNumber, z.ZodNumber]>>>;
23
23
  player_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24
24
  player_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25
- }, z.core.$strip>>>>;
25
+ }, z.core.$loose>>>>;
26
26
  accesskey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
27
27
  start_date: z.ZodOptional<z.ZodNullable<z.ZodString>>;
28
28
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
29
- }, z.core.$strip>>>>;
30
- }, z.core.$strip>;
29
+ }, z.core.$loose>>>>;
30
+ }, z.core.$loose>;
31
31
  declare const pointagramListCompetitions: import("@keystrokehq/action").WorkflowActionDefinition<{
32
32
  filter?: string | undefined;
33
33
  accesskey?: string | undefined;
@@ -16,7 +16,7 @@ const PointagramListCompetitions_CompetitionRankingSchema = z.object({
16
16
  score: z.union([z.number().int(), z.number()]).nullable().optional(),
17
17
  player_id: z.string().describe("Unique identifier of the player.").nullable().optional(),
18
18
  player_name: z.string().describe("Name of the player.").nullable().optional()
19
- }).describe("Model representing a player's ranking within a competition.");
19
+ }).passthrough().describe("Model representing a player's ranking within a competition.");
20
20
  const PointagramListCompetitions_CompetitionItemSchema = z.object({
21
21
  id: z.union([z.number().int(), z.string()]).nullable().optional(),
22
22
  name: z.string().describe("Name of the competition.").nullable().optional(),
@@ -26,13 +26,13 @@ const PointagramListCompetitions_CompetitionItemSchema = z.object({
26
26
  accesskey: z.string().describe("Access key associated with the competition.").nullable().optional(),
27
27
  start_date: z.string().describe("Start date of the competition.").nullable().optional(),
28
28
  description: z.string().describe("Description of the competition.").nullable().optional()
29
- }).describe("Model representing a single competition in Pointagram.");
29
+ }).passthrough().describe("Model representing a single competition in Pointagram.");
30
30
  const pointagramListCompetitions = action("POINTAGRAM_LIST_COMPETITIONS", {
31
31
  slug: "pointagram-list-competitions",
32
32
  name: "List Competitions",
33
33
  description: "Tool to fetch competitions in Pointagram with optional filtering. Use when you need to retrieve competition information including rankings and scores. Supports filtering by player (email, name, external ID), competition ID, or access key.",
34
34
  input: PointagramListCompetitionsInput,
35
- output: z.object({ competitions: z.array(PointagramListCompetitions_CompetitionItemSchema).describe("List of competitions matching the search criteria, including rankings and scores.").nullable().optional() }).describe("Response model for listing competitions. Returns an array of competition objects.")
35
+ output: z.object({ competitions: z.array(PointagramListCompetitions_CompetitionItemSchema).describe("List of competitions matching the search criteria, including rankings and scores.").nullable().optional() }).passthrough().describe("Response model for listing competitions. Returns an array of competition objects.")
36
36
  });
37
37
  //#endregion
38
38
  export { pointagramListCompetitions };
@@ -1 +1 @@
1
- {"version":3,"file":"list-competitions.mjs","names":[],"sources":["../../src/actions/list-competitions.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListCompetitionsInput = z.object({\n filter: z.string().describe(\"The search value to match against the criteria specified in search_by parameter. Used to filter competitions by player information.\").optional(),\n accesskey: z.string().describe(\"Filter results to show only competitions associated with a specific access key identifier.\").optional(),\n search_by: z.enum([\"Email\", \"Name\", \"External Id\"]).describe(\"Specifies the search criteria type to filter competitions by player. Accepts 'Email', 'Name', or 'External Id'. Used in combination with 'filter' parameter.\").optional(),\n competition_id: z.union([z.number().int(), z.string()]).optional(),\n}).describe(\"Request model for listing competitions with optional filtering.\");\nconst PointagramListCompetitions_CompetitionRankingSchema = z.object({\n rank: z.number().int().describe(\"Player's rank in the competition.\").nullable().optional(),\n score: z.union([z.number().int(), z.number()]).nullable().optional(),\n player_id: z.string().describe(\"Unique identifier of the player.\").nullable().optional(),\n player_name: z.string().describe(\"Name of the player.\").nullable().optional(),\n}).describe(\"Model representing a player's ranking within a competition.\");\nconst PointagramListCompetitions_CompetitionItemSchema = z.object({\n id: z.union([z.number().int(), z.string()]).nullable().optional(),\n name: z.string().describe(\"Name of the competition.\").nullable().optional(),\n status: z.string().describe(\"Current status of the competition.\").nullable().optional(),\n end_date: z.string().describe(\"End date of the competition.\").nullable().optional(),\n rankings: z.array(PointagramListCompetitions_CompetitionRankingSchema).describe(\"List of player rankings and scores in the competition.\").nullable().optional(),\n accesskey: z.string().describe(\"Access key associated with the competition.\").nullable().optional(),\n start_date: z.string().describe(\"Start date of the competition.\").nullable().optional(),\n description: z.string().describe(\"Description of the competition.\").nullable().optional(),\n}).describe(\"Model representing a single competition in Pointagram.\");\nexport const PointagramListCompetitionsOutput = z.object({\n competitions: z.array(PointagramListCompetitions_CompetitionItemSchema).describe(\"List of competitions matching the search criteria, including rankings and scores.\").nullable().optional(),\n}).describe(\"Response model for listing competitions. Returns an array of competition objects.\");\n\nexport const pointagramListCompetitions = action(\"POINTAGRAM_LIST_COMPETITIONS\", {\n slug: \"pointagram-list-competitions\",\n name: \"List Competitions\",\n description: \"Tool to fetch competitions in Pointagram with optional filtering. Use when you need to retrieve competition information including rankings and scores. Supports filtering by player (email, name, external ID), competition ID, or access key.\",\n input: PointagramListCompetitionsInput,\n output: PointagramListCompetitionsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,kCAAkC,EAAE,OAAO;CACtD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,qIAAqI,CAAC,CAAC,SAAS;CAC5K,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,4FAA4F,CAAC,CAAC,SAAS;CACtI,WAAW,EAAE,KAAK;EAAC;EAAS;EAAQ;CAAa,CAAC,CAAC,CAAC,SAAS,8JAA8J,CAAC,CAAC,SAAS;CACtO,gBAAgB,EAAE,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS;AACnE,CAAC,CAAC,CAAC,SAAS,iEAAiE;AAC7E,MAAM,sDAAsD,EAAE,OAAO;CACnE,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzF,OAAO,EAAE,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnE,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9E,CAAC,CAAC,CAAC,SAAS,6DAA6D;AACzE,MAAM,mDAAmD,EAAE,OAAO;CAChE,IAAI,EAAE,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,UAAU,EAAE,MAAM,mDAAmD,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9J,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC1F,CAAC,CAAC,CAAC,SAAS,wDAAwD;AAKpE,MAAa,6BAA6B,OAAO,gCAAgC;CAC/E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT8C,EAAE,OAAO,EACvD,cAAc,EAAE,MAAM,gDAAgD,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAC5L,CAAC,CAAC,CAAC,SAAS,mFAOF;AACV,CAAC"}
1
+ {"version":3,"file":"list-competitions.mjs","names":[],"sources":["../../src/actions/list-competitions.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListCompetitionsInput = z.object({\n filter: z.string().describe(\"The search value to match against the criteria specified in search_by parameter. Used to filter competitions by player information.\").optional(),\n accesskey: z.string().describe(\"Filter results to show only competitions associated with a specific access key identifier.\").optional(),\n search_by: z.enum([\"Email\", \"Name\", \"External Id\"]).describe(\"Specifies the search criteria type to filter competitions by player. Accepts 'Email', 'Name', or 'External Id'. Used in combination with 'filter' parameter.\").optional(),\n competition_id: z.union([z.number().int(), z.string()]).optional(),\n}).describe(\"Request model for listing competitions with optional filtering.\");\nconst PointagramListCompetitions_CompetitionRankingSchema = z.object({\n rank: z.number().int().describe(\"Player's rank in the competition.\").nullable().optional(),\n score: z.union([z.number().int(), z.number()]).nullable().optional(),\n player_id: z.string().describe(\"Unique identifier of the player.\").nullable().optional(),\n player_name: z.string().describe(\"Name of the player.\").nullable().optional(),\n}).passthrough().describe(\"Model representing a player's ranking within a competition.\");\nconst PointagramListCompetitions_CompetitionItemSchema = z.object({\n id: z.union([z.number().int(), z.string()]).nullable().optional(),\n name: z.string().describe(\"Name of the competition.\").nullable().optional(),\n status: z.string().describe(\"Current status of the competition.\").nullable().optional(),\n end_date: z.string().describe(\"End date of the competition.\").nullable().optional(),\n rankings: z.array(PointagramListCompetitions_CompetitionRankingSchema).describe(\"List of player rankings and scores in the competition.\").nullable().optional(),\n accesskey: z.string().describe(\"Access key associated with the competition.\").nullable().optional(),\n start_date: z.string().describe(\"Start date of the competition.\").nullable().optional(),\n description: z.string().describe(\"Description of the competition.\").nullable().optional(),\n}).passthrough().describe(\"Model representing a single competition in Pointagram.\");\nexport const PointagramListCompetitionsOutput = z.object({\n competitions: z.array(PointagramListCompetitions_CompetitionItemSchema).describe(\"List of competitions matching the search criteria, including rankings and scores.\").nullable().optional(),\n}).passthrough().describe(\"Response model for listing competitions. Returns an array of competition objects.\");\n\nexport const pointagramListCompetitions = action(\"POINTAGRAM_LIST_COMPETITIONS\", {\n slug: \"pointagram-list-competitions\",\n name: \"List Competitions\",\n description: \"Tool to fetch competitions in Pointagram with optional filtering. Use when you need to retrieve competition information including rankings and scores. Supports filtering by player (email, name, external ID), competition ID, or access key.\",\n input: PointagramListCompetitionsInput,\n output: PointagramListCompetitionsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,kCAAkC,EAAE,OAAO;CACtD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,qIAAqI,CAAC,CAAC,SAAS;CAC5K,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,4FAA4F,CAAC,CAAC,SAAS;CACtI,WAAW,EAAE,KAAK;EAAC;EAAS;EAAQ;CAAa,CAAC,CAAC,CAAC,SAAS,8JAA8J,CAAC,CAAC,SAAS;CACtO,gBAAgB,EAAE,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS;AACnE,CAAC,CAAC,CAAC,SAAS,iEAAiE;AAC7E,MAAM,sDAAsD,EAAE,OAAO;CACnE,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzF,OAAO,EAAE,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnE,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9E,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,6DAA6D;AACvF,MAAM,mDAAmD,EAAE,OAAO;CAChE,IAAI,EAAE,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,UAAU,EAAE,MAAM,mDAAmD,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9J,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC1F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,wDAAwD;AAKlF,MAAa,6BAA6B,OAAO,gCAAgC;CAC/E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT8C,EAAE,OAAO,EACvD,cAAc,EAAE,MAAM,gDAAgD,CAAC,CAAC,SAAS,mFAAmF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAC5L,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mFAOhB;AACV,CAAC"}
@@ -14,8 +14,8 @@ const PointagramListPlayers_PlayerItemSchema = zod.z.object({
14
14
  Name: zod.z.string().describe("The player's display name in the system.").nullable(),
15
15
  external_id: zod.z.string().describe("Optional custom identifier from your system.").nullable().optional(),
16
16
  emailaddress: zod.z.string().describe("The player's email address.").nullable()
17
- }).describe("Player information model.");
18
- const PointagramListPlayersOutput = zod.z.object({ players: zod.z.array(PointagramListPlayers_PlayerItemSchema).describe("List of players matching the search criteria.") }).describe("Response model for listing players. Returns an array of player objects.");
17
+ }).passthrough().describe("Player information model.");
18
+ const PointagramListPlayersOutput = zod.z.object({ players: zod.z.array(PointagramListPlayers_PlayerItemSchema).describe("List of players matching the search criteria.") }).passthrough().describe("Response model for listing players. Returns an array of player objects.");
19
19
  const pointagramListPlayers = require_action.action("POINTAGRAM_LIST_PLAYERS", {
20
20
  slug: "pointagram-list-players",
21
21
  name: "List Players",
@@ -1 +1 @@
1
- {"version":3,"file":"list-players.cjs","names":["z","action"],"sources":["../../src/actions/list-players.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListPlayersInput = z.object({\n filter: z.string().describe(\"The search value to match against the specified search_by field. Used in combination with 'search_by' parameter to filter results.\").optional(),\n search_by: z.enum([\"Email\", \"Name\", \"External Id\"]).describe(\"Specifies the search field to filter players. Accepts 'Email', 'Name', or 'External Id'. If provided, 'filter' parameter must also be provided.\").optional(),\n}).describe(\"Request model for listing players with optional filtering.\");\nconst PointagramListPlayers_PlayerItemSchema = z.object({\n id: z.string().describe(\"The internal Pointagram player identifier.\").nullable(),\n Name: z.string().describe(\"The player's display name in the system.\").nullable(),\n external_id: z.string().describe(\"Optional custom identifier from your system.\").nullable().optional(),\n emailaddress: z.string().describe(\"The player's email address.\").nullable(),\n}).describe(\"Player information model.\");\nexport const PointagramListPlayersOutput = z.object({\n players: z.array(PointagramListPlayers_PlayerItemSchema).describe(\"List of players matching the search criteria.\"),\n}).describe(\"Response model for listing players. Returns an array of player objects.\");\n\nexport const pointagramListPlayers = action(\"POINTAGRAM_LIST_PLAYERS\", {\n slug: \"pointagram-list-players\",\n name: \"List Players\",\n description: \"Tool to fetch and list players in Pointagram with optional filtering. Use when you need to retrieve player information including name, email, external ID, and status. Supports filtering by email, name, or external ID.\",\n input: PointagramListPlayersInput,\n output: PointagramListPlayersOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO;CACjD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oIAAoI,CAAC,CAAC,SAAS;CAC3K,WAAWA,IAAAA,EAAE,KAAK;EAAC;EAAS;EAAQ;CAAa,CAAC,CAAC,CAAC,SAAS,iJAAiJ,CAAC,CAAC,SAAS;AAC3N,CAAC,CAAC,CAAC,SAAS,4DAA4D;AACxE,MAAM,yCAAyCA,IAAAA,EAAE,OAAO;CACtD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CAC/E,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;CAC/E,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;AAC5E,CAAC,CAAC,CAAC,SAAS,2BAA2B;AACvC,MAAa,8BAA8BA,IAAAA,EAAE,OAAO,EAClD,SAASA,IAAAA,EAAE,MAAM,sCAAsC,CAAC,CAAC,SAAS,+CAA+C,EACnH,CAAC,CAAC,CAAC,SAAS,yEAAyE;AAErF,MAAa,wBAAwBC,eAAAA,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"list-players.cjs","names":["z","action"],"sources":["../../src/actions/list-players.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListPlayersInput = z.object({\n filter: z.string().describe(\"The search value to match against the specified search_by field. Used in combination with 'search_by' parameter to filter results.\").optional(),\n search_by: z.enum([\"Email\", \"Name\", \"External Id\"]).describe(\"Specifies the search field to filter players. Accepts 'Email', 'Name', or 'External Id'. If provided, 'filter' parameter must also be provided.\").optional(),\n}).describe(\"Request model for listing players with optional filtering.\");\nconst PointagramListPlayers_PlayerItemSchema = z.object({\n id: z.string().describe(\"The internal Pointagram player identifier.\").nullable(),\n Name: z.string().describe(\"The player's display name in the system.\").nullable(),\n external_id: z.string().describe(\"Optional custom identifier from your system.\").nullable().optional(),\n emailaddress: z.string().describe(\"The player's email address.\").nullable(),\n}).passthrough().describe(\"Player information model.\");\nexport const PointagramListPlayersOutput = z.object({\n players: z.array(PointagramListPlayers_PlayerItemSchema).describe(\"List of players matching the search criteria.\"),\n}).passthrough().describe(\"Response model for listing players. Returns an array of player objects.\");\n\nexport const pointagramListPlayers = action(\"POINTAGRAM_LIST_PLAYERS\", {\n slug: \"pointagram-list-players\",\n name: \"List Players\",\n description: \"Tool to fetch and list players in Pointagram with optional filtering. Use when you need to retrieve player information including name, email, external ID, and status. Supports filtering by email, name, or external ID.\",\n input: PointagramListPlayersInput,\n output: PointagramListPlayersOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO;CACjD,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oIAAoI,CAAC,CAAC,SAAS;CAC3K,WAAWA,IAAAA,EAAE,KAAK;EAAC;EAAS;EAAQ;CAAa,CAAC,CAAC,CAAC,SAAS,iJAAiJ,CAAC,CAAC,SAAS;AAC3N,CAAC,CAAC,CAAC,SAAS,4DAA4D;AACxE,MAAM,yCAAyCA,IAAAA,EAAE,OAAO;CACtD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CAC/E,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;CAC/E,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;AAC5E,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2BAA2B;AACrD,MAAa,8BAA8BA,IAAAA,EAAE,OAAO,EAClD,SAASA,IAAAA,EAAE,MAAM,sCAAsC,CAAC,CAAC,SAAS,+CAA+C,EACnH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,yEAAyE;AAEnG,MAAa,wBAAwBC,eAAAA,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -15,8 +15,8 @@ declare const PointagramListPlayersOutput: z.ZodObject<{
15
15
  Name: z.ZodNullable<z.ZodString>;
16
16
  external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17
17
  emailaddress: z.ZodNullable<z.ZodString>;
18
- }, z.core.$strip>>;
19
- }, z.core.$strip>;
18
+ }, z.core.$loose>>;
19
+ }, z.core.$loose>;
20
20
  declare const pointagramListPlayers: import("@keystrokehq/action").WorkflowActionDefinition<{
21
21
  filter?: string | undefined;
22
22
  search_by?: "Email" | "Name" | "External Id" | undefined;
@@ -15,8 +15,8 @@ declare const PointagramListPlayersOutput: z.ZodObject<{
15
15
  Name: z.ZodNullable<z.ZodString>;
16
16
  external_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17
17
  emailaddress: z.ZodNullable<z.ZodString>;
18
- }, z.core.$strip>>;
19
- }, z.core.$strip>;
18
+ }, z.core.$loose>>;
19
+ }, z.core.$loose>;
20
20
  declare const pointagramListPlayers: import("@keystrokehq/action").WorkflowActionDefinition<{
21
21
  filter?: string | undefined;
22
22
  search_by?: "Email" | "Name" | "External Id" | undefined;
@@ -14,13 +14,13 @@ const PointagramListPlayers_PlayerItemSchema = z.object({
14
14
  Name: z.string().describe("The player's display name in the system.").nullable(),
15
15
  external_id: z.string().describe("Optional custom identifier from your system.").nullable().optional(),
16
16
  emailaddress: z.string().describe("The player's email address.").nullable()
17
- }).describe("Player information model.");
17
+ }).passthrough().describe("Player information model.");
18
18
  const pointagramListPlayers = action("POINTAGRAM_LIST_PLAYERS", {
19
19
  slug: "pointagram-list-players",
20
20
  name: "List Players",
21
21
  description: "Tool to fetch and list players in Pointagram with optional filtering. Use when you need to retrieve player information including name, email, external ID, and status. Supports filtering by email, name, or external ID.",
22
22
  input: PointagramListPlayersInput,
23
- output: z.object({ players: z.array(PointagramListPlayers_PlayerItemSchema).describe("List of players matching the search criteria.") }).describe("Response model for listing players. Returns an array of player objects.")
23
+ output: z.object({ players: z.array(PointagramListPlayers_PlayerItemSchema).describe("List of players matching the search criteria.") }).passthrough().describe("Response model for listing players. Returns an array of player objects.")
24
24
  });
25
25
  //#endregion
26
26
  export { pointagramListPlayers };
@@ -1 +1 @@
1
- {"version":3,"file":"list-players.mjs","names":[],"sources":["../../src/actions/list-players.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListPlayersInput = z.object({\n filter: z.string().describe(\"The search value to match against the specified search_by field. Used in combination with 'search_by' parameter to filter results.\").optional(),\n search_by: z.enum([\"Email\", \"Name\", \"External Id\"]).describe(\"Specifies the search field to filter players. Accepts 'Email', 'Name', or 'External Id'. If provided, 'filter' parameter must also be provided.\").optional(),\n}).describe(\"Request model for listing players with optional filtering.\");\nconst PointagramListPlayers_PlayerItemSchema = z.object({\n id: z.string().describe(\"The internal Pointagram player identifier.\").nullable(),\n Name: z.string().describe(\"The player's display name in the system.\").nullable(),\n external_id: z.string().describe(\"Optional custom identifier from your system.\").nullable().optional(),\n emailaddress: z.string().describe(\"The player's email address.\").nullable(),\n}).describe(\"Player information model.\");\nexport const PointagramListPlayersOutput = z.object({\n players: z.array(PointagramListPlayers_PlayerItemSchema).describe(\"List of players matching the search criteria.\"),\n}).describe(\"Response model for listing players. Returns an array of player objects.\");\n\nexport const pointagramListPlayers = action(\"POINTAGRAM_LIST_PLAYERS\", {\n slug: \"pointagram-list-players\",\n name: \"List Players\",\n description: \"Tool to fetch and list players in Pointagram with optional filtering. Use when you need to retrieve player information including name, email, external ID, and status. Supports filtering by email, name, or external ID.\",\n input: PointagramListPlayersInput,\n output: PointagramListPlayersOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6B,EAAE,OAAO;CACjD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,oIAAoI,CAAC,CAAC,SAAS;CAC3K,WAAW,EAAE,KAAK;EAAC;EAAS;EAAQ;CAAa,CAAC,CAAC,CAAC,SAAS,iJAAiJ,CAAC,CAAC,SAAS;AAC3N,CAAC,CAAC,CAAC,SAAS,4DAA4D;AACxE,MAAM,yCAAyC,EAAE,OAAO;CACtD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CAC/E,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;CAC/E,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;AAC5E,CAAC,CAAC,CAAC,SAAS,2BAA2B;AAKvC,MAAa,wBAAwB,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATyC,EAAE,OAAO,EAClD,SAAS,EAAE,MAAM,sCAAsC,CAAC,CAAC,SAAS,+CAA+C,EACnH,CAAC,CAAC,CAAC,SAAS,yEAOF;AACV,CAAC"}
1
+ {"version":3,"file":"list-players.mjs","names":[],"sources":["../../src/actions/list-players.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListPlayersInput = z.object({\n filter: z.string().describe(\"The search value to match against the specified search_by field. Used in combination with 'search_by' parameter to filter results.\").optional(),\n search_by: z.enum([\"Email\", \"Name\", \"External Id\"]).describe(\"Specifies the search field to filter players. Accepts 'Email', 'Name', or 'External Id'. If provided, 'filter' parameter must also be provided.\").optional(),\n}).describe(\"Request model for listing players with optional filtering.\");\nconst PointagramListPlayers_PlayerItemSchema = z.object({\n id: z.string().describe(\"The internal Pointagram player identifier.\").nullable(),\n Name: z.string().describe(\"The player's display name in the system.\").nullable(),\n external_id: z.string().describe(\"Optional custom identifier from your system.\").nullable().optional(),\n emailaddress: z.string().describe(\"The player's email address.\").nullable(),\n}).passthrough().describe(\"Player information model.\");\nexport const PointagramListPlayersOutput = z.object({\n players: z.array(PointagramListPlayers_PlayerItemSchema).describe(\"List of players matching the search criteria.\"),\n}).passthrough().describe(\"Response model for listing players. Returns an array of player objects.\");\n\nexport const pointagramListPlayers = action(\"POINTAGRAM_LIST_PLAYERS\", {\n slug: \"pointagram-list-players\",\n name: \"List Players\",\n description: \"Tool to fetch and list players in Pointagram with optional filtering. Use when you need to retrieve player information including name, email, external ID, and status. Supports filtering by email, name, or external ID.\",\n input: PointagramListPlayersInput,\n output: PointagramListPlayersOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6B,EAAE,OAAO;CACjD,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,oIAAoI,CAAC,CAAC,SAAS;CAC3K,WAAW,EAAE,KAAK;EAAC;EAAS;EAAQ;CAAa,CAAC,CAAC,CAAC,SAAS,iJAAiJ,CAAC,CAAC,SAAS;AAC3N,CAAC,CAAC,CAAC,SAAS,4DAA4D;AACxE,MAAM,yCAAyC,EAAE,OAAO;CACtD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CAC/E,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS;CAC/E,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;AAC5E,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2BAA2B;AAKrD,MAAa,wBAAwB,OAAO,2BAA2B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATyC,EAAE,OAAO,EAClD,SAAS,EAAE,MAAM,sCAAsC,CAAC,CAAC,SAAS,+CAA+C,EACnH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,yEAOhB;AACV,CAAC"}
@@ -22,8 +22,8 @@ const PointagramListScoreSeriesHistory_HistoryItemSchema = zod.z.object({
22
22
  timestamp: zod.z.string().describe("Timestamp when the points were awarded.").nullable().optional(),
23
23
  description: zod.z.string().describe("Description of the transaction.").nullable().optional(),
24
24
  player_name: zod.z.string().describe("Player name.").nullable().optional()
25
- }).describe("Model representing a single historical transaction in the score series.");
26
- const PointagramListScoreSeriesHistoryOutput = zod.z.object({ history: zod.z.array(PointagramListScoreSeriesHistory_HistoryItemSchema).describe("List of historical transactions for the score series.") }).describe("Response model for listing score series history. Returns an array of historical transactions.");
25
+ }).passthrough().describe("Model representing a single historical transaction in the score series.");
26
+ const PointagramListScoreSeriesHistoryOutput = zod.z.object({ history: zod.z.array(PointagramListScoreSeriesHistory_HistoryItemSchema).describe("List of historical transactions for the score series.") }).passthrough().describe("Response model for listing score series history. Returns an array of historical transactions.");
27
27
  const pointagramListScoreSeriesHistory = require_action.action("POINTAGRAM_LIST_SCORE_SERIES_HISTORY", {
28
28
  slug: "pointagram-list-score-series-history",
29
29
  name: "List Score Series History",
@@ -1 +1 @@
1
- {"version":3,"file":"list-score-series-history.cjs","names":["z","action"],"sources":["../../src/actions/list-score-series-history.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListScoreSeriesHistoryInput = z.object({\n limit: z.number().int().describe(\"Maximum rows per request (default: 50, maximum: 1000).\").optional(),\n time_to: z.string().describe(\"End time in UTC format \\\"YYYY-MM-DD HH:MM:SS\\\".\").optional(),\n offset_id: z.string().describe(\"For pagination - use previous response's last row ID. Must be used together with offset_timestamp.\").optional(),\n time_from: z.string().describe(\"Start time in UTC format \\\"YYYY-MM-DD HH:MM:SS\\\".\").optional(),\n tags_filter: z.string().describe(\"Filter by specific tags in JSON format: [{\\\"id\\\":\\\"13\\\",\\\"type\\\":1},{\\\"id\\\":\\\"14\\\",\\\"type\\\":1}] where type 1=tags, type 2=point type.\").optional(),\n show_revoked: z.number().int().describe(\"Set to 1 to include revoked points; default is 0.\").optional(),\n teams_filter: z.string().describe(\"Filter by team IDs in JSON format: [\\\"20\\\"].\").optional(),\n player_filter: z.string().describe(\"Filter by player profile IDs in JSON format: [\\\"19145\\\"].\").optional(),\n scoreseriesid: z.number().int().describe(\"The ID of the score series to fetch history for. This is a required parameter.\"),\n tags_or_filter: z.string().describe(\"Alternative tag filtering with OR logic. Same format as tags_filter: [{\\\"id\\\":\\\"13\\\",\\\"type\\\":1}].\").optional(),\n offset_timestamp: z.string().describe(\"For pagination - use previous response's last row timestamp. Must be used together with offset_id.\").optional(),\n}).describe(\"Request model for listing score series history with filtering and pagination.\");\nconst PointagramListScoreSeriesHistory_HistoryItemSchema = z.object({\n id: z.string().describe(\"Transaction ID.\").nullable().optional(),\n points: z.union([z.number().int(), z.number()]).nullable().optional(),\n revoked: z.union([z.number().int(), z.boolean()]).nullable().optional(),\n player_id: z.string().describe(\"Player profile ID.\").nullable().optional(),\n timestamp: z.string().describe(\"Timestamp when the points were awarded.\").nullable().optional(),\n description: z.string().describe(\"Description of the transaction.\").nullable().optional(),\n player_name: z.string().describe(\"Player name.\").nullable().optional(),\n}).describe(\"Model representing a single historical transaction in the score series.\");\nexport const PointagramListScoreSeriesHistoryOutput = z.object({\n history: z.array(PointagramListScoreSeriesHistory_HistoryItemSchema).describe(\"List of historical transactions for the score series.\"),\n}).describe(\"Response model for listing score series history. Returns an array of historical transactions.\");\n\nexport const pointagramListScoreSeriesHistory = action(\"POINTAGRAM_LIST_SCORE_SERIES_HISTORY\", {\n slug: \"pointagram-list-score-series-history\",\n name: \"List Score Series History\",\n description: \"Tool to fetch historical point data for a score series. Returns time-series data of points awarded over time with optional filtering by tags, teams, players, and time range. Use when you need to retrieve historical transaction data for a specific score series.\",\n input: PointagramListScoreSeriesHistoryInput,\n output: PointagramListScoreSeriesHistoryOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wCAAwCA,IAAAA,EAAE,OAAO;CAC5D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS;CACpG,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;CACzF,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,SAAS;CAC9I,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CAC7F,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uIAAuI,CAAC,CAAC,SAAS;CACnL,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CACtG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;CAC3F,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;CACzG,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gFAAgF;CACzH,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,SAAS;CACnJ,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,SAAS;AACvJ,CAAC,CAAC,CAAC,SAAS,+EAA+E;AAC3F,MAAM,qDAAqDA,IAAAA,EAAE,OAAO;CAClE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/D,QAAQA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpE,SAASA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACvE,CAAC,CAAC,CAAC,SAAS,yEAAyE;AACrF,MAAa,yCAAyCA,IAAAA,EAAE,OAAO,EAC7D,SAASA,IAAAA,EAAE,MAAM,kDAAkD,CAAC,CAAC,SAAS,uDAAuD,EACvI,CAAC,CAAC,CAAC,SAAS,+FAA+F;AAE3G,MAAa,mCAAmCC,eAAAA,OAAO,wCAAwC;CAC7F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"list-score-series-history.cjs","names":["z","action"],"sources":["../../src/actions/list-score-series-history.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListScoreSeriesHistoryInput = z.object({\n limit: z.number().int().describe(\"Maximum rows per request (default: 50, maximum: 1000).\").optional(),\n time_to: z.string().describe(\"End time in UTC format \\\"YYYY-MM-DD HH:MM:SS\\\".\").optional(),\n offset_id: z.string().describe(\"For pagination - use previous response's last row ID. Must be used together with offset_timestamp.\").optional(),\n time_from: z.string().describe(\"Start time in UTC format \\\"YYYY-MM-DD HH:MM:SS\\\".\").optional(),\n tags_filter: z.string().describe(\"Filter by specific tags in JSON format: [{\\\"id\\\":\\\"13\\\",\\\"type\\\":1},{\\\"id\\\":\\\"14\\\",\\\"type\\\":1}] where type 1=tags, type 2=point type.\").optional(),\n show_revoked: z.number().int().describe(\"Set to 1 to include revoked points; default is 0.\").optional(),\n teams_filter: z.string().describe(\"Filter by team IDs in JSON format: [\\\"20\\\"].\").optional(),\n player_filter: z.string().describe(\"Filter by player profile IDs in JSON format: [\\\"19145\\\"].\").optional(),\n scoreseriesid: z.number().int().describe(\"The ID of the score series to fetch history for. This is a required parameter.\"),\n tags_or_filter: z.string().describe(\"Alternative tag filtering with OR logic. Same format as tags_filter: [{\\\"id\\\":\\\"13\\\",\\\"type\\\":1}].\").optional(),\n offset_timestamp: z.string().describe(\"For pagination - use previous response's last row timestamp. Must be used together with offset_id.\").optional(),\n}).describe(\"Request model for listing score series history with filtering and pagination.\");\nconst PointagramListScoreSeriesHistory_HistoryItemSchema = z.object({\n id: z.string().describe(\"Transaction ID.\").nullable().optional(),\n points: z.union([z.number().int(), z.number()]).nullable().optional(),\n revoked: z.union([z.number().int(), z.boolean()]).nullable().optional(),\n player_id: z.string().describe(\"Player profile ID.\").nullable().optional(),\n timestamp: z.string().describe(\"Timestamp when the points were awarded.\").nullable().optional(),\n description: z.string().describe(\"Description of the transaction.\").nullable().optional(),\n player_name: z.string().describe(\"Player name.\").nullable().optional(),\n}).passthrough().describe(\"Model representing a single historical transaction in the score series.\");\nexport const PointagramListScoreSeriesHistoryOutput = z.object({\n history: z.array(PointagramListScoreSeriesHistory_HistoryItemSchema).describe(\"List of historical transactions for the score series.\"),\n}).passthrough().describe(\"Response model for listing score series history. Returns an array of historical transactions.\");\n\nexport const pointagramListScoreSeriesHistory = action(\"POINTAGRAM_LIST_SCORE_SERIES_HISTORY\", {\n slug: \"pointagram-list-score-series-history\",\n name: \"List Score Series History\",\n description: \"Tool to fetch historical point data for a score series. Returns time-series data of points awarded over time with optional filtering by tags, teams, players, and time range. Use when you need to retrieve historical transaction data for a specific score series.\",\n input: PointagramListScoreSeriesHistoryInput,\n output: PointagramListScoreSeriesHistoryOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wCAAwCA,IAAAA,EAAE,OAAO;CAC5D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS;CACpG,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;CACzF,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,SAAS;CAC9I,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CAC7F,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uIAAuI,CAAC,CAAC,SAAS;CACnL,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CACtG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;CAC3F,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;CACzG,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gFAAgF;CACzH,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,SAAS;CACnJ,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,SAAS;AACvJ,CAAC,CAAC,CAAC,SAAS,+EAA+E;AAC3F,MAAM,qDAAqDA,IAAAA,EAAE,OAAO;CAClE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/D,QAAQA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpE,SAASA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzE,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACvE,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,yEAAyE;AACnG,MAAa,yCAAyCA,IAAAA,EAAE,OAAO,EAC7D,SAASA,IAAAA,EAAE,MAAM,kDAAkD,CAAC,CAAC,SAAS,uDAAuD,EACvI,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+FAA+F;AAEzH,MAAa,mCAAmCC,eAAAA,OAAO,wCAAwC;CAC7F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -23,8 +23,8 @@ declare const PointagramListScoreSeriesHistoryOutput: z.ZodObject<{
23
23
  timestamp: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24
24
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25
25
  player_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
26
- }, z.core.$strip>>;
27
- }, z.core.$strip>;
26
+ }, z.core.$loose>>;
27
+ }, z.core.$loose>;
28
28
  declare const pointagramListScoreSeriesHistory: import("@keystrokehq/action").WorkflowActionDefinition<{
29
29
  scoreseriesid: number;
30
30
  limit?: number | undefined;
@@ -23,8 +23,8 @@ declare const PointagramListScoreSeriesHistoryOutput: z.ZodObject<{
23
23
  timestamp: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24
24
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25
25
  player_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
26
- }, z.core.$strip>>;
27
- }, z.core.$strip>;
26
+ }, z.core.$loose>>;
27
+ }, z.core.$loose>;
28
28
  declare const pointagramListScoreSeriesHistory: import("@keystrokehq/action").WorkflowActionDefinition<{
29
29
  scoreseriesid: number;
30
30
  limit?: number | undefined;
@@ -22,13 +22,13 @@ const PointagramListScoreSeriesHistory_HistoryItemSchema = z.object({
22
22
  timestamp: z.string().describe("Timestamp when the points were awarded.").nullable().optional(),
23
23
  description: z.string().describe("Description of the transaction.").nullable().optional(),
24
24
  player_name: z.string().describe("Player name.").nullable().optional()
25
- }).describe("Model representing a single historical transaction in the score series.");
25
+ }).passthrough().describe("Model representing a single historical transaction in the score series.");
26
26
  const pointagramListScoreSeriesHistory = action("POINTAGRAM_LIST_SCORE_SERIES_HISTORY", {
27
27
  slug: "pointagram-list-score-series-history",
28
28
  name: "List Score Series History",
29
29
  description: "Tool to fetch historical point data for a score series. Returns time-series data of points awarded over time with optional filtering by tags, teams, players, and time range. Use when you need to retrieve historical transaction data for a specific score series.",
30
30
  input: PointagramListScoreSeriesHistoryInput,
31
- output: z.object({ history: z.array(PointagramListScoreSeriesHistory_HistoryItemSchema).describe("List of historical transactions for the score series.") }).describe("Response model for listing score series history. Returns an array of historical transactions.")
31
+ output: z.object({ history: z.array(PointagramListScoreSeriesHistory_HistoryItemSchema).describe("List of historical transactions for the score series.") }).passthrough().describe("Response model for listing score series history. Returns an array of historical transactions.")
32
32
  });
33
33
  //#endregion
34
34
  export { pointagramListScoreSeriesHistory };
@@ -1 +1 @@
1
- {"version":3,"file":"list-score-series-history.mjs","names":[],"sources":["../../src/actions/list-score-series-history.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListScoreSeriesHistoryInput = z.object({\n limit: z.number().int().describe(\"Maximum rows per request (default: 50, maximum: 1000).\").optional(),\n time_to: z.string().describe(\"End time in UTC format \\\"YYYY-MM-DD HH:MM:SS\\\".\").optional(),\n offset_id: z.string().describe(\"For pagination - use previous response's last row ID. Must be used together with offset_timestamp.\").optional(),\n time_from: z.string().describe(\"Start time in UTC format \\\"YYYY-MM-DD HH:MM:SS\\\".\").optional(),\n tags_filter: z.string().describe(\"Filter by specific tags in JSON format: [{\\\"id\\\":\\\"13\\\",\\\"type\\\":1},{\\\"id\\\":\\\"14\\\",\\\"type\\\":1}] where type 1=tags, type 2=point type.\").optional(),\n show_revoked: z.number().int().describe(\"Set to 1 to include revoked points; default is 0.\").optional(),\n teams_filter: z.string().describe(\"Filter by team IDs in JSON format: [\\\"20\\\"].\").optional(),\n player_filter: z.string().describe(\"Filter by player profile IDs in JSON format: [\\\"19145\\\"].\").optional(),\n scoreseriesid: z.number().int().describe(\"The ID of the score series to fetch history for. This is a required parameter.\"),\n tags_or_filter: z.string().describe(\"Alternative tag filtering with OR logic. Same format as tags_filter: [{\\\"id\\\":\\\"13\\\",\\\"type\\\":1}].\").optional(),\n offset_timestamp: z.string().describe(\"For pagination - use previous response's last row timestamp. Must be used together with offset_id.\").optional(),\n}).describe(\"Request model for listing score series history with filtering and pagination.\");\nconst PointagramListScoreSeriesHistory_HistoryItemSchema = z.object({\n id: z.string().describe(\"Transaction ID.\").nullable().optional(),\n points: z.union([z.number().int(), z.number()]).nullable().optional(),\n revoked: z.union([z.number().int(), z.boolean()]).nullable().optional(),\n player_id: z.string().describe(\"Player profile ID.\").nullable().optional(),\n timestamp: z.string().describe(\"Timestamp when the points were awarded.\").nullable().optional(),\n description: z.string().describe(\"Description of the transaction.\").nullable().optional(),\n player_name: z.string().describe(\"Player name.\").nullable().optional(),\n}).describe(\"Model representing a single historical transaction in the score series.\");\nexport const PointagramListScoreSeriesHistoryOutput = z.object({\n history: z.array(PointagramListScoreSeriesHistory_HistoryItemSchema).describe(\"List of historical transactions for the score series.\"),\n}).describe(\"Response model for listing score series history. Returns an array of historical transactions.\");\n\nexport const pointagramListScoreSeriesHistory = action(\"POINTAGRAM_LIST_SCORE_SERIES_HISTORY\", {\n slug: \"pointagram-list-score-series-history\",\n name: \"List Score Series History\",\n description: \"Tool to fetch historical point data for a score series. Returns time-series data of points awarded over time with optional filtering by tags, teams, players, and time range. Use when you need to retrieve historical transaction data for a specific score series.\",\n input: PointagramListScoreSeriesHistoryInput,\n output: PointagramListScoreSeriesHistoryOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wCAAwC,EAAE,OAAO;CAC5D,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS;CACpG,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;CACzF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,SAAS;CAC9I,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CAC7F,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,uIAAuI,CAAC,CAAC,SAAS;CACnL,cAAc,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CACtG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;CAC3F,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;CACzG,eAAe,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gFAAgF;CACzH,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,SAAS;CACnJ,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,SAAS;AACvJ,CAAC,CAAC,CAAC,SAAS,+EAA+E;AAC3F,MAAM,qDAAqD,EAAE,OAAO;CAClE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/D,QAAQ,EAAE,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpE,SAAS,EAAE,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtE,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzE,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACvE,CAAC,CAAC,CAAC,SAAS,yEAAyE;AAKrF,MAAa,mCAAmC,OAAO,wCAAwC;CAC7F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAToD,EAAE,OAAO,EAC7D,SAAS,EAAE,MAAM,kDAAkD,CAAC,CAAC,SAAS,uDAAuD,EACvI,CAAC,CAAC,CAAC,SAAS,+FAOF;AACV,CAAC"}
1
+ {"version":3,"file":"list-score-series-history.mjs","names":[],"sources":["../../src/actions/list-score-series-history.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListScoreSeriesHistoryInput = z.object({\n limit: z.number().int().describe(\"Maximum rows per request (default: 50, maximum: 1000).\").optional(),\n time_to: z.string().describe(\"End time in UTC format \\\"YYYY-MM-DD HH:MM:SS\\\".\").optional(),\n offset_id: z.string().describe(\"For pagination - use previous response's last row ID. Must be used together with offset_timestamp.\").optional(),\n time_from: z.string().describe(\"Start time in UTC format \\\"YYYY-MM-DD HH:MM:SS\\\".\").optional(),\n tags_filter: z.string().describe(\"Filter by specific tags in JSON format: [{\\\"id\\\":\\\"13\\\",\\\"type\\\":1},{\\\"id\\\":\\\"14\\\",\\\"type\\\":1}] where type 1=tags, type 2=point type.\").optional(),\n show_revoked: z.number().int().describe(\"Set to 1 to include revoked points; default is 0.\").optional(),\n teams_filter: z.string().describe(\"Filter by team IDs in JSON format: [\\\"20\\\"].\").optional(),\n player_filter: z.string().describe(\"Filter by player profile IDs in JSON format: [\\\"19145\\\"].\").optional(),\n scoreseriesid: z.number().int().describe(\"The ID of the score series to fetch history for. This is a required parameter.\"),\n tags_or_filter: z.string().describe(\"Alternative tag filtering with OR logic. Same format as tags_filter: [{\\\"id\\\":\\\"13\\\",\\\"type\\\":1}].\").optional(),\n offset_timestamp: z.string().describe(\"For pagination - use previous response's last row timestamp. Must be used together with offset_id.\").optional(),\n}).describe(\"Request model for listing score series history with filtering and pagination.\");\nconst PointagramListScoreSeriesHistory_HistoryItemSchema = z.object({\n id: z.string().describe(\"Transaction ID.\").nullable().optional(),\n points: z.union([z.number().int(), z.number()]).nullable().optional(),\n revoked: z.union([z.number().int(), z.boolean()]).nullable().optional(),\n player_id: z.string().describe(\"Player profile ID.\").nullable().optional(),\n timestamp: z.string().describe(\"Timestamp when the points were awarded.\").nullable().optional(),\n description: z.string().describe(\"Description of the transaction.\").nullable().optional(),\n player_name: z.string().describe(\"Player name.\").nullable().optional(),\n}).passthrough().describe(\"Model representing a single historical transaction in the score series.\");\nexport const PointagramListScoreSeriesHistoryOutput = z.object({\n history: z.array(PointagramListScoreSeriesHistory_HistoryItemSchema).describe(\"List of historical transactions for the score series.\"),\n}).passthrough().describe(\"Response model for listing score series history. Returns an array of historical transactions.\");\n\nexport const pointagramListScoreSeriesHistory = action(\"POINTAGRAM_LIST_SCORE_SERIES_HISTORY\", {\n slug: \"pointagram-list-score-series-history\",\n name: \"List Score Series History\",\n description: \"Tool to fetch historical point data for a score series. Returns time-series data of points awarded over time with optional filtering by tags, teams, players, and time range. Use when you need to retrieve historical transaction data for a specific score series.\",\n input: PointagramListScoreSeriesHistoryInput,\n output: PointagramListScoreSeriesHistoryOutput,\n});\n"],"mappings":";;;AAIA,MAAa,wCAAwC,EAAE,OAAO;CAC5D,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wDAAwD,CAAC,CAAC,SAAS;CACpG,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS;CACzF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,SAAS;CAC9I,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CAC7F,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,uIAAuI,CAAC,CAAC,SAAS;CACnL,cAAc,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CACtG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;CAC3F,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;CACzG,eAAe,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gFAAgF;CACzH,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,SAAS;CACnJ,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,SAAS;AACvJ,CAAC,CAAC,CAAC,SAAS,+EAA+E;AAC3F,MAAM,qDAAqD,EAAE,OAAO;CAClE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,iBAAiB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/D,QAAQ,EAAE,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpE,SAAS,EAAE,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtE,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzE,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACvE,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,yEAAyE;AAKnG,MAAa,mCAAmC,OAAO,wCAAwC;CAC7F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAToD,EAAE,OAAO,EAC7D,SAAS,EAAE,MAAM,kDAAkD,CAAC,CAAC,SAAS,uDAAuD,EACvI,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,+FAOhB;AACV,CAAC"}
@@ -5,8 +5,8 @@ const PointagramListScoreSeriesPointTypesInput = zod.z.object({ scoreseries: zod
5
5
  const PointagramListScoreSeriesPointTypesOutput = zod.z.object({
6
6
  message: zod.z.string().describe("Additional message from the API.").nullable().optional(),
7
7
  success: zod.z.boolean().describe("Indicates if the request was successful.").nullable().optional(),
8
- point_types: zod.z.array(zod.z.object({})).describe("List of point types available in the score series.").nullable().optional()
9
- }).describe("Response schema for listing point types in a score series.");
8
+ point_types: zod.z.array(zod.z.record(zod.z.string(), zod.z.unknown())).describe("List of point types available in the score series.").nullable().optional()
9
+ }).passthrough().describe("Response schema for listing point types in a score series.");
10
10
  const pointagramListScoreSeriesPointTypes = require_action.action("POINTAGRAM_LIST_SCORE_SERIES_POINT_TYPES", {
11
11
  slug: "pointagram-list-score-series-point-types",
12
12
  name: "List Score Series Point Types",
@@ -1 +1 @@
1
- {"version":3,"file":"list-score-series-point-types.cjs","names":["z","action"],"sources":["../../src/actions/list-score-series-point-types.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListScoreSeriesPointTypesInput = z.object({\n scoreseries: z.number().int().describe(\"Id of the score series to fetch Point Types for.\"),\n}).describe(\"Request parameters for fetching point types for a specific score series.\");\nexport const PointagramListScoreSeriesPointTypesOutput = z.object({\n message: z.string().describe(\"Additional message from the API.\").nullable().optional(),\n success: z.boolean().describe(\"Indicates if the request was successful.\").nullable().optional(),\n point_types: z.array(z.object({})).describe(\"List of point types available in the score series.\").nullable().optional(),\n}).describe(\"Response schema for listing point types in a score series.\");\n\nexport const pointagramListScoreSeriesPointTypes = action(\"POINTAGRAM_LIST_SCORE_SERIES_POINT_TYPES\", {\n slug: \"pointagram-list-score-series-point-types\",\n name: \"List Score Series Point Types\",\n description: \"Tool to fetch point types for a specific score series in Pointagram. Use when you need to retrieve the different types of points that can be awarded within a score series.\",\n input: PointagramListScoreSeriesPointTypesInput,\n output: PointagramListScoreSeriesPointTypesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2CAA2CA,IAAAA,EAAE,OAAO,EAC/D,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kDAAkD,EAC3F,CAAC,CAAC,CAAC,SAAS,0EAA0E;AACtF,MAAa,4CAA4CA,IAAAA,EAAE,OAAO;CAChE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrF,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,aAAaA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACxH,CAAC,CAAC,CAAC,SAAS,4DAA4D;AAExE,MAAa,sCAAsCC,eAAAA,OAAO,4CAA4C;CACpG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"list-score-series-point-types.cjs","names":["z","action"],"sources":["../../src/actions/list-score-series-point-types.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListScoreSeriesPointTypesInput = z.object({\n scoreseries: z.number().int().describe(\"Id of the score series to fetch Point Types for.\"),\n}).describe(\"Request parameters for fetching point types for a specific score series.\");\nexport const PointagramListScoreSeriesPointTypesOutput = z.object({\n message: z.string().describe(\"Additional message from the API.\").nullable().optional(),\n success: z.boolean().describe(\"Indicates if the request was successful.\").nullable().optional(),\n point_types: z.array(z.record(z.string(), z.unknown())).describe(\"List of point types available in the score series.\").nullable().optional(),\n}).passthrough().describe(\"Response schema for listing point types in a score series.\");\n\nexport const pointagramListScoreSeriesPointTypes = action(\"POINTAGRAM_LIST_SCORE_SERIES_POINT_TYPES\", {\n slug: \"pointagram-list-score-series-point-types\",\n name: \"List Score Series Point Types\",\n description: \"Tool to fetch point types for a specific score series in Pointagram. Use when you need to retrieve the different types of points that can be awarded within a score series.\",\n input: PointagramListScoreSeriesPointTypesInput,\n output: PointagramListScoreSeriesPointTypesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2CAA2CA,IAAAA,EAAE,OAAO,EAC/D,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kDAAkD,EAC3F,CAAC,CAAC,CAAC,SAAS,0EAA0E;AACtF,MAAa,4CAA4CA,IAAAA,EAAE,OAAO;CAChE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrF,SAASA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,aAAaA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC7I,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,4DAA4D;AAEtF,MAAa,sCAAsCC,eAAAA,OAAO,4CAA4C;CACpG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -7,8 +7,8 @@ declare const PointagramListScoreSeriesPointTypesInput: z.ZodObject<{
7
7
  declare const PointagramListScoreSeriesPointTypesOutput: z.ZodObject<{
8
8
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9
9
  success: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
10
- point_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{}, z.core.$strip>>>>;
11
- }, z.core.$strip>;
10
+ point_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
11
+ }, z.core.$loose>;
12
12
  declare const pointagramListScoreSeriesPointTypes: import("@keystrokehq/action").WorkflowActionDefinition<{
13
13
  scoreseries: number;
14
14
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -7,8 +7,8 @@ declare const PointagramListScoreSeriesPointTypesInput: z.ZodObject<{
7
7
  declare const PointagramListScoreSeriesPointTypesOutput: z.ZodObject<{
8
8
  message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9
9
  success: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
10
- point_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{}, z.core.$strip>>>>;
11
- }, z.core.$strip>;
10
+ point_types: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>>>>;
11
+ }, z.core.$loose>;
12
12
  declare const pointagramListScoreSeriesPointTypes: import("@keystrokehq/action").WorkflowActionDefinition<{
13
13
  scoreseries: number;
14
14
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -8,8 +8,8 @@ const pointagramListScoreSeriesPointTypes = action("POINTAGRAM_LIST_SCORE_SERIES
8
8
  output: z.object({
9
9
  message: z.string().describe("Additional message from the API.").nullable().optional(),
10
10
  success: z.boolean().describe("Indicates if the request was successful.").nullable().optional(),
11
- point_types: z.array(z.object({})).describe("List of point types available in the score series.").nullable().optional()
12
- }).describe("Response schema for listing point types in a score series.")
11
+ point_types: z.array(z.record(z.string(), z.unknown())).describe("List of point types available in the score series.").nullable().optional()
12
+ }).passthrough().describe("Response schema for listing point types in a score series.")
13
13
  });
14
14
  //#endregion
15
15
  export { pointagramListScoreSeriesPointTypes };
@@ -1 +1 @@
1
- {"version":3,"file":"list-score-series-point-types.mjs","names":[],"sources":["../../src/actions/list-score-series-point-types.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListScoreSeriesPointTypesInput = z.object({\n scoreseries: z.number().int().describe(\"Id of the score series to fetch Point Types for.\"),\n}).describe(\"Request parameters for fetching point types for a specific score series.\");\nexport const PointagramListScoreSeriesPointTypesOutput = z.object({\n message: z.string().describe(\"Additional message from the API.\").nullable().optional(),\n success: z.boolean().describe(\"Indicates if the request was successful.\").nullable().optional(),\n point_types: z.array(z.object({})).describe(\"List of point types available in the score series.\").nullable().optional(),\n}).describe(\"Response schema for listing point types in a score series.\");\n\nexport const pointagramListScoreSeriesPointTypes = action(\"POINTAGRAM_LIST_SCORE_SERIES_POINT_TYPES\", {\n slug: \"pointagram-list-score-series-point-types\",\n name: \"List Score Series Point Types\",\n description: \"Tool to fetch point types for a specific score series in Pointagram. Use when you need to retrieve the different types of points that can be awarded within a score series.\",\n input: PointagramListScoreSeriesPointTypesInput,\n output: PointagramListScoreSeriesPointTypesOutput,\n});\n"],"mappings":";;AAaA,MAAa,sCAAsC,OAAO,4CAA4C;CACpG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAbsD,EAAE,OAAO,EAC/D,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kDAAkD,EAC3F,CAAC,CAAC,CAAC,SAAS,0EAWH;CACP,QAXuD,EAAE,OAAO;EAChE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACrF,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC9F,aAAa,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxH,CAAC,CAAC,CAAC,SAAS,4DAOF;AACV,CAAC"}
1
+ {"version":3,"file":"list-score-series-point-types.mjs","names":[],"sources":["../../src/actions/list-score-series-point-types.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListScoreSeriesPointTypesInput = z.object({\n scoreseries: z.number().int().describe(\"Id of the score series to fetch Point Types for.\"),\n}).describe(\"Request parameters for fetching point types for a specific score series.\");\nexport const PointagramListScoreSeriesPointTypesOutput = z.object({\n message: z.string().describe(\"Additional message from the API.\").nullable().optional(),\n success: z.boolean().describe(\"Indicates if the request was successful.\").nullable().optional(),\n point_types: z.array(z.record(z.string(), z.unknown())).describe(\"List of point types available in the score series.\").nullable().optional(),\n}).passthrough().describe(\"Response schema for listing point types in a score series.\");\n\nexport const pointagramListScoreSeriesPointTypes = action(\"POINTAGRAM_LIST_SCORE_SERIES_POINT_TYPES\", {\n slug: \"pointagram-list-score-series-point-types\",\n name: \"List Score Series Point Types\",\n description: \"Tool to fetch point types for a specific score series in Pointagram. Use when you need to retrieve the different types of points that can be awarded within a score series.\",\n input: PointagramListScoreSeriesPointTypesInput,\n output: PointagramListScoreSeriesPointTypesOutput,\n});\n"],"mappings":";;AAaA,MAAa,sCAAsC,OAAO,4CAA4C;CACpG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAbsD,EAAE,OAAO,EAC/D,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kDAAkD,EAC3F,CAAC,CAAC,CAAC,SAAS,0EAWH;CACP,QAXuD,EAAE,OAAO;EAChE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACrF,SAAS,EAAE,QAAQ,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC9F,aAAa,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7I,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,4DAOhB;AACV,CAAC"}
@@ -6,8 +6,8 @@ const PointagramListScoreSeries_ScoreSeriesSchema = zod.z.object({
6
6
  id: zod.z.union([zod.z.number().int(), zod.z.string()]).nullable().optional(),
7
7
  name: zod.z.string().describe("Score series name.").nullable().optional(),
8
8
  description: zod.z.string().describe("Description of the score series.").nullable().optional()
9
- }).describe("Model representing a score series object.");
10
- const PointagramListScoreSeriesOutput = zod.z.object({ score_series: zod.z.array(PointagramListScoreSeries_ScoreSeriesSchema).describe("List of score series in Pointagram. Returns all configured score series collections.").nullable().optional() }).describe("Response model for listing score series. Returns a list of score series objects.");
9
+ }).passthrough().describe("Model representing a score series object.");
10
+ const PointagramListScoreSeriesOutput = zod.z.object({ score_series: zod.z.array(PointagramListScoreSeries_ScoreSeriesSchema).describe("List of score series in Pointagram. Returns all configured score series collections.").nullable().optional() }).passthrough().describe("Response model for listing score series. Returns a list of score series objects.");
11
11
  const pointagramListScoreSeries = require_action.action("POINTAGRAM_LIST_SCORE_SERIES", {
12
12
  slug: "pointagram-list-score-series",
13
13
  name: "List Score Series",
@@ -1 +1 @@
1
- {"version":3,"file":"list-score-series.cjs","names":["z","action"],"sources":["../../src/actions/list-score-series.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListScoreSeriesInput = z.object({}).describe(\"Request model for listing score series. No parameters are required.\");\nconst PointagramListScoreSeries_ScoreSeriesSchema = z.object({\n id: z.union([z.number().int(), z.string()]).nullable().optional(),\n name: z.string().describe(\"Score series name.\").nullable().optional(),\n description: z.string().describe(\"Description of the score series.\").nullable().optional(),\n}).describe(\"Model representing a score series object.\");\nexport const PointagramListScoreSeriesOutput = z.object({\n score_series: z.array(PointagramListScoreSeries_ScoreSeriesSchema).describe(\"List of score series in Pointagram. Returns all configured score series collections.\").nullable().optional(),\n}).describe(\"Response model for listing score series. Returns a list of score series objects.\");\n\nexport const pointagramListScoreSeries = action(\"POINTAGRAM_LIST_SCORE_SERIES\", {\n slug: \"pointagram-list-score-series\",\n name: \"List Score Series\",\n description: \"Tool to list all score series in Pointagram. Use when you need to retrieve all configured score series collections that track and measure different point types.\",\n input: PointagramListScoreSeriesInput,\n output: PointagramListScoreSeriesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,qEAAqE;AACzI,MAAM,8CAA8CA,IAAAA,EAAE,OAAO;CAC3D,IAAIA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpE,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3F,CAAC,CAAC,CAAC,SAAS,2CAA2C;AACvD,MAAa,kCAAkCA,IAAAA,EAAE,OAAO,EACtD,cAAcA,IAAAA,EAAE,MAAM,2CAA2C,CAAC,CAAC,SAAS,sFAAsF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAC1L,CAAC,CAAC,CAAC,SAAS,kFAAkF;AAE9F,MAAa,4BAA4BC,eAAAA,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"list-score-series.cjs","names":["z","action"],"sources":["../../src/actions/list-score-series.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListScoreSeriesInput = z.object({}).describe(\"Request model for listing score series. No parameters are required.\");\nconst PointagramListScoreSeries_ScoreSeriesSchema = z.object({\n id: z.union([z.number().int(), z.string()]).nullable().optional(),\n name: z.string().describe(\"Score series name.\").nullable().optional(),\n description: z.string().describe(\"Description of the score series.\").nullable().optional(),\n}).passthrough().describe(\"Model representing a score series object.\");\nexport const PointagramListScoreSeriesOutput = z.object({\n score_series: z.array(PointagramListScoreSeries_ScoreSeriesSchema).describe(\"List of score series in Pointagram. Returns all configured score series collections.\").nullable().optional(),\n}).passthrough().describe(\"Response model for listing score series. Returns a list of score series objects.\");\n\nexport const pointagramListScoreSeries = action(\"POINTAGRAM_LIST_SCORE_SERIES\", {\n slug: \"pointagram-list-score-series\",\n name: \"List Score Series\",\n description: \"Tool to list all score series in Pointagram. Use when you need to retrieve all configured score series collections that track and measure different point types.\",\n input: PointagramListScoreSeriesInput,\n output: PointagramListScoreSeriesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,qEAAqE;AACzI,MAAM,8CAA8CA,IAAAA,EAAE,OAAO;CAC3D,IAAIA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpE,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2CAA2C;AACrE,MAAa,kCAAkCA,IAAAA,EAAE,OAAO,EACtD,cAAcA,IAAAA,EAAE,MAAM,2CAA2C,CAAC,CAAC,SAAS,sFAAsF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAC1L,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,kFAAkF;AAE5G,MAAa,4BAA4BC,eAAAA,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -7,8 +7,8 @@ declare const PointagramListScoreSeriesOutput: z.ZodObject<{
7
7
  id: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
8
8
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9
9
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10
- }, z.core.$strip>>>>;
11
- }, z.core.$strip>;
10
+ }, z.core.$loose>>>>;
11
+ }, z.core.$loose>;
12
12
  declare const pointagramListScoreSeries: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
13
13
  //#endregion
14
14
  export { pointagramListScoreSeries };
@@ -7,8 +7,8 @@ declare const PointagramListScoreSeriesOutput: z.ZodObject<{
7
7
  id: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodNumber, z.ZodString]>>>;
8
8
  name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9
9
  description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10
- }, z.core.$strip>>>>;
11
- }, z.core.$strip>;
10
+ }, z.core.$loose>>>>;
11
+ }, z.core.$loose>;
12
12
  declare const pointagramListScoreSeries: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
13
13
  //#endregion
14
14
  export { pointagramListScoreSeries };
@@ -6,13 +6,13 @@ const PointagramListScoreSeries_ScoreSeriesSchema = z.object({
6
6
  id: z.union([z.number().int(), z.string()]).nullable().optional(),
7
7
  name: z.string().describe("Score series name.").nullable().optional(),
8
8
  description: z.string().describe("Description of the score series.").nullable().optional()
9
- }).describe("Model representing a score series object.");
9
+ }).passthrough().describe("Model representing a score series object.");
10
10
  const pointagramListScoreSeries = action("POINTAGRAM_LIST_SCORE_SERIES", {
11
11
  slug: "pointagram-list-score-series",
12
12
  name: "List Score Series",
13
13
  description: "Tool to list all score series in Pointagram. Use when you need to retrieve all configured score series collections that track and measure different point types.",
14
14
  input: PointagramListScoreSeriesInput,
15
- output: z.object({ score_series: z.array(PointagramListScoreSeries_ScoreSeriesSchema).describe("List of score series in Pointagram. Returns all configured score series collections.").nullable().optional() }).describe("Response model for listing score series. Returns a list of score series objects.")
15
+ output: z.object({ score_series: z.array(PointagramListScoreSeries_ScoreSeriesSchema).describe("List of score series in Pointagram. Returns all configured score series collections.").nullable().optional() }).passthrough().describe("Response model for listing score series. Returns a list of score series objects.")
16
16
  });
17
17
  //#endregion
18
18
  export { pointagramListScoreSeries };
@@ -1 +1 @@
1
- {"version":3,"file":"list-score-series.mjs","names":[],"sources":["../../src/actions/list-score-series.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListScoreSeriesInput = z.object({}).describe(\"Request model for listing score series. No parameters are required.\");\nconst PointagramListScoreSeries_ScoreSeriesSchema = z.object({\n id: z.union([z.number().int(), z.string()]).nullable().optional(),\n name: z.string().describe(\"Score series name.\").nullable().optional(),\n description: z.string().describe(\"Description of the score series.\").nullable().optional(),\n}).describe(\"Model representing a score series object.\");\nexport const PointagramListScoreSeriesOutput = z.object({\n score_series: z.array(PointagramListScoreSeries_ScoreSeriesSchema).describe(\"List of score series in Pointagram. Returns all configured score series collections.\").nullable().optional(),\n}).describe(\"Response model for listing score series. Returns a list of score series objects.\");\n\nexport const pointagramListScoreSeries = action(\"POINTAGRAM_LIST_SCORE_SERIES\", {\n slug: \"pointagram-list-score-series\",\n name: \"List Score Series\",\n description: \"Tool to list all score series in Pointagram. Use when you need to retrieve all configured score series collections that track and measure different point types.\",\n input: PointagramListScoreSeriesInput,\n output: PointagramListScoreSeriesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,qEAAqE;AACzI,MAAM,8CAA8C,EAAE,OAAO;CAC3D,IAAI,EAAE,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpE,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3F,CAAC,CAAC,CAAC,SAAS,2CAA2C;AAKvD,MAAa,4BAA4B,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT6C,EAAE,OAAO,EACtD,cAAc,EAAE,MAAM,2CAA2C,CAAC,CAAC,SAAS,sFAAsF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAC1L,CAAC,CAAC,CAAC,SAAS,kFAOF;AACV,CAAC"}
1
+ {"version":3,"file":"list-score-series.mjs","names":[],"sources":["../../src/actions/list-score-series.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListScoreSeriesInput = z.object({}).describe(\"Request model for listing score series. No parameters are required.\");\nconst PointagramListScoreSeries_ScoreSeriesSchema = z.object({\n id: z.union([z.number().int(), z.string()]).nullable().optional(),\n name: z.string().describe(\"Score series name.\").nullable().optional(),\n description: z.string().describe(\"Description of the score series.\").nullable().optional(),\n}).passthrough().describe(\"Model representing a score series object.\");\nexport const PointagramListScoreSeriesOutput = z.object({\n score_series: z.array(PointagramListScoreSeries_ScoreSeriesSchema).describe(\"List of score series in Pointagram. Returns all configured score series collections.\").nullable().optional(),\n}).passthrough().describe(\"Response model for listing score series. Returns a list of score series objects.\");\n\nexport const pointagramListScoreSeries = action(\"POINTAGRAM_LIST_SCORE_SERIES\", {\n slug: \"pointagram-list-score-series\",\n name: \"List Score Series\",\n description: \"Tool to list all score series in Pointagram. Use when you need to retrieve all configured score series collections that track and measure different point types.\",\n input: PointagramListScoreSeriesInput,\n output: PointagramListScoreSeriesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iCAAiC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,qEAAqE;AACzI,MAAM,8CAA8C,EAAE,OAAO;CAC3D,IAAI,EAAE,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,IAAI,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpE,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC3F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2CAA2C;AAKrE,MAAa,4BAA4B,OAAO,gCAAgC;CAC9E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT6C,EAAE,OAAO,EACtD,cAAc,EAAE,MAAM,2CAA2C,CAAC,CAAC,SAAS,sFAAsF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS,EAC1L,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,kFAOhB;AACV,CAAC"}
@@ -6,8 +6,8 @@ const PointagramListTeams_TeamItemSchema = zod.z.object({
6
6
  id: zod.z.string().describe("Unique identifier for the team.").nullable(),
7
7
  icon: zod.z.string().describe("Filename of the team's icon image.").nullable(),
8
8
  name: zod.z.string().describe("Name of the team in Pointagram.").nullable()
9
- }).describe("Model representing a single team in Pointagram.");
10
- const PointagramListTeamsOutput = zod.z.object({ teams: zod.z.array(PointagramListTeams_TeamItemSchema).describe("List of teams in Pointagram.") }).describe("Response model for listing teams.");
9
+ }).passthrough().describe("Model representing a single team in Pointagram.");
10
+ const PointagramListTeamsOutput = zod.z.object({ teams: zod.z.array(PointagramListTeams_TeamItemSchema).describe("List of teams in Pointagram.") }).passthrough().describe("Response model for listing teams.");
11
11
  const pointagramListTeams = require_action.action("POINTAGRAM_LIST_TEAMS", {
12
12
  slug: "pointagram-list-teams",
13
13
  name: "List Teams",
@@ -1 +1 @@
1
- {"version":3,"file":"list-teams.cjs","names":["z","action"],"sources":["../../src/actions/list-teams.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListTeamsInput = z.object({}).describe(\"Request model for listing teams. No parameters are required.\");\nconst PointagramListTeams_TeamItemSchema = z.object({\n id: z.string().describe(\"Unique identifier for the team.\").nullable(),\n icon: z.string().describe(\"Filename of the team's icon image.\").nullable(),\n name: z.string().describe(\"Name of the team in Pointagram.\").nullable(),\n}).describe(\"Model representing a single team in Pointagram.\");\nexport const PointagramListTeamsOutput = z.object({\n teams: z.array(PointagramListTeams_TeamItemSchema).describe(\"List of teams in Pointagram.\"),\n}).describe(\"Response model for listing teams.\");\n\nexport const pointagramListTeams = action(\"POINTAGRAM_LIST_TEAMS\", {\n slug: \"pointagram-list-teams\",\n name: \"List Teams\",\n description: \"Tool to fetch and list all teams in Pointagram. Returns team information including ID, name, and icon. Use when you need to retrieve all available teams.\",\n input: PointagramListTeamsInput,\n output: PointagramListTeamsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAC5H,MAAM,qCAAqCA,IAAAA,EAAE,OAAO;CAClD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CACpE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CACzE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;AACxE,CAAC,CAAC,CAAC,SAAS,iDAAiD;AAC7D,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,EAChD,OAAOA,IAAAA,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,8BAA8B,EAC5F,CAAC,CAAC,CAAC,SAAS,mCAAmC;AAE/C,MAAa,sBAAsBC,eAAAA,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"list-teams.cjs","names":["z","action"],"sources":["../../src/actions/list-teams.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListTeamsInput = z.object({}).describe(\"Request model for listing teams. No parameters are required.\");\nconst PointagramListTeams_TeamItemSchema = z.object({\n id: z.string().describe(\"Unique identifier for the team.\").nullable(),\n icon: z.string().describe(\"Filename of the team's icon image.\").nullable(),\n name: z.string().describe(\"Name of the team in Pointagram.\").nullable(),\n}).passthrough().describe(\"Model representing a single team in Pointagram.\");\nexport const PointagramListTeamsOutput = z.object({\n teams: z.array(PointagramListTeams_TeamItemSchema).describe(\"List of teams in Pointagram.\"),\n}).passthrough().describe(\"Response model for listing teams.\");\n\nexport const pointagramListTeams = action(\"POINTAGRAM_LIST_TEAMS\", {\n slug: \"pointagram-list-teams\",\n name: \"List Teams\",\n description: \"Tool to fetch and list all teams in Pointagram. Returns team information including ID, name, and icon. Use when you need to retrieve all available teams.\",\n input: PointagramListTeamsInput,\n output: PointagramListTeamsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAC5H,MAAM,qCAAqCA,IAAAA,EAAE,OAAO;CAClD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CACpE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CACzE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;AACxE,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,iDAAiD;AAC3E,MAAa,4BAA4BA,IAAAA,EAAE,OAAO,EAChD,OAAOA,IAAAA,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,8BAA8B,EAC5F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mCAAmC;AAE7D,MAAa,sBAAsBC,eAAAA,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -7,8 +7,8 @@ declare const PointagramListTeamsOutput: z.ZodObject<{
7
7
  id: z.ZodNullable<z.ZodString>;
8
8
  icon: z.ZodNullable<z.ZodString>;
9
9
  name: z.ZodNullable<z.ZodString>;
10
- }, z.core.$strip>>;
11
- }, z.core.$strip>;
10
+ }, z.core.$loose>>;
11
+ }, z.core.$loose>;
12
12
  declare const pointagramListTeams: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
13
13
  //#endregion
14
14
  export { pointagramListTeams };
@@ -7,8 +7,8 @@ declare const PointagramListTeamsOutput: z.ZodObject<{
7
7
  id: z.ZodNullable<z.ZodString>;
8
8
  icon: z.ZodNullable<z.ZodString>;
9
9
  name: z.ZodNullable<z.ZodString>;
10
- }, z.core.$strip>>;
11
- }, z.core.$strip>;
10
+ }, z.core.$loose>>;
11
+ }, z.core.$loose>;
12
12
  declare const pointagramListTeams: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
13
13
  //#endregion
14
14
  export { pointagramListTeams };
@@ -6,13 +6,13 @@ const PointagramListTeams_TeamItemSchema = z.object({
6
6
  id: z.string().describe("Unique identifier for the team.").nullable(),
7
7
  icon: z.string().describe("Filename of the team's icon image.").nullable(),
8
8
  name: z.string().describe("Name of the team in Pointagram.").nullable()
9
- }).describe("Model representing a single team in Pointagram.");
9
+ }).passthrough().describe("Model representing a single team in Pointagram.");
10
10
  const pointagramListTeams = action("POINTAGRAM_LIST_TEAMS", {
11
11
  slug: "pointagram-list-teams",
12
12
  name: "List Teams",
13
13
  description: "Tool to fetch and list all teams in Pointagram. Returns team information including ID, name, and icon. Use when you need to retrieve all available teams.",
14
14
  input: PointagramListTeamsInput,
15
- output: z.object({ teams: z.array(PointagramListTeams_TeamItemSchema).describe("List of teams in Pointagram.") }).describe("Response model for listing teams.")
15
+ output: z.object({ teams: z.array(PointagramListTeams_TeamItemSchema).describe("List of teams in Pointagram.") }).passthrough().describe("Response model for listing teams.")
16
16
  });
17
17
  //#endregion
18
18
  export { pointagramListTeams };
@@ -1 +1 @@
1
- {"version":3,"file":"list-teams.mjs","names":[],"sources":["../../src/actions/list-teams.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListTeamsInput = z.object({}).describe(\"Request model for listing teams. No parameters are required.\");\nconst PointagramListTeams_TeamItemSchema = z.object({\n id: z.string().describe(\"Unique identifier for the team.\").nullable(),\n icon: z.string().describe(\"Filename of the team's icon image.\").nullable(),\n name: z.string().describe(\"Name of the team in Pointagram.\").nullable(),\n}).describe(\"Model representing a single team in Pointagram.\");\nexport const PointagramListTeamsOutput = z.object({\n teams: z.array(PointagramListTeams_TeamItemSchema).describe(\"List of teams in Pointagram.\"),\n}).describe(\"Response model for listing teams.\");\n\nexport const pointagramListTeams = action(\"POINTAGRAM_LIST_TEAMS\", {\n slug: \"pointagram-list-teams\",\n name: \"List Teams\",\n description: \"Tool to fetch and list all teams in Pointagram. Returns team information including ID, name, and icon. Use when you need to retrieve all available teams.\",\n input: PointagramListTeamsInput,\n output: PointagramListTeamsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2B,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAC5H,MAAM,qCAAqC,EAAE,OAAO;CAClD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CACpE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CACzE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;AACxE,CAAC,CAAC,CAAC,SAAS,iDAAiD;AAK7D,MAAa,sBAAsB,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATuC,EAAE,OAAO,EAChD,OAAO,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,8BAA8B,EAC5F,CAAC,CAAC,CAAC,SAAS,mCAOF;AACV,CAAC"}
1
+ {"version":3,"file":"list-teams.mjs","names":[],"sources":["../../src/actions/list-teams.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PointagramListTeamsInput = z.object({}).describe(\"Request model for listing teams. No parameters are required.\");\nconst PointagramListTeams_TeamItemSchema = z.object({\n id: z.string().describe(\"Unique identifier for the team.\").nullable(),\n icon: z.string().describe(\"Filename of the team's icon image.\").nullable(),\n name: z.string().describe(\"Name of the team in Pointagram.\").nullable(),\n}).passthrough().describe(\"Model representing a single team in Pointagram.\");\nexport const PointagramListTeamsOutput = z.object({\n teams: z.array(PointagramListTeams_TeamItemSchema).describe(\"List of teams in Pointagram.\"),\n}).passthrough().describe(\"Response model for listing teams.\");\n\nexport const pointagramListTeams = action(\"POINTAGRAM_LIST_TEAMS\", {\n slug: \"pointagram-list-teams\",\n name: \"List Teams\",\n description: \"Tool to fetch and list all teams in Pointagram. Returns team information including ID, name, and icon. Use when you need to retrieve all available teams.\",\n input: PointagramListTeamsInput,\n output: PointagramListTeamsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2BAA2B,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAC5H,MAAM,qCAAqC,EAAE,OAAO;CAClD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CACpE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS;CACzE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;AACxE,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,iDAAiD;AAK3E,MAAa,sBAAsB,OAAO,yBAAyB;CACjE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATuC,EAAE,OAAO,EAChD,OAAO,EAAE,MAAM,kCAAkC,CAAC,CAAC,SAAS,8BAA8B,EAC5F,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mCAOhB;AACV,CAAC"}
package/dist/catalog.cjs CHANGED
@@ -9,12 +9,12 @@ const pointagramCatalog = {
9
9
  "authKind": "keystroke",
10
10
  "oauthScopes": [],
11
11
  "credentialFields": {
12
- "api_key": {
12
+ "generic_api_key": {
13
13
  "label": "API Key",
14
14
  "secret": true,
15
15
  "description": "Your Pointagram API key. Go to Profile > Settings > Integrations, add a Custom Integration, click Create Credentials, name your integration, and click Show Key to reveal your API key."
16
16
  },
17
- "api_user": {
17
+ "generic_id": {
18
18
  "label": "API User",
19
19
  "description": "Your Pointagram login email address"
20
20
  }
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const pointagramCatalog = {\n \"slug\": \"pointagram\",\n \"name\": \"Pointagram\",\n \"description\": \"Pointagram is a gamification tool that increases motivation and team achievements. Keep your team goal-oriented and celebrate great performance together.\",\n \"category\": \"Productivity\",\n \"logo\": \"https://logos.composio.dev/api/pointagram\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Your Pointagram API key. Go to Profile > Settings > Integrations, add a Custom Integration, click Create Credentials, name your integration, and click Show Key to reveal your API key.\"\n },\n \"api_user\": {\n \"label\": \"API User\",\n \"description\": \"Your Pointagram login email address\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,oBAAoB;CAC/B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB;EAClB,WAAW;GACT,SAAS;GACT,UAAU;GACV,eAAe;EACjB;EACA,YAAY;GACV,SAAS;GACT,eAAe;EACjB;CACF;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 pointagramCatalog = {\n \"slug\": \"pointagram\",\n \"name\": \"Pointagram\",\n \"description\": \"Pointagram is a gamification tool that increases motivation and team achievements. Keep your team goal-oriented and celebrate great performance together.\",\n \"category\": \"Productivity\",\n \"logo\": \"https://logos.composio.dev/api/pointagram\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Your Pointagram API key. Go to Profile > Settings > Integrations, add a Custom Integration, click Create Credentials, name your integration, and click Show Key to reveal your API key.\"\n },\n \"generic_id\": {\n \"label\": \"API User\",\n \"description\": \"Your Pointagram login email address\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,oBAAoB;CAC/B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB;EAClB,mBAAmB;GACjB,SAAS;GACT,UAAU;GACV,eAAe;EACjB;EACA,cAAc;GACZ,SAAS;GACT,eAAe;EACjB;CACF;CACA,oBAAoB;AACtB"}
@@ -9,12 +9,12 @@ declare const pointagramCatalog: {
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: "Your Pointagram API key. Go to Profile > Settings > Integrations, add a Custom Integration, click Create Credentials, name your integration, and click Show Key to reveal your API key.";
16
16
  };
17
- readonly api_user: {
17
+ readonly generic_id: {
18
18
  readonly label: "API User";
19
19
  readonly description: "Your Pointagram login email address";
20
20
  };
@@ -9,12 +9,12 @@ declare const pointagramCatalog: {
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: "Your Pointagram API key. Go to Profile > Settings > Integrations, add a Custom Integration, click Create Credentials, name your integration, and click Show Key to reveal your API key.";
16
16
  };
17
- readonly api_user: {
17
+ readonly generic_id: {
18
18
  readonly label: "API User";
19
19
  readonly description: "Your Pointagram login email address";
20
20
  };
package/dist/catalog.mjs CHANGED
@@ -9,12 +9,12 @@ const pointagramCatalog = {
9
9
  "authKind": "keystroke",
10
10
  "oauthScopes": [],
11
11
  "credentialFields": {
12
- "api_key": {
12
+ "generic_api_key": {
13
13
  "label": "API Key",
14
14
  "secret": true,
15
15
  "description": "Your Pointagram API key. Go to Profile > Settings > Integrations, add a Custom Integration, click Create Credentials, name your integration, and click Show Key to reveal your API key."
16
16
  },
17
- "api_user": {
17
+ "generic_id": {
18
18
  "label": "API User",
19
19
  "description": "Your Pointagram login email address"
20
20
  }
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const pointagramCatalog = {\n \"slug\": \"pointagram\",\n \"name\": \"Pointagram\",\n \"description\": \"Pointagram is a gamification tool that increases motivation and team achievements. Keep your team goal-oriented and celebrate great performance together.\",\n \"category\": \"Productivity\",\n \"logo\": \"https://logos.composio.dev/api/pointagram\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Your Pointagram API key. Go to Profile > Settings > Integrations, add a Custom Integration, click Create Credentials, name your integration, and click Show Key to reveal your API key.\"\n },\n \"api_user\": {\n \"label\": \"API User\",\n \"description\": \"Your Pointagram login email address\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,oBAAoB;CAC/B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB;EAClB,WAAW;GACT,SAAS;GACT,UAAU;GACV,eAAe;EACjB;EACA,YAAY;GACV,SAAS;GACT,eAAe;EACjB;CACF;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 pointagramCatalog = {\n \"slug\": \"pointagram\",\n \"name\": \"Pointagram\",\n \"description\": \"Pointagram is a gamification tool that increases motivation and team achievements. Keep your team goal-oriented and celebrate great performance together.\",\n \"category\": \"Productivity\",\n \"logo\": \"https://logos.composio.dev/api/pointagram\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"API Key\",\n \"secret\": true,\n \"description\": \"Your Pointagram API key. Go to Profile > Settings > Integrations, add a Custom Integration, click Create Credentials, name your integration, and click Show Key to reveal your API key.\"\n },\n \"generic_id\": {\n \"label\": \"API User\",\n \"description\": \"Your Pointagram login email address\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,oBAAoB;CAC/B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB;EAClB,mBAAmB;GACjB,SAAS;GACT,UAAU;GACV,eAAe;EACjB;EACA,cAAc;GACZ,SAAS;GACT,eAAe;EACjB;CACF;CACA,oBAAoB;AACtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/pointagram",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"