@mittwald/api-models 4.189.0 → 4.191.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.
|
@@ -41,6 +41,7 @@ declare const ProjectCommon_base: import("polytype").Polytype.ClusteredConstruct
|
|
|
41
41
|
disableReason?: import("@mittwald/api-client").MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
42
42
|
disabledAt?: string;
|
|
43
43
|
enabled: boolean;
|
|
44
|
+
features?: import("@mittwald/api-client").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
44
45
|
id: string;
|
|
45
46
|
imageRefId?: string;
|
|
46
47
|
isReady: boolean;
|
|
@@ -67,6 +68,7 @@ declare const ProjectCommon_base: import("polytype").Polytype.ClusteredConstruct
|
|
|
67
68
|
disableReason?: import("@mittwald/api-client").MittwaldAPIV2.Components.Schemas.ProjectDisableReason | undefined;
|
|
68
69
|
disabledAt?: string | undefined;
|
|
69
70
|
enabled: boolean;
|
|
71
|
+
features?: import("@mittwald/api-client").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[] | undefined;
|
|
70
72
|
id: string;
|
|
71
73
|
imageRefId?: string | undefined;
|
|
72
74
|
isReady: boolean;
|
|
@@ -93,6 +95,7 @@ declare const ProjectCommon_base: import("polytype").Polytype.ClusteredConstruct
|
|
|
93
95
|
disableReason?: import("@mittwald/api-client").MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
94
96
|
disabledAt?: string;
|
|
95
97
|
enabled: boolean;
|
|
98
|
+
features?: import("@mittwald/api-client").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
96
99
|
id: string;
|
|
97
100
|
imageRefId?: string;
|
|
98
101
|
isReady: boolean;
|
|
@@ -119,6 +122,7 @@ declare const ProjectCommon_base: import("polytype").Polytype.ClusteredConstruct
|
|
|
119
122
|
disableReason?: import("@mittwald/api-client").MittwaldAPIV2.Components.Schemas.ProjectDisableReason | undefined;
|
|
120
123
|
disabledAt?: string | undefined;
|
|
121
124
|
enabled: boolean;
|
|
125
|
+
features?: import("@mittwald/api-client").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[] | undefined;
|
|
122
126
|
id: string;
|
|
123
127
|
imageRefId?: string | undefined;
|
|
124
128
|
isReady: boolean;
|
|
@@ -156,6 +160,7 @@ declare const ProjectDetailed_base: import("polytype").Polytype.ClusteredConstru
|
|
|
156
160
|
disableReason?: import("@mittwald/api-client").MittwaldAPIV2.Components.Schemas.ProjectDisableReason | undefined;
|
|
157
161
|
disabledAt?: string | undefined;
|
|
158
162
|
enabled: boolean;
|
|
163
|
+
features?: import("@mittwald/api-client").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[] | undefined;
|
|
159
164
|
id: string;
|
|
160
165
|
imageRefId?: string | undefined;
|
|
161
166
|
isReady: boolean;
|
|
@@ -185,6 +190,7 @@ declare const ProjectDetailed_base: import("polytype").Polytype.ClusteredConstru
|
|
|
185
190
|
disableReason?: import("@mittwald/api-client").MittwaldAPIV2.Components.Schemas.ProjectDisableReason | undefined;
|
|
186
191
|
disabledAt?: string | undefined;
|
|
187
192
|
enabled: boolean;
|
|
193
|
+
features?: import("@mittwald/api-client").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[] | undefined;
|
|
188
194
|
id: string;
|
|
189
195
|
imageRefId?: string | undefined;
|
|
190
196
|
isReady: boolean;
|
|
@@ -217,6 +223,7 @@ declare const ProjectListItem_base: import("polytype").Polytype.ClusteredConstru
|
|
|
217
223
|
disableReason?: import("@mittwald/api-client").MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
218
224
|
disabledAt?: string;
|
|
219
225
|
enabled: boolean;
|
|
226
|
+
features?: import("@mittwald/api-client").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
220
227
|
id: string;
|
|
221
228
|
imageRefId?: string;
|
|
222
229
|
isReady: boolean;
|
|
@@ -240,6 +247,7 @@ declare const ProjectListItem_base: import("polytype").Polytype.ClusteredConstru
|
|
|
240
247
|
disableReason?: import("@mittwald/api-client").MittwaldAPIV2.Components.Schemas.ProjectDisableReason;
|
|
241
248
|
disabledAt?: string;
|
|
242
249
|
enabled: boolean;
|
|
250
|
+
features?: import("@mittwald/api-client").MittwaldAPIV2.Components.Schemas.ProjectProjectFeature[];
|
|
243
251
|
id: string;
|
|
244
252
|
imageRefId?: string;
|
|
245
253
|
isReady: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-models",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.191.0",
|
|
4
4
|
"author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Collection of domain models for coherent interaction with the API",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"test:unit": "node --experimental-vm-modules $(yarn bin jest)"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@mittwald/api-client": "^4.
|
|
42
|
+
"@mittwald/api-client": "^4.191.0",
|
|
43
43
|
"another-deep-freeze": "^1.0.0",
|
|
44
44
|
"context": "^3.0.33",
|
|
45
45
|
"dinero.js": "^1.9.1",
|
|
@@ -84,5 +84,5 @@
|
|
|
84
84
|
"optional": true
|
|
85
85
|
}
|
|
86
86
|
},
|
|
87
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "554b75b920c806af218acded56837b149b77e0ad"
|
|
88
88
|
}
|