@wix/auto_sdk_faq_question-entry 1.0.39 → 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 +4 -4
package/build/es/index.mjs
CHANGED
|
@@ -176,6 +176,24 @@ function createQuestionEntry(payload) {
|
|
|
176
176
|
transformFn: transformSDKFloatToRESTFloat,
|
|
177
177
|
paths: [
|
|
178
178
|
{ path: "questionEntry.sortOrder" },
|
|
179
|
+
{
|
|
180
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
196
|
+
},
|
|
179
197
|
{
|
|
180
198
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
181
199
|
},
|
|
@@ -217,7 +235,37 @@ function createQuestionEntry(payload) {
|
|
|
217
235
|
{
|
|
218
236
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
219
237
|
},
|
|
238
|
+
{
|
|
239
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
255
|
+
},
|
|
220
256
|
{ path: "questionEntry.richContent.nodes.shapeData.shape.duration" },
|
|
257
|
+
{
|
|
258
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
268
|
+
},
|
|
221
269
|
{ path: "questionEntry.labels.sortOrder" }
|
|
222
270
|
]
|
|
223
271
|
}
|
|
@@ -250,6 +298,24 @@ function createQuestionEntry(payload) {
|
|
|
250
298
|
transformFn: transformRESTFloatToSDKFloat,
|
|
251
299
|
paths: [
|
|
252
300
|
{ path: "questionEntry.sortOrder" },
|
|
301
|
+
{
|
|
302
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
318
|
+
},
|
|
253
319
|
{
|
|
254
320
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
255
321
|
},
|
|
@@ -301,9 +367,39 @@ function createQuestionEntry(payload) {
|
|
|
301
367
|
{
|
|
302
368
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
303
369
|
},
|
|
370
|
+
{
|
|
371
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
387
|
+
},
|
|
304
388
|
{
|
|
305
389
|
path: "questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
306
390
|
},
|
|
391
|
+
{
|
|
392
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
402
|
+
},
|
|
307
403
|
{ path: "questionEntry.labels.sortOrder" }
|
|
308
404
|
]
|
|
309
405
|
}
|
|
@@ -343,6 +439,24 @@ function getQuestionEntry(payload) {
|
|
|
343
439
|
transformFn: transformRESTFloatToSDKFloat,
|
|
344
440
|
paths: [
|
|
345
441
|
{ path: "questionEntry.sortOrder" },
|
|
442
|
+
{
|
|
443
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
459
|
+
},
|
|
346
460
|
{
|
|
347
461
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
348
462
|
},
|
|
@@ -394,9 +508,39 @@ function getQuestionEntry(payload) {
|
|
|
394
508
|
{
|
|
395
509
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
396
510
|
},
|
|
511
|
+
{
|
|
512
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
528
|
+
},
|
|
397
529
|
{
|
|
398
530
|
path: "questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
399
531
|
},
|
|
532
|
+
{
|
|
533
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
543
|
+
},
|
|
400
544
|
{ path: "questionEntry.labels.sortOrder" }
|
|
401
545
|
]
|
|
402
546
|
}
|
|
@@ -426,6 +570,24 @@ function updateQuestionEntry(payload) {
|
|
|
426
570
|
transformFn: transformSDKFloatToRESTFloat,
|
|
427
571
|
paths: [
|
|
428
572
|
{ path: "questionEntry.sortOrder" },
|
|
573
|
+
{
|
|
574
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
590
|
+
},
|
|
429
591
|
{
|
|
430
592
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
431
593
|
},
|
|
@@ -467,7 +629,37 @@ function updateQuestionEntry(payload) {
|
|
|
467
629
|
{
|
|
468
630
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
469
631
|
},
|
|
632
|
+
{
|
|
633
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
637
|
+
},
|
|
638
|
+
{
|
|
639
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
649
|
+
},
|
|
470
650
|
{ path: "questionEntry.richContent.nodes.shapeData.shape.duration" },
|
|
651
|
+
{
|
|
652
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
656
|
+
},
|
|
657
|
+
{
|
|
658
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
662
|
+
},
|
|
471
663
|
{ path: "questionEntry.labels.sortOrder" }
|
|
472
664
|
]
|
|
473
665
|
}
|
|
@@ -500,6 +692,24 @@ function updateQuestionEntry(payload) {
|
|
|
500
692
|
transformFn: transformRESTFloatToSDKFloat,
|
|
501
693
|
paths: [
|
|
502
694
|
{ path: "questionEntry.sortOrder" },
|
|
695
|
+
{
|
|
696
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
709
|
+
},
|
|
710
|
+
{
|
|
711
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
712
|
+
},
|
|
503
713
|
{
|
|
504
714
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
505
715
|
},
|
|
@@ -551,9 +761,39 @@ function updateQuestionEntry(payload) {
|
|
|
551
761
|
{
|
|
552
762
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
553
763
|
},
|
|
764
|
+
{
|
|
765
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
778
|
+
},
|
|
779
|
+
{
|
|
780
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
781
|
+
},
|
|
554
782
|
{
|
|
555
783
|
path: "questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
556
784
|
},
|
|
785
|
+
{
|
|
786
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
796
|
+
},
|
|
557
797
|
{ path: "questionEntry.labels.sortOrder" }
|
|
558
798
|
]
|
|
559
799
|
}
|
|
@@ -614,6 +854,24 @@ function listQuestionEntries(payload) {
|
|
|
614
854
|
transformFn: transformRESTFloatToSDKFloat,
|
|
615
855
|
paths: [
|
|
616
856
|
{ path: "questionEntries.sortOrder" },
|
|
857
|
+
{
|
|
858
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
859
|
+
},
|
|
860
|
+
{
|
|
861
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
874
|
+
},
|
|
617
875
|
{
|
|
618
876
|
path: "questionEntries.richContent.nodes.galleryData.items.image.media.duration"
|
|
619
877
|
},
|
|
@@ -665,9 +923,39 @@ function listQuestionEntries(payload) {
|
|
|
665
923
|
{
|
|
666
924
|
path: "questionEntries.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
667
925
|
},
|
|
926
|
+
{
|
|
927
|
+
path: "questionEntries.richContent.nodes.layoutData.background.gradient.centerX"
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
path: "questionEntries.richContent.nodes.layoutData.background.gradient.centerY"
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
path: "questionEntries.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
940
|
+
},
|
|
941
|
+
{
|
|
942
|
+
path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
943
|
+
},
|
|
668
944
|
{
|
|
669
945
|
path: "questionEntries.richContent.nodes.shapeData.shape.duration"
|
|
670
946
|
},
|
|
947
|
+
{
|
|
948
|
+
path: "questionEntries.richContent.nodes.cardData.background.gradient.centerX"
|
|
949
|
+
},
|
|
950
|
+
{
|
|
951
|
+
path: "questionEntries.richContent.nodes.cardData.background.gradient.centerY"
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
path: "questionEntries.richContent.nodes.cardData.background.gradient.stops.position"
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
path: "questionEntries.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
958
|
+
},
|
|
671
959
|
{ path: "questionEntries.labels.sortOrder" }
|
|
672
960
|
]
|
|
673
961
|
}
|
|
@@ -707,6 +995,24 @@ function queryQuestionEntries(payload) {
|
|
|
707
995
|
transformFn: transformRESTFloatToSDKFloat,
|
|
708
996
|
paths: [
|
|
709
997
|
{ path: "questionEntries.sortOrder" },
|
|
998
|
+
{
|
|
999
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1000
|
+
},
|
|
1001
|
+
{
|
|
1002
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1015
|
+
},
|
|
710
1016
|
{
|
|
711
1017
|
path: "questionEntries.richContent.nodes.galleryData.items.image.media.duration"
|
|
712
1018
|
},
|
|
@@ -758,9 +1064,39 @@ function queryQuestionEntries(payload) {
|
|
|
758
1064
|
{
|
|
759
1065
|
path: "questionEntries.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
760
1066
|
},
|
|
1067
|
+
{
|
|
1068
|
+
path: "questionEntries.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1069
|
+
},
|
|
1070
|
+
{
|
|
1071
|
+
path: "questionEntries.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
path: "questionEntries.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1081
|
+
},
|
|
1082
|
+
{
|
|
1083
|
+
path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1084
|
+
},
|
|
761
1085
|
{
|
|
762
1086
|
path: "questionEntries.richContent.nodes.shapeData.shape.duration"
|
|
763
1087
|
},
|
|
1088
|
+
{
|
|
1089
|
+
path: "questionEntries.richContent.nodes.cardData.background.gradient.centerX"
|
|
1090
|
+
},
|
|
1091
|
+
{
|
|
1092
|
+
path: "questionEntries.richContent.nodes.cardData.background.gradient.centerY"
|
|
1093
|
+
},
|
|
1094
|
+
{
|
|
1095
|
+
path: "questionEntries.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
path: "questionEntries.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1099
|
+
},
|
|
764
1100
|
{ path: "questionEntries.labels.sortOrder" }
|
|
765
1101
|
]
|
|
766
1102
|
}
|
|
@@ -821,6 +1157,24 @@ function updateExtendedFields(payload) {
|
|
|
821
1157
|
transformFn: transformRESTFloatToSDKFloat,
|
|
822
1158
|
paths: [
|
|
823
1159
|
{ path: "questionEntry.sortOrder" },
|
|
1160
|
+
{
|
|
1161
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1165
|
+
},
|
|
1166
|
+
{
|
|
1167
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1168
|
+
},
|
|
1169
|
+
{
|
|
1170
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1177
|
+
},
|
|
824
1178
|
{
|
|
825
1179
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
826
1180
|
},
|
|
@@ -872,9 +1226,39 @@ function updateExtendedFields(payload) {
|
|
|
872
1226
|
{
|
|
873
1227
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
874
1228
|
},
|
|
1229
|
+
{
|
|
1230
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1231
|
+
},
|
|
1232
|
+
{
|
|
1233
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1240
|
+
},
|
|
1241
|
+
{
|
|
1242
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1243
|
+
},
|
|
1244
|
+
{
|
|
1245
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1246
|
+
},
|
|
875
1247
|
{
|
|
876
1248
|
path: "questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
877
1249
|
},
|
|
1250
|
+
{
|
|
1251
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
1252
|
+
},
|
|
1253
|
+
{
|
|
1254
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
1255
|
+
},
|
|
1256
|
+
{
|
|
1257
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1258
|
+
},
|
|
1259
|
+
{
|
|
1260
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1261
|
+
},
|
|
878
1262
|
{ path: "questionEntry.labels.sortOrder" }
|
|
879
1263
|
]
|
|
880
1264
|
}
|
|
@@ -920,6 +1304,24 @@ function setQuestionEntryLabels(payload) {
|
|
|
920
1304
|
transformFn: transformRESTFloatToSDKFloat,
|
|
921
1305
|
paths: [
|
|
922
1306
|
{ path: "questionEntry.sortOrder" },
|
|
1307
|
+
{
|
|
1308
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1312
|
+
},
|
|
1313
|
+
{
|
|
1314
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1324
|
+
},
|
|
923
1325
|
{
|
|
924
1326
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
925
1327
|
},
|
|
@@ -971,9 +1373,39 @@ function setQuestionEntryLabels(payload) {
|
|
|
971
1373
|
{
|
|
972
1374
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
973
1375
|
},
|
|
1376
|
+
{
|
|
1377
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1381
|
+
},
|
|
1382
|
+
{
|
|
1383
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1384
|
+
},
|
|
1385
|
+
{
|
|
1386
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1390
|
+
},
|
|
1391
|
+
{
|
|
1392
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1393
|
+
},
|
|
974
1394
|
{
|
|
975
1395
|
path: "questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
976
1396
|
},
|
|
1397
|
+
{
|
|
1398
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
1399
|
+
},
|
|
1400
|
+
{
|
|
1401
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
1402
|
+
},
|
|
1403
|
+
{
|
|
1404
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1405
|
+
},
|
|
1406
|
+
{
|
|
1407
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1408
|
+
},
|
|
977
1409
|
{ path: "questionEntry.labels.sortOrder" }
|
|
978
1410
|
]
|
|
979
1411
|
}
|
|
@@ -1007,6 +1439,24 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1007
1439
|
transformFn: transformSDKFloatToRESTFloat,
|
|
1008
1440
|
paths: [
|
|
1009
1441
|
{ path: "questionEntries.questionEntry.sortOrder" },
|
|
1442
|
+
{
|
|
1443
|
+
path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1444
|
+
},
|
|
1445
|
+
{
|
|
1446
|
+
path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1447
|
+
},
|
|
1448
|
+
{
|
|
1449
|
+
path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1453
|
+
},
|
|
1454
|
+
{
|
|
1455
|
+
path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1456
|
+
},
|
|
1457
|
+
{
|
|
1458
|
+
path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1459
|
+
},
|
|
1010
1460
|
{
|
|
1011
1461
|
path: "questionEntries.questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
1012
1462
|
},
|
|
@@ -1058,9 +1508,39 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1058
1508
|
{
|
|
1059
1509
|
path: "questionEntries.questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1060
1510
|
},
|
|
1511
|
+
{
|
|
1512
|
+
path: "questionEntries.questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
path: "questionEntries.questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1516
|
+
},
|
|
1517
|
+
{
|
|
1518
|
+
path: "questionEntries.questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1519
|
+
},
|
|
1520
|
+
{
|
|
1521
|
+
path: "questionEntries.questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1522
|
+
},
|
|
1523
|
+
{
|
|
1524
|
+
path: "questionEntries.questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1525
|
+
},
|
|
1526
|
+
{
|
|
1527
|
+
path: "questionEntries.questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1528
|
+
},
|
|
1061
1529
|
{
|
|
1062
1530
|
path: "questionEntries.questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
1063
1531
|
},
|
|
1532
|
+
{
|
|
1533
|
+
path: "questionEntries.questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
1534
|
+
},
|
|
1535
|
+
{
|
|
1536
|
+
path: "questionEntries.questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
1537
|
+
},
|
|
1538
|
+
{
|
|
1539
|
+
path: "questionEntries.questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1540
|
+
},
|
|
1541
|
+
{
|
|
1542
|
+
path: "questionEntries.questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1543
|
+
},
|
|
1064
1544
|
{ path: "questionEntries.questionEntry.labels.sortOrder" }
|
|
1065
1545
|
]
|
|
1066
1546
|
}
|
|
@@ -1097,6 +1577,24 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1097
1577
|
transformFn: transformRESTFloatToSDKFloat,
|
|
1098
1578
|
paths: [
|
|
1099
1579
|
{ path: "results.questionEntry.sortOrder" },
|
|
1580
|
+
{
|
|
1581
|
+
path: "results.questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1582
|
+
},
|
|
1583
|
+
{
|
|
1584
|
+
path: "results.questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1585
|
+
},
|
|
1586
|
+
{
|
|
1587
|
+
path: "results.questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1588
|
+
},
|
|
1589
|
+
{
|
|
1590
|
+
path: "results.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1591
|
+
},
|
|
1592
|
+
{
|
|
1593
|
+
path: "results.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1594
|
+
},
|
|
1595
|
+
{
|
|
1596
|
+
path: "results.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1597
|
+
},
|
|
1100
1598
|
{
|
|
1101
1599
|
path: "results.questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
1102
1600
|
},
|
|
@@ -1148,9 +1646,39 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1148
1646
|
{
|
|
1149
1647
|
path: "results.questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1150
1648
|
},
|
|
1649
|
+
{
|
|
1650
|
+
path: "results.questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1651
|
+
},
|
|
1652
|
+
{
|
|
1653
|
+
path: "results.questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1654
|
+
},
|
|
1655
|
+
{
|
|
1656
|
+
path: "results.questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1657
|
+
},
|
|
1658
|
+
{
|
|
1659
|
+
path: "results.questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1660
|
+
},
|
|
1661
|
+
{
|
|
1662
|
+
path: "results.questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1663
|
+
},
|
|
1664
|
+
{
|
|
1665
|
+
path: "results.questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1666
|
+
},
|
|
1151
1667
|
{
|
|
1152
1668
|
path: "results.questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
1153
1669
|
},
|
|
1670
|
+
{
|
|
1671
|
+
path: "results.questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
1672
|
+
},
|
|
1673
|
+
{
|
|
1674
|
+
path: "results.questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
1675
|
+
},
|
|
1676
|
+
{
|
|
1677
|
+
path: "results.questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1678
|
+
},
|
|
1679
|
+
{
|
|
1680
|
+
path: "results.questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1681
|
+
},
|
|
1154
1682
|
{ path: "results.questionEntry.labels.sortOrder" }
|
|
1155
1683
|
]
|
|
1156
1684
|
}
|
|
@@ -1199,8 +1727,19 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
1199
1727
|
NodeType2["LAYOUT"] = "LAYOUT";
|
|
1200
1728
|
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
1201
1729
|
NodeType2["SHAPE"] = "SHAPE";
|
|
1730
|
+
NodeType2["CARD"] = "CARD";
|
|
1202
1731
|
return NodeType2;
|
|
1203
1732
|
})(NodeType || {});
|
|
1733
|
+
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
1734
|
+
BackgroundType2["COLOR"] = "COLOR";
|
|
1735
|
+
BackgroundType2["GRADIENT"] = "GRADIENT";
|
|
1736
|
+
return BackgroundType2;
|
|
1737
|
+
})(BackgroundType || {});
|
|
1738
|
+
var GradientType = /* @__PURE__ */ ((GradientType2) => {
|
|
1739
|
+
GradientType2["LINEAR"] = "LINEAR";
|
|
1740
|
+
GradientType2["RADIAL"] = "RADIAL";
|
|
1741
|
+
return GradientType2;
|
|
1742
|
+
})(GradientType || {});
|
|
1204
1743
|
var WidthType = /* @__PURE__ */ ((WidthType2) => {
|
|
1205
1744
|
WidthType2["CONTENT"] = "CONTENT";
|
|
1206
1745
|
WidthType2["SMALL"] = "SMALL";
|
|
@@ -1336,12 +1875,12 @@ var PollLayoutDirection = /* @__PURE__ */ ((PollLayoutDirection2) => {
|
|
|
1336
1875
|
PollLayoutDirection2["RTL"] = "RTL";
|
|
1337
1876
|
return PollLayoutDirection2;
|
|
1338
1877
|
})(PollLayoutDirection || {});
|
|
1339
|
-
var
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
return
|
|
1344
|
-
})(
|
|
1878
|
+
var PollDesignBackgroundType = /* @__PURE__ */ ((PollDesignBackgroundType2) => {
|
|
1879
|
+
PollDesignBackgroundType2["COLOR"] = "COLOR";
|
|
1880
|
+
PollDesignBackgroundType2["IMAGE"] = "IMAGE";
|
|
1881
|
+
PollDesignBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
1882
|
+
return PollDesignBackgroundType2;
|
|
1883
|
+
})(PollDesignBackgroundType || {});
|
|
1345
1884
|
var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
1346
1885
|
DecorationType2["BOLD"] = "BOLD";
|
|
1347
1886
|
DecorationType2["ITALIC"] = "ITALIC";
|
|
@@ -1428,12 +1967,12 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
1428
1967
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
1429
1968
|
return NullValue2;
|
|
1430
1969
|
})(NullValue || {});
|
|
1431
|
-
var
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
return
|
|
1436
|
-
})(
|
|
1970
|
+
var ImageScalingScaling = /* @__PURE__ */ ((ImageScalingScaling2) => {
|
|
1971
|
+
ImageScalingScaling2["AUTO"] = "AUTO";
|
|
1972
|
+
ImageScalingScaling2["CONTAIN"] = "CONTAIN";
|
|
1973
|
+
ImageScalingScaling2["COVER"] = "COVER";
|
|
1974
|
+
return ImageScalingScaling2;
|
|
1975
|
+
})(ImageScalingScaling || {});
|
|
1437
1976
|
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
1438
1977
|
ImagePosition2["CENTER"] = "CENTER";
|
|
1439
1978
|
ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
@@ -1451,6 +1990,16 @@ var Origin = /* @__PURE__ */ ((Origin2) => {
|
|
|
1451
1990
|
Origin2["LAYOUT"] = "LAYOUT";
|
|
1452
1991
|
return Origin2;
|
|
1453
1992
|
})(Origin || {});
|
|
1993
|
+
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
1994
|
+
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
1995
|
+
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
1996
|
+
return LayoutDataBackgroundType2;
|
|
1997
|
+
})(LayoutDataBackgroundType || {});
|
|
1998
|
+
var BackdropType = /* @__PURE__ */ ((BackdropType2) => {
|
|
1999
|
+
BackdropType2["COLOR"] = "COLOR";
|
|
2000
|
+
BackdropType2["GRADIENT"] = "GRADIENT";
|
|
2001
|
+
return BackdropType2;
|
|
2002
|
+
})(BackdropType || {});
|
|
1454
2003
|
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
1455
2004
|
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
1456
2005
|
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
@@ -1467,6 +2016,29 @@ var DesignTarget = /* @__PURE__ */ ((DesignTarget2) => {
|
|
|
1467
2016
|
DesignTarget2["CELL"] = "CELL";
|
|
1468
2017
|
return DesignTarget2;
|
|
1469
2018
|
})(DesignTarget || {});
|
|
2019
|
+
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
2020
|
+
Scaling2["AUTO"] = "AUTO";
|
|
2021
|
+
Scaling2["CONTAIN"] = "CONTAIN";
|
|
2022
|
+
Scaling2["COVER"] = "COVER";
|
|
2023
|
+
return Scaling2;
|
|
2024
|
+
})(Scaling || {});
|
|
2025
|
+
var ImagePositionPosition = /* @__PURE__ */ ((ImagePositionPosition2) => {
|
|
2026
|
+
ImagePositionPosition2["CENTER"] = "CENTER";
|
|
2027
|
+
ImagePositionPosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
2028
|
+
ImagePositionPosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
2029
|
+
ImagePositionPosition2["TOP"] = "TOP";
|
|
2030
|
+
ImagePositionPosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
2031
|
+
ImagePositionPosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
2032
|
+
ImagePositionPosition2["BOTTOM"] = "BOTTOM";
|
|
2033
|
+
ImagePositionPosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
2034
|
+
ImagePositionPosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
2035
|
+
return ImagePositionPosition2;
|
|
2036
|
+
})(ImagePositionPosition || {});
|
|
2037
|
+
var CardDataBackgroundType = /* @__PURE__ */ ((CardDataBackgroundType2) => {
|
|
2038
|
+
CardDataBackgroundType2["COLOR"] = "COLOR";
|
|
2039
|
+
CardDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
2040
|
+
return CardDataBackgroundType2;
|
|
2041
|
+
})(CardDataBackgroundType || {});
|
|
1470
2042
|
var QuestionStatus = /* @__PURE__ */ ((QuestionStatus2) => {
|
|
1471
2043
|
QuestionStatus2["UNKNOWN"] = "UNKNOWN";
|
|
1472
2044
|
QuestionStatus2["VISIBLE"] = "VISIBLE";
|
|
@@ -1737,7 +2309,9 @@ async function typedQueryQuestionEntries(query, options) {
|
|
|
1737
2309
|
}
|
|
1738
2310
|
}
|
|
1739
2311
|
var utils = {
|
|
1740
|
-
|
|
2312
|
+
query: {
|
|
2313
|
+
...createQueryUtils()
|
|
2314
|
+
}
|
|
1741
2315
|
};
|
|
1742
2316
|
async function bulkDeleteQuestionEntries2(questionEntryIds) {
|
|
1743
2317
|
const { httpClient, sideEffects } = arguments[1];
|
|
@@ -1971,6 +2545,24 @@ var onQuestionEntryCreated = EventDefinition(
|
|
|
1971
2545
|
transformFn: transformRESTFloatToSDKFloat2,
|
|
1972
2546
|
paths: [
|
|
1973
2547
|
{ path: "entity.sortOrder" },
|
|
2548
|
+
{
|
|
2549
|
+
path: "entity.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
2550
|
+
},
|
|
2551
|
+
{
|
|
2552
|
+
path: "entity.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
2553
|
+
},
|
|
2554
|
+
{
|
|
2555
|
+
path: "entity.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
2556
|
+
},
|
|
2557
|
+
{
|
|
2558
|
+
path: "entity.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
2559
|
+
},
|
|
2560
|
+
{
|
|
2561
|
+
path: "entity.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
2562
|
+
},
|
|
2563
|
+
{
|
|
2564
|
+
path: "entity.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
2565
|
+
},
|
|
1974
2566
|
{
|
|
1975
2567
|
path: "entity.richContent.nodes.galleryData.items.image.media.duration"
|
|
1976
2568
|
},
|
|
@@ -2002,7 +2594,37 @@ var onQuestionEntryCreated = EventDefinition(
|
|
|
2002
2594
|
{
|
|
2003
2595
|
path: "entity.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2004
2596
|
},
|
|
2597
|
+
{
|
|
2598
|
+
path: "entity.richContent.nodes.layoutData.background.gradient.centerX"
|
|
2599
|
+
},
|
|
2600
|
+
{
|
|
2601
|
+
path: "entity.richContent.nodes.layoutData.background.gradient.centerY"
|
|
2602
|
+
},
|
|
2603
|
+
{
|
|
2604
|
+
path: "entity.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
2605
|
+
},
|
|
2606
|
+
{
|
|
2607
|
+
path: "entity.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
2608
|
+
},
|
|
2609
|
+
{
|
|
2610
|
+
path: "entity.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
2611
|
+
},
|
|
2612
|
+
{
|
|
2613
|
+
path: "entity.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
2614
|
+
},
|
|
2005
2615
|
{ path: "entity.richContent.nodes.shapeData.shape.duration" },
|
|
2616
|
+
{
|
|
2617
|
+
path: "entity.richContent.nodes.cardData.background.gradient.centerX"
|
|
2618
|
+
},
|
|
2619
|
+
{
|
|
2620
|
+
path: "entity.richContent.nodes.cardData.background.gradient.centerY"
|
|
2621
|
+
},
|
|
2622
|
+
{
|
|
2623
|
+
path: "entity.richContent.nodes.cardData.background.gradient.stops.position"
|
|
2624
|
+
},
|
|
2625
|
+
{
|
|
2626
|
+
path: "entity.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2627
|
+
},
|
|
2006
2628
|
{ path: "entity.labels.sortOrder" }
|
|
2007
2629
|
]
|
|
2008
2630
|
}
|
|
@@ -2028,6 +2650,24 @@ var onQuestionEntryDeleted = EventDefinition(
|
|
|
2028
2650
|
transformFn: transformRESTFloatToSDKFloat2,
|
|
2029
2651
|
paths: [
|
|
2030
2652
|
{ path: "undefined.sortOrder" },
|
|
2653
|
+
{
|
|
2654
|
+
path: "undefined.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
2655
|
+
},
|
|
2656
|
+
{
|
|
2657
|
+
path: "undefined.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
2658
|
+
},
|
|
2659
|
+
{
|
|
2660
|
+
path: "undefined.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
2661
|
+
},
|
|
2662
|
+
{
|
|
2663
|
+
path: "undefined.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
2664
|
+
},
|
|
2665
|
+
{
|
|
2666
|
+
path: "undefined.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
2667
|
+
},
|
|
2668
|
+
{
|
|
2669
|
+
path: "undefined.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
2670
|
+
},
|
|
2031
2671
|
{
|
|
2032
2672
|
path: "undefined.richContent.nodes.galleryData.items.image.media.duration"
|
|
2033
2673
|
},
|
|
@@ -2067,7 +2707,37 @@ var onQuestionEntryDeleted = EventDefinition(
|
|
|
2067
2707
|
{
|
|
2068
2708
|
path: "undefined.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2069
2709
|
},
|
|
2710
|
+
{
|
|
2711
|
+
path: "undefined.richContent.nodes.layoutData.background.gradient.centerX"
|
|
2712
|
+
},
|
|
2713
|
+
{
|
|
2714
|
+
path: "undefined.richContent.nodes.layoutData.background.gradient.centerY"
|
|
2715
|
+
},
|
|
2716
|
+
{
|
|
2717
|
+
path: "undefined.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
2718
|
+
},
|
|
2719
|
+
{
|
|
2720
|
+
path: "undefined.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
2721
|
+
},
|
|
2722
|
+
{
|
|
2723
|
+
path: "undefined.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
2724
|
+
},
|
|
2725
|
+
{
|
|
2726
|
+
path: "undefined.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
2727
|
+
},
|
|
2070
2728
|
{ path: "undefined.richContent.nodes.shapeData.shape.duration" },
|
|
2729
|
+
{
|
|
2730
|
+
path: "undefined.richContent.nodes.cardData.background.gradient.centerX"
|
|
2731
|
+
},
|
|
2732
|
+
{
|
|
2733
|
+
path: "undefined.richContent.nodes.cardData.background.gradient.centerY"
|
|
2734
|
+
},
|
|
2735
|
+
{
|
|
2736
|
+
path: "undefined.richContent.nodes.cardData.background.gradient.stops.position"
|
|
2737
|
+
},
|
|
2738
|
+
{
|
|
2739
|
+
path: "undefined.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2740
|
+
},
|
|
2071
2741
|
{ path: "undefined.labels.sortOrder" }
|
|
2072
2742
|
]
|
|
2073
2743
|
}
|
|
@@ -2093,6 +2763,24 @@ var onQuestionEntryUpdated = EventDefinition(
|
|
|
2093
2763
|
transformFn: transformRESTFloatToSDKFloat2,
|
|
2094
2764
|
paths: [
|
|
2095
2765
|
{ path: "entity.sortOrder" },
|
|
2766
|
+
{
|
|
2767
|
+
path: "entity.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
2768
|
+
},
|
|
2769
|
+
{
|
|
2770
|
+
path: "entity.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
2771
|
+
},
|
|
2772
|
+
{
|
|
2773
|
+
path: "entity.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
2774
|
+
},
|
|
2775
|
+
{
|
|
2776
|
+
path: "entity.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
2777
|
+
},
|
|
2778
|
+
{
|
|
2779
|
+
path: "entity.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
2780
|
+
},
|
|
2781
|
+
{
|
|
2782
|
+
path: "entity.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
2783
|
+
},
|
|
2096
2784
|
{
|
|
2097
2785
|
path: "entity.richContent.nodes.galleryData.items.image.media.duration"
|
|
2098
2786
|
},
|
|
@@ -2124,7 +2812,37 @@ var onQuestionEntryUpdated = EventDefinition(
|
|
|
2124
2812
|
{
|
|
2125
2813
|
path: "entity.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
2126
2814
|
},
|
|
2815
|
+
{
|
|
2816
|
+
path: "entity.richContent.nodes.layoutData.background.gradient.centerX"
|
|
2817
|
+
},
|
|
2818
|
+
{
|
|
2819
|
+
path: "entity.richContent.nodes.layoutData.background.gradient.centerY"
|
|
2820
|
+
},
|
|
2821
|
+
{
|
|
2822
|
+
path: "entity.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
2823
|
+
},
|
|
2824
|
+
{
|
|
2825
|
+
path: "entity.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
2826
|
+
},
|
|
2827
|
+
{
|
|
2828
|
+
path: "entity.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
2829
|
+
},
|
|
2830
|
+
{
|
|
2831
|
+
path: "entity.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
2832
|
+
},
|
|
2127
2833
|
{ path: "entity.richContent.nodes.shapeData.shape.duration" },
|
|
2834
|
+
{
|
|
2835
|
+
path: "entity.richContent.nodes.cardData.background.gradient.centerX"
|
|
2836
|
+
},
|
|
2837
|
+
{
|
|
2838
|
+
path: "entity.richContent.nodes.cardData.background.gradient.centerY"
|
|
2839
|
+
},
|
|
2840
|
+
{
|
|
2841
|
+
path: "entity.richContent.nodes.cardData.background.gradient.stops.position"
|
|
2842
|
+
},
|
|
2843
|
+
{
|
|
2844
|
+
path: "entity.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
2845
|
+
},
|
|
2128
2846
|
{ path: "entity.labels.sortOrder" }
|
|
2129
2847
|
]
|
|
2130
2848
|
}
|
|
@@ -2170,8 +2888,10 @@ export {
|
|
|
2170
2888
|
Alignment,
|
|
2171
2889
|
AppType,
|
|
2172
2890
|
AspectRatio,
|
|
2891
|
+
BackdropType,
|
|
2173
2892
|
BackgroundType,
|
|
2174
2893
|
ButtonDataType,
|
|
2894
|
+
CardDataBackgroundType,
|
|
2175
2895
|
ContentFormat,
|
|
2176
2896
|
Crop,
|
|
2177
2897
|
DecorationType,
|
|
@@ -2181,9 +2901,13 @@ export {
|
|
|
2181
2901
|
FieldSet,
|
|
2182
2902
|
FontType,
|
|
2183
2903
|
GIFType,
|
|
2904
|
+
GradientType,
|
|
2184
2905
|
ImagePosition,
|
|
2906
|
+
ImagePositionPosition,
|
|
2907
|
+
ImageScalingScaling,
|
|
2185
2908
|
InitialExpandedItems,
|
|
2186
2909
|
Layout,
|
|
2910
|
+
LayoutDataBackgroundType,
|
|
2187
2911
|
LayoutType,
|
|
2188
2912
|
LineStyle,
|
|
2189
2913
|
MapType,
|
|
@@ -2193,6 +2917,7 @@ export {
|
|
|
2193
2917
|
Origin,
|
|
2194
2918
|
Placement,
|
|
2195
2919
|
PluginContainerDataAlignment,
|
|
2920
|
+
PollDesignBackgroundType,
|
|
2196
2921
|
PollLayoutDirection,
|
|
2197
2922
|
PollLayoutType,
|
|
2198
2923
|
Position,
|