@faststore/core 2.2.45 → 2.2.46
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/.next/BUILD_ID +1 -1
- package/.next/build-manifest.json +2 -2
- package/.next/cache/.tsbuildinfo +1 -1
- package/.next/cache/config.json +3 -3
- package/.next/cache/eslint/.cache_1gneedd +1 -1
- package/.next/cache/next-server.js.nft.json +1 -1
- package/.next/cache/webpack/client-production/0.pack +0 -0
- package/.next/cache/webpack/client-production/index.pack +0 -0
- package/.next/cache/webpack/server-production/0.pack +0 -0
- package/.next/cache/webpack/server-production/index.pack +0 -0
- package/.next/next-server.js.nft.json +1 -1
- package/.next/prerender-manifest.json +1 -1
- package/.next/routes-manifest.json +1 -1
- package/.next/server/chunks/350.js +56 -92
- package/.next/server/middleware-build-manifest.js +1 -1
- package/.next/server/pages/404.js.nft.json +1 -1
- package/.next/server/pages/500.js.nft.json +1 -1
- package/.next/server/pages/[...slug].js.nft.json +1 -1
- package/.next/server/pages/[slug]/p.js.nft.json +1 -1
- package/.next/server/pages/_app.js.nft.json +1 -1
- package/.next/server/pages/_error.js.nft.json +1 -1
- package/.next/server/pages/account.js.nft.json +1 -1
- package/.next/server/pages/api/graphql.js +61 -92
- package/.next/server/pages/checkout.js.nft.json +1 -1
- package/.next/server/pages/en-US/404.html +2 -2
- package/.next/server/pages/en-US/500.html +2 -2
- package/.next/server/pages/en-US/account.html +2 -2
- package/.next/server/pages/en-US/checkout.html +2 -2
- package/.next/server/pages/en-US/login.html +2 -2
- package/.next/server/pages/en-US/s.html +2 -2
- package/.next/server/pages/en-US.html +2 -2
- package/.next/server/pages/index.js.nft.json +1 -1
- package/.next/server/pages/login.js.nft.json +1 -1
- package/.next/server/pages/s.js.nft.json +1 -1
- package/.next/trace +80 -80
- package/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-test.log +10 -10
- package/package.json +3 -3
- package/src/pages/api/graphql.ts +4 -0
- package/src/server/index.ts +5 -2
- /package/.next/static/{yZT3-xw6wnppSjWwARSPZ → eV8jrpavA54yphVO28l8z}/_buildManifest.js +0 -0
- /package/.next/static/{yZT3-xw6wnppSjWwARSPZ → eV8jrpavA54yphVO28l8z}/_ssgManifest.js +0 -0
|
@@ -143,7 +143,7 @@ __webpack_require__.a(module, async (__webpack_handle_async_dependencies__, __we
|
|
|
143
143
|
/* harmony export */ "yd": () => (/* binding */ getResolvers)
|
|
144
144
|
/* harmony export */ });
|
|
145
145
|
/* unused harmony exports getTypeDefs, getSchema */
|
|
146
|
-
/* harmony import */ var _platforms_vtex__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
146
|
+
/* harmony import */ var _platforms_vtex__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1737);
|
|
147
147
|
/* harmony import */ var _typeDefs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1419);
|
|
148
148
|
/* harmony import */ var _directives_cacheControl__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(2466);
|
|
149
149
|
/* harmony import */ var _platforms_errors__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(125);
|
|
@@ -218,7 +218,7 @@ const isBadRequestError = (error) => error?.extensions?.type === 'BadRequestErro
|
|
|
218
218
|
|
|
219
219
|
/***/ }),
|
|
220
220
|
|
|
221
|
-
/***/
|
|
221
|
+
/***/ 1737:
|
|
222
222
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
223
223
|
|
|
224
224
|
|
|
@@ -237,15 +237,18 @@ var esm_package = __webpack_require__(5713);
|
|
|
237
237
|
|
|
238
238
|
|
|
239
239
|
const USER_AGENT = `${esm_package/* name */.u2}@${esm_package/* version */.i8}`;
|
|
240
|
-
const fetchAPI = async (info, init) => {
|
|
240
|
+
const fetchAPI = async (info, init, options) => {
|
|
241
241
|
const response = await external_isomorphic_unfetch_default()(info, {
|
|
242
242
|
...init,
|
|
243
243
|
headers: {
|
|
244
|
-
...init?.headers,
|
|
244
|
+
...(init?.headers ?? {}),
|
|
245
245
|
'User-Agent': USER_AGENT,
|
|
246
246
|
},
|
|
247
247
|
});
|
|
248
248
|
if (response.ok) {
|
|
249
|
+
if (options?.storeCookies) {
|
|
250
|
+
options.storeCookies(response.headers);
|
|
251
|
+
}
|
|
249
252
|
return response.status !== 204 ? response.json() : undefined;
|
|
250
253
|
}
|
|
251
254
|
console.error(info, init, response);
|
|
@@ -253,8 +256,21 @@ const fetchAPI = async (info, init) => {
|
|
|
253
256
|
throw new Error(text);
|
|
254
257
|
};
|
|
255
258
|
//# sourceMappingURL=fetch.js.map
|
|
259
|
+
;// CONCATENATED MODULE: ../api/dist/esm/src/platforms/vtex/utils/cookies.js
|
|
260
|
+
const MATCH_DOMAIN_REGEXP = /(?:^|;\s*)(?:domain=)([^;]+)/i;
|
|
261
|
+
const setCookie = (headers, ctx) => {
|
|
262
|
+
const faststoreAPIHostname = new URL(`https://${ctx.headers.host}`).hostname;
|
|
263
|
+
headers
|
|
264
|
+
.getSetCookie()
|
|
265
|
+
.forEach((cookie) => ctx.storage.cookies.add(
|
|
266
|
+
// Replaces original cookie domain for FastStore API's domain hostname
|
|
267
|
+
cookie.replace(MATCH_DOMAIN_REGEXP, `; domain=${faststoreAPIHostname}`)));
|
|
268
|
+
};
|
|
269
|
+
const getStoreCookie = (ctx) => (headers) => setCookie(headers, ctx);
|
|
270
|
+
//# sourceMappingURL=cookies.js.map
|
|
256
271
|
;// CONCATENATED MODULE: ../api/dist/esm/src/platforms/vtex/clients/commerce/index.js
|
|
257
272
|
|
|
273
|
+
|
|
258
274
|
const BASE_INIT = {
|
|
259
275
|
method: 'POST',
|
|
260
276
|
headers: {
|
|
@@ -263,17 +279,20 @@ const BASE_INIT = {
|
|
|
263
279
|
};
|
|
264
280
|
const VtexCommerce = ({ account, environment, incrementAddress }, ctx) => {
|
|
265
281
|
const base = `https://${account}.${environment}.com.br`;
|
|
282
|
+
const storeCookies = getStoreCookie(ctx);
|
|
266
283
|
return {
|
|
267
284
|
catalog: {
|
|
268
|
-
salesChannel: (sc) => fetchAPI(`${base}/api/catalog_system/pub/saleschannel/${sc}
|
|
285
|
+
salesChannel: (sc) => fetchAPI(`${base}/api/catalog_system/pub/saleschannel/${sc}`, undefined, { storeCookies }),
|
|
269
286
|
brand: {
|
|
270
|
-
list: () => fetchAPI(`${base}/api/catalog_system/pub/brand/list
|
|
287
|
+
list: () => fetchAPI(`${base}/api/catalog_system/pub/brand/list`, undefined, {
|
|
288
|
+
storeCookies,
|
|
289
|
+
}),
|
|
271
290
|
},
|
|
272
291
|
category: {
|
|
273
|
-
tree: (depth = 3) => fetchAPI(`${base}/api/catalog_system/pub/category/tree/${depth}
|
|
292
|
+
tree: (depth = 3) => fetchAPI(`${base}/api/catalog_system/pub/category/tree/${depth}`, undefined, { storeCookies }),
|
|
274
293
|
},
|
|
275
294
|
portal: {
|
|
276
|
-
pagetype: (slug) => fetchAPI(`${base}/api/catalog_system/pub/portal/pagetype/${slug}
|
|
295
|
+
pagetype: (slug) => fetchAPI(`${base}/api/catalog_system/pub/portal/pagetype/${slug}`, undefined, { storeCookies }),
|
|
277
296
|
},
|
|
278
297
|
products: {
|
|
279
298
|
crossselling: ({ type, productId, groupByProduct = true, }) => {
|
|
@@ -281,7 +300,7 @@ const VtexCommerce = ({ account, environment, incrementAddress }, ctx) => {
|
|
|
281
300
|
sc: ctx.storage.channel.salesChannel,
|
|
282
301
|
groupByProduct: groupByProduct.toString(),
|
|
283
302
|
});
|
|
284
|
-
return fetchAPI(`${base}/api/catalog_system/pub/products/crossselling/${type}/${productId}?${params}
|
|
303
|
+
return fetchAPI(`${base}/api/catalog_system/pub/products/crossselling/${type}/${productId}?${params}`, undefined, { storeCookies });
|
|
285
304
|
},
|
|
286
305
|
},
|
|
287
306
|
},
|
|
@@ -293,7 +312,7 @@ const VtexCommerce = ({ account, environment, incrementAddress }, ctx) => {
|
|
|
293
312
|
return fetchAPI(`${base}/api/checkout/pub/orderForms/simulation?${params.toString()}`, {
|
|
294
313
|
...BASE_INIT,
|
|
295
314
|
body: JSON.stringify(args),
|
|
296
|
-
});
|
|
315
|
+
}, { storeCookies });
|
|
297
316
|
},
|
|
298
317
|
shippingData: ({ id, index, deliveryMode, selectedAddresses, }, setDeliveryWindow) => {
|
|
299
318
|
const deliveryWindow = setDeliveryWindow
|
|
@@ -319,7 +338,7 @@ const VtexCommerce = ({ account, environment, incrementAddress }, ctx) => {
|
|
|
319
338
|
'content-type': 'application/json',
|
|
320
339
|
cookie: ctx.headers.cookie,
|
|
321
340
|
},
|
|
322
|
-
});
|
|
341
|
+
}, { storeCookies });
|
|
323
342
|
},
|
|
324
343
|
orderForm: ({ id, refreshOutdatedData = true, channel = ctx.storage.channel, }) => {
|
|
325
344
|
const { salesChannel } = channel;
|
|
@@ -336,47 +355,37 @@ const VtexCommerce = ({ account, environment, incrementAddress }, ctx) => {
|
|
|
336
355
|
},
|
|
337
356
|
}
|
|
338
357
|
: BASE_INIT;
|
|
339
|
-
return fetchAPI(`${base}/api/checkout/pub/orderForm/${id}?${params.toString()}`, requestInit);
|
|
358
|
+
return fetchAPI(`${base}/api/checkout/pub/orderForm/${id}?${params.toString()}`, requestInit, { storeCookies });
|
|
340
359
|
},
|
|
341
360
|
clearOrderFormMessages: ({ id }) => {
|
|
342
361
|
return fetchAPI(`${base}/api/checkout/pub/orderForm/${id}/messages/clear`, {
|
|
343
362
|
...BASE_INIT,
|
|
344
363
|
body: '{}',
|
|
345
|
-
});
|
|
364
|
+
}, { storeCookies });
|
|
346
365
|
},
|
|
347
366
|
updateOrderFormItems: ({ id, orderItems, allowOutdatedData = 'paymentData', salesChannel = ctx.storage.channel.salesChannel, shouldSplitItem = true, }) => {
|
|
348
367
|
const params = new URLSearchParams({
|
|
349
368
|
allowOutdatedData,
|
|
350
369
|
sc: salesChannel,
|
|
351
370
|
});
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
method: 'PATCH',
|
|
364
|
-
}
|
|
365
|
-
: {
|
|
366
|
-
headers: {
|
|
367
|
-
'content-type': 'application/json',
|
|
368
|
-
},
|
|
369
|
-
body: items,
|
|
370
|
-
method: 'PATCH',
|
|
371
|
-
};
|
|
372
|
-
return fetchAPI(`${base}/api/checkout/pub/orderForm/${id}/items?${params}`, requestInit);
|
|
371
|
+
return fetchAPI(`${base}/api/checkout/pub/orderForm/${id}/items?${params}`, {
|
|
372
|
+
headers: {
|
|
373
|
+
'content-type': 'application/json',
|
|
374
|
+
cookie: ctx.headers?.cookie,
|
|
375
|
+
},
|
|
376
|
+
body: JSON.stringify({
|
|
377
|
+
orderItems,
|
|
378
|
+
noSplitItem: !shouldSplitItem,
|
|
379
|
+
}),
|
|
380
|
+
method: 'PATCH',
|
|
381
|
+
}, { storeCookies });
|
|
373
382
|
},
|
|
374
383
|
setCustomData: ({ id, appId, key, value, }) => {
|
|
375
384
|
return fetchAPI(`${base}/api/checkout/pub/orderForm/${id}/customData/${appId}/${key}`, {
|
|
376
385
|
...BASE_INIT,
|
|
377
386
|
body: JSON.stringify({ value }),
|
|
378
387
|
method: 'PUT',
|
|
379
|
-
});
|
|
388
|
+
}, { storeCookies });
|
|
380
389
|
},
|
|
381
390
|
region: async ({ postalCode, geoCoordinates, country, salesChannel, }) => {
|
|
382
391
|
const params = new URLSearchParams({
|
|
@@ -387,10 +396,10 @@ const VtexCommerce = ({ account, environment, incrementAddress }, ctx) => {
|
|
|
387
396
|
? params.append('postalCode', postalCode)
|
|
388
397
|
: params.append('geoCoordinates', `${geoCoordinates?.longitude};${geoCoordinates?.latitude}`);
|
|
389
398
|
const url = `${base}/api/checkout/pub/regions/?${params.toString()}`;
|
|
390
|
-
return fetchAPI(url);
|
|
399
|
+
return fetchAPI(url, undefined, { storeCookies });
|
|
391
400
|
},
|
|
392
401
|
address: async ({ postalCode, country, }) => {
|
|
393
|
-
return fetchAPI(`${base}/api/checkout/pub/postal-code/${country}/${postalCode}
|
|
402
|
+
return fetchAPI(`${base}/api/checkout/pub/postal-code/${country}/${postalCode}`, undefined, { storeCookies });
|
|
394
403
|
},
|
|
395
404
|
},
|
|
396
405
|
session: (search) => {
|
|
@@ -403,26 +412,28 @@ const VtexCommerce = ({ account, environment, incrementAddress }, ctx) => {
|
|
|
403
412
|
cookie: ctx.headers.cookie,
|
|
404
413
|
},
|
|
405
414
|
body: '{}',
|
|
406
|
-
});
|
|
415
|
+
}, { storeCookies });
|
|
407
416
|
},
|
|
408
417
|
subscribeToNewsletter: (data) => {
|
|
409
418
|
return fetchAPI(`${base}/api/dataentities/NL/documents/`, {
|
|
410
419
|
...BASE_INIT,
|
|
411
420
|
body: JSON.stringify({ ...data, isNewsletterOptIn: true }),
|
|
412
421
|
method: 'PATCH',
|
|
413
|
-
});
|
|
422
|
+
}, { storeCookies });
|
|
414
423
|
},
|
|
415
424
|
};
|
|
416
425
|
};
|
|
417
426
|
//# sourceMappingURL=index.js.map
|
|
418
427
|
;// CONCATENATED MODULE: ../api/dist/esm/src/platforms/vtex/clients/search/index.js
|
|
419
428
|
|
|
429
|
+
|
|
420
430
|
const POLICY_KEY = 'trade-policy';
|
|
421
431
|
const REGION_KEY = 'region-id';
|
|
422
432
|
const CHANNEL_KEYS = new Set([POLICY_KEY, REGION_KEY]);
|
|
423
433
|
const isFacetBoolean = (facet) => facet.type === 'TEXT';
|
|
424
434
|
const IntelligentSearch = ({ account, environment, hideUnavailableItems }, ctx) => {
|
|
425
435
|
const base = `https://${account}.${environment}.com.br/api/io`;
|
|
436
|
+
const storeCookies = getStoreCookie(ctx);
|
|
426
437
|
const getPolicyFacet = () => {
|
|
427
438
|
const { salesChannel } = ctx.storage.channel;
|
|
428
439
|
if (!salesChannel) {
|
|
@@ -474,7 +485,7 @@ const IntelligentSearch = ({ account, environment, hideUnavailableItems }, ctx)
|
|
|
474
485
|
const pathname = addDefaultFacets(selectedFacets)
|
|
475
486
|
.map(({ key, value }) => `${key}/${value}`)
|
|
476
487
|
.join('/');
|
|
477
|
-
return fetchAPI(`${base}/_v/api/intelligent-search/${type}/${pathname}?${params.toString()}
|
|
488
|
+
return fetchAPI(`${base}/_v/api/intelligent-search/${type}/${pathname}?${params.toString()}`, undefined, { storeCookies });
|
|
478
489
|
};
|
|
479
490
|
const products = (args) => search({ ...args, type: 'product_search' });
|
|
480
491
|
const suggestedTerms = (args) => {
|
|
@@ -482,13 +493,13 @@ const IntelligentSearch = ({ account, environment, hideUnavailableItems }, ctx)
|
|
|
482
493
|
query: args.query?.toString() ?? '',
|
|
483
494
|
locale: ctx.storage.locale,
|
|
484
495
|
});
|
|
485
|
-
return fetchAPI(`${base}/_v/api/intelligent-search/search_suggestions?${params.toString()}
|
|
496
|
+
return fetchAPI(`${base}/_v/api/intelligent-search/search_suggestions?${params.toString()}`, undefined, { storeCookies });
|
|
486
497
|
};
|
|
487
498
|
const topSearches = () => {
|
|
488
499
|
const params = new URLSearchParams({
|
|
489
500
|
locale: ctx.storage.locale,
|
|
490
501
|
});
|
|
491
|
-
return fetchAPI(`${base}/_v/api/intelligent-search/top_searches?${params.toString()}
|
|
502
|
+
return fetchAPI(`${base}/_v/api/intelligent-search/top_searches?${params.toString()}`, undefined, { storeCookies });
|
|
492
503
|
};
|
|
493
504
|
const facets = (args) => search({ ...args, type: 'facets' });
|
|
494
505
|
return {
|
|
@@ -499,64 +510,15 @@ const IntelligentSearch = ({ account, environment, hideUnavailableItems }, ctx)
|
|
|
499
510
|
};
|
|
500
511
|
};
|
|
501
512
|
//# sourceMappingURL=index.js.map
|
|
502
|
-
;// CONCATENATED MODULE: ../api/dist/esm/src/platforms/vtex/clients/sp/index.js
|
|
503
|
-
/**
|
|
504
|
-
* Client for SP, Intelligent search's analytics event API
|
|
505
|
-
* More info at: https://www.notion.so/vtexhandbook/Event-API-Documentation-48eee26730cf4d7f80f8fd7262231f84
|
|
506
|
-
*/
|
|
507
|
-
|
|
508
|
-
const THIRTY_MINUTES_S = 30 * 60;
|
|
509
|
-
const ONE_YEAR_S = 365 * 24 * 3600;
|
|
510
|
-
const randomUUID = () => (Math.random() * 1e6).toFixed(0);
|
|
511
|
-
const timelapsed = (past) => (Date.now() - past) / 1e3;
|
|
512
|
-
const createId = (expiresSecond) => {
|
|
513
|
-
let payload = randomUUID();
|
|
514
|
-
let createdAt = Date.now();
|
|
515
|
-
return () => {
|
|
516
|
-
if (timelapsed(createdAt) > expiresSecond) {
|
|
517
|
-
payload = randomUUID();
|
|
518
|
-
createdAt = Date.now();
|
|
519
|
-
}
|
|
520
|
-
return payload;
|
|
521
|
-
};
|
|
522
|
-
};
|
|
523
|
-
const user = {
|
|
524
|
-
anonymous: createId(ONE_YEAR_S),
|
|
525
|
-
session: createId(THIRTY_MINUTES_S),
|
|
526
|
-
};
|
|
527
|
-
const SP = ({ account }, _) => {
|
|
528
|
-
const base = `https://sp.vtex.com/event-api/v1/${account}/event`;
|
|
529
|
-
const sendEvent = (options) => {
|
|
530
|
-
return fetchAPI(base, {
|
|
531
|
-
method: 'POST',
|
|
532
|
-
body: JSON.stringify({
|
|
533
|
-
...options,
|
|
534
|
-
agent: '@faststore/api',
|
|
535
|
-
anonymous: user.anonymous(), // 'zZlNhqz1vFJP6iPG5Oqtt'
|
|
536
|
-
session: user.session(), // 'Om1TNluGvgmSgU5OOTvkkd'
|
|
537
|
-
}),
|
|
538
|
-
headers: {
|
|
539
|
-
'content-type': 'application/json',
|
|
540
|
-
},
|
|
541
|
-
});
|
|
542
|
-
};
|
|
543
|
-
return {
|
|
544
|
-
sendEvent,
|
|
545
|
-
};
|
|
546
|
-
};
|
|
547
|
-
//# sourceMappingURL=index.js.map
|
|
548
513
|
;// CONCATENATED MODULE: ../api/dist/esm/src/platforms/vtex/clients/index.js
|
|
549
514
|
|
|
550
515
|
|
|
551
|
-
|
|
552
516
|
const getClients = (options, ctx) => {
|
|
553
517
|
const search = IntelligentSearch(options, ctx);
|
|
554
518
|
const commerce = VtexCommerce(options, ctx);
|
|
555
|
-
const sp = SP(options, ctx);
|
|
556
519
|
return {
|
|
557
520
|
search,
|
|
558
521
|
commerce,
|
|
559
|
-
sp,
|
|
560
522
|
};
|
|
561
523
|
};
|
|
562
524
|
//# sourceMappingURL=index.js.map
|
|
@@ -2421,6 +2383,7 @@ const getContextFactory = (options) => (ctx) => {
|
|
|
2421
2383
|
channel: ChannelMarshal.parse(options.channel),
|
|
2422
2384
|
flags: options.flags ?? {},
|
|
2423
2385
|
locale: options.locale,
|
|
2386
|
+
cookies: new Set()
|
|
2424
2387
|
};
|
|
2425
2388
|
ctx.clients = getClients(options, ctx);
|
|
2426
2389
|
ctx.loaders = getLoaders(options, ctx);
|
|
@@ -2813,6 +2776,11 @@ const handler = async (request, response) => {
|
|
|
2813
2776
|
}
|
|
2814
2777
|
|
|
2815
2778
|
const cacheControl = !hasErrors && extensions.cacheControl ? (0,_faststore_api__WEBPACK_IMPORTED_MODULE_0__/* .stringifyCacheControl */ .Ve)(extensions.cacheControl) : 'no-cache, no-store';
|
|
2779
|
+
|
|
2780
|
+
if (extensions.cookies.size > 0 && !hasErrors) {
|
|
2781
|
+
response.setHeader('set-cookie', Array.from(extensions.cookies));
|
|
2782
|
+
}
|
|
2783
|
+
|
|
2816
2784
|
response.setHeader('cache-control', cacheControl);
|
|
2817
2785
|
response.setHeader('content-type', 'application/json');
|
|
2818
2786
|
response.send(JSON.stringify({
|
|
@@ -2939,6 +2907,7 @@ const execute = async (options, envelopContext = {
|
|
|
2939
2907
|
data,
|
|
2940
2908
|
errors,
|
|
2941
2909
|
extensions: {
|
|
2910
|
+
cookies: contextValue.storage.cookies,
|
|
2942
2911
|
cacheControl: contextValue.cacheControl
|
|
2943
2912
|
}
|
|
2944
2913
|
};
|
|
@@ -2975,7 +2944,7 @@ const apiOptions = {
|
|
|
2975
2944
|
/***/ 5713:
|
|
2976
2945
|
/***/ ((module) => {
|
|
2977
2946
|
|
|
2978
|
-
module.exports = JSON.parse('{"u2":"@faststore/api","i8":"2.2.
|
|
2947
|
+
module.exports = JSON.parse('{"u2":"@faststore/api","i8":"2.2.45"}');
|
|
2979
2948
|
|
|
2980
2949
|
/***/ }),
|
|
2981
2950
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":1,"files":["../webpack-runtime.js","../chunks/676.js","../chunks/825.js","../chunks/183.js","../chunks/177.js","../chunks/74.js","../chunks/779.js","../chunks/988.js","../chunks/53.js","../chunks/693.js","../chunks/585.js","../chunks/854.js","../chunks/312.js","../../package.json","../../../node_modules/deepmerge/package.json","../../../node_modules/chalk/package.json","../../../node_modules/next/dist/shared/lib/head.js","../../../node_modules/next/dist/shared/lib/app-router-context.js","../../../node_modules/next/dist/shared/lib/head-manager-context.js","../../../node_modules/next/dist/shared/lib/image-blur-svg.js","../../../node_modules/next/dist/shared/lib/image-config-context.js","../../../node_modules/next/dist/shared/lib/image-config.js","../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../node_modules/next/dist/shared/lib/mitt.js","../../../node_modules/next/dist/shared/lib/router-context.js","../../../node_modules/next/dist/shared/lib/utils.js","../../../node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js","../../../node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","../../../node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","../../../node_modules/next/dist/shared/lib/router/utils/add-locale.js","../../../node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/compare-states.js","../../../node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","../../../node_modules/next/dist/shared/lib/router/utils/format-url.js","../../../node_modules/next/dist/shared/lib/router/utils/get-asset-path-from-route.js","../../../node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","../../../node_modules/next/dist/shared/lib/router/utils/is-bot.js","../../../node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-path.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js","../../../node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/querystring.js","../../../node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","../../../node_modules/next/dist/shared/lib/router/utils/resolve-rewrites.js","../../../node_modules/next/dist/shared/lib/router/utils/route-matcher.js","../../../node_modules/next/dist/shared/lib/router/utils/route-regex.js","../../../node_modules/deepmerge/dist/cjs.js","../../../node_modules/chalk/source/index.js","../../../node_modules/next/router.js","../../../node_modules/next/package.json","../../../node_modules/chalk/source/utilities.js","../../../node_modules/next/dist/client/remove-base-path.js","../../../node_modules/chalk/source/vendor/ansi-styles/index.js","../../../node_modules/chalk/source/vendor/supports-color/index.js","../../../node_modules/next/dist/client/router.js","../../../node_modules/next/dist/client/has-base-path.js","../../../node_modules/next/dist/shared/lib/side-effect.js","../../../node_modules/next/dist/shared/lib/amp-context.js","../../../node_modules/next/dist/shared/lib/amp-mode.js","../../../node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","../../../node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","../../../node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","../../../node_modules/next/dist/shared/lib/
|
|
1
|
+
{"version":1,"files":["../webpack-runtime.js","../chunks/676.js","../chunks/825.js","../chunks/183.js","../chunks/177.js","../chunks/74.js","../chunks/779.js","../chunks/988.js","../chunks/53.js","../chunks/693.js","../chunks/585.js","../chunks/854.js","../chunks/312.js","../../package.json","../../../node_modules/deepmerge/package.json","../../../node_modules/chalk/package.json","../../../node_modules/next/dist/shared/lib/head.js","../../../node_modules/next/dist/shared/lib/app-router-context.js","../../../node_modules/next/dist/shared/lib/head-manager-context.js","../../../node_modules/next/dist/shared/lib/image-blur-svg.js","../../../node_modules/next/dist/shared/lib/image-config-context.js","../../../node_modules/next/dist/shared/lib/image-config.js","../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../node_modules/next/dist/shared/lib/mitt.js","../../../node_modules/next/dist/shared/lib/router-context.js","../../../node_modules/next/dist/shared/lib/utils.js","../../../node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js","../../../node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","../../../node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","../../../node_modules/next/dist/shared/lib/router/utils/add-locale.js","../../../node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/compare-states.js","../../../node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","../../../node_modules/next/dist/shared/lib/router/utils/format-url.js","../../../node_modules/next/dist/shared/lib/router/utils/get-asset-path-from-route.js","../../../node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","../../../node_modules/next/dist/shared/lib/router/utils/is-bot.js","../../../node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-path.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js","../../../node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/querystring.js","../../../node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","../../../node_modules/next/dist/shared/lib/router/utils/resolve-rewrites.js","../../../node_modules/next/dist/shared/lib/router/utils/route-matcher.js","../../../node_modules/next/dist/shared/lib/router/utils/route-regex.js","../../../node_modules/deepmerge/dist/cjs.js","../../../node_modules/chalk/source/index.js","../../../node_modules/next/router.js","../../../node_modules/next/package.json","../../../node_modules/chalk/source/utilities.js","../../../node_modules/next/dist/client/remove-base-path.js","../../../node_modules/chalk/source/vendor/ansi-styles/index.js","../../../node_modules/chalk/source/vendor/supports-color/index.js","../../../node_modules/next/dist/client/router.js","../../../node_modules/next/dist/client/has-base-path.js","../../../node_modules/next/dist/shared/lib/side-effect.js","../../../node_modules/next/dist/shared/lib/amp-context.js","../../../node_modules/next/dist/shared/lib/amp-mode.js","../../../node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","../../../node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","../../../node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","../../../node_modules/next/dist/shared/lib/escape-regexp.js","../../../node_modules/next/dist/shared/lib/router/utils/path-match.js","../../../node_modules/next/dist/shared/lib/router/utils/prepare-destination.js","../../../node_modules/next/dist/shared/lib/router/router.js","../../../node_modules/next/dist/lib/is-error.js","../../../node_modules/next/dist/shared/lib/router/utils/index.js","../../../node_modules/next/dist/client/normalize-trailing-slash.js","../../../node_modules/next/dist/client/route-loader.js","../../../node_modules/next/dist/client/script.js","../../../node_modules/next/dist/client/detect-domain-locale.js","../../../node_modules/next/dist/client/add-locale.js","../../../node_modules/next/dist/client/remove-locale.js","../../../node_modules/next/dist/client/add-base-path.js","../../../node_modules/next/dist/client/trusted-types.js","../../../node_modules/next/dist/client/request-idle-callback.js","../../../node_modules/next/dist/client/head-manager.js","../../../node_modules/next/dist/client/with-router.js","../../../node_modules/@swc/helpers/lib/_extends.js","../../../node_modules/@swc/helpers/package.json","../../../node_modules/@swc/helpers/lib/_interop_require_default.js","../../../node_modules/@swc/helpers/lib/_interop_require_wildcard.js","../../../node_modules/@swc/helpers/lib/_async_to_generator.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-url.js","../../../node_modules/@swc/helpers/lib/_object_without_properties_loose.js","../../../node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","../../../node_modules/next/dist/compiled/path-to-regexp/index.js","../../../node_modules/next/dist/compiled/react-is/package.json","../../../node_modules/next/dist/compiled/react-is/index.js","../../../node_modules/next/dist/compiled/react-is/cjs/react-is.production.min.js","../../../node_modules/next/dist/compiled/react-is/cjs/react-is.development.js","../../../src/components/region/RegionModal/index.ts","../../../src/components/cart/CartSidebar/index.ts","../../../src/components/search/SearchDropdown/index.ts","../../../package.json"]}
|