@wix/auto_sdk_stores_info-sections-v-3 1.0.97 → 1.0.98
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/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +571 -5
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +59 -33
- package/build/cjs/index.typings.js +447 -5
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +59 -33
- package/build/cjs/meta.js +447 -5
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +571 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +59 -33
- package/build/es/index.typings.mjs +447 -5
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +59 -33
- package/build/es/meta.mjs +447 -5
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +571 -5
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +59 -33
- package/build/internal/cjs/index.typings.js +447 -5
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +59 -33
- package/build/internal/cjs/meta.js +447 -5
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +571 -5
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +59 -33
- package/build/internal/es/index.typings.mjs +447 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +59 -33
- package/build/internal/es/meta.mjs +447 -5
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -215,6 +215,10 @@ function createInfoSection(payload) {
|
|
|
215
215
|
path: "infoSection.description.nodes.galleryData.options.item.ratio"
|
|
216
216
|
},
|
|
217
217
|
{ path: "infoSection.description.nodes.imageData.image.duration" },
|
|
218
|
+
{ path: "infoSection.description.nodes.imageData.crop.x" },
|
|
219
|
+
{ path: "infoSection.description.nodes.imageData.crop.y" },
|
|
220
|
+
{ path: "infoSection.description.nodes.imageData.crop.width" },
|
|
221
|
+
{ path: "infoSection.description.nodes.imageData.crop.height" },
|
|
218
222
|
{ path: "infoSection.description.nodes.mapData.mapSettings.lat" },
|
|
219
223
|
{ path: "infoSection.description.nodes.mapData.mapSettings.lng" },
|
|
220
224
|
{
|
|
@@ -238,9 +242,27 @@ function createInfoSection(payload) {
|
|
|
238
242
|
{
|
|
239
243
|
path: "infoSection.description.nodes.layoutData.backgroundImage.media.duration"
|
|
240
244
|
},
|
|
245
|
+
{
|
|
246
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
253
|
+
},
|
|
241
254
|
{
|
|
242
255
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
243
256
|
},
|
|
257
|
+
{
|
|
258
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
265
|
+
},
|
|
244
266
|
{
|
|
245
267
|
path: "infoSection.description.nodes.layoutData.background.gradient.centerX"
|
|
246
268
|
},
|
|
@@ -272,6 +294,15 @@ function createInfoSection(payload) {
|
|
|
272
294
|
{
|
|
273
295
|
path: "infoSection.description.nodes.cardData.backgroundImage.media.duration"
|
|
274
296
|
},
|
|
297
|
+
{
|
|
298
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
305
|
+
},
|
|
275
306
|
{ path: "infoSection.description.nodes.tocData.fontSize" },
|
|
276
307
|
{ path: "infoSection.description.nodes.tocData.itemSpacing" },
|
|
277
308
|
{
|
|
@@ -340,6 +371,10 @@ function createInfoSection(payload) {
|
|
|
340
371
|
{
|
|
341
372
|
path: "infoSection.description.nodes.imageData.image.duration"
|
|
342
373
|
},
|
|
374
|
+
{ path: "infoSection.description.nodes.imageData.crop.x" },
|
|
375
|
+
{ path: "infoSection.description.nodes.imageData.crop.y" },
|
|
376
|
+
{ path: "infoSection.description.nodes.imageData.crop.width" },
|
|
377
|
+
{ path: "infoSection.description.nodes.imageData.crop.height" },
|
|
343
378
|
{ path: "infoSection.description.nodes.mapData.mapSettings.lat" },
|
|
344
379
|
{ path: "infoSection.description.nodes.mapData.mapSettings.lng" },
|
|
345
380
|
{
|
|
@@ -369,9 +404,27 @@ function createInfoSection(payload) {
|
|
|
369
404
|
{
|
|
370
405
|
path: "infoSection.description.nodes.layoutData.backgroundImage.media.duration"
|
|
371
406
|
},
|
|
407
|
+
{
|
|
408
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
415
|
+
},
|
|
372
416
|
{
|
|
373
417
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
374
418
|
},
|
|
419
|
+
{
|
|
420
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
427
|
+
},
|
|
375
428
|
{
|
|
376
429
|
path: "infoSection.description.nodes.layoutData.background.gradient.centerX"
|
|
377
430
|
},
|
|
@@ -405,6 +458,15 @@ function createInfoSection(payload) {
|
|
|
405
458
|
{
|
|
406
459
|
path: "infoSection.description.nodes.cardData.backgroundImage.media.duration"
|
|
407
460
|
},
|
|
461
|
+
{
|
|
462
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
469
|
+
},
|
|
408
470
|
{ path: "infoSection.description.nodes.tocData.fontSize" },
|
|
409
471
|
{ path: "infoSection.description.nodes.tocData.itemSpacing" },
|
|
410
472
|
{
|
|
@@ -480,6 +542,10 @@ function getInfoSection(payload) {
|
|
|
480
542
|
{
|
|
481
543
|
path: "infoSection.description.nodes.imageData.image.duration"
|
|
482
544
|
},
|
|
545
|
+
{ path: "infoSection.description.nodes.imageData.crop.x" },
|
|
546
|
+
{ path: "infoSection.description.nodes.imageData.crop.y" },
|
|
547
|
+
{ path: "infoSection.description.nodes.imageData.crop.width" },
|
|
548
|
+
{ path: "infoSection.description.nodes.imageData.crop.height" },
|
|
483
549
|
{ path: "infoSection.description.nodes.mapData.mapSettings.lat" },
|
|
484
550
|
{ path: "infoSection.description.nodes.mapData.mapSettings.lng" },
|
|
485
551
|
{
|
|
@@ -509,9 +575,27 @@ function getInfoSection(payload) {
|
|
|
509
575
|
{
|
|
510
576
|
path: "infoSection.description.nodes.layoutData.backgroundImage.media.duration"
|
|
511
577
|
},
|
|
578
|
+
{
|
|
579
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
586
|
+
},
|
|
512
587
|
{
|
|
513
588
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
514
589
|
},
|
|
590
|
+
{
|
|
591
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
598
|
+
},
|
|
515
599
|
{
|
|
516
600
|
path: "infoSection.description.nodes.layoutData.background.gradient.centerX"
|
|
517
601
|
},
|
|
@@ -545,6 +629,15 @@ function getInfoSection(payload) {
|
|
|
545
629
|
{
|
|
546
630
|
path: "infoSection.description.nodes.cardData.backgroundImage.media.duration"
|
|
547
631
|
},
|
|
632
|
+
{
|
|
633
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
640
|
+
},
|
|
548
641
|
{ path: "infoSection.description.nodes.tocData.fontSize" },
|
|
549
642
|
{ path: "infoSection.description.nodes.tocData.itemSpacing" },
|
|
550
643
|
{
|
|
@@ -595,6 +688,10 @@ function getOrCreateInfoSection(payload) {
|
|
|
595
688
|
path: "infoSection.description.nodes.galleryData.options.item.ratio"
|
|
596
689
|
},
|
|
597
690
|
{ path: "infoSection.description.nodes.imageData.image.duration" },
|
|
691
|
+
{ path: "infoSection.description.nodes.imageData.crop.x" },
|
|
692
|
+
{ path: "infoSection.description.nodes.imageData.crop.y" },
|
|
693
|
+
{ path: "infoSection.description.nodes.imageData.crop.width" },
|
|
694
|
+
{ path: "infoSection.description.nodes.imageData.crop.height" },
|
|
598
695
|
{ path: "infoSection.description.nodes.mapData.mapSettings.lat" },
|
|
599
696
|
{ path: "infoSection.description.nodes.mapData.mapSettings.lng" },
|
|
600
697
|
{
|
|
@@ -618,9 +715,27 @@ function getOrCreateInfoSection(payload) {
|
|
|
618
715
|
{
|
|
619
716
|
path: "infoSection.description.nodes.layoutData.backgroundImage.media.duration"
|
|
620
717
|
},
|
|
718
|
+
{
|
|
719
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
726
|
+
},
|
|
621
727
|
{
|
|
622
728
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
623
729
|
},
|
|
730
|
+
{
|
|
731
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
738
|
+
},
|
|
624
739
|
{
|
|
625
740
|
path: "infoSection.description.nodes.layoutData.background.gradient.centerX"
|
|
626
741
|
},
|
|
@@ -652,6 +767,15 @@ function getOrCreateInfoSection(payload) {
|
|
|
652
767
|
{
|
|
653
768
|
path: "infoSection.description.nodes.cardData.backgroundImage.media.duration"
|
|
654
769
|
},
|
|
770
|
+
{
|
|
771
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
778
|
+
},
|
|
655
779
|
{ path: "infoSection.description.nodes.tocData.fontSize" },
|
|
656
780
|
{ path: "infoSection.description.nodes.tocData.itemSpacing" },
|
|
657
781
|
{
|
|
@@ -727,6 +851,10 @@ function getOrCreateInfoSection(payload) {
|
|
|
727
851
|
{
|
|
728
852
|
path: "infoSection.description.nodes.imageData.image.duration"
|
|
729
853
|
},
|
|
854
|
+
{ path: "infoSection.description.nodes.imageData.crop.x" },
|
|
855
|
+
{ path: "infoSection.description.nodes.imageData.crop.y" },
|
|
856
|
+
{ path: "infoSection.description.nodes.imageData.crop.width" },
|
|
857
|
+
{ path: "infoSection.description.nodes.imageData.crop.height" },
|
|
730
858
|
{ path: "infoSection.description.nodes.mapData.mapSettings.lat" },
|
|
731
859
|
{ path: "infoSection.description.nodes.mapData.mapSettings.lng" },
|
|
732
860
|
{
|
|
@@ -756,9 +884,27 @@ function getOrCreateInfoSection(payload) {
|
|
|
756
884
|
{
|
|
757
885
|
path: "infoSection.description.nodes.layoutData.backgroundImage.media.duration"
|
|
758
886
|
},
|
|
887
|
+
{
|
|
888
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
895
|
+
},
|
|
759
896
|
{
|
|
760
897
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
761
898
|
},
|
|
899
|
+
{
|
|
900
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
907
|
+
},
|
|
762
908
|
{
|
|
763
909
|
path: "infoSection.description.nodes.layoutData.background.gradient.centerX"
|
|
764
910
|
},
|
|
@@ -792,6 +938,15 @@ function getOrCreateInfoSection(payload) {
|
|
|
792
938
|
{
|
|
793
939
|
path: "infoSection.description.nodes.cardData.backgroundImage.media.duration"
|
|
794
940
|
},
|
|
941
|
+
{
|
|
942
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
949
|
+
},
|
|
795
950
|
{ path: "infoSection.description.nodes.tocData.fontSize" },
|
|
796
951
|
{ path: "infoSection.description.nodes.tocData.itemSpacing" },
|
|
797
952
|
{
|
|
@@ -842,6 +997,10 @@ function bulkGetOrCreateInfoSections(payload) {
|
|
|
842
997
|
path: "infoSections.description.nodes.galleryData.options.item.ratio"
|
|
843
998
|
},
|
|
844
999
|
{ path: "infoSections.description.nodes.imageData.image.duration" },
|
|
1000
|
+
{ path: "infoSections.description.nodes.imageData.crop.x" },
|
|
1001
|
+
{ path: "infoSections.description.nodes.imageData.crop.y" },
|
|
1002
|
+
{ path: "infoSections.description.nodes.imageData.crop.width" },
|
|
1003
|
+
{ path: "infoSections.description.nodes.imageData.crop.height" },
|
|
845
1004
|
{ path: "infoSections.description.nodes.mapData.mapSettings.lat" },
|
|
846
1005
|
{ path: "infoSections.description.nodes.mapData.mapSettings.lng" },
|
|
847
1006
|
{
|
|
@@ -867,9 +1026,27 @@ function bulkGetOrCreateInfoSections(payload) {
|
|
|
867
1026
|
{
|
|
868
1027
|
path: "infoSections.description.nodes.layoutData.backgroundImage.media.duration"
|
|
869
1028
|
},
|
|
1029
|
+
{
|
|
1030
|
+
path: "infoSections.description.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
path: "infoSections.description.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
path: "infoSections.description.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
1037
|
+
},
|
|
870
1038
|
{
|
|
871
1039
|
path: "infoSections.description.nodes.layoutData.backdropImage.media.duration"
|
|
872
1040
|
},
|
|
1041
|
+
{
|
|
1042
|
+
path: "infoSections.description.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
1043
|
+
},
|
|
1044
|
+
{
|
|
1045
|
+
path: "infoSections.description.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
path: "infoSections.description.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
1049
|
+
},
|
|
873
1050
|
{
|
|
874
1051
|
path: "infoSections.description.nodes.layoutData.background.gradient.centerX"
|
|
875
1052
|
},
|
|
@@ -901,6 +1078,15 @@ function bulkGetOrCreateInfoSections(payload) {
|
|
|
901
1078
|
{
|
|
902
1079
|
path: "infoSections.description.nodes.cardData.backgroundImage.media.duration"
|
|
903
1080
|
},
|
|
1081
|
+
{
|
|
1082
|
+
path: "infoSections.description.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
1083
|
+
},
|
|
1084
|
+
{
|
|
1085
|
+
path: "infoSections.description.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
path: "infoSections.description.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
1089
|
+
},
|
|
904
1090
|
{ path: "infoSections.description.nodes.tocData.fontSize" },
|
|
905
1091
|
{ path: "infoSections.description.nodes.tocData.itemSpacing" },
|
|
906
1092
|
{
|
|
@@ -976,6 +1162,10 @@ function bulkGetOrCreateInfoSections(payload) {
|
|
|
976
1162
|
{
|
|
977
1163
|
path: "results.item.description.nodes.imageData.image.duration"
|
|
978
1164
|
},
|
|
1165
|
+
{ path: "results.item.description.nodes.imageData.crop.x" },
|
|
1166
|
+
{ path: "results.item.description.nodes.imageData.crop.y" },
|
|
1167
|
+
{ path: "results.item.description.nodes.imageData.crop.width" },
|
|
1168
|
+
{ path: "results.item.description.nodes.imageData.crop.height" },
|
|
979
1169
|
{
|
|
980
1170
|
path: "results.item.description.nodes.mapData.mapSettings.lat"
|
|
981
1171
|
},
|
|
@@ -1009,9 +1199,27 @@ function bulkGetOrCreateInfoSections(payload) {
|
|
|
1009
1199
|
{
|
|
1010
1200
|
path: "results.item.description.nodes.layoutData.backgroundImage.media.duration"
|
|
1011
1201
|
},
|
|
1202
|
+
{
|
|
1203
|
+
path: "results.item.description.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
1204
|
+
},
|
|
1205
|
+
{
|
|
1206
|
+
path: "results.item.description.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
path: "results.item.description.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
1210
|
+
},
|
|
1012
1211
|
{
|
|
1013
1212
|
path: "results.item.description.nodes.layoutData.backdropImage.media.duration"
|
|
1014
1213
|
},
|
|
1214
|
+
{
|
|
1215
|
+
path: "results.item.description.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
1216
|
+
},
|
|
1217
|
+
{
|
|
1218
|
+
path: "results.item.description.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
path: "results.item.description.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
1222
|
+
},
|
|
1015
1223
|
{
|
|
1016
1224
|
path: "results.item.description.nodes.layoutData.background.gradient.centerX"
|
|
1017
1225
|
},
|
|
@@ -1045,6 +1253,15 @@ function bulkGetOrCreateInfoSections(payload) {
|
|
|
1045
1253
|
{
|
|
1046
1254
|
path: "results.item.description.nodes.cardData.backgroundImage.media.duration"
|
|
1047
1255
|
},
|
|
1256
|
+
{
|
|
1257
|
+
path: "results.item.description.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
1258
|
+
},
|
|
1259
|
+
{
|
|
1260
|
+
path: "results.item.description.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
path: "results.item.description.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
1264
|
+
},
|
|
1048
1265
|
{ path: "results.item.description.nodes.tocData.fontSize" },
|
|
1049
1266
|
{ path: "results.item.description.nodes.tocData.itemSpacing" },
|
|
1050
1267
|
{
|
|
@@ -1108,6 +1325,10 @@ function updateInfoSection(payload) {
|
|
|
1108
1325
|
path: "infoSection.description.nodes.galleryData.options.item.ratio"
|
|
1109
1326
|
},
|
|
1110
1327
|
{ path: "infoSection.description.nodes.imageData.image.duration" },
|
|
1328
|
+
{ path: "infoSection.description.nodes.imageData.crop.x" },
|
|
1329
|
+
{ path: "infoSection.description.nodes.imageData.crop.y" },
|
|
1330
|
+
{ path: "infoSection.description.nodes.imageData.crop.width" },
|
|
1331
|
+
{ path: "infoSection.description.nodes.imageData.crop.height" },
|
|
1111
1332
|
{ path: "infoSection.description.nodes.mapData.mapSettings.lat" },
|
|
1112
1333
|
{ path: "infoSection.description.nodes.mapData.mapSettings.lng" },
|
|
1113
1334
|
{
|
|
@@ -1131,9 +1352,27 @@ function updateInfoSection(payload) {
|
|
|
1131
1352
|
{
|
|
1132
1353
|
path: "infoSection.description.nodes.layoutData.backgroundImage.media.duration"
|
|
1133
1354
|
},
|
|
1355
|
+
{
|
|
1356
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
1357
|
+
},
|
|
1358
|
+
{
|
|
1359
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
1360
|
+
},
|
|
1361
|
+
{
|
|
1362
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
1363
|
+
},
|
|
1134
1364
|
{
|
|
1135
1365
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
1136
1366
|
},
|
|
1367
|
+
{
|
|
1368
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
1372
|
+
},
|
|
1373
|
+
{
|
|
1374
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
1375
|
+
},
|
|
1137
1376
|
{
|
|
1138
1377
|
path: "infoSection.description.nodes.layoutData.background.gradient.centerX"
|
|
1139
1378
|
},
|
|
@@ -1165,6 +1404,15 @@ function updateInfoSection(payload) {
|
|
|
1165
1404
|
{
|
|
1166
1405
|
path: "infoSection.description.nodes.cardData.backgroundImage.media.duration"
|
|
1167
1406
|
},
|
|
1407
|
+
{
|
|
1408
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
1409
|
+
},
|
|
1410
|
+
{
|
|
1411
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
1412
|
+
},
|
|
1413
|
+
{
|
|
1414
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
1415
|
+
},
|
|
1168
1416
|
{ path: "infoSection.description.nodes.tocData.fontSize" },
|
|
1169
1417
|
{ path: "infoSection.description.nodes.tocData.itemSpacing" },
|
|
1170
1418
|
{
|
|
@@ -1233,6 +1481,10 @@ function updateInfoSection(payload) {
|
|
|
1233
1481
|
{
|
|
1234
1482
|
path: "infoSection.description.nodes.imageData.image.duration"
|
|
1235
1483
|
},
|
|
1484
|
+
{ path: "infoSection.description.nodes.imageData.crop.x" },
|
|
1485
|
+
{ path: "infoSection.description.nodes.imageData.crop.y" },
|
|
1486
|
+
{ path: "infoSection.description.nodes.imageData.crop.width" },
|
|
1487
|
+
{ path: "infoSection.description.nodes.imageData.crop.height" },
|
|
1236
1488
|
{ path: "infoSection.description.nodes.mapData.mapSettings.lat" },
|
|
1237
1489
|
{ path: "infoSection.description.nodes.mapData.mapSettings.lng" },
|
|
1238
1490
|
{
|
|
@@ -1262,9 +1514,27 @@ function updateInfoSection(payload) {
|
|
|
1262
1514
|
{
|
|
1263
1515
|
path: "infoSection.description.nodes.layoutData.backgroundImage.media.duration"
|
|
1264
1516
|
},
|
|
1517
|
+
{
|
|
1518
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
1519
|
+
},
|
|
1520
|
+
{
|
|
1521
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
1522
|
+
},
|
|
1523
|
+
{
|
|
1524
|
+
path: "infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
1525
|
+
},
|
|
1265
1526
|
{
|
|
1266
1527
|
path: "infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
1267
1528
|
},
|
|
1529
|
+
{
|
|
1530
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
1531
|
+
},
|
|
1532
|
+
{
|
|
1533
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
1534
|
+
},
|
|
1535
|
+
{
|
|
1536
|
+
path: "infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
1537
|
+
},
|
|
1268
1538
|
{
|
|
1269
1539
|
path: "infoSection.description.nodes.layoutData.background.gradient.centerX"
|
|
1270
1540
|
},
|
|
@@ -1298,6 +1568,15 @@ function updateInfoSection(payload) {
|
|
|
1298
1568
|
{
|
|
1299
1569
|
path: "infoSection.description.nodes.cardData.backgroundImage.media.duration"
|
|
1300
1570
|
},
|
|
1571
|
+
{
|
|
1572
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
1573
|
+
},
|
|
1574
|
+
{
|
|
1575
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
1576
|
+
},
|
|
1577
|
+
{
|
|
1578
|
+
path: "infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
1579
|
+
},
|
|
1301
1580
|
{ path: "infoSection.description.nodes.tocData.fontSize" },
|
|
1302
1581
|
{ path: "infoSection.description.nodes.tocData.itemSpacing" },
|
|
1303
1582
|
{
|
|
@@ -1394,6 +1673,10 @@ function queryInfoSections(payload) {
|
|
|
1394
1673
|
{
|
|
1395
1674
|
path: "infoSections.description.nodes.imageData.image.duration"
|
|
1396
1675
|
},
|
|
1676
|
+
{ path: "infoSections.description.nodes.imageData.crop.x" },
|
|
1677
|
+
{ path: "infoSections.description.nodes.imageData.crop.y" },
|
|
1678
|
+
{ path: "infoSections.description.nodes.imageData.crop.width" },
|
|
1679
|
+
{ path: "infoSections.description.nodes.imageData.crop.height" },
|
|
1397
1680
|
{
|
|
1398
1681
|
path: "infoSections.description.nodes.mapData.mapSettings.lat"
|
|
1399
1682
|
},
|
|
@@ -1427,9 +1710,27 @@ function queryInfoSections(payload) {
|
|
|
1427
1710
|
{
|
|
1428
1711
|
path: "infoSections.description.nodes.layoutData.backgroundImage.media.duration"
|
|
1429
1712
|
},
|
|
1713
|
+
{
|
|
1714
|
+
path: "infoSections.description.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
path: "infoSections.description.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
1718
|
+
},
|
|
1719
|
+
{
|
|
1720
|
+
path: "infoSections.description.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
1721
|
+
},
|
|
1430
1722
|
{
|
|
1431
1723
|
path: "infoSections.description.nodes.layoutData.backdropImage.media.duration"
|
|
1432
1724
|
},
|
|
1725
|
+
{
|
|
1726
|
+
path: "infoSections.description.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
1727
|
+
},
|
|
1728
|
+
{
|
|
1729
|
+
path: "infoSections.description.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
1730
|
+
},
|
|
1731
|
+
{
|
|
1732
|
+
path: "infoSections.description.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
1733
|
+
},
|
|
1433
1734
|
{
|
|
1434
1735
|
path: "infoSections.description.nodes.layoutData.background.gradient.centerX"
|
|
1435
1736
|
},
|
|
@@ -1463,6 +1764,15 @@ function queryInfoSections(payload) {
|
|
|
1463
1764
|
{
|
|
1464
1765
|
path: "infoSections.description.nodes.cardData.backgroundImage.media.duration"
|
|
1465
1766
|
},
|
|
1767
|
+
{
|
|
1768
|
+
path: "infoSections.description.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
1769
|
+
},
|
|
1770
|
+
{
|
|
1771
|
+
path: "infoSections.description.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
1772
|
+
},
|
|
1773
|
+
{
|
|
1774
|
+
path: "infoSections.description.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
1775
|
+
},
|
|
1466
1776
|
{ path: "infoSections.description.nodes.tocData.fontSize" },
|
|
1467
1777
|
{ path: "infoSections.description.nodes.tocData.itemSpacing" },
|
|
1468
1778
|
{
|
|
@@ -1533,6 +1843,10 @@ function bulkCreateInfoSections(payload) {
|
|
|
1533
1843
|
path: "infoSections.description.nodes.galleryData.options.item.ratio"
|
|
1534
1844
|
},
|
|
1535
1845
|
{ path: "infoSections.description.nodes.imageData.image.duration" },
|
|
1846
|
+
{ path: "infoSections.description.nodes.imageData.crop.x" },
|
|
1847
|
+
{ path: "infoSections.description.nodes.imageData.crop.y" },
|
|
1848
|
+
{ path: "infoSections.description.nodes.imageData.crop.width" },
|
|
1849
|
+
{ path: "infoSections.description.nodes.imageData.crop.height" },
|
|
1536
1850
|
{ path: "infoSections.description.nodes.mapData.mapSettings.lat" },
|
|
1537
1851
|
{ path: "infoSections.description.nodes.mapData.mapSettings.lng" },
|
|
1538
1852
|
{
|
|
@@ -1558,9 +1872,27 @@ function bulkCreateInfoSections(payload) {
|
|
|
1558
1872
|
{
|
|
1559
1873
|
path: "infoSections.description.nodes.layoutData.backgroundImage.media.duration"
|
|
1560
1874
|
},
|
|
1875
|
+
{
|
|
1876
|
+
path: "infoSections.description.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
1877
|
+
},
|
|
1878
|
+
{
|
|
1879
|
+
path: "infoSections.description.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
1880
|
+
},
|
|
1881
|
+
{
|
|
1882
|
+
path: "infoSections.description.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
1883
|
+
},
|
|
1561
1884
|
{
|
|
1562
1885
|
path: "infoSections.description.nodes.layoutData.backdropImage.media.duration"
|
|
1563
1886
|
},
|
|
1887
|
+
{
|
|
1888
|
+
path: "infoSections.description.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
1889
|
+
},
|
|
1890
|
+
{
|
|
1891
|
+
path: "infoSections.description.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
1892
|
+
},
|
|
1893
|
+
{
|
|
1894
|
+
path: "infoSections.description.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
1895
|
+
},
|
|
1564
1896
|
{
|
|
1565
1897
|
path: "infoSections.description.nodes.layoutData.background.gradient.centerX"
|
|
1566
1898
|
},
|
|
@@ -1592,6 +1924,15 @@ function bulkCreateInfoSections(payload) {
|
|
|
1592
1924
|
{
|
|
1593
1925
|
path: "infoSections.description.nodes.cardData.backgroundImage.media.duration"
|
|
1594
1926
|
},
|
|
1927
|
+
{
|
|
1928
|
+
path: "infoSections.description.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
1929
|
+
},
|
|
1930
|
+
{
|
|
1931
|
+
path: "infoSections.description.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
1932
|
+
},
|
|
1933
|
+
{
|
|
1934
|
+
path: "infoSections.description.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
1935
|
+
},
|
|
1595
1936
|
{ path: "infoSections.description.nodes.tocData.fontSize" },
|
|
1596
1937
|
{ path: "infoSections.description.nodes.tocData.itemSpacing" },
|
|
1597
1938
|
{
|
|
@@ -1660,6 +2001,10 @@ function bulkCreateInfoSections(payload) {
|
|
|
1660
2001
|
{
|
|
1661
2002
|
path: "results.item.description.nodes.imageData.image.duration"
|
|
1662
2003
|
},
|
|
2004
|
+
{ path: "results.item.description.nodes.imageData.crop.x" },
|
|
2005
|
+
{ path: "results.item.description.nodes.imageData.crop.y" },
|
|
2006
|
+
{ path: "results.item.description.nodes.imageData.crop.width" },
|
|
2007
|
+
{ path: "results.item.description.nodes.imageData.crop.height" },
|
|
1663
2008
|
{
|
|
1664
2009
|
path: "results.item.description.nodes.mapData.mapSettings.lat"
|
|
1665
2010
|
},
|
|
@@ -1693,9 +2038,27 @@ function bulkCreateInfoSections(payload) {
|
|
|
1693
2038
|
{
|
|
1694
2039
|
path: "results.item.description.nodes.layoutData.backgroundImage.media.duration"
|
|
1695
2040
|
},
|
|
2041
|
+
{
|
|
2042
|
+
path: "results.item.description.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
2043
|
+
},
|
|
2044
|
+
{
|
|
2045
|
+
path: "results.item.description.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
2046
|
+
},
|
|
2047
|
+
{
|
|
2048
|
+
path: "results.item.description.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
2049
|
+
},
|
|
1696
2050
|
{
|
|
1697
2051
|
path: "results.item.description.nodes.layoutData.backdropImage.media.duration"
|
|
1698
2052
|
},
|
|
2053
|
+
{
|
|
2054
|
+
path: "results.item.description.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
2055
|
+
},
|
|
2056
|
+
{
|
|
2057
|
+
path: "results.item.description.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
2058
|
+
},
|
|
2059
|
+
{
|
|
2060
|
+
path: "results.item.description.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
2061
|
+
},
|
|
1699
2062
|
{
|
|
1700
2063
|
path: "results.item.description.nodes.layoutData.background.gradient.centerX"
|
|
1701
2064
|
},
|
|
@@ -1729,6 +2092,15 @@ function bulkCreateInfoSections(payload) {
|
|
|
1729
2092
|
{
|
|
1730
2093
|
path: "results.item.description.nodes.cardData.backgroundImage.media.duration"
|
|
1731
2094
|
},
|
|
2095
|
+
{
|
|
2096
|
+
path: "results.item.description.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
2097
|
+
},
|
|
2098
|
+
{
|
|
2099
|
+
path: "results.item.description.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
2100
|
+
},
|
|
2101
|
+
{
|
|
2102
|
+
path: "results.item.description.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
2103
|
+
},
|
|
1732
2104
|
{ path: "results.item.description.nodes.tocData.fontSize" },
|
|
1733
2105
|
{ path: "results.item.description.nodes.tocData.itemSpacing" },
|
|
1734
2106
|
{
|
|
@@ -1798,6 +2170,18 @@ function bulkUpdateInfoSections(payload) {
|
|
|
1798
2170
|
{
|
|
1799
2171
|
path: "infoSections.infoSection.description.nodes.imageData.image.duration"
|
|
1800
2172
|
},
|
|
2173
|
+
{
|
|
2174
|
+
path: "infoSections.infoSection.description.nodes.imageData.crop.x"
|
|
2175
|
+
},
|
|
2176
|
+
{
|
|
2177
|
+
path: "infoSections.infoSection.description.nodes.imageData.crop.y"
|
|
2178
|
+
},
|
|
2179
|
+
{
|
|
2180
|
+
path: "infoSections.infoSection.description.nodes.imageData.crop.width"
|
|
2181
|
+
},
|
|
2182
|
+
{
|
|
2183
|
+
path: "infoSections.infoSection.description.nodes.imageData.crop.height"
|
|
2184
|
+
},
|
|
1801
2185
|
{
|
|
1802
2186
|
path: "infoSections.infoSection.description.nodes.mapData.mapSettings.lat"
|
|
1803
2187
|
},
|
|
@@ -1831,9 +2215,27 @@ function bulkUpdateInfoSections(payload) {
|
|
|
1831
2215
|
{
|
|
1832
2216
|
path: "infoSections.infoSection.description.nodes.layoutData.backgroundImage.media.duration"
|
|
1833
2217
|
},
|
|
2218
|
+
{
|
|
2219
|
+
path: "infoSections.infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
2220
|
+
},
|
|
2221
|
+
{
|
|
2222
|
+
path: "infoSections.infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
2223
|
+
},
|
|
2224
|
+
{
|
|
2225
|
+
path: "infoSections.infoSection.description.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
2226
|
+
},
|
|
1834
2227
|
{
|
|
1835
2228
|
path: "infoSections.infoSection.description.nodes.layoutData.backdropImage.media.duration"
|
|
1836
2229
|
},
|
|
2230
|
+
{
|
|
2231
|
+
path: "infoSections.infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
2232
|
+
},
|
|
2233
|
+
{
|
|
2234
|
+
path: "infoSections.infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
2235
|
+
},
|
|
2236
|
+
{
|
|
2237
|
+
path: "infoSections.infoSection.description.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
2238
|
+
},
|
|
1837
2239
|
{
|
|
1838
2240
|
path: "infoSections.infoSection.description.nodes.layoutData.background.gradient.centerX"
|
|
1839
2241
|
},
|
|
@@ -1867,6 +2269,15 @@ function bulkUpdateInfoSections(payload) {
|
|
|
1867
2269
|
{
|
|
1868
2270
|
path: "infoSections.infoSection.description.nodes.cardData.backgroundImage.media.duration"
|
|
1869
2271
|
},
|
|
2272
|
+
{
|
|
2273
|
+
path: "infoSections.infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
2274
|
+
},
|
|
2275
|
+
{
|
|
2276
|
+
path: "infoSections.infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
2277
|
+
},
|
|
2278
|
+
{
|
|
2279
|
+
path: "infoSections.infoSection.description.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
2280
|
+
},
|
|
1870
2281
|
{
|
|
1871
2282
|
path: "infoSections.infoSection.description.nodes.tocData.fontSize"
|
|
1872
2283
|
},
|
|
@@ -1939,6 +2350,10 @@ function bulkUpdateInfoSections(payload) {
|
|
|
1939
2350
|
{
|
|
1940
2351
|
path: "results.item.description.nodes.imageData.image.duration"
|
|
1941
2352
|
},
|
|
2353
|
+
{ path: "results.item.description.nodes.imageData.crop.x" },
|
|
2354
|
+
{ path: "results.item.description.nodes.imageData.crop.y" },
|
|
2355
|
+
{ path: "results.item.description.nodes.imageData.crop.width" },
|
|
2356
|
+
{ path: "results.item.description.nodes.imageData.crop.height" },
|
|
1942
2357
|
{
|
|
1943
2358
|
path: "results.item.description.nodes.mapData.mapSettings.lat"
|
|
1944
2359
|
},
|
|
@@ -1972,9 +2387,27 @@ function bulkUpdateInfoSections(payload) {
|
|
|
1972
2387
|
{
|
|
1973
2388
|
path: "results.item.description.nodes.layoutData.backgroundImage.media.duration"
|
|
1974
2389
|
},
|
|
2390
|
+
{
|
|
2391
|
+
path: "results.item.description.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
2392
|
+
},
|
|
2393
|
+
{
|
|
2394
|
+
path: "results.item.description.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
2395
|
+
},
|
|
2396
|
+
{
|
|
2397
|
+
path: "results.item.description.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
2398
|
+
},
|
|
1975
2399
|
{
|
|
1976
2400
|
path: "results.item.description.nodes.layoutData.backdropImage.media.duration"
|
|
1977
2401
|
},
|
|
2402
|
+
{
|
|
2403
|
+
path: "results.item.description.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
2404
|
+
},
|
|
2405
|
+
{
|
|
2406
|
+
path: "results.item.description.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
2407
|
+
},
|
|
2408
|
+
{
|
|
2409
|
+
path: "results.item.description.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
2410
|
+
},
|
|
1978
2411
|
{
|
|
1979
2412
|
path: "results.item.description.nodes.layoutData.background.gradient.centerX"
|
|
1980
2413
|
},
|
|
@@ -2008,6 +2441,15 @@ function bulkUpdateInfoSections(payload) {
|
|
|
2008
2441
|
{
|
|
2009
2442
|
path: "results.item.description.nodes.cardData.backgroundImage.media.duration"
|
|
2010
2443
|
},
|
|
2444
|
+
{
|
|
2445
|
+
path: "results.item.description.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
2446
|
+
},
|
|
2447
|
+
{
|
|
2448
|
+
path: "results.item.description.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
2449
|
+
},
|
|
2450
|
+
{
|
|
2451
|
+
path: "results.item.description.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
2452
|
+
},
|
|
2011
2453
|
{ path: "results.item.description.nodes.tocData.fontSize" },
|
|
2012
2454
|
{ path: "results.item.description.nodes.tocData.itemSpacing" },
|
|
2013
2455
|
{
|
|
@@ -2354,6 +2796,11 @@ var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
|
2354
2796
|
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
2355
2797
|
return ImagePosition2;
|
|
2356
2798
|
})(ImagePosition || {});
|
|
2799
|
+
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
2800
|
+
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
2801
|
+
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
2802
|
+
return LayoutDataBackgroundType2;
|
|
2803
|
+
})(LayoutDataBackgroundType || {});
|
|
2357
2804
|
var Origin = /* @__PURE__ */ ((Origin2) => {
|
|
2358
2805
|
Origin2["IMAGE"] = "IMAGE";
|
|
2359
2806
|
Origin2["LAYOUT"] = "LAYOUT";
|
|
@@ -2364,11 +2811,6 @@ var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
|
|
|
2364
2811
|
BannerPosition2["BOTTOM"] = "BOTTOM";
|
|
2365
2812
|
return BannerPosition2;
|
|
2366
2813
|
})(BannerPosition || {});
|
|
2367
|
-
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
2368
|
-
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
2369
|
-
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
2370
|
-
return LayoutDataBackgroundType2;
|
|
2371
|
-
})(LayoutDataBackgroundType || {});
|
|
2372
2814
|
var BackdropType = /* @__PURE__ */ ((BackdropType2) => {
|
|
2373
2815
|
BackdropType2["COLOR"] = "COLOR";
|
|
2374
2816
|
BackdropType2["GRADIENT"] = "GRADIENT";
|
|
@@ -2963,6 +3405,10 @@ var onInfoSectionCreated = (0, import_sdk_types.EventDefinition)(
|
|
|
2963
3405
|
},
|
|
2964
3406
|
{ path: "entity.description.nodes.galleryData.options.item.ratio" },
|
|
2965
3407
|
{ path: "entity.description.nodes.imageData.image.duration" },
|
|
3408
|
+
{ path: "entity.description.nodes.imageData.crop.x" },
|
|
3409
|
+
{ path: "entity.description.nodes.imageData.crop.y" },
|
|
3410
|
+
{ path: "entity.description.nodes.imageData.crop.width" },
|
|
3411
|
+
{ path: "entity.description.nodes.imageData.crop.height" },
|
|
2966
3412
|
{ path: "entity.description.nodes.mapData.mapSettings.lat" },
|
|
2967
3413
|
{ path: "entity.description.nodes.mapData.mapSettings.lng" },
|
|
2968
3414
|
{ path: "entity.description.nodes.pollData.poll.image.duration" },
|
|
@@ -2980,9 +3426,27 @@ var onInfoSectionCreated = (0, import_sdk_types.EventDefinition)(
|
|
|
2980
3426
|
{
|
|
2981
3427
|
path: "entity.description.nodes.layoutData.backgroundImage.media.duration"
|
|
2982
3428
|
},
|
|
3429
|
+
{
|
|
3430
|
+
path: "entity.description.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
3431
|
+
},
|
|
3432
|
+
{
|
|
3433
|
+
path: "entity.description.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
3434
|
+
},
|
|
3435
|
+
{
|
|
3436
|
+
path: "entity.description.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
3437
|
+
},
|
|
2983
3438
|
{
|
|
2984
3439
|
path: "entity.description.nodes.layoutData.backdropImage.media.duration"
|
|
2985
3440
|
},
|
|
3441
|
+
{
|
|
3442
|
+
path: "entity.description.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
3443
|
+
},
|
|
3444
|
+
{
|
|
3445
|
+
path: "entity.description.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
3446
|
+
},
|
|
3447
|
+
{
|
|
3448
|
+
path: "entity.description.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
3449
|
+
},
|
|
2986
3450
|
{
|
|
2987
3451
|
path: "entity.description.nodes.layoutData.background.gradient.centerX"
|
|
2988
3452
|
},
|
|
@@ -3014,6 +3478,15 @@ var onInfoSectionCreated = (0, import_sdk_types.EventDefinition)(
|
|
|
3014
3478
|
{
|
|
3015
3479
|
path: "entity.description.nodes.cardData.backgroundImage.media.duration"
|
|
3016
3480
|
},
|
|
3481
|
+
{
|
|
3482
|
+
path: "entity.description.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
3483
|
+
},
|
|
3484
|
+
{
|
|
3485
|
+
path: "entity.description.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
3486
|
+
},
|
|
3487
|
+
{
|
|
3488
|
+
path: "entity.description.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
3489
|
+
},
|
|
3017
3490
|
{ path: "entity.description.nodes.tocData.fontSize" },
|
|
3018
3491
|
{ path: "entity.description.nodes.tocData.itemSpacing" },
|
|
3019
3492
|
{
|
|
@@ -3073,6 +3546,10 @@ var onInfoSectionDeleted = (0, import_sdk_types.EventDefinition)(
|
|
|
3073
3546
|
path: "undefined.description.nodes.galleryData.options.item.ratio"
|
|
3074
3547
|
},
|
|
3075
3548
|
{ path: "undefined.description.nodes.imageData.image.duration" },
|
|
3549
|
+
{ path: "undefined.description.nodes.imageData.crop.x" },
|
|
3550
|
+
{ path: "undefined.description.nodes.imageData.crop.y" },
|
|
3551
|
+
{ path: "undefined.description.nodes.imageData.crop.width" },
|
|
3552
|
+
{ path: "undefined.description.nodes.imageData.crop.height" },
|
|
3076
3553
|
{ path: "undefined.description.nodes.mapData.mapSettings.lat" },
|
|
3077
3554
|
{ path: "undefined.description.nodes.mapData.mapSettings.lng" },
|
|
3078
3555
|
{
|
|
@@ -3096,9 +3573,27 @@ var onInfoSectionDeleted = (0, import_sdk_types.EventDefinition)(
|
|
|
3096
3573
|
{
|
|
3097
3574
|
path: "undefined.description.nodes.layoutData.backgroundImage.media.duration"
|
|
3098
3575
|
},
|
|
3576
|
+
{
|
|
3577
|
+
path: "undefined.description.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
3578
|
+
},
|
|
3579
|
+
{
|
|
3580
|
+
path: "undefined.description.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
3581
|
+
},
|
|
3582
|
+
{
|
|
3583
|
+
path: "undefined.description.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
3584
|
+
},
|
|
3099
3585
|
{
|
|
3100
3586
|
path: "undefined.description.nodes.layoutData.backdropImage.media.duration"
|
|
3101
3587
|
},
|
|
3588
|
+
{
|
|
3589
|
+
path: "undefined.description.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
3590
|
+
},
|
|
3591
|
+
{
|
|
3592
|
+
path: "undefined.description.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
3593
|
+
},
|
|
3594
|
+
{
|
|
3595
|
+
path: "undefined.description.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
3596
|
+
},
|
|
3102
3597
|
{
|
|
3103
3598
|
path: "undefined.description.nodes.layoutData.background.gradient.centerX"
|
|
3104
3599
|
},
|
|
@@ -3130,6 +3625,15 @@ var onInfoSectionDeleted = (0, import_sdk_types.EventDefinition)(
|
|
|
3130
3625
|
{
|
|
3131
3626
|
path: "undefined.description.nodes.cardData.backgroundImage.media.duration"
|
|
3132
3627
|
},
|
|
3628
|
+
{
|
|
3629
|
+
path: "undefined.description.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
3630
|
+
},
|
|
3631
|
+
{
|
|
3632
|
+
path: "undefined.description.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
3633
|
+
},
|
|
3634
|
+
{
|
|
3635
|
+
path: "undefined.description.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
3636
|
+
},
|
|
3133
3637
|
{ path: "undefined.description.nodes.tocData.fontSize" },
|
|
3134
3638
|
{ path: "undefined.description.nodes.tocData.itemSpacing" },
|
|
3135
3639
|
{
|
|
@@ -3191,6 +3695,10 @@ var onInfoSectionUpdated = (0, import_sdk_types.EventDefinition)(
|
|
|
3191
3695
|
},
|
|
3192
3696
|
{ path: "entity.description.nodes.galleryData.options.item.ratio" },
|
|
3193
3697
|
{ path: "entity.description.nodes.imageData.image.duration" },
|
|
3698
|
+
{ path: "entity.description.nodes.imageData.crop.x" },
|
|
3699
|
+
{ path: "entity.description.nodes.imageData.crop.y" },
|
|
3700
|
+
{ path: "entity.description.nodes.imageData.crop.width" },
|
|
3701
|
+
{ path: "entity.description.nodes.imageData.crop.height" },
|
|
3194
3702
|
{ path: "entity.description.nodes.mapData.mapSettings.lat" },
|
|
3195
3703
|
{ path: "entity.description.nodes.mapData.mapSettings.lng" },
|
|
3196
3704
|
{ path: "entity.description.nodes.pollData.poll.image.duration" },
|
|
@@ -3208,9 +3716,27 @@ var onInfoSectionUpdated = (0, import_sdk_types.EventDefinition)(
|
|
|
3208
3716
|
{
|
|
3209
3717
|
path: "entity.description.nodes.layoutData.backgroundImage.media.duration"
|
|
3210
3718
|
},
|
|
3719
|
+
{
|
|
3720
|
+
path: "entity.description.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
3721
|
+
},
|
|
3722
|
+
{
|
|
3723
|
+
path: "entity.description.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
3724
|
+
},
|
|
3725
|
+
{
|
|
3726
|
+
path: "entity.description.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
3727
|
+
},
|
|
3211
3728
|
{
|
|
3212
3729
|
path: "entity.description.nodes.layoutData.backdropImage.media.duration"
|
|
3213
3730
|
},
|
|
3731
|
+
{
|
|
3732
|
+
path: "entity.description.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
3733
|
+
},
|
|
3734
|
+
{
|
|
3735
|
+
path: "entity.description.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
3736
|
+
},
|
|
3737
|
+
{
|
|
3738
|
+
path: "entity.description.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
3739
|
+
},
|
|
3214
3740
|
{
|
|
3215
3741
|
path: "entity.description.nodes.layoutData.background.gradient.centerX"
|
|
3216
3742
|
},
|
|
@@ -3242,6 +3768,15 @@ var onInfoSectionUpdated = (0, import_sdk_types.EventDefinition)(
|
|
|
3242
3768
|
{
|
|
3243
3769
|
path: "entity.description.nodes.cardData.backgroundImage.media.duration"
|
|
3244
3770
|
},
|
|
3771
|
+
{
|
|
3772
|
+
path: "entity.description.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
3773
|
+
},
|
|
3774
|
+
{
|
|
3775
|
+
path: "entity.description.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
3776
|
+
},
|
|
3777
|
+
{
|
|
3778
|
+
path: "entity.description.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
3779
|
+
},
|
|
3245
3780
|
{ path: "entity.description.nodes.tocData.fontSize" },
|
|
3246
3781
|
{ path: "entity.description.nodes.tocData.itemSpacing" },
|
|
3247
3782
|
{
|
|
@@ -3280,6 +3815,10 @@ var onInfoSectionUpdated = (0, import_sdk_types.EventDefinition)(
|
|
|
3280
3815
|
{
|
|
3281
3816
|
path: "modifiedFields.description.nodes.imageData.image.duration"
|
|
3282
3817
|
},
|
|
3818
|
+
{ path: "modifiedFields.description.nodes.imageData.crop.x" },
|
|
3819
|
+
{ path: "modifiedFields.description.nodes.imageData.crop.y" },
|
|
3820
|
+
{ path: "modifiedFields.description.nodes.imageData.crop.width" },
|
|
3821
|
+
{ path: "modifiedFields.description.nodes.imageData.crop.height" },
|
|
3283
3822
|
{
|
|
3284
3823
|
path: "modifiedFields.description.nodes.mapData.mapSettings.lat"
|
|
3285
3824
|
},
|
|
@@ -3313,9 +3852,27 @@ var onInfoSectionUpdated = (0, import_sdk_types.EventDefinition)(
|
|
|
3313
3852
|
{
|
|
3314
3853
|
path: "modifiedFields.description.nodes.layoutData.backgroundImage.media.duration"
|
|
3315
3854
|
},
|
|
3855
|
+
{
|
|
3856
|
+
path: "modifiedFields.description.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
3857
|
+
},
|
|
3858
|
+
{
|
|
3859
|
+
path: "modifiedFields.description.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
3860
|
+
},
|
|
3861
|
+
{
|
|
3862
|
+
path: "modifiedFields.description.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
3863
|
+
},
|
|
3316
3864
|
{
|
|
3317
3865
|
path: "modifiedFields.description.nodes.layoutData.backdropImage.media.duration"
|
|
3318
3866
|
},
|
|
3867
|
+
{
|
|
3868
|
+
path: "modifiedFields.description.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
3869
|
+
},
|
|
3870
|
+
{
|
|
3871
|
+
path: "modifiedFields.description.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
3872
|
+
},
|
|
3873
|
+
{
|
|
3874
|
+
path: "modifiedFields.description.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
3875
|
+
},
|
|
3319
3876
|
{
|
|
3320
3877
|
path: "modifiedFields.description.nodes.layoutData.background.gradient.centerX"
|
|
3321
3878
|
},
|
|
@@ -3349,6 +3906,15 @@ var onInfoSectionUpdated = (0, import_sdk_types.EventDefinition)(
|
|
|
3349
3906
|
{
|
|
3350
3907
|
path: "modifiedFields.description.nodes.cardData.backgroundImage.media.duration"
|
|
3351
3908
|
},
|
|
3909
|
+
{
|
|
3910
|
+
path: "modifiedFields.description.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
3911
|
+
},
|
|
3912
|
+
{
|
|
3913
|
+
path: "modifiedFields.description.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
3914
|
+
},
|
|
3915
|
+
{
|
|
3916
|
+
path: "modifiedFields.description.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
3917
|
+
},
|
|
3352
3918
|
{ path: "modifiedFields.description.nodes.tocData.fontSize" },
|
|
3353
3919
|
{ path: "modifiedFields.description.nodes.tocData.itemSpacing" },
|
|
3354
3920
|
{
|