@keystrokehq/ninox 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -0
- package/dist/action.cjs +21 -0
- package/dist/action.cjs.map +1 -0
- package/dist/action.mjs +21 -0
- package/dist/action.mjs.map +1 -0
- package/dist/actions/delete-record.cjs +21 -0
- package/dist/actions/delete-record.cjs.map +1 -0
- package/dist/actions/delete-record.d.cts +9 -0
- package/dist/actions/delete-record.d.cts.map +1 -0
- package/dist/actions/delete-record.d.mts +9 -0
- package/dist/actions/delete-record.d.mts.map +1 -0
- package/dist/actions/delete-record.mjs +18 -0
- package/dist/actions/delete-record.mjs.map +1 -0
- package/dist/actions/get-databases.cjs +20 -0
- package/dist/actions/get-databases.cjs.map +1 -0
- package/dist/actions/get-databases.d.cts +9 -0
- package/dist/actions/get-databases.d.cts.map +1 -0
- package/dist/actions/get-databases.d.mts +9 -0
- package/dist/actions/get-databases.d.mts.map +1 -0
- package/dist/actions/get-databases.mjs +19 -0
- package/dist/actions/get-databases.mjs.map +1 -0
- package/dist/actions/get-team.cjs +19 -0
- package/dist/actions/get-team.cjs.map +1 -0
- package/dist/actions/get-team.d.cts +9 -0
- package/dist/actions/get-team.d.cts.map +1 -0
- package/dist/actions/get-team.d.mts +9 -0
- package/dist/actions/get-team.d.mts.map +1 -0
- package/dist/actions/get-team.mjs +16 -0
- package/dist/actions/get-team.mjs.map +1 -0
- package/dist/actions/index.cjs +9 -0
- package/dist/actions/index.d.cts +5 -0
- package/dist/actions/index.d.mts +5 -0
- package/dist/actions/index.mjs +5 -0
- package/dist/actions/list-teams.cjs +20 -0
- package/dist/actions/list-teams.cjs.map +1 -0
- package/dist/actions/list-teams.d.cts +9 -0
- package/dist/actions/list-teams.d.cts.map +1 -0
- package/dist/actions/list-teams.d.mts +9 -0
- package/dist/actions/list-teams.d.mts.map +1 -0
- package/dist/actions/list-teams.mjs +19 -0
- package/dist/actions/list-teams.mjs.map +1 -0
- package/dist/app.cjs +9 -0
- package/dist/app.cjs.map +1 -0
- package/dist/app.d.cts +5 -0
- package/dist/app.d.cts.map +1 -0
- package/dist/app.d.mts +5 -0
- package/dist/app.d.mts.map +1 -0
- package/dist/app.mjs +10 -0
- package/dist/app.mjs.map +1 -0
- package/dist/catalog.cjs +15 -0
- package/dist/catalog.cjs.map +1 -0
- package/dist/catalog.d.cts +14 -0
- package/dist/catalog.d.cts.map +1 -0
- package/dist/catalog.d.mts +14 -0
- package/dist/catalog.d.mts.map +1 -0
- package/dist/catalog.mjs +15 -0
- package/dist/catalog.mjs.map +1 -0
- package/dist/execute.cjs +18 -0
- package/dist/execute.cjs.map +1 -0
- package/dist/execute.mjs +18 -0
- package/dist/execute.mjs.map +1 -0
- package/dist/index.cjs +14 -0
- package/dist/index.d.cts +7 -0
- package/dist/index.d.mts +7 -0
- package/dist/index.mjs +8 -0
- package/package.json +49 -0
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# @keystrokehq/ninox
|
|
2
|
+
|
|
3
|
+
Keystroke-managed integration.
|
|
4
|
+
|
|
5
|
+
**App:** `ninox`
|
|
6
|
+
**Version:** `20260615_00`
|
|
7
|
+
**Actions:** 4
|
|
8
|
+
|
|
9
|
+
```ts
|
|
10
|
+
import { defineAgent } from "@keystrokehq/keystroke/agent";
|
|
11
|
+
import { ninoxDeleteRecord } from "@keystrokehq/ninox/actions";
|
|
12
|
+
|
|
13
|
+
export default defineAgent({
|
|
14
|
+
key: "ninox-agent",
|
|
15
|
+
tools: [ninoxDeleteRecord],
|
|
16
|
+
});
|
|
17
|
+
```
|
package/dist/action.cjs
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
const require_app = require("./app.cjs");
|
|
2
|
+
const require_execute = require("./execute.cjs");
|
|
3
|
+
require("zod");
|
|
4
|
+
//#region src/action.ts
|
|
5
|
+
/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */
|
|
6
|
+
function action(tool, def) {
|
|
7
|
+
return require_app.ninox.action({
|
|
8
|
+
slug: def.slug,
|
|
9
|
+
name: def.name,
|
|
10
|
+
description: def.description,
|
|
11
|
+
input: def.input,
|
|
12
|
+
output: def.output,
|
|
13
|
+
async run(input) {
|
|
14
|
+
return def.output.parse(await require_execute.executeNinoxTool(tool, input));
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
//#endregion
|
|
19
|
+
exports.action = action;
|
|
20
|
+
|
|
21
|
+
//# sourceMappingURL=action.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"action.cjs","names":["ninox","executeNinoxTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { ninox } from \"./app\";\nimport { executeNinoxTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: z.ZodTypeAny;\n output: z.ZodTypeAny;\n },\n) {\n return ninox.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output,\n async run(input) {\n return def.output.parse(await executeNinoxTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,MAAM,OAAO;EAClB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAMC,gBAAAA,iBAAiB,MAAM,KAAgC,CAAC;EACxF;CACF,CAAC;AACH"}
|
package/dist/action.mjs
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ninox } from "./app.mjs";
|
|
2
|
+
import { executeNinoxTool } from "./execute.mjs";
|
|
3
|
+
import "zod";
|
|
4
|
+
//#region src/action.ts
|
|
5
|
+
/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */
|
|
6
|
+
function action(tool, def) {
|
|
7
|
+
return ninox.action({
|
|
8
|
+
slug: def.slug,
|
|
9
|
+
name: def.name,
|
|
10
|
+
description: def.description,
|
|
11
|
+
input: def.input,
|
|
12
|
+
output: def.output,
|
|
13
|
+
async run(input) {
|
|
14
|
+
return def.output.parse(await executeNinoxTool(tool, input));
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
//#endregion
|
|
19
|
+
export { action };
|
|
20
|
+
|
|
21
|
+
//# sourceMappingURL=action.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { ninox } from \"./app\";\nimport { executeNinoxTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: z.ZodTypeAny;\n output: z.ZodTypeAny;\n },\n) {\n return ninox.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output,\n async run(input) {\n return def.output.parse(await executeNinoxTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,MAAM,OAAO;EAClB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,iBAAiB,MAAM,KAAgC,CAAC;EACxF;CACF,CAAC;AACH"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/delete-record.ts
|
|
4
|
+
const NinoxDeleteRecordInput = zod.z.object({
|
|
5
|
+
team_id: zod.z.string().describe("Workspace (team) identifier. Obtain from GET /teams endpoint."),
|
|
6
|
+
table_id: zod.z.string().describe("Table identifier. Ninox tables are identified by letters starting with A, B, C, etc. Obtain from GET /teams/{team_id}/databases/{database_id}/tables endpoint."),
|
|
7
|
+
record_id: zod.z.string().describe("Record identifier to delete. Typically numeric. Obtain from GET /teams/{team_id}/databases/{database_id}/tables/{table_id}/records endpoint."),
|
|
8
|
+
database_id: zod.z.string().describe("Database identifier. Obtain from GET /teams/{team_id}/databases endpoint.")
|
|
9
|
+
});
|
|
10
|
+
const NinoxDeleteRecordOutput = zod.z.object({}).describe("Empty response returned on successful deletion.");
|
|
11
|
+
const ninoxDeleteRecord = require_action.action("NINOX_DELETE_RECORD", {
|
|
12
|
+
slug: "ninox-delete-record",
|
|
13
|
+
name: "Delete Record",
|
|
14
|
+
description: "Tool to delete a record from a specified table. Use after confirming workspace, database, table, and record IDs.",
|
|
15
|
+
input: NinoxDeleteRecordInput,
|
|
16
|
+
output: NinoxDeleteRecordOutput
|
|
17
|
+
});
|
|
18
|
+
//#endregion
|
|
19
|
+
exports.ninoxDeleteRecord = ninoxDeleteRecord;
|
|
20
|
+
|
|
21
|
+
//# sourceMappingURL=delete-record.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-record.cjs","names":["z","action"],"sources":["../../src/actions/delete-record.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const NinoxDeleteRecordInput: z.ZodTypeAny = z.object({\n team_id: z.string().describe(\"Workspace (team) identifier. Obtain from GET /teams endpoint.\"),\n table_id: z.string().describe(\"Table identifier. Ninox tables are identified by letters starting with A, B, C, etc. Obtain from GET /teams/{team_id}/databases/{database_id}/tables endpoint.\"),\n record_id: z.string().describe(\"Record identifier to delete. Typically numeric. Obtain from GET /teams/{team_id}/databases/{database_id}/tables/{table_id}/records endpoint.\"),\n database_id: z.string().describe(\"Database identifier. Obtain from GET /teams/{team_id}/databases endpoint.\"),\n});\nexport const NinoxDeleteRecordOutput: z.ZodTypeAny = z.object({}).describe(\"Empty response returned on successful deletion.\");\n\nexport const ninoxDeleteRecord = action(\"NINOX_DELETE_RECORD\", {\n slug: \"ninox-delete-record\",\n name: \"Delete Record\",\n description: \"Tool to delete a record from a specified table. Use after confirming workspace, database, table, and record IDs.\",\n input: NinoxDeleteRecordInput,\n output: NinoxDeleteRecordOutput,\n});\n"],"mappings":";;;AAIA,MAAa,yBAAuCA,IAAAA,EAAE,OAAO;CAC3D,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D;CAC5F,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gKAAgK;CAC9L,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8IAA8I;CAC7K,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2EAA2E;AAC9G,CAAC;AACD,MAAa,0BAAwCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,iDAAiD;AAE5H,MAAa,oBAAoBC,eAAAA,OAAO,uBAAuB;CAC7D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/delete-record.d.ts
|
|
4
|
+
declare const NinoxDeleteRecordInput: z.ZodTypeAny;
|
|
5
|
+
declare const NinoxDeleteRecordOutput: z.ZodTypeAny;
|
|
6
|
+
declare const ninoxDeleteRecord: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { ninoxDeleteRecord };
|
|
9
|
+
//# sourceMappingURL=delete-record.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-record.d.cts","names":[],"sources":["../../src/actions/delete-record.ts"],"mappings":";;;cAIa,sBAAA,EAAwB,CAAA,CAAE,UAKrC;AAAA,cACW,uBAAA,EAAyB,CAAA,CAAE,UAAqF;AAAA,cAEhH,iBAAA,gCAAiB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/delete-record.d.ts
|
|
4
|
+
declare const NinoxDeleteRecordInput: z.ZodTypeAny;
|
|
5
|
+
declare const NinoxDeleteRecordOutput: z.ZodTypeAny;
|
|
6
|
+
declare const ninoxDeleteRecord: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { ninoxDeleteRecord };
|
|
9
|
+
//# sourceMappingURL=delete-record.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-record.d.mts","names":[],"sources":["../../src/actions/delete-record.ts"],"mappings":";;;cAIa,sBAAA,EAAwB,CAAA,CAAE,UAKrC;AAAA,cACW,uBAAA,EAAyB,CAAA,CAAE,UAAqF;AAAA,cAEhH,iBAAA,gCAAiB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
const ninoxDeleteRecord = action("NINOX_DELETE_RECORD", {
|
|
4
|
+
slug: "ninox-delete-record",
|
|
5
|
+
name: "Delete Record",
|
|
6
|
+
description: "Tool to delete a record from a specified table. Use after confirming workspace, database, table, and record IDs.",
|
|
7
|
+
input: z.object({
|
|
8
|
+
team_id: z.string().describe("Workspace (team) identifier. Obtain from GET /teams endpoint."),
|
|
9
|
+
table_id: z.string().describe("Table identifier. Ninox tables are identified by letters starting with A, B, C, etc. Obtain from GET /teams/{team_id}/databases/{database_id}/tables endpoint."),
|
|
10
|
+
record_id: z.string().describe("Record identifier to delete. Typically numeric. Obtain from GET /teams/{team_id}/databases/{database_id}/tables/{table_id}/records endpoint."),
|
|
11
|
+
database_id: z.string().describe("Database identifier. Obtain from GET /teams/{team_id}/databases endpoint.")
|
|
12
|
+
}),
|
|
13
|
+
output: z.object({}).describe("Empty response returned on successful deletion.")
|
|
14
|
+
});
|
|
15
|
+
//#endregion
|
|
16
|
+
export { ninoxDeleteRecord };
|
|
17
|
+
|
|
18
|
+
//# sourceMappingURL=delete-record.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-record.mjs","names":[],"sources":["../../src/actions/delete-record.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const NinoxDeleteRecordInput: z.ZodTypeAny = z.object({\n team_id: z.string().describe(\"Workspace (team) identifier. Obtain from GET /teams endpoint.\"),\n table_id: z.string().describe(\"Table identifier. Ninox tables are identified by letters starting with A, B, C, etc. Obtain from GET /teams/{team_id}/databases/{database_id}/tables endpoint.\"),\n record_id: z.string().describe(\"Record identifier to delete. Typically numeric. Obtain from GET /teams/{team_id}/databases/{database_id}/tables/{table_id}/records endpoint.\"),\n database_id: z.string().describe(\"Database identifier. Obtain from GET /teams/{team_id}/databases endpoint.\"),\n});\nexport const NinoxDeleteRecordOutput: z.ZodTypeAny = z.object({}).describe(\"Empty response returned on successful deletion.\");\n\nexport const ninoxDeleteRecord = action(\"NINOX_DELETE_RECORD\", {\n slug: \"ninox-delete-record\",\n name: \"Delete Record\",\n description: \"Tool to delete a record from a specified table. Use after confirming workspace, database, table, and record IDs.\",\n input: NinoxDeleteRecordInput,\n output: NinoxDeleteRecordOutput,\n});\n"],"mappings":";;AAYA,MAAa,oBAAoB,OAAO,uBAAuB;CAC7D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAZkD,EAAE,OAAO;EAC3D,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D;EAC5F,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,gKAAgK;EAC9L,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,8IAA8I;EAC7K,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,2EAA2E;CAC9G,CAOS;CACP,QAPmD,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,iDAOjE;AACV,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/get-databases.ts
|
|
4
|
+
const NinoxGetDatabasesInput = zod.z.object({ team_id: zod.z.string().describe("The unique identifier of the Ninox team to list databases for.") }).describe("Request model for GetDatabases action.");
|
|
5
|
+
const NinoxGetDatabases_DatabaseSchema = zod.z.object({
|
|
6
|
+
id: zod.z.string().describe("Unique identifier of the database."),
|
|
7
|
+
name: zod.z.string().describe("Human-readable name of the database.")
|
|
8
|
+
}).describe("A single Ninox database entry.");
|
|
9
|
+
const NinoxGetDatabasesOutput = zod.z.object({ databases: zod.z.array(NinoxGetDatabases_DatabaseSchema).describe("List of databases within the specified team.") }).describe("Response model for GetDatabases: a list of database objects.");
|
|
10
|
+
const ninoxGetDatabases = require_action.action("NINOX_GET_DATABASES", {
|
|
11
|
+
slug: "ninox-get-databases",
|
|
12
|
+
name: "Get Databases",
|
|
13
|
+
description: "Retrieves all databases within a specific Ninox team. This action lists all databases (workspaces) that belong to a given team in Ninox. Each database contains tables, fields, and records for organizing data. Use this action when you need to: - List all available databases in a team - Find a specific database by name - Get database IDs for further operations Note: You must have a valid team_id. Use the GET /teams endpoint to retrieve team IDs first.",
|
|
14
|
+
input: NinoxGetDatabasesInput,
|
|
15
|
+
output: NinoxGetDatabasesOutput
|
|
16
|
+
});
|
|
17
|
+
//#endregion
|
|
18
|
+
exports.ninoxGetDatabases = ninoxGetDatabases;
|
|
19
|
+
|
|
20
|
+
//# sourceMappingURL=get-databases.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-databases.cjs","names":["z","action"],"sources":["../../src/actions/get-databases.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const NinoxGetDatabasesInput: z.ZodTypeAny = z.object({\n team_id: z.string().describe(\"The unique identifier of the Ninox team to list databases for.\"),\n}).describe(\"Request model for GetDatabases action.\");\nconst NinoxGetDatabases_DatabaseSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the database.\"),\n name: z.string().describe(\"Human-readable name of the database.\"),\n}).describe(\"A single Ninox database entry.\");\nexport const NinoxGetDatabasesOutput: z.ZodTypeAny = z.object({\n databases: z.array(NinoxGetDatabases_DatabaseSchema).describe(\"List of databases within the specified team.\"),\n}).describe(\"Response model for GetDatabases: a list of database objects.\");\n\nexport const ninoxGetDatabases = action(\"NINOX_GET_DATABASES\", {\n slug: \"ninox-get-databases\",\n name: \"Get Databases\",\n description: \"Retrieves all databases within a specific Ninox team. This action lists all databases (workspaces) that belong to a given team in Ninox. Each database contains tables, fields, and records for organizing data. Use this action when you need to: - List all available databases in a team - Find a specific database by name - Get database IDs for further operations Note: You must have a valid team_id. Use the GET /teams endpoint to retrieve team IDs first.\",\n input: NinoxGetDatabasesInput,\n output: NinoxGetDatabasesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,yBAAuCA,IAAAA,EAAE,OAAO,EAC3D,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,EAC/F,CAAC,CAAC,CAAC,SAAS,wCAAwC;AACpD,MAAM,mCAAiDA,IAAAA,EAAE,OAAO;CAC9D,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;CAC5D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC;AAClE,CAAC,CAAC,CAAC,SAAS,gCAAgC;AAC5C,MAAa,0BAAwCA,IAAAA,EAAE,OAAO,EAC5D,WAAWA,IAAAA,EAAE,MAAM,gCAAgC,CAAC,CAAC,SAAS,8CAA8C,EAC9G,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAE1E,MAAa,oBAAoBC,eAAAA,OAAO,uBAAuB;CAC7D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/get-databases.d.ts
|
|
4
|
+
declare const NinoxGetDatabasesInput: z.ZodTypeAny;
|
|
5
|
+
declare const NinoxGetDatabasesOutput: z.ZodTypeAny;
|
|
6
|
+
declare const ninoxGetDatabases: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { ninoxGetDatabases };
|
|
9
|
+
//# sourceMappingURL=get-databases.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-databases.d.cts","names":[],"sources":["../../src/actions/get-databases.ts"],"mappings":";;;cAIa,sBAAA,EAAwB,CAAA,CAAE,UAEc;AAAA,cAKxC,uBAAA,EAAyB,CAAA,CAAE,UAEmC;AAAA,cAE9D,iBAAA,gCAAiB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/get-databases.d.ts
|
|
4
|
+
declare const NinoxGetDatabasesInput: z.ZodTypeAny;
|
|
5
|
+
declare const NinoxGetDatabasesOutput: z.ZodTypeAny;
|
|
6
|
+
declare const ninoxGetDatabases: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { ninoxGetDatabases };
|
|
9
|
+
//# sourceMappingURL=get-databases.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-databases.d.mts","names":[],"sources":["../../src/actions/get-databases.ts"],"mappings":";;;cAIa,sBAAA,EAAwB,CAAA,CAAE,UAEc;AAAA,cAKxC,uBAAA,EAAyB,CAAA,CAAE,UAEmC;AAAA,cAE9D,iBAAA,gCAAiB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
//#region src/actions/get-databases.ts
|
|
4
|
+
const NinoxGetDatabasesInput = z.object({ team_id: z.string().describe("The unique identifier of the Ninox team to list databases for.") }).describe("Request model for GetDatabases action.");
|
|
5
|
+
const NinoxGetDatabases_DatabaseSchema = z.object({
|
|
6
|
+
id: z.string().describe("Unique identifier of the database."),
|
|
7
|
+
name: z.string().describe("Human-readable name of the database.")
|
|
8
|
+
}).describe("A single Ninox database entry.");
|
|
9
|
+
const ninoxGetDatabases = action("NINOX_GET_DATABASES", {
|
|
10
|
+
slug: "ninox-get-databases",
|
|
11
|
+
name: "Get Databases",
|
|
12
|
+
description: "Retrieves all databases within a specific Ninox team. This action lists all databases (workspaces) that belong to a given team in Ninox. Each database contains tables, fields, and records for organizing data. Use this action when you need to: - List all available databases in a team - Find a specific database by name - Get database IDs for further operations Note: You must have a valid team_id. Use the GET /teams endpoint to retrieve team IDs first.",
|
|
13
|
+
input: NinoxGetDatabasesInput,
|
|
14
|
+
output: z.object({ databases: z.array(NinoxGetDatabases_DatabaseSchema).describe("List of databases within the specified team.") }).describe("Response model for GetDatabases: a list of database objects.")
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { ninoxGetDatabases };
|
|
18
|
+
|
|
19
|
+
//# sourceMappingURL=get-databases.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-databases.mjs","names":[],"sources":["../../src/actions/get-databases.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const NinoxGetDatabasesInput: z.ZodTypeAny = z.object({\n team_id: z.string().describe(\"The unique identifier of the Ninox team to list databases for.\"),\n}).describe(\"Request model for GetDatabases action.\");\nconst NinoxGetDatabases_DatabaseSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the database.\"),\n name: z.string().describe(\"Human-readable name of the database.\"),\n}).describe(\"A single Ninox database entry.\");\nexport const NinoxGetDatabasesOutput: z.ZodTypeAny = z.object({\n databases: z.array(NinoxGetDatabases_DatabaseSchema).describe(\"List of databases within the specified team.\"),\n}).describe(\"Response model for GetDatabases: a list of database objects.\");\n\nexport const ninoxGetDatabases = action(\"NINOX_GET_DATABASES\", {\n slug: \"ninox-get-databases\",\n name: \"Get Databases\",\n description: \"Retrieves all databases within a specific Ninox team. This action lists all databases (workspaces) that belong to a given team in Ninox. Each database contains tables, fields, and records for organizing data. Use this action when you need to: - List all available databases in a team - Find a specific database by name - Get database IDs for further operations Note: You must have a valid team_id. Use the GET /teams endpoint to retrieve team IDs first.\",\n input: NinoxGetDatabasesInput,\n output: NinoxGetDatabasesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,yBAAuC,EAAE,OAAO,EAC3D,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,EAC/F,CAAC,CAAC,CAAC,SAAS,wCAAwC;AACpD,MAAM,mCAAiD,EAAE,OAAO;CAC9D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,oCAAoC;CAC5D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC;AAClE,CAAC,CAAC,CAAC,SAAS,gCAAgC;AAK5C,MAAa,oBAAoB,OAAO,uBAAuB;CAC7D,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATmD,EAAE,OAAO,EAC5D,WAAW,EAAE,MAAM,gCAAgC,CAAC,CAAC,SAAS,8CAA8C,EAC9G,CAAC,CAAC,CAAC,SAAS,8DAOF;AACV,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/get-team.ts
|
|
4
|
+
const NinoxGetTeamInput = zod.z.object({ team_id: zod.z.string().describe("The unique identifier of the Ninox team/workspace to retrieve.") }).describe("Request model for GetTeam action.");
|
|
5
|
+
const NinoxGetTeamOutput = zod.z.object({
|
|
6
|
+
id: zod.z.string().describe("Unique identifier of the workspace/team."),
|
|
7
|
+
name: zod.z.string().describe("Human-readable name of the workspace/team.")
|
|
8
|
+
}).describe("Response model for GetTeam action.");
|
|
9
|
+
const ninoxGetTeam = require_action.action("NINOX_GET_TEAM", {
|
|
10
|
+
slug: "ninox-get-team",
|
|
11
|
+
name: "Get Team",
|
|
12
|
+
description: "Retrieves data from a single team (workspace) by its ID. Use when you need to get workspace details including the workspace ID and name.",
|
|
13
|
+
input: NinoxGetTeamInput,
|
|
14
|
+
output: NinoxGetTeamOutput
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
exports.ninoxGetTeam = ninoxGetTeam;
|
|
18
|
+
|
|
19
|
+
//# sourceMappingURL=get-team.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-team.cjs","names":["z","action"],"sources":["../../src/actions/get-team.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const NinoxGetTeamInput: z.ZodTypeAny = z.object({\n team_id: z.string().describe(\"The unique identifier of the Ninox team/workspace to retrieve.\"),\n}).describe(\"Request model for GetTeam action.\");\nexport const NinoxGetTeamOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the workspace/team.\"),\n name: z.string().describe(\"Human-readable name of the workspace/team.\"),\n}).describe(\"Response model for GetTeam action.\");\n\nexport const ninoxGetTeam = action(\"NINOX_GET_TEAM\", {\n slug: \"ninox-get-team\",\n name: \"Get Team\",\n description: \"Retrieves data from a single team (workspace) by its ID. Use when you need to get workspace details including the workspace ID and name.\",\n input: NinoxGetTeamInput,\n output: NinoxGetTeamOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oBAAkCA,IAAAA,EAAE,OAAO,EACtD,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,EAC/F,CAAC,CAAC,CAAC,SAAS,mCAAmC;AAC/C,MAAa,qBAAmCA,IAAAA,EAAE,OAAO;CACvD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C;CAClE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C;AACxE,CAAC,CAAC,CAAC,SAAS,oCAAoC;AAEhD,MAAa,eAAeC,eAAAA,OAAO,kBAAkB;CACnD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/get-team.d.ts
|
|
4
|
+
declare const NinoxGetTeamInput: z.ZodTypeAny;
|
|
5
|
+
declare const NinoxGetTeamOutput: z.ZodTypeAny;
|
|
6
|
+
declare const ninoxGetTeam: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { ninoxGetTeam };
|
|
9
|
+
//# sourceMappingURL=get-team.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-team.d.cts","names":[],"sources":["../../src/actions/get-team.ts"],"mappings":";;;cAIa,iBAAA,EAAmB,CAAA,CAAE,UAEc;AAAA,cACnC,kBAAA,EAAoB,CAAA,CAAE,UAGc;AAAA,cAEpC,YAAA,gCAAY,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/get-team.d.ts
|
|
4
|
+
declare const NinoxGetTeamInput: z.ZodTypeAny;
|
|
5
|
+
declare const NinoxGetTeamOutput: z.ZodTypeAny;
|
|
6
|
+
declare const ninoxGetTeam: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { ninoxGetTeam };
|
|
9
|
+
//# sourceMappingURL=get-team.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-team.d.mts","names":[],"sources":["../../src/actions/get-team.ts"],"mappings":";;;cAIa,iBAAA,EAAmB,CAAA,CAAE,UAEc;AAAA,cACnC,kBAAA,EAAoB,CAAA,CAAE,UAGc;AAAA,cAEpC,YAAA,gCAAY,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
const ninoxGetTeam = action("NINOX_GET_TEAM", {
|
|
4
|
+
slug: "ninox-get-team",
|
|
5
|
+
name: "Get Team",
|
|
6
|
+
description: "Retrieves data from a single team (workspace) by its ID. Use when you need to get workspace details including the workspace ID and name.",
|
|
7
|
+
input: z.object({ team_id: z.string().describe("The unique identifier of the Ninox team/workspace to retrieve.") }).describe("Request model for GetTeam action."),
|
|
8
|
+
output: z.object({
|
|
9
|
+
id: z.string().describe("Unique identifier of the workspace/team."),
|
|
10
|
+
name: z.string().describe("Human-readable name of the workspace/team.")
|
|
11
|
+
}).describe("Response model for GetTeam action.")
|
|
12
|
+
});
|
|
13
|
+
//#endregion
|
|
14
|
+
export { ninoxGetTeam };
|
|
15
|
+
|
|
16
|
+
//# sourceMappingURL=get-team.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-team.mjs","names":[],"sources":["../../src/actions/get-team.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const NinoxGetTeamInput: z.ZodTypeAny = z.object({\n team_id: z.string().describe(\"The unique identifier of the Ninox team/workspace to retrieve.\"),\n}).describe(\"Request model for GetTeam action.\");\nexport const NinoxGetTeamOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the workspace/team.\"),\n name: z.string().describe(\"Human-readable name of the workspace/team.\"),\n}).describe(\"Response model for GetTeam action.\");\n\nexport const ninoxGetTeam = action(\"NINOX_GET_TEAM\", {\n slug: \"ninox-get-team\",\n name: \"Get Team\",\n description: \"Retrieves data from a single team (workspace) by its ID. Use when you need to get workspace details including the workspace ID and name.\",\n input: NinoxGetTeamInput,\n output: NinoxGetTeamOutput,\n});\n"],"mappings":";;AAYA,MAAa,eAAe,OAAO,kBAAkB;CACnD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAZ6C,EAAE,OAAO,EACtD,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,EAC/F,CAAC,CAAC,CAAC,SAAS,mCAUH;CACP,QAV8C,EAAE,OAAO;EACvD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C;EAClE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C;CACxE,CAAC,CAAC,CAAC,SAAS,oCAOF;AACV,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
const require_delete_record = require("./delete-record.cjs");
|
|
3
|
+
const require_get_databases = require("./get-databases.cjs");
|
|
4
|
+
const require_get_team = require("./get-team.cjs");
|
|
5
|
+
const require_list_teams = require("./list-teams.cjs");
|
|
6
|
+
exports.ninoxDeleteRecord = require_delete_record.ninoxDeleteRecord;
|
|
7
|
+
exports.ninoxGetDatabases = require_get_databases.ninoxGetDatabases;
|
|
8
|
+
exports.ninoxGetTeam = require_get_team.ninoxGetTeam;
|
|
9
|
+
exports.ninoxListTeams = require_list_teams.ninoxListTeams;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { ninoxDeleteRecord } from "./delete-record.cjs";
|
|
2
|
+
import { ninoxGetDatabases } from "./get-databases.cjs";
|
|
3
|
+
import { ninoxGetTeam } from "./get-team.cjs";
|
|
4
|
+
import { ninoxListTeams } from "./list-teams.cjs";
|
|
5
|
+
export { ninoxDeleteRecord, ninoxGetDatabases, ninoxGetTeam, ninoxListTeams };
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { ninoxDeleteRecord } from "./delete-record.mjs";
|
|
2
|
+
import { ninoxGetDatabases } from "./get-databases.mjs";
|
|
3
|
+
import { ninoxGetTeam } from "./get-team.mjs";
|
|
4
|
+
import { ninoxListTeams } from "./list-teams.mjs";
|
|
5
|
+
export { ninoxDeleteRecord, ninoxGetDatabases, ninoxGetTeam, ninoxListTeams };
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { ninoxDeleteRecord } from "./delete-record.mjs";
|
|
2
|
+
import { ninoxGetDatabases } from "./get-databases.mjs";
|
|
3
|
+
import { ninoxGetTeam } from "./get-team.mjs";
|
|
4
|
+
import { ninoxListTeams } from "./list-teams.mjs";
|
|
5
|
+
export { ninoxDeleteRecord, ninoxGetDatabases, ninoxGetTeam, ninoxListTeams };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/list-teams.ts
|
|
4
|
+
const NinoxListTeamsInput = zod.z.object({}).describe("Request model for ListTeams action.\nThis action requires no parameters as it lists all teams accessible to the authenticated user.");
|
|
5
|
+
const NinoxListTeams_TeamSchema = zod.z.object({
|
|
6
|
+
id: zod.z.string().describe("Unique identifier of the workspace/team."),
|
|
7
|
+
name: zod.z.string().describe("Human-readable name of the workspace/team.")
|
|
8
|
+
}).describe("A single Ninox team (workspace) entry.");
|
|
9
|
+
const NinoxListTeamsOutput = zod.z.object({ teams: zod.z.array(NinoxListTeams_TeamSchema).describe("List of all workspaces (teams) accessible to the authenticated user.") }).describe("Response model for ListTeams: a list of team objects.");
|
|
10
|
+
const ninoxListTeams = require_action.action("NINOX_LIST_TEAMS", {
|
|
11
|
+
slug: "ninox-list-teams",
|
|
12
|
+
name: "List Teams",
|
|
13
|
+
description: "Retrieves all workspaces (teams) accessible to the authenticated user. This action lists all Ninox teams (workspaces) that the user has access to. Each team contains databases, which in turn contain tables and records. Use this action when you need to: - List all available workspaces - Find a specific workspace by name - Get workspace IDs for further operations (databases, tables, records) Note: The team_id from this response is required for most other Ninox API operations.",
|
|
14
|
+
input: NinoxListTeamsInput,
|
|
15
|
+
output: NinoxListTeamsOutput
|
|
16
|
+
});
|
|
17
|
+
//#endregion
|
|
18
|
+
exports.ninoxListTeams = ninoxListTeams;
|
|
19
|
+
|
|
20
|
+
//# sourceMappingURL=list-teams.cjs.map
|
|
@@ -0,0 +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 NinoxListTeamsInput: z.ZodTypeAny = z.object({}).describe(\"Request model for ListTeams action.\\nThis action requires no parameters as it lists all teams accessible to the authenticated user.\");\nconst NinoxListTeams_TeamSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the workspace/team.\"),\n name: z.string().describe(\"Human-readable name of the workspace/team.\"),\n}).describe(\"A single Ninox team (workspace) entry.\");\nexport const NinoxListTeamsOutput: z.ZodTypeAny = z.object({\n teams: z.array(NinoxListTeams_TeamSchema).describe(\"List of all workspaces (teams) accessible to the authenticated user.\"),\n}).describe(\"Response model for ListTeams: a list of team objects.\");\n\nexport const ninoxListTeams = action(\"NINOX_LIST_TEAMS\", {\n slug: \"ninox-list-teams\",\n name: \"List Teams\",\n description: \"Retrieves all workspaces (teams) accessible to the authenticated user. This action lists all Ninox teams (workspaces) that the user has access to. Each team contains databases, which in turn contain tables and records. Use this action when you need to: - List all available workspaces - Find a specific workspace by name - Get workspace IDs for further operations (databases, tables, records) Note: The team_id from this response is required for most other Ninox API operations.\",\n input: NinoxListTeamsInput,\n output: NinoxListTeamsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,sBAAoCA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,qIAAqI;AAC5M,MAAM,4BAA0CA,IAAAA,EAAE,OAAO;CACvD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C;CAClE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C;AACxE,CAAC,CAAC,CAAC,SAAS,wCAAwC;AACpD,MAAa,uBAAqCA,IAAAA,EAAE,OAAO,EACzD,OAAOA,IAAAA,EAAE,MAAM,yBAAyB,CAAC,CAAC,SAAS,sEAAsE,EAC3H,CAAC,CAAC,CAAC,SAAS,uDAAuD;AAEnE,MAAa,iBAAiBC,eAAAA,OAAO,oBAAoB;CACvD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/list-teams.d.ts
|
|
4
|
+
declare const NinoxListTeamsInput: z.ZodTypeAny;
|
|
5
|
+
declare const NinoxListTeamsOutput: z.ZodTypeAny;
|
|
6
|
+
declare const ninoxListTeams: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { ninoxListTeams };
|
|
9
|
+
//# sourceMappingURL=list-teams.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-teams.d.cts","names":[],"sources":["../../src/actions/list-teams.ts"],"mappings":";;;cAIa,mBAAA,EAAqB,CAAA,CAAE,UAAyK;AAAA,cAKhM,oBAAA,EAAsB,CAAA,CAAE,UAE+B;AAAA,cAEvD,cAAA,gCAAc,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/list-teams.d.ts
|
|
4
|
+
declare const NinoxListTeamsInput: z.ZodTypeAny;
|
|
5
|
+
declare const NinoxListTeamsOutput: z.ZodTypeAny;
|
|
6
|
+
declare const ninoxListTeams: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { ninoxListTeams };
|
|
9
|
+
//# sourceMappingURL=list-teams.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list-teams.d.mts","names":[],"sources":["../../src/actions/list-teams.ts"],"mappings":";;;cAIa,mBAAA,EAAqB,CAAA,CAAE,UAAyK;AAAA,cAKhM,oBAAA,EAAsB,CAAA,CAAE,UAE+B;AAAA,cAEvD,cAAA,gCAAc,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
//#region src/actions/list-teams.ts
|
|
4
|
+
const NinoxListTeamsInput = z.object({}).describe("Request model for ListTeams action.\nThis action requires no parameters as it lists all teams accessible to the authenticated user.");
|
|
5
|
+
const NinoxListTeams_TeamSchema = z.object({
|
|
6
|
+
id: z.string().describe("Unique identifier of the workspace/team."),
|
|
7
|
+
name: z.string().describe("Human-readable name of the workspace/team.")
|
|
8
|
+
}).describe("A single Ninox team (workspace) entry.");
|
|
9
|
+
const ninoxListTeams = action("NINOX_LIST_TEAMS", {
|
|
10
|
+
slug: "ninox-list-teams",
|
|
11
|
+
name: "List Teams",
|
|
12
|
+
description: "Retrieves all workspaces (teams) accessible to the authenticated user. This action lists all Ninox teams (workspaces) that the user has access to. Each team contains databases, which in turn contain tables and records. Use this action when you need to: - List all available workspaces - Find a specific workspace by name - Get workspace IDs for further operations (databases, tables, records) Note: The team_id from this response is required for most other Ninox API operations.",
|
|
13
|
+
input: NinoxListTeamsInput,
|
|
14
|
+
output: z.object({ teams: z.array(NinoxListTeams_TeamSchema).describe("List of all workspaces (teams) accessible to the authenticated user.") }).describe("Response model for ListTeams: a list of team objects.")
|
|
15
|
+
});
|
|
16
|
+
//#endregion
|
|
17
|
+
export { ninoxListTeams };
|
|
18
|
+
|
|
19
|
+
//# sourceMappingURL=list-teams.mjs.map
|
|
@@ -0,0 +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 NinoxListTeamsInput: z.ZodTypeAny = z.object({}).describe(\"Request model for ListTeams action.\\nThis action requires no parameters as it lists all teams accessible to the authenticated user.\");\nconst NinoxListTeams_TeamSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the workspace/team.\"),\n name: z.string().describe(\"Human-readable name of the workspace/team.\"),\n}).describe(\"A single Ninox team (workspace) entry.\");\nexport const NinoxListTeamsOutput: z.ZodTypeAny = z.object({\n teams: z.array(NinoxListTeams_TeamSchema).describe(\"List of all workspaces (teams) accessible to the authenticated user.\"),\n}).describe(\"Response model for ListTeams: a list of team objects.\");\n\nexport const ninoxListTeams = action(\"NINOX_LIST_TEAMS\", {\n slug: \"ninox-list-teams\",\n name: \"List Teams\",\n description: \"Retrieves all workspaces (teams) accessible to the authenticated user. This action lists all Ninox teams (workspaces) that the user has access to. Each team contains databases, which in turn contain tables and records. Use this action when you need to: - List all available workspaces - Find a specific workspace by name - Get workspace IDs for further operations (databases, tables, records) Note: The team_id from this response is required for most other Ninox API operations.\",\n input: NinoxListTeamsInput,\n output: NinoxListTeamsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,sBAAoC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,qIAAqI;AAC5M,MAAM,4BAA0C,EAAE,OAAO;CACvD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C;CAClE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C;AACxE,CAAC,CAAC,CAAC,SAAS,wCAAwC;AAKpD,MAAa,iBAAiB,OAAO,oBAAoB;CACvD,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATgD,EAAE,OAAO,EACzD,OAAO,EAAE,MAAM,yBAAyB,CAAC,CAAC,SAAS,sEAAsE,EAC3H,CAAC,CAAC,CAAC,SAAS,uDAOF;AACV,CAAC"}
|
package/dist/app.cjs
ADDED
package/dist/app.cjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const ninox = defineApp({\n slug: \"ninox\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,SAAA,uCAAA,CAAA,CAAA,UAAA,CAAkB;CAC7B,MAAM;CACN,MAAM;AACR,CAAC"}
|
package/dist/app.d.cts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,KAAA,6BAAK,GAAA,+BAAA,UAAA"}
|
package/dist/app.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,KAAA,6BAAK,GAAA,+BAAA,UAAA"}
|
package/dist/app.mjs
ADDED
package/dist/app.mjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const ninox = defineApp({\n slug: \"ninox\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,QAAQ,UAAU;CAC7B,MAAM;CACN,MAAM;AACR,CAAC"}
|
package/dist/catalog.cjs
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
//#region src/catalog.ts
|
|
2
|
+
/** Generated — kept in sync with src/app.ts. */
|
|
3
|
+
const ninoxCatalog = {
|
|
4
|
+
"slug": "ninox",
|
|
5
|
+
"name": "Ninox",
|
|
6
|
+
"description": "Ninox is a low-code platform that enables users to create custom database applications tailored to their specific needs.",
|
|
7
|
+
"category": "Databases",
|
|
8
|
+
"logo": "https://logos.composio.dev/api/ninox",
|
|
9
|
+
"authKind": "keystroke",
|
|
10
|
+
"oauthScopes": []
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
exports.ninoxCatalog = ninoxCatalog;
|
|
14
|
+
|
|
15
|
+
//# sourceMappingURL=catalog.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const ninoxCatalog = {\n \"slug\": \"ninox\",\n \"name\": \"Ninox\",\n \"description\": \"Ninox is a low-code platform that enables users to create custom database applications tailored to their specific needs.\",\n \"category\": \"Databases\",\n \"logo\": \"https://logos.composio.dev/api/ninox\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,eAAe;CAC1B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
//#region src/catalog.d.ts
|
|
2
|
+
/** Generated — kept in sync with src/app.ts. */
|
|
3
|
+
declare const ninoxCatalog: {
|
|
4
|
+
readonly slug: "ninox";
|
|
5
|
+
readonly name: "Ninox";
|
|
6
|
+
readonly description: "Ninox is a low-code platform that enables users to create custom database applications tailored to their specific needs.";
|
|
7
|
+
readonly category: "Databases";
|
|
8
|
+
readonly logo: "https://logos.composio.dev/api/ninox";
|
|
9
|
+
readonly authKind: "keystroke";
|
|
10
|
+
readonly oauthScopes: readonly [];
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
export { ninoxCatalog };
|
|
14
|
+
//# sourceMappingURL=catalog.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.d.cts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,YAAA;EAAA"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
//#region src/catalog.d.ts
|
|
2
|
+
/** Generated — kept in sync with src/app.ts. */
|
|
3
|
+
declare const ninoxCatalog: {
|
|
4
|
+
readonly slug: "ninox";
|
|
5
|
+
readonly name: "Ninox";
|
|
6
|
+
readonly description: "Ninox is a low-code platform that enables users to create custom database applications tailored to their specific needs.";
|
|
7
|
+
readonly category: "Databases";
|
|
8
|
+
readonly logo: "https://logos.composio.dev/api/ninox";
|
|
9
|
+
readonly authKind: "keystroke";
|
|
10
|
+
readonly oauthScopes: readonly [];
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
export { ninoxCatalog };
|
|
14
|
+
//# sourceMappingURL=catalog.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.d.mts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,YAAA;EAAA"}
|
package/dist/catalog.mjs
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
//#region src/catalog.ts
|
|
2
|
+
/** Generated — kept in sync with src/app.ts. */
|
|
3
|
+
const ninoxCatalog = {
|
|
4
|
+
"slug": "ninox",
|
|
5
|
+
"name": "Ninox",
|
|
6
|
+
"description": "Ninox is a low-code platform that enables users to create custom database applications tailored to their specific needs.",
|
|
7
|
+
"category": "Databases",
|
|
8
|
+
"logo": "https://logos.composio.dev/api/ninox",
|
|
9
|
+
"authKind": "keystroke",
|
|
10
|
+
"oauthScopes": []
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
export { ninoxCatalog };
|
|
14
|
+
|
|
15
|
+
//# sourceMappingURL=catalog.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const ninoxCatalog = {\n \"slug\": \"ninox\",\n \"name\": \"Ninox\",\n \"description\": \"Ninox is a low-code platform that enables users to create custom database applications tailored to their specific needs.\",\n \"category\": \"Databases\",\n \"logo\": \"https://logos.composio.dev/api/ninox\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,eAAe;CAC1B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
|
package/dist/execute.cjs
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
let _keystrokehq_keystroke_client = require("@keystrokehq/keystroke/client");
|
|
2
|
+
//#region src/execute.ts
|
|
3
|
+
const APP_SLUG = "ninox";
|
|
4
|
+
/** Pinned app version — updated on regeneration. */
|
|
5
|
+
const APP_VERSION = "20260615_00";
|
|
6
|
+
async function executeNinoxTool(tool, args) {
|
|
7
|
+
const { result } = await (0, _keystrokehq_keystroke_client.createKeystrokeClient)().tools.execute({
|
|
8
|
+
app: APP_SLUG,
|
|
9
|
+
tool,
|
|
10
|
+
arguments: args,
|
|
11
|
+
version: APP_VERSION
|
|
12
|
+
});
|
|
13
|
+
return result;
|
|
14
|
+
}
|
|
15
|
+
//#endregion
|
|
16
|
+
exports.executeNinoxTool = executeNinoxTool;
|
|
17
|
+
|
|
18
|
+
//# sourceMappingURL=execute.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"execute.cjs","names":[],"sources":["../src/execute.ts"],"sourcesContent":["import { createKeystrokeClient } from \"@keystrokehq/keystroke/client\";\n\nconst APP_SLUG = \"ninox\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeNinoxTool(\n tool: string,\n args: Record<string, unknown>,\n): Promise<unknown> {\n const { result } = await createKeystrokeClient().tools.execute({\n app: APP_SLUG,\n tool,\n arguments: args,\n version: APP_VERSION,\n });\n return result;\n}\n"],"mappings":";;AAEA,MAAM,WAAW;;AAEjB,MAAM,cAAc;AAEpB,eAAsB,iBACpB,MACA,MACkB;CAClB,MAAM,EAAE,WAAW,OAAA,GAAA,8BAAA,sBAAA,CAA4B,CAAC,CAAC,MAAM,QAAQ;EAC7D,KAAK;EACL;EACA,WAAW;EACX,SAAS;CACX,CAAC;CACD,OAAO;AACT"}
|
package/dist/execute.mjs
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { createKeystrokeClient } from "@keystrokehq/keystroke/client";
|
|
2
|
+
//#region src/execute.ts
|
|
3
|
+
const APP_SLUG = "ninox";
|
|
4
|
+
/** Pinned app version — updated on regeneration. */
|
|
5
|
+
const APP_VERSION = "20260615_00";
|
|
6
|
+
async function executeNinoxTool(tool, args) {
|
|
7
|
+
const { result } = await createKeystrokeClient().tools.execute({
|
|
8
|
+
app: APP_SLUG,
|
|
9
|
+
tool,
|
|
10
|
+
arguments: args,
|
|
11
|
+
version: APP_VERSION
|
|
12
|
+
});
|
|
13
|
+
return result;
|
|
14
|
+
}
|
|
15
|
+
//#endregion
|
|
16
|
+
export { executeNinoxTool };
|
|
17
|
+
|
|
18
|
+
//# sourceMappingURL=execute.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"execute.mjs","names":[],"sources":["../src/execute.ts"],"sourcesContent":["import { createKeystrokeClient } from \"@keystrokehq/keystroke/client\";\n\nconst APP_SLUG = \"ninox\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeNinoxTool(\n tool: string,\n args: Record<string, unknown>,\n): Promise<unknown> {\n const { result } = await createKeystrokeClient().tools.execute({\n app: APP_SLUG,\n tool,\n arguments: args,\n version: APP_VERSION,\n });\n return result;\n}\n"],"mappings":";;AAEA,MAAM,WAAW;;AAEjB,MAAM,cAAc;AAEpB,eAAsB,iBACpB,MACA,MACkB;CAClB,MAAM,EAAE,WAAW,MAAM,sBAAsB,CAAC,CAAC,MAAM,QAAQ;EAC7D,KAAK;EACL;EACA,WAAW;EACX,SAAS;CACX,CAAC;CACD,OAAO;AACT"}
|
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
const require_app = require("./app.cjs");
|
|
3
|
+
const require_catalog = require("./catalog.cjs");
|
|
4
|
+
const require_delete_record = require("./actions/delete-record.cjs");
|
|
5
|
+
const require_get_databases = require("./actions/get-databases.cjs");
|
|
6
|
+
const require_get_team = require("./actions/get-team.cjs");
|
|
7
|
+
const require_list_teams = require("./actions/list-teams.cjs");
|
|
8
|
+
require("./actions/index.cjs");
|
|
9
|
+
exports.ninox = require_app.ninox;
|
|
10
|
+
exports.ninoxCatalog = require_catalog.ninoxCatalog;
|
|
11
|
+
exports.ninoxDeleteRecord = require_delete_record.ninoxDeleteRecord;
|
|
12
|
+
exports.ninoxGetDatabases = require_get_databases.ninoxGetDatabases;
|
|
13
|
+
exports.ninoxGetTeam = require_get_team.ninoxGetTeam;
|
|
14
|
+
exports.ninoxListTeams = require_list_teams.ninoxListTeams;
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ninoxDeleteRecord } from "./actions/delete-record.cjs";
|
|
2
|
+
import { ninoxGetDatabases } from "./actions/get-databases.cjs";
|
|
3
|
+
import { ninoxGetTeam } from "./actions/get-team.cjs";
|
|
4
|
+
import { ninoxListTeams } from "./actions/list-teams.cjs";
|
|
5
|
+
import { ninox } from "./app.cjs";
|
|
6
|
+
import { ninoxCatalog } from "./catalog.cjs";
|
|
7
|
+
export { ninox, ninoxCatalog, ninoxDeleteRecord, ninoxGetDatabases, ninoxGetTeam, ninoxListTeams };
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ninoxDeleteRecord } from "./actions/delete-record.mjs";
|
|
2
|
+
import { ninoxGetDatabases } from "./actions/get-databases.mjs";
|
|
3
|
+
import { ninoxGetTeam } from "./actions/get-team.mjs";
|
|
4
|
+
import { ninoxListTeams } from "./actions/list-teams.mjs";
|
|
5
|
+
import { ninox } from "./app.mjs";
|
|
6
|
+
import { ninoxCatalog } from "./catalog.mjs";
|
|
7
|
+
export { ninox, ninoxCatalog, ninoxDeleteRecord, ninoxGetDatabases, ninoxGetTeam, ninoxListTeams };
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ninox } from "./app.mjs";
|
|
2
|
+
import { ninoxCatalog } from "./catalog.mjs";
|
|
3
|
+
import { ninoxDeleteRecord } from "./actions/delete-record.mjs";
|
|
4
|
+
import { ninoxGetDatabases } from "./actions/get-databases.mjs";
|
|
5
|
+
import { ninoxGetTeam } from "./actions/get-team.mjs";
|
|
6
|
+
import { ninoxListTeams } from "./actions/list-teams.mjs";
|
|
7
|
+
import "./actions/index.mjs";
|
|
8
|
+
export { ninox, ninoxCatalog, ninoxDeleteRecord, ninoxGetDatabases, ninoxGetTeam, ninoxListTeams };
|
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@keystrokehq/ninox",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public",
|
|
6
|
+
"registry": "https://registry.npmjs.org"
|
|
7
|
+
},
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/keystrokehq/keystroke.git",
|
|
11
|
+
"directory": "packages/integrations/ninox"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"sideEffects": false,
|
|
17
|
+
"type": "module",
|
|
18
|
+
"main": "./dist/index.cjs",
|
|
19
|
+
"module": "./dist/index.mjs",
|
|
20
|
+
"types": "./dist/index.d.mts",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index.d.mts",
|
|
24
|
+
"import": "./dist/index.mjs",
|
|
25
|
+
"require": "./dist/index.cjs"
|
|
26
|
+
},
|
|
27
|
+
"./actions": {
|
|
28
|
+
"types": "./dist/actions/index.d.mts",
|
|
29
|
+
"import": "./dist/actions/index.mjs",
|
|
30
|
+
"require": "./dist/actions/index.cjs"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"@keystrokehq/keystroke": "^0.1.4",
|
|
35
|
+
"zod": "^4.4.3"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@keystrokehq/keystroke": "link:../../keystroke",
|
|
39
|
+
"@types/node": "^25.9.1",
|
|
40
|
+
"tsdown": "^0.22.0",
|
|
41
|
+
"typescript": "^6.0.3",
|
|
42
|
+
"zod": "^4.4.3"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "tsdown",
|
|
46
|
+
"dev": "tsdown --watch --no-clean",
|
|
47
|
+
"typecheck": "tsc --noEmit"
|
|
48
|
+
}
|
|
49
|
+
}
|