lakutata 2.0.21 → 2.0.22
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/orm.mjs +13 -13
- 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.mjs +2 -2
- package/src/decorators/orm/PrimaryColumn.mjs +2 -2
- package/vendor/Package.14.mjs +17 -19
- package/vendor/Package.16.cjs +195 -206
- package/vendor/Package.16.mjs +176 -187
|
@@ -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 };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "../../../vendor/Package.5.mjs";
|
|
2
2
|
|
|
3
|
-
import { r as e,
|
|
3
|
+
import { r as e, C as t } from "../../../vendor/Package.14.mjs";
|
|
4
4
|
|
|
5
5
|
import "../../../vendor/Package.8.mjs";
|
|
6
6
|
|
|
@@ -66,7 +66,7 @@ var o = r.Column = void 0;
|
|
|
66
66
|
|
|
67
67
|
const a = e();
|
|
68
68
|
|
|
69
|
-
const n = t
|
|
69
|
+
const n = t;
|
|
70
70
|
|
|
71
71
|
function i(e, t) {
|
|
72
72
|
return function(r, o) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "../../../vendor/Package.5.mjs";
|
|
2
2
|
|
|
3
|
-
import { r as e,
|
|
3
|
+
import { r as e, C as r, a as t } from "../../../vendor/Package.14.mjs";
|
|
4
4
|
|
|
5
5
|
import "../../../vendor/Package.8.mjs";
|
|
6
6
|
|
|
@@ -66,7 +66,7 @@ var a = o.PrimaryColumn = void 0;
|
|
|
66
66
|
|
|
67
67
|
const n = e();
|
|
68
68
|
|
|
69
|
-
const m = r
|
|
69
|
+
const m = r;
|
|
70
70
|
|
|
71
71
|
const i = t();
|
|
72
72
|
|
package/vendor/Package.14.mjs
CHANGED
|
@@ -29630,26 +29630,24 @@ function vf() {
|
|
|
29630
29630
|
|
|
29631
29631
|
var If = {};
|
|
29632
29632
|
|
|
29633
|
-
|
|
29633
|
+
"use strict";
|
|
29634
29634
|
|
|
29635
|
-
|
|
29636
|
-
|
|
29637
|
-
|
|
29638
|
-
|
|
29639
|
-
|
|
29640
|
-
|
|
29641
|
-
|
|
29642
|
-
|
|
29643
|
-
|
|
29644
|
-
|
|
29645
|
-
|
|
29646
|
-
|
|
29647
|
-
}
|
|
29648
|
-
};
|
|
29649
|
-
If.ColumnTypeUndefinedError = t;
|
|
29650
|
-
return If;
|
|
29635
|
+
Object.defineProperty(If, "__esModule", {
|
|
29636
|
+
value: true
|
|
29637
|
+
});
|
|
29638
|
+
|
|
29639
|
+
var Mf = If.ColumnTypeUndefinedError = void 0;
|
|
29640
|
+
|
|
29641
|
+
const wf = gp;
|
|
29642
|
+
|
|
29643
|
+
class ColumnTypeUndefinedError extends wf.TypeORMError {
|
|
29644
|
+
constructor(e, t) {
|
|
29645
|
+
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.`);
|
|
29646
|
+
}
|
|
29651
29647
|
}
|
|
29652
29648
|
|
|
29649
|
+
Mf = If.ColumnTypeUndefinedError = ColumnTypeUndefinedError;
|
|
29650
|
+
|
|
29653
29651
|
var Df = {};
|
|
29654
29652
|
|
|
29655
29653
|
var Lf;
|
|
@@ -29820,7 +29818,7 @@ function Yf() {
|
|
|
29820
29818
|
t.__exportStar(bf(), e);
|
|
29821
29819
|
t.__exportStar(Af(), e);
|
|
29822
29820
|
t.__exportStar(vf(), e);
|
|
29823
|
-
t.__exportStar(
|
|
29821
|
+
t.__exportStar(If, e);
|
|
29824
29822
|
t.__exportStar(Pf(), e);
|
|
29825
29823
|
t.__exportStar(xf, e);
|
|
29826
29824
|
t.__exportStar($f(), e);
|
|
@@ -72451,4 +72449,4 @@ function pF() {
|
|
|
72451
72449
|
return R;
|
|
72452
72450
|
}
|
|
72453
72451
|
|
|
72454
|
-
export { SB as A, kg as B,
|
|
72452
|
+
export { SB as A, kg as B, If as C, Eb as D, uU as E, Bg as F, SN as G, vN as H, uy as I, bN as J, kb as K, Rb as L, Kb as M, Bb as N, ch as O, D as P, Jg as Q, gb as R, uS as S, ON as T, JS as U, Mb as V, vb as W, Pb as X, Fb as Y, zb as Z, lF as _, Mh as a, CA as b, qN as c, IA as d, fp as e, $E as f, lT as g, My as h, Ug as i, sy as j, FS as k, cT as l, nR as m, Xb as n, yb as o, dh as p, Dk as q, pF as r, Hg as s, qg as t, Uk as u, sS as v, RB as w, NB as x, MB as y, yC as z };
|