akeyless-client-commons 1.1.21 → 1.1.23
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/components/index.css +3 -0
- package/dist/components/index.css.map +1 -1
- package/dist/components/index.js +315 -6
- package/dist/components/index.mjs +315 -6
- package/dist/helpers/index.d.mts +53 -4
- package/dist/helpers/index.d.ts +53 -4
- package/dist/helpers/index.js +469 -7
- package/dist/helpers/index.mjs +447 -5
- package/dist/hooks/index.d.mts +27 -8
- package/dist/hooks/index.d.ts +27 -8
- package/dist/hooks/index.js +621 -66
- package/dist/hooks/index.mjs +611 -64
- package/dist/types/index.d.mts +2 -0
- package/dist/types/index.d.ts +2 -0
- package/package.json +5 -2
package/dist/types/index.d.mts
CHANGED
|
@@ -97,6 +97,8 @@ interface OnSnapshotConfig extends OnSnapshotParsers {
|
|
|
97
97
|
fieldName: string;
|
|
98
98
|
direction: "asc" | "desc";
|
|
99
99
|
}[];
|
|
100
|
+
parseAs?: "object" | "array";
|
|
101
|
+
subscribeTo?: "cache" | "db";
|
|
100
102
|
}
|
|
101
103
|
interface OnSnapshotConfigDocument extends Omit<OnSnapshotParsers, "onAdd"> {
|
|
102
104
|
collectionName: string;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -97,6 +97,8 @@ interface OnSnapshotConfig extends OnSnapshotParsers {
|
|
|
97
97
|
fieldName: string;
|
|
98
98
|
direction: "asc" | "desc";
|
|
99
99
|
}[];
|
|
100
|
+
parseAs?: "object" | "array";
|
|
101
|
+
subscribeTo?: "cache" | "db";
|
|
100
102
|
}
|
|
101
103
|
interface OnSnapshotConfigDocument extends Omit<OnSnapshotParsers, "onAdd"> {
|
|
102
104
|
collectionName: string;
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "akeyless-client-commons",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.23",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "tsup",
|
|
6
6
|
"deploy": "npm run build && npm version patch --no-git-tag-version && npm publish",
|
|
7
|
+
"deployTest": "npm version prerelease --preid=test --no-git-tag-version && npm run build && npm publish --tag test",
|
|
7
8
|
"uc": "npm i akeyless-types-commons",
|
|
8
9
|
"git": "powershell -ExecutionPolicy Bypass -File ./ps/create_branch.ps1",
|
|
9
10
|
"git2": "powershell -ExecutionPolicy Bypass -File ./ps/move_to_main.ps1"
|
|
@@ -16,7 +17,7 @@
|
|
|
16
17
|
"@radix-ui/react-progress": "^1.1.1",
|
|
17
18
|
"@radix-ui/react-slot": "^1.1.2",
|
|
18
19
|
"@types/lodash": "^4.17.13",
|
|
19
|
-
"akeyless-types-commons": "^1.0.
|
|
20
|
+
"akeyless-types-commons": "^1.0.41",
|
|
20
21
|
"assets": "^3.0.1",
|
|
21
22
|
"axios": "^1.7.9",
|
|
22
23
|
"class-variance-authority": "^0.7.0",
|
|
@@ -35,8 +36,10 @@
|
|
|
35
36
|
"react-dom": "^18.3.1",
|
|
36
37
|
"react-phone-number-input": "^3.4.10",
|
|
37
38
|
"react-spinners": "^0.14.1",
|
|
39
|
+
"socket.io-client": "^4.8.1",
|
|
38
40
|
"tailwind-merge": "^2.5.4",
|
|
39
41
|
"tailwindcss-animate": "^1.0.7",
|
|
42
|
+
"types": "^0.1.1",
|
|
40
43
|
"xregexp": "^5.1.1",
|
|
41
44
|
"zustand": "^5.0.0"
|
|
42
45
|
},
|