pmcf 3.9.1 → 3.9.2
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/services/bind.mjs +4 -4
- package/types/services/bind.d.mts +18 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pmcf",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -51,13 +51,13 @@
|
|
|
51
51
|
"lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule --target esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"ip-utilties": "^1.4.
|
|
54
|
+
"ip-utilties": "^1.4.9",
|
|
55
55
|
"npm-pkgbuild": "^18.2.30",
|
|
56
56
|
"pacc": "^4.15.1",
|
|
57
57
|
"package-directory": "^8.1.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@types/node": "^24.3.
|
|
60
|
+
"@types/node": "^24.3.3",
|
|
61
61
|
"ava": "^6.4.1",
|
|
62
62
|
"c8": "^10.1.3",
|
|
63
63
|
"documentation": "^14.0.3",
|
package/src/services/bind.mjs
CHANGED
|
@@ -7,7 +7,8 @@ import {
|
|
|
7
7
|
string_collection_attribute,
|
|
8
8
|
boolean_attribute_writable_true,
|
|
9
9
|
boolean_attribute_writable_false,
|
|
10
|
-
number_attribute
|
|
10
|
+
number_attribute,
|
|
11
|
+
string_collection_attribute_writable
|
|
11
12
|
} from "pacc";
|
|
12
13
|
import { writeLines, asArray } from "../utils.mjs";
|
|
13
14
|
import {
|
|
@@ -48,8 +49,7 @@ const BindServiceTypeDefinition = {
|
|
|
48
49
|
hasLinkLocalAdresses: boolean_attribute_writable_false,
|
|
49
50
|
hasLocationRecord: boolean_attribute_writable_true,
|
|
50
51
|
excludeInterfaceKinds: {
|
|
51
|
-
...
|
|
52
|
-
writable: true
|
|
52
|
+
...string_collection_attribute_writable
|
|
53
53
|
},
|
|
54
54
|
exclude: { type: address_types, collection: true, writable: true },
|
|
55
55
|
notify: boolean_attribute_writable_false,
|
|
@@ -59,7 +59,7 @@ const BindServiceTypeDefinition = {
|
|
|
59
59
|
retry: { ...string_attribute_writable, default: 72000 },
|
|
60
60
|
expire: { ...string_attribute_writable, default: 600000 },
|
|
61
61
|
minimum: { ...string_attribute_writable, default: 60000 },
|
|
62
|
-
allowedUpdates: { ...
|
|
62
|
+
allowedUpdates: { ...string_collection_attribute_writable }
|
|
63
63
|
},
|
|
64
64
|
|
|
65
65
|
service: {
|
|
@@ -437,18 +437,18 @@ export class BindService extends ExtraSourceService {
|
|
|
437
437
|
hasLinkLocalAdresses: import("pacc").AttributeDefinition;
|
|
438
438
|
hasLocationRecord: import("pacc").AttributeDefinition;
|
|
439
439
|
excludeInterfaceKinds: {
|
|
440
|
-
writable: boolean;
|
|
441
|
-
collection: boolean;
|
|
442
440
|
type: string;
|
|
443
441
|
isKey: boolean;
|
|
442
|
+
writable: boolean;
|
|
444
443
|
mandatory: boolean;
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
444
|
+
collection: boolean;
|
|
445
|
+
private?: boolean;
|
|
446
|
+
depends?: string;
|
|
447
|
+
description?: string;
|
|
448
|
+
default?: any;
|
|
449
|
+
set?: Function;
|
|
450
|
+
get?: Function;
|
|
451
|
+
env?: string[] | string;
|
|
452
452
|
};
|
|
453
453
|
exclude: {
|
|
454
454
|
type: string[];
|
|
@@ -541,18 +541,18 @@ export class BindService extends ExtraSourceService {
|
|
|
541
541
|
env?: string[] | string;
|
|
542
542
|
};
|
|
543
543
|
allowedUpdates: {
|
|
544
|
-
writable: boolean;
|
|
545
|
-
collection: boolean;
|
|
546
544
|
type: string;
|
|
547
545
|
isKey: boolean;
|
|
546
|
+
writable: boolean;
|
|
548
547
|
mandatory: boolean;
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
548
|
+
collection: boolean;
|
|
549
|
+
private?: boolean;
|
|
550
|
+
depends?: string;
|
|
551
|
+
description?: string;
|
|
552
|
+
default?: any;
|
|
553
|
+
set?: Function;
|
|
554
|
+
get?: Function;
|
|
555
|
+
env?: string[] | string;
|
|
556
556
|
};
|
|
557
557
|
};
|
|
558
558
|
service: {
|