yellowgrid-api-ts 3.2.26-dev.0 → 3.2.27-dev.0
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/api.ts +5 -3
- package/dist/api.d.ts +3 -1
- package/dist/api.js +4 -2
- package/docs/ServiceStatusDTO.md +2 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1808,7 +1808,8 @@ export const IncidentDTOSeverityEnum = {
|
|
|
1808
1808
|
|
|
1809
1809
|
export type IncidentDTOSeverityEnum = typeof IncidentDTOSeverityEnum[keyof typeof IncidentDTOSeverityEnum];
|
|
1810
1810
|
export const IncidentDTOServiceEnum = {
|
|
1811
|
-
NUMBER_0: 0
|
|
1811
|
+
NUMBER_0: 0,
|
|
1812
|
+
NUMBER_1: 1
|
|
1812
1813
|
} as const;
|
|
1813
1814
|
|
|
1814
1815
|
export type IncidentDTOServiceEnum = typeof IncidentDTOServiceEnum[keyof typeof IncidentDTOServiceEnum];
|
|
@@ -1845,7 +1846,8 @@ export const IncidentRequestDTOSeverityEnum = {
|
|
|
1845
1846
|
|
|
1846
1847
|
export type IncidentRequestDTOSeverityEnum = typeof IncidentRequestDTOSeverityEnum[keyof typeof IncidentRequestDTOSeverityEnum];
|
|
1847
1848
|
export const IncidentRequestDTOServiceEnum = {
|
|
1848
|
-
NUMBER_0: 0
|
|
1849
|
+
NUMBER_0: 0,
|
|
1850
|
+
NUMBER_1: 1
|
|
1849
1851
|
} as const;
|
|
1850
1852
|
|
|
1851
1853
|
export type IncidentRequestDTOServiceEnum = typeof IncidentRequestDTOServiceEnum[keyof typeof IncidentRequestDTOServiceEnum];
|
|
@@ -3729,7 +3731,7 @@ export interface ServiceStatusDTO {
|
|
|
3729
3731
|
/**
|
|
3730
3732
|
* Service Name
|
|
3731
3733
|
*/
|
|
3732
|
-
'
|
|
3734
|
+
'name'?: string;
|
|
3733
3735
|
/**
|
|
3734
3736
|
* Service Status
|
|
3735
3737
|
*/
|
package/dist/api.d.ts
CHANGED
|
@@ -1785,6 +1785,7 @@ export declare const IncidentDTOSeverityEnum: {
|
|
|
1785
1785
|
export type IncidentDTOSeverityEnum = typeof IncidentDTOSeverityEnum[keyof typeof IncidentDTOSeverityEnum];
|
|
1786
1786
|
export declare const IncidentDTOServiceEnum: {
|
|
1787
1787
|
readonly NUMBER_0: 0;
|
|
1788
|
+
readonly NUMBER_1: 1;
|
|
1788
1789
|
};
|
|
1789
1790
|
export type IncidentDTOServiceEnum = typeof IncidentDTOServiceEnum[keyof typeof IncidentDTOServiceEnum];
|
|
1790
1791
|
export declare const IncidentDTOStatusEnum: {
|
|
@@ -1817,6 +1818,7 @@ export declare const IncidentRequestDTOSeverityEnum: {
|
|
|
1817
1818
|
export type IncidentRequestDTOSeverityEnum = typeof IncidentRequestDTOSeverityEnum[keyof typeof IncidentRequestDTOSeverityEnum];
|
|
1818
1819
|
export declare const IncidentRequestDTOServiceEnum: {
|
|
1819
1820
|
readonly NUMBER_0: 0;
|
|
1821
|
+
readonly NUMBER_1: 1;
|
|
1820
1822
|
};
|
|
1821
1823
|
export type IncidentRequestDTOServiceEnum = typeof IncidentRequestDTOServiceEnum[keyof typeof IncidentRequestDTOServiceEnum];
|
|
1822
1824
|
/**
|
|
@@ -3676,7 +3678,7 @@ export interface ServiceStatusDTO {
|
|
|
3676
3678
|
/**
|
|
3677
3679
|
* Service Name
|
|
3678
3680
|
*/
|
|
3679
|
-
'
|
|
3681
|
+
'name'?: string;
|
|
3680
3682
|
/**
|
|
3681
3683
|
* Service Status
|
|
3682
3684
|
*/
|
package/dist/api.js
CHANGED
|
@@ -124,7 +124,8 @@ exports.IncidentDTOSeverityEnum = {
|
|
|
124
124
|
NUMBER_1: 1
|
|
125
125
|
};
|
|
126
126
|
exports.IncidentDTOServiceEnum = {
|
|
127
|
-
NUMBER_0: 0
|
|
127
|
+
NUMBER_0: 0,
|
|
128
|
+
NUMBER_1: 1
|
|
128
129
|
};
|
|
129
130
|
exports.IncidentDTOStatusEnum = {
|
|
130
131
|
NUMBER_0: 0,
|
|
@@ -136,7 +137,8 @@ exports.IncidentRequestDTOSeverityEnum = {
|
|
|
136
137
|
NUMBER_1: 1
|
|
137
138
|
};
|
|
138
139
|
exports.IncidentRequestDTOServiceEnum = {
|
|
139
|
-
NUMBER_0: 0
|
|
140
|
+
NUMBER_0: 0,
|
|
141
|
+
NUMBER_1: 1
|
|
140
142
|
};
|
|
141
143
|
exports.IncidentUpdateDTOTypeEnum = {
|
|
142
144
|
NUMBER_0: 0,
|
package/docs/ServiceStatusDTO.md
CHANGED
|
@@ -7,7 +7,7 @@ Service Status DTO
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
9
|
**statusName** | **string** | Service Status Description | [optional] [default to undefined]
|
|
10
|
-
**
|
|
10
|
+
**name** | **string** | Service Name | [optional] [default to undefined]
|
|
11
11
|
**status** | **number** | Service Status | [optional] [default to undefined]
|
|
12
12
|
**incidents** | [**Array<IncidentDTO>**](IncidentDTO.md) | Service Incidents | [optional] [default to undefined]
|
|
13
13
|
|
|
@@ -18,7 +18,7 @@ import { ServiceStatusDTO } from 'yellowgrid-api-ts';
|
|
|
18
18
|
|
|
19
19
|
const instance: ServiceStatusDTO = {
|
|
20
20
|
statusName,
|
|
21
|
-
|
|
21
|
+
name,
|
|
22
22
|
status,
|
|
23
23
|
incidents,
|
|
24
24
|
};
|