pmcf 1.98.2 → 1.99.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 +3 -1
- package/src/host-utils.mjs +6 -1
- package/src/location.mjs +2 -2
- package/src/module.mjs +3 -3
- package/src/owner.mjs +0 -22
- package/src/service.mjs +28 -3
- package/src/{dhcp.mjs → services/dhcp.mjs} +15 -12
- package/src/{dns.mjs → services/dns.mjs} +24 -20
- package/src/{ntp.mjs → services/ntp.mjs} +11 -9
- package/types/cluster.d.mts +0 -112
- package/types/location.d.mts +0 -224
- package/types/module.d.mts +3 -3
- package/types/network.d.mts +0 -112
- package/types/owner.d.mts +0 -112
- package/types/root.d.mts +0 -224
- package/types/service.d.mts +135 -0
- package/types/{dhcp.d.mts → services/dhcp.d.mts} +4 -2
- package/types/{dns.d.mts → services/dns.d.mts} +3 -2
- package/types/{ntp.d.mts → services/ntp.d.mts} +3 -2
package/types/location.d.mts
CHANGED
|
@@ -91,118 +91,6 @@ export class Location extends Owner {
|
|
|
91
91
|
collection: boolean;
|
|
92
92
|
writeable: boolean;
|
|
93
93
|
};
|
|
94
|
-
dns: {
|
|
95
|
-
type: {
|
|
96
|
-
name: string;
|
|
97
|
-
owners: string[];
|
|
98
|
-
priority: number;
|
|
99
|
-
properties: {
|
|
100
|
-
source: {
|
|
101
|
-
type: string;
|
|
102
|
-
collection: boolean;
|
|
103
|
-
writeable: boolean;
|
|
104
|
-
};
|
|
105
|
-
trusted: {
|
|
106
|
-
type: string;
|
|
107
|
-
collection: boolean;
|
|
108
|
-
writeable: boolean;
|
|
109
|
-
};
|
|
110
|
-
protected: {
|
|
111
|
-
type: string;
|
|
112
|
-
collection: boolean;
|
|
113
|
-
writeable: boolean;
|
|
114
|
-
};
|
|
115
|
-
open: {
|
|
116
|
-
type: string;
|
|
117
|
-
collection: boolean;
|
|
118
|
-
writeable: boolean;
|
|
119
|
-
};
|
|
120
|
-
hasSVRRecords: {
|
|
121
|
-
type: string;
|
|
122
|
-
collection: boolean;
|
|
123
|
-
writeable: boolean;
|
|
124
|
-
};
|
|
125
|
-
hasCatalog: {
|
|
126
|
-
type: string;
|
|
127
|
-
collection: boolean;
|
|
128
|
-
writeable: boolean;
|
|
129
|
-
};
|
|
130
|
-
hasLinkLocalAdresses: {
|
|
131
|
-
type: string;
|
|
132
|
-
collection: boolean;
|
|
133
|
-
writeable: boolean;
|
|
134
|
-
};
|
|
135
|
-
notify: {
|
|
136
|
-
type: string;
|
|
137
|
-
collection: boolean;
|
|
138
|
-
writeable: boolean;
|
|
139
|
-
};
|
|
140
|
-
recordTTL: {
|
|
141
|
-
type: string;
|
|
142
|
-
collection: boolean;
|
|
143
|
-
writeable: boolean;
|
|
144
|
-
};
|
|
145
|
-
serial: {
|
|
146
|
-
type: string;
|
|
147
|
-
collection: boolean;
|
|
148
|
-
writeable: boolean;
|
|
149
|
-
};
|
|
150
|
-
refresh: {
|
|
151
|
-
type: string;
|
|
152
|
-
collection: boolean;
|
|
153
|
-
writeable: boolean;
|
|
154
|
-
};
|
|
155
|
-
retry: {
|
|
156
|
-
type: string;
|
|
157
|
-
collection: boolean;
|
|
158
|
-
writeable: boolean;
|
|
159
|
-
};
|
|
160
|
-
expire: {
|
|
161
|
-
type: string;
|
|
162
|
-
collection: boolean;
|
|
163
|
-
writeable: boolean;
|
|
164
|
-
};
|
|
165
|
-
minimum: {
|
|
166
|
-
type: string;
|
|
167
|
-
collection: boolean;
|
|
168
|
-
writeable: boolean;
|
|
169
|
-
};
|
|
170
|
-
allowedUpdates: {
|
|
171
|
-
type: string;
|
|
172
|
-
collection: boolean;
|
|
173
|
-
writeable: boolean;
|
|
174
|
-
};
|
|
175
|
-
};
|
|
176
|
-
};
|
|
177
|
-
collection: boolean;
|
|
178
|
-
writeable: boolean;
|
|
179
|
-
};
|
|
180
|
-
ntp: {
|
|
181
|
-
type: {
|
|
182
|
-
name: string;
|
|
183
|
-
owners: string[];
|
|
184
|
-
priority: number;
|
|
185
|
-
properties: {
|
|
186
|
-
source: {
|
|
187
|
-
type: string;
|
|
188
|
-
collection: boolean;
|
|
189
|
-
writeable: boolean;
|
|
190
|
-
};
|
|
191
|
-
};
|
|
192
|
-
};
|
|
193
|
-
collection: boolean;
|
|
194
|
-
writeable: boolean;
|
|
195
|
-
};
|
|
196
|
-
dhcp: {
|
|
197
|
-
type: {
|
|
198
|
-
name: string;
|
|
199
|
-
owners: string[];
|
|
200
|
-
priority: number;
|
|
201
|
-
properties: {};
|
|
202
|
-
};
|
|
203
|
-
collection: boolean;
|
|
204
|
-
writeable: boolean;
|
|
205
|
-
};
|
|
206
94
|
country: {
|
|
207
95
|
type: string;
|
|
208
96
|
collection: boolean;
|
|
@@ -331,118 +219,6 @@ export class Location extends Owner {
|
|
|
331
219
|
collection: boolean;
|
|
332
220
|
writeable: boolean;
|
|
333
221
|
};
|
|
334
|
-
dns: {
|
|
335
|
-
type: {
|
|
336
|
-
name: string;
|
|
337
|
-
owners: string[];
|
|
338
|
-
priority: number;
|
|
339
|
-
properties: {
|
|
340
|
-
source: {
|
|
341
|
-
type: string;
|
|
342
|
-
collection: boolean;
|
|
343
|
-
writeable: boolean;
|
|
344
|
-
};
|
|
345
|
-
trusted: {
|
|
346
|
-
type: string;
|
|
347
|
-
collection: boolean;
|
|
348
|
-
writeable: boolean;
|
|
349
|
-
};
|
|
350
|
-
protected: {
|
|
351
|
-
type: string;
|
|
352
|
-
collection: boolean;
|
|
353
|
-
writeable: boolean;
|
|
354
|
-
};
|
|
355
|
-
open: {
|
|
356
|
-
type: string;
|
|
357
|
-
collection: boolean;
|
|
358
|
-
writeable: boolean;
|
|
359
|
-
};
|
|
360
|
-
hasSVRRecords: {
|
|
361
|
-
type: string;
|
|
362
|
-
collection: boolean;
|
|
363
|
-
writeable: boolean;
|
|
364
|
-
};
|
|
365
|
-
hasCatalog: {
|
|
366
|
-
type: string;
|
|
367
|
-
collection: boolean;
|
|
368
|
-
writeable: boolean;
|
|
369
|
-
};
|
|
370
|
-
hasLinkLocalAdresses: {
|
|
371
|
-
type: string;
|
|
372
|
-
collection: boolean;
|
|
373
|
-
writeable: boolean;
|
|
374
|
-
};
|
|
375
|
-
notify: {
|
|
376
|
-
type: string;
|
|
377
|
-
collection: boolean;
|
|
378
|
-
writeable: boolean;
|
|
379
|
-
};
|
|
380
|
-
recordTTL: {
|
|
381
|
-
type: string;
|
|
382
|
-
collection: boolean;
|
|
383
|
-
writeable: boolean;
|
|
384
|
-
};
|
|
385
|
-
serial: {
|
|
386
|
-
type: string;
|
|
387
|
-
collection: boolean;
|
|
388
|
-
writeable: boolean;
|
|
389
|
-
};
|
|
390
|
-
refresh: {
|
|
391
|
-
type: string;
|
|
392
|
-
collection: boolean;
|
|
393
|
-
writeable: boolean;
|
|
394
|
-
};
|
|
395
|
-
retry: {
|
|
396
|
-
type: string;
|
|
397
|
-
collection: boolean;
|
|
398
|
-
writeable: boolean;
|
|
399
|
-
};
|
|
400
|
-
expire: {
|
|
401
|
-
type: string;
|
|
402
|
-
collection: boolean;
|
|
403
|
-
writeable: boolean;
|
|
404
|
-
};
|
|
405
|
-
minimum: {
|
|
406
|
-
type: string;
|
|
407
|
-
collection: boolean;
|
|
408
|
-
writeable: boolean;
|
|
409
|
-
};
|
|
410
|
-
allowedUpdates: {
|
|
411
|
-
type: string;
|
|
412
|
-
collection: boolean;
|
|
413
|
-
writeable: boolean;
|
|
414
|
-
};
|
|
415
|
-
};
|
|
416
|
-
};
|
|
417
|
-
collection: boolean;
|
|
418
|
-
writeable: boolean;
|
|
419
|
-
};
|
|
420
|
-
ntp: {
|
|
421
|
-
type: {
|
|
422
|
-
name: string;
|
|
423
|
-
owners: string[];
|
|
424
|
-
priority: number;
|
|
425
|
-
properties: {
|
|
426
|
-
source: {
|
|
427
|
-
type: string;
|
|
428
|
-
collection: boolean;
|
|
429
|
-
writeable: boolean;
|
|
430
|
-
};
|
|
431
|
-
};
|
|
432
|
-
};
|
|
433
|
-
collection: boolean;
|
|
434
|
-
writeable: boolean;
|
|
435
|
-
};
|
|
436
|
-
dhcp: {
|
|
437
|
-
type: {
|
|
438
|
-
name: string;
|
|
439
|
-
owners: string[];
|
|
440
|
-
priority: number;
|
|
441
|
-
properties: {};
|
|
442
|
-
};
|
|
443
|
-
collection: boolean;
|
|
444
|
-
writeable: boolean;
|
|
445
|
-
};
|
|
446
222
|
country: {
|
|
447
223
|
type: string;
|
|
448
224
|
collection: boolean;
|
package/types/module.d.mts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export * from "./base.mjs";
|
|
2
2
|
export * from "./service.mjs";
|
|
3
|
-
export * from "./dns.mjs";
|
|
4
|
-
export * from "./ntp.mjs";
|
|
5
|
-
export * from "./dhcp.mjs";
|
|
3
|
+
export * from "./services/dns.mjs";
|
|
4
|
+
export * from "./services/ntp.mjs";
|
|
5
|
+
export * from "./services/dhcp.mjs";
|
|
6
6
|
export * from "./cluster.mjs";
|
|
7
7
|
export * from "./owner.mjs";
|
|
8
8
|
export * from "./location.mjs";
|
package/types/network.d.mts
CHANGED
|
@@ -93,118 +93,6 @@ export class Network extends Owner {
|
|
|
93
93
|
collection: boolean;
|
|
94
94
|
writeable: boolean;
|
|
95
95
|
};
|
|
96
|
-
dns: {
|
|
97
|
-
type: {
|
|
98
|
-
name: string;
|
|
99
|
-
owners: string[];
|
|
100
|
-
priority: number;
|
|
101
|
-
properties: {
|
|
102
|
-
source: {
|
|
103
|
-
type: string;
|
|
104
|
-
collection: boolean;
|
|
105
|
-
writeable: boolean;
|
|
106
|
-
};
|
|
107
|
-
trusted: {
|
|
108
|
-
type: string;
|
|
109
|
-
collection: boolean;
|
|
110
|
-
writeable: boolean;
|
|
111
|
-
};
|
|
112
|
-
protected: {
|
|
113
|
-
type: string;
|
|
114
|
-
collection: boolean;
|
|
115
|
-
writeable: boolean;
|
|
116
|
-
};
|
|
117
|
-
open: {
|
|
118
|
-
type: string;
|
|
119
|
-
collection: boolean;
|
|
120
|
-
writeable: boolean;
|
|
121
|
-
};
|
|
122
|
-
hasSVRRecords: {
|
|
123
|
-
type: string;
|
|
124
|
-
collection: boolean;
|
|
125
|
-
writeable: boolean;
|
|
126
|
-
};
|
|
127
|
-
hasCatalog: {
|
|
128
|
-
type: string;
|
|
129
|
-
collection: boolean;
|
|
130
|
-
writeable: boolean;
|
|
131
|
-
};
|
|
132
|
-
hasLinkLocalAdresses: {
|
|
133
|
-
type: string;
|
|
134
|
-
collection: boolean;
|
|
135
|
-
writeable: boolean;
|
|
136
|
-
};
|
|
137
|
-
notify: {
|
|
138
|
-
type: string;
|
|
139
|
-
collection: boolean;
|
|
140
|
-
writeable: boolean;
|
|
141
|
-
};
|
|
142
|
-
recordTTL: {
|
|
143
|
-
type: string;
|
|
144
|
-
collection: boolean;
|
|
145
|
-
writeable: boolean;
|
|
146
|
-
};
|
|
147
|
-
serial: {
|
|
148
|
-
type: string;
|
|
149
|
-
collection: boolean;
|
|
150
|
-
writeable: boolean;
|
|
151
|
-
};
|
|
152
|
-
refresh: {
|
|
153
|
-
type: string;
|
|
154
|
-
collection: boolean;
|
|
155
|
-
writeable: boolean;
|
|
156
|
-
};
|
|
157
|
-
retry: {
|
|
158
|
-
type: string;
|
|
159
|
-
collection: boolean;
|
|
160
|
-
writeable: boolean;
|
|
161
|
-
};
|
|
162
|
-
expire: {
|
|
163
|
-
type: string;
|
|
164
|
-
collection: boolean;
|
|
165
|
-
writeable: boolean;
|
|
166
|
-
};
|
|
167
|
-
minimum: {
|
|
168
|
-
type: string;
|
|
169
|
-
collection: boolean;
|
|
170
|
-
writeable: boolean;
|
|
171
|
-
};
|
|
172
|
-
allowedUpdates: {
|
|
173
|
-
type: string;
|
|
174
|
-
collection: boolean;
|
|
175
|
-
writeable: boolean;
|
|
176
|
-
};
|
|
177
|
-
};
|
|
178
|
-
};
|
|
179
|
-
collection: boolean;
|
|
180
|
-
writeable: boolean;
|
|
181
|
-
};
|
|
182
|
-
ntp: {
|
|
183
|
-
type: {
|
|
184
|
-
name: string;
|
|
185
|
-
owners: string[];
|
|
186
|
-
priority: number;
|
|
187
|
-
properties: {
|
|
188
|
-
source: {
|
|
189
|
-
type: string;
|
|
190
|
-
collection: boolean;
|
|
191
|
-
writeable: boolean;
|
|
192
|
-
};
|
|
193
|
-
};
|
|
194
|
-
};
|
|
195
|
-
collection: boolean;
|
|
196
|
-
writeable: boolean;
|
|
197
|
-
};
|
|
198
|
-
dhcp: {
|
|
199
|
-
type: {
|
|
200
|
-
name: string;
|
|
201
|
-
owners: string[];
|
|
202
|
-
priority: number;
|
|
203
|
-
properties: {};
|
|
204
|
-
};
|
|
205
|
-
collection: boolean;
|
|
206
|
-
writeable: boolean;
|
|
207
|
-
};
|
|
208
96
|
country: {
|
|
209
97
|
type: string;
|
|
210
98
|
collection: boolean;
|
package/types/owner.d.mts
CHANGED
|
@@ -89,118 +89,6 @@ export class Owner extends Base {
|
|
|
89
89
|
collection: boolean;
|
|
90
90
|
writeable: boolean;
|
|
91
91
|
};
|
|
92
|
-
dns: {
|
|
93
|
-
type: {
|
|
94
|
-
name: string;
|
|
95
|
-
owners: string[];
|
|
96
|
-
priority: number;
|
|
97
|
-
properties: {
|
|
98
|
-
source: {
|
|
99
|
-
type: string;
|
|
100
|
-
collection: boolean;
|
|
101
|
-
writeable: boolean;
|
|
102
|
-
};
|
|
103
|
-
trusted: {
|
|
104
|
-
type: string;
|
|
105
|
-
collection: boolean;
|
|
106
|
-
writeable: boolean;
|
|
107
|
-
};
|
|
108
|
-
protected: {
|
|
109
|
-
type: string;
|
|
110
|
-
collection: boolean;
|
|
111
|
-
writeable: boolean;
|
|
112
|
-
};
|
|
113
|
-
open: {
|
|
114
|
-
type: string;
|
|
115
|
-
collection: boolean;
|
|
116
|
-
writeable: boolean;
|
|
117
|
-
};
|
|
118
|
-
hasSVRRecords: {
|
|
119
|
-
type: string;
|
|
120
|
-
collection: boolean;
|
|
121
|
-
writeable: boolean;
|
|
122
|
-
};
|
|
123
|
-
hasCatalog: {
|
|
124
|
-
type: string;
|
|
125
|
-
collection: boolean;
|
|
126
|
-
writeable: boolean;
|
|
127
|
-
};
|
|
128
|
-
hasLinkLocalAdresses: {
|
|
129
|
-
type: string;
|
|
130
|
-
collection: boolean;
|
|
131
|
-
writeable: boolean;
|
|
132
|
-
};
|
|
133
|
-
notify: {
|
|
134
|
-
type: string;
|
|
135
|
-
collection: boolean;
|
|
136
|
-
writeable: boolean;
|
|
137
|
-
};
|
|
138
|
-
recordTTL: {
|
|
139
|
-
type: string;
|
|
140
|
-
collection: boolean;
|
|
141
|
-
writeable: boolean;
|
|
142
|
-
};
|
|
143
|
-
serial: {
|
|
144
|
-
type: string;
|
|
145
|
-
collection: boolean;
|
|
146
|
-
writeable: boolean;
|
|
147
|
-
};
|
|
148
|
-
refresh: {
|
|
149
|
-
type: string;
|
|
150
|
-
collection: boolean;
|
|
151
|
-
writeable: boolean;
|
|
152
|
-
};
|
|
153
|
-
retry: {
|
|
154
|
-
type: string;
|
|
155
|
-
collection: boolean;
|
|
156
|
-
writeable: boolean;
|
|
157
|
-
};
|
|
158
|
-
expire: {
|
|
159
|
-
type: string;
|
|
160
|
-
collection: boolean;
|
|
161
|
-
writeable: boolean;
|
|
162
|
-
};
|
|
163
|
-
minimum: {
|
|
164
|
-
type: string;
|
|
165
|
-
collection: boolean;
|
|
166
|
-
writeable: boolean;
|
|
167
|
-
};
|
|
168
|
-
allowedUpdates: {
|
|
169
|
-
type: string;
|
|
170
|
-
collection: boolean;
|
|
171
|
-
writeable: boolean;
|
|
172
|
-
};
|
|
173
|
-
};
|
|
174
|
-
};
|
|
175
|
-
collection: boolean;
|
|
176
|
-
writeable: boolean;
|
|
177
|
-
};
|
|
178
|
-
ntp: {
|
|
179
|
-
type: {
|
|
180
|
-
name: string;
|
|
181
|
-
owners: string[];
|
|
182
|
-
priority: number;
|
|
183
|
-
properties: {
|
|
184
|
-
source: {
|
|
185
|
-
type: string;
|
|
186
|
-
collection: boolean;
|
|
187
|
-
writeable: boolean;
|
|
188
|
-
};
|
|
189
|
-
};
|
|
190
|
-
};
|
|
191
|
-
collection: boolean;
|
|
192
|
-
writeable: boolean;
|
|
193
|
-
};
|
|
194
|
-
dhcp: {
|
|
195
|
-
type: {
|
|
196
|
-
name: string;
|
|
197
|
-
owners: string[];
|
|
198
|
-
priority: number;
|
|
199
|
-
properties: {};
|
|
200
|
-
};
|
|
201
|
-
collection: boolean;
|
|
202
|
-
writeable: boolean;
|
|
203
|
-
};
|
|
204
92
|
country: {
|
|
205
93
|
type: string;
|
|
206
94
|
collection: boolean;
|