-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathextension-config.json
806 lines (806 loc) · 34.8 KB
/
extension-config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
{
"version": "7.23.6",
"id": "@shopgate/theme-gmd",
"configuration": {
"appId": {
"type": "static",
"destination": "frontend",
"params": {
"value": "%(appId)s"
}
},
"colors": {
"type": "bigApi",
"destination": "frontend",
"default": {},
"params": {
"method": "GET",
"service": "config",
"path": "/v1/shop/%(shopId)s/gui_sg_cloud_theme_colors?parsed=true",
"key": "value"
}
},
"forgotPasswordUrl": {
"type": "bigApi",
"destination": "frontend",
"default": null,
"params": {
"method": "GET",
"service": "config",
"path": "/v1/shop/%(shopId)s/custom_forgot_password_link",
"key": "value"
}
},
"hasFavorites": {
"type": "bigApi",
"destination": "frontend",
"default": false,
"params": {
"method": "GET",
"service": "config",
"path": "/v1/shop/%(shopId)s/gui_sg_connect_has_favorites?parsed=true",
"key": "value"
}
},
"hasReviews": {
"type": "bigApi",
"destination": "frontend",
"default": true,
"params": {
"method": "GET",
"service": "config",
"path": "/v1/shop/%(shopId)s/gui_sg_cloud_has_reviews?parsed=true",
"key": "value"
}
},
"showWriteReview": {
"type": "bigApi",
"destination": "frontend",
"default": true,
"params": {
"method": "GET",
"service": "config",
"path": "/v1/shop/%(shopId)s/gui_sg_connect_show_write_review?parsed=true",
"key": "value"
}
},
"language": {
"type": "bigApi",
"destination": "frontend",
"params": {
"method": "GET",
"service": "shop",
"path": "/v1/%(shopId)s?noCache=true",
"key": "languageId"
}
},
"locales": {
"type": "admin",
"destination": "frontend",
"default": {
"currency": null
},
"params": {
"type": "json",
"label": "Custom locales for various features of the app"
}
},
"logo": {
"type": "admin",
"destination": "frontend",
"default": null,
"params": {
"type": "json",
"label": "An url to fetch a shop logo from"
}
},
"logoFallback": {
"type": "bigApi",
"destination": "frontend",
"params": {
"method": "GET",
"service": "shop",
"path": "/v1/%(shopId)s",
"key": "imageUrl"
}
},
"marketId": {
"type": "bigApi",
"destination": "frontend",
"params": {
"method": "GET",
"service": "shop",
"path": "/v1/%(shopId)s",
"key": "marketId"
}
},
"productPropertiesFilter": {
"type": "bigApi",
"destination": "frontend",
"default": null,
"params": {
"method": "GET",
"service": "config",
"path": "/v1/shop/%(shopId)s/sg_connect_product_properties?parsed=true",
"key": "value"
}
},
"publicPath": {
"type": "static",
"destination": "frontend",
"params": {
"value": "%(publicPath)s/%(appId)s/%(themes[0].id)s/%(themes[0].version)s"
}
},
"shopName": {
"type": "bigApi",
"destination": "frontend",
"params": {
"method": "GET",
"service": "shop",
"path": "/v1/%(shopId)s",
"key": "name"
}
},
"shopCNAME": {
"type": "bigApi",
"destination": "frontend",
"params": {
"method": "GET",
"service": "shop",
"path": "/v1/%(shopId)s",
"key": "cname"
}
},
"webCheckoutShopify": {
"type": "bigApi",
"destination": "frontend",
"default": null,
"params": {
"method": "GET",
"service": "config",
"path": "/v1/shop/%(shopId)s/checkout_web_checkout_shopify?parsed=true",
"key": "value.frontend"
}
},
"apiUrl": {
"type": "static",
"destination": "frontend",
"params": {
"value": "%(browserApplicationAddress)s"
}
},
"currency": {
"type": "bigApi",
"destination": "frontend",
"params": {
"method": "GET",
"service": "shop",
"path": "/v1/%(shopId)s",
"key": "currencyId"
}
},
"showGmdMenuSubHeaders": {
"type": "admin",
"destination": "frontend",
"default": false,
"params": {
"type": "json",
"label": "Show GMD menu headers"
}
},
"benchmark": {
"type": "admin",
"destination": "frontend",
"default": false,
"params": {
"type": "json",
"label": "Enable / disable frontend benchmarking tools"
}
},
"sentry": {
"type": "admin",
"destination": "frontend",
"default": {
"enabled": false,
"level": "warning",
"sampleRate": 1.0
},
"params": {
"type": "json",
"label": "Use sentry.io for error (debug, info) logging"
}
},
"showBackInStock": {
"type": "admin",
"destination": "frontend",
"default": false,
"params": {
"type": "json",
"label": "If the Back-in-Stock feature is enabled / disabled."
}
},
"theme": {
"type": "admin",
"destination": "frontend",
"params": {
"type": "json",
"label": "The theme configuration for Engage GMD theme."
},
"default": {
"settings": {
"@shopgate/engage/locations": {
"setUserSearchZipLocationFromSelection": true,
"preferredLocationDefault": null,
"alternativeLocationOnPDP": {
"radius": 50
}
},
"AppImages": {
"quality": 75,
"fillColor": "FFFFFF,1",
"HeroImage": [
{
"width": 440,
"height": 440
},
{
"width": 1024,
"height": 1024
}
],
"GalleryImage": [
{
"width": 1024,
"height": 1024
},
{
"width": 2048,
"height": 2048
}
],
"ListImage": [
{
"width": 440,
"height": 440
}
]
},
"@shopgate/engage/components/AppBar": {
"background": "#fff",
"color": "#000",
"buttonColor": "inherit",
"buttonCartColor": "var(--color-primary-contrast, $.colors.primaryContrast)",
"buttonCartBackground": "var(--color-primary, $.colors.primary)",
"buttonCartBadgeColor": "var(--color-primary, $.colors.primary)",
"buttonCartBadgeBackground": "var(--color-primary-contrast, $.colors.primaryContrast)",
"buttonCartBadgeShadow": "0 1px 1px rgba(0, 0, 0, 0.25)",
"buttonTextColor": "var(--color-primary, $.colors.accent)",
"buttonTextColorDisabled": "$.colors.shade4"
},
"@shopgate/engage/components/FilterBar": {
"hideOnScroll": true
},
"@shopgate/engage/product/ProductGrid": {
"columns": 2
},
"@shopgate/engage/product/ProductSlider": {
"slidesPerView": 2.3
},
"@shopgate/engage/reviews": {
"prefillAuthor": true
},
"@shopgate/engage/rating": {
"showEmptyRatingStars": false
},
"@shopgate/engage/components/TaxDisclaimer": {
"show": null,
"hint": "*",
"text": null
},
"@shopgate/engage/components/CartCouponIcon": {
"viewBox": null,
"color": null
},
"@shopgate/engage/product/components/Header/PriceStriked": {
"msrpLabel": "price.msrp",
"unitPriceStrikedLabel": null
},
"@shopgate/engage/product/components/UnitQuantityPicker": {
"show": false,
"buttonColor": "$.colors.shade8",
"buttonBgColor": "$.colors.primary",
"inputColor": "$.colors.dark",
"inputBgColor": "$.colors.shade8",
"propertyLabel": "",
"showLabel": false
},
"@shopgate/engage/product/components/ProductDiscountBadge": {
"pdp": {
"style": {},
"show": false
}
}
},
"styles": {},
"typography": {
"family": "Roboto, Arial, sans-serif",
"rootSize": 16,
"lineHeight": 1.5
},
"colors": {
"background": "#f8f8f8",
"light": "#fff",
"lightTransparent": "rgba(255, 255, 255, 0.82)",
"dark": "#000",
"darkTransparent": "rgba(0,0,0, 0.4)",
"lightDark": "#323232",
"placeholder": "#f2f2f2",
"overlay": "#f7f7f7",
"lightOverlay": "#fafafa",
"darkOverlay": "#f0f0f0",
"primary": "#fa5400",
"primaryContrast": "#fff",
"accent": "#5ccee3",
"accentContrast": "#fff",
"cta": "#fa5400",
"ctaContrast": "#fff",
"gray": "#747474",
"darkGray": "#eaeaea",
"focus": "#fa5400",
"shade3": "#9a9a9a",
"shade4": "#b5b5b5",
"shade5": "#ccc",
"shade6": "#656565",
"shade7": "#eaeaea",
"shade8": "#f7f7f7",
"shade9": "#8d8d8d",
"shade10": "#f4f4f4",
"shade11": "#747474",
"shade12": "#939393",
"success": "#35cc29",
"warning": "#ff9300",
"error": "#ff0000"
},
"variables": {
"toast": {
"duration": 5000
},
"scroll": {
"hideOffset": 100
}
},
"shadows": {
"material": "0 1px 6px rgba(0, 0, 0, .117647), 0 1px 4px rgba(0, 0, 0, .117647)",
"navDrawer": "0 0 15px rgba(0, 0, 0, .24)",
"productCard": "0 4px 8px rgba(0,0,0,0.16)",
"productImage": "inset 0 0 20px rgba(0, 0, 0, .05)",
"filter": {
"sort": "0 2px 2px rgba(0, 0, 0, 0.16)",
"priceSlider": "0 0 8px rgba(0, 0, 0, .16)"
},
"cart": {
"paymentBar": "0 -4px 5px -2px rgba(0, 0, 0, 0.1)"
},
"dialog": "0 0.75em 3em 0 rgba(0, 0, 0, 0.5)",
"toast": "0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12)",
"contextMenu": "0 2px 6px rgba(0, 0, 0, .4)",
"buttons": {
"disabled": "0 3px 4px rgba(0, 0, 0, 0.13)",
"elevated": "0 8px 13px rgba(0, 0, 0, 0.25)"
},
"scannerBar": "0 0 0 1px rgba(0, 0, 0, 0.1)",
"sheet": "0 -2px 4px rgba(0, 0, 0, 0.1)"
},
"icons": {
"accountBox": "<path d=\"M3 5v14c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2H5c-1.11 0-2 .9-2 2zm12 4c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3zm-9 8c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1H6v-1z\"/><path d=\"M0 0h24v24H0z\" fill=\"none\"/>",
"addMore": "<g fill=\"#000\" fill-rule=\"nonzero\"><path d=\"M11.326 20.682a1.193 1.193 0 1 0 2.385-.004 1.193 1.193 0 0 0-2.385.004zm-4.4 0a1.193 1.193 0 1 0 1.192-1.192 1.193 1.193 0 0 0-1.198 1.192h.006zm-2.4-14.8a.906.906 0 0 0-.843-.587h-1.98a.903.903 0 1 0 0 1.806h1.355l2.772 7.217a.906.906 0 0 0 .843.588h6.266a.875.875 0 1 1 0 1.75H6.187a.903.903 0 1 0 0 1.806h6.758a2.677 2.677 0 0 0 1.87-4.596l2.221-4.005a.902.902 0 0 0-.654-1.33H5.537L4.526 5.882zM20.897 6.682H23.8V4.87h-2.903V2h-1.794v2.869h-2.897v1.813h2.897v2.88h1.794z\"/></g>",
"arrowDrop": "<path d=\"M7 10l5 5 5-5z\"/>",
"arrow": "<path d=\"M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z\"/>",
"arrowShadowed": "<defs><filter id=\"shadow\"><feGaussianBlur in=\"SourceAlpha\" stdDeviation=\"1\" result=\"blur\" /> <feOffset in=\"blur\" dx=\"0\" dy=\"1\" result=\"offsetBlur\" /> <feMerge> <feMergeNode in=\"offsetBlur\" /> <feMergeNode in=\"SourceGraphic\" /> </feMerge></filter> </defs> <path filter=\"url(#shadow)\" d=\"M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z\" />",
"barcodeScanner": "<path d=\"M4.3 6.226h1.926V17.77H4.3V6.226zm2.89 0h.965V17.77H7.19V6.226zm1.925 0H12V17.77H9.115V6.226zm3.85 0h.965V17.77h-.97l.005-11.544zm2.885 0h1.924V17.77H15.85V6.226zm2.884 0h.965V17.77h-.965V6.226zM2.376 4.3v3.85H.451V4.3a1.922 1.922 0 011.92-1.92h3.85v1.925H2.376zm19.248-1.925a1.922 1.922 0 011.92 1.92v3.85h-1.925V4.3h-3.85V2.376h3.855zM2.376 15.85v3.85h3.85v1.924h-3.85c-.254 0-.504-.048-.74-.149a1.9 1.9 0 01-.623-.417 1.952 1.952 0 01-.418-.624 1.95 1.95 0 01-.144-.74V15.85h1.925zm19.248 3.85v-3.85h1.925v3.85a1.922 1.922 0 01-1.92 1.92h-3.85v-1.926l3.845.005z\"/>",
"box": "<path d=\"M 13.900391,1.4433594 1.5996094,4.171875 l 0,0.025391 8.5390626,4.2089844 c 4.073387,-0.9018528 8.163817,-1.7958087 12.24414,-2.69141 z m 8.490221,4.8261718 -11.986328,2.6152344 0.111328,13.4472654 11.875,-2.658203 z M 9.9003906,22.25 c -6.600261,1.166667 -3.3001305,0.583333 0,0 z m 0,0 0,-13.4316406 -8.3007812,-4.0957032 0,13.4589848 z M 4.4238281,9.2304688 c 1.01719,0.50398 2.0367375,1.0052022 3.0546875,1.5078122 0.32345,0.12833 0.4898582,0.544909 0.3300782,0.855469 C 6.7949938,11.0955 5.7712662,10.587588 4.7539062,10.085938 4.4304763,9.9572575 4.2659081,9.5411387 4.4238281,9.2304688 Z\" />",
"browse": "<path fill=\"currentColor\" d=\"M15.1 19.384l-4.01-4.077a5.832 5.832 0 01-3.387 1.105 6.014 6.014 0 115.944-6.013 6.093 6.093 0 01-1.52 4.008l3.943 4.01a.668.668 0 010 .967.626.626 0 01-.487.207.729.729 0 01-.484-.207zM3.141 10.398a4.664 4.664 0 004.56 4.63 4.631 4.631 0 10-4.56-4.63zm13.824 1.59a.691.691 0 010-1.383h5.53a.691.691 0 010 1.382zm-.692-2.765a.691.691 0 110-1.383h6.221a.691.691 0 110 1.383zm-.69-2.765a.691.691 0 010-1.383h6.911a.691.691 0 010 1.383z\"/>",
"burger": "<path d=\"M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z\"/>",
"cart": "<path d=\"M7.9,18c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S9,18,7.9,18z M17.9,18c-1.1,0-2,0.9-2,2s0.9,2,2,2c1.1,0,2-0.9,2-2S19,18,17.9,18z M8.1,14.8l0-0.1L9,13h7.5c0.7,0,1.4-0.4,1.7-1l3.9-7l-1.7-1h0l-1.1,2l-2.8,5h-7l-0.1-0.3L7.1,6L6.1,4L5.2,2H1.9v2h2l3.6,7.6L6.2,14c-0.2,0.3-0.2,0.6-0.2,1c0,1.1,0.9,2,2,2h12v-2H8.3C8.2,15,8.1,14.9,8.1,14.8z\"/>",
"cartPlus": "<path d=\"M0 0h24v24H0zm18.31 6l-2.76 5z\" fill=\"none\"/><path d=\"M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-9.83-3.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4h-.01l-1.1 2-2.76 5H8.53l-.13-.27L6.16 6l-.95-2-.94-2H1v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.13 0-.25-.11-.25-.25z\"/>",
"cartCoupon": null,
"checked": "<path d=\"M19 3H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h14c1.11 0 2-.9 2-2V5c0-1.1-.89-2-2-2zm-9 14l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z\"/>",
"check": "<path d=\"M1 11.248L8.84 19 23 5\" stroke=\"#000\" stroke-width=\"2\" fill=\"none\" fill-rule=\"evenodd\"/>",
"chevron": "<path d=\"M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z\"/><path d=\"M0 0h24v24H0z\" fill=\"none\" />",
"creditCard": "<path d=\"M0 0h24v24H0z\" fill=\"none\"/><path d=\"M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z\"/>",
"cross": "<path d=\"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z\"/>",
"description": "<path d=\"M0 0h24v24H0z\" fill=\"none\"/><path d=\"M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z\"/>",
"filter": "<path d=\"M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z\"/>",
"flashDisabled": "<path d=\"M15.22,3.1,12,9.51l-.8,1.59h3.86l-4,6.83v-6h-3V3.1h7.12M17,2h0Zm0,0H7V13h3v9l7-12H13l4-8Z\" />",
"flashEnabled": "<path d=\"M0 0h24v24H0z\" fill=\"none\"/><path d=\"M7 2v11h3v9l7-12h-4l4-8z\"/>",
"grid": " <rect width=\"8\" height=\"8\" rx=\"1\" transform=\"translate(3 3)\"/> <rect width=\"8\" height=\"8\" rx=\"1\" transform=\"translate(3 13)\"/> <rect width=\"8\" height=\"8\" rx=\"1\" transform=\"translate(13 3)\"/> <rect width=\"8\" height=\"8\" rx=\"1\" transform=\"translate(13 13)\"/>",
"heart": "<path d=\"M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z\"/>",
"heartOutline": "<path d=\"M16.5 3c-1.74 0-3.41.81-4.5 2.09C10.91 3.81 9.24 3 7.5 3 4.42 3 2 5.42 2 8.5c0 3.78 3.4 6.86 8.55 11.54L12 21.35l1.45-1.32C18.6 15.36 22 12.28 22 8.5 22 5.42 19.58 3 16.5 3zm-4.4 15.55l-.1.1-.1-.1C7.14 14.24 4 11.39 4 8.5 4 6.5 5.5 5 7.5 5c1.54 0 3.04.99 3.57 2.36h1.87C13.46 5.99 14.96 5 16.5 5c2 0 3.5 1.5 3.5 3.5 0 2.89-3.14 5.74-7.9 10.05z\"/>",
"heartPlus": "<path d=\"M12 18C12 19 12.25 19.92 12.67 20.74L12 21.35L10.55 20.03C5.4 15.36 2 12.27 2 8.5C2 5.41 4.42 3 7.5 3C9.24 3 10.91 3.81 12 5.08C13.09 3.81 14.76 3 16.5 3C19.58 3 22 5.41 22 8.5C22 9.93 21.5 11.26 20.62 12.61C19.83 12.23 18.94 12 18 12C14.69 12 12 14.69 12 18M19 14H17V17H14V19H17V22H19V19H22V17H19V14Z\" />",
"heartPlusOutline": "<path d=\"M12.67 20.74L12 21.35L10.55 20.03C5.4 15.36 2 12.27 2 8.5C2 5.41 4.42 3 7.5 3C9.24 3 10.91 3.81 12 5.08C13.09 3.81 14.76 3 16.5 3C19.58 3 22 5.41 22 8.5C22 9.93 21.5 11.26 20.62 12.61C20 12.31 19.31 12.11 18.59 12.04C19.5 10.8 20 9.65 20 8.5C20 6.5 18.5 5 16.5 5C14.96 5 13.46 6 12.93 7.36H11.07C10.54 6 9.04 5 7.5 5C5.5 5 4 6.5 4 8.5C4 11.39 7.14 14.24 11.89 18.55L12 18.65L12.04 18.61C12.12 19.37 12.34 20.09 12.67 20.74M17 14V17H14V19H17V22H19V19H22V17H19V14H17Z\" />",
"home": "<path d=\"M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z\"/><path d=\"M0 0h24v24H0z\" fill=\"none\"/>",
"info": "<path d=\"M0 0h24v24H0z\" fill=\"none\"/><path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z\"/>",
"infoOutline": "<path d=\"M0 0h24v24H0z\" fill=\"none\"/><path d=\"M11 17h2v-6h-2v6zm1-15C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM11 9h2V7h-2v2z\"/>",
"list": "<path d=\"M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z\"/>",
"localShipping": "<path d=\"M0 0h24v24H0z\" fill=\"none\"/><path d=\"M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm13.5-9l1.96 2.5H17V9.5h2.5zm-1.5 9c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z\"/>",
"locator": "<path fill=\"none\" d=\"M0 0h24v24H0z\"/><path d=\"M12 8a4 4 0 100 8 4 4 0 000-8zm9 3c-1-4-4-7-8-8V1h-2v2c-4 1-7 4-8 8H1v2h2c1 4 4 7 8 8v2h2v-2c4-1 7-4 8-8h2v-2h-2zm-9 8a7 7 0 110-14 7 7 0 010 14z\"/>",
"lock": "<path d=\"M0 0h24v24H0z\" fill=\"none\"/><path d=\"M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z\"/>",
"logout": "<path d=\"M0 0h24v24H0z\" fill=\"none\"/><path d=\"M13 3h-2v10h2V3zm4.83 2.17l-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z\"/>",
"magnifier": "<path d=\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z\"/>",
"more": "<path fill=\"currentColor\" d=\"M18.115 11.693a2.943 2.943 0 112.943 2.943 2.942 2.942 0 01-2.943-2.943zm-9.056 0a2.945 2.945 0 112.943 2.943 2.946 2.946 0 01-2.947-2.943zm-9.056 0a2.943 2.943 0 112.942 2.943A2.945 2.945 0 010 11.693z\"/>",
"moreVert": "<path d=\"M0 0h24v24H0z\" fill=\"none\"/><path d=\"M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z\"/>",
"notification": "<path d=\"M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z\"/>",
"placeholder": "<circle cx=\"12\" cy=\"12\" r=\"3.2\"/><path d=\"M9 2L7.17 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2h-3.17L15 2H9zm3 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z\"/><path d=\"M0 0h24v24H0z\" fill=\"none\"/>",
"radioChecked": "<path d=\"M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"/>",
"radioUnchecked": "<path d=\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z\"/>",
"security": "<path d=\"M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z\"/><path d=\"M0 0h24v24H0z\" fill=\"none\"/>",
"share": "<path d=\"M18 16.1364C17.24 16.1364 16.56 16.4376 16.04 16.9095L8.91 12.7428C8.96 12.5119 9 12.281 9 12.04C9 11.7991 8.96 11.5682 8.91 11.3372L15.96 7.21072C16.5 7.71273 17.21 8.02397 18 8.02397C19.66 8.02397 21 6.67859 21 5.01193C21 3.34526 19.66 1.99988 18 1.99988C16.34 1.99988 15 3.34526 15 5.01193C15 5.25289 15.04 5.48381 15.09 5.71474L8.04 9.84124C7.5 9.33924 6.79 9.02799 6 9.02799C4.34 9.02799 3 10.3734 3 12.04C3 13.7067 4.34 15.0521 6 15.0521C6.79 15.0521 7.5 14.7408 8.04 14.2388L15.16 18.4155C15.11 18.6264 15.08 18.8473 15.08 19.0682C15.08 20.6846 16.39 21.9999 18 21.9999C19.61 21.9999 20.92 20.6846 20.92 19.0682C20.92 17.4517 19.61 16.1364 18 16.1364Z\"/>",
"shoppingCart": "<path d=\"M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z\"/><path d=\"M0 0h24v24H0z\" fill=\"none\"/>",
"sort": "<path d=\"M5.5,6C5.2,6,4.9,6.3,4.9,6.7c0,0,0,0,0,0v9l-1.3-1.1c-0.3-0.2-0.7-0.2-0.9,0.1 c-0.2,0.3-0.2,0.7,0.1,0.9l0,0l1,0.9l0,0l0.7,0.6L5,17.6l0,0L5.5,18l0,0L6,17.6l0.3-0.2l1-0.9l0,0l1-0.9c0.3-0.2,0.3-0.7,0.1-0.9 c-0.2-0.3-0.7-0.3-0.9-0.1l0,0l-1.3,1.1v-9C6.2,6.3,5.9,6,5.5,6C5.5,6,5.5,6,5.5,6L5.5,6z M10.4,6.1c-0.4,0-0.7,0.3-0.7,0.7 c0,0.4,0.3,0.7,0.7,0.7l0,0h10.3c0.4,0,0.7-0.3,0.7-0.7c0-0.4-0.3-0.7-0.7-0.7H10.4z M10.4,9.5c-0.4,0-0.7,0.3-0.7,0.7 c0,0.4,0.3,0.7,0.7,0.7l0,0h8.1c0.4,0,0.7-0.3,0.7-0.7c0-0.4-0.3-0.7-0.7-0.7H10.4z M10.4,12.9c-0.4,0-0.7,0.3-0.7,0.7 c0,0.4,0.3,0.7,0.7,0.7l0,0h5.8c0.4,0,0.7-0.3,0.7-0.7c0-0.4-0.3-0.7-0.7-0.7H10.4z M10.4,16.3c-0.4,0-0.7,0.3-0.7,0.7 s0.3,0.7,0.7,0.7H14c0.4,0,0.7-0.3,0.7-0.7s-0.3-0.7-0.7-0.7l0,0H10.4z\"/>",
"starHalf": "<defs><path id=\"a\" d=\"M0 0h24v24H0z\"/></defs> <clipPath id=\"b\"><use xlink:href=\"#a\" overflow=\"visible\"/></clipPath> <path clip-path=\"ul(#b)\" d=\"M12 2L9.2 8.6 2 9.2 7.5 14l-1.6 7 6.2-3.7m-.1-1.9V6.1m2.8 7.3\"/>",
"star": "<path d=\"M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z\"/>",
"starOutline": "<path d=\"M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z\"/>",
"stop": "<path transform=\"translate(1.5,2)\" d=\"m14.16534,0.04026l-8.27754,0l-5.84754,5.84754l0,8.27754l5.84754,5.84754l8.27754,0l5.84754,-5.84754l0,-8.27754l-5.84754,-5.84754zm-4.13877,15.86714c-0.7989,0 -1.44247,-0.64356 -1.44247,-1.44247c0,-0.7989 0.64356,-1.44247 1.44247,-1.44247c0.7989,0 1.44247,0.64356 1.44247,1.44247c0,0.7989 -0.64356,1.44247 -1.44247,1.44247zm-1.10959,-4.77124l2.21918,0l0,-6.65754l-2.21918,0l0,6.65754z\" clip-rule=\"evenodd\" fill-rule=\"evenodd\"/>",
"tick": "<path d=\"M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z\"/>",
"trash": "<path d=\"M6 19c0 1.1.9 2 2 2h8c1.1 0 2-.9 2-2V7H6v12zM19 4h-3.5l-1-1h-5l-1 1H5v2h14V4z\"/>",
"unchecked": "<path d=\"M19 5v14H5V5h14m0-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2z\"/>",
"viewList": "<path d=\"M4 14h4v-4H4v4zm0 5h4v-4H4v4zM4 9h4V5H4v4zm5 5h12v-4H9v4zm0 5h12v-4H9v4zM9 5v4h12V5H9z\"/><path d=\"M0 0h24v24H0z\" fill=\"none\"/>",
"visibility": "<path d=\"M0 0h24v24H0z\" fill=\"none\"/><path d=\"M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z\"/>",
"visibilityOff": "<path d=\"M0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0zm0 0h24v24H0z\" fill=\"none\"/><path d=\"M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46C3.08 8.3 1.78 10.02 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z\"/>",
"warning": "<path transform=\"translate(1.5, 2)\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m21.73937,20.02952l-10.7086,-18.49668l-10.70859,18.49668l21.41719,0zm-11.68211,-2.92053l0,-1.94702l1.94702,0l0,1.94702l-1.94702,0zm0,-3.89404l1.94702,0l0,-3.89404l-1.94702,0l0,3.89404z\"/>"
},
"assets": {},
"pages": [
{
"pattern": "/cart",
"settings": {
"cartItemsDisplay": "card"
}
}
]
}
},
"cartShippingHideAnonymousLegacy": {
"type": "bigApi",
"destination": "frontend",
"default": null,
"params": {
"method": "GET",
"service": "config",
"path": "/v1/shop/%(shopId)s/gui_hide_shipping_text_for_logged_out_users?parsed=true",
"key": "value"
}
},
"cartShippingTextAnonymousLegacy": {
"type": "bigApi",
"destination": "frontend",
"default": null,
"params": {
"method": "GET",
"service": "config",
"path": "/v1/shop/%(shopId)s/gui_shipping_text_for_logged_out_users?parsed=true",
"key": "value"
}
},
"cartTaxText": {
"type": "bigApi",
"destination": "frontend",
"default": null,
"params": {
"method": "GET",
"service": "config",
"path": "/v1/shop/%(shopId)s/gui_cart_tax_settings?parsed=true",
"key": "value.text"
}
},
"cart": {
"type": "admin",
"destination": "frontend",
"default": {
"hideTotal": false,
"hideShipping": false,
"hideTax": false,
"shipping": {
"hideFreeShipping": false,
"hideAnonymous": null,
"textForAnonymousUsers": null,
"textForFreeShipping": null,
"textForNoShipping": null,
"hint": null
},
"tax": {
"text": null,
"hint": null
}
},
"params": {
"type": "json",
"label": "Configure the display of cart information."
}
},
"categoriesShowAllProducts": {
"type": "admin",
"destination": "frontend",
"default": true,
"params": {
"type": "json",
"label": "Enables / Disables an option in the category list to show all products of the current category"
}
},
"variantSelectionMode": {
"type": "bigApi",
"destination": "frontend",
"default": false,
"params": {
"method": "GET",
"service": "config",
"path": "/v1/shop/%(shopId)s/product_selection_mode?parsed=true",
"key": "value"
}
},
"product": {
"type": "admin",
"destination": "frontend",
"default": {
"variantPreselect": false
},
"params": {
"type": "json",
"label": "Product settings."
}
},
"hasNoScanner": {
"type": "bigApi",
"destination": "frontend",
"default": false,
"params": {
"method": "GET",
"service": "config",
"path": "/v1/shop/%(shopId)s/has_no_scanner?parsed=true",
"key": "value"
}
},
"favorites": {
"type": "admin",
"destination": "frontend",
"default": {
"limit": 100
},
"params": {
"type": "json",
"label": "Favorites settings: limits, etc"
}
},
"favoritesMode": {
"type": "admin",
"destination": "frontend",
"default": {
"hasMultipleFavoritesLists": false
},
"params": {
"type": "json",
"label": "Favorites Settings"
}
},
"hideProductImageShadow": {
"type": "admin",
"destination": "frontend",
"default": true,
"params": {
"type": "json",
"label": "Toggle inner shadows of product images"
}
},
"recaptcha": {
"type": "admin",
"destination": "frontend",
"default": {
"enabled": false,
"googleCloudSiteKey": null
},
"params": {
"type": "json",
"label": "Enable reCAPTCHA for login"
}
},
"webTrackingEngage": {
"type": "bigApi",
"destination": "frontend",
"default": {},
"params": {
"method": "GET",
"service": "config",
"path": "/v1/shop/%(shopId)s/web_tracking_engage?parsed=true",
"key": "value"
}
},
"tracking": {
"type": "admin",
"destination": "frontend",
"default": {
"hasWebTrackingEngage": false,
"useSkuAsProductId": false
},
"params": {
"type": "json",
"label": "Tracking settings: webTrackingEngage, etc"
}
},
"customStyleUrl": {
"type": "admin",
"destination": "frontend",
"default": null,
"params": {
"type": "json",
"label": "A url to fetch a css file for Engage."
}
},
"settingsUrl": {
"type": "admin",
"destination": "frontend",
"default": null,
"params": {
"type": "json",
"label": "A url to fetch a JSONP file with shop settings for Engage."
}
},
"merchantSettingsUrl": {
"type": "admin",
"destination": "frontend",
"default": null,
"params": {
"type": "json",
"label": "A url to fetch a JSONP file with merchant settings for Engage."
}
},
"omniStage": {
"type": "bigApi",
"destination": "frontend",
"default": null,
"params": {
"method": "GET",
"service": "config",
"path": "/v1/shop/%(shopId)s/omnichannel_stage?parsed=true",
"key": "value"
}
},
"omniMerchantCode": {
"type": "bigApi",
"destination": "frontend",
"default": null,
"params": {
"method": "GET",
"service": "config",
"path": "/v1/shop/%(shopId)s/omnichannel_merchant_code?parsed=true",
"key": "value"
}
},
"featureFlagPercentages": {
"type": "admin",
"destination": "frontend",
"default": {
"showInventoryInLists": 100
},
"params": {
"type": "json",
"label": "Mapping for percentage of users who should get the feature enabled"
}
},
"appRating": {
"type": "admin",
"destination": "frontend",
"default": {
"minDaysBetweenPopups": 90,
"rejectionMaxCount": 2,
"askForFeedback": true,
"feedbackLink": null,
"bundleId": {
"android": null,
"ios": null
},
"ordersPlaced": {
"value": 1,
"repeats": null
},
"timeInterval": {
"value": 30,
"repeats": null
},
"appStarts": {
"value": 10,
"repeats": null
}
},
"params": {
"type": "json",
"label": "App rating settings"
}
},
"pushOptIn": {
"type": "admin",
"destination": "frontend",
"default": {
"minDaysBetweenOptIns": 90,
"rejectionMaxCount": 2,
"ordersPlaced": {
"value": 0,
"repeats": null
},
"appStarts": {
"value": 1,
"repeats": null
},
"modalMessage": null,
"modalTitle": null,
"modalButtonDeny": null,
"modalButtonAllow": null,
"modalImageURL": null,
"modalImageSVG": null
},
"params": {
"type": "json",
"label": "Push opt-in settings"
}
},
"cookieConsent": {
"type": "admin",
"destination": "frontend",
"default": {
"modalMessage": null,
"modalTitle": null,
"modalButtonConfigureSettings": null,
"modalButtonOnlyRequired": null,
"modalButtonAcceptAll": null,
"modalImageURL": null,
"modalImageSVG": null,
"showRequiredCookiesButton": false,
"showComfortCookiesToggle": false,
"settingsComfortText": null,
"settingsComfortTitle": null,
"settingsStatisticsText": null,
"settingsStatisticsTitle": null,
"settingsRequiredText": null,
"settingsRequiredTitle": null,
"isCookieConsentActivated": false
},
"params": {
"type": "json",
"label": "cookie consent settings"
}
},
"disableAutoLogoutModal": {
"type": "admin",
"destination": "frontend",
"default": false,
"params": {
"type": "json",
"label": "Disable the modal that is shown after automatic logout"
}
},
"reviewsInfo": {
"type": "bigApi",
"destination": "frontend",
"default": {
"text": null,
"linkText": null,
"linkUrl": null
},
"params": {
"method": "GET",
"service": "config",
"path": "/v1/shop/%(shopId)s/gui_sg_connect_reviews_info_config?parsed=true",
"key": "value"
}
},
"showPriceGrouping": {
"type": "admin",
"destination": "frontend",
"default": true,
"params": {
"type": "json",
"label": "Whether to use grouping separators, such as thousands separators."
}
}
}
}