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