@plyaz/api 1.5.4 → 1.6.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/dist/entry-frontend.cjs +27113 -0
- package/dist/entry-frontend.cjs.map +1 -0
- package/dist/entry-frontend.d.ts +53 -0
- package/dist/entry-frontend.d.ts.map +1 -0
- package/dist/entry-frontend.mjs +26470 -0
- package/dist/entry-frontend.mjs.map +1 -0
- package/package.json +42 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plyaz/api",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "@plyaz/api ⚡ Core Plyaz API client enabling seamless Web3 interactions, authentication, and data access across apps and services. Built for scalability, reliability, and tokenized fan engagement experiences.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,6 +15,17 @@
|
|
|
15
15
|
"require": "./dist/index.cjs",
|
|
16
16
|
"default": "./dist/index.mjs"
|
|
17
17
|
},
|
|
18
|
+
"./frontend": {
|
|
19
|
+
"types": "./dist/entry-frontend.d.ts",
|
|
20
|
+
"browser": {
|
|
21
|
+
"import": "./dist/entry-frontend.mjs",
|
|
22
|
+
"require": "./dist/entry-frontend.cjs",
|
|
23
|
+
"default": "./dist/entry-frontend.mjs"
|
|
24
|
+
},
|
|
25
|
+
"import": "./dist/entry-frontend.mjs",
|
|
26
|
+
"require": "./dist/entry-frontend.cjs",
|
|
27
|
+
"default": "./dist/entry-frontend.mjs"
|
|
28
|
+
},
|
|
18
29
|
"./package.json": "./package.json"
|
|
19
30
|
},
|
|
20
31
|
"engines": {
|
|
@@ -27,14 +38,17 @@
|
|
|
27
38
|
"dist"
|
|
28
39
|
],
|
|
29
40
|
"dependencies": {
|
|
41
|
+
"@inquirer/prompts": "^7.3.2",
|
|
30
42
|
"@nestjs/common": "^11.1.7",
|
|
31
43
|
"@plyaz/config": "^1.8.6",
|
|
32
44
|
"@plyaz/errors": "^1.4.6",
|
|
33
45
|
"@plyaz/logger": "^1.4.0",
|
|
34
46
|
"@tanstack/react-query": "5.85.6",
|
|
35
47
|
"@tanstack/react-query-devtools": "^5.85.6",
|
|
48
|
+
"commander": "^13.1.0",
|
|
36
49
|
"express": "^5.1.0",
|
|
37
50
|
"fetchff": "^4.1.0",
|
|
51
|
+
"msw": "^2.12.4",
|
|
38
52
|
"next": "15.4.7",
|
|
39
53
|
"react": "^19.1.0",
|
|
40
54
|
"react-dom": "^19.1.0",
|
|
@@ -146,6 +160,32 @@
|
|
|
146
160
|
"remove:unused:fnc": "pnpm exec ./node_modules/@plyaz/devtools/scripts/check_fnc.ts --report=./internal-reports/unused-declarations.md",
|
|
147
161
|
"check:dependencies": "npx tsx ./node_modules/@plyaz/devtools/scripts/check_dependencies_versions.ts --report=./internal-reports/dependency-report.md",
|
|
148
162
|
"move:types": "npx tsx ./scripts/move_types.ts src/ --report=internal-reports/moved_types.md",
|
|
149
|
-
"move:constants": "npx tsx ./node_modules/@plyaz/devtools/scripts/move_constants.ts src/ --report=internal-reports/moved_consts.md"
|
|
163
|
+
"move:constants": "npx tsx ./node_modules/@plyaz/devtools/scripts/move_constants.ts src/ --report=internal-reports/moved_consts.md",
|
|
164
|
+
"generate": "npx tsx ./bin/generate.ts",
|
|
165
|
+
"generate:service": "npx tsx ./bin/generate.ts service",
|
|
166
|
+
"generate:schema": "npx tsx ./bin/generate.ts schema",
|
|
167
|
+
"generate:endpoint": "npx tsx ./bin/generate.ts endpoint",
|
|
168
|
+
"generate:fetcher": "npx tsx ./bin/generate.ts fetcher",
|
|
169
|
+
"generate:hook": "npx tsx ./bin/generate.ts hook",
|
|
170
|
+
"generate:types": "npx tsx ./bin/generate.ts types",
|
|
171
|
+
"generate:action": "npx tsx ./bin/generate.ts action",
|
|
172
|
+
"generate:interactive": "npx tsx ./bin/generate.ts interactive",
|
|
173
|
+
"generate:batch": "npx tsx ./bin/generate.ts batch",
|
|
174
|
+
"generate:sync": "npx tsx ./bin/generate.ts sync",
|
|
175
|
+
"generate:undo": "npx tsx ./bin/generate.ts undo",
|
|
176
|
+
"generate:presets": "npx tsx ./bin/generate.ts presets",
|
|
177
|
+
"generate:fields": "npx tsx ./bin/generate.ts fields",
|
|
178
|
+
"generate:init": "npx tsx ./bin/generate.ts init",
|
|
179
|
+
"generate:info": "npx tsx ./bin/generate.ts info",
|
|
180
|
+
"generate:watch": "npx tsx ./bin/generate.ts watch",
|
|
181
|
+
"generate:openapi": "npx tsx ./bin/generate.ts import:openapi",
|
|
182
|
+
"generate:postman": "npx tsx ./bin/generate.ts import:postman",
|
|
183
|
+
"generate:export:openapi": "npx tsx ./bin/generate.ts export:openapi",
|
|
184
|
+
"generate:export:postman": "npx tsx ./bin/generate.ts export:postman",
|
|
185
|
+
"generate:export:sdk": "npx tsx ./bin/generate.ts export:sdk",
|
|
186
|
+
"generate:validate": "npx tsx ./bin/generate.ts validate",
|
|
187
|
+
"generate:verify": "npx tsx ./bin/generate.ts verify-routes",
|
|
188
|
+
"generate:docs": "npx tsx ./bin/generate.ts docs",
|
|
189
|
+
"generate:list": "npx tsx ./bin/generate.ts list"
|
|
150
190
|
}
|
|
151
191
|
}
|