@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.
- package/build/cjs/index.d.ts +1 -1
- package/build/cjs/index.js +745 -13
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +218 -27
- package/build/cjs/index.typings.js +601 -13
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +213 -24
- package/build/cjs/meta.js +598 -12
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +738 -13
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +218 -27
- package/build/es/index.typings.mjs +594 -13
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +213 -24
- package/build/es/meta.mjs +591 -12
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +745 -13
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +218 -27
- package/build/internal/cjs/index.typings.js +601 -13
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +213 -24
- package/build/internal/cjs/meta.js +598 -12
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +738 -13
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +218 -27
- package/build/internal/es/index.typings.mjs +594 -13
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +213 -24
- package/build/internal/es/meta.mjs +591 -12
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -23,8 +23,10 @@ __export(index_exports, {
|
|
|
23
23
|
Alignment: () => Alignment,
|
|
24
24
|
AppType: () => AppType,
|
|
25
25
|
AspectRatio: () => AspectRatio,
|
|
26
|
+
BackdropType: () => BackdropType,
|
|
26
27
|
BackgroundType: () => BackgroundType,
|
|
27
28
|
ButtonDataType: () => ButtonDataType,
|
|
29
|
+
CardDataBackgroundType: () => CardDataBackgroundType,
|
|
28
30
|
ContentFormat: () => ContentFormat,
|
|
29
31
|
Crop: () => Crop,
|
|
30
32
|
DecorationType: () => DecorationType,
|
|
@@ -34,9 +36,13 @@ __export(index_exports, {
|
|
|
34
36
|
FieldSet: () => FieldSet,
|
|
35
37
|
FontType: () => FontType,
|
|
36
38
|
GIFType: () => GIFType,
|
|
39
|
+
GradientType: () => GradientType,
|
|
37
40
|
ImagePosition: () => ImagePosition,
|
|
41
|
+
ImagePositionPosition: () => ImagePositionPosition,
|
|
42
|
+
ImageScalingScaling: () => ImageScalingScaling,
|
|
38
43
|
InitialExpandedItems: () => InitialExpandedItems,
|
|
39
44
|
Layout: () => Layout,
|
|
45
|
+
LayoutDataBackgroundType: () => LayoutDataBackgroundType,
|
|
40
46
|
LayoutType: () => LayoutType,
|
|
41
47
|
LineStyle: () => LineStyle,
|
|
42
48
|
MapType: () => MapType,
|
|
@@ -46,6 +52,7 @@ __export(index_exports, {
|
|
|
46
52
|
Origin: () => Origin,
|
|
47
53
|
Placement: () => Placement,
|
|
48
54
|
PluginContainerDataAlignment: () => PluginContainerDataAlignment,
|
|
55
|
+
PollDesignBackgroundType: () => PollDesignBackgroundType,
|
|
49
56
|
PollLayoutDirection: () => PollLayoutDirection,
|
|
50
57
|
PollLayoutType: () => PollLayoutType,
|
|
51
58
|
Position: () => Position,
|
|
@@ -262,6 +269,24 @@ function createQuestionEntry(payload) {
|
|
|
262
269
|
transformFn: import_float.transformSDKFloatToRESTFloat,
|
|
263
270
|
paths: [
|
|
264
271
|
{ path: "questionEntry.sortOrder" },
|
|
272
|
+
{
|
|
273
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
289
|
+
},
|
|
265
290
|
{
|
|
266
291
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
267
292
|
},
|
|
@@ -303,7 +328,37 @@ function createQuestionEntry(payload) {
|
|
|
303
328
|
{
|
|
304
329
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
305
330
|
},
|
|
331
|
+
{
|
|
332
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
348
|
+
},
|
|
306
349
|
{ path: "questionEntry.richContent.nodes.shapeData.shape.duration" },
|
|
350
|
+
{
|
|
351
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
361
|
+
},
|
|
307
362
|
{ path: "questionEntry.labels.sortOrder" }
|
|
308
363
|
]
|
|
309
364
|
}
|
|
@@ -336,6 +391,24 @@ function createQuestionEntry(payload) {
|
|
|
336
391
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
337
392
|
paths: [
|
|
338
393
|
{ path: "questionEntry.sortOrder" },
|
|
394
|
+
{
|
|
395
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
411
|
+
},
|
|
339
412
|
{
|
|
340
413
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
341
414
|
},
|
|
@@ -387,9 +460,39 @@ function createQuestionEntry(payload) {
|
|
|
387
460
|
{
|
|
388
461
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
389
462
|
},
|
|
463
|
+
{
|
|
464
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
477
|
+
},
|
|
478
|
+
{
|
|
479
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
480
|
+
},
|
|
390
481
|
{
|
|
391
482
|
path: "questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
392
483
|
},
|
|
484
|
+
{
|
|
485
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
495
|
+
},
|
|
393
496
|
{ path: "questionEntry.labels.sortOrder" }
|
|
394
497
|
]
|
|
395
498
|
}
|
|
@@ -429,6 +532,24 @@ function getQuestionEntry(payload) {
|
|
|
429
532
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
430
533
|
paths: [
|
|
431
534
|
{ path: "questionEntry.sortOrder" },
|
|
535
|
+
{
|
|
536
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
552
|
+
},
|
|
432
553
|
{
|
|
433
554
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
434
555
|
},
|
|
@@ -480,9 +601,39 @@ function getQuestionEntry(payload) {
|
|
|
480
601
|
{
|
|
481
602
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
482
603
|
},
|
|
604
|
+
{
|
|
605
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
621
|
+
},
|
|
483
622
|
{
|
|
484
623
|
path: "questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
485
624
|
},
|
|
625
|
+
{
|
|
626
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
636
|
+
},
|
|
486
637
|
{ path: "questionEntry.labels.sortOrder" }
|
|
487
638
|
]
|
|
488
639
|
}
|
|
@@ -512,6 +663,24 @@ function updateQuestionEntry(payload) {
|
|
|
512
663
|
transformFn: import_float.transformSDKFloatToRESTFloat,
|
|
513
664
|
paths: [
|
|
514
665
|
{ path: "questionEntry.sortOrder" },
|
|
666
|
+
{
|
|
667
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
674
|
+
},
|
|
675
|
+
{
|
|
676
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
683
|
+
},
|
|
515
684
|
{
|
|
516
685
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
517
686
|
},
|
|
@@ -553,7 +722,37 @@ function updateQuestionEntry(payload) {
|
|
|
553
722
|
{
|
|
554
723
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
555
724
|
},
|
|
725
|
+
{
|
|
726
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
733
|
+
},
|
|
734
|
+
{
|
|
735
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
742
|
+
},
|
|
556
743
|
{ path: "questionEntry.richContent.nodes.shapeData.shape.duration" },
|
|
744
|
+
{
|
|
745
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
755
|
+
},
|
|
557
756
|
{ path: "questionEntry.labels.sortOrder" }
|
|
558
757
|
]
|
|
559
758
|
}
|
|
@@ -586,6 +785,24 @@ function updateQuestionEntry(payload) {
|
|
|
586
785
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
587
786
|
paths: [
|
|
588
787
|
{ path: "questionEntry.sortOrder" },
|
|
788
|
+
{
|
|
789
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
799
|
+
},
|
|
800
|
+
{
|
|
801
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
805
|
+
},
|
|
589
806
|
{
|
|
590
807
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
591
808
|
},
|
|
@@ -637,9 +854,39 @@ function updateQuestionEntry(payload) {
|
|
|
637
854
|
{
|
|
638
855
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
639
856
|
},
|
|
857
|
+
{
|
|
858
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
874
|
+
},
|
|
640
875
|
{
|
|
641
876
|
path: "questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
642
877
|
},
|
|
878
|
+
{
|
|
879
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
880
|
+
},
|
|
881
|
+
{
|
|
882
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
889
|
+
},
|
|
643
890
|
{ path: "questionEntry.labels.sortOrder" }
|
|
644
891
|
]
|
|
645
892
|
}
|
|
@@ -700,6 +947,24 @@ function listQuestionEntries(payload) {
|
|
|
700
947
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
701
948
|
paths: [
|
|
702
949
|
{ path: "questionEntries.sortOrder" },
|
|
950
|
+
{
|
|
951
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
967
|
+
},
|
|
703
968
|
{
|
|
704
969
|
path: "questionEntries.richContent.nodes.galleryData.items.image.media.duration"
|
|
705
970
|
},
|
|
@@ -751,9 +1016,39 @@ function listQuestionEntries(payload) {
|
|
|
751
1016
|
{
|
|
752
1017
|
path: "questionEntries.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
753
1018
|
},
|
|
1019
|
+
{
|
|
1020
|
+
path: "questionEntries.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
path: "questionEntries.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
path: "questionEntries.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1036
|
+
},
|
|
754
1037
|
{
|
|
755
1038
|
path: "questionEntries.richContent.nodes.shapeData.shape.duration"
|
|
756
1039
|
},
|
|
1040
|
+
{
|
|
1041
|
+
path: "questionEntries.richContent.nodes.cardData.background.gradient.centerX"
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
path: "questionEntries.richContent.nodes.cardData.background.gradient.centerY"
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
path: "questionEntries.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
path: "questionEntries.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1051
|
+
},
|
|
757
1052
|
{ path: "questionEntries.labels.sortOrder" }
|
|
758
1053
|
]
|
|
759
1054
|
}
|
|
@@ -793,6 +1088,24 @@ function queryQuestionEntries(payload) {
|
|
|
793
1088
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
794
1089
|
paths: [
|
|
795
1090
|
{ path: "questionEntries.sortOrder" },
|
|
1091
|
+
{
|
|
1092
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1093
|
+
},
|
|
1094
|
+
{
|
|
1095
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1105
|
+
},
|
|
1106
|
+
{
|
|
1107
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1108
|
+
},
|
|
796
1109
|
{
|
|
797
1110
|
path: "questionEntries.richContent.nodes.galleryData.items.image.media.duration"
|
|
798
1111
|
},
|
|
@@ -844,9 +1157,39 @@ function queryQuestionEntries(payload) {
|
|
|
844
1157
|
{
|
|
845
1158
|
path: "questionEntries.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
846
1159
|
},
|
|
1160
|
+
{
|
|
1161
|
+
path: "questionEntries.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
path: "questionEntries.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1165
|
+
},
|
|
1166
|
+
{
|
|
1167
|
+
path: "questionEntries.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1168
|
+
},
|
|
1169
|
+
{
|
|
1170
|
+
path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1177
|
+
},
|
|
847
1178
|
{
|
|
848
1179
|
path: "questionEntries.richContent.nodes.shapeData.shape.duration"
|
|
849
1180
|
},
|
|
1181
|
+
{
|
|
1182
|
+
path: "questionEntries.richContent.nodes.cardData.background.gradient.centerX"
|
|
1183
|
+
},
|
|
1184
|
+
{
|
|
1185
|
+
path: "questionEntries.richContent.nodes.cardData.background.gradient.centerY"
|
|
1186
|
+
},
|
|
1187
|
+
{
|
|
1188
|
+
path: "questionEntries.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
path: "questionEntries.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1192
|
+
},
|
|
850
1193
|
{ path: "questionEntries.labels.sortOrder" }
|
|
851
1194
|
]
|
|
852
1195
|
}
|
|
@@ -907,6 +1250,24 @@ function updateExtendedFields(payload) {
|
|
|
907
1250
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
908
1251
|
paths: [
|
|
909
1252
|
{ path: "questionEntry.sortOrder" },
|
|
1253
|
+
{
|
|
1254
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1255
|
+
},
|
|
1256
|
+
{
|
|
1257
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1258
|
+
},
|
|
1259
|
+
{
|
|
1260
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1264
|
+
},
|
|
1265
|
+
{
|
|
1266
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1267
|
+
},
|
|
1268
|
+
{
|
|
1269
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1270
|
+
},
|
|
910
1271
|
{
|
|
911
1272
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
912
1273
|
},
|
|
@@ -958,9 +1319,39 @@ function updateExtendedFields(payload) {
|
|
|
958
1319
|
{
|
|
959
1320
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
960
1321
|
},
|
|
1322
|
+
{
|
|
1323
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1324
|
+
},
|
|
1325
|
+
{
|
|
1326
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1327
|
+
},
|
|
1328
|
+
{
|
|
1329
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1330
|
+
},
|
|
1331
|
+
{
|
|
1332
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1333
|
+
},
|
|
1334
|
+
{
|
|
1335
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1336
|
+
},
|
|
1337
|
+
{
|
|
1338
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1339
|
+
},
|
|
961
1340
|
{
|
|
962
1341
|
path: "questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
963
1342
|
},
|
|
1343
|
+
{
|
|
1344
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
1348
|
+
},
|
|
1349
|
+
{
|
|
1350
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1351
|
+
},
|
|
1352
|
+
{
|
|
1353
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1354
|
+
},
|
|
964
1355
|
{ path: "questionEntry.labels.sortOrder" }
|
|
965
1356
|
]
|
|
966
1357
|
}
|
|
@@ -1006,6 +1397,24 @@ function setQuestionEntryLabels(payload) {
|
|
|
1006
1397
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
1007
1398
|
paths: [
|
|
1008
1399
|
{ path: "questionEntry.sortOrder" },
|
|
1400
|
+
{
|
|
1401
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1402
|
+
},
|
|
1403
|
+
{
|
|
1404
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1405
|
+
},
|
|
1406
|
+
{
|
|
1407
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1408
|
+
},
|
|
1409
|
+
{
|
|
1410
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1411
|
+
},
|
|
1412
|
+
{
|
|
1413
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1414
|
+
},
|
|
1415
|
+
{
|
|
1416
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1417
|
+
},
|
|
1009
1418
|
{
|
|
1010
1419
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
1011
1420
|
},
|
|
@@ -1057,9 +1466,39 @@ function setQuestionEntryLabels(payload) {
|
|
|
1057
1466
|
{
|
|
1058
1467
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1059
1468
|
},
|
|
1469
|
+
{
|
|
1470
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1471
|
+
},
|
|
1472
|
+
{
|
|
1473
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1474
|
+
},
|
|
1475
|
+
{
|
|
1476
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1477
|
+
},
|
|
1478
|
+
{
|
|
1479
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1480
|
+
},
|
|
1481
|
+
{
|
|
1482
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1483
|
+
},
|
|
1484
|
+
{
|
|
1485
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1486
|
+
},
|
|
1060
1487
|
{
|
|
1061
1488
|
path: "questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
1062
1489
|
},
|
|
1490
|
+
{
|
|
1491
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
1492
|
+
},
|
|
1493
|
+
{
|
|
1494
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
1495
|
+
},
|
|
1496
|
+
{
|
|
1497
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1498
|
+
},
|
|
1499
|
+
{
|
|
1500
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1501
|
+
},
|
|
1063
1502
|
{ path: "questionEntry.labels.sortOrder" }
|
|
1064
1503
|
]
|
|
1065
1504
|
}
|
|
@@ -1093,6 +1532,24 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1093
1532
|
transformFn: import_float.transformSDKFloatToRESTFloat,
|
|
1094
1533
|
paths: [
|
|
1095
1534
|
{ path: "questionEntries.questionEntry.sortOrder" },
|
|
1535
|
+
{
|
|
1536
|
+
path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1537
|
+
},
|
|
1538
|
+
{
|
|
1539
|
+
path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1540
|
+
},
|
|
1541
|
+
{
|
|
1542
|
+
path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1543
|
+
},
|
|
1544
|
+
{
|
|
1545
|
+
path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1546
|
+
},
|
|
1547
|
+
{
|
|
1548
|
+
path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1549
|
+
},
|
|
1550
|
+
{
|
|
1551
|
+
path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1552
|
+
},
|
|
1096
1553
|
{
|
|
1097
1554
|
path: "questionEntries.questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
1098
1555
|
},
|
|
@@ -1144,9 +1601,39 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1144
1601
|
{
|
|
1145
1602
|
path: "questionEntries.questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1146
1603
|
},
|
|
1604
|
+
{
|
|
1605
|
+
path: "questionEntries.questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1606
|
+
},
|
|
1607
|
+
{
|
|
1608
|
+
path: "questionEntries.questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1609
|
+
},
|
|
1610
|
+
{
|
|
1611
|
+
path: "questionEntries.questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1612
|
+
},
|
|
1613
|
+
{
|
|
1614
|
+
path: "questionEntries.questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1615
|
+
},
|
|
1616
|
+
{
|
|
1617
|
+
path: "questionEntries.questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1618
|
+
},
|
|
1619
|
+
{
|
|
1620
|
+
path: "questionEntries.questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1621
|
+
},
|
|
1147
1622
|
{
|
|
1148
1623
|
path: "questionEntries.questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
1149
1624
|
},
|
|
1625
|
+
{
|
|
1626
|
+
path: "questionEntries.questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
1627
|
+
},
|
|
1628
|
+
{
|
|
1629
|
+
path: "questionEntries.questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
1630
|
+
},
|
|
1631
|
+
{
|
|
1632
|
+
path: "questionEntries.questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1633
|
+
},
|
|
1634
|
+
{
|
|
1635
|
+
path: "questionEntries.questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1636
|
+
},
|
|
1150
1637
|
{ path: "questionEntries.questionEntry.labels.sortOrder" }
|
|
1151
1638
|
]
|
|
1152
1639
|
}
|
|
@@ -1183,6 +1670,24 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1183
1670
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
1184
1671
|
paths: [
|
|
1185
1672
|
{ path: "results.questionEntry.sortOrder" },
|
|
1673
|
+
{
|
|
1674
|
+
path: "results.questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1675
|
+
},
|
|
1676
|
+
{
|
|
1677
|
+
path: "results.questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1678
|
+
},
|
|
1679
|
+
{
|
|
1680
|
+
path: "results.questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1681
|
+
},
|
|
1682
|
+
{
|
|
1683
|
+
path: "results.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1684
|
+
},
|
|
1685
|
+
{
|
|
1686
|
+
path: "results.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1687
|
+
},
|
|
1688
|
+
{
|
|
1689
|
+
path: "results.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1690
|
+
},
|
|
1186
1691
|
{
|
|
1187
1692
|
path: "results.questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
1188
1693
|
},
|
|
@@ -1234,9 +1739,39 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1234
1739
|
{
|
|
1235
1740
|
path: "results.questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1236
1741
|
},
|
|
1742
|
+
{
|
|
1743
|
+
path: "results.questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1744
|
+
},
|
|
1745
|
+
{
|
|
1746
|
+
path: "results.questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1747
|
+
},
|
|
1748
|
+
{
|
|
1749
|
+
path: "results.questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1750
|
+
},
|
|
1751
|
+
{
|
|
1752
|
+
path: "results.questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1753
|
+
},
|
|
1754
|
+
{
|
|
1755
|
+
path: "results.questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1756
|
+
},
|
|
1757
|
+
{
|
|
1758
|
+
path: "results.questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1759
|
+
},
|
|
1237
1760
|
{
|
|
1238
1761
|
path: "results.questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
1239
1762
|
},
|
|
1763
|
+
{
|
|
1764
|
+
path: "results.questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
path: "results.questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
1768
|
+
},
|
|
1769
|
+
{
|
|
1770
|
+
path: "results.questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1771
|
+
},
|
|
1772
|
+
{
|
|
1773
|
+
path: "results.questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1774
|
+
},
|
|
1240
1775
|
{ path: "results.questionEntry.labels.sortOrder" }
|
|
1241
1776
|
]
|
|
1242
1777
|
}
|
|
@@ -1285,8 +1820,19 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
1285
1820
|
NodeType2["LAYOUT"] = "LAYOUT";
|
|
1286
1821
|
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
1287
1822
|
NodeType2["SHAPE"] = "SHAPE";
|
|
1823
|
+
NodeType2["CARD"] = "CARD";
|
|
1288
1824
|
return NodeType2;
|
|
1289
1825
|
})(NodeType || {});
|
|
1826
|
+
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
1827
|
+
BackgroundType2["COLOR"] = "COLOR";
|
|
1828
|
+
BackgroundType2["GRADIENT"] = "GRADIENT";
|
|
1829
|
+
return BackgroundType2;
|
|
1830
|
+
})(BackgroundType || {});
|
|
1831
|
+
var GradientType = /* @__PURE__ */ ((GradientType2) => {
|
|
1832
|
+
GradientType2["LINEAR"] = "LINEAR";
|
|
1833
|
+
GradientType2["RADIAL"] = "RADIAL";
|
|
1834
|
+
return GradientType2;
|
|
1835
|
+
})(GradientType || {});
|
|
1290
1836
|
var WidthType = /* @__PURE__ */ ((WidthType2) => {
|
|
1291
1837
|
WidthType2["CONTENT"] = "CONTENT";
|
|
1292
1838
|
WidthType2["SMALL"] = "SMALL";
|
|
@@ -1422,12 +1968,12 @@ var PollLayoutDirection = /* @__PURE__ */ ((PollLayoutDirection2) => {
|
|
|
1422
1968
|
PollLayoutDirection2["RTL"] = "RTL";
|
|
1423
1969
|
return PollLayoutDirection2;
|
|
1424
1970
|
})(PollLayoutDirection || {});
|
|
1425
|
-
var
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
return
|
|
1430
|
-
})(
|
|
1971
|
+
var PollDesignBackgroundType = /* @__PURE__ */ ((PollDesignBackgroundType2) => {
|
|
1972
|
+
PollDesignBackgroundType2["COLOR"] = "COLOR";
|
|
1973
|
+
PollDesignBackgroundType2["IMAGE"] = "IMAGE";
|
|
1974
|
+
PollDesignBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
1975
|
+
return PollDesignBackgroundType2;
|
|
1976
|
+
})(PollDesignBackgroundType || {});
|
|
1431
1977
|
var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
1432
1978
|
DecorationType2["BOLD"] = "BOLD";
|
|
1433
1979
|
DecorationType2["ITALIC"] = "ITALIC";
|
|
@@ -1514,12 +2060,12 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
1514
2060
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
1515
2061
|
return NullValue2;
|
|
1516
2062
|
})(NullValue || {});
|
|
1517
|
-
var
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
return
|
|
1522
|
-
})(
|
|
2063
|
+
var ImageScalingScaling = /* @__PURE__ */ ((ImageScalingScaling2) => {
|
|
2064
|
+
ImageScalingScaling2["AUTO"] = "AUTO";
|
|
2065
|
+
ImageScalingScaling2["CONTAIN"] = "CONTAIN";
|
|
2066
|
+
ImageScalingScaling2["COVER"] = "COVER";
|
|
2067
|
+
return ImageScalingScaling2;
|
|
2068
|
+
})(ImageScalingScaling || {});
|
|
1523
2069
|
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
1524
2070
|
ImagePosition2["CENTER"] = "CENTER";
|
|
1525
2071
|
ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
@@ -1537,6 +2083,16 @@ var Origin = /* @__PURE__ */ ((Origin2) => {
|
|
|
1537
2083
|
Origin2["LAYOUT"] = "LAYOUT";
|
|
1538
2084
|
return Origin2;
|
|
1539
2085
|
})(Origin || {});
|
|
2086
|
+
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
2087
|
+
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
2088
|
+
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
2089
|
+
return LayoutDataBackgroundType2;
|
|
2090
|
+
})(LayoutDataBackgroundType || {});
|
|
2091
|
+
var BackdropType = /* @__PURE__ */ ((BackdropType2) => {
|
|
2092
|
+
BackdropType2["COLOR"] = "COLOR";
|
|
2093
|
+
BackdropType2["GRADIENT"] = "GRADIENT";
|
|
2094
|
+
return BackdropType2;
|
|
2095
|
+
})(BackdropType || {});
|
|
1540
2096
|
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
1541
2097
|
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
1542
2098
|
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
@@ -1553,6 +2109,29 @@ var DesignTarget = /* @__PURE__ */ ((DesignTarget2) => {
|
|
|
1553
2109
|
DesignTarget2["CELL"] = "CELL";
|
|
1554
2110
|
return DesignTarget2;
|
|
1555
2111
|
})(DesignTarget || {});
|
|
2112
|
+
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
2113
|
+
Scaling2["AUTO"] = "AUTO";
|
|
2114
|
+
Scaling2["CONTAIN"] = "CONTAIN";
|
|
2115
|
+
Scaling2["COVER"] = "COVER";
|
|
2116
|
+
return Scaling2;
|
|
2117
|
+
})(Scaling || {});
|
|
2118
|
+
var ImagePositionPosition = /* @__PURE__ */ ((ImagePositionPosition2) => {
|
|
2119
|
+
ImagePositionPosition2["CENTER"] = "CENTER";
|
|
2120
|
+
ImagePositionPosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
2121
|
+
ImagePositionPosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
2122
|
+
ImagePositionPosition2["TOP"] = "TOP";
|
|
2123
|
+
ImagePositionPosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
2124
|
+
ImagePositionPosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
2125
|
+
ImagePositionPosition2["BOTTOM"] = "BOTTOM";
|
|
2126
|
+
ImagePositionPosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
2127
|
+
ImagePositionPosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
2128
|
+
return ImagePositionPosition2;
|
|
2129
|
+
})(ImagePositionPosition || {});
|
|
2130
|
+
var CardDataBackgroundType = /* @__PURE__ */ ((CardDataBackgroundType2) => {
|
|
2131
|
+
CardDataBackgroundType2["COLOR"] = "COLOR";
|
|
2132
|
+
CardDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
2133
|
+
return CardDataBackgroundType2;
|
|
2134
|
+
})(CardDataBackgroundType || {});
|
|
1556
2135
|
var QuestionStatus = /* @__PURE__ */ ((QuestionStatus2) => {
|
|
1557
2136
|
QuestionStatus2["UNKNOWN"] = "UNKNOWN";
|
|
1558
2137
|
QuestionStatus2["VISIBLE"] = "VISIBLE";
|
|
@@ -1823,7 +2402,9 @@ async function typedQueryQuestionEntries(query, options) {
|
|
|
1823
2402
|
}
|
|
1824
2403
|
}
|
|
1825
2404
|
var utils = {
|
|
1826
|
-
|
|
2405
|
+
query: {
|
|
2406
|
+
...(0, import_query_builder_utils.createQueryUtils)()
|
|
2407
|
+
}
|
|
1827
2408
|
};
|
|
1828
2409
|
async function bulkDeleteQuestionEntries2(questionEntryIds) {
|
|
1829
2410
|
const { httpClient, sideEffects } = arguments[1];
|
|
@@ -2057,6 +2638,24 @@ var onQuestionEntryCreated = (0, import_sdk_types.EventDefinition)(
|
|
|
2057
2638
|
transformFn: import_float3.transformRESTFloatToSDKFloat,
|
|
2058
2639
|
paths: [
|
|
2059
2640
|
{ path: "entity.sortOrder" },
|
|
2641
|
+
{
|
|
2642
|
+
path: "entity.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
2643
|
+
},
|
|
2644
|
+
{
|
|
2645
|
+
path: "entity.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
2646
|
+
},
|
|
2647
|
+
{
|
|
2648
|
+
path: "entity.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
2649
|
+
},
|
|
2650
|
+
{
|
|
2651
|
+
path: "entity.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
2652
|
+
},
|
|
2653
|
+
{
|
|
2654
|
+
path: "entity.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
2655
|
+
},
|
|
2656
|
+
{
|
|
2657
|
+
path: "entity.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
2658
|
+
},
|
|
2060
2659
|
{
|
|
2061
2660
|
path: "entity.richContent.nodes.galleryData.items.image.media.duration"
|
|
2062
2661
|
},
|
|
@@ -2088,7 +2687,37 @@ var onQuestionEntryCreated = (0, import_sdk_types.EventDefinition)(
|
|
|
2088
2687
|
{
|
|
2089
2688
|
path: "entity.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2090
2689
|
},
|
|
2690
|
+
{
|
|
2691
|
+
path: "entity.richContent.nodes.layoutData.background.gradient.centerX"
|
|
2692
|
+
},
|
|
2693
|
+
{
|
|
2694
|
+
path: "entity.richContent.nodes.layoutData.background.gradient.centerY"
|
|
2695
|
+
},
|
|
2696
|
+
{
|
|
2697
|
+
path: "entity.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
2698
|
+
},
|
|
2699
|
+
{
|
|
2700
|
+
path: "entity.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
2701
|
+
},
|
|
2702
|
+
{
|
|
2703
|
+
path: "entity.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
2704
|
+
},
|
|
2705
|
+
{
|
|
2706
|
+
path: "entity.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
2707
|
+
},
|
|
2091
2708
|
{ path: "entity.richContent.nodes.shapeData.shape.duration" },
|
|
2709
|
+
{
|
|
2710
|
+
path: "entity.richContent.nodes.cardData.background.gradient.centerX"
|
|
2711
|
+
},
|
|
2712
|
+
{
|
|
2713
|
+
path: "entity.richContent.nodes.cardData.background.gradient.centerY"
|
|
2714
|
+
},
|
|
2715
|
+
{
|
|
2716
|
+
path: "entity.richContent.nodes.cardData.background.gradient.stops.position"
|
|
2717
|
+
},
|
|
2718
|
+
{
|
|
2719
|
+
path: "entity.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2720
|
+
},
|
|
2092
2721
|
{ path: "entity.labels.sortOrder" }
|
|
2093
2722
|
]
|
|
2094
2723
|
}
|
|
@@ -2114,6 +2743,24 @@ var onQuestionEntryDeleted = (0, import_sdk_types.EventDefinition)(
|
|
|
2114
2743
|
transformFn: import_float3.transformRESTFloatToSDKFloat,
|
|
2115
2744
|
paths: [
|
|
2116
2745
|
{ path: "undefined.sortOrder" },
|
|
2746
|
+
{
|
|
2747
|
+
path: "undefined.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
2748
|
+
},
|
|
2749
|
+
{
|
|
2750
|
+
path: "undefined.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
2751
|
+
},
|
|
2752
|
+
{
|
|
2753
|
+
path: "undefined.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
2754
|
+
},
|
|
2755
|
+
{
|
|
2756
|
+
path: "undefined.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
2757
|
+
},
|
|
2758
|
+
{
|
|
2759
|
+
path: "undefined.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
2760
|
+
},
|
|
2761
|
+
{
|
|
2762
|
+
path: "undefined.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
2763
|
+
},
|
|
2117
2764
|
{
|
|
2118
2765
|
path: "undefined.richContent.nodes.galleryData.items.image.media.duration"
|
|
2119
2766
|
},
|
|
@@ -2153,7 +2800,37 @@ var onQuestionEntryDeleted = (0, import_sdk_types.EventDefinition)(
|
|
|
2153
2800
|
{
|
|
2154
2801
|
path: "undefined.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2155
2802
|
},
|
|
2803
|
+
{
|
|
2804
|
+
path: "undefined.richContent.nodes.layoutData.background.gradient.centerX"
|
|
2805
|
+
},
|
|
2806
|
+
{
|
|
2807
|
+
path: "undefined.richContent.nodes.layoutData.background.gradient.centerY"
|
|
2808
|
+
},
|
|
2809
|
+
{
|
|
2810
|
+
path: "undefined.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
2811
|
+
},
|
|
2812
|
+
{
|
|
2813
|
+
path: "undefined.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
2814
|
+
},
|
|
2815
|
+
{
|
|
2816
|
+
path: "undefined.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
2817
|
+
},
|
|
2818
|
+
{
|
|
2819
|
+
path: "undefined.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
2820
|
+
},
|
|
2156
2821
|
{ path: "undefined.richContent.nodes.shapeData.shape.duration" },
|
|
2822
|
+
{
|
|
2823
|
+
path: "undefined.richContent.nodes.cardData.background.gradient.centerX"
|
|
2824
|
+
},
|
|
2825
|
+
{
|
|
2826
|
+
path: "undefined.richContent.nodes.cardData.background.gradient.centerY"
|
|
2827
|
+
},
|
|
2828
|
+
{
|
|
2829
|
+
path: "undefined.richContent.nodes.cardData.background.gradient.stops.position"
|
|
2830
|
+
},
|
|
2831
|
+
{
|
|
2832
|
+
path: "undefined.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2833
|
+
},
|
|
2157
2834
|
{ path: "undefined.labels.sortOrder" }
|
|
2158
2835
|
]
|
|
2159
2836
|
}
|
|
@@ -2179,6 +2856,24 @@ var onQuestionEntryUpdated = (0, import_sdk_types.EventDefinition)(
|
|
|
2179
2856
|
transformFn: import_float3.transformRESTFloatToSDKFloat,
|
|
2180
2857
|
paths: [
|
|
2181
2858
|
{ path: "entity.sortOrder" },
|
|
2859
|
+
{
|
|
2860
|
+
path: "entity.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
2861
|
+
},
|
|
2862
|
+
{
|
|
2863
|
+
path: "entity.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
2864
|
+
},
|
|
2865
|
+
{
|
|
2866
|
+
path: "entity.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
2867
|
+
},
|
|
2868
|
+
{
|
|
2869
|
+
path: "entity.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
2870
|
+
},
|
|
2871
|
+
{
|
|
2872
|
+
path: "entity.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
2873
|
+
},
|
|
2874
|
+
{
|
|
2875
|
+
path: "entity.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
2876
|
+
},
|
|
2182
2877
|
{
|
|
2183
2878
|
path: "entity.richContent.nodes.galleryData.items.image.media.duration"
|
|
2184
2879
|
},
|
|
@@ -2210,7 +2905,37 @@ var onQuestionEntryUpdated = (0, import_sdk_types.EventDefinition)(
|
|
|
2210
2905
|
{
|
|
2211
2906
|
path: "entity.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2212
2907
|
},
|
|
2908
|
+
{
|
|
2909
|
+
path: "entity.richContent.nodes.layoutData.background.gradient.centerX"
|
|
2910
|
+
},
|
|
2911
|
+
{
|
|
2912
|
+
path: "entity.richContent.nodes.layoutData.background.gradient.centerY"
|
|
2913
|
+
},
|
|
2914
|
+
{
|
|
2915
|
+
path: "entity.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
2916
|
+
},
|
|
2917
|
+
{
|
|
2918
|
+
path: "entity.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
2919
|
+
},
|
|
2920
|
+
{
|
|
2921
|
+
path: "entity.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
2922
|
+
},
|
|
2923
|
+
{
|
|
2924
|
+
path: "entity.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
2925
|
+
},
|
|
2213
2926
|
{ path: "entity.richContent.nodes.shapeData.shape.duration" },
|
|
2927
|
+
{
|
|
2928
|
+
path: "entity.richContent.nodes.cardData.background.gradient.centerX"
|
|
2929
|
+
},
|
|
2930
|
+
{
|
|
2931
|
+
path: "entity.richContent.nodes.cardData.background.gradient.centerY"
|
|
2932
|
+
},
|
|
2933
|
+
{
|
|
2934
|
+
path: "entity.richContent.nodes.cardData.background.gradient.stops.position"
|
|
2935
|
+
},
|
|
2936
|
+
{
|
|
2937
|
+
path: "entity.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2938
|
+
},
|
|
2214
2939
|
{ path: "entity.labels.sortOrder" }
|
|
2215
2940
|
]
|
|
2216
2941
|
}
|
|
@@ -2257,8 +2982,10 @@ var onQuestionEntryUpdated2 = (0, import_event_definition_modules.createEventMod
|
|
|
2257
2982
|
Alignment,
|
|
2258
2983
|
AppType,
|
|
2259
2984
|
AspectRatio,
|
|
2985
|
+
BackdropType,
|
|
2260
2986
|
BackgroundType,
|
|
2261
2987
|
ButtonDataType,
|
|
2988
|
+
CardDataBackgroundType,
|
|
2262
2989
|
ContentFormat,
|
|
2263
2990
|
Crop,
|
|
2264
2991
|
DecorationType,
|
|
@@ -2268,9 +2995,13 @@ var onQuestionEntryUpdated2 = (0, import_event_definition_modules.createEventMod
|
|
|
2268
2995
|
FieldSet,
|
|
2269
2996
|
FontType,
|
|
2270
2997
|
GIFType,
|
|
2998
|
+
GradientType,
|
|
2271
2999
|
ImagePosition,
|
|
3000
|
+
ImagePositionPosition,
|
|
3001
|
+
ImageScalingScaling,
|
|
2272
3002
|
InitialExpandedItems,
|
|
2273
3003
|
Layout,
|
|
3004
|
+
LayoutDataBackgroundType,
|
|
2274
3005
|
LayoutType,
|
|
2275
3006
|
LineStyle,
|
|
2276
3007
|
MapType,
|
|
@@ -2280,6 +3011,7 @@ var onQuestionEntryUpdated2 = (0, import_event_definition_modules.createEventMod
|
|
|
2280
3011
|
Origin,
|
|
2281
3012
|
Placement,
|
|
2282
3013
|
PluginContainerDataAlignment,
|
|
3014
|
+
PollDesignBackgroundType,
|
|
2283
3015
|
PollLayoutDirection,
|
|
2284
3016
|
PollLayoutType,
|
|
2285
3017
|
Position,
|