pmcf 2.73.12 → 2.74.1
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/package.json +2 -2
- package/src/base.mjs +5 -5
- package/src/host.mjs +13 -18
- package/src/owner.mjs +4 -4
- package/src/services/kea.mjs +1 -1
- package/src/subnet.mjs +2 -3
- package/types/base.d.mts +48 -4
- package/types/cluster.d.mts +256 -26
- package/types/extra-source-service.d.mts +48 -4
- package/types/host.d.mts +160 -17
- package/types/location.d.mts +192 -18
- package/types/network-interfaces/ethernet.d.mts +96 -8
- package/types/network-interfaces/loopback.d.mts +96 -8
- package/types/network-interfaces/network-interface.d.mts +96 -8
- package/types/network-interfaces/wireguard.d.mts +96 -8
- package/types/network-interfaces/wlan.d.mts +144 -12
- package/types/network.d.mts +96 -9
- package/types/owner.d.mts +96 -9
- package/types/root.d.mts +192 -18
- package/types/service.d.mts +96 -8
- package/types/services/bind.d.mts +96 -8
- package/types/services/chrony.d.mts +96 -8
- package/types/services/influxdb.d.mts +96 -8
- package/types/services/kea.d.mts +96 -8
- package/types/services/mosquitto.d.mts +96 -8
- package/types/services/openldap.d.mts +96 -8
- package/types/services/systemd-journal-remote.d.mts +96 -8
- package/types/services/systemd-journal-upload.d.mts +96 -8
- package/types/services/systemd-journal.d.mts +96 -8
- package/types/services/systemd-resolved.d.mts +96 -8
- package/types/services/systemd-timesyncd.d.mts +96 -8
- package/types/subnet.d.mts +12 -2
|
@@ -40,9 +40,20 @@ export class ExtraSourceService extends Service {
|
|
|
40
40
|
writeable: boolean;
|
|
41
41
|
};
|
|
42
42
|
description: {
|
|
43
|
+
writeable: boolean;
|
|
43
44
|
type: string;
|
|
45
|
+
isKey: boolean;
|
|
46
|
+
writable: boolean;
|
|
47
|
+
mandatory: boolean;
|
|
44
48
|
collection: boolean;
|
|
45
|
-
|
|
49
|
+
private?: boolean;
|
|
50
|
+
depends?: string;
|
|
51
|
+
additionalAttributes: string[];
|
|
52
|
+
description?: string;
|
|
53
|
+
default?: any;
|
|
54
|
+
set?: Function;
|
|
55
|
+
get?: Function;
|
|
56
|
+
env?: string[] | string;
|
|
46
57
|
};
|
|
47
58
|
priority: {
|
|
48
59
|
type: string;
|
|
@@ -50,14 +61,36 @@ export class ExtraSourceService extends Service {
|
|
|
50
61
|
writeable: boolean;
|
|
51
62
|
};
|
|
52
63
|
directory: {
|
|
64
|
+
writeable: boolean;
|
|
53
65
|
type: string;
|
|
66
|
+
isKey: boolean;
|
|
67
|
+
writable: boolean;
|
|
68
|
+
mandatory: boolean;
|
|
54
69
|
collection: boolean;
|
|
55
|
-
|
|
70
|
+
private?: boolean;
|
|
71
|
+
depends?: string;
|
|
72
|
+
additionalAttributes: string[];
|
|
73
|
+
description?: string;
|
|
74
|
+
default?: any;
|
|
75
|
+
set?: Function;
|
|
76
|
+
get?: Function;
|
|
77
|
+
env?: string[] | string;
|
|
56
78
|
};
|
|
57
79
|
packaging: {
|
|
80
|
+
writeable: boolean;
|
|
58
81
|
type: string;
|
|
82
|
+
isKey: boolean;
|
|
83
|
+
writable: boolean;
|
|
84
|
+
mandatory: boolean;
|
|
59
85
|
collection: boolean;
|
|
60
|
-
|
|
86
|
+
private?: boolean;
|
|
87
|
+
depends?: string;
|
|
88
|
+
additionalAttributes: string[];
|
|
89
|
+
description?: string;
|
|
90
|
+
default?: any;
|
|
91
|
+
set?: Function;
|
|
92
|
+
get?: Function;
|
|
93
|
+
env?: string[] | string;
|
|
61
94
|
};
|
|
62
95
|
disabled: {
|
|
63
96
|
type: string;
|
|
@@ -66,9 +99,20 @@ export class ExtraSourceService extends Service {
|
|
|
66
99
|
default: boolean;
|
|
67
100
|
};
|
|
68
101
|
tags: {
|
|
69
|
-
type: string;
|
|
70
102
|
collection: boolean;
|
|
71
103
|
writeable: boolean;
|
|
104
|
+
type: string;
|
|
105
|
+
isKey: boolean;
|
|
106
|
+
writable: boolean;
|
|
107
|
+
mandatory: boolean;
|
|
108
|
+
private?: boolean;
|
|
109
|
+
depends?: string;
|
|
110
|
+
additionalAttributes: string[];
|
|
111
|
+
description?: string;
|
|
112
|
+
default?: any;
|
|
113
|
+
set?: Function;
|
|
114
|
+
get?: Function;
|
|
115
|
+
env?: string[] | string;
|
|
72
116
|
};
|
|
73
117
|
};
|
|
74
118
|
};
|
package/types/host.d.mts
CHANGED
|
@@ -24,9 +24,20 @@ export class Host extends ServiceOwner {
|
|
|
24
24
|
writeable: boolean;
|
|
25
25
|
};
|
|
26
26
|
description: {
|
|
27
|
+
writeable: boolean;
|
|
27
28
|
type: string;
|
|
29
|
+
isKey: boolean;
|
|
30
|
+
writable: boolean;
|
|
31
|
+
mandatory: boolean;
|
|
28
32
|
collection: boolean;
|
|
29
|
-
|
|
33
|
+
private?: boolean;
|
|
34
|
+
depends?: string;
|
|
35
|
+
additionalAttributes: string[];
|
|
36
|
+
description?: string;
|
|
37
|
+
default?: any;
|
|
38
|
+
set?: Function;
|
|
39
|
+
get?: Function;
|
|
40
|
+
env?: string[] | string;
|
|
30
41
|
};
|
|
31
42
|
priority: {
|
|
32
43
|
type: string;
|
|
@@ -34,14 +45,36 @@ export class Host extends ServiceOwner {
|
|
|
34
45
|
writeable: boolean;
|
|
35
46
|
};
|
|
36
47
|
directory: {
|
|
48
|
+
writeable: boolean;
|
|
37
49
|
type: string;
|
|
50
|
+
isKey: boolean;
|
|
51
|
+
writable: boolean;
|
|
52
|
+
mandatory: boolean;
|
|
38
53
|
collection: boolean;
|
|
39
|
-
|
|
54
|
+
private?: boolean;
|
|
55
|
+
depends?: string;
|
|
56
|
+
additionalAttributes: string[];
|
|
57
|
+
description?: string;
|
|
58
|
+
default?: any;
|
|
59
|
+
set?: Function;
|
|
60
|
+
get?: Function;
|
|
61
|
+
env?: string[] | string;
|
|
40
62
|
};
|
|
41
63
|
packaging: {
|
|
64
|
+
writeable: boolean;
|
|
42
65
|
type: string;
|
|
66
|
+
isKey: boolean;
|
|
67
|
+
writable: boolean;
|
|
68
|
+
mandatory: boolean;
|
|
43
69
|
collection: boolean;
|
|
44
|
-
|
|
70
|
+
private?: boolean;
|
|
71
|
+
depends?: string;
|
|
72
|
+
additionalAttributes: string[];
|
|
73
|
+
description?: string;
|
|
74
|
+
default?: any;
|
|
75
|
+
set?: Function;
|
|
76
|
+
get?: Function;
|
|
77
|
+
env?: string[] | string;
|
|
45
78
|
};
|
|
46
79
|
disabled: {
|
|
47
80
|
type: string;
|
|
@@ -50,9 +83,20 @@ export class Host extends ServiceOwner {
|
|
|
50
83
|
default: boolean;
|
|
51
84
|
};
|
|
52
85
|
tags: {
|
|
53
|
-
type: string;
|
|
54
86
|
collection: boolean;
|
|
55
87
|
writeable: boolean;
|
|
88
|
+
type: string;
|
|
89
|
+
isKey: boolean;
|
|
90
|
+
writable: boolean;
|
|
91
|
+
mandatory: boolean;
|
|
92
|
+
private?: boolean;
|
|
93
|
+
depends?: string;
|
|
94
|
+
additionalAttributes: string[];
|
|
95
|
+
description?: string;
|
|
96
|
+
default?: any;
|
|
97
|
+
set?: Function;
|
|
98
|
+
get?: Function;
|
|
99
|
+
env?: string[] | string;
|
|
56
100
|
};
|
|
57
101
|
};
|
|
58
102
|
};
|
|
@@ -73,26 +117,70 @@ export class Host extends ServiceOwner {
|
|
|
73
117
|
writeable: boolean;
|
|
74
118
|
};
|
|
75
119
|
os: {
|
|
76
|
-
type: string;
|
|
77
|
-
collection: boolean;
|
|
78
120
|
writeable: boolean;
|
|
79
121
|
values: string[];
|
|
122
|
+
type: string;
|
|
123
|
+
isKey: boolean;
|
|
124
|
+
writable: boolean;
|
|
125
|
+
mandatory: boolean;
|
|
126
|
+
collection: boolean;
|
|
127
|
+
private?: boolean;
|
|
128
|
+
depends?: string;
|
|
129
|
+
additionalAttributes: string[];
|
|
130
|
+
description?: string;
|
|
131
|
+
default?: any;
|
|
132
|
+
set?: Function;
|
|
133
|
+
get?: Function;
|
|
134
|
+
env?: string[] | string;
|
|
80
135
|
};
|
|
81
136
|
"machine-id": {
|
|
137
|
+
writeable: boolean;
|
|
82
138
|
type: string;
|
|
139
|
+
isKey: boolean;
|
|
140
|
+
writable: boolean;
|
|
141
|
+
mandatory: boolean;
|
|
83
142
|
collection: boolean;
|
|
84
|
-
|
|
143
|
+
private?: boolean;
|
|
144
|
+
depends?: string;
|
|
145
|
+
additionalAttributes: string[];
|
|
146
|
+
description?: string;
|
|
147
|
+
default?: any;
|
|
148
|
+
set?: Function;
|
|
149
|
+
get?: Function;
|
|
150
|
+
env?: string[] | string;
|
|
85
151
|
};
|
|
86
152
|
distribution: {
|
|
153
|
+
writeable: boolean;
|
|
87
154
|
type: string;
|
|
155
|
+
isKey: boolean;
|
|
156
|
+
writable: boolean;
|
|
157
|
+
mandatory: boolean;
|
|
88
158
|
collection: boolean;
|
|
89
|
-
|
|
159
|
+
private?: boolean;
|
|
160
|
+
depends?: string;
|
|
161
|
+
additionalAttributes: string[];
|
|
162
|
+
description?: string;
|
|
163
|
+
default?: any;
|
|
164
|
+
set?: Function;
|
|
165
|
+
get?: Function;
|
|
166
|
+
env?: string[] | string;
|
|
90
167
|
};
|
|
91
168
|
deployment: {
|
|
92
|
-
type: string;
|
|
93
|
-
collection: boolean;
|
|
94
169
|
writeable: boolean;
|
|
95
170
|
values: string[];
|
|
171
|
+
type: string;
|
|
172
|
+
isKey: boolean;
|
|
173
|
+
writable: boolean;
|
|
174
|
+
mandatory: boolean;
|
|
175
|
+
collection: boolean;
|
|
176
|
+
private?: boolean;
|
|
177
|
+
depends?: string;
|
|
178
|
+
additionalAttributes: string[];
|
|
179
|
+
description?: string;
|
|
180
|
+
default?: any;
|
|
181
|
+
set?: Function;
|
|
182
|
+
get?: Function;
|
|
183
|
+
env?: string[] | string;
|
|
96
184
|
};
|
|
97
185
|
weight: {
|
|
98
186
|
type: string;
|
|
@@ -100,31 +188,86 @@ export class Host extends ServiceOwner {
|
|
|
100
188
|
writeable: boolean;
|
|
101
189
|
};
|
|
102
190
|
serial: {
|
|
191
|
+
writeable: boolean;
|
|
103
192
|
type: string;
|
|
193
|
+
isKey: boolean;
|
|
194
|
+
writable: boolean;
|
|
195
|
+
mandatory: boolean;
|
|
104
196
|
collection: boolean;
|
|
105
|
-
|
|
197
|
+
private?: boolean;
|
|
198
|
+
depends?: string;
|
|
199
|
+
additionalAttributes: string[];
|
|
200
|
+
description?: string;
|
|
201
|
+
default?: any;
|
|
202
|
+
set?: Function;
|
|
203
|
+
get?: Function;
|
|
204
|
+
env?: string[] | string;
|
|
106
205
|
};
|
|
107
206
|
vendor: {
|
|
207
|
+
writeable: boolean;
|
|
108
208
|
type: string;
|
|
209
|
+
isKey: boolean;
|
|
210
|
+
writable: boolean;
|
|
211
|
+
mandatory: boolean;
|
|
109
212
|
collection: boolean;
|
|
110
|
-
|
|
213
|
+
private?: boolean;
|
|
214
|
+
depends?: string;
|
|
215
|
+
additionalAttributes: string[];
|
|
216
|
+
description?: string;
|
|
217
|
+
default?: any;
|
|
218
|
+
set?: Function;
|
|
219
|
+
get?: Function;
|
|
220
|
+
env?: string[] | string;
|
|
111
221
|
};
|
|
112
222
|
keymap: {
|
|
223
|
+
writeable: boolean;
|
|
113
224
|
type: string;
|
|
225
|
+
isKey: boolean;
|
|
226
|
+
writable: boolean;
|
|
227
|
+
mandatory: boolean;
|
|
114
228
|
collection: boolean;
|
|
115
|
-
|
|
229
|
+
private?: boolean;
|
|
230
|
+
depends?: string;
|
|
231
|
+
additionalAttributes: string[];
|
|
232
|
+
description?: string;
|
|
233
|
+
default?: any;
|
|
234
|
+
set?: Function;
|
|
235
|
+
get?: Function;
|
|
236
|
+
env?: string[] | string;
|
|
116
237
|
};
|
|
117
238
|
chassis: {
|
|
118
|
-
type: string;
|
|
119
|
-
collection: boolean;
|
|
120
239
|
writeable: boolean;
|
|
121
240
|
values: string[];
|
|
122
|
-
};
|
|
123
|
-
architecture: {
|
|
124
241
|
type: string;
|
|
242
|
+
isKey: boolean;
|
|
243
|
+
writable: boolean;
|
|
244
|
+
mandatory: boolean;
|
|
125
245
|
collection: boolean;
|
|
246
|
+
private?: boolean;
|
|
247
|
+
depends?: string;
|
|
248
|
+
additionalAttributes: string[];
|
|
249
|
+
description?: string;
|
|
250
|
+
default?: any;
|
|
251
|
+
set?: Function;
|
|
252
|
+
get?: Function;
|
|
253
|
+
env?: string[] | string;
|
|
254
|
+
};
|
|
255
|
+
architecture: {
|
|
126
256
|
writeable: boolean;
|
|
127
257
|
values: string[];
|
|
258
|
+
type: string;
|
|
259
|
+
isKey: boolean;
|
|
260
|
+
writable: boolean;
|
|
261
|
+
mandatory: boolean;
|
|
262
|
+
collection: boolean;
|
|
263
|
+
private?: boolean;
|
|
264
|
+
depends?: string;
|
|
265
|
+
additionalAttributes: string[];
|
|
266
|
+
description?: string;
|
|
267
|
+
default?: any;
|
|
268
|
+
set?: Function;
|
|
269
|
+
get?: Function;
|
|
270
|
+
env?: string[] | string;
|
|
128
271
|
};
|
|
129
272
|
replaces: {
|
|
130
273
|
type: string;
|
package/types/location.d.mts
CHANGED
|
@@ -26,9 +26,20 @@ export class Location extends Owner {
|
|
|
26
26
|
writeable: boolean;
|
|
27
27
|
};
|
|
28
28
|
description: {
|
|
29
|
+
writeable: boolean;
|
|
29
30
|
type: string;
|
|
31
|
+
isKey: boolean;
|
|
32
|
+
writable: boolean;
|
|
33
|
+
mandatory: boolean;
|
|
30
34
|
collection: boolean;
|
|
31
|
-
|
|
35
|
+
private?: boolean;
|
|
36
|
+
depends?: string;
|
|
37
|
+
additionalAttributes: string[];
|
|
38
|
+
description?: string;
|
|
39
|
+
default?: any;
|
|
40
|
+
set?: Function;
|
|
41
|
+
get?: Function;
|
|
42
|
+
env?: string[] | string;
|
|
32
43
|
};
|
|
33
44
|
priority: {
|
|
34
45
|
type: string;
|
|
@@ -36,14 +47,36 @@ export class Location extends Owner {
|
|
|
36
47
|
writeable: boolean;
|
|
37
48
|
};
|
|
38
49
|
directory: {
|
|
50
|
+
writeable: boolean;
|
|
39
51
|
type: string;
|
|
52
|
+
isKey: boolean;
|
|
53
|
+
writable: boolean;
|
|
54
|
+
mandatory: boolean;
|
|
40
55
|
collection: boolean;
|
|
41
|
-
|
|
56
|
+
private?: boolean;
|
|
57
|
+
depends?: string;
|
|
58
|
+
additionalAttributes: string[];
|
|
59
|
+
description?: string;
|
|
60
|
+
default?: any;
|
|
61
|
+
set?: Function;
|
|
62
|
+
get?: Function;
|
|
63
|
+
env?: string[] | string;
|
|
42
64
|
};
|
|
43
65
|
packaging: {
|
|
66
|
+
writeable: boolean;
|
|
44
67
|
type: string;
|
|
68
|
+
isKey: boolean;
|
|
69
|
+
writable: boolean;
|
|
70
|
+
mandatory: boolean;
|
|
45
71
|
collection: boolean;
|
|
46
|
-
|
|
72
|
+
private?: boolean;
|
|
73
|
+
depends?: string;
|
|
74
|
+
additionalAttributes: string[];
|
|
75
|
+
description?: string;
|
|
76
|
+
default?: any;
|
|
77
|
+
set?: Function;
|
|
78
|
+
get?: Function;
|
|
79
|
+
env?: string[] | string;
|
|
47
80
|
};
|
|
48
81
|
disabled: {
|
|
49
82
|
type: string;
|
|
@@ -52,9 +85,20 @@ export class Location extends Owner {
|
|
|
52
85
|
default: boolean;
|
|
53
86
|
};
|
|
54
87
|
tags: {
|
|
55
|
-
type: string;
|
|
56
88
|
collection: boolean;
|
|
57
89
|
writeable: boolean;
|
|
90
|
+
type: string;
|
|
91
|
+
isKey: boolean;
|
|
92
|
+
writable: boolean;
|
|
93
|
+
mandatory: boolean;
|
|
94
|
+
private?: boolean;
|
|
95
|
+
depends?: string;
|
|
96
|
+
additionalAttributes: string[];
|
|
97
|
+
description?: string;
|
|
98
|
+
default?: any;
|
|
99
|
+
set?: Function;
|
|
100
|
+
get?: Function;
|
|
101
|
+
env?: string[] | string;
|
|
58
102
|
};
|
|
59
103
|
};
|
|
60
104
|
};
|
|
@@ -82,10 +126,20 @@ export class Location extends Owner {
|
|
|
82
126
|
constructWithIdentifierOnly: boolean;
|
|
83
127
|
properties: {
|
|
84
128
|
address: {
|
|
129
|
+
identifier: boolean;
|
|
85
130
|
type: string;
|
|
131
|
+
isKey: boolean;
|
|
132
|
+
writable: boolean;
|
|
133
|
+
mandatory: boolean;
|
|
86
134
|
collection: boolean;
|
|
87
|
-
|
|
88
|
-
|
|
135
|
+
private?: boolean;
|
|
136
|
+
depends?: string;
|
|
137
|
+
additionalAttributes: string[];
|
|
138
|
+
description?: string;
|
|
139
|
+
default?: any;
|
|
140
|
+
set?: Function;
|
|
141
|
+
get?: Function;
|
|
142
|
+
env?: string[] | string;
|
|
89
143
|
};
|
|
90
144
|
networks: {
|
|
91
145
|
type: string;
|
|
@@ -103,14 +157,36 @@ export class Location extends Owner {
|
|
|
103
157
|
writeable: boolean;
|
|
104
158
|
};
|
|
105
159
|
country: {
|
|
160
|
+
writeable: boolean;
|
|
106
161
|
type: string;
|
|
162
|
+
isKey: boolean;
|
|
163
|
+
writable: boolean;
|
|
164
|
+
mandatory: boolean;
|
|
107
165
|
collection: boolean;
|
|
108
|
-
|
|
166
|
+
private?: boolean;
|
|
167
|
+
depends?: string;
|
|
168
|
+
additionalAttributes: string[];
|
|
169
|
+
description?: string;
|
|
170
|
+
default?: any;
|
|
171
|
+
set?: Function;
|
|
172
|
+
get?: Function;
|
|
173
|
+
env?: string[] | string;
|
|
109
174
|
};
|
|
110
175
|
domain: {
|
|
176
|
+
writeable: boolean;
|
|
111
177
|
type: string;
|
|
178
|
+
isKey: boolean;
|
|
179
|
+
writable: boolean;
|
|
180
|
+
mandatory: boolean;
|
|
112
181
|
collection: boolean;
|
|
113
|
-
|
|
182
|
+
private?: boolean;
|
|
183
|
+
depends?: string;
|
|
184
|
+
additionalAttributes: string[];
|
|
185
|
+
description?: string;
|
|
186
|
+
default?: any;
|
|
187
|
+
set?: Function;
|
|
188
|
+
get?: Function;
|
|
189
|
+
env?: string[] | string;
|
|
114
190
|
};
|
|
115
191
|
domains: {
|
|
116
192
|
type: string;
|
|
@@ -133,9 +209,20 @@ export class Location extends Owner {
|
|
|
133
209
|
writeable: boolean;
|
|
134
210
|
};
|
|
135
211
|
administratorEmail: {
|
|
212
|
+
writeable: boolean;
|
|
136
213
|
type: string;
|
|
214
|
+
isKey: boolean;
|
|
215
|
+
writable: boolean;
|
|
216
|
+
mandatory: boolean;
|
|
137
217
|
collection: boolean;
|
|
138
|
-
|
|
218
|
+
private?: boolean;
|
|
219
|
+
depends?: string;
|
|
220
|
+
additionalAttributes: string[];
|
|
221
|
+
description?: string;
|
|
222
|
+
default?: any;
|
|
223
|
+
set?: Function;
|
|
224
|
+
get?: Function;
|
|
225
|
+
env?: string[] | string;
|
|
139
226
|
};
|
|
140
227
|
};
|
|
141
228
|
})[];
|
|
@@ -165,9 +252,20 @@ export class Location extends Owner {
|
|
|
165
252
|
writeable: boolean;
|
|
166
253
|
};
|
|
167
254
|
description: {
|
|
255
|
+
writeable: boolean;
|
|
168
256
|
type: string;
|
|
257
|
+
isKey: boolean;
|
|
258
|
+
writable: boolean;
|
|
259
|
+
mandatory: boolean;
|
|
169
260
|
collection: boolean;
|
|
170
|
-
|
|
261
|
+
private?: boolean;
|
|
262
|
+
depends?: string;
|
|
263
|
+
additionalAttributes: string[];
|
|
264
|
+
description?: string;
|
|
265
|
+
default?: any;
|
|
266
|
+
set?: Function;
|
|
267
|
+
get?: Function;
|
|
268
|
+
env?: string[] | string;
|
|
171
269
|
};
|
|
172
270
|
priority: {
|
|
173
271
|
type: string;
|
|
@@ -175,14 +273,36 @@ export class Location extends Owner {
|
|
|
175
273
|
writeable: boolean;
|
|
176
274
|
};
|
|
177
275
|
directory: {
|
|
276
|
+
writeable: boolean;
|
|
178
277
|
type: string;
|
|
278
|
+
isKey: boolean;
|
|
279
|
+
writable: boolean;
|
|
280
|
+
mandatory: boolean;
|
|
179
281
|
collection: boolean;
|
|
180
|
-
|
|
282
|
+
private?: boolean;
|
|
283
|
+
depends?: string;
|
|
284
|
+
additionalAttributes: string[];
|
|
285
|
+
description?: string;
|
|
286
|
+
default?: any;
|
|
287
|
+
set?: Function;
|
|
288
|
+
get?: Function;
|
|
289
|
+
env?: string[] | string;
|
|
181
290
|
};
|
|
182
291
|
packaging: {
|
|
292
|
+
writeable: boolean;
|
|
183
293
|
type: string;
|
|
294
|
+
isKey: boolean;
|
|
295
|
+
writable: boolean;
|
|
296
|
+
mandatory: boolean;
|
|
184
297
|
collection: boolean;
|
|
185
|
-
|
|
298
|
+
private?: boolean;
|
|
299
|
+
depends?: string;
|
|
300
|
+
additionalAttributes: string[];
|
|
301
|
+
description?: string;
|
|
302
|
+
default?: any;
|
|
303
|
+
set?: Function;
|
|
304
|
+
get?: Function;
|
|
305
|
+
env?: string[] | string;
|
|
186
306
|
};
|
|
187
307
|
disabled: {
|
|
188
308
|
type: string;
|
|
@@ -191,9 +311,20 @@ export class Location extends Owner {
|
|
|
191
311
|
default: boolean;
|
|
192
312
|
};
|
|
193
313
|
tags: {
|
|
194
|
-
type: string;
|
|
195
314
|
collection: boolean;
|
|
196
315
|
writeable: boolean;
|
|
316
|
+
type: string;
|
|
317
|
+
isKey: boolean;
|
|
318
|
+
writable: boolean;
|
|
319
|
+
mandatory: boolean;
|
|
320
|
+
private?: boolean;
|
|
321
|
+
depends?: string;
|
|
322
|
+
additionalAttributes: string[];
|
|
323
|
+
description?: string;
|
|
324
|
+
default?: any;
|
|
325
|
+
set?: Function;
|
|
326
|
+
get?: Function;
|
|
327
|
+
env?: string[] | string;
|
|
197
328
|
};
|
|
198
329
|
};
|
|
199
330
|
};
|
|
@@ -221,10 +352,20 @@ export class Location extends Owner {
|
|
|
221
352
|
constructWithIdentifierOnly: boolean;
|
|
222
353
|
properties: {
|
|
223
354
|
address: {
|
|
355
|
+
identifier: boolean;
|
|
224
356
|
type: string;
|
|
357
|
+
isKey: boolean;
|
|
358
|
+
writable: boolean;
|
|
359
|
+
mandatory: boolean;
|
|
225
360
|
collection: boolean;
|
|
226
|
-
|
|
227
|
-
|
|
361
|
+
private?: boolean;
|
|
362
|
+
depends?: string;
|
|
363
|
+
additionalAttributes: string[];
|
|
364
|
+
description?: string;
|
|
365
|
+
default?: any;
|
|
366
|
+
set?: Function;
|
|
367
|
+
get?: Function;
|
|
368
|
+
env?: string[] | string;
|
|
228
369
|
};
|
|
229
370
|
networks: {
|
|
230
371
|
type: string;
|
|
@@ -242,14 +383,36 @@ export class Location extends Owner {
|
|
|
242
383
|
writeable: boolean;
|
|
243
384
|
};
|
|
244
385
|
country: {
|
|
386
|
+
writeable: boolean;
|
|
245
387
|
type: string;
|
|
388
|
+
isKey: boolean;
|
|
389
|
+
writable: boolean;
|
|
390
|
+
mandatory: boolean;
|
|
246
391
|
collection: boolean;
|
|
247
|
-
|
|
392
|
+
private?: boolean;
|
|
393
|
+
depends?: string;
|
|
394
|
+
additionalAttributes: string[];
|
|
395
|
+
description?: string;
|
|
396
|
+
default?: any;
|
|
397
|
+
set?: Function;
|
|
398
|
+
get?: Function;
|
|
399
|
+
env?: string[] | string;
|
|
248
400
|
};
|
|
249
401
|
domain: {
|
|
402
|
+
writeable: boolean;
|
|
250
403
|
type: string;
|
|
404
|
+
isKey: boolean;
|
|
405
|
+
writable: boolean;
|
|
406
|
+
mandatory: boolean;
|
|
251
407
|
collection: boolean;
|
|
252
|
-
|
|
408
|
+
private?: boolean;
|
|
409
|
+
depends?: string;
|
|
410
|
+
additionalAttributes: string[];
|
|
411
|
+
description?: string;
|
|
412
|
+
default?: any;
|
|
413
|
+
set?: Function;
|
|
414
|
+
get?: Function;
|
|
415
|
+
env?: string[] | string;
|
|
253
416
|
};
|
|
254
417
|
domains: {
|
|
255
418
|
type: string;
|
|
@@ -272,9 +435,20 @@ export class Location extends Owner {
|
|
|
272
435
|
writeable: boolean;
|
|
273
436
|
};
|
|
274
437
|
administratorEmail: {
|
|
438
|
+
writeable: boolean;
|
|
275
439
|
type: string;
|
|
440
|
+
isKey: boolean;
|
|
441
|
+
writable: boolean;
|
|
442
|
+
mandatory: boolean;
|
|
276
443
|
collection: boolean;
|
|
277
|
-
|
|
444
|
+
private?: boolean;
|
|
445
|
+
depends?: string;
|
|
446
|
+
additionalAttributes: string[];
|
|
447
|
+
description?: string;
|
|
448
|
+
default?: any;
|
|
449
|
+
set?: Function;
|
|
450
|
+
get?: Function;
|
|
451
|
+
env?: string[] | string;
|
|
278
452
|
};
|
|
279
453
|
};
|
|
280
454
|
};
|