@noatgnu/cupcake-core 1.2.10 → 1.2.12
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.
|
@@ -69,6 +69,27 @@ const InvitationStatusLabels = {
|
|
|
69
69
|
[InvitationStatus.CANCELLED]: 'Cancelled'
|
|
70
70
|
};
|
|
71
71
|
|
|
72
|
+
var AnnotationType;
|
|
73
|
+
(function (AnnotationType) {
|
|
74
|
+
AnnotationType["Text"] = "text";
|
|
75
|
+
AnnotationType["File"] = "file";
|
|
76
|
+
AnnotationType["Image"] = "image";
|
|
77
|
+
AnnotationType["Video"] = "video";
|
|
78
|
+
AnnotationType["Audio"] = "audio";
|
|
79
|
+
AnnotationType["Sketch"] = "sketch";
|
|
80
|
+
AnnotationType["Other"] = "other";
|
|
81
|
+
AnnotationType["Checklist"] = "checklist";
|
|
82
|
+
AnnotationType["Counter"] = "counter";
|
|
83
|
+
AnnotationType["Table"] = "table";
|
|
84
|
+
AnnotationType["Alignment"] = "alignment";
|
|
85
|
+
AnnotationType["Calculator"] = "calculator";
|
|
86
|
+
AnnotationType["MolarityCalculator"] = "mcalculator";
|
|
87
|
+
AnnotationType["Randomization"] = "randomization";
|
|
88
|
+
AnnotationType["Instrument"] = "instrument";
|
|
89
|
+
AnnotationType["Metadata"] = "metadata";
|
|
90
|
+
AnnotationType["Booking"] = "booking";
|
|
91
|
+
})(AnnotationType || (AnnotationType = {}));
|
|
92
|
+
|
|
72
93
|
/**
|
|
73
94
|
* CUPCAKE Core (CCC) - Models barrel export
|
|
74
95
|
* User management, lab groups, and core functionality interfaces
|
|
@@ -1224,6 +1245,7 @@ class SiteConfigService extends BaseApiService {
|
|
|
1224
1245
|
primaryColor: '#1976d2',
|
|
1225
1246
|
allowUserRegistration: false,
|
|
1226
1247
|
enableOrcidLogin: false,
|
|
1248
|
+
bookingDeletionWindowMinutes: 30,
|
|
1227
1249
|
installedApps: {},
|
|
1228
1250
|
createdAt: new Date().toISOString(),
|
|
1229
1251
|
updatedAt: new Date().toISOString()
|
|
@@ -3408,5 +3430,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.3", ngImpor
|
|
|
3408
3430
|
* Generated bundle index. Do not edit.
|
|
3409
3431
|
*/
|
|
3410
3432
|
|
|
3411
|
-
export { ApiService, AuthService, BaseApiService, CUPCAKE_CORE_CONFIG, CupcakeCoreModule, InvitationStatus, InvitationStatusLabels, LabGroupService, LabGroupsComponent, LoginComponent, NotificationService, PoweredByFooterComponent, RegisterComponent, ResourceRole, ResourceRoleLabels, ResourceService, ResourceType, ResourceTypeLabels, ResourceVisibility, ResourceVisibilityLabels, SiteConfigComponent, SiteConfigService, ThemeService, ToastContainerComponent, ToastService, UserManagementComponent, UserManagementService, UserProfileComponent, WEBSOCKET_ENDPOINT, WEBSOCKET_ENDPOINTS, WebSocketConfigService, WebSocketEndpoints, WebSocketService, adminGuard, authGuard, authInterceptor, resetRefreshState };
|
|
3433
|
+
export { AnnotationType, ApiService, AuthService, BaseApiService, CUPCAKE_CORE_CONFIG, CupcakeCoreModule, InvitationStatus, InvitationStatusLabels, LabGroupService, LabGroupsComponent, LoginComponent, NotificationService, PoweredByFooterComponent, RegisterComponent, ResourceRole, ResourceRoleLabels, ResourceService, ResourceType, ResourceTypeLabels, ResourceVisibility, ResourceVisibilityLabels, SiteConfigComponent, SiteConfigService, ThemeService, ToastContainerComponent, ToastService, UserManagementComponent, UserManagementService, UserProfileComponent, WEBSOCKET_ENDPOINT, WEBSOCKET_ENDPOINTS, WebSocketConfigService, WebSocketEndpoints, WebSocketService, adminGuard, authGuard, authInterceptor, resetRefreshState };
|
|
3412
3434
|
//# sourceMappingURL=noatgnu-cupcake-core.mjs.map
|