@approvio/ts-sdk 0.0.15 → 0.0.16
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/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +9 -4
package/dist/index.cjs
CHANGED
|
@@ -57,7 +57,7 @@ function validateURL(url) {
|
|
|
57
57
|
function removeTrailingSlash(url) {
|
|
58
58
|
return url.endsWith("/") ? url.slice(0, -1) : url;
|
|
59
59
|
}
|
|
60
|
-
const USER_AGENT = `Approvio-TS-SDK/0.0.
|
|
60
|
+
const USER_AGENT = `Approvio-TS-SDK/0.0.16`;
|
|
61
61
|
//#endregion
|
|
62
62
|
//#region src/client/http.ts
|
|
63
63
|
/**
|
package/dist/index.mjs
CHANGED
|
@@ -31,7 +31,7 @@ function validateURL(url) {
|
|
|
31
31
|
function removeTrailingSlash(url) {
|
|
32
32
|
return url.endsWith("/") ? url.slice(0, -1) : url;
|
|
33
33
|
}
|
|
34
|
-
const USER_AGENT = `Approvio-TS-SDK/0.0.
|
|
34
|
+
const USER_AGENT = `Approvio-TS-SDK/0.0.16`;
|
|
35
35
|
//#endregion
|
|
36
36
|
//#region src/client/http.ts
|
|
37
37
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@approvio/ts-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.16",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -18,8 +18,12 @@
|
|
|
18
18
|
"LICENSE"
|
|
19
19
|
],
|
|
20
20
|
"license": "MIT",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/giovannibaratta/approvio-ts-sdk.git"
|
|
24
|
+
},
|
|
21
25
|
"engines": {
|
|
22
|
-
"node": "22"
|
|
26
|
+
"node": ">=22"
|
|
23
27
|
},
|
|
24
28
|
"packageManager": "yarn@4.7.0",
|
|
25
29
|
"scripts": {
|
|
@@ -30,7 +34,7 @@
|
|
|
30
34
|
"prepublishOnly": "yarn format && yarn lint && yarn build"
|
|
31
35
|
},
|
|
32
36
|
"dependencies": {
|
|
33
|
-
"@approvio/api": "0.0.
|
|
37
|
+
"@approvio/api": "0.0.47",
|
|
34
38
|
"axios": "1.16.1",
|
|
35
39
|
"jose": "6.2.3"
|
|
36
40
|
},
|
|
@@ -52,8 +56,9 @@
|
|
|
52
56
|
"io-ts": "2.2.20",
|
|
53
57
|
"jest": "29.7.0",
|
|
54
58
|
"prettier": "3.7.4",
|
|
59
|
+
"semver": "^7.8.0",
|
|
55
60
|
"ts-jest": "29.4.6",
|
|
56
61
|
"tsdown": "^0.21.4",
|
|
57
62
|
"typescript": "5.9.3"
|
|
58
63
|
}
|
|
59
|
-
}
|
|
64
|
+
}
|