@epilot/pricing-client 2.1.3 → 2.1.6
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/definition.js +1 -1
- package/dist/index.js +1 -5
- package/dist/openapi.d.ts +533 -32
- package/dist/openapi.json +286 -34
- package/package.json +2 -2
package/dist/openapi.json
CHANGED
|
@@ -122,6 +122,77 @@
|
|
|
122
122
|
"required": true,
|
|
123
123
|
"content": {
|
|
124
124
|
"application/json": {
|
|
125
|
+
"examples": {
|
|
126
|
+
"Order with Simple Prices": {
|
|
127
|
+
"value": {
|
|
128
|
+
"status": "quote",
|
|
129
|
+
"source_type": "manual",
|
|
130
|
+
"expires_at": "2022-06-30T16:17:00.000Z",
|
|
131
|
+
"line_items": [
|
|
132
|
+
{
|
|
133
|
+
"price_id": "7e24ff5d-d580-4136-a32f-19191eed039a",
|
|
134
|
+
"product_id": "6241487f-b7fd-428b-ab92-24ee0b37fd84",
|
|
135
|
+
"quantity": 16
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"price_id": "7e24ff5d-d580-4136-a32f-19191eed039a",
|
|
139
|
+
"product_id": "6241487f-b7fd-428b-ab92-24ee0b37fd84",
|
|
140
|
+
"quantity": 4
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"price_id": "7e24ff5d-d580-4136-a32f-19191eed039a",
|
|
144
|
+
"product_id": "6241487f-b7fd-428b-ab92-24ee0b37fd84",
|
|
145
|
+
"quantity": 1
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"price_id": "7e24ff5d-d580-4136-a32f-19191eed039a",
|
|
149
|
+
"product_id": "6241487f-b7fd-428b-ab92-24ee0b37fd84",
|
|
150
|
+
"quantity": 1
|
|
151
|
+
}
|
|
152
|
+
],
|
|
153
|
+
"currency": "EUR",
|
|
154
|
+
"payment_method": [
|
|
155
|
+
{
|
|
156
|
+
"type": "IBAN",
|
|
157
|
+
"details": {}
|
|
158
|
+
}
|
|
159
|
+
],
|
|
160
|
+
"billing_contact": {
|
|
161
|
+
"$relation": [
|
|
162
|
+
{
|
|
163
|
+
"entity_id": "1834a54e-b68f-4f7f-a98a-fe16f11bc2a5",
|
|
164
|
+
"_tags": []
|
|
165
|
+
}
|
|
166
|
+
]
|
|
167
|
+
},
|
|
168
|
+
"billing_first_name": "Joao",
|
|
169
|
+
"billing_last_name": "Pinho",
|
|
170
|
+
"billing_email": "j.pinho@epilot.cloud",
|
|
171
|
+
"billing_company_name": "epilot cloud",
|
|
172
|
+
"billing_address": [
|
|
173
|
+
{
|
|
174
|
+
"_tags": [],
|
|
175
|
+
"street": "Im Media Park",
|
|
176
|
+
"street_number": "8a",
|
|
177
|
+
"postal_code": "52000",
|
|
178
|
+
"city": "Cologne",
|
|
179
|
+
"country": "DE",
|
|
180
|
+
"additional_info": ""
|
|
181
|
+
}
|
|
182
|
+
],
|
|
183
|
+
"delivery_address": [],
|
|
184
|
+
"dates": [
|
|
185
|
+
{
|
|
186
|
+
"_tags": [
|
|
187
|
+
"Instalation Date"
|
|
188
|
+
],
|
|
189
|
+
"dates": "",
|
|
190
|
+
"value": "2022-06-30T16:29:00.000Z"
|
|
191
|
+
}
|
|
192
|
+
]
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
},
|
|
125
196
|
"schema": {
|
|
126
197
|
"$ref": "#/components/schemas/OrderPayload"
|
|
127
198
|
}
|
|
@@ -169,7 +240,7 @@
|
|
|
169
240
|
"type": "string"
|
|
170
241
|
},
|
|
171
242
|
"required": true,
|
|
172
|
-
"example": "
|
|
243
|
+
"example": "9d4602d3-03be-4d85-86b2-f3c6555fc606"
|
|
173
244
|
}
|
|
174
245
|
],
|
|
175
246
|
"requestBody": {
|
|
@@ -178,6 +249,77 @@
|
|
|
178
249
|
"application/json": {
|
|
179
250
|
"schema": {
|
|
180
251
|
"$ref": "#/components/schemas/OrderPayload"
|
|
252
|
+
},
|
|
253
|
+
"examples": {
|
|
254
|
+
"Order with Simple Prices": {
|
|
255
|
+
"value": {
|
|
256
|
+
"status": "quote",
|
|
257
|
+
"source_type": "manual",
|
|
258
|
+
"expires_at": "2022-06-30T16:17:00.000Z",
|
|
259
|
+
"line_items": [
|
|
260
|
+
{
|
|
261
|
+
"price_id": "7e24ff5d-d580-4136-a32f-19191eed039a",
|
|
262
|
+
"product_id": "6241487f-b7fd-428b-ab92-24ee0b37fd84",
|
|
263
|
+
"quantity": 16
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"price_id": "7e24ff5d-d580-4136-a32f-19191eed039a",
|
|
267
|
+
"product_id": "6241487f-b7fd-428b-ab92-24ee0b37fd84",
|
|
268
|
+
"quantity": 4
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"price_id": "7e24ff5d-d580-4136-a32f-19191eed039a",
|
|
272
|
+
"product_id": "6241487f-b7fd-428b-ab92-24ee0b37fd84",
|
|
273
|
+
"quantity": 1
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"price_id": "7e24ff5d-d580-4136-a32f-19191eed039a",
|
|
277
|
+
"product_id": "6241487f-b7fd-428b-ab92-24ee0b37fd84",
|
|
278
|
+
"quantity": 1
|
|
279
|
+
}
|
|
280
|
+
],
|
|
281
|
+
"currency": "EUR",
|
|
282
|
+
"payment_method": [
|
|
283
|
+
{
|
|
284
|
+
"type": "IBAN",
|
|
285
|
+
"details": {}
|
|
286
|
+
}
|
|
287
|
+
],
|
|
288
|
+
"billing_contact": {
|
|
289
|
+
"$relation": [
|
|
290
|
+
{
|
|
291
|
+
"entity_id": "1834a54e-b68f-4f7f-a98a-fe16f11bc2a5",
|
|
292
|
+
"_tags": []
|
|
293
|
+
}
|
|
294
|
+
]
|
|
295
|
+
},
|
|
296
|
+
"billing_first_name": "Joao",
|
|
297
|
+
"billing_last_name": "Pinho",
|
|
298
|
+
"billing_email": "j.pinho@epilot.cloud",
|
|
299
|
+
"billing_company_name": "epilot cloud",
|
|
300
|
+
"billing_address": [
|
|
301
|
+
{
|
|
302
|
+
"_tags": [],
|
|
303
|
+
"street": "Im Media Park",
|
|
304
|
+
"street_number": "8a",
|
|
305
|
+
"postal_code": "52000",
|
|
306
|
+
"city": "Cologne",
|
|
307
|
+
"country": "DE",
|
|
308
|
+
"additional_info": ""
|
|
309
|
+
}
|
|
310
|
+
],
|
|
311
|
+
"delivery_address": [],
|
|
312
|
+
"dates": [
|
|
313
|
+
{
|
|
314
|
+
"_tags": [
|
|
315
|
+
"Instalation Date"
|
|
316
|
+
],
|
|
317
|
+
"dates": "",
|
|
318
|
+
"value": "2022-06-30T16:29:00.000Z"
|
|
319
|
+
}
|
|
320
|
+
]
|
|
321
|
+
}
|
|
322
|
+
}
|
|
181
323
|
}
|
|
182
324
|
}
|
|
183
325
|
}
|
|
@@ -234,10 +376,7 @@
|
|
|
234
376
|
"$ref": "#/components/schemas/CheckoutCart"
|
|
235
377
|
},
|
|
236
378
|
"examples": {
|
|
237
|
-
"Checkout with a
|
|
238
|
-
"$ref": "#/components/examples/checkout-with-cart-id"
|
|
239
|
-
},
|
|
240
|
-
"Fast Checkout with a transient Cart": {
|
|
379
|
+
"Checkout with a transient Cart": {
|
|
241
380
|
"$ref": "#/components/examples/checkout-with-transient-cart"
|
|
242
381
|
}
|
|
243
382
|
}
|
|
@@ -1098,6 +1237,10 @@
|
|
|
1098
1237
|
"type": "boolean",
|
|
1099
1238
|
"description": "Whether the price can be used for new purchases."
|
|
1100
1239
|
},
|
|
1240
|
+
"is_composite_price": {
|
|
1241
|
+
"description": "The flag for prices that contain price components.",
|
|
1242
|
+
"type": "boolean"
|
|
1243
|
+
},
|
|
1101
1244
|
"billing_scheme": {
|
|
1102
1245
|
"type": "string",
|
|
1103
1246
|
"description": "Describes how to compute the price per period. Either `per_unit` or `tiered`.\n- `per_unit` indicates that the fixed amount (specified in unit_amount or unit_amount_decimal) will be charged per unit in quantity\n- `tiered` indicates that the unit pricing will be computed using a tiering strategy as defined using the tiers and tiers_mode attributes.\n\n⚠️ Tiered pricing is **not supported** yet.\n",
|
|
@@ -1324,6 +1467,10 @@
|
|
|
1324
1467
|
}
|
|
1325
1468
|
]
|
|
1326
1469
|
},
|
|
1470
|
+
"is_composite_price": {
|
|
1471
|
+
"description": "The flag for prices that contain price components.",
|
|
1472
|
+
"type": "boolean"
|
|
1473
|
+
},
|
|
1327
1474
|
"_created_at": {
|
|
1328
1475
|
"description": "The price creation date",
|
|
1329
1476
|
"type": "string"
|
|
@@ -1690,7 +1837,6 @@
|
|
|
1690
1837
|
"type": "object",
|
|
1691
1838
|
"properties": {
|
|
1692
1839
|
"metadata": {
|
|
1693
|
-
"description": "An additional structure to keep metadata related with the price item.",
|
|
1694
1840
|
"$ref": "#/components/schemas/MetaData"
|
|
1695
1841
|
},
|
|
1696
1842
|
"quantity": {
|
|
@@ -1733,9 +1879,17 @@
|
|
|
1733
1879
|
]
|
|
1734
1880
|
}
|
|
1735
1881
|
},
|
|
1882
|
+
"is_composite_price": {
|
|
1883
|
+
"description": "The flag for prices that contain price components.",
|
|
1884
|
+
"type": "boolean"
|
|
1885
|
+
},
|
|
1736
1886
|
"_product": {
|
|
1737
|
-
"description": "The snapshot of the product
|
|
1738
|
-
"
|
|
1887
|
+
"description": "The snapshot of the product.",
|
|
1888
|
+
"allOf": [
|
|
1889
|
+
{
|
|
1890
|
+
"$ref": "#/components/schemas/Product"
|
|
1891
|
+
}
|
|
1892
|
+
]
|
|
1739
1893
|
}
|
|
1740
1894
|
}
|
|
1741
1895
|
},
|
|
@@ -1748,6 +1902,14 @@
|
|
|
1748
1902
|
"description": "Represents a price input to the pricing library.",
|
|
1749
1903
|
"type": "object",
|
|
1750
1904
|
"properties": {
|
|
1905
|
+
"type": {
|
|
1906
|
+
"type": "string",
|
|
1907
|
+
"description": "One of `one_time` or `recurring` depending on whether the price is for a one-time purchase or a recurring (subscription) purchase.",
|
|
1908
|
+
"enum": [
|
|
1909
|
+
"one_time",
|
|
1910
|
+
"recurring"
|
|
1911
|
+
]
|
|
1912
|
+
},
|
|
1751
1913
|
"unit_amount": {
|
|
1752
1914
|
"type": "integer",
|
|
1753
1915
|
"description": "The unit amount value"
|
|
@@ -1758,7 +1920,11 @@
|
|
|
1758
1920
|
},
|
|
1759
1921
|
"_price": {
|
|
1760
1922
|
"description": "The snapshot of the price linked to the price item.",
|
|
1761
|
-
"
|
|
1923
|
+
"allOf": [
|
|
1924
|
+
{
|
|
1925
|
+
"$ref": "#/components/schemas/Price"
|
|
1926
|
+
}
|
|
1927
|
+
]
|
|
1762
1928
|
}
|
|
1763
1929
|
}
|
|
1764
1930
|
},
|
|
@@ -1779,7 +1945,6 @@
|
|
|
1779
1945
|
}
|
|
1780
1946
|
},
|
|
1781
1947
|
"_price": {
|
|
1782
|
-
"description": "The snapshot of the price linked to the price item.",
|
|
1783
1948
|
"$ref": "#/components/schemas/CompositePrice"
|
|
1784
1949
|
}
|
|
1785
1950
|
}
|
|
@@ -1794,12 +1959,7 @@
|
|
|
1794
1959
|
"description": "The deprecated tax rate applied.\nThis field has been deprecated in favor of the new Tax Management. You should use the new tax fields pointing to a proper tax entity.\n"
|
|
1795
1960
|
},
|
|
1796
1961
|
"tax": {
|
|
1797
|
-
"
|
|
1798
|
-
"oneOf": [
|
|
1799
|
-
{
|
|
1800
|
-
"$ref": "#/components/schemas/Tax"
|
|
1801
|
-
}
|
|
1802
|
-
]
|
|
1962
|
+
"$ref": "#/components/schemas/Tax"
|
|
1803
1963
|
}
|
|
1804
1964
|
}
|
|
1805
1965
|
},
|
|
@@ -2033,7 +2193,7 @@
|
|
|
2033
2193
|
"CompositePriceItem": {
|
|
2034
2194
|
"allOf": [
|
|
2035
2195
|
{
|
|
2036
|
-
"$ref": "#/components/schemas/
|
|
2196
|
+
"$ref": "#/components/schemas/BasePriceItem"
|
|
2037
2197
|
}
|
|
2038
2198
|
],
|
|
2039
2199
|
"description": "Represents a composite price input to the pricing library.",
|
|
@@ -2048,7 +2208,7 @@
|
|
|
2048
2208
|
}
|
|
2049
2209
|
}
|
|
2050
2210
|
},
|
|
2051
|
-
"
|
|
2211
|
+
"BasePriceItem": {
|
|
2052
2212
|
"description": "Represents a price item",
|
|
2053
2213
|
"type": "object",
|
|
2054
2214
|
"example": {
|
|
@@ -2122,12 +2282,7 @@
|
|
|
2122
2282
|
]
|
|
2123
2283
|
},
|
|
2124
2284
|
"_product": {
|
|
2125
|
-
"
|
|
2126
|
-
"anyOf": [
|
|
2127
|
-
{
|
|
2128
|
-
"$ref": "#/components/schemas/Product"
|
|
2129
|
-
}
|
|
2130
|
-
]
|
|
2285
|
+
"$ref": "#/components/schemas/Product"
|
|
2131
2286
|
},
|
|
2132
2287
|
"taxes": {
|
|
2133
2288
|
"type": "array",
|
|
@@ -2155,6 +2310,28 @@
|
|
|
2155
2310
|
}
|
|
2156
2311
|
}
|
|
2157
2312
|
},
|
|
2313
|
+
"PriceItem": {
|
|
2314
|
+
"allOf": [
|
|
2315
|
+
{
|
|
2316
|
+
"$ref": "#/components/schemas/BasePriceItem"
|
|
2317
|
+
}
|
|
2318
|
+
],
|
|
2319
|
+
"description": "Represents a price item",
|
|
2320
|
+
"type": "object",
|
|
2321
|
+
"example": {
|
|
2322
|
+
"$ref": "#/components/examples/price-item"
|
|
2323
|
+
},
|
|
2324
|
+
"properties": {
|
|
2325
|
+
"type": {
|
|
2326
|
+
"type": "string",
|
|
2327
|
+
"description": "One of `one_time` or `recurring` depending on whether the price is for a one-time purchase or a recurring (subscription) purchase.",
|
|
2328
|
+
"enum": [
|
|
2329
|
+
"one_time",
|
|
2330
|
+
"recurring"
|
|
2331
|
+
]
|
|
2332
|
+
}
|
|
2333
|
+
}
|
|
2334
|
+
},
|
|
2158
2335
|
"TaxAmount": {
|
|
2159
2336
|
"type": "object",
|
|
2160
2337
|
"description": "A tax amount associated with a specific tax rate.",
|
|
@@ -2205,12 +2382,7 @@
|
|
|
2205
2382
|
"deprecated": true
|
|
2206
2383
|
},
|
|
2207
2384
|
"tax": {
|
|
2208
|
-
"
|
|
2209
|
-
"oneOf": [
|
|
2210
|
-
{
|
|
2211
|
-
"$ref": "#/components/schemas/TaxBreakdownInfo"
|
|
2212
|
-
}
|
|
2213
|
-
]
|
|
2385
|
+
"$ref": "#/components/schemas/TaxBreakdownInfo"
|
|
2214
2386
|
}
|
|
2215
2387
|
}
|
|
2216
2388
|
},
|
|
@@ -3478,6 +3650,86 @@
|
|
|
3478
3650
|
"_updated_at": "2022-06-03T16:29:46.303Z"
|
|
3479
3651
|
}
|
|
3480
3652
|
},
|
|
3653
|
+
"order-with-simple-prices-request": {
|
|
3654
|
+
"value": {
|
|
3655
|
+
"order_number": "OR 2022/742701",
|
|
3656
|
+
"status": "quote",
|
|
3657
|
+
"source": {
|
|
3658
|
+
"title": "manual",
|
|
3659
|
+
"href": null
|
|
3660
|
+
},
|
|
3661
|
+
"source_type": "manual",
|
|
3662
|
+
"_schema": "order",
|
|
3663
|
+
"_title": "OR 2022/742701",
|
|
3664
|
+
"expires_at": "2022-06-30T16:17:00.000Z",
|
|
3665
|
+
"line_items": [
|
|
3666
|
+
{
|
|
3667
|
+
"price_id": "9c36c23b-1574-4193-beff-b1b5e1124bc7",
|
|
3668
|
+
"product_id": "a7f4771a-6368-4d77-bb01-71f1e4902de5",
|
|
3669
|
+
"quantity": 16
|
|
3670
|
+
},
|
|
3671
|
+
{
|
|
3672
|
+
"price_id": "146aa2cc-f267-4d5e-bda4-cbe2669b7741",
|
|
3673
|
+
"product_id": "a7f4771a-6368-4d77-bb01-71f1e4902de5",
|
|
3674
|
+
"quantity": 4
|
|
3675
|
+
},
|
|
3676
|
+
{
|
|
3677
|
+
"price_id": "d88a8763-3e3d-4fc7-a7a5-2bc9117148bf",
|
|
3678
|
+
"product_id": "065d6618-cc59-45f4-8e3a-700edf6813c3",
|
|
3679
|
+
"quantity": 1
|
|
3680
|
+
},
|
|
3681
|
+
{
|
|
3682
|
+
"price_id": "e1ddf75a-d0d1-40b4-a07e-56e292867c88",
|
|
3683
|
+
"product_id": "5b9f05b7-f0f8-49c2-8a8d-0f8f923d6382",
|
|
3684
|
+
"quantity": 1
|
|
3685
|
+
}
|
|
3686
|
+
],
|
|
3687
|
+
"currency": "EUR",
|
|
3688
|
+
"payment_method": [
|
|
3689
|
+
{
|
|
3690
|
+
"type": "IBAN",
|
|
3691
|
+
"details": {}
|
|
3692
|
+
}
|
|
3693
|
+
],
|
|
3694
|
+
"billing_contact": {
|
|
3695
|
+
"$relation": [
|
|
3696
|
+
{
|
|
3697
|
+
"entity_id": "1834a54e-b68f-4f7f-a98a-fe16f11bc2a5",
|
|
3698
|
+
"_tags": []
|
|
3699
|
+
}
|
|
3700
|
+
]
|
|
3701
|
+
},
|
|
3702
|
+
"billing_first_name": "Joao",
|
|
3703
|
+
"billing_last_name": "Pinho",
|
|
3704
|
+
"billing_email": "j.pinho@epilot.cloud",
|
|
3705
|
+
"billing_company_name": "epilot cloud",
|
|
3706
|
+
"billing_address": [
|
|
3707
|
+
{
|
|
3708
|
+
"_tags": [],
|
|
3709
|
+
"street": "Im Media Park",
|
|
3710
|
+
"street_number": "8a",
|
|
3711
|
+
"postal_code": "52000",
|
|
3712
|
+
"city": "Cologne",
|
|
3713
|
+
"country": "DE",
|
|
3714
|
+
"additional_info": ""
|
|
3715
|
+
}
|
|
3716
|
+
],
|
|
3717
|
+
"delivery_address": [],
|
|
3718
|
+
"dates": [
|
|
3719
|
+
{
|
|
3720
|
+
"_tags": [
|
|
3721
|
+
"Instalation Date"
|
|
3722
|
+
],
|
|
3723
|
+
"dates": "",
|
|
3724
|
+
"value": "2022-06-30T16:29:00.000Z"
|
|
3725
|
+
}
|
|
3726
|
+
],
|
|
3727
|
+
"_id": "4c7c9562-f8f0-4af0-a3a6-6aebc5571a6e",
|
|
3728
|
+
"_org": "728",
|
|
3729
|
+
"_created_at": "2022-06-03T16:29:46.303Z",
|
|
3730
|
+
"_updated_at": "2022-06-03T16:29:46.303Z"
|
|
3731
|
+
}
|
|
3732
|
+
},
|
|
3481
3733
|
"order-with-composite-prices": {
|
|
3482
3734
|
"value": {
|
|
3483
3735
|
"metadata": [
|
|
@@ -3580,7 +3832,7 @@
|
|
|
3580
3832
|
"_schema": "tax",
|
|
3581
3833
|
"_title": "Tax Without Behaviour",
|
|
3582
3834
|
"description": "Without Behaviour",
|
|
3583
|
-
"rate":
|
|
3835
|
+
"rate": 6,
|
|
3584
3836
|
"_org": "739224",
|
|
3585
3837
|
"_created_at": "2022-02-07T14:49:08.831Z",
|
|
3586
3838
|
"_updated_at": "2022-02-07T14:49:08.831Z"
|
|
@@ -3811,7 +4063,7 @@
|
|
|
3811
4063
|
"_schema": "tax",
|
|
3812
4064
|
"_title": "Tax Without Behaviour",
|
|
3813
4065
|
"description": "Without Behaviour",
|
|
3814
|
-
"rate":
|
|
4066
|
+
"rate": 6,
|
|
3815
4067
|
"_org": "739224",
|
|
3816
4068
|
"_created_at": "2022-02-07T14:49:08.831Z",
|
|
3817
4069
|
"_updated_at": "2022-02-07T14:49:08.831Z"
|
|
@@ -4152,12 +4404,12 @@
|
|
|
4152
4404
|
"product_id": "6241487f-b7fd-428b-ab92-24ee0b37fd84",
|
|
4153
4405
|
"taxes": [
|
|
4154
4406
|
{
|
|
4155
|
-
"amount":
|
|
4407
|
+
"amount": 600,
|
|
4156
4408
|
"tax": {
|
|
4157
4409
|
"active": true,
|
|
4158
4410
|
"behavior": "Exclusive",
|
|
4159
4411
|
"description": "Without Behaviour",
|
|
4160
|
-
"rate":
|
|
4412
|
+
"rate": 6,
|
|
4161
4413
|
"region": "DE",
|
|
4162
4414
|
"type": "VAT",
|
|
4163
4415
|
"_created_at": "2022-02-07T14:49:08.831Z",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epilot/pricing-client",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.6",
|
|
4
4
|
"description": "Client for epilot Pricing APIs",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"webpack": "~5.18.0",
|
|
70
70
|
"webpack-cli": "^4.4.0"
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "a00557cc68f2e87db088ac7a84bea09471348907"
|
|
73
73
|
}
|