@keystrokehq/pointagram 0.1.0 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/action.cjs.map +1 -1
- package/dist/action.mjs.map +1 -1
- package/dist/actions/add-score.cjs +4 -4
- package/dist/actions/add-score.cjs.map +1 -1
- package/dist/actions/add-score.d.cts +40 -3
- package/dist/actions/add-score.d.cts.map +1 -1
- package/dist/actions/add-score.d.mts +40 -3
- package/dist/actions/add-score.d.mts.map +1 -1
- package/dist/actions/add-score.mjs +4 -4
- package/dist/actions/add-score.mjs.map +1 -1
- package/dist/actions/list-competition-players.cjs +2 -2
- package/dist/actions/list-competition-players.cjs.map +1 -1
- package/dist/actions/list-competition-players.d.cts +25 -3
- package/dist/actions/list-competition-players.d.cts.map +1 -1
- package/dist/actions/list-competition-players.d.mts +25 -3
- package/dist/actions/list-competition-players.d.mts.map +1 -1
- package/dist/actions/list-competition-players.mjs +2 -2
- package/dist/actions/list-competition-players.mjs.map +1 -1
- package/dist/actions/list-competitions.cjs +3 -3
- package/dist/actions/list-competitions.cjs.map +1 -1
- package/dist/actions/list-competitions.d.cts +33 -3
- package/dist/actions/list-competitions.d.cts.map +1 -1
- package/dist/actions/list-competitions.d.mts +33 -3
- package/dist/actions/list-competitions.d.mts.map +1 -1
- package/dist/actions/list-competitions.mjs +3 -3
- package/dist/actions/list-competitions.mjs.map +1 -1
- package/dist/actions/list-players.cjs +5 -5
- package/dist/actions/list-players.cjs.map +1 -1
- package/dist/actions/list-players.d.cts +20 -3
- package/dist/actions/list-players.d.cts.map +1 -1
- package/dist/actions/list-players.d.mts +20 -3
- package/dist/actions/list-players.d.mts.map +1 -1
- package/dist/actions/list-players.mjs +5 -5
- package/dist/actions/list-players.mjs.map +1 -1
- package/dist/actions/list-score-series-history.cjs +2 -2
- package/dist/actions/list-score-series-history.cjs.map +1 -1
- package/dist/actions/list-score-series-history.d.cts +37 -3
- package/dist/actions/list-score-series-history.d.cts.map +1 -1
- package/dist/actions/list-score-series-history.d.mts +37 -3
- package/dist/actions/list-score-series-history.d.mts.map +1 -1
- package/dist/actions/list-score-series-history.mjs +2 -2
- package/dist/actions/list-score-series-history.mjs.map +1 -1
- package/dist/actions/list-score-series-point-types.cjs +2 -2
- package/dist/actions/list-score-series-point-types.cjs.map +1 -1
- package/dist/actions/list-score-series-point-types.d.cts +11 -3
- package/dist/actions/list-score-series-point-types.d.cts.map +1 -1
- package/dist/actions/list-score-series-point-types.d.mts +11 -3
- package/dist/actions/list-score-series-point-types.d.mts.map +1 -1
- package/dist/actions/list-score-series-point-types.mjs +2 -2
- package/dist/actions/list-score-series-point-types.mjs.map +1 -1
- package/dist/actions/list-score-series.cjs +2 -2
- package/dist/actions/list-score-series.cjs.map +1 -1
- package/dist/actions/list-score-series.d.cts +9 -3
- package/dist/actions/list-score-series.d.cts.map +1 -1
- package/dist/actions/list-score-series.d.mts +9 -3
- package/dist/actions/list-score-series.d.mts.map +1 -1
- package/dist/actions/list-score-series.mjs +2 -2
- package/dist/actions/list-score-series.mjs.map +1 -1
- package/dist/actions/list-teams.cjs +5 -5
- package/dist/actions/list-teams.cjs.map +1 -1
- package/dist/actions/list-teams.d.cts +9 -3
- package/dist/actions/list-teams.d.cts.map +1 -1
- package/dist/actions/list-teams.d.mts +9 -3
- package/dist/actions/list-teams.d.mts.map +1 -1
- package/dist/actions/list-teams.mjs +5 -5
- package/dist/actions/list-teams.mjs.map +1 -1
- package/dist/catalog.cjs +13 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +12 -0
- package/dist/catalog.d.mts +12 -0
- package/dist/catalog.mjs +13 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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
|
|
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"}
|
|
@@ -3,11 +3,11 @@ let zod = require("zod");
|
|
|
3
3
|
//#region src/actions/list-teams.ts
|
|
4
4
|
const PointagramListTeamsInput = zod.z.object({}).describe("Request model for listing teams. No parameters are required.");
|
|
5
5
|
const PointagramListTeams_TeamItemSchema = zod.z.object({
|
|
6
|
-
id: zod.z.string().describe("Unique identifier for the team."),
|
|
7
|
-
icon: zod.z.string().describe("Filename of the team's icon image."),
|
|
8
|
-
name: zod.z.string().describe("Name of the team in Pointagram.")
|
|
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.");
|
|
6
|
+
id: zod.z.string().describe("Unique identifier for the team.").nullable(),
|
|
7
|
+
icon: zod.z.string().describe("Filename of the team's icon image.").nullable(),
|
|
8
|
+
name: zod.z.string().describe("Name of the team in Pointagram.").nullable()
|
|
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
|
|
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"}
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/list-teams.d.ts
|
|
4
|
-
declare const PointagramListTeamsInput: z.
|
|
5
|
-
declare const PointagramListTeamsOutput: z.
|
|
6
|
-
|
|
4
|
+
declare const PointagramListTeamsInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
|
+
declare const PointagramListTeamsOutput: z.ZodObject<{
|
|
6
|
+
teams: z.ZodArray<z.ZodObject<{
|
|
7
|
+
id: z.ZodNullable<z.ZodString>;
|
|
8
|
+
icon: z.ZodNullable<z.ZodString>;
|
|
9
|
+
name: z.ZodNullable<z.ZodString>;
|
|
10
|
+
}, z.core.$loose>>;
|
|
11
|
+
}, z.core.$loose>;
|
|
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]>;
|
|
7
13
|
//#endregion
|
|
8
14
|
export { pointagramListTeams };
|
|
9
15
|
//# sourceMappingURL=list-teams.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-teams.d.cts","names":[],"sources":["../../src/actions/list-teams.ts"],"mappings":";;;cAIa,wBAAA,
|
|
1
|
+
{"version":3,"file":"list-teams.d.cts","names":[],"sources":["../../src/actions/list-teams.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAMxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/list-teams.d.ts
|
|
4
|
-
declare const PointagramListTeamsInput: z.
|
|
5
|
-
declare const PointagramListTeamsOutput: z.
|
|
6
|
-
|
|
4
|
+
declare const PointagramListTeamsInput: z.ZodObject<{}, z.core.$strip>;
|
|
5
|
+
declare const PointagramListTeamsOutput: z.ZodObject<{
|
|
6
|
+
teams: z.ZodArray<z.ZodObject<{
|
|
7
|
+
id: z.ZodNullable<z.ZodString>;
|
|
8
|
+
icon: z.ZodNullable<z.ZodString>;
|
|
9
|
+
name: z.ZodNullable<z.ZodString>;
|
|
10
|
+
}, z.core.$loose>>;
|
|
11
|
+
}, z.core.$loose>;
|
|
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]>;
|
|
7
13
|
//#endregion
|
|
8
14
|
export { pointagramListTeams };
|
|
9
15
|
//# sourceMappingURL=list-teams.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"list-teams.d.mts","names":[],"sources":["../../src/actions/list-teams.ts"],"mappings":";;;cAIa,wBAAA,
|
|
1
|
+
{"version":3,"file":"list-teams.d.mts","names":[],"sources":["../../src/actions/list-teams.ts"],"mappings":";;;cAIa,wBAAA,EAAwB,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAMxB,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;cAIzB,mBAAA,gCAAmB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -3,16 +3,16 @@ import { z } from "zod";
|
|
|
3
3
|
//#region src/actions/list-teams.ts
|
|
4
4
|
const PointagramListTeamsInput = z.object({}).describe("Request model for listing teams. No parameters are required.");
|
|
5
5
|
const PointagramListTeams_TeamItemSchema = z.object({
|
|
6
|
-
id: z.string().describe("Unique identifier for the team."),
|
|
7
|
-
icon: z.string().describe("Filename of the team's icon image."),
|
|
8
|
-
name: z.string().describe("Name of the team in Pointagram.")
|
|
9
|
-
}).describe("Model representing a single team in Pointagram.");
|
|
6
|
+
id: z.string().describe("Unique identifier for the team.").nullable(),
|
|
7
|
+
icon: z.string().describe("Filename of the team's icon image.").nullable(),
|
|
8
|
+
name: z.string().describe("Name of the team in Pointagram.").nullable()
|
|
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
|
|
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
|
@@ -7,7 +7,19 @@ const pointagramCatalog = {
|
|
|
7
7
|
"category": "Productivity",
|
|
8
8
|
"logo": "https://logos.composio.dev/api/pointagram",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
|
-
"oauthScopes": []
|
|
10
|
+
"oauthScopes": [],
|
|
11
|
+
"credentialFields": {
|
|
12
|
+
"api_key": {
|
|
13
|
+
"label": "API Key",
|
|
14
|
+
"secret": true,
|
|
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
|
+
},
|
|
17
|
+
"api_user": {
|
|
18
|
+
"label": "API User",
|
|
19
|
+
"description": "Your Pointagram login email address"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"credentialScheme": "API_KEY"
|
|
11
23
|
};
|
|
12
24
|
//#endregion
|
|
13
25
|
exports.pointagramCatalog = pointagramCatalog;
|
package/dist/catalog.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const 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} as const;\n"],"mappings":";;AACA,MAAa,oBAAoB;CAC/B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const 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"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -8,6 +8,18 @@ declare const pointagramCatalog: {
|
|
|
8
8
|
readonly logo: "https://logos.composio.dev/api/pointagram";
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
|
+
readonly credentialFields: {
|
|
12
|
+
readonly api_key: {
|
|
13
|
+
readonly label: "API Key";
|
|
14
|
+
readonly secret: true;
|
|
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
|
+
};
|
|
17
|
+
readonly api_user: {
|
|
18
|
+
readonly label: "API User";
|
|
19
|
+
readonly description: "Your Pointagram login email address";
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
readonly credentialScheme: "API_KEY";
|
|
11
23
|
};
|
|
12
24
|
//#endregion
|
|
13
25
|
export { pointagramCatalog };
|
package/dist/catalog.d.mts
CHANGED
|
@@ -8,6 +8,18 @@ declare const pointagramCatalog: {
|
|
|
8
8
|
readonly logo: "https://logos.composio.dev/api/pointagram";
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
|
+
readonly credentialFields: {
|
|
12
|
+
readonly api_key: {
|
|
13
|
+
readonly label: "API Key";
|
|
14
|
+
readonly secret: true;
|
|
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
|
+
};
|
|
17
|
+
readonly api_user: {
|
|
18
|
+
readonly label: "API User";
|
|
19
|
+
readonly description: "Your Pointagram login email address";
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
readonly credentialScheme: "API_KEY";
|
|
11
23
|
};
|
|
12
24
|
//#endregion
|
|
13
25
|
export { pointagramCatalog };
|
package/dist/catalog.mjs
CHANGED
|
@@ -7,7 +7,19 @@ const pointagramCatalog = {
|
|
|
7
7
|
"category": "Productivity",
|
|
8
8
|
"logo": "https://logos.composio.dev/api/pointagram",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
|
-
"oauthScopes": []
|
|
10
|
+
"oauthScopes": [],
|
|
11
|
+
"credentialFields": {
|
|
12
|
+
"api_key": {
|
|
13
|
+
"label": "API Key",
|
|
14
|
+
"secret": true,
|
|
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
|
+
},
|
|
17
|
+
"api_user": {
|
|
18
|
+
"label": "API User",
|
|
19
|
+
"description": "Your Pointagram login email address"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"credentialScheme": "API_KEY"
|
|
11
23
|
};
|
|
12
24
|
//#endregion
|
|
13
25
|
export { pointagramCatalog };
|
package/dist/catalog.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const 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} as const;\n"],"mappings":";;AACA,MAAa,oBAAoB;CAC/B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const 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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keystrokehq/pointagram",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"peerDependencies": {
|
|
34
|
-
"@keystrokehq/keystroke": "
|
|
34
|
+
"@keystrokehq/keystroke": ">=0.1.4",
|
|
35
35
|
"zod": "^4.4.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|