@licklist/design 0.71.12 → 0.71.13

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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/events/event-statistic-modal/utils/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kEAAkE,CAAA;AAKjG,eAAO,MAAM,gBAAgB;;;;CAI5B,CAAA;AAED,KAAK,eAAe,GAAG;IACrB,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,MAAM,CAAA;IACX,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,QAAQ,EAAE,MAAM,CAAA;IAChB,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE;QACT,aAAa,EAAE,MAAM,CAAA;QACrB,MAAM,EAAE,MAAM,CAAA;KACf,CAAA;CACF,CAAA;AAED,eAAO,MAAM,gCAAgC,SACrC,MAAM,kBACI,cAAc,sBA6G/B,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/events/event-statistic-modal/utils/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,kEAAkE,CAAA;AAKjG,eAAO,MAAM,gBAAgB;;;;CAI5B,CAAA;AAED,KAAK,eAAe,GAAG;IACrB,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,MAAM,CAAA;IACX,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,QAAQ,EAAE,MAAM,CAAA;IAChB,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE;QACT,aAAa,EAAE,MAAM,CAAA;QACrB,MAAM,EAAE,MAAM,CAAA;KACf,CAAA;CACF,CAAA;AAED,eAAO,MAAM,gCAAgC,SACrC,MAAM,kBACI,cAAc,sBAiI/B,CAAA"}
@@ -1,6 +1,6 @@
1
1
  import { DateTime } from 'luxon';
2
2
  import { DATE_FORMAT, DATE_TIME_FULL_FORMAT } from '@licklist/core/dist/Config';
3
- import { values, maxBy } from 'lodash';
3
+ import { maxBy } from 'lodash';
4
4
 
5
5
  function _array_like_to_array(arr, len) {
6
6
  if (len == null || len > arr.length) len = arr.length;
@@ -45,18 +45,20 @@ var convertEventStatisticToTableData = function(date, eventStatistic) {
45
45
  return DateTime.fromFormat(date, DATE_TIME_FULL_FORMAT).toFormat(DATE_FORMAT) === summaryFormattedDate;
46
46
  })) !== null && _Object_keys_filter !== void 0 ? _Object_keys_filter : [];
47
47
  var summaryMap = new Map();
48
- var allProductsSummary = values(eventStatistic === null || eventStatistic === void 0 ? void 0 : eventStatistic.productCategorySummary).flat().flatMap(function(categorySummary) {
49
- return categorySummary.productsSummary;
50
- });
51
- var maxTotalQuantity = maxBy(allProductsSummary, 'id').totalQuantity || 0;
52
48
  summaryDays.map(function(day) {
53
49
  return eventStatistic === null || eventStatistic === void 0 ? void 0 : eventStatistic.productCategorySummary[day];
54
50
  }).flat().sort(function(prev, next) {
55
51
  return prev.categoryName === next.categoryName ? 0 : prev.categoryName > next.categoryName ? 1 : -1;
56
- }).forEach(function(param) {
52
+ }).forEach(function(param, _, // all category at summaryDays
53
+ selfCategory) {
57
54
  var totalPerCategory = param.totalPerCategory, _param_productsSummary = param.productsSummary, productsSummary = _param_productsSummary === void 0 ? [] : _param_productsSummary, categoryName = param.categoryName, eventId = param.eventId;
58
55
  var quantity = 0;
59
56
  totalAmount += totalPerCategory || 0;
57
+ var allProductSummaryAtCategory = selfCategory.filter(function(category) {
58
+ return category.categoryName === categoryName;
59
+ }).flatMap(function(categorySummary) {
60
+ return categorySummary.productsSummary;
61
+ });
60
62
  if (!summaryMap.has("".concat(categoryName))) {
61
63
  summaryMap.set("".concat(categoryName), {
62
64
  name: categoryName,
@@ -67,24 +69,29 @@ var convertEventStatisticToTableData = function(date, eventStatistic) {
67
69
  total: TRANSLATION_KEYS.total
68
70
  });
69
71
  }
70
- productsSummary === null || productsSummary === void 0 ? void 0 : productsSummary.forEach(function(param) {
71
- var productsSold = param.productsSold, name = param.name, totalQuantity = param.totalQuantity, total = param.total;
72
- quantity += productsSold;
72
+ productsSummary === null || productsSummary === void 0 ? void 0 : productsSummary.forEach(function(productSummary, productIndex) {
73
+ var _maxBy;
74
+ quantity += productSummary.productsSold;
73
75
  var _summaryMap_get;
74
- var existingProduct = (_summaryMap_get = summaryMap.get("".concat(categoryName, ".").concat(name))) !== null && _summaryMap_get !== void 0 ? _summaryMap_get : {
76
+ var existingProduct = (_summaryMap_get = summaryMap.get("".concat(categoryName, ".").concat(productSummary.name))) !== null && _summaryMap_get !== void 0 ? _summaryMap_get : {
75
77
  metadata: {
76
78
  _productsSold: 0,
77
79
  _total: 0
78
80
  }
79
81
  };
80
- summaryMap.set("".concat(categoryName, ".").concat(name), {
81
- name: name,
82
- key: "".concat(eventId, ".").concat(categoryName, ".").concat(name),
83
- quantity: totalQuantity ? "".concat(existingProduct.metadata._productsSold + productsSold, " / ").concat(maxTotalQuantity) : String(existingProduct.metadata._productsSold + productsSold),
84
- total: String(existingProduct.metadata._total + total),
82
+ var overrides = allProductSummaryAtCategory.filter(function(summary) {
83
+ return summary.originalProductId === productSummary.id;
84
+ });
85
+ var maxTotalQuantity = (_maxBy = maxBy(overrides, 'id')) === null || _maxBy === void 0 ? void 0 : _maxBy.totalQuantity;
86
+ var totalQuantity = maxTotalQuantity || (productSummary === null || productSummary === void 0 ? void 0 : productSummary.totalQuantity);
87
+ summaryMap.set("".concat(categoryName, ".").concat(productSummary.name), {
88
+ name: productSummary.name,
89
+ key: "".concat(eventId, ".").concat(categoryName).concat(productIndex).concat(productSummary.name),
90
+ quantity: totalQuantity ? "".concat(existingProduct.metadata._productsSold + productSummary.productsSold, " / ").concat(totalQuantity) : String(existingProduct.metadata._productsSold + productSummary.productsSold),
91
+ total: String(existingProduct.metadata._total + productSummary.total),
85
92
  metadata: {
86
- _productsSold: existingProduct.metadata._productsSold + productsSold,
87
- _total: existingProduct.metadata._total + total
93
+ _productsSold: existingProduct.metadata._productsSold + productSummary.productsSold,
94
+ _total: existingProduct.metadata._total + productSummary.total
88
95
  }
89
96
  });
90
97
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@licklist/design",
3
- "version": "0.71.12",
3
+ "version": "0.71.13",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+ssh://git@bitbucket.org/artelogicsoft/licklist_design.git"
@@ -1,7 +1,7 @@
1
1
  import { EventStatistic } from '@licklist/core/dist/DataMapper/Provider/EventStatisticDataMapper'
2
2
  import { DateTime } from 'luxon'
3
3
  import { DATE_FORMAT, DATE_TIME_FULL_FORMAT } from '@licklist/core/dist/Config'
4
- import { values, maxBy } from 'lodash'
4
+ import { maxBy } from 'lodash'
5
5
 
6
6
  export const TRANSLATION_KEYS = {
7
7
  shortQuantity: 'shortQuantity',
@@ -36,6 +36,7 @@ export const convertEventStatisticToTableData = (
36
36
  const summaryFormattedDate = DateTime.fromISO(date)
37
37
  .toUTC()
38
38
  .toFormat(DATE_FORMAT)
39
+
39
40
  const summaryDays =
40
41
  Object.keys(eventStatistic?.productCategorySummary)?.filter(
41
42
  (date) =>
@@ -45,11 +46,6 @@ export const convertEventStatisticToTableData = (
45
46
  ) ?? []
46
47
 
47
48
  const summaryMap = new Map<string, TableDataRecord>()
48
- const allProductsSummary = values(eventStatistic?.productCategorySummary)
49
- .flat()
50
- .flatMap((categorySummary) => categorySummary.productsSummary)
51
-
52
- const maxTotalQuantity = maxBy(allProductsSummary, 'id').totalQuantity || 0
53
49
 
54
50
  summaryDays
55
51
  .map((day) => eventStatistic?.productCategorySummary[day])
@@ -62,9 +58,19 @@ export const convertEventStatisticToTableData = (
62
58
  : -1,
63
59
  )
64
60
  .forEach(
65
- ({ totalPerCategory, productsSummary = [], categoryName, eventId }) => {
61
+ (
62
+ { totalPerCategory, productsSummary = [], categoryName, eventId },
63
+ _,
64
+ // all category at summaryDays
65
+ selfCategory,
66
+ ) => {
66
67
  let quantity = 0
67
68
  totalAmount += totalPerCategory || 0
69
+
70
+ const allProductSummaryAtCategory = selfCategory
71
+ .filter((category) => category.categoryName === categoryName)
72
+ .flatMap((categorySummary) => categorySummary.productsSummary)
73
+
68
74
  if (!summaryMap.has(`${categoryName}`)) {
69
75
  summaryMap.set(`${categoryName}`, {
70
76
  name: categoryName,
@@ -76,43 +82,56 @@ export const convertEventStatisticToTableData = (
76
82
  })
77
83
  }
78
84
 
79
- productsSummary?.forEach(
80
- ({ productsSold, name, totalQuantity, total }) => {
81
- quantity += productsSold
82
-
83
- const existingProduct = summaryMap.get(
84
- `${categoryName}.${name}`,
85
- ) ?? {
86
- metadata: {
87
- _productsSold: 0,
88
- _total: 0,
89
- },
90
- }
91
-
92
- summaryMap.set(`${categoryName}.${name}`, {
93
- name,
94
- key: `${eventId}.${categoryName}.${name}`,
95
- quantity: totalQuantity
96
- ? `${
97
- existingProduct.metadata._productsSold + productsSold
98
- } / ${maxTotalQuantity}`
99
- : String(existingProduct.metadata._productsSold + productsSold),
100
- total: String(existingProduct.metadata._total + total),
101
- metadata: {
102
- _productsSold:
103
- existingProduct.metadata._productsSold + productsSold,
104
- _total: existingProduct.metadata._total + total,
105
- },
106
- })
107
- },
108
- )
85
+ productsSummary?.forEach((productSummary, productIndex) => {
86
+ quantity += productSummary.productsSold
87
+
88
+ const existingProduct = summaryMap.get(
89
+ `${categoryName}.${productSummary.name}`,
90
+ ) ?? {
91
+ metadata: {
92
+ _productsSold: 0,
93
+ _total: 0,
94
+ },
95
+ }
96
+
97
+ const overrides = allProductSummaryAtCategory.filter(
98
+ (summary) => summary.originalProductId === productSummary.id,
99
+ )
100
+
101
+ const maxTotalQuantity = maxBy(overrides, 'id')?.totalQuantity
102
+
103
+ const totalQuantity = maxTotalQuantity || productSummary?.totalQuantity
104
+
105
+ summaryMap.set(`${categoryName}.${productSummary.name}`, {
106
+ name: productSummary.name,
107
+ key: `${eventId}.${categoryName}${productIndex}${productSummary.name}`,
108
+ quantity: totalQuantity
109
+ ? `${
110
+ existingProduct.metadata._productsSold +
111
+ productSummary.productsSold
112
+ } / ${totalQuantity}`
113
+ : String(
114
+ existingProduct.metadata._productsSold +
115
+ productSummary.productsSold,
116
+ ),
117
+ total: String(
118
+ existingProduct.metadata._total + productSummary.total,
119
+ ),
120
+ metadata: {
121
+ _productsSold:
122
+ existingProduct.metadata._productsSold +
123
+ productSummary.productsSold,
124
+ _total: existingProduct.metadata._total + productSummary.total,
125
+ },
126
+ })
127
+ })
128
+
109
129
  const prevTotalPerCategory = summaryMap.get(
110
130
  `${categoryName}.${TRANSLATION_KEYS.totalPerCategory}`,
111
131
  ) ?? {
112
132
  quantity: 0,
113
133
  total: 0,
114
134
  }
115
-
116
135
  summaryMap.set(`${categoryName}.${TRANSLATION_KEYS.totalPerCategory}`, {
117
136
  name: TRANSLATION_KEYS.totalPerCategory,
118
137
  key: `${eventId}.${categoryName}.${TRANSLATION_KEYS.totalPerCategory}`,
@@ -120,6 +139,7 @@ export const convertEventStatisticToTableData = (
120
139
  total: String(Number(prevTotalPerCategory.total) + totalPerCategory),
121
140
  isBold: true,
122
141
  })
142
+
123
143
  totalQuantity += quantity
124
144
  },
125
145
  )
package/yarn.lock CHANGED
@@ -1540,8 +1540,8 @@ __metadata:
1540
1540
  linkType: hard
1541
1541
 
1542
1542
  "@babel/traverse@npm:^7.1.6, @babel/traverse@npm:^7.12.11, @babel/traverse@npm:^7.12.9, @babel/traverse@npm:^7.13.0, @babel/traverse@npm:^7.25.9":
1543
- version: 7.26.3
1544
- resolution: "@babel/traverse@npm:7.26.3"
1543
+ version: 7.26.4
1544
+ resolution: "@babel/traverse@npm:7.26.4"
1545
1545
  dependencies:
1546
1546
  "@babel/code-frame": "npm:^7.26.2"
1547
1547
  "@babel/generator": "npm:^7.26.3"
@@ -1550,7 +1550,7 @@ __metadata:
1550
1550
  "@babel/types": "npm:^7.26.3"
1551
1551
  debug: "npm:^4.3.1"
1552
1552
  globals: "npm:^11.1.0"
1553
- checksum: 10c0/f56765b18425e41970c03ae56a05ddc45807d0861408ecaaa1684368a57fb20b27c79c7d95d7086b9ab7b8c7ddd75527f373b10b0fe08e29218e67f8e677abd3
1553
+ checksum: 10c0/cf25d0eda9505daa0f0832ad786b9e28c9d967e823aaf7fbe425250ab198c656085495aa6bed678b27929e095c84eea9fd778b851a31803da94c9bc4bf4eaef7
1554
1554
  languageName: node
1555
1555
  linkType: hard
1556
1556
 
@@ -5517,12 +5517,12 @@ __metadata:
5517
5517
  linkType: hard
5518
5518
 
5519
5519
  "@types/hoist-non-react-statics@npm:^3.3.1":
5520
- version: 3.3.5
5521
- resolution: "@types/hoist-non-react-statics@npm:3.3.5"
5520
+ version: 3.3.6
5521
+ resolution: "@types/hoist-non-react-statics@npm:3.3.6"
5522
5522
  dependencies:
5523
5523
  "@types/react": "npm:*"
5524
5524
  hoist-non-react-statics: "npm:^3.3.0"
5525
- checksum: 10c0/2a3b64bf3d9817d7830afa60ee314493c475fb09570a64e7737084cd482d2177ebdddf888ce837350bac51741278b077683facc9541f052d4bbe8487b4e3e618
5525
+ checksum: 10c0/149a4c217d81f21f8a1e152160a59d5b99b6a9aa6d354385d5f5bc02760cbf1e170a8442ba92eb653befff44b0c5bc2234bb77ce33e0d11a65f779e8bab5c321
5526
5526
  languageName: node
5527
5527
  linkType: hard
5528
5528
 
@@ -5761,9 +5761,9 @@ __metadata:
5761
5761
  linkType: hard
5762
5762
 
5763
5763
  "@types/prop-types@npm:*, @types/prop-types@npm:^15.7.3":
5764
- version: 15.7.13
5765
- resolution: "@types/prop-types@npm:15.7.13"
5766
- checksum: 10c0/1b20fc67281902c6743379960247bc161f3f0406ffc0df8e7058745a85ea1538612109db0406290512947f9632fe9e10e7337bf0ce6338a91d6c948df16a7c61
5764
+ version: 15.7.14
5765
+ resolution: "@types/prop-types@npm:15.7.14"
5766
+ checksum: 10c0/1ec775160bfab90b67a782d735952158c7e702ca4502968aa82565bd8e452c2de8601c8dfe349733073c31179116cf7340710160d3836aa8a1ef76d1532893b1
5767
5767
  languageName: node
5768
5768
  linkType: hard
5769
5769
 
@@ -5956,13 +5956,22 @@ __metadata:
5956
5956
  languageName: node
5957
5957
  linkType: hard
5958
5958
 
5959
- "@types/react@npm:*, @types/react@npm:16 || 17 || 18, @types/react@npm:>=16.14.8, @types/react@npm:>=16.9.11":
5960
- version: 18.3.13
5961
- resolution: "@types/react@npm:18.3.13"
5959
+ "@types/react@npm:*, @types/react@npm:>=16.14.8, @types/react@npm:>=16.9.11":
5960
+ version: 19.0.0
5961
+ resolution: "@types/react@npm:19.0.0"
5962
+ dependencies:
5963
+ csstype: "npm:^3.0.2"
5964
+ checksum: 10c0/d7753ec27c5fa48f3aab97d7d4e9e33ad62bbff761a421bfc56c7b403fab9e3ed266d47793e44311ca2f0034e8ae428cea4aecbe1c542b418cfe72a520eab931
5965
+ languageName: node
5966
+ linkType: hard
5967
+
5968
+ "@types/react@npm:16 || 17 || 18":
5969
+ version: 18.3.14
5970
+ resolution: "@types/react@npm:18.3.14"
5962
5971
  dependencies:
5963
5972
  "@types/prop-types": "npm:*"
5964
5973
  csstype: "npm:^3.0.2"
5965
- checksum: 10c0/91815e00157deb179fa670aa2dfc491952698b7743ffddca0e3e0f16e7a18454f3f5ef72321a07386c49e721563b9d280dbbdfae039face764e2fdd8ad949d4b
5974
+ checksum: 10c0/d925fbfcf084238b93d1a0b5406d4cf9aeb37c4a1191559aa4ee107c2e55cc15327989140f03eddda4d471f5b935d4673fd74a86f451860edea18eae48ca44f8
5966
5975
  languageName: node
5967
5976
  linkType: hard
5968
5977
 
@@ -7989,16 +7998,25 @@ __metadata:
7989
7998
  languageName: node
7990
7999
  linkType: hard
7991
8000
 
7992
- "call-bind@npm:^1.0.2, call-bind@npm:^1.0.5, call-bind@npm:^1.0.6, call-bind@npm:^1.0.7":
7993
- version: 1.0.7
7994
- resolution: "call-bind@npm:1.0.7"
8001
+ "call-bind-apply-helpers@npm:^1.0.0":
8002
+ version: 1.0.0
8003
+ resolution: "call-bind-apply-helpers@npm:1.0.0"
7995
8004
  dependencies:
7996
- es-define-property: "npm:^1.0.0"
7997
8005
  es-errors: "npm:^1.3.0"
7998
8006
  function-bind: "npm:^1.1.2"
8007
+ checksum: 10c0/fb91dbfcb0b54b025e88dba660e2a9fe6ca69107dab2f6696e1f7cf8b9c35aafc4879ac3a47d0fa9da55eecf767f2191f5651648dce920ac9b49df0ceb65063f
8008
+ languageName: node
8009
+ linkType: hard
8010
+
8011
+ "call-bind@npm:^1.0.2, call-bind@npm:^1.0.5, call-bind@npm:^1.0.6, call-bind@npm:^1.0.7":
8012
+ version: 1.0.8
8013
+ resolution: "call-bind@npm:1.0.8"
8014
+ dependencies:
8015
+ call-bind-apply-helpers: "npm:^1.0.0"
8016
+ es-define-property: "npm:^1.0.0"
7999
8017
  get-intrinsic: "npm:^1.2.4"
8000
- set-function-length: "npm:^1.2.1"
8001
- checksum: 10c0/a3ded2e423b8e2a265983dba81c27e125b48eefb2655e7dfab6be597088da3d47c47976c24bc51b8fd9af1061f8f87b4ab78a314f3c77784b2ae2ba535ad8b8d
8018
+ set-function-length: "npm:^1.2.2"
8019
+ checksum: 10c0/a13819be0681d915144467741b69875ae5f4eba8961eb0bf322aab63ec87f8250eb6d6b0dcbb2e1349876412a56129ca338592b3829ef4343527f5f18a0752d4
8002
8020
  languageName: node
8003
8021
  linkType: hard
8004
8022
 
@@ -8060,9 +8078,9 @@ __metadata:
8060
8078
  linkType: hard
8061
8079
 
8062
8080
  "caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001109, caniuse-lite@npm:^1.0.30001125, caniuse-lite@npm:^1.0.30001646, caniuse-lite@npm:^1.0.30001669":
8063
- version: 1.0.30001686
8064
- resolution: "caniuse-lite@npm:1.0.30001686"
8065
- checksum: 10c0/41748e81c17c1a6a0fd6e515c93c8620004171fe6706027e45f837fde71e97173e85141b0dc11e07d53b4782f3741a6651cb0f7d395cc1c1860892355eabdfa2
8081
+ version: 1.0.30001687
8082
+ resolution: "caniuse-lite@npm:1.0.30001687"
8083
+ checksum: 10c0/9ca0f6d33dccaf4692339d0fda50e03e4dd7eb7f25faabd1cb33e2099d9a76b0bc30c37be3315e91c1d990da1b5cc864eee2077494f4d0ba94d68b48fe2ea7f1
8066
8084
  languageName: node
8067
8085
  linkType: hard
8068
8086
 
@@ -9838,9 +9856,9 @@ __metadata:
9838
9856
  linkType: hard
9839
9857
 
9840
9858
  "electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.41":
9841
- version: 1.5.70
9842
- resolution: "electron-to-chromium@npm:1.5.70"
9843
- checksum: 10c0/135dfe5b764eb54afcd70ec6084430ea562706570a7104eda8b69e694c3ec900f8d0a2f2e90f0fc86f7dbc6435dad427ec1732bb88f4e62cc5c86c55265ebcf4
9859
+ version: 1.5.71
9860
+ resolution: "electron-to-chromium@npm:1.5.71"
9861
+ checksum: 10c0/f6fdeec0e1d68634cf92c267bdce3e50af947ce2c8fb1034df3e738c536b3033e311ad0fb9a6c4c35f678f10a299e4f78fdfcedbaa78d8992fedc443a7363d6d
9844
9862
  languageName: node
9845
9863
  linkType: hard
9846
9864
 
@@ -10790,8 +10808,8 @@ __metadata:
10790
10808
  linkType: hard
10791
10809
 
10792
10810
  "express@npm:^4.17.1":
10793
- version: 4.21.1
10794
- resolution: "express@npm:4.21.1"
10811
+ version: 4.21.2
10812
+ resolution: "express@npm:4.21.2"
10795
10813
  dependencies:
10796
10814
  accepts: "npm:~1.3.8"
10797
10815
  array-flatten: "npm:1.1.1"
@@ -10812,7 +10830,7 @@ __metadata:
10812
10830
  methods: "npm:~1.1.2"
10813
10831
  on-finished: "npm:2.4.1"
10814
10832
  parseurl: "npm:~1.3.3"
10815
- path-to-regexp: "npm:0.1.10"
10833
+ path-to-regexp: "npm:0.1.12"
10816
10834
  proxy-addr: "npm:~2.0.7"
10817
10835
  qs: "npm:6.13.0"
10818
10836
  range-parser: "npm:~1.2.1"
@@ -10824,7 +10842,7 @@ __metadata:
10824
10842
  type-is: "npm:~1.6.18"
10825
10843
  utils-merge: "npm:1.0.1"
10826
10844
  vary: "npm:~1.1.2"
10827
- checksum: 10c0/0c287867e5f6129d3def1edd9b63103a53c40d4dc8628839d4b6827e35eb8f0de5a4656f9d85f4457eba584f9871ebb2ad26c750b36bd75d9bbb8bcebdc4892c
10845
+ checksum: 10c0/38168fd0a32756600b56e6214afecf4fc79ec28eca7f7a91c2ab8d50df4f47562ca3f9dee412da7f5cea6b1a1544b33b40f9f8586dbacfbdada0fe90dbb10a1f
10828
10846
  languageName: node
10829
10847
  linkType: hard
10830
10848
 
@@ -15501,9 +15519,9 @@ __metadata:
15501
15519
  linkType: hard
15502
15520
 
15503
15521
  "p-map@npm:^7.0.2":
15504
- version: 7.0.2
15505
- resolution: "p-map@npm:7.0.2"
15506
- checksum: 10c0/e10548036648d1c043153f9997112fe5a7de54a319210238628f8ea22ee36587fd6ee740811f88b60bbf29d932e23ae35df7fced40df477116c84c18e797047e
15522
+ version: 7.0.3
15523
+ resolution: "p-map@npm:7.0.3"
15524
+ checksum: 10c0/46091610da2b38ce47bcd1d8b4835a6fa4e832848a6682cf1652bc93915770f4617afc844c10a77d1b3e56d2472bb2d5622353fa3ead01a7f42b04fc8e744a5c
15507
15525
  languageName: node
15508
15526
  linkType: hard
15509
15527
 
@@ -15755,10 +15773,10 @@ __metadata:
15755
15773
  languageName: node
15756
15774
  linkType: hard
15757
15775
 
15758
- "path-to-regexp@npm:0.1.10":
15759
- version: 0.1.10
15760
- resolution: "path-to-regexp@npm:0.1.10"
15761
- checksum: 10c0/34196775b9113ca6df88e94c8d83ba82c0e1a2063dd33bfe2803a980da8d49b91db8104f49d5191b44ea780d46b8670ce2b7f4a5e349b0c48c6779b653f1afe4
15776
+ "path-to-regexp@npm:0.1.12":
15777
+ version: 0.1.12
15778
+ resolution: "path-to-regexp@npm:0.1.12"
15779
+ checksum: 10c0/1c6ff10ca169b773f3bba943bbc6a07182e332464704572962d277b900aeee81ac6aa5d060ff9e01149636c30b1f63af6e69dd7786ba6e0ddb39d4dee1f0645b
15762
15780
  languageName: node
15763
15781
  linkType: hard
15764
15782
 
@@ -19244,7 +19262,7 @@ __metadata:
19244
19262
  languageName: node
19245
19263
  linkType: hard
19246
19264
 
19247
- "set-function-length@npm:^1.2.1":
19265
+ "set-function-length@npm:^1.2.2":
19248
19266
  version: 1.2.2
19249
19267
  resolution: "set-function-length@npm:1.2.2"
19250
19268
  dependencies: