@dev-crew-berlin/enter-js-utils 0.50.1 → 0.50.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -220,29 +220,12 @@ export declare type components = {
220
220
  AuthCode: {
221
221
  /** Authcode */
222
222
  authCode: string;
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;
223
+ /** Session Type */
224
+ session_type?: string;
225
+ /** Flags */
226
+ flags?: {
227
+ [key: string]: unknown;
228
+ };
246
229
  };
247
230
  /** CheckboxField */
248
231
  CheckboxField: {
@@ -1131,7 +1114,7 @@ export declare type components = {
1131
1114
  /** Thumbnail */
1132
1115
  thumbnail: boolean;
1133
1116
  frontend: components["schemas"]["FrontendConfigJSON"];
1134
- registration: components["schemas"]["RegistrationInfo"];
1117
+ registration: components["schemas"]["PublicRegistrationInfo"];
1135
1118
  /** Guestnamefields */
1136
1119
  guestNameFields: string[];
1137
1120
  /** Tagcolors */
@@ -1139,6 +1122,39 @@ export declare type components = {
1139
1122
  [key: string]: string;
1140
1123
  };
1141
1124
  };
1125
+ /** PublicRegistrationInfo */
1126
+ PublicRegistrationInfo: {
1127
+ /**
1128
+ * Closed
1129
+ * @default false
1130
+ */
1131
+ closed: boolean;
1132
+ /**
1133
+ * Start
1134
+ * Format: date-time
1135
+ */
1136
+ start?: string;
1137
+ /**
1138
+ * End
1139
+ * Format: date-time
1140
+ */
1141
+ end?: string;
1142
+ /**
1143
+ * Canedit
1144
+ * @default false
1145
+ */
1146
+ canEdit: boolean;
1147
+ /**
1148
+ * Editend
1149
+ * Format: date-time
1150
+ */
1151
+ editEnd?: string;
1152
+ /**
1153
+ * Allowregistrationwithauthcode
1154
+ * @default false
1155
+ */
1156
+ allowRegistrationWithAuthCode: boolean;
1157
+ };
1142
1158
  /**
1143
1159
  * PublicUser
1144
1160
  * @description User that is retunred from the api
@@ -1225,43 +1241,15 @@ export declare type components = {
1225
1241
  */
1226
1242
  items: components["schemas"]["ItemOption"][];
1227
1243
  };
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
1244
  /** SecurityQuestion */
1263
1245
  SecurityQuestion: {
1264
1246
  security_question: components["schemas"]["QuestionFields"];
1247
+ /** Session Type */
1248
+ session_type?: string;
1249
+ /** Flags */
1250
+ flags?: {
1251
+ [key: string]: unknown;
1252
+ };
1265
1253
  };
1266
1254
  /** StaticField */
1267
1255
  StaticField: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev-crew-berlin/enter-js-utils",
3
- "version": "0.50.1",
3
+ "version": "0.50.3",
4
4
  "description": "utils such as vaildation and other helpers to work with data from the enter app",
5
5
  "files": [
6
6
  "dist",