@wix/auto_sdk_blog_posts 1.0.138 → 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.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +433 -43
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +540 -351
  5. package/build/cjs/index.typings.js +286 -40
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +541 -352
  8. package/build/cjs/meta.js +286 -40
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +426 -43
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +540 -351
  14. package/build/es/index.typings.mjs +279 -40
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +541 -352
  17. package/build/es/meta.mjs +279 -40
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +433 -43
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +540 -351
  23. package/build/internal/cjs/index.typings.js +286 -40
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +541 -352
  26. package/build/internal/cjs/meta.js +286 -40
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +426 -43
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +540 -351
  32. package/build/internal/es/index.typings.mjs +279 -40
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +541 -352
  35. package/build/internal/es/meta.mjs +279 -40
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -23,9 +23,11 @@ __export(index_typings_exports, {
23
23
  Alignment: () => Alignment,
24
24
  AppType: () => AppType,
25
25
  AspectRatio: () => AspectRatio,
26
+ BackdropType: () => BackdropType,
26
27
  BackgroundType: () => BackgroundType,
27
28
  BannerOrigin: () => BannerOrigin,
28
29
  ButtonDataType: () => ButtonDataType,
30
+ CardDataBackgroundType: () => CardDataBackgroundType,
29
31
  Crop: () => Crop,
30
32
  DecorationType: () => DecorationType,
31
33
  DesignTarget: () => DesignTarget,
@@ -36,9 +38,13 @@ __export(index_typings_exports, {
36
38
  GIFType: () => GIFType,
37
39
  GetPostTemplatesSort: () => GetPostTemplatesSort,
38
40
  GetPostsSort: () => GetPostsSort,
41
+ GradientType: () => GradientType,
39
42
  ImagePosition: () => ImagePosition,
43
+ ImagePositionPosition: () => ImagePositionPosition,
44
+ ImageScalingScaling: () => ImageScalingScaling,
40
45
  InitialExpandedItems: () => InitialExpandedItems,
41
46
  Layout: () => Layout,
47
+ LayoutDataBackgroundType: () => LayoutDataBackgroundType,
42
48
  LayoutType: () => LayoutType,
43
49
  LineStyle: () => LineStyle,
44
50
  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,
@@ -300,10 +307,6 @@ function resolveComWixpressNpmCommunitiesPlatformizedBlogBlogStatsServiceUrl(opt
300
307
  {
301
308
  srcPath: "/_api/communities-blog-node-api",
302
309
  destPath: ""
303
- },
304
- {
305
- srcPath: "/_api/communities-blog-node-api/v3/bulk/moderation",
306
- destPath: "/v3/bulk/moderation"
307
310
  }
308
311
  ],
309
312
  "social-blog._base_domain_": [
@@ -458,6 +461,24 @@ function getPost(payload) {
458
461
  { path: "post.media.wixMedia.videoV2.posters.focalPoint.x" },
459
462
  { path: "post.media.wixMedia.videoV2.posters.focalPoint.y" },
460
463
  { path: "post.metrics.averageRating" },
464
+ {
465
+ path: "post.richContent.nodes.buttonData.styles.background.gradient.centerX"
466
+ },
467
+ {
468
+ path: "post.richContent.nodes.buttonData.styles.background.gradient.centerY"
469
+ },
470
+ {
471
+ path: "post.richContent.nodes.buttonData.styles.background.gradient.stops.position"
472
+ },
473
+ {
474
+ path: "post.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
475
+ },
476
+ {
477
+ path: "post.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
478
+ },
479
+ {
480
+ path: "post.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
481
+ },
461
482
  {
462
483
  path: "post.richContent.nodes.galleryData.items.image.media.duration"
463
484
  },
@@ -489,7 +510,37 @@ function getPost(payload) {
489
510
  {
490
511
  path: "post.richContent.nodes.layoutData.backdropImage.media.duration"
491
512
  },
492
- { path: "post.richContent.nodes.shapeData.shape.duration" }
513
+ {
514
+ path: "post.richContent.nodes.layoutData.background.gradient.centerX"
515
+ },
516
+ {
517
+ path: "post.richContent.nodes.layoutData.background.gradient.centerY"
518
+ },
519
+ {
520
+ path: "post.richContent.nodes.layoutData.background.gradient.stops.position"
521
+ },
522
+ {
523
+ path: "post.richContent.nodes.layoutData.backdrop.gradient.centerX"
524
+ },
525
+ {
526
+ path: "post.richContent.nodes.layoutData.backdrop.gradient.centerY"
527
+ },
528
+ {
529
+ path: "post.richContent.nodes.layoutData.backdrop.gradient.stops.position"
530
+ },
531
+ { path: "post.richContent.nodes.shapeData.shape.duration" },
532
+ {
533
+ path: "post.richContent.nodes.cardData.background.gradient.centerX"
534
+ },
535
+ {
536
+ path: "post.richContent.nodes.cardData.background.gradient.centerY"
537
+ },
538
+ {
539
+ path: "post.richContent.nodes.cardData.background.gradient.stops.position"
540
+ },
541
+ {
542
+ path: "post.richContent.nodes.cardData.backgroundImage.media.duration"
543
+ }
493
544
  ]
494
545
  }
495
546
  ])
@@ -556,6 +607,24 @@ function getPostBySlug(payload) {
556
607
  { path: "post.media.wixMedia.videoV2.posters.focalPoint.x" },
557
608
  { path: "post.media.wixMedia.videoV2.posters.focalPoint.y" },
558
609
  { path: "post.metrics.averageRating" },
610
+ {
611
+ path: "post.richContent.nodes.buttonData.styles.background.gradient.centerX"
612
+ },
613
+ {
614
+ path: "post.richContent.nodes.buttonData.styles.background.gradient.centerY"
615
+ },
616
+ {
617
+ path: "post.richContent.nodes.buttonData.styles.background.gradient.stops.position"
618
+ },
619
+ {
620
+ path: "post.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
621
+ },
622
+ {
623
+ path: "post.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
624
+ },
625
+ {
626
+ path: "post.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
627
+ },
559
628
  {
560
629
  path: "post.richContent.nodes.galleryData.items.image.media.duration"
561
630
  },
@@ -587,7 +656,37 @@ function getPostBySlug(payload) {
587
656
  {
588
657
  path: "post.richContent.nodes.layoutData.backdropImage.media.duration"
589
658
  },
590
- { path: "post.richContent.nodes.shapeData.shape.duration" }
659
+ {
660
+ path: "post.richContent.nodes.layoutData.background.gradient.centerX"
661
+ },
662
+ {
663
+ path: "post.richContent.nodes.layoutData.background.gradient.centerY"
664
+ },
665
+ {
666
+ path: "post.richContent.nodes.layoutData.background.gradient.stops.position"
667
+ },
668
+ {
669
+ path: "post.richContent.nodes.layoutData.backdrop.gradient.centerX"
670
+ },
671
+ {
672
+ path: "post.richContent.nodes.layoutData.backdrop.gradient.centerY"
673
+ },
674
+ {
675
+ path: "post.richContent.nodes.layoutData.backdrop.gradient.stops.position"
676
+ },
677
+ { path: "post.richContent.nodes.shapeData.shape.duration" },
678
+ {
679
+ path: "post.richContent.nodes.cardData.background.gradient.centerX"
680
+ },
681
+ {
682
+ path: "post.richContent.nodes.cardData.background.gradient.centerY"
683
+ },
684
+ {
685
+ path: "post.richContent.nodes.cardData.background.gradient.stops.position"
686
+ },
687
+ {
688
+ path: "post.richContent.nodes.cardData.backgroundImage.media.duration"
689
+ }
591
690
  ]
592
691
  }
593
692
  ])
@@ -656,6 +755,24 @@ function listPosts(payload) {
656
755
  { path: "posts.media.wixMedia.videoV2.posters.focalPoint.x" },
657
756
  { path: "posts.media.wixMedia.videoV2.posters.focalPoint.y" },
658
757
  { path: "posts.metrics.averageRating" },
758
+ {
759
+ path: "posts.richContent.nodes.buttonData.styles.background.gradient.centerX"
760
+ },
761
+ {
762
+ path: "posts.richContent.nodes.buttonData.styles.background.gradient.centerY"
763
+ },
764
+ {
765
+ path: "posts.richContent.nodes.buttonData.styles.background.gradient.stops.position"
766
+ },
767
+ {
768
+ path: "posts.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
769
+ },
770
+ {
771
+ path: "posts.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
772
+ },
773
+ {
774
+ path: "posts.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
775
+ },
659
776
  {
660
777
  path: "posts.richContent.nodes.galleryData.items.image.media.duration"
661
778
  },
@@ -689,7 +806,37 @@ function listPosts(payload) {
689
806
  {
690
807
  path: "posts.richContent.nodes.layoutData.backdropImage.media.duration"
691
808
  },
692
- { path: "posts.richContent.nodes.shapeData.shape.duration" }
809
+ {
810
+ path: "posts.richContent.nodes.layoutData.background.gradient.centerX"
811
+ },
812
+ {
813
+ path: "posts.richContent.nodes.layoutData.background.gradient.centerY"
814
+ },
815
+ {
816
+ path: "posts.richContent.nodes.layoutData.background.gradient.stops.position"
817
+ },
818
+ {
819
+ path: "posts.richContent.nodes.layoutData.backdrop.gradient.centerX"
820
+ },
821
+ {
822
+ path: "posts.richContent.nodes.layoutData.backdrop.gradient.centerY"
823
+ },
824
+ {
825
+ path: "posts.richContent.nodes.layoutData.backdrop.gradient.stops.position"
826
+ },
827
+ { path: "posts.richContent.nodes.shapeData.shape.duration" },
828
+ {
829
+ path: "posts.richContent.nodes.cardData.background.gradient.centerX"
830
+ },
831
+ {
832
+ path: "posts.richContent.nodes.cardData.background.gradient.centerY"
833
+ },
834
+ {
835
+ path: "posts.richContent.nodes.cardData.background.gradient.stops.position"
836
+ },
837
+ {
838
+ path: "posts.richContent.nodes.cardData.backgroundImage.media.duration"
839
+ }
693
840
  ]
694
841
  }
695
842
  ])
@@ -758,6 +905,24 @@ function queryPosts(payload) {
758
905
  { path: "posts.media.wixMedia.videoV2.posters.focalPoint.x" },
759
906
  { path: "posts.media.wixMedia.videoV2.posters.focalPoint.y" },
760
907
  { path: "posts.metrics.averageRating" },
908
+ {
909
+ path: "posts.richContent.nodes.buttonData.styles.background.gradient.centerX"
910
+ },
911
+ {
912
+ path: "posts.richContent.nodes.buttonData.styles.background.gradient.centerY"
913
+ },
914
+ {
915
+ path: "posts.richContent.nodes.buttonData.styles.background.gradient.stops.position"
916
+ },
917
+ {
918
+ path: "posts.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
919
+ },
920
+ {
921
+ path: "posts.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
922
+ },
923
+ {
924
+ path: "posts.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
925
+ },
761
926
  {
762
927
  path: "posts.richContent.nodes.galleryData.items.image.media.duration"
763
928
  },
@@ -791,7 +956,37 @@ function queryPosts(payload) {
791
956
  {
792
957
  path: "posts.richContent.nodes.layoutData.backdropImage.media.duration"
793
958
  },
794
- { path: "posts.richContent.nodes.shapeData.shape.duration" }
959
+ {
960
+ path: "posts.richContent.nodes.layoutData.background.gradient.centerX"
961
+ },
962
+ {
963
+ path: "posts.richContent.nodes.layoutData.background.gradient.centerY"
964
+ },
965
+ {
966
+ path: "posts.richContent.nodes.layoutData.background.gradient.stops.position"
967
+ },
968
+ {
969
+ path: "posts.richContent.nodes.layoutData.backdrop.gradient.centerX"
970
+ },
971
+ {
972
+ path: "posts.richContent.nodes.layoutData.backdrop.gradient.centerY"
973
+ },
974
+ {
975
+ path: "posts.richContent.nodes.layoutData.backdrop.gradient.stops.position"
976
+ },
977
+ { path: "posts.richContent.nodes.shapeData.shape.duration" },
978
+ {
979
+ path: "posts.richContent.nodes.cardData.background.gradient.centerX"
980
+ },
981
+ {
982
+ path: "posts.richContent.nodes.cardData.background.gradient.centerY"
983
+ },
984
+ {
985
+ path: "posts.richContent.nodes.cardData.background.gradient.stops.position"
986
+ },
987
+ {
988
+ path: "posts.richContent.nodes.cardData.backgroundImage.media.duration"
989
+ }
795
990
  ]
796
991
  }
797
992
  ])
@@ -869,8 +1064,19 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
869
1064
  NodeType2["LAYOUT"] = "LAYOUT";
870
1065
  NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
871
1066
  NodeType2["SHAPE"] = "SHAPE";
1067
+ NodeType2["CARD"] = "CARD";
872
1068
  return NodeType2;
873
1069
  })(NodeType || {});
1070
+ var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
1071
+ BackgroundType2["COLOR"] = "COLOR";
1072
+ BackgroundType2["GRADIENT"] = "GRADIENT";
1073
+ return BackgroundType2;
1074
+ })(BackgroundType || {});
1075
+ var GradientType = /* @__PURE__ */ ((GradientType2) => {
1076
+ GradientType2["LINEAR"] = "LINEAR";
1077
+ GradientType2["RADIAL"] = "RADIAL";
1078
+ return GradientType2;
1079
+ })(GradientType || {});
874
1080
  var WidthType = /* @__PURE__ */ ((WidthType2) => {
875
1081
  WidthType2["CONTENT"] = "CONTENT";
876
1082
  WidthType2["SMALL"] = "SMALL";
@@ -1006,12 +1212,12 @@ var PollLayoutDirection = /* @__PURE__ */ ((PollLayoutDirection2) => {
1006
1212
  PollLayoutDirection2["RTL"] = "RTL";
1007
1213
  return PollLayoutDirection2;
1008
1214
  })(PollLayoutDirection || {});
1009
- var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
1010
- BackgroundType2["COLOR"] = "COLOR";
1011
- BackgroundType2["IMAGE"] = "IMAGE";
1012
- BackgroundType2["GRADIENT"] = "GRADIENT";
1013
- return BackgroundType2;
1014
- })(BackgroundType || {});
1215
+ var PollDesignBackgroundType = /* @__PURE__ */ ((PollDesignBackgroundType2) => {
1216
+ PollDesignBackgroundType2["COLOR"] = "COLOR";
1217
+ PollDesignBackgroundType2["IMAGE"] = "IMAGE";
1218
+ PollDesignBackgroundType2["GRADIENT"] = "GRADIENT";
1219
+ return PollDesignBackgroundType2;
1220
+ })(PollDesignBackgroundType || {});
1015
1221
  var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
1016
1222
  DecorationType2["BOLD"] = "BOLD";
1017
1223
  DecorationType2["ITALIC"] = "ITALIC";
@@ -1098,12 +1304,12 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
1098
1304
  NullValue2["NULL_VALUE"] = "NULL_VALUE";
1099
1305
  return NullValue2;
1100
1306
  })(NullValue || {});
1101
- var Scaling = /* @__PURE__ */ ((Scaling2) => {
1102
- Scaling2["AUTO"] = "AUTO";
1103
- Scaling2["CONTAIN"] = "CONTAIN";
1104
- Scaling2["COVER"] = "COVER";
1105
- return Scaling2;
1106
- })(Scaling || {});
1307
+ var ImageScalingScaling = /* @__PURE__ */ ((ImageScalingScaling2) => {
1308
+ ImageScalingScaling2["AUTO"] = "AUTO";
1309
+ ImageScalingScaling2["CONTAIN"] = "CONTAIN";
1310
+ ImageScalingScaling2["COVER"] = "COVER";
1311
+ return ImageScalingScaling2;
1312
+ })(ImageScalingScaling || {});
1107
1313
  var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
1108
1314
  ImagePosition2["CENTER"] = "CENTER";
1109
1315
  ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
@@ -1121,6 +1327,16 @@ var BannerOrigin = /* @__PURE__ */ ((BannerOrigin2) => {
1121
1327
  BannerOrigin2["LAYOUT"] = "LAYOUT";
1122
1328
  return BannerOrigin2;
1123
1329
  })(BannerOrigin || {});
1330
+ var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
1331
+ LayoutDataBackgroundType2["COLOR"] = "COLOR";
1332
+ LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
1333
+ return LayoutDataBackgroundType2;
1334
+ })(LayoutDataBackgroundType || {});
1335
+ var BackdropType = /* @__PURE__ */ ((BackdropType2) => {
1336
+ BackdropType2["COLOR"] = "COLOR";
1337
+ BackdropType2["GRADIENT"] = "GRADIENT";
1338
+ return BackdropType2;
1339
+ })(BackdropType || {});
1124
1340
  var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
1125
1341
  VerticalAlignmentAlignment2["TOP"] = "TOP";
1126
1342
  VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
@@ -1137,12 +1353,55 @@ var DesignTarget = /* @__PURE__ */ ((DesignTarget2) => {
1137
1353
  DesignTarget2["CELL"] = "CELL";
1138
1354
  return DesignTarget2;
1139
1355
  })(DesignTarget || {});
1356
+ var Scaling = /* @__PURE__ */ ((Scaling2) => {
1357
+ Scaling2["AUTO"] = "AUTO";
1358
+ Scaling2["CONTAIN"] = "CONTAIN";
1359
+ Scaling2["COVER"] = "COVER";
1360
+ return Scaling2;
1361
+ })(Scaling || {});
1362
+ var ImagePositionPosition = /* @__PURE__ */ ((ImagePositionPosition2) => {
1363
+ ImagePositionPosition2["CENTER"] = "CENTER";
1364
+ ImagePositionPosition2["CENTER_LEFT"] = "CENTER_LEFT";
1365
+ ImagePositionPosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
1366
+ ImagePositionPosition2["TOP"] = "TOP";
1367
+ ImagePositionPosition2["TOP_LEFT"] = "TOP_LEFT";
1368
+ ImagePositionPosition2["TOP_RIGHT"] = "TOP_RIGHT";
1369
+ ImagePositionPosition2["BOTTOM"] = "BOTTOM";
1370
+ ImagePositionPosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
1371
+ ImagePositionPosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
1372
+ return ImagePositionPosition2;
1373
+ })(ImagePositionPosition || {});
1374
+ var CardDataBackgroundType = /* @__PURE__ */ ((CardDataBackgroundType2) => {
1375
+ CardDataBackgroundType2["COLOR"] = "COLOR";
1376
+ CardDataBackgroundType2["GRADIENT"] = "GRADIENT";
1377
+ return CardDataBackgroundType2;
1378
+ })(CardDataBackgroundType || {});
1140
1379
  var ModerationStatusStatus = /* @__PURE__ */ ((ModerationStatusStatus2) => {
1141
1380
  ModerationStatusStatus2["UNKNOWN"] = "UNKNOWN";
1142
1381
  ModerationStatusStatus2["APPROVED"] = "APPROVED";
1143
1382
  ModerationStatusStatus2["REJECTED"] = "REJECTED";
1144
1383
  return ModerationStatusStatus2;
1145
1384
  })(ModerationStatusStatus || {});
1385
+ var QueryPublicationsCountStatsRequestOrder = /* @__PURE__ */ ((QueryPublicationsCountStatsRequestOrder2) => {
1386
+ QueryPublicationsCountStatsRequestOrder2["UNKNOWN"] = "UNKNOWN";
1387
+ QueryPublicationsCountStatsRequestOrder2["OLDEST"] = "OLDEST";
1388
+ QueryPublicationsCountStatsRequestOrder2["NEWEST"] = "NEWEST";
1389
+ return QueryPublicationsCountStatsRequestOrder2;
1390
+ })(QueryPublicationsCountStatsRequestOrder || {});
1391
+ var Order = /* @__PURE__ */ ((Order2) => {
1392
+ Order2["UNKNOWN"] = "UNKNOWN";
1393
+ Order2["OLDEST"] = "OLDEST";
1394
+ Order2["NEWEST"] = "NEWEST";
1395
+ return Order2;
1396
+ })(Order || {});
1397
+ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
1398
+ WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
1399
+ WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
1400
+ WebhookIdentityType2["MEMBER"] = "MEMBER";
1401
+ WebhookIdentityType2["WIX_USER"] = "WIX_USER";
1402
+ WebhookIdentityType2["APP"] = "APP";
1403
+ return WebhookIdentityType2;
1404
+ })(WebhookIdentityType || {});
1146
1405
  var GetPostTemplatesSort = /* @__PURE__ */ ((GetPostTemplatesSort2) => {
1147
1406
  GetPostTemplatesSort2["PUBLISHED_DATE_ASC"] = "PUBLISHED_DATE_ASC";
1148
1407
  GetPostTemplatesSort2["PUBLISHED_DATE_DESC"] = "PUBLISHED_DATE_DESC";
@@ -1196,26 +1455,6 @@ var Status = /* @__PURE__ */ ((Status2) => {
1196
1455
  Status2["IN_REVIEW"] = "IN_REVIEW";
1197
1456
  return Status2;
1198
1457
  })(Status || {});
1199
- var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
1200
- WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
1201
- WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
1202
- WebhookIdentityType2["MEMBER"] = "MEMBER";
1203
- WebhookIdentityType2["WIX_USER"] = "WIX_USER";
1204
- WebhookIdentityType2["APP"] = "APP";
1205
- return WebhookIdentityType2;
1206
- })(WebhookIdentityType || {});
1207
- var QueryPublicationsCountStatsRequestOrder = /* @__PURE__ */ ((QueryPublicationsCountStatsRequestOrder2) => {
1208
- QueryPublicationsCountStatsRequestOrder2["UNKNOWN"] = "UNKNOWN";
1209
- QueryPublicationsCountStatsRequestOrder2["OLDEST"] = "OLDEST";
1210
- QueryPublicationsCountStatsRequestOrder2["NEWEST"] = "NEWEST";
1211
- return QueryPublicationsCountStatsRequestOrder2;
1212
- })(QueryPublicationsCountStatsRequestOrder || {});
1213
- var Order = /* @__PURE__ */ ((Order2) => {
1214
- Order2["UNKNOWN"] = "UNKNOWN";
1215
- Order2["OLDEST"] = "OLDEST";
1216
- Order2["NEWEST"] = "NEWEST";
1217
- return Order2;
1218
- })(Order || {});
1219
1458
  var Field = /* @__PURE__ */ ((Field2) => {
1220
1459
  Field2["UNKNOWN"] = "UNKNOWN";
1221
1460
  Field2["TOTAL_COMMENTS"] = "TOTAL_COMMENTS";
@@ -1617,9 +1856,11 @@ async function getPostMetrics2(postId) {
1617
1856
  Alignment,
1618
1857
  AppType,
1619
1858
  AspectRatio,
1859
+ BackdropType,
1620
1860
  BackgroundType,
1621
1861
  BannerOrigin,
1622
1862
  ButtonDataType,
1863
+ CardDataBackgroundType,
1623
1864
  Crop,
1624
1865
  DecorationType,
1625
1866
  DesignTarget,
@@ -1630,9 +1871,13 @@ async function getPostMetrics2(postId) {
1630
1871
  GIFType,
1631
1872
  GetPostTemplatesSort,
1632
1873
  GetPostsSort,
1874
+ GradientType,
1633
1875
  ImagePosition,
1876
+ ImagePositionPosition,
1877
+ ImageScalingScaling,
1634
1878
  InitialExpandedItems,
1635
1879
  Layout,
1880
+ LayoutDataBackgroundType,
1636
1881
  LayoutType,
1637
1882
  LineStyle,
1638
1883
  MapType,
@@ -1644,6 +1889,7 @@ async function getPostMetrics2(postId) {
1644
1889
  Origin,
1645
1890
  Placement,
1646
1891
  PluginContainerDataAlignment,
1892
+ PollDesignBackgroundType,
1647
1893
  PollLayoutDirection,
1648
1894
  PollLayoutType,
1649
1895
  Position,