@dev-crew-berlin/enter-js-utils 0.98.9 → 0.98.10

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.
@@ -4,94 +4,322 @@
4
4
  */
5
5
  export type paths = {
6
6
  "/health": {
7
+ parameters: {
8
+ query?: never;
9
+ header?: never;
10
+ path?: never;
11
+ cookie?: never;
12
+ };
7
13
  /**
8
14
  * Healthcheck
9
15
  * @description healthcheck to see if api server is running
10
16
  */
11
17
  get: operations["healthcheck_health_get"];
18
+ put?: never;
19
+ post?: never;
20
+ delete?: never;
21
+ options?: never;
22
+ head?: never;
23
+ patch?: never;
24
+ trace?: never;
12
25
  };
13
26
  "/instances/{instance_name}/checkin_counts": {
27
+ parameters: {
28
+ query?: never;
29
+ header?: never;
30
+ path?: never;
31
+ cookie?: never;
32
+ };
14
33
  /** Checkin Counts */
15
34
  get: operations["checkin_counts_instances__instance_name__checkin_counts_get"];
35
+ put?: never;
36
+ post?: never;
37
+ delete?: never;
38
+ options?: never;
39
+ head?: never;
40
+ patch?: never;
41
+ trace?: never;
16
42
  };
17
43
  "/instances/{instance_name}/custom_counts": {
44
+ parameters: {
45
+ query?: never;
46
+ header?: never;
47
+ path?: never;
48
+ cookie?: never;
49
+ };
50
+ get?: never;
51
+ put?: never;
18
52
  /** Calcualte Custom Counts */
19
53
  post: operations["calcualte_custom_counts_instances__instance_name__custom_counts_post"];
54
+ delete?: never;
55
+ options?: never;
56
+ head?: never;
57
+ patch?: never;
58
+ trace?: never;
20
59
  };
21
60
  "/events": {
61
+ parameters: {
62
+ query?: never;
63
+ header?: never;
64
+ path?: never;
65
+ cookie?: never;
66
+ };
67
+ get?: never;
68
+ put?: never;
22
69
  /**
23
70
  * Create Events
24
71
  * @description Send a list of events to be applied to the current state. Events are executed in order.
25
72
  */
26
73
  post: operations["create_events_events_post"];
74
+ delete?: never;
75
+ options?: never;
76
+ head?: never;
77
+ patch?: never;
78
+ trace?: never;
27
79
  };
28
80
  "/events/stream": {
29
- /** Get Events */
81
+ parameters: {
82
+ query?: never;
83
+ header?: never;
84
+ path?: never;
85
+ cookie?: never;
86
+ };
87
+ /**
88
+ * Get Events
89
+ * @description Stream attendee events as SSE, with reconnect-with-replay support.
90
+ *
91
+ * Every event carries an ``id:`` cursor. A client that reconnects with the
92
+ * standard ``Last-Event-ID`` header gets every event newer than that cursor
93
+ * replayed from the database before the live stream resumes, with no gap and
94
+ * no reordering across the boundary. If the cursor is unknown or older than
95
+ * the retention window a single ``reset`` event is sent instead, telling the
96
+ * client to do a full refetch. A ``heartbeat`` event is sent every
97
+ * ``HEARTBEAT_INTERVAL`` seconds.
98
+ */
30
99
  get: operations["get_events_events_stream_get"];
100
+ put?: never;
101
+ post?: never;
102
+ delete?: never;
103
+ options?: never;
104
+ head?: never;
105
+ patch?: never;
106
+ trace?: never;
31
107
  };
32
108
  "/instances/{instance_name}/fields": {
109
+ parameters: {
110
+ query?: never;
111
+ header?: never;
112
+ path?: never;
113
+ cookie?: never;
114
+ };
33
115
  /** Fields */
34
116
  get: operations["fields_instances__instance_name__fields_get"];
117
+ put?: never;
118
+ post?: never;
119
+ delete?: never;
120
+ options?: never;
121
+ head?: never;
122
+ patch?: never;
123
+ trace?: never;
35
124
  };
36
125
  "/users/me": {
126
+ parameters: {
127
+ query?: never;
128
+ header?: never;
129
+ path?: never;
130
+ cookie?: never;
131
+ };
37
132
  /** Current User */
38
133
  get: operations["current_user_users_me_get"];
134
+ put?: never;
135
+ post?: never;
136
+ delete?: never;
137
+ options?: never;
138
+ head?: never;
39
139
  /**
40
140
  * Update Current User
41
141
  * @description This method allows to update the `userdata` associated with the current user
42
142
  *
43
- * The `userdata` keys at the root level are megred.
44
- * This means only provided keys will be updated, others are left unchanged.
143
+ * The `userdata` keys at the root level are megred.
144
+ * This means only provided keys will be updated, others are left unchanged.
45
145
  *
46
- * To delete a key set its value to `null`.
146
+ * To delete a key set its value to `null`.
47
147
  */
48
148
  patch: operations["update_current_user_users_me_patch"];
149
+ trace?: never;
49
150
  };
50
151
  "/instances": {
152
+ parameters: {
153
+ query?: never;
154
+ header?: never;
155
+ path?: never;
156
+ cookie?: never;
157
+ };
51
158
  /** Instance List */
52
159
  get: operations["instance_list_instances_get"];
160
+ put?: never;
161
+ post?: never;
162
+ delete?: never;
163
+ options?: never;
164
+ head?: never;
165
+ patch?: never;
166
+ trace?: never;
53
167
  };
54
168
  "/instances/{instance_name}": {
169
+ parameters: {
170
+ query?: never;
171
+ header?: never;
172
+ path?: never;
173
+ cookie?: never;
174
+ };
55
175
  /** Single Instance */
56
176
  get: operations["single_instance_instances__instance_name__get"];
177
+ put?: never;
178
+ post?: never;
179
+ delete?: never;
180
+ options?: never;
181
+ head?: never;
182
+ patch?: never;
183
+ trace?: never;
57
184
  };
58
185
  "/instances/{instance_name}/attendees": {
186
+ parameters: {
187
+ query?: never;
188
+ header?: never;
189
+ path?: never;
190
+ cookie?: never;
191
+ };
59
192
  /** Attendee List */
60
193
  get: operations["attendee_list_instances__instance_name__attendees_get"];
194
+ put?: never;
195
+ post?: never;
196
+ delete?: never;
197
+ options?: never;
198
+ head?: never;
199
+ patch?: never;
200
+ trace?: never;
61
201
  };
62
202
  "/instances/{instance_name}/attendees/{attendee_id}": {
203
+ parameters: {
204
+ query?: never;
205
+ header?: never;
206
+ path?: never;
207
+ cookie?: never;
208
+ };
63
209
  /** Single Attende */
64
210
  get: operations["single_attende_instances__instance_name__attendees__attendee_id__get"];
211
+ put?: never;
212
+ post?: never;
213
+ delete?: never;
214
+ options?: never;
215
+ head?: never;
216
+ patch?: never;
217
+ trace?: never;
65
218
  };
66
219
  "/instances/{instance_name}/attendees/{attendee_id}/companions": {
220
+ parameters: {
221
+ query?: never;
222
+ header?: never;
223
+ path?: never;
224
+ cookie?: never;
225
+ };
67
226
  /** Attendee Companions */
68
227
  get: operations["attendee_companions_instances__instance_name__attendees__attendee_id__companions_get"];
228
+ put?: never;
229
+ post?: never;
230
+ delete?: never;
231
+ options?: never;
232
+ head?: never;
233
+ patch?: never;
234
+ trace?: never;
69
235
  };
70
236
  "/instances/{instance_name}/attendees/{attendee_id}/emails/{email_name}/send": {
237
+ parameters: {
238
+ query?: never;
239
+ header?: never;
240
+ path?: never;
241
+ cookie?: never;
242
+ };
243
+ get?: never;
244
+ put?: never;
71
245
  /** Send Email */
72
246
  post: operations["send_email_instances__instance_name__attendees__attendee_id__emails__email_name__send_post"];
247
+ delete?: never;
248
+ options?: never;
249
+ head?: never;
250
+ patch?: never;
251
+ trace?: never;
73
252
  };
74
253
  "/instances/{instance_name}/attendees/{attendee_id}/emails/{email_name}/render": {
254
+ parameters: {
255
+ query?: never;
256
+ header?: never;
257
+ path?: never;
258
+ cookie?: never;
259
+ };
75
260
  /** Rendered Email Content */
76
261
  get: operations["rendered_email_content_instances__instance_name__attendees__attendee_id__emails__email_name__render_get"];
262
+ put?: never;
263
+ post?: never;
264
+ delete?: never;
265
+ options?: never;
266
+ head?: never;
267
+ patch?: never;
268
+ trace?: never;
77
269
  };
78
270
  "/instances/{instance_name}/variables": {
271
+ parameters: {
272
+ query?: never;
273
+ header?: never;
274
+ path?: never;
275
+ cookie?: never;
276
+ };
79
277
  /** Variable List */
80
278
  get: operations["variable_list_instances__instance_name__variables_get"];
279
+ put?: never;
81
280
  /** Create Variable */
82
281
  post: operations["create_variable_instances__instance_name__variables_post"];
282
+ delete?: never;
283
+ options?: never;
284
+ head?: never;
285
+ patch?: never;
286
+ trace?: never;
83
287
  };
84
288
  "/instances/{instance_name}/variables/{variable_name}": {
289
+ parameters: {
290
+ query?: never;
291
+ header?: never;
292
+ path?: never;
293
+ cookie?: never;
294
+ };
85
295
  /** Single Variable */
86
296
  get: operations["single_variable_instances__instance_name__variables__variable_name__get"];
87
297
  /** Update Variable */
88
298
  put: operations["update_variable_instances__instance_name__variables__variable_name__put"];
299
+ post?: never;
89
300
  /** Delete Variable */
90
301
  delete: operations["delete_variable_instances__instance_name__variables__variable_name__delete"];
302
+ options?: never;
303
+ head?: never;
304
+ patch?: never;
305
+ trace?: never;
91
306
  };
92
307
  "/instances/{instance_name}/registration/registration_token": {
308
+ parameters: {
309
+ query?: never;
310
+ header?: never;
311
+ path?: never;
312
+ cookie?: never;
313
+ };
314
+ get?: never;
315
+ put?: never;
93
316
  /** Generate Signed Registration Token */
94
317
  post: operations["generate_signed_registration_token_instances__instance_name__registration_registration_token_post"];
318
+ delete?: never;
319
+ options?: never;
320
+ head?: never;
321
+ patch?: never;
322
+ trace?: never;
95
323
  };
96
324
  };
97
325
  export type webhooks = Record<string, never>;
@@ -101,7 +329,7 @@ export type components = {
101
329
  * AttendeeAuthCodeRequested
102
330
  * @description A request to set an auth_code for the attendee
103
331
  *
104
- * This will generate and set an auth code for the attendee. If none is already set.
332
+ * This will generate and set an auth code for the attendee. If none is already set.
105
333
  */
106
334
  "AttendeeAuthCodeRequested-Input": {
107
335
  /**
@@ -110,11 +338,10 @@ export type components = {
110
338
  */
111
339
  id?: string;
112
340
  /**
113
- * Event
114
- * @default attendee-auth-code-requested
115
- * @constant
341
+ * @description discriminator enum property added by openapi-typescript
342
+ * @enum {string}
116
343
  */
117
- event?: "attendee-auth-code-requested";
344
+ event: "attendee-auth-code-requested";
118
345
  /** Instancename */
119
346
  instanceName: string;
120
347
  /** Attendeeid */
@@ -124,7 +351,7 @@ export type components = {
124
351
  * AttendeeAuthCodeRequested
125
352
  * @description A request to set an auth_code for the attendee
126
353
  *
127
- * This will generate and set an auth code for the attendee. If none is already set.
354
+ * This will generate and set an auth code for the attendee. If none is already set.
128
355
  */
129
356
  "AttendeeAuthCodeRequested-Output": {
130
357
  /**
@@ -133,9 +360,8 @@ export type components = {
133
360
  */
134
361
  id: string;
135
362
  /**
136
- * Event
137
- * @default attendee-auth-code-requested
138
- * @constant
363
+ * @description discriminator enum property added by openapi-typescript
364
+ * @enum {string}
139
365
  */
140
366
  event: "attendee-auth-code-requested";
141
367
  /** Instancename */
@@ -154,11 +380,10 @@ export type components = {
154
380
  */
155
381
  id?: string;
156
382
  /**
157
- * Event
158
- * @default attendee-created
159
- * @constant
383
+ * @description discriminator enum property added by openapi-typescript
384
+ * @enum {string}
160
385
  */
161
- event?: "attendee-created";
386
+ event: "attendee-created";
162
387
  attendee: components["schemas"]["PublicAttendee-Input"];
163
388
  /** Instancename */
164
389
  instanceName: string;
@@ -174,16 +399,15 @@ export type components = {
174
399
  */
175
400
  id: string;
176
401
  /**
177
- * Event
178
- * @default attendee-created
179
- * @constant
402
+ * @description discriminator enum property added by openapi-typescript
403
+ * @enum {string}
180
404
  */
181
405
  event: "attendee-created";
182
406
  attendee: components["schemas"]["PublicAttendee-Output"];
183
407
  /** Instancename */
184
408
  instanceName: string;
185
409
  /** Attendeeid */
186
- attendeeId: string;
410
+ readonly attendeeId: string;
187
411
  };
188
412
  /**
189
413
  * AttendeeDeletedEvent
@@ -196,11 +420,10 @@ export type components = {
196
420
  */
197
421
  id?: string;
198
422
  /**
199
- * Event
200
- * @default attendee-deleted
201
- * @constant
423
+ * @description discriminator enum property added by openapi-typescript
424
+ * @enum {string}
202
425
  */
203
- event?: "attendee-deleted";
426
+ event: "attendee-deleted";
204
427
  /** Attendeeid */
205
428
  attendeeId: string;
206
429
  /** Instancename */
@@ -219,9 +442,8 @@ export type components = {
219
442
  */
220
443
  id: string;
221
444
  /**
222
- * Event
223
- * @default attendee-deleted
224
- * @constant
445
+ * @description discriminator enum property added by openapi-typescript
446
+ * @enum {string}
225
447
  */
226
448
  event: "attendee-deleted";
227
449
  /** Attendeeid */
@@ -238,14 +460,16 @@ export type components = {
238
460
  /** Session Type */
239
461
  session_type?: string | null;
240
462
  /** Flags */
241
- flags?: Record<string, unknown> | null;
463
+ flags?: {
464
+ [key: string]: unknown;
465
+ } | null;
242
466
  };
243
467
  /**
244
468
  * AttendeeRespondedEvent
245
469
  * @description Attendee response status was changed. Meaning the rsvp value was updated.
246
470
  *
247
- * This triggers mails that are atomatically sent on response.
248
- * Alternatively you can set `is_edit` to trigger email that are sent on edit instead.
471
+ * This triggers mails that are atomatically sent on response.
472
+ * Alternatively you can set `is_edit` to trigger email that are sent on edit instead.
249
473
  */
250
474
  "AttendeeRespondedEvent-Input": {
251
475
  /**
@@ -254,11 +478,10 @@ export type components = {
254
478
  */
255
479
  id?: string;
256
480
  /**
257
- * Event
258
- * @default attendee-responded
259
- * @constant
481
+ * @description discriminator enum property added by openapi-typescript
482
+ * @enum {string}
260
483
  */
261
- event?: "attendee-responded";
484
+ event: "attendee-responded";
262
485
  /** Instancename */
263
486
  instanceName: string;
264
487
  /** Attendeeid */
@@ -279,8 +502,8 @@ export type components = {
279
502
  * AttendeeRespondedEvent
280
503
  * @description Attendee response status was changed. Meaning the rsvp value was updated.
281
504
  *
282
- * This triggers mails that are atomatically sent on response.
283
- * Alternatively you can set `is_edit` to trigger email that are sent on edit instead.
505
+ * This triggers mails that are atomatically sent on response.
506
+ * Alternatively you can set `is_edit` to trigger email that are sent on edit instead.
284
507
  */
285
508
  "AttendeeRespondedEvent-Output": {
286
509
  /**
@@ -289,9 +512,8 @@ export type components = {
289
512
  */
290
513
  id: string;
291
514
  /**
292
- * Event
293
- * @default attendee-responded
294
- * @constant
515
+ * @description discriminator enum property added by openapi-typescript
516
+ * @enum {string}
295
517
  */
296
518
  event: "attendee-responded";
297
519
  /** Instancename */
@@ -321,9 +543,8 @@ export type components = {
321
543
  */
322
544
  id: string;
323
545
  /**
324
- * Event
325
- * @default attendee-restored
326
- * @constant
546
+ * @description discriminator enum property added by openapi-typescript
547
+ * @enum {string}
327
548
  */
328
549
  event: "attendee-restored";
329
550
  /** Attendeeid */
@@ -390,11 +611,10 @@ export type components = {
390
611
  */
391
612
  id?: string;
392
613
  /**
393
- * Event
394
- * @default attendee-updated
395
- * @constant
614
+ * @description discriminator enum property added by openapi-typescript
615
+ * @enum {string}
396
616
  */
397
- event?: "attendee-updated";
617
+ event: "attendee-updated";
398
618
  /** Instancename */
399
619
  instanceName: string;
400
620
  /** Attendeeid */
@@ -417,9 +637,8 @@ export type components = {
417
637
  */
418
638
  id: string;
419
639
  /**
420
- * Event
421
- * @default attendee-updated
422
- * @constant
640
+ * @description discriminator enum property added by openapi-typescript
641
+ * @enum {string}
423
642
  */
424
643
  event: "attendee-updated";
425
644
  /** Instancename */
@@ -440,7 +659,9 @@ export type components = {
440
659
  /** Session Type */
441
660
  session_type?: string | null;
442
661
  /** Flags */
443
- flags?: Record<string, unknown> | null;
662
+ flags?: {
663
+ [key: string]: unknown;
664
+ } | null;
444
665
  };
445
666
  /** BackendModifiers */
446
667
  BackendModifiers: {
@@ -449,12 +670,12 @@ export type components = {
449
670
  * @default half
450
671
  * @enum {string}
451
672
  */
452
- width?: "half" | "full";
673
+ width: "half" | "full";
453
674
  /**
454
675
  * Starts New Line
455
676
  * @default false
456
677
  */
457
- starts_new_line?: boolean;
678
+ starts_new_line: boolean;
458
679
  };
459
680
  /** Branch */
460
681
  Branch: {
@@ -468,11 +689,11 @@ export type components = {
468
689
  /**
469
690
  * Checkincounters
470
691
  * @default {
471
- * "main": {
472
- * "label": "Main Entrance",
473
- * "short_label": "🎫"
474
- * }
475
- * }
692
+ * "main": {
693
+ * "label": "Main Entrance",
694
+ * "shortLabel": "🎫"
695
+ * }
696
+ * }
476
697
  */
477
698
  checkinCounters: {
478
699
  [key: string]: components["schemas"]["CheckinCounter"];
@@ -481,9 +702,8 @@ export type components = {
481
702
  /** CheckboxField */
482
703
  CheckboxField: {
483
704
  /**
484
- * Type
485
- * @default checkbox
486
- * @constant
705
+ * @description discriminator enum property added by openapi-typescript
706
+ * @enum {string}
487
707
  */
488
708
  type: "checkbox";
489
709
  /**
@@ -521,9 +741,9 @@ export type components = {
521
741
  required: boolean;
522
742
  /**
523
743
  * @default {
524
- * "width": "half",
525
- * "starts_new_line": false
526
- * }
744
+ * "width": "half",
745
+ * "starts_new_line": false
746
+ * }
527
747
  */
528
748
  backendModifiers: components["schemas"]["BackendModifiers"];
529
749
  /** Defaultvalue */
@@ -532,9 +752,8 @@ export type components = {
532
752
  /** CheckboxGroupField */
533
753
  CheckboxGroupField: {
534
754
  /**
535
- * Type
536
- * @default check
537
- * @constant
755
+ * @description discriminator enum property added by openapi-typescript
756
+ * @enum {string}
538
757
  */
539
758
  type: "check";
540
759
  /**
@@ -572,9 +791,9 @@ export type components = {
572
791
  required: boolean;
573
792
  /**
574
793
  * @default {
575
- * "width": "half",
576
- * "starts_new_line": false
577
- * }
794
+ * "width": "half",
795
+ * "starts_new_line": false
796
+ * }
578
797
  */
579
798
  backendModifiers: components["schemas"]["BackendModifiers"];
580
799
  /** Defaultvalue */
@@ -604,7 +823,7 @@ export type components = {
604
823
  * Countername
605
824
  * @default main
606
825
  */
607
- counterName?: string;
826
+ counterName: string;
608
827
  };
609
828
  /**
610
829
  * Checkin
@@ -658,11 +877,10 @@ export type components = {
658
877
  */
659
878
  id?: string;
660
879
  /**
661
- * Event
662
- * @default checkin-created
663
- * @constant
880
+ * @description discriminator enum property added by openapi-typescript
881
+ * @enum {string}
664
882
  */
665
- event?: "checkin-created";
883
+ event: "checkin-created";
666
884
  /** Instancename */
667
885
  instanceName: string;
668
886
  /** Attendeeid */
@@ -682,9 +900,8 @@ export type components = {
682
900
  */
683
901
  id: string;
684
902
  /**
685
- * Event
686
- * @default checkin-created
687
- * @constant
903
+ * @description discriminator enum property added by openapi-typescript
904
+ * @enum {string}
688
905
  */
689
906
  event: "checkin-created";
690
907
  /** Instancename */
@@ -706,11 +923,10 @@ export type components = {
706
923
  */
707
924
  id?: string;
708
925
  /**
709
- * Event
710
- * @default checkin-deleted
711
- * @constant
926
+ * @description discriminator enum property added by openapi-typescript
927
+ * @enum {string}
712
928
  */
713
- event?: "checkin-deleted";
929
+ event: "checkin-deleted";
714
930
  /** Instancename */
715
931
  instanceName: string;
716
932
  /** Attendeeid */
@@ -734,9 +950,8 @@ export type components = {
734
950
  */
735
951
  id: string;
736
952
  /**
737
- * Event
738
- * @default checkin-deleted
739
- * @constant
953
+ * @description discriminator enum property added by openapi-typescript
954
+ * @enum {string}
740
955
  */
741
956
  event: "checkin-deleted";
742
957
  /** Instancename */
@@ -760,12 +975,12 @@ export type components = {
760
975
  * Checkins
761
976
  * @default []
762
977
  */
763
- checkins?: components["schemas"]["Checkin-Input"][];
978
+ checkins: components["schemas"]["Checkin-Input"][];
764
979
  /**
765
980
  * Deleted
766
981
  * @default []
767
982
  */
768
- deleted?: string[];
983
+ deleted: string[];
769
984
  };
770
985
  /**
771
986
  * Checkins
@@ -786,9 +1001,8 @@ export type components = {
786
1001
  /** CodeField */
787
1002
  CodeField: {
788
1003
  /**
789
- * Type
790
- * @default code
791
- * @constant
1004
+ * @description discriminator enum property added by openapi-typescript
1005
+ * @enum {string}
792
1006
  */
793
1007
  type: "code";
794
1008
  /**
@@ -826,9 +1040,9 @@ export type components = {
826
1040
  required: boolean;
827
1041
  /**
828
1042
  * @default {
829
- * "width": "half",
830
- * "starts_new_line": false
831
- * }
1043
+ * "width": "half",
1044
+ * "starts_new_line": false
1045
+ * }
832
1046
  */
833
1047
  backendModifiers: components["schemas"]["BackendModifiers"];
834
1048
  /** Defaultvalue */
@@ -852,13 +1066,13 @@ export type components = {
852
1066
  * Mainguestname
853
1067
  * @default <Unnamed>
854
1068
  */
855
- mainGuestName?: string;
1069
+ mainGuestName: string;
856
1070
  /**
857
1071
  * Iscompanion
858
1072
  * @default true
859
1073
  * @constant
860
1074
  */
861
- isCompanion?: true;
1075
+ isCompanion: true;
862
1076
  };
863
1077
  /** Companion */
864
1078
  "Companion-Output": {
@@ -887,9 +1101,8 @@ export type components = {
887
1101
  */
888
1102
  id: string;
889
1103
  /**
890
- * Event
891
- * @default companion-linked
892
- * @constant
1104
+ * @description discriminator enum property added by openapi-typescript
1105
+ * @enum {string}
893
1106
  */
894
1107
  event: "companion-linked";
895
1108
  /** Instancename */
@@ -912,9 +1125,8 @@ export type components = {
912
1125
  */
913
1126
  id: string;
914
1127
  /**
915
- * Event
916
- * @default companion-name-changed
917
- * @constant
1128
+ * @description discriminator enum property added by openapi-typescript
1129
+ * @enum {string}
918
1130
  */
919
1131
  event: "companion-name-changed";
920
1132
  /** Instancename */
@@ -937,9 +1149,8 @@ export type components = {
937
1149
  */
938
1150
  id: string;
939
1151
  /**
940
- * Event
941
- * @default companion-unlinked
942
- * @constant
1152
+ * @description discriminator enum property added by openapi-typescript
1153
+ * @enum {string}
943
1154
  */
944
1155
  event: "companion-unlinked";
945
1156
  /** Instancename */
@@ -964,9 +1175,8 @@ export type components = {
964
1175
  /** DateField */
965
1176
  DateField: {
966
1177
  /**
967
- * Type
968
- * @default date
969
- * @constant
1178
+ * @description discriminator enum property added by openapi-typescript
1179
+ * @enum {string}
970
1180
  */
971
1181
  type: "date";
972
1182
  /**
@@ -1004,9 +1214,9 @@ export type components = {
1004
1214
  required: boolean;
1005
1215
  /**
1006
1216
  * @default {
1007
- * "width": "half",
1008
- * "starts_new_line": false
1009
- * }
1217
+ * "width": "half",
1218
+ * "starts_new_line": false
1219
+ * }
1010
1220
  */
1011
1221
  backendModifiers: components["schemas"]["BackendModifiers"];
1012
1222
  /** Defaultvalue */
@@ -1019,9 +1229,8 @@ export type components = {
1019
1229
  /** DropdownField */
1020
1230
  DropdownField: {
1021
1231
  /**
1022
- * Type
1023
- * @default dropdown
1024
- * @constant
1232
+ * @description discriminator enum property added by openapi-typescript
1233
+ * @enum {string}
1025
1234
  */
1026
1235
  type: "dropdown";
1027
1236
  /**
@@ -1059,9 +1268,9 @@ export type components = {
1059
1268
  required: boolean;
1060
1269
  /**
1061
1270
  * @default {
1062
- * "width": "half",
1063
- * "starts_new_line": false
1064
- * }
1271
+ * "width": "half",
1272
+ * "starts_new_line": false
1273
+ * }
1065
1274
  */
1066
1275
  backendModifiers: components["schemas"]["BackendModifiers"];
1067
1276
  /** Defaultvalue */
@@ -1080,14 +1289,13 @@ export type components = {
1080
1289
  /** Color */
1081
1290
  color: string;
1082
1291
  /** @default {} */
1083
- filter?: components["schemas"]["Filter"];
1292
+ filter: components["schemas"]["Filter"];
1084
1293
  };
1085
1294
  /** EmailField */
1086
1295
  EmailField: {
1087
1296
  /**
1088
- * Type
1089
- * @default email
1090
- * @constant
1297
+ * @description discriminator enum property added by openapi-typescript
1298
+ * @enum {string}
1091
1299
  */
1092
1300
  type: "email";
1093
1301
  /**
@@ -1125,9 +1333,9 @@ export type components = {
1125
1333
  required: boolean;
1126
1334
  /**
1127
1335
  * @default {
1128
- * "width": "half",
1129
- * "starts_new_line": false
1130
- * }
1336
+ * "width": "half",
1337
+ * "starts_new_line": false
1338
+ * }
1131
1339
  */
1132
1340
  backendModifiers: components["schemas"]["BackendModifiers"];
1133
1341
  /** Defaultvalue */
@@ -1179,9 +1387,9 @@ export type components = {
1179
1387
  * EmailStatusUpdatedEvent
1180
1388
  * @description EmailStatus for attendee was updated.
1181
1389
  *
1182
- * Note that there is a special email-unsubscribed-event that also
1183
- * adds the email address to a blacklist.
1184
- * This event will only update the email status of the atttendee and nothing else.
1390
+ * Note that there is a special email-unsubscribed-event that also
1391
+ * adds the email address to a blacklist.
1392
+ * This event will only update the email status of the atttendee and nothing else.
1185
1393
  */
1186
1394
  EmailStatusUpdatedEvent: {
1187
1395
  /**
@@ -1190,11 +1398,10 @@ export type components = {
1190
1398
  */
1191
1399
  id?: string;
1192
1400
  /**
1193
- * Event
1194
- * @default email-status-updated
1195
- * @constant
1401
+ * @description discriminator enum property added by openapi-typescript
1402
+ * @enum {string}
1196
1403
  */
1197
- event?: "email-status-updated";
1404
+ event: "email-status-updated";
1198
1405
  /** Instancename */
1199
1406
  instanceName: string;
1200
1407
  /** Attendeeid */
@@ -1207,8 +1414,8 @@ export type components = {
1207
1414
  * EmailUnsubscribedEvent
1208
1415
  * @description Attendee unsubscribed from email list.
1209
1416
  *
1210
- * This will add the email_address to a blacklist for all mailings from the domain
1211
- * associated to the instance.
1417
+ * This will add the email_address to a blacklist for all mailings from the domain
1418
+ * associated to the instance.
1212
1419
  */
1213
1420
  EmailUnsubscribedEvent: {
1214
1421
  /**
@@ -1217,11 +1424,10 @@ export type components = {
1217
1424
  */
1218
1425
  id?: string;
1219
1426
  /**
1220
- * Event
1221
- * @default email-unsubscribed
1222
- * @constant
1427
+ * @description discriminator enum property added by openapi-typescript
1428
+ * @enum {string}
1223
1429
  */
1224
- event?: "email-unsubscribed";
1430
+ event: "email-unsubscribed";
1225
1431
  /** Instancename */
1226
1432
  instanceName: string;
1227
1433
  /** Attendeeid */
@@ -1235,6 +1441,10 @@ export type components = {
1235
1441
  EventResponse: {
1236
1442
  /** Created */
1237
1443
  created: number;
1444
+ /** Event Cursors */
1445
+ event_cursors?: {
1446
+ [key: string]: string;
1447
+ };
1238
1448
  };
1239
1449
  /** FieldGroup */
1240
1450
  FieldGroup: {
@@ -1268,9 +1478,8 @@ export type components = {
1268
1478
  /** FileUploadField */
1269
1479
  FileUploadField: {
1270
1480
  /**
1271
- * Type
1272
- * @default upload
1273
- * @constant
1481
+ * @description discriminator enum property added by openapi-typescript
1482
+ * @enum {string}
1274
1483
  */
1275
1484
  type: "upload";
1276
1485
  /**
@@ -1308,9 +1517,9 @@ export type components = {
1308
1517
  required: boolean;
1309
1518
  /**
1310
1519
  * @default {
1311
- * "width": "half",
1312
- * "starts_new_line": false
1313
- * }
1520
+ * "width": "half",
1521
+ * "starts_new_line": false
1522
+ * }
1314
1523
  */
1315
1524
  backendModifiers: components["schemas"]["BackendModifiers"];
1316
1525
  defaultValue: components["schemas"]["FileReference"] | null;
@@ -1339,9 +1548,8 @@ export type components = {
1339
1548
  /** ImageUploadField */
1340
1549
  ImageUploadField: {
1341
1550
  /**
1342
- * Type
1343
- * @default image
1344
- * @constant
1551
+ * @description discriminator enum property added by openapi-typescript
1552
+ * @enum {string}
1345
1553
  */
1346
1554
  type: "image";
1347
1555
  /**
@@ -1379,9 +1587,9 @@ export type components = {
1379
1587
  required: boolean;
1380
1588
  /**
1381
1589
  * @default {
1382
- * "width": "half",
1383
- * "starts_new_line": false
1384
- * }
1590
+ * "width": "half",
1591
+ * "starts_new_line": false
1592
+ * }
1385
1593
  */
1386
1594
  backendModifiers: components["schemas"]["BackendModifiers"];
1387
1595
  defaultValue: components["schemas"]["FileReference"] | null;
@@ -1415,9 +1623,8 @@ export type components = {
1415
1623
  /** LongtextField */
1416
1624
  LongtextField: {
1417
1625
  /**
1418
- * Type
1419
- * @default longtext
1420
- * @constant
1626
+ * @description discriminator enum property added by openapi-typescript
1627
+ * @enum {string}
1421
1628
  */
1422
1629
  type: "longtext";
1423
1630
  /**
@@ -1455,9 +1662,9 @@ export type components = {
1455
1662
  required: boolean;
1456
1663
  /**
1457
1664
  * @default {
1458
- * "width": "half",
1459
- * "starts_new_line": false
1460
- * }
1665
+ * "width": "half",
1666
+ * "starts_new_line": false
1667
+ * }
1461
1668
  */
1462
1669
  backendModifiers: components["schemas"]["BackendModifiers"];
1463
1670
  /** Defaultvalue */
@@ -1480,12 +1687,12 @@ export type components = {
1480
1687
  * @default false
1481
1688
  * @constant
1482
1689
  */
1483
- isCompanion?: false;
1690
+ isCompanion: false;
1484
1691
  /**
1485
1692
  * Companionnames
1486
1693
  * @default {}
1487
1694
  */
1488
- companionNames?: {
1695
+ companionNames: {
1489
1696
  [key: string]: string;
1490
1697
  };
1491
1698
  };
@@ -1516,9 +1723,8 @@ export type components = {
1516
1723
  */
1517
1724
  id: string;
1518
1725
  /**
1519
- * Event
1520
- * @default main-guest-linked
1521
- * @constant
1726
+ * @description discriminator enum property added by openapi-typescript
1727
+ * @enum {string}
1522
1728
  */
1523
1729
  event: "main-guest-linked";
1524
1730
  /** Instancename */
@@ -1541,9 +1747,8 @@ export type components = {
1541
1747
  */
1542
1748
  id: string;
1543
1749
  /**
1544
- * Event
1545
- * @default main-guest-name-changed
1546
- * @constant
1750
+ * @description discriminator enum property added by openapi-typescript
1751
+ * @enum {string}
1547
1752
  */
1548
1753
  event: "main-guest-name-changed";
1549
1754
  /** Instancename */
@@ -1564,9 +1769,8 @@ export type components = {
1564
1769
  */
1565
1770
  id: string;
1566
1771
  /**
1567
- * Event
1568
- * @default main-guest-unlinked
1569
- * @constant
1772
+ * @description discriminator enum property added by openapi-typescript
1773
+ * @enum {string}
1570
1774
  */
1571
1775
  event: "main-guest-unlinked";
1572
1776
  /** Instancename */
@@ -1577,9 +1781,8 @@ export type components = {
1577
1781
  /** NumberField */
1578
1782
  NumberField: {
1579
1783
  /**
1580
- * Type
1581
- * @default number
1582
- * @constant
1784
+ * @description discriminator enum property added by openapi-typescript
1785
+ * @enum {string}
1583
1786
  */
1584
1787
  type: "number";
1585
1788
  /**
@@ -1617,9 +1820,9 @@ export type components = {
1617
1820
  required: boolean;
1618
1821
  /**
1619
1822
  * @default {
1620
- * "width": "half",
1621
- * "starts_new_line": false
1622
- * }
1823
+ * "width": "half",
1824
+ * "starts_new_line": false
1825
+ * }
1623
1826
  */
1624
1827
  backendModifiers: components["schemas"]["BackendModifiers"];
1625
1828
  /** Defaultvalue */
@@ -1672,7 +1875,7 @@ export type components = {
1672
1875
  * @default CHF
1673
1876
  * @enum {string}
1674
1877
  */
1675
- currency?: "USD" | "EUR" | "CHF";
1878
+ currency: "USD" | "EUR" | "CHF";
1676
1879
  /** Testmode */
1677
1880
  testmode: boolean;
1678
1881
  };
@@ -1680,7 +1883,7 @@ export type components = {
1680
1883
  * PaymentPaidEvent
1681
1884
  * @description The payment status for a attende was set to payed.
1682
1885
  *
1683
- * This triggers mails that are atomatically sent on payment
1886
+ * This triggers mails that are atomatically sent on payment
1684
1887
  */
1685
1888
  "PaymentPaidEvent-Input": {
1686
1889
  /**
@@ -1689,11 +1892,10 @@ export type components = {
1689
1892
  */
1690
1893
  id?: string;
1691
1894
  /**
1692
- * Event
1693
- * @default payment-paid
1694
- * @constant
1895
+ * @description discriminator enum property added by openapi-typescript
1896
+ * @enum {string}
1695
1897
  */
1696
- event?: "payment-paid";
1898
+ event: "payment-paid";
1697
1899
  /** Attendeeid */
1698
1900
  attendeeId: string;
1699
1901
  /** Instancename */
@@ -1705,7 +1907,7 @@ export type components = {
1705
1907
  * PaymentPaidEvent
1706
1908
  * @description The payment status for a attende was set to payed.
1707
1909
  *
1708
- * This triggers mails that are atomatically sent on payment
1910
+ * This triggers mails that are atomatically sent on payment
1709
1911
  */
1710
1912
  "PaymentPaidEvent-Output": {
1711
1913
  /**
@@ -1714,9 +1916,8 @@ export type components = {
1714
1916
  */
1715
1917
  id: string;
1716
1918
  /**
1717
- * Event
1718
- * @default payment-paid
1719
- * @constant
1919
+ * @description discriminator enum property added by openapi-typescript
1920
+ * @enum {string}
1720
1921
  */
1721
1922
  event: "payment-paid";
1722
1923
  /** Attendeeid */
@@ -1734,11 +1935,11 @@ export type components = {
1734
1935
  * Userdata
1735
1936
  * @default {}
1736
1937
  */
1737
- userdata?: {
1938
+ userdata: {
1738
1939
  [key: string]: string | boolean | number | string[] | components["schemas"]["FileReference"] | null;
1739
1940
  };
1740
1941
  /** @default [] */
1741
- tags?: components["schemas"]["StorableSet_str_-Input"];
1942
+ tags: components["schemas"]["StorableSet_str_-Input"];
1742
1943
  /** Language */
1743
1944
  language: string | null;
1744
1945
  /**
@@ -1750,31 +1951,31 @@ export type components = {
1750
1951
  * Rsvp
1751
1952
  * @default {}
1752
1953
  */
1753
- rsvp?: {
1954
+ rsvp: {
1754
1955
  [key: string]: components["schemas"]["RSVP-Input"] | null;
1755
1956
  };
1756
1957
  /**
1757
1958
  * Checkin
1758
1959
  * @default {}
1759
1960
  */
1760
- checkin?: {
1961
+ checkin: {
1761
1962
  [key: string]: components["schemas"]["Checkins-Input"];
1762
1963
  };
1763
1964
  /** @default [] */
1764
- branches?: components["schemas"]["StorableSet_str_-Input"];
1965
+ branches: components["schemas"]["StorableSet_str_-Input"];
1765
1966
  /**
1766
1967
  * @default {
1767
- * "isCompanion": false,
1768
- * "companionNames": {}
1769
- * }
1968
+ * "isCompanion": false,
1969
+ * "companionNames": {}
1970
+ * }
1770
1971
  */
1771
- companions?: components["schemas"]["RootModel_Union_Companion__MainGuest__-Input"];
1972
+ companions: components["schemas"]["RootModel_Union_Companion__MainGuest__-Input"];
1772
1973
  payment?: components["schemas"]["Payment"] | null;
1773
1974
  /**
1774
1975
  * Deleted
1775
1976
  * @default false
1776
1977
  */
1777
- deleted?: boolean;
1978
+ deleted: boolean;
1778
1979
  };
1779
1980
  /** PublicAttendee */
1780
1981
  "PublicAttendee-Output": {
@@ -1814,9 +2015,9 @@ export type components = {
1814
2015
  branches: components["schemas"]["StorableSet_str_-Output"];
1815
2016
  /**
1816
2017
  * @default {
1817
- * "isCompanion": false,
1818
- * "companionNames": {}
1819
- * }
2018
+ * "isCompanion": false,
2019
+ * "companionNames": {}
2020
+ * }
1820
2021
  */
1821
2022
  companions: components["schemas"]["RootModel_Union_Companion__MainGuest__-Output"];
1822
2023
  payment: components["schemas"]["Payment"] | null;
@@ -1826,7 +2027,7 @@ export type components = {
1826
2027
  */
1827
2028
  deleted: boolean;
1828
2029
  /** Name */
1829
- name: string;
2030
+ readonly name: string;
1830
2031
  };
1831
2032
  /** PublicEmail */
1832
2033
  PublicEmail: {
@@ -1903,7 +2104,9 @@ export type components = {
1903
2104
  /** Email */
1904
2105
  email: string;
1905
2106
  /** Userdata */
1906
- userdata: Record<string, unknown>;
2107
+ userdata: {
2108
+ [key: string]: unknown;
2109
+ };
1907
2110
  /** Permissions */
1908
2111
  permissions: {
1909
2112
  [key: string]: ("attendees:read" | "attendees:create" | "attendees:write" | "attendees:write:bulk" | "attendees:import" | "attendees:export" | "attendees:delete:soft" | "attendees:delete:final" | "emails:send" | "emails:send:bulk" | "email-config:write" | "eventlog:read" | "pdfs:write" | "pdfs:export" | "payment:write" | "checkins:write" | "branches:write" | "files:write" | "fields:write" | "fields:read" | "templates:write" | "register-flow:write" | "export-config:write" | "instance-info:read" | "instance-info:write" | "domains:manage" | "stats:read" | "stats:write" | "backup:write" | "variables:read" | "variables:write" | "webhooks:read" | "webhooks:write")[];
@@ -1921,7 +2124,7 @@ export type components = {
1921
2124
  * Userdatafieldkey
1922
2125
  * @default email
1923
2126
  */
1924
- userdataFieldKey?: string;
2127
+ userdataFieldKey: string;
1925
2128
  /** Answer */
1926
2129
  answer: string;
1927
2130
  };
@@ -1936,10 +2139,10 @@ export type components = {
1936
2139
  personCount: number;
1937
2140
  /**
1938
2141
  * @default [
1939
- * "main"
1940
- * ]
2142
+ * "main"
2143
+ * ]
1941
2144
  */
1942
- checkinCounters?: components["schemas"]["StorableSet_str_-Input"];
2145
+ checkinCounters: components["schemas"]["StorableSet_str_-Input"];
1943
2146
  /** Time */
1944
2147
  time: string | null;
1945
2148
  };
@@ -1954,21 +2157,20 @@ export type components = {
1954
2157
  personCount: number;
1955
2158
  /**
1956
2159
  * @default [
1957
- * "main"
1958
- * ]
2160
+ * "main"
2161
+ * ]
1959
2162
  */
1960
2163
  checkinCounters: components["schemas"]["StorableSet_str_-Output"];
1961
2164
  /** Time */
1962
2165
  time: string | null;
1963
2166
  /** Confirmed */
1964
- confirmed: boolean;
2167
+ readonly confirmed: boolean;
1965
2168
  };
1966
2169
  /** RadioButtonGroupField */
1967
2170
  RadioButtonGroupField: {
1968
2171
  /**
1969
- * Type
1970
- * @default radio
1971
- * @constant
2172
+ * @description discriminator enum property added by openapi-typescript
2173
+ * @enum {string}
1972
2174
  */
1973
2175
  type: "radio";
1974
2176
  /**
@@ -2006,9 +2208,9 @@ export type components = {
2006
2208
  required: boolean;
2007
2209
  /**
2008
2210
  * @default {
2009
- * "width": "half",
2010
- * "starts_new_line": false
2011
- * }
2211
+ * "width": "half",
2212
+ * "starts_new_line": false
2213
+ * }
2012
2214
  */
2013
2215
  backendModifiers: components["schemas"]["BackendModifiers"];
2014
2216
  /** Defaultvalue */
@@ -2031,14 +2233,15 @@ export type components = {
2031
2233
  /** Session Type */
2032
2234
  session_type?: string | null;
2033
2235
  /** Flags */
2034
- flags?: Record<string, unknown> | null;
2236
+ flags?: {
2237
+ [key: string]: unknown;
2238
+ } | null;
2035
2239
  };
2036
2240
  /** StaticField */
2037
2241
  StaticField: {
2038
2242
  /**
2039
- * Type
2040
- * @default static
2041
- * @constant
2243
+ * @description discriminator enum property added by openapi-typescript
2244
+ * @enum {string}
2042
2245
  */
2043
2246
  type: "static";
2044
2247
  /**
@@ -2076,9 +2279,9 @@ export type components = {
2076
2279
  required: boolean;
2077
2280
  /**
2078
2281
  * @default {
2079
- * "width": "half",
2080
- * "starts_new_line": false
2081
- * }
2282
+ * "width": "half",
2283
+ * "starts_new_line": false
2284
+ * }
2082
2285
  */
2083
2286
  backendModifiers: components["schemas"]["BackendModifiers"];
2084
2287
  /** Defaultvalue */
@@ -2099,9 +2302,8 @@ export type components = {
2099
2302
  /** TextField */
2100
2303
  TextField: {
2101
2304
  /**
2102
- * Type
2103
- * @default text
2104
- * @constant
2305
+ * @description discriminator enum property added by openapi-typescript
2306
+ * @enum {string}
2105
2307
  */
2106
2308
  type: "text";
2107
2309
  /**
@@ -2139,9 +2341,9 @@ export type components = {
2139
2341
  required: boolean;
2140
2342
  /**
2141
2343
  * @default {
2142
- * "width": "half",
2143
- * "starts_new_line": false
2144
- * }
2344
+ * "width": "half",
2345
+ * "starts_new_line": false
2346
+ * }
2145
2347
  */
2146
2348
  backendModifiers: components["schemas"]["BackendModifiers"];
2147
2349
  /** Defaultvalue */
@@ -2160,7 +2362,9 @@ export type components = {
2160
2362
  /** UserPreferencesUpdate */
2161
2363
  UserPreferencesUpdate: {
2162
2364
  /** Userdata */
2163
- userdata: Record<string, unknown>;
2365
+ userdata: {
2366
+ [key: string]: unknown;
2367
+ };
2164
2368
  };
2165
2369
  /** ValidationError */
2166
2370
  ValidationError: {
@@ -2178,7 +2382,7 @@ export type components = {
2178
2382
  /**
2179
2383
  * Variable
2180
2384
  * @description Variables store values which can be used on a global per instance basis,
2181
- * for example in multiple E-Mails.
2385
+ * for example in multiple E-Mails.
2182
2386
  */
2183
2387
  "Variable-Input": {
2184
2388
  /** Name */
@@ -2194,17 +2398,17 @@ export type components = {
2194
2398
  * Value
2195
2399
  * @default
2196
2400
  */
2197
- value?: string;
2401
+ value: string;
2198
2402
  /**
2199
2403
  * Isprivate
2200
2404
  * @default false
2201
2405
  */
2202
- isPrivate?: boolean;
2406
+ isPrivate: boolean;
2203
2407
  };
2204
2408
  /**
2205
2409
  * Variable
2206
2410
  * @description Variables store values which can be used on a global per instance basis,
2207
- * for example in multiple E-Mails.
2411
+ * for example in multiple E-Mails.
2208
2412
  */
2209
2413
  "Variable-Output": {
2210
2414
  /** Name */
@@ -2244,23 +2448,27 @@ export type components = {
2244
2448
  pathItems: never;
2245
2449
  };
2246
2450
  export type $defs = Record<string, never>;
2247
- export type external = Record<string, never>;
2248
- export type operations = {
2249
- /**
2250
- * Healthcheck
2251
- * @description healthcheck to see if api server is running
2252
- */
2451
+ export interface operations {
2253
2452
  healthcheck_health_get: {
2453
+ parameters: {
2454
+ query?: never;
2455
+ header?: never;
2456
+ path?: never;
2457
+ cookie?: never;
2458
+ };
2459
+ requestBody?: never;
2254
2460
  responses: {
2255
2461
  /** @description Successful Response */
2256
2462
  200: {
2463
+ headers: {
2464
+ [name: string]: unknown;
2465
+ };
2257
2466
  content: {
2258
2467
  "application/json": unknown;
2259
2468
  };
2260
2469
  };
2261
2470
  };
2262
2471
  };
2263
- /** Checkin Counts */
2264
2472
  checkin_counts_instances__instance_name__checkin_counts_get: {
2265
2473
  parameters: {
2266
2474
  query?: {
@@ -2272,10 +2480,15 @@ export type operations = {
2272
2480
  path: {
2273
2481
  instance_name: string;
2274
2482
  };
2483
+ cookie?: never;
2275
2484
  };
2485
+ requestBody?: never;
2276
2486
  responses: {
2277
2487
  /** @description Successful Response */
2278
2488
  200: {
2489
+ headers: {
2490
+ [name: string]: unknown;
2491
+ };
2279
2492
  content: {
2280
2493
  "application/json": {
2281
2494
  [key: string]: components["schemas"]["CheckinCount"];
@@ -2284,13 +2497,15 @@ export type operations = {
2284
2497
  };
2285
2498
  /** @description Validation Error */
2286
2499
  422: {
2500
+ headers: {
2501
+ [name: string]: unknown;
2502
+ };
2287
2503
  content: {
2288
2504
  "application/json": components["schemas"]["HTTPValidationError"];
2289
2505
  };
2290
2506
  };
2291
2507
  };
2292
2508
  };
2293
- /** Calcualte Custom Counts */
2294
2509
  calcualte_custom_counts_instances__instance_name__custom_counts_post: {
2295
2510
  parameters: {
2296
2511
  query?: {
@@ -2303,6 +2518,7 @@ export type operations = {
2303
2518
  path: {
2304
2519
  instance_name: string;
2305
2520
  };
2521
+ cookie?: never;
2306
2522
  };
2307
2523
  requestBody: {
2308
2524
  content: {
@@ -2312,6 +2528,9 @@ export type operations = {
2312
2528
  responses: {
2313
2529
  /** @description Successful Response */
2314
2530
  200: {
2531
+ headers: {
2532
+ [name: string]: unknown;
2533
+ };
2315
2534
  content: {
2316
2535
  "application/json": {
2317
2536
  [key: string]: number;
@@ -2320,21 +2539,23 @@ export type operations = {
2320
2539
  };
2321
2540
  /** @description Validation Error */
2322
2541
  422: {
2542
+ headers: {
2543
+ [name: string]: unknown;
2544
+ };
2323
2545
  content: {
2324
2546
  "application/json": components["schemas"]["HTTPValidationError"];
2325
2547
  };
2326
2548
  };
2327
2549
  };
2328
2550
  };
2329
- /**
2330
- * Create Events
2331
- * @description Send a list of events to be applied to the current state. Events are executed in order.
2332
- */
2333
2551
  create_events_events_post: {
2334
2552
  parameters: {
2553
+ query?: never;
2335
2554
  header?: {
2336
2555
  "x-enter-device-name"?: string | null;
2337
2556
  };
2557
+ path?: never;
2558
+ cookie?: never;
2338
2559
  };
2339
2560
  requestBody: {
2340
2561
  content: {
@@ -2344,19 +2565,24 @@ export type operations = {
2344
2565
  responses: {
2345
2566
  /** @description Successful Response */
2346
2567
  201: {
2568
+ headers: {
2569
+ [name: string]: unknown;
2570
+ };
2347
2571
  content: {
2348
2572
  "application/json": components["schemas"]["EventResponse"];
2349
2573
  };
2350
2574
  };
2351
2575
  /** @description Validation Error */
2352
2576
  422: {
2577
+ headers: {
2578
+ [name: string]: unknown;
2579
+ };
2353
2580
  content: {
2354
2581
  "application/json": components["schemas"]["HTTPValidationError"];
2355
2582
  };
2356
2583
  };
2357
2584
  };
2358
2585
  };
2359
- /** Get Events */
2360
2586
  get_events_events_stream_get: {
2361
2587
  parameters: {
2362
2588
  query?: {
@@ -2364,85 +2590,106 @@ export type operations = {
2364
2590
  event_type?: string[] | null;
2365
2591
  };
2366
2592
  header?: {
2593
+ "Last-Event-ID"?: string | null;
2367
2594
  "x-enter-device-name"?: string | null;
2368
2595
  };
2596
+ path?: never;
2597
+ cookie?: never;
2369
2598
  };
2599
+ requestBody?: never;
2370
2600
  responses: {
2371
2601
  /** @description Successful Response */
2372
2602
  200: {
2603
+ headers: {
2604
+ [name: string]: unknown;
2605
+ };
2373
2606
  content: {
2374
2607
  "text/event-stream": components["schemas"]["AttendeeCreatedEvent-Output"] | components["schemas"]["AttendeeUpdatedEvent-Output"] | components["schemas"]["AttendeeRespondedEvent-Output"] | components["schemas"]["AttendeeRestoredEvent"] | components["schemas"]["AttendeeDeletedEvent-Output"] | components["schemas"]["AttendeeAuthCodeRequested-Output"] | components["schemas"]["CheckinCreatedEvent-Output"] | components["schemas"]["CheckinDeletedEvent-Output"] | components["schemas"]["CompanionLinkedEvent"] | components["schemas"]["CompanionUnlinkedEvent"] | components["schemas"]["CompanionNameChangedEvent"] | components["schemas"]["MainGuestLinkedEvent"] | components["schemas"]["MainGuestUnlinkedEvent"] | components["schemas"]["MainGuestNameChangedEvent"] | components["schemas"]["PaymentPaidEvent-Output"];
2375
2608
  };
2376
2609
  };
2377
2610
  /** @description Validation Error */
2378
2611
  422: {
2612
+ headers: {
2613
+ [name: string]: unknown;
2614
+ };
2379
2615
  content: {
2380
2616
  "application/json": components["schemas"]["HTTPValidationError"];
2381
2617
  };
2382
2618
  };
2383
2619
  };
2384
2620
  };
2385
- /** Fields */
2386
2621
  fields_instances__instance_name__fields_get: {
2387
2622
  parameters: {
2623
+ query?: never;
2388
2624
  header?: {
2389
2625
  "x-enter-device-name"?: string | null;
2390
2626
  };
2391
2627
  path: {
2392
2628
  instance_name: string;
2393
2629
  };
2630
+ cookie?: never;
2394
2631
  };
2632
+ requestBody?: never;
2395
2633
  responses: {
2396
2634
  /** @description Successful Response */
2397
2635
  200: {
2636
+ headers: {
2637
+ [name: string]: unknown;
2638
+ };
2398
2639
  content: {
2399
2640
  "application/json": components["schemas"]["FieldGroup"][];
2400
2641
  };
2401
2642
  };
2402
2643
  /** @description Validation Error */
2403
2644
  422: {
2645
+ headers: {
2646
+ [name: string]: unknown;
2647
+ };
2404
2648
  content: {
2405
2649
  "application/json": components["schemas"]["HTTPValidationError"];
2406
2650
  };
2407
2651
  };
2408
2652
  };
2409
2653
  };
2410
- /** Current User */
2411
2654
  current_user_users_me_get: {
2412
2655
  parameters: {
2656
+ query?: never;
2413
2657
  header?: {
2414
2658
  "x-enter-device-name"?: string | null;
2415
2659
  };
2660
+ path?: never;
2661
+ cookie?: never;
2416
2662
  };
2663
+ requestBody?: never;
2417
2664
  responses: {
2418
2665
  /** @description Successful Response */
2419
2666
  200: {
2667
+ headers: {
2668
+ [name: string]: unknown;
2669
+ };
2420
2670
  content: {
2421
2671
  "application/json": components["schemas"]["PublicUser"];
2422
2672
  };
2423
2673
  };
2424
2674
  /** @description Validation Error */
2425
2675
  422: {
2676
+ headers: {
2677
+ [name: string]: unknown;
2678
+ };
2426
2679
  content: {
2427
2680
  "application/json": components["schemas"]["HTTPValidationError"];
2428
2681
  };
2429
2682
  };
2430
2683
  };
2431
2684
  };
2432
- /**
2433
- * Update Current User
2434
- * @description This method allows to update the `userdata` associated with the current user
2435
- *
2436
- * The `userdata` keys at the root level are megred.
2437
- * This means only provided keys will be updated, others are left unchanged.
2438
- *
2439
- * To delete a key set its value to `null`.
2440
- */
2441
2685
  update_current_user_users_me_patch: {
2442
2686
  parameters: {
2687
+ query?: never;
2443
2688
  header?: {
2444
2689
  "x-enter-device-name"?: string | null;
2445
2690
  };
2691
+ path?: never;
2692
+ cookie?: never;
2446
2693
  };
2447
2694
  requestBody: {
2448
2695
  content: {
@@ -2452,66 +2699,88 @@ export type operations = {
2452
2699
  responses: {
2453
2700
  /** @description Successful Response */
2454
2701
  200: {
2702
+ headers: {
2703
+ [name: string]: unknown;
2704
+ };
2455
2705
  content: {
2456
2706
  "application/json": components["schemas"]["PublicUser"];
2457
2707
  };
2458
2708
  };
2459
2709
  /** @description Validation Error */
2460
2710
  422: {
2711
+ headers: {
2712
+ [name: string]: unknown;
2713
+ };
2461
2714
  content: {
2462
2715
  "application/json": components["schemas"]["HTTPValidationError"];
2463
2716
  };
2464
2717
  };
2465
2718
  };
2466
2719
  };
2467
- /** Instance List */
2468
2720
  instance_list_instances_get: {
2469
2721
  parameters: {
2722
+ query?: never;
2470
2723
  header?: {
2471
2724
  "x-enter-device-name"?: string | null;
2472
2725
  };
2726
+ path?: never;
2727
+ cookie?: never;
2473
2728
  };
2729
+ requestBody?: never;
2474
2730
  responses: {
2475
2731
  /** @description Successful Response */
2476
2732
  200: {
2733
+ headers: {
2734
+ [name: string]: unknown;
2735
+ };
2477
2736
  content: {
2478
2737
  "application/json": components["schemas"]["PublicInstance"][];
2479
2738
  };
2480
2739
  };
2481
2740
  /** @description Validation Error */
2482
2741
  422: {
2742
+ headers: {
2743
+ [name: string]: unknown;
2744
+ };
2483
2745
  content: {
2484
2746
  "application/json": components["schemas"]["HTTPValidationError"];
2485
2747
  };
2486
2748
  };
2487
2749
  };
2488
2750
  };
2489
- /** Single Instance */
2490
2751
  single_instance_instances__instance_name__get: {
2491
2752
  parameters: {
2753
+ query?: never;
2492
2754
  header?: {
2493
2755
  "x-enter-device-name"?: string | null;
2494
2756
  };
2495
2757
  path: {
2496
2758
  instance_name: string;
2497
2759
  };
2760
+ cookie?: never;
2498
2761
  };
2762
+ requestBody?: never;
2499
2763
  responses: {
2500
2764
  /** @description Successful Response */
2501
2765
  200: {
2766
+ headers: {
2767
+ [name: string]: unknown;
2768
+ };
2502
2769
  content: {
2503
2770
  "application/json": components["schemas"]["PublicInstance"];
2504
2771
  };
2505
2772
  };
2506
2773
  /** @description Validation Error */
2507
2774
  422: {
2775
+ headers: {
2776
+ [name: string]: unknown;
2777
+ };
2508
2778
  content: {
2509
2779
  "application/json": components["schemas"]["HTTPValidationError"];
2510
2780
  };
2511
2781
  };
2512
2782
  };
2513
2783
  };
2514
- /** Attendee List */
2515
2784
  attendee_list_instances__instance_name__attendees_get: {
2516
2785
  parameters: {
2517
2786
  query?: {
@@ -2525,23 +2794,30 @@ export type operations = {
2525
2794
  path: {
2526
2795
  instance_name: string;
2527
2796
  };
2797
+ cookie?: never;
2528
2798
  };
2799
+ requestBody?: never;
2529
2800
  responses: {
2530
2801
  /** @description Successful Response */
2531
2802
  200: {
2803
+ headers: {
2804
+ [name: string]: unknown;
2805
+ };
2532
2806
  content: {
2533
2807
  "application/json": components["schemas"]["PublicAttendee-Output"][];
2534
2808
  };
2535
2809
  };
2536
2810
  /** @description Validation Error */
2537
2811
  422: {
2812
+ headers: {
2813
+ [name: string]: unknown;
2814
+ };
2538
2815
  content: {
2539
2816
  "application/json": components["schemas"]["HTTPValidationError"];
2540
2817
  };
2541
2818
  };
2542
2819
  };
2543
2820
  };
2544
- /** Single Attende */
2545
2821
  single_attende_instances__instance_name__attendees__attendee_id__get: {
2546
2822
  parameters: {
2547
2823
  query?: {
@@ -2554,23 +2830,30 @@ export type operations = {
2554
2830
  instance_name: string;
2555
2831
  attendee_id: string;
2556
2832
  };
2833
+ cookie?: never;
2557
2834
  };
2835
+ requestBody?: never;
2558
2836
  responses: {
2559
2837
  /** @description Successful Response */
2560
2838
  200: {
2839
+ headers: {
2840
+ [name: string]: unknown;
2841
+ };
2561
2842
  content: {
2562
2843
  "application/json": components["schemas"]["PublicAttendee-Output"];
2563
2844
  };
2564
2845
  };
2565
2846
  /** @description Validation Error */
2566
2847
  422: {
2848
+ headers: {
2849
+ [name: string]: unknown;
2850
+ };
2567
2851
  content: {
2568
2852
  "application/json": components["schemas"]["HTTPValidationError"];
2569
2853
  };
2570
2854
  };
2571
2855
  };
2572
2856
  };
2573
- /** Attendee Companions */
2574
2857
  attendee_companions_instances__instance_name__attendees__attendee_id__companions_get: {
2575
2858
  parameters: {
2576
2859
  query?: {
@@ -2583,25 +2866,33 @@ export type operations = {
2583
2866
  instance_name: string;
2584
2867
  attendee_id: string;
2585
2868
  };
2869
+ cookie?: never;
2586
2870
  };
2871
+ requestBody?: never;
2587
2872
  responses: {
2588
2873
  /** @description Successful Response */
2589
2874
  200: {
2875
+ headers: {
2876
+ [name: string]: unknown;
2877
+ };
2590
2878
  content: {
2591
2879
  "application/json": components["schemas"]["PublicAttendee-Output"][];
2592
2880
  };
2593
2881
  };
2594
2882
  /** @description Validation Error */
2595
2883
  422: {
2884
+ headers: {
2885
+ [name: string]: unknown;
2886
+ };
2596
2887
  content: {
2597
2888
  "application/json": components["schemas"]["HTTPValidationError"];
2598
2889
  };
2599
2890
  };
2600
2891
  };
2601
2892
  };
2602
- /** Send Email */
2603
2893
  send_email_instances__instance_name__attendees__attendee_id__emails__email_name__send_post: {
2604
2894
  parameters: {
2895
+ query?: never;
2605
2896
  header?: {
2606
2897
  "x-enter-device-name"?: string | null;
2607
2898
  };
@@ -2610,21 +2901,28 @@ export type operations = {
2610
2901
  attendee_id: string;
2611
2902
  email_name: string;
2612
2903
  };
2904
+ cookie?: never;
2613
2905
  };
2906
+ requestBody?: never;
2614
2907
  responses: {
2615
2908
  /** @description Successful Response */
2616
2909
  204: {
2617
- content: never;
2910
+ headers: {
2911
+ [name: string]: unknown;
2912
+ };
2913
+ content?: never;
2618
2914
  };
2619
2915
  /** @description Validation Error */
2620
2916
  422: {
2917
+ headers: {
2918
+ [name: string]: unknown;
2919
+ };
2621
2920
  content: {
2622
2921
  "application/json": components["schemas"]["HTTPValidationError"];
2623
2922
  };
2624
2923
  };
2625
2924
  };
2626
2925
  };
2627
- /** Rendered Email Content */
2628
2926
  rendered_email_content_instances__instance_name__attendees__attendee_id__emails__email_name__render_get: {
2629
2927
  parameters: {
2630
2928
  query?: {
@@ -2638,56 +2936,73 @@ export type operations = {
2638
2936
  attendee_id: string;
2639
2937
  email_name: string;
2640
2938
  };
2939
+ cookie?: never;
2641
2940
  };
2941
+ requestBody?: never;
2642
2942
  responses: {
2643
2943
  /** @description Successful Response */
2644
2944
  200: {
2945
+ headers: {
2946
+ [name: string]: unknown;
2947
+ };
2645
2948
  content: {
2646
2949
  "application/json": components["schemas"]["PublicEmail"];
2647
2950
  };
2648
2951
  };
2649
2952
  /** @description Validation Error */
2650
2953
  422: {
2954
+ headers: {
2955
+ [name: string]: unknown;
2956
+ };
2651
2957
  content: {
2652
2958
  "application/json": components["schemas"]["HTTPValidationError"];
2653
2959
  };
2654
2960
  };
2655
2961
  };
2656
2962
  };
2657
- /** Variable List */
2658
2963
  variable_list_instances__instance_name__variables_get: {
2659
2964
  parameters: {
2965
+ query?: never;
2660
2966
  header?: {
2661
2967
  "x-enter-device-name"?: string | null;
2662
2968
  };
2663
2969
  path: {
2664
2970
  instance_name: string;
2665
2971
  };
2972
+ cookie?: never;
2666
2973
  };
2974
+ requestBody?: never;
2667
2975
  responses: {
2668
2976
  /** @description Successful Response */
2669
2977
  200: {
2978
+ headers: {
2979
+ [name: string]: unknown;
2980
+ };
2670
2981
  content: {
2671
2982
  "application/json": components["schemas"]["Variable-Output"][];
2672
2983
  };
2673
2984
  };
2674
2985
  /** @description Validation Error */
2675
2986
  422: {
2987
+ headers: {
2988
+ [name: string]: unknown;
2989
+ };
2676
2990
  content: {
2677
2991
  "application/json": components["schemas"]["HTTPValidationError"];
2678
2992
  };
2679
2993
  };
2680
2994
  };
2681
2995
  };
2682
- /** Create Variable */
2683
2996
  create_variable_instances__instance_name__variables_post: {
2684
2997
  parameters: {
2998
+ query?: never;
2685
2999
  header?: {
2686
3000
  "x-enter-device-name"?: string | null;
2687
3001
  };
2688
3002
  path: {
2689
3003
  instance_name: string;
2690
3004
  };
3005
+ cookie?: never;
2691
3006
  };
2692
3007
  requestBody: {
2693
3008
  content: {
@@ -2697,21 +3012,27 @@ export type operations = {
2697
3012
  responses: {
2698
3013
  /** @description Successful Response */
2699
3014
  200: {
3015
+ headers: {
3016
+ [name: string]: unknown;
3017
+ };
2700
3018
  content: {
2701
3019
  "application/json": components["schemas"]["Variable-Output"];
2702
3020
  };
2703
3021
  };
2704
3022
  /** @description Validation Error */
2705
3023
  422: {
3024
+ headers: {
3025
+ [name: string]: unknown;
3026
+ };
2706
3027
  content: {
2707
3028
  "application/json": components["schemas"]["HTTPValidationError"];
2708
3029
  };
2709
3030
  };
2710
3031
  };
2711
3032
  };
2712
- /** Single Variable */
2713
3033
  single_variable_instances__instance_name__variables__variable_name__get: {
2714
3034
  parameters: {
3035
+ query?: never;
2715
3036
  header?: {
2716
3037
  "x-enter-device-name"?: string | null;
2717
3038
  };
@@ -2719,25 +3040,33 @@ export type operations = {
2719
3040
  instance_name: string;
2720
3041
  variable_name: string;
2721
3042
  };
3043
+ cookie?: never;
2722
3044
  };
3045
+ requestBody?: never;
2723
3046
  responses: {
2724
3047
  /** @description Successful Response */
2725
3048
  200: {
3049
+ headers: {
3050
+ [name: string]: unknown;
3051
+ };
2726
3052
  content: {
2727
3053
  "application/json": components["schemas"]["Variable-Output"];
2728
3054
  };
2729
3055
  };
2730
3056
  /** @description Validation Error */
2731
3057
  422: {
3058
+ headers: {
3059
+ [name: string]: unknown;
3060
+ };
2732
3061
  content: {
2733
3062
  "application/json": components["schemas"]["HTTPValidationError"];
2734
3063
  };
2735
3064
  };
2736
3065
  };
2737
3066
  };
2738
- /** Update Variable */
2739
3067
  update_variable_instances__instance_name__variables__variable_name__put: {
2740
3068
  parameters: {
3069
+ query?: never;
2741
3070
  header?: {
2742
3071
  "x-enter-device-name"?: string | null;
2743
3072
  };
@@ -2745,6 +3074,7 @@ export type operations = {
2745
3074
  instance_name: string;
2746
3075
  variable_name: string;
2747
3076
  };
3077
+ cookie?: never;
2748
3078
  };
2749
3079
  requestBody: {
2750
3080
  content: {
@@ -2754,21 +3084,27 @@ export type operations = {
2754
3084
  responses: {
2755
3085
  /** @description Successful Response */
2756
3086
  200: {
3087
+ headers: {
3088
+ [name: string]: unknown;
3089
+ };
2757
3090
  content: {
2758
3091
  "application/json": components["schemas"]["Variable-Output"];
2759
3092
  };
2760
3093
  };
2761
3094
  /** @description Validation Error */
2762
3095
  422: {
3096
+ headers: {
3097
+ [name: string]: unknown;
3098
+ };
2763
3099
  content: {
2764
3100
  "application/json": components["schemas"]["HTTPValidationError"];
2765
3101
  };
2766
3102
  };
2767
3103
  };
2768
3104
  };
2769
- /** Delete Variable */
2770
3105
  delete_variable_instances__instance_name__variables__variable_name__delete: {
2771
3106
  parameters: {
3107
+ query?: never;
2772
3108
  header?: {
2773
3109
  "x-enter-device-name"?: string | null;
2774
3110
  };
@@ -2776,29 +3112,38 @@ export type operations = {
2776
3112
  instance_name: string;
2777
3113
  variable_name: string;
2778
3114
  };
3115
+ cookie?: never;
2779
3116
  };
3117
+ requestBody?: never;
2780
3118
  responses: {
2781
3119
  /** @description Successful Response */
2782
3120
  204: {
2783
- content: never;
3121
+ headers: {
3122
+ [name: string]: unknown;
3123
+ };
3124
+ content?: never;
2784
3125
  };
2785
3126
  /** @description Validation Error */
2786
3127
  422: {
3128
+ headers: {
3129
+ [name: string]: unknown;
3130
+ };
2787
3131
  content: {
2788
3132
  "application/json": components["schemas"]["HTTPValidationError"];
2789
3133
  };
2790
3134
  };
2791
3135
  };
2792
3136
  };
2793
- /** Generate Signed Registration Token */
2794
3137
  generate_signed_registration_token_instances__instance_name__registration_registration_token_post: {
2795
3138
  parameters: {
3139
+ query?: never;
2796
3140
  header?: {
2797
3141
  "x-enter-device-name"?: string | null;
2798
3142
  };
2799
3143
  path: {
2800
3144
  instance_name: string;
2801
3145
  };
3146
+ cookie?: never;
2802
3147
  };
2803
3148
  requestBody: {
2804
3149
  content: {
@@ -2808,16 +3153,22 @@ export type operations = {
2808
3153
  responses: {
2809
3154
  /** @description Successful Response */
2810
3155
  200: {
3156
+ headers: {
3157
+ [name: string]: unknown;
3158
+ };
2811
3159
  content: {
2812
3160
  "application/json": string;
2813
3161
  };
2814
3162
  };
2815
3163
  /** @description Validation Error */
2816
3164
  422: {
3165
+ headers: {
3166
+ [name: string]: unknown;
3167
+ };
2817
3168
  content: {
2818
3169
  "application/json": components["schemas"]["HTTPValidationError"];
2819
3170
  };
2820
3171
  };
2821
3172
  };
2822
3173
  };
2823
- };
3174
+ }