@wix/auto_sdk_blog_draft-posts 1.0.88 → 1.0.89
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +589 -7
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +180 -106
- package/build/cjs/index.typings.js +496 -7
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +175 -106
- package/build/cjs/meta.js +496 -7
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +588 -7
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +180 -106
- package/build/es/index.typings.mjs +495 -7
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +175 -106
- package/build/es/meta.mjs +495 -7
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +589 -7
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +180 -106
- package/build/internal/cjs/index.typings.js +496 -7
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +175 -106
- package/build/internal/cjs/meta.js +496 -7
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +588 -7
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +180 -106
- package/build/internal/es/index.typings.mjs +495 -7
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +175 -106
- package/build/internal/es/meta.mjs +495 -7
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -50,6 +50,7 @@ __export(meta_exports, {
|
|
|
50
50
|
LayoutDataBackgroundTypeOriginal: () => LayoutDataBackgroundType,
|
|
51
51
|
LayoutOriginal: () => Layout,
|
|
52
52
|
LayoutTypeOriginal: () => LayoutType,
|
|
53
|
+
LineCapOriginal: () => LineCap,
|
|
53
54
|
LineStyleOriginal: () => LineStyle,
|
|
54
55
|
ListStyleOriginal: () => ListStyle,
|
|
55
56
|
MapTypeOriginal: () => MapType,
|
|
@@ -226,6 +227,10 @@ function resolveComWixpressNpmCommunitiesPlatformizedBlogV3DraftPostServiceUrl(o
|
|
|
226
227
|
{
|
|
227
228
|
srcPath: "/_api/communities-blog-node-api/v3/bulk/moderation",
|
|
228
229
|
destPath: "/v3/bulk/moderation"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
srcPath: "/_api/communities-blog-node-api/v3/bulk/draft-posts/create",
|
|
233
|
+
destPath: "/v3/bulk/draft-posts/create"
|
|
229
234
|
}
|
|
230
235
|
],
|
|
231
236
|
"social-blog._base_domain_": [
|
|
@@ -336,6 +341,10 @@ function createDraftPost(payload) {
|
|
|
336
341
|
path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
|
|
337
342
|
},
|
|
338
343
|
{ path: "draftPost.richContent.nodes.imageData.image.duration" },
|
|
344
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.x" },
|
|
345
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.y" },
|
|
346
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.width" },
|
|
347
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.height" },
|
|
339
348
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
|
|
340
349
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
|
|
341
350
|
{ path: "draftPost.richContent.nodes.pollData.poll.image.duration" },
|
|
@@ -353,9 +362,27 @@ function createDraftPost(payload) {
|
|
|
353
362
|
{
|
|
354
363
|
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
355
364
|
},
|
|
365
|
+
{
|
|
366
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
373
|
+
},
|
|
356
374
|
{
|
|
357
375
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
358
376
|
},
|
|
377
|
+
{
|
|
378
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
385
|
+
},
|
|
359
386
|
{
|
|
360
387
|
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
361
388
|
},
|
|
@@ -387,6 +414,15 @@ function createDraftPost(payload) {
|
|
|
387
414
|
{
|
|
388
415
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
389
416
|
},
|
|
417
|
+
{
|
|
418
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
425
|
+
},
|
|
390
426
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
391
427
|
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
392
428
|
{
|
|
@@ -479,6 +515,10 @@ function createDraftPost(payload) {
|
|
|
479
515
|
path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
|
|
480
516
|
},
|
|
481
517
|
{ path: "draftPost.richContent.nodes.imageData.image.duration" },
|
|
518
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.x" },
|
|
519
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.y" },
|
|
520
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.width" },
|
|
521
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.height" },
|
|
482
522
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
|
|
483
523
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
|
|
484
524
|
{
|
|
@@ -504,9 +544,27 @@ function createDraftPost(payload) {
|
|
|
504
544
|
{
|
|
505
545
|
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
506
546
|
},
|
|
547
|
+
{
|
|
548
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
555
|
+
},
|
|
507
556
|
{
|
|
508
557
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
509
558
|
},
|
|
559
|
+
{
|
|
560
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
567
|
+
},
|
|
510
568
|
{
|
|
511
569
|
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
512
570
|
},
|
|
@@ -538,6 +596,15 @@ function createDraftPost(payload) {
|
|
|
538
596
|
{
|
|
539
597
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
540
598
|
},
|
|
599
|
+
{
|
|
600
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
604
|
+
},
|
|
605
|
+
{
|
|
606
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
607
|
+
},
|
|
541
608
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
542
609
|
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
543
610
|
{
|
|
@@ -625,6 +692,10 @@ function bulkCreateDraftPosts(payload) {
|
|
|
625
692
|
path: "draftPosts.richContent.nodes.galleryData.options.item.ratio"
|
|
626
693
|
},
|
|
627
694
|
{ path: "draftPosts.richContent.nodes.imageData.image.duration" },
|
|
695
|
+
{ path: "draftPosts.richContent.nodes.imageData.crop.x" },
|
|
696
|
+
{ path: "draftPosts.richContent.nodes.imageData.crop.y" },
|
|
697
|
+
{ path: "draftPosts.richContent.nodes.imageData.crop.width" },
|
|
698
|
+
{ path: "draftPosts.richContent.nodes.imageData.crop.height" },
|
|
628
699
|
{ path: "draftPosts.richContent.nodes.mapData.mapSettings.lat" },
|
|
629
700
|
{ path: "draftPosts.richContent.nodes.mapData.mapSettings.lng" },
|
|
630
701
|
{ path: "draftPosts.richContent.nodes.pollData.poll.image.duration" },
|
|
@@ -644,9 +715,27 @@ function bulkCreateDraftPosts(payload) {
|
|
|
644
715
|
{
|
|
645
716
|
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
646
717
|
},
|
|
718
|
+
{
|
|
719
|
+
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
723
|
+
},
|
|
724
|
+
{
|
|
725
|
+
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
726
|
+
},
|
|
647
727
|
{
|
|
648
728
|
path: "draftPosts.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
649
729
|
},
|
|
730
|
+
{
|
|
731
|
+
path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
738
|
+
},
|
|
650
739
|
{
|
|
651
740
|
path: "draftPosts.richContent.nodes.layoutData.background.gradient.centerX"
|
|
652
741
|
},
|
|
@@ -678,6 +767,15 @@ function bulkCreateDraftPosts(payload) {
|
|
|
678
767
|
{
|
|
679
768
|
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
680
769
|
},
|
|
770
|
+
{
|
|
771
|
+
path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
778
|
+
},
|
|
681
779
|
{ path: "draftPosts.richContent.nodes.tocData.fontSize" },
|
|
682
780
|
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
|
|
683
781
|
{
|
|
@@ -776,6 +874,10 @@ function bulkCreateDraftPosts(payload) {
|
|
|
776
874
|
{
|
|
777
875
|
path: "results.item.richContent.nodes.imageData.image.duration"
|
|
778
876
|
},
|
|
877
|
+
{ path: "results.item.richContent.nodes.imageData.crop.x" },
|
|
878
|
+
{ path: "results.item.richContent.nodes.imageData.crop.y" },
|
|
879
|
+
{ path: "results.item.richContent.nodes.imageData.crop.width" },
|
|
880
|
+
{ path: "results.item.richContent.nodes.imageData.crop.height" },
|
|
779
881
|
{
|
|
780
882
|
path: "results.item.richContent.nodes.mapData.mapSettings.lat"
|
|
781
883
|
},
|
|
@@ -809,9 +911,27 @@ function bulkCreateDraftPosts(payload) {
|
|
|
809
911
|
{
|
|
810
912
|
path: "results.item.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
811
913
|
},
|
|
914
|
+
{
|
|
915
|
+
path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
922
|
+
},
|
|
812
923
|
{
|
|
813
924
|
path: "results.item.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
814
925
|
},
|
|
926
|
+
{
|
|
927
|
+
path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
934
|
+
},
|
|
815
935
|
{
|
|
816
936
|
path: "results.item.richContent.nodes.layoutData.background.gradient.centerX"
|
|
817
937
|
},
|
|
@@ -845,6 +965,15 @@ function bulkCreateDraftPosts(payload) {
|
|
|
845
965
|
{
|
|
846
966
|
path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
847
967
|
},
|
|
968
|
+
{
|
|
969
|
+
path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
976
|
+
},
|
|
848
977
|
{ path: "results.item.richContent.nodes.tocData.fontSize" },
|
|
849
978
|
{ path: "results.item.richContent.nodes.tocData.itemSpacing" },
|
|
850
979
|
{
|
|
@@ -951,6 +1080,14 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
951
1080
|
{
|
|
952
1081
|
path: "draftPosts.draftPost.richContent.nodes.imageData.image.duration"
|
|
953
1082
|
},
|
|
1083
|
+
{ path: "draftPosts.draftPost.richContent.nodes.imageData.crop.x" },
|
|
1084
|
+
{ path: "draftPosts.draftPost.richContent.nodes.imageData.crop.y" },
|
|
1085
|
+
{
|
|
1086
|
+
path: "draftPosts.draftPost.richContent.nodes.imageData.crop.width"
|
|
1087
|
+
},
|
|
1088
|
+
{
|
|
1089
|
+
path: "draftPosts.draftPost.richContent.nodes.imageData.crop.height"
|
|
1090
|
+
},
|
|
954
1091
|
{
|
|
955
1092
|
path: "draftPosts.draftPost.richContent.nodes.mapData.mapSettings.lat"
|
|
956
1093
|
},
|
|
@@ -984,9 +1121,27 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
984
1121
|
{
|
|
985
1122
|
path: "draftPosts.draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
986
1123
|
},
|
|
1124
|
+
{
|
|
1125
|
+
path: "draftPosts.draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
path: "draftPosts.draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
path: "draftPosts.draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
1132
|
+
},
|
|
987
1133
|
{
|
|
988
1134
|
path: "draftPosts.draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
989
1135
|
},
|
|
1136
|
+
{
|
|
1137
|
+
path: "draftPosts.draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
1138
|
+
},
|
|
1139
|
+
{
|
|
1140
|
+
path: "draftPosts.draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
path: "draftPosts.draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
1144
|
+
},
|
|
990
1145
|
{
|
|
991
1146
|
path: "draftPosts.draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
992
1147
|
},
|
|
@@ -1020,6 +1175,15 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
1020
1175
|
{
|
|
1021
1176
|
path: "draftPosts.draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1022
1177
|
},
|
|
1178
|
+
{
|
|
1179
|
+
path: "draftPosts.draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
path: "draftPosts.draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
1183
|
+
},
|
|
1184
|
+
{
|
|
1185
|
+
path: "draftPosts.draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
1186
|
+
},
|
|
1023
1187
|
{ path: "draftPosts.draftPost.richContent.nodes.tocData.fontSize" },
|
|
1024
1188
|
{
|
|
1025
1189
|
path: "draftPosts.draftPost.richContent.nodes.tocData.itemSpacing"
|
|
@@ -1120,6 +1284,10 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
1120
1284
|
{
|
|
1121
1285
|
path: "results.item.richContent.nodes.imageData.image.duration"
|
|
1122
1286
|
},
|
|
1287
|
+
{ path: "results.item.richContent.nodes.imageData.crop.x" },
|
|
1288
|
+
{ path: "results.item.richContent.nodes.imageData.crop.y" },
|
|
1289
|
+
{ path: "results.item.richContent.nodes.imageData.crop.width" },
|
|
1290
|
+
{ path: "results.item.richContent.nodes.imageData.crop.height" },
|
|
1123
1291
|
{
|
|
1124
1292
|
path: "results.item.richContent.nodes.mapData.mapSettings.lat"
|
|
1125
1293
|
},
|
|
@@ -1153,9 +1321,27 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
1153
1321
|
{
|
|
1154
1322
|
path: "results.item.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1155
1323
|
},
|
|
1324
|
+
{
|
|
1325
|
+
path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
1326
|
+
},
|
|
1327
|
+
{
|
|
1328
|
+
path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
1329
|
+
},
|
|
1330
|
+
{
|
|
1331
|
+
path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
1332
|
+
},
|
|
1156
1333
|
{
|
|
1157
1334
|
path: "results.item.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1158
1335
|
},
|
|
1336
|
+
{
|
|
1337
|
+
path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
1338
|
+
},
|
|
1339
|
+
{
|
|
1340
|
+
path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
1341
|
+
},
|
|
1342
|
+
{
|
|
1343
|
+
path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
1344
|
+
},
|
|
1159
1345
|
{
|
|
1160
1346
|
path: "results.item.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1161
1347
|
},
|
|
@@ -1189,6 +1375,15 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
1189
1375
|
{
|
|
1190
1376
|
path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1191
1377
|
},
|
|
1378
|
+
{
|
|
1379
|
+
path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
1380
|
+
},
|
|
1381
|
+
{
|
|
1382
|
+
path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
1383
|
+
},
|
|
1384
|
+
{
|
|
1385
|
+
path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
1386
|
+
},
|
|
1192
1387
|
{ path: "results.item.richContent.nodes.tocData.fontSize" },
|
|
1193
1388
|
{ path: "results.item.richContent.nodes.tocData.itemSpacing" },
|
|
1194
1389
|
{
|
|
@@ -1292,6 +1487,10 @@ function listDeletedDraftPosts(payload) {
|
|
|
1292
1487
|
path: "draftPosts.richContent.nodes.galleryData.options.item.ratio"
|
|
1293
1488
|
},
|
|
1294
1489
|
{ path: "draftPosts.richContent.nodes.imageData.image.duration" },
|
|
1490
|
+
{ path: "draftPosts.richContent.nodes.imageData.crop.x" },
|
|
1491
|
+
{ path: "draftPosts.richContent.nodes.imageData.crop.y" },
|
|
1492
|
+
{ path: "draftPosts.richContent.nodes.imageData.crop.width" },
|
|
1493
|
+
{ path: "draftPosts.richContent.nodes.imageData.crop.height" },
|
|
1295
1494
|
{ path: "draftPosts.richContent.nodes.mapData.mapSettings.lat" },
|
|
1296
1495
|
{ path: "draftPosts.richContent.nodes.mapData.mapSettings.lng" },
|
|
1297
1496
|
{
|
|
@@ -1317,9 +1516,27 @@ function listDeletedDraftPosts(payload) {
|
|
|
1317
1516
|
{
|
|
1318
1517
|
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1319
1518
|
},
|
|
1519
|
+
{
|
|
1520
|
+
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
1521
|
+
},
|
|
1522
|
+
{
|
|
1523
|
+
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
1524
|
+
},
|
|
1525
|
+
{
|
|
1526
|
+
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
1527
|
+
},
|
|
1320
1528
|
{
|
|
1321
1529
|
path: "draftPosts.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1322
1530
|
},
|
|
1531
|
+
{
|
|
1532
|
+
path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
1536
|
+
},
|
|
1537
|
+
{
|
|
1538
|
+
path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
1539
|
+
},
|
|
1323
1540
|
{
|
|
1324
1541
|
path: "draftPosts.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1325
1542
|
},
|
|
@@ -1351,6 +1568,15 @@ function listDeletedDraftPosts(payload) {
|
|
|
1351
1568
|
{
|
|
1352
1569
|
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1353
1570
|
},
|
|
1571
|
+
{
|
|
1572
|
+
path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
1573
|
+
},
|
|
1574
|
+
{
|
|
1575
|
+
path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
1576
|
+
},
|
|
1577
|
+
{
|
|
1578
|
+
path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
1579
|
+
},
|
|
1354
1580
|
{ path: "draftPosts.richContent.nodes.tocData.fontSize" },
|
|
1355
1581
|
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
|
|
1356
1582
|
{
|
|
@@ -1450,6 +1676,10 @@ function getDraftPost(payload) {
|
|
|
1450
1676
|
path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
|
|
1451
1677
|
},
|
|
1452
1678
|
{ path: "draftPost.richContent.nodes.imageData.image.duration" },
|
|
1679
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.x" },
|
|
1680
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.y" },
|
|
1681
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.width" },
|
|
1682
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.height" },
|
|
1453
1683
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
|
|
1454
1684
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
|
|
1455
1685
|
{
|
|
@@ -1475,9 +1705,27 @@ function getDraftPost(payload) {
|
|
|
1475
1705
|
{
|
|
1476
1706
|
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1477
1707
|
},
|
|
1708
|
+
{
|
|
1709
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
1710
|
+
},
|
|
1711
|
+
{
|
|
1712
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
1713
|
+
},
|
|
1714
|
+
{
|
|
1715
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
1716
|
+
},
|
|
1478
1717
|
{
|
|
1479
1718
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1480
1719
|
},
|
|
1720
|
+
{
|
|
1721
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
1722
|
+
},
|
|
1723
|
+
{
|
|
1724
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
1725
|
+
},
|
|
1726
|
+
{
|
|
1727
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
1728
|
+
},
|
|
1481
1729
|
{
|
|
1482
1730
|
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1483
1731
|
},
|
|
@@ -1509,6 +1757,15 @@ function getDraftPost(payload) {
|
|
|
1509
1757
|
{
|
|
1510
1758
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1511
1759
|
},
|
|
1760
|
+
{
|
|
1761
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
1762
|
+
},
|
|
1763
|
+
{
|
|
1764
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
1768
|
+
},
|
|
1512
1769
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
1513
1770
|
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
1514
1771
|
{
|
|
@@ -1601,6 +1858,10 @@ function updateDraftPost(payload) {
|
|
|
1601
1858
|
path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
|
|
1602
1859
|
},
|
|
1603
1860
|
{ path: "draftPost.richContent.nodes.imageData.image.duration" },
|
|
1861
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.x" },
|
|
1862
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.y" },
|
|
1863
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.width" },
|
|
1864
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.height" },
|
|
1604
1865
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
|
|
1605
1866
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
|
|
1606
1867
|
{ path: "draftPost.richContent.nodes.pollData.poll.image.duration" },
|
|
@@ -1618,9 +1879,27 @@ function updateDraftPost(payload) {
|
|
|
1618
1879
|
{
|
|
1619
1880
|
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1620
1881
|
},
|
|
1882
|
+
{
|
|
1883
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
1884
|
+
},
|
|
1885
|
+
{
|
|
1886
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
1887
|
+
},
|
|
1888
|
+
{
|
|
1889
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
1890
|
+
},
|
|
1621
1891
|
{
|
|
1622
1892
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1623
1893
|
},
|
|
1894
|
+
{
|
|
1895
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
1896
|
+
},
|
|
1897
|
+
{
|
|
1898
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
1899
|
+
},
|
|
1900
|
+
{
|
|
1901
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
1902
|
+
},
|
|
1624
1903
|
{
|
|
1625
1904
|
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1626
1905
|
},
|
|
@@ -1652,6 +1931,15 @@ function updateDraftPost(payload) {
|
|
|
1652
1931
|
{
|
|
1653
1932
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1654
1933
|
},
|
|
1934
|
+
{
|
|
1935
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
1936
|
+
},
|
|
1937
|
+
{
|
|
1938
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
1939
|
+
},
|
|
1940
|
+
{
|
|
1941
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
1942
|
+
},
|
|
1655
1943
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
1656
1944
|
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
1657
1945
|
{
|
|
@@ -1748,6 +2036,10 @@ function updateDraftPost(payload) {
|
|
|
1748
2036
|
path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
|
|
1749
2037
|
},
|
|
1750
2038
|
{ path: "draftPost.richContent.nodes.imageData.image.duration" },
|
|
2039
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.x" },
|
|
2040
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.y" },
|
|
2041
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.width" },
|
|
2042
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.height" },
|
|
1751
2043
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
|
|
1752
2044
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
|
|
1753
2045
|
{
|
|
@@ -1773,9 +2065,27 @@ function updateDraftPost(payload) {
|
|
|
1773
2065
|
{
|
|
1774
2066
|
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1775
2067
|
},
|
|
2068
|
+
{
|
|
2069
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
2070
|
+
},
|
|
2071
|
+
{
|
|
2072
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
2073
|
+
},
|
|
2074
|
+
{
|
|
2075
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
2076
|
+
},
|
|
1776
2077
|
{
|
|
1777
2078
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1778
2079
|
},
|
|
2080
|
+
{
|
|
2081
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
2082
|
+
},
|
|
2083
|
+
{
|
|
2084
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
2085
|
+
},
|
|
2086
|
+
{
|
|
2087
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
2088
|
+
},
|
|
1779
2089
|
{
|
|
1780
2090
|
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1781
2091
|
},
|
|
@@ -1807,6 +2117,15 @@ function updateDraftPost(payload) {
|
|
|
1807
2117
|
{
|
|
1808
2118
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1809
2119
|
},
|
|
2120
|
+
{
|
|
2121
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
2122
|
+
},
|
|
2123
|
+
{
|
|
2124
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
2125
|
+
},
|
|
2126
|
+
{
|
|
2127
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
2128
|
+
},
|
|
1810
2129
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
1811
2130
|
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
1812
2131
|
{
|
|
@@ -1954,6 +2273,10 @@ function bulkDeleteDraftPosts(payload) {
|
|
|
1954
2273
|
{
|
|
1955
2274
|
path: "results.item.richContent.nodes.imageData.image.duration"
|
|
1956
2275
|
},
|
|
2276
|
+
{ path: "results.item.richContent.nodes.imageData.crop.x" },
|
|
2277
|
+
{ path: "results.item.richContent.nodes.imageData.crop.y" },
|
|
2278
|
+
{ path: "results.item.richContent.nodes.imageData.crop.width" },
|
|
2279
|
+
{ path: "results.item.richContent.nodes.imageData.crop.height" },
|
|
1957
2280
|
{
|
|
1958
2281
|
path: "results.item.richContent.nodes.mapData.mapSettings.lat"
|
|
1959
2282
|
},
|
|
@@ -1987,9 +2310,27 @@ function bulkDeleteDraftPosts(payload) {
|
|
|
1987
2310
|
{
|
|
1988
2311
|
path: "results.item.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1989
2312
|
},
|
|
2313
|
+
{
|
|
2314
|
+
path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
2315
|
+
},
|
|
2316
|
+
{
|
|
2317
|
+
path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
2318
|
+
},
|
|
2319
|
+
{
|
|
2320
|
+
path: "results.item.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
2321
|
+
},
|
|
1990
2322
|
{
|
|
1991
2323
|
path: "results.item.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1992
2324
|
},
|
|
2325
|
+
{
|
|
2326
|
+
path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
2327
|
+
},
|
|
2328
|
+
{
|
|
2329
|
+
path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
2330
|
+
},
|
|
2331
|
+
{
|
|
2332
|
+
path: "results.item.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
2333
|
+
},
|
|
1993
2334
|
{
|
|
1994
2335
|
path: "results.item.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1995
2336
|
},
|
|
@@ -2023,6 +2364,15 @@ function bulkDeleteDraftPosts(payload) {
|
|
|
2023
2364
|
{
|
|
2024
2365
|
path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2025
2366
|
},
|
|
2367
|
+
{
|
|
2368
|
+
path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
2369
|
+
},
|
|
2370
|
+
{
|
|
2371
|
+
path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
2372
|
+
},
|
|
2373
|
+
{
|
|
2374
|
+
path: "results.item.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
2375
|
+
},
|
|
2026
2376
|
{ path: "results.item.richContent.nodes.tocData.fontSize" },
|
|
2027
2377
|
{ path: "results.item.richContent.nodes.tocData.itemSpacing" },
|
|
2028
2378
|
{
|
|
@@ -2126,6 +2476,10 @@ function listDraftPosts(payload) {
|
|
|
2126
2476
|
path: "draftPosts.richContent.nodes.galleryData.options.item.ratio"
|
|
2127
2477
|
},
|
|
2128
2478
|
{ path: "draftPosts.richContent.nodes.imageData.image.duration" },
|
|
2479
|
+
{ path: "draftPosts.richContent.nodes.imageData.crop.x" },
|
|
2480
|
+
{ path: "draftPosts.richContent.nodes.imageData.crop.y" },
|
|
2481
|
+
{ path: "draftPosts.richContent.nodes.imageData.crop.width" },
|
|
2482
|
+
{ path: "draftPosts.richContent.nodes.imageData.crop.height" },
|
|
2129
2483
|
{ path: "draftPosts.richContent.nodes.mapData.mapSettings.lat" },
|
|
2130
2484
|
{ path: "draftPosts.richContent.nodes.mapData.mapSettings.lng" },
|
|
2131
2485
|
{
|
|
@@ -2151,9 +2505,27 @@ function listDraftPosts(payload) {
|
|
|
2151
2505
|
{
|
|
2152
2506
|
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2153
2507
|
},
|
|
2508
|
+
{
|
|
2509
|
+
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
2510
|
+
},
|
|
2511
|
+
{
|
|
2512
|
+
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
2513
|
+
},
|
|
2514
|
+
{
|
|
2515
|
+
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
2516
|
+
},
|
|
2154
2517
|
{
|
|
2155
2518
|
path: "draftPosts.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2156
2519
|
},
|
|
2520
|
+
{
|
|
2521
|
+
path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
2522
|
+
},
|
|
2523
|
+
{
|
|
2524
|
+
path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
2525
|
+
},
|
|
2526
|
+
{
|
|
2527
|
+
path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
2528
|
+
},
|
|
2157
2529
|
{
|
|
2158
2530
|
path: "draftPosts.richContent.nodes.layoutData.background.gradient.centerX"
|
|
2159
2531
|
},
|
|
@@ -2185,6 +2557,15 @@ function listDraftPosts(payload) {
|
|
|
2185
2557
|
{
|
|
2186
2558
|
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2187
2559
|
},
|
|
2560
|
+
{
|
|
2561
|
+
path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
2562
|
+
},
|
|
2563
|
+
{
|
|
2564
|
+
path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
2565
|
+
},
|
|
2566
|
+
{
|
|
2567
|
+
path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
2568
|
+
},
|
|
2188
2569
|
{ path: "draftPosts.richContent.nodes.tocData.fontSize" },
|
|
2189
2570
|
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
|
|
2190
2571
|
{
|
|
@@ -2288,6 +2669,10 @@ function getDeletedDraftPost(payload) {
|
|
|
2288
2669
|
path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
|
|
2289
2670
|
},
|
|
2290
2671
|
{ path: "draftPost.richContent.nodes.imageData.image.duration" },
|
|
2672
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.x" },
|
|
2673
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.y" },
|
|
2674
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.width" },
|
|
2675
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.height" },
|
|
2291
2676
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
|
|
2292
2677
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
|
|
2293
2678
|
{
|
|
@@ -2313,9 +2698,27 @@ function getDeletedDraftPost(payload) {
|
|
|
2313
2698
|
{
|
|
2314
2699
|
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2315
2700
|
},
|
|
2701
|
+
{
|
|
2702
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
2703
|
+
},
|
|
2704
|
+
{
|
|
2705
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
2706
|
+
},
|
|
2707
|
+
{
|
|
2708
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
2709
|
+
},
|
|
2316
2710
|
{
|
|
2317
2711
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2318
2712
|
},
|
|
2713
|
+
{
|
|
2714
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
2715
|
+
},
|
|
2716
|
+
{
|
|
2717
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
2718
|
+
},
|
|
2719
|
+
{
|
|
2720
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
2721
|
+
},
|
|
2319
2722
|
{
|
|
2320
2723
|
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
2321
2724
|
},
|
|
@@ -2347,6 +2750,15 @@ function getDeletedDraftPost(payload) {
|
|
|
2347
2750
|
{
|
|
2348
2751
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2349
2752
|
},
|
|
2753
|
+
{
|
|
2754
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
2755
|
+
},
|
|
2756
|
+
{
|
|
2757
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
2758
|
+
},
|
|
2759
|
+
{
|
|
2760
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
2761
|
+
},
|
|
2350
2762
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
2351
2763
|
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
2352
2764
|
{
|
|
@@ -2450,6 +2862,10 @@ function restoreFromTrashBin(payload) {
|
|
|
2450
2862
|
path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
|
|
2451
2863
|
},
|
|
2452
2864
|
{ path: "draftPost.richContent.nodes.imageData.image.duration" },
|
|
2865
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.x" },
|
|
2866
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.y" },
|
|
2867
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.width" },
|
|
2868
|
+
{ path: "draftPost.richContent.nodes.imageData.crop.height" },
|
|
2453
2869
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
|
|
2454
2870
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
|
|
2455
2871
|
{
|
|
@@ -2475,9 +2891,27 @@ function restoreFromTrashBin(payload) {
|
|
|
2475
2891
|
{
|
|
2476
2892
|
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2477
2893
|
},
|
|
2894
|
+
{
|
|
2895
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
2896
|
+
},
|
|
2897
|
+
{
|
|
2898
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
2899
|
+
},
|
|
2900
|
+
{
|
|
2901
|
+
path: "draftPost.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
2902
|
+
},
|
|
2478
2903
|
{
|
|
2479
2904
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2480
2905
|
},
|
|
2906
|
+
{
|
|
2907
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
2908
|
+
},
|
|
2909
|
+
{
|
|
2910
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
2911
|
+
},
|
|
2912
|
+
{
|
|
2913
|
+
path: "draftPost.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
2914
|
+
},
|
|
2481
2915
|
{
|
|
2482
2916
|
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
2483
2917
|
},
|
|
@@ -2509,6 +2943,15 @@ function restoreFromTrashBin(payload) {
|
|
|
2509
2943
|
{
|
|
2510
2944
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2511
2945
|
},
|
|
2946
|
+
{
|
|
2947
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
2948
|
+
},
|
|
2949
|
+
{
|
|
2950
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
2951
|
+
},
|
|
2952
|
+
{
|
|
2953
|
+
path: "draftPost.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
2954
|
+
},
|
|
2512
2955
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
2513
2956
|
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
2514
2957
|
{
|
|
@@ -2524,6 +2967,15 @@ function restoreFromTrashBin(payload) {
|
|
|
2524
2967
|
}
|
|
2525
2968
|
function queryDraftPosts(payload) {
|
|
2526
2969
|
function __queryDraftPosts({ host }) {
|
|
2970
|
+
const serializedData = (0, import_transform_paths.transformPaths)(payload, [
|
|
2971
|
+
{
|
|
2972
|
+
transformFn: import_float.transformSDKFloatToRESTFloat,
|
|
2973
|
+
paths: [
|
|
2974
|
+
{ path: "query.sort.origin.latitude" },
|
|
2975
|
+
{ path: "query.sort.origin.longitude" }
|
|
2976
|
+
]
|
|
2977
|
+
}
|
|
2978
|
+
]);
|
|
2527
2979
|
const metadata = {
|
|
2528
2980
|
entityFqdn: "wix.blog.v3.draft",
|
|
2529
2981
|
method: "POST",
|
|
@@ -2533,9 +2985,9 @@ function queryDraftPosts(payload) {
|
|
|
2533
2985
|
optInTransformResponse: true
|
|
2534
2986
|
},
|
|
2535
2987
|
url: resolveComWixpressNpmCommunitiesPlatformizedBlogV3DraftPostServiceUrl(
|
|
2536
|
-
{ protoPath: "/v3/draft-posts/query", data:
|
|
2988
|
+
{ protoPath: "/v3/draft-posts/query", data: serializedData, host }
|
|
2537
2989
|
),
|
|
2538
|
-
data:
|
|
2990
|
+
data: serializedData,
|
|
2539
2991
|
transformResponse: (payload2) => (0, import_transform_paths.transformPaths)(payload2, [
|
|
2540
2992
|
{
|
|
2541
2993
|
transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
|
|
@@ -2612,6 +3064,10 @@ function queryDraftPosts(payload) {
|
|
|
2612
3064
|
path: "draftPosts.richContent.nodes.galleryData.options.item.ratio"
|
|
2613
3065
|
},
|
|
2614
3066
|
{ path: "draftPosts.richContent.nodes.imageData.image.duration" },
|
|
3067
|
+
{ path: "draftPosts.richContent.nodes.imageData.crop.x" },
|
|
3068
|
+
{ path: "draftPosts.richContent.nodes.imageData.crop.y" },
|
|
3069
|
+
{ path: "draftPosts.richContent.nodes.imageData.crop.width" },
|
|
3070
|
+
{ path: "draftPosts.richContent.nodes.imageData.crop.height" },
|
|
2615
3071
|
{ path: "draftPosts.richContent.nodes.mapData.mapSettings.lat" },
|
|
2616
3072
|
{ path: "draftPosts.richContent.nodes.mapData.mapSettings.lng" },
|
|
2617
3073
|
{
|
|
@@ -2637,9 +3093,27 @@ function queryDraftPosts(payload) {
|
|
|
2637
3093
|
{
|
|
2638
3094
|
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2639
3095
|
},
|
|
3096
|
+
{
|
|
3097
|
+
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerX"
|
|
3098
|
+
},
|
|
3099
|
+
{
|
|
3100
|
+
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.centerY"
|
|
3101
|
+
},
|
|
3102
|
+
{
|
|
3103
|
+
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.overlay.gradient.stops.position"
|
|
3104
|
+
},
|
|
2640
3105
|
{
|
|
2641
3106
|
path: "draftPosts.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2642
3107
|
},
|
|
3108
|
+
{
|
|
3109
|
+
path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerX"
|
|
3110
|
+
},
|
|
3111
|
+
{
|
|
3112
|
+
path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.centerY"
|
|
3113
|
+
},
|
|
3114
|
+
{
|
|
3115
|
+
path: "draftPosts.richContent.nodes.layoutData.backdropImage.overlay.gradient.stops.position"
|
|
3116
|
+
},
|
|
2643
3117
|
{
|
|
2644
3118
|
path: "draftPosts.richContent.nodes.layoutData.background.gradient.centerX"
|
|
2645
3119
|
},
|
|
@@ -2671,6 +3145,15 @@ function queryDraftPosts(payload) {
|
|
|
2671
3145
|
{
|
|
2672
3146
|
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2673
3147
|
},
|
|
3148
|
+
{
|
|
3149
|
+
path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerX"
|
|
3150
|
+
},
|
|
3151
|
+
{
|
|
3152
|
+
path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.centerY"
|
|
3153
|
+
},
|
|
3154
|
+
{
|
|
3155
|
+
path: "draftPosts.richContent.nodes.cardData.backgroundImage.overlay.gradient.stops.position"
|
|
3156
|
+
},
|
|
2674
3157
|
{ path: "draftPosts.richContent.nodes.tocData.fontSize" },
|
|
2675
3158
|
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
|
|
2676
3159
|
{
|
|
@@ -2833,6 +3316,11 @@ var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
|
2833
3316
|
TextAlignment2["JUSTIFY"] = "JUSTIFY";
|
|
2834
3317
|
return TextAlignment2;
|
|
2835
3318
|
})(TextAlignment || {});
|
|
3319
|
+
var LineCap = /* @__PURE__ */ ((LineCap2) => {
|
|
3320
|
+
LineCap2["SQUARE"] = "SQUARE";
|
|
3321
|
+
LineCap2["ROUND"] = "ROUND";
|
|
3322
|
+
return LineCap2;
|
|
3323
|
+
})(LineCap || {});
|
|
2836
3324
|
var LineStyle = /* @__PURE__ */ ((LineStyle2) => {
|
|
2837
3325
|
LineStyle2["SINGLE"] = "SINGLE";
|
|
2838
3326
|
LineStyle2["DOUBLE"] = "DOUBLE";
|
|
@@ -3056,6 +3544,11 @@ var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
|
3056
3544
|
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
3057
3545
|
return ImagePosition2;
|
|
3058
3546
|
})(ImagePosition || {});
|
|
3547
|
+
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
3548
|
+
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
3549
|
+
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
3550
|
+
return LayoutDataBackgroundType2;
|
|
3551
|
+
})(LayoutDataBackgroundType || {});
|
|
3059
3552
|
var BannerOrigin = /* @__PURE__ */ ((BannerOrigin2) => {
|
|
3060
3553
|
BannerOrigin2["IMAGE"] = "IMAGE";
|
|
3061
3554
|
BannerOrigin2["LAYOUT"] = "LAYOUT";
|
|
@@ -3066,11 +3559,6 @@ var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
|
|
|
3066
3559
|
BannerPosition2["BOTTOM"] = "BOTTOM";
|
|
3067
3560
|
return BannerPosition2;
|
|
3068
3561
|
})(BannerPosition || {});
|
|
3069
|
-
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
3070
|
-
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
3071
|
-
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
3072
|
-
return LayoutDataBackgroundType2;
|
|
3073
|
-
})(LayoutDataBackgroundType || {});
|
|
3074
3562
|
var BackdropType = /* @__PURE__ */ ((BackdropType2) => {
|
|
3075
3563
|
BackdropType2["COLOR"] = "COLOR";
|
|
3076
3564
|
BackdropType2["GRADIENT"] = "GRADIENT";
|
|
@@ -3514,6 +4002,7 @@ function publishDraftPost2() {
|
|
|
3514
4002
|
LayoutDataBackgroundTypeOriginal,
|
|
3515
4003
|
LayoutOriginal,
|
|
3516
4004
|
LayoutTypeOriginal,
|
|
4005
|
+
LineCapOriginal,
|
|
3517
4006
|
LineStyleOriginal,
|
|
3518
4007
|
ListStyleOriginal,
|
|
3519
4008
|
MapTypeOriginal,
|