waldur-js-client 8.0.9-dev.58 → 8.0.9-dev.59
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/types.gen.d.ts +15 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -21111,8 +21111,23 @@ export type PublicMaintenanceAnnouncement = {
|
|
|
21111
21111
|
readonly actual_end: string | null;
|
|
21112
21112
|
readonly affected_offerings: Array<MaintenanceAnnouncementOffering>;
|
|
21113
21113
|
readonly service_provider_name: string;
|
|
21114
|
+
readonly description: string;
|
|
21115
|
+
type: PublicMaintenanceAnnouncementTypeEnum;
|
|
21116
|
+
readonly maintenance_uuid: string;
|
|
21117
|
+
readonly maintenance_name: string;
|
|
21118
|
+
readonly maintenance_service_provider: string;
|
|
21119
|
+
readonly maintenance_scheduled_start: string;
|
|
21120
|
+
readonly maintenance_scheduled_end: string;
|
|
21121
|
+
readonly maintenance_affected_offerings: Array<{
|
|
21122
|
+
uuid?: string;
|
|
21123
|
+
name?: string;
|
|
21124
|
+
impact_level?: string;
|
|
21125
|
+
impact_level_display?: string;
|
|
21126
|
+
impact_description?: string;
|
|
21127
|
+
}>;
|
|
21114
21128
|
};
|
|
21115
21129
|
export type PublicMaintenanceAnnouncementStateEnum = 'Scheduled' | 'In progress' | 'Completed';
|
|
21130
|
+
export type PublicMaintenanceAnnouncementTypeEnum = 'danger' | 'warning';
|
|
21116
21131
|
export type PublicOfferingDetails = {
|
|
21117
21132
|
readonly url: string;
|
|
21118
21133
|
readonly uuid: string;
|