@delopay/sdk 0.30.0 → 0.31.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 +10 -4
- package/dist/{chunk-INP6UXMJ.js → chunk-5C42YTV2.js} +56 -21
- package/dist/chunk-5C42YTV2.js.map +1 -0
- package/dist/index.cjs +55 -20
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +56 -14
- package/dist/index.d.ts +56 -14
- package/dist/index.js +1 -1
- package/dist/internal.cjs +55 -20
- package/dist/internal.cjs.map +1 -1
- package/dist/internal.js +1 -1
- package/package.json +16 -16
- package/dist/chunk-INP6UXMJ.js.map +0 -1
package/dist/internal.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@delopay/sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.31.0",
|
|
4
4
|
"description": "Official Delopay TypeScript SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -32,19 +32,6 @@
|
|
|
32
32
|
"files": [
|
|
33
33
|
"dist"
|
|
34
34
|
],
|
|
35
|
-
"scripts": {
|
|
36
|
-
"build": "tsup",
|
|
37
|
-
"test": "vitest run",
|
|
38
|
-
"test:watch": "vitest",
|
|
39
|
-
"typecheck": "tsc --noEmit",
|
|
40
|
-
"lint": "oxlint && eslint .",
|
|
41
|
-
"lint:fix": "oxlint --fix && eslint . --fix",
|
|
42
|
-
"format": "prettier --write .",
|
|
43
|
-
"format:check": "prettier --check .",
|
|
44
|
-
"check": "pnpm typecheck && pnpm lint && pnpm format:check && pnpm test && pnpm check:parity",
|
|
45
|
-
"check:parity": "node scripts/parity-check.mjs",
|
|
46
|
-
"validate:types": "npx tsx scripts/validate-types.ts"
|
|
47
|
-
},
|
|
48
35
|
"devDependencies": {
|
|
49
36
|
"@eslint/js": "^10.0.1",
|
|
50
37
|
"@types/node": "^25.6.0",
|
|
@@ -59,5 +46,18 @@
|
|
|
59
46
|
"engines": {
|
|
60
47
|
"node": ">=18.0.0"
|
|
61
48
|
},
|
|
62
|
-
"license": "MIT"
|
|
63
|
-
|
|
49
|
+
"license": "MIT",
|
|
50
|
+
"scripts": {
|
|
51
|
+
"build": "tsup",
|
|
52
|
+
"test": "vitest run",
|
|
53
|
+
"test:watch": "vitest",
|
|
54
|
+
"typecheck": "tsc --noEmit",
|
|
55
|
+
"lint": "oxlint && eslint .",
|
|
56
|
+
"lint:fix": "oxlint --fix && eslint . --fix",
|
|
57
|
+
"format": "prettier --write .",
|
|
58
|
+
"format:check": "prettier --check .",
|
|
59
|
+
"check": "pnpm typecheck && pnpm lint && pnpm format:check && pnpm test && pnpm check:parity",
|
|
60
|
+
"check:parity": "node scripts/parity-check.mjs",
|
|
61
|
+
"validate:types": "npx tsx scripts/validate-types.ts"
|
|
62
|
+
}
|
|
63
|
+
}
|