@licklist/design 0.71.22 → 0.71.24
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/iframe/order-process/components/BookingSummary/BookingSummary.d.ts +1 -1
- package/dist/iframe/order-process/components/BookingSummary/BookingSummary.d.ts.map +1 -1
- package/dist/iframe/order-process/components/BookingSummary/BookingSummary.js +2 -1
- package/dist/iframe/order-process/components/BookingSummary/types/index.d.ts +1 -0
- package/dist/iframe/order-process/components/BookingSummary/types/index.d.ts.map +1 -1
- package/dist/iframe/payment/payment-page/PaymentPage.d.ts.map +1 -1
- package/dist/iframe/payment/payment-page/PaymentPage.js +4 -1
- package/package.json +3 -3
- package/src/iframe/order-process/components/BookingSummary/BookingSummary.tsx +2 -0
- package/src/iframe/order-process/components/BookingSummary/types/index.ts +1 -0
- package/src/iframe/payment/payment-page/PaymentPage.tsx +8 -10
- package/yarn.lock +260 -259
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { BookingSummaryProps } from './types';
|
|
2
2
|
export declare const BookingSummary: {
|
|
3
|
-
({ date, time, menuSteps, formValues, shouldHidePeopleAmount, eventName, transactionFee, productsWithErrors, isLoading, hasPeopleInput, peopleAmount, footer, headerComponent, isPaymentPage, }: Omit<BookingSummaryProps, "totallWithDiscount">): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
({ date, time, menuSteps, formValues, shouldHidePeopleAmount, eventName, headerTitle, transactionFee, productsWithErrors, isLoading, hasPeopleInput, peopleAmount, footer, headerComponent, isPaymentPage, }: Omit<BookingSummaryProps, "totallWithDiscount">): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
SummaryTotal: ({ formValues, totalWithDiscount, transactionFee, isFreePayment, }: Pick<BookingSummaryProps, "formValues" | "totalWithDiscount" | "transactionFee" | "isFreePayment">) => import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
Accordion: ({ children, title, showTitleOnlyOnMobile, hasPeopleInput, isPaymentPage, headerComponent, }: import("./components/BookingSummaryAccordion").BookingSummaryAccordionProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BookingSummary.d.ts","sourceRoot":"","sources":["../../../../../src/iframe/order-process/components/BookingSummary/BookingSummary.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAA;AAM7C,eAAO,MAAM,cAAc;
|
|
1
|
+
{"version":3,"file":"BookingSummary.d.ts","sourceRoot":"","sources":["../../../../../src/iframe/order-process/components/BookingSummary/BookingSummary.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAA;AAM7C,eAAO,MAAM,cAAc;kNAiBxB,IAAI,CAAC,mBAAmB,EAAE,oBAAoB,CAAC;;;CAiFjD,CAAA"}
|
|
@@ -12,7 +12,7 @@ import { ReactComponent as SvgCalendar } from '../../../../assets/iframe/calenda
|
|
|
12
12
|
import { LoaderIndicator } from '../../../../static/loader/LoaderIndicator.js';
|
|
13
13
|
|
|
14
14
|
var BookingSummary = function(param) {
|
|
15
|
-
var date = param.date, time = param.time, menuSteps = param.menuSteps, _param_formValues = param.formValues, formValues = _param_formValues === void 0 ? {} : _param_formValues, shouldHidePeopleAmount = param.shouldHidePeopleAmount, eventName = param.eventName, _param_transactionFee = param.transactionFee, transactionFee = _param_transactionFee === void 0 ? 0 : _param_transactionFee, _param_productsWithErrors = param.productsWithErrors, productsWithErrors = _param_productsWithErrors === void 0 ? [] : _param_productsWithErrors, isLoading = param.isLoading, hasPeopleInput = param.hasPeopleInput, peopleAmount = param.peopleAmount, footer = param.footer, headerComponent = param.headerComponent, // TODO Remove this, when all iframe pages will be ready
|
|
15
|
+
var date = param.date, time = param.time, menuSteps = param.menuSteps, _param_formValues = param.formValues, formValues = _param_formValues === void 0 ? {} : _param_formValues, shouldHidePeopleAmount = param.shouldHidePeopleAmount, eventName = param.eventName, headerTitle = param.headerTitle, _param_transactionFee = param.transactionFee, transactionFee = _param_transactionFee === void 0 ? 0 : _param_transactionFee, _param_productsWithErrors = param.productsWithErrors, productsWithErrors = _param_productsWithErrors === void 0 ? [] : _param_productsWithErrors, isLoading = param.isLoading, hasPeopleInput = param.hasPeopleInput, peopleAmount = param.peopleAmount, footer = param.footer, headerComponent = param.headerComponent, // TODO Remove this, when all iframe pages will be ready
|
|
16
16
|
isPaymentPage = param.isPaymentPage;
|
|
17
17
|
var _values;
|
|
18
18
|
var t = useTranslation('Design').t;
|
|
@@ -30,6 +30,7 @@ var BookingSummary = function(param) {
|
|
|
30
30
|
children: /*#__PURE__*/ jsxs(BookingSummaryAccordion, {
|
|
31
31
|
isPaymentPage: isPaymentPage,
|
|
32
32
|
hasPeopleInput: hasPeopleInput,
|
|
33
|
+
title: headerTitle,
|
|
33
34
|
headerComponent: headerComponent,
|
|
34
35
|
children: [
|
|
35
36
|
/*#__PURE__*/ jsx("div", {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/iframe/order-process/components/BookingSummary/types/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,8CAA8C,CAAA;AACvF,OAAO,EAAE,UAAU,EAAE,MAAM,wDAAwD,CAAA;AACnF,OAAO,EAAE,QAAQ,EAAE,MAAM,qDAAqD,CAAA;AAC9E,OAAO,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;AAEpC,eAAO,MAAM,YAAY,MAAM,CAAA;AAC/B,eAAO,MAAM,aAAa,oBAAoB,CAAA;AAE9C,MAAM,MAAM,mBAAmB,GAAG;IAChC,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EAAE,QAAQ,EAAE,CAAA;IACtB,UAAU,CAAC,EAAE,UAAU,CAAA;IACvB,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,sBAAsB,CAAC,EAAE,OAAO,CAAA;IAChC,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,kBAAkB,CAAC,EAAE,wBAAwB,EAAE,CAAA;IAC/C,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,YAAY,EAAE,MAAM,CAAA;IACpB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,eAAe,CAAC,EAAE,YAAY,CAAA;IAC9B,MAAM,CAAC,EAAE,YAAY,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/iframe/order-process/components/BookingSummary/types/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,8CAA8C,CAAA;AACvF,OAAO,EAAE,UAAU,EAAE,MAAM,wDAAwD,CAAA;AACnF,OAAO,EAAE,QAAQ,EAAE,MAAM,qDAAqD,CAAA;AAC9E,OAAO,EAAE,YAAY,EAAE,MAAM,OAAO,CAAA;AAEpC,eAAO,MAAM,YAAY,MAAM,CAAA;AAC/B,eAAO,MAAM,aAAa,oBAAoB,CAAA;AAE9C,MAAM,MAAM,mBAAmB,GAAG;IAChC,IAAI,EAAE,MAAM,CAAA;IACZ,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EAAE,QAAQ,EAAE,CAAA;IACtB,UAAU,CAAC,EAAE,UAAU,CAAA;IACvB,iBAAiB,CAAC,EAAE,MAAM,CAAA;IAC1B,sBAAsB,CAAC,EAAE,OAAO,CAAA;IAChC,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,cAAc,CAAC,EAAE,OAAO,CAAA;IACxB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,kBAAkB,CAAC,EAAE,wBAAwB,EAAE,CAAA;IAC/C,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,YAAY,EAAE,MAAM,CAAA;IACpB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,aAAa,CAAC,EAAE,OAAO,CAAA;IACvB,eAAe,CAAC,EAAE,YAAY,CAAA;IAC9B,MAAM,CAAC,EAAE,YAAY,CAAA;IACrB,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PaymentPage.d.ts","sourceRoot":"","sources":["../../../../src/iframe/payment/payment-page/PaymentPage.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,mBAAmB,EAAE,MAAM,gDAAgD,CAAA;AACpF,OAAO,EAAE,mBAAmB,EAAE,MAAM,0DAA0D,CAAA;AAI9F,OAAO,EAEL,oBAAoB,EACrB,MAAM,4BAA4B,CAAA;AAOnC,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;CACb;AAED,UAAU,YAAa,SAAQ,oBAAoB;IACjD,oBAAoB,CAAC,EAAE,MAAM,IAAI,CAAA;IACjC,mBAAmB,CAAC,EAAE,MAAM,IAAI,CAAA;IAChC,IAAI,CAAC,EAAE,mBAAmB,GAAG,IAAI,CAAA;IACjC,SAAS,EAAE,OAAO,CAAA;IAClB,mBAAmB,EAAE,mBAAmB,CAAA;IACxC,eAAe,CAAC,EAAE,eAAe,CAAA;CAClC;AAED,eAAO,MAAM,WAAW,kIAQrB,YAAY,
|
|
1
|
+
{"version":3,"file":"PaymentPage.d.ts","sourceRoot":"","sources":["../../../../src/iframe/payment/payment-page/PaymentPage.tsx"],"names":[],"mappings":"AAKA,OAAO,EAAE,mBAAmB,EAAE,MAAM,gDAAgD,CAAA;AACpF,OAAO,EAAE,mBAAmB,EAAE,MAAM,0DAA0D,CAAA;AAI9F,OAAO,EAEL,oBAAoB,EACrB,MAAM,4BAA4B,CAAA;AAOnC,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,CAAA;IACb,IAAI,EAAE,MAAM,CAAA;CACb;AAED,UAAU,YAAa,SAAQ,oBAAoB;IACjD,oBAAoB,CAAC,EAAE,MAAM,IAAI,CAAA;IACjC,mBAAmB,CAAC,EAAE,MAAM,IAAI,CAAA;IAChC,IAAI,CAAC,EAAE,mBAAmB,GAAG,IAAI,CAAA;IACjC,SAAS,EAAE,OAAO,CAAA;IAClB,mBAAmB,EAAE,mBAAmB,CAAA;IACxC,eAAe,CAAC,EAAE,eAAe,CAAA;CAClC;AAED,eAAO,MAAM,WAAW,kIAQrB,YAAY,4CA+Md,CAAA"}
|
|
@@ -189,6 +189,8 @@ var PaymentPage = function(_param) {
|
|
|
189
189
|
var isCalculatedAmountGreaterThanOrderAmount = !hasRemaingToPay && orderCartAmountByFormValues > (data === null || data === void 0 ? void 0 : data.amount);
|
|
190
190
|
var isPaymentLinkWithRemainingToPay = (data === null || data === void 0 ? void 0 : data.remaining_to_pay) && !!Number(data === null || data === void 0 ? void 0 : data.remaining_to_pay);
|
|
191
191
|
var totalPaidWithRemainingToPay = (data === null || data === void 0 ? void 0 : data.amount_to_pay) && !!Number(data === null || data === void 0 ? void 0 : data.amount_to_pay);
|
|
192
|
+
var _bookingSummaryProps_transactionFee;
|
|
193
|
+
var totalBooked = paymentMetadata ? paymentMetadata.paid ? paymentMetadata.total - paymentMetadata.paid : paymentMetadata.total : orderTotalAmountByFormValues + ((_bookingSummaryProps_transactionFee = bookingSummaryProps === null || bookingSummaryProps === void 0 ? void 0 : bookingSummaryProps.transactionFee) !== null && _bookingSummaryProps_transactionFee !== void 0 ? _bookingSummaryProps_transactionFee : 0);
|
|
192
194
|
return /*#__PURE__*/ jsx(Page, {
|
|
193
195
|
className: "payment_link",
|
|
194
196
|
children: /*#__PURE__*/ jsx(PageBody, {
|
|
@@ -205,8 +207,9 @@ var PaymentPage = function(_param) {
|
|
|
205
207
|
rightBlock: /*#__PURE__*/ jsx(PageBody.RightBlock, {
|
|
206
208
|
children: /*#__PURE__*/ jsx(BookingSummary, _object_spread_props(_object_spread({}, bookingSummaryProps), {
|
|
207
209
|
isPaymentPage: true,
|
|
210
|
+
headerTitle: t('totalBooking'),
|
|
208
211
|
headerComponent: /*#__PURE__*/ jsx(SummaryTotalBlock, {
|
|
209
|
-
amount:
|
|
212
|
+
amount: totalBooked
|
|
210
213
|
}),
|
|
211
214
|
footer: /*#__PURE__*/ jsx("div", {
|
|
212
215
|
className: "d-flex flex-column justify-content-between",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@licklist/design",
|
|
3
|
-
"version": "0.71.
|
|
3
|
+
"version": "0.71.24",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+ssh://git@bitbucket.org/artelogicsoft/licklist_design.git"
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
]
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@licklist/core": "0.32.
|
|
45
|
+
"@licklist/core": "0.32.9",
|
|
46
46
|
"@licklist/eslint-config": "0.5.6",
|
|
47
47
|
"@licklist/plugins": "0.35.7",
|
|
48
48
|
"lodash": "4.17.21",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"@dnd-kit/utilities": "2.0.0",
|
|
62
62
|
"@fortawesome/fontawesome-svg-core": "1.2.34",
|
|
63
63
|
"@fortawesome/free-solid-svg-icons": "5.15.2",
|
|
64
|
-
"@licklist/core": "0.32.
|
|
64
|
+
"@licklist/core": "0.32.9",
|
|
65
65
|
"@licklist/eslint-config": "0.5.6",
|
|
66
66
|
"@licklist/plugins": "0.35.7",
|
|
67
67
|
"@mantine/core": "6.0.22",
|
|
@@ -17,6 +17,7 @@ export const BookingSummary = ({
|
|
|
17
17
|
formValues = {},
|
|
18
18
|
shouldHidePeopleAmount,
|
|
19
19
|
eventName,
|
|
20
|
+
headerTitle,
|
|
20
21
|
transactionFee = 0,
|
|
21
22
|
productsWithErrors = [],
|
|
22
23
|
isLoading,
|
|
@@ -43,6 +44,7 @@ export const BookingSummary = ({
|
|
|
43
44
|
<BookingSummaryAccordion
|
|
44
45
|
isPaymentPage={isPaymentPage}
|
|
45
46
|
hasPeopleInput={hasPeopleInput}
|
|
47
|
+
title={headerTitle}
|
|
46
48
|
headerComponent={headerComponent}
|
|
47
49
|
>
|
|
48
50
|
<div className='event-info'>
|
|
@@ -131,6 +131,12 @@ export const PaymentPage = ({
|
|
|
131
131
|
const totalPaidWithRemainingToPay =
|
|
132
132
|
data?.amount_to_pay && !!Number(data?.amount_to_pay)
|
|
133
133
|
|
|
134
|
+
const totalBooked = paymentMetadata
|
|
135
|
+
? paymentMetadata.paid
|
|
136
|
+
? paymentMetadata.total - paymentMetadata.paid
|
|
137
|
+
: paymentMetadata.total
|
|
138
|
+
: orderTotalAmountByFormValues + (bookingSummaryProps?.transactionFee ?? 0)
|
|
139
|
+
|
|
134
140
|
return (
|
|
135
141
|
<Page className='payment_link'>
|
|
136
142
|
{/* TODO wait for Brad's design for close and go back buttons */}
|
|
@@ -156,16 +162,8 @@ export const PaymentPage = ({
|
|
|
156
162
|
<BookingSummary
|
|
157
163
|
{...bookingSummaryProps}
|
|
158
164
|
isPaymentPage
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
amount={
|
|
162
|
-
paymentMetadata
|
|
163
|
-
? paymentMetadata.total
|
|
164
|
-
: orderTotalAmountByFormValues +
|
|
165
|
-
(bookingSummaryProps?.transactionFee || 0)
|
|
166
|
-
}
|
|
167
|
-
/>
|
|
168
|
-
}
|
|
165
|
+
headerTitle={t('totalBooking')}
|
|
166
|
+
headerComponent={<SummaryTotalBlock amount={totalBooked} />}
|
|
169
167
|
footer={
|
|
170
168
|
<div className='d-flex flex-column justify-content-between'>
|
|
171
169
|
{paymentMetadata ? (
|
package/yarn.lock
CHANGED
|
@@ -40,7 +40,7 @@ __metadata:
|
|
|
40
40
|
languageName: node
|
|
41
41
|
linkType: hard
|
|
42
42
|
|
|
43
|
-
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.
|
|
43
|
+
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.26.2, @babel/code-frame@npm:^7.5.5, @babel/code-frame@npm:^7.8.3":
|
|
44
44
|
version: 7.26.2
|
|
45
45
|
resolution: "@babel/code-frame@npm:7.26.2"
|
|
46
46
|
dependencies:
|
|
@@ -51,10 +51,10 @@ __metadata:
|
|
|
51
51
|
languageName: node
|
|
52
52
|
linkType: hard
|
|
53
53
|
|
|
54
|
-
"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.26.5":
|
|
55
|
-
version: 7.26.
|
|
56
|
-
resolution: "@babel/compat-data@npm:7.26.
|
|
57
|
-
checksum: 10c0/
|
|
54
|
+
"@babel/compat-data@npm:^7.20.5, @babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.26.5, @babel/compat-data@npm:^7.26.8":
|
|
55
|
+
version: 7.26.8
|
|
56
|
+
resolution: "@babel/compat-data@npm:7.26.8"
|
|
57
|
+
checksum: 10c0/66408a0388c3457fff1c2f6c3a061278dd7b3d2f0455ea29bb7b187fa52c60ae8b4054b3c0a184e21e45f0eaac63cf390737bc7504d1f4a088a6e7f652c068ca
|
|
58
58
|
languageName: node
|
|
59
59
|
linkType: hard
|
|
60
60
|
|
|
@@ -83,38 +83,38 @@ __metadata:
|
|
|
83
83
|
linkType: hard
|
|
84
84
|
|
|
85
85
|
"@babel/core@npm:^7.1.0, @babel/core@npm:^7.12.10, @babel/core@npm:^7.12.3, @babel/core@npm:^7.21.3, @babel/core@npm:^7.24.5, @babel/core@npm:^7.7.5":
|
|
86
|
-
version: 7.26.
|
|
87
|
-
resolution: "@babel/core@npm:7.26.
|
|
86
|
+
version: 7.26.9
|
|
87
|
+
resolution: "@babel/core@npm:7.26.9"
|
|
88
88
|
dependencies:
|
|
89
89
|
"@ampproject/remapping": "npm:^2.2.0"
|
|
90
90
|
"@babel/code-frame": "npm:^7.26.2"
|
|
91
|
-
"@babel/generator": "npm:^7.26.
|
|
91
|
+
"@babel/generator": "npm:^7.26.9"
|
|
92
92
|
"@babel/helper-compilation-targets": "npm:^7.26.5"
|
|
93
93
|
"@babel/helper-module-transforms": "npm:^7.26.0"
|
|
94
|
-
"@babel/helpers": "npm:^7.26.
|
|
95
|
-
"@babel/parser": "npm:^7.26.
|
|
96
|
-
"@babel/template": "npm:^7.
|
|
97
|
-
"@babel/traverse": "npm:^7.26.
|
|
98
|
-
"@babel/types": "npm:^7.26.
|
|
94
|
+
"@babel/helpers": "npm:^7.26.9"
|
|
95
|
+
"@babel/parser": "npm:^7.26.9"
|
|
96
|
+
"@babel/template": "npm:^7.26.9"
|
|
97
|
+
"@babel/traverse": "npm:^7.26.9"
|
|
98
|
+
"@babel/types": "npm:^7.26.9"
|
|
99
99
|
convert-source-map: "npm:^2.0.0"
|
|
100
100
|
debug: "npm:^4.1.0"
|
|
101
101
|
gensync: "npm:^1.0.0-beta.2"
|
|
102
102
|
json5: "npm:^2.2.3"
|
|
103
103
|
semver: "npm:^6.3.1"
|
|
104
|
-
checksum: 10c0/
|
|
104
|
+
checksum: 10c0/ed7212ff42a9453765787019b7d191b167afcacd4bd8fec10b055344ef53fa0cc648c9a80159ae4ecf870016a6318731e087042dcb68d1a2a9d34eb290dc014b
|
|
105
105
|
languageName: node
|
|
106
106
|
linkType: hard
|
|
107
107
|
|
|
108
|
-
"@babel/generator@npm:^7.12.11, @babel/generator@npm:^7.12.5, @babel/generator@npm:^7.26.
|
|
109
|
-
version: 7.26.
|
|
110
|
-
resolution: "@babel/generator@npm:7.26.
|
|
108
|
+
"@babel/generator@npm:^7.12.11, @babel/generator@npm:^7.12.5, @babel/generator@npm:^7.26.9":
|
|
109
|
+
version: 7.26.9
|
|
110
|
+
resolution: "@babel/generator@npm:7.26.9"
|
|
111
111
|
dependencies:
|
|
112
|
-
"@babel/parser": "npm:^7.26.
|
|
113
|
-
"@babel/types": "npm:^7.26.
|
|
112
|
+
"@babel/parser": "npm:^7.26.9"
|
|
113
|
+
"@babel/types": "npm:^7.26.9"
|
|
114
114
|
"@jridgewell/gen-mapping": "npm:^0.3.5"
|
|
115
115
|
"@jridgewell/trace-mapping": "npm:^0.3.25"
|
|
116
116
|
jsesc: "npm:^3.0.2"
|
|
117
|
-
checksum: 10c0/
|
|
117
|
+
checksum: 10c0/6b78872128205224a9a9761b9ea7543a9a7902a04b82fc2f6801ead4de8f59056bab3fd17b1f834ca7b049555fc4c79234b9a6230dd9531a06525306050becad
|
|
118
118
|
languageName: node
|
|
119
119
|
linkType: hard
|
|
120
120
|
|
|
@@ -141,19 +141,19 @@ __metadata:
|
|
|
141
141
|
linkType: hard
|
|
142
142
|
|
|
143
143
|
"@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.25.9":
|
|
144
|
-
version: 7.
|
|
145
|
-
resolution: "@babel/helper-create-class-features-plugin@npm:7.
|
|
144
|
+
version: 7.26.9
|
|
145
|
+
resolution: "@babel/helper-create-class-features-plugin@npm:7.26.9"
|
|
146
146
|
dependencies:
|
|
147
147
|
"@babel/helper-annotate-as-pure": "npm:^7.25.9"
|
|
148
148
|
"@babel/helper-member-expression-to-functions": "npm:^7.25.9"
|
|
149
149
|
"@babel/helper-optimise-call-expression": "npm:^7.25.9"
|
|
150
|
-
"@babel/helper-replace-supers": "npm:^7.
|
|
150
|
+
"@babel/helper-replace-supers": "npm:^7.26.5"
|
|
151
151
|
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.9"
|
|
152
|
-
"@babel/traverse": "npm:^7.
|
|
152
|
+
"@babel/traverse": "npm:^7.26.9"
|
|
153
153
|
semver: "npm:^6.3.1"
|
|
154
154
|
peerDependencies:
|
|
155
155
|
"@babel/core": ^7.0.0
|
|
156
|
-
checksum: 10c0/
|
|
156
|
+
checksum: 10c0/808620b350ac012f22163fd44c38ed8e05b24ce5d37bc4aa99a44e9724205f11efcef6b25ccfa5bb5de82ac32b899f1e939123c688f335d2851f4b8d70742233
|
|
157
157
|
languageName: node
|
|
158
158
|
linkType: hard
|
|
159
159
|
|
|
@@ -188,7 +188,7 @@ __metadata:
|
|
|
188
188
|
languageName: node
|
|
189
189
|
linkType: hard
|
|
190
190
|
|
|
191
|
-
"@babel/helper-define-polyfill-provider@npm:^0.6.
|
|
191
|
+
"@babel/helper-define-polyfill-provider@npm:^0.6.3":
|
|
192
192
|
version: 0.6.3
|
|
193
193
|
resolution: "@babel/helper-define-polyfill-provider@npm:0.6.3"
|
|
194
194
|
dependencies:
|
|
@@ -272,7 +272,7 @@ __metadata:
|
|
|
272
272
|
languageName: node
|
|
273
273
|
linkType: hard
|
|
274
274
|
|
|
275
|
-
"@babel/helper-replace-supers@npm:^7.25.9":
|
|
275
|
+
"@babel/helper-replace-supers@npm:^7.25.9, @babel/helper-replace-supers@npm:^7.26.5":
|
|
276
276
|
version: 7.26.5
|
|
277
277
|
resolution: "@babel/helper-replace-supers@npm:7.26.5"
|
|
278
278
|
dependencies:
|
|
@@ -327,13 +327,13 @@ __metadata:
|
|
|
327
327
|
languageName: node
|
|
328
328
|
linkType: hard
|
|
329
329
|
|
|
330
|
-
"@babel/helpers@npm:^7.12.5, @babel/helpers@npm:^7.26.
|
|
331
|
-
version: 7.26.
|
|
332
|
-
resolution: "@babel/helpers@npm:7.26.
|
|
330
|
+
"@babel/helpers@npm:^7.12.5, @babel/helpers@npm:^7.26.9":
|
|
331
|
+
version: 7.26.9
|
|
332
|
+
resolution: "@babel/helpers@npm:7.26.9"
|
|
333
333
|
dependencies:
|
|
334
|
-
"@babel/template": "npm:^7.
|
|
335
|
-
"@babel/types": "npm:^7.26.
|
|
336
|
-
checksum: 10c0/
|
|
334
|
+
"@babel/template": "npm:^7.26.9"
|
|
335
|
+
"@babel/types": "npm:^7.26.9"
|
|
336
|
+
checksum: 10c0/3d4dbc4a33fe4181ed810cac52318b578294745ceaec07e2f6ecccf6cda55d25e4bfcea8f085f333bf911c9e1fc13320248dd1d5315ab47ad82ce1077410df05
|
|
337
337
|
languageName: node
|
|
338
338
|
linkType: hard
|
|
339
339
|
|
|
@@ -349,14 +349,14 @@ __metadata:
|
|
|
349
349
|
languageName: node
|
|
350
350
|
linkType: hard
|
|
351
351
|
|
|
352
|
-
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.11, @babel/parser@npm:^7.12.7, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.25.3, @babel/parser@npm:^7.
|
|
353
|
-
version: 7.26.
|
|
354
|
-
resolution: "@babel/parser@npm:7.26.
|
|
352
|
+
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.11, @babel/parser@npm:^7.12.7, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.25.3, @babel/parser@npm:^7.26.9":
|
|
353
|
+
version: 7.26.9
|
|
354
|
+
resolution: "@babel/parser@npm:7.26.9"
|
|
355
355
|
dependencies:
|
|
356
|
-
"@babel/types": "npm:^7.26.
|
|
356
|
+
"@babel/types": "npm:^7.26.9"
|
|
357
357
|
bin:
|
|
358
358
|
parser: ./bin/babel-parser.js
|
|
359
|
-
checksum: 10c0/
|
|
359
|
+
checksum: 10c0/4b9ef3c9a0d4c328e5e5544f50fe8932c36f8a2c851e7f14a85401487cd3da75cad72c2e1bcec1eac55599a6bbb2fdc091f274c4fcafa6bdd112d4915ff087fc
|
|
360
360
|
languageName: node
|
|
361
361
|
linkType: hard
|
|
362
362
|
|
|
@@ -673,16 +673,16 @@ __metadata:
|
|
|
673
673
|
languageName: node
|
|
674
674
|
linkType: hard
|
|
675
675
|
|
|
676
|
-
"@babel/plugin-transform-async-generator-functions@npm:^7.
|
|
677
|
-
version: 7.
|
|
678
|
-
resolution: "@babel/plugin-transform-async-generator-functions@npm:7.
|
|
676
|
+
"@babel/plugin-transform-async-generator-functions@npm:^7.26.8":
|
|
677
|
+
version: 7.26.8
|
|
678
|
+
resolution: "@babel/plugin-transform-async-generator-functions@npm:7.26.8"
|
|
679
679
|
dependencies:
|
|
680
|
-
"@babel/helper-plugin-utils": "npm:^7.
|
|
680
|
+
"@babel/helper-plugin-utils": "npm:^7.26.5"
|
|
681
681
|
"@babel/helper-remap-async-to-generator": "npm:^7.25.9"
|
|
682
|
-
"@babel/traverse": "npm:^7.
|
|
682
|
+
"@babel/traverse": "npm:^7.26.8"
|
|
683
683
|
peerDependencies:
|
|
684
684
|
"@babel/core": ^7.0.0-0
|
|
685
|
-
checksum: 10c0/
|
|
685
|
+
checksum: 10c0/f6fefce963fe2e6268dde1958975d7adbce65fba94ca6f4bc554c90da03104ad1dd2e66d03bc0462da46868498428646e30b03a218ef0e5a84bfc87a7e375cec
|
|
686
686
|
languageName: node
|
|
687
687
|
linkType: hard
|
|
688
688
|
|
|
@@ -864,15 +864,15 @@ __metadata:
|
|
|
864
864
|
languageName: node
|
|
865
865
|
linkType: hard
|
|
866
866
|
|
|
867
|
-
"@babel/plugin-transform-for-of@npm:^7.12.1, @babel/plugin-transform-for-of@npm:^7.
|
|
868
|
-
version: 7.
|
|
869
|
-
resolution: "@babel/plugin-transform-for-of@npm:7.
|
|
867
|
+
"@babel/plugin-transform-for-of@npm:^7.12.1, @babel/plugin-transform-for-of@npm:^7.26.9":
|
|
868
|
+
version: 7.26.9
|
|
869
|
+
resolution: "@babel/plugin-transform-for-of@npm:7.26.9"
|
|
870
870
|
dependencies:
|
|
871
|
-
"@babel/helper-plugin-utils": "npm:^7.
|
|
871
|
+
"@babel/helper-plugin-utils": "npm:^7.26.5"
|
|
872
872
|
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.25.9"
|
|
873
873
|
peerDependencies:
|
|
874
874
|
"@babel/core": ^7.0.0-0
|
|
875
|
-
checksum: 10c0/
|
|
875
|
+
checksum: 10c0/e28a521521cf9f84ddd69ca8da7c89fb9f7aa38e4dea35742fe973e4e1d7c23f9cee1a4861a2fdd9e9f18ff945886a44d7335cea1c603b96bfcb1c7c8791ef09
|
|
876
876
|
languageName: node
|
|
877
877
|
linkType: hard
|
|
878
878
|
|
|
@@ -1274,14 +1274,14 @@ __metadata:
|
|
|
1274
1274
|
languageName: node
|
|
1275
1275
|
linkType: hard
|
|
1276
1276
|
|
|
1277
|
-
"@babel/plugin-transform-template-literals@npm:^7.12.1, @babel/plugin-transform-template-literals@npm:^7.
|
|
1278
|
-
version: 7.
|
|
1279
|
-
resolution: "@babel/plugin-transform-template-literals@npm:7.
|
|
1277
|
+
"@babel/plugin-transform-template-literals@npm:^7.12.1, @babel/plugin-transform-template-literals@npm:^7.26.8":
|
|
1278
|
+
version: 7.26.8
|
|
1279
|
+
resolution: "@babel/plugin-transform-template-literals@npm:7.26.8"
|
|
1280
1280
|
dependencies:
|
|
1281
|
-
"@babel/helper-plugin-utils": "npm:^7.
|
|
1281
|
+
"@babel/helper-plugin-utils": "npm:^7.26.5"
|
|
1282
1282
|
peerDependencies:
|
|
1283
1283
|
"@babel/core": ^7.0.0-0
|
|
1284
|
-
checksum: 10c0/
|
|
1284
|
+
checksum: 10c0/205a938ded9554857a604416d369023a961334b6c20943bd861b45f0e5dbbeca1cf6fda1c2049126e38a0d18865993433fdc78eae3028e94836b3b643c08ba0d
|
|
1285
1285
|
languageName: node
|
|
1286
1286
|
linkType: hard
|
|
1287
1287
|
|
|
@@ -1297,8 +1297,8 @@ __metadata:
|
|
|
1297
1297
|
linkType: hard
|
|
1298
1298
|
|
|
1299
1299
|
"@babel/plugin-transform-typescript@npm:^7.25.9":
|
|
1300
|
-
version: 7.26.
|
|
1301
|
-
resolution: "@babel/plugin-transform-typescript@npm:7.26.
|
|
1300
|
+
version: 7.26.8
|
|
1301
|
+
resolution: "@babel/plugin-transform-typescript@npm:7.26.8"
|
|
1302
1302
|
dependencies:
|
|
1303
1303
|
"@babel/helper-annotate-as-pure": "npm:^7.25.9"
|
|
1304
1304
|
"@babel/helper-create-class-features-plugin": "npm:^7.25.9"
|
|
@@ -1307,7 +1307,7 @@ __metadata:
|
|
|
1307
1307
|
"@babel/plugin-syntax-typescript": "npm:^7.25.9"
|
|
1308
1308
|
peerDependencies:
|
|
1309
1309
|
"@babel/core": ^7.0.0-0
|
|
1310
|
-
checksum: 10c0/
|
|
1310
|
+
checksum: 10c0/c1dc02c357b8de0650d4e757fe71db9ac769b68e282a262ca5af2a7f1ff112c4533d54db6f1f58f13072ad547561b0461c46c08233566b37f778ac5f5550fb41
|
|
1311
1311
|
languageName: node
|
|
1312
1312
|
linkType: hard
|
|
1313
1313
|
|
|
@@ -1359,10 +1359,10 @@ __metadata:
|
|
|
1359
1359
|
linkType: hard
|
|
1360
1360
|
|
|
1361
1361
|
"@babel/preset-env@npm:^7.12.11, @babel/preset-env@npm:^7.20.2":
|
|
1362
|
-
version: 7.26.
|
|
1363
|
-
resolution: "@babel/preset-env@npm:7.26.
|
|
1362
|
+
version: 7.26.9
|
|
1363
|
+
resolution: "@babel/preset-env@npm:7.26.9"
|
|
1364
1364
|
dependencies:
|
|
1365
|
-
"@babel/compat-data": "npm:^7.26.
|
|
1365
|
+
"@babel/compat-data": "npm:^7.26.8"
|
|
1366
1366
|
"@babel/helper-compilation-targets": "npm:^7.26.5"
|
|
1367
1367
|
"@babel/helper-plugin-utils": "npm:^7.26.5"
|
|
1368
1368
|
"@babel/helper-validator-option": "npm:^7.25.9"
|
|
@@ -1376,7 +1376,7 @@ __metadata:
|
|
|
1376
1376
|
"@babel/plugin-syntax-import-attributes": "npm:^7.26.0"
|
|
1377
1377
|
"@babel/plugin-syntax-unicode-sets-regex": "npm:^7.18.6"
|
|
1378
1378
|
"@babel/plugin-transform-arrow-functions": "npm:^7.25.9"
|
|
1379
|
-
"@babel/plugin-transform-async-generator-functions": "npm:^7.
|
|
1379
|
+
"@babel/plugin-transform-async-generator-functions": "npm:^7.26.8"
|
|
1380
1380
|
"@babel/plugin-transform-async-to-generator": "npm:^7.25.9"
|
|
1381
1381
|
"@babel/plugin-transform-block-scoped-functions": "npm:^7.26.5"
|
|
1382
1382
|
"@babel/plugin-transform-block-scoping": "npm:^7.25.9"
|
|
@@ -1391,7 +1391,7 @@ __metadata:
|
|
|
1391
1391
|
"@babel/plugin-transform-dynamic-import": "npm:^7.25.9"
|
|
1392
1392
|
"@babel/plugin-transform-exponentiation-operator": "npm:^7.26.3"
|
|
1393
1393
|
"@babel/plugin-transform-export-namespace-from": "npm:^7.25.9"
|
|
1394
|
-
"@babel/plugin-transform-for-of": "npm:^7.
|
|
1394
|
+
"@babel/plugin-transform-for-of": "npm:^7.26.9"
|
|
1395
1395
|
"@babel/plugin-transform-function-name": "npm:^7.25.9"
|
|
1396
1396
|
"@babel/plugin-transform-json-strings": "npm:^7.25.9"
|
|
1397
1397
|
"@babel/plugin-transform-literals": "npm:^7.25.9"
|
|
@@ -1419,7 +1419,7 @@ __metadata:
|
|
|
1419
1419
|
"@babel/plugin-transform-shorthand-properties": "npm:^7.25.9"
|
|
1420
1420
|
"@babel/plugin-transform-spread": "npm:^7.25.9"
|
|
1421
1421
|
"@babel/plugin-transform-sticky-regex": "npm:^7.25.9"
|
|
1422
|
-
"@babel/plugin-transform-template-literals": "npm:^7.
|
|
1422
|
+
"@babel/plugin-transform-template-literals": "npm:^7.26.8"
|
|
1423
1423
|
"@babel/plugin-transform-typeof-symbol": "npm:^7.26.7"
|
|
1424
1424
|
"@babel/plugin-transform-unicode-escapes": "npm:^7.25.9"
|
|
1425
1425
|
"@babel/plugin-transform-unicode-property-regex": "npm:^7.25.9"
|
|
@@ -1427,13 +1427,13 @@ __metadata:
|
|
|
1427
1427
|
"@babel/plugin-transform-unicode-sets-regex": "npm:^7.25.9"
|
|
1428
1428
|
"@babel/preset-modules": "npm:0.1.6-no-external-plugins"
|
|
1429
1429
|
babel-plugin-polyfill-corejs2: "npm:^0.4.10"
|
|
1430
|
-
babel-plugin-polyfill-corejs3: "npm:^0.
|
|
1430
|
+
babel-plugin-polyfill-corejs3: "npm:^0.11.0"
|
|
1431
1431
|
babel-plugin-polyfill-regenerator: "npm:^0.6.1"
|
|
1432
|
-
core-js-compat: "npm:^3.
|
|
1432
|
+
core-js-compat: "npm:^3.40.0"
|
|
1433
1433
|
semver: "npm:^6.3.1"
|
|
1434
1434
|
peerDependencies:
|
|
1435
1435
|
"@babel/core": ^7.0.0-0
|
|
1436
|
-
checksum: 10c0/
|
|
1436
|
+
checksum: 10c0/6812ca76bd38165a58fe8354bab5e7204e1aa17d8b9270bd8f8babb08cc7fa94cd29525fe41b553f2ba0e84033d566f10da26012b8ee0f81897005c5225d0051
|
|
1437
1437
|
languageName: node
|
|
1438
1438
|
linkType: hard
|
|
1439
1439
|
|
|
@@ -1510,57 +1510,57 @@ __metadata:
|
|
|
1510
1510
|
linkType: hard
|
|
1511
1511
|
|
|
1512
1512
|
"@babel/runtime-corejs3@npm:^7.10.2":
|
|
1513
|
-
version: 7.26.
|
|
1514
|
-
resolution: "@babel/runtime-corejs3@npm:7.26.
|
|
1513
|
+
version: 7.26.9
|
|
1514
|
+
resolution: "@babel/runtime-corejs3@npm:7.26.9"
|
|
1515
1515
|
dependencies:
|
|
1516
1516
|
core-js-pure: "npm:^3.30.2"
|
|
1517
1517
|
regenerator-runtime: "npm:^0.14.0"
|
|
1518
|
-
checksum: 10c0/
|
|
1518
|
+
checksum: 10c0/6e453dddbdad51b446548b0b43e4767b57ff223aa14e1de01aba06eacb0d9938de88c5460a97bb14f056829b13335bafd63f56bbeda4cff5cb375c73de964aa3
|
|
1519
1519
|
languageName: node
|
|
1520
1520
|
linkType: hard
|
|
1521
1521
|
|
|
1522
1522
|
"@babel/runtime@npm:^7.0.0, @babel/runtime@npm:^7.1.2, @babel/runtime@npm:^7.10.2, @babel/runtime@npm:^7.12.0, @babel/runtime@npm:^7.12.1, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.13.10, @babel/runtime@npm:^7.13.6, @babel/runtime@npm:^7.13.8, @babel/runtime@npm:^7.14.0, @babel/runtime@npm:^7.14.8, @babel/runtime@npm:^7.16.3, @babel/runtime@npm:^7.17.8, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.20.13, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.23.8, @babel/runtime@npm:^7.3.1, @babel/runtime@npm:^7.4.4, @babel/runtime@npm:^7.5.0, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.6.2, @babel/runtime@npm:^7.6.3, @babel/runtime@npm:^7.7.2, @babel/runtime@npm:^7.7.6, @babel/runtime@npm:^7.8.4, @babel/runtime@npm:^7.8.7":
|
|
1523
|
-
version: 7.26.
|
|
1524
|
-
resolution: "@babel/runtime@npm:7.26.
|
|
1523
|
+
version: 7.26.9
|
|
1524
|
+
resolution: "@babel/runtime@npm:7.26.9"
|
|
1525
1525
|
dependencies:
|
|
1526
1526
|
regenerator-runtime: "npm:^0.14.0"
|
|
1527
|
-
checksum: 10c0/
|
|
1527
|
+
checksum: 10c0/e8517131110a6ec3a7360881438b85060e49824e007f4a64b5dfa9192cf2bb5c01e84bfc109f02d822c7edb0db926928dd6b991e3ee460b483fb0fac43152d9b
|
|
1528
1528
|
languageName: node
|
|
1529
1529
|
linkType: hard
|
|
1530
1530
|
|
|
1531
|
-
"@babel/template@npm:^7.12.7, @babel/template@npm:^7.25.9":
|
|
1532
|
-
version: 7.
|
|
1533
|
-
resolution: "@babel/template@npm:7.
|
|
1531
|
+
"@babel/template@npm:^7.12.7, @babel/template@npm:^7.25.9, @babel/template@npm:^7.26.9":
|
|
1532
|
+
version: 7.26.9
|
|
1533
|
+
resolution: "@babel/template@npm:7.26.9"
|
|
1534
1534
|
dependencies:
|
|
1535
|
-
"@babel/code-frame": "npm:^7.
|
|
1536
|
-
"@babel/parser": "npm:^7.
|
|
1537
|
-
"@babel/types": "npm:^7.
|
|
1538
|
-
checksum: 10c0/
|
|
1535
|
+
"@babel/code-frame": "npm:^7.26.2"
|
|
1536
|
+
"@babel/parser": "npm:^7.26.9"
|
|
1537
|
+
"@babel/types": "npm:^7.26.9"
|
|
1538
|
+
checksum: 10c0/019b1c4129cc01ad63e17529089c2c559c74709d225f595eee017af227fee11ae8a97a6ab19ae6768b8aa22d8d75dcb60a00b28f52e9fa78140672d928bc1ae9
|
|
1539
1539
|
languageName: node
|
|
1540
1540
|
linkType: hard
|
|
1541
1541
|
|
|
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, @babel/traverse@npm:^7.26.5, @babel/traverse@npm:^7.26.7":
|
|
1543
|
-
version: 7.26.
|
|
1544
|
-
resolution: "@babel/traverse@npm:7.26.
|
|
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, @babel/traverse@npm:^7.26.5, @babel/traverse@npm:^7.26.8, @babel/traverse@npm:^7.26.9":
|
|
1543
|
+
version: 7.26.9
|
|
1544
|
+
resolution: "@babel/traverse@npm:7.26.9"
|
|
1545
1545
|
dependencies:
|
|
1546
1546
|
"@babel/code-frame": "npm:^7.26.2"
|
|
1547
|
-
"@babel/generator": "npm:^7.26.
|
|
1548
|
-
"@babel/parser": "npm:^7.26.
|
|
1549
|
-
"@babel/template": "npm:^7.
|
|
1550
|
-
"@babel/types": "npm:^7.26.
|
|
1547
|
+
"@babel/generator": "npm:^7.26.9"
|
|
1548
|
+
"@babel/parser": "npm:^7.26.9"
|
|
1549
|
+
"@babel/template": "npm:^7.26.9"
|
|
1550
|
+
"@babel/types": "npm:^7.26.9"
|
|
1551
1551
|
debug: "npm:^4.3.1"
|
|
1552
1552
|
globals: "npm:^11.1.0"
|
|
1553
|
-
checksum: 10c0/
|
|
1553
|
+
checksum: 10c0/51dd57fa39ea34d04816806bfead04c74f37301269d24c192d1406dc6e244fea99713b3b9c5f3e926d9ef6aa9cd5c062ad4f2fc1caa9cf843d5e864484ac955e
|
|
1554
1554
|
languageName: node
|
|
1555
1555
|
linkType: hard
|
|
1556
1556
|
|
|
1557
|
-
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.12.11, @babel/types@npm:^7.12.7, @babel/types@npm:^7.2.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.
|
|
1558
|
-
version: 7.26.
|
|
1559
|
-
resolution: "@babel/types@npm:7.26.
|
|
1557
|
+
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.12.11, @babel/types@npm:^7.12.7, @babel/types@npm:^7.2.0, @babel/types@npm:^7.20.7, @babel/types@npm:^7.21.3, @babel/types@npm:^7.25.9, @babel/types@npm:^7.26.9, @babel/types@npm:^7.4.4":
|
|
1558
|
+
version: 7.26.9
|
|
1559
|
+
resolution: "@babel/types@npm:7.26.9"
|
|
1560
1560
|
dependencies:
|
|
1561
1561
|
"@babel/helper-string-parser": "npm:^7.25.9"
|
|
1562
1562
|
"@babel/helper-validator-identifier": "npm:^7.25.9"
|
|
1563
|
-
checksum: 10c0/
|
|
1563
|
+
checksum: 10c0/999c56269ba00e5c57aa711fbe7ff071cd6990bafd1b978341ea7572cc78919986e2aa6ee51dacf4b6a7a6fa63ba4eb3f1a03cf55eee31b896a56d068b895964
|
|
1564
1564
|
languageName: node
|
|
1565
1565
|
linkType: hard
|
|
1566
1566
|
|
|
@@ -2481,9 +2481,9 @@ __metadata:
|
|
|
2481
2481
|
languageName: node
|
|
2482
2482
|
linkType: hard
|
|
2483
2483
|
|
|
2484
|
-
"@licklist/core@npm:0.32.
|
|
2485
|
-
version: 0.32.
|
|
2486
|
-
resolution: "@licklist/core@npm:0.32.
|
|
2484
|
+
"@licklist/core@npm:0.32.9":
|
|
2485
|
+
version: 0.32.9
|
|
2486
|
+
resolution: "@licklist/core@npm:0.32.9"
|
|
2487
2487
|
dependencies:
|
|
2488
2488
|
"@sentry/browser": "npm:6.2.0"
|
|
2489
2489
|
axios: "npm:0.26.0"
|
|
@@ -2505,7 +2505,7 @@ __metadata:
|
|
|
2505
2505
|
react-i18next: 11.8.8
|
|
2506
2506
|
react-intl: 6.6.8
|
|
2507
2507
|
zustand: 3.7.2
|
|
2508
|
-
checksum: 10c0/
|
|
2508
|
+
checksum: 10c0/744b7061213c5146e83d61fbbc072995b52bb263377e175a21c1c6ab1b54964d363368b1ac60496ef9bf6dc6b4a9aa490df3c144c9bf19c008be1ca804fdc43f
|
|
2509
2509
|
languageName: node
|
|
2510
2510
|
linkType: hard
|
|
2511
2511
|
|
|
@@ -2520,7 +2520,7 @@ __metadata:
|
|
|
2520
2520
|
"@dnd-kit/utilities": "npm:2.0.0"
|
|
2521
2521
|
"@fortawesome/fontawesome-svg-core": "npm:1.2.34"
|
|
2522
2522
|
"@fortawesome/free-solid-svg-icons": "npm:5.15.2"
|
|
2523
|
-
"@licklist/core": "npm:0.32.
|
|
2523
|
+
"@licklist/core": "npm:0.32.9"
|
|
2524
2524
|
"@licklist/eslint-config": "npm:0.5.6"
|
|
2525
2525
|
"@licklist/plugins": "npm:0.35.7"
|
|
2526
2526
|
"@mantine/core": "npm:6.0.22"
|
|
@@ -2651,7 +2651,7 @@ __metadata:
|
|
|
2651
2651
|
vite-plugin-svgr: "npm:4.2.0"
|
|
2652
2652
|
vite-tsconfig-paths: "npm:5.0.1"
|
|
2653
2653
|
peerDependencies:
|
|
2654
|
-
"@licklist/core": 0.32.
|
|
2654
|
+
"@licklist/core": 0.32.9
|
|
2655
2655
|
"@licklist/eslint-config": 0.5.6
|
|
2656
2656
|
"@licklist/plugins": 0.35.7
|
|
2657
2657
|
lodash: 4.17.21
|
|
@@ -3303,135 +3303,135 @@ __metadata:
|
|
|
3303
3303
|
languageName: node
|
|
3304
3304
|
linkType: hard
|
|
3305
3305
|
|
|
3306
|
-
"@rollup/rollup-android-arm-eabi@npm:4.34.
|
|
3307
|
-
version: 4.34.
|
|
3308
|
-
resolution: "@rollup/rollup-android-arm-eabi@npm:4.34.
|
|
3306
|
+
"@rollup/rollup-android-arm-eabi@npm:4.34.8":
|
|
3307
|
+
version: 4.34.8
|
|
3308
|
+
resolution: "@rollup/rollup-android-arm-eabi@npm:4.34.8"
|
|
3309
3309
|
conditions: os=android & cpu=arm
|
|
3310
3310
|
languageName: node
|
|
3311
3311
|
linkType: hard
|
|
3312
3312
|
|
|
3313
|
-
"@rollup/rollup-android-arm64@npm:4.34.
|
|
3314
|
-
version: 4.34.
|
|
3315
|
-
resolution: "@rollup/rollup-android-arm64@npm:4.34.
|
|
3313
|
+
"@rollup/rollup-android-arm64@npm:4.34.8":
|
|
3314
|
+
version: 4.34.8
|
|
3315
|
+
resolution: "@rollup/rollup-android-arm64@npm:4.34.8"
|
|
3316
3316
|
conditions: os=android & cpu=arm64
|
|
3317
3317
|
languageName: node
|
|
3318
3318
|
linkType: hard
|
|
3319
3319
|
|
|
3320
|
-
"@rollup/rollup-darwin-arm64@npm:4.34.
|
|
3321
|
-
version: 4.34.
|
|
3322
|
-
resolution: "@rollup/rollup-darwin-arm64@npm:4.34.
|
|
3320
|
+
"@rollup/rollup-darwin-arm64@npm:4.34.8":
|
|
3321
|
+
version: 4.34.8
|
|
3322
|
+
resolution: "@rollup/rollup-darwin-arm64@npm:4.34.8"
|
|
3323
3323
|
conditions: os=darwin & cpu=arm64
|
|
3324
3324
|
languageName: node
|
|
3325
3325
|
linkType: hard
|
|
3326
3326
|
|
|
3327
|
-
"@rollup/rollup-darwin-x64@npm:4.34.
|
|
3328
|
-
version: 4.34.
|
|
3329
|
-
resolution: "@rollup/rollup-darwin-x64@npm:4.34.
|
|
3327
|
+
"@rollup/rollup-darwin-x64@npm:4.34.8":
|
|
3328
|
+
version: 4.34.8
|
|
3329
|
+
resolution: "@rollup/rollup-darwin-x64@npm:4.34.8"
|
|
3330
3330
|
conditions: os=darwin & cpu=x64
|
|
3331
3331
|
languageName: node
|
|
3332
3332
|
linkType: hard
|
|
3333
3333
|
|
|
3334
|
-
"@rollup/rollup-freebsd-arm64@npm:4.34.
|
|
3335
|
-
version: 4.34.
|
|
3336
|
-
resolution: "@rollup/rollup-freebsd-arm64@npm:4.34.
|
|
3334
|
+
"@rollup/rollup-freebsd-arm64@npm:4.34.8":
|
|
3335
|
+
version: 4.34.8
|
|
3336
|
+
resolution: "@rollup/rollup-freebsd-arm64@npm:4.34.8"
|
|
3337
3337
|
conditions: os=freebsd & cpu=arm64
|
|
3338
3338
|
languageName: node
|
|
3339
3339
|
linkType: hard
|
|
3340
3340
|
|
|
3341
|
-
"@rollup/rollup-freebsd-x64@npm:4.34.
|
|
3342
|
-
version: 4.34.
|
|
3343
|
-
resolution: "@rollup/rollup-freebsd-x64@npm:4.34.
|
|
3341
|
+
"@rollup/rollup-freebsd-x64@npm:4.34.8":
|
|
3342
|
+
version: 4.34.8
|
|
3343
|
+
resolution: "@rollup/rollup-freebsd-x64@npm:4.34.8"
|
|
3344
3344
|
conditions: os=freebsd & cpu=x64
|
|
3345
3345
|
languageName: node
|
|
3346
3346
|
linkType: hard
|
|
3347
3347
|
|
|
3348
|
-
"@rollup/rollup-linux-arm-gnueabihf@npm:4.34.
|
|
3349
|
-
version: 4.34.
|
|
3350
|
-
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.34.
|
|
3348
|
+
"@rollup/rollup-linux-arm-gnueabihf@npm:4.34.8":
|
|
3349
|
+
version: 4.34.8
|
|
3350
|
+
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.34.8"
|
|
3351
3351
|
conditions: os=linux & cpu=arm & libc=glibc
|
|
3352
3352
|
languageName: node
|
|
3353
3353
|
linkType: hard
|
|
3354
3354
|
|
|
3355
|
-
"@rollup/rollup-linux-arm-musleabihf@npm:4.34.
|
|
3356
|
-
version: 4.34.
|
|
3357
|
-
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.34.
|
|
3355
|
+
"@rollup/rollup-linux-arm-musleabihf@npm:4.34.8":
|
|
3356
|
+
version: 4.34.8
|
|
3357
|
+
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.34.8"
|
|
3358
3358
|
conditions: os=linux & cpu=arm & libc=musl
|
|
3359
3359
|
languageName: node
|
|
3360
3360
|
linkType: hard
|
|
3361
3361
|
|
|
3362
|
-
"@rollup/rollup-linux-arm64-gnu@npm:4.34.
|
|
3363
|
-
version: 4.34.
|
|
3364
|
-
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.34.
|
|
3362
|
+
"@rollup/rollup-linux-arm64-gnu@npm:4.34.8":
|
|
3363
|
+
version: 4.34.8
|
|
3364
|
+
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.34.8"
|
|
3365
3365
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
|
3366
3366
|
languageName: node
|
|
3367
3367
|
linkType: hard
|
|
3368
3368
|
|
|
3369
|
-
"@rollup/rollup-linux-arm64-musl@npm:4.34.
|
|
3370
|
-
version: 4.34.
|
|
3371
|
-
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.34.
|
|
3369
|
+
"@rollup/rollup-linux-arm64-musl@npm:4.34.8":
|
|
3370
|
+
version: 4.34.8
|
|
3371
|
+
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.34.8"
|
|
3372
3372
|
conditions: os=linux & cpu=arm64 & libc=musl
|
|
3373
3373
|
languageName: node
|
|
3374
3374
|
linkType: hard
|
|
3375
3375
|
|
|
3376
|
-
"@rollup/rollup-linux-loongarch64-gnu@npm:4.34.
|
|
3377
|
-
version: 4.34.
|
|
3378
|
-
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.34.
|
|
3376
|
+
"@rollup/rollup-linux-loongarch64-gnu@npm:4.34.8":
|
|
3377
|
+
version: 4.34.8
|
|
3378
|
+
resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.34.8"
|
|
3379
3379
|
conditions: os=linux & cpu=loong64 & libc=glibc
|
|
3380
3380
|
languageName: node
|
|
3381
3381
|
linkType: hard
|
|
3382
3382
|
|
|
3383
|
-
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.
|
|
3384
|
-
version: 4.34.
|
|
3385
|
-
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.
|
|
3383
|
+
"@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.8":
|
|
3384
|
+
version: 4.34.8
|
|
3385
|
+
resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.34.8"
|
|
3386
3386
|
conditions: os=linux & cpu=ppc64 & libc=glibc
|
|
3387
3387
|
languageName: node
|
|
3388
3388
|
linkType: hard
|
|
3389
3389
|
|
|
3390
|
-
"@rollup/rollup-linux-riscv64-gnu@npm:4.34.
|
|
3391
|
-
version: 4.34.
|
|
3392
|
-
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.34.
|
|
3390
|
+
"@rollup/rollup-linux-riscv64-gnu@npm:4.34.8":
|
|
3391
|
+
version: 4.34.8
|
|
3392
|
+
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.34.8"
|
|
3393
3393
|
conditions: os=linux & cpu=riscv64 & libc=glibc
|
|
3394
3394
|
languageName: node
|
|
3395
3395
|
linkType: hard
|
|
3396
3396
|
|
|
3397
|
-
"@rollup/rollup-linux-s390x-gnu@npm:4.34.
|
|
3398
|
-
version: 4.34.
|
|
3399
|
-
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.34.
|
|
3397
|
+
"@rollup/rollup-linux-s390x-gnu@npm:4.34.8":
|
|
3398
|
+
version: 4.34.8
|
|
3399
|
+
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.34.8"
|
|
3400
3400
|
conditions: os=linux & cpu=s390x & libc=glibc
|
|
3401
3401
|
languageName: node
|
|
3402
3402
|
linkType: hard
|
|
3403
3403
|
|
|
3404
|
-
"@rollup/rollup-linux-x64-gnu@npm:4.34.
|
|
3405
|
-
version: 4.34.
|
|
3406
|
-
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.34.
|
|
3404
|
+
"@rollup/rollup-linux-x64-gnu@npm:4.34.8":
|
|
3405
|
+
version: 4.34.8
|
|
3406
|
+
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.34.8"
|
|
3407
3407
|
conditions: os=linux & cpu=x64 & libc=glibc
|
|
3408
3408
|
languageName: node
|
|
3409
3409
|
linkType: hard
|
|
3410
3410
|
|
|
3411
|
-
"@rollup/rollup-linux-x64-musl@npm:4.34.
|
|
3412
|
-
version: 4.34.
|
|
3413
|
-
resolution: "@rollup/rollup-linux-x64-musl@npm:4.34.
|
|
3411
|
+
"@rollup/rollup-linux-x64-musl@npm:4.34.8":
|
|
3412
|
+
version: 4.34.8
|
|
3413
|
+
resolution: "@rollup/rollup-linux-x64-musl@npm:4.34.8"
|
|
3414
3414
|
conditions: os=linux & cpu=x64 & libc=musl
|
|
3415
3415
|
languageName: node
|
|
3416
3416
|
linkType: hard
|
|
3417
3417
|
|
|
3418
|
-
"@rollup/rollup-win32-arm64-msvc@npm:4.34.
|
|
3419
|
-
version: 4.34.
|
|
3420
|
-
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.34.
|
|
3418
|
+
"@rollup/rollup-win32-arm64-msvc@npm:4.34.8":
|
|
3419
|
+
version: 4.34.8
|
|
3420
|
+
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.34.8"
|
|
3421
3421
|
conditions: os=win32 & cpu=arm64
|
|
3422
3422
|
languageName: node
|
|
3423
3423
|
linkType: hard
|
|
3424
3424
|
|
|
3425
|
-
"@rollup/rollup-win32-ia32-msvc@npm:4.34.
|
|
3426
|
-
version: 4.34.
|
|
3427
|
-
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.34.
|
|
3425
|
+
"@rollup/rollup-win32-ia32-msvc@npm:4.34.8":
|
|
3426
|
+
version: 4.34.8
|
|
3427
|
+
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.34.8"
|
|
3428
3428
|
conditions: os=win32 & cpu=ia32
|
|
3429
3429
|
languageName: node
|
|
3430
3430
|
linkType: hard
|
|
3431
3431
|
|
|
3432
|
-
"@rollup/rollup-win32-x64-msvc@npm:4.34.
|
|
3433
|
-
version: 4.34.
|
|
3434
|
-
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.34.
|
|
3432
|
+
"@rollup/rollup-win32-x64-msvc@npm:4.34.8":
|
|
3433
|
+
version: 4.34.8
|
|
3434
|
+
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.34.8"
|
|
3435
3435
|
conditions: os=win32 & cpu=x64
|
|
3436
3436
|
languageName: node
|
|
3437
3437
|
linkType: hard
|
|
@@ -5692,11 +5692,11 @@ __metadata:
|
|
|
5692
5692
|
linkType: hard
|
|
5693
5693
|
|
|
5694
5694
|
"@types/node@npm:*":
|
|
5695
|
-
version: 22.13.
|
|
5696
|
-
resolution: "@types/node@npm:22.13.
|
|
5695
|
+
version: 22.13.4
|
|
5696
|
+
resolution: "@types/node@npm:22.13.4"
|
|
5697
5697
|
dependencies:
|
|
5698
5698
|
undici-types: "npm:~6.20.0"
|
|
5699
|
-
checksum: 10c0/
|
|
5699
|
+
checksum: 10c0/3a234fa7766a3efc382cf81f66f474c26cdab2f54f43f757634c81c0444eb2160c2dabbde9741e4983078a318a88515b65416b5f1ab5478548579d7b3ead1d95
|
|
5700
5700
|
languageName: node
|
|
5701
5701
|
linkType: hard
|
|
5702
5702
|
|
|
@@ -5964,11 +5964,11 @@ __metadata:
|
|
|
5964
5964
|
linkType: hard
|
|
5965
5965
|
|
|
5966
5966
|
"@types/react@npm:*, @types/react@npm:>=16.14.8, @types/react@npm:>=16.9.11":
|
|
5967
|
-
version: 19.0.
|
|
5968
|
-
resolution: "@types/react@npm:19.0.
|
|
5967
|
+
version: 19.0.10
|
|
5968
|
+
resolution: "@types/react@npm:19.0.10"
|
|
5969
5969
|
dependencies:
|
|
5970
5970
|
csstype: "npm:^3.0.2"
|
|
5971
|
-
checksum: 10c0/
|
|
5971
|
+
checksum: 10c0/41884cca21850c8b2d6578b172ca0ca4fff6021251a68532b19f2031ac23dc5a9222470208065f8d9985d367376047df2f49ece8d927f7d04cdc94922b1eb34b
|
|
5972
5972
|
languageName: node
|
|
5973
5973
|
linkType: hard
|
|
5974
5974
|
|
|
@@ -7445,15 +7445,15 @@ __metadata:
|
|
|
7445
7445
|
languageName: node
|
|
7446
7446
|
linkType: hard
|
|
7447
7447
|
|
|
7448
|
-
"babel-plugin-polyfill-corejs3@npm:^0.
|
|
7449
|
-
version: 0.
|
|
7450
|
-
resolution: "babel-plugin-polyfill-corejs3@npm:0.
|
|
7448
|
+
"babel-plugin-polyfill-corejs3@npm:^0.11.0":
|
|
7449
|
+
version: 0.11.1
|
|
7450
|
+
resolution: "babel-plugin-polyfill-corejs3@npm:0.11.1"
|
|
7451
7451
|
dependencies:
|
|
7452
|
-
"@babel/helper-define-polyfill-provider": "npm:^0.6.
|
|
7453
|
-
core-js-compat: "npm:^3.
|
|
7452
|
+
"@babel/helper-define-polyfill-provider": "npm:^0.6.3"
|
|
7453
|
+
core-js-compat: "npm:^3.40.0"
|
|
7454
7454
|
peerDependencies:
|
|
7455
7455
|
"@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
|
|
7456
|
-
checksum: 10c0/
|
|
7456
|
+
checksum: 10c0/025f754b6296d84b20200aff63a3c1acdd85e8c621781f2bd27fe2512d0060526192d02329326947c6b29c27cf475fbcfaaff8c51eab1d2bfc7b79086bb64229
|
|
7457
7457
|
languageName: node
|
|
7458
7458
|
linkType: hard
|
|
7459
7459
|
|
|
@@ -8011,12 +8011,12 @@ __metadata:
|
|
|
8011
8011
|
linkType: hard
|
|
8012
8012
|
|
|
8013
8013
|
"call-bind-apply-helpers@npm:^1.0.0, call-bind-apply-helpers@npm:^1.0.1":
|
|
8014
|
-
version: 1.0.
|
|
8015
|
-
resolution: "call-bind-apply-helpers@npm:1.0.
|
|
8014
|
+
version: 1.0.2
|
|
8015
|
+
resolution: "call-bind-apply-helpers@npm:1.0.2"
|
|
8016
8016
|
dependencies:
|
|
8017
8017
|
es-errors: "npm:^1.3.0"
|
|
8018
8018
|
function-bind: "npm:^1.1.2"
|
|
8019
|
-
checksum: 10c0/
|
|
8019
|
+
checksum: 10c0/47bd9901d57b857590431243fea704ff18078b16890a6b3e021e12d279bbf211d039155e27d7566b374d49ee1f8189344bac9833dec7a20cdec370506361c938
|
|
8020
8020
|
languageName: node
|
|
8021
8021
|
linkType: hard
|
|
8022
8022
|
|
|
@@ -8100,9 +8100,9 @@ __metadata:
|
|
|
8100
8100
|
linkType: hard
|
|
8101
8101
|
|
|
8102
8102
|
"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.30001688":
|
|
8103
|
-
version: 1.0.
|
|
8104
|
-
resolution: "caniuse-lite@npm:1.0.
|
|
8105
|
-
checksum: 10c0/
|
|
8103
|
+
version: 1.0.30001700
|
|
8104
|
+
resolution: "caniuse-lite@npm:1.0.30001700"
|
|
8105
|
+
checksum: 10c0/3d391bcdd193208166d3ad759de240b9c18ac3759dbd57195770f0fcd2eedcd47d5e853609aba1eee5a2def44b0a14eee457796bdb3451a27de0c8b27355017c
|
|
8106
8106
|
languageName: node
|
|
8107
8107
|
linkType: hard
|
|
8108
8108
|
|
|
@@ -8581,8 +8581,8 @@ __metadata:
|
|
|
8581
8581
|
linkType: hard
|
|
8582
8582
|
|
|
8583
8583
|
"compression@npm:^1.7.4":
|
|
8584
|
-
version: 1.
|
|
8585
|
-
resolution: "compression@npm:1.
|
|
8584
|
+
version: 1.8.0
|
|
8585
|
+
resolution: "compression@npm:1.8.0"
|
|
8586
8586
|
dependencies:
|
|
8587
8587
|
bytes: "npm:3.1.2"
|
|
8588
8588
|
compressible: "npm:~2.0.18"
|
|
@@ -8591,7 +8591,7 @@ __metadata:
|
|
|
8591
8591
|
on-headers: "npm:~1.0.2"
|
|
8592
8592
|
safe-buffer: "npm:5.2.1"
|
|
8593
8593
|
vary: "npm:~1.1.2"
|
|
8594
|
-
checksum: 10c0/
|
|
8594
|
+
checksum: 10c0/804d3c8430939f4fd88e5128333f311b4035f6425a7f2959d74cfb5c98ef3a3e3e18143208f3f9d0fcae4cd3bcf3d2fbe525e0fcb955e6e146e070936f025a24
|
|
8595
8595
|
languageName: node
|
|
8596
8596
|
linkType: hard
|
|
8597
8597
|
|
|
@@ -8744,7 +8744,7 @@ __metadata:
|
|
|
8744
8744
|
languageName: node
|
|
8745
8745
|
linkType: hard
|
|
8746
8746
|
|
|
8747
|
-
"core-js-compat@npm:^3.
|
|
8747
|
+
"core-js-compat@npm:^3.40.0, core-js-compat@npm:^3.8.1":
|
|
8748
8748
|
version: 3.40.0
|
|
8749
8749
|
resolution: "core-js-compat@npm:3.40.0"
|
|
8750
8750
|
dependencies:
|
|
@@ -8818,9 +8818,9 @@ __metadata:
|
|
|
8818
8818
|
linkType: hard
|
|
8819
8819
|
|
|
8820
8820
|
"country-flag-icons@npm:^1.0.2":
|
|
8821
|
-
version: 1.5.
|
|
8822
|
-
resolution: "country-flag-icons@npm:1.5.
|
|
8823
|
-
checksum: 10c0/
|
|
8821
|
+
version: 1.5.16
|
|
8822
|
+
resolution: "country-flag-icons@npm:1.5.16"
|
|
8823
|
+
checksum: 10c0/98ae352dbe5ed143b15d422816e5435de1329013de58aae028753a35d4a00c0e8b413626f05377e26ee96b588cca6b21f15d46b99cff0fe583db5a19e7d1da8b
|
|
8824
8824
|
languageName: node
|
|
8825
8825
|
linkType: hard
|
|
8826
8826
|
|
|
@@ -9889,9 +9889,9 @@ __metadata:
|
|
|
9889
9889
|
linkType: hard
|
|
9890
9890
|
|
|
9891
9891
|
"electron-to-chromium@npm:^1.3.564, electron-to-chromium@npm:^1.5.73":
|
|
9892
|
-
version: 1.5.
|
|
9893
|
-
resolution: "electron-to-chromium@npm:1.5.
|
|
9894
|
-
checksum: 10c0/
|
|
9892
|
+
version: 1.5.102
|
|
9893
|
+
resolution: "electron-to-chromium@npm:1.5.102"
|
|
9894
|
+
checksum: 10c0/db07dab3ee3b7fbc39ad26203925669ade86b12a62d09fa14ae48a354a0f34d162ac9a2ca9d6f70ceb1b16821b01b155e56467702bcc915da1e1dd147dd034b4
|
|
9895
9895
|
languageName: node
|
|
9896
9896
|
linkType: hard
|
|
9897
9897
|
|
|
@@ -10241,11 +10241,11 @@ __metadata:
|
|
|
10241
10241
|
linkType: hard
|
|
10242
10242
|
|
|
10243
10243
|
"es-shim-unscopables@npm:^1.0.2":
|
|
10244
|
-
version: 1.0
|
|
10245
|
-
resolution: "es-shim-unscopables@npm:1.0
|
|
10244
|
+
version: 1.1.0
|
|
10245
|
+
resolution: "es-shim-unscopables@npm:1.1.0"
|
|
10246
10246
|
dependencies:
|
|
10247
|
-
hasown: "npm:^2.0.
|
|
10248
|
-
checksum: 10c0/
|
|
10247
|
+
hasown: "npm:^2.0.2"
|
|
10248
|
+
checksum: 10c0/1b9702c8a1823fc3ef39035a4e958802cf294dd21e917397c561d0b3e195f383b978359816b1732d02b255ccf63e1e4815da0065b95db8d7c992037be3bbbcdb
|
|
10249
10249
|
languageName: node
|
|
10250
10250
|
linkType: hard
|
|
10251
10251
|
|
|
@@ -10839,9 +10839,9 @@ __metadata:
|
|
|
10839
10839
|
linkType: hard
|
|
10840
10840
|
|
|
10841
10841
|
"exponential-backoff@npm:^3.1.1":
|
|
10842
|
-
version: 3.1.
|
|
10843
|
-
resolution: "exponential-backoff@npm:3.1.
|
|
10844
|
-
checksum: 10c0/
|
|
10842
|
+
version: 3.1.2
|
|
10843
|
+
resolution: "exponential-backoff@npm:3.1.2"
|
|
10844
|
+
checksum: 10c0/d9d3e1eafa21b78464297df91f1776f7fbaa3d5e3f7f0995648ca5b89c069d17055033817348d9f4a43d1c20b0eab84f75af6991751e839df53e4dfd6f22e844
|
|
10845
10845
|
languageName: node
|
|
10846
10846
|
linkType: hard
|
|
10847
10847
|
|
|
@@ -11203,9 +11203,9 @@ __metadata:
|
|
|
11203
11203
|
linkType: hard
|
|
11204
11204
|
|
|
11205
11205
|
"flatted@npm:^3.2.9":
|
|
11206
|
-
version: 3.3.
|
|
11207
|
-
resolution: "flatted@npm:3.3.
|
|
11208
|
-
checksum: 10c0/
|
|
11206
|
+
version: 3.3.3
|
|
11207
|
+
resolution: "flatted@npm:3.3.3"
|
|
11208
|
+
checksum: 10c0/e957a1c6b0254aa15b8cce8533e24165abd98fadc98575db082b786b5da1b7d72062b81bfdcd1da2f4d46b6ed93bec2434e62333e9b4261d79ef2e75a10dd538
|
|
11209
11209
|
languageName: node
|
|
11210
11210
|
linkType: hard
|
|
11211
11211
|
|
|
@@ -11237,11 +11237,11 @@ __metadata:
|
|
|
11237
11237
|
linkType: hard
|
|
11238
11238
|
|
|
11239
11239
|
"for-each@npm:^0.3.3":
|
|
11240
|
-
version: 0.3.
|
|
11241
|
-
resolution: "for-each@npm:0.3.
|
|
11240
|
+
version: 0.3.5
|
|
11241
|
+
resolution: "for-each@npm:0.3.5"
|
|
11242
11242
|
dependencies:
|
|
11243
11243
|
is-callable: "npm:^1.2.7"
|
|
11244
|
-
checksum: 10c0/
|
|
11244
|
+
checksum: 10c0/0e0b50f6a843a282637d43674d1fb278dda1dd85f4f99b640024cfb10b85058aac0cc781bf689d5fe50b4b7f638e91e548560723a4e76e04fe96ae35ef039cee
|
|
11245
11245
|
languageName: node
|
|
11246
11246
|
linkType: hard
|
|
11247
11247
|
|
|
@@ -11319,13 +11319,14 @@ __metadata:
|
|
|
11319
11319
|
linkType: hard
|
|
11320
11320
|
|
|
11321
11321
|
"form-data@npm:^4.0.0":
|
|
11322
|
-
version: 4.0.
|
|
11323
|
-
resolution: "form-data@npm:4.0.
|
|
11322
|
+
version: 4.0.2
|
|
11323
|
+
resolution: "form-data@npm:4.0.2"
|
|
11324
11324
|
dependencies:
|
|
11325
11325
|
asynckit: "npm:^0.4.0"
|
|
11326
11326
|
combined-stream: "npm:^1.0.8"
|
|
11327
|
+
es-set-tostringtag: "npm:^2.1.0"
|
|
11327
11328
|
mime-types: "npm:^2.1.12"
|
|
11328
|
-
checksum: 10c0/
|
|
11329
|
+
checksum: 10c0/e534b0cf025c831a0929bf4b9bbe1a9a6b03e273a8161f9947286b9b13bf8fb279c6944aae0070c4c311100c6d6dbb815cd955dc217728caf73fad8dc5b8ee9c
|
|
11329
11330
|
languageName: node
|
|
11330
11331
|
linkType: hard
|
|
11331
11332
|
|
|
@@ -13803,9 +13804,9 @@ __metadata:
|
|
|
13803
13804
|
linkType: hard
|
|
13804
13805
|
|
|
13805
13806
|
"libphonenumber-js@npm:^1.9.11":
|
|
13806
|
-
version: 1.11.
|
|
13807
|
-
resolution: "libphonenumber-js@npm:1.11.
|
|
13808
|
-
checksum: 10c0/
|
|
13807
|
+
version: 1.11.20
|
|
13808
|
+
resolution: "libphonenumber-js@npm:1.11.20"
|
|
13809
|
+
checksum: 10c0/fb1010bfa5f8682dadfbd9608f76207510e13c456db96d0d534cf727efa2de005cafbb16d016046965894af0787bf567eb5a1a2688d7bb2d5f8b2eebc42437c6
|
|
13809
13810
|
languageName: node
|
|
13810
13811
|
linkType: hard
|
|
13811
13812
|
|
|
@@ -14272,11 +14273,11 @@ __metadata:
|
|
|
14272
14273
|
linkType: hard
|
|
14273
14274
|
|
|
14274
14275
|
"markdown-to-jsx@npm:^7.1.3":
|
|
14275
|
-
version: 7.7.
|
|
14276
|
-
resolution: "markdown-to-jsx@npm:7.7.
|
|
14276
|
+
version: 7.7.4
|
|
14277
|
+
resolution: "markdown-to-jsx@npm:7.7.4"
|
|
14277
14278
|
peerDependencies:
|
|
14278
14279
|
react: ">= 0.14.0"
|
|
14279
|
-
checksum: 10c0/
|
|
14280
|
+
checksum: 10c0/692323e3cb5573ecce5f1f40c3b1a8d67bca40f2b4907ec266c23e7dffa2dcab466f738ea6569f8a5e6234ddcdccacbfeeb97b5e2f647b94bf29fa441f0083be
|
|
14280
14281
|
languageName: node
|
|
14281
14282
|
linkType: hard
|
|
14282
14283
|
|
|
@@ -15084,8 +15085,8 @@ __metadata:
|
|
|
15084
15085
|
linkType: hard
|
|
15085
15086
|
|
|
15086
15087
|
"node-gyp@npm:latest":
|
|
15087
|
-
version: 11.
|
|
15088
|
-
resolution: "node-gyp@npm:11.
|
|
15088
|
+
version: 11.1.0
|
|
15089
|
+
resolution: "node-gyp@npm:11.1.0"
|
|
15089
15090
|
dependencies:
|
|
15090
15091
|
env-paths: "npm:^2.2.0"
|
|
15091
15092
|
exponential-backoff: "npm:^3.1.1"
|
|
@@ -15099,7 +15100,7 @@ __metadata:
|
|
|
15099
15100
|
which: "npm:^5.0.0"
|
|
15100
15101
|
bin:
|
|
15101
15102
|
node-gyp: bin/node-gyp.js
|
|
15102
|
-
checksum: 10c0/
|
|
15103
|
+
checksum: 10c0/c38977ce502f1ea41ba2b8721bd5b49bc3d5b3f813eabfac8414082faf0620ccb5211e15c4daecc23ed9f5e3e9cc4da00e575a0bcfc2a95a069294f2afa1e0cd
|
|
15103
15104
|
languageName: node
|
|
15104
15105
|
linkType: hard
|
|
15105
15106
|
|
|
@@ -15905,9 +15906,9 @@ __metadata:
|
|
|
15905
15906
|
linkType: hard
|
|
15906
15907
|
|
|
15907
15908
|
"pathe@npm:^2.0.1":
|
|
15908
|
-
version: 2.0.
|
|
15909
|
-
resolution: "pathe@npm:2.0.
|
|
15910
|
-
checksum: 10c0/
|
|
15909
|
+
version: 2.0.3
|
|
15910
|
+
resolution: "pathe@npm:2.0.3"
|
|
15911
|
+
checksum: 10c0/c118dc5a8b5c4166011b2b70608762e260085180bb9e33e80a50dcdb1e78c010b1624f4280c492c92b05fc276715a4c357d1f9edc570f8f1b3d90b6839ebaca1
|
|
15911
15912
|
languageName: node
|
|
15912
15913
|
linkType: hard
|
|
15913
15914
|
|
|
@@ -16072,9 +16073,9 @@ __metadata:
|
|
|
16072
16073
|
linkType: hard
|
|
16073
16074
|
|
|
16074
16075
|
"possible-typed-array-names@npm:^1.0.0":
|
|
16075
|
-
version: 1.
|
|
16076
|
-
resolution: "possible-typed-array-names@npm:1.
|
|
16077
|
-
checksum: 10c0/
|
|
16076
|
+
version: 1.1.0
|
|
16077
|
+
resolution: "possible-typed-array-names@npm:1.1.0"
|
|
16078
|
+
checksum: 10c0/c810983414142071da1d644662ce4caebce890203eb2bc7bf119f37f3fe5796226e117e6cca146b521921fa6531072674174a3325066ac66fce089a53e1e5196
|
|
16078
16079
|
languageName: node
|
|
16079
16080
|
linkType: hard
|
|
16080
16081
|
|
|
@@ -16562,12 +16563,12 @@ __metadata:
|
|
|
16562
16563
|
linkType: hard
|
|
16563
16564
|
|
|
16564
16565
|
"postcss-selector-parser@npm:^7.0.0":
|
|
16565
|
-
version: 7.
|
|
16566
|
-
resolution: "postcss-selector-parser@npm:7.
|
|
16566
|
+
version: 7.1.0
|
|
16567
|
+
resolution: "postcss-selector-parser@npm:7.1.0"
|
|
16567
16568
|
dependencies:
|
|
16568
16569
|
cssesc: "npm:^3.0.0"
|
|
16569
16570
|
util-deprecate: "npm:^1.0.2"
|
|
16570
|
-
checksum: 10c0/
|
|
16571
|
+
checksum: 10c0/0fef257cfd1c0fe93c18a3f8a6e739b4438b527054fd77e9a62730a89b2d0ded1b59314a7e4aaa55bc256204f40830fecd2eb50f20f8cb7ab3a10b52aa06c8aa
|
|
16571
16572
|
languageName: node
|
|
16572
16573
|
linkType: hard
|
|
16573
16574
|
|
|
@@ -16639,13 +16640,13 @@ __metadata:
|
|
|
16639
16640
|
linkType: hard
|
|
16640
16641
|
|
|
16641
16642
|
"postcss@npm:^8.2.6, postcss@npm:^8.4.23, postcss@npm:^8.4.39":
|
|
16642
|
-
version: 8.5.
|
|
16643
|
-
resolution: "postcss@npm:8.5.
|
|
16643
|
+
version: 8.5.2
|
|
16644
|
+
resolution: "postcss@npm:8.5.2"
|
|
16644
16645
|
dependencies:
|
|
16645
16646
|
nanoid: "npm:^3.3.8"
|
|
16646
16647
|
picocolors: "npm:^1.1.1"
|
|
16647
16648
|
source-map-js: "npm:^1.2.1"
|
|
16648
|
-
checksum: 10c0/
|
|
16649
|
+
checksum: 10c0/3044d49bc725029ab62292e8bf9849741251b95f3b754e191bf8b4025414d40ec3b4ac05c5a563d4b50060b5c8e96683eb4d783d8d8fa3867eb7b763cbe66127
|
|
16649
16650
|
languageName: node
|
|
16650
16651
|
linkType: hard
|
|
16651
16652
|
|
|
@@ -17035,15 +17036,15 @@ __metadata:
|
|
|
17035
17036
|
linkType: hard
|
|
17036
17037
|
|
|
17037
17038
|
"prosemirror-tables@npm:^1.3.0":
|
|
17038
|
-
version: 1.6.
|
|
17039
|
-
resolution: "prosemirror-tables@npm:1.6.
|
|
17039
|
+
version: 1.6.4
|
|
17040
|
+
resolution: "prosemirror-tables@npm:1.6.4"
|
|
17040
17041
|
dependencies:
|
|
17041
17042
|
prosemirror-keymap: "npm:^1.2.2"
|
|
17042
17043
|
prosemirror-model: "npm:^1.24.1"
|
|
17043
17044
|
prosemirror-state: "npm:^1.4.3"
|
|
17044
17045
|
prosemirror-transform: "npm:^1.10.2"
|
|
17045
|
-
prosemirror-view: "npm:^1.37.
|
|
17046
|
-
checksum: 10c0/
|
|
17046
|
+
prosemirror-view: "npm:^1.37.2"
|
|
17047
|
+
checksum: 10c0/a19e6c30467885147ac2bdac20701ed82ccd980d56f28ba329132667759b9ab2e7f8d1e96342b099503ab21f949783e29a45cf9c98a97d4d1afdf5ba1f831eb2
|
|
17047
17048
|
languageName: node
|
|
17048
17049
|
linkType: hard
|
|
17049
17050
|
|
|
@@ -17070,14 +17071,14 @@ __metadata:
|
|
|
17070
17071
|
languageName: node
|
|
17071
17072
|
linkType: hard
|
|
17072
17073
|
|
|
17073
|
-
"prosemirror-view@npm:^1.0.0, prosemirror-view@npm:^1.1.0, prosemirror-view@npm:^1.23.6, prosemirror-view@npm:^1.27.0, prosemirror-view@npm:^1.28.2, prosemirror-view@npm:^1.31.0, prosemirror-view@npm:^1.37.
|
|
17074
|
-
version: 1.
|
|
17075
|
-
resolution: "prosemirror-view@npm:1.
|
|
17074
|
+
"prosemirror-view@npm:^1.0.0, prosemirror-view@npm:^1.1.0, prosemirror-view@npm:^1.23.6, prosemirror-view@npm:^1.27.0, prosemirror-view@npm:^1.28.2, prosemirror-view@npm:^1.31.0, prosemirror-view@npm:^1.37.2":
|
|
17075
|
+
version: 1.38.0
|
|
17076
|
+
resolution: "prosemirror-view@npm:1.38.0"
|
|
17076
17077
|
dependencies:
|
|
17077
17078
|
prosemirror-model: "npm:^1.20.0"
|
|
17078
17079
|
prosemirror-state: "npm:^1.0.0"
|
|
17079
17080
|
prosemirror-transform: "npm:^1.1.0"
|
|
17080
|
-
checksum: 10c0/
|
|
17081
|
+
checksum: 10c0/ea4399afbe25ccd0555802344670c7034793cd0afba6958262969e96426eeaf85fa1e1aa7e0e80c15425901a35c7b620e86ce46f5b8e00f8fb55b551dedc7bbf
|
|
17081
17082
|
languageName: node
|
|
17082
17083
|
linkType: hard
|
|
17083
17084
|
|
|
@@ -17532,9 +17533,9 @@ __metadata:
|
|
|
17532
17533
|
linkType: hard
|
|
17533
17534
|
|
|
17534
17535
|
"react-error-overlay@npm:^6.0.9":
|
|
17535
|
-
version: 6.0
|
|
17536
|
-
resolution: "react-error-overlay@npm:6.0
|
|
17537
|
-
checksum: 10c0/
|
|
17536
|
+
version: 6.1.0
|
|
17537
|
+
resolution: "react-error-overlay@npm:6.1.0"
|
|
17538
|
+
checksum: 10c0/2b52308b9e489dfaa25df85c7ed5c200371bc214245161a0833b729f9c6b1a2e591e1d1e07c3d3859ffa19b84a386c219d93df9ba13d819be34c20f40e71a555
|
|
17538
17539
|
languageName: node
|
|
17539
17540
|
linkType: hard
|
|
17540
17541
|
|
|
@@ -18927,28 +18928,28 @@ __metadata:
|
|
|
18927
18928
|
linkType: hard
|
|
18928
18929
|
|
|
18929
18930
|
"rollup@npm:^4.13.0":
|
|
18930
|
-
version: 4.34.
|
|
18931
|
-
resolution: "rollup@npm:4.34.
|
|
18932
|
-
dependencies:
|
|
18933
|
-
"@rollup/rollup-android-arm-eabi": "npm:4.34.
|
|
18934
|
-
"@rollup/rollup-android-arm64": "npm:4.34.
|
|
18935
|
-
"@rollup/rollup-darwin-arm64": "npm:4.34.
|
|
18936
|
-
"@rollup/rollup-darwin-x64": "npm:4.34.
|
|
18937
|
-
"@rollup/rollup-freebsd-arm64": "npm:4.34.
|
|
18938
|
-
"@rollup/rollup-freebsd-x64": "npm:4.34.
|
|
18939
|
-
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.34.
|
|
18940
|
-
"@rollup/rollup-linux-arm-musleabihf": "npm:4.34.
|
|
18941
|
-
"@rollup/rollup-linux-arm64-gnu": "npm:4.34.
|
|
18942
|
-
"@rollup/rollup-linux-arm64-musl": "npm:4.34.
|
|
18943
|
-
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.34.
|
|
18944
|
-
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.34.
|
|
18945
|
-
"@rollup/rollup-linux-riscv64-gnu": "npm:4.34.
|
|
18946
|
-
"@rollup/rollup-linux-s390x-gnu": "npm:4.34.
|
|
18947
|
-
"@rollup/rollup-linux-x64-gnu": "npm:4.34.
|
|
18948
|
-
"@rollup/rollup-linux-x64-musl": "npm:4.34.
|
|
18949
|
-
"@rollup/rollup-win32-arm64-msvc": "npm:4.34.
|
|
18950
|
-
"@rollup/rollup-win32-ia32-msvc": "npm:4.34.
|
|
18951
|
-
"@rollup/rollup-win32-x64-msvc": "npm:4.34.
|
|
18931
|
+
version: 4.34.8
|
|
18932
|
+
resolution: "rollup@npm:4.34.8"
|
|
18933
|
+
dependencies:
|
|
18934
|
+
"@rollup/rollup-android-arm-eabi": "npm:4.34.8"
|
|
18935
|
+
"@rollup/rollup-android-arm64": "npm:4.34.8"
|
|
18936
|
+
"@rollup/rollup-darwin-arm64": "npm:4.34.8"
|
|
18937
|
+
"@rollup/rollup-darwin-x64": "npm:4.34.8"
|
|
18938
|
+
"@rollup/rollup-freebsd-arm64": "npm:4.34.8"
|
|
18939
|
+
"@rollup/rollup-freebsd-x64": "npm:4.34.8"
|
|
18940
|
+
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.34.8"
|
|
18941
|
+
"@rollup/rollup-linux-arm-musleabihf": "npm:4.34.8"
|
|
18942
|
+
"@rollup/rollup-linux-arm64-gnu": "npm:4.34.8"
|
|
18943
|
+
"@rollup/rollup-linux-arm64-musl": "npm:4.34.8"
|
|
18944
|
+
"@rollup/rollup-linux-loongarch64-gnu": "npm:4.34.8"
|
|
18945
|
+
"@rollup/rollup-linux-powerpc64le-gnu": "npm:4.34.8"
|
|
18946
|
+
"@rollup/rollup-linux-riscv64-gnu": "npm:4.34.8"
|
|
18947
|
+
"@rollup/rollup-linux-s390x-gnu": "npm:4.34.8"
|
|
18948
|
+
"@rollup/rollup-linux-x64-gnu": "npm:4.34.8"
|
|
18949
|
+
"@rollup/rollup-linux-x64-musl": "npm:4.34.8"
|
|
18950
|
+
"@rollup/rollup-win32-arm64-msvc": "npm:4.34.8"
|
|
18951
|
+
"@rollup/rollup-win32-ia32-msvc": "npm:4.34.8"
|
|
18952
|
+
"@rollup/rollup-win32-x64-msvc": "npm:4.34.8"
|
|
18952
18953
|
"@types/estree": "npm:1.0.6"
|
|
18953
18954
|
fsevents: "npm:~2.3.2"
|
|
18954
18955
|
dependenciesMeta:
|
|
@@ -18994,7 +18995,7 @@ __metadata:
|
|
|
18994
18995
|
optional: true
|
|
18995
18996
|
bin:
|
|
18996
18997
|
rollup: dist/bin/rollup
|
|
18997
|
-
checksum: 10c0/
|
|
18998
|
+
checksum: 10c0/b9e711e33413112fbb761107c3fddc4561dfc74335c393542a829a85ccfb2763bfd17bf2422d84a2e9bee7646e5367018973e97005fdf64e49c2e209612f0eb6
|
|
18998
18999
|
languageName: node
|
|
18999
19000
|
linkType: hard
|
|
19000
19001
|
|
|
@@ -19690,12 +19691,12 @@ __metadata:
|
|
|
19690
19691
|
linkType: hard
|
|
19691
19692
|
|
|
19692
19693
|
"socks@npm:^2.8.3":
|
|
19693
|
-
version: 2.8.
|
|
19694
|
-
resolution: "socks@npm:2.8.
|
|
19694
|
+
version: 2.8.4
|
|
19695
|
+
resolution: "socks@npm:2.8.4"
|
|
19695
19696
|
dependencies:
|
|
19696
19697
|
ip-address: "npm:^9.0.5"
|
|
19697
19698
|
smart-buffer: "npm:^4.2.0"
|
|
19698
|
-
checksum: 10c0/
|
|
19699
|
+
checksum: 10c0/00c3271e233ccf1fb83a3dd2060b94cc37817e0f797a93c560b9a7a86c4a0ec2961fb31263bdd24a3c28945e24868b5f063cd98744171d9e942c513454b50ae5
|
|
19699
19700
|
languageName: node
|
|
19700
19701
|
linkType: hard
|
|
19701
19702
|
|
|
@@ -20573,8 +20574,8 @@ __metadata:
|
|
|
20573
20574
|
linkType: hard
|
|
20574
20575
|
|
|
20575
20576
|
"terser@npm:^5.3.4":
|
|
20576
|
-
version: 5.
|
|
20577
|
-
resolution: "terser@npm:5.
|
|
20577
|
+
version: 5.39.0
|
|
20578
|
+
resolution: "terser@npm:5.39.0"
|
|
20578
20579
|
dependencies:
|
|
20579
20580
|
"@jridgewell/source-map": "npm:^0.3.3"
|
|
20580
20581
|
acorn: "npm:^8.8.2"
|
|
@@ -20582,7 +20583,7 @@ __metadata:
|
|
|
20582
20583
|
source-map-support: "npm:~0.5.20"
|
|
20583
20584
|
bin:
|
|
20584
20585
|
terser: bin/terser
|
|
20585
|
-
checksum: 10c0/
|
|
20586
|
+
checksum: 10c0/83326545ea1aecd6261030568b6191ccfa4cb6aa61d9ea41746a52479f50017a78b77e4725fbbc207c5df841ffa66a773c5ac33636e95c7ab94fe7e0379ae5c7
|
|
20586
20587
|
languageName: node
|
|
20587
20588
|
linkType: hard
|
|
20588
20589
|
|