@connectedxm/client 0.0.4 → 0.0.55
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/.vscode/settings.json +4 -0
- package/CHANGELOG.md +12 -0
- package/package.json +9 -6
- package/dist/index.d.mts +0 -1108
- package/dist/index.d.ts +0 -1108
- package/dist/index.js +0 -731
- package/dist/index.mjs +0 -442
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@connectedxm/client",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.55",
|
|
4
4
|
"description": "Client API javascript SDK",
|
|
5
5
|
"author": "ConnectedXM Inc.",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/connectedxm/client-sdk.git"
|
|
9
|
+
},
|
|
6
10
|
"license": "MIT",
|
|
7
11
|
"private": false,
|
|
8
12
|
"main": "dist/index.js",
|
|
@@ -13,23 +17,22 @@
|
|
|
13
17
|
"lint": "yarn tsc && eslint src/**/*.ts",
|
|
14
18
|
"test": "vitest run",
|
|
15
19
|
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
16
|
-
"
|
|
17
|
-
"release": "yarn run lint && yarn run test && yarn run build && changeset publish"
|
|
20
|
+
"release": "yarn run lint && yarn run test && yarn run build"
|
|
18
21
|
},
|
|
19
22
|
"dependencies": {
|
|
20
23
|
"axios": "^1.6.5"
|
|
21
24
|
},
|
|
22
25
|
"peerDependencies": {
|
|
23
|
-
"@tanstack/react-query": "^
|
|
26
|
+
"@tanstack/react-query": "^5.0.0",
|
|
24
27
|
"react": "^18.0.0"
|
|
25
28
|
},
|
|
26
29
|
"devDependencies": {
|
|
27
30
|
"@changesets/cli": "^2.26.0",
|
|
28
31
|
"@swc/core": "^1.3.102",
|
|
29
|
-
"@tanstack/react-query": "^
|
|
32
|
+
"@tanstack/react-query": "^5.20.5",
|
|
33
|
+
"@types/react": "^18.2.47",
|
|
30
34
|
"@typescript-eslint/eslint-plugin": "^6.4.0",
|
|
31
35
|
"@typescript-eslint/parser": "^6.18.1",
|
|
32
|
-
"@types/react": "^18.2.47",
|
|
33
36
|
"eslint": "^8.0.1",
|
|
34
37
|
"eslint-plugin-react": "^7.33.2",
|
|
35
38
|
"eslint-plugin-react-hooks": "^4.6.0",
|