@dev-crew-berlin/enter-js-utils 0.87.0 → 0.87.2

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.
@@ -111,8 +111,6 @@ export type components = {
111
111
  * @constant
112
112
  */
113
113
  event?: "attendee-auth-code-requested";
114
- /** Preconditions */
115
- preconditions?: ([components["schemas"]["NarrowedAttendeeSelector"] | components["schemas"]["EmptyAttendeeSelector"], components["schemas"]["RegistrationInfo"]]) | null;
116
114
  /** Instancename */
117
115
  instanceName: string;
118
116
  /** Attendeeid */
@@ -134,7 +132,6 @@ export type components = {
134
132
  * @constant
135
133
  */
136
134
  event?: "attendee-created";
137
- preconditions?: components["schemas"]["common__events__attendee_created_event__Preconditions"] | null;
138
135
  attendee: components["schemas"]["PublicAttendee-Input"];
139
136
  /** Instancename */
140
137
  instanceName: string;
@@ -155,8 +152,6 @@ export type components = {
155
152
  * @constant
156
153
  */
157
154
  event?: "attendee-deleted";
158
- /** Preconditions */
159
- preconditions?: components["schemas"]["NarrowedAttendeeSelector"] | components["schemas"]["EmptyAttendeeSelector"] | null;
160
155
  /** Attendeeid */
161
156
  attendeeId: string;
162
157
  /** Instancename */
@@ -192,7 +187,6 @@ export type components = {
192
187
  * @constant
193
188
  */
194
189
  event?: "attendee-responded";
195
- preconditions?: components["schemas"]["common__events__attendee_responded_event__Preconditions"] | null;
196
190
  /** Instancename */
197
191
  instanceName: string;
198
192
  /** Attendeeid */
@@ -248,7 +242,6 @@ export type components = {
248
242
  * @constant
249
243
  */
250
244
  event?: "attendee-updated";
251
- preconditions?: components["schemas"]["common__events__attendee_updated_event__Preconditions"] | null;
252
245
  /** Instancename */
253
246
  instanceName: string;
254
247
  /** Attendeeid */
@@ -269,28 +262,19 @@ export type components = {
269
262
  /** Flags */
270
263
  flags?: Record<string, unknown> | null;
271
264
  };
272
- /** AuthCodeGenerator */
273
- AuthCodeGenerator: {
265
+ /** BackendModifiers */
266
+ BackendModifiers: {
274
267
  /**
275
- * Chars
276
- * @default abcdefghijklmnopqrstuvwxyz1234567890
277
- */
278
- chars?: string;
279
- /**
280
- * Length
281
- * @default 8
282
- */
283
- length?: number;
284
- /**
285
- * Prefix
286
- * @default
268
+ * Width
269
+ * @default half
270
+ * @enum {string}
287
271
  */
288
- prefix?: string;
272
+ width?: "half" | "full";
289
273
  /**
290
- * Suffix
291
- * @default
274
+ * Starts New Line
275
+ * @default false
292
276
  */
293
- suffix?: string;
277
+ starts_new_line?: boolean;
294
278
  };
295
279
  /** Branch */
296
280
  Branch: {
@@ -315,54 +299,7 @@ export type components = {
315
299
  };
316
300
  };
317
301
  /** CheckboxField */
318
- "CheckboxField-Input": {
319
- /**
320
- * Type
321
- * @default checkbox
322
- * @constant
323
- */
324
- type?: "checkbox";
325
- /**
326
- * Name
327
- * @default new_field
328
- */
329
- name?: string;
330
- /** Title */
331
- title?: string | {
332
- [key: string]: string;
333
- } | null;
334
- /** Info */
335
- info?: string | {
336
- [key: string]: string;
337
- } | null;
338
- /**
339
- * Class
340
- * @default
341
- */
342
- class?: string;
343
- /**
344
- * Ismetafield
345
- * @default false
346
- */
347
- isMetaField?: boolean;
348
- /**
349
- * Static
350
- * @default false
351
- */
352
- static?: boolean;
353
- /**
354
- * Required
355
- * @default false
356
- */
357
- required?: boolean;
358
- /**
359
- * Hidden
360
- * @default false
361
- */
362
- hidden?: boolean;
363
- };
364
- /** CheckboxField */
365
- "CheckboxField-Output": {
302
+ CheckboxField: {
366
303
  /**
367
304
  * Type
368
305
  * @default checkbox
@@ -403,65 +340,17 @@ export type components = {
403
340
  */
404
341
  required: boolean;
405
342
  /**
406
- * Hidden
407
- * @default false
408
- */
409
- hidden: boolean;
410
- };
411
- /** CheckboxGroupField */
412
- "CheckboxGroupField-Input": {
413
- /**
414
- * Type
415
- * @default check
416
- * @constant
417
- */
418
- type?: "check";
419
- /**
420
- * Name
421
- * @default new_field
422
- */
423
- name?: string;
424
- /** Title */
425
- title?: string | {
426
- [key: string]: string;
427
- } | null;
428
- /** Info */
429
- info?: string | {
430
- [key: string]: string;
431
- } | null;
432
- /**
433
- * Class
434
- * @default
435
- */
436
- class?: string;
437
- /**
438
- * Ismetafield
439
- * @default false
440
- */
441
- isMetaField?: boolean;
442
- /**
443
- * Static
444
- * @default false
445
- */
446
- static?: boolean;
447
- /**
448
- * Required
449
- * @default false
450
- */
451
- required?: boolean;
452
- /**
453
- * Hidden
454
- * @default false
455
- */
456
- hidden?: boolean;
457
- /**
458
- * Items
459
- * @default []
343
+ * @default {
344
+ * "width": "half",
345
+ * "starts_new_line": false
346
+ * }
460
347
  */
461
- items?: components["schemas"]["ItemOption-Input"][];
348
+ backendModifiers: components["schemas"]["BackendModifiers"];
349
+ /** Defaultvalue */
350
+ defaultValue: boolean | null;
462
351
  };
463
352
  /** CheckboxGroupField */
464
- "CheckboxGroupField-Output": {
353
+ CheckboxGroupField: {
465
354
  /**
466
355
  * Type
467
356
  * @default check
@@ -502,15 +391,19 @@ export type components = {
502
391
  */
503
392
  required: boolean;
504
393
  /**
505
- * Hidden
506
- * @default false
394
+ * @default {
395
+ * "width": "half",
396
+ * "starts_new_line": false
397
+ * }
507
398
  */
508
- hidden: boolean;
399
+ backendModifiers: components["schemas"]["BackendModifiers"];
400
+ /** Defaultvalue */
401
+ defaultValue: string[] | null;
509
402
  /**
510
403
  * Items
511
404
  * @default []
512
405
  */
513
- items: components["schemas"]["ItemOption-Output"][];
406
+ items: components["schemas"]["ItemOption"][];
514
407
  };
515
408
  /**
516
409
  * Checkin
@@ -590,8 +483,6 @@ export type components = {
590
483
  * @constant
591
484
  */
592
485
  event?: "checkin-created";
593
- /** Preconditions */
594
- preconditions?: null;
595
486
  /** Instancename */
596
487
  instanceName: string;
597
488
  /** Attendeeid */
@@ -616,8 +507,6 @@ export type components = {
616
507
  * @constant
617
508
  */
618
509
  event?: "checkin-deleted";
619
- /** Preconditions */
620
- preconditions?: null;
621
510
  /** Instancename */
622
511
  instanceName: string;
623
512
  /** Attendeeid */
@@ -663,64 +552,7 @@ export type components = {
663
552
  deleted: string[];
664
553
  };
665
554
  /** CodeField */
666
- "CodeField-Input": {
667
- /**
668
- * Type
669
- * @default code
670
- * @constant
671
- */
672
- type?: "code";
673
- /**
674
- * Name
675
- * @default new_field
676
- */
677
- name?: string;
678
- /** Title */
679
- title?: string | {
680
- [key: string]: string;
681
- } | null;
682
- /** Info */
683
- info?: string | {
684
- [key: string]: string;
685
- } | null;
686
- /**
687
- * Class
688
- * @default
689
- */
690
- class?: string;
691
- /**
692
- * Ismetafield
693
- * @default false
694
- */
695
- isMetaField?: boolean;
696
- /**
697
- * Static
698
- * @default false
699
- */
700
- static?: boolean;
701
- /**
702
- * Required
703
- * @default false
704
- */
705
- required?: boolean;
706
- /**
707
- * Hidden
708
- * @default false
709
- */
710
- hidden?: boolean;
711
- /**
712
- * Min
713
- * @default 0
714
- */
715
- min?: number;
716
- /**
717
- * Max
718
- * @default 2000
719
- */
720
- max?: number;
721
- };
722
- /** CodeField */
723
- "CodeField-Output": {
555
+ CodeField: {
724
556
  /**
725
557
  * Type
726
558
  * @default code
@@ -761,10 +593,14 @@ export type components = {
761
593
  */
762
594
  required: boolean;
763
595
  /**
764
- * Hidden
765
- * @default false
596
+ * @default {
597
+ * "width": "half",
598
+ * "starts_new_line": false
599
+ * }
766
600
  */
767
- hidden: boolean;
601
+ backendModifiers: components["schemas"]["BackendModifiers"];
602
+ /** Defaultvalue */
603
+ defaultValue: string | null;
768
604
  /**
769
605
  * Min
770
606
  * @default 0
@@ -821,54 +657,7 @@ export type components = {
821
657
  filter: string;
822
658
  };
823
659
  /** DateField */
824
- "DateField-Input": {
825
- /**
826
- * Type
827
- * @default date
828
- * @constant
829
- */
830
- type?: "date";
831
- /**
832
- * Name
833
- * @default new_field
834
- */
835
- name?: string;
836
- /** Title */
837
- title?: string | {
838
- [key: string]: string;
839
- } | null;
840
- /** Info */
841
- info?: string | {
842
- [key: string]: string;
843
- } | null;
844
- /**
845
- * Class
846
- * @default
847
- */
848
- class?: string;
849
- /**
850
- * Ismetafield
851
- * @default false
852
- */
853
- isMetaField?: boolean;
854
- /**
855
- * Static
856
- * @default false
857
- */
858
- static?: boolean;
859
- /**
860
- * Required
861
- * @default false
862
- */
863
- required?: boolean;
864
- /**
865
- * Hidden
866
- * @default false
867
- */
868
- hidden?: boolean;
869
- };
870
- /** DateField */
871
- "DateField-Output": {
660
+ DateField: {
872
661
  /**
873
662
  * Type
874
663
  * @default date
@@ -909,78 +698,83 @@ export type components = {
909
698
  */
910
699
  required: boolean;
911
700
  /**
912
- * Hidden
913
- * @default false
701
+ * @default {
702
+ * "width": "half",
703
+ * "starts_new_line": false
704
+ * }
914
705
  */
915
- hidden: boolean;
916
- };
917
- /** Domain */
918
- Domain: {
919
- /** Name */
920
- name: string;
921
- /** Record Key */
922
- record_key?: string | null;
706
+ backendModifiers: components["schemas"]["BackendModifiers"];
707
+ /** Defaultvalue */
708
+ defaultValue: string | null;
709
+ /** Min */
710
+ min: string | null;
711
+ /** Max */
712
+ max: string | null;
923
713
  };
924
714
  /** DropdownField */
925
- "DropdownField-Input": {
715
+ DropdownField: {
926
716
  /**
927
717
  * Type
928
718
  * @default dropdown
929
719
  * @constant
930
720
  */
931
- type?: "dropdown";
721
+ type: "dropdown";
932
722
  /**
933
723
  * Name
934
724
  * @default new_field
935
725
  */
936
- name?: string;
726
+ name: string;
937
727
  /** Title */
938
- title?: string | {
728
+ title: string | {
939
729
  [key: string]: string;
940
730
  } | null;
941
731
  /** Info */
942
- info?: string | {
732
+ info: string | {
943
733
  [key: string]: string;
944
734
  } | null;
945
735
  /**
946
736
  * Class
947
737
  * @default
948
738
  */
949
- class?: string;
739
+ class: string;
950
740
  /**
951
741
  * Ismetafield
952
742
  * @default false
953
743
  */
954
- isMetaField?: boolean;
744
+ isMetaField: boolean;
955
745
  /**
956
746
  * Static
957
747
  * @default false
958
748
  */
959
- static?: boolean;
749
+ static: boolean;
960
750
  /**
961
751
  * Required
962
752
  * @default false
963
753
  */
964
- required?: boolean;
754
+ required: boolean;
965
755
  /**
966
- * Hidden
967
- * @default false
756
+ * @default {
757
+ * "width": "half",
758
+ * "starts_new_line": false
759
+ * }
968
760
  */
969
- hidden?: boolean;
761
+ backendModifiers: components["schemas"]["BackendModifiers"];
762
+ /** Defaultvalue */
763
+ defaultValue: string | null;
970
764
  /**
971
765
  * Items
972
766
  * @default []
973
767
  */
974
- items?: components["schemas"]["ItemOption-Input"][];
768
+ items: components["schemas"]["ItemOption"][];
975
769
  };
976
- /** DropdownField */
977
- "DropdownField-Output": {
770
+ /** EmailField */
771
+ EmailField: {
978
772
  /**
979
773
  * Type
980
- * @default dropdown
774
+ * @default email
981
775
  * @constant
982
776
  */
983
- type: "dropdown";
777
+ type: "email";
984
778
  /**
985
779
  * Name
986
780
  * @default new_field
@@ -1015,322 +809,77 @@ export type components = {
1015
809
  */
1016
810
  required: boolean;
1017
811
  /**
1018
- * Hidden
1019
- * @default false
1020
- */
1021
- hidden: boolean;
1022
- /**
1023
- * Items
1024
- * @default []
812
+ * @default {
813
+ * "width": "half",
814
+ * "starts_new_line": false
815
+ * }
1025
816
  */
1026
- items: components["schemas"]["ItemOption-Output"][];
1027
- };
1028
- /** EmailConfig */
1029
- EmailConfig: {
817
+ backendModifiers: components["schemas"]["BackendModifiers"];
818
+ /** Defaultvalue */
819
+ defaultValue: string | null;
1030
820
  /**
1031
- * Name
1032
- * @default
821
+ * Min
822
+ * @default 0
1033
823
  */
1034
- name?: string;
824
+ min: number;
1035
825
  /**
1036
- * Subject
1037
- * @default
826
+ * Max
827
+ * @default 1000
1038
828
  */
1039
- subject?: string;
829
+ max: number;
830
+ };
831
+ /** EmailStatus */
832
+ EmailStatus: {
1040
833
  /**
1041
- * Plain
1042
- * @default
834
+ * Mailing Id
835
+ * @description the unique id of the bulk or single mailing
1043
836
  */
1044
- plain?: string;
837
+ mailing_id: string;
1045
838
  /**
1046
- * Html
1047
- * @default
839
+ * Status
840
+ * @enum {string}
1048
841
  */
1049
- html?: string;
842
+ status: "pending" | "waiting" | "submitted" | "skipped" | "sent" | "opened" | "clicked" | "invalid" | "rejected" | "unsubscribed";
1050
843
  /**
1051
- * To
1052
- * @default
844
+ * Updated At
845
+ * Format: date-time
1053
846
  */
1054
- to?: string;
847
+ updated_at?: string;
1055
848
  /**
1056
- * To Name
1057
- * @default
849
+ * Time
850
+ * @description the time the email was sent (this should only be set when setting the status to 'sent')
1058
851
  */
1059
- to_name?: string;
852
+ time?: string | null;
1060
853
  /**
1061
- * From
1062
- * @default
854
+ * Reason
855
+ * @description for error states a reason can be added to the event (reasons will be merged with reasons from prevoius errors)
1063
856
  */
1064
- from?: string;
857
+ reason?: string | components["schemas"]["StorableSet_str_-Input"];
858
+ /** @description for open events a set of email clients can be added (those will be merged with clients from prevois states) */
859
+ clients?: components["schemas"]["StorableSet_str_-Input"];
860
+ /** @description for clicked events a url can be provided (those will be merged with clicks from prevois events) */
861
+ clicks?: components["schemas"]["StorableSet_str_-Input"];
862
+ };
863
+ /**
864
+ * EmailStatusUpdatedEvent
865
+ * @description EmailStatus for attendee was updated.
866
+ *
867
+ * Note that there is a special email-unsubscribed-event that also
868
+ * adds the email address to a blacklist.
869
+ * This event will only update the email status of the atttendee and nothing else.
870
+ */
871
+ EmailStatusUpdatedEvent: {
1065
872
  /**
1066
- * Cc
1067
- * @default
873
+ * Id
874
+ * Format: uuid
1068
875
  */
1069
- cc?: string;
1070
- /**
1071
- * Bcc
1072
- * @default
1073
- */
1074
- bcc?: string;
1075
- /**
1076
- * Reply
1077
- * @default
1078
- */
1079
- reply?: string;
1080
- /**
1081
- * Pre
1082
- * @default
1083
- */
1084
- pre?: string;
1085
- /**
1086
- * Pdf
1087
- * @default
1088
- */
1089
- pdf?: string;
1090
- /**
1091
- * Pdfname
1092
- * @default
1093
- */
1094
- pdfname?: string;
1095
- /**
1096
- * Dirty Plain
1097
- * @default false
1098
- */
1099
- dirty_plain?: boolean;
1100
- /**
1101
- * Is Headless
1102
- * @default false
1103
- */
1104
- is_headless?: boolean;
1105
- /**
1106
- * Attachments
1107
- * @default []
1108
- */
1109
- attachments?: [string, string][];
1110
- /**
1111
- * Attendee Attachments
1112
- * @default []
1113
- */
1114
- attendee_attachments?: string[];
1115
- /**
1116
- * Master-Html
1117
- * @default true
1118
- */
1119
- "master-html"?: boolean;
1120
- /**
1121
- * Master-Plain
1122
- * @default true
1123
- */
1124
- "master-plain"?: boolean;
1125
- /**
1126
- * Autosend
1127
- * @default false
1128
- */
1129
- autosend?: boolean;
1130
- /**
1131
- * Edit
1132
- * @default false
1133
- */
1134
- edit?: boolean;
1135
- /**
1136
- * Payment
1137
- * @default false
1138
- */
1139
- payment?: boolean;
1140
- /**
1141
- * Tracking
1142
- * @default true
1143
- */
1144
- tracking?: boolean;
1145
- /**
1146
- * Attendees
1147
- * @default true
1148
- */
1149
- attendees?: boolean;
1150
- /**
1151
- * Invites
1152
- * @default false
1153
- */
1154
- invites?: boolean;
1155
- /**
1156
- * Branch
1157
- * @default default
1158
- */
1159
- branch?: string;
1160
- /**
1161
- * Sort Order
1162
- * @default 0
1163
- */
1164
- sort_order?: number;
1165
- };
1166
- /** EmailField */
1167
- "EmailField-Input": {
1168
- /**
1169
- * Type
1170
- * @default email
1171
- * @constant
1172
- */
1173
- type?: "email";
1174
- /**
1175
- * Name
1176
- * @default new_field
1177
- */
1178
- name?: string;
1179
- /** Title */
1180
- title?: string | {
1181
- [key: string]: string;
1182
- } | null;
1183
- /** Info */
1184
- info?: string | {
1185
- [key: string]: string;
1186
- } | null;
1187
- /**
1188
- * Class
1189
- * @default
1190
- */
1191
- class?: string;
1192
- /**
1193
- * Ismetafield
1194
- * @default false
1195
- */
1196
- isMetaField?: boolean;
1197
- /**
1198
- * Static
1199
- * @default false
1200
- */
1201
- static?: boolean;
1202
- /**
1203
- * Required
1204
- * @default false
1205
- */
1206
- required?: boolean;
1207
- /**
1208
- * Hidden
1209
- * @default false
1210
- */
1211
- hidden?: boolean;
1212
- /**
1213
- * Min
1214
- * @default 0
1215
- */
1216
- min?: number;
1217
- /**
1218
- * Max
1219
- * @default 1000
1220
- */
1221
- max?: number;
1222
- };
1223
- /** EmailField */
1224
- "EmailField-Output": {
1225
- /**
1226
- * Type
1227
- * @default email
1228
- * @constant
1229
- */
1230
- type: "email";
1231
- /**
1232
- * Name
1233
- * @default new_field
1234
- */
1235
- name: string;
1236
- /** Title */
1237
- title: string | {
1238
- [key: string]: string;
1239
- } | null;
1240
- /** Info */
1241
- info: string | {
1242
- [key: string]: string;
1243
- } | null;
1244
- /**
1245
- * Class
1246
- * @default
1247
- */
1248
- class: string;
1249
- /**
1250
- * Ismetafield
1251
- * @default false
1252
- */
1253
- isMetaField: boolean;
1254
- /**
1255
- * Static
1256
- * @default false
1257
- */
1258
- static: boolean;
1259
- /**
1260
- * Required
1261
- * @default false
1262
- */
1263
- required: boolean;
1264
- /**
1265
- * Hidden
1266
- * @default false
1267
- */
1268
- hidden: boolean;
1269
- /**
1270
- * Min
1271
- * @default 0
1272
- */
1273
- min: number;
1274
- /**
1275
- * Max
1276
- * @default 1000
1277
- */
1278
- max: number;
1279
- };
1280
- /** EmailStatus */
1281
- EmailStatus: {
1282
- /**
1283
- * Mailing Id
1284
- * @description the unique id of the bulk or single mailing
1285
- */
1286
- mailing_id: string;
1287
- /**
1288
- * Status
1289
- * @enum {string}
1290
- */
1291
- status: "pending" | "waiting" | "submitted" | "skipped" | "sent" | "opened" | "clicked" | "invalid" | "rejected" | "unsubscribed";
1292
- /**
1293
- * Updated At
1294
- * Format: date-time
1295
- */
1296
- updated_at?: string;
1297
- /**
1298
- * Time
1299
- * @description the time the email was sent (this should only be set when setting the status to 'sent')
1300
- */
1301
- time?: string | null;
1302
- /**
1303
- * Reason
1304
- * @description for error states a reason can be added to the event (reasons will be merged with reasons from prevoius errors)
1305
- */
1306
- reason?: string | components["schemas"]["StorableSet_str_-Input"];
1307
- /** @description for open events a set of email clients can be added (those will be merged with clients from prevois states) */
1308
- clients?: components["schemas"]["StorableSet_str_-Input"];
1309
- /** @description for clicked events a url can be provided (those will be merged with clicks from prevois events) */
1310
- clicks?: components["schemas"]["StorableSet_str_-Input"];
1311
- };
1312
- /**
1313
- * EmailStatusUpdatedEvent
1314
- * @description EmailStatus for attendee was updated.
1315
- *
1316
- * Note that there is a special email-unsubscribed-event that also
1317
- * adds the email address to a blacklist.
1318
- * This event will only update the email status of the atttendee and nothing else.
1319
- */
1320
- EmailStatusUpdatedEvent: {
1321
- /**
1322
- * Id
1323
- * Format: uuid
1324
- */
1325
- id?: string;
876
+ id?: string;
1326
877
  /**
1327
878
  * Event
1328
879
  * @default email-status-updated
1329
880
  * @constant
1330
881
  */
1331
882
  event?: "email-status-updated";
1332
- /** Preconditions */
1333
- preconditions?: components["schemas"]["NarrowedAttendeeSelector"] | components["schemas"]["EmptyAttendeeSelector"] | null;
1334
883
  /** Instancename */
1335
884
  instanceName: string;
1336
885
  /** Attendeeid */
@@ -1358,7 +907,6 @@ export type components = {
1358
907
  * @constant
1359
908
  */
1360
909
  event?: "email-unsubscribed";
1361
- preconditions?: components["schemas"]["Domain"] | null;
1362
910
  /** Instancename */
1363
911
  instanceName: string;
1364
912
  /** Attendeeid */
@@ -1368,55 +916,17 @@ export type components = {
1368
916
  /** Emailaddress */
1369
917
  emailAddress: string;
1370
918
  };
1371
- /** EmptyAttendeeSelector */
1372
- EmptyAttendeeSelector: {
1373
- /** Instancename */
1374
- instanceName: string;
1375
- /**
1376
- * Branchname
1377
- * @default default
1378
- */
1379
- branchName?: string;
1380
- /** @default {} */
1381
- filter?: components["schemas"]["Filter"];
1382
- /**
1383
- * Deleted
1384
- * @default exclude_deleted
1385
- * @enum {string}
1386
- */
1387
- deleted?: "exclude_deleted" | "include_deleted" | "only_deleted";
1388
- };
1389
919
  /** EventResponse */
1390
920
  EventResponse: {
1391
921
  /** Created */
1392
922
  created: number;
1393
923
  };
1394
924
  /** FieldGroup */
1395
- "FieldGroup-Input": {
1396
- /** Name */
1397
- name?: string;
1398
- /** Questions */
1399
- questions: (components["schemas"]["TextField-Input"] | components["schemas"]["StaticField-Input"] | components["schemas"]["ImageUploadField-Input"] | components["schemas"]["FileUploadField-Input"] | components["schemas"]["LongtextField-Input"] | components["schemas"]["RadioButtonGroupField-Input"] | components["schemas"]["DropdownField-Input"] | components["schemas"]["DateField-Input"] | components["schemas"]["EmailField-Input"] | components["schemas"]["NumberField-Input"] | components["schemas"]["CheckboxField-Input"] | components["schemas"]["CheckboxGroupField-Input"] | components["schemas"]["CodeField-Input"])[];
1400
- /** Info */
1401
- info?: string | {
1402
- [key: string]: string;
1403
- } | null;
1404
- /** Title */
1405
- title?: string | {
1406
- [key: string]: string;
1407
- } | null;
1408
- /**
1409
- * Ismetagroup
1410
- * @default false
1411
- */
1412
- isMetaGroup?: boolean;
1413
- };
1414
- /** FieldGroup */
1415
- "FieldGroup-Output": {
925
+ FieldGroup: {
1416
926
  /** Name */
1417
927
  name: string;
1418
928
  /** Questions */
1419
- questions: (components["schemas"]["TextField-Output"] | components["schemas"]["StaticField-Output"] | components["schemas"]["ImageUploadField-Output"] | components["schemas"]["FileUploadField-Output"] | components["schemas"]["LongtextField-Output"] | components["schemas"]["RadioButtonGroupField-Output"] | components["schemas"]["DropdownField-Output"] | components["schemas"]["DateField-Output"] | components["schemas"]["EmailField-Output"] | components["schemas"]["NumberField-Output"] | components["schemas"]["CheckboxField-Output"] | components["schemas"]["CheckboxGroupField-Output"] | components["schemas"]["CodeField-Output"])[];
929
+ questions: (components["schemas"]["TextField"] | components["schemas"]["StaticField"] | components["schemas"]["ImageUploadField"] | components["schemas"]["FileUploadField"] | components["schemas"]["LongtextField"] | components["schemas"]["RadioButtonGroupField"] | components["schemas"]["DropdownField"] | components["schemas"]["DateField"] | components["schemas"]["EmailField"] | components["schemas"]["NumberField"] | components["schemas"]["CheckboxField"] | components["schemas"]["CheckboxGroupField"] | components["schemas"]["CodeField"])[];
1420
930
  /** Info */
1421
931
  info: string | {
1422
932
  [key: string]: string;
@@ -1441,60 +951,7 @@ export type components = {
1441
951
  file: string;
1442
952
  };
1443
953
  /** FileUploadField */
1444
- "FileUploadField-Input": {
1445
- /**
1446
- * Type
1447
- * @default upload
1448
- * @constant
1449
- */
1450
- type?: "upload";
1451
- /**
1452
- * Name
1453
- * @default new_field
1454
- */
1455
- name?: string;
1456
- /** Title */
1457
- title?: string | {
1458
- [key: string]: string;
1459
- } | null;
1460
- /** Info */
1461
- info?: string | {
1462
- [key: string]: string;
1463
- } | null;
1464
- /**
1465
- * Class
1466
- * @default
1467
- */
1468
- class?: string;
1469
- /**
1470
- * Ismetafield
1471
- * @default false
1472
- */
1473
- isMetaField?: boolean;
1474
- /**
1475
- * Static
1476
- * @default false
1477
- */
1478
- static?: boolean;
1479
- /**
1480
- * Required
1481
- * @default false
1482
- */
1483
- required?: boolean;
1484
- /**
1485
- * Hidden
1486
- * @default false
1487
- */
1488
- hidden?: boolean;
1489
- /** Min */
1490
- min?: number | null;
1491
- /** Max */
1492
- max?: number | null;
1493
- /** Ext */
1494
- ext?: string[] | null;
1495
- };
1496
- /** FileUploadField */
1497
- "FileUploadField-Output": {
954
+ FileUploadField: {
1498
955
  /**
1499
956
  * Type
1500
957
  * @default upload
@@ -1535,10 +992,13 @@ export type components = {
1535
992
  */
1536
993
  required: boolean;
1537
994
  /**
1538
- * Hidden
1539
- * @default false
995
+ * @default {
996
+ * "width": "half",
997
+ * "starts_new_line": false
998
+ * }
1540
999
  */
1541
- hidden: boolean;
1000
+ backendModifiers: components["schemas"]["BackendModifiers"];
1001
+ defaultValue: components["schemas"]["FileReference"] | null;
1542
1002
  /** Min */
1543
1003
  min: number | null;
1544
1004
  /** Max */
@@ -1546,20 +1006,6 @@ export type components = {
1546
1006
  /** Ext */
1547
1007
  ext: string[] | null;
1548
1008
  };
1549
- /** Filter */
1550
- Filter: {
1551
- /** Query */
1552
- query: string | null;
1553
- };
1554
- /** FrontendConfig */
1555
- FrontendConfig: {
1556
- domain: components["schemas"]["Domain"];
1557
- /**
1558
- * Manage Dns
1559
- * @default true
1560
- */
1561
- manage_dns?: boolean;
1562
- };
1563
1009
  /** FrontendConfigJSON */
1564
1010
  FrontendConfigJSON: {
1565
1011
  /** Domain */
@@ -1571,68 +1017,7 @@ export type components = {
1571
1017
  detail?: components["schemas"]["ValidationError"][];
1572
1018
  };
1573
1019
  /** ImageUploadField */
1574
- "ImageUploadField-Input": {
1575
- /**
1576
- * Type
1577
- * @default image
1578
- * @constant
1579
- */
1580
- type?: "image";
1581
- /**
1582
- * Name
1583
- * @default new_field
1584
- */
1585
- name?: string;
1586
- /** Title */
1587
- title?: string | {
1588
- [key: string]: string;
1589
- } | null;
1590
- /** Info */
1591
- info?: string | {
1592
- [key: string]: string;
1593
- } | null;
1594
- /**
1595
- * Class
1596
- * @default
1597
- */
1598
- class?: string;
1599
- /**
1600
- * Ismetafield
1601
- * @default false
1602
- */
1603
- isMetaField?: boolean;
1604
- /**
1605
- * Static
1606
- * @default false
1607
- */
1608
- static?: boolean;
1609
- /**
1610
- * Required
1611
- * @default false
1612
- */
1613
- required?: boolean;
1614
- /**
1615
- * Hidden
1616
- * @default false
1617
- */
1618
- hidden?: boolean;
1619
- /** Min */
1620
- min?: number | null;
1621
- /** Max */
1622
- max?: number | null;
1623
- /** Minheight */
1624
- minheight?: number | null;
1625
- /** Maxheight */
1626
- maxheight?: number | null;
1627
- /** Minwidth */
1628
- minwidth?: number | null;
1629
- /** Maxwidth */
1630
- maxwidth?: number | null;
1631
- /** Ext */
1632
- ext?: string[] | null;
1633
- };
1634
- /** ImageUploadField */
1635
- "ImageUploadField-Output": {
1020
+ ImageUploadField: {
1636
1021
  /**
1637
1022
  * Type
1638
1023
  * @default image
@@ -1673,108 +1058,42 @@ export type components = {
1673
1058
  */
1674
1059
  required: boolean;
1675
1060
  /**
1676
- * Hidden
1677
- * @default false
1678
- */
1679
- hidden: boolean;
1680
- /** Min */
1681
- min: number | null;
1682
- /** Max */
1683
- max: number | null;
1684
- /** Minheight */
1685
- minheight: number | null;
1686
- /** Maxheight */
1687
- maxheight: number | null;
1688
- /** Minwidth */
1689
- minwidth: number | null;
1690
- /** Maxwidth */
1691
- maxwidth: number | null;
1692
- /** Ext */
1693
- ext: string[] | null;
1694
- };
1695
- /** ItemOption */
1696
- "ItemOption-Input": {
1697
- /**
1698
- * Name
1699
- * @default
1700
- */
1701
- name?: string | {
1702
- [key: string]: string;
1703
- };
1704
- /** Value */
1705
- value?: string | null;
1706
- };
1707
- /** ItemOption */
1708
- "ItemOption-Output": {
1709
- /**
1710
- * Name
1711
- * @default
1712
- */
1713
- name: string | {
1714
- [key: string]: string;
1715
- };
1716
- /** Value */
1717
- value: string | null;
1718
- };
1719
- /** LongtextField */
1720
- "LongtextField-Input": {
1721
- /**
1722
- * Type
1723
- * @default longtext
1724
- * @constant
1725
- */
1726
- type?: "longtext";
1727
- /**
1728
- * Name
1729
- * @default new_field
1730
- */
1731
- name?: string;
1732
- /** Title */
1733
- title?: string | {
1734
- [key: string]: string;
1735
- } | null;
1736
- /** Info */
1737
- info?: string | {
1738
- [key: string]: string;
1739
- } | null;
1740
- /**
1741
- * Class
1742
- * @default
1743
- */
1744
- class?: string;
1745
- /**
1746
- * Ismetafield
1747
- * @default false
1748
- */
1749
- isMetaField?: boolean;
1750
- /**
1751
- * Static
1752
- * @default false
1753
- */
1754
- static?: boolean;
1755
- /**
1756
- * Required
1757
- * @default false
1758
- */
1759
- required?: boolean;
1760
- /**
1761
- * Hidden
1762
- * @default false
1763
- */
1764
- hidden?: boolean;
1765
- /**
1766
- * Min
1767
- * @default 0
1061
+ * @default {
1062
+ * "width": "half",
1063
+ * "starts_new_line": false
1064
+ * }
1768
1065
  */
1769
- min?: number;
1066
+ backendModifiers: components["schemas"]["BackendModifiers"];
1067
+ defaultValue: components["schemas"]["FileReference"] | null;
1068
+ /** Min */
1069
+ min: number | null;
1070
+ /** Max */
1071
+ max: number | null;
1072
+ /** Minheight */
1073
+ minheight: number | null;
1074
+ /** Maxheight */
1075
+ maxheight: number | null;
1076
+ /** Minwidth */
1077
+ minwidth: number | null;
1078
+ /** Maxwidth */
1079
+ maxwidth: number | null;
1080
+ /** Ext */
1081
+ ext: string[] | null;
1082
+ };
1083
+ /** ItemOption */
1084
+ ItemOption: {
1770
1085
  /**
1771
- * Max
1772
- * @default 1000
1086
+ * Name
1087
+ * @default
1773
1088
  */
1774
- max?: number;
1089
+ name: string | {
1090
+ [key: string]: string;
1091
+ };
1092
+ /** Value */
1093
+ value: string | null;
1775
1094
  };
1776
1095
  /** LongtextField */
1777
- "LongtextField-Output": {
1096
+ LongtextField: {
1778
1097
  /**
1779
1098
  * Type
1780
1099
  * @default longtext
@@ -1815,10 +1134,14 @@ export type components = {
1815
1134
  */
1816
1135
  required: boolean;
1817
1136
  /**
1818
- * Hidden
1819
- * @default false
1137
+ * @default {
1138
+ * "width": "half",
1139
+ * "starts_new_line": false
1140
+ * }
1820
1141
  */
1821
- hidden: boolean;
1142
+ backendModifiers: components["schemas"]["BackendModifiers"];
1143
+ /** Defaultvalue */
1144
+ defaultValue: string | null;
1822
1145
  /**
1823
1146
  * Min
1824
1147
  * @default 0
@@ -1830,26 +1153,6 @@ export type components = {
1830
1153
  */
1831
1154
  max: number;
1832
1155
  };
1833
- /** MailgunConfig */
1834
- MailgunConfig: {
1835
- /**
1836
- * Provider
1837
- * @default mailgun
1838
- * @constant
1839
- */
1840
- provider?: "mailgun";
1841
- domain: components["schemas"]["Domain"];
1842
- /**
1843
- * Manage Dns
1844
- * @default true
1845
- */
1846
- manage_dns?: boolean;
1847
- /**
1848
- * Sender Username
1849
- * @default email
1850
- */
1851
- sender_username?: string;
1852
- };
1853
1156
  /** MainGuest */
1854
1157
  "MainGuest-Input": {
1855
1158
  /**
@@ -1882,83 +1185,8 @@ export type components = {
1882
1185
  [key: string]: string;
1883
1186
  };
1884
1187
  };
1885
- /** NarrowedAttendeeSelector */
1886
- NarrowedAttendeeSelector: {
1887
- /** Instancename */
1888
- instanceName: string;
1889
- /**
1890
- * Branchname
1891
- * @default default
1892
- */
1893
- branchName?: string;
1894
- /** @default {} */
1895
- filter?: components["schemas"]["Filter"];
1896
- /**
1897
- * Deleted
1898
- * @default exclude_deleted
1899
- * @enum {string}
1900
- */
1901
- deleted?: "exclude_deleted" | "include_deleted" | "only_deleted";
1902
- };
1903
- /** NumberField */
1904
- "NumberField-Input": {
1905
- /**
1906
- * Type
1907
- * @default number
1908
- * @constant
1909
- */
1910
- type?: "number";
1911
- /**
1912
- * Name
1913
- * @default new_field
1914
- */
1915
- name?: string;
1916
- /** Title */
1917
- title?: string | {
1918
- [key: string]: string;
1919
- } | null;
1920
- /** Info */
1921
- info?: string | {
1922
- [key: string]: string;
1923
- } | null;
1924
- /**
1925
- * Class
1926
- * @default
1927
- */
1928
- class?: string;
1929
- /**
1930
- * Ismetafield
1931
- * @default false
1932
- */
1933
- isMetaField?: boolean;
1934
- /**
1935
- * Static
1936
- * @default false
1937
- */
1938
- static?: boolean;
1939
- /**
1940
- * Required
1941
- * @default false
1942
- */
1943
- required?: boolean;
1944
- /**
1945
- * Hidden
1946
- * @default false
1947
- */
1948
- hidden?: boolean;
1949
- /**
1950
- * Min
1951
- * @default 0
1952
- */
1953
- min?: number;
1954
- /**
1955
- * Max
1956
- * @default 1000
1957
- */
1958
- max?: number;
1959
- };
1960
1188
  /** NumberField */
1961
- "NumberField-Output": {
1189
+ NumberField: {
1962
1190
  /**
1963
1191
  * Type
1964
1192
  * @default number
@@ -1999,10 +1227,14 @@ export type components = {
1999
1227
  */
2000
1228
  required: boolean;
2001
1229
  /**
2002
- * Hidden
2003
- * @default false
1230
+ * @default {
1231
+ * "width": "half",
1232
+ * "starts_new_line": false
1233
+ * }
2004
1234
  */
2005
- hidden: boolean;
1235
+ backendModifiers: components["schemas"]["BackendModifiers"];
1236
+ /** Defaultvalue */
1237
+ defaultValue: number | null;
2006
1238
  /**
2007
1239
  * Min
2008
1240
  * @default 0
@@ -2024,7 +1256,9 @@ export type components = {
2024
1256
  * Provider
2025
1257
  * @enum {string}
2026
1258
  */
2027
- provider: "manual" | "sepa" | "sofort" | "credit" | "prepay" | "call2pay" | "handypay" | "paypal";
1259
+ provider: "manual" | "sepa" | "sofort" | "credit" | "prepay" | "call2pay" | "handypay" | "paypal" | "stripe";
1260
+ /** Reference */
1261
+ reference?: string | null;
2028
1262
  /** Amount */
2029
1263
  amount: number;
2030
1264
  /** Testmode */
@@ -2048,7 +1282,6 @@ export type components = {
2048
1282
  * @constant
2049
1283
  */
2050
1284
  event?: "payment-paid";
2051
- preconditions?: components["schemas"]["common__events__payment_paid_event__Preconditions"] | null;
2052
1285
  /** Attendeeid */
2053
1286
  attendeeId: string;
2054
1287
  /** Instancename */
@@ -2283,59 +1516,7 @@ export type components = {
2283
1516
  confirmed: boolean;
2284
1517
  };
2285
1518
  /** RadioButtonGroupField */
2286
- "RadioButtonGroupField-Input": {
2287
- /**
2288
- * Type
2289
- * @default radio
2290
- * @constant
2291
- */
2292
- type?: "radio";
2293
- /**
2294
- * Name
2295
- * @default new_field
2296
- */
2297
- name?: string;
2298
- /** Title */
2299
- title?: string | {
2300
- [key: string]: string;
2301
- } | null;
2302
- /** Info */
2303
- info?: string | {
2304
- [key: string]: string;
2305
- } | null;
2306
- /**
2307
- * Class
2308
- * @default
2309
- */
2310
- class?: string;
2311
- /**
2312
- * Ismetafield
2313
- * @default false
2314
- */
2315
- isMetaField?: boolean;
2316
- /**
2317
- * Static
2318
- * @default false
2319
- */
2320
- static?: boolean;
2321
- /**
2322
- * Required
2323
- * @default false
2324
- */
2325
- required?: boolean;
2326
- /**
2327
- * Hidden
2328
- * @default false
2329
- */
2330
- hidden?: boolean;
2331
- /**
2332
- * Items
2333
- * @default []
2334
- */
2335
- items?: components["schemas"]["ItemOption-Input"][];
2336
- };
2337
- /** RadioButtonGroupField */
2338
- "RadioButtonGroupField-Output": {
1519
+ RadioButtonGroupField: {
2339
1520
  /**
2340
1521
  * Type
2341
1522
  * @default radio
@@ -2376,40 +1557,19 @@ export type components = {
2376
1557
  */
2377
1558
  required: boolean;
2378
1559
  /**
2379
- * Hidden
2380
- * @default false
1560
+ * @default {
1561
+ * "width": "half",
1562
+ * "starts_new_line": false
1563
+ * }
2381
1564
  */
2382
- hidden: boolean;
1565
+ backendModifiers: components["schemas"]["BackendModifiers"];
1566
+ /** Defaultvalue */
1567
+ defaultValue: string | null;
2383
1568
  /**
2384
1569
  * Items
2385
1570
  * @default []
2386
1571
  */
2387
- items: components["schemas"]["ItemOption-Output"][];
2388
- };
2389
- /** RegistrationInfo */
2390
- RegistrationInfo: {
2391
- /**
2392
- * Closed
2393
- * @default false
2394
- */
2395
- closed?: boolean;
2396
- /** Start */
2397
- start?: string | null;
2398
- /** End */
2399
- end?: string | null;
2400
- /**
2401
- * Canedit
2402
- * @default false
2403
- */
2404
- canEdit?: boolean;
2405
- /** Editend */
2406
- editEnd?: string | null;
2407
- /**
2408
- * Allowregistrationwithauthcode
2409
- * @default false
2410
- */
2411
- allowRegistrationWithAuthCode?: boolean;
2412
- auth_code_generator?: components["schemas"]["AuthCodeGenerator"];
1572
+ items: components["schemas"]["ItemOption"][];
2413
1573
  };
2414
1574
  /** RootModel[Union[Companion, MainGuest]] */
2415
1575
  "RootModel_Union_Companion__MainGuest__-Input": components["schemas"]["Companion-Input"] | components["schemas"]["MainGuest-Input"];
@@ -2425,84 +1585,8 @@ export type components = {
2425
1585
  /** Flags */
2426
1586
  flags?: Record<string, unknown> | null;
2427
1587
  };
2428
- /** SmtpConfig */
2429
- SmtpConfig: {
2430
- /**
2431
- * Provider
2432
- * @default smtp
2433
- * @constant
2434
- */
2435
- provider?: "smtp";
2436
- /** Server */
2437
- server: string;
2438
- /** Port */
2439
- port: number;
2440
- /** Username */
2441
- username: string;
2442
- /** Password */
2443
- password: string;
2444
- /** Sender Address */
2445
- sender_address: string;
2446
- };
2447
- /** StaticField */
2448
- "StaticField-Input": {
2449
- /**
2450
- * Type
2451
- * @default static
2452
- * @constant
2453
- */
2454
- type?: "static";
2455
- /**
2456
- * Name
2457
- * @default new_field
2458
- */
2459
- name?: string;
2460
- /** Title */
2461
- title?: string | {
2462
- [key: string]: string;
2463
- } | null;
2464
- /** Info */
2465
- info?: string | {
2466
- [key: string]: string;
2467
- } | null;
2468
- /**
2469
- * Class
2470
- * @default
2471
- */
2472
- class?: string;
2473
- /**
2474
- * Ismetafield
2475
- * @default false
2476
- */
2477
- isMetaField?: boolean;
2478
- /**
2479
- * Static
2480
- * @default true
2481
- */
2482
- static?: boolean;
2483
- /**
2484
- * Required
2485
- * @default false
2486
- */
2487
- required?: boolean;
2488
- /**
2489
- * Hidden
2490
- * @default false
2491
- */
2492
- hidden?: boolean;
2493
- /**
2494
- * Min
2495
- * @default 0
2496
- */
2497
- min?: number;
2498
- /**
2499
- * Max
2500
- * @default 1000
2501
- */
2502
- max?: number;
2503
- };
2504
1588
  /** StaticField */
2505
- "StaticField-Output": {
1589
+ StaticField: {
2506
1590
  /**
2507
1591
  * Type
2508
1592
  * @default static
@@ -2543,10 +1627,14 @@ export type components = {
2543
1627
  */
2544
1628
  required: boolean;
2545
1629
  /**
2546
- * Hidden
2547
- * @default false
1630
+ * @default {
1631
+ * "width": "half",
1632
+ * "starts_new_line": false
1633
+ * }
2548
1634
  */
2549
- hidden: boolean;
1635
+ backendModifiers: components["schemas"]["BackendModifiers"];
1636
+ /** Defaultvalue */
1637
+ defaultValue: string | null;
2550
1638
  /**
2551
1639
  * Min
2552
1640
  * @default 0
@@ -2561,64 +1649,7 @@ export type components = {
2561
1649
  "StorableSet_str_-Input": string[];
2562
1650
  "StorableSet_str_-Output": string[];
2563
1651
  /** TextField */
2564
- "TextField-Input": {
2565
- /**
2566
- * Type
2567
- * @default text
2568
- * @constant
2569
- */
2570
- type?: "text";
2571
- /**
2572
- * Name
2573
- * @default new_field
2574
- */
2575
- name?: string;
2576
- /** Title */
2577
- title?: string | {
2578
- [key: string]: string;
2579
- } | null;
2580
- /** Info */
2581
- info?: string | {
2582
- [key: string]: string;
2583
- } | null;
2584
- /**
2585
- * Class
2586
- * @default
2587
- */
2588
- class?: string;
2589
- /**
2590
- * Ismetafield
2591
- * @default false
2592
- */
2593
- isMetaField?: boolean;
2594
- /**
2595
- * Static
2596
- * @default false
2597
- */
2598
- static?: boolean;
2599
- /**
2600
- * Required
2601
- * @default false
2602
- */
2603
- required?: boolean;
2604
- /**
2605
- * Hidden
2606
- * @default false
2607
- */
2608
- hidden?: boolean;
2609
- /**
2610
- * Min
2611
- * @default 0
2612
- */
2613
- min?: number;
2614
- /**
2615
- * Max
2616
- * @default 1000
2617
- */
2618
- max?: number;
2619
- };
2620
- /** TextField */
2621
- "TextField-Output": {
1652
+ TextField: {
2622
1653
  /**
2623
1654
  * Type
2624
1655
  * @default text
@@ -2659,10 +1690,14 @@ export type components = {
2659
1690
  */
2660
1691
  required: boolean;
2661
1692
  /**
2662
- * Hidden
2663
- * @default false
1693
+ * @default {
1694
+ * "width": "half",
1695
+ * "starts_new_line": false
1696
+ * }
2664
1697
  */
2665
- hidden: boolean;
1698
+ backendModifiers: components["schemas"]["BackendModifiers"];
1699
+ /** Defaultvalue */
1700
+ defaultValue: string | null;
2666
1701
  /**
2667
1702
  * Min
2668
1703
  * @default 0
@@ -2749,10 +1784,6 @@ export type components = {
2749
1784
  /** Isprivate */
2750
1785
  isPrivate?: boolean | null;
2751
1786
  };
2752
- common__events__attendee_created_event__Preconditions: [string[]];
2753
- common__events__attendee_responded_event__Preconditions: [components["schemas"]["NarrowedAttendeeSelector"] | components["schemas"]["EmptyAttendeeSelector"], [string, components["schemas"]["EmailConfig"]][], components["schemas"]["MailgunConfig"] | components["schemas"]["SmtpConfig"], components["schemas"]["FrontendConfig"]];
2754
- common__events__attendee_updated_event__Preconditions: [components["schemas"]["NarrowedAttendeeSelector"] | components["schemas"]["EmptyAttendeeSelector"], components["schemas"]["FieldGroup-Input"][], string[]];
2755
- common__events__payment_paid_event__Preconditions: [components["schemas"]["NarrowedAttendeeSelector"] | components["schemas"]["EmptyAttendeeSelector"], [string, components["schemas"]["EmailConfig"]][], components["schemas"]["MailgunConfig"] | components["schemas"]["SmtpConfig"], components["schemas"]["FrontendConfig"]];
2756
1787
  };
2757
1788
  responses: never;
2758
1789
  parameters: never;
@@ -2887,7 +1918,7 @@ export type operations = {
2887
1918
  /** @description Successful Response */
2888
1919
  200: {
2889
1920
  content: {
2890
- "application/json": components["schemas"]["FieldGroup-Output"][];
1921
+ "application/json": components["schemas"]["FieldGroup"][];
2891
1922
  };
2892
1923
  };
2893
1924
  /** @description Validation Error */