pmcf 1.52.5 → 1.52.6
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/bin/pmcf-named-defs +1 -1
- package/package.json +1 -1
- package/src/dns.mjs +2 -0
- package/types/cluster.d.mts +10 -0
- package/types/dns.d.mts +6 -0
- package/types/location.d.mts +10 -0
- package/types/network.d.mts +5 -0
- package/types/owner.d.mts +5 -0
- package/types/root.d.mts +10 -0
package/bin/pmcf-named-defs
CHANGED
|
@@ -180,7 +180,7 @@ async function generateNamedDefs(owner, targetDir) {
|
|
|
180
180
|
dns.allowedUpdates.length ? dns.allowedUpdates.join(";") : "none"
|
|
181
181
|
}; };`
|
|
182
182
|
);
|
|
183
|
-
zoneConfig.push(` notify yes;`);
|
|
183
|
+
zoneConfig.push(` notify ${dns.notify ? "yes" : "no"};`);
|
|
184
184
|
zoneConfig.push(`};`);
|
|
185
185
|
zoneConfig.push("");
|
|
186
186
|
|
package/package.json
CHANGED
package/src/dns.mjs
CHANGED
|
@@ -8,6 +8,7 @@ const DNSServiceTypeDefinition = {
|
|
|
8
8
|
properties: {
|
|
9
9
|
hasSVRRecords: { type: "boolean", collection: false, writeable: true },
|
|
10
10
|
hasCatalog: { type: "boolean", collection: false, writeable: true },
|
|
11
|
+
notify: { type: "boolean", collection: false, writeable: true },
|
|
11
12
|
recordTTL: { type: "string", collection: false, writeable: true },
|
|
12
13
|
refresh: { type: "string", collection: false, writeable: true },
|
|
13
14
|
retry: { type: "string", collection: false, writeable: true },
|
|
@@ -23,6 +24,7 @@ export class DNSService extends Base {
|
|
|
23
24
|
recordTTL = "1W";
|
|
24
25
|
hasSVRRecords = true;
|
|
25
26
|
hasCatalog = true;
|
|
27
|
+
notify = true;
|
|
26
28
|
#forwardsTo = [];
|
|
27
29
|
|
|
28
30
|
refresh = 36000;
|
package/types/cluster.d.mts
CHANGED
|
@@ -97,6 +97,11 @@ export class Cluster extends Owner {
|
|
|
97
97
|
collection: boolean;
|
|
98
98
|
writeable: boolean;
|
|
99
99
|
};
|
|
100
|
+
notify: {
|
|
101
|
+
type: string;
|
|
102
|
+
collection: boolean;
|
|
103
|
+
writeable: boolean;
|
|
104
|
+
};
|
|
100
105
|
recordTTL: {
|
|
101
106
|
type: string;
|
|
102
107
|
collection: boolean;
|
|
@@ -266,6 +271,11 @@ export class Cluster extends Owner {
|
|
|
266
271
|
collection: boolean;
|
|
267
272
|
writeable: boolean;
|
|
268
273
|
};
|
|
274
|
+
notify: {
|
|
275
|
+
type: string;
|
|
276
|
+
collection: boolean;
|
|
277
|
+
writeable: boolean;
|
|
278
|
+
};
|
|
269
279
|
recordTTL: {
|
|
270
280
|
type: string;
|
|
271
281
|
collection: boolean;
|
package/types/dns.d.mts
CHANGED
|
@@ -14,6 +14,11 @@ export class DNSService extends Base {
|
|
|
14
14
|
collection: boolean;
|
|
15
15
|
writeable: boolean;
|
|
16
16
|
};
|
|
17
|
+
notify: {
|
|
18
|
+
type: string;
|
|
19
|
+
collection: boolean;
|
|
20
|
+
writeable: boolean;
|
|
21
|
+
};
|
|
17
22
|
recordTTL: {
|
|
18
23
|
type: string;
|
|
19
24
|
collection: boolean;
|
|
@@ -55,6 +60,7 @@ export class DNSService extends Base {
|
|
|
55
60
|
recordTTL: string;
|
|
56
61
|
hasSVRRecords: boolean;
|
|
57
62
|
hasCatalog: boolean;
|
|
63
|
+
notify: boolean;
|
|
58
64
|
refresh: number;
|
|
59
65
|
retry: number;
|
|
60
66
|
expire: number;
|
package/types/location.d.mts
CHANGED
|
@@ -97,6 +97,11 @@ export class Location extends Owner {
|
|
|
97
97
|
collection: boolean;
|
|
98
98
|
writeable: boolean;
|
|
99
99
|
};
|
|
100
|
+
notify: {
|
|
101
|
+
type: string;
|
|
102
|
+
collection: boolean;
|
|
103
|
+
writeable: boolean;
|
|
104
|
+
};
|
|
100
105
|
recordTTL: {
|
|
101
106
|
type: string;
|
|
102
107
|
collection: boolean;
|
|
@@ -266,6 +271,11 @@ export class Location extends Owner {
|
|
|
266
271
|
collection: boolean;
|
|
267
272
|
writeable: boolean;
|
|
268
273
|
};
|
|
274
|
+
notify: {
|
|
275
|
+
type: string;
|
|
276
|
+
collection: boolean;
|
|
277
|
+
writeable: boolean;
|
|
278
|
+
};
|
|
269
279
|
recordTTL: {
|
|
270
280
|
type: string;
|
|
271
281
|
collection: boolean;
|
package/types/network.d.mts
CHANGED
package/types/owner.d.mts
CHANGED
package/types/root.d.mts
CHANGED
|
@@ -101,6 +101,11 @@ export class Root extends Location {
|
|
|
101
101
|
collection: boolean;
|
|
102
102
|
writeable: boolean;
|
|
103
103
|
};
|
|
104
|
+
notify: {
|
|
105
|
+
type: string;
|
|
106
|
+
collection: boolean;
|
|
107
|
+
writeable: boolean;
|
|
108
|
+
};
|
|
104
109
|
recordTTL: {
|
|
105
110
|
type: string;
|
|
106
111
|
collection: boolean;
|
|
@@ -270,6 +275,11 @@ export class Root extends Location {
|
|
|
270
275
|
collection: boolean;
|
|
271
276
|
writeable: boolean;
|
|
272
277
|
};
|
|
278
|
+
notify: {
|
|
279
|
+
type: string;
|
|
280
|
+
collection: boolean;
|
|
281
|
+
writeable: boolean;
|
|
282
|
+
};
|
|
273
283
|
recordTTL: {
|
|
274
284
|
type: string;
|
|
275
285
|
collection: boolean;
|