@dev-crew-berlin/enter-js-utils 0.45.2 → 0.45.3
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.
|
@@ -135,6 +135,11 @@ export declare type components = {
|
|
|
135
135
|
rsvp: {
|
|
136
136
|
[key: string]: number | null;
|
|
137
137
|
};
|
|
138
|
+
/**
|
|
139
|
+
* Responsetime
|
|
140
|
+
* Format: date-time
|
|
141
|
+
*/
|
|
142
|
+
responseTime?: string;
|
|
138
143
|
/** Isedit */
|
|
139
144
|
isEdit: boolean;
|
|
140
145
|
};
|
|
@@ -658,6 +663,10 @@ export declare type components = {
|
|
|
658
663
|
event: "email-unsubscribed";
|
|
659
664
|
/** Instancename */
|
|
660
665
|
instanceName: string;
|
|
666
|
+
/** Attendeeid */
|
|
667
|
+
attendeeId: string;
|
|
668
|
+
/** Emailname */
|
|
669
|
+
emailName: string;
|
|
661
670
|
/** Emailaddress */
|
|
662
671
|
emailAddress: string;
|
|
663
672
|
};
|
|
@@ -735,7 +744,9 @@ export declare type components = {
|
|
|
735
744
|
*/
|
|
736
745
|
hidden: boolean;
|
|
737
746
|
/** Value */
|
|
738
|
-
value?:
|
|
747
|
+
value?: {
|
|
748
|
+
[key: string]: unknown;
|
|
749
|
+
};
|
|
739
750
|
/** Min */
|
|
740
751
|
min?: number;
|
|
741
752
|
/** Max */
|
|
@@ -1271,9 +1282,8 @@ export declare type components = {
|
|
|
1271
1282
|
/**
|
|
1272
1283
|
* Static
|
|
1273
1284
|
* @default true
|
|
1274
|
-
* @enum {boolean}
|
|
1275
1285
|
*/
|
|
1276
|
-
static:
|
|
1286
|
+
static: boolean;
|
|
1277
1287
|
/**
|
|
1278
1288
|
* Required
|
|
1279
1289
|
* @default false
|