@closerplatform/spinner-openapi 0.12.454 → 0.12.456
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/api.d.ts +31 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -3989,6 +3989,31 @@ export interface MainNotificationPostForm {
|
|
|
3989
3989
|
*/
|
|
3990
3990
|
enabled: boolean;
|
|
3991
3991
|
}
|
|
3992
|
+
/**
|
|
3993
|
+
*
|
|
3994
|
+
* @export
|
|
3995
|
+
* @interface MaintenanceWindow
|
|
3996
|
+
*/
|
|
3997
|
+
export interface MaintenanceWindow {
|
|
3998
|
+
/**
|
|
3999
|
+
*
|
|
4000
|
+
* @type {number}
|
|
4001
|
+
* @memberof MaintenanceWindow
|
|
4002
|
+
*/
|
|
4003
|
+
from: number;
|
|
4004
|
+
/**
|
|
4005
|
+
*
|
|
4006
|
+
* @type {number}
|
|
4007
|
+
* @memberof MaintenanceWindow
|
|
4008
|
+
*/
|
|
4009
|
+
to: number;
|
|
4010
|
+
/**
|
|
4011
|
+
*
|
|
4012
|
+
* @type {string}
|
|
4013
|
+
* @memberof MaintenanceWindow
|
|
4014
|
+
*/
|
|
4015
|
+
message: string;
|
|
4016
|
+
}
|
|
3992
4017
|
/**
|
|
3993
4018
|
*
|
|
3994
4019
|
* @export
|
|
@@ -5096,6 +5121,12 @@ export interface OrgConfig {
|
|
|
5096
5121
|
* @memberof OrgConfig
|
|
5097
5122
|
*/
|
|
5098
5123
|
agentLogLevel?: string;
|
|
5124
|
+
/**
|
|
5125
|
+
*
|
|
5126
|
+
* @type {Array<MaintenanceWindow>}
|
|
5127
|
+
* @memberof OrgConfig
|
|
5128
|
+
*/
|
|
5129
|
+
maintenanceWindows: Array<MaintenanceWindow>;
|
|
5099
5130
|
}
|
|
5100
5131
|
/**
|
|
5101
5132
|
*
|