@wix/auto_sdk_blog_draft-posts 1.0.76 → 1.0.77
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 +957 -35
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +213 -24
- package/build/cjs/index.typings.js +801 -23
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +213 -24
- package/build/cjs/meta.js +801 -23
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +950 -35
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +213 -24
- package/build/es/index.typings.mjs +794 -23
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +213 -24
- package/build/es/meta.mjs +794 -23
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +957 -35
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +213 -24
- package/build/internal/cjs/index.typings.js +801 -23
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +213 -24
- package/build/internal/cjs/meta.js +801 -23
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +950 -35
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +213 -24
- package/build/internal/es/index.typings.mjs +794 -23
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +213 -24
- package/build/internal/es/meta.mjs +794 -23
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -24,9 +24,11 @@ __export(index_typings_exports, {
|
|
|
24
24
|
Alignment: () => Alignment,
|
|
25
25
|
AppType: () => AppType,
|
|
26
26
|
AspectRatio: () => AspectRatio,
|
|
27
|
+
BackdropType: () => BackdropType,
|
|
27
28
|
BackgroundType: () => BackgroundType,
|
|
28
29
|
BannerOrigin: () => BannerOrigin,
|
|
29
30
|
ButtonDataType: () => ButtonDataType,
|
|
31
|
+
CardDataBackgroundType: () => CardDataBackgroundType,
|
|
30
32
|
CardStylesType: () => CardStylesType,
|
|
31
33
|
Crop: () => Crop,
|
|
32
34
|
DecorationType: () => DecorationType,
|
|
@@ -37,9 +39,13 @@ __export(index_typings_exports, {
|
|
|
37
39
|
FontType: () => FontType,
|
|
38
40
|
GIFType: () => GIFType,
|
|
39
41
|
GetDraftPostsSort: () => GetDraftPostsSort,
|
|
42
|
+
GradientType: () => GradientType,
|
|
40
43
|
ImagePosition: () => ImagePosition,
|
|
44
|
+
ImagePositionPosition: () => ImagePositionPosition,
|
|
45
|
+
ImageScalingScaling: () => ImageScalingScaling,
|
|
41
46
|
InitialExpandedItems: () => InitialExpandedItems,
|
|
42
47
|
Layout: () => Layout,
|
|
48
|
+
LayoutDataBackgroundType: () => LayoutDataBackgroundType,
|
|
43
49
|
LayoutType: () => LayoutType,
|
|
44
50
|
LineStyle: () => LineStyle,
|
|
45
51
|
MapType: () => MapType,
|
|
@@ -50,6 +56,7 @@ __export(index_typings_exports, {
|
|
|
50
56
|
Origin: () => Origin,
|
|
51
57
|
Placement: () => Placement,
|
|
52
58
|
PluginContainerDataAlignment: () => PluginContainerDataAlignment,
|
|
59
|
+
PollDesignBackgroundType: () => PollDesignBackgroundType,
|
|
53
60
|
PollLayoutDirection: () => PollLayoutDirection,
|
|
54
61
|
PollLayoutType: () => PollLayoutType,
|
|
55
62
|
Position: () => Position,
|
|
@@ -299,6 +306,24 @@ function createDraftPost(payload) {
|
|
|
299
306
|
},
|
|
300
307
|
{ path: "draftPost.media.wixMedia.videoV2.posters.focalPoint.x" },
|
|
301
308
|
{ path: "draftPost.media.wixMedia.videoV2.posters.focalPoint.y" },
|
|
309
|
+
{
|
|
310
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
326
|
+
},
|
|
302
327
|
{
|
|
303
328
|
path: "draftPost.richContent.nodes.galleryData.items.image.media.duration"
|
|
304
329
|
},
|
|
@@ -332,7 +357,37 @@ function createDraftPost(payload) {
|
|
|
332
357
|
{
|
|
333
358
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
334
359
|
},
|
|
335
|
-
{
|
|
360
|
+
{
|
|
361
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerY"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
377
|
+
},
|
|
378
|
+
{ path: "draftPost.richContent.nodes.shapeData.shape.duration" },
|
|
379
|
+
{
|
|
380
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.centerX"
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.centerY"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.stops.position"
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
390
|
+
}
|
|
336
391
|
]
|
|
337
392
|
}
|
|
338
393
|
]);
|
|
@@ -389,6 +444,24 @@ function createDraftPost(payload) {
|
|
|
389
444
|
},
|
|
390
445
|
{ path: "draftPost.media.wixMedia.videoV2.posters.focalPoint.x" },
|
|
391
446
|
{ path: "draftPost.media.wixMedia.videoV2.posters.focalPoint.y" },
|
|
447
|
+
{
|
|
448
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
464
|
+
},
|
|
392
465
|
{
|
|
393
466
|
path: "draftPost.richContent.nodes.galleryData.items.image.media.duration"
|
|
394
467
|
},
|
|
@@ -430,7 +503,37 @@ function createDraftPost(payload) {
|
|
|
430
503
|
{
|
|
431
504
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
432
505
|
},
|
|
433
|
-
{
|
|
506
|
+
{
|
|
507
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerY"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
523
|
+
},
|
|
524
|
+
{ path: "draftPost.richContent.nodes.shapeData.shape.duration" },
|
|
525
|
+
{
|
|
526
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.centerX"
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.centerY"
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.stops.position"
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
536
|
+
}
|
|
434
537
|
]
|
|
435
538
|
}
|
|
436
539
|
])
|
|
@@ -482,6 +585,24 @@ function bulkCreateDraftPosts(payload) {
|
|
|
482
585
|
},
|
|
483
586
|
{ path: "draftPosts.media.wixMedia.videoV2.posters.focalPoint.x" },
|
|
484
587
|
{ path: "draftPosts.media.wixMedia.videoV2.posters.focalPoint.y" },
|
|
588
|
+
{
|
|
589
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
590
|
+
},
|
|
591
|
+
{
|
|
592
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
605
|
+
},
|
|
485
606
|
{
|
|
486
607
|
path: "draftPosts.richContent.nodes.galleryData.items.image.media.duration"
|
|
487
608
|
},
|
|
@@ -517,7 +638,37 @@ function bulkCreateDraftPosts(payload) {
|
|
|
517
638
|
{
|
|
518
639
|
path: "draftPosts.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
519
640
|
},
|
|
520
|
-
{
|
|
641
|
+
{
|
|
642
|
+
path: "draftPosts.richContent.nodes.layoutData.background.gradient.centerX"
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
path: "draftPosts.richContent.nodes.layoutData.background.gradient.centerY"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
path: "draftPosts.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
path: "draftPosts.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
652
|
+
},
|
|
653
|
+
{
|
|
654
|
+
path: "draftPosts.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
path: "draftPosts.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
658
|
+
},
|
|
659
|
+
{ path: "draftPosts.richContent.nodes.shapeData.shape.duration" },
|
|
660
|
+
{
|
|
661
|
+
path: "draftPosts.richContent.nodes.cardData.background.gradient.centerX"
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
path: "draftPosts.richContent.nodes.cardData.background.gradient.centerY"
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
path: "draftPosts.richContent.nodes.cardData.background.gradient.stops.position"
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
671
|
+
}
|
|
521
672
|
]
|
|
522
673
|
}
|
|
523
674
|
]);
|
|
@@ -578,6 +729,24 @@ function bulkCreateDraftPosts(payload) {
|
|
|
578
729
|
{
|
|
579
730
|
path: "results.item.media.wixMedia.videoV2.posters.focalPoint.y"
|
|
580
731
|
},
|
|
732
|
+
{
|
|
733
|
+
path: "results.item.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
734
|
+
},
|
|
735
|
+
{
|
|
736
|
+
path: "results.item.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
path: "results.item.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
path: "results.item.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
path: "results.item.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
path: "results.item.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
749
|
+
},
|
|
581
750
|
{
|
|
582
751
|
path: "results.item.richContent.nodes.galleryData.items.image.media.duration"
|
|
583
752
|
},
|
|
@@ -629,8 +798,38 @@ function bulkCreateDraftPosts(payload) {
|
|
|
629
798
|
{
|
|
630
799
|
path: "results.item.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
631
800
|
},
|
|
801
|
+
{
|
|
802
|
+
path: "results.item.richContent.nodes.layoutData.background.gradient.centerX"
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
path: "results.item.richContent.nodes.layoutData.background.gradient.centerY"
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
path: "results.item.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
path: "results.item.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
path: "results.item.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
path: "results.item.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
818
|
+
},
|
|
632
819
|
{
|
|
633
820
|
path: "results.item.richContent.nodes.shapeData.shape.duration"
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
path: "results.item.richContent.nodes.cardData.background.gradient.centerX"
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
path: "results.item.richContent.nodes.cardData.background.gradient.centerY"
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
path: "results.item.richContent.nodes.cardData.background.gradient.stops.position"
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
634
833
|
}
|
|
635
834
|
]
|
|
636
835
|
}
|
|
@@ -700,6 +899,24 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
700
899
|
{
|
|
701
900
|
path: "draftPosts.draftPost.media.wixMedia.videoV2.posters.focalPoint.y"
|
|
702
901
|
},
|
|
902
|
+
{
|
|
903
|
+
path: "draftPosts.draftPost.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
904
|
+
},
|
|
905
|
+
{
|
|
906
|
+
path: "draftPosts.draftPost.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
path: "draftPosts.draftPost.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
path: "draftPosts.draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
path: "draftPosts.draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
path: "draftPosts.draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
919
|
+
},
|
|
703
920
|
{
|
|
704
921
|
path: "draftPosts.draftPost.richContent.nodes.galleryData.items.image.media.duration"
|
|
705
922
|
},
|
|
@@ -751,8 +968,38 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
751
968
|
{
|
|
752
969
|
path: "draftPosts.draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
753
970
|
},
|
|
971
|
+
{
|
|
972
|
+
path: "draftPosts.draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
path: "draftPosts.draftPost.richContent.nodes.layoutData.background.gradient.centerY"
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
path: "draftPosts.draftPost.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
path: "draftPosts.draftPost.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
path: "draftPosts.draftPost.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
path: "draftPosts.draftPost.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
988
|
+
},
|
|
754
989
|
{
|
|
755
990
|
path: "draftPosts.draftPost.richContent.nodes.shapeData.shape.duration"
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
path: "draftPosts.draftPost.richContent.nodes.cardData.background.gradient.centerX"
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
path: "draftPosts.draftPost.richContent.nodes.cardData.background.gradient.centerY"
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
path: "draftPosts.draftPost.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1000
|
+
},
|
|
1001
|
+
{
|
|
1002
|
+
path: "draftPosts.draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
756
1003
|
}
|
|
757
1004
|
]
|
|
758
1005
|
}
|
|
@@ -814,6 +1061,24 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
814
1061
|
{
|
|
815
1062
|
path: "results.item.media.wixMedia.videoV2.posters.focalPoint.y"
|
|
816
1063
|
},
|
|
1064
|
+
{
|
|
1065
|
+
path: "results.item.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
path: "results.item.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
path: "results.item.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
path: "results.item.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
path: "results.item.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
path: "results.item.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1081
|
+
},
|
|
817
1082
|
{
|
|
818
1083
|
path: "results.item.richContent.nodes.galleryData.items.image.media.duration"
|
|
819
1084
|
},
|
|
@@ -865,8 +1130,38 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
865
1130
|
{
|
|
866
1131
|
path: "results.item.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
867
1132
|
},
|
|
1133
|
+
{
|
|
1134
|
+
path: "results.item.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1135
|
+
},
|
|
1136
|
+
{
|
|
1137
|
+
path: "results.item.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1138
|
+
},
|
|
1139
|
+
{
|
|
1140
|
+
path: "results.item.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
path: "results.item.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
path: "results.item.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1147
|
+
},
|
|
1148
|
+
{
|
|
1149
|
+
path: "results.item.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1150
|
+
},
|
|
868
1151
|
{
|
|
869
1152
|
path: "results.item.richContent.nodes.shapeData.shape.duration"
|
|
1153
|
+
},
|
|
1154
|
+
{
|
|
1155
|
+
path: "results.item.richContent.nodes.cardData.background.gradient.centerX"
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
path: "results.item.richContent.nodes.cardData.background.gradient.centerY"
|
|
1159
|
+
},
|
|
1160
|
+
{
|
|
1161
|
+
path: "results.item.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
870
1165
|
}
|
|
871
1166
|
]
|
|
872
1167
|
}
|
|
@@ -935,6 +1230,24 @@ function listDeletedDraftPosts(payload) {
|
|
|
935
1230
|
{
|
|
936
1231
|
path: "draftPosts.media.wixMedia.videoV2.posters.focalPoint.y"
|
|
937
1232
|
},
|
|
1233
|
+
{
|
|
1234
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1235
|
+
},
|
|
1236
|
+
{
|
|
1237
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1238
|
+
},
|
|
1239
|
+
{
|
|
1240
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1244
|
+
},
|
|
1245
|
+
{
|
|
1246
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1247
|
+
},
|
|
1248
|
+
{
|
|
1249
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1250
|
+
},
|
|
938
1251
|
{
|
|
939
1252
|
path: "draftPosts.richContent.nodes.galleryData.items.image.media.duration"
|
|
940
1253
|
},
|
|
@@ -976,7 +1289,37 @@ function listDeletedDraftPosts(payload) {
|
|
|
976
1289
|
{
|
|
977
1290
|
path: "draftPosts.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
978
1291
|
},
|
|
979
|
-
{
|
|
1292
|
+
{
|
|
1293
|
+
path: "draftPosts.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1294
|
+
},
|
|
1295
|
+
{
|
|
1296
|
+
path: "draftPosts.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1297
|
+
},
|
|
1298
|
+
{
|
|
1299
|
+
path: "draftPosts.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1300
|
+
},
|
|
1301
|
+
{
|
|
1302
|
+
path: "draftPosts.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1303
|
+
},
|
|
1304
|
+
{
|
|
1305
|
+
path: "draftPosts.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
path: "draftPosts.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1309
|
+
},
|
|
1310
|
+
{ path: "draftPosts.richContent.nodes.shapeData.shape.duration" },
|
|
1311
|
+
{
|
|
1312
|
+
path: "draftPosts.richContent.nodes.cardData.background.gradient.centerX"
|
|
1313
|
+
},
|
|
1314
|
+
{
|
|
1315
|
+
path: "draftPosts.richContent.nodes.cardData.background.gradient.centerY"
|
|
1316
|
+
},
|
|
1317
|
+
{
|
|
1318
|
+
path: "draftPosts.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1322
|
+
}
|
|
980
1323
|
]
|
|
981
1324
|
}
|
|
982
1325
|
])
|
|
@@ -1040,6 +1383,24 @@ function getDraftPost(payload) {
|
|
|
1040
1383
|
},
|
|
1041
1384
|
{ path: "draftPost.media.wixMedia.videoV2.posters.focalPoint.x" },
|
|
1042
1385
|
{ path: "draftPost.media.wixMedia.videoV2.posters.focalPoint.y" },
|
|
1386
|
+
{
|
|
1387
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1388
|
+
},
|
|
1389
|
+
{
|
|
1390
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1391
|
+
},
|
|
1392
|
+
{
|
|
1393
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1400
|
+
},
|
|
1401
|
+
{
|
|
1402
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1403
|
+
},
|
|
1043
1404
|
{
|
|
1044
1405
|
path: "draftPost.richContent.nodes.galleryData.items.image.media.duration"
|
|
1045
1406
|
},
|
|
@@ -1081,7 +1442,37 @@ function getDraftPost(payload) {
|
|
|
1081
1442
|
{
|
|
1082
1443
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1083
1444
|
},
|
|
1084
|
-
{
|
|
1445
|
+
{
|
|
1446
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1447
|
+
},
|
|
1448
|
+
{
|
|
1449
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1453
|
+
},
|
|
1454
|
+
{
|
|
1455
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1456
|
+
},
|
|
1457
|
+
{
|
|
1458
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1462
|
+
},
|
|
1463
|
+
{ path: "draftPost.richContent.nodes.shapeData.shape.duration" },
|
|
1464
|
+
{
|
|
1465
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.centerX"
|
|
1466
|
+
},
|
|
1467
|
+
{
|
|
1468
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.centerY"
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1472
|
+
},
|
|
1473
|
+
{
|
|
1474
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1475
|
+
}
|
|
1085
1476
|
]
|
|
1086
1477
|
}
|
|
1087
1478
|
])
|
|
@@ -1138,6 +1529,24 @@ function updateDraftPost(payload) {
|
|
|
1138
1529
|
},
|
|
1139
1530
|
{ path: "draftPost.media.wixMedia.videoV2.posters.focalPoint.x" },
|
|
1140
1531
|
{ path: "draftPost.media.wixMedia.videoV2.posters.focalPoint.y" },
|
|
1532
|
+
{
|
|
1533
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1534
|
+
},
|
|
1535
|
+
{
|
|
1536
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1537
|
+
},
|
|
1538
|
+
{
|
|
1539
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1540
|
+
},
|
|
1541
|
+
{
|
|
1542
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1543
|
+
},
|
|
1544
|
+
{
|
|
1545
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1546
|
+
},
|
|
1547
|
+
{
|
|
1548
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1549
|
+
},
|
|
1141
1550
|
{
|
|
1142
1551
|
path: "draftPost.richContent.nodes.galleryData.items.image.media.duration"
|
|
1143
1552
|
},
|
|
@@ -1171,7 +1580,37 @@ function updateDraftPost(payload) {
|
|
|
1171
1580
|
{
|
|
1172
1581
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1173
1582
|
},
|
|
1174
|
-
{
|
|
1583
|
+
{
|
|
1584
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1585
|
+
},
|
|
1586
|
+
{
|
|
1587
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1588
|
+
},
|
|
1589
|
+
{
|
|
1590
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1591
|
+
},
|
|
1592
|
+
{
|
|
1593
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1594
|
+
},
|
|
1595
|
+
{
|
|
1596
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1597
|
+
},
|
|
1598
|
+
{
|
|
1599
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1600
|
+
},
|
|
1601
|
+
{ path: "draftPost.richContent.nodes.shapeData.shape.duration" },
|
|
1602
|
+
{
|
|
1603
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.centerX"
|
|
1604
|
+
},
|
|
1605
|
+
{
|
|
1606
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.centerY"
|
|
1607
|
+
},
|
|
1608
|
+
{
|
|
1609
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1610
|
+
},
|
|
1611
|
+
{
|
|
1612
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1613
|
+
}
|
|
1175
1614
|
]
|
|
1176
1615
|
}
|
|
1177
1616
|
]);
|
|
@@ -1232,6 +1671,24 @@ function updateDraftPost(payload) {
|
|
|
1232
1671
|
},
|
|
1233
1672
|
{ path: "draftPost.media.wixMedia.videoV2.posters.focalPoint.x" },
|
|
1234
1673
|
{ path: "draftPost.media.wixMedia.videoV2.posters.focalPoint.y" },
|
|
1674
|
+
{
|
|
1675
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1676
|
+
},
|
|
1677
|
+
{
|
|
1678
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1679
|
+
},
|
|
1680
|
+
{
|
|
1681
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1682
|
+
},
|
|
1683
|
+
{
|
|
1684
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1685
|
+
},
|
|
1686
|
+
{
|
|
1687
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1688
|
+
},
|
|
1689
|
+
{
|
|
1690
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1691
|
+
},
|
|
1235
1692
|
{
|
|
1236
1693
|
path: "draftPost.richContent.nodes.galleryData.items.image.media.duration"
|
|
1237
1694
|
},
|
|
@@ -1273,7 +1730,37 @@ function updateDraftPost(payload) {
|
|
|
1273
1730
|
{
|
|
1274
1731
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1275
1732
|
},
|
|
1276
|
-
{
|
|
1733
|
+
{
|
|
1734
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1735
|
+
},
|
|
1736
|
+
{
|
|
1737
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1738
|
+
},
|
|
1739
|
+
{
|
|
1740
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1741
|
+
},
|
|
1742
|
+
{
|
|
1743
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1744
|
+
},
|
|
1745
|
+
{
|
|
1746
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1747
|
+
},
|
|
1748
|
+
{
|
|
1749
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1750
|
+
},
|
|
1751
|
+
{ path: "draftPost.richContent.nodes.shapeData.shape.duration" },
|
|
1752
|
+
{
|
|
1753
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.centerX"
|
|
1754
|
+
},
|
|
1755
|
+
{
|
|
1756
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.centerY"
|
|
1757
|
+
},
|
|
1758
|
+
{
|
|
1759
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1760
|
+
},
|
|
1761
|
+
{
|
|
1762
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1763
|
+
}
|
|
1277
1764
|
]
|
|
1278
1765
|
}
|
|
1279
1766
|
])
|
|
@@ -1383,6 +1870,24 @@ function bulkDeleteDraftPosts(payload) {
|
|
|
1383
1870
|
{
|
|
1384
1871
|
path: "results.item.media.wixMedia.videoV2.posters.focalPoint.y"
|
|
1385
1872
|
},
|
|
1873
|
+
{
|
|
1874
|
+
path: "results.item.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1875
|
+
},
|
|
1876
|
+
{
|
|
1877
|
+
path: "results.item.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1878
|
+
},
|
|
1879
|
+
{
|
|
1880
|
+
path: "results.item.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1881
|
+
},
|
|
1882
|
+
{
|
|
1883
|
+
path: "results.item.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1884
|
+
},
|
|
1885
|
+
{
|
|
1886
|
+
path: "results.item.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1887
|
+
},
|
|
1888
|
+
{
|
|
1889
|
+
path: "results.item.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1890
|
+
},
|
|
1386
1891
|
{
|
|
1387
1892
|
path: "results.item.richContent.nodes.galleryData.items.image.media.duration"
|
|
1388
1893
|
},
|
|
@@ -1434,8 +1939,38 @@ function bulkDeleteDraftPosts(payload) {
|
|
|
1434
1939
|
{
|
|
1435
1940
|
path: "results.item.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1436
1941
|
},
|
|
1942
|
+
{
|
|
1943
|
+
path: "results.item.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1944
|
+
},
|
|
1945
|
+
{
|
|
1946
|
+
path: "results.item.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1947
|
+
},
|
|
1948
|
+
{
|
|
1949
|
+
path: "results.item.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1950
|
+
},
|
|
1951
|
+
{
|
|
1952
|
+
path: "results.item.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1953
|
+
},
|
|
1954
|
+
{
|
|
1955
|
+
path: "results.item.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1956
|
+
},
|
|
1957
|
+
{
|
|
1958
|
+
path: "results.item.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1959
|
+
},
|
|
1437
1960
|
{
|
|
1438
1961
|
path: "results.item.richContent.nodes.shapeData.shape.duration"
|
|
1962
|
+
},
|
|
1963
|
+
{
|
|
1964
|
+
path: "results.item.richContent.nodes.cardData.background.gradient.centerX"
|
|
1965
|
+
},
|
|
1966
|
+
{
|
|
1967
|
+
path: "results.item.richContent.nodes.cardData.background.gradient.centerY"
|
|
1968
|
+
},
|
|
1969
|
+
{
|
|
1970
|
+
path: "results.item.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1971
|
+
},
|
|
1972
|
+
{
|
|
1973
|
+
path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1439
1974
|
}
|
|
1440
1975
|
]
|
|
1441
1976
|
}
|
|
@@ -1504,6 +2039,24 @@ function listDraftPosts(payload) {
|
|
|
1504
2039
|
{
|
|
1505
2040
|
path: "draftPosts.media.wixMedia.videoV2.posters.focalPoint.y"
|
|
1506
2041
|
},
|
|
2042
|
+
{
|
|
2043
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
2044
|
+
},
|
|
2045
|
+
{
|
|
2046
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
2047
|
+
},
|
|
2048
|
+
{
|
|
2049
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
2050
|
+
},
|
|
2051
|
+
{
|
|
2052
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
2053
|
+
},
|
|
2054
|
+
{
|
|
2055
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
2056
|
+
},
|
|
2057
|
+
{
|
|
2058
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
2059
|
+
},
|
|
1507
2060
|
{
|
|
1508
2061
|
path: "draftPosts.richContent.nodes.galleryData.items.image.media.duration"
|
|
1509
2062
|
},
|
|
@@ -1545,7 +2098,37 @@ function listDraftPosts(payload) {
|
|
|
1545
2098
|
{
|
|
1546
2099
|
path: "draftPosts.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1547
2100
|
},
|
|
1548
|
-
{
|
|
2101
|
+
{
|
|
2102
|
+
path: "draftPosts.richContent.nodes.layoutData.background.gradient.centerX"
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
path: "draftPosts.richContent.nodes.layoutData.background.gradient.centerY"
|
|
2106
|
+
},
|
|
2107
|
+
{
|
|
2108
|
+
path: "draftPosts.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
2109
|
+
},
|
|
2110
|
+
{
|
|
2111
|
+
path: "draftPosts.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
2112
|
+
},
|
|
2113
|
+
{
|
|
2114
|
+
path: "draftPosts.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
2115
|
+
},
|
|
2116
|
+
{
|
|
2117
|
+
path: "draftPosts.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
2118
|
+
},
|
|
2119
|
+
{ path: "draftPosts.richContent.nodes.shapeData.shape.duration" },
|
|
2120
|
+
{
|
|
2121
|
+
path: "draftPosts.richContent.nodes.cardData.background.gradient.centerX"
|
|
2122
|
+
},
|
|
2123
|
+
{
|
|
2124
|
+
path: "draftPosts.richContent.nodes.cardData.background.gradient.centerY"
|
|
2125
|
+
},
|
|
2126
|
+
{
|
|
2127
|
+
path: "draftPosts.richContent.nodes.cardData.background.gradient.stops.position"
|
|
2128
|
+
},
|
|
2129
|
+
{
|
|
2130
|
+
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2131
|
+
}
|
|
1549
2132
|
]
|
|
1550
2133
|
}
|
|
1551
2134
|
])
|
|
@@ -1613,6 +2196,24 @@ function getDeletedDraftPost(payload) {
|
|
|
1613
2196
|
},
|
|
1614
2197
|
{ path: "draftPost.media.wixMedia.videoV2.posters.focalPoint.x" },
|
|
1615
2198
|
{ path: "draftPost.media.wixMedia.videoV2.posters.focalPoint.y" },
|
|
2199
|
+
{
|
|
2200
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
2201
|
+
},
|
|
2202
|
+
{
|
|
2203
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
2204
|
+
},
|
|
2205
|
+
{
|
|
2206
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
2207
|
+
},
|
|
2208
|
+
{
|
|
2209
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
2210
|
+
},
|
|
2211
|
+
{
|
|
2212
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
2213
|
+
},
|
|
2214
|
+
{
|
|
2215
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
2216
|
+
},
|
|
1616
2217
|
{
|
|
1617
2218
|
path: "draftPost.richContent.nodes.galleryData.items.image.media.duration"
|
|
1618
2219
|
},
|
|
@@ -1654,7 +2255,37 @@ function getDeletedDraftPost(payload) {
|
|
|
1654
2255
|
{
|
|
1655
2256
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1656
2257
|
},
|
|
1657
|
-
{
|
|
2258
|
+
{
|
|
2259
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
2260
|
+
},
|
|
2261
|
+
{
|
|
2262
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerY"
|
|
2263
|
+
},
|
|
2264
|
+
{
|
|
2265
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
2266
|
+
},
|
|
2267
|
+
{
|
|
2268
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
2269
|
+
},
|
|
2270
|
+
{
|
|
2271
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
2272
|
+
},
|
|
2273
|
+
{
|
|
2274
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
2275
|
+
},
|
|
2276
|
+
{ path: "draftPost.richContent.nodes.shapeData.shape.duration" },
|
|
2277
|
+
{
|
|
2278
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.centerX"
|
|
2279
|
+
},
|
|
2280
|
+
{
|
|
2281
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.centerY"
|
|
2282
|
+
},
|
|
2283
|
+
{
|
|
2284
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.stops.position"
|
|
2285
|
+
},
|
|
2286
|
+
{
|
|
2287
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2288
|
+
}
|
|
1658
2289
|
]
|
|
1659
2290
|
}
|
|
1660
2291
|
])
|
|
@@ -1722,6 +2353,24 @@ function restoreFromTrashBin(payload) {
|
|
|
1722
2353
|
},
|
|
1723
2354
|
{ path: "draftPost.media.wixMedia.videoV2.posters.focalPoint.x" },
|
|
1724
2355
|
{ path: "draftPost.media.wixMedia.videoV2.posters.focalPoint.y" },
|
|
2356
|
+
{
|
|
2357
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
2358
|
+
},
|
|
2359
|
+
{
|
|
2360
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
2361
|
+
},
|
|
2362
|
+
{
|
|
2363
|
+
path: "draftPost.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
2364
|
+
},
|
|
2365
|
+
{
|
|
2366
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
2367
|
+
},
|
|
2368
|
+
{
|
|
2369
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
2370
|
+
},
|
|
2371
|
+
{
|
|
2372
|
+
path: "draftPost.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
2373
|
+
},
|
|
1725
2374
|
{
|
|
1726
2375
|
path: "draftPost.richContent.nodes.galleryData.items.image.media.duration"
|
|
1727
2376
|
},
|
|
@@ -1763,7 +2412,37 @@ function restoreFromTrashBin(payload) {
|
|
|
1763
2412
|
{
|
|
1764
2413
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1765
2414
|
},
|
|
1766
|
-
{
|
|
2415
|
+
{
|
|
2416
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
2417
|
+
},
|
|
2418
|
+
{
|
|
2419
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerY"
|
|
2420
|
+
},
|
|
2421
|
+
{
|
|
2422
|
+
path: "draftPost.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
2423
|
+
},
|
|
2424
|
+
{
|
|
2425
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
2426
|
+
},
|
|
2427
|
+
{
|
|
2428
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
2429
|
+
},
|
|
2430
|
+
{
|
|
2431
|
+
path: "draftPost.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
2432
|
+
},
|
|
2433
|
+
{ path: "draftPost.richContent.nodes.shapeData.shape.duration" },
|
|
2434
|
+
{
|
|
2435
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.centerX"
|
|
2436
|
+
},
|
|
2437
|
+
{
|
|
2438
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.centerY"
|
|
2439
|
+
},
|
|
2440
|
+
{
|
|
2441
|
+
path: "draftPost.richContent.nodes.cardData.background.gradient.stops.position"
|
|
2442
|
+
},
|
|
2443
|
+
{
|
|
2444
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2445
|
+
}
|
|
1767
2446
|
]
|
|
1768
2447
|
}
|
|
1769
2448
|
])
|
|
@@ -1831,6 +2510,24 @@ function queryDraftPosts(payload) {
|
|
|
1831
2510
|
{
|
|
1832
2511
|
path: "draftPosts.media.wixMedia.videoV2.posters.focalPoint.y"
|
|
1833
2512
|
},
|
|
2513
|
+
{
|
|
2514
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
2515
|
+
},
|
|
2516
|
+
{
|
|
2517
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
2518
|
+
},
|
|
2519
|
+
{
|
|
2520
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
2521
|
+
},
|
|
2522
|
+
{
|
|
2523
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
2524
|
+
},
|
|
2525
|
+
{
|
|
2526
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
2527
|
+
},
|
|
2528
|
+
{
|
|
2529
|
+
path: "draftPosts.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
2530
|
+
},
|
|
1834
2531
|
{
|
|
1835
2532
|
path: "draftPosts.richContent.nodes.galleryData.items.image.media.duration"
|
|
1836
2533
|
},
|
|
@@ -1872,7 +2569,37 @@ function queryDraftPosts(payload) {
|
|
|
1872
2569
|
{
|
|
1873
2570
|
path: "draftPosts.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1874
2571
|
},
|
|
1875
|
-
{
|
|
2572
|
+
{
|
|
2573
|
+
path: "draftPosts.richContent.nodes.layoutData.background.gradient.centerX"
|
|
2574
|
+
},
|
|
2575
|
+
{
|
|
2576
|
+
path: "draftPosts.richContent.nodes.layoutData.background.gradient.centerY"
|
|
2577
|
+
},
|
|
2578
|
+
{
|
|
2579
|
+
path: "draftPosts.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
2580
|
+
},
|
|
2581
|
+
{
|
|
2582
|
+
path: "draftPosts.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
2583
|
+
},
|
|
2584
|
+
{
|
|
2585
|
+
path: "draftPosts.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
2586
|
+
},
|
|
2587
|
+
{
|
|
2588
|
+
path: "draftPosts.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
2589
|
+
},
|
|
2590
|
+
{ path: "draftPosts.richContent.nodes.shapeData.shape.duration" },
|
|
2591
|
+
{
|
|
2592
|
+
path: "draftPosts.richContent.nodes.cardData.background.gradient.centerX"
|
|
2593
|
+
},
|
|
2594
|
+
{
|
|
2595
|
+
path: "draftPosts.richContent.nodes.cardData.background.gradient.centerY"
|
|
2596
|
+
},
|
|
2597
|
+
{
|
|
2598
|
+
path: "draftPosts.richContent.nodes.cardData.background.gradient.stops.position"
|
|
2599
|
+
},
|
|
2600
|
+
{
|
|
2601
|
+
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2602
|
+
}
|
|
1876
2603
|
]
|
|
1877
2604
|
}
|
|
1878
2605
|
])
|
|
@@ -1988,8 +2715,19 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
1988
2715
|
NodeType2["LAYOUT"] = "LAYOUT";
|
|
1989
2716
|
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
1990
2717
|
NodeType2["SHAPE"] = "SHAPE";
|
|
2718
|
+
NodeType2["CARD"] = "CARD";
|
|
1991
2719
|
return NodeType2;
|
|
1992
2720
|
})(NodeType || {});
|
|
2721
|
+
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
2722
|
+
BackgroundType2["COLOR"] = "COLOR";
|
|
2723
|
+
BackgroundType2["GRADIENT"] = "GRADIENT";
|
|
2724
|
+
return BackgroundType2;
|
|
2725
|
+
})(BackgroundType || {});
|
|
2726
|
+
var GradientType = /* @__PURE__ */ ((GradientType2) => {
|
|
2727
|
+
GradientType2["LINEAR"] = "LINEAR";
|
|
2728
|
+
GradientType2["RADIAL"] = "RADIAL";
|
|
2729
|
+
return GradientType2;
|
|
2730
|
+
})(GradientType || {});
|
|
1993
2731
|
var WidthType = /* @__PURE__ */ ((WidthType2) => {
|
|
1994
2732
|
WidthType2["CONTENT"] = "CONTENT";
|
|
1995
2733
|
WidthType2["SMALL"] = "SMALL";
|
|
@@ -2125,12 +2863,12 @@ var PollLayoutDirection = /* @__PURE__ */ ((PollLayoutDirection2) => {
|
|
|
2125
2863
|
PollLayoutDirection2["RTL"] = "RTL";
|
|
2126
2864
|
return PollLayoutDirection2;
|
|
2127
2865
|
})(PollLayoutDirection || {});
|
|
2128
|
-
var
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
return
|
|
2133
|
-
})(
|
|
2866
|
+
var PollDesignBackgroundType = /* @__PURE__ */ ((PollDesignBackgroundType2) => {
|
|
2867
|
+
PollDesignBackgroundType2["COLOR"] = "COLOR";
|
|
2868
|
+
PollDesignBackgroundType2["IMAGE"] = "IMAGE";
|
|
2869
|
+
PollDesignBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
2870
|
+
return PollDesignBackgroundType2;
|
|
2871
|
+
})(PollDesignBackgroundType || {});
|
|
2134
2872
|
var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
2135
2873
|
DecorationType2["BOLD"] = "BOLD";
|
|
2136
2874
|
DecorationType2["ITALIC"] = "ITALIC";
|
|
@@ -2217,12 +2955,12 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
2217
2955
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
2218
2956
|
return NullValue2;
|
|
2219
2957
|
})(NullValue || {});
|
|
2220
|
-
var
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
return
|
|
2225
|
-
})(
|
|
2958
|
+
var ImageScalingScaling = /* @__PURE__ */ ((ImageScalingScaling2) => {
|
|
2959
|
+
ImageScalingScaling2["AUTO"] = "AUTO";
|
|
2960
|
+
ImageScalingScaling2["CONTAIN"] = "CONTAIN";
|
|
2961
|
+
ImageScalingScaling2["COVER"] = "COVER";
|
|
2962
|
+
return ImageScalingScaling2;
|
|
2963
|
+
})(ImageScalingScaling || {});
|
|
2226
2964
|
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
2227
2965
|
ImagePosition2["CENTER"] = "CENTER";
|
|
2228
2966
|
ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
@@ -2240,6 +2978,16 @@ var BannerOrigin = /* @__PURE__ */ ((BannerOrigin2) => {
|
|
|
2240
2978
|
BannerOrigin2["LAYOUT"] = "LAYOUT";
|
|
2241
2979
|
return BannerOrigin2;
|
|
2242
2980
|
})(BannerOrigin || {});
|
|
2981
|
+
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
2982
|
+
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
2983
|
+
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
2984
|
+
return LayoutDataBackgroundType2;
|
|
2985
|
+
})(LayoutDataBackgroundType || {});
|
|
2986
|
+
var BackdropType = /* @__PURE__ */ ((BackdropType2) => {
|
|
2987
|
+
BackdropType2["COLOR"] = "COLOR";
|
|
2988
|
+
BackdropType2["GRADIENT"] = "GRADIENT";
|
|
2989
|
+
return BackdropType2;
|
|
2990
|
+
})(BackdropType || {});
|
|
2243
2991
|
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
2244
2992
|
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
2245
2993
|
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
@@ -2256,6 +3004,29 @@ var DesignTarget = /* @__PURE__ */ ((DesignTarget2) => {
|
|
|
2256
3004
|
DesignTarget2["CELL"] = "CELL";
|
|
2257
3005
|
return DesignTarget2;
|
|
2258
3006
|
})(DesignTarget || {});
|
|
3007
|
+
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
3008
|
+
Scaling2["AUTO"] = "AUTO";
|
|
3009
|
+
Scaling2["CONTAIN"] = "CONTAIN";
|
|
3010
|
+
Scaling2["COVER"] = "COVER";
|
|
3011
|
+
return Scaling2;
|
|
3012
|
+
})(Scaling || {});
|
|
3013
|
+
var ImagePositionPosition = /* @__PURE__ */ ((ImagePositionPosition2) => {
|
|
3014
|
+
ImagePositionPosition2["CENTER"] = "CENTER";
|
|
3015
|
+
ImagePositionPosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
3016
|
+
ImagePositionPosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
3017
|
+
ImagePositionPosition2["TOP"] = "TOP";
|
|
3018
|
+
ImagePositionPosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
3019
|
+
ImagePositionPosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
3020
|
+
ImagePositionPosition2["BOTTOM"] = "BOTTOM";
|
|
3021
|
+
ImagePositionPosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
3022
|
+
ImagePositionPosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
3023
|
+
return ImagePositionPosition2;
|
|
3024
|
+
})(ImagePositionPosition || {});
|
|
3025
|
+
var CardDataBackgroundType = /* @__PURE__ */ ((CardDataBackgroundType2) => {
|
|
3026
|
+
CardDataBackgroundType2["COLOR"] = "COLOR";
|
|
3027
|
+
CardDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
3028
|
+
return CardDataBackgroundType2;
|
|
3029
|
+
})(CardDataBackgroundType || {});
|
|
2259
3030
|
var Status = /* @__PURE__ */ ((Status2) => {
|
|
2260
3031
|
Status2["UNKNOWN"] = "UNKNOWN";
|
|
2261
3032
|
Status2["PUBLISHED"] = "PUBLISHED";
|
|
@@ -3163,9 +3934,11 @@ async function publishDraftPost2(draftPostId) {
|
|
|
3163
3934
|
Alignment,
|
|
3164
3935
|
AppType,
|
|
3165
3936
|
AspectRatio,
|
|
3937
|
+
BackdropType,
|
|
3166
3938
|
BackgroundType,
|
|
3167
3939
|
BannerOrigin,
|
|
3168
3940
|
ButtonDataType,
|
|
3941
|
+
CardDataBackgroundType,
|
|
3169
3942
|
CardStylesType,
|
|
3170
3943
|
Crop,
|
|
3171
3944
|
DecorationType,
|
|
@@ -3176,9 +3949,13 @@ async function publishDraftPost2(draftPostId) {
|
|
|
3176
3949
|
FontType,
|
|
3177
3950
|
GIFType,
|
|
3178
3951
|
GetDraftPostsSort,
|
|
3952
|
+
GradientType,
|
|
3179
3953
|
ImagePosition,
|
|
3954
|
+
ImagePositionPosition,
|
|
3955
|
+
ImageScalingScaling,
|
|
3180
3956
|
InitialExpandedItems,
|
|
3181
3957
|
Layout,
|
|
3958
|
+
LayoutDataBackgroundType,
|
|
3182
3959
|
LayoutType,
|
|
3183
3960
|
LineStyle,
|
|
3184
3961
|
MapType,
|
|
@@ -3189,6 +3966,7 @@ async function publishDraftPost2(draftPostId) {
|
|
|
3189
3966
|
Origin,
|
|
3190
3967
|
Placement,
|
|
3191
3968
|
PluginContainerDataAlignment,
|
|
3969
|
+
PollDesignBackgroundType,
|
|
3192
3970
|
PollLayoutDirection,
|
|
3193
3971
|
PollLayoutType,
|
|
3194
3972
|
Position,
|