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