@dev-crew-berlin/enter-js-utils 0.30.6 → 0.31.0
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.
|
@@ -126,7 +126,7 @@ export declare type components = {
|
|
|
126
126
|
attendeeId: string;
|
|
127
127
|
/** Rsvp */
|
|
128
128
|
rsvp: {
|
|
129
|
-
[key: string]: number;
|
|
129
|
+
[key: string]: number | null;
|
|
130
130
|
};
|
|
131
131
|
/** Isedit */
|
|
132
132
|
isEdit: boolean;
|
|
@@ -476,6 +476,60 @@ export declare type components = {
|
|
|
476
476
|
/** Mainguestid */
|
|
477
477
|
mainGuestId: string;
|
|
478
478
|
};
|
|
479
|
+
/** DateField */
|
|
480
|
+
DateField: {
|
|
481
|
+
/**
|
|
482
|
+
* Type
|
|
483
|
+
* @default date
|
|
484
|
+
* @enum {string}
|
|
485
|
+
*/
|
|
486
|
+
type: "date";
|
|
487
|
+
/**
|
|
488
|
+
* Name
|
|
489
|
+
* @default new_field
|
|
490
|
+
*/
|
|
491
|
+
name: string;
|
|
492
|
+
/** Title */
|
|
493
|
+
title?: string | {
|
|
494
|
+
[key: string]: string;
|
|
495
|
+
};
|
|
496
|
+
/** Info */
|
|
497
|
+
info?: string | {
|
|
498
|
+
[key: string]: string;
|
|
499
|
+
};
|
|
500
|
+
/**
|
|
501
|
+
* Class
|
|
502
|
+
* @default
|
|
503
|
+
*/
|
|
504
|
+
class: string;
|
|
505
|
+
/**
|
|
506
|
+
* Ismetafield
|
|
507
|
+
* @default false
|
|
508
|
+
*/
|
|
509
|
+
isMetaField: boolean;
|
|
510
|
+
/**
|
|
511
|
+
* Required
|
|
512
|
+
* @default false
|
|
513
|
+
*/
|
|
514
|
+
required: boolean;
|
|
515
|
+
/**
|
|
516
|
+
* Hidden
|
|
517
|
+
* @default false
|
|
518
|
+
*/
|
|
519
|
+
hidden: boolean;
|
|
520
|
+
/**
|
|
521
|
+
* Attendeesonly
|
|
522
|
+
* @default false
|
|
523
|
+
*/
|
|
524
|
+
attendeesOnly: boolean;
|
|
525
|
+
/**
|
|
526
|
+
* Value
|
|
527
|
+
* Format: date-time
|
|
528
|
+
*/
|
|
529
|
+
value?: string;
|
|
530
|
+
/** If */
|
|
531
|
+
if?: string;
|
|
532
|
+
};
|
|
479
533
|
/** DropdownField */
|
|
480
534
|
DropdownField: {
|
|
481
535
|
/**
|
|
@@ -592,7 +646,7 @@ export declare type components = {
|
|
|
592
646
|
/** FieldGroup */
|
|
593
647
|
FieldGroup: {
|
|
594
648
|
/** Questions */
|
|
595
|
-
questions: (components["schemas"]["TextField"] | components["schemas"]["StaticField"] | components["schemas"]["ImageUploadField"] | components["schemas"]["FileUploadField"] | components["schemas"]["LongtextField"] | components["schemas"]["RadioButtonField"] | components["schemas"]["RadioButtonGroupField"] | components["schemas"]["DropdownField"] | components["schemas"]["EmailField"] | components["schemas"]["AuthField"] | components["schemas"]["NumberField"] | components["schemas"]["CheckboxField"] | components["schemas"]["CheckboxGroupField"])[];
|
|
649
|
+
questions: (components["schemas"]["TextField"] | components["schemas"]["StaticField"] | components["schemas"]["ImageUploadField"] | components["schemas"]["FileUploadField"] | components["schemas"]["LongtextField"] | components["schemas"]["RadioButtonField"] | components["schemas"]["RadioButtonGroupField"] | components["schemas"]["DropdownField"] | components["schemas"]["DateField"] | components["schemas"]["EmailField"] | components["schemas"]["AuthField"] | components["schemas"]["NumberField"] | components["schemas"]["CheckboxField"] | components["schemas"]["CheckboxGroupField"])[];
|
|
596
650
|
/** Info */
|
|
597
651
|
info?: string | {
|
|
598
652
|
[key: string]: string;
|