@dev-crew-berlin/enter-js-utils 0.40.2 → 0.40.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.
|
@@ -346,8 +346,12 @@ export declare type components = {
|
|
|
346
346
|
* Format: date-time
|
|
347
347
|
*/
|
|
348
348
|
time: string;
|
|
349
|
-
/**
|
|
350
|
-
|
|
349
|
+
/**
|
|
350
|
+
* Main
|
|
351
|
+
* @default false
|
|
352
|
+
* @enum {boolean}
|
|
353
|
+
*/
|
|
354
|
+
main: false;
|
|
351
355
|
};
|
|
352
356
|
/** CheckinCount */
|
|
353
357
|
CheckinCount: {
|
|
@@ -627,6 +631,11 @@ export declare type components = {
|
|
|
627
631
|
};
|
|
628
632
|
/** EventList */
|
|
629
633
|
EventList: (components["schemas"]["AttendeeCreatedEvent"] | components["schemas"]["AttendeeUpdatedEvent"] | components["schemas"]["AttendeeRespondedEvent"] | components["schemas"]["EmailUnsubscribedEvent"] | components["schemas"]["AttendeeDeletedEvent"] | components["schemas"]["CheckinCreatedEvent"] | components["schemas"]["CheckinDeletedEvent"] | components["schemas"]["PaymentPaidEvent"])[];
|
|
634
|
+
/** EventResponse */
|
|
635
|
+
EventResponse: {
|
|
636
|
+
/** Created */
|
|
637
|
+
created: number;
|
|
638
|
+
};
|
|
630
639
|
/** FieldGroup */
|
|
631
640
|
FieldGroup: {
|
|
632
641
|
/** Questions */
|
|
@@ -1362,7 +1371,11 @@ export declare type operations = {
|
|
|
1362
1371
|
create_events_events_post: {
|
|
1363
1372
|
responses: {
|
|
1364
1373
|
/** Successful Response */
|
|
1365
|
-
|
|
1374
|
+
201: {
|
|
1375
|
+
content: {
|
|
1376
|
+
"application/json": components["schemas"]["EventResponse"];
|
|
1377
|
+
};
|
|
1378
|
+
};
|
|
1366
1379
|
/** Validation Error */
|
|
1367
1380
|
422: {
|
|
1368
1381
|
content: {
|