@wix/auto_sdk_faq_question-entry 1.0.40 → 1.0.42
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 +802 -13
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +275 -29
- package/build/cjs/index.typings.js +652 -13
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +270 -26
- package/build/cjs/meta.js +649 -12
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +793 -13
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +275 -29
- package/build/es/index.typings.mjs +643 -13
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +270 -26
- package/build/es/meta.mjs +640 -12
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +802 -13
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +275 -29
- package/build/internal/cjs/index.typings.js +652 -13
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +270 -26
- package/build/internal/cjs/meta.js +649 -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 +793 -13
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +275 -29
- package/build/internal/es/index.typings.mjs +643 -13
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +270 -26
- package/build/internal/es/meta.mjs +640 -12
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -23,8 +23,10 @@ __export(index_typings_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,11 +36,17 @@ __export(index_typings_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,
|
|
43
|
+
Indentation: () => Indentation,
|
|
38
44
|
InitialExpandedItems: () => InitialExpandedItems,
|
|
39
45
|
Layout: () => Layout,
|
|
46
|
+
LayoutDataBackgroundType: () => LayoutDataBackgroundType,
|
|
40
47
|
LayoutType: () => LayoutType,
|
|
41
48
|
LineStyle: () => LineStyle,
|
|
49
|
+
ListStyle: () => ListStyle,
|
|
42
50
|
MapType: () => MapType,
|
|
43
51
|
NodeType: () => NodeType,
|
|
44
52
|
NullValue: () => NullValue,
|
|
@@ -46,6 +54,7 @@ __export(index_typings_exports, {
|
|
|
46
54
|
Origin: () => Origin,
|
|
47
55
|
Placement: () => Placement,
|
|
48
56
|
PluginContainerDataAlignment: () => PluginContainerDataAlignment,
|
|
57
|
+
PollDesignBackgroundType: () => PollDesignBackgroundType,
|
|
49
58
|
PollLayoutDirection: () => PollLayoutDirection,
|
|
50
59
|
PollLayoutType: () => PollLayoutType,
|
|
51
60
|
Position: () => Position,
|
|
@@ -253,6 +262,24 @@ function createQuestionEntry(payload) {
|
|
|
253
262
|
transformFn: import_float.transformSDKFloatToRESTFloat,
|
|
254
263
|
paths: [
|
|
255
264
|
{ path: "questionEntry.sortOrder" },
|
|
265
|
+
{
|
|
266
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
282
|
+
},
|
|
256
283
|
{
|
|
257
284
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
258
285
|
},
|
|
@@ -294,7 +321,39 @@ function createQuestionEntry(payload) {
|
|
|
294
321
|
{
|
|
295
322
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
296
323
|
},
|
|
324
|
+
{
|
|
325
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
341
|
+
},
|
|
297
342
|
{ path: "questionEntry.richContent.nodes.shapeData.shape.duration" },
|
|
343
|
+
{
|
|
344
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
354
|
+
},
|
|
355
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
356
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
298
357
|
{ path: "questionEntry.labels.sortOrder" }
|
|
299
358
|
]
|
|
300
359
|
}
|
|
@@ -327,6 +386,24 @@ function createQuestionEntry(payload) {
|
|
|
327
386
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
328
387
|
paths: [
|
|
329
388
|
{ path: "questionEntry.sortOrder" },
|
|
389
|
+
{
|
|
390
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
406
|
+
},
|
|
330
407
|
{
|
|
331
408
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
332
409
|
},
|
|
@@ -378,9 +455,41 @@ function createQuestionEntry(payload) {
|
|
|
378
455
|
{
|
|
379
456
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
380
457
|
},
|
|
458
|
+
{
|
|
459
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
475
|
+
},
|
|
381
476
|
{
|
|
382
477
|
path: "questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
383
478
|
},
|
|
479
|
+
{
|
|
480
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
484
|
+
},
|
|
485
|
+
{
|
|
486
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
490
|
+
},
|
|
491
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
492
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
384
493
|
{ path: "questionEntry.labels.sortOrder" }
|
|
385
494
|
]
|
|
386
495
|
}
|
|
@@ -420,6 +529,24 @@ function getQuestionEntry(payload) {
|
|
|
420
529
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
421
530
|
paths: [
|
|
422
531
|
{ path: "questionEntry.sortOrder" },
|
|
532
|
+
{
|
|
533
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
549
|
+
},
|
|
423
550
|
{
|
|
424
551
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
425
552
|
},
|
|
@@ -471,9 +598,41 @@ function getQuestionEntry(payload) {
|
|
|
471
598
|
{
|
|
472
599
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
473
600
|
},
|
|
601
|
+
{
|
|
602
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
618
|
+
},
|
|
474
619
|
{
|
|
475
620
|
path: "questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
476
621
|
},
|
|
622
|
+
{
|
|
623
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
633
|
+
},
|
|
634
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
635
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
477
636
|
{ path: "questionEntry.labels.sortOrder" }
|
|
478
637
|
]
|
|
479
638
|
}
|
|
@@ -503,6 +662,24 @@ function updateQuestionEntry(payload) {
|
|
|
503
662
|
transformFn: import_float.transformSDKFloatToRESTFloat,
|
|
504
663
|
paths: [
|
|
505
664
|
{ path: "questionEntry.sortOrder" },
|
|
665
|
+
{
|
|
666
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
682
|
+
},
|
|
506
683
|
{
|
|
507
684
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
508
685
|
},
|
|
@@ -544,7 +721,39 @@ function updateQuestionEntry(payload) {
|
|
|
544
721
|
{
|
|
545
722
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
546
723
|
},
|
|
724
|
+
{
|
|
725
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
726
|
+
},
|
|
727
|
+
{
|
|
728
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
741
|
+
},
|
|
547
742
|
{ path: "questionEntry.richContent.nodes.shapeData.shape.duration" },
|
|
743
|
+
{
|
|
744
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
751
|
+
},
|
|
752
|
+
{
|
|
753
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
754
|
+
},
|
|
755
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
756
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
548
757
|
{ path: "questionEntry.labels.sortOrder" }
|
|
549
758
|
]
|
|
550
759
|
}
|
|
@@ -577,6 +786,24 @@ function updateQuestionEntry(payload) {
|
|
|
577
786
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
578
787
|
paths: [
|
|
579
788
|
{ path: "questionEntry.sortOrder" },
|
|
789
|
+
{
|
|
790
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
806
|
+
},
|
|
580
807
|
{
|
|
581
808
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
582
809
|
},
|
|
@@ -628,9 +855,41 @@ function updateQuestionEntry(payload) {
|
|
|
628
855
|
{
|
|
629
856
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
630
857
|
},
|
|
858
|
+
{
|
|
859
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
860
|
+
},
|
|
861
|
+
{
|
|
862
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
875
|
+
},
|
|
631
876
|
{
|
|
632
877
|
path: "questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
633
878
|
},
|
|
879
|
+
{
|
|
880
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
884
|
+
},
|
|
885
|
+
{
|
|
886
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
890
|
+
},
|
|
891
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
892
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
634
893
|
{ path: "questionEntry.labels.sortOrder" }
|
|
635
894
|
]
|
|
636
895
|
}
|
|
@@ -691,6 +950,24 @@ function listQuestionEntries(payload) {
|
|
|
691
950
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
692
951
|
paths: [
|
|
693
952
|
{ path: "questionEntries.sortOrder" },
|
|
953
|
+
{
|
|
954
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
958
|
+
},
|
|
959
|
+
{
|
|
960
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
970
|
+
},
|
|
694
971
|
{
|
|
695
972
|
path: "questionEntries.richContent.nodes.galleryData.items.image.media.duration"
|
|
696
973
|
},
|
|
@@ -742,9 +1019,41 @@ function listQuestionEntries(payload) {
|
|
|
742
1019
|
{
|
|
743
1020
|
path: "questionEntries.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
744
1021
|
},
|
|
1022
|
+
{
|
|
1023
|
+
path: "questionEntries.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
path: "questionEntries.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
path: "questionEntries.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1039
|
+
},
|
|
745
1040
|
{
|
|
746
1041
|
path: "questionEntries.richContent.nodes.shapeData.shape.duration"
|
|
747
1042
|
},
|
|
1043
|
+
{
|
|
1044
|
+
path: "questionEntries.richContent.nodes.cardData.background.gradient.centerX"
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
path: "questionEntries.richContent.nodes.cardData.background.gradient.centerY"
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
path: "questionEntries.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
path: "questionEntries.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1054
|
+
},
|
|
1055
|
+
{ path: "questionEntries.richContent.nodes.tocData.fontSize" },
|
|
1056
|
+
{ path: "questionEntries.richContent.nodes.tocData.itemSpacing" },
|
|
748
1057
|
{ path: "questionEntries.labels.sortOrder" }
|
|
749
1058
|
]
|
|
750
1059
|
}
|
|
@@ -784,6 +1093,24 @@ function queryQuestionEntries(payload) {
|
|
|
784
1093
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
785
1094
|
paths: [
|
|
786
1095
|
{ path: "questionEntries.sortOrder" },
|
|
1096
|
+
{
|
|
1097
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1098
|
+
},
|
|
1099
|
+
{
|
|
1100
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1104
|
+
},
|
|
1105
|
+
{
|
|
1106
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1107
|
+
},
|
|
1108
|
+
{
|
|
1109
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1110
|
+
},
|
|
1111
|
+
{
|
|
1112
|
+
path: "questionEntries.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1113
|
+
},
|
|
787
1114
|
{
|
|
788
1115
|
path: "questionEntries.richContent.nodes.galleryData.items.image.media.duration"
|
|
789
1116
|
},
|
|
@@ -835,9 +1162,41 @@ function queryQuestionEntries(payload) {
|
|
|
835
1162
|
{
|
|
836
1163
|
path: "questionEntries.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
837
1164
|
},
|
|
1165
|
+
{
|
|
1166
|
+
path: "questionEntries.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1167
|
+
},
|
|
1168
|
+
{
|
|
1169
|
+
path: "questionEntries.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1170
|
+
},
|
|
1171
|
+
{
|
|
1172
|
+
path: "questionEntries.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1173
|
+
},
|
|
1174
|
+
{
|
|
1175
|
+
path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1176
|
+
},
|
|
1177
|
+
{
|
|
1178
|
+
path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1179
|
+
},
|
|
1180
|
+
{
|
|
1181
|
+
path: "questionEntries.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1182
|
+
},
|
|
838
1183
|
{
|
|
839
1184
|
path: "questionEntries.richContent.nodes.shapeData.shape.duration"
|
|
840
1185
|
},
|
|
1186
|
+
{
|
|
1187
|
+
path: "questionEntries.richContent.nodes.cardData.background.gradient.centerX"
|
|
1188
|
+
},
|
|
1189
|
+
{
|
|
1190
|
+
path: "questionEntries.richContent.nodes.cardData.background.gradient.centerY"
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
path: "questionEntries.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
path: "questionEntries.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1197
|
+
},
|
|
1198
|
+
{ path: "questionEntries.richContent.nodes.tocData.fontSize" },
|
|
1199
|
+
{ path: "questionEntries.richContent.nodes.tocData.itemSpacing" },
|
|
841
1200
|
{ path: "questionEntries.labels.sortOrder" }
|
|
842
1201
|
]
|
|
843
1202
|
}
|
|
@@ -898,6 +1257,24 @@ function updateExtendedFields(payload) {
|
|
|
898
1257
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
899
1258
|
paths: [
|
|
900
1259
|
{ path: "questionEntry.sortOrder" },
|
|
1260
|
+
{
|
|
1261
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1262
|
+
},
|
|
1263
|
+
{
|
|
1264
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1265
|
+
},
|
|
1266
|
+
{
|
|
1267
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1268
|
+
},
|
|
1269
|
+
{
|
|
1270
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1271
|
+
},
|
|
1272
|
+
{
|
|
1273
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1274
|
+
},
|
|
1275
|
+
{
|
|
1276
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1277
|
+
},
|
|
901
1278
|
{
|
|
902
1279
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
903
1280
|
},
|
|
@@ -949,9 +1326,41 @@ function updateExtendedFields(payload) {
|
|
|
949
1326
|
{
|
|
950
1327
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
951
1328
|
},
|
|
1329
|
+
{
|
|
1330
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1334
|
+
},
|
|
1335
|
+
{
|
|
1336
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1337
|
+
},
|
|
1338
|
+
{
|
|
1339
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1340
|
+
},
|
|
1341
|
+
{
|
|
1342
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1343
|
+
},
|
|
1344
|
+
{
|
|
1345
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1346
|
+
},
|
|
952
1347
|
{
|
|
953
1348
|
path: "questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
954
1349
|
},
|
|
1350
|
+
{
|
|
1351
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
1352
|
+
},
|
|
1353
|
+
{
|
|
1354
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
1355
|
+
},
|
|
1356
|
+
{
|
|
1357
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1358
|
+
},
|
|
1359
|
+
{
|
|
1360
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1361
|
+
},
|
|
1362
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
1363
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
955
1364
|
{ path: "questionEntry.labels.sortOrder" }
|
|
956
1365
|
]
|
|
957
1366
|
}
|
|
@@ -997,6 +1406,24 @@ function setQuestionEntryLabels(payload) {
|
|
|
997
1406
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
998
1407
|
paths: [
|
|
999
1408
|
{ path: "questionEntry.sortOrder" },
|
|
1409
|
+
{
|
|
1410
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1411
|
+
},
|
|
1412
|
+
{
|
|
1413
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1414
|
+
},
|
|
1415
|
+
{
|
|
1416
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1417
|
+
},
|
|
1418
|
+
{
|
|
1419
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1420
|
+
},
|
|
1421
|
+
{
|
|
1422
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1423
|
+
},
|
|
1424
|
+
{
|
|
1425
|
+
path: "questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1426
|
+
},
|
|
1000
1427
|
{
|
|
1001
1428
|
path: "questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
1002
1429
|
},
|
|
@@ -1048,9 +1475,41 @@ function setQuestionEntryLabels(payload) {
|
|
|
1048
1475
|
{
|
|
1049
1476
|
path: "questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1050
1477
|
},
|
|
1478
|
+
{
|
|
1479
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1480
|
+
},
|
|
1481
|
+
{
|
|
1482
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1483
|
+
},
|
|
1484
|
+
{
|
|
1485
|
+
path: "questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1486
|
+
},
|
|
1487
|
+
{
|
|
1488
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1489
|
+
},
|
|
1490
|
+
{
|
|
1491
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1492
|
+
},
|
|
1493
|
+
{
|
|
1494
|
+
path: "questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1495
|
+
},
|
|
1051
1496
|
{
|
|
1052
1497
|
path: "questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
1053
1498
|
},
|
|
1499
|
+
{
|
|
1500
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
1501
|
+
},
|
|
1502
|
+
{
|
|
1503
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
1504
|
+
},
|
|
1505
|
+
{
|
|
1506
|
+
path: "questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1507
|
+
},
|
|
1508
|
+
{
|
|
1509
|
+
path: "questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1510
|
+
},
|
|
1511
|
+
{ path: "questionEntry.richContent.nodes.tocData.fontSize" },
|
|
1512
|
+
{ path: "questionEntry.richContent.nodes.tocData.itemSpacing" },
|
|
1054
1513
|
{ path: "questionEntry.labels.sortOrder" }
|
|
1055
1514
|
]
|
|
1056
1515
|
}
|
|
@@ -1084,6 +1543,24 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1084
1543
|
transformFn: import_float.transformSDKFloatToRESTFloat,
|
|
1085
1544
|
paths: [
|
|
1086
1545
|
{ path: "questionEntries.questionEntry.sortOrder" },
|
|
1546
|
+
{
|
|
1547
|
+
path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1551
|
+
},
|
|
1552
|
+
{
|
|
1553
|
+
path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1554
|
+
},
|
|
1555
|
+
{
|
|
1556
|
+
path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1557
|
+
},
|
|
1558
|
+
{
|
|
1559
|
+
path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1560
|
+
},
|
|
1561
|
+
{
|
|
1562
|
+
path: "questionEntries.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1563
|
+
},
|
|
1087
1564
|
{
|
|
1088
1565
|
path: "questionEntries.questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
1089
1566
|
},
|
|
@@ -1135,9 +1612,45 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1135
1612
|
{
|
|
1136
1613
|
path: "questionEntries.questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1137
1614
|
},
|
|
1615
|
+
{
|
|
1616
|
+
path: "questionEntries.questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1617
|
+
},
|
|
1618
|
+
{
|
|
1619
|
+
path: "questionEntries.questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1620
|
+
},
|
|
1621
|
+
{
|
|
1622
|
+
path: "questionEntries.questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1623
|
+
},
|
|
1624
|
+
{
|
|
1625
|
+
path: "questionEntries.questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1626
|
+
},
|
|
1627
|
+
{
|
|
1628
|
+
path: "questionEntries.questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1629
|
+
},
|
|
1630
|
+
{
|
|
1631
|
+
path: "questionEntries.questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1632
|
+
},
|
|
1138
1633
|
{
|
|
1139
1634
|
path: "questionEntries.questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
1140
1635
|
},
|
|
1636
|
+
{
|
|
1637
|
+
path: "questionEntries.questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
1638
|
+
},
|
|
1639
|
+
{
|
|
1640
|
+
path: "questionEntries.questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
1641
|
+
},
|
|
1642
|
+
{
|
|
1643
|
+
path: "questionEntries.questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1644
|
+
},
|
|
1645
|
+
{
|
|
1646
|
+
path: "questionEntries.questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1647
|
+
},
|
|
1648
|
+
{
|
|
1649
|
+
path: "questionEntries.questionEntry.richContent.nodes.tocData.fontSize"
|
|
1650
|
+
},
|
|
1651
|
+
{
|
|
1652
|
+
path: "questionEntries.questionEntry.richContent.nodes.tocData.itemSpacing"
|
|
1653
|
+
},
|
|
1141
1654
|
{ path: "questionEntries.questionEntry.labels.sortOrder" }
|
|
1142
1655
|
]
|
|
1143
1656
|
}
|
|
@@ -1174,6 +1687,24 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1174
1687
|
transformFn: import_float2.transformRESTFloatToSDKFloat,
|
|
1175
1688
|
paths: [
|
|
1176
1689
|
{ path: "results.questionEntry.sortOrder" },
|
|
1690
|
+
{
|
|
1691
|
+
path: "results.questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerX"
|
|
1692
|
+
},
|
|
1693
|
+
{
|
|
1694
|
+
path: "results.questionEntry.richContent.nodes.buttonData.styles.background.gradient.centerY"
|
|
1695
|
+
},
|
|
1696
|
+
{
|
|
1697
|
+
path: "results.questionEntry.richContent.nodes.buttonData.styles.background.gradient.stops.position"
|
|
1698
|
+
},
|
|
1699
|
+
{
|
|
1700
|
+
path: "results.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerX"
|
|
1701
|
+
},
|
|
1702
|
+
{
|
|
1703
|
+
path: "results.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.centerY"
|
|
1704
|
+
},
|
|
1705
|
+
{
|
|
1706
|
+
path: "results.questionEntry.richContent.nodes.buttonData.styles.backgroundHover.gradient.stops.position"
|
|
1707
|
+
},
|
|
1177
1708
|
{
|
|
1178
1709
|
path: "results.questionEntry.richContent.nodes.galleryData.items.image.media.duration"
|
|
1179
1710
|
},
|
|
@@ -1225,9 +1756,45 @@ function bulkUpdateQuestionEntry(payload) {
|
|
|
1225
1756
|
{
|
|
1226
1757
|
path: "results.questionEntry.richContent.nodes.layoutData.backdropImage.media.duration"
|
|
1227
1758
|
},
|
|
1759
|
+
{
|
|
1760
|
+
path: "results.questionEntry.richContent.nodes.layoutData.background.gradient.centerX"
|
|
1761
|
+
},
|
|
1762
|
+
{
|
|
1763
|
+
path: "results.questionEntry.richContent.nodes.layoutData.background.gradient.centerY"
|
|
1764
|
+
},
|
|
1765
|
+
{
|
|
1766
|
+
path: "results.questionEntry.richContent.nodes.layoutData.background.gradient.stops.position"
|
|
1767
|
+
},
|
|
1768
|
+
{
|
|
1769
|
+
path: "results.questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerX"
|
|
1770
|
+
},
|
|
1771
|
+
{
|
|
1772
|
+
path: "results.questionEntry.richContent.nodes.layoutData.backdrop.gradient.centerY"
|
|
1773
|
+
},
|
|
1774
|
+
{
|
|
1775
|
+
path: "results.questionEntry.richContent.nodes.layoutData.backdrop.gradient.stops.position"
|
|
1776
|
+
},
|
|
1228
1777
|
{
|
|
1229
1778
|
path: "results.questionEntry.richContent.nodes.shapeData.shape.duration"
|
|
1230
1779
|
},
|
|
1780
|
+
{
|
|
1781
|
+
path: "results.questionEntry.richContent.nodes.cardData.background.gradient.centerX"
|
|
1782
|
+
},
|
|
1783
|
+
{
|
|
1784
|
+
path: "results.questionEntry.richContent.nodes.cardData.background.gradient.centerY"
|
|
1785
|
+
},
|
|
1786
|
+
{
|
|
1787
|
+
path: "results.questionEntry.richContent.nodes.cardData.background.gradient.stops.position"
|
|
1788
|
+
},
|
|
1789
|
+
{
|
|
1790
|
+
path: "results.questionEntry.richContent.nodes.cardData.backgroundImage.media.duration"
|
|
1791
|
+
},
|
|
1792
|
+
{
|
|
1793
|
+
path: "results.questionEntry.richContent.nodes.tocData.fontSize"
|
|
1794
|
+
},
|
|
1795
|
+
{
|
|
1796
|
+
path: "results.questionEntry.richContent.nodes.tocData.itemSpacing"
|
|
1797
|
+
},
|
|
1231
1798
|
{ path: "results.questionEntry.labels.sortOrder" }
|
|
1232
1799
|
]
|
|
1233
1800
|
}
|
|
@@ -1276,8 +1843,20 @@ var NodeType = /* @__PURE__ */ ((NodeType2) => {
|
|
|
1276
1843
|
NodeType2["LAYOUT"] = "LAYOUT";
|
|
1277
1844
|
NodeType2["LAYOUT_CELL"] = "LAYOUT_CELL";
|
|
1278
1845
|
NodeType2["SHAPE"] = "SHAPE";
|
|
1846
|
+
NodeType2["CARD"] = "CARD";
|
|
1847
|
+
NodeType2["TOC"] = "TOC";
|
|
1279
1848
|
return NodeType2;
|
|
1280
1849
|
})(NodeType || {});
|
|
1850
|
+
var BackgroundType = /* @__PURE__ */ ((BackgroundType2) => {
|
|
1851
|
+
BackgroundType2["COLOR"] = "COLOR";
|
|
1852
|
+
BackgroundType2["GRADIENT"] = "GRADIENT";
|
|
1853
|
+
return BackgroundType2;
|
|
1854
|
+
})(BackgroundType || {});
|
|
1855
|
+
var GradientType = /* @__PURE__ */ ((GradientType2) => {
|
|
1856
|
+
GradientType2["LINEAR"] = "LINEAR";
|
|
1857
|
+
GradientType2["RADIAL"] = "RADIAL";
|
|
1858
|
+
return GradientType2;
|
|
1859
|
+
})(GradientType || {});
|
|
1281
1860
|
var WidthType = /* @__PURE__ */ ((WidthType2) => {
|
|
1282
1861
|
WidthType2["CONTENT"] = "CONTENT";
|
|
1283
1862
|
WidthType2["SMALL"] = "SMALL";
|
|
@@ -1376,6 +1955,7 @@ var Source = /* @__PURE__ */ ((Source2) => {
|
|
|
1376
1955
|
Source2["HTML"] = "HTML";
|
|
1377
1956
|
Source2["ADSENSE"] = "ADSENSE";
|
|
1378
1957
|
Source2["AI"] = "AI";
|
|
1958
|
+
Source2["AI_WIDGET"] = "AI_WIDGET";
|
|
1379
1959
|
return Source2;
|
|
1380
1960
|
})(Source || {});
|
|
1381
1961
|
var StylesPosition = /* @__PURE__ */ ((StylesPosition2) => {
|
|
@@ -1413,12 +1993,12 @@ var PollLayoutDirection = /* @__PURE__ */ ((PollLayoutDirection2) => {
|
|
|
1413
1993
|
PollLayoutDirection2["RTL"] = "RTL";
|
|
1414
1994
|
return PollLayoutDirection2;
|
|
1415
1995
|
})(PollLayoutDirection || {});
|
|
1416
|
-
var
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
return
|
|
1421
|
-
})(
|
|
1996
|
+
var PollDesignBackgroundType = /* @__PURE__ */ ((PollDesignBackgroundType2) => {
|
|
1997
|
+
PollDesignBackgroundType2["COLOR"] = "COLOR";
|
|
1998
|
+
PollDesignBackgroundType2["IMAGE"] = "IMAGE";
|
|
1999
|
+
PollDesignBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
2000
|
+
return PollDesignBackgroundType2;
|
|
2001
|
+
})(PollDesignBackgroundType || {});
|
|
1422
2002
|
var DecorationType = /* @__PURE__ */ ((DecorationType2) => {
|
|
1423
2003
|
DecorationType2["BOLD"] = "BOLD";
|
|
1424
2004
|
DecorationType2["ITALIC"] = "ITALIC";
|
|
@@ -1505,12 +2085,12 @@ var NullValue = /* @__PURE__ */ ((NullValue2) => {
|
|
|
1505
2085
|
NullValue2["NULL_VALUE"] = "NULL_VALUE";
|
|
1506
2086
|
return NullValue2;
|
|
1507
2087
|
})(NullValue || {});
|
|
1508
|
-
var
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
return
|
|
1513
|
-
})(
|
|
2088
|
+
var ImageScalingScaling = /* @__PURE__ */ ((ImageScalingScaling2) => {
|
|
2089
|
+
ImageScalingScaling2["AUTO"] = "AUTO";
|
|
2090
|
+
ImageScalingScaling2["CONTAIN"] = "CONTAIN";
|
|
2091
|
+
ImageScalingScaling2["COVER"] = "COVER";
|
|
2092
|
+
return ImageScalingScaling2;
|
|
2093
|
+
})(ImageScalingScaling || {});
|
|
1514
2094
|
var ImagePosition = /* @__PURE__ */ ((ImagePosition2) => {
|
|
1515
2095
|
ImagePosition2["CENTER"] = "CENTER";
|
|
1516
2096
|
ImagePosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
@@ -1528,6 +2108,16 @@ var Origin = /* @__PURE__ */ ((Origin2) => {
|
|
|
1528
2108
|
Origin2["LAYOUT"] = "LAYOUT";
|
|
1529
2109
|
return Origin2;
|
|
1530
2110
|
})(Origin || {});
|
|
2111
|
+
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
2112
|
+
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
2113
|
+
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
2114
|
+
return LayoutDataBackgroundType2;
|
|
2115
|
+
})(LayoutDataBackgroundType || {});
|
|
2116
|
+
var BackdropType = /* @__PURE__ */ ((BackdropType2) => {
|
|
2117
|
+
BackdropType2["COLOR"] = "COLOR";
|
|
2118
|
+
BackdropType2["GRADIENT"] = "GRADIENT";
|
|
2119
|
+
return BackdropType2;
|
|
2120
|
+
})(BackdropType || {});
|
|
1531
2121
|
var VerticalAlignmentAlignment = /* @__PURE__ */ ((VerticalAlignmentAlignment2) => {
|
|
1532
2122
|
VerticalAlignmentAlignment2["TOP"] = "TOP";
|
|
1533
2123
|
VerticalAlignmentAlignment2["MIDDLE"] = "MIDDLE";
|
|
@@ -1544,6 +2134,44 @@ var DesignTarget = /* @__PURE__ */ ((DesignTarget2) => {
|
|
|
1544
2134
|
DesignTarget2["CELL"] = "CELL";
|
|
1545
2135
|
return DesignTarget2;
|
|
1546
2136
|
})(DesignTarget || {});
|
|
2137
|
+
var Scaling = /* @__PURE__ */ ((Scaling2) => {
|
|
2138
|
+
Scaling2["AUTO"] = "AUTO";
|
|
2139
|
+
Scaling2["CONTAIN"] = "CONTAIN";
|
|
2140
|
+
Scaling2["COVER"] = "COVER";
|
|
2141
|
+
return Scaling2;
|
|
2142
|
+
})(Scaling || {});
|
|
2143
|
+
var ImagePositionPosition = /* @__PURE__ */ ((ImagePositionPosition2) => {
|
|
2144
|
+
ImagePositionPosition2["CENTER"] = "CENTER";
|
|
2145
|
+
ImagePositionPosition2["CENTER_LEFT"] = "CENTER_LEFT";
|
|
2146
|
+
ImagePositionPosition2["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
2147
|
+
ImagePositionPosition2["TOP"] = "TOP";
|
|
2148
|
+
ImagePositionPosition2["TOP_LEFT"] = "TOP_LEFT";
|
|
2149
|
+
ImagePositionPosition2["TOP_RIGHT"] = "TOP_RIGHT";
|
|
2150
|
+
ImagePositionPosition2["BOTTOM"] = "BOTTOM";
|
|
2151
|
+
ImagePositionPosition2["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
2152
|
+
ImagePositionPosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
2153
|
+
return ImagePositionPosition2;
|
|
2154
|
+
})(ImagePositionPosition || {});
|
|
2155
|
+
var CardDataBackgroundType = /* @__PURE__ */ ((CardDataBackgroundType2) => {
|
|
2156
|
+
CardDataBackgroundType2["COLOR"] = "COLOR";
|
|
2157
|
+
CardDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
2158
|
+
return CardDataBackgroundType2;
|
|
2159
|
+
})(CardDataBackgroundType || {});
|
|
2160
|
+
var ListStyle = /* @__PURE__ */ ((ListStyle2) => {
|
|
2161
|
+
ListStyle2["PLAIN"] = "PLAIN";
|
|
2162
|
+
ListStyle2["NUMBERED"] = "NUMBERED";
|
|
2163
|
+
ListStyle2["LETTERS"] = "LETTERS";
|
|
2164
|
+
ListStyle2["ROMAN"] = "ROMAN";
|
|
2165
|
+
ListStyle2["BULLETED"] = "BULLETED";
|
|
2166
|
+
ListStyle2["ALPHABETICAL_INDEX"] = "ALPHABETICAL_INDEX";
|
|
2167
|
+
ListStyle2["ALPHABETICAL_INDEX_COMPACT"] = "ALPHABETICAL_INDEX_COMPACT";
|
|
2168
|
+
return ListStyle2;
|
|
2169
|
+
})(ListStyle || {});
|
|
2170
|
+
var Indentation = /* @__PURE__ */ ((Indentation2) => {
|
|
2171
|
+
Indentation2["NESTED"] = "NESTED";
|
|
2172
|
+
Indentation2["FLAT"] = "FLAT";
|
|
2173
|
+
return Indentation2;
|
|
2174
|
+
})(Indentation || {});
|
|
1547
2175
|
var QuestionStatus = /* @__PURE__ */ ((QuestionStatus2) => {
|
|
1548
2176
|
QuestionStatus2["UNKNOWN"] = "UNKNOWN";
|
|
1549
2177
|
QuestionStatus2["VISIBLE"] = "VISIBLE";
|
|
@@ -1814,7 +2442,9 @@ async function typedQueryQuestionEntries(query, options) {
|
|
|
1814
2442
|
}
|
|
1815
2443
|
}
|
|
1816
2444
|
var utils = {
|
|
1817
|
-
|
|
2445
|
+
query: {
|
|
2446
|
+
...(0, import_query_builder_utils.createQueryUtils)()
|
|
2447
|
+
}
|
|
1818
2448
|
};
|
|
1819
2449
|
async function bulkDeleteQuestionEntries2(questionEntryIds) {
|
|
1820
2450
|
const { httpClient, sideEffects } = arguments[1];
|
|
@@ -1950,8 +2580,10 @@ async function bulkUpdateQuestionEntry2(options) {
|
|
|
1950
2580
|
Alignment,
|
|
1951
2581
|
AppType,
|
|
1952
2582
|
AspectRatio,
|
|
2583
|
+
BackdropType,
|
|
1953
2584
|
BackgroundType,
|
|
1954
2585
|
ButtonDataType,
|
|
2586
|
+
CardDataBackgroundType,
|
|
1955
2587
|
ContentFormat,
|
|
1956
2588
|
Crop,
|
|
1957
2589
|
DecorationType,
|
|
@@ -1961,11 +2593,17 @@ async function bulkUpdateQuestionEntry2(options) {
|
|
|
1961
2593
|
FieldSet,
|
|
1962
2594
|
FontType,
|
|
1963
2595
|
GIFType,
|
|
2596
|
+
GradientType,
|
|
1964
2597
|
ImagePosition,
|
|
2598
|
+
ImagePositionPosition,
|
|
2599
|
+
ImageScalingScaling,
|
|
2600
|
+
Indentation,
|
|
1965
2601
|
InitialExpandedItems,
|
|
1966
2602
|
Layout,
|
|
2603
|
+
LayoutDataBackgroundType,
|
|
1967
2604
|
LayoutType,
|
|
1968
2605
|
LineStyle,
|
|
2606
|
+
ListStyle,
|
|
1969
2607
|
MapType,
|
|
1970
2608
|
NodeType,
|
|
1971
2609
|
NullValue,
|
|
@@ -1973,6 +2611,7 @@ async function bulkUpdateQuestionEntry2(options) {
|
|
|
1973
2611
|
Origin,
|
|
1974
2612
|
Placement,
|
|
1975
2613
|
PluginContainerDataAlignment,
|
|
2614
|
+
PollDesignBackgroundType,
|
|
1976
2615
|
PollLayoutDirection,
|
|
1977
2616
|
PollLayoutType,
|
|
1978
2617
|
Position,
|