@connectedxm/client 1.7.1 → 1.7.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/index.d.mts +11 -0
- package/dist/index.d.ts +11 -0
- package/package.json +8 -7
- package/connectedxm-client-1.7.0-beta.2.tgz +0 -0
package/dist/index.d.mts
CHANGED
|
@@ -1798,6 +1798,17 @@ interface OrganizationConfig {
|
|
|
1798
1798
|
};
|
|
1799
1799
|
};
|
|
1800
1800
|
MODULES: Record<keyof typeof OrganizationModuleType, OrganizationModule>;
|
|
1801
|
+
CUSTOM_MODULES: {
|
|
1802
|
+
name: string;
|
|
1803
|
+
url: string;
|
|
1804
|
+
iconName: string;
|
|
1805
|
+
color: string;
|
|
1806
|
+
position: "top" | "bottom";
|
|
1807
|
+
translations: {
|
|
1808
|
+
locale: string;
|
|
1809
|
+
name: string;
|
|
1810
|
+
}[];
|
|
1811
|
+
}[];
|
|
1801
1812
|
SOCIAL: {
|
|
1802
1813
|
facebook: string | null;
|
|
1803
1814
|
instagram: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -1798,6 +1798,17 @@ interface OrganizationConfig {
|
|
|
1798
1798
|
};
|
|
1799
1799
|
};
|
|
1800
1800
|
MODULES: Record<keyof typeof OrganizationModuleType, OrganizationModule>;
|
|
1801
|
+
CUSTOM_MODULES: {
|
|
1802
|
+
name: string;
|
|
1803
|
+
url: string;
|
|
1804
|
+
iconName: string;
|
|
1805
|
+
color: string;
|
|
1806
|
+
position: "top" | "bottom";
|
|
1807
|
+
translations: {
|
|
1808
|
+
locale: string;
|
|
1809
|
+
name: string;
|
|
1810
|
+
}[];
|
|
1811
|
+
}[];
|
|
1801
1812
|
SOCIAL: {
|
|
1802
1813
|
facebook: string | null;
|
|
1803
1814
|
instagram: string | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@connectedxm/client",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.2",
|
|
4
4
|
"description": "Client API javascript SDK",
|
|
5
5
|
"author": "ConnectedXM Inc.",
|
|
6
6
|
"repository": {
|
|
@@ -18,7 +18,8 @@
|
|
|
18
18
|
"test": "vitest run",
|
|
19
19
|
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
20
20
|
"release": "npm run lint && npm run test && npm run build",
|
|
21
|
-
"local": "npm run release && npm pack"
|
|
21
|
+
"local": "npm run release && npm pack",
|
|
22
|
+
"upgrade": "ncu -i --format group"
|
|
22
23
|
},
|
|
23
24
|
"dependencies": {
|
|
24
25
|
"axios": "^1.8.4",
|
|
@@ -31,19 +32,19 @@
|
|
|
31
32
|
"react-use-websocket": "^4.0.0"
|
|
32
33
|
},
|
|
33
34
|
"devDependencies": {
|
|
34
|
-
"@swc/core": "^1.11.
|
|
35
|
-
"@tanstack/react-query": "^5.
|
|
35
|
+
"@swc/core": "^1.11.20",
|
|
36
|
+
"@tanstack/react-query": "^5.72.2",
|
|
36
37
|
"@types/react": "^18.2.47",
|
|
37
38
|
"@typescript-eslint/eslint-plugin": "^6.4.0",
|
|
38
39
|
"@typescript-eslint/parser": "^6.18.1",
|
|
39
40
|
"eslint": "^8.0.1",
|
|
40
|
-
"eslint-plugin-react": "^7.37.
|
|
41
|
+
"eslint-plugin-react": "^7.37.5",
|
|
41
42
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
42
43
|
"tsup": "^8.4.0",
|
|
43
|
-
"typescript": "^5.8.
|
|
44
|
+
"typescript": "^5.8.3",
|
|
44
45
|
"vitest": "^3.1.1"
|
|
45
46
|
},
|
|
46
47
|
"optionalDependencies": {
|
|
47
|
-
"@rollup/rollup-linux-x64-gnu": "4.
|
|
48
|
+
"@rollup/rollup-linux-x64-gnu": "4.39.0"
|
|
48
49
|
}
|
|
49
50
|
}
|
|
Binary file
|