@dev-crew-berlin/enter-js-utils 0.50.1 → 0.50.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.
- package/dist/generated/api-schema.d.ts +34 -58
- package/package.json +1 -1
|
@@ -221,29 +221,6 @@ export declare type components = {
|
|
|
221
221
|
/** Authcode */
|
|
222
222
|
authCode: string;
|
|
223
223
|
};
|
|
224
|
-
/** AuthCodeGenerator */
|
|
225
|
-
AuthCodeGenerator: {
|
|
226
|
-
/**
|
|
227
|
-
* Chars
|
|
228
|
-
* @default abcdefghijklmnopqrstuvwxyz1234567890
|
|
229
|
-
*/
|
|
230
|
-
chars: string;
|
|
231
|
-
/**
|
|
232
|
-
* Length
|
|
233
|
-
* @default 8
|
|
234
|
-
*/
|
|
235
|
-
length: number;
|
|
236
|
-
/**
|
|
237
|
-
* Prefix
|
|
238
|
-
* @default
|
|
239
|
-
*/
|
|
240
|
-
prefix: string;
|
|
241
|
-
/**
|
|
242
|
-
* Suffix
|
|
243
|
-
* @default
|
|
244
|
-
*/
|
|
245
|
-
suffix: string;
|
|
246
|
-
};
|
|
247
224
|
/** CheckboxField */
|
|
248
225
|
CheckboxField: {
|
|
249
226
|
/**
|
|
@@ -1131,7 +1108,7 @@ export declare type components = {
|
|
|
1131
1108
|
/** Thumbnail */
|
|
1132
1109
|
thumbnail: boolean;
|
|
1133
1110
|
frontend: components["schemas"]["FrontendConfigJSON"];
|
|
1134
|
-
registration: components["schemas"]["
|
|
1111
|
+
registration: components["schemas"]["PublicRegistrationInfo"];
|
|
1135
1112
|
/** Guestnamefields */
|
|
1136
1113
|
guestNameFields: string[];
|
|
1137
1114
|
/** Tagcolors */
|
|
@@ -1139,6 +1116,39 @@ export declare type components = {
|
|
|
1139
1116
|
[key: string]: string;
|
|
1140
1117
|
};
|
|
1141
1118
|
};
|
|
1119
|
+
/** PublicRegistrationInfo */
|
|
1120
|
+
PublicRegistrationInfo: {
|
|
1121
|
+
/**
|
|
1122
|
+
* Closed
|
|
1123
|
+
* @default false
|
|
1124
|
+
*/
|
|
1125
|
+
closed: boolean;
|
|
1126
|
+
/**
|
|
1127
|
+
* Start
|
|
1128
|
+
* Format: date-time
|
|
1129
|
+
*/
|
|
1130
|
+
start?: string;
|
|
1131
|
+
/**
|
|
1132
|
+
* End
|
|
1133
|
+
* Format: date-time
|
|
1134
|
+
*/
|
|
1135
|
+
end?: string;
|
|
1136
|
+
/**
|
|
1137
|
+
* Canedit
|
|
1138
|
+
* @default false
|
|
1139
|
+
*/
|
|
1140
|
+
canEdit: boolean;
|
|
1141
|
+
/**
|
|
1142
|
+
* Editend
|
|
1143
|
+
* Format: date-time
|
|
1144
|
+
*/
|
|
1145
|
+
editEnd?: string;
|
|
1146
|
+
/**
|
|
1147
|
+
* Allowregistrationwithauthcode
|
|
1148
|
+
* @default false
|
|
1149
|
+
*/
|
|
1150
|
+
allowRegistrationWithAuthCode: boolean;
|
|
1151
|
+
};
|
|
1142
1152
|
/**
|
|
1143
1153
|
* PublicUser
|
|
1144
1154
|
* @description User that is retunred from the api
|
|
@@ -1225,40 +1235,6 @@ export declare type components = {
|
|
|
1225
1235
|
*/
|
|
1226
1236
|
items: components["schemas"]["ItemOption"][];
|
|
1227
1237
|
};
|
|
1228
|
-
/** RegistrationInfo */
|
|
1229
|
-
RegistrationInfo: {
|
|
1230
|
-
/**
|
|
1231
|
-
* Closed
|
|
1232
|
-
* @default false
|
|
1233
|
-
*/
|
|
1234
|
-
closed: boolean;
|
|
1235
|
-
/**
|
|
1236
|
-
* Start
|
|
1237
|
-
* Format: date-time
|
|
1238
|
-
*/
|
|
1239
|
-
start?: string;
|
|
1240
|
-
/**
|
|
1241
|
-
* End
|
|
1242
|
-
* Format: date-time
|
|
1243
|
-
*/
|
|
1244
|
-
end?: string;
|
|
1245
|
-
/**
|
|
1246
|
-
* Canedit
|
|
1247
|
-
* @default false
|
|
1248
|
-
*/
|
|
1249
|
-
canEdit: boolean;
|
|
1250
|
-
/**
|
|
1251
|
-
* Editend
|
|
1252
|
-
* Format: date-time
|
|
1253
|
-
*/
|
|
1254
|
-
editEnd?: string;
|
|
1255
|
-
/**
|
|
1256
|
-
* Allowregistrationwithauthcode
|
|
1257
|
-
* @default false
|
|
1258
|
-
*/
|
|
1259
|
-
allowRegistrationWithAuthCode: boolean;
|
|
1260
|
-
auth_code_generator?: components["schemas"]["AuthCodeGenerator"];
|
|
1261
|
-
};
|
|
1262
1238
|
/** SecurityQuestion */
|
|
1263
1239
|
SecurityQuestion: {
|
|
1264
1240
|
security_question: components["schemas"]["QuestionFields"];
|