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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "1.52.5",
3
+ "version": "1.52.6",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
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;
@@ -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;
@@ -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;
@@ -99,6 +99,11 @@ export class Network extends Owner {
99
99
  collection: boolean;
100
100
  writeable: boolean;
101
101
  };
102
+ notify: {
103
+ type: string;
104
+ collection: boolean;
105
+ writeable: boolean;
106
+ };
102
107
  recordTTL: {
103
108
  type: string;
104
109
  collection: boolean;
package/types/owner.d.mts CHANGED
@@ -95,6 +95,11 @@ export class Owner extends Base {
95
95
  collection: boolean;
96
96
  writeable: boolean;
97
97
  };
98
+ notify: {
99
+ type: string;
100
+ collection: boolean;
101
+ writeable: boolean;
102
+ };
98
103
  recordTTL: {
99
104
  type: string;
100
105
  collection: boolean;
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;