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
|
@@ -64,12 +64,14 @@ require("../../../../lib/helpers/ObjectPrototype.cjs");
|
|
|
64
64
|
|
|
65
65
|
class DockerAuthOptions extends r.DTO {}
|
|
66
66
|
|
|
67
|
-
e.__decorate([ t.Expect(r.DTO.String().
|
|
67
|
+
e.__decorate([ t.Expect(r.DTO.String().optional()), e.__metadata("design:type", String) ], DockerAuthOptions.prototype, "username", void 0);
|
|
68
68
|
|
|
69
|
-
e.__decorate([ t.Expect(r.DTO.String().
|
|
69
|
+
e.__decorate([ t.Expect(r.DTO.String().optional()), e.__metadata("design:type", String) ], DockerAuthOptions.prototype, "password", void 0);
|
|
70
70
|
|
|
71
71
|
e.__decorate([ t.Expect(r.DTO.String().required()), e.__metadata("design:type", String) ], DockerAuthOptions.prototype, "serverAddress", void 0);
|
|
72
72
|
|
|
73
|
-
e.__decorate([ t.Expect(r.DTO.String().
|
|
73
|
+
e.__decorate([ t.Expect(r.DTO.String().optional()), e.__metadata("design:type", Object) ], DockerAuthOptions.prototype, "identityToken", void 0);
|
|
74
|
+
|
|
75
|
+
e.__decorate([ t.Expect(r.DTO.String().optional()), e.__metadata("design:type", Object) ], DockerAuthOptions.prototype, "registryToken", void 0);
|
|
74
76
|
|
|
75
77
|
exports.DockerAuthOptions = DockerAuthOptions;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { _ as t, a as e } from "../../../../../vendor/Package.1.mjs";
|
|
2
2
|
|
|
3
|
-
import { D as
|
|
3
|
+
import { D as o } from "../../../../../vendor/Package.2.mjs";
|
|
4
4
|
|
|
5
|
-
import { Expect as
|
|
5
|
+
import { Expect as r } from "../../../../decorators/dto/Expect.mjs";
|
|
6
6
|
|
|
7
7
|
import "../../../../lib/base/internal/DataValidator.mjs";
|
|
8
8
|
|
|
@@ -56,14 +56,16 @@ import "../../../../lib/helpers/ObjectParentConstructor.mjs";
|
|
|
56
56
|
|
|
57
57
|
import "../../../../lib/helpers/ObjectPrototype.mjs";
|
|
58
58
|
|
|
59
|
-
class DockerAuthOptions extends
|
|
59
|
+
class DockerAuthOptions extends o {}
|
|
60
60
|
|
|
61
|
-
t([ o
|
|
61
|
+
t([ r(o.String().optional()), e("design:type", String) ], DockerAuthOptions.prototype, "username", void 0);
|
|
62
62
|
|
|
63
|
-
t([ o
|
|
63
|
+
t([ r(o.String().optional()), e("design:type", String) ], DockerAuthOptions.prototype, "password", void 0);
|
|
64
64
|
|
|
65
|
-
t([ o
|
|
65
|
+
t([ r(o.String().required()), e("design:type", String) ], DockerAuthOptions.prototype, "serverAddress", void 0);
|
|
66
66
|
|
|
67
|
-
t([ o
|
|
67
|
+
t([ r(o.String().optional()), e("design:type", Object) ], DockerAuthOptions.prototype, "identityToken", void 0);
|
|
68
|
+
|
|
69
|
+
t([ r(o.String().optional()), e("design:type", Object) ], DockerAuthOptions.prototype, "registryToken", void 0);
|
|
68
70
|
|
|
69
71
|
export { DockerAuthOptions };
|
|
@@ -8,7 +8,9 @@ const e = require("../../../../../vendor/Package.1.cjs");
|
|
|
8
8
|
|
|
9
9
|
const t = require("../../../../../vendor/Package.2.cjs");
|
|
10
10
|
|
|
11
|
-
const
|
|
11
|
+
const o = require("../../../../decorators/dto/Expect.cjs");
|
|
12
|
+
|
|
13
|
+
const r = require("../auth/DockerAuthOptions.cjs");
|
|
12
14
|
|
|
13
15
|
require("../../../../lib/base/internal/DataValidator.cjs");
|
|
14
16
|
|
|
@@ -64,32 +66,34 @@ require("../../../../lib/helpers/ObjectPrototype.cjs");
|
|
|
64
66
|
|
|
65
67
|
class ImageBuildOptions extends t.DTO {}
|
|
66
68
|
|
|
67
|
-
e.__decorate([
|
|
69
|
+
e.__decorate([ o.Expect(t.DTO.String().required()), e.__metadata("design:type", String) ], ImageBuildOptions.prototype, "workdir", void 0);
|
|
70
|
+
|
|
71
|
+
e.__decorate([ o.Expect(t.DTO.Array(t.DTO.String()).required()), e.__metadata("design:type", Array) ], ImageBuildOptions.prototype, "files", void 0);
|
|
68
72
|
|
|
69
|
-
e.__decorate([
|
|
73
|
+
e.__decorate([ o.Expect(t.DTO.String().optional().default("Dockerfile")), e.__metadata("design:type", String) ], ImageBuildOptions.prototype, "dockerfile", void 0);
|
|
70
74
|
|
|
71
|
-
e.__decorate([
|
|
75
|
+
e.__decorate([ o.Expect(t.DTO.String().optional()), e.__metadata("design:type", String) ], ImageBuildOptions.prototype, "repoTag", void 0);
|
|
72
76
|
|
|
73
|
-
e.__decorate([
|
|
77
|
+
e.__decorate([ o.Expect(t.DTO.String().allow("").optional().default("")), e.__metadata("design:type", String) ], ImageBuildOptions.prototype, "platform", void 0);
|
|
74
78
|
|
|
75
|
-
e.__decorate([
|
|
79
|
+
e.__decorate([ o.Expect(t.DTO.String().allow("").optional().default("")), e.__metadata("design:type", String) ], ImageBuildOptions.prototype, "target", void 0);
|
|
76
80
|
|
|
77
|
-
e.__decorate([
|
|
81
|
+
e.__decorate([ o.Expect(t.DTO.String().optional()), e.__metadata("design:type", String) ], ImageBuildOptions.prototype, "remote", void 0);
|
|
78
82
|
|
|
79
|
-
e.__decorate([
|
|
83
|
+
e.__decorate([ o.Expect(t.DTO.Boolean().optional().default(false)), e.__metadata("design:type", Boolean) ], ImageBuildOptions.prototype, "quite", void 0);
|
|
80
84
|
|
|
81
|
-
e.__decorate([
|
|
85
|
+
e.__decorate([ o.Expect(t.DTO.Boolean().optional().default(false)), e.__metadata("design:type", Boolean) ], ImageBuildOptions.prototype, "nocache", void 0);
|
|
82
86
|
|
|
83
|
-
e.__decorate([
|
|
87
|
+
e.__decorate([ o.Expect(t.DTO.Boolean().optional().default(true)), e.__metadata("design:type", Boolean) ], ImageBuildOptions.prototype, "rm", void 0);
|
|
84
88
|
|
|
85
|
-
e.__decorate([
|
|
89
|
+
e.__decorate([ o.Expect(t.DTO.Boolean().optional().default(false)), e.__metadata("design:type", Boolean) ], ImageBuildOptions.prototype, "forcerm", void 0);
|
|
86
90
|
|
|
87
|
-
e.__decorate([
|
|
91
|
+
e.__decorate([ o.Expect(t.DTO.Number().optional()), e.__metadata("design:type", Number) ], ImageBuildOptions.prototype, "shmsize", void 0);
|
|
88
92
|
|
|
89
|
-
e.__decorate([
|
|
93
|
+
e.__decorate([ o.Expect(t.DTO.Object().pattern(t.DTO.String(), t.DTO.String()).optional()), e.__metadata("design:type", Object) ], ImageBuildOptions.prototype, "buildargs", void 0);
|
|
90
94
|
|
|
91
|
-
e.__decorate([
|
|
95
|
+
e.__decorate([ o.Expect(r.DockerAuthOptions.optional()), e.__metadata("design:type", r.DockerAuthOptions) ], ImageBuildOptions.prototype, "auth", void 0);
|
|
92
96
|
|
|
93
|
-
e.__decorate([
|
|
97
|
+
e.__decorate([ o.Expect(t.DTO.Function().optional()), e.__metadata("design:type", Function) ], ImageBuildOptions.prototype, "outputCallback", void 0);
|
|
94
98
|
|
|
95
99
|
exports.ImageBuildOptions = ImageBuildOptions;
|
|
@@ -4,6 +4,8 @@ import { D as e } from "../../../../../vendor/Package.2.mjs";
|
|
|
4
4
|
|
|
5
5
|
import { Expect as i } from "../../../../decorators/dto/Expect.mjs";
|
|
6
6
|
|
|
7
|
+
import { DockerAuthOptions as p } from "../auth/DockerAuthOptions.mjs";
|
|
8
|
+
|
|
7
9
|
import "../../../../lib/base/internal/DataValidator.mjs";
|
|
8
10
|
|
|
9
11
|
import "../../../../../vendor/Package.4.mjs";
|
|
@@ -84,6 +86,8 @@ t([ i(e.Number().optional()), o("design:type", Number) ], ImageBuildOptions.prot
|
|
|
84
86
|
|
|
85
87
|
t([ i(e.Object().pattern(e.String(), e.String()).optional()), o("design:type", Object) ], ImageBuildOptions.prototype, "buildargs", void 0);
|
|
86
88
|
|
|
89
|
+
t([ i(p.optional()), o("design:type", p) ], ImageBuildOptions.prototype, "auth", void 0);
|
|
90
|
+
|
|
87
91
|
t([ i(e.Function().optional()), o("design:type", Function) ], ImageBuildOptions.prototype, "outputCallback", void 0);
|
|
88
92
|
|
|
89
93
|
export { ImageBuildOptions };
|
package/vendor/Package.14.cjs
CHANGED
|
@@ -29660,24 +29660,26 @@ function Ff() {
|
|
|
29660
29660
|
|
|
29661
29661
|
var $f = {};
|
|
29662
29662
|
|
|
29663
|
-
|
|
29664
|
-
|
|
29665
|
-
Object.defineProperty($f, "__esModule", {
|
|
29666
|
-
value: true
|
|
29667
|
-
});
|
|
29668
|
-
|
|
29669
|
-
var qf = $f.ColumnTypeUndefinedError = void 0;
|
|
29663
|
+
var qf;
|
|
29670
29664
|
|
|
29671
|
-
|
|
29672
|
-
|
|
29673
|
-
|
|
29674
|
-
|
|
29675
|
-
|
|
29676
|
-
|
|
29665
|
+
function Gf() {
|
|
29666
|
+
if (qf) return $f;
|
|
29667
|
+
qf = 1;
|
|
29668
|
+
"use strict";
|
|
29669
|
+
Object.defineProperty($f, "__esModule", {
|
|
29670
|
+
value: true
|
|
29671
|
+
});
|
|
29672
|
+
$f.ColumnTypeUndefinedError = void 0;
|
|
29673
|
+
const e = Mp;
|
|
29674
|
+
let t = class ColumnTypeUndefinedError extends e.TypeORMError {
|
|
29675
|
+
constructor(e, t) {
|
|
29676
|
+
super(`Column type for ${e.constructor.name}#${t} is not defined and cannot be guessed. ` + `Make sure you have turned on an "emitDecoratorMetadata": true option in tsconfig.json. ` + `Also make sure you have imported "reflect-metadata" on top of the main entry file in your application (before any entity imported).` + `If you are using JavaScript instead of TypeScript you must explicitly provide a column type.`);
|
|
29677
|
+
}
|
|
29678
|
+
};
|
|
29679
|
+
$f.ColumnTypeUndefinedError = t;
|
|
29680
|
+
return $f;
|
|
29677
29681
|
}
|
|
29678
29682
|
|
|
29679
|
-
qf = $f.ColumnTypeUndefinedError = ColumnTypeUndefinedError;
|
|
29680
|
-
|
|
29681
29683
|
var Qf = {};
|
|
29682
29684
|
|
|
29683
29685
|
var jf;
|
|
@@ -29848,7 +29850,7 @@ function aE() {
|
|
|
29848
29850
|
t.__exportStar(Lf(), e);
|
|
29849
29851
|
t.__exportStar(kf(), e);
|
|
29850
29852
|
t.__exportStar(Ff(), e);
|
|
29851
|
-
t.__exportStar(
|
|
29853
|
+
t.__exportStar(Gf(), e);
|
|
29852
29854
|
t.__exportStar(Hf(), e);
|
|
29853
29855
|
t.__exportStar(Yf, e);
|
|
29854
29856
|
t.__exportStar(Xf(), e);
|
|
@@ -72481,8 +72483,6 @@ function qB() {
|
|
|
72481
72483
|
|
|
72482
72484
|
exports.Brackets = Yg;
|
|
72483
72485
|
|
|
72484
|
-
exports.ColumnTypeUndefinedError = $f;
|
|
72485
|
-
|
|
72486
72486
|
exports.DefaultNamingStrategy = hb;
|
|
72487
72487
|
|
|
72488
72488
|
exports.EventListenerTypes = Gk;
|
|
@@ -72499,6 +72499,8 @@ exports.error = vp;
|
|
|
72499
72499
|
|
|
72500
72500
|
exports.requireAbstractRepository = NN;
|
|
72501
72501
|
|
|
72502
|
+
exports.requireColumnTypeUndefinedError = Gf;
|
|
72503
|
+
|
|
72502
72504
|
exports.requireDataSource = UB;
|
|
72503
72505
|
|
|
72504
72506
|
exports.requireEntityManager = iA;
|