@keystrokehq/storeganise 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/get-admin-sites-by-id.cjs +33 -0
- package/dist/actions/get-admin-sites-by-id.cjs.map +1 -0
- package/dist/actions/get-admin-sites-by-id.d.cts +9 -0
- package/dist/actions/get-admin-sites-by-id.d.cts.map +1 -0
- package/dist/actions/get-admin-sites-by-id.d.mts +9 -0
- package/dist/actions/get-admin-sites-by-id.d.mts.map +1 -0
- package/dist/actions/get-admin-sites-by-id.mjs +30 -0
- package/dist/actions/get-admin-sites-by-id.mjs.map +1 -0
- package/dist/actions/get-admin-users-by-id.cjs +32 -0
- package/dist/actions/get-admin-users-by-id.cjs.map +1 -0
- package/dist/actions/get-admin-users-by-id.d.cts +9 -0
- package/dist/actions/get-admin-users-by-id.d.cts.map +1 -0
- package/dist/actions/get-admin-users-by-id.d.mts +9 -0
- package/dist/actions/get-admin-users-by-id.d.mts.map +1 -0
- package/dist/actions/get-admin-users-by-id.mjs +29 -0
- package/dist/actions/get-admin-users-by-id.mjs.map +1 -0
- package/dist/actions/get-admin-users-by-ids.cjs +25 -0
- package/dist/actions/get-admin-users-by-ids.cjs.map +1 -0
- package/dist/actions/get-admin-users-by-ids.d.cts +9 -0
- package/dist/actions/get-admin-users-by-ids.d.cts.map +1 -0
- package/dist/actions/get-admin-users-by-ids.d.mts +9 -0
- package/dist/actions/get-admin-users-by-ids.d.mts.map +1 -0
- package/dist/actions/get-admin-users-by-ids.mjs +24 -0
- package/dist/actions/get-admin-users-by-ids.mjs.map +1 -0
- package/dist/actions/index.cjs +7 -0
- package/dist/actions/index.d.cts +4 -0
- package/dist/actions/index.d.mts +4 -0
- package/dist/actions/index.mjs +4 -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 +12 -0
- package/dist/index.d.cts +6 -0
- package/dist/index.d.mts +6 -0
- package/dist/index.mjs +7 -0
- package/package.json +49 -0
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# @keystrokehq/storeganise
|
|
2
|
+
|
|
3
|
+
Keystroke-managed integration.
|
|
4
|
+
|
|
5
|
+
**App:** `storeganise`
|
|
6
|
+
**Version:** `20260615_00`
|
|
7
|
+
**Actions:** 3
|
|
8
|
+
|
|
9
|
+
```ts
|
|
10
|
+
import { defineAgent } from "@keystrokehq/keystroke/agent";
|
|
11
|
+
import { storeganiseGetAdminSitesById } from "@keystrokehq/storeganise/actions";
|
|
12
|
+
|
|
13
|
+
export default defineAgent({
|
|
14
|
+
key: "storeganise-agent",
|
|
15
|
+
tools: [storeganiseGetAdminSitesById],
|
|
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.storeganise.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.executeStoreganiseTool(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":["storeganise","executeStoreganiseTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { storeganise } from \"./app\";\nimport { executeStoreganiseTool } 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 storeganise.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 executeStoreganiseTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,YAAY,OAAO;EACxB,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,uBAAuB,MAAM,KAAgC,CAAC;EAC9F;CACF,CAAC;AACH"}
|
package/dist/action.mjs
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { storeganise } from "./app.mjs";
|
|
2
|
+
import { executeStoreganiseTool } 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 storeganise.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 executeStoreganiseTool(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 { storeganise } from \"./app\";\nimport { executeStoreganiseTool } 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 storeganise.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 executeStoreganiseTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,YAAY,OAAO;EACxB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,uBAAuB,MAAM,KAAgC,CAAC;EAC9F;CACF,CAAC;AACH"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/get-admin-sites-by-id.ts
|
|
4
|
+
const StoreganiseGetAdminSitesByIdInput = zod.z.object({
|
|
5
|
+
include: zod.z.array(zod.z.enum([
|
|
6
|
+
"units",
|
|
7
|
+
"items",
|
|
8
|
+
"billing",
|
|
9
|
+
"customFields"
|
|
10
|
+
])).describe("Comma-separated list of related resources to include for detailed single-site views. Use sparingly (only on single-item calls).").optional(),
|
|
11
|
+
site_id_or_code: zod.z.string().describe("Unique identifier or code of the site.")
|
|
12
|
+
}).describe("Request schema for retrieving a single site by ID or code.");
|
|
13
|
+
const StoreganiseGetAdminSitesByIdOutput = zod.z.object({
|
|
14
|
+
id: zod.z.string().describe("Unique site identifier."),
|
|
15
|
+
code: zod.z.string().describe("Site code."),
|
|
16
|
+
title: zod.z.union([zod.z.string(), zod.z.object({})]).nullable().optional(),
|
|
17
|
+
subtitle: zod.z.union([zod.z.string(), zod.z.object({})]).nullable().optional(),
|
|
18
|
+
timezone: zod.z.string().describe("Timezone of the site.").nullable().optional(),
|
|
19
|
+
createdAt: zod.z.string().describe("ISO timestamp when the site was created.").nullable().optional(),
|
|
20
|
+
updatedAt: zod.z.string().describe("ISO timestamp when the site was last updated.").nullable().optional(),
|
|
21
|
+
description: zod.z.union([zod.z.string(), zod.z.object({})]).nullable().optional()
|
|
22
|
+
}).describe("Response schema for retrieving a single site by ID or code.");
|
|
23
|
+
const storeganiseGetAdminSitesById = require_action.action("STOREGANISE_GET_ADMIN_SITES_BY_ID", {
|
|
24
|
+
slug: "storeganise-get-admin-sites-by-id",
|
|
25
|
+
name: "Get Admin Site by ID or Code",
|
|
26
|
+
description: "Tool to retrieve a specific site by ID or code. Use when you have the site identifier and need full site details, optionally including related resources like units.",
|
|
27
|
+
input: StoreganiseGetAdminSitesByIdInput,
|
|
28
|
+
output: StoreganiseGetAdminSitesByIdOutput
|
|
29
|
+
});
|
|
30
|
+
//#endregion
|
|
31
|
+
exports.storeganiseGetAdminSitesById = storeganiseGetAdminSitesById;
|
|
32
|
+
|
|
33
|
+
//# sourceMappingURL=get-admin-sites-by-id.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-admin-sites-by-id.cjs","names":["z","action"],"sources":["../../src/actions/get-admin-sites-by-id.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const StoreganiseGetAdminSitesByIdInput: z.ZodTypeAny = z.object({\n include: z.array(z.enum([\"units\", \"items\", \"billing\", \"customFields\"])).describe(\"Comma-separated list of related resources to include for detailed single-site views. Use sparingly (only on single-item calls).\").optional(),\n site_id_or_code: z.string().describe(\"Unique identifier or code of the site.\"),\n}).describe(\"Request schema for retrieving a single site by ID or code.\");\nexport const StoreganiseGetAdminSitesByIdOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique site identifier.\"),\n code: z.string().describe(\"Site code.\"),\n title: z.union([z.string(), z.object({})]).nullable().optional(),\n subtitle: z.union([z.string(), z.object({})]).nullable().optional(),\n timezone: z.string().describe(\"Timezone of the site.\").nullable().optional(),\n createdAt: z.string().describe(\"ISO timestamp when the site was created.\").nullable().optional(),\n updatedAt: z.string().describe(\"ISO timestamp when the site was last updated.\").nullable().optional(),\n description: z.union([z.string(), z.object({})]).nullable().optional(),\n}).describe(\"Response schema for retrieving a single site by ID or code.\");\n\nexport const storeganiseGetAdminSitesById = action(\"STOREGANISE_GET_ADMIN_SITES_BY_ID\", {\n slug: \"storeganise-get-admin-sites-by-id\",\n name: \"Get Admin Site by ID or Code\",\n description: \"Tool to retrieve a specific site by ID or code. Use when you have the site identifier and need full site details, optionally including related resources like units.\",\n input: StoreganiseGetAdminSitesByIdInput,\n output: StoreganiseGetAdminSitesByIdOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAkDA,IAAAA,EAAE,OAAO;CACtE,SAASA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,KAAK;EAAC;EAAS;EAAS;EAAW;CAAc,CAAC,CAAC,CAAC,CAAC,SAAS,iIAAiI,CAAC,CAAC,SAAS;CAC7N,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC;AAC/E,CAAC,CAAC,CAAC,SAAS,4DAA4D;AACxE,MAAa,qCAAmDA,IAAAA,EAAE,OAAO;CACvE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB;CACjD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,YAAY;CACtC,OAAOA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/D,UAAUA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClE,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3E,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,aAAaA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACvE,CAAC,CAAC,CAAC,SAAS,6DAA6D;AAEzE,MAAa,+BAA+BC,eAAAA,OAAO,qCAAqC;CACtF,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-admin-sites-by-id.d.ts
|
|
4
|
+
declare const StoreganiseGetAdminSitesByIdInput: z.ZodTypeAny;
|
|
5
|
+
declare const StoreganiseGetAdminSitesByIdOutput: z.ZodTypeAny;
|
|
6
|
+
declare const storeganiseGetAdminSitesById: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { storeganiseGetAdminSitesById };
|
|
9
|
+
//# sourceMappingURL=get-admin-sites-by-id.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-admin-sites-by-id.d.cts","names":[],"sources":["../../src/actions/get-admin-sites-by-id.ts"],"mappings":";;;cAIa,iCAAA,EAAmC,CAAA,CAAE,UAGuB;AAAA,cAC5D,kCAAA,EAAoC,CAAA,CAAE,UASuB;AAAA,cAE7D,4BAAA,gCAA4B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/get-admin-sites-by-id.d.ts
|
|
4
|
+
declare const StoreganiseGetAdminSitesByIdInput: z.ZodTypeAny;
|
|
5
|
+
declare const StoreganiseGetAdminSitesByIdOutput: z.ZodTypeAny;
|
|
6
|
+
declare const storeganiseGetAdminSitesById: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { storeganiseGetAdminSitesById };
|
|
9
|
+
//# sourceMappingURL=get-admin-sites-by-id.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-admin-sites-by-id.d.mts","names":[],"sources":["../../src/actions/get-admin-sites-by-id.ts"],"mappings":";;;cAIa,iCAAA,EAAmC,CAAA,CAAE,UAGuB;AAAA,cAC5D,kCAAA,EAAoC,CAAA,CAAE,UASuB;AAAA,cAE7D,4BAAA,gCAA4B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
const storeganiseGetAdminSitesById = action("STOREGANISE_GET_ADMIN_SITES_BY_ID", {
|
|
4
|
+
slug: "storeganise-get-admin-sites-by-id",
|
|
5
|
+
name: "Get Admin Site by ID or Code",
|
|
6
|
+
description: "Tool to retrieve a specific site by ID or code. Use when you have the site identifier and need full site details, optionally including related resources like units.",
|
|
7
|
+
input: z.object({
|
|
8
|
+
include: z.array(z.enum([
|
|
9
|
+
"units",
|
|
10
|
+
"items",
|
|
11
|
+
"billing",
|
|
12
|
+
"customFields"
|
|
13
|
+
])).describe("Comma-separated list of related resources to include for detailed single-site views. Use sparingly (only on single-item calls).").optional(),
|
|
14
|
+
site_id_or_code: z.string().describe("Unique identifier or code of the site.")
|
|
15
|
+
}).describe("Request schema for retrieving a single site by ID or code."),
|
|
16
|
+
output: z.object({
|
|
17
|
+
id: z.string().describe("Unique site identifier."),
|
|
18
|
+
code: z.string().describe("Site code."),
|
|
19
|
+
title: z.union([z.string(), z.object({})]).nullable().optional(),
|
|
20
|
+
subtitle: z.union([z.string(), z.object({})]).nullable().optional(),
|
|
21
|
+
timezone: z.string().describe("Timezone of the site.").nullable().optional(),
|
|
22
|
+
createdAt: z.string().describe("ISO timestamp when the site was created.").nullable().optional(),
|
|
23
|
+
updatedAt: z.string().describe("ISO timestamp when the site was last updated.").nullable().optional(),
|
|
24
|
+
description: z.union([z.string(), z.object({})]).nullable().optional()
|
|
25
|
+
}).describe("Response schema for retrieving a single site by ID or code.")
|
|
26
|
+
});
|
|
27
|
+
//#endregion
|
|
28
|
+
export { storeganiseGetAdminSitesById };
|
|
29
|
+
|
|
30
|
+
//# sourceMappingURL=get-admin-sites-by-id.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-admin-sites-by-id.mjs","names":[],"sources":["../../src/actions/get-admin-sites-by-id.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const StoreganiseGetAdminSitesByIdInput: z.ZodTypeAny = z.object({\n include: z.array(z.enum([\"units\", \"items\", \"billing\", \"customFields\"])).describe(\"Comma-separated list of related resources to include for detailed single-site views. Use sparingly (only on single-item calls).\").optional(),\n site_id_or_code: z.string().describe(\"Unique identifier or code of the site.\"),\n}).describe(\"Request schema for retrieving a single site by ID or code.\");\nexport const StoreganiseGetAdminSitesByIdOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique site identifier.\"),\n code: z.string().describe(\"Site code.\"),\n title: z.union([z.string(), z.object({})]).nullable().optional(),\n subtitle: z.union([z.string(), z.object({})]).nullable().optional(),\n timezone: z.string().describe(\"Timezone of the site.\").nullable().optional(),\n createdAt: z.string().describe(\"ISO timestamp when the site was created.\").nullable().optional(),\n updatedAt: z.string().describe(\"ISO timestamp when the site was last updated.\").nullable().optional(),\n description: z.union([z.string(), z.object({})]).nullable().optional(),\n}).describe(\"Response schema for retrieving a single site by ID or code.\");\n\nexport const storeganiseGetAdminSitesById = action(\"STOREGANISE_GET_ADMIN_SITES_BY_ID\", {\n slug: \"storeganise-get-admin-sites-by-id\",\n name: \"Get Admin Site by ID or Code\",\n description: \"Tool to retrieve a specific site by ID or code. Use when you have the site identifier and need full site details, optionally including related resources like units.\",\n input: StoreganiseGetAdminSitesByIdInput,\n output: StoreganiseGetAdminSitesByIdOutput,\n});\n"],"mappings":";;AAmBA,MAAa,+BAA+B,OAAO,qCAAqC;CACtF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAnB6D,EAAE,OAAO;EACtE,SAAS,EAAE,MAAM,EAAE,KAAK;GAAC;GAAS;GAAS;GAAW;EAAc,CAAC,CAAC,CAAC,CAAC,SAAS,iIAAiI,CAAC,CAAC,SAAS;EAC7N,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC;CAC/E,CAAC,CAAC,CAAC,SAAS,4DAgBH;CACP,QAhB8D,EAAE,OAAO;EACvE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB;EACjD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,YAAY;EACtC,OAAO,EAAE,MAAM,CAAC,EAAE,OAAO,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC/D,UAAU,EAAE,MAAM,CAAC,EAAE,OAAO,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAClE,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,uBAAuB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC3E,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC/F,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACpG,aAAa,EAAE,MAAM,CAAC,EAAE,OAAO,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,CAAC,CAAC,CAAC,SAAS,6DAOF;AACV,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/get-admin-users-by-id.ts
|
|
4
|
+
const StoreganiseGetAdminUsersByIdInput = zod.z.object({
|
|
5
|
+
include: zod.z.array(zod.z.enum([
|
|
6
|
+
"units",
|
|
7
|
+
"items",
|
|
8
|
+
"billing",
|
|
9
|
+
"customFields"
|
|
10
|
+
])).describe("Optional related entities to include in the response. Allowed values: units, items, billing, customFields.").optional(),
|
|
11
|
+
user_id_or_email: zod.z.string().describe("The unique identifier or email of the admin user.")
|
|
12
|
+
}).describe("Request parameters for retrieving a specific admin user by ID or email.");
|
|
13
|
+
const StoreganiseGetAdminUsersByIdOutput = zod.z.object({
|
|
14
|
+
id: zod.z.string().describe("Unique identifier of the admin user."),
|
|
15
|
+
email: zod.z.string().describe("Email address of the admin user."),
|
|
16
|
+
roles: zod.z.array(zod.z.string()).describe("Roles assigned to the admin user."),
|
|
17
|
+
lastName: zod.z.string().describe("Last name of the admin user.").nullable().optional(),
|
|
18
|
+
createdAt: zod.z.string().describe("ISO 8601 timestamp when the admin user was created."),
|
|
19
|
+
firstName: zod.z.string().describe("First name of the admin user.").nullable().optional(),
|
|
20
|
+
updatedAt: zod.z.string().describe("ISO 8601 timestamp when the admin user was last updated.")
|
|
21
|
+
}).describe("Response schema for a specific admin user.");
|
|
22
|
+
const storeganiseGetAdminUsersById = require_action.action("STOREGANISE_GET_ADMIN_USERS_BY_ID", {
|
|
23
|
+
slug: "storeganise-get-admin-users-by-id",
|
|
24
|
+
name: "Get Admin User By ID or Email",
|
|
25
|
+
description: "Tool to retrieve a specific admin user by ID or email. Use when you need detailed information of a single admin user.",
|
|
26
|
+
input: StoreganiseGetAdminUsersByIdInput,
|
|
27
|
+
output: StoreganiseGetAdminUsersByIdOutput
|
|
28
|
+
});
|
|
29
|
+
//#endregion
|
|
30
|
+
exports.storeganiseGetAdminUsersById = storeganiseGetAdminUsersById;
|
|
31
|
+
|
|
32
|
+
//# sourceMappingURL=get-admin-users-by-id.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-admin-users-by-id.cjs","names":["z","action"],"sources":["../../src/actions/get-admin-users-by-id.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const StoreganiseGetAdminUsersByIdInput: z.ZodTypeAny = z.object({\n include: z.array(z.enum([\"units\", \"items\", \"billing\", \"customFields\"])).describe(\"Optional related entities to include in the response. Allowed values: units, items, billing, customFields.\").optional(),\n user_id_or_email: z.string().describe(\"The unique identifier or email of the admin user.\"),\n}).describe(\"Request parameters for retrieving a specific admin user by ID or email.\");\nexport const StoreganiseGetAdminUsersByIdOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the admin user.\"),\n email: z.string().describe(\"Email address of the admin user.\"),\n roles: z.array(z.string()).describe(\"Roles assigned to the admin user.\"),\n lastName: z.string().describe(\"Last name of the admin user.\").nullable().optional(),\n createdAt: z.string().describe(\"ISO 8601 timestamp when the admin user was created.\"),\n firstName: z.string().describe(\"First name of the admin user.\").nullable().optional(),\n updatedAt: z.string().describe(\"ISO 8601 timestamp when the admin user was last updated.\"),\n}).describe(\"Response schema for a specific admin user.\");\n\nexport const storeganiseGetAdminUsersById = action(\"STOREGANISE_GET_ADMIN_USERS_BY_ID\", {\n slug: \"storeganise-get-admin-users-by-id\",\n name: \"Get Admin User By ID or Email\",\n description: \"Tool to retrieve a specific admin user by ID or email. Use when you need detailed information of a single admin user.\",\n input: StoreganiseGetAdminUsersByIdInput,\n output: StoreganiseGetAdminUsersByIdOutput,\n});\n"],"mappings":";;;AAIA,MAAa,oCAAkDA,IAAAA,EAAE,OAAO;CACtE,SAASA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,KAAK;EAAC;EAAS;EAAS;EAAW;CAAc,CAAC,CAAC,CAAC,CAAC,SAAS,4GAA4G,CAAC,CAAC,SAAS;CACxM,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD;AAC3F,CAAC,CAAC,CAAC,SAAS,yEAAyE;AACrF,MAAa,qCAAmDA,IAAAA,EAAE,OAAO;CACvE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC;CAC9D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;CAC7D,OAAOA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,mCAAmC;CACvE,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD;CACpF,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D;AAC3F,CAAC,CAAC,CAAC,SAAS,4CAA4C;AAExD,MAAa,+BAA+BC,eAAAA,OAAO,qCAAqC;CACtF,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-admin-users-by-id.d.ts
|
|
4
|
+
declare const StoreganiseGetAdminUsersByIdInput: z.ZodTypeAny;
|
|
5
|
+
declare const StoreganiseGetAdminUsersByIdOutput: z.ZodTypeAny;
|
|
6
|
+
declare const storeganiseGetAdminUsersById: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { storeganiseGetAdminUsersById };
|
|
9
|
+
//# sourceMappingURL=get-admin-users-by-id.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-admin-users-by-id.d.cts","names":[],"sources":["../../src/actions/get-admin-users-by-id.ts"],"mappings":";;;cAIa,iCAAA,EAAmC,CAAA,CAAE,UAGoC;AAAA,cACzE,kCAAA,EAAoC,CAAA,CAAE,UAQM;AAAA,cAE5C,4BAAA,gCAA4B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/get-admin-users-by-id.d.ts
|
|
4
|
+
declare const StoreganiseGetAdminUsersByIdInput: z.ZodTypeAny;
|
|
5
|
+
declare const StoreganiseGetAdminUsersByIdOutput: z.ZodTypeAny;
|
|
6
|
+
declare const storeganiseGetAdminUsersById: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { storeganiseGetAdminUsersById };
|
|
9
|
+
//# sourceMappingURL=get-admin-users-by-id.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-admin-users-by-id.d.mts","names":[],"sources":["../../src/actions/get-admin-users-by-id.ts"],"mappings":";;;cAIa,iCAAA,EAAmC,CAAA,CAAE,UAGoC;AAAA,cACzE,kCAAA,EAAoC,CAAA,CAAE,UAQM;AAAA,cAE5C,4BAAA,gCAA4B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
const storeganiseGetAdminUsersById = action("STOREGANISE_GET_ADMIN_USERS_BY_ID", {
|
|
4
|
+
slug: "storeganise-get-admin-users-by-id",
|
|
5
|
+
name: "Get Admin User By ID or Email",
|
|
6
|
+
description: "Tool to retrieve a specific admin user by ID or email. Use when you need detailed information of a single admin user.",
|
|
7
|
+
input: z.object({
|
|
8
|
+
include: z.array(z.enum([
|
|
9
|
+
"units",
|
|
10
|
+
"items",
|
|
11
|
+
"billing",
|
|
12
|
+
"customFields"
|
|
13
|
+
])).describe("Optional related entities to include in the response. Allowed values: units, items, billing, customFields.").optional(),
|
|
14
|
+
user_id_or_email: z.string().describe("The unique identifier or email of the admin user.")
|
|
15
|
+
}).describe("Request parameters for retrieving a specific admin user by ID or email."),
|
|
16
|
+
output: z.object({
|
|
17
|
+
id: z.string().describe("Unique identifier of the admin user."),
|
|
18
|
+
email: z.string().describe("Email address of the admin user."),
|
|
19
|
+
roles: z.array(z.string()).describe("Roles assigned to the admin user."),
|
|
20
|
+
lastName: z.string().describe("Last name of the admin user.").nullable().optional(),
|
|
21
|
+
createdAt: z.string().describe("ISO 8601 timestamp when the admin user was created."),
|
|
22
|
+
firstName: z.string().describe("First name of the admin user.").nullable().optional(),
|
|
23
|
+
updatedAt: z.string().describe("ISO 8601 timestamp when the admin user was last updated.")
|
|
24
|
+
}).describe("Response schema for a specific admin user.")
|
|
25
|
+
});
|
|
26
|
+
//#endregion
|
|
27
|
+
export { storeganiseGetAdminUsersById };
|
|
28
|
+
|
|
29
|
+
//# sourceMappingURL=get-admin-users-by-id.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-admin-users-by-id.mjs","names":[],"sources":["../../src/actions/get-admin-users-by-id.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const StoreganiseGetAdminUsersByIdInput: z.ZodTypeAny = z.object({\n include: z.array(z.enum([\"units\", \"items\", \"billing\", \"customFields\"])).describe(\"Optional related entities to include in the response. Allowed values: units, items, billing, customFields.\").optional(),\n user_id_or_email: z.string().describe(\"The unique identifier or email of the admin user.\"),\n}).describe(\"Request parameters for retrieving a specific admin user by ID or email.\");\nexport const StoreganiseGetAdminUsersByIdOutput: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the admin user.\"),\n email: z.string().describe(\"Email address of the admin user.\"),\n roles: z.array(z.string()).describe(\"Roles assigned to the admin user.\"),\n lastName: z.string().describe(\"Last name of the admin user.\").nullable().optional(),\n createdAt: z.string().describe(\"ISO 8601 timestamp when the admin user was created.\"),\n firstName: z.string().describe(\"First name of the admin user.\").nullable().optional(),\n updatedAt: z.string().describe(\"ISO 8601 timestamp when the admin user was last updated.\"),\n}).describe(\"Response schema for a specific admin user.\");\n\nexport const storeganiseGetAdminUsersById = action(\"STOREGANISE_GET_ADMIN_USERS_BY_ID\", {\n slug: \"storeganise-get-admin-users-by-id\",\n name: \"Get Admin User By ID or Email\",\n description: \"Tool to retrieve a specific admin user by ID or email. Use when you need detailed information of a single admin user.\",\n input: StoreganiseGetAdminUsersByIdInput,\n output: StoreganiseGetAdminUsersByIdOutput,\n});\n"],"mappings":";;AAkBA,MAAa,+BAA+B,OAAO,qCAAqC;CACtF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAlB6D,EAAE,OAAO;EACtE,SAAS,EAAE,MAAM,EAAE,KAAK;GAAC;GAAS;GAAS;GAAW;EAAc,CAAC,CAAC,CAAC,CAAC,SAAS,4GAA4G,CAAC,CAAC,SAAS;EACxM,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD;CAC3F,CAAC,CAAC,CAAC,SAAS,yEAeH;CACP,QAf8D,EAAE,OAAO;EACvE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC;EAC9D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;EAC7D,OAAO,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,mCAAmC;EACvE,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAClF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD;EACpF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACpF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D;CAC3F,CAAC,CAAC,CAAC,SAAS,4CAOF;AACV,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/get-admin-users-by-ids.ts
|
|
4
|
+
const StoreganiseGetAdminUsersByIdsInput = zod.z.object({ ids: zod.z.array(zod.z.string()).describe("List of unique admin user IDs to retrieve.") }).describe("Request parameters for fetching multiple admin users by their IDs.");
|
|
5
|
+
const StoreganiseGetAdminUsersByIds_AdminUserSchema = zod.z.object({
|
|
6
|
+
id: zod.z.string().describe("Unique identifier of the admin user."),
|
|
7
|
+
dtype: zod.z.string().describe("Type of the admin user."),
|
|
8
|
+
email: zod.z.string().describe("Email address of the admin user."),
|
|
9
|
+
external: zod.z.boolean().describe("Indicates if the admin user is external."),
|
|
10
|
+
isActive: zod.z.boolean().describe("Indicates if the admin user is active."),
|
|
11
|
+
username: zod.z.string().describe("Username of the admin user."),
|
|
12
|
+
createdAt: zod.z.string().describe("Creation timestamp of the admin user (UTC, ISO 8601).")
|
|
13
|
+
}).describe("Representation of an admin user.");
|
|
14
|
+
const StoreganiseGetAdminUsersByIdsOutput = zod.z.object({ users: zod.z.array(StoreganiseGetAdminUsersByIds_AdminUserSchema).describe("List of admin user objects.") }).describe("Response model containing multiple admin users.");
|
|
15
|
+
const storeganiseGetAdminUsersByIds = require_action.action("STOREGANISE_GET_ADMIN_USERS_BY_IDS", {
|
|
16
|
+
slug: "storeganise-get-admin-users-by-ids",
|
|
17
|
+
name: "Get Admin Users By IDs",
|
|
18
|
+
description: "Tool to fetch multiple admin users by their IDs. Use when you need to retrieve details for a specific set of admin accounts in bulk after verifying their IDs.",
|
|
19
|
+
input: StoreganiseGetAdminUsersByIdsInput,
|
|
20
|
+
output: StoreganiseGetAdminUsersByIdsOutput
|
|
21
|
+
});
|
|
22
|
+
//#endregion
|
|
23
|
+
exports.storeganiseGetAdminUsersByIds = storeganiseGetAdminUsersByIds;
|
|
24
|
+
|
|
25
|
+
//# sourceMappingURL=get-admin-users-by-ids.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-admin-users-by-ids.cjs","names":["z","action"],"sources":["../../src/actions/get-admin-users-by-ids.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const StoreganiseGetAdminUsersByIdsInput: z.ZodTypeAny = z.object({\n ids: z.array(z.string()).describe(\"List of unique admin user IDs to retrieve.\"),\n}).describe(\"Request parameters for fetching multiple admin users by their IDs.\");\nconst StoreganiseGetAdminUsersByIds_AdminUserSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the admin user.\"),\n dtype: z.string().describe(\"Type of the admin user.\"),\n email: z.string().describe(\"Email address of the admin user.\"),\n external: z.boolean().describe(\"Indicates if the admin user is external.\"),\n isActive: z.boolean().describe(\"Indicates if the admin user is active.\"),\n username: z.string().describe(\"Username of the admin user.\"),\n createdAt: z.string().describe(\"Creation timestamp of the admin user (UTC, ISO 8601).\"),\n}).describe(\"Representation of an admin user.\");\nexport const StoreganiseGetAdminUsersByIdsOutput: z.ZodTypeAny = z.object({\n users: z.array(StoreganiseGetAdminUsersByIds_AdminUserSchema).describe(\"List of admin user objects.\"),\n}).describe(\"Response model containing multiple admin users.\");\n\nexport const storeganiseGetAdminUsersByIds = action(\"STOREGANISE_GET_ADMIN_USERS_BY_IDS\", {\n slug: \"storeganise-get-admin-users-by-ids\",\n name: \"Get Admin Users By IDs\",\n description: \"Tool to fetch multiple admin users by their IDs. Use when you need to retrieve details for a specific set of admin accounts in bulk after verifying their IDs.\",\n input: StoreganiseGetAdminUsersByIdsInput,\n output: StoreganiseGetAdminUsersByIdsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,qCAAmDA,IAAAA,EAAE,OAAO,EACvE,KAAKA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,4CAA4C,EAChF,CAAC,CAAC,CAAC,SAAS,oEAAoE;AAChF,MAAM,gDAA8DA,IAAAA,EAAE,OAAO;CAC3E,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC;CAC9D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB;CACpD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;CAC7D,UAAUA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,0CAA0C;CACzE,UAAUA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,wCAAwC;CACvE,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B;CAC3D,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD;AACxF,CAAC,CAAC,CAAC,SAAS,kCAAkC;AAC9C,MAAa,sCAAoDA,IAAAA,EAAE,OAAO,EACxE,OAAOA,IAAAA,EAAE,MAAM,6CAA6C,CAAC,CAAC,SAAS,6BAA6B,EACtG,CAAC,CAAC,CAAC,SAAS,iDAAiD;AAE7D,MAAa,gCAAgCC,eAAAA,OAAO,sCAAsC;CACxF,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-admin-users-by-ids.d.ts
|
|
4
|
+
declare const StoreganiseGetAdminUsersByIdsInput: z.ZodTypeAny;
|
|
5
|
+
declare const StoreganiseGetAdminUsersByIdsOutput: z.ZodTypeAny;
|
|
6
|
+
declare const storeganiseGetAdminUsersByIds: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { storeganiseGetAdminUsersByIds };
|
|
9
|
+
//# sourceMappingURL=get-admin-users-by-ids.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-admin-users-by-ids.d.cts","names":[],"sources":["../../src/actions/get-admin-users-by-ids.ts"],"mappings":";;;cAIa,kCAAA,EAAoC,CAAA,CAAE,UAE8B;AAAA,cAUpE,mCAAA,EAAqC,CAAA,CAAE,UAEU;AAAA,cAEjD,6BAAA,gCAA6B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/get-admin-users-by-ids.d.ts
|
|
4
|
+
declare const StoreganiseGetAdminUsersByIdsInput: z.ZodTypeAny;
|
|
5
|
+
declare const StoreganiseGetAdminUsersByIdsOutput: z.ZodTypeAny;
|
|
6
|
+
declare const storeganiseGetAdminUsersByIds: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { storeganiseGetAdminUsersByIds };
|
|
9
|
+
//# sourceMappingURL=get-admin-users-by-ids.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-admin-users-by-ids.d.mts","names":[],"sources":["../../src/actions/get-admin-users-by-ids.ts"],"mappings":";;;cAIa,kCAAA,EAAoC,CAAA,CAAE,UAE8B;AAAA,cAUpE,mCAAA,EAAqC,CAAA,CAAE,UAEU;AAAA,cAEjD,6BAAA,gCAA6B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
//#region src/actions/get-admin-users-by-ids.ts
|
|
4
|
+
const StoreganiseGetAdminUsersByIdsInput = z.object({ ids: z.array(z.string()).describe("List of unique admin user IDs to retrieve.") }).describe("Request parameters for fetching multiple admin users by their IDs.");
|
|
5
|
+
const StoreganiseGetAdminUsersByIds_AdminUserSchema = z.object({
|
|
6
|
+
id: z.string().describe("Unique identifier of the admin user."),
|
|
7
|
+
dtype: z.string().describe("Type of the admin user."),
|
|
8
|
+
email: z.string().describe("Email address of the admin user."),
|
|
9
|
+
external: z.boolean().describe("Indicates if the admin user is external."),
|
|
10
|
+
isActive: z.boolean().describe("Indicates if the admin user is active."),
|
|
11
|
+
username: z.string().describe("Username of the admin user."),
|
|
12
|
+
createdAt: z.string().describe("Creation timestamp of the admin user (UTC, ISO 8601).")
|
|
13
|
+
}).describe("Representation of an admin user.");
|
|
14
|
+
const storeganiseGetAdminUsersByIds = action("STOREGANISE_GET_ADMIN_USERS_BY_IDS", {
|
|
15
|
+
slug: "storeganise-get-admin-users-by-ids",
|
|
16
|
+
name: "Get Admin Users By IDs",
|
|
17
|
+
description: "Tool to fetch multiple admin users by their IDs. Use when you need to retrieve details for a specific set of admin accounts in bulk after verifying their IDs.",
|
|
18
|
+
input: StoreganiseGetAdminUsersByIdsInput,
|
|
19
|
+
output: z.object({ users: z.array(StoreganiseGetAdminUsersByIds_AdminUserSchema).describe("List of admin user objects.") }).describe("Response model containing multiple admin users.")
|
|
20
|
+
});
|
|
21
|
+
//#endregion
|
|
22
|
+
export { storeganiseGetAdminUsersByIds };
|
|
23
|
+
|
|
24
|
+
//# sourceMappingURL=get-admin-users-by-ids.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-admin-users-by-ids.mjs","names":[],"sources":["../../src/actions/get-admin-users-by-ids.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const StoreganiseGetAdminUsersByIdsInput: z.ZodTypeAny = z.object({\n ids: z.array(z.string()).describe(\"List of unique admin user IDs to retrieve.\"),\n}).describe(\"Request parameters for fetching multiple admin users by their IDs.\");\nconst StoreganiseGetAdminUsersByIds_AdminUserSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique identifier of the admin user.\"),\n dtype: z.string().describe(\"Type of the admin user.\"),\n email: z.string().describe(\"Email address of the admin user.\"),\n external: z.boolean().describe(\"Indicates if the admin user is external.\"),\n isActive: z.boolean().describe(\"Indicates if the admin user is active.\"),\n username: z.string().describe(\"Username of the admin user.\"),\n createdAt: z.string().describe(\"Creation timestamp of the admin user (UTC, ISO 8601).\"),\n}).describe(\"Representation of an admin user.\");\nexport const StoreganiseGetAdminUsersByIdsOutput: z.ZodTypeAny = z.object({\n users: z.array(StoreganiseGetAdminUsersByIds_AdminUserSchema).describe(\"List of admin user objects.\"),\n}).describe(\"Response model containing multiple admin users.\");\n\nexport const storeganiseGetAdminUsersByIds = action(\"STOREGANISE_GET_ADMIN_USERS_BY_IDS\", {\n slug: \"storeganise-get-admin-users-by-ids\",\n name: \"Get Admin Users By IDs\",\n description: \"Tool to fetch multiple admin users by their IDs. Use when you need to retrieve details for a specific set of admin accounts in bulk after verifying their IDs.\",\n input: StoreganiseGetAdminUsersByIdsInput,\n output: StoreganiseGetAdminUsersByIdsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,qCAAmD,EAAE,OAAO,EACvE,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,SAAS,4CAA4C,EAChF,CAAC,CAAC,CAAC,SAAS,oEAAoE;AAChF,MAAM,gDAA8D,EAAE,OAAO;CAC3E,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC;CAC9D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB;CACpD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC;CAC7D,UAAU,EAAE,QAAQ,CAAC,CAAC,SAAS,0CAA0C;CACzE,UAAU,EAAE,QAAQ,CAAC,CAAC,SAAS,wCAAwC;CACvE,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B;CAC3D,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD;AACxF,CAAC,CAAC,CAAC,SAAS,kCAAkC;AAK9C,MAAa,gCAAgC,OAAO,sCAAsC;CACxF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT+D,EAAE,OAAO,EACxE,OAAO,EAAE,MAAM,6CAA6C,CAAC,CAAC,SAAS,6BAA6B,EACtG,CAAC,CAAC,CAAC,SAAS,iDAOF;AACV,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
const require_get_admin_sites_by_id = require("./get-admin-sites-by-id.cjs");
|
|
3
|
+
const require_get_admin_users_by_id = require("./get-admin-users-by-id.cjs");
|
|
4
|
+
const require_get_admin_users_by_ids = require("./get-admin-users-by-ids.cjs");
|
|
5
|
+
exports.storeganiseGetAdminSitesById = require_get_admin_sites_by_id.storeganiseGetAdminSitesById;
|
|
6
|
+
exports.storeganiseGetAdminUsersById = require_get_admin_users_by_id.storeganiseGetAdminUsersById;
|
|
7
|
+
exports.storeganiseGetAdminUsersByIds = require_get_admin_users_by_ids.storeganiseGetAdminUsersByIds;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { storeganiseGetAdminSitesById } from "./get-admin-sites-by-id.cjs";
|
|
2
|
+
import { storeganiseGetAdminUsersById } from "./get-admin-users-by-id.cjs";
|
|
3
|
+
import { storeganiseGetAdminUsersByIds } from "./get-admin-users-by-ids.cjs";
|
|
4
|
+
export { storeganiseGetAdminSitesById, storeganiseGetAdminUsersById, storeganiseGetAdminUsersByIds };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { storeganiseGetAdminSitesById } from "./get-admin-sites-by-id.mjs";
|
|
2
|
+
import { storeganiseGetAdminUsersById } from "./get-admin-users-by-id.mjs";
|
|
3
|
+
import { storeganiseGetAdminUsersByIds } from "./get-admin-users-by-ids.mjs";
|
|
4
|
+
export { storeganiseGetAdminSitesById, storeganiseGetAdminUsersById, storeganiseGetAdminUsersByIds };
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { storeganiseGetAdminSitesById } from "./get-admin-sites-by-id.mjs";
|
|
2
|
+
import { storeganiseGetAdminUsersById } from "./get-admin-users-by-id.mjs";
|
|
3
|
+
import { storeganiseGetAdminUsersByIds } from "./get-admin-users-by-ids.mjs";
|
|
4
|
+
export { storeganiseGetAdminSitesById, storeganiseGetAdminUsersById, storeganiseGetAdminUsersByIds };
|
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 storeganise = defineApp({\n slug: \"storeganise\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,eAAA,uCAAA,CAAA,CAAA,UAAA,CAAwB;CACnC,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,WAAA,6BAAW,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,WAAA,6BAAW,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 storeganise = defineApp({\n slug: \"storeganise\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,cAAc,UAAU;CACnC,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 storeganiseCatalog = {
|
|
4
|
+
"slug": "storeganise",
|
|
5
|
+
"name": "Storeganise",
|
|
6
|
+
"description": "Storeganise provides modern, cloud-based management software for valet and self-storage businesses, offering features like contactless online bookings, automated billing, and comprehensive APIs for integrations.",
|
|
7
|
+
"category": "eCommerce",
|
|
8
|
+
"logo": "https://logos.composio.dev/api/storeganise",
|
|
9
|
+
"authKind": "keystroke",
|
|
10
|
+
"oauthScopes": []
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
exports.storeganiseCatalog = storeganiseCatalog;
|
|
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 storeganiseCatalog = {\n \"slug\": \"storeganise\",\n \"name\": \"Storeganise\",\n \"description\": \"Storeganise provides modern, cloud-based management software for valet and self-storage businesses, offering features like contactless online bookings, automated billing, and comprehensive APIs for integrations.\",\n \"category\": \"eCommerce\",\n \"logo\": \"https://logos.composio.dev/api/storeganise\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,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 storeganiseCatalog: {
|
|
4
|
+
readonly slug: "storeganise";
|
|
5
|
+
readonly name: "Storeganise";
|
|
6
|
+
readonly description: "Storeganise provides modern, cloud-based management software for valet and self-storage businesses, offering features like contactless online bookings, automated billing, and comprehensive APIs for integrations.";
|
|
7
|
+
readonly category: "eCommerce";
|
|
8
|
+
readonly logo: "https://logos.composio.dev/api/storeganise";
|
|
9
|
+
readonly authKind: "keystroke";
|
|
10
|
+
readonly oauthScopes: readonly [];
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
export { storeganiseCatalog };
|
|
14
|
+
//# sourceMappingURL=catalog.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.d.cts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,kBAAA;EAAA"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
//#region src/catalog.d.ts
|
|
2
|
+
/** Generated — kept in sync with src/app.ts. */
|
|
3
|
+
declare const storeganiseCatalog: {
|
|
4
|
+
readonly slug: "storeganise";
|
|
5
|
+
readonly name: "Storeganise";
|
|
6
|
+
readonly description: "Storeganise provides modern, cloud-based management software for valet and self-storage businesses, offering features like contactless online bookings, automated billing, and comprehensive APIs for integrations.";
|
|
7
|
+
readonly category: "eCommerce";
|
|
8
|
+
readonly logo: "https://logos.composio.dev/api/storeganise";
|
|
9
|
+
readonly authKind: "keystroke";
|
|
10
|
+
readonly oauthScopes: readonly [];
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
export { storeganiseCatalog };
|
|
14
|
+
//# sourceMappingURL=catalog.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.d.mts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,kBAAA;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 storeganiseCatalog = {
|
|
4
|
+
"slug": "storeganise",
|
|
5
|
+
"name": "Storeganise",
|
|
6
|
+
"description": "Storeganise provides modern, cloud-based management software for valet and self-storage businesses, offering features like contactless online bookings, automated billing, and comprehensive APIs for integrations.",
|
|
7
|
+
"category": "eCommerce",
|
|
8
|
+
"logo": "https://logos.composio.dev/api/storeganise",
|
|
9
|
+
"authKind": "keystroke",
|
|
10
|
+
"oauthScopes": []
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
export { storeganiseCatalog };
|
|
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 storeganiseCatalog = {\n \"slug\": \"storeganise\",\n \"name\": \"Storeganise\",\n \"description\": \"Storeganise provides modern, cloud-based management software for valet and self-storage businesses, offering features like contactless online bookings, automated billing, and comprehensive APIs for integrations.\",\n \"category\": \"eCommerce\",\n \"logo\": \"https://logos.composio.dev/api/storeganise\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,qBAAqB;CAChC,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 = "storeganise";
|
|
4
|
+
/** Pinned app version — updated on regeneration. */
|
|
5
|
+
const APP_VERSION = "20260615_00";
|
|
6
|
+
async function executeStoreganiseTool(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.executeStoreganiseTool = executeStoreganiseTool;
|
|
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 = \"storeganise\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeStoreganiseTool(\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,uBACpB,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 = "storeganise";
|
|
4
|
+
/** Pinned app version — updated on regeneration. */
|
|
5
|
+
const APP_VERSION = "20260615_00";
|
|
6
|
+
async function executeStoreganiseTool(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 { executeStoreganiseTool };
|
|
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 = \"storeganise\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeStoreganiseTool(\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,uBACpB,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,12 @@
|
|
|
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_get_admin_sites_by_id = require("./actions/get-admin-sites-by-id.cjs");
|
|
5
|
+
const require_get_admin_users_by_id = require("./actions/get-admin-users-by-id.cjs");
|
|
6
|
+
const require_get_admin_users_by_ids = require("./actions/get-admin-users-by-ids.cjs");
|
|
7
|
+
require("./actions/index.cjs");
|
|
8
|
+
exports.storeganise = require_app.storeganise;
|
|
9
|
+
exports.storeganiseCatalog = require_catalog.storeganiseCatalog;
|
|
10
|
+
exports.storeganiseGetAdminSitesById = require_get_admin_sites_by_id.storeganiseGetAdminSitesById;
|
|
11
|
+
exports.storeganiseGetAdminUsersById = require_get_admin_users_by_id.storeganiseGetAdminUsersById;
|
|
12
|
+
exports.storeganiseGetAdminUsersByIds = require_get_admin_users_by_ids.storeganiseGetAdminUsersByIds;
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { storeganiseGetAdminSitesById } from "./actions/get-admin-sites-by-id.cjs";
|
|
2
|
+
import { storeganiseGetAdminUsersById } from "./actions/get-admin-users-by-id.cjs";
|
|
3
|
+
import { storeganiseGetAdminUsersByIds } from "./actions/get-admin-users-by-ids.cjs";
|
|
4
|
+
import { storeganise } from "./app.cjs";
|
|
5
|
+
import { storeganiseCatalog } from "./catalog.cjs";
|
|
6
|
+
export { storeganise, storeganiseCatalog, storeganiseGetAdminSitesById, storeganiseGetAdminUsersById, storeganiseGetAdminUsersByIds };
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { storeganiseGetAdminSitesById } from "./actions/get-admin-sites-by-id.mjs";
|
|
2
|
+
import { storeganiseGetAdminUsersById } from "./actions/get-admin-users-by-id.mjs";
|
|
3
|
+
import { storeganiseGetAdminUsersByIds } from "./actions/get-admin-users-by-ids.mjs";
|
|
4
|
+
import { storeganise } from "./app.mjs";
|
|
5
|
+
import { storeganiseCatalog } from "./catalog.mjs";
|
|
6
|
+
export { storeganise, storeganiseCatalog, storeganiseGetAdminSitesById, storeganiseGetAdminUsersById, storeganiseGetAdminUsersByIds };
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { storeganise } from "./app.mjs";
|
|
2
|
+
import { storeganiseCatalog } from "./catalog.mjs";
|
|
3
|
+
import { storeganiseGetAdminSitesById } from "./actions/get-admin-sites-by-id.mjs";
|
|
4
|
+
import { storeganiseGetAdminUsersById } from "./actions/get-admin-users-by-id.mjs";
|
|
5
|
+
import { storeganiseGetAdminUsersByIds } from "./actions/get-admin-users-by-ids.mjs";
|
|
6
|
+
import "./actions/index.mjs";
|
|
7
|
+
export { storeganise, storeganiseCatalog, storeganiseGetAdminSitesById, storeganiseGetAdminUsersById, storeganiseGetAdminUsersByIds };
|
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@keystrokehq/storeganise",
|
|
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/storeganise"
|
|
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
|
+
}
|