@wix/auto_sdk_blog_draft-posts 1.0.87 → 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 +601 -7
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +210 -110
- package/build/cjs/index.typings.js +508 -7
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +204 -109
- package/build/cjs/meta.js +508 -7
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +599 -7
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +210 -110
- package/build/es/index.typings.mjs +506 -7
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +204 -109
- package/build/es/meta.mjs +506 -7
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +601 -7
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +210 -110
- package/build/internal/cjs/index.typings.js +508 -7
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +204 -109
- package/build/internal/cjs/meta.js +508 -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 +599 -7
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +210 -110
- package/build/internal/es/index.typings.mjs +506 -7
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +204 -109
- package/build/internal/es/meta.mjs +506 -7
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/meta.js
CHANGED
|
@@ -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,
|
|
@@ -77,6 +78,7 @@ __export(meta_exports, {
|
|
|
77
78
|
ThumbnailsAlignmentOriginal: () => ThumbnailsAlignment,
|
|
78
79
|
TotalDraftPostsGroupingFieldOriginal: () => TotalDraftPostsGroupingField,
|
|
79
80
|
TypeOriginal: () => Type,
|
|
81
|
+
VariantOriginal: () => Variant,
|
|
80
82
|
VerticalAlignmentAlignmentOriginal: () => VerticalAlignmentAlignment,
|
|
81
83
|
VerticalAlignmentOriginal: () => VerticalAlignment,
|
|
82
84
|
ViewModeOriginal: () => ViewMode,
|
|
@@ -225,6 +227,10 @@ function resolveComWixpressNpmCommunitiesPlatformizedBlogV3DraftPostServiceUrl(o
|
|
|
225
227
|
{
|
|
226
228
|
srcPath: "/_api/communities-blog-node-api/v3/bulk/moderation",
|
|
227
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"
|
|
228
234
|
}
|
|
229
235
|
],
|
|
230
236
|
"social-blog._base_domain_": [
|
|
@@ -335,6 +341,10 @@ function createDraftPost(payload) {
|
|
|
335
341
|
path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
|
|
336
342
|
},
|
|
337
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" },
|
|
338
348
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
|
|
339
349
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
|
|
340
350
|
{ path: "draftPost.richContent.nodes.pollData.poll.image.duration" },
|
|
@@ -352,9 +362,27 @@ function createDraftPost(payload) {
|
|
|
352
362
|
{
|
|
353
363
|
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
354
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
|
+
},
|
|
355
374
|
{
|
|
356
375
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
357
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
|
+
},
|
|
358
386
|
{
|
|
359
387
|
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
360
388
|
},
|
|
@@ -386,6 +414,15 @@ function createDraftPost(payload) {
|
|
|
386
414
|
{
|
|
387
415
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
388
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
|
+
},
|
|
389
426
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
390
427
|
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
391
428
|
{
|
|
@@ -478,6 +515,10 @@ function createDraftPost(payload) {
|
|
|
478
515
|
path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
|
|
479
516
|
},
|
|
480
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" },
|
|
481
522
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
|
|
482
523
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
|
|
483
524
|
{
|
|
@@ -503,9 +544,27 @@ function createDraftPost(payload) {
|
|
|
503
544
|
{
|
|
504
545
|
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
505
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
|
+
},
|
|
506
556
|
{
|
|
507
557
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
508
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
|
+
},
|
|
509
568
|
{
|
|
510
569
|
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
511
570
|
},
|
|
@@ -537,6 +596,15 @@ function createDraftPost(payload) {
|
|
|
537
596
|
{
|
|
538
597
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
539
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
|
+
},
|
|
540
608
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
541
609
|
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
542
610
|
{
|
|
@@ -624,6 +692,10 @@ function bulkCreateDraftPosts(payload) {
|
|
|
624
692
|
path: "draftPosts.richContent.nodes.galleryData.options.item.ratio"
|
|
625
693
|
},
|
|
626
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" },
|
|
627
699
|
{ path: "draftPosts.richContent.nodes.mapData.mapSettings.lat" },
|
|
628
700
|
{ path: "draftPosts.richContent.nodes.mapData.mapSettings.lng" },
|
|
629
701
|
{ path: "draftPosts.richContent.nodes.pollData.poll.image.duration" },
|
|
@@ -643,9 +715,27 @@ function bulkCreateDraftPosts(payload) {
|
|
|
643
715
|
{
|
|
644
716
|
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
645
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
|
+
},
|
|
646
727
|
{
|
|
647
728
|
path: "draftPosts.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
648
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
|
+
},
|
|
649
739
|
{
|
|
650
740
|
path: "draftPosts.richContent.nodes.layoutData.background.gradient.centerX"
|
|
651
741
|
},
|
|
@@ -677,6 +767,15 @@ function bulkCreateDraftPosts(payload) {
|
|
|
677
767
|
{
|
|
678
768
|
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
679
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
|
+
},
|
|
680
779
|
{ path: "draftPosts.richContent.nodes.tocData.fontSize" },
|
|
681
780
|
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
|
|
682
781
|
{
|
|
@@ -775,6 +874,10 @@ function bulkCreateDraftPosts(payload) {
|
|
|
775
874
|
{
|
|
776
875
|
path: "results.item.richContent.nodes.imageData.image.duration"
|
|
777
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" },
|
|
778
881
|
{
|
|
779
882
|
path: "results.item.richContent.nodes.mapData.mapSettings.lat"
|
|
780
883
|
},
|
|
@@ -808,9 +911,27 @@ function bulkCreateDraftPosts(payload) {
|
|
|
808
911
|
{
|
|
809
912
|
path: "results.item.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
810
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
|
+
},
|
|
811
923
|
{
|
|
812
924
|
path: "results.item.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
813
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
|
+
},
|
|
814
935
|
{
|
|
815
936
|
path: "results.item.richContent.nodes.layoutData.background.gradient.centerX"
|
|
816
937
|
},
|
|
@@ -844,6 +965,15 @@ function bulkCreateDraftPosts(payload) {
|
|
|
844
965
|
{
|
|
845
966
|
path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
846
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
|
+
},
|
|
847
977
|
{ path: "results.item.richContent.nodes.tocData.fontSize" },
|
|
848
978
|
{ path: "results.item.richContent.nodes.tocData.itemSpacing" },
|
|
849
979
|
{
|
|
@@ -950,6 +1080,14 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
950
1080
|
{
|
|
951
1081
|
path: "draftPosts.draftPost.richContent.nodes.imageData.image.duration"
|
|
952
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
|
+
},
|
|
953
1091
|
{
|
|
954
1092
|
path: "draftPosts.draftPost.richContent.nodes.mapData.mapSettings.lat"
|
|
955
1093
|
},
|
|
@@ -983,9 +1121,27 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
983
1121
|
{
|
|
984
1122
|
path: "draftPosts.draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
985
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
|
+
},
|
|
986
1133
|
{
|
|
987
1134
|
path: "draftPosts.draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
988
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
|
+
},
|
|
989
1145
|
{
|
|
990
1146
|
path: "draftPosts.draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
991
1147
|
},
|
|
@@ -1019,6 +1175,15 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
1019
1175
|
{
|
|
1020
1176
|
path: "draftPosts.draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1021
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
|
+
},
|
|
1022
1187
|
{ path: "draftPosts.draftPost.richContent.nodes.tocData.fontSize" },
|
|
1023
1188
|
{
|
|
1024
1189
|
path: "draftPosts.draftPost.richContent.nodes.tocData.itemSpacing"
|
|
@@ -1119,6 +1284,10 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
1119
1284
|
{
|
|
1120
1285
|
path: "results.item.richContent.nodes.imageData.image.duration"
|
|
1121
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" },
|
|
1122
1291
|
{
|
|
1123
1292
|
path: "results.item.richContent.nodes.mapData.mapSettings.lat"
|
|
1124
1293
|
},
|
|
@@ -1152,9 +1321,27 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
1152
1321
|
{
|
|
1153
1322
|
path: "results.item.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1154
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
|
+
},
|
|
1155
1333
|
{
|
|
1156
1334
|
path: "results.item.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1157
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
|
+
},
|
|
1158
1345
|
{
|
|
1159
1346
|
path: "results.item.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1160
1347
|
},
|
|
@@ -1188,6 +1375,15 @@ function bulkUpdateDraftPosts(payload) {
|
|
|
1188
1375
|
{
|
|
1189
1376
|
path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1190
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
|
+
},
|
|
1191
1387
|
{ path: "results.item.richContent.nodes.tocData.fontSize" },
|
|
1192
1388
|
{ path: "results.item.richContent.nodes.tocData.itemSpacing" },
|
|
1193
1389
|
{
|
|
@@ -1291,6 +1487,10 @@ function listDeletedDraftPosts(payload) {
|
|
|
1291
1487
|
path: "draftPosts.richContent.nodes.galleryData.options.item.ratio"
|
|
1292
1488
|
},
|
|
1293
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" },
|
|
1294
1494
|
{ path: "draftPosts.richContent.nodes.mapData.mapSettings.lat" },
|
|
1295
1495
|
{ path: "draftPosts.richContent.nodes.mapData.mapSettings.lng" },
|
|
1296
1496
|
{
|
|
@@ -1316,9 +1516,27 @@ function listDeletedDraftPosts(payload) {
|
|
|
1316
1516
|
{
|
|
1317
1517
|
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1318
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
|
+
},
|
|
1319
1528
|
{
|
|
1320
1529
|
path: "draftPosts.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1321
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
|
+
},
|
|
1322
1540
|
{
|
|
1323
1541
|
path: "draftPosts.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1324
1542
|
},
|
|
@@ -1350,6 +1568,15 @@ function listDeletedDraftPosts(payload) {
|
|
|
1350
1568
|
{
|
|
1351
1569
|
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1352
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
|
+
},
|
|
1353
1580
|
{ path: "draftPosts.richContent.nodes.tocData.fontSize" },
|
|
1354
1581
|
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
|
|
1355
1582
|
{
|
|
@@ -1449,6 +1676,10 @@ function getDraftPost(payload) {
|
|
|
1449
1676
|
path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
|
|
1450
1677
|
},
|
|
1451
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" },
|
|
1452
1683
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
|
|
1453
1684
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
|
|
1454
1685
|
{
|
|
@@ -1474,9 +1705,27 @@ function getDraftPost(payload) {
|
|
|
1474
1705
|
{
|
|
1475
1706
|
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1476
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
|
+
},
|
|
1477
1717
|
{
|
|
1478
1718
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1479
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
|
+
},
|
|
1480
1729
|
{
|
|
1481
1730
|
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1482
1731
|
},
|
|
@@ -1508,6 +1757,15 @@ function getDraftPost(payload) {
|
|
|
1508
1757
|
{
|
|
1509
1758
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1510
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
|
+
},
|
|
1511
1769
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
1512
1770
|
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
1513
1771
|
{
|
|
@@ -1600,6 +1858,10 @@ function updateDraftPost(payload) {
|
|
|
1600
1858
|
path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
|
|
1601
1859
|
},
|
|
1602
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" },
|
|
1603
1865
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
|
|
1604
1866
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
|
|
1605
1867
|
{ path: "draftPost.richContent.nodes.pollData.poll.image.duration" },
|
|
@@ -1617,9 +1879,27 @@ function updateDraftPost(payload) {
|
|
|
1617
1879
|
{
|
|
1618
1880
|
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1619
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
|
+
},
|
|
1620
1891
|
{
|
|
1621
1892
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1622
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
|
+
},
|
|
1623
1903
|
{
|
|
1624
1904
|
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1625
1905
|
},
|
|
@@ -1651,6 +1931,15 @@ function updateDraftPost(payload) {
|
|
|
1651
1931
|
{
|
|
1652
1932
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1653
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
|
+
},
|
|
1654
1943
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
1655
1944
|
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
1656
1945
|
{
|
|
@@ -1747,6 +2036,10 @@ function updateDraftPost(payload) {
|
|
|
1747
2036
|
path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
|
|
1748
2037
|
},
|
|
1749
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" },
|
|
1750
2043
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
|
|
1751
2044
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
|
|
1752
2045
|
{
|
|
@@ -1772,9 +2065,27 @@ function updateDraftPost(payload) {
|
|
|
1772
2065
|
{
|
|
1773
2066
|
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1774
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
|
+
},
|
|
1775
2077
|
{
|
|
1776
2078
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1777
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
|
+
},
|
|
1778
2089
|
{
|
|
1779
2090
|
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1780
2091
|
},
|
|
@@ -1806,6 +2117,15 @@ function updateDraftPost(payload) {
|
|
|
1806
2117
|
{
|
|
1807
2118
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1808
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
|
+
},
|
|
1809
2129
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
1810
2130
|
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
1811
2131
|
{
|
|
@@ -1953,6 +2273,10 @@ function bulkDeleteDraftPosts(payload) {
|
|
|
1953
2273
|
{
|
|
1954
2274
|
path: "results.item.richContent.nodes.imageData.image.duration"
|
|
1955
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" },
|
|
1956
2280
|
{
|
|
1957
2281
|
path: "results.item.richContent.nodes.mapData.mapSettings.lat"
|
|
1958
2282
|
},
|
|
@@ -1986,9 +2310,27 @@ function bulkDeleteDraftPosts(payload) {
|
|
|
1986
2310
|
{
|
|
1987
2311
|
path: "results.item.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
1988
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
|
+
},
|
|
1989
2322
|
{
|
|
1990
2323
|
path: "results.item.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1991
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
|
+
},
|
|
1992
2334
|
{
|
|
1993
2335
|
path: "results.item.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1994
2336
|
},
|
|
@@ -2022,6 +2364,15 @@ function bulkDeleteDraftPosts(payload) {
|
|
|
2022
2364
|
{
|
|
2023
2365
|
path: "results.item.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2024
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
|
+
},
|
|
2025
2376
|
{ path: "results.item.richContent.nodes.tocData.fontSize" },
|
|
2026
2377
|
{ path: "results.item.richContent.nodes.tocData.itemSpacing" },
|
|
2027
2378
|
{
|
|
@@ -2125,6 +2476,10 @@ function listDraftPosts(payload) {
|
|
|
2125
2476
|
path: "draftPosts.richContent.nodes.galleryData.options.item.ratio"
|
|
2126
2477
|
},
|
|
2127
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" },
|
|
2128
2483
|
{ path: "draftPosts.richContent.nodes.mapData.mapSettings.lat" },
|
|
2129
2484
|
{ path: "draftPosts.richContent.nodes.mapData.mapSettings.lng" },
|
|
2130
2485
|
{
|
|
@@ -2150,9 +2505,27 @@ function listDraftPosts(payload) {
|
|
|
2150
2505
|
{
|
|
2151
2506
|
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2152
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
|
+
},
|
|
2153
2517
|
{
|
|
2154
2518
|
path: "draftPosts.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2155
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
|
+
},
|
|
2156
2529
|
{
|
|
2157
2530
|
path: "draftPosts.richContent.nodes.layoutData.background.gradient.centerX"
|
|
2158
2531
|
},
|
|
@@ -2184,6 +2557,15 @@ function listDraftPosts(payload) {
|
|
|
2184
2557
|
{
|
|
2185
2558
|
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2186
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
|
+
},
|
|
2187
2569
|
{ path: "draftPosts.richContent.nodes.tocData.fontSize" },
|
|
2188
2570
|
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
|
|
2189
2571
|
{
|
|
@@ -2287,6 +2669,10 @@ function getDeletedDraftPost(payload) {
|
|
|
2287
2669
|
path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
|
|
2288
2670
|
},
|
|
2289
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" },
|
|
2290
2676
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
|
|
2291
2677
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
|
|
2292
2678
|
{
|
|
@@ -2312,9 +2698,27 @@ function getDeletedDraftPost(payload) {
|
|
|
2312
2698
|
{
|
|
2313
2699
|
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2314
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
|
+
},
|
|
2315
2710
|
{
|
|
2316
2711
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2317
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
|
+
},
|
|
2318
2722
|
{
|
|
2319
2723
|
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
2320
2724
|
},
|
|
@@ -2346,6 +2750,15 @@ function getDeletedDraftPost(payload) {
|
|
|
2346
2750
|
{
|
|
2347
2751
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2348
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
|
+
},
|
|
2349
2762
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
2350
2763
|
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
2351
2764
|
{
|
|
@@ -2449,6 +2862,10 @@ function restoreFromTrashBin(payload) {
|
|
|
2449
2862
|
path: "draftPost.richContent.nodes.galleryData.options.item.ratio"
|
|
2450
2863
|
},
|
|
2451
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" },
|
|
2452
2869
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lat" },
|
|
2453
2870
|
{ path: "draftPost.richContent.nodes.mapData.mapSettings.lng" },
|
|
2454
2871
|
{
|
|
@@ -2474,9 +2891,27 @@ function restoreFromTrashBin(payload) {
|
|
|
2474
2891
|
{
|
|
2475
2892
|
path: "draftPost.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2476
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
|
+
},
|
|
2477
2903
|
{
|
|
2478
2904
|
path: "draftPost.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2479
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
|
+
},
|
|
2480
2915
|
{
|
|
2481
2916
|
path: "draftPost.richContent.nodes.layoutData.background.gradient.centerX"
|
|
2482
2917
|
},
|
|
@@ -2508,6 +2943,15 @@ function restoreFromTrashBin(payload) {
|
|
|
2508
2943
|
{
|
|
2509
2944
|
path: "draftPost.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2510
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
|
+
},
|
|
2511
2955
|
{ path: "draftPost.richContent.nodes.tocData.fontSize" },
|
|
2512
2956
|
{ path: "draftPost.richContent.nodes.tocData.itemSpacing" },
|
|
2513
2957
|
{
|
|
@@ -2523,6 +2967,15 @@ function restoreFromTrashBin(payload) {
|
|
|
2523
2967
|
}
|
|
2524
2968
|
function queryDraftPosts(payload) {
|
|
2525
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
|
+
]);
|
|
2526
2979
|
const metadata = {
|
|
2527
2980
|
entityFqdn: "wix.blog.v3.draft",
|
|
2528
2981
|
method: "POST",
|
|
@@ -2532,9 +2985,9 @@ function queryDraftPosts(payload) {
|
|
|
2532
2985
|
optInTransformResponse: true
|
|
2533
2986
|
},
|
|
2534
2987
|
url: resolveComWixpressNpmCommunitiesPlatformizedBlogV3DraftPostServiceUrl(
|
|
2535
|
-
{ protoPath: "/v3/draft-posts/query", data:
|
|
2988
|
+
{ protoPath: "/v3/draft-posts/query", data: serializedData, host }
|
|
2536
2989
|
),
|
|
2537
|
-
data:
|
|
2990
|
+
data: serializedData,
|
|
2538
2991
|
transformResponse: (payload2) => (0, import_transform_paths.transformPaths)(payload2, [
|
|
2539
2992
|
{
|
|
2540
2993
|
transformFn: import_timestamp2.transformRESTTimestampToSDKTimestamp,
|
|
@@ -2611,6 +3064,10 @@ function queryDraftPosts(payload) {
|
|
|
2611
3064
|
path: "draftPosts.richContent.nodes.galleryData.options.item.ratio"
|
|
2612
3065
|
},
|
|
2613
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" },
|
|
2614
3071
|
{ path: "draftPosts.richContent.nodes.mapData.mapSettings.lat" },
|
|
2615
3072
|
{ path: "draftPosts.richContent.nodes.mapData.mapSettings.lng" },
|
|
2616
3073
|
{
|
|
@@ -2636,9 +3093,27 @@ function queryDraftPosts(payload) {
|
|
|
2636
3093
|
{
|
|
2637
3094
|
path: "draftPosts.richContent.nodes.layoutData.backgroundImage.media.duration"
|
|
2638
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
|
+
},
|
|
2639
3105
|
{
|
|
2640
3106
|
path: "draftPosts.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2641
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
|
+
},
|
|
2642
3117
|
{
|
|
2643
3118
|
path: "draftPosts.richContent.nodes.layoutData.background.gradient.centerX"
|
|
2644
3119
|
},
|
|
@@ -2670,6 +3145,15 @@ function queryDraftPosts(payload) {
|
|
|
2670
3145
|
{
|
|
2671
3146
|
path: "draftPosts.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2672
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
|
+
},
|
|
2673
3157
|
{ path: "draftPosts.richContent.nodes.tocData.fontSize" },
|
|
2674
3158
|
{ path: "draftPosts.richContent.nodes.tocData.itemSpacing" },
|
|
2675
3159
|
{
|
|
@@ -2832,6 +3316,11 @@ var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
|
2832
3316
|
TextAlignment2["JUSTIFY"] = "JUSTIFY";
|
|
2833
3317
|
return TextAlignment2;
|
|
2834
3318
|
})(TextAlignment || {});
|
|
3319
|
+
var LineCap = /* @__PURE__ */ ((LineCap2) => {
|
|
3320
|
+
LineCap2["SQUARE"] = "SQUARE";
|
|
3321
|
+
LineCap2["ROUND"] = "ROUND";
|
|
3322
|
+
return LineCap2;
|
|
3323
|
+
})(LineCap || {});
|
|
2835
3324
|
var LineStyle = /* @__PURE__ */ ((LineStyle2) => {
|
|
2836
3325
|
LineStyle2["SINGLE"] = "SINGLE";
|
|
2837
3326
|
LineStyle2["DOUBLE"] = "DOUBLE";
|
|
@@ -2956,6 +3445,7 @@ var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
|
2956
3445
|
DecorationType2["SUPERSCRIPT"] = "SUPERSCRIPT";
|
|
2957
3446
|
DecorationType2["SUBSCRIPT"] = "SUBSCRIPT";
|
|
2958
3447
|
DecorationType2["FONT_FAMILY"] = "FONT_FAMILY";
|
|
3448
|
+
DecorationType2["SKETCH"] = "SKETCH";
|
|
2959
3449
|
return DecorationType2;
|
|
2960
3450
|
})(DecorationType || {});
|
|
2961
3451
|
var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
@@ -2963,6 +3453,15 @@ var FontType = /* @__PURE__ */ ((FontType2) => {
|
|
|
2963
3453
|
FontType2["EM"] = "EM";
|
|
2964
3454
|
return FontType2;
|
|
2965
3455
|
})(FontType || {});
|
|
3456
|
+
var Variant = /* @__PURE__ */ ((Variant2) => {
|
|
3457
|
+
Variant2["UNDERLINE"] = "UNDERLINE";
|
|
3458
|
+
Variant2["BOX"] = "BOX";
|
|
3459
|
+
Variant2["CIRCLE"] = "CIRCLE";
|
|
3460
|
+
Variant2["HIGHLIGHT"] = "HIGHLIGHT";
|
|
3461
|
+
Variant2["STRIKETHROUGH"] = "STRIKETHROUGH";
|
|
3462
|
+
Variant2["CROSSED_OFF"] = "CROSSED_OFF";
|
|
3463
|
+
return Variant2;
|
|
3464
|
+
})(Variant || {});
|
|
2966
3465
|
var Position = /* @__PURE__ */ ((Position2) => {
|
|
2967
3466
|
Position2["START"] = "START";
|
|
2968
3467
|
Position2["END"] = "END";
|
|
@@ -3045,6 +3544,11 @@ var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
|
3045
3544
|
ImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
3046
3545
|
return ImagePosition2;
|
|
3047
3546
|
})(ImagePosition || {});
|
|
3547
|
+
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
3548
|
+
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
3549
|
+
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
3550
|
+
return LayoutDataBackgroundType2;
|
|
3551
|
+
})(LayoutDataBackgroundType || {});
|
|
3048
3552
|
var BannerOrigin = /* @__PURE__ */ ((BannerOrigin2) => {
|
|
3049
3553
|
BannerOrigin2["IMAGE"] = "IMAGE";
|
|
3050
3554
|
BannerOrigin2["LAYOUT"] = "LAYOUT";
|
|
@@ -3055,11 +3559,6 @@ var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
|
|
|
3055
3559
|
BannerPosition2["BOTTOM"] = "BOTTOM";
|
|
3056
3560
|
return BannerPosition2;
|
|
3057
3561
|
})(BannerPosition || {});
|
|
3058
|
-
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
3059
|
-
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
3060
|
-
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
3061
|
-
return LayoutDataBackgroundType2;
|
|
3062
|
-
})(LayoutDataBackgroundType || {});
|
|
3063
3562
|
var BackdropType = /* @__PURE__ */ ((BackdropType2) => {
|
|
3064
3563
|
BackdropType2["COLOR"] = "COLOR";
|
|
3065
3564
|
BackdropType2["GRADIENT"] = "GRADIENT";
|
|
@@ -3503,6 +4002,7 @@ function publishDraftPost2() {
|
|
|
3503
4002
|
LayoutDataBackgroundTypeOriginal,
|
|
3504
4003
|
LayoutOriginal,
|
|
3505
4004
|
LayoutTypeOriginal,
|
|
4005
|
+
LineCapOriginal,
|
|
3506
4006
|
LineStyleOriginal,
|
|
3507
4007
|
ListStyleOriginal,
|
|
3508
4008
|
MapTypeOriginal,
|
|
@@ -3530,6 +4030,7 @@ function publishDraftPost2() {
|
|
|
3530
4030
|
ThumbnailsAlignmentOriginal,
|
|
3531
4031
|
TotalDraftPostsGroupingFieldOriginal,
|
|
3532
4032
|
TypeOriginal,
|
|
4033
|
+
VariantOriginal,
|
|
3533
4034
|
VerticalAlignmentAlignmentOriginal,
|
|
3534
4035
|
VerticalAlignmentOriginal,
|
|
3535
4036
|
ViewModeOriginal,
|