@evenicanpm/storefront-core 2.3.1 → 2.4.1

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 (90) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/package.json +42 -9
  3. package/src/api-manager/datasources/d365/d365-address.datasource.ts +148 -61
  4. package/src/api-manager/datasources/d365/d365-cart.datasource.ts +23 -1
  5. package/src/api-manager/datasources/d365/d365-order.datasource.ts +6 -1
  6. package/src/api-manager/datasources/d365/d365-user.datasource.ts +109 -37
  7. package/src/api-manager/datasources/d365/utils/get-context-cookie.ts +44 -10
  8. package/src/api-manager/index.ts +2 -1
  9. package/src/api-manager/lib/get-graphql-client.ts +35 -7
  10. package/src/api-manager/schemas/product.schema.ts +1 -1
  11. package/src/api-manager/services/create-query.ts +36 -3
  12. package/src/api-manager/services/get-query-client.ts +10 -0
  13. package/src/auth/better-auth.ts +282 -15
  14. package/src/cms/blocks/block-manager.tsx +1 -1
  15. package/src/cms/blocks/components/product-section-fullwidth/index.tsx +3 -1
  16. package/src/cms/endpoints.ts +7 -2
  17. package/src/components/BazaarMenu.tsx +1 -1
  18. package/src/components/Typography.tsx +4 -2
  19. package/src/components/carousel-cards/carousel-card-1/CarouselCard1.stories.tsx +1 -1
  20. package/src/components/categories/category-list/category-list.tsx +9 -5
  21. package/src/components/categories/category-menu.tsx +1 -1
  22. package/src/components/countries-input.tsx +4 -0
  23. package/src/components/header/__tests__/user.test.tsx +5 -107
  24. package/src/components/header/components/user.tsx +72 -45
  25. package/src/components/header/sticky-header.tsx +0 -1
  26. package/src/components/navbar/mobile-menu/mobile-menu.test.tsx +1 -1
  27. package/src/components/navbar/utils/transform-nav.test.ts +1 -1
  28. package/src/components/navbar/utils/transform-nav.ts +1 -1
  29. package/src/components/product-cards/product-card/product-card.tsx +5 -2
  30. package/src/components/product-cards/product-card/styles/index.ts +1 -5
  31. package/src/components/products-view/compound/products-grid-view.tsx +5 -1
  32. package/src/components/products-view/compound/products-list-view.tsx +5 -1
  33. package/src/global.d.ts +3 -0
  34. package/src/hooks/use-nextauth-session.ts +0 -33
  35. package/src/lib/auth-client.ts +14 -0
  36. package/src/lib/auth.ts +4 -0
  37. package/src/lib/entra-native-auth.ts +138 -0
  38. package/src/lib/native-session.ts +434 -0
  39. package/src/pages/account/addresses/address-form.tsx +20 -2
  40. package/src/pages/account/profile/__tests__/profile-form.test.tsx +173 -0
  41. package/src/pages/account/profile/profile-form.tsx +285 -0
  42. package/src/pages/account/profile/profile-validation.ts +52 -0
  43. package/src/pages/account/wishlist/wishlist-item.tsx +1 -2
  44. package/src/pages/auth/auth-activate-page.tsx +509 -0
  45. package/src/pages/auth/auth-layout.tsx +73 -0
  46. package/src/pages/auth/auth-login-page.tsx +241 -0
  47. package/src/pages/auth/auth-reset-password-page.tsx +487 -0
  48. package/src/pages/auth/compound/auth-form.tsx +182 -0
  49. package/src/pages/auth/compound/auth-pages.tsx +21 -0
  50. package/src/pages/auth/lib/friendly-error.ts +70 -0
  51. package/src/pages/auth/lib/index.ts +2 -0
  52. package/src/pages/auth/lib/types.ts +5 -0
  53. package/src/pages/cart/cart-item.tsx +1 -7
  54. package/src/pages/checkout/checkout-alt-form/checkout-form.tsx +14 -3
  55. package/src/pages/checkout/checkout-alt-form/steps/address/address-card.tsx +5 -3
  56. package/src/pages/checkout/checkout-alt-form/steps/address/delivery-address.tsx +20 -6
  57. package/src/pages/checkout/checkout-alt-form/steps/address/new-address-form.tsx +1 -1
  58. package/src/pages/checkout/checkout-alt-form/steps/customer-info/customer-information.tsx +1 -1
  59. package/src/pages/confirmation/ordered-products.tsx +3 -1
  60. package/src/pages/product-details/bopis/find-in-store-modal.tsx +4 -4
  61. package/src/pages/product-details/bopis/pickup-option-select.tsx +2 -2
  62. package/src/pages/product-details/bopis/search-header.tsx +2 -2
  63. package/src/pages/product-details/product-intro/compound/context.ts +8 -3
  64. package/src/pages/product-details/product-intro/compound/product-info.tsx +25 -19
  65. package/src/pages/product-list/product-list-view.tsx +2 -1
  66. package/src/providers/nav-provider/index.tsx +1 -1
  67. package/src/providers/nav-provider/utils/createLink.ts +1 -1
  68. package/tsconfig.json +20 -15
  69. package/__mocks__/countries.ts +0 -11
  70. package/__mocks__/create-mutation.ts +0 -68
  71. package/__mocks__/create-query.ts +0 -94
  72. package/__mocks__/data/categories.json +0 -795
  73. package/__mocks__/get-product-by-id.ts +0 -6
  74. package/__mocks__/next-auth-react.ts +0 -9
  75. package/__mocks__/next-font.js +0 -4
  76. package/__mocks__/next-headers.js +0 -13
  77. package/__mocks__/next-image.tsx +0 -18
  78. package/__mocks__/next-link.js +0 -19
  79. package/__mocks__/next-navigation.ts +0 -29
  80. package/__mocks__/product-dimensions.ts +0 -635
  81. package/__mocks__/products.ts +0 -533
  82. package/__mocks__/query-client.ts +0 -3
  83. package/__mocks__/wishlists.json +0 -408
  84. package/src/auth/msal.ts +0 -68
  85. package/src/cms/blog.ts +0 -229
  86. package/src/cms/interfaces/navigation.ts +0 -52
  87. package/src/cms/interfaces/product-data.ts +0 -83
  88. package/src/cms/pages.ts +0 -149
  89. package/src/pages/account/profile/profile-button.test.tsx +0 -59
  90. package/src/pages/account/profile/profile-button.tsx +0 -51
@@ -1,795 +0,0 @@
1
- [
2
- {
3
- "RecordId": 68719478037,
4
- "Name": "Menswear",
5
- "ParentCategory": 68719478035,
6
- "DisplayOrder": -1,
7
- "LocalizedDescription": "Menswear",
8
- "Images": [
9
- {
10
- "Uri": "Categories/Menswear.png",
11
- "IsDefault": false,
12
- "IsSelfHosted": false,
13
- "Priority": 0,
14
- "IsAdditionalMedia": false,
15
- "MediaTypeValue": 0,
16
- "DisplayOrder": 0,
17
- "IsApplicableForChildEntities": false,
18
- "ExtensionProperties": []
19
- }
20
- ],
21
- "NameTranslations": [
22
- { "Language": "en-us", "Text": "Menswear", "ExtensionProperties": [] }
23
- ],
24
- "ExtensionProperties": [],
25
- "NeutralizedName": "Menswear",
26
- "Slug": "menswear",
27
- "Url": "fabrikam-fashion/menswear/68719478037",
28
- "Children": [
29
- {
30
- "RecordId": 68719478053,
31
- "Name": "Shoes",
32
- "ParentCategory": 68719478037,
33
- "DisplayOrder": -1,
34
- "LocalizedDescription": "Shoes",
35
- "Images": [
36
- {
37
- "Uri": "Categories/Shoes.png",
38
- "IsDefault": false,
39
- "IsSelfHosted": false,
40
- "Priority": 0,
41
- "IsAdditionalMedia": false,
42
- "MediaTypeValue": 0,
43
- "DisplayOrder": 0,
44
- "IsApplicableForChildEntities": false,
45
- "ExtensionProperties": []
46
- }
47
- ],
48
- "NameTranslations": [
49
- { "Language": "en-us", "Text": "Shoes", "ExtensionProperties": [] }
50
- ],
51
- "ExtensionProperties": [],
52
- "NeutralizedName": "Shoes",
53
- "Slug": "shoes",
54
- "Url": "fabrikam-fashion/menswear/shoes/68719478053"
55
- },
56
- {
57
- "RecordId": 68719478048,
58
- "Name": "Casual Shirts",
59
- "ParentCategory": 68719478037,
60
- "DisplayOrder": 1,
61
- "LocalizedDescription": "Casual Shirts",
62
- "Images": [
63
- {
64
- "Uri": "Categories/Casual Shirts.png",
65
- "IsDefault": false,
66
- "IsSelfHosted": false,
67
- "Priority": 0,
68
- "IsAdditionalMedia": false,
69
- "MediaTypeValue": 0,
70
- "DisplayOrder": 0,
71
- "IsApplicableForChildEntities": false,
72
- "ExtensionProperties": []
73
- }
74
- ],
75
- "NameTranslations": [
76
- {
77
- "Language": "en-us",
78
- "Text": "Casual Shirts",
79
- "ExtensionProperties": []
80
- }
81
- ],
82
- "ExtensionProperties": [],
83
- "NeutralizedName": "Casual Shirts",
84
- "Slug": "casual-shirts",
85
- "Url": "fabrikam-fashion/menswear/casual-shirts/68719478048"
86
- },
87
- {
88
- "RecordId": 68719478049,
89
- "Name": "Coats and Jackets",
90
- "ParentCategory": 68719478037,
91
- "DisplayOrder": 1,
92
- "LocalizedDescription": "Coats and Jackets",
93
- "Images": [
94
- {
95
- "Uri": "Categories/Coats and Jackets.png",
96
- "IsDefault": false,
97
- "IsSelfHosted": false,
98
- "Priority": 0,
99
- "IsAdditionalMedia": false,
100
- "MediaTypeValue": 0,
101
- "DisplayOrder": 0,
102
- "IsApplicableForChildEntities": false,
103
- "ExtensionProperties": []
104
- }
105
- ],
106
- "NameTranslations": [
107
- {
108
- "Language": "en-us",
109
- "Text": "Coats and Jackets",
110
- "ExtensionProperties": []
111
- }
112
- ],
113
- "ExtensionProperties": [],
114
- "NeutralizedName": "Coats and Jackets",
115
- "Slug": "coats-and-jackets",
116
- "Url": "fabrikam-fashion/menswear/coats-and-jackets/68719478049"
117
- },
118
- {
119
- "RecordId": 68719478052,
120
- "Name": "Pants",
121
- "ParentCategory": 68719478037,
122
- "DisplayOrder": 2,
123
- "LocalizedDescription": "Pants",
124
- "Images": [
125
- {
126
- "Uri": "Categories/Pants.png",
127
- "IsDefault": false,
128
- "IsSelfHosted": false,
129
- "Priority": 0,
130
- "IsAdditionalMedia": false,
131
- "MediaTypeValue": 0,
132
- "DisplayOrder": 0,
133
- "IsApplicableForChildEntities": false,
134
- "ExtensionProperties": []
135
- }
136
- ],
137
- "NameTranslations": [
138
- { "Language": "en-us", "Text": "Pants", "ExtensionProperties": [] }
139
- ],
140
- "ExtensionProperties": [],
141
- "NeutralizedName": "Pants",
142
- "Slug": "pants",
143
- "Url": "fabrikam-fashion/menswear/pants/68719478052"
144
- },
145
- {
146
- "RecordId": 68719478050,
147
- "Name": "Dress Shirts",
148
- "ParentCategory": 68719478037,
149
- "DisplayOrder": 4,
150
- "LocalizedDescription": "Dress Shirts",
151
- "Images": [
152
- {
153
- "Uri": "Categories/Dress Shirts.png",
154
- "IsDefault": false,
155
- "IsSelfHosted": false,
156
- "Priority": 0,
157
- "IsAdditionalMedia": false,
158
- "MediaTypeValue": 0,
159
- "DisplayOrder": 0,
160
- "IsApplicableForChildEntities": false,
161
- "ExtensionProperties": []
162
- }
163
- ],
164
- "NameTranslations": [
165
- {
166
- "Language": "en-us",
167
- "Text": "Dress Shirts",
168
- "ExtensionProperties": []
169
- }
170
- ],
171
- "ExtensionProperties": [],
172
- "NeutralizedName": "Dress Shirts",
173
- "Slug": "dress-shirts",
174
- "Url": "fabrikam-fashion/menswear/dress-shirts/68719478050"
175
- },
176
- {
177
- "RecordId": 68719478051,
178
- "Name": "Jeans",
179
- "ParentCategory": 68719478037,
180
- "DisplayOrder": 6,
181
- "LocalizedDescription": "Jeans",
182
- "Images": [
183
- {
184
- "Uri": "Categories/Jeans.png",
185
- "IsDefault": false,
186
- "IsSelfHosted": false,
187
- "Priority": 0,
188
- "IsAdditionalMedia": false,
189
- "MediaTypeValue": 0,
190
- "DisplayOrder": 0,
191
- "IsApplicableForChildEntities": false,
192
- "ExtensionProperties": []
193
- }
194
- ],
195
- "NameTranslations": [
196
- { "Language": "en-us", "Text": "Jeans", "ExtensionProperties": [] }
197
- ],
198
- "ExtensionProperties": [],
199
- "NeutralizedName": "Jeans",
200
- "Slug": "jeans",
201
- "Url": "fabrikam-fashion/menswear/jeans/68719478051"
202
- },
203
- {
204
- "RecordId": 68719478054,
205
- "Name": "Suits and Sportcoats",
206
- "ParentCategory": 68719478037,
207
- "DisplayOrder": 6,
208
- "LocalizedDescription": "Suits and Sportcoats",
209
- "Images": [
210
- {
211
- "Uri": "Categories/Suits and Sportcoats.png",
212
- "IsDefault": false,
213
- "IsSelfHosted": false,
214
- "Priority": 0,
215
- "IsAdditionalMedia": false,
216
- "MediaTypeValue": 0,
217
- "DisplayOrder": 0,
218
- "IsApplicableForChildEntities": false,
219
- "ExtensionProperties": []
220
- }
221
- ],
222
- "NameTranslations": [
223
- {
224
- "Language": "en-us",
225
- "Text": "Suits and Sportcoats",
226
- "ExtensionProperties": []
227
- }
228
- ],
229
- "ExtensionProperties": [],
230
- "NeutralizedName": "Suits and Sportcoats",
231
- "Slug": "suits-and-sportcoats",
232
- "Url": "fabrikam-fashion/menswear/suits-and-sportcoats/68719478054"
233
- }
234
- ]
235
- },
236
- {
237
- "RecordId": 68719478036,
238
- "Name": "Accessories",
239
- "ParentCategory": 68719478035,
240
- "DisplayOrder": 1,
241
- "LocalizedDescription": "Accessories",
242
- "Images": [
243
- {
244
- "Uri": "Categories/Accessories.png",
245
- "IsDefault": false,
246
- "IsSelfHosted": false,
247
- "Priority": 0,
248
- "IsAdditionalMedia": false,
249
- "MediaTypeValue": 0,
250
- "DisplayOrder": 0,
251
- "IsApplicableForChildEntities": false,
252
- "ExtensionProperties": []
253
- }
254
- ],
255
- "NameTranslations": [
256
- {
257
- "Language": "en-us",
258
- "Text": "Accessories",
259
- "ExtensionProperties": []
260
- }
261
- ],
262
- "ExtensionProperties": [],
263
- "NeutralizedName": "Accessories",
264
- "Slug": "accessories",
265
- "Children": [
266
- {
267
- "RecordId": 68719478066,
268
- "Name": "Sunglasses",
269
- "ParentCategory": 68719478036,
270
- "DisplayOrder": -1,
271
- "LocalizedDescription": "Sunglasses",
272
- "Images": [
273
- {
274
- "Uri": "Categories/Sunglasses.png",
275
- "IsDefault": false,
276
- "IsSelfHosted": false,
277
- "Priority": 0,
278
- "IsAdditionalMedia": false,
279
- "MediaTypeValue": 0,
280
- "DisplayOrder": 0,
281
- "IsApplicableForChildEntities": false,
282
- "ExtensionProperties": []
283
- }
284
- ],
285
- "NameTranslations": [
286
- {
287
- "Language": "en-us",
288
- "Text": "Sunglasses",
289
- "ExtensionProperties": []
290
- }
291
- ],
292
- "ExtensionProperties": [],
293
- "NeutralizedName": "Sunglasses",
294
- "Slug": "sunglasses",
295
- "Url": "fabrikam-fashion/accessories/sunglasses/68719478066"
296
- },
297
- {
298
- "RecordId": 68719478065,
299
- "Name": "Jewelry",
300
- "ParentCategory": 68719478036,
301
- "DisplayOrder": 0,
302
- "LocalizedDescription": "Jewelry",
303
- "Images": [
304
- {
305
- "Uri": "Categories/Jewelry.png",
306
- "IsDefault": false,
307
- "IsSelfHosted": false,
308
- "Priority": 0,
309
- "IsAdditionalMedia": false,
310
- "MediaTypeValue": 0,
311
- "DisplayOrder": 0,
312
- "IsApplicableForChildEntities": false,
313
- "ExtensionProperties": []
314
- }
315
- ],
316
- "NameTranslations": [
317
- {
318
- "Language": "en-us",
319
- "Text": "Jewelry",
320
- "ExtensionProperties": []
321
- }
322
- ],
323
- "ExtensionProperties": [],
324
- "NeutralizedName": "Jewelry",
325
- "Slug": "jewelry",
326
- "Url": "fabrikam-fashion/accessories/jewelry/68719478065"
327
- },
328
- {
329
- "RecordId": 68719478039,
330
- "Name": "Gloves and Scarves",
331
- "ParentCategory": 68719478036,
332
- "DisplayOrder": 1,
333
- "LocalizedDescription": "Gloves and Scarves",
334
- "Images": [
335
- {
336
- "Uri": "Categories/Gloves and Scarves.png",
337
- "IsDefault": false,
338
- "IsSelfHosted": false,
339
- "Priority": 0,
340
- "IsAdditionalMedia": false,
341
- "MediaTypeValue": 0,
342
- "DisplayOrder": 0,
343
- "IsApplicableForChildEntities": false,
344
- "ExtensionProperties": []
345
- }
346
- ],
347
- "NameTranslations": [
348
- {
349
- "Language": "en-us",
350
- "Text": "Gloves and Scarves",
351
- "ExtensionProperties": []
352
- }
353
- ],
354
- "ExtensionProperties": [],
355
- "NeutralizedName": "Gloves and Scarves",
356
- "Slug": "gloves-and-scarves",
357
- "Url": "fabrikam-fashion/accessories/gloves-and-scarves/68719478039"
358
- },
359
- {
360
- "RecordId": 68719478064,
361
- "Name": "Hats",
362
- "ParentCategory": 68719478036,
363
- "DisplayOrder": 2,
364
- "LocalizedDescription": "Hats",
365
- "Images": [
366
- {
367
- "Uri": "Categories/Hats.png",
368
- "IsDefault": false,
369
- "IsSelfHosted": false,
370
- "Priority": 0,
371
- "IsAdditionalMedia": false,
372
- "MediaTypeValue": 0,
373
- "DisplayOrder": 0,
374
- "IsApplicableForChildEntities": false,
375
- "ExtensionProperties": []
376
- }
377
- ],
378
- "NameTranslations": [
379
- { "Language": "en-us", "Text": "Hats", "ExtensionProperties": [] }
380
- ],
381
- "ExtensionProperties": [],
382
- "NeutralizedName": "Hats",
383
- "Slug": "hats",
384
- "Url": "fabrikam-fashion/accessories/hats/68719478064"
385
- },
386
- {
387
- "RecordId": 68719478072,
388
- "Name": "Ties",
389
- "ParentCategory": 68719478036,
390
- "DisplayOrder": 2,
391
- "LocalizedDescription": "Ties",
392
- "Images": [
393
- {
394
- "Uri": "Categories/Ties.png",
395
- "IsDefault": false,
396
- "IsSelfHosted": false,
397
- "Priority": 0,
398
- "IsAdditionalMedia": false,
399
- "MediaTypeValue": 0,
400
- "DisplayOrder": 0,
401
- "IsApplicableForChildEntities": false,
402
- "ExtensionProperties": []
403
- }
404
- ],
405
- "NameTranslations": [
406
- { "Language": "en-us", "Text": "Ties", "ExtensionProperties": [] }
407
- ],
408
- "ExtensionProperties": [],
409
- "NeutralizedName": "Ties",
410
- "Slug": "ties",
411
- "Url": "fabrikam-fashion/accessories/ties/68719478072"
412
- },
413
- {
414
- "RecordId": 68719478071,
415
- "Name": "Watches",
416
- "ParentCategory": 68719478036,
417
- "DisplayOrder": 2,
418
- "LocalizedDescription": "Watches",
419
- "Images": [
420
- {
421
- "Uri": "Categories/Watches.png",
422
- "IsDefault": false,
423
- "IsSelfHosted": false,
424
- "Priority": 0,
425
- "IsAdditionalMedia": false,
426
- "MediaTypeValue": 0,
427
- "DisplayOrder": 0,
428
- "IsApplicableForChildEntities": false,
429
- "ExtensionProperties": []
430
- }
431
- ],
432
- "NameTranslations": [
433
- {
434
- "Language": "en-us",
435
- "Text": "Watches",
436
- "ExtensionProperties": []
437
- }
438
- ],
439
- "ExtensionProperties": [],
440
- "NeutralizedName": "Watches",
441
- "Slug": "watches",
442
- "Url": "fabrikam-fashion/accessories/watches/68719478071"
443
- },
444
- {
445
- "RecordId": 68719478063,
446
- "Name": "Handbags and Wallets",
447
- "ParentCategory": 68719478036,
448
- "DisplayOrder": 5,
449
- "LocalizedDescription": "Handbags and Wallets",
450
- "Images": [
451
- {
452
- "Uri": "Categories/Handbags and Wallets.png",
453
- "IsDefault": false,
454
- "IsSelfHosted": false,
455
- "Priority": 0,
456
- "IsAdditionalMedia": false,
457
- "MediaTypeValue": 0,
458
- "DisplayOrder": 0,
459
- "IsApplicableForChildEntities": false,
460
- "ExtensionProperties": []
461
- }
462
- ],
463
- "NameTranslations": [
464
- {
465
- "Language": "en-us",
466
- "Text": "Handbags and Wallets",
467
- "ExtensionProperties": []
468
- }
469
- ],
470
- "ExtensionProperties": [],
471
- "NeutralizedName": "Handbags and Wallets",
472
- "Slug": "handbags-and-wallets",
473
- "Children": [
474
- {
475
- "RecordId": 68719478067,
476
- "Name": "Handbags",
477
- "ParentCategory": 68719478063,
478
- "DisplayOrder": 0,
479
- "LocalizedDescription": "Handbags",
480
- "Images": [
481
- {
482
- "Uri": "Categories/Handbags.png",
483
- "IsDefault": false,
484
- "IsSelfHosted": false,
485
- "Priority": 0,
486
- "IsAdditionalMedia": false,
487
- "MediaTypeValue": 0,
488
- "DisplayOrder": 0,
489
- "IsApplicableForChildEntities": false,
490
- "ExtensionProperties": []
491
- }
492
- ],
493
- "NameTranslations": [
494
- {
495
- "Language": "en-us",
496
- "Text": "Handbags",
497
- "ExtensionProperties": []
498
- }
499
- ],
500
- "ExtensionProperties": [],
501
- "NeutralizedName": "Handbags",
502
- "Slug": "handbags",
503
- "Url": "fabrikam-fashion/accessories/handbags-and-wallets/handbags/68719478067"
504
- },
505
- {
506
- "RecordId": 68719478069,
507
- "Name": "Wallets",
508
- "ParentCategory": 68719478063,
509
- "DisplayOrder": 6,
510
- "LocalizedDescription": "Wallets",
511
- "Images": [
512
- {
513
- "Uri": "Categories/Wallets.png",
514
- "IsDefault": false,
515
- "IsSelfHosted": false,
516
- "Priority": 0,
517
- "IsAdditionalMedia": false,
518
- "MediaTypeValue": 0,
519
- "DisplayOrder": 0,
520
- "IsApplicableForChildEntities": false,
521
- "ExtensionProperties": []
522
- }
523
- ],
524
- "NameTranslations": [
525
- {
526
- "Language": "en-us",
527
- "Text": "Wallets",
528
- "ExtensionProperties": []
529
- }
530
- ],
531
- "ExtensionProperties": [],
532
- "NeutralizedName": "Wallets",
533
- "Slug": "wallets",
534
- "Url": "fabrikam-fashion/accessories/handbags-and-wallets/wallets/68719478069"
535
- }
536
- ],
537
- "Url": "fabrikam-fashion/accessories/handbags-and-wallets/68719478063"
538
- }
539
- ],
540
- "Url": "fabrikam-fashion/accessories/68719478036"
541
- },
542
- {
543
- "RecordId": 68719478038,
544
- "Name": "Womenswear",
545
- "ParentCategory": 68719478035,
546
- "DisplayOrder": 6,
547
- "LocalizedDescription": "Womenswear",
548
- "Images": [
549
- {
550
- "Uri": "Categories/Womenswear.png",
551
- "IsDefault": false,
552
- "IsSelfHosted": false,
553
- "Priority": 0,
554
- "IsAdditionalMedia": false,
555
- "MediaTypeValue": 0,
556
- "DisplayOrder": 0,
557
- "IsApplicableForChildEntities": false,
558
- "ExtensionProperties": []
559
- }
560
- ],
561
- "NameTranslations": [
562
- { "Language": "en-us", "Text": "Womenswear", "ExtensionProperties": [] }
563
- ],
564
- "ExtensionProperties": [],
565
- "NeutralizedName": "Womenswear",
566
- "Slug": "womenswear",
567
- "Children": [
568
- {
569
- "RecordId": 68719478058,
570
- "Name": "Shoes",
571
- "ParentCategory": 68719478038,
572
- "DisplayOrder": -1,
573
- "LocalizedDescription": "Shoes",
574
- "Images": [
575
- {
576
- "Uri": "Categories/Womens Shoes.png",
577
- "IsDefault": false,
578
- "IsSelfHosted": false,
579
- "Priority": 0,
580
- "IsAdditionalMedia": false,
581
- "MediaTypeValue": 0,
582
- "DisplayOrder": 0,
583
- "IsApplicableForChildEntities": false,
584
- "ExtensionProperties": []
585
- }
586
- ],
587
- "NameTranslations": [
588
- { "Language": "en-us", "Text": "Shoes", "ExtensionProperties": [] }
589
- ],
590
- "ExtensionProperties": [],
591
- "NeutralizedName": "Womens Shoes",
592
- "Slug": "womens-shoes",
593
- "Url": "fabrikam-fashion/womenswear/shoes/68719478058"
594
- },
595
- {
596
- "RecordId": 68719478055,
597
- "Name": "Coats",
598
- "ParentCategory": 68719478038,
599
- "DisplayOrder": 0,
600
- "LocalizedDescription": "Coats",
601
- "Images": [
602
- {
603
- "Uri": "Categories/Coats.png",
604
- "IsDefault": false,
605
- "IsSelfHosted": false,
606
- "Priority": 0,
607
- "IsAdditionalMedia": false,
608
- "MediaTypeValue": 0,
609
- "DisplayOrder": 0,
610
- "IsApplicableForChildEntities": false,
611
- "ExtensionProperties": []
612
- }
613
- ],
614
- "NameTranslations": [
615
- { "Language": "en-us", "Text": "Coats", "ExtensionProperties": [] }
616
- ],
617
- "ExtensionProperties": [],
618
- "NeutralizedName": "Coats",
619
- "Slug": "coats",
620
- "Url": "fabrikam-fashion/womenswear/coats/68719478055"
621
- },
622
- {
623
- "RecordId": 68719478059,
624
- "Name": "Skirts",
625
- "ParentCategory": 68719478038,
626
- "DisplayOrder": 0,
627
- "LocalizedDescription": "Skirts",
628
- "Images": [
629
- {
630
- "Uri": "Categories/Skirts.png",
631
- "IsDefault": false,
632
- "IsSelfHosted": false,
633
- "Priority": 0,
634
- "IsAdditionalMedia": false,
635
- "MediaTypeValue": 0,
636
- "DisplayOrder": 0,
637
- "IsApplicableForChildEntities": false,
638
- "ExtensionProperties": []
639
- }
640
- ],
641
- "NameTranslations": [
642
- { "Language": "en-us", "Text": "Skirts", "ExtensionProperties": [] }
643
- ],
644
- "ExtensionProperties": [],
645
- "NeutralizedName": "Skirts",
646
- "Slug": "skirts",
647
- "Url": "fabrikam-fashion/womenswear/skirts/68719478059"
648
- },
649
- {
650
- "RecordId": 68719478061,
651
- "Name": "Tops",
652
- "ParentCategory": 68719478038,
653
- "DisplayOrder": 1,
654
- "LocalizedDescription": "Tops",
655
- "Images": [
656
- {
657
- "Uri": "Categories/Tops.png",
658
- "IsDefault": false,
659
- "IsSelfHosted": false,
660
- "Priority": 0,
661
- "IsAdditionalMedia": false,
662
- "MediaTypeValue": 0,
663
- "DisplayOrder": 0,
664
- "IsApplicableForChildEntities": false,
665
- "ExtensionProperties": []
666
- }
667
- ],
668
- "NameTranslations": [
669
- { "Language": "en-us", "Text": "Tops", "ExtensionProperties": [] }
670
- ],
671
- "ExtensionProperties": [],
672
- "NeutralizedName": "Tops",
673
- "Slug": "tops",
674
- "Url": "fabrikam-fashion/womenswear/tops/68719478061"
675
- },
676
- {
677
- "RecordId": 68719478060,
678
- "Name": "Sweaters",
679
- "ParentCategory": 68719478038,
680
- "DisplayOrder": 2,
681
- "LocalizedDescription": "Sweaters",
682
- "Images": [
683
- {
684
- "Uri": "Categories/Sweaters.png",
685
- "IsDefault": false,
686
- "IsSelfHosted": false,
687
- "Priority": 0,
688
- "IsAdditionalMedia": false,
689
- "MediaTypeValue": 0,
690
- "DisplayOrder": 0,
691
- "IsApplicableForChildEntities": false,
692
- "ExtensionProperties": []
693
- }
694
- ],
695
- "NameTranslations": [
696
- {
697
- "Language": "en-us",
698
- "Text": "Sweaters",
699
- "ExtensionProperties": []
700
- }
701
- ],
702
- "ExtensionProperties": [],
703
- "NeutralizedName": "Sweaters",
704
- "Slug": "sweaters",
705
- "Url": "fabrikam-fashion/womenswear/sweaters/68719478060"
706
- },
707
- {
708
- "RecordId": 68719478056,
709
- "Name": "Dresses",
710
- "ParentCategory": 68719478038,
711
- "DisplayOrder": 5,
712
- "LocalizedDescription": "Dresses",
713
- "Images": [
714
- {
715
- "Uri": "Categories/Dresses.png",
716
- "IsDefault": false,
717
- "IsSelfHosted": false,
718
- "Priority": 0,
719
- "IsAdditionalMedia": false,
720
- "MediaTypeValue": 0,
721
- "DisplayOrder": 0,
722
- "IsApplicableForChildEntities": false,
723
- "ExtensionProperties": []
724
- }
725
- ],
726
- "NameTranslations": [
727
- {
728
- "Language": "en-us",
729
- "Text": "Dresses",
730
- "ExtensionProperties": []
731
- }
732
- ],
733
- "ExtensionProperties": [],
734
- "NeutralizedName": "Dresses",
735
- "Slug": "dresses",
736
- "Url": "fabrikam-fashion/womenswear/dresses/68719478056"
737
- },
738
- {
739
- "RecordId": 68719478057,
740
- "Name": "Jeans",
741
- "ParentCategory": 68719478038,
742
- "DisplayOrder": 9,
743
- "LocalizedDescription": "Jeans",
744
- "Images": [
745
- {
746
- "Uri": "Categories/Womens Jeans.png",
747
- "IsDefault": false,
748
- "IsSelfHosted": false,
749
- "Priority": 0,
750
- "IsAdditionalMedia": false,
751
- "MediaTypeValue": 0,
752
- "DisplayOrder": 0,
753
- "IsApplicableForChildEntities": false,
754
- "ExtensionProperties": []
755
- }
756
- ],
757
- "NameTranslations": [
758
- { "Language": "en-us", "Text": "Jeans", "ExtensionProperties": [] }
759
- ],
760
- "ExtensionProperties": [],
761
- "NeutralizedName": "Womens Jeans",
762
- "Slug": "womens-jeans",
763
- "Url": "fabrikam-fashion/womenswear/jeans/68719478057"
764
- }
765
- ],
766
- "Url": "fabrikam-fashion/womenswear/68719478038"
767
- },
768
- {
769
- "RecordId": 68719487198,
770
- "Name": "Phibro",
771
- "ParentCategory": 68719478035,
772
- "DisplayOrder": 10,
773
- "LocalizedDescription": "",
774
- "Images": [
775
- {
776
- "Uri": "Categories/Phibro.png",
777
- "IsDefault": false,
778
- "IsSelfHosted": false,
779
- "Priority": 0,
780
- "IsAdditionalMedia": false,
781
- "MediaTypeValue": 0,
782
- "DisplayOrder": 0,
783
- "IsApplicableForChildEntities": false,
784
- "ExtensionProperties": []
785
- }
786
- ],
787
- "NameTranslations": [
788
- { "Language": "en-us", "Text": "Phibro", "ExtensionProperties": [] }
789
- ],
790
- "ExtensionProperties": [],
791
- "NeutralizedName": "Phibro",
792
- "Slug": "phibro",
793
- "Url": "fabrikam-fashion/phibro/68719487198"
794
- }
795
- ]