@keystrokehq/moonclerk 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/index.cjs +11 -0
- package/dist/actions/index.d.cts +6 -0
- package/dist/actions/index.d.mts +6 -0
- package/dist/actions/index.mjs +6 -0
- package/dist/actions/list-customers.cjs +99 -0
- package/dist/actions/list-customers.cjs.map +1 -0
- package/dist/actions/list-customers.d.cts +9 -0
- package/dist/actions/list-customers.d.cts.map +1 -0
- package/dist/actions/list-customers.d.mts +9 -0
- package/dist/actions/list-customers.d.mts.map +1 -0
- package/dist/actions/list-customers.mjs +96 -0
- package/dist/actions/list-customers.mjs.map +1 -0
- package/dist/actions/list-discounts.cjs +44 -0
- package/dist/actions/list-discounts.cjs.map +1 -0
- package/dist/actions/list-discounts.d.cts +9 -0
- package/dist/actions/list-discounts.d.cts.map +1 -0
- package/dist/actions/list-discounts.d.mts +9 -0
- package/dist/actions/list-discounts.d.mts.map +1 -0
- package/dist/actions/list-discounts.mjs +41 -0
- package/dist/actions/list-discounts.mjs.map +1 -0
- package/dist/actions/list-forms.cjs +32 -0
- package/dist/actions/list-forms.cjs.map +1 -0
- package/dist/actions/list-forms.d.cts +9 -0
- package/dist/actions/list-forms.d.cts.map +1 -0
- package/dist/actions/list-forms.d.mts +9 -0
- package/dist/actions/list-forms.d.mts.map +1 -0
- package/dist/actions/list-forms.mjs +29 -0
- package/dist/actions/list-forms.mjs.map +1 -0
- package/dist/actions/list-payments.cjs +75 -0
- package/dist/actions/list-payments.cjs.map +1 -0
- package/dist/actions/list-payments.d.cts +9 -0
- package/dist/actions/list-payments.d.cts.map +1 -0
- package/dist/actions/list-payments.d.mts +9 -0
- package/dist/actions/list-payments.d.mts.map +1 -0
- package/dist/actions/list-payments.mjs +72 -0
- package/dist/actions/list-payments.mjs.map +1 -0
- package/dist/actions/list-subscriptions.cjs +52 -0
- package/dist/actions/list-subscriptions.cjs.map +1 -0
- package/dist/actions/list-subscriptions.d.cts +9 -0
- package/dist/actions/list-subscriptions.d.cts.map +1 -0
- package/dist/actions/list-subscriptions.d.mts +9 -0
- package/dist/actions/list-subscriptions.d.mts.map +1 -0
- package/dist/actions/list-subscriptions.mjs +49 -0
- package/dist/actions/list-subscriptions.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 +16 -0
- package/dist/index.d.cts +8 -0
- package/dist/index.d.mts +8 -0
- package/dist/index.mjs +9 -0
- package/package.json +49 -0
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
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_list_customers = require("./actions/list-customers.cjs");
|
|
5
|
+
const require_list_discounts = require("./actions/list-discounts.cjs");
|
|
6
|
+
const require_list_forms = require("./actions/list-forms.cjs");
|
|
7
|
+
const require_list_payments = require("./actions/list-payments.cjs");
|
|
8
|
+
const require_list_subscriptions = require("./actions/list-subscriptions.cjs");
|
|
9
|
+
require("./actions/index.cjs");
|
|
10
|
+
exports.moonclerk = require_app.moonclerk;
|
|
11
|
+
exports.moonclerkCatalog = require_catalog.moonclerkCatalog;
|
|
12
|
+
exports.moonclerkListCustomers = require_list_customers.moonclerkListCustomers;
|
|
13
|
+
exports.moonclerkListDiscounts = require_list_discounts.moonclerkListDiscounts;
|
|
14
|
+
exports.moonclerkListForms = require_list_forms.moonclerkListForms;
|
|
15
|
+
exports.moonclerkListPayments = require_list_payments.moonclerkListPayments;
|
|
16
|
+
exports.moonclerkListSubscriptions = require_list_subscriptions.moonclerkListSubscriptions;
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { moonclerkListCustomers } from "./actions/list-customers.cjs";
|
|
2
|
+
import { moonclerkListDiscounts } from "./actions/list-discounts.cjs";
|
|
3
|
+
import { moonclerkListForms } from "./actions/list-forms.cjs";
|
|
4
|
+
import { moonclerkListPayments } from "./actions/list-payments.cjs";
|
|
5
|
+
import { moonclerkListSubscriptions } from "./actions/list-subscriptions.cjs";
|
|
6
|
+
import { moonclerk } from "./app.cjs";
|
|
7
|
+
import { moonclerkCatalog } from "./catalog.cjs";
|
|
8
|
+
export { moonclerk, moonclerkCatalog, moonclerkListCustomers, moonclerkListDiscounts, moonclerkListForms, moonclerkListPayments, moonclerkListSubscriptions };
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { moonclerkListCustomers } from "./actions/list-customers.mjs";
|
|
2
|
+
import { moonclerkListDiscounts } from "./actions/list-discounts.mjs";
|
|
3
|
+
import { moonclerkListForms } from "./actions/list-forms.mjs";
|
|
4
|
+
import { moonclerkListPayments } from "./actions/list-payments.mjs";
|
|
5
|
+
import { moonclerkListSubscriptions } from "./actions/list-subscriptions.mjs";
|
|
6
|
+
import { moonclerk } from "./app.mjs";
|
|
7
|
+
import { moonclerkCatalog } from "./catalog.mjs";
|
|
8
|
+
export { moonclerk, moonclerkCatalog, moonclerkListCustomers, moonclerkListDiscounts, moonclerkListForms, moonclerkListPayments, moonclerkListSubscriptions };
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { moonclerk } from "./app.mjs";
|
|
2
|
+
import { moonclerkCatalog } from "./catalog.mjs";
|
|
3
|
+
import { moonclerkListCustomers } from "./actions/list-customers.mjs";
|
|
4
|
+
import { moonclerkListDiscounts } from "./actions/list-discounts.mjs";
|
|
5
|
+
import { moonclerkListForms } from "./actions/list-forms.mjs";
|
|
6
|
+
import { moonclerkListPayments } from "./actions/list-payments.mjs";
|
|
7
|
+
import { moonclerkListSubscriptions } from "./actions/list-subscriptions.mjs";
|
|
8
|
+
import "./actions/index.mjs";
|
|
9
|
+
export { moonclerk, moonclerkCatalog, moonclerkListCustomers, moonclerkListDiscounts, moonclerkListForms, moonclerkListPayments, moonclerkListSubscriptions };
|
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@keystrokehq/moonclerk",
|
|
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/moonclerk"
|
|
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
|
+
}
|