@uniforge/testing 0.1.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/index.d.cts +177 -0
- package/dist/auth/index.d.ts +177 -0
- package/dist/auth/index.js +459 -0
- package/dist/auth/index.js.map +1 -0
- package/dist/auth/index.mjs +418 -0
- package/dist/auth/index.mjs.map +1 -0
- package/dist/billing/index.d.cts +27 -0
- package/dist/billing/index.d.ts +27 -0
- package/dist/billing/index.js +208 -0
- package/dist/billing/index.js.map +1 -0
- package/dist/billing/index.mjs +178 -0
- package/dist/billing/index.mjs.map +1 -0
- package/dist/database/index.d.cts +399 -0
- package/dist/database/index.d.ts +399 -0
- package/dist/database/index.js +19054 -0
- package/dist/database/index.js.map +1 -0
- package/dist/database/index.mjs +19046 -0
- package/dist/database/index.mjs.map +1 -0
- package/dist/graphql/index.d.cts +23 -0
- package/dist/graphql/index.d.ts +23 -0
- package/dist/graphql/index.js +18511 -0
- package/dist/graphql/index.js.map +1 -0
- package/dist/graphql/index.mjs +18505 -0
- package/dist/graphql/index.mjs.map +1 -0
- package/dist/index.d.cts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +31 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -0
- package/dist/multi-store/index.d.cts +66 -0
- package/dist/multi-store/index.d.ts +66 -0
- package/dist/multi-store/index.js +319 -0
- package/dist/multi-store/index.js.map +1 -0
- package/dist/multi-store/index.mjs +287 -0
- package/dist/multi-store/index.mjs.map +1 -0
- package/dist/multi-tenant/index.d.cts +15 -0
- package/dist/multi-tenant/index.d.ts +15 -0
- package/dist/multi-tenant/index.js +87 -0
- package/dist/multi-tenant/index.js.map +1 -0
- package/dist/multi-tenant/index.mjs +57 -0
- package/dist/multi-tenant/index.mjs.map +1 -0
- package/dist/performance/index.d.cts +60 -0
- package/dist/performance/index.d.ts +60 -0
- package/dist/performance/index.js +280 -0
- package/dist/performance/index.js.map +1 -0
- package/dist/performance/index.mjs +246 -0
- package/dist/performance/index.mjs.map +1 -0
- package/dist/platform/index.d.cts +71 -0
- package/dist/platform/index.d.ts +71 -0
- package/dist/platform/index.js +435 -0
- package/dist/platform/index.js.map +1 -0
- package/dist/platform/index.mjs +396 -0
- package/dist/platform/index.mjs.map +1 -0
- package/dist/rbac/index.d.cts +21 -0
- package/dist/rbac/index.d.ts +21 -0
- package/dist/rbac/index.js +178 -0
- package/dist/rbac/index.js.map +1 -0
- package/dist/rbac/index.mjs +150 -0
- package/dist/rbac/index.mjs.map +1 -0
- package/dist/security/index.d.cts +73 -0
- package/dist/security/index.d.ts +73 -0
- package/dist/security/index.js +246 -0
- package/dist/security/index.js.map +1 -0
- package/dist/security/index.mjs +211 -0
- package/dist/security/index.mjs.map +1 -0
- package/dist/shopify-api/index.d.cts +139 -0
- package/dist/shopify-api/index.d.ts +139 -0
- package/dist/shopify-api/index.js +469 -0
- package/dist/shopify-api/index.js.map +1 -0
- package/dist/shopify-api/index.mjs +439 -0
- package/dist/shopify-api/index.mjs.map +1 -0
- package/dist/shopify-compliance/index.d.cts +85 -0
- package/dist/shopify-compliance/index.d.ts +85 -0
- package/dist/shopify-compliance/index.js +287 -0
- package/dist/shopify-compliance/index.js.map +1 -0
- package/dist/shopify-compliance/index.mjs +259 -0
- package/dist/shopify-compliance/index.mjs.map +1 -0
- package/dist/webhooks/index.d.cts +127 -0
- package/dist/webhooks/index.d.ts +127 -0
- package/dist/webhooks/index.js +18934 -0
- package/dist/webhooks/index.js.map +1 -0
- package/dist/webhooks/index.mjs +18916 -0
- package/dist/webhooks/index.mjs.map +1 -0
- package/package.json +112 -0
package/package.json
ADDED
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@uniforge/testing",
|
|
3
|
+
"version": "0.1.0-alpha.2",
|
|
4
|
+
"description": "Testing utilities and mocks for UniForge applications",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./auth": {
|
|
15
|
+
"types": "./dist/auth/index.d.ts",
|
|
16
|
+
"import": "./dist/auth/index.mjs",
|
|
17
|
+
"require": "./dist/auth/index.js"
|
|
18
|
+
},
|
|
19
|
+
"./multi-tenant": {
|
|
20
|
+
"types": "./dist/multi-tenant/index.d.ts",
|
|
21
|
+
"import": "./dist/multi-tenant/index.mjs",
|
|
22
|
+
"require": "./dist/multi-tenant/index.js"
|
|
23
|
+
},
|
|
24
|
+
"./database": {
|
|
25
|
+
"types": "./dist/database/index.d.ts",
|
|
26
|
+
"import": "./dist/database/index.mjs",
|
|
27
|
+
"require": "./dist/database/index.js"
|
|
28
|
+
},
|
|
29
|
+
"./graphql": {
|
|
30
|
+
"types": "./dist/graphql/index.d.ts",
|
|
31
|
+
"import": "./dist/graphql/index.mjs",
|
|
32
|
+
"require": "./dist/graphql/index.js"
|
|
33
|
+
},
|
|
34
|
+
"./webhooks": {
|
|
35
|
+
"types": "./dist/webhooks/index.d.ts",
|
|
36
|
+
"import": "./dist/webhooks/index.mjs",
|
|
37
|
+
"require": "./dist/webhooks/index.js"
|
|
38
|
+
},
|
|
39
|
+
"./multi-store": {
|
|
40
|
+
"types": "./dist/multi-store/index.d.ts",
|
|
41
|
+
"import": "./dist/multi-store/index.mjs",
|
|
42
|
+
"require": "./dist/multi-store/index.js"
|
|
43
|
+
},
|
|
44
|
+
"./rbac": {
|
|
45
|
+
"types": "./dist/rbac/index.d.ts",
|
|
46
|
+
"import": "./dist/rbac/index.mjs",
|
|
47
|
+
"require": "./dist/rbac/index.js"
|
|
48
|
+
},
|
|
49
|
+
"./billing": {
|
|
50
|
+
"types": "./dist/billing/index.d.ts",
|
|
51
|
+
"import": "./dist/billing/index.mjs",
|
|
52
|
+
"require": "./dist/billing/index.js"
|
|
53
|
+
},
|
|
54
|
+
"./platform": {
|
|
55
|
+
"types": "./dist/platform/index.d.ts",
|
|
56
|
+
"import": "./dist/platform/index.mjs",
|
|
57
|
+
"require": "./dist/platform/index.js"
|
|
58
|
+
},
|
|
59
|
+
"./shopify-api": {
|
|
60
|
+
"types": "./dist/shopify-api/index.d.ts",
|
|
61
|
+
"import": "./dist/shopify-api/index.mjs",
|
|
62
|
+
"require": "./dist/shopify-api/index.js"
|
|
63
|
+
},
|
|
64
|
+
"./security": {
|
|
65
|
+
"types": "./dist/security/index.d.ts",
|
|
66
|
+
"import": "./dist/security/index.mjs",
|
|
67
|
+
"require": "./dist/security/index.js"
|
|
68
|
+
},
|
|
69
|
+
"./performance": {
|
|
70
|
+
"types": "./dist/performance/index.d.ts",
|
|
71
|
+
"import": "./dist/performance/index.mjs",
|
|
72
|
+
"require": "./dist/performance/index.js"
|
|
73
|
+
},
|
|
74
|
+
"./shopify-compliance": {
|
|
75
|
+
"types": "./dist/shopify-compliance/index.d.ts",
|
|
76
|
+
"import": "./dist/shopify-compliance/index.mjs",
|
|
77
|
+
"require": "./dist/shopify-compliance/index.js"
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
"files": [
|
|
81
|
+
"dist"
|
|
82
|
+
],
|
|
83
|
+
"devDependencies": {
|
|
84
|
+
"tsup": "^8.3.0",
|
|
85
|
+
"vitest": "^2.1.0"
|
|
86
|
+
},
|
|
87
|
+
"keywords": [
|
|
88
|
+
"uniforge",
|
|
89
|
+
"testing",
|
|
90
|
+
"mocks",
|
|
91
|
+
"test-utils"
|
|
92
|
+
],
|
|
93
|
+
"license": "MIT",
|
|
94
|
+
"repository": {
|
|
95
|
+
"type": "git",
|
|
96
|
+
"url": "https://github.com/uniprocessing/uniforge.git",
|
|
97
|
+
"directory": "packages/testing"
|
|
98
|
+
},
|
|
99
|
+
"publishConfig": {
|
|
100
|
+
"access": "public"
|
|
101
|
+
},
|
|
102
|
+
"dependencies": {
|
|
103
|
+
"@uniforge/platform-core": "^0.1.0-alpha.2"
|
|
104
|
+
},
|
|
105
|
+
"scripts": {
|
|
106
|
+
"build": "tsup",
|
|
107
|
+
"dev": "tsup --watch",
|
|
108
|
+
"test": "vitest",
|
|
109
|
+
"lint": "eslint src/",
|
|
110
|
+
"typecheck": "tsc --noEmit"
|
|
111
|
+
}
|
|
112
|
+
}
|