@wix/auto_sdk_blog_draft-posts 1.0.88 → 1.0.90

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 +649 -20
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +490 -227
  5. package/build/cjs/index.typings.js +556 -20
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +487 -229
  8. package/build/cjs/meta.js +556 -20
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +645 -20
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +490 -227
  14. package/build/es/index.typings.mjs +552 -20
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +487 -229
  17. package/build/es/meta.mjs +552 -20
  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 +649 -20
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +490 -227
  23. package/build/internal/cjs/index.typings.js +556 -20
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +487 -229
  26. package/build/internal/cjs/meta.js +556 -20
  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 +645 -20
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +490 -227
  32. package/build/internal/es/index.typings.mjs +552 -20
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +487 -229
  35. package/build/internal/es/meta.mjs +552 -20
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -22,6 +22,7 @@ var index_exports = {};
22
22
  __export(index_exports, {
23
23
  Action: () => Action,
24
24
  Alignment: () => Alignment,
25
+ AnimationType: () => AnimationType,
25
26
  AppType: () => AppType,
26
27
  AspectRatio: () => AspectRatio,
27
28
  BackdropType: () => BackdropType,
@@ -37,6 +38,7 @@ __export(index_exports, {
37
38
  DesignTarget: () => DesignTarget,
38
39
  Direction: () => Direction,
39
40
  DividerDataAlignment: () => DividerDataAlignment,
41
+ EntranceEffectType: () => EntranceEffectType,
40
42
  Field: () => Field,
41
43
  FontType: () => FontType,
42
44
  GIFType: () => GIFType,
@@ -50,8 +52,10 @@ __export(index_exports, {
50
52
  Layout: () => Layout,
51
53
  LayoutDataBackgroundType: () => LayoutDataBackgroundType,
52
54
  LayoutType: () => LayoutType,
55
+ LineCap: () => LineCap,
53
56
  LineStyle: () => LineStyle,
54
57
  ListStyle: () => ListStyle,
58
+ LoopEffectType: () => LoopEffectType,
55
59
  MapType: () => MapType,
56
60
  ModerationStatusStatus: () => ModerationStatusStatus,
57
61
  NodeType: () => NodeType,
@@ -245,6 +249,10 @@ function resolveComWixpressNpmCommunitiesPlatformizedBlogV3DraftPostServiceUrl(o
245
249
  {
246
250
  srcPath: "/_api/communities-blog-node-api/v3/bulk/moderation",
247
251
  destPath: "/v3/bulk/moderation"
252
+ },
253
+ {
254
+ srcPath: "/_api/communities-blog-node-api/v3/bulk/draft-posts/create",
255
+ destPath: "/v3/bulk/draft-posts/create"
248
256
  }
249
257
  ],
250
258
  "social-blog._base_domain_": [
@@ -355,6 +363,10 @@ function createDraftPost(payload) {
355
363
  path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
356
364
  },
357
365
  { path: "draftPost.richContent.nodes.imageData.image.duration" },
366
+ { path: "draftPost.richContent.nodes.imageData.crop.x" },
367
+ { path: "draftPost.richContent.nodes.imageData.crop.y" },
368
+ { path: "draftPost.richContent.nodes.imageData.crop.width" },
369
+ { path: "draftPost.richContent.nodes.imageData.crop.height" },
358
370
  { path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
359
371
  { path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
360
372
  { path: "draftPost.richContent.nodes.pollData.poll.image.duration" },
@@ -372,9 +384,27 @@ function createDraftPost(payload) {
372
384
  {
373
385
  path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
374
386
  },
387
+ {
388
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
389
+ },
390
+ {
391
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
392
+ },
393
+ {
394
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
395
+ },
375
396
  {
376
397
  path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
377
398
  },
399
+ {
400
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
401
+ },
402
+ {
403
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
404
+ },
405
+ {
406
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
407
+ },
378
408
  {
379
409
  path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
380
410
  },
@@ -406,6 +436,15 @@ function createDraftPost(payload) {
406
436
  {
407
437
  path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
408
438
  },
439
+ {
440
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
441
+ },
442
+ {
443
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
444
+ },
445
+ {
446
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
447
+ },
409
448
  { path: "draftPost.richContent.nodes.tocData.fontSize" },
410
449
  { path: "draftPost.richContent.nodes.tocData.itemSpacing" },
411
450
  {
@@ -498,6 +537,10 @@ function createDraftPost(payload) {
498
537
  path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
499
538
  },
500
539
  { path: "draftPost.richContent.nodes.imageData.image.duration" },
540
+ { path: "draftPost.richContent.nodes.imageData.crop.x" },
541
+ { path: "draftPost.richContent.nodes.imageData.crop.y" },
542
+ { path: "draftPost.richContent.nodes.imageData.crop.width" },
543
+ { path: "draftPost.richContent.nodes.imageData.crop.height" },
501
544
  { path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
502
545
  { path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
503
546
  {
@@ -523,9 +566,27 @@ function createDraftPost(payload) {
523
566
  {
524
567
  path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
525
568
  },
569
+ {
570
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
571
+ },
572
+ {
573
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
574
+ },
575
+ {
576
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
577
+ },
526
578
  {
527
579
  path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
528
580
  },
581
+ {
582
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
583
+ },
584
+ {
585
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
586
+ },
587
+ {
588
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
589
+ },
529
590
  {
530
591
  path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
531
592
  },
@@ -557,6 +618,15 @@ function createDraftPost(payload) {
557
618
  {
558
619
  path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
559
620
  },
621
+ {
622
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
623
+ },
624
+ {
625
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
626
+ },
627
+ {
628
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
629
+ },
560
630
  { path: "draftPost.richContent.nodes.tocData.fontSize" },
561
631
  { path: "draftPost.richContent.nodes.tocData.itemSpacing" },
562
632
  {
@@ -644,6 +714,10 @@ function bulkCreateDraftPosts(payload) {
644
714
  path: "draftPosts.richContent.nodes.galleryData.options.item.ratio"
645
715
  },
646
716
  { path: "draftPosts.richContent.nodes.imageData.image.duration" },
717
+ { path: "draftPosts.richContent.nodes.imageData.crop.x" },
718
+ { path: "draftPosts.richContent.nodes.imageData.crop.y" },
719
+ { path: "draftPosts.richContent.nodes.imageData.crop.width" },
720
+ { path: "draftPosts.richContent.nodes.imageData.crop.height" },
647
721
  { path: "draftPosts.richContent.nodes.mapData.mapSettings.lat" },
648
722
  { path: "draftPosts.richContent.nodes.mapData.mapSettings.lng" },
649
723
  { path: "draftPosts.richContent.nodes.pollData.poll.image.duration" },
@@ -663,9 +737,27 @@ function bulkCreateDraftPosts(payload) {
663
737
  {
664
738
  path: "draftPosts.richContent.nodes.layoutData.backgroundImage.media.duration"
665
739
  },
740
+ {
741
+ path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
742
+ },
743
+ {
744
+ path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
745
+ },
746
+ {
747
+ path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
748
+ },
666
749
  {
667
750
  path: "draftPosts.richContent.nodes.layoutData.backdropImage.media.duration"
668
751
  },
752
+ {
753
+ path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
754
+ },
755
+ {
756
+ path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
757
+ },
758
+ {
759
+ path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
760
+ },
669
761
  {
670
762
  path: "draftPosts.richContent.nodes.layoutData.background.gradient.centerX"
671
763
  },
@@ -697,6 +789,15 @@ function bulkCreateDraftPosts(payload) {
697
789
  {
698
790
  path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
699
791
  },
792
+ {
793
+ path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
794
+ },
795
+ {
796
+ path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
797
+ },
798
+ {
799
+ path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
800
+ },
700
801
  { path: "draftPosts.richContent.nodes.tocData.fontSize" },
701
802
  { path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
702
803
  {
@@ -795,6 +896,10 @@ function bulkCreateDraftPosts(payload) {
795
896
  {
796
897
  path: "results.item.richContent.nodes.imageData.image.duration"
797
898
  },
899
+ { path: "results.item.richContent.nodes.imageData.crop.x" },
900
+ { path: "results.item.richContent.nodes.imageData.crop.y" },
901
+ { path: "results.item.richContent.nodes.imageData.crop.width" },
902
+ { path: "results.item.richContent.nodes.imageData.crop.height" },
798
903
  {
799
904
  path: "results.item.richContent.nodes.mapData.mapSettings.lat"
800
905
  },
@@ -828,9 +933,27 @@ function bulkCreateDraftPosts(payload) {
828
933
  {
829
934
  path: "results.item.richContent.nodes.layoutData.backgroundImage.media.duration"
830
935
  },
936
+ {
937
+ path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
938
+ },
939
+ {
940
+ path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
941
+ },
942
+ {
943
+ path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
944
+ },
831
945
  {
832
946
  path: "results.item.richContent.nodes.layoutData.backdropImage.media.duration"
833
947
  },
948
+ {
949
+ path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
950
+ },
951
+ {
952
+ path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
953
+ },
954
+ {
955
+ path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
956
+ },
834
957
  {
835
958
  path: "results.item.richContent.nodes.layoutData.background.gradient.centerX"
836
959
  },
@@ -864,6 +987,15 @@ function bulkCreateDraftPosts(payload) {
864
987
  {
865
988
  path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
866
989
  },
990
+ {
991
+ path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
992
+ },
993
+ {
994
+ path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
995
+ },
996
+ {
997
+ path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
998
+ },
867
999
  { path: "results.item.richContent.nodes.tocData.fontSize" },
868
1000
  { path: "results.item.richContent.nodes.tocData.itemSpacing" },
869
1001
  {
@@ -970,6 +1102,14 @@ function bulkUpdateDraftPosts(payload) {
970
1102
  {
971
1103
  path: "draftPosts.draftPost.richContent.nodes.imageData.image.duration"
972
1104
  },
1105
+ { path: "draftPosts.draftPost.richContent.nodes.imageData.crop.x" },
1106
+ { path: "draftPosts.draftPost.richContent.nodes.imageData.crop.y" },
1107
+ {
1108
+ path: "draftPosts.draftPost.richContent.nodes.imageData.crop.width"
1109
+ },
1110
+ {
1111
+ path: "draftPosts.draftPost.richContent.nodes.imageData.crop.height"
1112
+ },
973
1113
  {
974
1114
  path: "draftPosts.draftPost.richContent.nodes.mapData.mapSettings.lat"
975
1115
  },
@@ -1003,9 +1143,27 @@ function bulkUpdateDraftPosts(payload) {
1003
1143
  {
1004
1144
  path: "draftPosts.draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
1005
1145
  },
1146
+ {
1147
+ path: "draftPosts.draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
1148
+ },
1149
+ {
1150
+ path: "draftPosts.draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
1151
+ },
1152
+ {
1153
+ path: "draftPosts.draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
1154
+ },
1006
1155
  {
1007
1156
  path: "draftPosts.draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
1008
1157
  },
1158
+ {
1159
+ path: "draftPosts.draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
1160
+ },
1161
+ {
1162
+ path: "draftPosts.draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
1163
+ },
1164
+ {
1165
+ path: "draftPosts.draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
1166
+ },
1009
1167
  {
1010
1168
  path: "draftPosts.draftPost.richContent.nodes.layoutData.background.gradient.centerX"
1011
1169
  },
@@ -1039,6 +1197,15 @@ function bulkUpdateDraftPosts(payload) {
1039
1197
  {
1040
1198
  path: "draftPosts.draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
1041
1199
  },
1200
+ {
1201
+ path: "draftPosts.draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
1202
+ },
1203
+ {
1204
+ path: "draftPosts.draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
1205
+ },
1206
+ {
1207
+ path: "draftPosts.draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
1208
+ },
1042
1209
  { path: "draftPosts.draftPost.richContent.nodes.tocData.fontSize" },
1043
1210
  {
1044
1211
  path: "draftPosts.draftPost.richContent.nodes.tocData.itemSpacing"
@@ -1139,6 +1306,10 @@ function bulkUpdateDraftPosts(payload) {
1139
1306
  {
1140
1307
  path: "results.item.richContent.nodes.imageData.image.duration"
1141
1308
  },
1309
+ { path: "results.item.richContent.nodes.imageData.crop.x" },
1310
+ { path: "results.item.richContent.nodes.imageData.crop.y" },
1311
+ { path: "results.item.richContent.nodes.imageData.crop.width" },
1312
+ { path: "results.item.richContent.nodes.imageData.crop.height" },
1142
1313
  {
1143
1314
  path: "results.item.richContent.nodes.mapData.mapSettings.lat"
1144
1315
  },
@@ -1172,9 +1343,27 @@ function bulkUpdateDraftPosts(payload) {
1172
1343
  {
1173
1344
  path: "results.item.richContent.nodes.layoutData.backgroundImage.media.duration"
1174
1345
  },
1346
+ {
1347
+ path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
1348
+ },
1349
+ {
1350
+ path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
1351
+ },
1352
+ {
1353
+ path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
1354
+ },
1175
1355
  {
1176
1356
  path: "results.item.richContent.nodes.layoutData.backdropImage.media.duration"
1177
1357
  },
1358
+ {
1359
+ path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
1360
+ },
1361
+ {
1362
+ path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
1363
+ },
1364
+ {
1365
+ path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
1366
+ },
1178
1367
  {
1179
1368
  path: "results.item.richContent.nodes.layoutData.background.gradient.centerX"
1180
1369
  },
@@ -1208,6 +1397,15 @@ function bulkUpdateDraftPosts(payload) {
1208
1397
  {
1209
1398
  path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
1210
1399
  },
1400
+ {
1401
+ path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
1402
+ },
1403
+ {
1404
+ path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
1405
+ },
1406
+ {
1407
+ path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
1408
+ },
1211
1409
  { path: "results.item.richContent.nodes.tocData.fontSize" },
1212
1410
  { path: "results.item.richContent.nodes.tocData.itemSpacing" },
1213
1411
  {
@@ -1311,6 +1509,10 @@ function listDeletedDraftPosts(payload) {
1311
1509
  path: "draftPosts.richContent.nodes.galleryData.options.item.ratio"
1312
1510
  },
1313
1511
  { path: "draftPosts.richContent.nodes.imageData.image.duration" },
1512
+ { path: "draftPosts.richContent.nodes.imageData.crop.x" },
1513
+ { path: "draftPosts.richContent.nodes.imageData.crop.y" },
1514
+ { path: "draftPosts.richContent.nodes.imageData.crop.width" },
1515
+ { path: "draftPosts.richContent.nodes.imageData.crop.height" },
1314
1516
  { path: "draftPosts.richContent.nodes.mapData.mapSettings.lat" },
1315
1517
  { path: "draftPosts.richContent.nodes.mapData.mapSettings.lng" },
1316
1518
  {
@@ -1336,9 +1538,27 @@ function listDeletedDraftPosts(payload) {
1336
1538
  {
1337
1539
  path: "draftPosts.richContent.nodes.layoutData.backgroundImage.media.duration"
1338
1540
  },
1541
+ {
1542
+ path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
1543
+ },
1544
+ {
1545
+ path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
1546
+ },
1547
+ {
1548
+ path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
1549
+ },
1339
1550
  {
1340
1551
  path: "draftPosts.richContent.nodes.layoutData.backdropImage.media.duration"
1341
1552
  },
1553
+ {
1554
+ path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
1555
+ },
1556
+ {
1557
+ path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
1558
+ },
1559
+ {
1560
+ path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
1561
+ },
1342
1562
  {
1343
1563
  path: "draftPosts.richContent.nodes.layoutData.background.gradient.centerX"
1344
1564
  },
@@ -1370,6 +1590,15 @@ function listDeletedDraftPosts(payload) {
1370
1590
  {
1371
1591
  path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
1372
1592
  },
1593
+ {
1594
+ path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
1595
+ },
1596
+ {
1597
+ path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
1598
+ },
1599
+ {
1600
+ path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
1601
+ },
1373
1602
  { path: "draftPosts.richContent.nodes.tocData.fontSize" },
1374
1603
  { path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
1375
1604
  {
@@ -1469,6 +1698,10 @@ function getDraftPost(payload) {
1469
1698
  path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
1470
1699
  },
1471
1700
  { path: "draftPost.richContent.nodes.imageData.image.duration" },
1701
+ { path: "draftPost.richContent.nodes.imageData.crop.x" },
1702
+ { path: "draftPost.richContent.nodes.imageData.crop.y" },
1703
+ { path: "draftPost.richContent.nodes.imageData.crop.width" },
1704
+ { path: "draftPost.richContent.nodes.imageData.crop.height" },
1472
1705
  { path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
1473
1706
  { path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
1474
1707
  {
@@ -1494,9 +1727,27 @@ function getDraftPost(payload) {
1494
1727
  {
1495
1728
  path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
1496
1729
  },
1730
+ {
1731
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
1732
+ },
1733
+ {
1734
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
1735
+ },
1736
+ {
1737
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
1738
+ },
1497
1739
  {
1498
1740
  path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
1499
1741
  },
1742
+ {
1743
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
1744
+ },
1745
+ {
1746
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
1747
+ },
1748
+ {
1749
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
1750
+ },
1500
1751
  {
1501
1752
  path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
1502
1753
  },
@@ -1528,6 +1779,15 @@ function getDraftPost(payload) {
1528
1779
  {
1529
1780
  path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
1530
1781
  },
1782
+ {
1783
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
1784
+ },
1785
+ {
1786
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
1787
+ },
1788
+ {
1789
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
1790
+ },
1531
1791
  { path: "draftPost.richContent.nodes.tocData.fontSize" },
1532
1792
  { path: "draftPost.richContent.nodes.tocData.itemSpacing" },
1533
1793
  {
@@ -1620,6 +1880,10 @@ function updateDraftPost(payload) {
1620
1880
  path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
1621
1881
  },
1622
1882
  { path: "draftPost.richContent.nodes.imageData.image.duration" },
1883
+ { path: "draftPost.richContent.nodes.imageData.crop.x" },
1884
+ { path: "draftPost.richContent.nodes.imageData.crop.y" },
1885
+ { path: "draftPost.richContent.nodes.imageData.crop.width" },
1886
+ { path: "draftPost.richContent.nodes.imageData.crop.height" },
1623
1887
  { path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
1624
1888
  { path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
1625
1889
  { path: "draftPost.richContent.nodes.pollData.poll.image.duration" },
@@ -1637,9 +1901,27 @@ function updateDraftPost(payload) {
1637
1901
  {
1638
1902
  path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
1639
1903
  },
1904
+ {
1905
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
1906
+ },
1907
+ {
1908
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
1909
+ },
1910
+ {
1911
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
1912
+ },
1640
1913
  {
1641
1914
  path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
1642
1915
  },
1916
+ {
1917
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
1918
+ },
1919
+ {
1920
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
1921
+ },
1922
+ {
1923
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
1924
+ },
1643
1925
  {
1644
1926
  path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
1645
1927
  },
@@ -1671,6 +1953,15 @@ function updateDraftPost(payload) {
1671
1953
  {
1672
1954
  path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
1673
1955
  },
1956
+ {
1957
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
1958
+ },
1959
+ {
1960
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
1961
+ },
1962
+ {
1963
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
1964
+ },
1674
1965
  { path: "draftPost.richContent.nodes.tocData.fontSize" },
1675
1966
  { path: "draftPost.richContent.nodes.tocData.itemSpacing" },
1676
1967
  {
@@ -1767,6 +2058,10 @@ function updateDraftPost(payload) {
1767
2058
  path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
1768
2059
  },
1769
2060
  { path: "draftPost.richContent.nodes.imageData.image.duration" },
2061
+ { path: "draftPost.richContent.nodes.imageData.crop.x" },
2062
+ { path: "draftPost.richContent.nodes.imageData.crop.y" },
2063
+ { path: "draftPost.richContent.nodes.imageData.crop.width" },
2064
+ { path: "draftPost.richContent.nodes.imageData.crop.height" },
1770
2065
  { path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
1771
2066
  { path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
1772
2067
  {
@@ -1792,9 +2087,27 @@ function updateDraftPost(payload) {
1792
2087
  {
1793
2088
  path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
1794
2089
  },
2090
+ {
2091
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
2092
+ },
2093
+ {
2094
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
2095
+ },
2096
+ {
2097
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
2098
+ },
1795
2099
  {
1796
2100
  path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
1797
2101
  },
2102
+ {
2103
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
2104
+ },
2105
+ {
2106
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
2107
+ },
2108
+ {
2109
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
2110
+ },
1798
2111
  {
1799
2112
  path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
1800
2113
  },
@@ -1826,6 +2139,15 @@ function updateDraftPost(payload) {
1826
2139
  {
1827
2140
  path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
1828
2141
  },
2142
+ {
2143
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
2144
+ },
2145
+ {
2146
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
2147
+ },
2148
+ {
2149
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
2150
+ },
1829
2151
  { path: "draftPost.richContent.nodes.tocData.fontSize" },
1830
2152
  { path: "draftPost.richContent.nodes.tocData.itemSpacing" },
1831
2153
  {
@@ -1973,6 +2295,10 @@ function bulkDeleteDraftPosts(payload) {
1973
2295
  {
1974
2296
  path: "results.item.richContent.nodes.imageData.image.duration"
1975
2297
  },
2298
+ { path: "results.item.richContent.nodes.imageData.crop.x" },
2299
+ { path: "results.item.richContent.nodes.imageData.crop.y" },
2300
+ { path: "results.item.richContent.nodes.imageData.crop.width" },
2301
+ { path: "results.item.richContent.nodes.imageData.crop.height" },
1976
2302
  {
1977
2303
  path: "results.item.richContent.nodes.mapData.mapSettings.lat"
1978
2304
  },
@@ -2006,9 +2332,27 @@ function bulkDeleteDraftPosts(payload) {
2006
2332
  {
2007
2333
  path: "results.item.richContent.nodes.layoutData.backgroundImage.media.duration"
2008
2334
  },
2335
+ {
2336
+ path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
2337
+ },
2338
+ {
2339
+ path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
2340
+ },
2341
+ {
2342
+ path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
2343
+ },
2009
2344
  {
2010
2345
  path: "results.item.richContent.nodes.layoutData.backdropImage.media.duration"
2011
2346
  },
2347
+ {
2348
+ path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
2349
+ },
2350
+ {
2351
+ path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
2352
+ },
2353
+ {
2354
+ path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
2355
+ },
2012
2356
  {
2013
2357
  path: "results.item.richContent.nodes.layoutData.background.gradient.centerX"
2014
2358
  },
@@ -2042,6 +2386,15 @@ function bulkDeleteDraftPosts(payload) {
2042
2386
  {
2043
2387
  path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
2044
2388
  },
2389
+ {
2390
+ path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
2391
+ },
2392
+ {
2393
+ path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
2394
+ },
2395
+ {
2396
+ path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
2397
+ },
2045
2398
  { path: "results.item.richContent.nodes.tocData.fontSize" },
2046
2399
  { path: "results.item.richContent.nodes.tocData.itemSpacing" },
2047
2400
  {
@@ -2145,6 +2498,10 @@ function listDraftPosts(payload) {
2145
2498
  path: "draftPosts.richContent.nodes.galleryData.options.item.ratio"
2146
2499
  },
2147
2500
  { path: "draftPosts.richContent.nodes.imageData.image.duration" },
2501
+ { path: "draftPosts.richContent.nodes.imageData.crop.x" },
2502
+ { path: "draftPosts.richContent.nodes.imageData.crop.y" },
2503
+ { path: "draftPosts.richContent.nodes.imageData.crop.width" },
2504
+ { path: "draftPosts.richContent.nodes.imageData.crop.height" },
2148
2505
  { path: "draftPosts.richContent.nodes.mapData.mapSettings.lat" },
2149
2506
  { path: "draftPosts.richContent.nodes.mapData.mapSettings.lng" },
2150
2507
  {
@@ -2170,9 +2527,27 @@ function listDraftPosts(payload) {
2170
2527
  {
2171
2528
  path: "draftPosts.richContent.nodes.layoutData.backgroundImage.media.duration"
2172
2529
  },
2530
+ {
2531
+ path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
2532
+ },
2533
+ {
2534
+ path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
2535
+ },
2536
+ {
2537
+ path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
2538
+ },
2173
2539
  {
2174
2540
  path: "draftPosts.richContent.nodes.layoutData.backdropImage.media.duration"
2175
2541
  },
2542
+ {
2543
+ path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
2544
+ },
2545
+ {
2546
+ path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
2547
+ },
2548
+ {
2549
+ path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
2550
+ },
2176
2551
  {
2177
2552
  path: "draftPosts.richContent.nodes.layoutData.background.gradient.centerX"
2178
2553
  },
@@ -2204,6 +2579,15 @@ function listDraftPosts(payload) {
2204
2579
  {
2205
2580
  path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
2206
2581
  },
2582
+ {
2583
+ path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
2584
+ },
2585
+ {
2586
+ path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
2587
+ },
2588
+ {
2589
+ path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
2590
+ },
2207
2591
  { path: "draftPosts.richContent.nodes.tocData.fontSize" },
2208
2592
  { path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
2209
2593
  {
@@ -2307,6 +2691,10 @@ function getDeletedDraftPost(payload) {
2307
2691
  path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
2308
2692
  },
2309
2693
  { path: "draftPost.richContent.nodes.imageData.image.duration" },
2694
+ { path: "draftPost.richContent.nodes.imageData.crop.x" },
2695
+ { path: "draftPost.richContent.nodes.imageData.crop.y" },
2696
+ { path: "draftPost.richContent.nodes.imageData.crop.width" },
2697
+ { path: "draftPost.richContent.nodes.imageData.crop.height" },
2310
2698
  { path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
2311
2699
  { path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
2312
2700
  {
@@ -2332,9 +2720,27 @@ function getDeletedDraftPost(payload) {
2332
2720
  {
2333
2721
  path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
2334
2722
  },
2723
+ {
2724
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
2725
+ },
2726
+ {
2727
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
2728
+ },
2729
+ {
2730
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
2731
+ },
2335
2732
  {
2336
2733
  path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
2337
2734
  },
2735
+ {
2736
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
2737
+ },
2738
+ {
2739
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
2740
+ },
2741
+ {
2742
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
2743
+ },
2338
2744
  {
2339
2745
  path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
2340
2746
  },
@@ -2366,6 +2772,15 @@ function getDeletedDraftPost(payload) {
2366
2772
  {
2367
2773
  path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
2368
2774
  },
2775
+ {
2776
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
2777
+ },
2778
+ {
2779
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
2780
+ },
2781
+ {
2782
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
2783
+ },
2369
2784
  { path: "draftPost.richContent.nodes.tocData.fontSize" },
2370
2785
  { path: "draftPost.richContent.nodes.tocData.itemSpacing" },
2371
2786
  {
@@ -2469,6 +2884,10 @@ function restoreFromTrashBin(payload) {
2469
2884
  path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
2470
2885
  },
2471
2886
  { path: "draftPost.richContent.nodes.imageData.image.duration" },
2887
+ { path: "draftPost.richContent.nodes.imageData.crop.x" },
2888
+ { path: "draftPost.richContent.nodes.imageData.crop.y" },
2889
+ { path: "draftPost.richContent.nodes.imageData.crop.width" },
2890
+ { path: "draftPost.richContent.nodes.imageData.crop.height" },
2472
2891
  { path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
2473
2892
  { path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
2474
2893
  {
@@ -2494,9 +2913,27 @@ function restoreFromTrashBin(payload) {
2494
2913
  {
2495
2914
  path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
2496
2915
  },
2916
+ {
2917
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
2918
+ },
2919
+ {
2920
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
2921
+ },
2922
+ {
2923
+ path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
2924
+ },
2497
2925
  {
2498
2926
  path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
2499
2927
  },
2928
+ {
2929
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
2930
+ },
2931
+ {
2932
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
2933
+ },
2934
+ {
2935
+ path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
2936
+ },
2500
2937
  {
2501
2938
  path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
2502
2939
  },
@@ -2528,6 +2965,15 @@ function restoreFromTrashBin(payload) {
2528
2965
  {
2529
2966
  path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
2530
2967
  },
2968
+ {
2969
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
2970
+ },
2971
+ {
2972
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
2973
+ },
2974
+ {
2975
+ path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
2976
+ },
2531
2977
  { path: "draftPost.richContent.nodes.tocData.fontSize" },
2532
2978
  { path: "draftPost.richContent.nodes.tocData.itemSpacing" },
2533
2979
  {
@@ -2543,6 +2989,15 @@ function restoreFromTrashBin(payload) {
2543
2989
  }
2544
2990
  function queryDraftPosts(payload) {
2545
2991
  function __queryDraftPosts({ host }) {
2992
+ const serializedData = (0, import_transform_paths.transformPaths)(payload, [
2993
+ {
2994
+ transformFn: import_float.transformSDKFloatToRESTFloat,
2995
+ paths: [
2996
+ { path: "query.sort.origin.latitude" },
2997
+ { path: "query.sort.origin.longitude" }
2998
+ ]
2999
+ }
3000
+ ]);
2546
3001
  const metadata = {
2547
3002
  entityFqdn: "wix.blog.v3.draft",
2548
3003
  method: "POST",
@@ -2552,9 +3007,9 @@ function queryDraftPosts(payload) {
2552
3007
  optInTransformResponse: true
2553
3008
  },
2554
3009
  url: resolveComWixpressNpmCommunitiesPlatformizedBlogV3DraftPostServiceUrl(
2555
- { protoPath: "/v3/draft-posts/query", data: payload, host }
3010
+ { protoPath: "/v3/draft-posts/query", data: serializedData, host }
2556
3011
  ),
2557
- data: payload,
3012
+ data: serializedData,
2558
3013
  transformResponse: (payload2) => (0, import_transform_paths.transformPaths)(payload2, [
2559
3014
  {
2560
3015
  transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
@@ -2631,6 +3086,10 @@ function queryDraftPosts(payload) {
2631
3086
  path: "draftPosts.richContent.nodes.galleryData.options.item.ratio"
2632
3087
  },
2633
3088
  { path: "draftPosts.richContent.nodes.imageData.image.duration" },
3089
+ { path: "draftPosts.richContent.nodes.imageData.crop.x" },
3090
+ { path: "draftPosts.richContent.nodes.imageData.crop.y" },
3091
+ { path: "draftPosts.richContent.nodes.imageData.crop.width" },
3092
+ { path: "draftPosts.richContent.nodes.imageData.crop.height" },
2634
3093
  { path: "draftPosts.richContent.nodes.mapData.mapSettings.lat" },
2635
3094
  { path: "draftPosts.richContent.nodes.mapData.mapSettings.lng" },
2636
3095
  {
@@ -2656,9 +3115,27 @@ function queryDraftPosts(payload) {
2656
3115
  {
2657
3116
  path: "draftPosts.richContent.nodes.layoutData.backgroundImage.media.duration"
2658
3117
  },
3118
+ {
3119
+ path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
3120
+ },
3121
+ {
3122
+ path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
3123
+ },
3124
+ {
3125
+ path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
3126
+ },
2659
3127
  {
2660
3128
  path: "draftPosts.richContent.nodes.layoutData.backdropImage.media.duration"
2661
3129
  },
3130
+ {
3131
+ path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
3132
+ },
3133
+ {
3134
+ path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
3135
+ },
3136
+ {
3137
+ path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
3138
+ },
2662
3139
  {
2663
3140
  path: "draftPosts.richContent.nodes.layoutData.background.gradient.centerX"
2664
3141
  },
@@ -2690,6 +3167,15 @@ function queryDraftPosts(payload) {
2690
3167
  {
2691
3168
  path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
2692
3169
  },
3170
+ {
3171
+ path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
3172
+ },
3173
+ {
3174
+ path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
3175
+ },
3176
+ {
3177
+ path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
3178
+ },
2693
3179
  { path: "draftPosts.richContent.nodes.tocData.fontSize" },
2694
3180
  { path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
2695
3181
  {
@@ -2852,6 +3338,47 @@ var Target = /* @__PURE__ */ ((Target2) => {
2852
3338
  Target2["TOP"] = "TOP";
2853
3339
  return Target2;
2854
3340
  })(Target || {});
3341
+ var AnimationType = /* @__PURE__ */ ((AnimationType2) => {
3342
+ AnimationType2["VIEW"] = "VIEW";
3343
+ return AnimationType2;
3344
+ })(AnimationType || {});
3345
+ var EntranceEffectType = /* @__PURE__ */ ((EntranceEffectType2) => {
3346
+ EntranceEffectType2["FADE"] = "FADE";
3347
+ EntranceEffectType2["ARC"] = "ARC";
3348
+ EntranceEffectType2["BLUR"] = "BLUR";
3349
+ EntranceEffectType2["BOUNCE"] = "BOUNCE";
3350
+ EntranceEffectType2["DROP"] = "DROP";
3351
+ EntranceEffectType2["EXPAND"] = "EXPAND";
3352
+ EntranceEffectType2["FLIP"] = "FLIP";
3353
+ EntranceEffectType2["FLOAT"] = "FLOAT";
3354
+ EntranceEffectType2["FOLD"] = "FOLD";
3355
+ EntranceEffectType2["GLIDE"] = "GLIDE";
3356
+ EntranceEffectType2["REVEAL"] = "REVEAL";
3357
+ EntranceEffectType2["SHAPE"] = "SHAPE";
3358
+ EntranceEffectType2["SHUTTERS"] = "SHUTTERS";
3359
+ EntranceEffectType2["SLIDE"] = "SLIDE";
3360
+ EntranceEffectType2["SPIN"] = "SPIN";
3361
+ EntranceEffectType2["TILT"] = "TILT";
3362
+ EntranceEffectType2["TURN"] = "TURN";
3363
+ EntranceEffectType2["WINK"] = "WINK";
3364
+ return EntranceEffectType2;
3365
+ })(EntranceEffectType || {});
3366
+ var LoopEffectType = /* @__PURE__ */ ((LoopEffectType2) => {
3367
+ LoopEffectType2["BOUNCE"] = "BOUNCE";
3368
+ LoopEffectType2["BREATHE"] = "BREATHE";
3369
+ LoopEffectType2["CROSS"] = "CROSS";
3370
+ LoopEffectType2["FLASH"] = "FLASH";
3371
+ LoopEffectType2["FLIP"] = "FLIP";
3372
+ LoopEffectType2["FOLD"] = "FOLD";
3373
+ LoopEffectType2["JELLO"] = "JELLO";
3374
+ LoopEffectType2["POKE"] = "POKE";
3375
+ LoopEffectType2["PULSE"] = "PULSE";
3376
+ LoopEffectType2["RUBBER"] = "RUBBER";
3377
+ LoopEffectType2["SPIN"] = "SPIN";
3378
+ LoopEffectType2["SWING"] = "SWING";
3379
+ LoopEffectType2["WIGGLE"] = "WIGGLE";
3380
+ return LoopEffectType2;
3381
+ })(LoopEffectType || {});
2855
3382
  var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
2856
3383
  TextAlignment2["AUTO"] = "AUTO";
2857
3384
  TextAlignment2["LEFT"] = "LEFT";
@@ -2860,6 +3387,11 @@ var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
2860
3387
  TextAlignment2["JUSTIFY"] = "JUSTIFY";
2861
3388
  return TextAlignment2;
2862
3389
  })(TextAlignment || {});
3390
+ var LineCap = /* @__PURE__ */ ((LineCap2) => {
3391
+ LineCap2["SQUARE"] = "SQUARE";
3392
+ LineCap2["ROUND"] = "ROUND";
3393
+ return LineCap2;
3394
+ })(LineCap || {});
2863
3395
  var LineStyle = /* @__PURE__ */ ((LineStyle2) => {
2864
3396
  LineStyle2["SINGLE"] = "SINGLE";
2865
3397
  LineStyle2["DOUBLE"] = "DOUBLE";
@@ -3083,6 +3615,11 @@ var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
3083
3615
  ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
3084
3616
  return ImagePosition2;
3085
3617
  })(ImagePosition || {});
3618
+ var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
3619
+ LayoutDataBackgroundType2["COLOR"] = "COLOR";
3620
+ LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
3621
+ return LayoutDataBackgroundType2;
3622
+ })(LayoutDataBackgroundType || {});
3086
3623
  var BannerOrigin = /* @__PURE__ */ ((BannerOrigin2) => {
3087
3624
  BannerOrigin2["IMAGE"] = "IMAGE";
3088
3625
  BannerOrigin2["LAYOUT"] = "LAYOUT";
@@ -3093,11 +3630,6 @@ var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
3093
3630
  BannerPosition2["BOTTOM"] = "BOTTOM";
3094
3631
  return BannerPosition2;
3095
3632
  })(BannerPosition || {});
3096
- var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
3097
- LayoutDataBackgroundType2["COLOR"] = "COLOR";
3098
- LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
3099
- return LayoutDataBackgroundType2;
3100
- })(LayoutDataBackgroundType || {});
3101
3633
  var BackdropType = /* @__PURE__ */ ((BackdropType2) => {
3102
3634
  BackdropType2["COLOR"] = "COLOR";
3103
3635
  BackdropType2["GRADIENT"] = "GRADIENT";
@@ -3205,19 +3737,6 @@ var ModerationStatusStatus = /* @__PURE__ */ ((ModerationStatusStatus2) => {
3205
3737
  ModerationStatusStatus2["REJECTED"] = "REJECTED";
3206
3738
  return ModerationStatusStatus2;
3207
3739
  })(ModerationStatusStatus || {});
3208
- var TotalDraftPostsGroupingField = /* @__PURE__ */ ((TotalDraftPostsGroupingField2) => {
3209
- TotalDraftPostsGroupingField2["STATUS"] = "STATUS";
3210
- TotalDraftPostsGroupingField2["LANGUAGE"] = "LANGUAGE";
3211
- return TotalDraftPostsGroupingField2;
3212
- })(TotalDraftPostsGroupingField || {});
3213
- var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
3214
- WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
3215
- WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
3216
- WebhookIdentityType2["MEMBER"] = "MEMBER";
3217
- WebhookIdentityType2["WIX_USER"] = "WIX_USER";
3218
- WebhookIdentityType2["APP"] = "APP";
3219
- return WebhookIdentityType2;
3220
- })(WebhookIdentityType || {});
3221
3740
  var Type = /* @__PURE__ */ ((Type2) => {
3222
3741
  Type2["UNKNOWN"] = "UNKNOWN";
3223
3742
  Type2["MANUAL"] = "MANUAL";
@@ -3255,6 +3774,19 @@ var SortOrder = /* @__PURE__ */ ((SortOrder2) => {
3255
3774
  SortOrder2["DESC"] = "DESC";
3256
3775
  return SortOrder2;
3257
3776
  })(SortOrder || {});
3777
+ var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
3778
+ WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
3779
+ WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
3780
+ WebhookIdentityType2["MEMBER"] = "MEMBER";
3781
+ WebhookIdentityType2["WIX_USER"] = "WIX_USER";
3782
+ WebhookIdentityType2["APP"] = "APP";
3783
+ return WebhookIdentityType2;
3784
+ })(WebhookIdentityType || {});
3785
+ var TotalDraftPostsGroupingField = /* @__PURE__ */ ((TotalDraftPostsGroupingField2) => {
3786
+ TotalDraftPostsGroupingField2["STATUS"] = "STATUS";
3787
+ TotalDraftPostsGroupingField2["LANGUAGE"] = "LANGUAGE";
3788
+ return TotalDraftPostsGroupingField2;
3789
+ })(TotalDraftPostsGroupingField || {});
3258
3790
  async function createDraftPost2(draftPost, options) {
3259
3791
  const { httpClient, sideEffects } = arguments[2];
3260
3792
  const payload = (0, import_transform_paths2.transformPaths)(
@@ -4268,6 +4800,10 @@ var onDraftCreated = (0, import_sdk_types.EventDefinition)(
4268
4800
  },
4269
4801
  { path: "entity.richContent.nodes.galleryData.options.item.ratio" },
4270
4802
  { path: "entity.richContent.nodes.imageData.image.duration" },
4803
+ { path: "entity.richContent.nodes.imageData.crop.x" },
4804
+ { path: "entity.richContent.nodes.imageData.crop.y" },
4805
+ { path: "entity.richContent.nodes.imageData.crop.width" },
4806
+ { path: "entity.richContent.nodes.imageData.crop.height" },
4271
4807
  { path: "entity.richContent.nodes.mapData.mapSettings.lat" },
4272
4808
  { path: "entity.richContent.nodes.mapData.mapSettings.lng" },
4273
4809
  { path: "entity.richContent.nodes.pollData.poll.image.duration" },
@@ -4285,9 +4821,27 @@ var onDraftCreated = (0, import_sdk_types.EventDefinition)(
4285
4821
  {
4286
4822
  path: "entity.richContent.nodes.layoutData.backgroundImage.media.duration"
4287
4823
  },
4824
+ {
4825
+ path: "entity.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
4826
+ },
4827
+ {
4828
+ path: "entity.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
4829
+ },
4830
+ {
4831
+ path: "entity.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
4832
+ },
4288
4833
  {
4289
4834
  path: "entity.richContent.nodes.layoutData.backdropImage.media.duration"
4290
4835
  },
4836
+ {
4837
+ path: "entity.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
4838
+ },
4839
+ {
4840
+ path: "entity.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
4841
+ },
4842
+ {
4843
+ path: "entity.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
4844
+ },
4291
4845
  {
4292
4846
  path: "entity.richContent.nodes.layoutData.background.gradient.centerX"
4293
4847
  },
@@ -4319,6 +4873,15 @@ var onDraftCreated = (0, import_sdk_types.EventDefinition)(
4319
4873
  {
4320
4874
  path: "entity.richContent.nodes.cardData.backgroundImage.media.duration"
4321
4875
  },
4876
+ {
4877
+ path: "entity.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
4878
+ },
4879
+ {
4880
+ path: "entity.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
4881
+ },
4882
+ {
4883
+ path: "entity.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
4884
+ },
4322
4885
  { path: "entity.richContent.nodes.tocData.fontSize" },
4323
4886
  { path: "entity.richContent.nodes.tocData.itemSpacing" },
4324
4887
  {
@@ -4395,6 +4958,10 @@ var onDraftDeleted = (0, import_sdk_types.EventDefinition)(
4395
4958
  },
4396
4959
  { path: "entity.richContent.nodes.galleryData.options.item.ratio" },
4397
4960
  { path: "entity.richContent.nodes.imageData.image.duration" },
4961
+ { path: "entity.richContent.nodes.imageData.crop.x" },
4962
+ { path: "entity.richContent.nodes.imageData.crop.y" },
4963
+ { path: "entity.richContent.nodes.imageData.crop.width" },
4964
+ { path: "entity.richContent.nodes.imageData.crop.height" },
4398
4965
  { path: "entity.richContent.nodes.mapData.mapSettings.lat" },
4399
4966
  { path: "entity.richContent.nodes.mapData.mapSettings.lng" },
4400
4967
  { path: "entity.richContent.nodes.pollData.poll.image.duration" },
@@ -4412,9 +4979,27 @@ var onDraftDeleted = (0, import_sdk_types.EventDefinition)(
4412
4979
  {
4413
4980
  path: "entity.richContent.nodes.layoutData.backgroundImage.media.duration"
4414
4981
  },
4982
+ {
4983
+ path: "entity.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
4984
+ },
4985
+ {
4986
+ path: "entity.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
4987
+ },
4988
+ {
4989
+ path: "entity.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
4990
+ },
4415
4991
  {
4416
4992
  path: "entity.richContent.nodes.layoutData.backdropImage.media.duration"
4417
4993
  },
4994
+ {
4995
+ path: "entity.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
4996
+ },
4997
+ {
4998
+ path: "entity.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
4999
+ },
5000
+ {
5001
+ path: "entity.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
5002
+ },
4418
5003
  {
4419
5004
  path: "entity.richContent.nodes.layoutData.background.gradient.centerX"
4420
5005
  },
@@ -4446,6 +5031,15 @@ var onDraftDeleted = (0, import_sdk_types.EventDefinition)(
4446
5031
  {
4447
5032
  path: "entity.richContent.nodes.cardData.backgroundImage.media.duration"
4448
5033
  },
5034
+ {
5035
+ path: "entity.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
5036
+ },
5037
+ {
5038
+ path: "entity.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
5039
+ },
5040
+ {
5041
+ path: "entity.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
5042
+ },
4449
5043
  { path: "entity.richContent.nodes.tocData.fontSize" },
4450
5044
  { path: "entity.richContent.nodes.tocData.itemSpacing" },
4451
5045
  {
@@ -4522,6 +5116,10 @@ var onDraftUpdated = (0, import_sdk_types.EventDefinition)(
4522
5116
  },
4523
5117
  { path: "entity.richContent.nodes.galleryData.options.item.ratio" },
4524
5118
  { path: "entity.richContent.nodes.imageData.image.duration" },
5119
+ { path: "entity.richContent.nodes.imageData.crop.x" },
5120
+ { path: "entity.richContent.nodes.imageData.crop.y" },
5121
+ { path: "entity.richContent.nodes.imageData.crop.width" },
5122
+ { path: "entity.richContent.nodes.imageData.crop.height" },
4525
5123
  { path: "entity.richContent.nodes.mapData.mapSettings.lat" },
4526
5124
  { path: "entity.richContent.nodes.mapData.mapSettings.lng" },
4527
5125
  { path: "entity.richContent.nodes.pollData.poll.image.duration" },
@@ -4539,9 +5137,27 @@ var onDraftUpdated = (0, import_sdk_types.EventDefinition)(
4539
5137
  {
4540
5138
  path: "entity.richContent.nodes.layoutData.backgroundImage.media.duration"
4541
5139
  },
5140
+ {
5141
+ path: "entity.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
5142
+ },
5143
+ {
5144
+ path: "entity.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
5145
+ },
5146
+ {
5147
+ path: "entity.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
5148
+ },
4542
5149
  {
4543
5150
  path: "entity.richContent.nodes.layoutData.backdropImage.media.duration"
4544
5151
  },
5152
+ {
5153
+ path: "entity.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
5154
+ },
5155
+ {
5156
+ path: "entity.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
5157
+ },
5158
+ {
5159
+ path: "entity.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
5160
+ },
4545
5161
  {
4546
5162
  path: "entity.richContent.nodes.layoutData.background.gradient.centerX"
4547
5163
  },
@@ -4573,6 +5189,15 @@ var onDraftUpdated = (0, import_sdk_types.EventDefinition)(
4573
5189
  {
4574
5190
  path: "entity.richContent.nodes.cardData.backgroundImage.media.duration"
4575
5191
  },
5192
+ {
5193
+ path: "entity.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
5194
+ },
5195
+ {
5196
+ path: "entity.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
5197
+ },
5198
+ {
5199
+ path: "entity.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
5200
+ },
4576
5201
  { path: "entity.richContent.nodes.tocData.fontSize" },
4577
5202
  { path: "entity.richContent.nodes.tocData.itemSpacing" },
4578
5203
  {
@@ -4624,6 +5249,7 @@ var onDraftUpdated2 = (0, import_event_definition_modules.createEventModule)(onD
4624
5249
  0 && (module.exports = {
4625
5250
  Action,
4626
5251
  Alignment,
5252
+ AnimationType,
4627
5253
  AppType,
4628
5254
  AspectRatio,
4629
5255
  BackdropType,
@@ -4639,6 +5265,7 @@ var onDraftUpdated2 = (0, import_event_definition_modules.createEventModule)(onD
4639
5265
  DesignTarget,
4640
5266
  Direction,
4641
5267
  DividerDataAlignment,
5268
+ EntranceEffectType,
4642
5269
  Field,
4643
5270
  FontType,
4644
5271
  GIFType,
@@ -4652,8 +5279,10 @@ var onDraftUpdated2 = (0, import_event_definition_modules.createEventModule)(onD
4652
5279
  Layout,
4653
5280
  LayoutDataBackgroundType,
4654
5281
  LayoutType,
5282
+ LineCap,
4655
5283
  LineStyle,
4656
5284
  ListStyle,
5285
+ LoopEffectType,
4657
5286
  MapType,
4658
5287
  ModerationStatusStatus,
4659
5288
  NodeType,