@faststore/core 3.46.0 → 3.47.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/.next/BUILD_ID +1 -1
  2. package/.next/build-manifest.json +22 -22
  3. package/.next/cache/.tsbuildinfo +1 -1
  4. package/.next/cache/config.json +3 -3
  5. package/.next/cache/webpack/client-production/0.pack +0 -0
  6. package/.next/cache/webpack/client-production/index.pack +0 -0
  7. package/.next/cache/webpack/server-production/0.pack +0 -0
  8. package/.next/cache/webpack/server-production/index.pack +0 -0
  9. package/.next/prerender-manifest.js +1 -1
  10. package/.next/prerender-manifest.json +1 -1
  11. package/.next/react-loadable-manifest.json +1 -1
  12. package/.next/routes-manifest.json +1 -1
  13. package/.next/server/chunks/4559.js +2 -2
  14. package/.next/server/chunks/5636.js +2 -2
  15. package/.next/server/functions-config-manifest.json +1 -1
  16. package/.next/server/middleware-build-manifest.js +1 -1
  17. package/.next/server/middleware-react-loadable-manifest.js +1 -1
  18. package/.next/server/pages/account/orders/[id].js +1 -1
  19. package/.next/server/pages/api/graphql.js +2 -2
  20. package/.next/server/pages/en-US/404.html +2 -2
  21. package/.next/server/pages/en-US/500.html +2 -2
  22. package/.next/server/pages/en-US/account/403.html +2 -2
  23. package/.next/server/pages/en-US/account/404.html +2 -2
  24. package/.next/server/pages/en-US/checkout.html +2 -2
  25. package/.next/server/pages/en-US/login.html +2 -2
  26. package/.next/server/pages/en-US/s.html +2 -2
  27. package/.next/server/pages/en-US.html +2 -2
  28. package/.next/server/pages-manifest.json +1 -1
  29. package/.next/static/chunks/{1552.8751332da83cadc5.js → 1552.2705dd1ff3aee879.js} +1 -1
  30. package/.next/static/chunks/pages/account/orders/{[id]-8ab11c6c528911e9.js → [id]-987267efe897728e.js} +1 -1
  31. package/.next/static/chunks/{webpack-889c9cccd383a436.js → webpack-5eeb0e7a0a92b041.js} +1 -1
  32. package/.next/static/{ptJ56QsnBqlWtpbKOLiri → qls88JfGKl9N9ILYbbCWR}/_buildManifest.js +1 -1
  33. package/.next/trace +129 -129
  34. package/.turbo/turbo-build.log +8 -8
  35. package/.turbo/turbo-test.log +5 -5
  36. package/@generated/gql.ts +4 -4
  37. package/@generated/graphql.ts +75 -601
  38. package/@generated/persisted-documents.json +2 -2
  39. package/@generated/schema.graphql +43 -2
  40. package/CHANGELOG.md +6 -0
  41. package/package.json +3 -3
  42. package/src/components/account/orders/MyAccountOrderDetails/MyAccountOrderDetails.tsx +3 -2
  43. package/src/pages/account/orders/[id].tsx +30 -523
  44. package/src/pages/account/orders/index.tsx +0 -56
  45. /package/.next/static/{ptJ56QsnBqlWtpbKOLiri → qls88JfGKl9N9ILYbbCWR}/_ssgManifest.js +0 -0
@@ -544,7 +544,7 @@ export type Query = {
544
544
  /** Returns the details of a collection based on the collection slug. */
545
545
  collection: StoreCollection
546
546
  /** Returns information about the list of Orders that the User can view. */
547
- listUserOrders: Maybe<UserOrderListResult>
547
+ listUserOrders: Maybe<UserOrderListMinimalResult>
548
548
  /** Returns the details of a product based on the specified locator. */
549
549
  product: StoreProduct
550
550
  /** Returns the total product count information based on a specific location accessible through the VTEX segment cookie. */
@@ -560,7 +560,7 @@ export type Query = {
560
560
  /** Returns information about shipping simulation. */
561
561
  shipping: Maybe<ShippingData>
562
562
  /** Returns information about the Details of an User Order. */
563
- userOrder: Maybe<UserOrder>
563
+ userOrder: Maybe<UserOrderResult>
564
564
  }
565
565
 
566
566
  export type QueryAllCollectionsArgs = {
@@ -1589,6 +1589,26 @@ export type UserOrderFromList = {
1589
1589
  workflowInRetry: Maybe<Scalars['Boolean']['output']>
1590
1590
  }
1591
1591
 
1592
+ export type UserOrderFromListCustomFields = {
1593
+ costCenter: Maybe<Array<Maybe<Scalars['String']['output']>>>
1594
+ desktop: Maybe<Array<Maybe<Scalars['String']['output']>>>
1595
+ poNumber: Maybe<Array<Maybe<Scalars['String']['output']>>>
1596
+ release: Maybe<Array<Maybe<Scalars['String']['output']>>>
1597
+ }
1598
+
1599
+ export type UserOrderFromListMinimal = {
1600
+ ShippingEstimatedDate: Maybe<Scalars['String']['output']>
1601
+ clientName: Maybe<Scalars['String']['output']>
1602
+ creationDate: Maybe<Scalars['String']['output']>
1603
+ currencyCode: Maybe<Scalars['String']['output']>
1604
+ customFields: Maybe<UserOrderFromListCustomFields>
1605
+ items: Maybe<Array<Maybe<UserOrderItemsSummarized>>>
1606
+ orderId: Maybe<Scalars['String']['output']>
1607
+ status: Maybe<Scalars['String']['output']>
1608
+ statusDescription: Maybe<Scalars['String']['output']>
1609
+ totalValue: Maybe<Scalars['Float']['output']>
1610
+ }
1611
+
1592
1612
  export type UserOrderInvoiceType = 'Input' | 'Output'
1593
1613
 
1594
1614
  export type UserOrderItemAttachment = {
@@ -1671,6 +1691,11 @@ export type UserOrderItemsSummarized = {
1671
1691
  sellingPrice: Maybe<Scalars['Float']['output']>
1672
1692
  }
1673
1693
 
1694
+ export type UserOrderListMinimalResult = {
1695
+ list: Maybe<Array<Maybe<UserOrderFromListMinimal>>>
1696
+ paging: Maybe<UserOrderListPaging>
1697
+ }
1698
+
1674
1699
  export type UserOrderListPaging = {
1675
1700
  currentPage: Maybe<Scalars['Int']['output']>
1676
1701
  pages: Maybe<Scalars['Int']['output']>
@@ -1889,6 +1914,22 @@ export type UserOrderRestitutions = {
1889
1914
  Refund: Maybe<UserOrderRestitutionOption>
1890
1915
  }
1891
1916
 
1917
+ export type UserOrderResult = {
1918
+ allowCancellation: Maybe<Scalars['Boolean']['output']>
1919
+ clientProfileData: Maybe<UserOrderClientProfileData>
1920
+ customData: Maybe<UserOrderCustomData>
1921
+ customFields: Maybe<Array<Maybe<UserOrderCustomFieldsGrouped>>>
1922
+ deliveryOptionsData: Maybe<UserOrderDeliveryOptionsData>
1923
+ items: Maybe<Array<Maybe<UserOrderItems>>>
1924
+ orderId: Maybe<Scalars['String']['output']>
1925
+ paymentData: Maybe<UserOrderPaymentData>
1926
+ shippingData: Maybe<UserOrderShippingData>
1927
+ status: Maybe<Scalars['String']['output']>
1928
+ statusDescription: Maybe<Scalars['String']['output']>
1929
+ storePreferencesData: Maybe<UserOrderStorePreferencesData>
1930
+ totals: Maybe<Array<Maybe<UserOrderTotals>>>
1931
+ }
1932
+
1892
1933
  export type UserOrderSellingPrices = {
1893
1934
  quantity: Maybe<Scalars['Int']['output']>
1894
1935
  value: Maybe<Scalars['Float']['output']>
@@ -2220,553 +2261,26 @@ export type ServerOrderDetailsQueryQueryVariables = Exact<{
2220
2261
  export type ServerOrderDetailsQueryQuery = {
2221
2262
  userOrder: {
2222
2263
  orderId: string | null
2223
- sequence: string | null
2224
- marketplaceOrderId: string | null
2225
- marketplaceServicesEndpoint: string | null
2226
- sellerOrderId: string | null
2227
- origin: string | null
2228
- affiliateId: string | null
2229
- salesChannel: string | null
2230
- merchantName: string | null
2231
2264
  status: string | null
2232
- workflowIsInError: boolean | null
2233
2265
  statusDescription: string | null
2234
- value: number | null
2235
- creationDate: string | null
2236
- lastChange: string | null
2237
- orderGroup: string | null
2238
- giftRegistryData: string | null
2239
- marketingData: string | null
2240
- callCenterOperatorData: string | null
2241
- followUpEmail: string | null
2242
- lastMessage: string | null
2243
- hostname: string | null
2244
- invoiceData: string | null
2245
- changesAttachment: string | null
2246
- openTextField: string | null
2247
- roundingError: number | null
2248
- orderFormId: string | null
2249
- commercialConditionData: string | null
2250
- isCompleted: boolean | null
2251
2266
  allowCancellation: boolean | null
2252
- allowEdition: boolean | null
2253
- isCheckedIn: boolean | null
2254
- authorizedDate: string | null
2255
- invoicedDate: string | null
2256
- cancelReason: string | null
2257
- subscriptionData: string | null
2258
- taxData: string | null
2259
- checkedInPickupPointId: string | null
2260
- customData: {
2261
- customApps: Array<{
2262
- id: string | null
2263
- major: number | null
2264
- fields: { cartEtag: string | null } | null
2265
- } | null> | null
2266
- } | null
2267
- cancellationData: {
2268
- RequestedByUser: boolean | null
2269
- RequestedBySystem: boolean | null
2270
- RequestedBySellerNotification: boolean | null
2271
- RequestedByPaymentNotification: boolean | null
2272
- Reason: string | null
2273
- CancellationDate: string | null
2274
- } | null
2275
- cancellationRequests: Array<{
2276
- id: string | null
2277
- reason: string | null
2278
- cancellationRequestDate: string | null
2279
- requestedByUser: boolean | null
2280
- deniedBySeller: boolean | null
2281
- deniedBySellerReason: string | null
2282
- cancellationRequestDenyDate: string | null
2283
- } | null> | null
2284
- clientPreferencesData: {
2285
- locale: string | null
2286
- optinNewsLetter: boolean | null
2287
- } | null
2288
- itemMetadata: {
2289
- Items: Array<{
2290
- Id: string | null
2291
- Seller: string | null
2292
- Name: string | null
2293
- SkuName: string | null
2294
- ProductId: string | null
2295
- RefId: string | null
2296
- Ean: string | null
2297
- ImageUrl: string | null
2298
- DetailUrl: string | null
2299
- AssemblyOptions: Array<{
2300
- Id: string | null
2301
- Name: string | null
2302
- Required: boolean | null
2303
- } | null> | null
2304
- } | null> | null
2305
- } | null
2306
- marketplace: {
2307
- baseURL: string | null
2308
- isCertified: string | null
2309
- name: string | null
2310
- } | null
2311
- storePreferencesData: {
2312
- countryCode: string | null
2313
- currencyCode: string | null
2314
- currencyLocale: number | null
2315
- currencySymbol: string | null
2316
- timeZone: string | null
2317
- currencyFormatInfo: {
2318
- CurrencyDecimalDigits: number | null
2319
- CurrencyDecimalSeparator: string | null
2320
- CurrencyGroupSeparator: string | null
2321
- CurrencyGroupSize: number | null
2322
- StartsWithCurrencySymbol: boolean | null
2323
- } | null
2324
- } | null
2325
- sellers: Array<{
2326
- id: string | null
2327
- name: string | null
2328
- logo: string | null
2329
- fulfillmentEndpoint: string | null
2330
- } | null> | null
2331
- packageAttachment: {
2332
- packages: Array<{
2333
- courier: string | null
2334
- invoiceNumber: string
2335
- invoiceUrl: string | null
2336
- invoiceValue: number
2337
- extraValue: number | null
2338
- issuanceDate: string | null
2339
- trackingNumber: string | null
2340
- trackingUrl: string | null
2341
- invoiceKey: string | null
2342
- type: UserOrderInvoiceType | null
2343
- courierStatus: {
2344
- finished: boolean | null
2345
- status: string | null
2346
- data: Array<{
2347
- city: string | null
2348
- description: string | null
2349
- lastChange: string | null
2350
- state: string | null
2351
- }> | null
2352
- } | null
2353
- items: Array<{
2354
- description: string | null
2355
- itemIndex: number | null
2356
- price: number | null
2357
- quantity: number | null
2358
- }> | null
2359
- restitutions: {
2360
- Refund: {
2361
- value: number | null
2362
- items: Array<{
2363
- useFreight: boolean | null
2364
- isCompensation: boolean | null
2365
- compensationValue: number | null
2366
- itemIndex: number | null
2367
- id: string | null
2368
- quantity: number | null
2369
- price: number | null
2370
- description: string | null
2371
- unitMultiplier: number | null
2372
- }> | null
2373
- } | null
2374
- GiftCard: {
2375
- value: number | null
2376
- items: Array<{
2377
- useFreight: boolean | null
2378
- isCompensation: boolean | null
2379
- compensationValue: number | null
2380
- itemIndex: number | null
2381
- id: string | null
2382
- quantity: number | null
2383
- price: number | null
2384
- description: string | null
2385
- unitMultiplier: number | null
2386
- }> | null
2387
- } | null
2388
- } | null
2389
- } | null> | null
2390
- } | null
2391
- paymentData: {
2392
- giftCards: Array<string | null> | null
2393
- transactions: Array<{
2394
- isActive: boolean | null
2395
- transactionId: string | null
2396
- merchantName: string | null
2397
- payments: Array<{
2398
- id: string | null
2399
- paymentSystem: string | null
2400
- paymentSystemName: string | null
2401
- value: number | null
2402
- installments: number | null
2403
- referenceValue: number | null
2404
- cardHolder: string | null
2405
- cardNumber: string | null
2406
- firstDigits: string | null
2407
- lastDigits: string | null
2408
- cvv2: string | null
2409
- expireMonth: string | null
2410
- expireYear: string | null
2411
- url: string | null
2412
- giftCardId: string | null
2413
- giftCardName: string | null
2414
- giftCardCaption: string | null
2415
- redemptionCode: string | null
2416
- group: string | null
2417
- tid: string | null
2418
- dueDate: string | null
2419
- giftCardProvider: string | null
2420
- giftCardAsDiscount: string | null
2421
- koinUrl: string | null
2422
- accountId: string | null
2423
- parentAccountId: string | null
2424
- bankIssuedInvoiceIdentificationNumber: string | null
2425
- bankIssuedInvoiceIdentificationNumberFormatted: string | null
2426
- bankIssuedInvoiceBarCodeNumber: string | null
2427
- bankIssuedInvoiceBarCodeType: string | null
2428
- billingAddress: string | null
2429
- paymentOrigin: string | null
2430
- connectorResponses: {
2431
- Message: string | null
2432
- ReturnCode: string | null
2433
- Tid: string | null
2434
- authId: string | null
2435
- } | null
2436
- } | null> | null
2437
- } | null> | null
2438
- } | null
2439
- shippingData: {
2440
- id: string | null
2441
- trackingHints: string | null
2442
- contactInformation: Array<{
2443
- id: string
2444
- email: string | null
2445
- firstName: string | null
2446
- lastName: string | null
2447
- document: string | null
2448
- documentType: string | null
2449
- phone: string | null
2450
- } | null> | null
2451
- availableAddresses: Array<{
2452
- addressId: string | null
2453
- versionId: string | null
2454
- entityId: string | null
2455
- addressType: string | null
2456
- receiverName: string | null
2457
- street: string | null
2458
- number: string | null
2459
- complement: string | null
2460
- neighborhood: string | null
2461
- postalCode: string | null
2462
- city: string | null
2463
- state: string | null
2464
- country: string | null
2465
- reference: string | null
2466
- geoCoordinates: Array<number | null> | null
2467
- } | null> | null
2468
- selectedAddresses: Array<{
2469
- addressId: string | null
2470
- versionId: string | null
2471
- entityId: string | null
2472
- addressType: string | null
2473
- receiverName: string | null
2474
- street: string | null
2475
- number: string | null
2476
- complement: string | null
2477
- neighborhood: string | null
2478
- postalCode: string | null
2479
- city: string | null
2480
- state: string | null
2481
- country: string | null
2482
- reference: string | null
2483
- geoCoordinates: Array<number | null> | null
2484
- } | null> | null
2485
- logisticsInfo: Array<{
2486
- itemIndex: number | null
2487
- itemId: string | null
2488
- selectedDeliveryChannel: string | null
2489
- selectedSla: string | null
2490
- lockTTL: string | null
2491
- price: number | null
2492
- listPrice: number | null
2493
- sellingPrice: number | null
2494
- deliveryCompany: string | null
2495
- shippingEstimate: string | null
2496
- shippingEstimateDate: string | null
2497
- deliveryChannel: string | null
2498
- addressId: string | null
2499
- versionId: string | null
2500
- entityId: string | null
2501
- polygonName: string | null
2502
- pickupPointId: string | null
2503
- transitTime: string | null
2504
- shipsTo: Array<string | null> | null
2505
- deliveryWindow: {
2506
- startDateUtc: string | null
2507
- endDateUtc: string | null
2508
- price: number | null
2509
- } | null
2510
- pickupStoreInfo: {
2511
- additionalInfo: string | null
2512
- dockId: string | null
2513
- friendlyName: string | null
2514
- isPickupStore: boolean | null
2515
- address: {
2516
- addressType: string | null
2517
- receiverName: string | null
2518
- addressId: string | null
2519
- versionId: string | null
2520
- entityId: string | null
2521
- postalCode: string | null
2522
- city: string | null
2523
- state: string | null
2524
- country: string | null
2525
- street: string | null
2526
- number: string | null
2527
- neighborhood: string | null
2528
- complement: string | null
2529
- reference: string | null
2530
- geoCoordinates: Array<number | null> | null
2531
- } | null
2532
- } | null
2533
- deliveryChannels: Array<{
2534
- id: string | null
2535
- stockBalance: number | null
2536
- } | null> | null
2537
- deliveryIds: Array<{
2538
- courierId: string | null
2539
- courierName: string | null
2540
- dockId: string | null
2541
- quantity: number | null
2542
- warehouseId: string | null
2543
- accountCarrierName: string | null
2544
- kitItemDetails: Array<string | null> | null
2545
- } | null> | null
2546
- slas: Array<{
2547
- id: string | null
2548
- name: string | null
2549
- shippingEstimate: string | null
2550
- shippingEstimateDate: string | null
2551
- listPrice: number | null
2552
- price: number | null
2553
- deliveryChannel: string | null
2554
- polygonName: string | null
2555
- lockTTL: string | null
2556
- pickupPointId: string | null
2557
- transitTime: string | null
2558
- pickupDistance: number | null
2559
- deliveryWindow: {
2560
- startDateUtc: string | null
2561
- endDateUtc: string | null
2562
- price: number | null
2563
- } | null
2564
- pickupStoreInfo: {
2565
- additionalInfo: string | null
2566
- dockId: string | null
2567
- friendlyName: string | null
2568
- isPickupStore: boolean | null
2569
- address: {
2570
- addressType: string | null
2571
- receiverName: string | null
2572
- addressId: string | null
2573
- versionId: string | null
2574
- entityId: string | null
2575
- postalCode: string | null
2576
- city: string | null
2577
- state: string | null
2578
- country: string | null
2579
- street: string | null
2580
- number: string | null
2581
- neighborhood: string | null
2582
- complement: string | null
2583
- reference: string | null
2584
- geoCoordinates: Array<number | null> | null
2585
- } | null
2586
- } | null
2587
- deliveryIds: Array<{
2588
- courierId: string | null
2589
- courierName: string | null
2590
- dockId: string | null
2591
- quantity: number | null
2592
- warehouseId: string | null
2593
- accountCarrierName: string | null
2594
- kitItemDetails: Array<string | null> | null
2595
- } | null> | null
2596
- availableDeliveryWindows: Array<{
2597
- startDateUtc: string | null
2598
- endDateUtc: string | null
2599
- price: number | null
2600
- } | null> | null
2601
- } | null> | null
2602
- } | null> | null
2603
- address: {
2604
- addressType: string | null
2605
- receiverName: string | null
2606
- addressId: string | null
2607
- versionId: string | null
2608
- entityId: string | null
2609
- postalCode: string | null
2610
- city: string | null
2611
- state: string | null
2612
- country: string | null
2613
- street: string | null
2614
- number: string | null
2615
- neighborhood: string | null
2616
- complement: string | null
2617
- reference: string | null
2618
- geoCoordinates: Array<number | null> | null
2619
- } | null
2620
- } | null
2621
- ratesAndBenefitsData: {
2622
- id: string | null
2623
- rateAndBenefitsIdentifiers: Array<{
2624
- id: string | null
2625
- additionalInfo: string | null
2626
- description: string | null
2627
- featured: boolean | null
2628
- name: string | null
2629
- } | null> | null
2630
- } | null
2267
+ storePreferencesData: { currencyCode: string | null } | null
2631
2268
  clientProfileData: {
2632
- id: string | null
2633
- email: string | null
2634
2269
  firstName: string | null
2635
2270
  lastName: string | null
2636
- documentType: string | null
2637
- document: string | null
2271
+ email: string | null
2638
2272
  phone: string | null
2639
2273
  corporateName: string | null
2640
- tradeName: string | null
2641
- corporateDocument: string | null
2642
- stateInscription: string | null
2643
- corporatePhone: string | null
2644
2274
  isCorporate: boolean | null
2645
- userProfileId: string | null
2646
- userProfileVersion: string | null
2647
- customerClass: string | null
2648
- customerCode: string | null
2649
2275
  } | null
2650
- items: Array<{
2651
- uniqueId: string | null
2276
+ customFields: Array<{
2277
+ type: string
2652
2278
  id: string | null
2653
- productId: string | null
2654
- ean: string | null
2655
- lockId: string | null
2656
- quantity: number | null
2657
- seller: string | null
2658
- name: string | null
2659
- refId: string | null
2660
- price: number | null
2661
- listPrice: number | null
2662
- manualPrice: string | null
2663
- manualPriceAppliedBy: string | null
2664
- imageUrl: string | null
2665
- detailUrl: string | null
2666
- sellerSku: string | null
2667
- priceValidUntil: string | null
2668
- commission: number | null
2669
- tax: number | null
2670
- preSaleDate: string | null
2671
- measurementUnit: string | null
2672
- unitMultiplier: number | null
2673
- sellingPrice: number | null
2674
- isGift: boolean | null
2675
- shippingPrice: string | null
2676
- rewardValue: number | null
2677
- freightCommission: number | null
2678
- taxCode: string | null
2679
- parentItemIndex: string | null
2680
- parentAssemblyBinding: string | null
2681
- callCenterOperator: string | null
2682
- serialNumbers: string | null
2683
- costPrice: number | null
2684
- assemblies: Array<string | null> | null
2685
- params: Array<string | null> | null
2686
- priceDefinition: {
2687
- calculatedSellingPrice: number | null
2688
- total: number | null
2689
- reason: string | null
2690
- sellingPrices: Array<{
2691
- value: number | null
2692
- quantity: number | null
2693
- } | null> | null
2694
- } | null
2695
- additionalInfo: {
2696
- brandName: string | null
2697
- brandId: string | null
2698
- categoriesIds: string | null
2699
- productClusterId: string | null
2700
- commercialConditionId: string | null
2701
- offeringInfo: string | null
2702
- offeringType: string | null
2703
- offeringTypeId: string | null
2704
- dimension: {
2705
- cubicweight: number | null
2706
- height: number | null
2707
- length: number | null
2708
- weight: number | null
2709
- width: number | null
2710
- } | null
2711
- categories: Array<{
2712
- id: number | null
2713
- name: string | null
2714
- } | null> | null
2715
- } | null
2716
- attachmentOfferings: Array<{
2717
- name: string | null
2718
- required: boolean | null
2719
- } | null> | null
2720
- offerings: Array<{
2721
- type: string | null
2722
- id: string | null
2723
- name: string | null
2724
- price: number | null
2725
- } | null> | null
2726
- bundleItems: Array<{
2727
- id: string | null
2728
- name: string | null
2729
- quantity: number | null
2730
- sellingPrice: number | null
2731
- unitMultiplier: number | null
2732
- measurementUnit: string | null
2733
- imageUrl: string | null
2734
- detailUrl: string | null
2735
- refId: string | null
2736
- rewardValue: number | null
2737
- attachments: Array<{
2738
- name: string | null
2739
- content: any | null
2740
- } | null> | null
2741
- } | null> | null
2742
- components: Array<{
2743
- id: string | null
2744
- name: string | null
2745
- quantity: number | null
2746
- sellingPrice: number | null
2747
- unitMultiplier: number | null
2748
- measurementUnit: string | null
2749
- imageUrl: string | null
2750
- detailUrl: string | null
2751
- refId: string | null
2752
- rewardValue: number | null
2753
- } | null> | null
2754
- priceTags: Array<{
2279
+ fields: Array<{
2755
2280
  name: string
2756
- value: number | null
2757
- rawValue: number
2758
- isPercentual: boolean | null
2759
- } | null> | null
2760
- attachments: Array<{
2761
- name: string | null
2762
- content: any | null
2281
+ value: string
2282
+ refId: string | null
2763
2283
  } | null> | null
2764
- itemAttachment: { name: string | null } | null
2765
- } | null> | null
2766
- totals: Array<{
2767
- id: string | null
2768
- name: string | null
2769
- value: number | null
2770
2284
  } | null> | null
2771
2285
  deliveryOptionsData: {
2772
2286
  deliveryOptions: Array<{
@@ -2841,14 +2355,30 @@ export type ServerOrderDetailsQueryQuery = {
2841
2355
  name: string | null
2842
2356
  } | null
2843
2357
  } | null
2844
- customFields: Array<{
2845
- type: string
2846
- id: string | null
2847
- fields: Array<{
2848
- name: string
2849
- value: string
2850
- refId: string | null
2358
+ paymentData: {
2359
+ transactions: Array<{
2360
+ isActive: boolean | null
2361
+ payments: Array<{
2362
+ id: string | null
2363
+ paymentSystemName: string | null
2364
+ value: number | null
2365
+ installments: number | null
2366
+ referenceValue: number | null
2367
+ lastDigits: string | null
2368
+ url: string | null
2369
+ group: string | null
2370
+ tid: string | null
2371
+ bankIssuedInvoiceIdentificationNumber: string | null
2372
+ redemptionCode: string | null
2373
+ paymentOrigin: string | null
2374
+ connectorResponses: { authId: string | null } | null
2375
+ } | null> | null
2851
2376
  } | null> | null
2377
+ } | null
2378
+ totals: Array<{
2379
+ id: string | null
2380
+ name: string | null
2381
+ value: number | null
2852
2382
  } | null> | null
2853
2383
  } | null
2854
2384
  }
@@ -2868,45 +2398,15 @@ export type ServerListOrdersQueryQueryVariables = Exact<{
2868
2398
 
2869
2399
  export type ServerListOrdersQueryQuery = {
2870
2400
  listUserOrders: {
2871
- facets: Array<string | null> | null
2872
- reportRecordsLimit: number | null
2873
2401
  list: Array<{
2874
2402
  orderId: string | null
2875
2403
  creationDate: string | null
2876
2404
  clientName: string | null
2877
2405
  totalValue: number | null
2878
- paymentNames: string | null
2879
2406
  status: string | null
2880
2407
  statusDescription: string | null
2881
- marketPlaceOrderId: string | null
2882
- sequence: string | null
2883
- salesChannel: string | null
2884
- affiliateId: string | null
2885
- origin: string | null
2886
- workflowInErrorState: boolean | null
2887
- workflowInRetry: boolean | null
2888
- lastMessageUnread: string | null
2889
2408
  ShippingEstimatedDate: string | null
2890
- ShippingEstimatedDateMax: string | null
2891
- ShippingEstimatedDateMin: string | null
2892
- orderIsComplete: boolean | null
2893
- listId: string | null
2894
- listType: string | null
2895
- authorizedDate: string | null
2896
- callCenterOperatorName: string | null
2897
- totalItems: number | null
2898
2409
  currencyCode: string | null
2899
- hostname: string | null
2900
- invoiceOutput: Array<string | null> | null
2901
- invoiceInput: Array<string | null> | null
2902
- lastChange: string | null
2903
- isAllDelivered: boolean | null
2904
- isAnyDelivered: boolean | null
2905
- giftCardProviders: Array<string | null> | null
2906
- orderFormId: string | null
2907
- paymentApprovedDate: string | null
2908
- readyForHandlingDate: string | null
2909
- deliveryDates: Array<string | null> | null
2910
2410
  items: Array<{
2911
2411
  seller: string | null
2912
2412
  quantity: number | null
@@ -2925,32 +2425,6 @@ export type ServerListOrdersQueryQuery = {
2925
2425
  currentPage: number | null
2926
2426
  perPage: number | null
2927
2427
  } | null
2928
- stats: {
2929
- stats: {
2930
- totalValue: {
2931
- Count: number | null
2932
- Max: number | null
2933
- Mean: number | null
2934
- Min: number | null
2935
- Missing: number | null
2936
- StdDev: number | null
2937
- Sum: number | null
2938
- SumOfSquares: number | null
2939
- Facets: any | null
2940
- } | null
2941
- totalItems: {
2942
- Count: number | null
2943
- Max: number | null
2944
- Mean: number | null
2945
- Min: number | null
2946
- Missing: number | null
2947
- StdDev: number | null
2948
- Sum: number | null
2949
- SumOfSquares: number | null
2950
- Facets: any | null
2951
- } | null
2952
- } | null
2953
- } | null
2954
2428
  } | null
2955
2429
  }
2956
2430
 
@@ -3991,7 +3465,7 @@ export const ServerProductQueryDocument = {
3991
3465
  export const ServerOrderDetailsQueryDocument = {
3992
3466
  __meta__: {
3993
3467
  operationName: 'ServerOrderDetailsQuery',
3994
- operationHash: 'ff6bfc13b2150964c1988ba7e127eda8828a08d0',
3468
+ operationHash: '8b9b9c7703b0b9af12f47cb86dd3d2e8eb40c8fd',
3995
3469
  },
3996
3470
  } as unknown as TypedDocumentString<
3997
3471
  ServerOrderDetailsQueryQuery,
@@ -4000,7 +3474,7 @@ export const ServerOrderDetailsQueryDocument = {
4000
3474
  export const ServerListOrdersQueryDocument = {
4001
3475
  __meta__: {
4002
3476
  operationName: 'ServerListOrdersQuery',
4003
- operationHash: 'b88154468340d7d0dac6b3df8641bf6f54a554b7',
3477
+ operationHash: '9f48d9d4c1b6e6b32ac1f1c1b7b3819ac826dfe7',
4004
3478
  },
4005
3479
  } as unknown as TypedDocumentString<
4006
3480
  ServerListOrdersQueryQuery,