@wix/auto_sdk_blog_posts 1.0.139 → 1.0.141

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 +11 -15
  2. package/build/cjs/index.js +459 -35
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +288 -56
  5. package/build/cjs/index.typings.js +301 -22
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +270 -26
  8. package/build/cjs/meta.js +295 -16
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +11 -15
  11. package/build/es/index.mjs +450 -35
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +288 -56
  14. package/build/es/index.typings.mjs +292 -22
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +270 -26
  17. package/build/es/meta.mjs +286 -16
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +11 -15
  20. package/build/internal/cjs/index.js +459 -35
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +288 -56
  23. package/build/internal/cjs/index.typings.js +301 -22
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +270 -26
  26. package/build/internal/cjs/meta.js +295 -16
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +11 -15
  29. package/build/internal/es/index.mjs +450 -35
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +288 -56
  32. package/build/internal/es/index.typings.mjs +292 -22
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +270 -26
  35. package/build/internal/es/meta.mjs +286 -16
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +4 -4
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,11 +38,17 @@ __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,
45
+ IndentationOriginal: () => Indentation,
40
46
  InitialExpandedItemsOriginal: () => InitialExpandedItems,
47
+ LayoutDataBackgroundTypeOriginal: () => LayoutDataBackgroundType,
41
48
  LayoutOriginal: () => Layout,
42
49
  LayoutTypeOriginal: () => LayoutType,
43
50
  LineStyleOriginal: () => LineStyle,
51
+ ListStyleOriginal: () => ListStyle,
44
52
  MapTypeOriginal: () => MapType,
45
53
  ModerationStatusStatusOriginal: () => ModerationStatusStatus,
46
54
  NodeTypeOriginal: () => NodeType,
@@ -50,6 +58,7 @@ __export(meta_exports, {
50
58
  OriginOriginal: () => Origin,
51
59
  PlacementOriginal: () => Placement,
52
60
  PluginContainerDataAlignmentOriginal: () => PluginContainerDataAlignment,
61
+ PollDesignBackgroundTypeOriginal: () => PollDesignBackgroundType,
53
62
  PollLayoutDirectionOriginal: () => PollLayoutDirection,
54
63
  PollLayoutTypeOriginal: () => PollLayoutType,
55
64
  PositionOriginal: () => Position,
@@ -447,6 +456,24 @@ function getPost(payload) {
447
456
  { path: "post.media.wixMedia.videoV2.posters.focalPoint.x" },
448
457
  { path: "post.media.wixMedia.videoV2.posters.focalPoint.y" },
449
458
  { path: "post.metrics.averageRating" },
459
+ {
460
+ path: "post.richContent.nodes.buttonData.styles.background.gradient.centerX"
461
+ },
462
+ {
463
+ path: "post.richContent.nodes.buttonData.styles.background.gradient.centerY"
464
+ },
465
+ {
466
+ path: "post.richContent.nodes.buttonData.styles.background.gradient.stops.position"
467
+ },
468
+ {
469
+ path: "post.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
470
+ },
471
+ {
472
+ path: "post.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
473
+ },
474
+ {
475
+ path: "post.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
476
+ },
450
477
  {
451
478
  path: "post.richContent.nodes.galleryData.items.image.media.duration"
452
479
  },
@@ -478,7 +505,39 @@ function getPost(payload) {
478
505
  {
479
506
  path: "post.richContent.nodes.layoutData.backdropImage.media.duration"
480
507
  },
481
- { path: "post.richContent.nodes.shapeData.shape.duration" }
508
+ {
509
+ path: "post.richContent.nodes.layoutData.background.gradient.centerX"
510
+ },
511
+ {
512
+ path: "post.richContent.nodes.layoutData.background.gradient.centerY"
513
+ },
514
+ {
515
+ path: "post.richContent.nodes.layoutData.background.gradient.stops.position"
516
+ },
517
+ {
518
+ path: "post.richContent.nodes.layoutData.backdrop.gradient.centerX"
519
+ },
520
+ {
521
+ path: "post.richContent.nodes.layoutData.backdrop.gradient.centerY"
522
+ },
523
+ {
524
+ path: "post.richContent.nodes.layoutData.backdrop.gradient.stops.position"
525
+ },
526
+ { path: "post.richContent.nodes.shapeData.shape.duration" },
527
+ {
528
+ path: "post.richContent.nodes.cardData.background.gradient.centerX"
529
+ },
530
+ {
531
+ path: "post.richContent.nodes.cardData.background.gradient.centerY"
532
+ },
533
+ {
534
+ path: "post.richContent.nodes.cardData.background.gradient.stops.position"
535
+ },
536
+ {
537
+ path: "post.richContent.nodes.cardData.backgroundImage.media.duration"
538
+ },
539
+ { path: "post.richContent.nodes.tocData.fontSize" },
540
+ { path: "post.richContent.nodes.tocData.itemSpacing" }
482
541
  ]
483
542
  }
484
543
  ])
@@ -545,6 +604,24 @@ function getPostBySlug(payload) {
545
604
  { path: "post.media.wixMedia.videoV2.posters.focalPoint.x" },
546
605
  { path: "post.media.wixMedia.videoV2.posters.focalPoint.y" },
547
606
  { path: "post.metrics.averageRating" },
607
+ {
608
+ path: "post.richContent.nodes.buttonData.styles.background.gradient.centerX"
609
+ },
610
+ {
611
+ path: "post.richContent.nodes.buttonData.styles.background.gradient.centerY"
612
+ },
613
+ {
614
+ path: "post.richContent.nodes.buttonData.styles.background.gradient.stops.position"
615
+ },
616
+ {
617
+ path: "post.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
618
+ },
619
+ {
620
+ path: "post.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
621
+ },
622
+ {
623
+ path: "post.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
624
+ },
548
625
  {
549
626
  path: "post.richContent.nodes.galleryData.items.image.media.duration"
550
627
  },
@@ -576,7 +653,39 @@ function getPostBySlug(payload) {
576
653
  {
577
654
  path: "post.richContent.nodes.layoutData.backdropImage.media.duration"
578
655
  },
579
- { path: "post.richContent.nodes.shapeData.shape.duration" }
656
+ {
657
+ path: "post.richContent.nodes.layoutData.background.gradient.centerX"
658
+ },
659
+ {
660
+ path: "post.richContent.nodes.layoutData.background.gradient.centerY"
661
+ },
662
+ {
663
+ path: "post.richContent.nodes.layoutData.background.gradient.stops.position"
664
+ },
665
+ {
666
+ path: "post.richContent.nodes.layoutData.backdrop.gradient.centerX"
667
+ },
668
+ {
669
+ path: "post.richContent.nodes.layoutData.backdrop.gradient.centerY"
670
+ },
671
+ {
672
+ path: "post.richContent.nodes.layoutData.backdrop.gradient.stops.position"
673
+ },
674
+ { path: "post.richContent.nodes.shapeData.shape.duration" },
675
+ {
676
+ path: "post.richContent.nodes.cardData.background.gradient.centerX"
677
+ },
678
+ {
679
+ path: "post.richContent.nodes.cardData.background.gradient.centerY"
680
+ },
681
+ {
682
+ path: "post.richContent.nodes.cardData.background.gradient.stops.position"
683
+ },
684
+ {
685
+ path: "post.richContent.nodes.cardData.backgroundImage.media.duration"
686
+ },
687
+ { path: "post.richContent.nodes.tocData.fontSize" },
688
+ { path: "post.richContent.nodes.tocData.itemSpacing" }
580
689
  ]
581
690
  }
582
691
  ])
@@ -645,6 +754,24 @@ function listPosts(payload) {
645
754
  { path: "posts.media.wixMedia.videoV2.posters.focalPoint.x" },
646
755
  { path: "posts.media.wixMedia.videoV2.posters.focalPoint.y" },
647
756
  { path: "posts.metrics.averageRating" },
757
+ {
758
+ path: "posts.richContent.nodes.buttonData.styles.background.gradient.centerX"
759
+ },
760
+ {
761
+ path: "posts.richContent.nodes.buttonData.styles.background.gradient.centerY"
762
+ },
763
+ {
764
+ path: "posts.richContent.nodes.buttonData.styles.background.gradient.stops.position"
765
+ },
766
+ {
767
+ path: "posts.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
768
+ },
769
+ {
770
+ path: "posts.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
771
+ },
772
+ {
773
+ path: "posts.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
774
+ },
648
775
  {
649
776
  path: "posts.richContent.nodes.galleryData.items.image.media.duration"
650
777
  },
@@ -678,7 +805,39 @@ function listPosts(payload) {
678
805
  {
679
806
  path: "posts.richContent.nodes.layoutData.backdropImage.media.duration"
680
807
  },
681
- { path: "posts.richContent.nodes.shapeData.shape.duration" }
808
+ {
809
+ path: "posts.richContent.nodes.layoutData.background.gradient.centerX"
810
+ },
811
+ {
812
+ path: "posts.richContent.nodes.layoutData.background.gradient.centerY"
813
+ },
814
+ {
815
+ path: "posts.richContent.nodes.layoutData.background.gradient.stops.position"
816
+ },
817
+ {
818
+ path: "posts.richContent.nodes.layoutData.backdrop.gradient.centerX"
819
+ },
820
+ {
821
+ path: "posts.richContent.nodes.layoutData.backdrop.gradient.centerY"
822
+ },
823
+ {
824
+ path: "posts.richContent.nodes.layoutData.backdrop.gradient.stops.position"
825
+ },
826
+ { path: "posts.richContent.nodes.shapeData.shape.duration" },
827
+ {
828
+ path: "posts.richContent.nodes.cardData.background.gradient.centerX"
829
+ },
830
+ {
831
+ path: "posts.richContent.nodes.cardData.background.gradient.centerY"
832
+ },
833
+ {
834
+ path: "posts.richContent.nodes.cardData.background.gradient.stops.position"
835
+ },
836
+ {
837
+ path: "posts.richContent.nodes.cardData.backgroundImage.media.duration"
838
+ },
839
+ { path: "posts.richContent.nodes.tocData.fontSize" },
840
+ { path: "posts.richContent.nodes.tocData.itemSpacing" }
682
841
  ]
683
842
  }
684
843
  ])
@@ -747,6 +906,24 @@ function queryPosts(payload) {
747
906
  { path: "posts.media.wixMedia.videoV2.posters.focalPoint.x" },
748
907
  { path: "posts.media.wixMedia.videoV2.posters.focalPoint.y" },
749
908
  { path: "posts.metrics.averageRating" },
909
+ {
910
+ path: "posts.richContent.nodes.buttonData.styles.background.gradient.centerX"
911
+ },
912
+ {
913
+ path: "posts.richContent.nodes.buttonData.styles.background.gradient.centerY"
914
+ },
915
+ {
916
+ path: "posts.richContent.nodes.buttonData.styles.background.gradient.stops.position"
917
+ },
918
+ {
919
+ path: "posts.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
920
+ },
921
+ {
922
+ path: "posts.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
923
+ },
924
+ {
925
+ path: "posts.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
926
+ },
750
927
  {
751
928
  path: "posts.richContent.nodes.galleryData.items.image.media.duration"
752
929
  },
@@ -780,7 +957,39 @@ function queryPosts(payload) {
780
957
  {
781
958
  path: "posts.richContent.nodes.layoutData.backdropImage.media.duration"
782
959
  },
783
- { path: "posts.richContent.nodes.shapeData.shape.duration" }
960
+ {
961
+ path: "posts.richContent.nodes.layoutData.background.gradient.centerX"
962
+ },
963
+ {
964
+ path: "posts.richContent.nodes.layoutData.background.gradient.centerY"
965
+ },
966
+ {
967
+ path: "posts.richContent.nodes.layoutData.background.gradient.stops.position"
968
+ },
969
+ {
970
+ path: "posts.richContent.nodes.layoutData.backdrop.gradient.centerX"
971
+ },
972
+ {
973
+ path: "posts.richContent.nodes.layoutData.backdrop.gradient.centerY"
974
+ },
975
+ {
976
+ path: "posts.richContent.nodes.layoutData.backdrop.gradient.stops.position"
977
+ },
978
+ { path: "posts.richContent.nodes.shapeData.shape.duration" },
979
+ {
980
+ path: "posts.richContent.nodes.cardData.background.gradient.centerX"
981
+ },
982
+ {
983
+ path: "posts.richContent.nodes.cardData.background.gradient.centerY"
984
+ },
985
+ {
986
+ path: "posts.richContent.nodes.cardData.background.gradient.stops.position"
987
+ },
988
+ {
989
+ path: "posts.richContent.nodes.cardData.backgroundImage.media.duration"
990
+ },
991
+ { path: "posts.richContent.nodes.tocData.fontSize" },
992
+ { path: "posts.richContent.nodes.tocData.itemSpacing" }
784
993
  ]
785
994
  }
786
995
  ])
@@ -853,8 +1062,20 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
853
1062
  NodeType2["LAYOUT"] = "LAYOUT";
854
1063
  NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
855
1064
  NodeType2["SHAPE"] = "SHAPE";
1065
+ NodeType2["CARD"] = "CARD";
1066
+ NodeType2["TOC"] = "TOC";
856
1067
  return NodeType2;
857
1068
  })(NodeType || {});
1069
+ var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
1070
+ BackgroundType2["COLOR"] = "COLOR";
1071
+ BackgroundType2["GRADIENT"] = "GRADIENT";
1072
+ return BackgroundType2;
1073
+ })(BackgroundType || {});
1074
+ var GradientType = /* @__PURE__ */ ((GradientType2) => {
1075
+ GradientType2["LINEAR"] = "LINEAR";
1076
+ GradientType2["RADIAL"] = "RADIAL";
1077
+ return GradientType2;
1078
+ })(GradientType || {});
858
1079
  var WidthType = /* @__PURE__ */ ((WidthType2) => {
859
1080
  WidthType2["CONTENT"] = "CONTENT";
860
1081
  WidthType2["SMALL"] = "SMALL";
@@ -953,6 +1174,7 @@ var Source = /* @__PURE__ */ ((Source2) => {
953
1174
  Source2["HTML"] = "HTML";
954
1175
  Source2["ADSENSE"] = "ADSENSE";
955
1176
  Source2["AI"] = "AI";
1177
+ Source2["AI_WIDGET"] = "AI_WIDGET";
956
1178
  return Source2;
957
1179
  })(Source || {});
958
1180
  var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
@@ -990,12 +1212,12 @@ var PollLayoutDirection = /* @__PURE__ */ ((PollLayoutDirection2) => {
990
1212
  PollLayoutDirection2["RTL"] = "RTL";
991
1213
  return PollLayoutDirection2;
992
1214
  })(PollLayoutDirection || {});
993
- var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
994
- BackgroundType2["COLOR"] = "COLOR";
995
- BackgroundType2["IMAGE"] = "IMAGE";
996
- BackgroundType2["GRADIENT"] = "GRADIENT";
997
- return BackgroundType2;
998
- })(BackgroundType || {});
1215
+ var PollDesignBackgroundType = /* @__PURE__ */ ((PollDesignBackgroundType2) => {
1216
+ PollDesignBackgroundType2["COLOR"] = "COLOR";
1217
+ PollDesignBackgroundType2["IMAGE"] = "IMAGE";
1218
+ PollDesignBackgroundType2["GRADIENT"] = "GRADIENT";
1219
+ return PollDesignBackgroundType2;
1220
+ })(PollDesignBackgroundType || {});
999
1221
  var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
1000
1222
  DecorationType2["BOLD"] = "BOLD";
1001
1223
  DecorationType2["ITALIC"] = "ITALIC";
@@ -1082,12 +1304,12 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
1082
1304
  NullValue2["NULL_VALUE"] = "NULL_VALUE";
1083
1305
  return NullValue2;
1084
1306
  })(NullValue || {});
1085
- var Scaling = /* @__PURE__ */ ((Scaling2) => {
1086
- Scaling2["AUTO"] = "AUTO";
1087
- Scaling2["CONTAIN"] = "CONTAIN";
1088
- Scaling2["COVER"] = "COVER";
1089
- return Scaling2;
1090
- })(Scaling || {});
1307
+ var ImageScalingScaling = /* @__PURE__ */ ((ImageScalingScaling2) => {
1308
+ ImageScalingScaling2["AUTO"] = "AUTO";
1309
+ ImageScalingScaling2["CONTAIN"] = "CONTAIN";
1310
+ ImageScalingScaling2["COVER"] = "COVER";
1311
+ return ImageScalingScaling2;
1312
+ })(ImageScalingScaling || {});
1091
1313
  var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
1092
1314
  ImagePosition2["CENTER"] = "CENTER";
1093
1315
  ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
@@ -1105,6 +1327,16 @@ var BannerOrigin = /* @__PURE__ */ ((BannerOrigin2) => {
1105
1327
  BannerOrigin2["LAYOUT"] = "LAYOUT";
1106
1328
  return BannerOrigin2;
1107
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 || {});
1108
1340
  var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
1109
1341
  VerticalAlignmentAlignment2["TOP"] = "TOP";
1110
1342
  VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
@@ -1121,6 +1353,44 @@ var DesignTarget = /* @__PURE__ */ ((DesignTarget2) => {
1121
1353
  DesignTarget2["CELL"] = "CELL";
1122
1354
  return DesignTarget2;
1123
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 || {});
1379
+ var ListStyle = /* @__PURE__ */ ((ListStyle2) => {
1380
+ ListStyle2["PLAIN"] = "PLAIN";
1381
+ ListStyle2["NUMBERED"] = "NUMBERED";
1382
+ ListStyle2["LETTERS"] = "LETTERS";
1383
+ ListStyle2["ROMAN"] = "ROMAN";
1384
+ ListStyle2["BULLETED"] = "BULLETED";
1385
+ ListStyle2["ALPHABETICAL_INDEX"] = "ALPHABETICAL_INDEX";
1386
+ ListStyle2["ALPHABETICAL_INDEX_COMPACT"] = "ALPHABETICAL_INDEX_COMPACT";
1387
+ return ListStyle2;
1388
+ })(ListStyle || {});
1389
+ var Indentation = /* @__PURE__ */ ((Indentation2) => {
1390
+ Indentation2["NESTED"] = "NESTED";
1391
+ Indentation2["FLAT"] = "FLAT";
1392
+ return Indentation2;
1393
+ })(Indentation || {});
1124
1394
  var ModerationStatusStatus = /* @__PURE__ */ ((ModerationStatusStatus2) => {
1125
1395
  ModerationStatusStatus2["UNKNOWN"] = "UNKNOWN";
1126
1396
  ModerationStatusStatus2["APPROVED"] = "APPROVED";
@@ -1367,9 +1637,11 @@ function getPostMetrics2() {
1367
1637
  AlignmentOriginal,
1368
1638
  AppTypeOriginal,
1369
1639
  AspectRatioOriginal,
1640
+ BackdropTypeOriginal,
1370
1641
  BackgroundTypeOriginal,
1371
1642
  BannerOriginOriginal,
1372
1643
  ButtonDataTypeOriginal,
1644
+ CardDataBackgroundTypeOriginal,
1373
1645
  CropOriginal,
1374
1646
  DecorationTypeOriginal,
1375
1647
  DesignTargetOriginal,
@@ -1380,11 +1652,17 @@ function getPostMetrics2() {
1380
1652
  GIFTypeOriginal,
1381
1653
  GetPostTemplatesSortOriginal,
1382
1654
  GetPostsSortOriginal,
1655
+ GradientTypeOriginal,
1383
1656
  ImagePositionOriginal,
1657
+ ImagePositionPositionOriginal,
1658
+ ImageScalingScalingOriginal,
1659
+ IndentationOriginal,
1384
1660
  InitialExpandedItemsOriginal,
1661
+ LayoutDataBackgroundTypeOriginal,
1385
1662
  LayoutOriginal,
1386
1663
  LayoutTypeOriginal,
1387
1664
  LineStyleOriginal,
1665
+ ListStyleOriginal,
1388
1666
  MapTypeOriginal,
1389
1667
  ModerationStatusStatusOriginal,
1390
1668
  NodeTypeOriginal,
@@ -1394,6 +1672,7 @@ function getPostMetrics2() {
1394
1672
  OriginOriginal,
1395
1673
  PlacementOriginal,
1396
1674
  PluginContainerDataAlignmentOriginal,
1675
+ PollDesignBackgroundTypeOriginal,
1397
1676
  PollLayoutDirectionOriginal,
1398
1677
  PollLayoutTypeOriginal,
1399
1678
  PositionOriginal,