pmcf 3.4.3 → 3.4.5
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
CHANGED
package/src/services/bind.mjs
CHANGED
|
@@ -45,7 +45,7 @@ const BindServiceTypeDefinition = {
|
|
|
45
45
|
internal: { type: address_types, collection: true, writable: true },
|
|
46
46
|
hasSVRRecords: boolean_attribute_writeable_false,
|
|
47
47
|
hasCatalog: boolean_attribute_writeable_true,
|
|
48
|
-
hasLinkLocalAdresses:
|
|
48
|
+
hasLinkLocalAdresses: boolean_attribute_writeable_false,
|
|
49
49
|
hasLocationRecord: boolean_attribute_writeable_true,
|
|
50
50
|
excludeInterfaceKinds: {
|
|
51
51
|
...string_collection_attribute,
|
|
@@ -106,7 +106,7 @@ export class BindService extends ExtraSourceService {
|
|
|
106
106
|
recordTTL = "1W";
|
|
107
107
|
hasSVRRecords = true;
|
|
108
108
|
hasCatalog = true;
|
|
109
|
-
hasLinkLocalAdresses =
|
|
109
|
+
hasLinkLocalAdresses = BindServiceTypeDefinition.properties.hasLinkLocalAdresses.default;
|
|
110
110
|
hasLocationRecord = true;
|
|
111
111
|
notify = true;
|
|
112
112
|
_addresses = [];
|
|
@@ -739,7 +739,7 @@ export class BindService extends ExtraSourceService {
|
|
|
739
739
|
recordTTL: string;
|
|
740
740
|
hasSVRRecords: boolean;
|
|
741
741
|
hasCatalog: boolean;
|
|
742
|
-
hasLinkLocalAdresses:
|
|
742
|
+
hasLinkLocalAdresses: any;
|
|
743
743
|
hasLocationRecord: boolean;
|
|
744
744
|
notify: boolean;
|
|
745
745
|
_addresses: any[];
|