cloudcommerce 0.0.26 → 0.0.29
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/CHANGELOG.md +30 -0
- package/CONTRIBUTING.md +1 -0
- package/package.json +4 -4
- package/packages/api/lib/index.d.ts +9988 -29
- package/packages/api/lib/index.js +47 -20
- package/packages/api/lib/index.js.map +1 -1
- package/packages/api/lib/types/applications.d.ts +1 -1
- package/packages/api/lib/types/authentications.d.ts +1 -1
- package/packages/api/lib/types/brands.d.ts +1 -1
- package/packages/api/lib/types/carts.d.ts +3 -3
- package/packages/api/lib/types/categories.d.ts +1 -1
- package/packages/api/lib/types/collections.d.ts +1 -1
- package/packages/api/lib/types/customers.d.ts +2 -2
- package/packages/api/lib/types/grids.d.ts +1 -1
- package/packages/api/lib/types/orders.d.ts +5 -5
- package/packages/api/lib/types/products.d.ts +2 -2
- package/packages/api/lib/types/stores.d.ts +1 -1
- package/packages/api/lib/types.d.ts +25 -8
- package/packages/api/package.json +1 -1
- package/packages/api/src/index.ts +78 -29
- package/packages/api/src/types/applications.d.ts +1 -1
- package/packages/api/src/types/authentications.d.ts +1 -1
- package/packages/api/src/types/brands.d.ts +1 -1
- package/packages/api/src/types/carts.d.ts +3 -3
- package/packages/api/src/types/categories.d.ts +1 -1
- package/packages/api/src/types/collections.d.ts +1 -1
- package/packages/api/src/types/customers.d.ts +2 -2
- package/packages/api/src/types/grids.d.ts +1 -1
- package/packages/api/src/types/orders.d.ts +5 -5
- package/packages/api/src/types/products.d.ts +2 -2
- package/packages/api/src/types/stores.d.ts +1 -1
- package/packages/api/src/types.ts +56 -17
- package/packages/api/tests/index.test.ts +16 -0
- package/packages/apps/discounts/package.json +1 -1
- package/packages/cli/create-auth.js +5 -0
- package/packages/cli/lib/create-auth.js +48 -0
- package/packages/cli/lib/index.js +39 -2
- package/packages/cli/lib/login.js +41 -0
- package/packages/cli/package.json +7 -1
- package/packages/cli/src/create-auth.ts +53 -0
- package/packages/cli/src/index.ts +52 -2
- package/packages/cli/src/login.ts +48 -0
- package/packages/firebase/lib/index.js +7 -2
- package/packages/firebase/lib/index.js.map +1 -1
- package/packages/firebase/package.json +1 -1
- package/packages/firebase/src/index.ts +8 -2
- package/packages/storefront/package.json +1 -1
- package/pnpm-lock.yaml +99 -63
|
@@ -8,14 +8,20 @@ const options = {
|
|
|
8
8
|
region: process.env.DEPLOY_REGION || 'us-east1',
|
|
9
9
|
};
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
const processId = String(Date.now());
|
|
12
|
+
|
|
13
|
+
export const z = onRequest(options, ({ url }, response) => {
|
|
14
|
+
if (url === '/hello') {
|
|
13
15
|
logger.info('Hello logs!', {
|
|
14
16
|
structuredData: true,
|
|
15
17
|
});
|
|
16
18
|
response.send(config.get().hello);
|
|
17
19
|
return;
|
|
18
20
|
}
|
|
21
|
+
if (url === '/pid') {
|
|
22
|
+
response.send(processId);
|
|
23
|
+
return;
|
|
24
|
+
}
|
|
19
25
|
response.send({
|
|
20
26
|
config: config.get(),
|
|
21
27
|
});
|
package/pnpm-lock.yaml
CHANGED
|
@@ -7,11 +7,11 @@ importers:
|
|
|
7
7
|
'@commitlint/cli': ^17.0.3
|
|
8
8
|
'@commitlint/config-conventional': ^17.0.3
|
|
9
9
|
'@commitlint/rules': ^17.0.0
|
|
10
|
-
'@types/node': ^18.0.
|
|
10
|
+
'@types/node': ^18.0.5
|
|
11
11
|
'@typescript-eslint/eslint-plugin': ^5.30.6
|
|
12
12
|
'@typescript-eslint/parser': ^5.30.6
|
|
13
13
|
esbuild: ^0.14.49
|
|
14
|
-
eslint: ^8.
|
|
14
|
+
eslint: ^8.20.0
|
|
15
15
|
eslint-config-airbnb-base: ^15.0.0
|
|
16
16
|
eslint-plugin-import: ^2.26.0
|
|
17
17
|
eslint-plugin-vue: ^9.2.0
|
|
@@ -21,27 +21,27 @@ importers:
|
|
|
21
21
|
turbo: ^1.3.1
|
|
22
22
|
typescript: ^4.7.4
|
|
23
23
|
vite: ^2.9.14
|
|
24
|
-
vitest: ^0.18.
|
|
24
|
+
vitest: ^0.18.1
|
|
25
25
|
zx: ^7.0.7
|
|
26
26
|
devDependencies:
|
|
27
27
|
'@commitlint/cli': 17.0.3
|
|
28
28
|
'@commitlint/config-conventional': 17.0.3
|
|
29
29
|
'@commitlint/rules': 17.0.0
|
|
30
|
-
'@types/node': 18.0.
|
|
31
|
-
'@typescript-eslint/eslint-plugin': 5.30.
|
|
32
|
-
'@typescript-eslint/parser': 5.30.
|
|
30
|
+
'@types/node': 18.0.5
|
|
31
|
+
'@typescript-eslint/eslint-plugin': 5.30.6_b7n364ggt6o4xlkgyoaww3ph3q
|
|
32
|
+
'@typescript-eslint/parser': 5.30.6_he2ccbldppg44uulnyq4rwocfa
|
|
33
33
|
esbuild: 0.14.49
|
|
34
|
-
eslint: 8.
|
|
35
|
-
eslint-config-airbnb-base: 15.0.
|
|
36
|
-
eslint-plugin-import: 2.26.
|
|
37
|
-
eslint-plugin-vue: 9.2.0_eslint@8.
|
|
34
|
+
eslint: 8.20.0
|
|
35
|
+
eslint-config-airbnb-base: 15.0.0_afl3vkhn63baibzal45igheroq
|
|
36
|
+
eslint-plugin-import: 2.26.0_y5cwkwncsnk6w3wfynadgn7abe
|
|
37
|
+
eslint-plugin-vue: 9.2.0_eslint@8.20.0
|
|
38
38
|
husky: 8.0.1
|
|
39
39
|
node-fetch: 3.2.8
|
|
40
40
|
standard-version: 9.5.0
|
|
41
41
|
turbo: 1.3.1
|
|
42
42
|
typescript: 4.7.4
|
|
43
43
|
vite: 2.9.14
|
|
44
|
-
vitest: 0.18.
|
|
44
|
+
vitest: 0.18.1
|
|
45
45
|
zx: 7.0.7
|
|
46
46
|
|
|
47
47
|
packages/__skeleton:
|
|
@@ -61,8 +61,12 @@ importers:
|
|
|
61
61
|
|
|
62
62
|
packages/cli:
|
|
63
63
|
specifiers:
|
|
64
|
+
'@cloudcommerce/api': workspace:^0.0.27
|
|
65
|
+
md5: ^2.3.0
|
|
64
66
|
zx: ^7.0.7
|
|
65
67
|
dependencies:
|
|
68
|
+
'@cloudcommerce/api': link:../api
|
|
69
|
+
md5: 2.3.0
|
|
66
70
|
zx: 7.0.7
|
|
67
71
|
|
|
68
72
|
packages/firebase:
|
|
@@ -92,13 +96,13 @@ importers:
|
|
|
92
96
|
|
|
93
97
|
store:
|
|
94
98
|
specifiers:
|
|
95
|
-
'@cloudcommerce/cli': ^0.0.
|
|
99
|
+
'@cloudcommerce/cli': ^0.0.27
|
|
96
100
|
dependencies:
|
|
97
101
|
'@cloudcommerce/cli': link:../packages/cli
|
|
98
102
|
|
|
99
103
|
store/functions:
|
|
100
104
|
specifiers:
|
|
101
|
-
'@cloudcommerce/firebase': ^0.0.
|
|
105
|
+
'@cloudcommerce/firebase': ^0.0.27
|
|
102
106
|
dependencies:
|
|
103
107
|
'@cloudcommerce/firebase': link:../../packages/firebase
|
|
104
108
|
|
|
@@ -519,10 +523,10 @@ packages:
|
|
|
519
523
|
'@commitlint/execute-rule': 17.0.0
|
|
520
524
|
'@commitlint/resolve-extends': 17.0.3
|
|
521
525
|
'@commitlint/types': 17.0.0
|
|
522
|
-
'@types/node': 18.0.
|
|
526
|
+
'@types/node': 18.0.5
|
|
523
527
|
chalk: 4.1.2
|
|
524
528
|
cosmiconfig: 7.0.1
|
|
525
|
-
cosmiconfig-typescript-loader: 2.0.
|
|
529
|
+
cosmiconfig-typescript-loader: 2.0.2_47blntjhuqtdxyxfczkfdvsynq
|
|
526
530
|
lodash: 4.17.21
|
|
527
531
|
resolve-from: 5.0.0
|
|
528
532
|
typescript: 4.7.4
|
|
@@ -1060,7 +1064,7 @@ packages:
|
|
|
1060
1064
|
/@types/fs-extra/9.0.13:
|
|
1061
1065
|
resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==}
|
|
1062
1066
|
dependencies:
|
|
1063
|
-
'@types/node': 18.0.
|
|
1067
|
+
'@types/node': 18.0.5
|
|
1064
1068
|
|
|
1065
1069
|
/@types/hast/2.3.4:
|
|
1066
1070
|
resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==}
|
|
@@ -1123,6 +1127,10 @@ packages:
|
|
|
1123
1127
|
|
|
1124
1128
|
/@types/node/18.0.3:
|
|
1125
1129
|
resolution: {integrity: sha512-HzNRZtp4eepNitP+BD6k2L6DROIDG4Q0fm4x+dwfsr6LGmROENnok75VGw40628xf+iR24WeMFcHuuBDUAzzsQ==}
|
|
1130
|
+
dev: false
|
|
1131
|
+
|
|
1132
|
+
/@types/node/18.0.5:
|
|
1133
|
+
resolution: {integrity: sha512-En7tneq+j0qAiVwysBD79y86MT3ModuoIJbe7JXp+sb5UAjInSShmK3nXXMioBzfF7rXC12hv12d4IyCVwN4dA==}
|
|
1126
1134
|
|
|
1127
1135
|
/@types/normalize-package-data/2.4.1:
|
|
1128
1136
|
resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==}
|
|
@@ -1165,7 +1173,7 @@ packages:
|
|
|
1165
1173
|
/@types/which/2.0.1:
|
|
1166
1174
|
resolution: {integrity: sha512-Jjakcv8Roqtio6w1gr0D7y6twbhx6gGgFGF5BLwajPpnOIOxFkakFhCq+LmyyeAz7BX6ULrjBOxdKaCDy+4+dQ==}
|
|
1167
1175
|
|
|
1168
|
-
/@typescript-eslint/eslint-plugin/5.30.
|
|
1176
|
+
/@typescript-eslint/eslint-plugin/5.30.6_b7n364ggt6o4xlkgyoaww3ph3q:
|
|
1169
1177
|
resolution: {integrity: sha512-J4zYMIhgrx4MgnZrSDD7sEnQp7FmhKNOaqaOpaoQ/SfdMfRB/0yvK74hTnvH+VQxndZynqs5/Hn4t+2/j9bADg==}
|
|
1170
1178
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
1171
1179
|
peerDependencies:
|
|
@@ -1176,12 +1184,12 @@ packages:
|
|
|
1176
1184
|
typescript:
|
|
1177
1185
|
optional: true
|
|
1178
1186
|
dependencies:
|
|
1179
|
-
'@typescript-eslint/parser': 5.30.
|
|
1187
|
+
'@typescript-eslint/parser': 5.30.6_he2ccbldppg44uulnyq4rwocfa
|
|
1180
1188
|
'@typescript-eslint/scope-manager': 5.30.6
|
|
1181
|
-
'@typescript-eslint/type-utils': 5.30.
|
|
1182
|
-
'@typescript-eslint/utils': 5.30.
|
|
1189
|
+
'@typescript-eslint/type-utils': 5.30.6_he2ccbldppg44uulnyq4rwocfa
|
|
1190
|
+
'@typescript-eslint/utils': 5.30.6_he2ccbldppg44uulnyq4rwocfa
|
|
1183
1191
|
debug: 4.3.4
|
|
1184
|
-
eslint: 8.
|
|
1192
|
+
eslint: 8.20.0
|
|
1185
1193
|
functional-red-black-tree: 1.0.1
|
|
1186
1194
|
ignore: 5.2.0
|
|
1187
1195
|
regexpp: 3.2.0
|
|
@@ -1192,7 +1200,7 @@ packages:
|
|
|
1192
1200
|
- supports-color
|
|
1193
1201
|
dev: true
|
|
1194
1202
|
|
|
1195
|
-
/@typescript-eslint/parser/5.30.
|
|
1203
|
+
/@typescript-eslint/parser/5.30.6_he2ccbldppg44uulnyq4rwocfa:
|
|
1196
1204
|
resolution: {integrity: sha512-gfF9lZjT0p2ZSdxO70Xbw8w9sPPJGfAdjK7WikEjB3fcUI/yr9maUVEdqigBjKincUYNKOmf7QBMiTf719kbrA==}
|
|
1197
1205
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
1198
1206
|
peerDependencies:
|
|
@@ -1206,7 +1214,7 @@ packages:
|
|
|
1206
1214
|
'@typescript-eslint/types': 5.30.6
|
|
1207
1215
|
'@typescript-eslint/typescript-estree': 5.30.6_typescript@4.7.4
|
|
1208
1216
|
debug: 4.3.4
|
|
1209
|
-
eslint: 8.
|
|
1217
|
+
eslint: 8.20.0
|
|
1210
1218
|
typescript: 4.7.4
|
|
1211
1219
|
transitivePeerDependencies:
|
|
1212
1220
|
- supports-color
|
|
@@ -1220,7 +1228,7 @@ packages:
|
|
|
1220
1228
|
'@typescript-eslint/visitor-keys': 5.30.6
|
|
1221
1229
|
dev: true
|
|
1222
1230
|
|
|
1223
|
-
/@typescript-eslint/type-utils/5.30.
|
|
1231
|
+
/@typescript-eslint/type-utils/5.30.6_he2ccbldppg44uulnyq4rwocfa:
|
|
1224
1232
|
resolution: {integrity: sha512-GFVVzs2j0QPpM+NTDMXtNmJKlF842lkZKDSanIxf+ArJsGeZUIaeT4jGg+gAgHt7AcQSFwW7htzF/rbAh2jaVA==}
|
|
1225
1233
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
1226
1234
|
peerDependencies:
|
|
@@ -1230,9 +1238,9 @@ packages:
|
|
|
1230
1238
|
typescript:
|
|
1231
1239
|
optional: true
|
|
1232
1240
|
dependencies:
|
|
1233
|
-
'@typescript-eslint/utils': 5.30.
|
|
1241
|
+
'@typescript-eslint/utils': 5.30.6_he2ccbldppg44uulnyq4rwocfa
|
|
1234
1242
|
debug: 4.3.4
|
|
1235
|
-
eslint: 8.
|
|
1243
|
+
eslint: 8.20.0
|
|
1236
1244
|
tsutils: 3.21.0_typescript@4.7.4
|
|
1237
1245
|
typescript: 4.7.4
|
|
1238
1246
|
transitivePeerDependencies:
|
|
@@ -1265,7 +1273,7 @@ packages:
|
|
|
1265
1273
|
- supports-color
|
|
1266
1274
|
dev: true
|
|
1267
1275
|
|
|
1268
|
-
/@typescript-eslint/utils/5.30.
|
|
1276
|
+
/@typescript-eslint/utils/5.30.6_he2ccbldppg44uulnyq4rwocfa:
|
|
1269
1277
|
resolution: {integrity: sha512-xFBLc/esUbLOJLk9jKv0E9gD/OH966M40aY9jJ8GiqpSkP2xOV908cokJqqhVd85WoIvHVHYXxSFE4cCSDzVvA==}
|
|
1270
1278
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
1271
1279
|
peerDependencies:
|
|
@@ -1275,9 +1283,9 @@ packages:
|
|
|
1275
1283
|
'@typescript-eslint/scope-manager': 5.30.6
|
|
1276
1284
|
'@typescript-eslint/types': 5.30.6
|
|
1277
1285
|
'@typescript-eslint/typescript-estree': 5.30.6_typescript@4.7.4
|
|
1278
|
-
eslint: 8.
|
|
1286
|
+
eslint: 8.20.0
|
|
1279
1287
|
eslint-scope: 5.1.1
|
|
1280
|
-
eslint-utils: 3.0.0_eslint@8.
|
|
1288
|
+
eslint-utils: 3.0.0_eslint@8.20.0
|
|
1281
1289
|
transitivePeerDependencies:
|
|
1282
1290
|
- supports-color
|
|
1283
1291
|
- typescript
|
|
@@ -1762,6 +1770,10 @@ packages:
|
|
|
1762
1770
|
resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==}
|
|
1763
1771
|
dev: false
|
|
1764
1772
|
|
|
1773
|
+
/charenc/0.0.2:
|
|
1774
|
+
resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==}
|
|
1775
|
+
dev: false
|
|
1776
|
+
|
|
1765
1777
|
/check-error/1.0.2:
|
|
1766
1778
|
resolution: {integrity: sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==}
|
|
1767
1779
|
dev: true
|
|
@@ -2070,16 +2082,16 @@ packages:
|
|
|
2070
2082
|
vary: 1.1.2
|
|
2071
2083
|
dev: false
|
|
2072
2084
|
|
|
2073
|
-
/cosmiconfig-typescript-loader/2.0.
|
|
2085
|
+
/cosmiconfig-typescript-loader/2.0.2_47blntjhuqtdxyxfczkfdvsynq:
|
|
2074
2086
|
resolution: {integrity: sha512-KmE+bMjWMXJbkWCeY4FJX/npHuZPNr9XF9q9CIQ/bpFwi1qHfCmSiKarrCcRa0LO4fWjk93pVoeRtJAkTGcYNw==}
|
|
2075
2087
|
engines: {node: '>=12', npm: '>=6'}
|
|
2076
2088
|
peerDependencies:
|
|
2077
2089
|
'@types/node': '*'
|
|
2078
2090
|
typescript: '>=3'
|
|
2079
2091
|
dependencies:
|
|
2080
|
-
'@types/node': 18.0.
|
|
2092
|
+
'@types/node': 18.0.5
|
|
2081
2093
|
cosmiconfig: 7.0.1
|
|
2082
|
-
ts-node: 10.
|
|
2094
|
+
ts-node: 10.9.1_47blntjhuqtdxyxfczkfdvsynq
|
|
2083
2095
|
typescript: 4.7.4
|
|
2084
2096
|
transitivePeerDependencies:
|
|
2085
2097
|
- '@swc/core'
|
|
@@ -2109,6 +2121,10 @@ packages:
|
|
|
2109
2121
|
shebang-command: 2.0.0
|
|
2110
2122
|
which: 2.0.2
|
|
2111
2123
|
|
|
2124
|
+
/crypt/0.0.2:
|
|
2125
|
+
resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==}
|
|
2126
|
+
dev: false
|
|
2127
|
+
|
|
2112
2128
|
/cssesc/3.0.0:
|
|
2113
2129
|
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
|
|
2114
2130
|
engines: {node: '>=4'}
|
|
@@ -2835,7 +2851,7 @@ packages:
|
|
|
2835
2851
|
engines: {node: '>=12'}
|
|
2836
2852
|
dev: false
|
|
2837
2853
|
|
|
2838
|
-
/eslint-config-airbnb-base/15.0.
|
|
2854
|
+
/eslint-config-airbnb-base/15.0.0_afl3vkhn63baibzal45igheroq:
|
|
2839
2855
|
resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==}
|
|
2840
2856
|
engines: {node: ^10.12.0 || >=12.0.0}
|
|
2841
2857
|
peerDependencies:
|
|
@@ -2843,8 +2859,8 @@ packages:
|
|
|
2843
2859
|
eslint-plugin-import: ^2.25.2
|
|
2844
2860
|
dependencies:
|
|
2845
2861
|
confusing-browser-globals: 1.0.11
|
|
2846
|
-
eslint: 8.
|
|
2847
|
-
eslint-plugin-import: 2.26.
|
|
2862
|
+
eslint: 8.20.0
|
|
2863
|
+
eslint-plugin-import: 2.26.0_y5cwkwncsnk6w3wfynadgn7abe
|
|
2848
2864
|
object.assign: 4.1.2
|
|
2849
2865
|
object.entries: 1.1.5
|
|
2850
2866
|
semver: 6.3.0
|
|
@@ -2877,7 +2893,7 @@ packages:
|
|
|
2877
2893
|
eslint-import-resolver-webpack:
|
|
2878
2894
|
optional: true
|
|
2879
2895
|
dependencies:
|
|
2880
|
-
'@typescript-eslint/parser': 5.30.
|
|
2896
|
+
'@typescript-eslint/parser': 5.30.6_he2ccbldppg44uulnyq4rwocfa
|
|
2881
2897
|
debug: 3.2.7
|
|
2882
2898
|
eslint-import-resolver-node: 0.3.6
|
|
2883
2899
|
find-up: 2.1.0
|
|
@@ -2885,7 +2901,7 @@ packages:
|
|
|
2885
2901
|
- supports-color
|
|
2886
2902
|
dev: true
|
|
2887
2903
|
|
|
2888
|
-
/eslint-plugin-import/2.26.
|
|
2904
|
+
/eslint-plugin-import/2.26.0_y5cwkwncsnk6w3wfynadgn7abe:
|
|
2889
2905
|
resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
|
|
2890
2906
|
engines: {node: '>=4'}
|
|
2891
2907
|
peerDependencies:
|
|
@@ -2895,12 +2911,12 @@ packages:
|
|
|
2895
2911
|
'@typescript-eslint/parser':
|
|
2896
2912
|
optional: true
|
|
2897
2913
|
dependencies:
|
|
2898
|
-
'@typescript-eslint/parser': 5.30.
|
|
2914
|
+
'@typescript-eslint/parser': 5.30.6_he2ccbldppg44uulnyq4rwocfa
|
|
2899
2915
|
array-includes: 3.1.5
|
|
2900
2916
|
array.prototype.flat: 1.3.0
|
|
2901
2917
|
debug: 2.6.9
|
|
2902
2918
|
doctrine: 2.1.0
|
|
2903
|
-
eslint: 8.
|
|
2919
|
+
eslint: 8.20.0
|
|
2904
2920
|
eslint-import-resolver-node: 0.3.6
|
|
2905
2921
|
eslint-module-utils: 2.7.3_bsugbhruclroeiaqnd7gqoy7ya
|
|
2906
2922
|
has: 1.0.3
|
|
@@ -2916,19 +2932,19 @@ packages:
|
|
|
2916
2932
|
- supports-color
|
|
2917
2933
|
dev: true
|
|
2918
2934
|
|
|
2919
|
-
/eslint-plugin-vue/9.2.0_eslint@8.
|
|
2935
|
+
/eslint-plugin-vue/9.2.0_eslint@8.20.0:
|
|
2920
2936
|
resolution: {integrity: sha512-W2hc+NUXoce8sZtWgZ45miQTy6jNyuSdub5aZ1IBune4JDeAyzucYX0TzkrQ1jMO52sNUDYlCIHDoaNePe0p5g==}
|
|
2921
2937
|
engines: {node: ^14.17.0 || >=16.0.0}
|
|
2922
2938
|
peerDependencies:
|
|
2923
2939
|
eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
|
|
2924
2940
|
dependencies:
|
|
2925
|
-
eslint: 8.
|
|
2926
|
-
eslint-utils: 3.0.0_eslint@8.
|
|
2941
|
+
eslint: 8.20.0
|
|
2942
|
+
eslint-utils: 3.0.0_eslint@8.20.0
|
|
2927
2943
|
natural-compare: 1.4.0
|
|
2928
2944
|
nth-check: 2.1.1
|
|
2929
2945
|
postcss-selector-parser: 6.0.10
|
|
2930
2946
|
semver: 7.3.7
|
|
2931
|
-
vue-eslint-parser: 9.0.3_eslint@8.
|
|
2947
|
+
vue-eslint-parser: 9.0.3_eslint@8.20.0
|
|
2932
2948
|
xml-name-validator: 4.0.0
|
|
2933
2949
|
transitivePeerDependencies:
|
|
2934
2950
|
- supports-color
|
|
@@ -2950,13 +2966,13 @@ packages:
|
|
|
2950
2966
|
estraverse: 5.3.0
|
|
2951
2967
|
dev: true
|
|
2952
2968
|
|
|
2953
|
-
/eslint-utils/3.0.0_eslint@8.
|
|
2969
|
+
/eslint-utils/3.0.0_eslint@8.20.0:
|
|
2954
2970
|
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
|
|
2955
2971
|
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
|
|
2956
2972
|
peerDependencies:
|
|
2957
2973
|
eslint: '>=5'
|
|
2958
2974
|
dependencies:
|
|
2959
|
-
eslint: 8.
|
|
2975
|
+
eslint: 8.20.0
|
|
2960
2976
|
eslint-visitor-keys: 2.1.0
|
|
2961
2977
|
dev: true
|
|
2962
2978
|
|
|
@@ -2970,8 +2986,8 @@ packages:
|
|
|
2970
2986
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
2971
2987
|
dev: true
|
|
2972
2988
|
|
|
2973
|
-
/eslint/8.
|
|
2974
|
-
resolution: {integrity: sha512-
|
|
2989
|
+
/eslint/8.20.0:
|
|
2990
|
+
resolution: {integrity: sha512-d4ixhz5SKCa1D6SCPrivP7yYVi7nyD6A4vs6HIAul9ujBzcEmZVM3/0NN/yu5nKhmO1wjp5xQ46iRfmDGlOviA==}
|
|
2975
2991
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
2976
2992
|
hasBin: true
|
|
2977
2993
|
dependencies:
|
|
@@ -2984,7 +3000,7 @@ packages:
|
|
|
2984
3000
|
doctrine: 3.0.0
|
|
2985
3001
|
escape-string-regexp: 4.0.0
|
|
2986
3002
|
eslint-scope: 7.1.1
|
|
2987
|
-
eslint-utils: 3.0.0_eslint@8.
|
|
3003
|
+
eslint-utils: 3.0.0_eslint@8.20.0
|
|
2988
3004
|
eslint-visitor-keys: 3.3.0
|
|
2989
3005
|
espree: 9.3.2
|
|
2990
3006
|
esquery: 1.4.0
|
|
@@ -4060,6 +4076,10 @@ packages:
|
|
|
4060
4076
|
call-bind: 1.0.2
|
|
4061
4077
|
has-tostringtag: 1.0.0
|
|
4062
4078
|
|
|
4079
|
+
/is-buffer/1.1.6:
|
|
4080
|
+
resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
|
|
4081
|
+
dev: false
|
|
4082
|
+
|
|
4063
4083
|
/is-buffer/2.0.5:
|
|
4064
4084
|
resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
|
|
4065
4085
|
engines: {node: '>=4'}
|
|
@@ -4623,6 +4643,14 @@ packages:
|
|
|
4623
4643
|
resolution: {integrity: sha512-y8j3a5/DkJCmS5x4dMCQL+OR0+2EAq3DOtio1COSHsmW2BGXnNCK3v12hJt1LrUz5iZH5g0LmuYOjDdI+czghA==}
|
|
4624
4644
|
dev: false
|
|
4625
4645
|
|
|
4646
|
+
/md5/2.3.0:
|
|
4647
|
+
resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==}
|
|
4648
|
+
dependencies:
|
|
4649
|
+
charenc: 0.0.2
|
|
4650
|
+
crypt: 0.0.2
|
|
4651
|
+
is-buffer: 1.1.6
|
|
4652
|
+
dev: false
|
|
4653
|
+
|
|
4626
4654
|
/mdast-util-definitions/5.1.1:
|
|
4627
4655
|
resolution: {integrity: sha512-rQ+Gv7mHttxHOBx2dkF4HWTg+EE+UR78ptQWDylzPKaQuVGdG4HIoY3SrS/pCp80nZ04greFvXbVFHT+uf0JVQ==}
|
|
4628
4656
|
dependencies:
|
|
@@ -6104,6 +6132,14 @@ packages:
|
|
|
6104
6132
|
hasBin: true
|
|
6105
6133
|
optionalDependencies:
|
|
6106
6134
|
fsevents: 2.3.2
|
|
6135
|
+
dev: false
|
|
6136
|
+
|
|
6137
|
+
/rollup/2.77.0:
|
|
6138
|
+
resolution: {integrity: sha512-vL8xjY4yOQEw79DvyXLijhnhh+R/O9zpF/LEgkCebZFtb6ELeN9H3/2T0r8+mp+fFTBHZ5qGpOpW2ela2zRt3g==}
|
|
6139
|
+
engines: {node: '>=10.0.0'}
|
|
6140
|
+
hasBin: true
|
|
6141
|
+
optionalDependencies:
|
|
6142
|
+
fsevents: 2.3.2
|
|
6107
6143
|
|
|
6108
6144
|
/run-parallel/1.2.0:
|
|
6109
6145
|
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
|
|
@@ -6557,13 +6593,13 @@ packages:
|
|
|
6557
6593
|
readable-stream: 3.6.0
|
|
6558
6594
|
dev: true
|
|
6559
6595
|
|
|
6560
|
-
/tinypool/0.2.
|
|
6561
|
-
resolution: {integrity: sha512-
|
|
6596
|
+
/tinypool/0.2.4:
|
|
6597
|
+
resolution: {integrity: sha512-Vs3rhkUH6Qq1t5bqtb816oT+HeJTXfwt2cbPH17sWHIYKTotQIFPk3tf2fgqRrVyMDVOc1EnPgzIxfIulXVzwQ==}
|
|
6562
6598
|
engines: {node: '>=14.0.0'}
|
|
6563
6599
|
dev: true
|
|
6564
6600
|
|
|
6565
|
-
/tinyspy/0.
|
|
6566
|
-
resolution: {integrity: sha512-
|
|
6601
|
+
/tinyspy/1.0.0:
|
|
6602
|
+
resolution: {integrity: sha512-FI5B2QdODQYDRjfuLF+OrJ8bjWRMCXokQPcwKm0W3IzcbUmBNv536cQc7eXGoAuXphZwgx1DFbqImwzz08Fnhw==}
|
|
6567
6603
|
engines: {node: '>=14.0.0'}
|
|
6568
6604
|
dev: true
|
|
6569
6605
|
|
|
@@ -6605,8 +6641,8 @@ packages:
|
|
|
6605
6641
|
resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==}
|
|
6606
6642
|
dev: false
|
|
6607
6643
|
|
|
6608
|
-
/ts-node/10.
|
|
6609
|
-
resolution: {integrity: sha512-
|
|
6644
|
+
/ts-node/10.9.1_47blntjhuqtdxyxfczkfdvsynq:
|
|
6645
|
+
resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
|
|
6610
6646
|
hasBin: true
|
|
6611
6647
|
peerDependencies:
|
|
6612
6648
|
'@swc/core': '>=1.2.50'
|
|
@@ -6624,7 +6660,7 @@ packages:
|
|
|
6624
6660
|
'@tsconfig/node12': 1.0.11
|
|
6625
6661
|
'@tsconfig/node14': 1.0.3
|
|
6626
6662
|
'@tsconfig/node16': 1.0.3
|
|
6627
|
-
'@types/node': 18.0.
|
|
6663
|
+
'@types/node': 18.0.5
|
|
6628
6664
|
acorn: 8.7.1
|
|
6629
6665
|
acorn-walk: 8.2.0
|
|
6630
6666
|
arg: 4.1.3
|
|
@@ -7106,12 +7142,12 @@ packages:
|
|
|
7106
7142
|
esbuild: 0.14.49
|
|
7107
7143
|
postcss: 8.4.14
|
|
7108
7144
|
resolve: 1.22.1
|
|
7109
|
-
rollup: 2.
|
|
7145
|
+
rollup: 2.77.0
|
|
7110
7146
|
optionalDependencies:
|
|
7111
7147
|
fsevents: 2.3.2
|
|
7112
7148
|
|
|
7113
|
-
/vitest/0.18.
|
|
7114
|
-
resolution: {integrity: sha512-
|
|
7149
|
+
/vitest/0.18.1:
|
|
7150
|
+
resolution: {integrity: sha512-4F/1K/Vn4AvJwe7i2YblR02PT5vMKcw9KN4unDq2KD0YcSxX0B/6D6Qu9PJaXwVuxXMFTQ5ovd4+CQaW3bwofA==}
|
|
7115
7151
|
engines: {node: '>=v14.16.0'}
|
|
7116
7152
|
hasBin: true
|
|
7117
7153
|
peerDependencies:
|
|
@@ -7134,12 +7170,12 @@ packages:
|
|
|
7134
7170
|
dependencies:
|
|
7135
7171
|
'@types/chai': 4.3.1
|
|
7136
7172
|
'@types/chai-subset': 1.3.3
|
|
7137
|
-
'@types/node': 18.0.
|
|
7173
|
+
'@types/node': 18.0.5
|
|
7138
7174
|
chai: 4.3.6
|
|
7139
7175
|
debug: 4.3.4
|
|
7140
7176
|
local-pkg: 0.4.2
|
|
7141
|
-
tinypool: 0.2.
|
|
7142
|
-
tinyspy: 0.
|
|
7177
|
+
tinypool: 0.2.4
|
|
7178
|
+
tinyspy: 1.0.0
|
|
7143
7179
|
vite: 2.9.14
|
|
7144
7180
|
transitivePeerDependencies:
|
|
7145
7181
|
- less
|
|
@@ -7229,14 +7265,14 @@ packages:
|
|
|
7229
7265
|
resolution: {integrity: sha512-EcswR2S8bpR7fD0YPeS7r2xXExrScVMxg4MedACaWHEtx9ftCF/qHG1xGkolzTPcEmjTavCQgbVzHUIdTMzFGA==}
|
|
7230
7266
|
dev: false
|
|
7231
7267
|
|
|
7232
|
-
/vue-eslint-parser/9.0.3_eslint@8.
|
|
7268
|
+
/vue-eslint-parser/9.0.3_eslint@8.20.0:
|
|
7233
7269
|
resolution: {integrity: sha512-yL+ZDb+9T0ELG4VIFo/2anAOz8SvBdlqEnQnvJ3M7Scq56DvtjY0VY88bByRZB0D4J0u8olBcfrXTVONXsh4og==}
|
|
7234
7270
|
engines: {node: ^14.17.0 || >=16.0.0}
|
|
7235
7271
|
peerDependencies:
|
|
7236
7272
|
eslint: '>=6.0.0'
|
|
7237
7273
|
dependencies:
|
|
7238
7274
|
debug: 4.3.4
|
|
7239
|
-
eslint: 8.
|
|
7275
|
+
eslint: 8.20.0
|
|
7240
7276
|
eslint-scope: 7.1.1
|
|
7241
7277
|
eslint-visitor-keys: 3.3.0
|
|
7242
7278
|
espree: 9.3.2
|