@we-scrum/enums 1.0.94 → 1.0.95
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/crafting-master-synchrnization-status-enum.js +1 -1
- package/dist/definition-of-done-category-enum.js +1 -1
- package/dist/environment-category-enum.js +1 -1
- package/dist/log-metadata-type-enum.js +1 -1
- package/dist/log-severity-level-enum.js +1 -1
- package/dist/monitoring-alert-severity-level-enum.js +1 -1
- package/dist/monitoring-alert-status-enum.js +1 -1
- package/dist/object-property-type-enum.js +1 -1
- package/dist/operator-enum.js +4 -4
- package/dist/route-query-param-type-enum.js +1 -1
- package/dist/search-result-type-enum.js +1 -1
- package/dist/story-status-enum.js +1 -1
- package/dist/user-resource-type-enum.js +1 -1
- package/package.json +4 -4
- package/src/communication-channel-enum.ts +1 -1
- package/src/content-type-enum.ts +1 -1
- package/src/crafting-master-enum.ts +1 -1
- package/src/crafting-master-synchrnization-status-enum.ts +2 -2
- package/src/definition-of-done-category-enum.ts +2 -2
- package/src/environment-category-enum.ts +2 -2
- package/src/log-metadata-type-enum.ts +2 -2
- package/src/log-severity-level-enum.ts +2 -2
- package/src/logging-system-enum.ts +1 -1
- package/src/monitoring-alert-severity-level-enum.ts +2 -2
- package/src/monitoring-alert-status-enum.ts +2 -2
- package/src/object-property-type-enum.ts +2 -2
- package/src/operation-enum.ts +1 -1
- package/src/operator-enum.ts +5 -5
- package/src/progress-status-enum.ts +1 -1
- package/src/queuing-system-enum.ts +1 -1
- package/src/route-method-enum.ts +1 -1
- package/src/route-query-param-type-enum.ts +2 -2
- package/src/search-result-type-enum.ts +2 -2
- package/src/sort-direction-enum.ts +1 -1
- package/src/store-system-enum.ts +1 -1
- package/src/story-status-enum.ts +2 -2
- package/src/user-resource-type-enum.ts +2 -2
- package/src/user-role-enum.ts +1 -1
|
@@ -12,7 +12,7 @@ var CraftingMasterSynchronizationStatus;
|
|
|
12
12
|
CraftingMasterSynchronizationStatus.helper = new core_1.EnumHelper('CraftingMasterSynchronizationStatus', [
|
|
13
13
|
CraftingMasterSynchronizationStatus.On,
|
|
14
14
|
CraftingMasterSynchronizationStatus.Off,
|
|
15
|
-
CraftingMasterSynchronizationStatus.Pause
|
|
15
|
+
CraftingMasterSynchronizationStatus.Pause,
|
|
16
16
|
]);
|
|
17
17
|
})(CraftingMasterSynchronizationStatus || (exports.CraftingMasterSynchronizationStatus = CraftingMasterSynchronizationStatus = {}));
|
|
18
18
|
//# sourceMappingURL=crafting-master-synchrnization-status-enum.js.map
|
|
@@ -26,7 +26,7 @@ class DefinitionOfDoneCategoryHelper extends core_1.EnumHelper {
|
|
|
26
26
|
DefinitionOfDoneCategory.helper = new DefinitionOfDoneCategoryHelper('DefinitionOfDoneCategory', [
|
|
27
27
|
DefinitionOfDoneCategory.Crafting,
|
|
28
28
|
DefinitionOfDoneCategory.Analysis,
|
|
29
|
-
DefinitionOfDoneCategory.Development
|
|
29
|
+
DefinitionOfDoneCategory.Development,
|
|
30
30
|
]);
|
|
31
31
|
})(DefinitionOfDoneCategory || (exports.DefinitionOfDoneCategory = DefinitionOfDoneCategory = {}));
|
|
32
32
|
//# sourceMappingURL=definition-of-done-category-enum.js.map
|
|
@@ -38,7 +38,7 @@ class EnvironmentCategoryHelper extends core_1.EnumHelper {
|
|
|
38
38
|
EnvironmentCategory.helper = new EnvironmentCategoryHelper('EnvironmentCategory', [
|
|
39
39
|
EnvironmentCategory.Development,
|
|
40
40
|
EnvironmentCategory.Staging,
|
|
41
|
-
EnvironmentCategory.Production
|
|
41
|
+
EnvironmentCategory.Production,
|
|
42
42
|
]);
|
|
43
43
|
})(EnvironmentCategory || (exports.EnvironmentCategory = EnvironmentCategory = {}));
|
|
44
44
|
//# sourceMappingURL=environment-category-enum.js.map
|
|
@@ -49,7 +49,7 @@ class LogMetadataTypeHelper extends core_1.EnumHelper {
|
|
|
49
49
|
LogMetadataType.helper = new LogMetadataTypeHelper('LogMetadataType', [
|
|
50
50
|
LogMetadataType.SQL,
|
|
51
51
|
LogMetadataType.Command,
|
|
52
|
-
LogMetadataType.Event
|
|
52
|
+
LogMetadataType.Event,
|
|
53
53
|
]);
|
|
54
54
|
})(LogMetadataType || (exports.LogMetadataType = LogMetadataType = {}));
|
|
55
55
|
//# sourceMappingURL=log-metadata-type-enum.js.map
|
|
@@ -50,7 +50,7 @@ class LogSeverityLevelHelper extends core_1.EnumHelper {
|
|
|
50
50
|
LogSeverityLevel.Information,
|
|
51
51
|
LogSeverityLevel.Warning,
|
|
52
52
|
LogSeverityLevel.Error,
|
|
53
|
-
LogSeverityLevel.Critical
|
|
53
|
+
LogSeverityLevel.Critical,
|
|
54
54
|
]);
|
|
55
55
|
})(LogSeverityLevel || (exports.LogSeverityLevel = LogSeverityLevel = {}));
|
|
56
56
|
//# sourceMappingURL=log-severity-level-enum.js.map
|
|
@@ -32,7 +32,7 @@ class MonitoringAlertSeverityLevelHelper extends core_1.EnumHelper {
|
|
|
32
32
|
(function (MonitoringAlertSeverityLevel) {
|
|
33
33
|
MonitoringAlertSeverityLevel.helper = new MonitoringAlertSeverityLevelHelper('MonitoringAlertSeverityLevel', [
|
|
34
34
|
MonitoringAlertSeverityLevel.Warning,
|
|
35
|
-
MonitoringAlertSeverityLevel.Error
|
|
35
|
+
MonitoringAlertSeverityLevel.Error,
|
|
36
36
|
]);
|
|
37
37
|
})(MonitoringAlertSeverityLevel || (exports.MonitoringAlertSeverityLevel = MonitoringAlertSeverityLevel = {}));
|
|
38
38
|
//# sourceMappingURL=monitoring-alert-severity-level-enum.js.map
|
|
@@ -35,7 +35,7 @@ class MonitoringAlertStatusHelper extends core_1.EnumHelper {
|
|
|
35
35
|
(function (MonitoringAlertStatus) {
|
|
36
36
|
MonitoringAlertStatus.helper = new MonitoringAlertStatusHelper('MonitoringAlertStatus', [
|
|
37
37
|
MonitoringAlertStatus.Active,
|
|
38
|
-
MonitoringAlertStatus.Resolved
|
|
38
|
+
MonitoringAlertStatus.Resolved,
|
|
39
39
|
]);
|
|
40
40
|
})(MonitoringAlertStatus || (exports.MonitoringAlertStatus = MonitoringAlertStatus = {}));
|
|
41
41
|
//# sourceMappingURL=monitoring-alert-status-enum.js.map
|
|
@@ -25,7 +25,7 @@ class ObjectPropertyTypeHelper extends core_1.EnumHelper {
|
|
|
25
25
|
ObjectPropertyType.Date,
|
|
26
26
|
ObjectPropertyType.Enumeration,
|
|
27
27
|
ObjectPropertyType.Object,
|
|
28
|
-
ObjectPropertyType.Any
|
|
28
|
+
ObjectPropertyType.Any,
|
|
29
29
|
]);
|
|
30
30
|
})(ObjectPropertyType || (exports.ObjectPropertyType = ObjectPropertyType = {}));
|
|
31
31
|
//# sourceMappingURL=object-property-type-enum.js.map
|
package/dist/operator-enum.js
CHANGED
|
@@ -96,7 +96,7 @@ class OperatorHelper extends core_1.EnumHelper {
|
|
|
96
96
|
Operator.GreaterThan,
|
|
97
97
|
Operator.LowerThan,
|
|
98
98
|
Operator.In,
|
|
99
|
-
Operator.NotIn
|
|
99
|
+
Operator.NotIn,
|
|
100
100
|
];
|
|
101
101
|
if (system === store_system_enum_1.StoreSystem.AzureCosmosDB)
|
|
102
102
|
return [
|
|
@@ -119,7 +119,7 @@ class OperatorHelper extends core_1.EnumHelper {
|
|
|
119
119
|
Operator.IsEmpty,
|
|
120
120
|
Operator.IsNotEmpty,
|
|
121
121
|
Operator.ArrayContains,
|
|
122
|
-
Operator.PartialArrayContains
|
|
122
|
+
Operator.PartialArrayContains,
|
|
123
123
|
];
|
|
124
124
|
return [];
|
|
125
125
|
}
|
|
@@ -130,7 +130,7 @@ class OperatorHelper extends core_1.EnumHelper {
|
|
|
130
130
|
Operator.IsNull,
|
|
131
131
|
Operator.IsNotNull,
|
|
132
132
|
Operator.IsEmpty,
|
|
133
|
-
Operator.IsNotEmpty
|
|
133
|
+
Operator.IsNotEmpty,
|
|
134
134
|
].includes(operator);
|
|
135
135
|
}
|
|
136
136
|
hasMultipleValues(operator) {
|
|
@@ -183,7 +183,7 @@ class OperatorHelper extends core_1.EnumHelper {
|
|
|
183
183
|
Operator.StartsWith,
|
|
184
184
|
Operator.NotStartsWith,
|
|
185
185
|
Operator.EndsWith,
|
|
186
|
-
Operator.NotEndsWith
|
|
186
|
+
Operator.NotEndsWith,
|
|
187
187
|
]);
|
|
188
188
|
})(Operator || (exports.Operator = Operator = {}));
|
|
189
189
|
//# sourceMappingURL=operator-enum.js.map
|
|
@@ -16,7 +16,7 @@ var RouteQueryParamType;
|
|
|
16
16
|
RouteQueryParamType.Number,
|
|
17
17
|
RouteQueryParamType.Boolean,
|
|
18
18
|
RouteQueryParamType.Date,
|
|
19
|
-
RouteQueryParamType.Enumeration
|
|
19
|
+
RouteQueryParamType.Enumeration,
|
|
20
20
|
]);
|
|
21
21
|
})(RouteQueryParamType || (exports.RouteQueryParamType = RouteQueryParamType = {}));
|
|
22
22
|
//# sourceMappingURL=route-query-param-type-enum.js.map
|
|
@@ -16,7 +16,7 @@ var SearchResultType;
|
|
|
16
16
|
SearchResultType.Story,
|
|
17
17
|
SearchResultType.Object,
|
|
18
18
|
SearchResultType.Enumeration,
|
|
19
|
-
SearchResultType.RecentSearch
|
|
19
|
+
SearchResultType.RecentSearch,
|
|
20
20
|
]);
|
|
21
21
|
})(SearchResultType || (exports.SearchResultType = SearchResultType = {}));
|
|
22
22
|
//# sourceMappingURL=search-result-type-enum.js.map
|
|
@@ -84,7 +84,7 @@ class StoryStatusHelper extends core_1.EnumHelper {
|
|
|
84
84
|
StoryStatus.Analysing,
|
|
85
85
|
StoryStatus.Analysed,
|
|
86
86
|
StoryStatus.Developing,
|
|
87
|
-
StoryStatus.Done
|
|
87
|
+
StoryStatus.Done,
|
|
88
88
|
]);
|
|
89
89
|
})(StoryStatus || (exports.StoryStatus = StoryStatus = {}));
|
|
90
90
|
//# sourceMappingURL=story-status-enum.js.map
|
|
@@ -24,7 +24,7 @@ class UserResourceTypeHelper extends core_1.EnumHelper {
|
|
|
24
24
|
UserResourceType.DataExplorerSummaryLineProperties,
|
|
25
25
|
UserResourceType.EventExplorerQueryHistory,
|
|
26
26
|
UserResourceType.EventExplorerSavedQuery,
|
|
27
|
-
UserResourceType.EventExplorerSummaryLineProperties
|
|
27
|
+
UserResourceType.EventExplorerSummaryLineProperties,
|
|
28
28
|
]);
|
|
29
29
|
})(UserResourceType || (exports.UserResourceType = UserResourceType = {}));
|
|
30
30
|
//# sourceMappingURL=user-resource-type-enum.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@we-scrum/enums",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.95",
|
|
4
4
|
"description": "We-Scrum enums",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"author": "",
|
|
16
16
|
"license": "ISC",
|
|
17
17
|
"peerDependencies": {
|
|
18
|
-
"@my-devkit/core": "1.0.
|
|
18
|
+
"@my-devkit/core": "1.0.124"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@my-devkit/cli": "2.1.
|
|
22
|
-
"@my-devkit/core": "1.0.
|
|
21
|
+
"@my-devkit/cli": "2.1.9",
|
|
22
|
+
"@my-devkit/core": "1.0.124",
|
|
23
23
|
"@types/node": "22.18.6",
|
|
24
24
|
"typescript": "5.9.3"
|
|
25
25
|
}
|
package/src/content-type-enum.ts
CHANGED
|
@@ -3,13 +3,13 @@ import { EnumHelper } from '@my-devkit/core';
|
|
|
3
3
|
export enum CraftingMasterSynchronizationStatus {
|
|
4
4
|
On = 'On',
|
|
5
5
|
Off = 'Off',
|
|
6
|
-
Pause = 'Pause'
|
|
6
|
+
Pause = 'Pause',
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
export namespace CraftingMasterSynchronizationStatus {
|
|
10
10
|
export const helper = new EnumHelper<CraftingMasterSynchronizationStatus>('CraftingMasterSynchronizationStatus', [
|
|
11
11
|
CraftingMasterSynchronizationStatus.On,
|
|
12
12
|
CraftingMasterSynchronizationStatus.Off,
|
|
13
|
-
CraftingMasterSynchronizationStatus.Pause
|
|
13
|
+
CraftingMasterSynchronizationStatus.Pause,
|
|
14
14
|
]);
|
|
15
15
|
}
|
|
@@ -3,7 +3,7 @@ import { EnumHelper } from '@my-devkit/core';
|
|
|
3
3
|
export enum DefinitionOfDoneCategory {
|
|
4
4
|
Crafting = 'Crafting',
|
|
5
5
|
Analysis = 'Analysis',
|
|
6
|
-
Development = 'Development'
|
|
6
|
+
Development = 'Development',
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
class DefinitionOfDoneCategoryHelper extends EnumHelper<DefinitionOfDoneCategory> {
|
|
@@ -25,6 +25,6 @@ export namespace DefinitionOfDoneCategory {
|
|
|
25
25
|
export const helper = new DefinitionOfDoneCategoryHelper('DefinitionOfDoneCategory', [
|
|
26
26
|
DefinitionOfDoneCategory.Crafting,
|
|
27
27
|
DefinitionOfDoneCategory.Analysis,
|
|
28
|
-
DefinitionOfDoneCategory.Development
|
|
28
|
+
DefinitionOfDoneCategory.Development,
|
|
29
29
|
]);
|
|
30
30
|
}
|
|
@@ -3,7 +3,7 @@ import { EnumHelper } from '@my-devkit/core';
|
|
|
3
3
|
export enum EnvironmentCategory {
|
|
4
4
|
Development = 'Development',
|
|
5
5
|
Staging = 'Staging',
|
|
6
|
-
Production = 'Production'
|
|
6
|
+
Production = 'Production',
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
class EnvironmentCategoryHelper extends EnumHelper<EnvironmentCategory> {
|
|
@@ -40,6 +40,6 @@ export namespace EnvironmentCategory {
|
|
|
40
40
|
export const helper = new EnvironmentCategoryHelper('EnvironmentCategory', [
|
|
41
41
|
EnvironmentCategory.Development,
|
|
42
42
|
EnvironmentCategory.Staging,
|
|
43
|
-
EnvironmentCategory.Production
|
|
43
|
+
EnvironmentCategory.Production,
|
|
44
44
|
]);
|
|
45
45
|
}
|
|
@@ -7,7 +7,7 @@ export enum LogMetadataType {
|
|
|
7
7
|
Metric = 'Metric',
|
|
8
8
|
Informations = 'Informations',
|
|
9
9
|
Warnings = 'Warnings',
|
|
10
|
-
Exception = 'Exception'
|
|
10
|
+
Exception = 'Exception',
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
class LogMetadataTypeHelper extends EnumHelper<LogMetadataType> {
|
|
@@ -58,6 +58,6 @@ export namespace LogMetadataType {
|
|
|
58
58
|
export const helper = new LogMetadataTypeHelper('LogMetadataType', [
|
|
59
59
|
LogMetadataType.SQL,
|
|
60
60
|
LogMetadataType.Command,
|
|
61
|
-
LogMetadataType.Event
|
|
61
|
+
LogMetadataType.Event,
|
|
62
62
|
]);
|
|
63
63
|
}
|
|
@@ -5,7 +5,7 @@ export enum LogSeverityLevel {
|
|
|
5
5
|
Information = 1,
|
|
6
6
|
Warning = 2,
|
|
7
7
|
Error = 3,
|
|
8
|
-
Critical = 4
|
|
8
|
+
Critical = 4,
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
class LogSeverityLevelHelper extends EnumHelper<LogSeverityLevel> {
|
|
@@ -50,6 +50,6 @@ export namespace LogSeverityLevel {
|
|
|
50
50
|
LogSeverityLevel.Information,
|
|
51
51
|
LogSeverityLevel.Warning,
|
|
52
52
|
LogSeverityLevel.Error,
|
|
53
|
-
LogSeverityLevel.Critical
|
|
53
|
+
LogSeverityLevel.Critical,
|
|
54
54
|
]);
|
|
55
55
|
}
|
|
@@ -2,7 +2,7 @@ import { EnumHelper } from '@my-devkit/core';
|
|
|
2
2
|
|
|
3
3
|
export enum MonitoringAlertSeverityLevel {
|
|
4
4
|
Warning = 'Warning',
|
|
5
|
-
Error = 'Error'
|
|
5
|
+
Error = 'Error',
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
class MonitoringAlertSeverityLevelHelper extends EnumHelper<MonitoringAlertSeverityLevel> {
|
|
@@ -32,6 +32,6 @@ class MonitoringAlertSeverityLevelHelper extends EnumHelper<MonitoringAlertSever
|
|
|
32
32
|
export namespace MonitoringAlertSeverityLevel {
|
|
33
33
|
export const helper = new MonitoringAlertSeverityLevelHelper('MonitoringAlertSeverityLevel', [
|
|
34
34
|
MonitoringAlertSeverityLevel.Warning,
|
|
35
|
-
MonitoringAlertSeverityLevel.Error
|
|
35
|
+
MonitoringAlertSeverityLevel.Error,
|
|
36
36
|
]);
|
|
37
37
|
}
|
|
@@ -2,7 +2,7 @@ import { EnumHelper } from '@my-devkit/core';
|
|
|
2
2
|
|
|
3
3
|
export enum MonitoringAlertStatus {
|
|
4
4
|
Active = 'Active',
|
|
5
|
-
Resolved = 'Resolved'
|
|
5
|
+
Resolved = 'Resolved',
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
class MonitoringAlertStatusHelper extends EnumHelper<MonitoringAlertStatus> {
|
|
@@ -37,6 +37,6 @@ class MonitoringAlertStatusHelper extends EnumHelper<MonitoringAlertStatus> {
|
|
|
37
37
|
export namespace MonitoringAlertStatus {
|
|
38
38
|
export const helper = new MonitoringAlertStatusHelper('MonitoringAlertStatus', [
|
|
39
39
|
MonitoringAlertStatus.Active,
|
|
40
|
-
MonitoringAlertStatus.Resolved
|
|
40
|
+
MonitoringAlertStatus.Resolved,
|
|
41
41
|
]);
|
|
42
42
|
}
|
|
@@ -7,7 +7,7 @@ export enum ObjectPropertyType {
|
|
|
7
7
|
Date = 'Date',
|
|
8
8
|
Enumeration = 'Enumeration',
|
|
9
9
|
Object = 'Object',
|
|
10
|
-
Any = 'Any'
|
|
10
|
+
Any = 'Any',
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
class ObjectPropertyTypeHelper extends EnumHelper<ObjectPropertyType> {
|
|
@@ -24,6 +24,6 @@ export namespace ObjectPropertyType {
|
|
|
24
24
|
ObjectPropertyType.Date,
|
|
25
25
|
ObjectPropertyType.Enumeration,
|
|
26
26
|
ObjectPropertyType.Object,
|
|
27
|
-
ObjectPropertyType.Any
|
|
27
|
+
ObjectPropertyType.Any,
|
|
28
28
|
]);
|
|
29
29
|
}
|
package/src/operation-enum.ts
CHANGED
package/src/operator-enum.ts
CHANGED
|
@@ -24,7 +24,7 @@ export enum Operator {
|
|
|
24
24
|
StartsWith = 'starts-with',
|
|
25
25
|
NotStartsWith = 'not-starts-with',
|
|
26
26
|
EndsWith = 'ends-with',
|
|
27
|
-
NotEndsWith = 'not-ends-with'
|
|
27
|
+
NotEndsWith = 'not-ends-with',
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
class OperatorHelper extends EnumHelper<Operator> {
|
|
@@ -96,7 +96,7 @@ class OperatorHelper extends EnumHelper<Operator> {
|
|
|
96
96
|
Operator.GreaterThan,
|
|
97
97
|
Operator.LowerThan,
|
|
98
98
|
Operator.In,
|
|
99
|
-
Operator.NotIn
|
|
99
|
+
Operator.NotIn,
|
|
100
100
|
];
|
|
101
101
|
|
|
102
102
|
if (system === StoreSystem.AzureCosmosDB)
|
|
@@ -120,7 +120,7 @@ class OperatorHelper extends EnumHelper<Operator> {
|
|
|
120
120
|
Operator.IsEmpty,
|
|
121
121
|
Operator.IsNotEmpty,
|
|
122
122
|
Operator.ArrayContains,
|
|
123
|
-
Operator.PartialArrayContains
|
|
123
|
+
Operator.PartialArrayContains,
|
|
124
124
|
];
|
|
125
125
|
|
|
126
126
|
return [];
|
|
@@ -133,7 +133,7 @@ class OperatorHelper extends EnumHelper<Operator> {
|
|
|
133
133
|
Operator.IsNull,
|
|
134
134
|
Operator.IsNotNull,
|
|
135
135
|
Operator.IsEmpty,
|
|
136
|
-
Operator.IsNotEmpty
|
|
136
|
+
Operator.IsNotEmpty,
|
|
137
137
|
].includes(operator);
|
|
138
138
|
}
|
|
139
139
|
|
|
@@ -191,6 +191,6 @@ export namespace Operator {
|
|
|
191
191
|
Operator.StartsWith,
|
|
192
192
|
Operator.NotStartsWith,
|
|
193
193
|
Operator.EndsWith,
|
|
194
|
-
Operator.NotEndsWith
|
|
194
|
+
Operator.NotEndsWith,
|
|
195
195
|
]);
|
|
196
196
|
}
|
package/src/route-method-enum.ts
CHANGED
|
@@ -5,7 +5,7 @@ export enum RouteQueryParamType {
|
|
|
5
5
|
Number = 'Number',
|
|
6
6
|
Boolean = 'Boolean',
|
|
7
7
|
Date = 'Date',
|
|
8
|
-
Enumeration = 'Enumeration'
|
|
8
|
+
Enumeration = 'Enumeration',
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
export namespace RouteQueryParamType {
|
|
@@ -14,6 +14,6 @@ export namespace RouteQueryParamType {
|
|
|
14
14
|
RouteQueryParamType.Number,
|
|
15
15
|
RouteQueryParamType.Boolean,
|
|
16
16
|
RouteQueryParamType.Date,
|
|
17
|
-
RouteQueryParamType.Enumeration
|
|
17
|
+
RouteQueryParamType.Enumeration,
|
|
18
18
|
]);
|
|
19
19
|
}
|
|
@@ -5,7 +5,7 @@ export enum SearchResultType {
|
|
|
5
5
|
Object = 'Object',
|
|
6
6
|
Route = 'Route',
|
|
7
7
|
Enumeration = 'Enumeration',
|
|
8
|
-
RecentSearch = 'RecentSearch'
|
|
8
|
+
RecentSearch = 'RecentSearch',
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
export namespace SearchResultType {
|
|
@@ -14,6 +14,6 @@ export namespace SearchResultType {
|
|
|
14
14
|
SearchResultType.Story,
|
|
15
15
|
SearchResultType.Object,
|
|
16
16
|
SearchResultType.Enumeration,
|
|
17
|
-
SearchResultType.RecentSearch
|
|
17
|
+
SearchResultType.RecentSearch,
|
|
18
18
|
]);
|
|
19
19
|
}
|
package/src/store-system-enum.ts
CHANGED
package/src/story-status-enum.ts
CHANGED
|
@@ -6,7 +6,7 @@ export enum StoryStatus {
|
|
|
6
6
|
Analysing = 'Analysing',
|
|
7
7
|
Analysed = 'Analysed',
|
|
8
8
|
Developing = 'Developing',
|
|
9
|
-
Done = 'Done'
|
|
9
|
+
Done = 'Done',
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
class StoryStatusHelper extends EnumHelper<StoryStatus> {
|
|
@@ -91,6 +91,6 @@ export namespace StoryStatus {
|
|
|
91
91
|
StoryStatus.Analysing,
|
|
92
92
|
StoryStatus.Analysed,
|
|
93
93
|
StoryStatus.Developing,
|
|
94
|
-
StoryStatus.Done
|
|
94
|
+
StoryStatus.Done,
|
|
95
95
|
]);
|
|
96
96
|
}
|
|
@@ -8,7 +8,7 @@ export enum UserResourceType {
|
|
|
8
8
|
DataExplorerSummaryLineProperties = 'DataExplorerSummaryLineProperties',
|
|
9
9
|
EventExplorerQueryHistory = 'EventExplorerQueryHistory',
|
|
10
10
|
EventExplorerSavedQuery = 'EventExplorerSavedQuery',
|
|
11
|
-
EventExplorerSummaryLineProperties = 'EventExplorerSummaryLineProperties'
|
|
11
|
+
EventExplorerSummaryLineProperties = 'EventExplorerSummaryLineProperties',
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
class UserResourceTypeHelper extends EnumHelper<UserResourceType> {}
|
|
@@ -22,6 +22,6 @@ export namespace UserResourceType {
|
|
|
22
22
|
UserResourceType.DataExplorerSummaryLineProperties,
|
|
23
23
|
UserResourceType.EventExplorerQueryHistory,
|
|
24
24
|
UserResourceType.EventExplorerSavedQuery,
|
|
25
|
-
UserResourceType.EventExplorerSummaryLineProperties
|
|
25
|
+
UserResourceType.EventExplorerSummaryLineProperties,
|
|
26
26
|
]);
|
|
27
27
|
}
|