cloudcommerce 0.0.22 → 0.0.25

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.
Files changed (47) hide show
  1. package/.eslintrc.cjs +1 -0
  2. package/CHANGELOG.md +22 -0
  3. package/CONTRIBUTING.md +4 -2
  4. package/action.yml +11 -5
  5. package/package.json +10 -6
  6. package/packages/api/lib/types/applications.d.ts +100 -91
  7. package/packages/api/lib/types/authentications.d.ts +10 -0
  8. package/packages/api/lib/types/brands.d.ts +9 -0
  9. package/packages/api/lib/types/carts.d.ts +16 -0
  10. package/packages/api/lib/types/categories.d.ts +9 -0
  11. package/packages/api/lib/types/collections.d.ts +8 -0
  12. package/packages/api/lib/types/customers.d.ts +28 -0
  13. package/packages/api/lib/types/grids.d.ts +8 -0
  14. package/packages/api/lib/types/orders.d.ts +287 -222
  15. package/packages/api/lib/types/products.d.ts +69 -0
  16. package/packages/api/lib/types/stores.d.ts +3 -0
  17. package/packages/api/package.json +1 -1
  18. package/packages/api/src/types/applications.d.ts +100 -91
  19. package/packages/api/src/types/authentications.d.ts +10 -0
  20. package/packages/api/src/types/brands.d.ts +9 -0
  21. package/packages/api/src/types/carts.d.ts +16 -0
  22. package/packages/api/src/types/categories.d.ts +9 -0
  23. package/packages/api/src/types/collections.d.ts +8 -0
  24. package/packages/api/src/types/customers.d.ts +28 -0
  25. package/packages/api/src/types/grids.d.ts +8 -0
  26. package/packages/api/src/types/orders.d.ts +287 -222
  27. package/packages/api/src/types/products.d.ts +69 -0
  28. package/packages/api/src/types/stores.d.ts +3 -0
  29. package/packages/apps/discounts/package.json +1 -1
  30. package/packages/cli/lib/index.js +27 -1
  31. package/packages/cli/package.json +1 -1
  32. package/packages/cli/src/index.ts +35 -1
  33. package/packages/firebase/config.js +5 -0
  34. package/packages/firebase/lib/config.js +26 -0
  35. package/packages/firebase/lib/config.js.map +1 -0
  36. package/packages/firebase/lib/defaults.js +8 -0
  37. package/packages/firebase/lib/defaults.js.map +1 -0
  38. package/packages/firebase/lib/index.js +21 -0
  39. package/packages/firebase/lib/index.js.map +1 -0
  40. package/packages/firebase/package.json +6 -4
  41. package/packages/firebase/src/config.ts +29 -0
  42. package/packages/firebase/src/defaults.ts +7 -0
  43. package/packages/firebase/src/index.ts +20 -0
  44. package/packages/firebase/tsconfig.json +3 -0
  45. package/packages/storefront/package.json +2 -2
  46. package/pnpm-lock.yaml +278 -56
  47. package/packages/firebase/src/index.js +0 -0
package/pnpm-lock.yaml CHANGED
@@ -8,9 +8,9 @@ importers:
8
8
  '@commitlint/config-conventional': ^17.0.3
9
9
  '@commitlint/rules': ^17.0.0
10
10
  '@types/node': ^18.0.3
11
- '@typescript-eslint/eslint-plugin': ^5.30.5
12
- '@typescript-eslint/parser': ^5.30.5
13
- esbuild: ^0.14.48
11
+ '@typescript-eslint/eslint-plugin': ^5.30.6
12
+ '@typescript-eslint/parser': ^5.30.6
13
+ esbuild: ^0.14.49
14
14
  eslint: ^8.19.0
15
15
  eslint-config-airbnb-base: ^15.0.0
16
16
  eslint-plugin-import: ^2.26.0
@@ -21,19 +21,19 @@ importers:
21
21
  turbo: ^1.3.1
22
22
  typescript: ^4.7.4
23
23
  vite: ^2.9.14
24
- vitest: ^0.17.1
24
+ vitest: ^0.18.0
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
30
  '@types/node': 18.0.3
31
- '@typescript-eslint/eslint-plugin': 5.30.5_6zdoc3rn4mpiddqwhppni2mnnm
32
- '@typescript-eslint/parser': 5.30.5_4x5o4skxv6sl53vpwefgt23khm
33
- esbuild: 0.14.48
31
+ '@typescript-eslint/eslint-plugin': 5.30.6_2vt5mtrqleafs33qg2bhpmbaqm
32
+ '@typescript-eslint/parser': 5.30.6_4x5o4skxv6sl53vpwefgt23khm
33
+ esbuild: 0.14.49
34
34
  eslint: 8.19.0
35
35
  eslint-config-airbnb-base: 15.0.0_q2xwze32dd33a2fc2qubwr4ie4
36
- eslint-plugin-import: 2.26.0_iom7pm3yknyiblqpw2vvqvxs5i
36
+ eslint-plugin-import: 2.26.0_rywvbqnelbznwddhxv2glfjuay
37
37
  eslint-plugin-vue: 9.2.0_eslint@8.19.0
38
38
  husky: 8.0.1
39
39
  node-fetch: 3.2.6
@@ -41,7 +41,7 @@ importers:
41
41
  turbo: 1.3.1
42
42
  typescript: 4.7.4
43
43
  vite: 2.9.14
44
- vitest: 0.17.1
44
+ vitest: 0.18.0
45
45
  zx: 7.0.7
46
46
 
47
47
  packages/__skeleton:
@@ -68,33 +68,37 @@ importers:
68
68
  packages/firebase:
69
69
  specifiers:
70
70
  '@cloudcommerce/api': workspace:*
71
+ '@fastify/deepmerge': ^1.1.0
71
72
  '@firebase/app-types': ^0.7.0
72
73
  firebase-admin: ^11.0.0
73
74
  firebase-functions: ^3.22.0
75
+ source-map-support: ^0.5.21
74
76
  dependencies:
75
77
  '@cloudcommerce/api': link:../api
78
+ '@fastify/deepmerge': 1.1.0
76
79
  firebase-admin: 11.0.0_@firebase+app-types@0.7.0
77
80
  firebase-functions: 3.22.0_firebase-admin@11.0.0
81
+ source-map-support: 0.5.21
78
82
  devDependencies:
79
83
  '@firebase/app-types': 0.7.0
80
84
 
81
85
  packages/storefront:
82
86
  specifiers:
83
87
  '@cloudcommerce/api': workspace:*
84
- astro: 1.0.0-beta.63
88
+ astro: 1.0.0-beta.64
85
89
  dependencies:
86
90
  '@cloudcommerce/api': link:../api
87
- astro: 1.0.0-beta.63
91
+ astro: 1.0.0-beta.64
88
92
 
89
93
  store:
90
94
  specifiers:
91
- '@cloudcommerce/cli': ^0.0.21
95
+ '@cloudcommerce/cli': ^0.0.24
92
96
  dependencies:
93
97
  '@cloudcommerce/cli': link:../packages/cli
94
98
 
95
99
  store/functions:
96
100
  specifiers:
97
- '@cloudcommerce/firebase': ^0.0.21
101
+ '@cloudcommerce/firebase': ^0.0.24
98
102
  dependencies:
99
103
  '@cloudcommerce/firebase': link:../../packages/firebase
100
104
 
@@ -640,6 +644,10 @@ packages:
640
644
  text-decoding: 1.0.0
641
645
  dev: false
642
646
 
647
+ /@fastify/deepmerge/1.1.0:
648
+ resolution: {integrity: sha512-E8Hfdvs1bG6u0N4vN5Nty6JONUfTdOciyD5rn8KnEsLKIenvOVcr210BQR9t34PRkNyjqnMLGk3e0BsaxRdL+g==}
649
+ dev: false
650
+
643
651
  /@firebase/app-types/0.7.0:
644
652
  resolution: {integrity: sha512-6fbHQwDv2jp/v6bXhBw2eSRbNBpxHcd1NBF864UksSMVIqIyri9qpJB1Mn6sGZE+bnDsSQBC5j2TbMxYsJQkQg==}
645
653
 
@@ -1157,8 +1165,8 @@ packages:
1157
1165
  /@types/which/2.0.1:
1158
1166
  resolution: {integrity: sha512-Jjakcv8Roqtio6w1gr0D7y6twbhx6gGgFGF5BLwajPpnOIOxFkakFhCq+LmyyeAz7BX6ULrjBOxdKaCDy+4+dQ==}
1159
1167
 
1160
- /@typescript-eslint/eslint-plugin/5.30.5_6zdoc3rn4mpiddqwhppni2mnnm:
1161
- resolution: {integrity: sha512-lftkqRoBvc28VFXEoRgyZuztyVUQ04JvUnATSPtIRFAccbXTWL6DEtXGYMcbg998kXw1NLUJm7rTQ9eUt+q6Ig==}
1168
+ /@typescript-eslint/eslint-plugin/5.30.6_2vt5mtrqleafs33qg2bhpmbaqm:
1169
+ resolution: {integrity: sha512-J4zYMIhgrx4MgnZrSDD7sEnQp7FmhKNOaqaOpaoQ/SfdMfRB/0yvK74hTnvH+VQxndZynqs5/Hn4t+2/j9bADg==}
1162
1170
  engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1163
1171
  peerDependencies:
1164
1172
  '@typescript-eslint/parser': ^5.0.0
@@ -1168,10 +1176,10 @@ packages:
1168
1176
  typescript:
1169
1177
  optional: true
1170
1178
  dependencies:
1171
- '@typescript-eslint/parser': 5.30.5_4x5o4skxv6sl53vpwefgt23khm
1172
- '@typescript-eslint/scope-manager': 5.30.5
1173
- '@typescript-eslint/type-utils': 5.30.5_4x5o4skxv6sl53vpwefgt23khm
1174
- '@typescript-eslint/utils': 5.30.5_4x5o4skxv6sl53vpwefgt23khm
1179
+ '@typescript-eslint/parser': 5.30.6_4x5o4skxv6sl53vpwefgt23khm
1180
+ '@typescript-eslint/scope-manager': 5.30.6
1181
+ '@typescript-eslint/type-utils': 5.30.6_4x5o4skxv6sl53vpwefgt23khm
1182
+ '@typescript-eslint/utils': 5.30.6_4x5o4skxv6sl53vpwefgt23khm
1175
1183
  debug: 4.3.4
1176
1184
  eslint: 8.19.0
1177
1185
  functional-red-black-tree: 1.0.1
@@ -1184,8 +1192,8 @@ packages:
1184
1192
  - supports-color
1185
1193
  dev: true
1186
1194
 
1187
- /@typescript-eslint/parser/5.30.5_4x5o4skxv6sl53vpwefgt23khm:
1188
- resolution: {integrity: sha512-zj251pcPXI8GO9NDKWWmygP6+UjwWmrdf9qMW/L/uQJBM/0XbU2inxe5io/234y/RCvwpKEYjZ6c1YrXERkK4Q==}
1195
+ /@typescript-eslint/parser/5.30.6_4x5o4skxv6sl53vpwefgt23khm:
1196
+ resolution: {integrity: sha512-gfF9lZjT0p2ZSdxO70Xbw8w9sPPJGfAdjK7WikEjB3fcUI/yr9maUVEdqigBjKincUYNKOmf7QBMiTf719kbrA==}
1189
1197
  engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1190
1198
  peerDependencies:
1191
1199
  eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -1194,9 +1202,9 @@ packages:
1194
1202
  typescript:
1195
1203
  optional: true
1196
1204
  dependencies:
1197
- '@typescript-eslint/scope-manager': 5.30.5
1198
- '@typescript-eslint/types': 5.30.5
1199
- '@typescript-eslint/typescript-estree': 5.30.5_typescript@4.7.4
1205
+ '@typescript-eslint/scope-manager': 5.30.6
1206
+ '@typescript-eslint/types': 5.30.6
1207
+ '@typescript-eslint/typescript-estree': 5.30.6_typescript@4.7.4
1200
1208
  debug: 4.3.4
1201
1209
  eslint: 8.19.0
1202
1210
  typescript: 4.7.4
@@ -1204,16 +1212,16 @@ packages:
1204
1212
  - supports-color
1205
1213
  dev: true
1206
1214
 
1207
- /@typescript-eslint/scope-manager/5.30.5:
1208
- resolution: {integrity: sha512-NJ6F+YHHFT/30isRe2UTmIGGAiXKckCyMnIV58cE3JkHmaD6e5zyEYm5hBDv0Wbin+IC0T1FWJpD3YqHUG/Ydg==}
1215
+ /@typescript-eslint/scope-manager/5.30.6:
1216
+ resolution: {integrity: sha512-Hkq5PhLgtVoW1obkqYH0i4iELctEKixkhWLPTYs55doGUKCASvkjOXOd/pisVeLdO24ZX9D6yymJ/twqpJiG3g==}
1209
1217
  engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1210
1218
  dependencies:
1211
- '@typescript-eslint/types': 5.30.5
1212
- '@typescript-eslint/visitor-keys': 5.30.5
1219
+ '@typescript-eslint/types': 5.30.6
1220
+ '@typescript-eslint/visitor-keys': 5.30.6
1213
1221
  dev: true
1214
1222
 
1215
- /@typescript-eslint/type-utils/5.30.5_4x5o4skxv6sl53vpwefgt23khm:
1216
- resolution: {integrity: sha512-k9+ejlv1GgwN1nN7XjVtyCgE0BTzhzT1YsQF0rv4Vfj2U9xnslBgMYYvcEYAFVdvhuEscELJsB7lDkN7WusErw==}
1223
+ /@typescript-eslint/type-utils/5.30.6_4x5o4skxv6sl53vpwefgt23khm:
1224
+ resolution: {integrity: sha512-GFVVzs2j0QPpM+NTDMXtNmJKlF842lkZKDSanIxf+ArJsGeZUIaeT4jGg+gAgHt7AcQSFwW7htzF/rbAh2jaVA==}
1217
1225
  engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1218
1226
  peerDependencies:
1219
1227
  eslint: '*'
@@ -1222,7 +1230,7 @@ packages:
1222
1230
  typescript:
1223
1231
  optional: true
1224
1232
  dependencies:
1225
- '@typescript-eslint/utils': 5.30.5_4x5o4skxv6sl53vpwefgt23khm
1233
+ '@typescript-eslint/utils': 5.30.6_4x5o4skxv6sl53vpwefgt23khm
1226
1234
  debug: 4.3.4
1227
1235
  eslint: 8.19.0
1228
1236
  tsutils: 3.21.0_typescript@4.7.4
@@ -1231,13 +1239,13 @@ packages:
1231
1239
  - supports-color
1232
1240
  dev: true
1233
1241
 
1234
- /@typescript-eslint/types/5.30.5:
1235
- resolution: {integrity: sha512-kZ80w/M2AvsbRvOr3PjaNh6qEW1LFqs2pLdo2s5R38B2HYXG8Z0PP48/4+j1QHJFL3ssHIbJ4odPRS8PlHrFfw==}
1242
+ /@typescript-eslint/types/5.30.6:
1243
+ resolution: {integrity: sha512-HdnP8HioL1F7CwVmT4RaaMX57RrfqsOMclZc08wGMiDYJBsLGBM7JwXM4cZJmbWLzIR/pXg1kkrBBVpxTOwfUg==}
1236
1244
  engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1237
1245
  dev: true
1238
1246
 
1239
- /@typescript-eslint/typescript-estree/5.30.5_typescript@4.7.4:
1240
- resolution: {integrity: sha512-qGTc7QZC801kbYjAr4AgdOfnokpwStqyhSbiQvqGBLixniAKyH+ib2qXIVo4P9NgGzwyfD9I0nlJN7D91E1VpQ==}
1247
+ /@typescript-eslint/typescript-estree/5.30.6_typescript@4.7.4:
1248
+ resolution: {integrity: sha512-Z7TgPoeYUm06smfEfYF0RBkpF8csMyVnqQbLYiGgmUSTaSXTP57bt8f0UFXstbGxKIreTwQCujtaH0LY9w9B+A==}
1241
1249
  engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1242
1250
  peerDependencies:
1243
1251
  typescript: '*'
@@ -1245,8 +1253,8 @@ packages:
1245
1253
  typescript:
1246
1254
  optional: true
1247
1255
  dependencies:
1248
- '@typescript-eslint/types': 5.30.5
1249
- '@typescript-eslint/visitor-keys': 5.30.5
1256
+ '@typescript-eslint/types': 5.30.6
1257
+ '@typescript-eslint/visitor-keys': 5.30.6
1250
1258
  debug: 4.3.4
1251
1259
  globby: 11.1.0
1252
1260
  is-glob: 4.0.3
@@ -1257,16 +1265,16 @@ packages:
1257
1265
  - supports-color
1258
1266
  dev: true
1259
1267
 
1260
- /@typescript-eslint/utils/5.30.5_4x5o4skxv6sl53vpwefgt23khm:
1261
- resolution: {integrity: sha512-o4SSUH9IkuA7AYIfAvatldovurqTAHrfzPApOZvdUq01hHojZojCFXx06D/aFpKCgWbMPRdJBWAC3sWp3itwTA==}
1268
+ /@typescript-eslint/utils/5.30.6_4x5o4skxv6sl53vpwefgt23khm:
1269
+ resolution: {integrity: sha512-xFBLc/esUbLOJLk9jKv0E9gD/OH966M40aY9jJ8GiqpSkP2xOV908cokJqqhVd85WoIvHVHYXxSFE4cCSDzVvA==}
1262
1270
  engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1263
1271
  peerDependencies:
1264
1272
  eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
1265
1273
  dependencies:
1266
1274
  '@types/json-schema': 7.0.11
1267
- '@typescript-eslint/scope-manager': 5.30.5
1268
- '@typescript-eslint/types': 5.30.5
1269
- '@typescript-eslint/typescript-estree': 5.30.5_typescript@4.7.4
1275
+ '@typescript-eslint/scope-manager': 5.30.6
1276
+ '@typescript-eslint/types': 5.30.6
1277
+ '@typescript-eslint/typescript-estree': 5.30.6_typescript@4.7.4
1270
1278
  eslint: 8.19.0
1271
1279
  eslint-scope: 5.1.1
1272
1280
  eslint-utils: 3.0.0_eslint@8.19.0
@@ -1275,11 +1283,11 @@ packages:
1275
1283
  - typescript
1276
1284
  dev: true
1277
1285
 
1278
- /@typescript-eslint/visitor-keys/5.30.5:
1279
- resolution: {integrity: sha512-D+xtGo9HUMELzWIUqcQc0p2PO4NyvTrgIOK/VnSH083+8sq0tiLozNRKuLarwHYGRuA6TVBQSuuLwJUDWd3aaA==}
1286
+ /@typescript-eslint/visitor-keys/5.30.6:
1287
+ resolution: {integrity: sha512-41OiCjdL2mCaSDi2SvYbzFLlqqlm5v1ZW9Ym55wXKL/Rx6OOB1IbuFGo71Fj6Xy90gJDFTlgOS+vbmtGHPTQQA==}
1280
1288
  engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1281
1289
  dependencies:
1282
- '@typescript-eslint/types': 5.30.5
1290
+ '@typescript-eslint/types': 5.30.6
1283
1291
  eslint-visitor-keys: 3.3.0
1284
1292
  dev: true
1285
1293
 
@@ -1482,8 +1490,8 @@ packages:
1482
1490
  tslib: 2.4.0
1483
1491
  dev: false
1484
1492
 
1485
- /astro/1.0.0-beta.63:
1486
- resolution: {integrity: sha512-X8cvewsQcW4TZAMilXpvd66ggathuE89B64tlWq5zVBIixyIyNf1WR/LMiKbS358/w+LPnxFMv0hoR9Y8GkPYg==}
1493
+ /astro/1.0.0-beta.64:
1494
+ resolution: {integrity: sha512-c6Lv6KIE1LZgZ1uu4lYt/uFrTl+o1iq4udyBuadxVFMg3Kf7Wl0rGNLI31hqUoPIli9s0lJibCNuzHT+ab2vRw==}
1487
1495
  engines: {node: ^14.15.0 || >=16.0.0, npm: '>=6.14.0'}
1488
1496
  hasBin: true
1489
1497
  dependencies:
@@ -1655,7 +1663,6 @@ packages:
1655
1663
 
1656
1664
  /buffer-from/1.1.2:
1657
1665
  resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
1658
- dev: true
1659
1666
 
1660
1667
  /buffer/6.0.3:
1661
1668
  resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
@@ -2419,6 +2426,15 @@ packages:
2419
2426
  requiresBuild: true
2420
2427
  optional: true
2421
2428
 
2429
+ /esbuild-android-64/0.14.49:
2430
+ resolution: {integrity: sha512-vYsdOTD+yi+kquhBiFWl3tyxnj2qZJsl4tAqwhT90ktUdnyTizgle7TjNx6Ar1bN7wcwWqZ9QInfdk2WVagSww==}
2431
+ engines: {node: '>=12'}
2432
+ cpu: [x64]
2433
+ os: [android]
2434
+ requiresBuild: true
2435
+ dev: true
2436
+ optional: true
2437
+
2422
2438
  /esbuild-android-arm64/0.14.48:
2423
2439
  resolution: {integrity: sha512-vptI3K0wGALiDq+EvRuZotZrJqkYkN5282iAfcffjI5lmGG9G1ta/CIVauhY42MBXwEgDJkweiDcDMRLzBZC4g==}
2424
2440
  engines: {node: '>=12'}
@@ -2427,6 +2443,15 @@ packages:
2427
2443
  requiresBuild: true
2428
2444
  optional: true
2429
2445
 
2446
+ /esbuild-android-arm64/0.14.49:
2447
+ resolution: {integrity: sha512-g2HGr/hjOXCgSsvQZ1nK4nW/ei8JUx04Li74qub9qWrStlysaVmadRyTVuW32FGIpLQyc5sUjjZopj49eGGM2g==}
2448
+ engines: {node: '>=12'}
2449
+ cpu: [arm64]
2450
+ os: [android]
2451
+ requiresBuild: true
2452
+ dev: true
2453
+ optional: true
2454
+
2430
2455
  /esbuild-darwin-64/0.14.48:
2431
2456
  resolution: {integrity: sha512-gGQZa4+hab2Va/Zww94YbshLuWteyKGD3+EsVon8EWTWhnHFRm5N9NbALNbwi/7hQ/hM1Zm4FuHg+k6BLsl5UA==}
2432
2457
  engines: {node: '>=12'}
@@ -2435,6 +2460,15 @@ packages:
2435
2460
  requiresBuild: true
2436
2461
  optional: true
2437
2462
 
2463
+ /esbuild-darwin-64/0.14.49:
2464
+ resolution: {integrity: sha512-3rvqnBCtX9ywso5fCHixt2GBCUsogNp9DjGmvbBohh31Ces34BVzFltMSxJpacNki96+WIcX5s/vum+ckXiLYg==}
2465
+ engines: {node: '>=12'}
2466
+ cpu: [x64]
2467
+ os: [darwin]
2468
+ requiresBuild: true
2469
+ dev: true
2470
+ optional: true
2471
+
2438
2472
  /esbuild-darwin-arm64/0.14.48:
2439
2473
  resolution: {integrity: sha512-bFjnNEXjhZT+IZ8RvRGNJthLWNHV5JkCtuOFOnjvo5pC0sk2/QVk0Qc06g2PV3J0TcU6kaPC3RN9yy9w2PSLEA==}
2440
2474
  engines: {node: '>=12'}
@@ -2443,6 +2477,15 @@ packages:
2443
2477
  requiresBuild: true
2444
2478
  optional: true
2445
2479
 
2480
+ /esbuild-darwin-arm64/0.14.49:
2481
+ resolution: {integrity: sha512-XMaqDxO846srnGlUSJnwbijV29MTKUATmOLyQSfswbK/2X5Uv28M9tTLUJcKKxzoo9lnkYPsx2o8EJcTYwCs/A==}
2482
+ engines: {node: '>=12'}
2483
+ cpu: [arm64]
2484
+ os: [darwin]
2485
+ requiresBuild: true
2486
+ dev: true
2487
+ optional: true
2488
+
2446
2489
  /esbuild-freebsd-64/0.14.48:
2447
2490
  resolution: {integrity: sha512-1NOlwRxmOsnPcWOGTB10JKAkYSb2nue0oM1AfHWunW/mv3wERfJmnYlGzL3UAOIUXZqW8GeA2mv+QGwq7DToqA==}
2448
2491
  engines: {node: '>=12'}
@@ -2451,6 +2494,15 @@ packages:
2451
2494
  requiresBuild: true
2452
2495
  optional: true
2453
2496
 
2497
+ /esbuild-freebsd-64/0.14.49:
2498
+ resolution: {integrity: sha512-NJ5Q6AjV879mOHFri+5lZLTp5XsO2hQ+KSJYLbfY9DgCu8s6/Zl2prWXVANYTeCDLlrIlNNYw8y34xqyLDKOmQ==}
2499
+ engines: {node: '>=12'}
2500
+ cpu: [x64]
2501
+ os: [freebsd]
2502
+ requiresBuild: true
2503
+ dev: true
2504
+ optional: true
2505
+
2454
2506
  /esbuild-freebsd-arm64/0.14.48:
2455
2507
  resolution: {integrity: sha512-gXqKdO8wabVcYtluAbikDH2jhXp+Klq5oCD5qbVyUG6tFiGhrC9oczKq3vIrrtwcxDQqK6+HDYK8Zrd4bCA9Gw==}
2456
2508
  engines: {node: '>=12'}
@@ -2459,6 +2511,15 @@ packages:
2459
2511
  requiresBuild: true
2460
2512
  optional: true
2461
2513
 
2514
+ /esbuild-freebsd-arm64/0.14.49:
2515
+ resolution: {integrity: sha512-lFLtgXnAc3eXYqj5koPlBZvEbBSOSUbWO3gyY/0+4lBdRqELyz4bAuamHvmvHW5swJYL7kngzIZw6kdu25KGOA==}
2516
+ engines: {node: '>=12'}
2517
+ cpu: [arm64]
2518
+ os: [freebsd]
2519
+ requiresBuild: true
2520
+ dev: true
2521
+ optional: true
2522
+
2462
2523
  /esbuild-linux-32/0.14.48:
2463
2524
  resolution: {integrity: sha512-ghGyDfS289z/LReZQUuuKq9KlTiTspxL8SITBFQFAFRA/IkIvDpnZnCAKTCjGXAmUqroMQfKJXMxyjJA69c/nQ==}
2464
2525
  engines: {node: '>=12'}
@@ -2467,6 +2528,15 @@ packages:
2467
2528
  requiresBuild: true
2468
2529
  optional: true
2469
2530
 
2531
+ /esbuild-linux-32/0.14.49:
2532
+ resolution: {integrity: sha512-zTTH4gr2Kb8u4QcOpTDVn7Z8q7QEIvFl/+vHrI3cF6XOJS7iEI1FWslTo3uofB2+mn6sIJEQD9PrNZKoAAMDiA==}
2533
+ engines: {node: '>=12'}
2534
+ cpu: [ia32]
2535
+ os: [linux]
2536
+ requiresBuild: true
2537
+ dev: true
2538
+ optional: true
2539
+
2470
2540
  /esbuild-linux-64/0.14.48:
2471
2541
  resolution: {integrity: sha512-vni3p/gppLMVZLghI7oMqbOZdGmLbbKR23XFARKnszCIBpEMEDxOMNIKPmMItQrmH/iJrL1z8Jt2nynY0bE1ug==}
2472
2542
  engines: {node: '>=12'}
@@ -2475,6 +2545,15 @@ packages:
2475
2545
  requiresBuild: true
2476
2546
  optional: true
2477
2547
 
2548
+ /esbuild-linux-64/0.14.49:
2549
+ resolution: {integrity: sha512-hYmzRIDzFfLrB5c1SknkxzM8LdEUOusp6M2TnuQZJLRtxTgyPnZZVtyMeCLki0wKgYPXkFsAVhi8vzo2mBNeTg==}
2550
+ engines: {node: '>=12'}
2551
+ cpu: [x64]
2552
+ os: [linux]
2553
+ requiresBuild: true
2554
+ dev: true
2555
+ optional: true
2556
+
2478
2557
  /esbuild-linux-arm/0.14.48:
2479
2558
  resolution: {integrity: sha512-+VfSV7Akh1XUiDNXgqgY1cUP1i2vjI+BmlyXRfVz5AfV3jbpde8JTs5Q9sYgaoq5cWfuKfoZB/QkGOI+QcL1Tw==}
2480
2559
  engines: {node: '>=12'}
@@ -2483,6 +2562,15 @@ packages:
2483
2562
  requiresBuild: true
2484
2563
  optional: true
2485
2564
 
2565
+ /esbuild-linux-arm/0.14.49:
2566
+ resolution: {integrity: sha512-iE3e+ZVv1Qz1Sy0gifIsarJMQ89Rpm9mtLSRtG3AH0FPgAzQ5Z5oU6vYzhc/3gSPi2UxdCOfRhw2onXuFw/0lg==}
2567
+ engines: {node: '>=12'}
2568
+ cpu: [arm]
2569
+ os: [linux]
2570
+ requiresBuild: true
2571
+ dev: true
2572
+ optional: true
2573
+
2486
2574
  /esbuild-linux-arm64/0.14.48:
2487
2575
  resolution: {integrity: sha512-3CFsOlpoxlKPRevEHq8aAntgYGYkE1N9yRYAcPyng/p4Wyx0tPR5SBYsxLKcgPB9mR8chHEhtWYz6EZ+H199Zw==}
2488
2576
  engines: {node: '>=12'}
@@ -2491,6 +2579,15 @@ packages:
2491
2579
  requiresBuild: true
2492
2580
  optional: true
2493
2581
 
2582
+ /esbuild-linux-arm64/0.14.49:
2583
+ resolution: {integrity: sha512-KLQ+WpeuY+7bxukxLz5VgkAAVQxUv67Ft4DmHIPIW+2w3ObBPQhqNoeQUHxopoW/aiOn3m99NSmSV+bs4BSsdA==}
2584
+ engines: {node: '>=12'}
2585
+ cpu: [arm64]
2586
+ os: [linux]
2587
+ requiresBuild: true
2588
+ dev: true
2589
+ optional: true
2590
+
2494
2591
  /esbuild-linux-mips64le/0.14.48:
2495
2592
  resolution: {integrity: sha512-cs0uOiRlPp6ymknDnjajCgvDMSsLw5mST2UXh+ZIrXTj2Ifyf2aAP3Iw4DiqgnyYLV2O/v/yWBJx+WfmKEpNLA==}
2496
2593
  engines: {node: '>=12'}
@@ -2499,6 +2596,15 @@ packages:
2499
2596
  requiresBuild: true
2500
2597
  optional: true
2501
2598
 
2599
+ /esbuild-linux-mips64le/0.14.49:
2600
+ resolution: {integrity: sha512-n+rGODfm8RSum5pFIqFQVQpYBw+AztL8s6o9kfx7tjfK0yIGF6tm5HlG6aRjodiiKkH2xAiIM+U4xtQVZYU4rA==}
2601
+ engines: {node: '>=12'}
2602
+ cpu: [mips64el]
2603
+ os: [linux]
2604
+ requiresBuild: true
2605
+ dev: true
2606
+ optional: true
2607
+
2502
2608
  /esbuild-linux-ppc64le/0.14.48:
2503
2609
  resolution: {integrity: sha512-+2F0vJMkuI0Wie/wcSPDCqXvSFEELH7Jubxb7mpWrA/4NpT+/byjxDz0gG6R1WJoeDefcrMfpBx4GFNN1JQorQ==}
2504
2610
  engines: {node: '>=12'}
@@ -2507,6 +2613,15 @@ packages:
2507
2613
  requiresBuild: true
2508
2614
  optional: true
2509
2615
 
2616
+ /esbuild-linux-ppc64le/0.14.49:
2617
+ resolution: {integrity: sha512-WP9zR4HX6iCBmMFH+XHHng2LmdoIeUmBpL4aL2TR8ruzXyT4dWrJ5BSbT8iNo6THN8lod6GOmYDLq/dgZLalGw==}
2618
+ engines: {node: '>=12'}
2619
+ cpu: [ppc64]
2620
+ os: [linux]
2621
+ requiresBuild: true
2622
+ dev: true
2623
+ optional: true
2624
+
2510
2625
  /esbuild-linux-riscv64/0.14.48:
2511
2626
  resolution: {integrity: sha512-BmaK/GfEE+5F2/QDrIXteFGKnVHGxlnK9MjdVKMTfvtmudjY3k2t8NtlY4qemKSizc+QwyombGWTBDc76rxePA==}
2512
2627
  engines: {node: '>=12'}
@@ -2515,6 +2630,15 @@ packages:
2515
2630
  requiresBuild: true
2516
2631
  optional: true
2517
2632
 
2633
+ /esbuild-linux-riscv64/0.14.49:
2634
+ resolution: {integrity: sha512-h66ORBz+Dg+1KgLvzTVQEA1LX4XBd1SK0Fgbhhw4akpG/YkN8pS6OzYI/7SGENiN6ao5hETRDSkVcvU9NRtkMQ==}
2635
+ engines: {node: '>=12'}
2636
+ cpu: [riscv64]
2637
+ os: [linux]
2638
+ requiresBuild: true
2639
+ dev: true
2640
+ optional: true
2641
+
2518
2642
  /esbuild-linux-s390x/0.14.48:
2519
2643
  resolution: {integrity: sha512-tndw/0B9jiCL+KWKo0TSMaUm5UWBLsfCKVdbfMlb3d5LeV9WbijZ8Ordia8SAYv38VSJWOEt6eDCdOx8LqkC4g==}
2520
2644
  engines: {node: '>=12'}
@@ -2523,6 +2647,15 @@ packages:
2523
2647
  requiresBuild: true
2524
2648
  optional: true
2525
2649
 
2650
+ /esbuild-linux-s390x/0.14.49:
2651
+ resolution: {integrity: sha512-DhrUoFVWD+XmKO1y7e4kNCqQHPs6twz6VV6Uezl/XHYGzM60rBewBF5jlZjG0nCk5W/Xy6y1xWeopkrhFFM0sQ==}
2652
+ engines: {node: '>=12'}
2653
+ cpu: [s390x]
2654
+ os: [linux]
2655
+ requiresBuild: true
2656
+ dev: true
2657
+ optional: true
2658
+
2526
2659
  /esbuild-netbsd-64/0.14.48:
2527
2660
  resolution: {integrity: sha512-V9hgXfwf/T901Lr1wkOfoevtyNkrxmMcRHyticybBUHookznipMOHoF41Al68QBsqBxnITCEpjjd4yAos7z9Tw==}
2528
2661
  engines: {node: '>=12'}
@@ -2531,6 +2664,15 @@ packages:
2531
2664
  requiresBuild: true
2532
2665
  optional: true
2533
2666
 
2667
+ /esbuild-netbsd-64/0.14.49:
2668
+ resolution: {integrity: sha512-BXaUwFOfCy2T+hABtiPUIpWjAeWK9P8O41gR4Pg73hpzoygVGnj0nI3YK4SJhe52ELgtdgWP/ckIkbn2XaTxjQ==}
2669
+ engines: {node: '>=12'}
2670
+ cpu: [x64]
2671
+ os: [netbsd]
2672
+ requiresBuild: true
2673
+ dev: true
2674
+ optional: true
2675
+
2534
2676
  /esbuild-openbsd-64/0.14.48:
2535
2677
  resolution: {integrity: sha512-+IHf4JcbnnBl4T52egorXMatil/za0awqzg2Vy6FBgPcBpisDWT2sVz/tNdrK9kAqj+GZG/jZdrOkj7wsrNTKA==}
2536
2678
  engines: {node: '>=12'}
@@ -2539,6 +2681,15 @@ packages:
2539
2681
  requiresBuild: true
2540
2682
  optional: true
2541
2683
 
2684
+ /esbuild-openbsd-64/0.14.49:
2685
+ resolution: {integrity: sha512-lP06UQeLDGmVPw9Rg437Btu6J9/BmyhdoefnQ4gDEJTtJvKtQaUcOQrhjTq455ouZN4EHFH1h28WOJVANK41kA==}
2686
+ engines: {node: '>=12'}
2687
+ cpu: [x64]
2688
+ os: [openbsd]
2689
+ requiresBuild: true
2690
+ dev: true
2691
+ optional: true
2692
+
2542
2693
  /esbuild-sunos-64/0.14.48:
2543
2694
  resolution: {integrity: sha512-77m8bsr5wOpOWbGi9KSqDphcq6dFeJyun8TA+12JW/GAjyfTwVtOnN8DOt6DSPUfEV+ltVMNqtXUeTeMAxl5KA==}
2544
2695
  engines: {node: '>=12'}
@@ -2547,6 +2698,15 @@ packages:
2547
2698
  requiresBuild: true
2548
2699
  optional: true
2549
2700
 
2701
+ /esbuild-sunos-64/0.14.49:
2702
+ resolution: {integrity: sha512-4c8Zowp+V3zIWje329BeLbGh6XI9c/rqARNaj5yPHdC61pHI9UNdDxT3rePPJeWcEZVKjkiAS6AP6kiITp7FSw==}
2703
+ engines: {node: '>=12'}
2704
+ cpu: [x64]
2705
+ os: [sunos]
2706
+ requiresBuild: true
2707
+ dev: true
2708
+ optional: true
2709
+
2550
2710
  /esbuild-windows-32/0.14.48:
2551
2711
  resolution: {integrity: sha512-EPgRuTPP8vK9maxpTGDe5lSoIBHGKO/AuxDncg5O3NkrPeLNdvvK8oywB0zGaAZXxYWfNNSHskvvDgmfVTguhg==}
2552
2712
  engines: {node: '>=12'}
@@ -2555,6 +2715,15 @@ packages:
2555
2715
  requiresBuild: true
2556
2716
  optional: true
2557
2717
 
2718
+ /esbuild-windows-32/0.14.49:
2719
+ resolution: {integrity: sha512-q7Rb+J9yHTeKr9QTPDYkqfkEj8/kcKz9lOabDuvEXpXuIcosWCJgo5Z7h/L4r7rbtTH4a8U2FGKb6s1eeOHmJA==}
2720
+ engines: {node: '>=12'}
2721
+ cpu: [ia32]
2722
+ os: [win32]
2723
+ requiresBuild: true
2724
+ dev: true
2725
+ optional: true
2726
+
2558
2727
  /esbuild-windows-64/0.14.48:
2559
2728
  resolution: {integrity: sha512-YmpXjdT1q0b8ictSdGwH3M8VCoqPpK1/UArze3X199w6u8hUx3V8BhAi1WjbsfDYRBanVVtduAhh2sirImtAvA==}
2560
2729
  engines: {node: '>=12'}
@@ -2563,6 +2732,15 @@ packages:
2563
2732
  requiresBuild: true
2564
2733
  optional: true
2565
2734
 
2735
+ /esbuild-windows-64/0.14.49:
2736
+ resolution: {integrity: sha512-+Cme7Ongv0UIUTniPqfTX6mJ8Deo7VXw9xN0yJEN1lQMHDppTNmKwAM3oGbD/Vqff+07K2gN0WfNkMohmG+dVw==}
2737
+ engines: {node: '>=12'}
2738
+ cpu: [x64]
2739
+ os: [win32]
2740
+ requiresBuild: true
2741
+ dev: true
2742
+ optional: true
2743
+
2566
2744
  /esbuild-windows-arm64/0.14.48:
2567
2745
  resolution: {integrity: sha512-HHaOMCsCXp0rz5BT2crTka6MPWVno121NKApsGs/OIW5QC0ggC69YMGs1aJct9/9FSUF4A1xNE/cLvgB5svR4g==}
2568
2746
  engines: {node: '>=12'}
@@ -2571,6 +2749,15 @@ packages:
2571
2749
  requiresBuild: true
2572
2750
  optional: true
2573
2751
 
2752
+ /esbuild-windows-arm64/0.14.49:
2753
+ resolution: {integrity: sha512-v+HYNAXzuANrCbbLFJ5nmO3m5y2PGZWLe3uloAkLt87aXiO2mZr3BTmacZdjwNkNEHuH3bNtN8cak+mzVjVPfA==}
2754
+ engines: {node: '>=12'}
2755
+ cpu: [arm64]
2756
+ os: [win32]
2757
+ requiresBuild: true
2758
+ dev: true
2759
+ optional: true
2760
+
2574
2761
  /esbuild/0.14.48:
2575
2762
  resolution: {integrity: sha512-w6N1Yn5MtqK2U1/WZTX9ZqUVb8IOLZkZ5AdHkT6x3cHDMVsYWC7WPdiLmx19w3i4Rwzy5LqsEMtVihG3e4rFzA==}
2576
2763
  engines: {node: '>=12'}
@@ -2598,6 +2785,34 @@ packages:
2598
2785
  esbuild-windows-64: 0.14.48
2599
2786
  esbuild-windows-arm64: 0.14.48
2600
2787
 
2788
+ /esbuild/0.14.49:
2789
+ resolution: {integrity: sha512-/TlVHhOaq7Yz8N1OJrjqM3Auzo5wjvHFLk+T8pIue+fhnhIMpfAzsG6PLVMbFveVxqD2WOp3QHei+52IMUNmCw==}
2790
+ engines: {node: '>=12'}
2791
+ hasBin: true
2792
+ requiresBuild: true
2793
+ optionalDependencies:
2794
+ esbuild-android-64: 0.14.49
2795
+ esbuild-android-arm64: 0.14.49
2796
+ esbuild-darwin-64: 0.14.49
2797
+ esbuild-darwin-arm64: 0.14.49
2798
+ esbuild-freebsd-64: 0.14.49
2799
+ esbuild-freebsd-arm64: 0.14.49
2800
+ esbuild-linux-32: 0.14.49
2801
+ esbuild-linux-64: 0.14.49
2802
+ esbuild-linux-arm: 0.14.49
2803
+ esbuild-linux-arm64: 0.14.49
2804
+ esbuild-linux-mips64le: 0.14.49
2805
+ esbuild-linux-ppc64le: 0.14.49
2806
+ esbuild-linux-riscv64: 0.14.49
2807
+ esbuild-linux-s390x: 0.14.49
2808
+ esbuild-netbsd-64: 0.14.49
2809
+ esbuild-openbsd-64: 0.14.49
2810
+ esbuild-sunos-64: 0.14.49
2811
+ esbuild-windows-32: 0.14.49
2812
+ esbuild-windows-64: 0.14.49
2813
+ esbuild-windows-arm64: 0.14.49
2814
+ dev: true
2815
+
2601
2816
  /escalade/3.1.1:
2602
2817
  resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
2603
2818
  engines: {node: '>=6'}
@@ -2629,7 +2844,7 @@ packages:
2629
2844
  dependencies:
2630
2845
  confusing-browser-globals: 1.0.11
2631
2846
  eslint: 8.19.0
2632
- eslint-plugin-import: 2.26.0_iom7pm3yknyiblqpw2vvqvxs5i
2847
+ eslint-plugin-import: 2.26.0_rywvbqnelbznwddhxv2glfjuay
2633
2848
  object.assign: 4.1.2
2634
2849
  object.entries: 1.1.5
2635
2850
  semver: 6.3.0
@@ -2644,7 +2859,7 @@ packages:
2644
2859
  - supports-color
2645
2860
  dev: true
2646
2861
 
2647
- /eslint-module-utils/2.7.3_ea34krk32wbcqzxapvwr7rsjs4:
2862
+ /eslint-module-utils/2.7.3_bsugbhruclroeiaqnd7gqoy7ya:
2648
2863
  resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==}
2649
2864
  engines: {node: '>=4'}
2650
2865
  peerDependencies:
@@ -2662,7 +2877,7 @@ packages:
2662
2877
  eslint-import-resolver-webpack:
2663
2878
  optional: true
2664
2879
  dependencies:
2665
- '@typescript-eslint/parser': 5.30.5_4x5o4skxv6sl53vpwefgt23khm
2880
+ '@typescript-eslint/parser': 5.30.6_4x5o4skxv6sl53vpwefgt23khm
2666
2881
  debug: 3.2.7
2667
2882
  eslint-import-resolver-node: 0.3.6
2668
2883
  find-up: 2.1.0
@@ -2670,7 +2885,7 @@ packages:
2670
2885
  - supports-color
2671
2886
  dev: true
2672
2887
 
2673
- /eslint-plugin-import/2.26.0_iom7pm3yknyiblqpw2vvqvxs5i:
2888
+ /eslint-plugin-import/2.26.0_rywvbqnelbznwddhxv2glfjuay:
2674
2889
  resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
2675
2890
  engines: {node: '>=4'}
2676
2891
  peerDependencies:
@@ -2680,14 +2895,14 @@ packages:
2680
2895
  '@typescript-eslint/parser':
2681
2896
  optional: true
2682
2897
  dependencies:
2683
- '@typescript-eslint/parser': 5.30.5_4x5o4skxv6sl53vpwefgt23khm
2898
+ '@typescript-eslint/parser': 5.30.6_4x5o4skxv6sl53vpwefgt23khm
2684
2899
  array-includes: 3.1.5
2685
2900
  array.prototype.flat: 1.3.0
2686
2901
  debug: 2.6.9
2687
2902
  doctrine: 2.1.0
2688
2903
  eslint: 8.19.0
2689
2904
  eslint-import-resolver-node: 0.3.6
2690
- eslint-module-utils: 2.7.3_ea34krk32wbcqzxapvwr7rsjs4
2905
+ eslint-module-utils: 2.7.3_bsugbhruclroeiaqnd7gqoy7ya
2691
2906
  has: 1.0.3
2692
2907
  is-core-module: 2.9.0
2693
2908
  is-glob: 4.0.3
@@ -6017,6 +6232,13 @@ packages:
6017
6232
  resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
6018
6233
  engines: {node: '>=0.10.0'}
6019
6234
 
6235
+ /source-map-support/0.5.21:
6236
+ resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
6237
+ dependencies:
6238
+ buffer-from: 1.1.2
6239
+ source-map: 0.6.1
6240
+ dev: false
6241
+
6020
6242
  /source-map/0.6.1:
6021
6243
  resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
6022
6244
  engines: {node: '>=0.10.0'}
@@ -6879,8 +7101,8 @@ packages:
6879
7101
  optionalDependencies:
6880
7102
  fsevents: 2.3.2
6881
7103
 
6882
- /vitest/0.17.1:
6883
- resolution: {integrity: sha512-d6NsFC6FPmZ5XdiSYfW5rwJ/b8060wqe2steNNlVbhO69HWma6CucIm5g7PXlCSkmKvrdEbUsZHPAarlH83VGw==}
7104
+ /vitest/0.18.0:
7105
+ resolution: {integrity: sha512-ryAtlh5Gvg3+aLNuOQ8YOHxgQCCu46jx40X5MBL0K0/ejB9i5zsr8fV8LTGXbXex80UMHlzceI9F+ouGaiR+mQ==}
6884
7106
  engines: {node: '>=v14.16.0'}
6885
7107
  hasBin: true
6886
7108
  peerDependencies:
File without changes