@wix/auto_sdk_blog_posts 1.0.139 → 1.0.140
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 +433 -39
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +540 -351
- package/build/cjs/index.typings.js +286 -36
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +541 -352
- package/build/cjs/meta.js +286 -36
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +426 -39
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +540 -351
- package/build/es/index.typings.mjs +279 -36
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +541 -352
- package/build/es/meta.mjs +279 -36
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +433 -39
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +540 -351
- package/build/internal/cjs/index.typings.js +286 -36
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +541 -352
- package/build/internal/cjs/meta.js +286 -36
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +426 -39
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +540 -351
- package/build/internal/es/index.typings.mjs +279 -36
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +541 -352
- package/build/internal/es/meta.mjs +279 -36
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/meta.js
CHANGED
|
@@ -23,9 +23,11 @@ __export(meta_exports, {
|
|
|
23
23
|
AlignmentOriginal: () => Alignment,
|
|
24
24
|
AppTypeOriginal: () => AppType,
|
|
25
25
|
AspectRatioOriginal: () => AspectRatio,
|
|
26
|
+
BackdropTypeOriginal: () => BackdropType,
|
|
26
27
|
BackgroundTypeOriginal: () => BackgroundType,
|
|
27
28
|
BannerOriginOriginal: () => BannerOrigin,
|
|
28
29
|
ButtonDataTypeOriginal: () => ButtonDataType,
|
|
30
|
+
CardDataBackgroundTypeOriginal: () => CardDataBackgroundType,
|
|
29
31
|
CropOriginal: () => Crop,
|
|
30
32
|
DecorationTypeOriginal: () => DecorationType,
|
|
31
33
|
DesignTargetOriginal: () => DesignTarget,
|
|
@@ -36,8 +38,12 @@ __export(meta_exports, {
|
|
|
36
38
|
GIFTypeOriginal: () => GIFType,
|
|
37
39
|
GetPostTemplatesSortOriginal: () => GetPostTemplatesSort,
|
|
38
40
|
GetPostsSortOriginal: () => GetPostsSort,
|
|
41
|
+
GradientTypeOriginal: () => GradientType,
|
|
39
42
|
ImagePositionOriginal: () => ImagePosition,
|
|
43
|
+
ImagePositionPositionOriginal: () => ImagePositionPosition,
|
|
44
|
+
ImageScalingScalingOriginal: () => ImageScalingScaling,
|
|
40
45
|
InitialExpandedItemsOriginal: () => InitialExpandedItems,
|
|
46
|
+
LayoutDataBackgroundTypeOriginal: () => LayoutDataBackgroundType,
|
|
41
47
|
LayoutOriginal: () => Layout,
|
|
42
48
|
LayoutTypeOriginal: () => LayoutType,
|
|
43
49
|
LineStyleOriginal: () => LineStyle,
|
|
@@ -50,6 +56,7 @@ __export(meta_exports, {
|
|
|
50
56
|
OriginOriginal: () => Origin,
|
|
51
57
|
PlacementOriginal: () => Placement,
|
|
52
58
|
PluginContainerDataAlignmentOriginal: () => PluginContainerDataAlignment,
|
|
59
|
+
PollDesignBackgroundTypeOriginal: () => PollDesignBackgroundType,
|
|
53
60
|
PollLayoutDirectionOriginal: () => PollLayoutDirection,
|
|
54
61
|
PollLayoutTypeOriginal: () => PollLayoutType,
|
|
55
62
|
PositionOriginal: () => Position,
|
|
@@ -447,6 +454,24 @@ function getPost(payload) {
|
|
|
447
454
|
{ path: "post.media.wixMedia.videoV2.posters.focalPoint.x" },
|
|
448
455
|
{ path: "post.media.wixMedia.videoV2.posters.focalPoint.y" },
|
|
449
456
|
{ path: "post.metrics.averageRating" },
|
|
457
|
+
{
|
|
458
|
+
path: "post.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
path: "post.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
path: "post.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
path: "post.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
path: "post.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
path: "post.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
474
|
+
},
|
|
450
475
|
{
|
|
451
476
|
path: "post.richContent.nodes.galleryData.items.image.media.duration"
|
|
452
477
|
},
|
|
@@ -478,7 +503,37 @@ function getPost(payload) {
|
|
|
478
503
|
{
|
|
479
504
|
path: "post.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
480
505
|
},
|
|
481
|
-
{
|
|
506
|
+
{
|
|
507
|
+
path: "post.richContent.nodes.layoutData.background.gradient.centerX"
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
path: "post.richContent.nodes.layoutData.background.gradient.centerY"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
path: "post.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
path: "post.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
path: "post.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
path: "post.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
523
|
+
},
|
|
524
|
+
{ path: "post.richContent.nodes.shapeData.shape.duration" },
|
|
525
|
+
{
|
|
526
|
+
path: "post.richContent.nodes.cardData.background.gradient.centerX"
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
path: "post.richContent.nodes.cardData.background.gradient.centerY"
|
|
530
|
+
},
|
|
531
|
+
{
|
|
532
|
+
path: "post.richContent.nodes.cardData.background.gradient.stops.position"
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
path: "post.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
536
|
+
}
|
|
482
537
|
]
|
|
483
538
|
}
|
|
484
539
|
])
|
|
@@ -545,6 +600,24 @@ function getPostBySlug(payload) {
|
|
|
545
600
|
{ path: "post.media.wixMedia.videoV2.posters.focalPoint.x" },
|
|
546
601
|
{ path: "post.media.wixMedia.videoV2.posters.focalPoint.y" },
|
|
547
602
|
{ path: "post.metrics.averageRating" },
|
|
603
|
+
{
|
|
604
|
+
path: "post.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
path: "post.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
path: "post.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
path: "post.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
path: "post.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
path: "post.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
620
|
+
},
|
|
548
621
|
{
|
|
549
622
|
path: "post.richContent.nodes.galleryData.items.image.media.duration"
|
|
550
623
|
},
|
|
@@ -576,7 +649,37 @@ function getPostBySlug(payload) {
|
|
|
576
649
|
{
|
|
577
650
|
path: "post.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
578
651
|
},
|
|
579
|
-
{
|
|
652
|
+
{
|
|
653
|
+
path: "post.richContent.nodes.layoutData.background.gradient.centerX"
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
path: "post.richContent.nodes.layoutData.background.gradient.centerY"
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
path: "post.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
path: "post.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
path: "post.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
path: "post.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
669
|
+
},
|
|
670
|
+
{ path: "post.richContent.nodes.shapeData.shape.duration" },
|
|
671
|
+
{
|
|
672
|
+
path: "post.richContent.nodes.cardData.background.gradient.centerX"
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
path: "post.richContent.nodes.cardData.background.gradient.centerY"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
path: "post.richContent.nodes.cardData.background.gradient.stops.position"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
path: "post.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
682
|
+
}
|
|
580
683
|
]
|
|
581
684
|
}
|
|
582
685
|
])
|
|
@@ -645,6 +748,24 @@ function listPosts(payload) {
|
|
|
645
748
|
{ path: "posts.media.wixMedia.videoV2.posters.focalPoint.x" },
|
|
646
749
|
{ path: "posts.media.wixMedia.videoV2.posters.focalPoint.y" },
|
|
647
750
|
{ path: "posts.metrics.averageRating" },
|
|
751
|
+
{
|
|
752
|
+
path: "posts.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
path: "posts.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
path: "posts.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
759
|
+
},
|
|
760
|
+
{
|
|
761
|
+
path: "posts.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
path: "posts.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
765
|
+
},
|
|
766
|
+
{
|
|
767
|
+
path: "posts.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
768
|
+
},
|
|
648
769
|
{
|
|
649
770
|
path: "posts.richContent.nodes.galleryData.items.image.media.duration"
|
|
650
771
|
},
|
|
@@ -678,7 +799,37 @@ function listPosts(payload) {
|
|
|
678
799
|
{
|
|
679
800
|
path: "posts.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
680
801
|
},
|
|
681
|
-
{
|
|
802
|
+
{
|
|
803
|
+
path: "posts.richContent.nodes.layoutData.background.gradient.centerX"
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
path: "posts.richContent.nodes.layoutData.background.gradient.centerY"
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
path: "posts.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
path: "posts.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
813
|
+
},
|
|
814
|
+
{
|
|
815
|
+
path: "posts.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
path: "posts.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
819
|
+
},
|
|
820
|
+
{ path: "posts.richContent.nodes.shapeData.shape.duration" },
|
|
821
|
+
{
|
|
822
|
+
path: "posts.richContent.nodes.cardData.background.gradient.centerX"
|
|
823
|
+
},
|
|
824
|
+
{
|
|
825
|
+
path: "posts.richContent.nodes.cardData.background.gradient.centerY"
|
|
826
|
+
},
|
|
827
|
+
{
|
|
828
|
+
path: "posts.richContent.nodes.cardData.background.gradient.stops.position"
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
path: "posts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
832
|
+
}
|
|
682
833
|
]
|
|
683
834
|
}
|
|
684
835
|
])
|
|
@@ -747,6 +898,24 @@ function queryPosts(payload) {
|
|
|
747
898
|
{ path: "posts.media.wixMedia.videoV2.posters.focalPoint.x" },
|
|
748
899
|
{ path: "posts.media.wixMedia.videoV2.posters.focalPoint.y" },
|
|
749
900
|
{ path: "posts.metrics.averageRating" },
|
|
901
|
+
{
|
|
902
|
+
path: "posts.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
path: "posts.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
path: "posts.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
path: "posts.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
path: "posts.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
915
|
+
},
|
|
916
|
+
{
|
|
917
|
+
path: "posts.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
918
|
+
},
|
|
750
919
|
{
|
|
751
920
|
path: "posts.richContent.nodes.galleryData.items.image.media.duration"
|
|
752
921
|
},
|
|
@@ -780,7 +949,37 @@ function queryPosts(payload) {
|
|
|
780
949
|
{
|
|
781
950
|
path: "posts.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
782
951
|
},
|
|
783
|
-
{
|
|
952
|
+
{
|
|
953
|
+
path: "posts.richContent.nodes.layoutData.background.gradient.centerX"
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
path: "posts.richContent.nodes.layoutData.background.gradient.centerY"
|
|
957
|
+
},
|
|
958
|
+
{
|
|
959
|
+
path: "posts.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
path: "posts.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
path: "posts.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
path: "posts.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
969
|
+
},
|
|
970
|
+
{ path: "posts.richContent.nodes.shapeData.shape.duration" },
|
|
971
|
+
{
|
|
972
|
+
path: "posts.richContent.nodes.cardData.background.gradient.centerX"
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
path: "posts.richContent.nodes.cardData.background.gradient.centerY"
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
path: "posts.richContent.nodes.cardData.background.gradient.stops.position"
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
path: "posts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
982
|
+
}
|
|
784
983
|
]
|
|
785
984
|
}
|
|
786
985
|
])
|
|
@@ -853,8 +1052,19 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
853
1052
|
NodeType2["LAYOUT"] = "LAYOUT";
|
|
854
1053
|
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
855
1054
|
NodeType2["SHAPE"] = "SHAPE";
|
|
1055
|
+
NodeType2["CARD"] = "CARD";
|
|
856
1056
|
return NodeType2;
|
|
857
1057
|
})(NodeType || {});
|
|
1058
|
+
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
1059
|
+
BackgroundType2["COLOR"] = "COLOR";
|
|
1060
|
+
BackgroundType2["GRADIENT"] = "GRADIENT";
|
|
1061
|
+
return BackgroundType2;
|
|
1062
|
+
})(BackgroundType || {});
|
|
1063
|
+
var GradientType = /* @__PURE__ */ ((GradientType2) => {
|
|
1064
|
+
GradientType2["LINEAR"] = "LINEAR";
|
|
1065
|
+
GradientType2["RADIAL"] = "RADIAL";
|
|
1066
|
+
return GradientType2;
|
|
1067
|
+
})(GradientType || {});
|
|
858
1068
|
var WidthType = /* @__PURE__ */ ((WidthType2) => {
|
|
859
1069
|
WidthType2["CONTENT"] = "CONTENT";
|
|
860
1070
|
WidthType2["SMALL"] = "SMALL";
|
|
@@ -990,12 +1200,12 @@ var PollLayoutDirection = /* @__PURE__ */ ((PollLayoutDirection2) => {
|
|
|
990
1200
|
PollLayoutDirection2["RTL"] = "RTL";
|
|
991
1201
|
return PollLayoutDirection2;
|
|
992
1202
|
})(PollLayoutDirection || {});
|
|
993
|
-
var
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
return
|
|
998
|
-
})(
|
|
1203
|
+
var PollDesignBackgroundType = /* @__PURE__ */ ((PollDesignBackgroundType2) => {
|
|
1204
|
+
PollDesignBackgroundType2["COLOR"] = "COLOR";
|
|
1205
|
+
PollDesignBackgroundType2["IMAGE"] = "IMAGE";
|
|
1206
|
+
PollDesignBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
1207
|
+
return PollDesignBackgroundType2;
|
|
1208
|
+
})(PollDesignBackgroundType || {});
|
|
999
1209
|
var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
1000
1210
|
DecorationType2["BOLD"] = "BOLD";
|
|
1001
1211
|
DecorationType2["ITALIC"] = "ITALIC";
|
|
@@ -1082,12 +1292,12 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
1082
1292
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
1083
1293
|
return NullValue2;
|
|
1084
1294
|
})(NullValue || {});
|
|
1085
|
-
var
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
return
|
|
1090
|
-
})(
|
|
1295
|
+
var ImageScalingScaling = /* @__PURE__ */ ((ImageScalingScaling2) => {
|
|
1296
|
+
ImageScalingScaling2["AUTO"] = "AUTO";
|
|
1297
|
+
ImageScalingScaling2["CONTAIN"] = "CONTAIN";
|
|
1298
|
+
ImageScalingScaling2["COVER"] = "COVER";
|
|
1299
|
+
return ImageScalingScaling2;
|
|
1300
|
+
})(ImageScalingScaling || {});
|
|
1091
1301
|
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
1092
1302
|
ImagePosition2["CENTER"] = "CENTER";
|
|
1093
1303
|
ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
@@ -1105,6 +1315,16 @@ var BannerOrigin = /* @__PURE__ */ ((BannerOrigin2) => {
|
|
|
1105
1315
|
BannerOrigin2["LAYOUT"] = "LAYOUT";
|
|
1106
1316
|
return BannerOrigin2;
|
|
1107
1317
|
})(BannerOrigin || {});
|
|
1318
|
+
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
1319
|
+
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
1320
|
+
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
1321
|
+
return LayoutDataBackgroundType2;
|
|
1322
|
+
})(LayoutDataBackgroundType || {});
|
|
1323
|
+
var BackdropType = /* @__PURE__ */ ((BackdropType2) => {
|
|
1324
|
+
BackdropType2["COLOR"] = "COLOR";
|
|
1325
|
+
BackdropType2["GRADIENT"] = "GRADIENT";
|
|
1326
|
+
return BackdropType2;
|
|
1327
|
+
})(BackdropType || {});
|
|
1108
1328
|
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
1109
1329
|
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
1110
1330
|
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
@@ -1121,12 +1341,55 @@ var DesignTarget = /* @__PURE__ */ ((DesignTarget2) => {
|
|
|
1121
1341
|
DesignTarget2["CELL"] = "CELL";
|
|
1122
1342
|
return DesignTarget2;
|
|
1123
1343
|
})(DesignTarget || {});
|
|
1344
|
+
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
1345
|
+
Scaling2["AUTO"] = "AUTO";
|
|
1346
|
+
Scaling2["CONTAIN"] = "CONTAIN";
|
|
1347
|
+
Scaling2["COVER"] = "COVER";
|
|
1348
|
+
return Scaling2;
|
|
1349
|
+
})(Scaling || {});
|
|
1350
|
+
var ImagePositionPosition = /* @__PURE__ */ ((ImagePositionPosition2) => {
|
|
1351
|
+
ImagePositionPosition2["CENTER"] = "CENTER";
|
|
1352
|
+
ImagePositionPosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
1353
|
+
ImagePositionPosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
1354
|
+
ImagePositionPosition2["TOP"] = "TOP";
|
|
1355
|
+
ImagePositionPosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
1356
|
+
ImagePositionPosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
1357
|
+
ImagePositionPosition2["BOTTOM"] = "BOTTOM";
|
|
1358
|
+
ImagePositionPosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
1359
|
+
ImagePositionPosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
1360
|
+
return ImagePositionPosition2;
|
|
1361
|
+
})(ImagePositionPosition || {});
|
|
1362
|
+
var CardDataBackgroundType = /* @__PURE__ */ ((CardDataBackgroundType2) => {
|
|
1363
|
+
CardDataBackgroundType2["COLOR"] = "COLOR";
|
|
1364
|
+
CardDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
1365
|
+
return CardDataBackgroundType2;
|
|
1366
|
+
})(CardDataBackgroundType || {});
|
|
1124
1367
|
var ModerationStatusStatus = /* @__PURE__ */ ((ModerationStatusStatus2) => {
|
|
1125
1368
|
ModerationStatusStatus2["UNKNOWN"] = "UNKNOWN";
|
|
1126
1369
|
ModerationStatusStatus2["APPROVED"] = "APPROVED";
|
|
1127
1370
|
ModerationStatusStatus2["REJECTED"] = "REJECTED";
|
|
1128
1371
|
return ModerationStatusStatus2;
|
|
1129
1372
|
})(ModerationStatusStatus || {});
|
|
1373
|
+
var QueryPublicationsCountStatsRequestOrder = /* @__PURE__ */ ((QueryPublicationsCountStatsRequestOrder2) => {
|
|
1374
|
+
QueryPublicationsCountStatsRequestOrder2["UNKNOWN"] = "UNKNOWN";
|
|
1375
|
+
QueryPublicationsCountStatsRequestOrder2["OLDEST"] = "OLDEST";
|
|
1376
|
+
QueryPublicationsCountStatsRequestOrder2["NEWEST"] = "NEWEST";
|
|
1377
|
+
return QueryPublicationsCountStatsRequestOrder2;
|
|
1378
|
+
})(QueryPublicationsCountStatsRequestOrder || {});
|
|
1379
|
+
var Order = /* @__PURE__ */ ((Order2) => {
|
|
1380
|
+
Order2["UNKNOWN"] = "UNKNOWN";
|
|
1381
|
+
Order2["OLDEST"] = "OLDEST";
|
|
1382
|
+
Order2["NEWEST"] = "NEWEST";
|
|
1383
|
+
return Order2;
|
|
1384
|
+
})(Order || {});
|
|
1385
|
+
var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
1386
|
+
WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
|
|
1387
|
+
WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
1388
|
+
WebhookIdentityType2["MEMBER"] = "MEMBER";
|
|
1389
|
+
WebhookIdentityType2["WIX_USER"] = "WIX_USER";
|
|
1390
|
+
WebhookIdentityType2["APP"] = "APP";
|
|
1391
|
+
return WebhookIdentityType2;
|
|
1392
|
+
})(WebhookIdentityType || {});
|
|
1130
1393
|
var GetPostTemplatesSort = /* @__PURE__ */ ((GetPostTemplatesSort2) => {
|
|
1131
1394
|
GetPostTemplatesSort2["PUBLISHED_DATE_ASC"] = "PUBLISHED_DATE_ASC";
|
|
1132
1395
|
GetPostTemplatesSort2["PUBLISHED_DATE_DESC"] = "PUBLISHED_DATE_DESC";
|
|
@@ -1180,26 +1443,6 @@ var Status = /* @__PURE__ */ ((Status2) => {
|
|
|
1180
1443
|
Status2["IN_REVIEW"] = "IN_REVIEW";
|
|
1181
1444
|
return Status2;
|
|
1182
1445
|
})(Status || {});
|
|
1183
|
-
var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
1184
|
-
WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
|
|
1185
|
-
WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
1186
|
-
WebhookIdentityType2["MEMBER"] = "MEMBER";
|
|
1187
|
-
WebhookIdentityType2["WIX_USER"] = "WIX_USER";
|
|
1188
|
-
WebhookIdentityType2["APP"] = "APP";
|
|
1189
|
-
return WebhookIdentityType2;
|
|
1190
|
-
})(WebhookIdentityType || {});
|
|
1191
|
-
var QueryPublicationsCountStatsRequestOrder = /* @__PURE__ */ ((QueryPublicationsCountStatsRequestOrder2) => {
|
|
1192
|
-
QueryPublicationsCountStatsRequestOrder2["UNKNOWN"] = "UNKNOWN";
|
|
1193
|
-
QueryPublicationsCountStatsRequestOrder2["OLDEST"] = "OLDEST";
|
|
1194
|
-
QueryPublicationsCountStatsRequestOrder2["NEWEST"] = "NEWEST";
|
|
1195
|
-
return QueryPublicationsCountStatsRequestOrder2;
|
|
1196
|
-
})(QueryPublicationsCountStatsRequestOrder || {});
|
|
1197
|
-
var Order = /* @__PURE__ */ ((Order2) => {
|
|
1198
|
-
Order2["UNKNOWN"] = "UNKNOWN";
|
|
1199
|
-
Order2["OLDEST"] = "OLDEST";
|
|
1200
|
-
Order2["NEWEST"] = "NEWEST";
|
|
1201
|
-
return Order2;
|
|
1202
|
-
})(Order || {});
|
|
1203
1446
|
var Field = /* @__PURE__ */ ((Field2) => {
|
|
1204
1447
|
Field2["UNKNOWN"] = "UNKNOWN";
|
|
1205
1448
|
Field2["TOTAL_COMMENTS"] = "TOTAL_COMMENTS";
|
|
@@ -1367,9 +1610,11 @@ function getPostMetrics2() {
|
|
|
1367
1610
|
AlignmentOriginal,
|
|
1368
1611
|
AppTypeOriginal,
|
|
1369
1612
|
AspectRatioOriginal,
|
|
1613
|
+
BackdropTypeOriginal,
|
|
1370
1614
|
BackgroundTypeOriginal,
|
|
1371
1615
|
BannerOriginOriginal,
|
|
1372
1616
|
ButtonDataTypeOriginal,
|
|
1617
|
+
CardDataBackgroundTypeOriginal,
|
|
1373
1618
|
CropOriginal,
|
|
1374
1619
|
DecorationTypeOriginal,
|
|
1375
1620
|
DesignTargetOriginal,
|
|
@@ -1380,8 +1625,12 @@ function getPostMetrics2() {
|
|
|
1380
1625
|
GIFTypeOriginal,
|
|
1381
1626
|
GetPostTemplatesSortOriginal,
|
|
1382
1627
|
GetPostsSortOriginal,
|
|
1628
|
+
GradientTypeOriginal,
|
|
1383
1629
|
ImagePositionOriginal,
|
|
1630
|
+
ImagePositionPositionOriginal,
|
|
1631
|
+
ImageScalingScalingOriginal,
|
|
1384
1632
|
InitialExpandedItemsOriginal,
|
|
1633
|
+
LayoutDataBackgroundTypeOriginal,
|
|
1385
1634
|
LayoutOriginal,
|
|
1386
1635
|
LayoutTypeOriginal,
|
|
1387
1636
|
LineStyleOriginal,
|
|
@@ -1394,6 +1643,7 @@ function getPostMetrics2() {
|
|
|
1394
1643
|
OriginOriginal,
|
|
1395
1644
|
PlacementOriginal,
|
|
1396
1645
|
PluginContainerDataAlignmentOriginal,
|
|
1646
|
+
PollDesignBackgroundTypeOriginal,
|
|
1397
1647
|
PollLayoutDirectionOriginal,
|
|
1398
1648
|
PollLayoutTypeOriginal,
|
|
1399
1649
|
PositionOriginal,
|