@wix/auto_sdk_faq_question-entry 1.0.40 → 1.0.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/build/cjs/index.d.ts +1 -1
  2. package/build/cjs/index.js +745 -13
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +218 -27
  5. package/build/cjs/index.typings.js +601 -13
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +213 -24
  8. package/build/cjs/meta.js +598 -12
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/es/index.d.mts +1 -1
  11. package/build/es/index.mjs +738 -13
  12. package/build/es/index.mjs.map +1 -1
  13. package/build/es/index.typings.d.mts +218 -27
  14. package/build/es/index.typings.mjs +594 -13
  15. package/build/es/index.typings.mjs.map +1 -1
  16. package/build/es/meta.d.mts +213 -24
  17. package/build/es/meta.mjs +591 -12
  18. package/build/es/meta.mjs.map +1 -1
  19. package/build/internal/cjs/index.d.ts +1 -1
  20. package/build/internal/cjs/index.js +745 -13
  21. package/build/internal/cjs/index.js.map +1 -1
  22. package/build/internal/cjs/index.typings.d.ts +218 -27
  23. package/build/internal/cjs/index.typings.js +601 -13
  24. package/build/internal/cjs/index.typings.js.map +1 -1
  25. package/build/internal/cjs/meta.d.ts +213 -24
  26. package/build/internal/cjs/meta.js +598 -12
  27. package/build/internal/cjs/meta.js.map +1 -1
  28. package/build/internal/es/index.d.mts +1 -1
  29. package/build/internal/es/index.mjs +738 -13
  30. package/build/internal/es/index.mjs.map +1 -1
  31. package/build/internal/es/index.typings.d.mts +218 -27
  32. package/build/internal/es/index.typings.mjs +594 -13
  33. package/build/internal/es/index.typings.mjs.map +1 -1
  34. package/build/internal/es/meta.d.mts +213 -24
  35. package/build/internal/es/meta.mjs +591 -12
  36. package/build/internal/es/meta.mjs.map +1 -1
  37. package/package.json +2 -2
@@ -169,6 +169,24 @@ function createQuestionEntry(payload) {
169
169
  transformFn: transformSDKFloatToRESTFloat,
170
170
  paths: [
171
171
  { path: "questionEntry.sortOrder" },
172
+ {
173
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
174
+ },
175
+ {
176
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
177
+ },
178
+ {
179
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
180
+ },
181
+ {
182
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
183
+ },
184
+ {
185
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
186
+ },
187
+ {
188
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
189
+ },
172
190
  {
173
191
  path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
174
192
  },
@@ -210,7 +228,37 @@ function createQuestionEntry(payload) {
210
228
  {
211
229
  path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
212
230
  },
231
+ {
232
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
233
+ },
234
+ {
235
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
236
+ },
237
+ {
238
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
239
+ },
240
+ {
241
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
242
+ },
243
+ {
244
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
245
+ },
246
+ {
247
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
248
+ },
213
249
  { path: "questionEntry.richContent.nodes.shapeData.shape.duration" },
250
+ {
251
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
252
+ },
253
+ {
254
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
255
+ },
256
+ {
257
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
258
+ },
259
+ {
260
+ path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
261
+ },
214
262
  { path: "questionEntry.labels.sortOrder" }
215
263
  ]
216
264
  }
@@ -243,6 +291,24 @@ function createQuestionEntry(payload) {
243
291
  transformFn: transformRESTFloatToSDKFloat,
244
292
  paths: [
245
293
  { path: "questionEntry.sortOrder" },
294
+ {
295
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
296
+ },
297
+ {
298
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
299
+ },
300
+ {
301
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
302
+ },
303
+ {
304
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
305
+ },
306
+ {
307
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
308
+ },
309
+ {
310
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
311
+ },
246
312
  {
247
313
  path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
248
314
  },
@@ -294,9 +360,39 @@ function createQuestionEntry(payload) {
294
360
  {
295
361
  path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
296
362
  },
363
+ {
364
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
365
+ },
366
+ {
367
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
368
+ },
369
+ {
370
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
371
+ },
372
+ {
373
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
374
+ },
375
+ {
376
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
377
+ },
378
+ {
379
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
380
+ },
297
381
  {
298
382
  path: "questionEntry.richContent.nodes.shapeData.shape.duration"
299
383
  },
384
+ {
385
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
386
+ },
387
+ {
388
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
389
+ },
390
+ {
391
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
392
+ },
393
+ {
394
+ path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
395
+ },
300
396
  { path: "questionEntry.labels.sortOrder" }
301
397
  ]
302
398
  }
@@ -336,6 +432,24 @@ function getQuestionEntry(payload) {
336
432
  transformFn: transformRESTFloatToSDKFloat,
337
433
  paths: [
338
434
  { path: "questionEntry.sortOrder" },
435
+ {
436
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
437
+ },
438
+ {
439
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
440
+ },
441
+ {
442
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
443
+ },
444
+ {
445
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
446
+ },
447
+ {
448
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
449
+ },
450
+ {
451
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
452
+ },
339
453
  {
340
454
  path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
341
455
  },
@@ -387,9 +501,39 @@ function getQuestionEntry(payload) {
387
501
  {
388
502
  path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
389
503
  },
504
+ {
505
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
506
+ },
507
+ {
508
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
509
+ },
510
+ {
511
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
512
+ },
513
+ {
514
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
515
+ },
516
+ {
517
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
518
+ },
519
+ {
520
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
521
+ },
390
522
  {
391
523
  path: "questionEntry.richContent.nodes.shapeData.shape.duration"
392
524
  },
525
+ {
526
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
527
+ },
528
+ {
529
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
530
+ },
531
+ {
532
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
533
+ },
534
+ {
535
+ path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
536
+ },
393
537
  { path: "questionEntry.labels.sortOrder" }
394
538
  ]
395
539
  }
@@ -419,6 +563,24 @@ function updateQuestionEntry(payload) {
419
563
  transformFn: transformSDKFloatToRESTFloat,
420
564
  paths: [
421
565
  { path: "questionEntry.sortOrder" },
566
+ {
567
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
568
+ },
569
+ {
570
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
571
+ },
572
+ {
573
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
574
+ },
575
+ {
576
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
577
+ },
578
+ {
579
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
580
+ },
581
+ {
582
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
583
+ },
422
584
  {
423
585
  path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
424
586
  },
@@ -460,7 +622,37 @@ function updateQuestionEntry(payload) {
460
622
  {
461
623
  path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
462
624
  },
625
+ {
626
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
627
+ },
628
+ {
629
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
630
+ },
631
+ {
632
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
633
+ },
634
+ {
635
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
636
+ },
637
+ {
638
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
639
+ },
640
+ {
641
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
642
+ },
463
643
  { path: "questionEntry.richContent.nodes.shapeData.shape.duration" },
644
+ {
645
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
646
+ },
647
+ {
648
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
649
+ },
650
+ {
651
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
652
+ },
653
+ {
654
+ path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
655
+ },
464
656
  { path: "questionEntry.labels.sortOrder" }
465
657
  ]
466
658
  }
@@ -493,6 +685,24 @@ function updateQuestionEntry(payload) {
493
685
  transformFn: transformRESTFloatToSDKFloat,
494
686
  paths: [
495
687
  { path: "questionEntry.sortOrder" },
688
+ {
689
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
690
+ },
691
+ {
692
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
693
+ },
694
+ {
695
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
696
+ },
697
+ {
698
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
699
+ },
700
+ {
701
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
702
+ },
703
+ {
704
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
705
+ },
496
706
  {
497
707
  path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
498
708
  },
@@ -544,9 +754,39 @@ function updateQuestionEntry(payload) {
544
754
  {
545
755
  path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
546
756
  },
757
+ {
758
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
759
+ },
760
+ {
761
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
762
+ },
763
+ {
764
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
765
+ },
766
+ {
767
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
768
+ },
769
+ {
770
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
771
+ },
772
+ {
773
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
774
+ },
547
775
  {
548
776
  path: "questionEntry.richContent.nodes.shapeData.shape.duration"
549
777
  },
778
+ {
779
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
780
+ },
781
+ {
782
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
783
+ },
784
+ {
785
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
786
+ },
787
+ {
788
+ path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
789
+ },
550
790
  { path: "questionEntry.labels.sortOrder" }
551
791
  ]
552
792
  }
@@ -607,6 +847,24 @@ function listQuestionEntries(payload) {
607
847
  transformFn: transformRESTFloatToSDKFloat,
608
848
  paths: [
609
849
  { path: "questionEntries.sortOrder" },
850
+ {
851
+ path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.centerX"
852
+ },
853
+ {
854
+ path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.centerY"
855
+ },
856
+ {
857
+ path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.stops.position"
858
+ },
859
+ {
860
+ path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
861
+ },
862
+ {
863
+ path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
864
+ },
865
+ {
866
+ path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
867
+ },
610
868
  {
611
869
  path: "questionEntries.richContent.nodes.galleryData.items.image.media.duration"
612
870
  },
@@ -658,9 +916,39 @@ function listQuestionEntries(payload) {
658
916
  {
659
917
  path: "questionEntries.richContent.nodes.layoutData.backdropImage.media.duration"
660
918
  },
919
+ {
920
+ path: "questionEntries.richContent.nodes.layoutData.background.gradient.centerX"
921
+ },
922
+ {
923
+ path: "questionEntries.richContent.nodes.layoutData.background.gradient.centerY"
924
+ },
925
+ {
926
+ path: "questionEntries.richContent.nodes.layoutData.background.gradient.stops.position"
927
+ },
928
+ {
929
+ path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.centerX"
930
+ },
931
+ {
932
+ path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.centerY"
933
+ },
934
+ {
935
+ path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.stops.position"
936
+ },
661
937
  {
662
938
  path: "questionEntries.richContent.nodes.shapeData.shape.duration"
663
939
  },
940
+ {
941
+ path: "questionEntries.richContent.nodes.cardData.background.gradient.centerX"
942
+ },
943
+ {
944
+ path: "questionEntries.richContent.nodes.cardData.background.gradient.centerY"
945
+ },
946
+ {
947
+ path: "questionEntries.richContent.nodes.cardData.background.gradient.stops.position"
948
+ },
949
+ {
950
+ path: "questionEntries.richContent.nodes.cardData.backgroundImage.media.duration"
951
+ },
664
952
  { path: "questionEntries.labels.sortOrder" }
665
953
  ]
666
954
  }
@@ -700,6 +988,24 @@ function queryQuestionEntries(payload) {
700
988
  transformFn: transformRESTFloatToSDKFloat,
701
989
  paths: [
702
990
  { path: "questionEntries.sortOrder" },
991
+ {
992
+ path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.centerX"
993
+ },
994
+ {
995
+ path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.centerY"
996
+ },
997
+ {
998
+ path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.stops.position"
999
+ },
1000
+ {
1001
+ path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
1002
+ },
1003
+ {
1004
+ path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
1005
+ },
1006
+ {
1007
+ path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
1008
+ },
703
1009
  {
704
1010
  path: "questionEntries.richContent.nodes.galleryData.items.image.media.duration"
705
1011
  },
@@ -751,9 +1057,39 @@ function queryQuestionEntries(payload) {
751
1057
  {
752
1058
  path: "questionEntries.richContent.nodes.layoutData.backdropImage.media.duration"
753
1059
  },
1060
+ {
1061
+ path: "questionEntries.richContent.nodes.layoutData.background.gradient.centerX"
1062
+ },
1063
+ {
1064
+ path: "questionEntries.richContent.nodes.layoutData.background.gradient.centerY"
1065
+ },
1066
+ {
1067
+ path: "questionEntries.richContent.nodes.layoutData.background.gradient.stops.position"
1068
+ },
1069
+ {
1070
+ path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.centerX"
1071
+ },
1072
+ {
1073
+ path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.centerY"
1074
+ },
1075
+ {
1076
+ path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.stops.position"
1077
+ },
754
1078
  {
755
1079
  path: "questionEntries.richContent.nodes.shapeData.shape.duration"
756
1080
  },
1081
+ {
1082
+ path: "questionEntries.richContent.nodes.cardData.background.gradient.centerX"
1083
+ },
1084
+ {
1085
+ path: "questionEntries.richContent.nodes.cardData.background.gradient.centerY"
1086
+ },
1087
+ {
1088
+ path: "questionEntries.richContent.nodes.cardData.background.gradient.stops.position"
1089
+ },
1090
+ {
1091
+ path: "questionEntries.richContent.nodes.cardData.backgroundImage.media.duration"
1092
+ },
757
1093
  { path: "questionEntries.labels.sortOrder" }
758
1094
  ]
759
1095
  }
@@ -814,6 +1150,24 @@ function updateExtendedFields(payload) {
814
1150
  transformFn: transformRESTFloatToSDKFloat,
815
1151
  paths: [
816
1152
  { path: "questionEntry.sortOrder" },
1153
+ {
1154
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
1155
+ },
1156
+ {
1157
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
1158
+ },
1159
+ {
1160
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
1161
+ },
1162
+ {
1163
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
1164
+ },
1165
+ {
1166
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
1167
+ },
1168
+ {
1169
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
1170
+ },
817
1171
  {
818
1172
  path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
819
1173
  },
@@ -865,9 +1219,39 @@ function updateExtendedFields(payload) {
865
1219
  {
866
1220
  path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
867
1221
  },
1222
+ {
1223
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
1224
+ },
1225
+ {
1226
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
1227
+ },
1228
+ {
1229
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
1230
+ },
1231
+ {
1232
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
1233
+ },
1234
+ {
1235
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
1236
+ },
1237
+ {
1238
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
1239
+ },
868
1240
  {
869
1241
  path: "questionEntry.richContent.nodes.shapeData.shape.duration"
870
1242
  },
1243
+ {
1244
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
1245
+ },
1246
+ {
1247
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
1248
+ },
1249
+ {
1250
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
1251
+ },
1252
+ {
1253
+ path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
1254
+ },
871
1255
  { path: "questionEntry.labels.sortOrder" }
872
1256
  ]
873
1257
  }
@@ -913,6 +1297,24 @@ function setQuestionEntryLabels(payload) {
913
1297
  transformFn: transformRESTFloatToSDKFloat,
914
1298
  paths: [
915
1299
  { path: "questionEntry.sortOrder" },
1300
+ {
1301
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
1302
+ },
1303
+ {
1304
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
1305
+ },
1306
+ {
1307
+ path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
1308
+ },
1309
+ {
1310
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
1311
+ },
1312
+ {
1313
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
1314
+ },
1315
+ {
1316
+ path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
1317
+ },
916
1318
  {
917
1319
  path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
918
1320
  },
@@ -964,9 +1366,39 @@ function setQuestionEntryLabels(payload) {
964
1366
  {
965
1367
  path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
966
1368
  },
1369
+ {
1370
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
1371
+ },
1372
+ {
1373
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
1374
+ },
1375
+ {
1376
+ path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
1377
+ },
1378
+ {
1379
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
1380
+ },
1381
+ {
1382
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
1383
+ },
1384
+ {
1385
+ path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
1386
+ },
967
1387
  {
968
1388
  path: "questionEntry.richContent.nodes.shapeData.shape.duration"
969
1389
  },
1390
+ {
1391
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
1392
+ },
1393
+ {
1394
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
1395
+ },
1396
+ {
1397
+ path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
1398
+ },
1399
+ {
1400
+ path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
1401
+ },
970
1402
  { path: "questionEntry.labels.sortOrder" }
971
1403
  ]
972
1404
  }
@@ -1000,6 +1432,24 @@ function bulkUpdateQuestionEntry(payload) {
1000
1432
  transformFn: transformSDKFloatToRESTFloat,
1001
1433
  paths: [
1002
1434
  { path: "questionEntries.questionEntry.sortOrder" },
1435
+ {
1436
+ path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
1437
+ },
1438
+ {
1439
+ path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
1440
+ },
1441
+ {
1442
+ path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
1443
+ },
1444
+ {
1445
+ path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
1446
+ },
1447
+ {
1448
+ path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
1449
+ },
1450
+ {
1451
+ path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
1452
+ },
1003
1453
  {
1004
1454
  path: "questionEntries.questionEntry.richContent.nodes.galleryData.items.image.media.duration"
1005
1455
  },
@@ -1051,9 +1501,39 @@ function bulkUpdateQuestionEntry(payload) {
1051
1501
  {
1052
1502
  path: "questionEntries.questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
1053
1503
  },
1504
+ {
1505
+ path: "questionEntries.questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
1506
+ },
1507
+ {
1508
+ path: "questionEntries.questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
1509
+ },
1510
+ {
1511
+ path: "questionEntries.questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
1512
+ },
1513
+ {
1514
+ path: "questionEntries.questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
1515
+ },
1516
+ {
1517
+ path: "questionEntries.questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
1518
+ },
1519
+ {
1520
+ path: "questionEntries.questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
1521
+ },
1054
1522
  {
1055
1523
  path: "questionEntries.questionEntry.richContent.nodes.shapeData.shape.duration"
1056
1524
  },
1525
+ {
1526
+ path: "questionEntries.questionEntry.richContent.nodes.cardData.background.gradient.centerX"
1527
+ },
1528
+ {
1529
+ path: "questionEntries.questionEntry.richContent.nodes.cardData.background.gradient.centerY"
1530
+ },
1531
+ {
1532
+ path: "questionEntries.questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
1533
+ },
1534
+ {
1535
+ path: "questionEntries.questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
1536
+ },
1057
1537
  { path: "questionEntries.questionEntry.labels.sortOrder" }
1058
1538
  ]
1059
1539
  }
@@ -1090,6 +1570,24 @@ function bulkUpdateQuestionEntry(payload) {
1090
1570
  transformFn: transformRESTFloatToSDKFloat,
1091
1571
  paths: [
1092
1572
  { path: "results.questionEntry.sortOrder" },
1573
+ {
1574
+ path: "results.questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
1575
+ },
1576
+ {
1577
+ path: "results.questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
1578
+ },
1579
+ {
1580
+ path: "results.questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
1581
+ },
1582
+ {
1583
+ path: "results.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
1584
+ },
1585
+ {
1586
+ path: "results.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
1587
+ },
1588
+ {
1589
+ path: "results.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
1590
+ },
1093
1591
  {
1094
1592
  path: "results.questionEntry.richContent.nodes.galleryData.items.image.media.duration"
1095
1593
  },
@@ -1141,9 +1639,39 @@ function bulkUpdateQuestionEntry(payload) {
1141
1639
  {
1142
1640
  path: "results.questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
1143
1641
  },
1642
+ {
1643
+ path: "results.questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
1644
+ },
1645
+ {
1646
+ path: "results.questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
1647
+ },
1648
+ {
1649
+ path: "results.questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
1650
+ },
1651
+ {
1652
+ path: "results.questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
1653
+ },
1654
+ {
1655
+ path: "results.questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
1656
+ },
1657
+ {
1658
+ path: "results.questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
1659
+ },
1144
1660
  {
1145
1661
  path: "results.questionEntry.richContent.nodes.shapeData.shape.duration"
1146
1662
  },
1663
+ {
1664
+ path: "results.questionEntry.richContent.nodes.cardData.background.gradient.centerX"
1665
+ },
1666
+ {
1667
+ path: "results.questionEntry.richContent.nodes.cardData.background.gradient.centerY"
1668
+ },
1669
+ {
1670
+ path: "results.questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
1671
+ },
1672
+ {
1673
+ path: "results.questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
1674
+ },
1147
1675
  { path: "results.questionEntry.labels.sortOrder" }
1148
1676
  ]
1149
1677
  }
@@ -1192,8 +1720,19 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
1192
1720
  NodeType2["LAYOUT"] = "LAYOUT";
1193
1721
  NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
1194
1722
  NodeType2["SHAPE"] = "SHAPE";
1723
+ NodeType2["CARD"] = "CARD";
1195
1724
  return NodeType2;
1196
1725
  })(NodeType || {});
1726
+ var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
1727
+ BackgroundType2["COLOR"] = "COLOR";
1728
+ BackgroundType2["GRADIENT"] = "GRADIENT";
1729
+ return BackgroundType2;
1730
+ })(BackgroundType || {});
1731
+ var GradientType = /* @__PURE__ */ ((GradientType2) => {
1732
+ GradientType2["LINEAR"] = "LINEAR";
1733
+ GradientType2["RADIAL"] = "RADIAL";
1734
+ return GradientType2;
1735
+ })(GradientType || {});
1197
1736
  var WidthType = /* @__PURE__ */ ((WidthType2) => {
1198
1737
  WidthType2["CONTENT"] = "CONTENT";
1199
1738
  WidthType2["SMALL"] = "SMALL";
@@ -1329,12 +1868,12 @@ var PollLayoutDirection = /* @__PURE__ */ ((PollLayoutDirection2) => {
1329
1868
  PollLayoutDirection2["RTL"] = "RTL";
1330
1869
  return PollLayoutDirection2;
1331
1870
  })(PollLayoutDirection || {});
1332
- var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
1333
- BackgroundType2["COLOR"] = "COLOR";
1334
- BackgroundType2["IMAGE"] = "IMAGE";
1335
- BackgroundType2["GRADIENT"] = "GRADIENT";
1336
- return BackgroundType2;
1337
- })(BackgroundType || {});
1871
+ var PollDesignBackgroundType = /* @__PURE__ */ ((PollDesignBackgroundType2) => {
1872
+ PollDesignBackgroundType2["COLOR"] = "COLOR";
1873
+ PollDesignBackgroundType2["IMAGE"] = "IMAGE";
1874
+ PollDesignBackgroundType2["GRADIENT"] = "GRADIENT";
1875
+ return PollDesignBackgroundType2;
1876
+ })(PollDesignBackgroundType || {});
1338
1877
  var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
1339
1878
  DecorationType2["BOLD"] = "BOLD";
1340
1879
  DecorationType2["ITALIC"] = "ITALIC";
@@ -1421,12 +1960,12 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
1421
1960
  NullValue2["NULL_VALUE"] = "NULL_VALUE";
1422
1961
  return NullValue2;
1423
1962
  })(NullValue || {});
1424
- var Scaling = /* @__PURE__ */ ((Scaling2) => {
1425
- Scaling2["AUTO"] = "AUTO";
1426
- Scaling2["CONTAIN"] = "CONTAIN";
1427
- Scaling2["COVER"] = "COVER";
1428
- return Scaling2;
1429
- })(Scaling || {});
1963
+ var ImageScalingScaling = /* @__PURE__ */ ((ImageScalingScaling2) => {
1964
+ ImageScalingScaling2["AUTO"] = "AUTO";
1965
+ ImageScalingScaling2["CONTAIN"] = "CONTAIN";
1966
+ ImageScalingScaling2["COVER"] = "COVER";
1967
+ return ImageScalingScaling2;
1968
+ })(ImageScalingScaling || {});
1430
1969
  var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
1431
1970
  ImagePosition2["CENTER"] = "CENTER";
1432
1971
  ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
@@ -1444,6 +1983,16 @@ var Origin = /* @__PURE__ */ ((Origin2) => {
1444
1983
  Origin2["LAYOUT"] = "LAYOUT";
1445
1984
  return Origin2;
1446
1985
  })(Origin || {});
1986
+ var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
1987
+ LayoutDataBackgroundType2["COLOR"] = "COLOR";
1988
+ LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
1989
+ return LayoutDataBackgroundType2;
1990
+ })(LayoutDataBackgroundType || {});
1991
+ var BackdropType = /* @__PURE__ */ ((BackdropType2) => {
1992
+ BackdropType2["COLOR"] = "COLOR";
1993
+ BackdropType2["GRADIENT"] = "GRADIENT";
1994
+ return BackdropType2;
1995
+ })(BackdropType || {});
1447
1996
  var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
1448
1997
  VerticalAlignmentAlignment2["TOP"] = "TOP";
1449
1998
  VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
@@ -1460,6 +2009,29 @@ var DesignTarget = /* @__PURE__ */ ((DesignTarget2) => {
1460
2009
  DesignTarget2["CELL"] = "CELL";
1461
2010
  return DesignTarget2;
1462
2011
  })(DesignTarget || {});
2012
+ var Scaling = /* @__PURE__ */ ((Scaling2) => {
2013
+ Scaling2["AUTO"] = "AUTO";
2014
+ Scaling2["CONTAIN"] = "CONTAIN";
2015
+ Scaling2["COVER"] = "COVER";
2016
+ return Scaling2;
2017
+ })(Scaling || {});
2018
+ var ImagePositionPosition = /* @__PURE__ */ ((ImagePositionPosition2) => {
2019
+ ImagePositionPosition2["CENTER"] = "CENTER";
2020
+ ImagePositionPosition2["CENTER_LEFT"] = "CENTER_LEFT";
2021
+ ImagePositionPosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
2022
+ ImagePositionPosition2["TOP"] = "TOP";
2023
+ ImagePositionPosition2["TOP_LEFT"] = "TOP_LEFT";
2024
+ ImagePositionPosition2["TOP_RIGHT"] = "TOP_RIGHT";
2025
+ ImagePositionPosition2["BOTTOM"] = "BOTTOM";
2026
+ ImagePositionPosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
2027
+ ImagePositionPosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
2028
+ return ImagePositionPosition2;
2029
+ })(ImagePositionPosition || {});
2030
+ var CardDataBackgroundType = /* @__PURE__ */ ((CardDataBackgroundType2) => {
2031
+ CardDataBackgroundType2["COLOR"] = "COLOR";
2032
+ CardDataBackgroundType2["GRADIENT"] = "GRADIENT";
2033
+ return CardDataBackgroundType2;
2034
+ })(CardDataBackgroundType || {});
1463
2035
  var QuestionStatus = /* @__PURE__ */ ((QuestionStatus2) => {
1464
2036
  QuestionStatus2["UNKNOWN"] = "UNKNOWN";
1465
2037
  QuestionStatus2["VISIBLE"] = "VISIBLE";
@@ -1730,7 +2302,9 @@ async function typedQueryQuestionEntries(query, options) {
1730
2302
  }
1731
2303
  }
1732
2304
  var utils = {
1733
- ...createQueryUtils()
2305
+ query: {
2306
+ ...createQueryUtils()
2307
+ }
1734
2308
  };
1735
2309
  async function bulkDeleteQuestionEntries2(questionEntryIds) {
1736
2310
  const { httpClient, sideEffects } = arguments[1];
@@ -1865,8 +2439,10 @@ export {
1865
2439
  Alignment,
1866
2440
  AppType,
1867
2441
  AspectRatio,
2442
+ BackdropType,
1868
2443
  BackgroundType,
1869
2444
  ButtonDataType,
2445
+ CardDataBackgroundType,
1870
2446
  ContentFormat,
1871
2447
  Crop,
1872
2448
  DecorationType,
@@ -1876,9 +2452,13 @@ export {
1876
2452
  FieldSet,
1877
2453
  FontType,
1878
2454
  GIFType,
2455
+ GradientType,
1879
2456
  ImagePosition,
2457
+ ImagePositionPosition,
2458
+ ImageScalingScaling,
1880
2459
  InitialExpandedItems,
1881
2460
  Layout,
2461
+ LayoutDataBackgroundType,
1882
2462
  LayoutType,
1883
2463
  LineStyle,
1884
2464
  MapType,
@@ -1888,6 +2468,7 @@ export {
1888
2468
  Origin,
1889
2469
  Placement,
1890
2470
  PluginContainerDataAlignment,
2471
+ PollDesignBackgroundType,
1891
2472
  PollLayoutDirection,
1892
2473
  PollLayoutType,
1893
2474
  Position,