pmcf 1.56.3 → 1.56.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 +2 -2
- package/src/base.mjs +1 -1
- package/src/dns.mjs +4 -0
- package/types/base.d.mts +2 -2
- package/types/host.d.mts +1 -1
- package/types/owner.d.mts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pmcf",
|
|
3
|
-
"version": "1.56.
|
|
3
|
+
"version": "1.56.5",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"lint:typescript": "tsc --allowJs --checkJs --noEmit --resolveJsonModule --target es2024 --lib esnext -m esnext --module nodenext --moduleResolution nodenext ./src**/*.mjs"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"npm-pkgbuild": "^17.2.
|
|
41
|
+
"npm-pkgbuild": "^17.2.1",
|
|
42
42
|
"pacc": "^3.3.0",
|
|
43
43
|
"pkg-dir": "^8.0.0"
|
|
44
44
|
},
|
package/src/base.mjs
CHANGED
package/src/dns.mjs
CHANGED
package/types/base.d.mts
CHANGED
|
@@ -60,9 +60,9 @@ export class Base {
|
|
|
60
60
|
get directory(): any;
|
|
61
61
|
get fullName(): any;
|
|
62
62
|
get packageName(): string;
|
|
63
|
-
get outputs():
|
|
63
|
+
get outputs(): any;
|
|
64
64
|
preparePackage(stagingDir: any): Promise<{
|
|
65
|
-
outputs:
|
|
65
|
+
outputs: any;
|
|
66
66
|
properties: {
|
|
67
67
|
name: string;
|
|
68
68
|
description: string;
|
package/types/host.d.mts
CHANGED
|
@@ -189,7 +189,7 @@ export class Host extends Base {
|
|
|
189
189
|
get rawAddresses(): any[];
|
|
190
190
|
get cidrAddresses(): any[];
|
|
191
191
|
publicKey(type?: string): Promise<string>;
|
|
192
|
-
get outputs(): Set<typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").
|
|
192
|
+
get outputs(): Set<typeof import("npm-pkgbuild").ARCH | typeof import("npm-pkgbuild").DOCKER>;
|
|
193
193
|
#private;
|
|
194
194
|
}
|
|
195
195
|
export class NetworkInterface extends Base {
|
package/types/owner.d.mts
CHANGED
|
@@ -195,6 +195,7 @@ export class Owner extends Base {
|
|
|
195
195
|
clusters(): any;
|
|
196
196
|
addBridge(network: any, destinationNetworks: any): any;
|
|
197
197
|
_resolveBridges(): void;
|
|
198
|
+
get outputs(): Set<any>;
|
|
198
199
|
networkAddresses(): Generator<any, void, any>;
|
|
199
200
|
set country(value: any);
|
|
200
201
|
get country(): any;
|