yellowgrid-api-ts 3.2.58-dev.0 → 3.2.59-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/dist/models/StatusEnum.d.ts +18 -0
- package/dist/models/StatusEnum.js +20 -0
- package/models/StatusEnum.ts +19 -0
- package/package.json +1 -1
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare const StatusEnum: {
|
|
2
|
+
readonly ONGOING: {
|
|
3
|
+
readonly name: "ONGOING";
|
|
4
|
+
readonly value: 0;
|
|
5
|
+
readonly publicValue: "Ongoing";
|
|
6
|
+
};
|
|
7
|
+
readonly RESOLVED: {
|
|
8
|
+
readonly name: "RESOLVED";
|
|
9
|
+
readonly value: 1;
|
|
10
|
+
readonly publicValue: "Resolved";
|
|
11
|
+
};
|
|
12
|
+
readonly ARCHIVED: {
|
|
13
|
+
readonly name: "ARCHIVED";
|
|
14
|
+
readonly value: 2;
|
|
15
|
+
readonly publicValue: "Archived";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export type StatusEnum = typeof StatusEnum;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.StatusEnum = void 0;
|
|
4
|
+
exports.StatusEnum = {
|
|
5
|
+
"ONGOING": {
|
|
6
|
+
"name": "ONGOING",
|
|
7
|
+
"value": 0,
|
|
8
|
+
"publicValue": "Ongoing"
|
|
9
|
+
},
|
|
10
|
+
"RESOLVED": {
|
|
11
|
+
"name": "RESOLVED",
|
|
12
|
+
"value": 1,
|
|
13
|
+
"publicValue": "Resolved"
|
|
14
|
+
},
|
|
15
|
+
"ARCHIVED": {
|
|
16
|
+
"name": "ARCHIVED",
|
|
17
|
+
"value": 2,
|
|
18
|
+
"publicValue": "Archived"
|
|
19
|
+
}
|
|
20
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export const StatusEnum = {
|
|
2
|
+
"ONGOING": {
|
|
3
|
+
"name": "ONGOING",
|
|
4
|
+
"value": 0,
|
|
5
|
+
"publicValue": "Ongoing"
|
|
6
|
+
},
|
|
7
|
+
"RESOLVED": {
|
|
8
|
+
"name": "RESOLVED",
|
|
9
|
+
"value": 1,
|
|
10
|
+
"publicValue": "Resolved"
|
|
11
|
+
},
|
|
12
|
+
"ARCHIVED": {
|
|
13
|
+
"name": "ARCHIVED",
|
|
14
|
+
"value": 2,
|
|
15
|
+
"publicValue": "Archived"
|
|
16
|
+
}
|
|
17
|
+
} as const;
|
|
18
|
+
|
|
19
|
+
export type StatusEnum = typeof StatusEnum;
|