lakutata 2.0.21 → 2.0.23
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/com/docker.cjs +4 -0
- package/com/docker.d.ts +5 -3
- package/com/docker.mjs +4 -0
- package/package.json +2 -6
- package/src/components/docker/ConnectionOptionsBuilder.cjs +4 -0
- package/src/components/docker/ConnectionOptionsBuilder.mjs +4 -0
- package/src/components/docker/Docker.cjs +7084 -1058
- package/src/components/docker/Docker.mjs +7522 -1498
- package/src/components/docker/options/auth/DockerAuthOptions.cjs +5 -3
- package/src/components/docker/options/auth/DockerAuthOptions.mjs +9 -7
- package/src/components/docker/options/image/ImageBuildOptions.cjs +19 -15
- package/src/components/docker/options/image/ImageBuildOptions.mjs +4 -0
- package/src/decorators/orm/Column.cjs +1 -1
- package/src/decorators/orm/PrimaryColumn.cjs +1 -1
- package/vendor/Package.14.cjs +20 -18
- package/vendor/Package.16.cjs +195 -206
- package/vendor/Package.16.mjs +176 -187
- package/vendor/Package.3.cjs +11 -8
- package/vendor/Package.3.mjs +21 -18
- package/vendor/TypeDef.3.d.ts +5 -0
package/com/docker.cjs
CHANGED
package/com/docker.d.ts
CHANGED
|
@@ -2676,13 +2676,14 @@ declare class ImageRemoveOptions extends DTO {
|
|
|
2676
2676
|
}
|
|
2677
2677
|
|
|
2678
2678
|
declare class DockerAuthOptions extends DTO {
|
|
2679
|
-
username
|
|
2680
|
-
password
|
|
2679
|
+
username?: string;
|
|
2680
|
+
password?: string;
|
|
2681
2681
|
/**
|
|
2682
2682
|
* The serverAddress is a domain/IP without a protocol
|
|
2683
2683
|
*/
|
|
2684
2684
|
serverAddress: string;
|
|
2685
|
-
|
|
2685
|
+
identityToken?: string | undefined;
|
|
2686
|
+
registryToken?: string | undefined;
|
|
2686
2687
|
}
|
|
2687
2688
|
|
|
2688
2689
|
type DockerOutputCallback = (output: Record<string, any>) => void;
|
|
@@ -3609,6 +3610,7 @@ declare class ImageBuildOptions extends DTO {
|
|
|
3609
3610
|
buildargs?: {
|
|
3610
3611
|
[key: string]: string;
|
|
3611
3612
|
};
|
|
3613
|
+
auth?: DockerAuthOptions;
|
|
3612
3614
|
outputCallback?: DockerOutputCallback;
|
|
3613
3615
|
}
|
|
3614
3616
|
|
package/com/docker.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lakutata",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.23",
|
|
4
4
|
"description": "An IoC-based universal application framework.",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -88,9 +88,5 @@
|
|
|
88
88
|
"lakutata",
|
|
89
89
|
"framework",
|
|
90
90
|
"typescript"
|
|
91
|
-
]
|
|
92
|
-
"dependencies": {
|
|
93
|
-
"strip-ansi": "^7.1.0",
|
|
94
|
-
"strip-bom": "^5.0.0"
|
|
95
|
-
}
|
|
91
|
+
]
|
|
96
92
|
}
|