pmcf 6.11.2 → 6.11.3
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/core-service.mjs +0 -1
- package/src/services/bind.mjs +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pmcf",
|
|
3
|
-
"version": "6.11.
|
|
3
|
+
"version": "6.11.3",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"aggregated-map": "^1.0.7",
|
|
54
54
|
"content-entry-transform": "^1.6.9",
|
|
55
|
-
"ip-utilties": "^3.
|
|
55
|
+
"ip-utilties": "^3.8.0",
|
|
56
56
|
"npm-pkgbuild": "^20.8.4",
|
|
57
57
|
"pacc": "^10.4.1",
|
|
58
58
|
"package-directory": "^8.2.0",
|
package/src/core-service.mjs
CHANGED
package/src/services/bind.mjs
CHANGED
|
@@ -124,6 +124,10 @@ class bind_group extends Base {
|
|
|
124
124
|
hasLinkLocalAdresses = bind_group.attributes.hasLinkLocalAdresses.default;
|
|
125
125
|
recordTTL = "1W";
|
|
126
126
|
|
|
127
|
+
/**
|
|
128
|
+
* Type of the group.
|
|
129
|
+
* @return {string} view | unknown
|
|
130
|
+
*/
|
|
127
131
|
get type() {
|
|
128
132
|
if (this.entries.length > 0 || this.sharedWith) {
|
|
129
133
|
return "view";
|