lakutata 2.0.63 → 2.0.64
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.mjs +1 -1
- package/com/logger.mjs +1 -1
- package/decorator/orm.mjs +1 -1
- package/helper.mjs +2 -2
- package/lakutata.mjs +2 -2
- package/orm.mjs +15 -15
- package/package.json +1 -1
- package/src/components/Database.mjs +2 -2
- package/src/components/Logger.mjs +1 -1
- package/src/components/cacher/Cacher.mjs +10 -10
- package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +3 -3
- package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreateMongoCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreateMysqlCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreatePostgresCacheAdapter.mjs +1 -1
- package/src/components/cacher/adapters/CreateRedisCacheAdapter.mjs +21 -21
- package/src/components/cacher/adapters/CreateSqliteCacheAdapter.mjs +8 -8
- package/src/components/cacher/options/FileCacheOptions.mjs +2 -2
- package/src/components/cacher/options/MemcacheCacheOptions.mjs +2 -2
- package/src/components/cacher/options/MongoCacheOptions.mjs +2 -2
- package/src/components/cacher/options/MysqlCacheOptions.mjs +2 -2
- package/src/components/cacher/options/PostgresCacheOptions.mjs +2 -2
- package/src/components/cacher/options/RedisCacheOptions.mjs +2 -2
- package/src/components/cacher/options/SqliteCacheOptions.mjs +2 -2
- package/src/components/docker/Docker.mjs +5 -5
- package/src/components/docker/lib/DockerContainer.mjs +3 -3
- package/src/components/docker/lib/DockerContainerTTY.mjs +1 -1
- package/src/components/docker/lib/DockerImage.mjs +2 -2
- package/src/components/docker/options/DockerPruneOptions.mjs +2 -2
- package/src/components/docker/options/auth/DockerAuthOptions.mjs +2 -2
- package/src/components/docker/options/container/ContainerCommitOptions.mjs +2 -2
- package/src/components/docker/options/container/ContainerCreateTTYOptions.mjs +2 -2
- package/src/components/docker/options/container/ContainerExecOptions.mjs +2 -2
- package/src/components/docker/options/container/ContainerExportDirectoryOptions.mjs +2 -2
- package/src/components/docker/options/container/ContainerKillOptions.mjs +2 -2
- package/src/components/docker/options/container/ContainerLogsOptions.mjs +2 -2
- package/src/components/docker/options/container/ContainerRemoveOptions.mjs +2 -2
- package/src/components/docker/options/container/ContainerSettingOptions.mjs +2 -2
- package/src/components/docker/options/container/ContainerStopOptions.mjs +2 -2
- package/src/components/docker/options/container/ContainerTTYConsoleSizeOptions.mjs +2 -2
- package/src/components/docker/options/image/ImageBuildOptions.mjs +2 -2
- package/src/components/docker/options/image/ImageExportOptions.mjs +2 -2
- package/src/components/docker/options/image/ImageImportOptions.mjs +2 -2
- package/src/components/docker/options/image/ImagePullOptions.mjs +2 -2
- package/src/components/docker/options/image/ImagePushOptions.mjs +2 -2
- package/src/components/docker/options/image/ImageRemoveOptions.mjs +2 -2
- package/src/components/docker/options/image/ImageTagOptions.mjs +2 -2
- package/src/components/docker/options/network/NetworkCreateOptions.mjs +2 -2
- package/src/components/entrypoint/Entrypoint.mjs +3 -3
- package/src/components/entrypoint/lib/AccessControl.mjs +21 -21
- package/src/components/entrypoint/lib/AccessControlRule.mjs +2 -2
- package/src/components/entrypoint/lib/Controller.mjs +3 -3
- package/src/components/monitor/AliveMonitor.mjs +2 -2
- package/src/components/monitor/CpuMonitor.mjs +1 -1
- package/src/components/monitor/HttpRequestMonitor.mjs +14 -14
- package/src/components/monitor/MemoryMonitor.mjs +1 -1
- package/src/decorators/di/Configurable.mjs +1 -1
- package/src/decorators/dto/Expect.mjs +1 -1
- package/src/decorators/dto/IndexSignature.mjs +1 -1
- package/src/decorators/orm/AfterInsert.mjs +1 -1
- package/src/decorators/orm/AfterLoad.mjs +1 -1
- package/src/decorators/orm/AfterRecover.mjs +1 -1
- package/src/decorators/orm/AfterRemove.mjs +1 -1
- package/src/decorators/orm/AfterSoftRemove.mjs +1 -1
- package/src/decorators/orm/AfterUpdate.mjs +1 -1
- package/src/decorators/orm/BeforeInsert.mjs +1 -1
- package/src/decorators/orm/BeforeRecover.mjs +1 -1
- package/src/decorators/orm/BeforeRemove.mjs +1 -1
- package/src/decorators/orm/BeforeSoftRemove.mjs +1 -1
- package/src/decorators/orm/BeforeUpdate.mjs +1 -1
- package/src/decorators/orm/Check.mjs +1 -1
- package/src/decorators/orm/ChildEntity.mjs +1 -1
- package/src/decorators/orm/Column.mjs +1 -1
- package/src/decorators/orm/CreateDateColumn.mjs +1 -1
- package/src/decorators/orm/DeleteDateColumn.mjs +1 -1
- package/src/decorators/orm/Entity.mjs +1 -1
- package/src/decorators/orm/EventSubscriber.mjs +1 -1
- package/src/decorators/orm/Exclusion.mjs +1 -1
- package/src/decorators/orm/Generated.mjs +1 -1
- package/src/decorators/orm/Index.mjs +1 -1
- package/src/decorators/orm/JoinColumn.mjs +1 -1
- package/src/decorators/orm/JoinTable.mjs +1 -1
- package/src/decorators/orm/ManyToMany.mjs +1 -1
- package/src/decorators/orm/ManyToOne.mjs +1 -1
- package/src/decorators/orm/ObjectIdColumn.mjs +1 -1
- package/src/decorators/orm/OneToMany.mjs +1 -1
- package/src/decorators/orm/OneToOne.mjs +1 -1
- package/src/decorators/orm/PrimaryColumn.mjs +1 -1
- package/src/decorators/orm/PrimaryGeneratedColumn.mjs +1 -1
- package/src/decorators/orm/RelationId.mjs +1 -1
- package/src/decorators/orm/TableInheritance.mjs +1 -1
- package/src/decorators/orm/Tree.mjs +1 -1
- package/src/decorators/orm/TreeChildren.mjs +1 -1
- package/src/decorators/orm/TreeLevelColumn.mjs +1 -1
- package/src/decorators/orm/TreeParent.mjs +1 -1
- package/src/decorators/orm/Unique.mjs +1 -1
- package/src/decorators/orm/UpdateDateColumn.mjs +1 -1
- package/src/decorators/orm/VersionColumn.mjs +1 -1
- package/src/decorators/orm/ViewColumn.mjs +1 -1
- package/src/decorators/orm/ViewEntity.mjs +1 -1
- package/src/decorators/orm/VirtualColumn.mjs +1 -1
- package/src/lib/base/BaseObject.mjs +1 -1
- package/src/lib/base/Context.mjs +10 -10
- package/src/lib/base/EventEmitter.mjs +1 -1
- package/src/lib/base/internal/ActionOptions.mjs +2 -2
- package/src/lib/base/internal/BasicInfo.mjs +10 -10
- package/src/lib/base/internal/DataValidator.mjs +2 -2
- package/src/lib/base/internal/FlexibleDTO.mjs +2 -2
- package/src/lib/base/internal/MethodValidation.mjs +1 -1
- package/src/lib/base/internal/ModuleConfigLoader.mjs +1 -1
- package/src/lib/base/internal/ObjectConfiguration.mjs +1 -1
- package/src/lib/base/internal/ObjectSchemaValidation.mjs +1 -1
- package/src/lib/base/internal/ObjectType.mjs +1 -1
- package/src/lib/base/internal/PatternManager.mjs +1 -1
- package/src/lib/base/internal/StringifyPattern.mjs +1 -1
- package/src/lib/context/CLIContext.mjs +5 -5
- package/src/lib/context/HTTPContext.mjs +2 -2
- package/src/lib/context/ServiceContext.mjs +2 -2
- package/src/lib/core/Application.mjs +10 -10
- package/src/lib/core/Component.mjs +2 -2
- package/src/lib/core/Container.mjs +1 -1
- package/src/lib/core/DTO.mjs +1 -1
- package/src/lib/core/Module.mjs +2 -2
- package/src/lib/core/Provider.mjs +5 -5
- package/src/lib/core/Time.mjs +1 -1
- package/src/lib/helpers/Glob.mjs +1 -1
- package/src/lib/helpers/IsGlobString.mjs +1 -1
- package/src/lib/helpers/IsHtml.mjs +5 -5
- package/src/lib/helpers/IsSymbol.mjs +1 -1
- package/src/lib/helpers/IsXML.mjs +1 -1
- package/src/lib/helpers/MD5.mjs +1 -1
- package/src/lib/helpers/ObjectHash.mjs +1 -1
- package/src/lib/helpers/RandomString.mjs +1 -1
- package/src/lib/helpers/SHA1.mjs +3 -3
- package/src/lib/helpers/SHA256.mjs +3 -3
- package/src/lib/helpers/SortArray.mjs +14 -14
- package/src/lib/helpers/Statistics.mjs +59 -59
- package/src/lib/helpers/URLBuilder.mjs +34 -34
- package/src/lib/ioc/Errors.mjs +8 -8
- package/src/lib/ioc/ListModules.mjs +2 -2
- package/src/lib/ioc/Utils.mjs +1 -1
- package/src/lib/validation/VLD.mjs +1 -1
- package/src/options/ApplicationOptions.mjs +2 -2
- package/src/options/LoadAnonymousObjectOptions.mjs +3 -3
- package/src/options/LoadNamedObjectOptions.mjs +3 -3
- package/src/options/LoadObjectOptions.mjs +1 -1
- package/src/options/ModuleLoadObjectsOptions.mjs +3 -3
- package/src/options/ModuleOptions.mjs +3 -3
- package/src/options/OverridableNamedObjectOptions.mjs +2 -2
- package/src/options/OverridableObjectOptions.mjs +3 -3
- package/src/providers/Database.mjs +2 -2
- package/src/providers/PasswordHash.mjs +19 -19
- package/vendor/Package.1.mjs +1 -1
- package/vendor/Package.12.mjs +5 -5
- package/vendor/Package.122.mjs +4380 -4380
- package/vendor/Package.13.mjs +4 -4
- package/vendor/Package.132.mjs +1 -1
- package/vendor/Package.16.mjs +1 -1
- package/vendor/Package.17.mjs +5 -5
- package/vendor/Package.19.cjs +184 -195
- package/vendor/Package.19.mjs +183 -194
- package/vendor/Package.2.mjs +114 -114
- package/vendor/Package.3.mjs +30 -30
- package/vendor/Package.4.mjs +1 -1
- package/vendor/Package.5.mjs +1 -1
- package/vendor/Package.6.mjs +3 -3
- package/vendor/Package.610.mjs +1 -1
- package/vendor/Package.611.mjs +11 -11
- package/vendor/Package.62.mjs +148 -148
- package/vendor/Package.63.mjs +43 -43
- package/vendor/Package.64.mjs +1 -1
- package/vendor/Package.65.mjs +3 -3
- package/vendor/Package.66.mjs +1 -1
- package/vendor/Package.67.mjs +1 -1
- package/vendor/Package.68.mjs +1 -1
- package/vendor/Package.7.mjs +1 -1
- package/vendor/Package.9.mjs +36 -36
package/vendor/Package.19.cjs
CHANGED
|
@@ -58,7 +58,7 @@ const require$$1$2 = require("util");
|
|
|
58
58
|
|
|
59
59
|
const require$$0$8 = require("events");
|
|
60
60
|
|
|
61
|
-
const index$
|
|
61
|
+
const index$o = require("./Package.62.cjs");
|
|
62
62
|
|
|
63
63
|
const Logger = require("./Package.17.cjs");
|
|
64
64
|
|
|
@@ -780,7 +780,7 @@ var ber = ber$1.exports;
|
|
|
780
780
|
|
|
781
781
|
var berExports = ber$1.exports;
|
|
782
782
|
|
|
783
|
-
const index$
|
|
783
|
+
const index$n = _commonjsHelpers.getDefaultExportFromCjs(berExports);
|
|
784
784
|
|
|
785
785
|
var Ber$2 = berExports;
|
|
786
786
|
|
|
@@ -790,7 +790,7 @@ var lib$2 = {
|
|
|
790
790
|
BerWriter: Ber$2.Writer
|
|
791
791
|
};
|
|
792
792
|
|
|
793
|
-
const index$
|
|
793
|
+
const index$m = _commonjsHelpers.getDefaultExportFromCjs(lib$2);
|
|
794
794
|
|
|
795
795
|
var naclFast$2 = {
|
|
796
796
|
exports: {}
|
|
@@ -3027,7 +3027,7 @@ var bcryptPbkdf = {
|
|
|
3027
3027
|
pbkdf: bcrypt_pbkdf$2
|
|
3028
3028
|
};
|
|
3029
3029
|
|
|
3030
|
-
const index$
|
|
3030
|
+
const index$l = _commonjsHelpers.getDefaultExportFromCjs(bcryptPbkdf);
|
|
3031
3031
|
|
|
3032
3032
|
var constants$4 = {
|
|
3033
3033
|
exports: {}
|
|
@@ -10649,9 +10649,9 @@ var validateNumber$1 = nodeFsCompat.validateNumber = function e(t, r) {
|
|
|
10649
10649
|
|
|
10650
10650
|
const EventEmitter$4 = require$$0__default$8.default;
|
|
10651
10651
|
|
|
10652
|
-
const fs$
|
|
10652
|
+
const fs$8 = require$$0__default$5.default;
|
|
10653
10653
|
|
|
10654
|
-
const {constants: constants$2} = fs$
|
|
10654
|
+
const {constants: constants$2} = fs$8;
|
|
10655
10655
|
|
|
10656
10656
|
const {Readable: ReadableStream$1, Writable: WritableStream$1} = require$$0__default$7.default;
|
|
10657
10657
|
|
|
@@ -11011,11 +11011,11 @@ let SFTP$3 = class SFTP extends EventEmitter$4 {
|
|
|
11011
11011
|
}
|
|
11012
11012
|
fastGet(e, t, r, n) {
|
|
11013
11013
|
if (this.server) throw new Error("Client-only method called in server mode");
|
|
11014
|
-
fastXfer(this, fs$
|
|
11014
|
+
fastXfer(this, fs$8, e, t, r, n);
|
|
11015
11015
|
}
|
|
11016
11016
|
fastPut(e, t, r, n) {
|
|
11017
11017
|
if (this.server) throw new Error("Client-only method called in server mode");
|
|
11018
|
-
fastXfer(fs$
|
|
11018
|
+
fastXfer(fs$8, this, e, t, r, n);
|
|
11019
11019
|
}
|
|
11020
11020
|
readFile(e, t, r) {
|
|
11021
11021
|
if (this.server) throw new Error("Client-only method called in server mode");
|
|
@@ -12154,10 +12154,10 @@ function fastXfer(e, t, r, n, s, o) {
|
|
|
12154
12154
|
s = () => {
|
|
12155
12155
|
if (--n === 0) o(r);
|
|
12156
12156
|
};
|
|
12157
|
-
if (_ && (e === fs$
|
|
12158
|
-
if (E && (t === fs$
|
|
12159
|
-
if (_ && (e === fs$
|
|
12160
|
-
if (E && (t === fs$
|
|
12157
|
+
if (_ && (e === fs$8 || e.outgoing.state === "open")) ++n;
|
|
12158
|
+
if (E && (t === fs$8 || t.outgoing.state === "open")) ++n;
|
|
12159
|
+
if (_ && (e === fs$8 || e.outgoing.state === "open")) e.close(_, s);
|
|
12160
|
+
if (E && (t === fs$8 || t.outgoing.state === "open")) t.close(E, s);
|
|
12161
12161
|
} else {
|
|
12162
12162
|
o(r);
|
|
12163
12163
|
}
|
|
@@ -12170,7 +12170,7 @@ function fastXfer(e, t, r, n, s, o) {
|
|
|
12170
12170
|
});
|
|
12171
12171
|
function A(s, d) {
|
|
12172
12172
|
if (s) {
|
|
12173
|
-
if (e !== fs$
|
|
12173
|
+
if (e !== fs$8) {
|
|
12174
12174
|
e.stat(r, ((e, t) => {
|
|
12175
12175
|
if (e) return S(s);
|
|
12176
12176
|
A(null, t);
|
|
@@ -16958,7 +16958,7 @@ var lib = {
|
|
|
16958
16958
|
}
|
|
16959
16959
|
};
|
|
16960
16960
|
|
|
16961
|
-
const index$
|
|
16961
|
+
const index$k = _commonjsHelpers.getDefaultExportFromCjs(lib);
|
|
16962
16962
|
|
|
16963
16963
|
var Client = lib.Client, http$2 = require$$1__default.default;
|
|
16964
16964
|
|
|
@@ -17535,7 +17535,7 @@ function require_stream_writable() {
|
|
|
17535
17535
|
var d = requireState(), h = d.getHighWaterMark;
|
|
17536
17536
|
var p = requireErrors().codes, g = p.ERR_INVALID_ARG_TYPE, m = p.ERR_METHOD_NOT_IMPLEMENTED, _ = p.ERR_MULTIPLE_CALLBACK, E = p.ERR_STREAM_CANNOT_PIPE, v = p.ERR_STREAM_DESTROYED, y = p.ERR_STREAM_NULL_VALUES, S = p.ERR_STREAM_WRITE_AFTER_END, A = p.ERR_UNKNOWN_ENCODING;
|
|
17537
17537
|
var b = u.errorOrDestroy;
|
|
17538
|
-
index$
|
|
17538
|
+
index$o.requireInherits()(T, s);
|
|
17539
17539
|
function C() {}
|
|
17540
17540
|
function w(e, n, s) {
|
|
17541
17541
|
r = r || require_stream_duplex();
|
|
@@ -17961,7 +17961,7 @@ function require_stream_duplex() {
|
|
|
17961
17961
|
_stream_duplex = a;
|
|
17962
17962
|
var t = require_stream_readable();
|
|
17963
17963
|
var r = require_stream_writable();
|
|
17964
|
-
index$
|
|
17964
|
+
index$o.requireInherits()(a, t);
|
|
17965
17965
|
{
|
|
17966
17966
|
var n = e(r.prototype);
|
|
17967
17967
|
for (var s = 0; s < n.length; s++) {
|
|
@@ -18475,7 +18475,7 @@ function require_stream_readable() {
|
|
|
18475
18475
|
var S;
|
|
18476
18476
|
var A;
|
|
18477
18477
|
var b;
|
|
18478
|
-
index$
|
|
18478
|
+
index$o.requireInherits()(R, n);
|
|
18479
18479
|
var C = h.errorOrDestroy;
|
|
18480
18480
|
var w = [ "error", "close", "destroy", "pause", "resume" ];
|
|
18481
18481
|
function I(e, t, r) {
|
|
@@ -19151,7 +19151,7 @@ function require_stream_transform() {
|
|
|
19151
19151
|
_stream_transform = l;
|
|
19152
19152
|
var e = requireErrors().codes, t = e.ERR_METHOD_NOT_IMPLEMENTED, r = e.ERR_MULTIPLE_CALLBACK, n = e.ERR_TRANSFORM_ALREADY_TRANSFORMING, s = e.ERR_TRANSFORM_WITH_LENGTH_0;
|
|
19153
19153
|
var o = require_stream_duplex();
|
|
19154
|
-
index$
|
|
19154
|
+
index$o.requireInherits()(l, o);
|
|
19155
19155
|
function a(e, t) {
|
|
19156
19156
|
var n = this._transformState;
|
|
19157
19157
|
n.transforming = false;
|
|
@@ -19249,7 +19249,7 @@ function require_stream_passthrough() {
|
|
|
19249
19249
|
"use strict";
|
|
19250
19250
|
_stream_passthrough = t;
|
|
19251
19251
|
var e = require_stream_transform();
|
|
19252
|
-
index$
|
|
19252
|
+
index$o.requireInherits()(t, e);
|
|
19253
19253
|
function t(r) {
|
|
19254
19254
|
if (!(this instanceof t)) return new t(r);
|
|
19255
19255
|
e.call(this, r);
|
|
@@ -19425,13 +19425,13 @@ HttpDuplex$1.prototype.destroySoon = function() {
|
|
|
19425
19425
|
|
|
19426
19426
|
const http_duplex$1 = _commonjsHelpers.getDefaultExportFromCjs(http_duplex);
|
|
19427
19427
|
|
|
19428
|
-
var fs$
|
|
19428
|
+
var fs$7 = require$$0__default$5.default;
|
|
19429
19429
|
|
|
19430
19430
|
var splitCa = function(e, t, r) {
|
|
19431
19431
|
t = typeof t !== "undefined" ? t : "\n";
|
|
19432
19432
|
r = typeof r !== "undefined" ? r : "utf8";
|
|
19433
19433
|
var n = [];
|
|
19434
|
-
var s = fs$
|
|
19434
|
+
var s = fs$7.readFileSync(e, r);
|
|
19435
19435
|
if (s.indexOf("-END CERTIFICATE-") < 0 || s.indexOf("-BEGIN CERTIFICATE-") < 0) {
|
|
19436
19436
|
throw Error("File does not contain 'BEGIN CERTIFICATE' or 'END CERTIFICATE'");
|
|
19437
19437
|
}
|
|
@@ -19452,9 +19452,9 @@ var splitCa = function(e, t, r) {
|
|
|
19452
19452
|
return n;
|
|
19453
19453
|
};
|
|
19454
19454
|
|
|
19455
|
-
const index$
|
|
19455
|
+
const index$j = _commonjsHelpers.getDefaultExportFromCjs(splitCa);
|
|
19456
19456
|
|
|
19457
|
-
var querystring = require$$0__default$9.default, http$1 = httpExports, fs$
|
|
19457
|
+
var querystring = require$$0__default$9.default, http$1 = httpExports, fs$6 = require$$0__default$5.default, path$7 = require$$0__default$4.default, url = require$$4__default.default, ssh = ssh$1, HttpDuplex = http_duplex, debug = index$o.srcExports("modem"), utils = utils$4, util$q = require$$1__default$1.default, splitca = splitCa, os$2 = require$$1__default$2.default, isWin = os$2.type() === "Windows_NT", stream = require$$0__default$7.default;
|
|
19458
19458
|
|
|
19459
19459
|
var defaultOpts = function() {
|
|
19460
19460
|
var e;
|
|
@@ -19495,8 +19495,8 @@ var defaultOpts = function() {
|
|
|
19495
19495
|
t.host = e.hostname;
|
|
19496
19496
|
if (process.env.DOCKER_CERT_PATH) {
|
|
19497
19497
|
t.ca = splitca(path$7.join(process.env.DOCKER_CERT_PATH, "ca.pem"));
|
|
19498
|
-
t.cert = fs$
|
|
19499
|
-
t.key = fs$
|
|
19498
|
+
t.cert = fs$6.readFileSync(path$7.join(process.env.DOCKER_CERT_PATH, "cert.pem"));
|
|
19499
|
+
t.key = fs$6.readFileSync(path$7.join(process.env.DOCKER_CERT_PATH, "key.pem"));
|
|
19500
19500
|
}
|
|
19501
19501
|
if (process.env.DOCKER_CLIENT_TIMEOUT) {
|
|
19502
19502
|
t.timeout = parseInt(process.env.DOCKER_CLIENT_TIMEOUT, 10);
|
|
@@ -19508,7 +19508,7 @@ var defaultOpts = function() {
|
|
|
19508
19508
|
var findDefaultUnixSocket = function() {
|
|
19509
19509
|
return new Promise((function(e) {
|
|
19510
19510
|
var t = path$7.join(os$2.homedir(), ".docker", "run", "docker.sock");
|
|
19511
|
-
fs$
|
|
19511
|
+
fs$6.access(t, (function(r) {
|
|
19512
19512
|
if (r) e("/var/run/docker.sock"); else e(t);
|
|
19513
19513
|
}));
|
|
19514
19514
|
}));
|
|
@@ -19602,7 +19602,7 @@ Modem$1.prototype.dial = function(e, t) {
|
|
|
19602
19602
|
}
|
|
19603
19603
|
if (e.file) {
|
|
19604
19604
|
if (typeof e.file === "string") {
|
|
19605
|
-
s = fs$
|
|
19605
|
+
s = fs$6.createReadStream(path$7.resolve(e.file));
|
|
19606
19606
|
} else {
|
|
19607
19607
|
s = e.file;
|
|
19608
19608
|
}
|
|
@@ -20117,19 +20117,19 @@ var tarFs = {};
|
|
|
20117
20117
|
|
|
20118
20118
|
"use strict";
|
|
20119
20119
|
|
|
20120
|
-
const fs$
|
|
20120
|
+
const fs$5 = require$$0__default$5.default;
|
|
20121
20121
|
|
|
20122
20122
|
const path$5 = require$$0__default$4.default;
|
|
20123
20123
|
|
|
20124
|
-
const LCHOWN = fs$
|
|
20124
|
+
const LCHOWN = fs$5.lchown ? "lchown" : "chown";
|
|
20125
20125
|
|
|
20126
|
-
const LCHOWNSYNC = fs$
|
|
20126
|
+
const LCHOWNSYNC = fs$5.lchownSync ? "lchownSync" : "chownSync";
|
|
20127
20127
|
|
|
20128
|
-
const needEISDIRHandled = fs$
|
|
20128
|
+
const needEISDIRHandled = fs$5.lchown && !process.version.match(/v1[1-9]+\./) && !process.version.match(/v10\.[6-9]/);
|
|
20129
20129
|
|
|
20130
20130
|
const lchownSync = (e, t, r) => {
|
|
20131
20131
|
try {
|
|
20132
|
-
return fs$
|
|
20132
|
+
return fs$5[LCHOWNSYNC](e, t, r);
|
|
20133
20133
|
} catch (e) {
|
|
20134
20134
|
if (e.code !== "ENOENT") throw e;
|
|
20135
20135
|
}
|
|
@@ -20137,14 +20137,14 @@ const lchownSync = (e, t, r) => {
|
|
|
20137
20137
|
|
|
20138
20138
|
const chownSync = (e, t, r) => {
|
|
20139
20139
|
try {
|
|
20140
|
-
return fs$
|
|
20140
|
+
return fs$5.chownSync(e, t, r);
|
|
20141
20141
|
} catch (e) {
|
|
20142
20142
|
if (e.code !== "ENOENT") throw e;
|
|
20143
20143
|
}
|
|
20144
20144
|
};
|
|
20145
20145
|
|
|
20146
20146
|
const handleEISDIR = needEISDIRHandled ? (e, t, r, n) => s => {
|
|
20147
|
-
if (!s || s.code !== "EISDIR") n(s); else fs$
|
|
20147
|
+
if (!s || s.code !== "EISDIR") n(s); else fs$5.chown(e, t, r, n);
|
|
20148
20148
|
} : (e, t, r, n) => n;
|
|
20149
20149
|
|
|
20150
20150
|
const handleEISDirSync = needEISDIRHandled ? (e, t, r) => {
|
|
@@ -20158,20 +20158,20 @@ const handleEISDirSync = needEISDIRHandled ? (e, t, r) => {
|
|
|
20158
20158
|
|
|
20159
20159
|
const nodeVersion = process.version;
|
|
20160
20160
|
|
|
20161
|
-
let readdir = (e, t, r) => fs$
|
|
20161
|
+
let readdir = (e, t, r) => fs$5.readdir(e, t, r);
|
|
20162
20162
|
|
|
20163
|
-
let readdirSync = (e, t) => fs$
|
|
20163
|
+
let readdirSync = (e, t) => fs$5.readdirSync(e, t);
|
|
20164
20164
|
|
|
20165
|
-
if (/^v4\./.test(nodeVersion)) readdir = (e, t, r) => fs$
|
|
20165
|
+
if (/^v4\./.test(nodeVersion)) readdir = (e, t, r) => fs$5.readdir(e, r);
|
|
20166
20166
|
|
|
20167
20167
|
const chown = (e, t, r, n) => {
|
|
20168
|
-
fs$
|
|
20168
|
+
fs$5[LCHOWN](e, t, r, handleEISDIR(e, t, r, (e => {
|
|
20169
20169
|
n(e && e.code !== "ENOENT" ? e : null);
|
|
20170
20170
|
})));
|
|
20171
20171
|
};
|
|
20172
20172
|
|
|
20173
20173
|
const chownrKid = (e, t, r, n, s) => {
|
|
20174
|
-
if (typeof t === "string") return fs$
|
|
20174
|
+
if (typeof t === "string") return fs$5.lstat(path$5.resolve(e, t), ((o, a) => {
|
|
20175
20175
|
if (o) return s(o.code !== "ENOENT" ? o : null);
|
|
20176
20176
|
a.name = t;
|
|
20177
20177
|
chownrKid(e, a, r, n, s);
|
|
@@ -20210,7 +20210,7 @@ const chownr$1 = (e, t, r, n) => {
|
|
|
20210
20210
|
const chownrKidSync = (e, t, r, n) => {
|
|
20211
20211
|
if (typeof t === "string") {
|
|
20212
20212
|
try {
|
|
20213
|
-
const r = fs$
|
|
20213
|
+
const r = fs$5.lstatSync(path$5.resolve(e, t));
|
|
20214
20214
|
r.name = t;
|
|
20215
20215
|
t = r;
|
|
20216
20216
|
} catch (e) {
|
|
@@ -20575,7 +20575,7 @@ var bl$1 = bl$3.exports;
|
|
|
20575
20575
|
|
|
20576
20576
|
const DuplexStream = readableExports.Duplex;
|
|
20577
20577
|
|
|
20578
|
-
const inherits$1 = index$
|
|
20578
|
+
const inherits$1 = index$o.requireInherits();
|
|
20579
20579
|
|
|
20580
20580
|
const BufferList = BufferList_1$1;
|
|
20581
20581
|
|
|
@@ -21164,13 +21164,13 @@ const extract$3 = _commonjsHelpers.getDefaultExportFromCjs(extract$2);
|
|
|
21164
21164
|
|
|
21165
21165
|
var fsConstants = require$$0__default$5.default.constants || require$$1__default$3.default;
|
|
21166
21166
|
|
|
21167
|
-
const index$
|
|
21167
|
+
const index$i = _commonjsHelpers.getDefaultExportFromCjs(fsConstants);
|
|
21168
21168
|
|
|
21169
21169
|
var constants$1 = fsConstants;
|
|
21170
21170
|
|
|
21171
21171
|
var eos = Logger.endOfStream;
|
|
21172
21172
|
|
|
21173
|
-
var inherits = index$
|
|
21173
|
+
var inherits = index$o.requireInherits();
|
|
21174
21174
|
|
|
21175
21175
|
var alloc = Buffer.alloc;
|
|
21176
21176
|
|
|
@@ -21420,7 +21420,7 @@ var pack$1 = tarStream.pack = pack$2;
|
|
|
21420
21420
|
|
|
21421
21421
|
var path$4 = require$$0__default$4.default;
|
|
21422
21422
|
|
|
21423
|
-
var fs$
|
|
21423
|
+
var fs$4 = require$$0__default$5.default;
|
|
21424
21424
|
|
|
21425
21425
|
var _0777 = parseInt("0777", 8);
|
|
21426
21426
|
|
|
@@ -21436,7 +21436,7 @@ function mkdirP(e, t, r, n) {
|
|
|
21436
21436
|
};
|
|
21437
21437
|
}
|
|
21438
21438
|
var s = t.mode;
|
|
21439
|
-
var o = t.fs || fs$
|
|
21439
|
+
var o = t.fs || fs$4;
|
|
21440
21440
|
if (s === undefined) {
|
|
21441
21441
|
s = _0777 & ~process.umask();
|
|
21442
21442
|
}
|
|
@@ -21471,7 +21471,7 @@ mkdirP.sync = function e(t, r, n) {
|
|
|
21471
21471
|
};
|
|
21472
21472
|
}
|
|
21473
21473
|
var s = r.mode;
|
|
21474
|
-
var o = r.fs || fs$
|
|
21474
|
+
var o = r.fs || fs$4;
|
|
21475
21475
|
if (s === undefined) {
|
|
21476
21476
|
s = _0777 & ~process.umask();
|
|
21477
21477
|
}
|
|
@@ -21501,7 +21501,7 @@ mkdirP.sync = function e(t, r, n) {
|
|
|
21501
21501
|
return n;
|
|
21502
21502
|
};
|
|
21503
21503
|
|
|
21504
|
-
const index$
|
|
21504
|
+
const index$h = _commonjsHelpers.getDefaultExportFromCjs(mkdirpClassic);
|
|
21505
21505
|
|
|
21506
21506
|
var chownr = chownr_1;
|
|
21507
21507
|
|
|
@@ -21511,7 +21511,7 @@ var pump = Logger.pump_1;
|
|
|
21511
21511
|
|
|
21512
21512
|
var mkdirp = mkdirpClassic;
|
|
21513
21513
|
|
|
21514
|
-
var fs$
|
|
21514
|
+
var fs$3 = require$$0__default$5.default;
|
|
21515
21515
|
|
|
21516
21516
|
var path$3 = require$$0__default$4.default;
|
|
21517
21517
|
|
|
@@ -21564,7 +21564,7 @@ var strip = function(e, t) {
|
|
|
21564
21564
|
var pack = tarFs.pack = function(e, t) {
|
|
21565
21565
|
if (!e) e = ".";
|
|
21566
21566
|
if (!t) t = {};
|
|
21567
|
-
var r = t.fs || fs$
|
|
21567
|
+
var r = t.fs || fs$3;
|
|
21568
21568
|
var n = t.ignore || t.filter || noop$2;
|
|
21569
21569
|
var s = t.map || noop$2;
|
|
21570
21570
|
var o = t.mapStream || echo;
|
|
@@ -21658,7 +21658,7 @@ var processUmask = function() {
|
|
|
21658
21658
|
var extract = tarFs.extract = function(e, t) {
|
|
21659
21659
|
if (!e) e = ".";
|
|
21660
21660
|
if (!t) t = {};
|
|
21661
|
-
var r = t.fs || fs$
|
|
21661
|
+
var r = t.fs || fs$3;
|
|
21662
21662
|
var n = t.ignore || t.filter || noop$2;
|
|
21663
21663
|
var s = t.map || noop$2;
|
|
21664
21664
|
var o = t.mapStream || echo;
|
|
@@ -24826,7 +24826,7 @@ var CIPHER_SUITES = tlsHelpers.CIPHER_SUITES = void 0;
|
|
|
24826
24826
|
|
|
24827
24827
|
var getDefaultRootsData_1 = tlsHelpers.getDefaultRootsData = getDefaultRootsData;
|
|
24828
24828
|
|
|
24829
|
-
const fs$
|
|
24829
|
+
const fs$2 = require$$0__default$5.default;
|
|
24830
24830
|
|
|
24831
24831
|
CIPHER_SUITES = tlsHelpers.CIPHER_SUITES = process.env.GRPC_SSL_CIPHER_SUITES;
|
|
24832
24832
|
|
|
@@ -24837,7 +24837,7 @@ let defaultRootsData = null;
|
|
|
24837
24837
|
function getDefaultRootsData() {
|
|
24838
24838
|
if (DEFAULT_ROOTS_FILE_PATH) {
|
|
24839
24839
|
if (defaultRootsData === null) {
|
|
24840
|
-
defaultRootsData = fs$
|
|
24840
|
+
defaultRootsData = fs$2.readFileSync(DEFAULT_ROOTS_FILE_PATH);
|
|
24841
24841
|
}
|
|
24842
24842
|
return defaultRootsData;
|
|
24843
24843
|
}
|
|
@@ -29144,7 +29144,7 @@ function words(e, t, r) {
|
|
|
29144
29144
|
|
|
29145
29145
|
var lodash_camelcase = camelCase;
|
|
29146
29146
|
|
|
29147
|
-
const index$
|
|
29147
|
+
const index$g = _commonjsHelpers.getDefaultExportFromCjs(lodash_camelcase);
|
|
29148
29148
|
|
|
29149
29149
|
var src$1 = {
|
|
29150
29150
|
exports: {}
|
|
@@ -29160,9 +29160,9 @@ var minimal = {};
|
|
|
29160
29160
|
|
|
29161
29161
|
"use strict";
|
|
29162
29162
|
|
|
29163
|
-
var aspromise = asPromise;
|
|
29163
|
+
var aspromise = asPromise$1;
|
|
29164
29164
|
|
|
29165
|
-
function asPromise(e, t) {
|
|
29165
|
+
function asPromise$1(e, t) {
|
|
29166
29166
|
var r = new Array(arguments.length - 1), n = 0, s = 2, o = true;
|
|
29167
29167
|
while (s < arguments.length) r[n++] = arguments[s++];
|
|
29168
29168
|
return new Promise((function s(a, l) {
|
|
@@ -29187,7 +29187,7 @@ function asPromise(e, t) {
|
|
|
29187
29187
|
}));
|
|
29188
29188
|
}
|
|
29189
29189
|
|
|
29190
|
-
const index$
|
|
29190
|
+
const index$f = _commonjsHelpers.getDefaultExportFromCjs(aspromise);
|
|
29191
29191
|
|
|
29192
29192
|
var base64$1 = {};
|
|
29193
29193
|
|
|
@@ -29284,7 +29284,7 @@ var base64$1 = {};
|
|
|
29284
29284
|
};
|
|
29285
29285
|
})(base64$1);
|
|
29286
29286
|
|
|
29287
|
-
const index$
|
|
29287
|
+
const index$e = _commonjsHelpers.getDefaultExportFromCjs(base64$1);
|
|
29288
29288
|
|
|
29289
29289
|
"use strict";
|
|
29290
29290
|
|
|
@@ -29322,7 +29322,7 @@ EventEmitter$1.prototype.emit = function e(t) {
|
|
|
29322
29322
|
return this;
|
|
29323
29323
|
};
|
|
29324
29324
|
|
|
29325
|
-
const index$
|
|
29325
|
+
const index$d = _commonjsHelpers.getDefaultExportFromCjs(eventemitter);
|
|
29326
29326
|
|
|
29327
29327
|
"use strict";
|
|
29328
29328
|
|
|
@@ -29494,13 +29494,13 @@ function readUintBE(e, t) {
|
|
|
29494
29494
|
return (e[t] << 24 | e[t + 1] << 16 | e[t + 2] << 8 | e[t + 3]) >>> 0;
|
|
29495
29495
|
}
|
|
29496
29496
|
|
|
29497
|
-
const index$
|
|
29497
|
+
const index$c = _commonjsHelpers.getDefaultExportFromCjs(float);
|
|
29498
29498
|
|
|
29499
29499
|
"use strict";
|
|
29500
29500
|
|
|
29501
|
-
var inquire_1 = inquire;
|
|
29501
|
+
var inquire_1 = inquire$1;
|
|
29502
29502
|
|
|
29503
|
-
function inquire(moduleName) {
|
|
29503
|
+
function inquire$1(moduleName) {
|
|
29504
29504
|
try {
|
|
29505
29505
|
var mod = eval("quire".replace(/^/, "re"))(moduleName);
|
|
29506
29506
|
if (mod && (mod.length || Object.keys(mod).length)) return mod;
|
|
@@ -29508,7 +29508,7 @@ function inquire(moduleName) {
|
|
|
29508
29508
|
return null;
|
|
29509
29509
|
}
|
|
29510
29510
|
|
|
29511
|
-
const index$
|
|
29511
|
+
const index$b = _commonjsHelpers.getDefaultExportFromCjs(inquire_1);
|
|
29512
29512
|
|
|
29513
29513
|
var utf8$2 = {};
|
|
29514
29514
|
|
|
@@ -29574,7 +29574,7 @@ var utf8$2 = {};
|
|
|
29574
29574
|
};
|
|
29575
29575
|
})(utf8$2);
|
|
29576
29576
|
|
|
29577
|
-
const index$
|
|
29577
|
+
const index$a = _commonjsHelpers.getDefaultExportFromCjs(utf8$2);
|
|
29578
29578
|
|
|
29579
29579
|
"use strict";
|
|
29580
29580
|
|
|
@@ -29597,7 +29597,7 @@ function pool(e, t, r) {
|
|
|
29597
29597
|
};
|
|
29598
29598
|
}
|
|
29599
29599
|
|
|
29600
|
-
const index$
|
|
29600
|
+
const index$9 = _commonjsHelpers.getDefaultExportFromCjs(pool_1);
|
|
29601
29601
|
|
|
29602
29602
|
var longbits;
|
|
29603
29603
|
|
|
@@ -30464,152 +30464,141 @@ var util$5 = {
|
|
|
30464
30464
|
exports: {}
|
|
30465
30465
|
};
|
|
30466
30466
|
|
|
30467
|
-
|
|
30467
|
+
"use strict";
|
|
30468
30468
|
|
|
30469
|
-
var
|
|
30469
|
+
var codegen_1 = codegen;
|
|
30470
30470
|
|
|
30471
|
-
function
|
|
30472
|
-
if (
|
|
30473
|
-
|
|
30474
|
-
|
|
30475
|
-
|
|
30476
|
-
|
|
30477
|
-
|
|
30478
|
-
|
|
30479
|
-
t =
|
|
30480
|
-
|
|
30481
|
-
|
|
30482
|
-
|
|
30483
|
-
|
|
30484
|
-
|
|
30485
|
-
|
|
30486
|
-
|
|
30487
|
-
if (t) {
|
|
30488
|
-
var a = Object.keys(t), l = new Array(a.length + 1), c = new Array(a.length), u = 0;
|
|
30489
|
-
while (u < a.length) {
|
|
30490
|
-
l[u] = a[u];
|
|
30491
|
-
c[u] = t[a[u++]];
|
|
30492
|
-
}
|
|
30493
|
-
l[u] = r;
|
|
30494
|
-
return Function.apply(null, l).apply(null, c);
|
|
30471
|
+
function codegen(e, t) {
|
|
30472
|
+
if (typeof e === "string") {
|
|
30473
|
+
t = e;
|
|
30474
|
+
e = undefined;
|
|
30475
|
+
}
|
|
30476
|
+
var r = [];
|
|
30477
|
+
function n(e) {
|
|
30478
|
+
if (typeof e !== "string") {
|
|
30479
|
+
var t = s();
|
|
30480
|
+
if (codegen.verbose) console.log("codegen: " + t);
|
|
30481
|
+
t = "return " + t;
|
|
30482
|
+
if (e) {
|
|
30483
|
+
var o = Object.keys(e), a = new Array(o.length + 1), l = new Array(o.length), c = 0;
|
|
30484
|
+
while (c < o.length) {
|
|
30485
|
+
a[c] = o[c];
|
|
30486
|
+
l[c] = e[o[c++]];
|
|
30495
30487
|
}
|
|
30496
|
-
|
|
30488
|
+
a[c] = t;
|
|
30489
|
+
return Function.apply(null, a).apply(null, l);
|
|
30497
30490
|
}
|
|
30498
|
-
|
|
30499
|
-
|
|
30500
|
-
|
|
30501
|
-
|
|
30502
|
-
|
|
30503
|
-
|
|
30504
|
-
|
|
30505
|
-
|
|
30506
|
-
|
|
30491
|
+
return Function(t)();
|
|
30492
|
+
}
|
|
30493
|
+
var u = new Array(arguments.length - 1), d = 0;
|
|
30494
|
+
while (d < u.length) u[d] = arguments[++d];
|
|
30495
|
+
d = 0;
|
|
30496
|
+
e = e.replace(/%([%dfijs])/g, (function e(t, r) {
|
|
30497
|
+
var n = u[d++];
|
|
30498
|
+
switch (r) {
|
|
30499
|
+
case "d":
|
|
30500
|
+
case "f":
|
|
30501
|
+
return String(Number(n));
|
|
30507
30502
|
|
|
30508
|
-
|
|
30509
|
-
|
|
30503
|
+
case "i":
|
|
30504
|
+
return String(Math.floor(n));
|
|
30510
30505
|
|
|
30511
|
-
|
|
30512
|
-
|
|
30506
|
+
case "j":
|
|
30507
|
+
return JSON.stringify(n);
|
|
30513
30508
|
|
|
30514
|
-
|
|
30515
|
-
|
|
30516
|
-
|
|
30517
|
-
|
|
30518
|
-
|
|
30519
|
-
|
|
30520
|
-
|
|
30521
|
-
|
|
30522
|
-
|
|
30523
|
-
|
|
30524
|
-
|
|
30525
|
-
}
|
|
30526
|
-
s.toString = o;
|
|
30527
|
-
return s;
|
|
30509
|
+
case "s":
|
|
30510
|
+
return String(n);
|
|
30511
|
+
}
|
|
30512
|
+
return "%";
|
|
30513
|
+
}));
|
|
30514
|
+
if (d !== u.length) throw Error("parameter count mismatch");
|
|
30515
|
+
r.push(e);
|
|
30516
|
+
return n;
|
|
30517
|
+
}
|
|
30518
|
+
function s(n) {
|
|
30519
|
+
return "function " + (n || t || "") + "(" + (e && e.join(",") || "") + "){\n " + r.join("\n ") + "\n}";
|
|
30528
30520
|
}
|
|
30529
|
-
|
|
30530
|
-
return
|
|
30521
|
+
n.toString = s;
|
|
30522
|
+
return n;
|
|
30531
30523
|
}
|
|
30532
30524
|
|
|
30533
|
-
|
|
30525
|
+
codegen.verbose = false;
|
|
30534
30526
|
|
|
30535
|
-
|
|
30527
|
+
const index$8 = _commonjsHelpers.getDefaultExportFromCjs(codegen_1);
|
|
30536
30528
|
|
|
30537
|
-
|
|
30538
|
-
|
|
30539
|
-
|
|
30540
|
-
|
|
30541
|
-
|
|
30542
|
-
|
|
30543
|
-
|
|
30544
|
-
|
|
30545
|
-
|
|
30546
|
-
|
|
30547
|
-
|
|
30548
|
-
|
|
30549
|
-
|
|
30550
|
-
|
|
30551
|
-
|
|
30552
|
-
|
|
30553
|
-
|
|
30554
|
-
|
|
30555
|
-
|
|
30556
|
-
|
|
30557
|
-
|
|
30558
|
-
|
|
30559
|
-
|
|
30560
|
-
|
|
30561
|
-
|
|
30562
|
-
if (!t) {
|
|
30563
|
-
t = [];
|
|
30564
|
-
for (var o = 0; o < s.responseText.length; ++o) t.push(s.responseText.charCodeAt(o) & 255);
|
|
30565
|
-
}
|
|
30566
|
-
return n(null, typeof Uint8Array !== "undefined" ? new Uint8Array(t) : t);
|
|
30567
|
-
}
|
|
30568
|
-
return n(null, s.responseText);
|
|
30569
|
-
};
|
|
30529
|
+
"use strict";
|
|
30530
|
+
|
|
30531
|
+
var fetch_1 = fetch$1;
|
|
30532
|
+
|
|
30533
|
+
var asPromise = aspromise, inquire = inquire_1;
|
|
30534
|
+
|
|
30535
|
+
var fs$1 = inquire("fs");
|
|
30536
|
+
|
|
30537
|
+
function fetch$1(e, t, r) {
|
|
30538
|
+
if (typeof t === "function") {
|
|
30539
|
+
r = t;
|
|
30540
|
+
t = {};
|
|
30541
|
+
} else if (!t) t = {};
|
|
30542
|
+
if (!r) return asPromise(fetch$1, this, e, t);
|
|
30543
|
+
if (!t.xhr && fs$1 && fs$1.readFile) return fs$1.readFile(e, (function n(s, o) {
|
|
30544
|
+
return s && typeof XMLHttpRequest !== "undefined" ? fetch$1.xhr(e, t, r) : s ? r(s) : r(null, t.binary ? o : o.toString("utf8"));
|
|
30545
|
+
}));
|
|
30546
|
+
return fetch$1.xhr(e, t, r);
|
|
30547
|
+
}
|
|
30548
|
+
|
|
30549
|
+
fetch$1.xhr = function e(t, r, n) {
|
|
30550
|
+
var s = new XMLHttpRequest;
|
|
30551
|
+
s.onreadystatechange = function e() {
|
|
30552
|
+
if (s.readyState !== 4) return undefined;
|
|
30553
|
+
if (s.status !== 0 && s.status !== 200) return n(Error("status " + s.status));
|
|
30570
30554
|
if (r.binary) {
|
|
30571
|
-
|
|
30572
|
-
|
|
30555
|
+
var t = s.response;
|
|
30556
|
+
if (!t) {
|
|
30557
|
+
t = [];
|
|
30558
|
+
for (var o = 0; o < s.responseText.length; ++o) t.push(s.responseText.charCodeAt(o) & 255);
|
|
30559
|
+
}
|
|
30560
|
+
return n(null, typeof Uint8Array !== "undefined" ? new Uint8Array(t) : t);
|
|
30573
30561
|
}
|
|
30574
|
-
|
|
30575
|
-
s.send();
|
|
30562
|
+
return n(null, s.responseText);
|
|
30576
30563
|
};
|
|
30577
|
-
|
|
30578
|
-
|
|
30564
|
+
if (r.binary) {
|
|
30565
|
+
if ("overrideMimeType" in s) s.overrideMimeType("text/plain; charset=x-user-defined");
|
|
30566
|
+
s.responseType = "arraybuffer";
|
|
30567
|
+
}
|
|
30568
|
+
s.open("GET", t);
|
|
30569
|
+
s.send();
|
|
30570
|
+
};
|
|
30571
|
+
|
|
30572
|
+
const index$7 = _commonjsHelpers.getDefaultExportFromCjs(fetch_1);
|
|
30579
30573
|
|
|
30580
30574
|
var path$2 = {};
|
|
30581
30575
|
|
|
30582
|
-
|
|
30576
|
+
(function(e) {
|
|
30577
|
+
"use strict";
|
|
30578
|
+
var t = e;
|
|
30579
|
+
var r = t.isAbsolute = function e(t) {
|
|
30580
|
+
return /^(?:\/|\w+:)/.test(t);
|
|
30581
|
+
};
|
|
30582
|
+
var n = t.normalize = function e(t) {
|
|
30583
|
+
t = t.replace(/\\/g, "/").replace(/\/{2,}/g, "/");
|
|
30584
|
+
var n = t.split("/"), s = r(t), o = "";
|
|
30585
|
+
if (s) o = n.shift() + "/";
|
|
30586
|
+
for (var a = 0; a < n.length; ) {
|
|
30587
|
+
if (n[a] === "..") {
|
|
30588
|
+
if (a > 0 && n[a - 1] !== "..") n.splice(--a, 2); else if (s) n.splice(a, 1); else ++a;
|
|
30589
|
+
} else if (n[a] === ".") n.splice(a, 1); else ++a;
|
|
30590
|
+
}
|
|
30591
|
+
return o + n.join("/");
|
|
30592
|
+
};
|
|
30593
|
+
t.resolve = function e(t, s, o) {
|
|
30594
|
+
if (!o) s = n(s);
|
|
30595
|
+
if (r(s)) return s;
|
|
30596
|
+
if (!o) t = n(t);
|
|
30597
|
+
return (t = t.replace(/(?:\/|^)[^/]+$/, "")).length ? n(t + "/" + s) : s;
|
|
30598
|
+
};
|
|
30599
|
+
})(path$2);
|
|
30583
30600
|
|
|
30584
|
-
|
|
30585
|
-
if (hasRequiredPath) return path$2;
|
|
30586
|
-
hasRequiredPath = 1;
|
|
30587
|
-
(function(e) {
|
|
30588
|
-
"use strict";
|
|
30589
|
-
var t = e;
|
|
30590
|
-
var r = t.isAbsolute = function e(t) {
|
|
30591
|
-
return /^(?:\/|\w+:)/.test(t);
|
|
30592
|
-
};
|
|
30593
|
-
var n = t.normalize = function e(t) {
|
|
30594
|
-
t = t.replace(/\\/g, "/").replace(/\/{2,}/g, "/");
|
|
30595
|
-
var n = t.split("/"), s = r(t), o = "";
|
|
30596
|
-
if (s) o = n.shift() + "/";
|
|
30597
|
-
for (var a = 0; a < n.length; ) {
|
|
30598
|
-
if (n[a] === "..") {
|
|
30599
|
-
if (a > 0 && n[a - 1] !== "..") n.splice(--a, 2); else if (s) n.splice(a, 1); else ++a;
|
|
30600
|
-
} else if (n[a] === ".") n.splice(a, 1); else ++a;
|
|
30601
|
-
}
|
|
30602
|
-
return o + n.join("/");
|
|
30603
|
-
};
|
|
30604
|
-
t.resolve = function e(t, s, o) {
|
|
30605
|
-
if (!o) s = n(s);
|
|
30606
|
-
if (r(s)) return s;
|
|
30607
|
-
if (!o) t = n(t);
|
|
30608
|
-
return (t = t.replace(/(?:\/|^)[^/]+$/, "")).length ? n(t + "/" + s) : s;
|
|
30609
|
-
};
|
|
30610
|
-
})(path$2);
|
|
30611
|
-
return path$2;
|
|
30612
|
-
}
|
|
30601
|
+
const index$6 = _commonjsHelpers.getDefaultExportFromCjs(path$2);
|
|
30613
30602
|
|
|
30614
30603
|
var namespace;
|
|
30615
30604
|
|
|
@@ -31904,9 +31893,9 @@ function requireUtil() {
|
|
|
31904
31893
|
var e = util$5.exports = requireMinimal();
|
|
31905
31894
|
var t = roots;
|
|
31906
31895
|
var r, n;
|
|
31907
|
-
e.codegen =
|
|
31908
|
-
e.fetch =
|
|
31909
|
-
e.path =
|
|
31896
|
+
e.codegen = codegen_1;
|
|
31897
|
+
e.fetch = fetch_1;
|
|
31898
|
+
e.path = path$2;
|
|
31910
31899
|
e.fs = e.inquire("fs");
|
|
31911
31900
|
e.toArray = function e(t) {
|
|
31912
31901
|
if (t) {
|
|
@@ -46690,7 +46679,7 @@ function withSession$1(e, t, r) {
|
|
|
46690
46679
|
const osForLoadProto=require('os');
|
|
46691
46680
|
const authProtoTempDir=path.resolve(osForLoadProto.tmpdir(),'.tempProto');
|
|
46692
46681
|
if(!fsForLoadProto.existsSync(authProtoTempDir)) fsForLoadProto.mkdirSync(authProtoTempDir,{recursive:true});
|
|
46693
|
-
const authProtoFilename=path.resolve(authProtoTempDir,"lakutata.2.0.
|
|
46682
|
+
const authProtoFilename=path.resolve(authProtoTempDir,"lakutata.2.0.64.docker.auth.proto");
|
|
46694
46683
|
if(!fsForLoadProto.existsSync(authProtoFilename)) fsForLoadProto.writeFileSync(authProtoFilename,Buffer.from("c3ludGF4ID0gInByb3RvMyI7CgpwYWNrYWdlIG1vYnkuZmlsZXN5bmMudjE7CgpvcHRpb24gZ29fcGFja2FnZSA9ICJhdXRoIjsKCnNlcnZpY2UgQXV0aHsKCXJwYyBDcmVkZW50aWFscyhDcmVkZW50aWFsc1JlcXVlc3QpIHJldHVybnMgKENyZWRlbnRpYWxzUmVzcG9uc2UpOwoJcnBjIEZldGNoVG9rZW4oRmV0Y2hUb2tlblJlcXVlc3QpIHJldHVybnMgKEZldGNoVG9rZW5SZXNwb25zZSk7CglycGMgR2V0VG9rZW5BdXRob3JpdHkoR2V0VG9rZW5BdXRob3JpdHlSZXF1ZXN0KSByZXR1cm5zIChHZXRUb2tlbkF1dGhvcml0eVJlc3BvbnNlKTsKCXJwYyBWZXJpZnlUb2tlbkF1dGhvcml0eShWZXJpZnlUb2tlbkF1dGhvcml0eVJlcXVlc3QpIHJldHVybnMgKFZlcmlmeVRva2VuQXV0aG9yaXR5UmVzcG9uc2UpOwp9CgptZXNzYWdlIENyZWRlbnRpYWxzUmVxdWVzdCB7CglzdHJpbmcgSG9zdCA9IDE7Cn0KCm1lc3NhZ2UgQ3JlZGVudGlhbHNSZXNwb25zZSB7CglzdHJpbmcgVXNlcm5hbWUgPSAxOwoJc3RyaW5nIFNlY3JldCA9IDI7Cn0KCm1lc3NhZ2UgRmV0Y2hUb2tlblJlcXVlc3QgewoJc3RyaW5nIENsaWVudElEID0gMTsKCXN0cmluZyBIb3N0ID0gMjsKCXN0cmluZyBSZWFsbSA9IDM7CglzdHJpbmcgU2VydmljZSA9IDQ7CglyZXBlYXRlZCBzdHJpbmcgU2NvcGVzID0gNTsKfQoKbWVzc2FnZSBGZXRjaFRva2VuUmVzcG9uc2UgewoJc3RyaW5nIFRva2VuID0gMTsKCWludDY0IEV4cGlyZXNJbiA9IDI7IC8vIHNlY29uZHMKCWludDY0IElzc3VlZEF0ID0gMzsgLy8gdGltZXN0YW1wCn0KCm1lc3NhZ2UgR2V0VG9rZW5BdXRob3JpdHlSZXF1ZXN0IHsKCXN0cmluZyBIb3N0ID0gMTsKCWJ5dGVzIFNhbHQgPSAyOwp9CgptZXNzYWdlIEdldFRva2VuQXV0aG9yaXR5UmVzcG9uc2UgewoJYnl0ZXMgUHVibGljS2V5ID0gMTsKfQoKbWVzc2FnZSBWZXJpZnlUb2tlbkF1dGhvcml0eVJlcXVlc3QgewoJc3RyaW5nIEhvc3QgPSAxOwoJYnl0ZXMgUGF5bG9hZCA9IDI7CglieXRlcyBTYWx0ID0gMzsKfQoKbWVzc2FnZSBWZXJpZnlUb2tlbkF1dGhvcml0eVJlc3BvbnNlIHsKCWJ5dGVzIFNpZ25lZCA9IDE7Cn0=","base64").toString("utf-8"));
|
|
46695
46684
|
return protoLoader.loadSync(authProtoFilename);
|
|
46696
46685
|
})();
|