@dev-crew-berlin/enter-js-utils 0.40.5 → 0.41.1
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.
|
@@ -711,6 +711,11 @@ export declare type components = {
|
|
|
711
711
|
/** Ext */
|
|
712
712
|
ext?: string[];
|
|
713
713
|
};
|
|
714
|
+
/** FrontendJSON */
|
|
715
|
+
FrontendJSON: {
|
|
716
|
+
/** Domain */
|
|
717
|
+
domain: string;
|
|
718
|
+
};
|
|
714
719
|
/** HTTPValidationError */
|
|
715
720
|
HTTPValidationError: {
|
|
716
721
|
/** Detail */
|
|
@@ -1007,7 +1012,7 @@ export declare type components = {
|
|
|
1007
1012
|
description: string;
|
|
1008
1013
|
/** Thumbnail */
|
|
1009
1014
|
thumbnail: boolean;
|
|
1010
|
-
|
|
1015
|
+
frontend: components["schemas"]["FrontendJSON"];
|
|
1011
1016
|
registration: components["schemas"]["RegistrationInfo"];
|
|
1012
1017
|
/** Guestnamefields */
|
|
1013
1018
|
guestNameFields: string[];
|
|
@@ -1033,7 +1038,7 @@ export declare type components = {
|
|
|
1033
1038
|
};
|
|
1034
1039
|
/** Permissions */
|
|
1035
1040
|
permissions: {
|
|
1036
|
-
[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" | "pdfs:write" | "pdfs:export" | "payment:write" | "checkins:write" | "
|
|
1041
|
+
[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" | "pdfs:write" | "pdfs:export" | "payment:write" | "checkins:write" | "files:write" | "fields:write" | "fields:read" | "templates:write" | "register-flow:write" | "export-scripts:write" | "registration-code:write" | "instance-info:read" | "instance-info:write" | "domains:manage" | "stats:read" | "stats:write" | "backup:write" | "variables:read" | "variables:write" | "webhooks:read" | "webhooks:write")[];
|
|
1037
1042
|
};
|
|
1038
1043
|
};
|
|
1039
1044
|
/** RadioButtonField */
|
|
@@ -1272,13 +1277,6 @@ export declare type components = {
|
|
|
1272
1277
|
/** Max */
|
|
1273
1278
|
max?: number;
|
|
1274
1279
|
};
|
|
1275
|
-
/** URLInfoJSON */
|
|
1276
|
-
URLInfoJSON: {
|
|
1277
|
-
/** Domain */
|
|
1278
|
-
domain: string;
|
|
1279
|
-
/** Rootpath */
|
|
1280
|
-
rootPath: string;
|
|
1281
|
-
};
|
|
1282
1280
|
/** UserPreferencesUpdate */
|
|
1283
1281
|
UserPreferencesUpdate: {
|
|
1284
1282
|
/** Userdata */
|
package/dist/models/instance.js
CHANGED
|
@@ -5,7 +5,7 @@ export class Instance {
|
|
|
5
5
|
this.description = json.description;
|
|
6
6
|
this.checkinTags = json.checkins;
|
|
7
7
|
this.hasTumbnail = json.thumbnail;
|
|
8
|
-
this.
|
|
8
|
+
this.frontend = json.frontend;
|
|
9
9
|
this.registration = {
|
|
10
10
|
start: json.registration.start ? new Date(json.registration.start) : undefined,
|
|
11
11
|
end: json.registration.end ? new Date(json.registration.end) : undefined,
|
|
@@ -23,7 +23,7 @@ export class Instance {
|
|
|
23
23
|
description: this.description,
|
|
24
24
|
checkins: this.checkinTags,
|
|
25
25
|
thumbnail: this.hasTumbnail,
|
|
26
|
-
|
|
26
|
+
frontend: this.frontend,
|
|
27
27
|
registration: {
|
|
28
28
|
start: this.registration.start?.toISOString(),
|
|
29
29
|
end: this.registration.end?.toISOString(),
|