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