@jsii/runtime 1.97.0 → 1.99.0
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 +10 -10
- package/webpack/bin/jsii-runtime.js +229 -218
- package/webpack/lib/program.js +713 -700
package/webpack/lib/program.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
var __webpack_modules__ = {
|
|
2
|
-
|
|
2
|
+
1165: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
3
3
|
"use strict";
|
|
4
|
-
const fs = __webpack_require__(
|
|
5
|
-
const path = __webpack_require__(
|
|
4
|
+
const fs = __webpack_require__(9896);
|
|
5
|
+
const path = __webpack_require__(6928);
|
|
6
6
|
const LCHOWN = fs.lchown ? "lchown" : "chown";
|
|
7
7
|
const LCHOWNSYNC = fs.lchownSync ? "lchownSync" : "chownSync";
|
|
8
8
|
const needEISDIRHandled = fs.lchown && !process.version.match(/v1[1-9]+\./) && !process.version.match(/v10\.[6-9]/);
|
|
@@ -103,7 +103,7 @@ var __webpack_modules__ = {
|
|
|
103
103
|
module.exports = chownr;
|
|
104
104
|
chownr.sync = chownrSync;
|
|
105
105
|
},
|
|
106
|
-
|
|
106
|
+
4771: module => {
|
|
107
107
|
"use strict";
|
|
108
108
|
module.exports = function equal(a, b) {
|
|
109
109
|
if (a === b) return true;
|
|
@@ -132,13 +132,13 @@ var __webpack_modules__ = {
|
|
|
132
132
|
return a !== a && b !== b;
|
|
133
133
|
};
|
|
134
134
|
},
|
|
135
|
-
|
|
135
|
+
9662: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
136
136
|
"use strict";
|
|
137
|
-
const fs = __webpack_require__(
|
|
138
|
-
const path = __webpack_require__(
|
|
139
|
-
const mkdirsSync = __webpack_require__(
|
|
140
|
-
const utimesMillisSync = __webpack_require__(
|
|
141
|
-
const stat = __webpack_require__(
|
|
137
|
+
const fs = __webpack_require__(9333);
|
|
138
|
+
const path = __webpack_require__(6928);
|
|
139
|
+
const mkdirsSync = __webpack_require__(2924).mkdirsSync;
|
|
140
|
+
const utimesMillisSync = __webpack_require__(721).utimesMillisSync;
|
|
141
|
+
const stat = __webpack_require__(9276);
|
|
142
142
|
function copySync(src, dest, opts) {
|
|
143
143
|
if (typeof opts === "function") {
|
|
144
144
|
opts = {
|
|
@@ -256,14 +256,14 @@ var __webpack_modules__ = {
|
|
|
256
256
|
}
|
|
257
257
|
module.exports = copySync;
|
|
258
258
|
},
|
|
259
|
-
|
|
259
|
+
8572: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
260
260
|
"use strict";
|
|
261
|
-
const fs = __webpack_require__(
|
|
262
|
-
const path = __webpack_require__(
|
|
263
|
-
const mkdirs = __webpack_require__(
|
|
264
|
-
const pathExists = __webpack_require__(
|
|
265
|
-
const utimesMillis = __webpack_require__(
|
|
266
|
-
const stat = __webpack_require__(
|
|
261
|
+
const fs = __webpack_require__(9333);
|
|
262
|
+
const path = __webpack_require__(6928);
|
|
263
|
+
const mkdirs = __webpack_require__(2924).mkdirs;
|
|
264
|
+
const pathExists = __webpack_require__(9270).pathExists;
|
|
265
|
+
const utimesMillis = __webpack_require__(721).utimesMillis;
|
|
266
|
+
const stat = __webpack_require__(9276);
|
|
267
267
|
function copy(src, dest, opts, cb) {
|
|
268
268
|
if (typeof opts === "function" && !cb) {
|
|
269
269
|
cb = opts;
|
|
@@ -442,21 +442,21 @@ var __webpack_modules__ = {
|
|
|
442
442
|
}
|
|
443
443
|
module.exports = copy;
|
|
444
444
|
},
|
|
445
|
-
|
|
445
|
+
7033: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
446
446
|
"use strict";
|
|
447
|
-
const u = __webpack_require__(
|
|
447
|
+
const u = __webpack_require__(9022).fromCallback;
|
|
448
448
|
module.exports = {
|
|
449
|
-
copy: u(__webpack_require__(
|
|
450
|
-
copySync: __webpack_require__(
|
|
449
|
+
copy: u(__webpack_require__(8572)),
|
|
450
|
+
copySync: __webpack_require__(9662)
|
|
451
451
|
};
|
|
452
452
|
},
|
|
453
|
-
|
|
453
|
+
9973: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
454
454
|
"use strict";
|
|
455
|
-
const u = __webpack_require__(
|
|
456
|
-
const fs = __webpack_require__(
|
|
457
|
-
const path = __webpack_require__(
|
|
458
|
-
const mkdir = __webpack_require__(
|
|
459
|
-
const remove = __webpack_require__(
|
|
455
|
+
const u = __webpack_require__(9022).fromPromise;
|
|
456
|
+
const fs = __webpack_require__(6203);
|
|
457
|
+
const path = __webpack_require__(6928);
|
|
458
|
+
const mkdir = __webpack_require__(2924);
|
|
459
|
+
const remove = __webpack_require__(7948);
|
|
460
460
|
const emptyDir = u((async function emptyDir(dir) {
|
|
461
461
|
let items;
|
|
462
462
|
try {
|
|
@@ -485,12 +485,12 @@ var __webpack_modules__ = {
|
|
|
485
485
|
emptydir: emptyDir
|
|
486
486
|
};
|
|
487
487
|
},
|
|
488
|
-
|
|
488
|
+
8786: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
489
489
|
"use strict";
|
|
490
|
-
const u = __webpack_require__(
|
|
491
|
-
const path = __webpack_require__(
|
|
492
|
-
const fs = __webpack_require__(
|
|
493
|
-
const mkdir = __webpack_require__(
|
|
490
|
+
const u = __webpack_require__(9022).fromCallback;
|
|
491
|
+
const path = __webpack_require__(6928);
|
|
492
|
+
const fs = __webpack_require__(9333);
|
|
493
|
+
const mkdir = __webpack_require__(2924);
|
|
494
494
|
function createFile(file, callback) {
|
|
495
495
|
function makeFile() {
|
|
496
496
|
fs.writeFile(file, "", (err => {
|
|
@@ -540,11 +540,11 @@ var __webpack_modules__ = {
|
|
|
540
540
|
createFileSync
|
|
541
541
|
};
|
|
542
542
|
},
|
|
543
|
-
|
|
543
|
+
3046: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
544
544
|
"use strict";
|
|
545
|
-
const {createFile, createFileSync} = __webpack_require__(
|
|
546
|
-
const {createLink, createLinkSync} = __webpack_require__(
|
|
547
|
-
const {createSymlink, createSymlinkSync} = __webpack_require__(
|
|
545
|
+
const {createFile, createFileSync} = __webpack_require__(8786);
|
|
546
|
+
const {createLink, createLinkSync} = __webpack_require__(9272);
|
|
547
|
+
const {createSymlink, createSymlinkSync} = __webpack_require__(3649);
|
|
548
548
|
module.exports = {
|
|
549
549
|
createFile,
|
|
550
550
|
createFileSync,
|
|
@@ -560,14 +560,14 @@ var __webpack_modules__ = {
|
|
|
560
560
|
ensureSymlinkSync: createSymlinkSync
|
|
561
561
|
};
|
|
562
562
|
},
|
|
563
|
-
|
|
563
|
+
9272: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
564
564
|
"use strict";
|
|
565
|
-
const u = __webpack_require__(
|
|
566
|
-
const path = __webpack_require__(
|
|
567
|
-
const fs = __webpack_require__(
|
|
568
|
-
const mkdir = __webpack_require__(
|
|
569
|
-
const pathExists = __webpack_require__(
|
|
570
|
-
const {areIdentical} = __webpack_require__(
|
|
565
|
+
const u = __webpack_require__(9022).fromCallback;
|
|
566
|
+
const path = __webpack_require__(6928);
|
|
567
|
+
const fs = __webpack_require__(9333);
|
|
568
|
+
const mkdir = __webpack_require__(2924);
|
|
569
|
+
const pathExists = __webpack_require__(9270).pathExists;
|
|
570
|
+
const {areIdentical} = __webpack_require__(9276);
|
|
571
571
|
function createLink(srcpath, dstpath, callback) {
|
|
572
572
|
function makeLink(srcpath, dstpath) {
|
|
573
573
|
fs.link(srcpath, dstpath, (err => {
|
|
@@ -617,11 +617,11 @@ var __webpack_modules__ = {
|
|
|
617
617
|
createLinkSync
|
|
618
618
|
};
|
|
619
619
|
},
|
|
620
|
-
|
|
620
|
+
768: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
621
621
|
"use strict";
|
|
622
|
-
const path = __webpack_require__(
|
|
623
|
-
const fs = __webpack_require__(
|
|
624
|
-
const pathExists = __webpack_require__(
|
|
622
|
+
const path = __webpack_require__(6928);
|
|
623
|
+
const fs = __webpack_require__(9333);
|
|
624
|
+
const pathExists = __webpack_require__(9270).pathExists;
|
|
625
625
|
function symlinkPaths(srcpath, dstpath, callback) {
|
|
626
626
|
if (path.isAbsolute(srcpath)) {
|
|
627
627
|
return fs.lstat(srcpath, (err => {
|
|
@@ -692,9 +692,9 @@ var __webpack_modules__ = {
|
|
|
692
692
|
symlinkPathsSync
|
|
693
693
|
};
|
|
694
694
|
},
|
|
695
|
-
|
|
695
|
+
514: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
696
696
|
"use strict";
|
|
697
|
-
const fs = __webpack_require__(
|
|
697
|
+
const fs = __webpack_require__(9333);
|
|
698
698
|
function symlinkType(srcpath, type, callback) {
|
|
699
699
|
callback = typeof type === "function" ? type : callback;
|
|
700
700
|
type = typeof type === "function" ? false : type;
|
|
@@ -720,22 +720,22 @@ var __webpack_modules__ = {
|
|
|
720
720
|
symlinkTypeSync
|
|
721
721
|
};
|
|
722
722
|
},
|
|
723
|
-
|
|
723
|
+
3649: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
724
724
|
"use strict";
|
|
725
|
-
const u = __webpack_require__(
|
|
726
|
-
const path = __webpack_require__(
|
|
727
|
-
const fs = __webpack_require__(
|
|
728
|
-
const _mkdirs = __webpack_require__(
|
|
725
|
+
const u = __webpack_require__(9022).fromCallback;
|
|
726
|
+
const path = __webpack_require__(6928);
|
|
727
|
+
const fs = __webpack_require__(6203);
|
|
728
|
+
const _mkdirs = __webpack_require__(2924);
|
|
729
729
|
const mkdirs = _mkdirs.mkdirs;
|
|
730
730
|
const mkdirsSync = _mkdirs.mkdirsSync;
|
|
731
|
-
const _symlinkPaths = __webpack_require__(
|
|
731
|
+
const _symlinkPaths = __webpack_require__(768);
|
|
732
732
|
const symlinkPaths = _symlinkPaths.symlinkPaths;
|
|
733
733
|
const symlinkPathsSync = _symlinkPaths.symlinkPathsSync;
|
|
734
|
-
const _symlinkType = __webpack_require__(
|
|
734
|
+
const _symlinkType = __webpack_require__(514);
|
|
735
735
|
const symlinkType = _symlinkType.symlinkType;
|
|
736
736
|
const symlinkTypeSync = _symlinkType.symlinkTypeSync;
|
|
737
|
-
const pathExists = __webpack_require__(
|
|
738
|
-
const {areIdentical} = __webpack_require__(
|
|
737
|
+
const pathExists = __webpack_require__(9270).pathExists;
|
|
738
|
+
const {areIdentical} = __webpack_require__(9276);
|
|
739
739
|
function createSymlink(srcpath, dstpath, type, callback) {
|
|
740
740
|
callback = typeof type === "function" ? type : callback;
|
|
741
741
|
type = typeof type === "function" ? false : type;
|
|
@@ -790,10 +790,10 @@ var __webpack_modules__ = {
|
|
|
790
790
|
createSymlinkSync
|
|
791
791
|
};
|
|
792
792
|
},
|
|
793
|
-
|
|
793
|
+
6203: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
794
794
|
"use strict";
|
|
795
|
-
const u = __webpack_require__(
|
|
796
|
-
const fs = __webpack_require__(
|
|
795
|
+
const u = __webpack_require__(9022).fromCallback;
|
|
796
|
+
const fs = __webpack_require__(9333);
|
|
797
797
|
const api = [ "access", "appendFile", "chmod", "chown", "close", "copyFile", "fchmod", "fchown", "fdatasync", "fstat", "fsync", "ftruncate", "futimes", "lchmod", "lchown", "link", "lstat", "mkdir", "mkdtemp", "open", "opendir", "readdir", "readFile", "readlink", "realpath", "rename", "rm", "rmdir", "stat", "symlink", "truncate", "unlink", "utimes", "writeFile" ].filter((key => typeof fs[key] === "function"));
|
|
798
798
|
Object.assign(exports, fs);
|
|
799
799
|
api.forEach((method => {
|
|
@@ -855,27 +855,27 @@ var __webpack_modules__ = {
|
|
|
855
855
|
process.emitWarning("fs.realpath.native is not a function. Is fs being monkey-patched?", "Warning", "fs-extra-WARN0003");
|
|
856
856
|
}
|
|
857
857
|
},
|
|
858
|
-
|
|
858
|
+
8463: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
859
859
|
"use strict";
|
|
860
860
|
module.exports = {
|
|
861
|
-
...__webpack_require__(
|
|
862
|
-
...__webpack_require__(
|
|
863
|
-
...__webpack_require__(
|
|
864
|
-
...__webpack_require__(
|
|
865
|
-
...__webpack_require__(
|
|
866
|
-
...__webpack_require__(
|
|
867
|
-
...__webpack_require__(
|
|
868
|
-
...__webpack_require__(
|
|
869
|
-
...__webpack_require__(
|
|
870
|
-
...__webpack_require__(
|
|
861
|
+
...__webpack_require__(6203),
|
|
862
|
+
...__webpack_require__(7033),
|
|
863
|
+
...__webpack_require__(9973),
|
|
864
|
+
...__webpack_require__(3046),
|
|
865
|
+
...__webpack_require__(7050),
|
|
866
|
+
...__webpack_require__(2924),
|
|
867
|
+
...__webpack_require__(3801),
|
|
868
|
+
...__webpack_require__(4870),
|
|
869
|
+
...__webpack_require__(9270),
|
|
870
|
+
...__webpack_require__(7948)
|
|
871
871
|
};
|
|
872
872
|
},
|
|
873
|
-
|
|
873
|
+
7050: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
874
874
|
"use strict";
|
|
875
|
-
const u = __webpack_require__(
|
|
876
|
-
const jsonFile = __webpack_require__(
|
|
877
|
-
jsonFile.outputJson = u(__webpack_require__(
|
|
878
|
-
jsonFile.outputJsonSync = __webpack_require__(
|
|
875
|
+
const u = __webpack_require__(9022).fromPromise;
|
|
876
|
+
const jsonFile = __webpack_require__(5652);
|
|
877
|
+
jsonFile.outputJson = u(__webpack_require__(9508));
|
|
878
|
+
jsonFile.outputJsonSync = __webpack_require__(4678);
|
|
879
879
|
jsonFile.outputJSON = jsonFile.outputJson;
|
|
880
880
|
jsonFile.outputJSONSync = jsonFile.outputJsonSync;
|
|
881
881
|
jsonFile.writeJSON = jsonFile.writeJson;
|
|
@@ -884,9 +884,9 @@ var __webpack_modules__ = {
|
|
|
884
884
|
jsonFile.readJSONSync = jsonFile.readJsonSync;
|
|
885
885
|
module.exports = jsonFile;
|
|
886
886
|
},
|
|
887
|
-
|
|
887
|
+
5652: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
888
888
|
"use strict";
|
|
889
|
-
const jsonFile = __webpack_require__(
|
|
889
|
+
const jsonFile = __webpack_require__(3023);
|
|
890
890
|
module.exports = {
|
|
891
891
|
readJson: jsonFile.readFile,
|
|
892
892
|
readJsonSync: jsonFile.readFileSync,
|
|
@@ -894,30 +894,30 @@ var __webpack_modules__ = {
|
|
|
894
894
|
writeJsonSync: jsonFile.writeFileSync
|
|
895
895
|
};
|
|
896
896
|
},
|
|
897
|
-
|
|
897
|
+
4678: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
898
898
|
"use strict";
|
|
899
|
-
const {stringify} = __webpack_require__(
|
|
900
|
-
const {outputFileSync} = __webpack_require__(
|
|
899
|
+
const {stringify} = __webpack_require__(7578);
|
|
900
|
+
const {outputFileSync} = __webpack_require__(4870);
|
|
901
901
|
function outputJsonSync(file, data, options) {
|
|
902
902
|
const str = stringify(data, options);
|
|
903
903
|
outputFileSync(file, str, options);
|
|
904
904
|
}
|
|
905
905
|
module.exports = outputJsonSync;
|
|
906
906
|
},
|
|
907
|
-
|
|
907
|
+
9508: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
908
908
|
"use strict";
|
|
909
|
-
const {stringify} = __webpack_require__(
|
|
910
|
-
const {outputFile} = __webpack_require__(
|
|
909
|
+
const {stringify} = __webpack_require__(7578);
|
|
910
|
+
const {outputFile} = __webpack_require__(4870);
|
|
911
911
|
async function outputJson(file, data, options = {}) {
|
|
912
912
|
const str = stringify(data, options);
|
|
913
913
|
await outputFile(file, str, options);
|
|
914
914
|
}
|
|
915
915
|
module.exports = outputJson;
|
|
916
916
|
},
|
|
917
|
-
|
|
917
|
+
2924: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
918
918
|
"use strict";
|
|
919
|
-
const u = __webpack_require__(
|
|
920
|
-
const {makeDir: _makeDir, makeDirSync} = __webpack_require__(
|
|
919
|
+
const u = __webpack_require__(9022).fromPromise;
|
|
920
|
+
const {makeDir: _makeDir, makeDirSync} = __webpack_require__(6522);
|
|
921
921
|
const makeDir = u(_makeDir);
|
|
922
922
|
module.exports = {
|
|
923
923
|
mkdirs: makeDir,
|
|
@@ -928,10 +928,10 @@ var __webpack_modules__ = {
|
|
|
928
928
|
ensureDirSync: makeDirSync
|
|
929
929
|
};
|
|
930
930
|
},
|
|
931
|
-
|
|
931
|
+
6522: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
932
932
|
"use strict";
|
|
933
|
-
const fs = __webpack_require__(
|
|
934
|
-
const {checkPath} = __webpack_require__(
|
|
933
|
+
const fs = __webpack_require__(6203);
|
|
934
|
+
const {checkPath} = __webpack_require__(4613);
|
|
935
935
|
const getMode = options => {
|
|
936
936
|
const defaults = {
|
|
937
937
|
mode: 511
|
|
@@ -957,9 +957,9 @@ var __webpack_modules__ = {
|
|
|
957
957
|
});
|
|
958
958
|
};
|
|
959
959
|
},
|
|
960
|
-
|
|
960
|
+
4613: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
961
961
|
"use strict";
|
|
962
|
-
const path = __webpack_require__(
|
|
962
|
+
const path = __webpack_require__(6928);
|
|
963
963
|
module.exports.checkPath = function checkPath(pth) {
|
|
964
964
|
if (process.platform === "win32") {
|
|
965
965
|
const pathHasInvalidWinCharacters = /[<>:"|?*]/.test(pth.replace(path.parse(pth).root, ""));
|
|
@@ -971,22 +971,22 @@ var __webpack_modules__ = {
|
|
|
971
971
|
}
|
|
972
972
|
};
|
|
973
973
|
},
|
|
974
|
-
|
|
974
|
+
3801: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
975
975
|
"use strict";
|
|
976
|
-
const u = __webpack_require__(
|
|
976
|
+
const u = __webpack_require__(9022).fromCallback;
|
|
977
977
|
module.exports = {
|
|
978
|
-
move: u(__webpack_require__(
|
|
979
|
-
moveSync: __webpack_require__(
|
|
978
|
+
move: u(__webpack_require__(4180)),
|
|
979
|
+
moveSync: __webpack_require__(7958)
|
|
980
980
|
};
|
|
981
981
|
},
|
|
982
|
-
|
|
982
|
+
7958: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
983
983
|
"use strict";
|
|
984
|
-
const fs = __webpack_require__(
|
|
985
|
-
const path = __webpack_require__(
|
|
986
|
-
const copySync = __webpack_require__(
|
|
987
|
-
const removeSync = __webpack_require__(
|
|
988
|
-
const mkdirpSync = __webpack_require__(
|
|
989
|
-
const stat = __webpack_require__(
|
|
984
|
+
const fs = __webpack_require__(9333);
|
|
985
|
+
const path = __webpack_require__(6928);
|
|
986
|
+
const copySync = __webpack_require__(7033).copySync;
|
|
987
|
+
const removeSync = __webpack_require__(7948).removeSync;
|
|
988
|
+
const mkdirpSync = __webpack_require__(2924).mkdirpSync;
|
|
989
|
+
const stat = __webpack_require__(9276);
|
|
990
990
|
function moveSync(src, dest, opts) {
|
|
991
991
|
opts = opts || {};
|
|
992
992
|
const overwrite = opts.overwrite || opts.clobber || false;
|
|
@@ -1027,15 +1027,15 @@ var __webpack_modules__ = {
|
|
|
1027
1027
|
}
|
|
1028
1028
|
module.exports = moveSync;
|
|
1029
1029
|
},
|
|
1030
|
-
|
|
1030
|
+
4180: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
1031
1031
|
"use strict";
|
|
1032
|
-
const fs = __webpack_require__(
|
|
1033
|
-
const path = __webpack_require__(
|
|
1034
|
-
const copy = __webpack_require__(
|
|
1035
|
-
const remove = __webpack_require__(
|
|
1036
|
-
const mkdirp = __webpack_require__(
|
|
1037
|
-
const pathExists = __webpack_require__(
|
|
1038
|
-
const stat = __webpack_require__(
|
|
1032
|
+
const fs = __webpack_require__(9333);
|
|
1033
|
+
const path = __webpack_require__(6928);
|
|
1034
|
+
const copy = __webpack_require__(7033).copy;
|
|
1035
|
+
const remove = __webpack_require__(7948).remove;
|
|
1036
|
+
const mkdirp = __webpack_require__(2924).mkdirp;
|
|
1037
|
+
const pathExists = __webpack_require__(9270).pathExists;
|
|
1038
|
+
const stat = __webpack_require__(9276);
|
|
1039
1039
|
function move(src, dest, opts, cb) {
|
|
1040
1040
|
if (typeof opts === "function") {
|
|
1041
1041
|
cb = opts;
|
|
@@ -1094,13 +1094,13 @@ var __webpack_modules__ = {
|
|
|
1094
1094
|
}
|
|
1095
1095
|
module.exports = move;
|
|
1096
1096
|
},
|
|
1097
|
-
|
|
1097
|
+
4870: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
1098
1098
|
"use strict";
|
|
1099
|
-
const u = __webpack_require__(
|
|
1100
|
-
const fs = __webpack_require__(
|
|
1101
|
-
const path = __webpack_require__(
|
|
1102
|
-
const mkdir = __webpack_require__(
|
|
1103
|
-
const pathExists = __webpack_require__(
|
|
1099
|
+
const u = __webpack_require__(9022).fromCallback;
|
|
1100
|
+
const fs = __webpack_require__(9333);
|
|
1101
|
+
const path = __webpack_require__(6928);
|
|
1102
|
+
const mkdir = __webpack_require__(2924);
|
|
1103
|
+
const pathExists = __webpack_require__(9270).pathExists;
|
|
1104
1104
|
function outputFile(file, data, encoding, callback) {
|
|
1105
1105
|
if (typeof encoding === "function") {
|
|
1106
1106
|
callback = encoding;
|
|
@@ -1129,10 +1129,10 @@ var __webpack_modules__ = {
|
|
|
1129
1129
|
outputFileSync
|
|
1130
1130
|
};
|
|
1131
1131
|
},
|
|
1132
|
-
|
|
1132
|
+
9270: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
1133
1133
|
"use strict";
|
|
1134
|
-
const u = __webpack_require__(
|
|
1135
|
-
const fs = __webpack_require__(
|
|
1134
|
+
const u = __webpack_require__(9022).fromPromise;
|
|
1135
|
+
const fs = __webpack_require__(6203);
|
|
1136
1136
|
function pathExists(path) {
|
|
1137
1137
|
return fs.access(path).then((() => true)).catch((() => false));
|
|
1138
1138
|
}
|
|
@@ -1141,11 +1141,11 @@ var __webpack_modules__ = {
|
|
|
1141
1141
|
pathExistsSync: fs.existsSync
|
|
1142
1142
|
};
|
|
1143
1143
|
},
|
|
1144
|
-
|
|
1144
|
+
7948: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
1145
1145
|
"use strict";
|
|
1146
|
-
const fs = __webpack_require__(
|
|
1147
|
-
const u = __webpack_require__(
|
|
1148
|
-
const rimraf = __webpack_require__(
|
|
1146
|
+
const fs = __webpack_require__(9333);
|
|
1147
|
+
const u = __webpack_require__(9022).fromCallback;
|
|
1148
|
+
const rimraf = __webpack_require__(3907);
|
|
1149
1149
|
function remove(path, callback) {
|
|
1150
1150
|
if (fs.rm) return fs.rm(path, {
|
|
1151
1151
|
recursive: true,
|
|
@@ -1165,11 +1165,11 @@ var __webpack_modules__ = {
|
|
|
1165
1165
|
removeSync
|
|
1166
1166
|
};
|
|
1167
1167
|
},
|
|
1168
|
-
|
|
1168
|
+
3907: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
1169
1169
|
"use strict";
|
|
1170
|
-
const fs = __webpack_require__(
|
|
1171
|
-
const path = __webpack_require__(
|
|
1172
|
-
const assert = __webpack_require__(
|
|
1170
|
+
const fs = __webpack_require__(9333);
|
|
1171
|
+
const path = __webpack_require__(6928);
|
|
1172
|
+
const assert = __webpack_require__(2613);
|
|
1173
1173
|
const isWindows = process.platform === "win32";
|
|
1174
1174
|
function defaults(options) {
|
|
1175
1175
|
const methods = [ "unlink", "chmod", "stat", "lstat", "rmdir", "readdir" ];
|
|
@@ -1388,11 +1388,11 @@ var __webpack_modules__ = {
|
|
|
1388
1388
|
module.exports = rimraf;
|
|
1389
1389
|
rimraf.sync = rimrafSync;
|
|
1390
1390
|
},
|
|
1391
|
-
|
|
1391
|
+
9276: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
1392
1392
|
"use strict";
|
|
1393
|
-
const fs = __webpack_require__(
|
|
1394
|
-
const path = __webpack_require__(
|
|
1395
|
-
const util = __webpack_require__(
|
|
1393
|
+
const fs = __webpack_require__(6203);
|
|
1394
|
+
const path = __webpack_require__(6928);
|
|
1395
|
+
const util = __webpack_require__(9023);
|
|
1396
1396
|
function getStats(src, dest, opts) {
|
|
1397
1397
|
const statFunc = opts.dereference ? file => fs.stat(file, {
|
|
1398
1398
|
bigint: true
|
|
@@ -1547,9 +1547,9 @@ var __webpack_modules__ = {
|
|
|
1547
1547
|
areIdentical
|
|
1548
1548
|
};
|
|
1549
1549
|
},
|
|
1550
|
-
|
|
1550
|
+
721: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
1551
1551
|
"use strict";
|
|
1552
|
-
const fs = __webpack_require__(
|
|
1552
|
+
const fs = __webpack_require__(9333);
|
|
1553
1553
|
function utimesMillis(path, atime, mtime, callback) {
|
|
1554
1554
|
fs.open(path, "r+", ((err, fd) => {
|
|
1555
1555
|
if (err) return callback(err);
|
|
@@ -1570,11 +1570,11 @@ var __webpack_modules__ = {
|
|
|
1570
1570
|
utimesMillisSync
|
|
1571
1571
|
};
|
|
1572
1572
|
},
|
|
1573
|
-
|
|
1573
|
+
8505: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
1574
1574
|
"use strict";
|
|
1575
|
-
const MiniPass = __webpack_require__(
|
|
1576
|
-
const EE = __webpack_require__(
|
|
1577
|
-
const fs = __webpack_require__(
|
|
1575
|
+
const MiniPass = __webpack_require__(5697);
|
|
1576
|
+
const EE = __webpack_require__(4434).EventEmitter;
|
|
1577
|
+
const fs = __webpack_require__(9896);
|
|
1578
1578
|
let writev = fs.writev;
|
|
1579
1579
|
if (!writev) {
|
|
1580
1580
|
const binding = process.binding("fs");
|
|
@@ -1896,7 +1896,7 @@ var __webpack_modules__ = {
|
|
|
1896
1896
|
exports.WriteStream = WriteStream;
|
|
1897
1897
|
exports.WriteStreamSync = WriteStreamSync;
|
|
1898
1898
|
},
|
|
1899
|
-
|
|
1899
|
+
4245: module => {
|
|
1900
1900
|
"use strict";
|
|
1901
1901
|
module.exports = clone;
|
|
1902
1902
|
var getPrototypeOf = Object.getPrototypeOf || function(obj) {
|
|
@@ -1913,12 +1913,12 @@ var __webpack_modules__ = {
|
|
|
1913
1913
|
return copy;
|
|
1914
1914
|
}
|
|
1915
1915
|
},
|
|
1916
|
-
|
|
1917
|
-
var fs = __webpack_require__(
|
|
1918
|
-
var polyfills = __webpack_require__(
|
|
1919
|
-
var legacy = __webpack_require__(
|
|
1920
|
-
var clone = __webpack_require__(
|
|
1921
|
-
var util = __webpack_require__(
|
|
1916
|
+
9333: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
1917
|
+
var fs = __webpack_require__(9896);
|
|
1918
|
+
var polyfills = __webpack_require__(4988);
|
|
1919
|
+
var legacy = __webpack_require__(1745);
|
|
1920
|
+
var clone = __webpack_require__(4245);
|
|
1921
|
+
var util = __webpack_require__(9023);
|
|
1922
1922
|
var gracefulQueue;
|
|
1923
1923
|
var previousSymbol;
|
|
1924
1924
|
if (typeof Symbol === "function" && typeof Symbol.for === "function") {
|
|
@@ -1972,7 +1972,7 @@ var __webpack_modules__ = {
|
|
|
1972
1972
|
if (/\bgfs4\b/i.test(process.env.NODE_DEBUG || "")) {
|
|
1973
1973
|
process.on("exit", (function() {
|
|
1974
1974
|
debug(fs[gracefulQueue]);
|
|
1975
|
-
__webpack_require__(
|
|
1975
|
+
__webpack_require__(2613).equal(fs[gracefulQueue].length, 0);
|
|
1976
1976
|
}));
|
|
1977
1977
|
}
|
|
1978
1978
|
}
|
|
@@ -2222,8 +2222,8 @@ var __webpack_modules__ = {
|
|
|
2222
2222
|
}
|
|
2223
2223
|
}
|
|
2224
2224
|
},
|
|
2225
|
-
|
|
2226
|
-
var Stream = __webpack_require__(
|
|
2225
|
+
1745: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2226
|
+
var Stream = __webpack_require__(2203).Stream;
|
|
2227
2227
|
module.exports = legacy;
|
|
2228
2228
|
function legacy(fs) {
|
|
2229
2229
|
return {
|
|
@@ -2314,8 +2314,8 @@ var __webpack_modules__ = {
|
|
|
2314
2314
|
}
|
|
2315
2315
|
}
|
|
2316
2316
|
},
|
|
2317
|
-
|
|
2318
|
-
var constants = __webpack_require__(
|
|
2317
|
+
4988: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2318
|
+
var constants = __webpack_require__(9140);
|
|
2319
2319
|
var origCwd = process.cwd;
|
|
2320
2320
|
var cwd = null;
|
|
2321
2321
|
var platform = process.env.GRACEFUL_FS_PLATFORM || process.platform;
|
|
@@ -2578,15 +2578,15 @@ var __webpack_modules__ = {
|
|
|
2578
2578
|
}
|
|
2579
2579
|
}
|
|
2580
2580
|
},
|
|
2581
|
-
|
|
2581
|
+
3023: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2582
2582
|
let _fs;
|
|
2583
2583
|
try {
|
|
2584
|
-
_fs = __webpack_require__(
|
|
2584
|
+
_fs = __webpack_require__(9333);
|
|
2585
2585
|
} catch (_) {
|
|
2586
|
-
_fs = __webpack_require__(
|
|
2586
|
+
_fs = __webpack_require__(9896);
|
|
2587
2587
|
}
|
|
2588
|
-
const universalify = __webpack_require__(
|
|
2589
|
-
const {stringify, stripBom} = __webpack_require__(
|
|
2588
|
+
const universalify = __webpack_require__(9022);
|
|
2589
|
+
const {stringify, stripBom} = __webpack_require__(7578);
|
|
2590
2590
|
async function _readFile(file, options = {}) {
|
|
2591
2591
|
if (typeof options === "string") {
|
|
2592
2592
|
options = {
|
|
@@ -2651,7 +2651,7 @@ var __webpack_modules__ = {
|
|
|
2651
2651
|
};
|
|
2652
2652
|
module.exports = jsonfile;
|
|
2653
2653
|
},
|
|
2654
|
-
|
|
2654
|
+
7578: module => {
|
|
2655
2655
|
function stringify(obj, {EOL = "\n", finalEOL = true, replacer = null, spaces} = {}) {
|
|
2656
2656
|
const EOF = finalEOL ? EOL : "";
|
|
2657
2657
|
const str = JSON.stringify(obj, replacer, spaces);
|
|
@@ -2666,20 +2666,20 @@ var __webpack_modules__ = {
|
|
|
2666
2666
|
stripBom
|
|
2667
2667
|
};
|
|
2668
2668
|
},
|
|
2669
|
-
|
|
2670
|
-
var fs = __webpack_require__(
|
|
2669
|
+
4509: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
2670
|
+
var fs = __webpack_require__(9896);
|
|
2671
2671
|
var wx = "wx";
|
|
2672
2672
|
if (process.version.match(/^v0\.[0-6]/)) {
|
|
2673
|
-
var c = __webpack_require__(
|
|
2673
|
+
var c = __webpack_require__(9140);
|
|
2674
2674
|
wx = c.O_TRUNC | c.O_CREAT | c.O_WRONLY | c.O_EXCL;
|
|
2675
2675
|
}
|
|
2676
|
-
var os = __webpack_require__(
|
|
2676
|
+
var os = __webpack_require__(857);
|
|
2677
2677
|
exports.filetime = "ctime";
|
|
2678
2678
|
if (os.platform() == "win32") {
|
|
2679
2679
|
exports.filetime = "mtime";
|
|
2680
2680
|
}
|
|
2681
2681
|
var debug;
|
|
2682
|
-
var util = __webpack_require__(
|
|
2682
|
+
var util = __webpack_require__(9023);
|
|
2683
2683
|
if (util.debuglog) debug = util.debuglog("LOCKFILE"); else if (/\blockfile\b/i.test(process.env.NODE_DEBUG)) debug = function() {
|
|
2684
2684
|
var msg = util.format.apply(util, arguments);
|
|
2685
2685
|
console.error("LOCKFILE %d %s", process.pid, msg);
|
|
@@ -2688,7 +2688,7 @@ var __webpack_modules__ = {
|
|
|
2688
2688
|
function hasOwnProperty(obj, prop) {
|
|
2689
2689
|
return Object.prototype.hasOwnProperty.call(obj, prop);
|
|
2690
2690
|
}
|
|
2691
|
-
var onExit = __webpack_require__(
|
|
2691
|
+
var onExit = __webpack_require__(2434);
|
|
2692
2692
|
onExit((function() {
|
|
2693
2693
|
debug("exit listener");
|
|
2694
2694
|
Object.keys(locks).forEach(exports.unlockSync);
|
|
@@ -2913,15 +2913,15 @@ var __webpack_modules__ = {
|
|
|
2913
2913
|
throw er;
|
|
2914
2914
|
}
|
|
2915
2915
|
},
|
|
2916
|
-
|
|
2916
|
+
5697: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
2917
2917
|
"use strict";
|
|
2918
2918
|
const proc = typeof process === "object" && process ? process : {
|
|
2919
2919
|
stdout: null,
|
|
2920
2920
|
stderr: null
|
|
2921
2921
|
};
|
|
2922
|
-
const EE = __webpack_require__(
|
|
2923
|
-
const Stream = __webpack_require__(
|
|
2924
|
-
const SD = __webpack_require__(
|
|
2922
|
+
const EE = __webpack_require__(4434);
|
|
2923
|
+
const Stream = __webpack_require__(2203);
|
|
2924
|
+
const SD = __webpack_require__(3193).StringDecoder;
|
|
2925
2925
|
const EOF = Symbol("EOF");
|
|
2926
2926
|
const MAYBE_EMIT_END = Symbol("maybeEmitEnd");
|
|
2927
2927
|
const EMITTED_END = Symbol("emittedEnd");
|
|
@@ -3346,8 +3346,8 @@ var __webpack_modules__ = {
|
|
|
3346
3346
|
}
|
|
3347
3347
|
};
|
|
3348
3348
|
},
|
|
3349
|
-
|
|
3350
|
-
const realZlibConstants = __webpack_require__(
|
|
3349
|
+
1551: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
3350
|
+
const realZlibConstants = __webpack_require__(3106).constants || {
|
|
3351
3351
|
ZLIB_VERNUM: 4736
|
|
3352
3352
|
};
|
|
3353
3353
|
module.exports = Object.freeze(Object.assign(Object.create(null), {
|
|
@@ -3459,13 +3459,13 @@ var __webpack_modules__ = {
|
|
|
3459
3459
|
BROTLI_DECODER_ERROR_UNREACHABLE: -31
|
|
3460
3460
|
}, realZlibConstants));
|
|
3461
3461
|
},
|
|
3462
|
-
|
|
3462
|
+
8197: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
3463
3463
|
"use strict";
|
|
3464
|
-
const assert = __webpack_require__(
|
|
3465
|
-
const Buffer = __webpack_require__(
|
|
3466
|
-
const realZlib = __webpack_require__(
|
|
3467
|
-
const constants = exports.constants = __webpack_require__(
|
|
3468
|
-
const Minipass = __webpack_require__(
|
|
3464
|
+
const assert = __webpack_require__(2613);
|
|
3465
|
+
const Buffer = __webpack_require__(181).Buffer;
|
|
3466
|
+
const realZlib = __webpack_require__(3106);
|
|
3467
|
+
const constants = exports.constants = __webpack_require__(1551);
|
|
3468
|
+
const Minipass = __webpack_require__(5697);
|
|
3469
3469
|
const OriginalBufferConcat = Buffer.concat;
|
|
3470
3470
|
const _superWrite = Symbol("_superWrite");
|
|
3471
3471
|
class ZlibError extends Error {
|
|
@@ -3704,12 +3704,12 @@ var __webpack_modules__ = {
|
|
|
3704
3704
|
};
|
|
3705
3705
|
}
|
|
3706
3706
|
},
|
|
3707
|
-
|
|
3708
|
-
const optsArg = __webpack_require__(
|
|
3709
|
-
const pathArg = __webpack_require__(
|
|
3710
|
-
const {mkdirpNative, mkdirpNativeSync} = __webpack_require__(
|
|
3711
|
-
const {mkdirpManual, mkdirpManualSync} = __webpack_require__(
|
|
3712
|
-
const {useNative, useNativeSync} = __webpack_require__(
|
|
3707
|
+
5710: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
3708
|
+
const optsArg = __webpack_require__(4543);
|
|
3709
|
+
const pathArg = __webpack_require__(394);
|
|
3710
|
+
const {mkdirpNative, mkdirpNativeSync} = __webpack_require__(9153);
|
|
3711
|
+
const {mkdirpManual, mkdirpManualSync} = __webpack_require__(4524);
|
|
3712
|
+
const {useNative, useNativeSync} = __webpack_require__(3741);
|
|
3713
3713
|
const mkdirp = (path, opts) => {
|
|
3714
3714
|
path = pathArg(path);
|
|
3715
3715
|
opts = optsArg(opts);
|
|
@@ -3727,8 +3727,8 @@ var __webpack_modules__ = {
|
|
|
3727
3727
|
mkdirp.manualSync = (path, opts) => mkdirpManualSync(pathArg(path), optsArg(opts));
|
|
3728
3728
|
module.exports = mkdirp;
|
|
3729
3729
|
},
|
|
3730
|
-
|
|
3731
|
-
const {dirname} = __webpack_require__(
|
|
3730
|
+
4061: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
3731
|
+
const {dirname} = __webpack_require__(6928);
|
|
3732
3732
|
const findMade = (opts, parent, path = undefined) => {
|
|
3733
3733
|
if (path === parent) return Promise.resolve();
|
|
3734
3734
|
return opts.statAsync(parent).then((st => st.isDirectory() ? path : undefined), (er => er.code === "ENOENT" ? findMade(opts, dirname(parent), parent) : undefined));
|
|
@@ -3746,8 +3746,8 @@ var __webpack_modules__ = {
|
|
|
3746
3746
|
findMadeSync
|
|
3747
3747
|
};
|
|
3748
3748
|
},
|
|
3749
|
-
|
|
3750
|
-
const {dirname} = __webpack_require__(
|
|
3749
|
+
4524: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
3750
|
+
const {dirname} = __webpack_require__(6928);
|
|
3751
3751
|
const mkdirpManual = (path, opts, made) => {
|
|
3752
3752
|
opts.recursive = false;
|
|
3753
3753
|
const parent = dirname(path);
|
|
@@ -3794,10 +3794,10 @@ var __webpack_modules__ = {
|
|
|
3794
3794
|
mkdirpManualSync
|
|
3795
3795
|
};
|
|
3796
3796
|
},
|
|
3797
|
-
|
|
3798
|
-
const {dirname} = __webpack_require__(
|
|
3799
|
-
const {findMade, findMadeSync} = __webpack_require__(
|
|
3800
|
-
const {mkdirpManual, mkdirpManualSync} = __webpack_require__(
|
|
3797
|
+
9153: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
3798
|
+
const {dirname} = __webpack_require__(6928);
|
|
3799
|
+
const {findMade, findMadeSync} = __webpack_require__(4061);
|
|
3800
|
+
const {mkdirpManual, mkdirpManualSync} = __webpack_require__(4524);
|
|
3801
3801
|
const mkdirpNative = (path, opts) => {
|
|
3802
3802
|
opts.recursive = true;
|
|
3803
3803
|
const parent = dirname(path);
|
|
@@ -3823,9 +3823,9 @@ var __webpack_modules__ = {
|
|
|
3823
3823
|
mkdirpNativeSync
|
|
3824
3824
|
};
|
|
3825
3825
|
},
|
|
3826
|
-
|
|
3827
|
-
const {promisify} = __webpack_require__(
|
|
3828
|
-
const fs = __webpack_require__(
|
|
3826
|
+
4543: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
3827
|
+
const {promisify} = __webpack_require__(9023);
|
|
3828
|
+
const fs = __webpack_require__(9896);
|
|
3829
3829
|
const optsArg = opts => {
|
|
3830
3830
|
if (!opts) opts = {
|
|
3831
3831
|
mode: 511,
|
|
@@ -3851,9 +3851,9 @@ var __webpack_modules__ = {
|
|
|
3851
3851
|
};
|
|
3852
3852
|
module.exports = optsArg;
|
|
3853
3853
|
},
|
|
3854
|
-
|
|
3854
|
+
394: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
3855
3855
|
const platform = process.env.__TESTING_MKDIRP_PLATFORM__ || process.platform;
|
|
3856
|
-
const {resolve, parse} = __webpack_require__(
|
|
3856
|
+
const {resolve, parse} = __webpack_require__(6928);
|
|
3857
3857
|
const pathArg = path => {
|
|
3858
3858
|
if (/\0/.test(path)) {
|
|
3859
3859
|
throw Object.assign(new TypeError("path must be a string without null bytes"), {
|
|
@@ -3876,8 +3876,8 @@ var __webpack_modules__ = {
|
|
|
3876
3876
|
};
|
|
3877
3877
|
module.exports = pathArg;
|
|
3878
3878
|
},
|
|
3879
|
-
|
|
3880
|
-
const fs = __webpack_require__(
|
|
3879
|
+
3741: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
3880
|
+
const fs = __webpack_require__(9896);
|
|
3881
3881
|
const version = process.env.__TESTING_MKDIRP_NODE_VERSION__ || process.version;
|
|
3882
3882
|
const versArr = version.replace(/^v/, "").split(".");
|
|
3883
3883
|
const hasNative = +versArr[0] > 10 || +versArr[0] === 10 && +versArr[1] >= 12;
|
|
@@ -3888,7 +3888,7 @@ var __webpack_modules__ = {
|
|
|
3888
3888
|
useNativeSync
|
|
3889
3889
|
};
|
|
3890
3890
|
},
|
|
3891
|
-
|
|
3891
|
+
2434: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
3892
3892
|
var process = global.process;
|
|
3893
3893
|
const processOk = function(process) {
|
|
3894
3894
|
return process && typeof process === "object" && typeof process.removeListener === "function" && typeof process.emit === "function" && typeof process.reallyExit === "function" && typeof process.listeners === "function" && typeof process.kill === "function" && typeof process.pid === "number" && typeof process.on === "function";
|
|
@@ -3898,10 +3898,10 @@ var __webpack_modules__ = {
|
|
|
3898
3898
|
return function() {};
|
|
3899
3899
|
};
|
|
3900
3900
|
} else {
|
|
3901
|
-
var assert = __webpack_require__(
|
|
3902
|
-
var signals = __webpack_require__(
|
|
3901
|
+
var assert = __webpack_require__(2613);
|
|
3902
|
+
var signals = __webpack_require__(5935);
|
|
3903
3903
|
var isWin = /^win/i.test(process.platform);
|
|
3904
|
-
var EE = __webpack_require__(
|
|
3904
|
+
var EE = __webpack_require__(4434);
|
|
3905
3905
|
if (typeof EE !== "function") {
|
|
3906
3906
|
EE = EE.EventEmitter;
|
|
3907
3907
|
}
|
|
@@ -4026,7 +4026,7 @@ var __webpack_modules__ = {
|
|
|
4026
4026
|
};
|
|
4027
4027
|
}
|
|
4028
4028
|
},
|
|
4029
|
-
|
|
4029
|
+
5935: module => {
|
|
4030
4030
|
module.exports = [ "SIGABRT", "SIGALRM", "SIGHUP", "SIGINT", "SIGTERM" ];
|
|
4031
4031
|
if (process.platform !== "win32") {
|
|
4032
4032
|
module.exports.push("SIGVTALRM", "SIGXCPU", "SIGXFSZ", "SIGUSR2", "SIGTRAP", "SIGSYS", "SIGQUIT", "SIGIOT");
|
|
@@ -4035,29 +4035,29 @@ var __webpack_modules__ = {
|
|
|
4035
4035
|
module.exports.push("SIGIO", "SIGPOLL", "SIGPWR", "SIGSTKFLT", "SIGUNUSED");
|
|
4036
4036
|
}
|
|
4037
4037
|
},
|
|
4038
|
-
|
|
4038
|
+
5194: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
4039
4039
|
"use strict";
|
|
4040
|
-
exports.c = exports.create = __webpack_require__(
|
|
4041
|
-
exports.r = exports.replace = __webpack_require__(
|
|
4042
|
-
exports.t = exports.list = __webpack_require__(
|
|
4043
|
-
exports.u = exports.update = __webpack_require__(
|
|
4044
|
-
exports.x = exports.extract = __webpack_require__(
|
|
4045
|
-
exports.Pack = __webpack_require__(
|
|
4046
|
-
exports.Unpack = __webpack_require__(
|
|
4047
|
-
exports.Parse = __webpack_require__(
|
|
4048
|
-
exports.ReadEntry = __webpack_require__(
|
|
4049
|
-
exports.WriteEntry = __webpack_require__(
|
|
4050
|
-
exports.Header = __webpack_require__(
|
|
4051
|
-
exports.Pax = __webpack_require__(
|
|
4052
|
-
exports.types = __webpack_require__(
|
|
4040
|
+
exports.c = exports.create = __webpack_require__(7172);
|
|
4041
|
+
exports.r = exports.replace = __webpack_require__(6138);
|
|
4042
|
+
exports.t = exports.list = __webpack_require__(2684);
|
|
4043
|
+
exports.u = exports.update = __webpack_require__(2145);
|
|
4044
|
+
exports.x = exports.extract = __webpack_require__(6139);
|
|
4045
|
+
exports.Pack = __webpack_require__(6997);
|
|
4046
|
+
exports.Unpack = __webpack_require__(7858);
|
|
4047
|
+
exports.Parse = __webpack_require__(7693);
|
|
4048
|
+
exports.ReadEntry = __webpack_require__(6541);
|
|
4049
|
+
exports.WriteEntry = __webpack_require__(7432);
|
|
4050
|
+
exports.Header = __webpack_require__(4129);
|
|
4051
|
+
exports.Pax = __webpack_require__(7659);
|
|
4052
|
+
exports.types = __webpack_require__(6307);
|
|
4053
4053
|
},
|
|
4054
|
-
|
|
4054
|
+
7172: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
4055
4055
|
"use strict";
|
|
4056
|
-
const hlo = __webpack_require__(
|
|
4057
|
-
const Pack = __webpack_require__(
|
|
4058
|
-
const fsm = __webpack_require__(
|
|
4059
|
-
const t = __webpack_require__(
|
|
4060
|
-
const path = __webpack_require__(
|
|
4056
|
+
const hlo = __webpack_require__(2635);
|
|
4057
|
+
const Pack = __webpack_require__(6997);
|
|
4058
|
+
const fsm = __webpack_require__(8505);
|
|
4059
|
+
const t = __webpack_require__(2684);
|
|
4060
|
+
const path = __webpack_require__(6928);
|
|
4061
4061
|
module.exports = (opt_, files, cb) => {
|
|
4062
4062
|
if (typeof files === "function") {
|
|
4063
4063
|
cb = files;
|
|
@@ -4141,14 +4141,14 @@ var __webpack_modules__ = {
|
|
|
4141
4141
|
return p;
|
|
4142
4142
|
};
|
|
4143
4143
|
},
|
|
4144
|
-
|
|
4144
|
+
6139: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
4145
4145
|
"use strict";
|
|
4146
|
-
const hlo = __webpack_require__(
|
|
4147
|
-
const Unpack = __webpack_require__(
|
|
4148
|
-
const fs = __webpack_require__(
|
|
4149
|
-
const fsm = __webpack_require__(
|
|
4150
|
-
const path = __webpack_require__(
|
|
4151
|
-
const stripSlash = __webpack_require__(
|
|
4146
|
+
const hlo = __webpack_require__(2635);
|
|
4147
|
+
const Unpack = __webpack_require__(7858);
|
|
4148
|
+
const fs = __webpack_require__(9896);
|
|
4149
|
+
const fsm = __webpack_require__(8505);
|
|
4150
|
+
const path = __webpack_require__(6928);
|
|
4151
|
+
const stripSlash = __webpack_require__(9625);
|
|
4152
4152
|
module.exports = (opt_, files, cb) => {
|
|
4153
4153
|
if (typeof opt_ === "function") {
|
|
4154
4154
|
cb = opt_, files = null, opt_ = {};
|
|
@@ -4222,21 +4222,21 @@ var __webpack_modules__ = {
|
|
|
4222
4222
|
const extractSync = opt => new Unpack.Sync(opt);
|
|
4223
4223
|
const extract = opt => new Unpack(opt);
|
|
4224
4224
|
},
|
|
4225
|
-
|
|
4225
|
+
595: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
4226
4226
|
const platform = process.env.__FAKE_PLATFORM__ || process.platform;
|
|
4227
4227
|
const isWindows = platform === "win32";
|
|
4228
|
-
const fs = global.__FAKE_TESTING_FS__ || __webpack_require__(
|
|
4228
|
+
const fs = global.__FAKE_TESTING_FS__ || __webpack_require__(9896);
|
|
4229
4229
|
const {O_CREAT, O_TRUNC, O_WRONLY, UV_FS_O_FILEMAP = 0} = fs.constants;
|
|
4230
4230
|
const fMapEnabled = isWindows && !!UV_FS_O_FILEMAP;
|
|
4231
4231
|
const fMapLimit = 512 * 1024;
|
|
4232
4232
|
const fMapFlag = UV_FS_O_FILEMAP | O_TRUNC | O_CREAT | O_WRONLY;
|
|
4233
4233
|
module.exports = !fMapEnabled ? () => "w" : size => size < fMapLimit ? fMapFlag : "w";
|
|
4234
4234
|
},
|
|
4235
|
-
|
|
4235
|
+
4129: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
4236
4236
|
"use strict";
|
|
4237
|
-
const types = __webpack_require__(
|
|
4238
|
-
const pathModule = __webpack_require__(
|
|
4239
|
-
const large = __webpack_require__(
|
|
4237
|
+
const types = __webpack_require__(6307);
|
|
4238
|
+
const pathModule = __webpack_require__(6928).posix;
|
|
4239
|
+
const large = __webpack_require__(1986);
|
|
4240
4240
|
const SLURP = Symbol("slurp");
|
|
4241
4241
|
const TYPE = Symbol("type");
|
|
4242
4242
|
class Header {
|
|
@@ -4447,13 +4447,13 @@ var __webpack_modules__ = {
|
|
|
4447
4447
|
string.length !== Buffer.byteLength(string) || string.length > size);
|
|
4448
4448
|
module.exports = Header;
|
|
4449
4449
|
},
|
|
4450
|
-
|
|
4450
|
+
2635: module => {
|
|
4451
4451
|
"use strict";
|
|
4452
4452
|
const argmap = new Map([ [ "C", "cwd" ], [ "f", "file" ], [ "z", "gzip" ], [ "P", "preservePaths" ], [ "U", "unlink" ], [ "strip-components", "strip" ], [ "stripComponents", "strip" ], [ "keep-newer", "newer" ], [ "keepNewer", "newer" ], [ "keep-newer-files", "newer" ], [ "keepNewerFiles", "newer" ], [ "k", "keep" ], [ "keep-existing", "keep" ], [ "keepExisting", "keep" ], [ "m", "noMtime" ], [ "no-mtime", "noMtime" ], [ "p", "preserveOwner" ], [ "L", "follow" ], [ "h", "follow" ] ]);
|
|
4453
4453
|
module.exports = opt => opt ? Object.keys(opt).map((k => [ argmap.has(k) ? argmap.get(k) : k, opt[k] ])).reduce(((set, kv) => (set[kv[0]] = kv[1],
|
|
4454
4454
|
set)), Object.create(null)) : {};
|
|
4455
4455
|
},
|
|
4456
|
-
|
|
4456
|
+
1986: module => {
|
|
4457
4457
|
"use strict";
|
|
4458
4458
|
const encode = (num, buf) => {
|
|
4459
4459
|
if (!Number.isSafeInteger(num)) {
|
|
@@ -4539,14 +4539,14 @@ var __webpack_modules__ = {
|
|
|
4539
4539
|
parse
|
|
4540
4540
|
};
|
|
4541
4541
|
},
|
|
4542
|
-
|
|
4542
|
+
2684: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
4543
4543
|
"use strict";
|
|
4544
|
-
const hlo = __webpack_require__(
|
|
4545
|
-
const Parser = __webpack_require__(
|
|
4546
|
-
const fs = __webpack_require__(
|
|
4547
|
-
const fsm = __webpack_require__(
|
|
4548
|
-
const path = __webpack_require__(
|
|
4549
|
-
const stripSlash = __webpack_require__(
|
|
4544
|
+
const hlo = __webpack_require__(2635);
|
|
4545
|
+
const Parser = __webpack_require__(7693);
|
|
4546
|
+
const fs = __webpack_require__(9896);
|
|
4547
|
+
const fsm = __webpack_require__(8505);
|
|
4548
|
+
const path = __webpack_require__(6928);
|
|
4549
|
+
const stripSlash = __webpack_require__(9625);
|
|
4550
4550
|
module.exports = (opt_, files, cb) => {
|
|
4551
4551
|
if (typeof opt_ === "function") {
|
|
4552
4552
|
cb = opt_, files = null, opt_ = {};
|
|
@@ -4648,13 +4648,13 @@ var __webpack_modules__ = {
|
|
|
4648
4648
|
};
|
|
4649
4649
|
const list = opt => new Parser(opt);
|
|
4650
4650
|
},
|
|
4651
|
-
|
|
4651
|
+
1374: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
4652
4652
|
"use strict";
|
|
4653
|
-
const mkdirp = __webpack_require__(
|
|
4654
|
-
const fs = __webpack_require__(
|
|
4655
|
-
const path = __webpack_require__(
|
|
4656
|
-
const chownr = __webpack_require__(
|
|
4657
|
-
const normPath = __webpack_require__(
|
|
4653
|
+
const mkdirp = __webpack_require__(5710);
|
|
4654
|
+
const fs = __webpack_require__(9896);
|
|
4655
|
+
const path = __webpack_require__(6928);
|
|
4656
|
+
const chownr = __webpack_require__(1165);
|
|
4657
|
+
const normPath = __webpack_require__(2961);
|
|
4658
4658
|
class SymlinkError extends Error {
|
|
4659
4659
|
constructor(symlink, path) {
|
|
4660
4660
|
super("Cannot extract through symbolic link");
|
|
@@ -4838,7 +4838,7 @@ var __webpack_modules__ = {
|
|
|
4838
4838
|
return done(created);
|
|
4839
4839
|
};
|
|
4840
4840
|
},
|
|
4841
|
-
|
|
4841
|
+
3877: module => {
|
|
4842
4842
|
"use strict";
|
|
4843
4843
|
module.exports = (mode, isDir, portable) => {
|
|
4844
4844
|
mode &= 4095;
|
|
@@ -4859,7 +4859,7 @@ var __webpack_modules__ = {
|
|
|
4859
4859
|
return mode;
|
|
4860
4860
|
};
|
|
4861
4861
|
},
|
|
4862
|
-
|
|
4862
|
+
615: module => {
|
|
4863
4863
|
const normalizeCache = Object.create(null);
|
|
4864
4864
|
const {hasOwnProperty} = Object.prototype;
|
|
4865
4865
|
module.exports = s => {
|
|
@@ -4869,11 +4869,11 @@ var __webpack_modules__ = {
|
|
|
4869
4869
|
return normalizeCache[s];
|
|
4870
4870
|
};
|
|
4871
4871
|
},
|
|
4872
|
-
|
|
4872
|
+
2961: module => {
|
|
4873
4873
|
const platform = process.env.TESTING_TAR_FAKE_PLATFORM || process.platform;
|
|
4874
4874
|
module.exports = platform !== "win32" ? p => p : p => p && p.replace(/\\/g, "/");
|
|
4875
4875
|
},
|
|
4876
|
-
|
|
4876
|
+
6997: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
4877
4877
|
"use strict";
|
|
4878
4878
|
class PackJob {
|
|
4879
4879
|
constructor(path, absolute) {
|
|
@@ -4887,13 +4887,13 @@ var __webpack_modules__ = {
|
|
|
4887
4887
|
this.piped = false;
|
|
4888
4888
|
}
|
|
4889
4889
|
}
|
|
4890
|
-
const {Minipass} = __webpack_require__(
|
|
4891
|
-
const zlib = __webpack_require__(
|
|
4892
|
-
const ReadEntry = __webpack_require__(
|
|
4893
|
-
const WriteEntry = __webpack_require__(
|
|
4890
|
+
const {Minipass} = __webpack_require__(1476);
|
|
4891
|
+
const zlib = __webpack_require__(8197);
|
|
4892
|
+
const ReadEntry = __webpack_require__(6541);
|
|
4893
|
+
const WriteEntry = __webpack_require__(7432);
|
|
4894
4894
|
const WriteEntrySync = WriteEntry.Sync;
|
|
4895
4895
|
const WriteEntryTar = WriteEntry.Tar;
|
|
4896
|
-
const Yallist = __webpack_require__(
|
|
4896
|
+
const Yallist = __webpack_require__(5773);
|
|
4897
4897
|
const EOF = Buffer.alloc(1024);
|
|
4898
4898
|
const ONSTAT = Symbol("onStat");
|
|
4899
4899
|
const ENDED = Symbol("ended");
|
|
@@ -4915,10 +4915,10 @@ var __webpack_modules__ = {
|
|
|
4915
4915
|
const WRITEENTRYCLASS = Symbol("writeEntryClass");
|
|
4916
4916
|
const WRITE = Symbol("write");
|
|
4917
4917
|
const ONDRAIN = Symbol("ondrain");
|
|
4918
|
-
const fs = __webpack_require__(
|
|
4919
|
-
const path = __webpack_require__(
|
|
4920
|
-
const warner = __webpack_require__(
|
|
4921
|
-
const normPath = __webpack_require__(
|
|
4918
|
+
const fs = __webpack_require__(9896);
|
|
4919
|
+
const path = __webpack_require__(6928);
|
|
4920
|
+
const warner = __webpack_require__(1004);
|
|
4921
|
+
const normPath = __webpack_require__(2961);
|
|
4922
4922
|
const Pack = warner(class Pack extends Minipass {
|
|
4923
4923
|
constructor(opt) {
|
|
4924
4924
|
super(opt);
|
|
@@ -5233,17 +5233,17 @@ var __webpack_modules__ = {
|
|
|
5233
5233
|
Pack.Sync = PackSync;
|
|
5234
5234
|
module.exports = Pack;
|
|
5235
5235
|
},
|
|
5236
|
-
|
|
5236
|
+
7693: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
5237
5237
|
"use strict";
|
|
5238
|
-
const warner = __webpack_require__(
|
|
5239
|
-
const Header = __webpack_require__(
|
|
5240
|
-
const EE = __webpack_require__(
|
|
5241
|
-
const Yallist = __webpack_require__(
|
|
5238
|
+
const warner = __webpack_require__(1004);
|
|
5239
|
+
const Header = __webpack_require__(4129);
|
|
5240
|
+
const EE = __webpack_require__(4434);
|
|
5241
|
+
const Yallist = __webpack_require__(5773);
|
|
5242
5242
|
const maxMetaEntrySize = 1024 * 1024;
|
|
5243
|
-
const Entry = __webpack_require__(
|
|
5244
|
-
const Pax = __webpack_require__(
|
|
5245
|
-
const zlib = __webpack_require__(
|
|
5246
|
-
const {nextTick} = __webpack_require__(
|
|
5243
|
+
const Entry = __webpack_require__(6541);
|
|
5244
|
+
const Pax = __webpack_require__(7659);
|
|
5245
|
+
const zlib = __webpack_require__(8197);
|
|
5246
|
+
const {nextTick} = __webpack_require__(932);
|
|
5247
5247
|
const gzipHeader = Buffer.from([ 31, 139 ]);
|
|
5248
5248
|
const STATE = Symbol("state");
|
|
5249
5249
|
const WRITEENTRY = Symbol("writeEntry");
|
|
@@ -5670,11 +5670,11 @@ var __webpack_modules__ = {
|
|
|
5670
5670
|
}
|
|
5671
5671
|
});
|
|
5672
5672
|
},
|
|
5673
|
-
|
|
5674
|
-
const assert = __webpack_require__(
|
|
5675
|
-
const normalize = __webpack_require__(
|
|
5676
|
-
const stripSlashes = __webpack_require__(
|
|
5677
|
-
const {join} = __webpack_require__(
|
|
5673
|
+
8787: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
5674
|
+
const assert = __webpack_require__(2613);
|
|
5675
|
+
const normalize = __webpack_require__(615);
|
|
5676
|
+
const stripSlashes = __webpack_require__(9625);
|
|
5677
|
+
const {join} = __webpack_require__(6928);
|
|
5678
5678
|
const platform = process.env.TESTING_TAR_FAKE_PLATFORM || process.platform;
|
|
5679
5679
|
const isWindows = platform === "win32";
|
|
5680
5680
|
module.exports = () => {
|
|
@@ -5782,10 +5782,10 @@ var __webpack_modules__ = {
|
|
|
5782
5782
|
};
|
|
5783
5783
|
};
|
|
5784
5784
|
},
|
|
5785
|
-
|
|
5785
|
+
7659: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
5786
5786
|
"use strict";
|
|
5787
|
-
const Header = __webpack_require__(
|
|
5788
|
-
const path = __webpack_require__(
|
|
5787
|
+
const Header = __webpack_require__(4129);
|
|
5788
|
+
const path = __webpack_require__(6928);
|
|
5789
5789
|
class Pax {
|
|
5790
5790
|
constructor(obj, global) {
|
|
5791
5791
|
this.atime = obj.atime || null;
|
|
@@ -5876,10 +5876,10 @@ var __webpack_modules__ = {
|
|
|
5876
5876
|
};
|
|
5877
5877
|
module.exports = Pax;
|
|
5878
5878
|
},
|
|
5879
|
-
|
|
5879
|
+
6541: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
5880
5880
|
"use strict";
|
|
5881
|
-
const {Minipass} = __webpack_require__(
|
|
5882
|
-
const normPath = __webpack_require__(
|
|
5881
|
+
const {Minipass} = __webpack_require__(1476);
|
|
5882
|
+
const normPath = __webpack_require__(2961);
|
|
5883
5883
|
const SLURP = Symbol("slurp");
|
|
5884
5884
|
module.exports = class ReadEntry extends Minipass {
|
|
5885
5885
|
constructor(header, ex, gex) {
|
|
@@ -5968,15 +5968,15 @@ var __webpack_modules__ = {
|
|
|
5968
5968
|
}
|
|
5969
5969
|
};
|
|
5970
5970
|
},
|
|
5971
|
-
|
|
5971
|
+
6138: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
5972
5972
|
"use strict";
|
|
5973
|
-
const hlo = __webpack_require__(
|
|
5974
|
-
const Pack = __webpack_require__(
|
|
5975
|
-
const fs = __webpack_require__(
|
|
5976
|
-
const fsm = __webpack_require__(
|
|
5977
|
-
const t = __webpack_require__(
|
|
5978
|
-
const path = __webpack_require__(
|
|
5979
|
-
const Header = __webpack_require__(
|
|
5973
|
+
const hlo = __webpack_require__(2635);
|
|
5974
|
+
const Pack = __webpack_require__(6997);
|
|
5975
|
+
const fs = __webpack_require__(9896);
|
|
5976
|
+
const fsm = __webpack_require__(8505);
|
|
5977
|
+
const t = __webpack_require__(2684);
|
|
5978
|
+
const path = __webpack_require__(6928);
|
|
5979
|
+
const Header = __webpack_require__(4129);
|
|
5980
5980
|
module.exports = (opt_, files, cb) => {
|
|
5981
5981
|
const opt = hlo(opt_);
|
|
5982
5982
|
if (!opt.file) {
|
|
@@ -6165,8 +6165,8 @@ var __webpack_modules__ = {
|
|
|
6165
6165
|
p.end();
|
|
6166
6166
|
};
|
|
6167
6167
|
},
|
|
6168
|
-
|
|
6169
|
-
const {isAbsolute, parse} = __webpack_require__(
|
|
6168
|
+
5958: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
6169
|
+
const {isAbsolute, parse} = __webpack_require__(6928).win32;
|
|
6170
6170
|
module.exports = path => {
|
|
6171
6171
|
let r = "";
|
|
6172
6172
|
let parsed = parse(path);
|
|
@@ -6179,7 +6179,7 @@ var __webpack_modules__ = {
|
|
|
6179
6179
|
return [ r, path ];
|
|
6180
6180
|
};
|
|
6181
6181
|
},
|
|
6182
|
-
|
|
6182
|
+
9625: module => {
|
|
6183
6183
|
module.exports = str => {
|
|
6184
6184
|
let i = str.length - 1;
|
|
6185
6185
|
let slashesStart = -1;
|
|
@@ -6190,25 +6190,25 @@ var __webpack_modules__ = {
|
|
|
6190
6190
|
return slashesStart === -1 ? str : str.slice(0, slashesStart);
|
|
6191
6191
|
};
|
|
6192
6192
|
},
|
|
6193
|
-
|
|
6193
|
+
6307: (__unused_webpack_module, exports) => {
|
|
6194
6194
|
"use strict";
|
|
6195
6195
|
exports.name = new Map([ [ "0", "File" ], [ "", "OldFile" ], [ "1", "Link" ], [ "2", "SymbolicLink" ], [ "3", "CharacterDevice" ], [ "4", "BlockDevice" ], [ "5", "Directory" ], [ "6", "FIFO" ], [ "7", "ContiguousFile" ], [ "g", "GlobalExtendedHeader" ], [ "x", "ExtendedHeader" ], [ "A", "SolarisACL" ], [ "D", "GNUDumpDir" ], [ "I", "Inode" ], [ "K", "NextFileHasLongLinkpath" ], [ "L", "NextFileHasLongPath" ], [ "M", "ContinuationFile" ], [ "N", "OldGnuLongPath" ], [ "S", "SparseFile" ], [ "V", "TapeVolumeHeader" ], [ "X", "OldExtendedHeader" ] ]);
|
|
6196
6196
|
exports.code = new Map(Array.from(exports.name).map((kv => [ kv[1], kv[0] ])));
|
|
6197
6197
|
},
|
|
6198
|
-
|
|
6198
|
+
7858: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
6199
6199
|
"use strict";
|
|
6200
|
-
const assert = __webpack_require__(
|
|
6201
|
-
const Parser = __webpack_require__(
|
|
6202
|
-
const fs = __webpack_require__(
|
|
6203
|
-
const fsm = __webpack_require__(
|
|
6204
|
-
const path = __webpack_require__(
|
|
6205
|
-
const mkdir = __webpack_require__(
|
|
6206
|
-
const wc = __webpack_require__(
|
|
6207
|
-
const pathReservations = __webpack_require__(
|
|
6208
|
-
const stripAbsolutePath = __webpack_require__(
|
|
6209
|
-
const normPath = __webpack_require__(
|
|
6210
|
-
const stripSlash = __webpack_require__(
|
|
6211
|
-
const normalize = __webpack_require__(
|
|
6200
|
+
const assert = __webpack_require__(2613);
|
|
6201
|
+
const Parser = __webpack_require__(7693);
|
|
6202
|
+
const fs = __webpack_require__(9896);
|
|
6203
|
+
const fsm = __webpack_require__(8505);
|
|
6204
|
+
const path = __webpack_require__(6928);
|
|
6205
|
+
const mkdir = __webpack_require__(1374);
|
|
6206
|
+
const wc = __webpack_require__(2451);
|
|
6207
|
+
const pathReservations = __webpack_require__(8787);
|
|
6208
|
+
const stripAbsolutePath = __webpack_require__(5958);
|
|
6209
|
+
const normPath = __webpack_require__(2961);
|
|
6210
|
+
const stripSlash = __webpack_require__(9625);
|
|
6211
|
+
const normalize = __webpack_require__(615);
|
|
6212
6212
|
const ONENTRY = Symbol("onEntry");
|
|
6213
6213
|
const CHECKFS = Symbol("checkFs");
|
|
6214
6214
|
const CHECKFS2 = Symbol("checkFs2");
|
|
@@ -6234,10 +6234,11 @@ var __webpack_modules__ = {
|
|
|
6234
6234
|
const UID = Symbol("uid");
|
|
6235
6235
|
const GID = Symbol("gid");
|
|
6236
6236
|
const CHECKED_CWD = Symbol("checkedCwd");
|
|
6237
|
-
const crypto = __webpack_require__(
|
|
6238
|
-
const getFlag = __webpack_require__(
|
|
6237
|
+
const crypto = __webpack_require__(6982);
|
|
6238
|
+
const getFlag = __webpack_require__(595);
|
|
6239
6239
|
const platform = process.env.TESTING_TAR_FAKE_PLATFORM || process.platform;
|
|
6240
6240
|
const isWindows = platform === "win32";
|
|
6241
|
+
const DEFAULT_MAX_DEPTH = 1024;
|
|
6241
6242
|
const unlinkFile = (path, cb) => {
|
|
6242
6243
|
if (!isWindows) {
|
|
6243
6244
|
return fs.unlink(path, cb);
|
|
@@ -6314,6 +6315,7 @@ var __webpack_modules__ = {
|
|
|
6314
6315
|
}
|
|
6315
6316
|
this.processUid = (this.preserveOwner || this.setOwner) && process.getuid ? process.getuid() : null;
|
|
6316
6317
|
this.processGid = (this.preserveOwner || this.setOwner) && process.getgid ? process.getgid() : null;
|
|
6318
|
+
this.maxDepth = typeof opt.maxDepth === "number" ? opt.maxDepth : DEFAULT_MAX_DEPTH;
|
|
6317
6319
|
this.forceChown = opt.forceChown === true;
|
|
6318
6320
|
this.win32 = !!opt.win32 || isWindows;
|
|
6319
6321
|
this.newer = !!opt.newer;
|
|
@@ -6343,12 +6345,12 @@ var __webpack_modules__ = {
|
|
|
6343
6345
|
}
|
|
6344
6346
|
}
|
|
6345
6347
|
[CHECKPATH](entry) {
|
|
6348
|
+
const p = normPath(entry.path);
|
|
6349
|
+
const parts = p.split("/");
|
|
6346
6350
|
if (this.strip) {
|
|
6347
|
-
const parts = normPath(entry.path).split("/");
|
|
6348
6351
|
if (parts.length < this.strip) {
|
|
6349
6352
|
return false;
|
|
6350
6353
|
}
|
|
6351
|
-
entry.path = parts.slice(this.strip).join("/");
|
|
6352
6354
|
if (entry.type === "Link") {
|
|
6353
6355
|
const linkparts = normPath(entry.linkpath).split("/");
|
|
6354
6356
|
if (linkparts.length >= this.strip) {
|
|
@@ -6357,10 +6359,19 @@ var __webpack_modules__ = {
|
|
|
6357
6359
|
return false;
|
|
6358
6360
|
}
|
|
6359
6361
|
}
|
|
6362
|
+
parts.splice(0, this.strip);
|
|
6363
|
+
entry.path = parts.join("/");
|
|
6364
|
+
}
|
|
6365
|
+
if (isFinite(this.maxDepth) && parts.length > this.maxDepth) {
|
|
6366
|
+
this.warn("TAR_ENTRY_ERROR", "path excessively deep", {
|
|
6367
|
+
entry,
|
|
6368
|
+
path: p,
|
|
6369
|
+
depth: parts.length,
|
|
6370
|
+
maxDepth: this.maxDepth
|
|
6371
|
+
});
|
|
6372
|
+
return false;
|
|
6360
6373
|
}
|
|
6361
6374
|
if (!this.preservePaths) {
|
|
6362
|
-
const p = normPath(entry.path);
|
|
6363
|
-
const parts = p.split("/");
|
|
6364
6375
|
if (parts.includes("..") || isWindows && /^[a-z]:\.\.$/i.test(parts[0])) {
|
|
6365
6376
|
this.warn("TAR_ENTRY_ERROR", `path contains '..'`, {
|
|
6366
6377
|
entry,
|
|
@@ -6864,10 +6875,10 @@ var __webpack_modules__ = {
|
|
|
6864
6875
|
Unpack.Sync = UnpackSync;
|
|
6865
6876
|
module.exports = Unpack;
|
|
6866
6877
|
},
|
|
6867
|
-
|
|
6878
|
+
2145: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
6868
6879
|
"use strict";
|
|
6869
|
-
const hlo = __webpack_require__(
|
|
6870
|
-
const r = __webpack_require__(
|
|
6880
|
+
const hlo = __webpack_require__(2635);
|
|
6881
|
+
const r = __webpack_require__(6138);
|
|
6871
6882
|
module.exports = (opt_, files, cb) => {
|
|
6872
6883
|
const opt = hlo(opt_);
|
|
6873
6884
|
if (!opt.file) {
|
|
@@ -6891,7 +6902,7 @@ var __webpack_modules__ = {
|
|
|
6891
6902
|
opt.filter = filter ? (path, stat) => filter(path, stat) && !(opt.mtimeCache.get(path) > stat.mtime) : (path, stat) => !(opt.mtimeCache.get(path) > stat.mtime);
|
|
6892
6903
|
};
|
|
6893
6904
|
},
|
|
6894
|
-
|
|
6905
|
+
1004: module => {
|
|
6895
6906
|
"use strict";
|
|
6896
6907
|
module.exports = Base => class extends Base {
|
|
6897
6908
|
warn(code, message, data = {}) {
|
|
@@ -6917,7 +6928,7 @@ var __webpack_modules__ = {
|
|
|
6917
6928
|
}
|
|
6918
6929
|
};
|
|
6919
6930
|
},
|
|
6920
|
-
|
|
6931
|
+
2451: module => {
|
|
6921
6932
|
"use strict";
|
|
6922
6933
|
const raw = [ "|", "<", ">", "?", ":" ];
|
|
6923
6934
|
const win = raw.map((char => String.fromCharCode(61440 + char.charCodeAt(0))));
|
|
@@ -6928,15 +6939,15 @@ var __webpack_modules__ = {
|
|
|
6928
6939
|
decode: s => win.reduce(((s, c) => s.split(c).join(toRaw.get(c))), s)
|
|
6929
6940
|
};
|
|
6930
6941
|
},
|
|
6931
|
-
|
|
6942
|
+
7432: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
6932
6943
|
"use strict";
|
|
6933
|
-
const {Minipass} = __webpack_require__(
|
|
6934
|
-
const Pax = __webpack_require__(
|
|
6935
|
-
const Header = __webpack_require__(
|
|
6936
|
-
const fs = __webpack_require__(
|
|
6937
|
-
const path = __webpack_require__(
|
|
6938
|
-
const normPath = __webpack_require__(
|
|
6939
|
-
const stripSlash = __webpack_require__(
|
|
6944
|
+
const {Minipass} = __webpack_require__(1476);
|
|
6945
|
+
const Pax = __webpack_require__(7659);
|
|
6946
|
+
const Header = __webpack_require__(4129);
|
|
6947
|
+
const fs = __webpack_require__(9896);
|
|
6948
|
+
const path = __webpack_require__(6928);
|
|
6949
|
+
const normPath = __webpack_require__(2961);
|
|
6950
|
+
const stripSlash = __webpack_require__(9625);
|
|
6940
6951
|
const prefixPath = (path, prefix) => {
|
|
6941
6952
|
if (!prefix) {
|
|
6942
6953
|
return normPath(path);
|
|
@@ -6964,10 +6975,10 @@ var __webpack_modules__ = {
|
|
|
6964
6975
|
const ONDRAIN = Symbol("ondrain");
|
|
6965
6976
|
const PREFIX = Symbol("prefix");
|
|
6966
6977
|
const HAD_ERROR = Symbol("hadError");
|
|
6967
|
-
const warner = __webpack_require__(
|
|
6968
|
-
const winchars = __webpack_require__(
|
|
6969
|
-
const stripAbsolutePath = __webpack_require__(
|
|
6970
|
-
const modeFix = __webpack_require__(
|
|
6978
|
+
const warner = __webpack_require__(1004);
|
|
6979
|
+
const winchars = __webpack_require__(2451);
|
|
6980
|
+
const stripAbsolutePath = __webpack_require__(5958);
|
|
6981
|
+
const modeFix = __webpack_require__(3877);
|
|
6971
6982
|
const WriteEntry = warner(class WriteEntry extends Minipass {
|
|
6972
6983
|
constructor(p, opt) {
|
|
6973
6984
|
opt = opt || {};
|
|
@@ -7385,15 +7396,15 @@ var __webpack_modules__ = {
|
|
|
7385
7396
|
const getType = stat => stat.isFile() ? "File" : stat.isDirectory() ? "Directory" : stat.isSymbolicLink() ? "SymbolicLink" : "Unsupported";
|
|
7386
7397
|
module.exports = WriteEntry;
|
|
7387
7398
|
},
|
|
7388
|
-
|
|
7399
|
+
1476: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
7389
7400
|
"use strict";
|
|
7390
7401
|
const proc = typeof process === "object" && process ? process : {
|
|
7391
7402
|
stdout: null,
|
|
7392
7403
|
stderr: null
|
|
7393
7404
|
};
|
|
7394
|
-
const EE = __webpack_require__(
|
|
7395
|
-
const Stream = __webpack_require__(
|
|
7396
|
-
const stringdecoder = __webpack_require__(
|
|
7405
|
+
const EE = __webpack_require__(4434);
|
|
7406
|
+
const Stream = __webpack_require__(2203);
|
|
7407
|
+
const stringdecoder = __webpack_require__(3193);
|
|
7397
7408
|
const SD = stringdecoder.StringDecoder;
|
|
7398
7409
|
const EOF = Symbol("EOF");
|
|
7399
7410
|
const MAYBE_EMIT_END = Symbol("maybeEmitEnd");
|
|
@@ -7889,7 +7900,7 @@ var __webpack_modules__ = {
|
|
|
7889
7900
|
}
|
|
7890
7901
|
exports.Minipass = Minipass;
|
|
7891
7902
|
},
|
|
7892
|
-
|
|
7903
|
+
9022: (__unused_webpack_module, exports) => {
|
|
7893
7904
|
"use strict";
|
|
7894
7905
|
exports.fromCallback = function(fn) {
|
|
7895
7906
|
return Object.defineProperty((function(...args) {
|
|
@@ -7915,7 +7926,7 @@ var __webpack_modules__ = {
|
|
|
7915
7926
|
});
|
|
7916
7927
|
};
|
|
7917
7928
|
},
|
|
7918
|
-
|
|
7929
|
+
4661: function(__unused_webpack_module, exports) {
|
|
7919
7930
|
/** @license URI.js v4.4.1 (c) 2011 Gary Court. License: http://github.com/garycourt/uri-js */
|
|
7920
7931
|
(function(global, factory) {
|
|
7921
7932
|
true ? factory(exports) : 0;
|
|
@@ -8907,7 +8918,7 @@ var __webpack_modules__ = {
|
|
|
8907
8918
|
});
|
|
8908
8919
|
}));
|
|
8909
8920
|
},
|
|
8910
|
-
|
|
8921
|
+
6949: module => {
|
|
8911
8922
|
"use strict";
|
|
8912
8923
|
module.exports = function(Yallist) {
|
|
8913
8924
|
Yallist.prototype[Symbol.iterator] = function*() {
|
|
@@ -8917,7 +8928,7 @@ var __webpack_modules__ = {
|
|
|
8917
8928
|
};
|
|
8918
8929
|
};
|
|
8919
8930
|
},
|
|
8920
|
-
|
|
8931
|
+
5773: (module, __unused_webpack_exports, __webpack_require__) => {
|
|
8921
8932
|
"use strict";
|
|
8922
8933
|
module.exports = Yallist;
|
|
8923
8934
|
Yallist.Node = Node;
|
|
@@ -9278,10 +9289,10 @@ var __webpack_modules__ = {
|
|
|
9278
9289
|
}
|
|
9279
9290
|
}
|
|
9280
9291
|
try {
|
|
9281
|
-
__webpack_require__(
|
|
9292
|
+
__webpack_require__(6949)(Yallist);
|
|
9282
9293
|
} catch (er) {}
|
|
9283
9294
|
},
|
|
9284
|
-
|
|
9295
|
+
3403: (__unused_webpack_module, exports) => {
|
|
9285
9296
|
"use strict";
|
|
9286
9297
|
Object.defineProperty(exports, "__esModule", {
|
|
9287
9298
|
value: true
|
|
@@ -9322,14 +9333,14 @@ var __webpack_modules__ = {
|
|
|
9322
9333
|
}
|
|
9323
9334
|
exports.isPropertyOverride = isPropertyOverride;
|
|
9324
9335
|
},
|
|
9325
|
-
|
|
9336
|
+
9099: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
9326
9337
|
"use strict";
|
|
9327
9338
|
Object.defineProperty(exports, "__esModule", {
|
|
9328
9339
|
value: true
|
|
9329
9340
|
});
|
|
9330
9341
|
exports.digestFile = void 0;
|
|
9331
|
-
const crypto_1 = __webpack_require__(
|
|
9332
|
-
const fs_1 = __webpack_require__(
|
|
9342
|
+
const crypto_1 = __webpack_require__(6982);
|
|
9343
|
+
const fs_1 = __webpack_require__(9896);
|
|
9333
9344
|
const ALGORITHM = "sha256";
|
|
9334
9345
|
function digestFile(path, ...comments) {
|
|
9335
9346
|
const hash = (0, crypto_1.createHash)(ALGORITHM);
|
|
@@ -9351,7 +9362,7 @@ var __webpack_modules__ = {
|
|
|
9351
9362
|
}
|
|
9352
9363
|
exports.digestFile = digestFile;
|
|
9353
9364
|
},
|
|
9354
|
-
|
|
9365
|
+
6318: function(__unused_webpack_module, exports, __webpack_require__) {
|
|
9355
9366
|
"use strict";
|
|
9356
9367
|
var __classPrivateFieldSet = this && this.__classPrivateFieldSet || function(receiver, state, value, kind, f) {
|
|
9357
9368
|
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
@@ -9370,10 +9381,10 @@ var __webpack_modules__ = {
|
|
|
9370
9381
|
value: true
|
|
9371
9382
|
});
|
|
9372
9383
|
exports.Entry = exports.DiskCache = void 0;
|
|
9373
|
-
const fs_1 = __webpack_require__(
|
|
9374
|
-
const lockfile_1 = __webpack_require__(
|
|
9375
|
-
const path_1 = __webpack_require__(
|
|
9376
|
-
const digest_file_1 = __webpack_require__(
|
|
9384
|
+
const fs_1 = __webpack_require__(9896);
|
|
9385
|
+
const lockfile_1 = __webpack_require__(4509);
|
|
9386
|
+
const path_1 = __webpack_require__(6928);
|
|
9387
|
+
const digest_file_1 = __webpack_require__(9099);
|
|
9377
9388
|
const MARKER_FILE_NAME = ".jsii-runtime-package-cache";
|
|
9378
9389
|
const ONE_DAY_IN_MS = 864e5;
|
|
9379
9390
|
const PRUNE_AFTER_MILLISECONDS = process.env.JSII_RUNTIME_PACKAGE_CACHE_TTL ? parseInt(process.env.JSII_RUNTIME_PACKAGE_CACHE_TTL, 10) * ONE_DAY_IN_MS : 30 * ONE_DAY_IN_MS;
|
|
@@ -9630,7 +9641,7 @@ var __webpack_modules__ = {
|
|
|
9630
9641
|
Atomics.wait(new Int32Array(new SharedArrayBuffer(4)), 0, 0, ms);
|
|
9631
9642
|
}
|
|
9632
9643
|
},
|
|
9633
|
-
|
|
9644
|
+
4018: function(__unused_webpack_module, exports, __webpack_require__) {
|
|
9634
9645
|
"use strict";
|
|
9635
9646
|
var __createBinding = this && this.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
9636
9647
|
if (k2 === undefined) k2 = k;
|
|
@@ -9654,9 +9665,9 @@ var __webpack_modules__ = {
|
|
|
9654
9665
|
Object.defineProperty(exports, "__esModule", {
|
|
9655
9666
|
value: true
|
|
9656
9667
|
});
|
|
9657
|
-
__exportStar(__webpack_require__(
|
|
9668
|
+
__exportStar(__webpack_require__(6318), exports);
|
|
9658
9669
|
},
|
|
9659
|
-
|
|
9670
|
+
7583: function(__unused_webpack_module, exports, __webpack_require__) {
|
|
9660
9671
|
"use strict";
|
|
9661
9672
|
var __createBinding = this && this.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
9662
9673
|
if (k2 === undefined) k2 = k;
|
|
@@ -9681,11 +9692,11 @@ var __webpack_modules__ = {
|
|
|
9681
9692
|
value: true
|
|
9682
9693
|
});
|
|
9683
9694
|
exports.api = void 0;
|
|
9684
|
-
__exportStar(__webpack_require__(
|
|
9685
|
-
const api = __webpack_require__(
|
|
9695
|
+
__exportStar(__webpack_require__(162), exports);
|
|
9696
|
+
const api = __webpack_require__(3403);
|
|
9686
9697
|
exports.api = api;
|
|
9687
9698
|
},
|
|
9688
|
-
|
|
9699
|
+
162: function(__unused_webpack_module, exports, __webpack_require__) {
|
|
9689
9700
|
"use strict";
|
|
9690
9701
|
var __classPrivateFieldGet = this && this.__classPrivateFieldGet || function(receiver, state, kind, f) {
|
|
9691
9702
|
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
@@ -9704,18 +9715,18 @@ var __webpack_modules__ = {
|
|
|
9704
9715
|
value: true
|
|
9705
9716
|
});
|
|
9706
9717
|
exports.Kernel = exports.RuntimeError = exports.JsiiFault = void 0;
|
|
9707
|
-
const spec = __webpack_require__(
|
|
9708
|
-
const cp = __webpack_require__(
|
|
9709
|
-
const fs = __webpack_require__(
|
|
9710
|
-
const module_1 = __webpack_require__(
|
|
9711
|
-
const os = __webpack_require__(
|
|
9712
|
-
const path = __webpack_require__(
|
|
9713
|
-
const api = __webpack_require__(
|
|
9714
|
-
const api_1 = __webpack_require__(
|
|
9715
|
-
const objects_1 = __webpack_require__(
|
|
9716
|
-
const onExit = __webpack_require__(
|
|
9717
|
-
const wire = __webpack_require__(
|
|
9718
|
-
const tar = __webpack_require__(
|
|
9718
|
+
const spec = __webpack_require__(9501);
|
|
9719
|
+
const cp = __webpack_require__(5317);
|
|
9720
|
+
const fs = __webpack_require__(8463);
|
|
9721
|
+
const module_1 = __webpack_require__(3339);
|
|
9722
|
+
const os = __webpack_require__(857);
|
|
9723
|
+
const path = __webpack_require__(6928);
|
|
9724
|
+
const api = __webpack_require__(3403);
|
|
9725
|
+
const api_1 = __webpack_require__(3403);
|
|
9726
|
+
const objects_1 = __webpack_require__(2063);
|
|
9727
|
+
const onExit = __webpack_require__(9743);
|
|
9728
|
+
const wire = __webpack_require__(1663);
|
|
9729
|
+
const tar = __webpack_require__(7344);
|
|
9719
9730
|
class JsiiFault extends Error {
|
|
9720
9731
|
constructor(message) {
|
|
9721
9732
|
super(message);
|
|
@@ -10535,15 +10546,15 @@ var __webpack_modules__ = {
|
|
|
10535
10546
|
}
|
|
10536
10547
|
}
|
|
10537
10548
|
},
|
|
10538
|
-
|
|
10549
|
+
8171: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
10539
10550
|
"use strict";
|
|
10540
10551
|
Object.defineProperty(exports, "__esModule", {
|
|
10541
10552
|
value: true
|
|
10542
10553
|
});
|
|
10543
10554
|
exports.link = void 0;
|
|
10544
|
-
const fs_1 = __webpack_require__(
|
|
10545
|
-
const os = __webpack_require__(
|
|
10546
|
-
const path_1 = __webpack_require__(
|
|
10555
|
+
const fs_1 = __webpack_require__(9896);
|
|
10556
|
+
const os = __webpack_require__(857);
|
|
10557
|
+
const path_1 = __webpack_require__(6928);
|
|
10547
10558
|
const PRESERVE_SYMLINKS = process.execArgv.includes("--preserve-symlinks");
|
|
10548
10559
|
function link(existingRoot, destinationRoot) {
|
|
10549
10560
|
(0, fs_1.mkdirSync)((0, path_1.dirname)(destinationRoot), {
|
|
@@ -10581,7 +10592,7 @@ var __webpack_modules__ = {
|
|
|
10581
10592
|
}
|
|
10582
10593
|
exports.link = link;
|
|
10583
10594
|
},
|
|
10584
|
-
|
|
10595
|
+
2063: function(__unused_webpack_module, exports, __webpack_require__) {
|
|
10585
10596
|
"use strict";
|
|
10586
10597
|
var __classPrivateFieldSet = this && this.__classPrivateFieldSet || function(receiver, state, value, kind, f) {
|
|
10587
10598
|
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
@@ -10600,11 +10611,11 @@ var __webpack_modules__ = {
|
|
|
10600
10611
|
value: true
|
|
10601
10612
|
});
|
|
10602
10613
|
exports.ObjectTable = exports.tagJsiiConstructor = exports.objectReference = exports.jsiiTypeFqn = void 0;
|
|
10603
|
-
const spec = __webpack_require__(
|
|
10604
|
-
const assert = __webpack_require__(
|
|
10605
|
-
const api = __webpack_require__(
|
|
10606
|
-
const kernel_1 = __webpack_require__(
|
|
10607
|
-
const serialization_1 = __webpack_require__(
|
|
10614
|
+
const spec = __webpack_require__(9501);
|
|
10615
|
+
const assert = __webpack_require__(2613);
|
|
10616
|
+
const api = __webpack_require__(3403);
|
|
10617
|
+
const kernel_1 = __webpack_require__(162);
|
|
10618
|
+
const serialization_1 = __webpack_require__(1663);
|
|
10608
10619
|
const OBJID_SYMBOL = Symbol.for("$__jsii__objid__$");
|
|
10609
10620
|
const IFACES_SYMBOL = Symbol.for("$__jsii__interfaces__$");
|
|
10610
10621
|
const JSII_RTTI_SYMBOL = Symbol.for("jsii.rtti");
|
|
@@ -10799,14 +10810,14 @@ var __webpack_modules__ = {
|
|
|
10799
10810
|
}
|
|
10800
10811
|
}
|
|
10801
10812
|
},
|
|
10802
|
-
|
|
10813
|
+
9743: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
10803
10814
|
"use strict";
|
|
10804
10815
|
Object.defineProperty(exports, "__esModule", {
|
|
10805
10816
|
value: true
|
|
10806
10817
|
});
|
|
10807
10818
|
exports.removeSync = void 0;
|
|
10808
|
-
const fs = __webpack_require__(
|
|
10809
|
-
const process = __webpack_require__(
|
|
10819
|
+
const fs = __webpack_require__(8463);
|
|
10820
|
+
const process = __webpack_require__(932);
|
|
10810
10821
|
const removeSyncPaths = new Array;
|
|
10811
10822
|
function removeSync(path) {
|
|
10812
10823
|
registerIfNeeded();
|
|
@@ -10829,18 +10840,18 @@ var __webpack_modules__ = {
|
|
|
10829
10840
|
}
|
|
10830
10841
|
}
|
|
10831
10842
|
},
|
|
10832
|
-
|
|
10843
|
+
1663: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
10833
10844
|
"use strict";
|
|
10834
10845
|
Object.defineProperty(exports, "__esModule", {
|
|
10835
10846
|
value: true
|
|
10836
10847
|
});
|
|
10837
10848
|
exports.SerializationError = exports.process = exports.serializationType = exports.SERIALIZERS = exports.SYMBOL_WIRE_TYPE = exports.EMPTY_OBJECT_FQN = void 0;
|
|
10838
|
-
const spec = __webpack_require__(
|
|
10839
|
-
const assert = __webpack_require__(
|
|
10840
|
-
const util_1 = __webpack_require__(
|
|
10841
|
-
const api_1 = __webpack_require__(
|
|
10842
|
-
const objects_1 = __webpack_require__(
|
|
10843
|
-
const _1 = __webpack_require__(
|
|
10849
|
+
const spec = __webpack_require__(9501);
|
|
10850
|
+
const assert = __webpack_require__(2613);
|
|
10851
|
+
const util_1 = __webpack_require__(9023);
|
|
10852
|
+
const api_1 = __webpack_require__(3403);
|
|
10853
|
+
const objects_1 = __webpack_require__(2063);
|
|
10854
|
+
const _1 = __webpack_require__(7583);
|
|
10844
10855
|
const VOID = "void";
|
|
10845
10856
|
exports.EMPTY_OBJECT_FQN = "Object";
|
|
10846
10857
|
exports.SYMBOL_WIRE_TYPE = Symbol.for("$jsii$wireType$");
|
|
@@ -11522,14 +11533,14 @@ var __webpack_modules__ = {
|
|
|
11522
11533
|
}
|
|
11523
11534
|
}
|
|
11524
11535
|
},
|
|
11525
|
-
|
|
11536
|
+
8819: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
11526
11537
|
"use strict";
|
|
11527
11538
|
Object.defineProperty(exports, "__esModule", {
|
|
11528
11539
|
value: true
|
|
11529
11540
|
});
|
|
11530
11541
|
exports.defaultCacheRoot = void 0;
|
|
11531
|
-
const os_1 = __webpack_require__(
|
|
11532
|
-
const path_1 = __webpack_require__(
|
|
11542
|
+
const os_1 = __webpack_require__(857);
|
|
11543
|
+
const path_1 = __webpack_require__(6928);
|
|
11533
11544
|
function defaultCacheRoot() {
|
|
11534
11545
|
switch (process.platform) {
|
|
11535
11546
|
case "darwin":
|
|
@@ -11550,18 +11561,18 @@ var __webpack_modules__ = {
|
|
|
11550
11561
|
}
|
|
11551
11562
|
exports.defaultCacheRoot = defaultCacheRoot;
|
|
11552
11563
|
},
|
|
11553
|
-
|
|
11564
|
+
7344: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
11554
11565
|
"use strict";
|
|
11555
11566
|
var _a, _b;
|
|
11556
11567
|
Object.defineProperty(exports, "__esModule", {
|
|
11557
11568
|
value: true
|
|
11558
11569
|
});
|
|
11559
11570
|
exports.setPackageCacheEnabled = exports.getPackageCacheEnabled = exports.extract = void 0;
|
|
11560
|
-
const fs_1 = __webpack_require__(
|
|
11561
|
-
const tar = __webpack_require__(
|
|
11562
|
-
const disk_cache_1 = __webpack_require__(
|
|
11563
|
-
const link_1 = __webpack_require__(
|
|
11564
|
-
const default_cache_root_1 = __webpack_require__(
|
|
11571
|
+
const fs_1 = __webpack_require__(9896);
|
|
11572
|
+
const tar = __webpack_require__(5194);
|
|
11573
|
+
const disk_cache_1 = __webpack_require__(4018);
|
|
11574
|
+
const link_1 = __webpack_require__(8171);
|
|
11575
|
+
const default_cache_root_1 = __webpack_require__(8819);
|
|
11565
11576
|
let packageCacheEnabled = ((_b = (_a = process.env.JSII_RUNTIME_PACKAGE_CACHE) === null || _a === void 0 ? void 0 : _a.toLocaleLowerCase()) !== null && _b !== void 0 ? _b : "enabled") === "enabled";
|
|
11566
11577
|
function extract(file, outDir, options, ...comments) {
|
|
11567
11578
|
try {
|
|
@@ -11627,14 +11638,14 @@ var __webpack_modules__ = {
|
|
|
11627
11638
|
}
|
|
11628
11639
|
exports.setPackageCacheEnabled = setPackageCacheEnabled;
|
|
11629
11640
|
},
|
|
11630
|
-
|
|
11641
|
+
8623: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
11631
11642
|
"use strict";
|
|
11632
11643
|
Object.defineProperty(exports, "__esModule", {
|
|
11633
11644
|
value: true
|
|
11634
11645
|
});
|
|
11635
11646
|
exports.KernelHost = void 0;
|
|
11636
|
-
const kernel_1 = __webpack_require__(
|
|
11637
|
-
const events_1 = __webpack_require__(
|
|
11647
|
+
const kernel_1 = __webpack_require__(7583);
|
|
11648
|
+
const events_1 = __webpack_require__(4434);
|
|
11638
11649
|
class KernelHost {
|
|
11639
11650
|
constructor(inout, opts = {}) {
|
|
11640
11651
|
var _a, _b, _c;
|
|
@@ -11762,7 +11773,7 @@ var __webpack_modules__ = {
|
|
|
11762
11773
|
}
|
|
11763
11774
|
exports.KernelHost = KernelHost;
|
|
11764
11775
|
},
|
|
11765
|
-
|
|
11776
|
+
6663: (__unused_webpack_module, exports) => {
|
|
11766
11777
|
"use strict";
|
|
11767
11778
|
Object.defineProperty(exports, "__esModule", {
|
|
11768
11779
|
value: true
|
|
@@ -11800,13 +11811,13 @@ var __webpack_modules__ = {
|
|
|
11800
11811
|
}
|
|
11801
11812
|
exports.InputOutput = InputOutput;
|
|
11802
11813
|
},
|
|
11803
|
-
|
|
11814
|
+
7614: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
11804
11815
|
"use strict";
|
|
11805
11816
|
Object.defineProperty(exports, "__esModule", {
|
|
11806
11817
|
value: true
|
|
11807
11818
|
});
|
|
11808
11819
|
exports.SyncStdio = void 0;
|
|
11809
|
-
const fs = __webpack_require__(
|
|
11820
|
+
const fs = __webpack_require__(9896);
|
|
11810
11821
|
const INPUT_BUFFER_SIZE = 1048576;
|
|
11811
11822
|
class SyncStdio {
|
|
11812
11823
|
constructor({errorFD, readFD, writeFD}) {
|
|
@@ -11851,18 +11862,18 @@ var __webpack_modules__ = {
|
|
|
11851
11862
|
}
|
|
11852
11863
|
exports.SyncStdio = SyncStdio;
|
|
11853
11864
|
},
|
|
11854
|
-
|
|
11865
|
+
5757: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
11855
11866
|
"use strict";
|
|
11856
11867
|
Object.defineProperty(exports, "__esModule", {
|
|
11857
11868
|
value: true
|
|
11858
11869
|
});
|
|
11859
11870
|
exports.loadAssemblyFromFile = exports.loadAssemblyFromPath = exports.loadAssemblyFromBuffer = exports.writeAssembly = exports.replaceAssembly = exports.findAssemblyFile = exports.compressedAssemblyExists = void 0;
|
|
11860
|
-
const fs = __webpack_require__(
|
|
11861
|
-
const path = __webpack_require__(
|
|
11862
|
-
const zlib = __webpack_require__(
|
|
11863
|
-
const assembly_1 = __webpack_require__(
|
|
11864
|
-
const redirect_1 = __webpack_require__(
|
|
11865
|
-
const validate_assembly_1 = __webpack_require__(
|
|
11871
|
+
const fs = __webpack_require__(9896);
|
|
11872
|
+
const path = __webpack_require__(6928);
|
|
11873
|
+
const zlib = __webpack_require__(3106);
|
|
11874
|
+
const assembly_1 = __webpack_require__(3713);
|
|
11875
|
+
const redirect_1 = __webpack_require__(5517);
|
|
11876
|
+
const validate_assembly_1 = __webpack_require__(5496);
|
|
11866
11877
|
function compressedAssemblyExists(directory) {
|
|
11867
11878
|
return fs.existsSync(path.join(directory, assembly_1.SPEC_FILE_NAME_COMPRESSED));
|
|
11868
11879
|
}
|
|
@@ -11942,7 +11953,7 @@ var __webpack_modules__ = {
|
|
|
11942
11953
|
return JSON.parse(json);
|
|
11943
11954
|
}
|
|
11944
11955
|
},
|
|
11945
|
-
|
|
11956
|
+
3713: (__unused_webpack_module, exports) => {
|
|
11946
11957
|
"use strict";
|
|
11947
11958
|
Object.defineProperty(exports, "__esModule", {
|
|
11948
11959
|
value: true
|
|
@@ -12045,13 +12056,13 @@ var __webpack_modules__ = {
|
|
|
12045
12056
|
}
|
|
12046
12057
|
exports.isDeprecated = isDeprecated;
|
|
12047
12058
|
},
|
|
12048
|
-
|
|
12059
|
+
4699: (__unused_webpack_module, exports) => {
|
|
12049
12060
|
"use strict";
|
|
12050
12061
|
Object.defineProperty(exports, "__esModule", {
|
|
12051
12062
|
value: true
|
|
12052
12063
|
});
|
|
12053
12064
|
},
|
|
12054
|
-
|
|
12065
|
+
9501: function(__unused_webpack_module, exports, __webpack_require__) {
|
|
12055
12066
|
"use strict";
|
|
12056
12067
|
var __createBinding = this && this.__createBinding || (Object.create ? function(o, m, k, k2) {
|
|
12057
12068
|
if (k2 === undefined) k2 = k;
|
|
@@ -12075,14 +12086,14 @@ var __webpack_modules__ = {
|
|
|
12075
12086
|
Object.defineProperty(exports, "__esModule", {
|
|
12076
12087
|
value: true
|
|
12077
12088
|
});
|
|
12078
|
-
__exportStar(__webpack_require__(
|
|
12079
|
-
__exportStar(__webpack_require__(
|
|
12080
|
-
__exportStar(__webpack_require__(
|
|
12081
|
-
__exportStar(__webpack_require__(
|
|
12082
|
-
__exportStar(__webpack_require__(
|
|
12083
|
-
__exportStar(__webpack_require__(
|
|
12089
|
+
__exportStar(__webpack_require__(3713), exports);
|
|
12090
|
+
__exportStar(__webpack_require__(5757), exports);
|
|
12091
|
+
__exportStar(__webpack_require__(4699), exports);
|
|
12092
|
+
__exportStar(__webpack_require__(447), exports);
|
|
12093
|
+
__exportStar(__webpack_require__(5517), exports);
|
|
12094
|
+
__exportStar(__webpack_require__(5496), exports);
|
|
12084
12095
|
},
|
|
12085
|
-
|
|
12096
|
+
447: (__unused_webpack_module, exports) => {
|
|
12086
12097
|
"use strict";
|
|
12087
12098
|
Object.defineProperty(exports, "__esModule", {
|
|
12088
12099
|
value: true
|
|
@@ -12120,14 +12131,14 @@ var __webpack_modules__ = {
|
|
|
12120
12131
|
}
|
|
12121
12132
|
exports.NameTree = NameTree;
|
|
12122
12133
|
},
|
|
12123
|
-
|
|
12134
|
+
5517: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
12124
12135
|
"use strict";
|
|
12125
12136
|
Object.defineProperty(exports, "__esModule", {
|
|
12126
12137
|
value: true
|
|
12127
12138
|
});
|
|
12128
12139
|
exports.validateAssemblyRedirect = exports.isAssemblyRedirect = exports.assemblyRedirectSchema = void 0;
|
|
12129
|
-
const ajv_1 = __webpack_require__(
|
|
12130
|
-
exports.assemblyRedirectSchema = __webpack_require__(
|
|
12140
|
+
const ajv_1 = __webpack_require__(4882);
|
|
12141
|
+
exports.assemblyRedirectSchema = __webpack_require__(3346);
|
|
12131
12142
|
const SCHEMA = "jsii/file-redirect";
|
|
12132
12143
|
function isAssemblyRedirect(obj) {
|
|
12133
12144
|
if (typeof obj !== "object" || obj == null) {
|
|
@@ -12152,14 +12163,14 @@ var __webpack_modules__ = {
|
|
|
12152
12163
|
}
|
|
12153
12164
|
exports.validateAssemblyRedirect = validateAssemblyRedirect;
|
|
12154
12165
|
},
|
|
12155
|
-
|
|
12166
|
+
5496: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
12156
12167
|
"use strict";
|
|
12157
12168
|
Object.defineProperty(exports, "__esModule", {
|
|
12158
12169
|
value: true
|
|
12159
12170
|
});
|
|
12160
12171
|
exports.validateAssembly = exports.schema = void 0;
|
|
12161
|
-
const ajv_1 = __webpack_require__(
|
|
12162
|
-
exports.schema = __webpack_require__(
|
|
12172
|
+
const ajv_1 = __webpack_require__(4882);
|
|
12173
|
+
exports.schema = __webpack_require__(878);
|
|
12163
12174
|
function validateAssembly(obj) {
|
|
12164
12175
|
const ajv = new ajv_1.default({
|
|
12165
12176
|
allErrors: true
|
|
@@ -12180,16 +12191,16 @@ var __webpack_modules__ = {
|
|
|
12180
12191
|
}
|
|
12181
12192
|
exports.validateAssembly = validateAssembly;
|
|
12182
12193
|
},
|
|
12183
|
-
|
|
12194
|
+
4882: (module, exports, __webpack_require__) => {
|
|
12184
12195
|
"use strict";
|
|
12185
12196
|
Object.defineProperty(exports, "__esModule", {
|
|
12186
12197
|
value: true
|
|
12187
12198
|
});
|
|
12188
|
-
exports.MissingRefError = exports.ValidationError = exports.CodeGen = exports.Name = exports.nil = exports.stringify = exports.str = exports._ = exports.KeywordCxt = void 0;
|
|
12189
|
-
const core_1 = __webpack_require__(
|
|
12190
|
-
const draft7_1 = __webpack_require__(
|
|
12191
|
-
const discriminator_1 = __webpack_require__(
|
|
12192
|
-
const draft7MetaSchema = __webpack_require__(
|
|
12199
|
+
exports.MissingRefError = exports.ValidationError = exports.CodeGen = exports.Name = exports.nil = exports.stringify = exports.str = exports._ = exports.KeywordCxt = exports.Ajv = void 0;
|
|
12200
|
+
const core_1 = __webpack_require__(6986);
|
|
12201
|
+
const draft7_1 = __webpack_require__(6448);
|
|
12202
|
+
const discriminator_1 = __webpack_require__(7773);
|
|
12203
|
+
const draft7MetaSchema = __webpack_require__(3311);
|
|
12193
12204
|
const META_SUPPORT_DATA = [ "/properties" ];
|
|
12194
12205
|
const META_SCHEMA_ID = "http://json-schema.org/draft-07/schema";
|
|
12195
12206
|
class Ajv extends core_1.default {
|
|
@@ -12209,19 +12220,21 @@ var __webpack_modules__ = {
|
|
|
12209
12220
|
return this.opts.defaultMeta = super.defaultMeta() || (this.getSchema(META_SCHEMA_ID) ? META_SCHEMA_ID : undefined);
|
|
12210
12221
|
}
|
|
12211
12222
|
}
|
|
12223
|
+
exports.Ajv = Ajv;
|
|
12212
12224
|
module.exports = exports = Ajv;
|
|
12225
|
+
module.exports.Ajv = Ajv;
|
|
12213
12226
|
Object.defineProperty(exports, "__esModule", {
|
|
12214
12227
|
value: true
|
|
12215
12228
|
});
|
|
12216
12229
|
exports["default"] = Ajv;
|
|
12217
|
-
var validate_1 = __webpack_require__(
|
|
12230
|
+
var validate_1 = __webpack_require__(2538);
|
|
12218
12231
|
Object.defineProperty(exports, "KeywordCxt", {
|
|
12219
12232
|
enumerable: true,
|
|
12220
12233
|
get: function() {
|
|
12221
12234
|
return validate_1.KeywordCxt;
|
|
12222
12235
|
}
|
|
12223
12236
|
});
|
|
12224
|
-
var codegen_1 = __webpack_require__(
|
|
12237
|
+
var codegen_1 = __webpack_require__(7525);
|
|
12225
12238
|
Object.defineProperty(exports, "_", {
|
|
12226
12239
|
enumerable: true,
|
|
12227
12240
|
get: function() {
|
|
@@ -12258,14 +12271,14 @@ var __webpack_modules__ = {
|
|
|
12258
12271
|
return codegen_1.CodeGen;
|
|
12259
12272
|
}
|
|
12260
12273
|
});
|
|
12261
|
-
var validation_error_1 = __webpack_require__(
|
|
12274
|
+
var validation_error_1 = __webpack_require__(9990);
|
|
12262
12275
|
Object.defineProperty(exports, "ValidationError", {
|
|
12263
12276
|
enumerable: true,
|
|
12264
12277
|
get: function() {
|
|
12265
12278
|
return validation_error_1.default;
|
|
12266
12279
|
}
|
|
12267
12280
|
});
|
|
12268
|
-
var ref_error_1 = __webpack_require__(
|
|
12281
|
+
var ref_error_1 = __webpack_require__(8887);
|
|
12269
12282
|
Object.defineProperty(exports, "MissingRefError", {
|
|
12270
12283
|
enumerable: true,
|
|
12271
12284
|
get: function() {
|
|
@@ -12273,7 +12286,7 @@ var __webpack_modules__ = {
|
|
|
12273
12286
|
}
|
|
12274
12287
|
});
|
|
12275
12288
|
},
|
|
12276
|
-
|
|
12289
|
+
1648: (__unused_webpack_module, exports) => {
|
|
12277
12290
|
"use strict";
|
|
12278
12291
|
Object.defineProperty(exports, "__esModule", {
|
|
12279
12292
|
value: true
|
|
@@ -12412,15 +12425,15 @@ var __webpack_modules__ = {
|
|
|
12412
12425
|
}
|
|
12413
12426
|
exports.regexpCode = regexpCode;
|
|
12414
12427
|
},
|
|
12415
|
-
|
|
12428
|
+
7525: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
12416
12429
|
"use strict";
|
|
12417
12430
|
Object.defineProperty(exports, "__esModule", {
|
|
12418
12431
|
value: true
|
|
12419
12432
|
});
|
|
12420
12433
|
exports.or = exports.and = exports.not = exports.CodeGen = exports.operators = exports.varKinds = exports.ValueScopeName = exports.ValueScope = exports.Scope = exports.Name = exports.regexpCode = exports.stringify = exports.getProperty = exports.nil = exports.strConcat = exports.str = exports._ = void 0;
|
|
12421
|
-
const code_1 = __webpack_require__(
|
|
12422
|
-
const scope_1 = __webpack_require__(
|
|
12423
|
-
var code_2 = __webpack_require__(
|
|
12434
|
+
const code_1 = __webpack_require__(1648);
|
|
12435
|
+
const scope_1 = __webpack_require__(6341);
|
|
12436
|
+
var code_2 = __webpack_require__(1648);
|
|
12424
12437
|
Object.defineProperty(exports, "_", {
|
|
12425
12438
|
enumerable: true,
|
|
12426
12439
|
get: function() {
|
|
@@ -12469,7 +12482,7 @@ var __webpack_modules__ = {
|
|
|
12469
12482
|
return code_2.Name;
|
|
12470
12483
|
}
|
|
12471
12484
|
});
|
|
12472
|
-
var scope_2 = __webpack_require__(
|
|
12485
|
+
var scope_2 = __webpack_require__(6341);
|
|
12473
12486
|
Object.defineProperty(exports, "Scope", {
|
|
12474
12487
|
enumerable: true,
|
|
12475
12488
|
get: function() {
|
|
@@ -13097,13 +13110,13 @@ var __webpack_modules__ = {
|
|
|
13097
13110
|
return x instanceof code_1.Name ? x : (0, code_1._)`(${x})`;
|
|
13098
13111
|
}
|
|
13099
13112
|
},
|
|
13100
|
-
|
|
13113
|
+
6341: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
13101
13114
|
"use strict";
|
|
13102
13115
|
Object.defineProperty(exports, "__esModule", {
|
|
13103
13116
|
value: true
|
|
13104
13117
|
});
|
|
13105
13118
|
exports.ValueScope = exports.ValueScopeName = exports.Scope = exports.varKinds = exports.UsedValueState = void 0;
|
|
13106
|
-
const code_1 = __webpack_require__(
|
|
13119
|
+
const code_1 = __webpack_require__(1648);
|
|
13107
13120
|
class ValueError extends Error {
|
|
13108
13121
|
constructor(name) {
|
|
13109
13122
|
super(`CodeGen: "code" for ${name} not defined`);
|
|
@@ -13114,7 +13127,7 @@ var __webpack_modules__ = {
|
|
|
13114
13127
|
(function(UsedValueState) {
|
|
13115
13128
|
UsedValueState[UsedValueState["Started"] = 0] = "Started";
|
|
13116
13129
|
UsedValueState[UsedValueState["Completed"] = 1] = "Completed";
|
|
13117
|
-
})(UsedValueState
|
|
13130
|
+
})(UsedValueState || (exports.UsedValueState = UsedValueState = {}));
|
|
13118
13131
|
exports.varKinds = {
|
|
13119
13132
|
const: new code_1.Name("const"),
|
|
13120
13133
|
let: new code_1.Name("let"),
|
|
@@ -13242,15 +13255,15 @@ var __webpack_modules__ = {
|
|
|
13242
13255
|
}
|
|
13243
13256
|
exports.ValueScope = ValueScope;
|
|
13244
13257
|
},
|
|
13245
|
-
|
|
13258
|
+
3908: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
13246
13259
|
"use strict";
|
|
13247
13260
|
Object.defineProperty(exports, "__esModule", {
|
|
13248
13261
|
value: true
|
|
13249
13262
|
});
|
|
13250
13263
|
exports.extendErrors = exports.resetErrorsCount = exports.reportExtraError = exports.reportError = exports.keyword$DataError = exports.keywordError = void 0;
|
|
13251
|
-
const codegen_1 = __webpack_require__(
|
|
13252
|
-
const util_1 = __webpack_require__(
|
|
13253
|
-
const names_1 = __webpack_require__(
|
|
13264
|
+
const codegen_1 = __webpack_require__(7525);
|
|
13265
|
+
const util_1 = __webpack_require__(3);
|
|
13266
|
+
const names_1 = __webpack_require__(4455);
|
|
13254
13267
|
exports.keywordError = {
|
|
13255
13268
|
message: ({keyword}) => (0, codegen_1.str)`must pass "${keyword}" keyword validation`
|
|
13256
13269
|
};
|
|
@@ -13360,18 +13373,18 @@ var __webpack_modules__ = {
|
|
|
13360
13373
|
if (propertyName) keyValues.push([ E.propertyName, propertyName ]);
|
|
13361
13374
|
}
|
|
13362
13375
|
},
|
|
13363
|
-
|
|
13376
|
+
6267: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
13364
13377
|
"use strict";
|
|
13365
13378
|
Object.defineProperty(exports, "__esModule", {
|
|
13366
13379
|
value: true
|
|
13367
13380
|
});
|
|
13368
13381
|
exports.resolveSchema = exports.getCompilingSchema = exports.resolveRef = exports.compileSchema = exports.SchemaEnv = void 0;
|
|
13369
|
-
const codegen_1 = __webpack_require__(
|
|
13370
|
-
const validation_error_1 = __webpack_require__(
|
|
13371
|
-
const names_1 = __webpack_require__(
|
|
13372
|
-
const resolve_1 = __webpack_require__(
|
|
13373
|
-
const util_1 = __webpack_require__(
|
|
13374
|
-
const validate_1 = __webpack_require__(
|
|
13382
|
+
const codegen_1 = __webpack_require__(7525);
|
|
13383
|
+
const validation_error_1 = __webpack_require__(9990);
|
|
13384
|
+
const names_1 = __webpack_require__(4455);
|
|
13385
|
+
const resolve_1 = __webpack_require__(219);
|
|
13386
|
+
const util_1 = __webpack_require__(3);
|
|
13387
|
+
const validate_1 = __webpack_require__(2538);
|
|
13375
13388
|
class SchemaEnv {
|
|
13376
13389
|
constructor(env) {
|
|
13377
13390
|
var _a;
|
|
@@ -13585,12 +13598,12 @@ var __webpack_modules__ = {
|
|
|
13585
13598
|
return undefined;
|
|
13586
13599
|
}
|
|
13587
13600
|
},
|
|
13588
|
-
|
|
13601
|
+
4455: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
13589
13602
|
"use strict";
|
|
13590
13603
|
Object.defineProperty(exports, "__esModule", {
|
|
13591
13604
|
value: true
|
|
13592
13605
|
});
|
|
13593
|
-
const codegen_1 = __webpack_require__(
|
|
13606
|
+
const codegen_1 = __webpack_require__(7525);
|
|
13594
13607
|
const names = {
|
|
13595
13608
|
data: new codegen_1.Name("data"),
|
|
13596
13609
|
valCxt: new codegen_1.Name("valCxt"),
|
|
@@ -13611,12 +13624,12 @@ var __webpack_modules__ = {
|
|
|
13611
13624
|
};
|
|
13612
13625
|
exports["default"] = names;
|
|
13613
13626
|
},
|
|
13614
|
-
|
|
13627
|
+
8887: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
13615
13628
|
"use strict";
|
|
13616
13629
|
Object.defineProperty(exports, "__esModule", {
|
|
13617
13630
|
value: true
|
|
13618
13631
|
});
|
|
13619
|
-
const resolve_1 = __webpack_require__(
|
|
13632
|
+
const resolve_1 = __webpack_require__(219);
|
|
13620
13633
|
class MissingRefError extends Error {
|
|
13621
13634
|
constructor(resolver, baseId, ref, msg) {
|
|
13622
13635
|
super(msg || `can't resolve reference ${ref} from id ${baseId}`);
|
|
@@ -13626,15 +13639,15 @@ var __webpack_modules__ = {
|
|
|
13626
13639
|
}
|
|
13627
13640
|
exports["default"] = MissingRefError;
|
|
13628
13641
|
},
|
|
13629
|
-
|
|
13642
|
+
219: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
13630
13643
|
"use strict";
|
|
13631
13644
|
Object.defineProperty(exports, "__esModule", {
|
|
13632
13645
|
value: true
|
|
13633
13646
|
});
|
|
13634
13647
|
exports.getSchemaRefs = exports.resolveUrl = exports.normalizeId = exports._getFullPath = exports.getFullPath = exports.inlineRef = void 0;
|
|
13635
|
-
const util_1 = __webpack_require__(
|
|
13636
|
-
const equal = __webpack_require__(
|
|
13637
|
-
const traverse = __webpack_require__(
|
|
13648
|
+
const util_1 = __webpack_require__(3);
|
|
13649
|
+
const equal = __webpack_require__(4771);
|
|
13650
|
+
const traverse = __webpack_require__(7794);
|
|
13638
13651
|
const SIMPLE_INLINED = new Set([ "type", "format", "pattern", "maxLength", "minLength", "maxProperties", "minProperties", "maxItems", "minItems", "maximum", "minimum", "uniqueItems", "multipleOf", "required", "enum", "const" ]);
|
|
13639
13652
|
function inlineRef(schema, limit = true) {
|
|
13640
13653
|
if (typeof schema == "boolean") return true;
|
|
@@ -13703,14 +13716,14 @@ var __webpack_modules__ = {
|
|
|
13703
13716
|
}, ((sch, jsonPtr, _, parentJsonPtr) => {
|
|
13704
13717
|
if (parentJsonPtr === undefined) return;
|
|
13705
13718
|
const fullPath = pathPrefix + jsonPtr;
|
|
13706
|
-
let
|
|
13707
|
-
if (typeof sch[schemaId] == "string")
|
|
13719
|
+
let innerBaseId = baseIds[parentJsonPtr];
|
|
13720
|
+
if (typeof sch[schemaId] == "string") innerBaseId = addRef.call(this, sch[schemaId]);
|
|
13708
13721
|
addAnchor.call(this, sch.$anchor);
|
|
13709
13722
|
addAnchor.call(this, sch.$dynamicAnchor);
|
|
13710
|
-
baseIds[jsonPtr] =
|
|
13723
|
+
baseIds[jsonPtr] = innerBaseId;
|
|
13711
13724
|
function addRef(ref) {
|
|
13712
13725
|
const _resolve = this.opts.uriResolver.resolve;
|
|
13713
|
-
ref = normalizeId(
|
|
13726
|
+
ref = normalizeId(innerBaseId ? _resolve(innerBaseId, ref) : ref);
|
|
13714
13727
|
if (schemaRefs.has(ref)) throw ambiguos(ref);
|
|
13715
13728
|
schemaRefs.add(ref);
|
|
13716
13729
|
let schOrRef = this.refs[ref];
|
|
@@ -13744,7 +13757,7 @@ var __webpack_modules__ = {
|
|
|
13744
13757
|
}
|
|
13745
13758
|
exports.getSchemaRefs = getSchemaRefs;
|
|
13746
13759
|
},
|
|
13747
|
-
|
|
13760
|
+
2828: (__unused_webpack_module, exports) => {
|
|
13748
13761
|
"use strict";
|
|
13749
13762
|
Object.defineProperty(exports, "__esModule", {
|
|
13750
13763
|
value: true
|
|
@@ -13794,14 +13807,14 @@ var __webpack_modules__ = {
|
|
|
13794
13807
|
}
|
|
13795
13808
|
exports.getRules = getRules;
|
|
13796
13809
|
},
|
|
13797
|
-
|
|
13810
|
+
3: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
13798
13811
|
"use strict";
|
|
13799
13812
|
Object.defineProperty(exports, "__esModule", {
|
|
13800
13813
|
value: true
|
|
13801
13814
|
});
|
|
13802
13815
|
exports.checkStrictMode = exports.getErrorPath = exports.Type = exports.useFunc = exports.setEvaluated = exports.evaluatedPropsToName = exports.mergeEvaluated = exports.eachItem = exports.unescapeJsonPointer = exports.escapeJsonPointer = exports.escapeFragment = exports.unescapeFragment = exports.schemaRefOrVal = exports.schemaHasRulesButRef = exports.schemaHasRules = exports.checkUnknownRules = exports.alwaysValidSchema = exports.toHash = void 0;
|
|
13803
|
-
const codegen_1 = __webpack_require__(
|
|
13804
|
-
const code_1 = __webpack_require__(
|
|
13816
|
+
const codegen_1 = __webpack_require__(7525);
|
|
13817
|
+
const code_1 = __webpack_require__(1648);
|
|
13805
13818
|
function toHash(arr) {
|
|
13806
13819
|
const hash = {};
|
|
13807
13820
|
for (const item of arr) hash[item] = true;
|
|
@@ -13929,7 +13942,7 @@ var __webpack_modules__ = {
|
|
|
13929
13942
|
(function(Type) {
|
|
13930
13943
|
Type[Type["Num"] = 0] = "Num";
|
|
13931
13944
|
Type[Type["Str"] = 1] = "Str";
|
|
13932
|
-
})(Type
|
|
13945
|
+
})(Type || (exports.Type = Type = {}));
|
|
13933
13946
|
function getErrorPath(dataProp, dataPropType, jsPropertySyntax) {
|
|
13934
13947
|
if (dataProp instanceof codegen_1.Name) {
|
|
13935
13948
|
const isNumber = dataPropType === Type.Num;
|
|
@@ -13948,7 +13961,7 @@ var __webpack_modules__ = {
|
|
|
13948
13961
|
}
|
|
13949
13962
|
exports.checkStrictMode = checkStrictMode;
|
|
13950
13963
|
},
|
|
13951
|
-
|
|
13964
|
+
4319: (__unused_webpack_module, exports) => {
|
|
13952
13965
|
"use strict";
|
|
13953
13966
|
Object.defineProperty(exports, "__esModule", {
|
|
13954
13967
|
value: true
|
|
@@ -13969,15 +13982,15 @@ var __webpack_modules__ = {
|
|
|
13969
13982
|
}
|
|
13970
13983
|
exports.shouldUseRule = shouldUseRule;
|
|
13971
13984
|
},
|
|
13972
|
-
|
|
13985
|
+
6615: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
13973
13986
|
"use strict";
|
|
13974
13987
|
Object.defineProperty(exports, "__esModule", {
|
|
13975
13988
|
value: true
|
|
13976
13989
|
});
|
|
13977
13990
|
exports.boolOrEmptySchema = exports.topBoolOrEmptySchema = void 0;
|
|
13978
|
-
const errors_1 = __webpack_require__(
|
|
13979
|
-
const codegen_1 = __webpack_require__(
|
|
13980
|
-
const names_1 = __webpack_require__(
|
|
13991
|
+
const errors_1 = __webpack_require__(3908);
|
|
13992
|
+
const codegen_1 = __webpack_require__(7525);
|
|
13993
|
+
const names_1 = __webpack_require__(4455);
|
|
13981
13994
|
const boolError = {
|
|
13982
13995
|
message: "boolean schema is false"
|
|
13983
13996
|
};
|
|
@@ -14018,22 +14031,22 @@ var __webpack_modules__ = {
|
|
|
14018
14031
|
(0, errors_1.reportError)(cxt, boolError, undefined, overrideAllErrors);
|
|
14019
14032
|
}
|
|
14020
14033
|
},
|
|
14021
|
-
|
|
14034
|
+
1376: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
14022
14035
|
"use strict";
|
|
14023
14036
|
Object.defineProperty(exports, "__esModule", {
|
|
14024
14037
|
value: true
|
|
14025
14038
|
});
|
|
14026
14039
|
exports.reportTypeError = exports.checkDataTypes = exports.checkDataType = exports.coerceAndCheckDataType = exports.getJSONTypes = exports.getSchemaTypes = exports.DataType = void 0;
|
|
14027
|
-
const rules_1 = __webpack_require__(
|
|
14028
|
-
const applicability_1 = __webpack_require__(
|
|
14029
|
-
const errors_1 = __webpack_require__(
|
|
14030
|
-
const codegen_1 = __webpack_require__(
|
|
14031
|
-
const util_1 = __webpack_require__(
|
|
14040
|
+
const rules_1 = __webpack_require__(2828);
|
|
14041
|
+
const applicability_1 = __webpack_require__(4319);
|
|
14042
|
+
const errors_1 = __webpack_require__(3908);
|
|
14043
|
+
const codegen_1 = __webpack_require__(7525);
|
|
14044
|
+
const util_1 = __webpack_require__(3);
|
|
14032
14045
|
var DataType;
|
|
14033
14046
|
(function(DataType) {
|
|
14034
14047
|
DataType[DataType["Correct"] = 0] = "Correct";
|
|
14035
14048
|
DataType[DataType["Wrong"] = 1] = "Wrong";
|
|
14036
|
-
})(DataType
|
|
14049
|
+
})(DataType || (exports.DataType = DataType = {}));
|
|
14037
14050
|
function getSchemaTypes(schema) {
|
|
14038
14051
|
const types = getJSONTypes(schema.type);
|
|
14039
14052
|
const hasNull = types.includes("null");
|
|
@@ -14210,14 +14223,14 @@ var __webpack_modules__ = {
|
|
|
14210
14223
|
};
|
|
14211
14224
|
}
|
|
14212
14225
|
},
|
|
14213
|
-
|
|
14226
|
+
9038: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
14214
14227
|
"use strict";
|
|
14215
14228
|
Object.defineProperty(exports, "__esModule", {
|
|
14216
14229
|
value: true
|
|
14217
14230
|
});
|
|
14218
14231
|
exports.assignDefaults = void 0;
|
|
14219
|
-
const codegen_1 = __webpack_require__(
|
|
14220
|
-
const util_1 = __webpack_require__(
|
|
14232
|
+
const codegen_1 = __webpack_require__(7525);
|
|
14233
|
+
const util_1 = __webpack_require__(3);
|
|
14221
14234
|
function assignDefaults(it, ty) {
|
|
14222
14235
|
const {properties, items} = it.schema;
|
|
14223
14236
|
if (ty === "object" && properties) {
|
|
@@ -14244,24 +14257,24 @@ var __webpack_modules__ = {
|
|
|
14244
14257
|
gen.if(condition, (0, codegen_1._)`${childData} = ${(0, codegen_1.stringify)(defaultValue)}`);
|
|
14245
14258
|
}
|
|
14246
14259
|
},
|
|
14247
|
-
|
|
14260
|
+
2538: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
14248
14261
|
"use strict";
|
|
14249
14262
|
Object.defineProperty(exports, "__esModule", {
|
|
14250
14263
|
value: true
|
|
14251
14264
|
});
|
|
14252
14265
|
exports.getData = exports.KeywordCxt = exports.validateFunctionCode = void 0;
|
|
14253
|
-
const boolSchema_1 = __webpack_require__(
|
|
14254
|
-
const dataType_1 = __webpack_require__(
|
|
14255
|
-
const applicability_1 = __webpack_require__(
|
|
14256
|
-
const dataType_2 = __webpack_require__(
|
|
14257
|
-
const defaults_1 = __webpack_require__(
|
|
14258
|
-
const keyword_1 = __webpack_require__(
|
|
14259
|
-
const subschema_1 = __webpack_require__(
|
|
14260
|
-
const codegen_1 = __webpack_require__(
|
|
14261
|
-
const names_1 = __webpack_require__(
|
|
14262
|
-
const resolve_1 = __webpack_require__(
|
|
14263
|
-
const util_1 = __webpack_require__(
|
|
14264
|
-
const errors_1 = __webpack_require__(
|
|
14266
|
+
const boolSchema_1 = __webpack_require__(6615);
|
|
14267
|
+
const dataType_1 = __webpack_require__(1376);
|
|
14268
|
+
const applicability_1 = __webpack_require__(4319);
|
|
14269
|
+
const dataType_2 = __webpack_require__(1376);
|
|
14270
|
+
const defaults_1 = __webpack_require__(9038);
|
|
14271
|
+
const keyword_1 = __webpack_require__(3753);
|
|
14272
|
+
const subschema_1 = __webpack_require__(6959);
|
|
14273
|
+
const codegen_1 = __webpack_require__(7525);
|
|
14274
|
+
const names_1 = __webpack_require__(4455);
|
|
14275
|
+
const resolve_1 = __webpack_require__(219);
|
|
14276
|
+
const util_1 = __webpack_require__(3);
|
|
14277
|
+
const errors_1 = __webpack_require__(3908);
|
|
14265
14278
|
function validateFunctionCode(it) {
|
|
14266
14279
|
if (isSchemaObj(it)) {
|
|
14267
14280
|
checkKeywords(it);
|
|
@@ -14709,16 +14722,16 @@ var __webpack_modules__ = {
|
|
|
14709
14722
|
}
|
|
14710
14723
|
exports.getData = getData;
|
|
14711
14724
|
},
|
|
14712
|
-
|
|
14725
|
+
3753: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
14713
14726
|
"use strict";
|
|
14714
14727
|
Object.defineProperty(exports, "__esModule", {
|
|
14715
14728
|
value: true
|
|
14716
14729
|
});
|
|
14717
14730
|
exports.validateKeywordUsage = exports.validSchemaType = exports.funcKeywordCode = exports.macroKeywordCode = void 0;
|
|
14718
|
-
const codegen_1 = __webpack_require__(
|
|
14719
|
-
const names_1 = __webpack_require__(
|
|
14720
|
-
const code_1 = __webpack_require__(
|
|
14721
|
-
const errors_1 = __webpack_require__(
|
|
14731
|
+
const codegen_1 = __webpack_require__(7525);
|
|
14732
|
+
const names_1 = __webpack_require__(4455);
|
|
14733
|
+
const code_1 = __webpack_require__(6453);
|
|
14734
|
+
const errors_1 = __webpack_require__(3908);
|
|
14722
14735
|
function macroKeywordCode(cxt, def) {
|
|
14723
14736
|
const {gen, keyword, schema, parentSchema, it} = cxt;
|
|
14724
14737
|
const macroSchema = def.macro.call(it.self, schema, parentSchema, it);
|
|
@@ -14825,14 +14838,14 @@ var __webpack_modules__ = {
|
|
|
14825
14838
|
}
|
|
14826
14839
|
exports.validateKeywordUsage = validateKeywordUsage;
|
|
14827
14840
|
},
|
|
14828
|
-
|
|
14841
|
+
6959: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
14829
14842
|
"use strict";
|
|
14830
14843
|
Object.defineProperty(exports, "__esModule", {
|
|
14831
14844
|
value: true
|
|
14832
14845
|
});
|
|
14833
14846
|
exports.extendSubschemaMode = exports.extendSubschemaData = exports.getSubschema = void 0;
|
|
14834
|
-
const codegen_1 = __webpack_require__(
|
|
14835
|
-
const util_1 = __webpack_require__(
|
|
14847
|
+
const codegen_1 = __webpack_require__(7525);
|
|
14848
|
+
const util_1 = __webpack_require__(3);
|
|
14836
14849
|
function getSubschema(it, {keyword, schemaProp, schema, schemaPath, errSchemaPath, topSchemaRef}) {
|
|
14837
14850
|
if (keyword !== undefined && schema !== undefined) {
|
|
14838
14851
|
throw new Error('both "keyword" and "schema" passed, only one allowed');
|
|
@@ -14902,20 +14915,20 @@ var __webpack_modules__ = {
|
|
|
14902
14915
|
}
|
|
14903
14916
|
exports.extendSubschemaMode = extendSubschemaMode;
|
|
14904
14917
|
},
|
|
14905
|
-
|
|
14918
|
+
6986: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
14906
14919
|
"use strict";
|
|
14907
14920
|
Object.defineProperty(exports, "__esModule", {
|
|
14908
14921
|
value: true
|
|
14909
14922
|
});
|
|
14910
14923
|
exports.CodeGen = exports.Name = exports.nil = exports.stringify = exports.str = exports._ = exports.KeywordCxt = void 0;
|
|
14911
|
-
var validate_1 = __webpack_require__(
|
|
14924
|
+
var validate_1 = __webpack_require__(2538);
|
|
14912
14925
|
Object.defineProperty(exports, "KeywordCxt", {
|
|
14913
14926
|
enumerable: true,
|
|
14914
14927
|
get: function() {
|
|
14915
14928
|
return validate_1.KeywordCxt;
|
|
14916
14929
|
}
|
|
14917
14930
|
});
|
|
14918
|
-
var codegen_1 = __webpack_require__(
|
|
14931
|
+
var codegen_1 = __webpack_require__(7525);
|
|
14919
14932
|
Object.defineProperty(exports, "_", {
|
|
14920
14933
|
enumerable: true,
|
|
14921
14934
|
get: function() {
|
|
@@ -14952,16 +14965,16 @@ var __webpack_modules__ = {
|
|
|
14952
14965
|
return codegen_1.CodeGen;
|
|
14953
14966
|
}
|
|
14954
14967
|
});
|
|
14955
|
-
const validation_error_1 = __webpack_require__(
|
|
14956
|
-
const ref_error_1 = __webpack_require__(
|
|
14957
|
-
const rules_1 = __webpack_require__(
|
|
14958
|
-
const compile_1 = __webpack_require__(
|
|
14959
|
-
const codegen_2 = __webpack_require__(
|
|
14960
|
-
const resolve_1 = __webpack_require__(
|
|
14961
|
-
const dataType_1 = __webpack_require__(
|
|
14962
|
-
const util_1 = __webpack_require__(
|
|
14963
|
-
const $dataRefSchema = __webpack_require__(
|
|
14964
|
-
const uri_1 = __webpack_require__(
|
|
14968
|
+
const validation_error_1 = __webpack_require__(9990);
|
|
14969
|
+
const ref_error_1 = __webpack_require__(8887);
|
|
14970
|
+
const rules_1 = __webpack_require__(2828);
|
|
14971
|
+
const compile_1 = __webpack_require__(6267);
|
|
14972
|
+
const codegen_2 = __webpack_require__(7525);
|
|
14973
|
+
const resolve_1 = __webpack_require__(219);
|
|
14974
|
+
const dataType_1 = __webpack_require__(1376);
|
|
14975
|
+
const util_1 = __webpack_require__(3);
|
|
14976
|
+
const $dataRefSchema = __webpack_require__(9453);
|
|
14977
|
+
const uri_1 = __webpack_require__(5656);
|
|
14965
14978
|
const defaultRegExp = (str, flags) => new RegExp(str, flags);
|
|
14966
14979
|
defaultRegExp.code = "new RegExp";
|
|
14967
14980
|
const META_IGNORE_OPTIONS = [ "removeAdditional", "useDefaults", "coerceTypes" ];
|
|
@@ -15372,9 +15385,9 @@ var __webpack_modules__ = {
|
|
|
15372
15385
|
}
|
|
15373
15386
|
}
|
|
15374
15387
|
}
|
|
15375
|
-
exports["default"] = Ajv;
|
|
15376
15388
|
Ajv.ValidationError = validation_error_1.default;
|
|
15377
15389
|
Ajv.MissingRefError = ref_error_1.default;
|
|
15390
|
+
exports["default"] = Ajv;
|
|
15378
15391
|
function checkOptions(checkOpts, options, msg, log = "error") {
|
|
15379
15392
|
for (const key in checkOpts) {
|
|
15380
15393
|
const opt = key;
|
|
@@ -15489,16 +15502,16 @@ var __webpack_modules__ = {
|
|
|
15489
15502
|
};
|
|
15490
15503
|
}
|
|
15491
15504
|
},
|
|
15492
|
-
|
|
15505
|
+
8682: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
15493
15506
|
"use strict";
|
|
15494
15507
|
Object.defineProperty(exports, "__esModule", {
|
|
15495
15508
|
value: true
|
|
15496
15509
|
});
|
|
15497
|
-
const equal = __webpack_require__(
|
|
15510
|
+
const equal = __webpack_require__(4771);
|
|
15498
15511
|
equal.code = 'require("ajv/dist/runtime/equal").default';
|
|
15499
15512
|
exports["default"] = equal;
|
|
15500
15513
|
},
|
|
15501
|
-
|
|
15514
|
+
7629: (__unused_webpack_module, exports) => {
|
|
15502
15515
|
"use strict";
|
|
15503
15516
|
Object.defineProperty(exports, "__esModule", {
|
|
15504
15517
|
value: true
|
|
@@ -15521,16 +15534,16 @@ var __webpack_modules__ = {
|
|
|
15521
15534
|
exports["default"] = ucs2length;
|
|
15522
15535
|
ucs2length.code = 'require("ajv/dist/runtime/ucs2length").default';
|
|
15523
15536
|
},
|
|
15524
|
-
|
|
15537
|
+
5656: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
15525
15538
|
"use strict";
|
|
15526
15539
|
Object.defineProperty(exports, "__esModule", {
|
|
15527
15540
|
value: true
|
|
15528
15541
|
});
|
|
15529
|
-
const uri = __webpack_require__(
|
|
15542
|
+
const uri = __webpack_require__(4661);
|
|
15530
15543
|
uri.code = 'require("ajv/dist/runtime/uri").default';
|
|
15531
15544
|
exports["default"] = uri;
|
|
15532
15545
|
},
|
|
15533
|
-
|
|
15546
|
+
9990: (__unused_webpack_module, exports) => {
|
|
15534
15547
|
"use strict";
|
|
15535
15548
|
Object.defineProperty(exports, "__esModule", {
|
|
15536
15549
|
value: true
|
|
@@ -15544,14 +15557,14 @@ var __webpack_modules__ = {
|
|
|
15544
15557
|
}
|
|
15545
15558
|
exports["default"] = ValidationError;
|
|
15546
15559
|
},
|
|
15547
|
-
|
|
15560
|
+
4209: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
15548
15561
|
"use strict";
|
|
15549
15562
|
Object.defineProperty(exports, "__esModule", {
|
|
15550
15563
|
value: true
|
|
15551
15564
|
});
|
|
15552
15565
|
exports.validateAdditionalItems = void 0;
|
|
15553
|
-
const codegen_1 = __webpack_require__(
|
|
15554
|
-
const util_1 = __webpack_require__(
|
|
15566
|
+
const codegen_1 = __webpack_require__(7525);
|
|
15567
|
+
const util_1 = __webpack_require__(3);
|
|
15555
15568
|
const error = {
|
|
15556
15569
|
message: ({params: {len}}) => (0, codegen_1.str)`must NOT have more than ${len} items`,
|
|
15557
15570
|
params: ({params: {len}}) => (0, codegen_1._)`{limit: ${len}}`
|
|
@@ -15600,15 +15613,15 @@ var __webpack_modules__ = {
|
|
|
15600
15613
|
exports.validateAdditionalItems = validateAdditionalItems;
|
|
15601
15614
|
exports["default"] = def;
|
|
15602
15615
|
},
|
|
15603
|
-
|
|
15616
|
+
3572: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
15604
15617
|
"use strict";
|
|
15605
15618
|
Object.defineProperty(exports, "__esModule", {
|
|
15606
15619
|
value: true
|
|
15607
15620
|
});
|
|
15608
|
-
const code_1 = __webpack_require__(
|
|
15609
|
-
const codegen_1 = __webpack_require__(
|
|
15610
|
-
const names_1 = __webpack_require__(
|
|
15611
|
-
const util_1 = __webpack_require__(
|
|
15621
|
+
const code_1 = __webpack_require__(6453);
|
|
15622
|
+
const codegen_1 = __webpack_require__(7525);
|
|
15623
|
+
const names_1 = __webpack_require__(4455);
|
|
15624
|
+
const util_1 = __webpack_require__(3);
|
|
15612
15625
|
const error = {
|
|
15613
15626
|
message: "must NOT have additional properties",
|
|
15614
15627
|
params: ({params}) => (0, codegen_1._)`{additionalProperty: ${params.additionalProperty}}`
|
|
@@ -15700,12 +15713,12 @@ var __webpack_modules__ = {
|
|
|
15700
15713
|
};
|
|
15701
15714
|
exports["default"] = def;
|
|
15702
15715
|
},
|
|
15703
|
-
|
|
15716
|
+
5364: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
15704
15717
|
"use strict";
|
|
15705
15718
|
Object.defineProperty(exports, "__esModule", {
|
|
15706
15719
|
value: true
|
|
15707
15720
|
});
|
|
15708
|
-
const util_1 = __webpack_require__(
|
|
15721
|
+
const util_1 = __webpack_require__(3);
|
|
15709
15722
|
const def = {
|
|
15710
15723
|
keyword: "allOf",
|
|
15711
15724
|
schemaType: "array",
|
|
@@ -15726,12 +15739,12 @@ var __webpack_modules__ = {
|
|
|
15726
15739
|
};
|
|
15727
15740
|
exports["default"] = def;
|
|
15728
15741
|
},
|
|
15729
|
-
|
|
15742
|
+
6025: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
15730
15743
|
"use strict";
|
|
15731
15744
|
Object.defineProperty(exports, "__esModule", {
|
|
15732
15745
|
value: true
|
|
15733
15746
|
});
|
|
15734
|
-
const code_1 = __webpack_require__(
|
|
15747
|
+
const code_1 = __webpack_require__(6453);
|
|
15735
15748
|
const def = {
|
|
15736
15749
|
keyword: "anyOf",
|
|
15737
15750
|
schemaType: "array",
|
|
@@ -15743,13 +15756,13 @@ var __webpack_modules__ = {
|
|
|
15743
15756
|
};
|
|
15744
15757
|
exports["default"] = def;
|
|
15745
15758
|
},
|
|
15746
|
-
|
|
15759
|
+
3781: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
15747
15760
|
"use strict";
|
|
15748
15761
|
Object.defineProperty(exports, "__esModule", {
|
|
15749
15762
|
value: true
|
|
15750
15763
|
});
|
|
15751
|
-
const codegen_1 = __webpack_require__(
|
|
15752
|
-
const util_1 = __webpack_require__(
|
|
15764
|
+
const codegen_1 = __webpack_require__(7525);
|
|
15765
|
+
const util_1 = __webpack_require__(3);
|
|
15753
15766
|
const error = {
|
|
15754
15767
|
message: ({params: {min, max}}) => max === undefined ? (0, codegen_1.str)`must contain at least ${min} valid item(s)` : (0,
|
|
15755
15768
|
codegen_1.str)`must contain at least ${min} and no more than ${max} valid item(s)`,
|
|
@@ -15835,15 +15848,15 @@ var __webpack_modules__ = {
|
|
|
15835
15848
|
};
|
|
15836
15849
|
exports["default"] = def;
|
|
15837
15850
|
},
|
|
15838
|
-
|
|
15851
|
+
6353: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
15839
15852
|
"use strict";
|
|
15840
15853
|
Object.defineProperty(exports, "__esModule", {
|
|
15841
15854
|
value: true
|
|
15842
15855
|
});
|
|
15843
15856
|
exports.validateSchemaDeps = exports.validatePropertyDeps = exports.error = void 0;
|
|
15844
|
-
const codegen_1 = __webpack_require__(
|
|
15845
|
-
const util_1 = __webpack_require__(
|
|
15846
|
-
const code_1 = __webpack_require__(
|
|
15857
|
+
const codegen_1 = __webpack_require__(7525);
|
|
15858
|
+
const util_1 = __webpack_require__(3);
|
|
15859
|
+
const code_1 = __webpack_require__(6453);
|
|
15847
15860
|
exports.error = {
|
|
15848
15861
|
message: ({params: {property, depsCount, deps}}) => {
|
|
15849
15862
|
const property_ies = depsCount === 1 ? "property" : "properties";
|
|
@@ -15920,13 +15933,13 @@ var __webpack_modules__ = {
|
|
|
15920
15933
|
exports.validateSchemaDeps = validateSchemaDeps;
|
|
15921
15934
|
exports["default"] = def;
|
|
15922
15935
|
},
|
|
15923
|
-
|
|
15936
|
+
3703: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
15924
15937
|
"use strict";
|
|
15925
15938
|
Object.defineProperty(exports, "__esModule", {
|
|
15926
15939
|
value: true
|
|
15927
15940
|
});
|
|
15928
|
-
const codegen_1 = __webpack_require__(
|
|
15929
|
-
const util_1 = __webpack_require__(
|
|
15941
|
+
const codegen_1 = __webpack_require__(7525);
|
|
15942
|
+
const util_1 = __webpack_require__(3);
|
|
15930
15943
|
const error = {
|
|
15931
15944
|
message: ({params}) => (0, codegen_1.str)`must match "${params.ifClause}" schema`,
|
|
15932
15945
|
params: ({params}) => (0, codegen_1._)`{failingKeyword: ${params.ifClause}}`
|
|
@@ -15989,27 +16002,27 @@ var __webpack_modules__ = {
|
|
|
15989
16002
|
}
|
|
15990
16003
|
exports["default"] = def;
|
|
15991
16004
|
},
|
|
15992
|
-
|
|
16005
|
+
5898: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
15993
16006
|
"use strict";
|
|
15994
16007
|
Object.defineProperty(exports, "__esModule", {
|
|
15995
16008
|
value: true
|
|
15996
16009
|
});
|
|
15997
|
-
const additionalItems_1 = __webpack_require__(
|
|
15998
|
-
const prefixItems_1 = __webpack_require__(
|
|
15999
|
-
const items_1 = __webpack_require__(
|
|
16000
|
-
const items2020_1 = __webpack_require__(
|
|
16001
|
-
const contains_1 = __webpack_require__(
|
|
16002
|
-
const dependencies_1 = __webpack_require__(
|
|
16003
|
-
const propertyNames_1 = __webpack_require__(
|
|
16004
|
-
const additionalProperties_1 = __webpack_require__(
|
|
16005
|
-
const properties_1 = __webpack_require__(
|
|
16006
|
-
const patternProperties_1 = __webpack_require__(
|
|
16007
|
-
const not_1 = __webpack_require__(
|
|
16008
|
-
const anyOf_1 = __webpack_require__(
|
|
16009
|
-
const oneOf_1 = __webpack_require__(
|
|
16010
|
-
const allOf_1 = __webpack_require__(
|
|
16011
|
-
const if_1 = __webpack_require__(
|
|
16012
|
-
const thenElse_1 = __webpack_require__(
|
|
16010
|
+
const additionalItems_1 = __webpack_require__(4209);
|
|
16011
|
+
const prefixItems_1 = __webpack_require__(4218);
|
|
16012
|
+
const items_1 = __webpack_require__(14);
|
|
16013
|
+
const items2020_1 = __webpack_require__(1950);
|
|
16014
|
+
const contains_1 = __webpack_require__(3781);
|
|
16015
|
+
const dependencies_1 = __webpack_require__(6353);
|
|
16016
|
+
const propertyNames_1 = __webpack_require__(4321);
|
|
16017
|
+
const additionalProperties_1 = __webpack_require__(3572);
|
|
16018
|
+
const properties_1 = __webpack_require__(6181);
|
|
16019
|
+
const patternProperties_1 = __webpack_require__(8277);
|
|
16020
|
+
const not_1 = __webpack_require__(9459);
|
|
16021
|
+
const anyOf_1 = __webpack_require__(6025);
|
|
16022
|
+
const oneOf_1 = __webpack_require__(5683);
|
|
16023
|
+
const allOf_1 = __webpack_require__(5364);
|
|
16024
|
+
const if_1 = __webpack_require__(3703);
|
|
16025
|
+
const thenElse_1 = __webpack_require__(1898);
|
|
16013
16026
|
function getApplicator(draft2020 = false) {
|
|
16014
16027
|
const applicator = [ not_1.default, anyOf_1.default, oneOf_1.default, allOf_1.default, if_1.default, thenElse_1.default, propertyNames_1.default, additionalProperties_1.default, dependencies_1.default, properties_1.default, patternProperties_1.default ];
|
|
16015
16028
|
if (draft2020) applicator.push(prefixItems_1.default, items2020_1.default); else applicator.push(additionalItems_1.default, items_1.default);
|
|
@@ -16018,15 +16031,15 @@ var __webpack_modules__ = {
|
|
|
16018
16031
|
}
|
|
16019
16032
|
exports["default"] = getApplicator;
|
|
16020
16033
|
},
|
|
16021
|
-
|
|
16034
|
+
14: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
16022
16035
|
"use strict";
|
|
16023
16036
|
Object.defineProperty(exports, "__esModule", {
|
|
16024
16037
|
value: true
|
|
16025
16038
|
});
|
|
16026
16039
|
exports.validateTuple = void 0;
|
|
16027
|
-
const codegen_1 = __webpack_require__(
|
|
16028
|
-
const util_1 = __webpack_require__(
|
|
16029
|
-
const code_1 = __webpack_require__(
|
|
16040
|
+
const codegen_1 = __webpack_require__(7525);
|
|
16041
|
+
const util_1 = __webpack_require__(3);
|
|
16042
|
+
const code_1 = __webpack_require__(6453);
|
|
16030
16043
|
const def = {
|
|
16031
16044
|
keyword: "items",
|
|
16032
16045
|
type: "array",
|
|
@@ -16070,15 +16083,15 @@ var __webpack_modules__ = {
|
|
|
16070
16083
|
exports.validateTuple = validateTuple;
|
|
16071
16084
|
exports["default"] = def;
|
|
16072
16085
|
},
|
|
16073
|
-
|
|
16086
|
+
1950: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
16074
16087
|
"use strict";
|
|
16075
16088
|
Object.defineProperty(exports, "__esModule", {
|
|
16076
16089
|
value: true
|
|
16077
16090
|
});
|
|
16078
|
-
const codegen_1 = __webpack_require__(
|
|
16079
|
-
const util_1 = __webpack_require__(
|
|
16080
|
-
const code_1 = __webpack_require__(
|
|
16081
|
-
const additionalItems_1 = __webpack_require__(
|
|
16091
|
+
const codegen_1 = __webpack_require__(7525);
|
|
16092
|
+
const util_1 = __webpack_require__(3);
|
|
16093
|
+
const code_1 = __webpack_require__(6453);
|
|
16094
|
+
const additionalItems_1 = __webpack_require__(4209);
|
|
16082
16095
|
const error = {
|
|
16083
16096
|
message: ({params: {len}}) => (0, codegen_1.str)`must NOT have more than ${len} items`,
|
|
16084
16097
|
params: ({params: {len}}) => (0, codegen_1._)`{limit: ${len}}`
|
|
@@ -16100,12 +16113,12 @@ var __webpack_modules__ = {
|
|
|
16100
16113
|
};
|
|
16101
16114
|
exports["default"] = def;
|
|
16102
16115
|
},
|
|
16103
|
-
|
|
16116
|
+
9459: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
16104
16117
|
"use strict";
|
|
16105
16118
|
Object.defineProperty(exports, "__esModule", {
|
|
16106
16119
|
value: true
|
|
16107
16120
|
});
|
|
16108
|
-
const util_1 = __webpack_require__(
|
|
16121
|
+
const util_1 = __webpack_require__(3);
|
|
16109
16122
|
const def = {
|
|
16110
16123
|
keyword: "not",
|
|
16111
16124
|
schemaType: [ "object", "boolean" ],
|
|
@@ -16131,13 +16144,13 @@ var __webpack_modules__ = {
|
|
|
16131
16144
|
};
|
|
16132
16145
|
exports["default"] = def;
|
|
16133
16146
|
},
|
|
16134
|
-
|
|
16147
|
+
5683: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
16135
16148
|
"use strict";
|
|
16136
16149
|
Object.defineProperty(exports, "__esModule", {
|
|
16137
16150
|
value: true
|
|
16138
16151
|
});
|
|
16139
|
-
const codegen_1 = __webpack_require__(
|
|
16140
|
-
const util_1 = __webpack_require__(
|
|
16152
|
+
const codegen_1 = __webpack_require__(7525);
|
|
16153
|
+
const util_1 = __webpack_require__(3);
|
|
16141
16154
|
const error = {
|
|
16142
16155
|
message: "must match exactly one schema in oneOf",
|
|
16143
16156
|
params: ({params}) => (0, codegen_1._)`{passingSchemas: ${params.passing}}`
|
|
@@ -16187,15 +16200,15 @@ var __webpack_modules__ = {
|
|
|
16187
16200
|
};
|
|
16188
16201
|
exports["default"] = def;
|
|
16189
16202
|
},
|
|
16190
|
-
|
|
16203
|
+
8277: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
16191
16204
|
"use strict";
|
|
16192
16205
|
Object.defineProperty(exports, "__esModule", {
|
|
16193
16206
|
value: true
|
|
16194
16207
|
});
|
|
16195
|
-
const code_1 = __webpack_require__(
|
|
16196
|
-
const codegen_1 = __webpack_require__(
|
|
16197
|
-
const util_1 = __webpack_require__(
|
|
16198
|
-
const util_2 = __webpack_require__(
|
|
16208
|
+
const code_1 = __webpack_require__(6453);
|
|
16209
|
+
const codegen_1 = __webpack_require__(7525);
|
|
16210
|
+
const util_1 = __webpack_require__(3);
|
|
16211
|
+
const util_2 = __webpack_require__(3);
|
|
16199
16212
|
const def = {
|
|
16200
16213
|
keyword: "patternProperties",
|
|
16201
16214
|
type: "object",
|
|
@@ -16258,12 +16271,12 @@ var __webpack_modules__ = {
|
|
|
16258
16271
|
};
|
|
16259
16272
|
exports["default"] = def;
|
|
16260
16273
|
},
|
|
16261
|
-
|
|
16274
|
+
4218: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
16262
16275
|
"use strict";
|
|
16263
16276
|
Object.defineProperty(exports, "__esModule", {
|
|
16264
16277
|
value: true
|
|
16265
16278
|
});
|
|
16266
|
-
const items_1 = __webpack_require__(
|
|
16279
|
+
const items_1 = __webpack_require__(14);
|
|
16267
16280
|
const def = {
|
|
16268
16281
|
keyword: "prefixItems",
|
|
16269
16282
|
type: "array",
|
|
@@ -16273,15 +16286,15 @@ var __webpack_modules__ = {
|
|
|
16273
16286
|
};
|
|
16274
16287
|
exports["default"] = def;
|
|
16275
16288
|
},
|
|
16276
|
-
|
|
16289
|
+
6181: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
16277
16290
|
"use strict";
|
|
16278
16291
|
Object.defineProperty(exports, "__esModule", {
|
|
16279
16292
|
value: true
|
|
16280
16293
|
});
|
|
16281
|
-
const validate_1 = __webpack_require__(
|
|
16282
|
-
const code_1 = __webpack_require__(
|
|
16283
|
-
const util_1 = __webpack_require__(
|
|
16284
|
-
const additionalProperties_1 = __webpack_require__(
|
|
16294
|
+
const validate_1 = __webpack_require__(2538);
|
|
16295
|
+
const code_1 = __webpack_require__(6453);
|
|
16296
|
+
const util_1 = __webpack_require__(3);
|
|
16297
|
+
const additionalProperties_1 = __webpack_require__(3572);
|
|
16285
16298
|
const def = {
|
|
16286
16299
|
keyword: "properties",
|
|
16287
16300
|
type: "object",
|
|
@@ -16327,13 +16340,13 @@ var __webpack_modules__ = {
|
|
|
16327
16340
|
};
|
|
16328
16341
|
exports["default"] = def;
|
|
16329
16342
|
},
|
|
16330
|
-
|
|
16343
|
+
4321: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
16331
16344
|
"use strict";
|
|
16332
16345
|
Object.defineProperty(exports, "__esModule", {
|
|
16333
16346
|
value: true
|
|
16334
16347
|
});
|
|
16335
|
-
const codegen_1 = __webpack_require__(
|
|
16336
|
-
const util_1 = __webpack_require__(
|
|
16348
|
+
const codegen_1 = __webpack_require__(7525);
|
|
16349
|
+
const util_1 = __webpack_require__(3);
|
|
16337
16350
|
const error = {
|
|
16338
16351
|
message: "property name must be valid",
|
|
16339
16352
|
params: ({params}) => (0, codegen_1._)`{propertyName: ${params.propertyName}}`
|
|
@@ -16368,12 +16381,12 @@ var __webpack_modules__ = {
|
|
|
16368
16381
|
};
|
|
16369
16382
|
exports["default"] = def;
|
|
16370
16383
|
},
|
|
16371
|
-
|
|
16384
|
+
1898: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
16372
16385
|
"use strict";
|
|
16373
16386
|
Object.defineProperty(exports, "__esModule", {
|
|
16374
16387
|
value: true
|
|
16375
16388
|
});
|
|
16376
|
-
const util_1 = __webpack_require__(
|
|
16389
|
+
const util_1 = __webpack_require__(3);
|
|
16377
16390
|
const def = {
|
|
16378
16391
|
keyword: [ "then", "else" ],
|
|
16379
16392
|
schemaType: [ "object", "boolean" ],
|
|
@@ -16383,16 +16396,16 @@ var __webpack_modules__ = {
|
|
|
16383
16396
|
};
|
|
16384
16397
|
exports["default"] = def;
|
|
16385
16398
|
},
|
|
16386
|
-
|
|
16399
|
+
6453: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
16387
16400
|
"use strict";
|
|
16388
16401
|
Object.defineProperty(exports, "__esModule", {
|
|
16389
16402
|
value: true
|
|
16390
16403
|
});
|
|
16391
16404
|
exports.validateUnion = exports.validateArray = exports.usePattern = exports.callValidateCode = exports.schemaProperties = exports.allSchemaProperties = exports.noPropertyInData = exports.propertyInData = exports.isOwnProperty = exports.hasPropFunc = exports.reportMissingProp = exports.checkMissingProp = exports.checkReportMissingProp = void 0;
|
|
16392
|
-
const codegen_1 = __webpack_require__(
|
|
16393
|
-
const util_1 = __webpack_require__(
|
|
16394
|
-
const names_1 = __webpack_require__(
|
|
16395
|
-
const util_2 = __webpack_require__(
|
|
16405
|
+
const codegen_1 = __webpack_require__(7525);
|
|
16406
|
+
const util_1 = __webpack_require__(3);
|
|
16407
|
+
const names_1 = __webpack_require__(4455);
|
|
16408
|
+
const util_2 = __webpack_require__(3);
|
|
16396
16409
|
function checkReportMissingProp(cxt, prop) {
|
|
16397
16410
|
const {gen, data, it} = cxt;
|
|
16398
16411
|
gen.if(noPropertyInData(gen, data, prop, it.opts.ownProperties), (() => {
|
|
@@ -16510,7 +16523,7 @@ var __webpack_modules__ = {
|
|
|
16510
16523
|
}
|
|
16511
16524
|
exports.validateUnion = validateUnion;
|
|
16512
16525
|
},
|
|
16513
|
-
|
|
16526
|
+
3591: (__unused_webpack_module, exports) => {
|
|
16514
16527
|
"use strict";
|
|
16515
16528
|
Object.defineProperty(exports, "__esModule", {
|
|
16516
16529
|
value: true
|
|
@@ -16523,30 +16536,30 @@ var __webpack_modules__ = {
|
|
|
16523
16536
|
};
|
|
16524
16537
|
exports["default"] = def;
|
|
16525
16538
|
},
|
|
16526
|
-
|
|
16539
|
+
8240: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
16527
16540
|
"use strict";
|
|
16528
16541
|
Object.defineProperty(exports, "__esModule", {
|
|
16529
16542
|
value: true
|
|
16530
16543
|
});
|
|
16531
|
-
const id_1 = __webpack_require__(
|
|
16532
|
-
const ref_1 = __webpack_require__(
|
|
16544
|
+
const id_1 = __webpack_require__(3591);
|
|
16545
|
+
const ref_1 = __webpack_require__(2189);
|
|
16533
16546
|
const core = [ "$schema", "$id", "$defs", "$vocabulary", {
|
|
16534
16547
|
keyword: "$comment"
|
|
16535
16548
|
}, "definitions", id_1.default, ref_1.default ];
|
|
16536
16549
|
exports["default"] = core;
|
|
16537
16550
|
},
|
|
16538
|
-
|
|
16551
|
+
2189: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
16539
16552
|
"use strict";
|
|
16540
16553
|
Object.defineProperty(exports, "__esModule", {
|
|
16541
16554
|
value: true
|
|
16542
16555
|
});
|
|
16543
16556
|
exports.callRef = exports.getValidate = void 0;
|
|
16544
|
-
const ref_error_1 = __webpack_require__(
|
|
16545
|
-
const code_1 = __webpack_require__(
|
|
16546
|
-
const codegen_1 = __webpack_require__(
|
|
16547
|
-
const names_1 = __webpack_require__(
|
|
16548
|
-
const compile_1 = __webpack_require__(
|
|
16549
|
-
const util_1 = __webpack_require__(
|
|
16557
|
+
const ref_error_1 = __webpack_require__(8887);
|
|
16558
|
+
const code_1 = __webpack_require__(6453);
|
|
16559
|
+
const codegen_1 = __webpack_require__(7525);
|
|
16560
|
+
const names_1 = __webpack_require__(4455);
|
|
16561
|
+
const compile_1 = __webpack_require__(6267);
|
|
16562
|
+
const util_1 = __webpack_require__(3);
|
|
16550
16563
|
const def = {
|
|
16551
16564
|
keyword: "$ref",
|
|
16552
16565
|
schemaType: "string",
|
|
@@ -16655,15 +16668,15 @@ var __webpack_modules__ = {
|
|
|
16655
16668
|
exports.callRef = callRef;
|
|
16656
16669
|
exports["default"] = def;
|
|
16657
16670
|
},
|
|
16658
|
-
|
|
16671
|
+
7773: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
16659
16672
|
"use strict";
|
|
16660
16673
|
Object.defineProperty(exports, "__esModule", {
|
|
16661
16674
|
value: true
|
|
16662
16675
|
});
|
|
16663
|
-
const codegen_1 = __webpack_require__(
|
|
16664
|
-
const types_1 = __webpack_require__(
|
|
16665
|
-
const compile_1 = __webpack_require__(
|
|
16666
|
-
const util_1 = __webpack_require__(
|
|
16676
|
+
const codegen_1 = __webpack_require__(7525);
|
|
16677
|
+
const types_1 = __webpack_require__(5124);
|
|
16678
|
+
const compile_1 = __webpack_require__(6267);
|
|
16679
|
+
const util_1 = __webpack_require__(3);
|
|
16667
16680
|
const error = {
|
|
16668
16681
|
message: ({params: {discrError, tagName}}) => discrError === types_1.DiscrError.Tag ? `tag "${tagName}" must be string` : `value of tag "${tagName}" must be in oneOf`,
|
|
16669
16682
|
params: ({params: {discrError, tag, tagName}}) => (0, codegen_1._)`{error: ${discrError}, tag: ${tagName}, tagValue: ${tag}}`
|
|
@@ -16760,7 +16773,7 @@ var __webpack_modules__ = {
|
|
|
16760
16773
|
};
|
|
16761
16774
|
exports["default"] = def;
|
|
16762
16775
|
},
|
|
16763
|
-
|
|
16776
|
+
5124: (__unused_webpack_module, exports) => {
|
|
16764
16777
|
"use strict";
|
|
16765
16778
|
Object.defineProperty(exports, "__esModule", {
|
|
16766
16779
|
value: true
|
|
@@ -16770,27 +16783,27 @@ var __webpack_modules__ = {
|
|
|
16770
16783
|
(function(DiscrError) {
|
|
16771
16784
|
DiscrError["Tag"] = "tag";
|
|
16772
16785
|
DiscrError["Mapping"] = "mapping";
|
|
16773
|
-
})(DiscrError
|
|
16786
|
+
})(DiscrError || (exports.DiscrError = DiscrError = {}));
|
|
16774
16787
|
},
|
|
16775
|
-
|
|
16788
|
+
6448: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
16776
16789
|
"use strict";
|
|
16777
16790
|
Object.defineProperty(exports, "__esModule", {
|
|
16778
16791
|
value: true
|
|
16779
16792
|
});
|
|
16780
|
-
const core_1 = __webpack_require__(
|
|
16781
|
-
const validation_1 = __webpack_require__(
|
|
16782
|
-
const applicator_1 = __webpack_require__(
|
|
16783
|
-
const format_1 = __webpack_require__(
|
|
16784
|
-
const metadata_1 = __webpack_require__(
|
|
16793
|
+
const core_1 = __webpack_require__(8240);
|
|
16794
|
+
const validation_1 = __webpack_require__(6580);
|
|
16795
|
+
const applicator_1 = __webpack_require__(5898);
|
|
16796
|
+
const format_1 = __webpack_require__(8700);
|
|
16797
|
+
const metadata_1 = __webpack_require__(8353);
|
|
16785
16798
|
const draft7Vocabularies = [ core_1.default, validation_1.default, (0, applicator_1.default)(), format_1.default, metadata_1.metadataVocabulary, metadata_1.contentVocabulary ];
|
|
16786
16799
|
exports["default"] = draft7Vocabularies;
|
|
16787
16800
|
},
|
|
16788
|
-
|
|
16801
|
+
7201: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
16789
16802
|
"use strict";
|
|
16790
16803
|
Object.defineProperty(exports, "__esModule", {
|
|
16791
16804
|
value: true
|
|
16792
16805
|
});
|
|
16793
|
-
const codegen_1 = __webpack_require__(
|
|
16806
|
+
const codegen_1 = __webpack_require__(7525);
|
|
16794
16807
|
const error = {
|
|
16795
16808
|
message: ({schemaCode}) => (0, codegen_1.str)`must match format "${schemaCode}"`,
|
|
16796
16809
|
params: ({schemaCode}) => (0, codegen_1._)`{format: ${schemaCode}}`
|
|
@@ -16874,16 +16887,16 @@ var __webpack_modules__ = {
|
|
|
16874
16887
|
};
|
|
16875
16888
|
exports["default"] = def;
|
|
16876
16889
|
},
|
|
16877
|
-
|
|
16890
|
+
8700: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
16878
16891
|
"use strict";
|
|
16879
16892
|
Object.defineProperty(exports, "__esModule", {
|
|
16880
16893
|
value: true
|
|
16881
16894
|
});
|
|
16882
|
-
const format_1 = __webpack_require__(
|
|
16895
|
+
const format_1 = __webpack_require__(7201);
|
|
16883
16896
|
const format = [ format_1.default ];
|
|
16884
16897
|
exports["default"] = format;
|
|
16885
16898
|
},
|
|
16886
|
-
|
|
16899
|
+
8353: (__unused_webpack_module, exports) => {
|
|
16887
16900
|
"use strict";
|
|
16888
16901
|
Object.defineProperty(exports, "__esModule", {
|
|
16889
16902
|
value: true
|
|
@@ -16892,14 +16905,14 @@ var __webpack_modules__ = {
|
|
|
16892
16905
|
exports.metadataVocabulary = [ "title", "description", "default", "deprecated", "readOnly", "writeOnly", "examples" ];
|
|
16893
16906
|
exports.contentVocabulary = [ "contentMediaType", "contentEncoding", "contentSchema" ];
|
|
16894
16907
|
},
|
|
16895
|
-
|
|
16908
|
+
7455: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
16896
16909
|
"use strict";
|
|
16897
16910
|
Object.defineProperty(exports, "__esModule", {
|
|
16898
16911
|
value: true
|
|
16899
16912
|
});
|
|
16900
|
-
const codegen_1 = __webpack_require__(
|
|
16901
|
-
const util_1 = __webpack_require__(
|
|
16902
|
-
const equal_1 = __webpack_require__(
|
|
16913
|
+
const codegen_1 = __webpack_require__(7525);
|
|
16914
|
+
const util_1 = __webpack_require__(3);
|
|
16915
|
+
const equal_1 = __webpack_require__(8682);
|
|
16903
16916
|
const error = {
|
|
16904
16917
|
message: "must be equal to constant",
|
|
16905
16918
|
params: ({schemaCode}) => (0, codegen_1._)`{allowedValue: ${schemaCode}}`
|
|
@@ -16919,14 +16932,14 @@ var __webpack_modules__ = {
|
|
|
16919
16932
|
};
|
|
16920
16933
|
exports["default"] = def;
|
|
16921
16934
|
},
|
|
16922
|
-
|
|
16935
|
+
3715: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
16923
16936
|
"use strict";
|
|
16924
16937
|
Object.defineProperty(exports, "__esModule", {
|
|
16925
16938
|
value: true
|
|
16926
16939
|
});
|
|
16927
|
-
const codegen_1 = __webpack_require__(
|
|
16928
|
-
const util_1 = __webpack_require__(
|
|
16929
|
-
const equal_1 = __webpack_require__(
|
|
16940
|
+
const codegen_1 = __webpack_require__(7525);
|
|
16941
|
+
const util_1 = __webpack_require__(3);
|
|
16942
|
+
const equal_1 = __webpack_require__(8682);
|
|
16930
16943
|
const error = {
|
|
16931
16944
|
message: "must be equal to one of the allowed values",
|
|
16932
16945
|
params: ({schemaCode}) => (0, codegen_1._)`{allowedValues: ${schemaCode}}`
|
|
@@ -16965,21 +16978,21 @@ var __webpack_modules__ = {
|
|
|
16965
16978
|
};
|
|
16966
16979
|
exports["default"] = def;
|
|
16967
16980
|
},
|
|
16968
|
-
|
|
16981
|
+
6580: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
16969
16982
|
"use strict";
|
|
16970
16983
|
Object.defineProperty(exports, "__esModule", {
|
|
16971
16984
|
value: true
|
|
16972
16985
|
});
|
|
16973
|
-
const limitNumber_1 = __webpack_require__(
|
|
16974
|
-
const multipleOf_1 = __webpack_require__(
|
|
16975
|
-
const limitLength_1 = __webpack_require__(
|
|
16976
|
-
const pattern_1 = __webpack_require__(
|
|
16977
|
-
const limitProperties_1 = __webpack_require__(
|
|
16978
|
-
const required_1 = __webpack_require__(
|
|
16979
|
-
const limitItems_1 = __webpack_require__(
|
|
16980
|
-
const uniqueItems_1 = __webpack_require__(
|
|
16981
|
-
const const_1 = __webpack_require__(
|
|
16982
|
-
const enum_1 = __webpack_require__(
|
|
16986
|
+
const limitNumber_1 = __webpack_require__(8394);
|
|
16987
|
+
const multipleOf_1 = __webpack_require__(9503);
|
|
16988
|
+
const limitLength_1 = __webpack_require__(9819);
|
|
16989
|
+
const pattern_1 = __webpack_require__(6854);
|
|
16990
|
+
const limitProperties_1 = __webpack_require__(3238);
|
|
16991
|
+
const required_1 = __webpack_require__(5123);
|
|
16992
|
+
const limitItems_1 = __webpack_require__(7227);
|
|
16993
|
+
const uniqueItems_1 = __webpack_require__(9481);
|
|
16994
|
+
const const_1 = __webpack_require__(7455);
|
|
16995
|
+
const enum_1 = __webpack_require__(3715);
|
|
16983
16996
|
const validation = [ limitNumber_1.default, multipleOf_1.default, limitLength_1.default, pattern_1.default, limitProperties_1.default, required_1.default, limitItems_1.default, uniqueItems_1.default, {
|
|
16984
16997
|
keyword: "type",
|
|
16985
16998
|
schemaType: [ "string", "array" ]
|
|
@@ -16989,12 +17002,12 @@ var __webpack_modules__ = {
|
|
|
16989
17002
|
}, const_1.default, enum_1.default ];
|
|
16990
17003
|
exports["default"] = validation;
|
|
16991
17004
|
},
|
|
16992
|
-
|
|
17005
|
+
7227: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
16993
17006
|
"use strict";
|
|
16994
17007
|
Object.defineProperty(exports, "__esModule", {
|
|
16995
17008
|
value: true
|
|
16996
17009
|
});
|
|
16997
|
-
const codegen_1 = __webpack_require__(
|
|
17010
|
+
const codegen_1 = __webpack_require__(7525);
|
|
16998
17011
|
const error = {
|
|
16999
17012
|
message({keyword, schemaCode}) {
|
|
17000
17013
|
const comp = keyword === "maxItems" ? "more" : "fewer";
|
|
@@ -17016,14 +17029,14 @@ var __webpack_modules__ = {
|
|
|
17016
17029
|
};
|
|
17017
17030
|
exports["default"] = def;
|
|
17018
17031
|
},
|
|
17019
|
-
|
|
17032
|
+
9819: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
17020
17033
|
"use strict";
|
|
17021
17034
|
Object.defineProperty(exports, "__esModule", {
|
|
17022
17035
|
value: true
|
|
17023
17036
|
});
|
|
17024
|
-
const codegen_1 = __webpack_require__(
|
|
17025
|
-
const util_1 = __webpack_require__(
|
|
17026
|
-
const ucs2length_1 = __webpack_require__(
|
|
17037
|
+
const codegen_1 = __webpack_require__(7525);
|
|
17038
|
+
const util_1 = __webpack_require__(3);
|
|
17039
|
+
const ucs2length_1 = __webpack_require__(7629);
|
|
17027
17040
|
const error = {
|
|
17028
17041
|
message({keyword, schemaCode}) {
|
|
17029
17042
|
const comp = keyword === "maxLength" ? "more" : "fewer";
|
|
@@ -17047,12 +17060,12 @@ var __webpack_modules__ = {
|
|
|
17047
17060
|
};
|
|
17048
17061
|
exports["default"] = def;
|
|
17049
17062
|
},
|
|
17050
|
-
|
|
17063
|
+
8394: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
17051
17064
|
"use strict";
|
|
17052
17065
|
Object.defineProperty(exports, "__esModule", {
|
|
17053
17066
|
value: true
|
|
17054
17067
|
});
|
|
17055
|
-
const codegen_1 = __webpack_require__(
|
|
17068
|
+
const codegen_1 = __webpack_require__(7525);
|
|
17056
17069
|
const ops = codegen_1.operators;
|
|
17057
17070
|
const KWDs = {
|
|
17058
17071
|
maximum: {
|
|
@@ -17093,12 +17106,12 @@ var __webpack_modules__ = {
|
|
|
17093
17106
|
};
|
|
17094
17107
|
exports["default"] = def;
|
|
17095
17108
|
},
|
|
17096
|
-
|
|
17109
|
+
3238: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
17097
17110
|
"use strict";
|
|
17098
17111
|
Object.defineProperty(exports, "__esModule", {
|
|
17099
17112
|
value: true
|
|
17100
17113
|
});
|
|
17101
|
-
const codegen_1 = __webpack_require__(
|
|
17114
|
+
const codegen_1 = __webpack_require__(7525);
|
|
17102
17115
|
const error = {
|
|
17103
17116
|
message({keyword, schemaCode}) {
|
|
17104
17117
|
const comp = keyword === "maxProperties" ? "more" : "fewer";
|
|
@@ -17120,12 +17133,12 @@ var __webpack_modules__ = {
|
|
|
17120
17133
|
};
|
|
17121
17134
|
exports["default"] = def;
|
|
17122
17135
|
},
|
|
17123
|
-
|
|
17136
|
+
9503: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
17124
17137
|
"use strict";
|
|
17125
17138
|
Object.defineProperty(exports, "__esModule", {
|
|
17126
17139
|
value: true
|
|
17127
17140
|
});
|
|
17128
|
-
const codegen_1 = __webpack_require__(
|
|
17141
|
+
const codegen_1 = __webpack_require__(7525);
|
|
17129
17142
|
const error = {
|
|
17130
17143
|
message: ({schemaCode}) => (0, codegen_1.str)`must be multiple of ${schemaCode}`,
|
|
17131
17144
|
params: ({schemaCode}) => (0, codegen_1._)`{multipleOf: ${schemaCode}}`
|
|
@@ -17147,13 +17160,13 @@ var __webpack_modules__ = {
|
|
|
17147
17160
|
};
|
|
17148
17161
|
exports["default"] = def;
|
|
17149
17162
|
},
|
|
17150
|
-
|
|
17163
|
+
6854: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
17151
17164
|
"use strict";
|
|
17152
17165
|
Object.defineProperty(exports, "__esModule", {
|
|
17153
17166
|
value: true
|
|
17154
17167
|
});
|
|
17155
|
-
const code_1 = __webpack_require__(
|
|
17156
|
-
const codegen_1 = __webpack_require__(
|
|
17168
|
+
const code_1 = __webpack_require__(6453);
|
|
17169
|
+
const codegen_1 = __webpack_require__(7525);
|
|
17157
17170
|
const error = {
|
|
17158
17171
|
message: ({schemaCode}) => (0, codegen_1.str)`must match pattern "${schemaCode}"`,
|
|
17159
17172
|
params: ({schemaCode}) => (0, codegen_1._)`{pattern: ${schemaCode}}`
|
|
@@ -17174,14 +17187,14 @@ var __webpack_modules__ = {
|
|
|
17174
17187
|
};
|
|
17175
17188
|
exports["default"] = def;
|
|
17176
17189
|
},
|
|
17177
|
-
|
|
17190
|
+
5123: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
17178
17191
|
"use strict";
|
|
17179
17192
|
Object.defineProperty(exports, "__esModule", {
|
|
17180
17193
|
value: true
|
|
17181
17194
|
});
|
|
17182
|
-
const code_1 = __webpack_require__(
|
|
17183
|
-
const codegen_1 = __webpack_require__(
|
|
17184
|
-
const util_1 = __webpack_require__(
|
|
17195
|
+
const code_1 = __webpack_require__(6453);
|
|
17196
|
+
const codegen_1 = __webpack_require__(7525);
|
|
17197
|
+
const util_1 = __webpack_require__(3);
|
|
17185
17198
|
const error = {
|
|
17186
17199
|
message: ({params: {missingProperty}}) => (0, codegen_1.str)`must have required property '${missingProperty}'`,
|
|
17187
17200
|
params: ({params: {missingProperty}}) => (0, codegen_1._)`{missingProperty: ${missingProperty}}`
|
|
@@ -17254,15 +17267,15 @@ var __webpack_modules__ = {
|
|
|
17254
17267
|
};
|
|
17255
17268
|
exports["default"] = def;
|
|
17256
17269
|
},
|
|
17257
|
-
|
|
17270
|
+
9481: (__unused_webpack_module, exports, __webpack_require__) => {
|
|
17258
17271
|
"use strict";
|
|
17259
17272
|
Object.defineProperty(exports, "__esModule", {
|
|
17260
17273
|
value: true
|
|
17261
17274
|
});
|
|
17262
|
-
const dataType_1 = __webpack_require__(
|
|
17263
|
-
const codegen_1 = __webpack_require__(
|
|
17264
|
-
const util_1 = __webpack_require__(
|
|
17265
|
-
const equal_1 = __webpack_require__(
|
|
17275
|
+
const dataType_1 = __webpack_require__(1376);
|
|
17276
|
+
const codegen_1 = __webpack_require__(7525);
|
|
17277
|
+
const util_1 = __webpack_require__(3);
|
|
17278
|
+
const equal_1 = __webpack_require__(8682);
|
|
17266
17279
|
const error = {
|
|
17267
17280
|
message: ({params: {i, j}}) => (0, codegen_1.str)`must NOT have duplicate items (items ## ${j} and ${i} are identical)`,
|
|
17268
17281
|
params: ({params: {i, j}}) => (0, codegen_1._)`{i: ${i}, j: ${j}}`
|
|
@@ -17322,7 +17335,7 @@ var __webpack_modules__ = {
|
|
|
17322
17335
|
};
|
|
17323
17336
|
exports["default"] = def;
|
|
17324
17337
|
},
|
|
17325
|
-
|
|
17338
|
+
7794: module => {
|
|
17326
17339
|
"use strict";
|
|
17327
17340
|
var traverse = module.exports = function(schema, opts, cb) {
|
|
17328
17341
|
if (typeof opts == "function") {
|
|
@@ -17402,83 +17415,83 @@ var __webpack_modules__ = {
|
|
|
17402
17415
|
return str.replace(/~/g, "~0").replace(/\//g, "~1");
|
|
17403
17416
|
}
|
|
17404
17417
|
},
|
|
17405
|
-
|
|
17418
|
+
2613: module => {
|
|
17406
17419
|
"use strict";
|
|
17407
17420
|
module.exports = require("assert");
|
|
17408
17421
|
},
|
|
17409
|
-
|
|
17422
|
+
181: module => {
|
|
17410
17423
|
"use strict";
|
|
17411
17424
|
module.exports = require("buffer");
|
|
17412
17425
|
},
|
|
17413
|
-
|
|
17426
|
+
5317: module => {
|
|
17414
17427
|
"use strict";
|
|
17415
17428
|
module.exports = require("child_process");
|
|
17416
17429
|
},
|
|
17417
|
-
|
|
17430
|
+
9140: module => {
|
|
17418
17431
|
"use strict";
|
|
17419
17432
|
module.exports = require("constants");
|
|
17420
17433
|
},
|
|
17421
|
-
|
|
17434
|
+
6982: module => {
|
|
17422
17435
|
"use strict";
|
|
17423
17436
|
module.exports = require("crypto");
|
|
17424
17437
|
},
|
|
17425
|
-
|
|
17438
|
+
4434: module => {
|
|
17426
17439
|
"use strict";
|
|
17427
17440
|
module.exports = require("events");
|
|
17428
17441
|
},
|
|
17429
|
-
|
|
17442
|
+
9896: module => {
|
|
17430
17443
|
"use strict";
|
|
17431
17444
|
module.exports = require("fs");
|
|
17432
17445
|
},
|
|
17433
|
-
|
|
17446
|
+
3339: module => {
|
|
17434
17447
|
"use strict";
|
|
17435
17448
|
module.exports = require("module");
|
|
17436
17449
|
},
|
|
17437
|
-
|
|
17450
|
+
857: module => {
|
|
17438
17451
|
"use strict";
|
|
17439
17452
|
module.exports = require("os");
|
|
17440
17453
|
},
|
|
17441
|
-
|
|
17454
|
+
6928: module => {
|
|
17442
17455
|
"use strict";
|
|
17443
17456
|
module.exports = require("path");
|
|
17444
17457
|
},
|
|
17445
|
-
|
|
17458
|
+
932: module => {
|
|
17446
17459
|
"use strict";
|
|
17447
17460
|
module.exports = require("process");
|
|
17448
17461
|
},
|
|
17449
|
-
|
|
17462
|
+
2203: module => {
|
|
17450
17463
|
"use strict";
|
|
17451
17464
|
module.exports = require("stream");
|
|
17452
17465
|
},
|
|
17453
|
-
|
|
17466
|
+
3193: module => {
|
|
17454
17467
|
"use strict";
|
|
17455
17468
|
module.exports = require("string_decoder");
|
|
17456
17469
|
},
|
|
17457
|
-
|
|
17470
|
+
9023: module => {
|
|
17458
17471
|
"use strict";
|
|
17459
17472
|
module.exports = require("util");
|
|
17460
17473
|
},
|
|
17461
|
-
|
|
17474
|
+
3106: module => {
|
|
17462
17475
|
"use strict";
|
|
17463
17476
|
module.exports = require("zlib");
|
|
17464
17477
|
},
|
|
17465
|
-
|
|
17478
|
+
8330: module => {
|
|
17466
17479
|
"use strict";
|
|
17467
|
-
module.exports = JSON.parse('{"name":"@jsii/runtime","version":"1.
|
|
17480
|
+
module.exports = JSON.parse('{"name":"@jsii/runtime","version":"1.99.0","description":"jsii runtime kernel process","license":"Apache-2.0","author":{"name":"Amazon Web Services","url":"https://aws.amazon.com"},"homepage":"https://github.com/aws/jsii","bugs":{"url":"https://github.com/aws/jsii/issues"},"repository":{"type":"git","url":"https://github.com/aws/jsii.git","directory":"packages/@jsii/runtime"},"engines":{"node":">= 14.17.0"},"main":"lib/index.js","types":"lib/index.d.ts","bin":{"jsii-runtime":"bin/jsii-runtime"},"scripts":{"build":"tsc --build && chmod +x bin/jsii-runtime && npx webpack-cli && npm run lint","watch":"tsc --build -w","lint":"ESLINT_USE_FLAT_CONFIG=false eslint . --ext .js,.ts --ignore-path=.gitignore --ignore-pattern=webpack.config.js","lint:fix":"yarn lint --fix","test":"jest","test:update":"jest -u","package":"package-js"},"dependencies":{"@jsii/kernel":"^1.99.0","@jsii/check-node":"1.99.0","@jsii/spec":"^1.99.0"},"devDependencies":{"@scope/jsii-calc-base":"^1.99.0","@scope/jsii-calc-lib":"^1.99.0","jsii-build-tools":"^1.99.0","jsii-calc":"^3.20.120","source-map-loader":"^5.0.0","webpack":"^5.91.0","webpack-cli":"^5.1.4"}}');
|
|
17468
17481
|
},
|
|
17469
|
-
|
|
17482
|
+
9453: module => {
|
|
17470
17483
|
"use strict";
|
|
17471
17484
|
module.exports = JSON.parse('{"$id":"https://raw.githubusercontent.com/ajv-validator/ajv/master/lib/refs/data.json#","description":"Meta-schema for $data reference (JSON AnySchema extension proposal)","type":"object","required":["$data"],"properties":{"$data":{"type":"string","anyOf":[{"format":"relative-json-pointer"},{"format":"json-pointer"}]}},"additionalProperties":false}');
|
|
17472
17485
|
},
|
|
17473
|
-
|
|
17486
|
+
3311: module => {
|
|
17474
17487
|
"use strict";
|
|
17475
17488
|
module.exports = JSON.parse('{"$schema":"http://json-schema.org/draft-07/schema#","$id":"http://json-schema.org/draft-07/schema#","title":"Core schema meta-schema","definitions":{"schemaArray":{"type":"array","minItems":1,"items":{"$ref":"#"}},"nonNegativeInteger":{"type":"integer","minimum":0},"nonNegativeIntegerDefault0":{"allOf":[{"$ref":"#/definitions/nonNegativeInteger"},{"default":0}]},"simpleTypes":{"enum":["array","boolean","integer","null","number","object","string"]},"stringArray":{"type":"array","items":{"type":"string"},"uniqueItems":true,"default":[]}},"type":["object","boolean"],"properties":{"$id":{"type":"string","format":"uri-reference"},"$schema":{"type":"string","format":"uri"},"$ref":{"type":"string","format":"uri-reference"},"$comment":{"type":"string"},"title":{"type":"string"},"description":{"type":"string"},"default":true,"readOnly":{"type":"boolean","default":false},"examples":{"type":"array","items":true},"multipleOf":{"type":"number","exclusiveMinimum":0},"maximum":{"type":"number"},"exclusiveMaximum":{"type":"number"},"minimum":{"type":"number"},"exclusiveMinimum":{"type":"number"},"maxLength":{"$ref":"#/definitions/nonNegativeInteger"},"minLength":{"$ref":"#/definitions/nonNegativeIntegerDefault0"},"pattern":{"type":"string","format":"regex"},"additionalItems":{"$ref":"#"},"items":{"anyOf":[{"$ref":"#"},{"$ref":"#/definitions/schemaArray"}],"default":true},"maxItems":{"$ref":"#/definitions/nonNegativeInteger"},"minItems":{"$ref":"#/definitions/nonNegativeIntegerDefault0"},"uniqueItems":{"type":"boolean","default":false},"contains":{"$ref":"#"},"maxProperties":{"$ref":"#/definitions/nonNegativeInteger"},"minProperties":{"$ref":"#/definitions/nonNegativeIntegerDefault0"},"required":{"$ref":"#/definitions/stringArray"},"additionalProperties":{"$ref":"#"},"definitions":{"type":"object","additionalProperties":{"$ref":"#"},"default":{}},"properties":{"type":"object","additionalProperties":{"$ref":"#"},"default":{}},"patternProperties":{"type":"object","additionalProperties":{"$ref":"#"},"propertyNames":{"format":"regex"},"default":{}},"dependencies":{"type":"object","additionalProperties":{"anyOf":[{"$ref":"#"},{"$ref":"#/definitions/stringArray"}]}},"propertyNames":{"$ref":"#"},"const":true,"enum":{"type":"array","items":true,"minItems":1,"uniqueItems":true},"type":{"anyOf":[{"$ref":"#/definitions/simpleTypes"},{"type":"array","items":{"$ref":"#/definitions/simpleTypes"},"minItems":1,"uniqueItems":true}]},"format":{"type":"string"},"contentMediaType":{"type":"string"},"contentEncoding":{"type":"string"},"if":{"$ref":"#"},"then":{"$ref":"#"},"else":{"$ref":"#"},"allOf":{"$ref":"#/definitions/schemaArray"},"anyOf":{"$ref":"#/definitions/schemaArray"},"oneOf":{"$ref":"#/definitions/schemaArray"},"not":{"$ref":"#"}},"default":true}');
|
|
17476
17489
|
},
|
|
17477
|
-
|
|
17490
|
+
3346: module => {
|
|
17478
17491
|
"use strict";
|
|
17479
17492
|
module.exports = JSON.parse('{"$ref":"#/definitions/AssemblyRedirect","$schema":"http://json-schema.org/draft-07/schema#","definitions":{"AssemblyRedirect":{"properties":{"compression":{"const":"gzip","description":"The compression applied to the target file, if any.","type":"string"},"filename":{"description":"The name of the file the assembly is redirected to.","type":"string"},"schema":{"const":"jsii/file-redirect","type":"string"}},"required":["filename","schema"],"type":"object"}}}');
|
|
17480
17493
|
},
|
|
17481
|
-
|
|
17494
|
+
878: module => {
|
|
17482
17495
|
"use strict";
|
|
17483
17496
|
module.exports = JSON.parse('{"$ref":"#/definitions/Assembly","$schema":"http://json-schema.org/draft-07/schema#","definitions":{"Assembly":{"description":"A JSII assembly specification.","properties":{"author":{"$ref":"#/definitions/Person","description":"The main author of this package."},"bin":{"additionalProperties":{"type":"string"},"default":"none","description":"List of bin-scripts","type":"object"},"bundled":{"additionalProperties":{"type":"string"},"default":"none","description":"List if bundled dependencies (these are not expected to be jsii\\nassemblies).","type":"object"},"contributors":{"default":"none","description":"Additional contributors to this package.","items":{"$ref":"#/definitions/Person"},"type":"array"},"dependencies":{"additionalProperties":{"type":"string"},"default":"none","description":"Direct dependencies on other assemblies (with semver), the key is the JSII\\nassembly name, and the value is a SemVer expression.","type":"object"},"dependencyClosure":{"additionalProperties":{"$ref":"#/definitions/DependencyConfiguration"},"default":"none","description":"Target configuration for all the assemblies that are direct or transitive\\ndependencies of this assembly. This is needed to generate correct native\\ntype names for any transitively inherited member, in certain languages.","type":"object"},"description":{"description":"Description of the assembly, maps to \\"description\\" from package.json\\nThis is required since some package managers (like Maven) require it.","type":"string"},"docs":{"$ref":"#/definitions/Docs","default":"none","description":"Documentation for this entity."},"fingerprint":{"description":"A fingerprint that can be used to determine if the specification has\\nchanged.","minLength":1,"type":"string"},"homepage":{"description":"The url to the project homepage. Maps to \\"homepage\\" from package.json.","type":"string"},"jsiiVersion":{"description":"The version of the jsii compiler that was used to produce this Assembly.","minLength":1,"type":"string"},"keywords":{"description":"Keywords that help discover or identify this packages with respects to it\'s\\nintended usage, audience, etc... Where possible, this will be rendered in\\nthe corresponding metadata section of idiomatic package manifests, for\\nexample NuGet package tags.","items":{"type":"string"},"type":"array"},"license":{"description":"The SPDX name of the license this assembly is distributed on.","type":"string"},"metadata":{"additionalProperties":{},"default":"none","description":"Arbitrary key-value pairs of metadata, which the maintainer chose to\\ndocument with the assembly. These entries do not carry normative\\nsemantics and their interpretation is up to the assembly maintainer.","type":"object"},"name":{"description":"The name of the assembly","minLength":1,"type":"string"},"readme":{"$ref":"#/definitions/ReadMe","default":"none","description":"The readme document for this module (if any)."},"repository":{"description":"The module repository, maps to \\"repository\\" from package.json\\nThis is required since some package managers (like Maven) require it.","properties":{"directory":{"default":"the root of the repository","description":"If the package is not in the root directory (for example, when part\\nof a monorepo), you should specify the directory in which it lives.","type":"string"},"type":{"description":"The type of the repository (``git``, ``svn``, ...)","type":"string"},"url":{"description":"The URL of the repository.","type":"string"}},"required":["type","url"],"type":"object"},"schema":{"const":"jsii/0.10.0","description":"The version of the spec schema","type":"string"},"submodules":{"additionalProperties":{"$ref":"#/definitions/Submodule"},"default":"none","description":"Submodules declared in this assembly.","type":"object"},"targets":{"$ref":"#/definitions/AssemblyTargets","default":"none","description":"A map of target name to configuration, which is used when generating\\npackages for various languages."},"types":{"additionalProperties":{"$ref":"#/definitions/Type"},"default":"none","description":"All types in the assembly, keyed by their fully-qualified-name","type":"object"},"version":{"description":"The version of the assembly","minLength":1,"type":"string"}},"required":["author","description","fingerprint","homepage","jsiiVersion","license","name","repository","schema","version"],"type":"object"},"AssemblyTargets":{"additionalProperties":{"additionalProperties":{},"type":"object"},"description":"Configurable targets for an asembly.","type":"object"},"Callable":{"description":"An Initializer or a Method.","properties":{"docs":{"$ref":"#/definitions/Docs","default":"none","description":"Documentation for this entity."},"locationInModule":{"$ref":"#/definitions/SourceLocation","default":"none","description":"Where in the module this definition was found\\n\\nWhy is this not `locationInAssembly`? Because the assembly is the JSII\\nfile combining compiled code and its manifest, whereas this is referring\\nto the location of the source in the module the assembly was built from."},"overrides":{"default":"this member is not overriding anything","description":"The FQN of the parent type (class or interface) that this entity\\noverrides or implements. If undefined, then this entity is the first in\\nit\'s hierarchy to declare this entity.","type":"string"},"parameters":{"default":"none","description":"The parameters of the Initializer or Method.","items":{"$ref":"#/definitions/Parameter"},"type":"array"},"protected":{"default":false,"description":"Indicates if this Initializer or Method is protected (otherwise it is\\npublic, since private members are not modeled).","type":"boolean"},"variadic":{"default":false,"description":"Indicates whether this Initializer or Method is variadic or not. When\\n``true``, the last element of ``#parameters`` will also be flagged\\n``#variadic``.","type":"boolean"}},"type":"object"},"ClassType":{"description":"Represents classes.","properties":{"abstract":{"default":false,"description":"Indicates if this class is an abstract class.","type":"boolean"},"assembly":{"description":"The name of the assembly the type belongs to.","minLength":1,"type":"string"},"base":{"default":"no base class","description":"The FQN of the base class of this class, if it has one.","type":"string"},"docs":{"$ref":"#/definitions/Docs","default":"none","description":"Documentation for this entity."},"fqn":{"description":"The fully qualified name of the type (``<assembly>.<namespace>.<name>``)","minLength":3,"type":"string"},"initializer":{"$ref":"#/definitions/Callable","default":"no initializer","description":"Initializer (constructor) method."},"interfaces":{"default":"none","description":"The FQNs of the interfaces this class implements, if any.","items":{"type":"string"},"type":"array","uniqueItems":true},"kind":{"const":"class","description":"The kind of the type.","type":"string"},"locationInModule":{"$ref":"#/definitions/SourceLocation","default":"none","description":"Where in the module this definition was found\\n\\nWhy is this not `locationInAssembly`? Because the assembly is the JSII\\nfile combining compiled code and its manifest, whereas this is referring\\nto the location of the source in the module the assembly was built from."},"methods":{"default":"none","description":"List of methods.","items":{"$ref":"#/definitions/Method"},"type":"array"},"name":{"description":"The simple name of the type (MyClass).","minLength":1,"type":"string"},"namespace":{"default":"none","description":"The namespace of the type (`foo.bar.baz`).\\n\\nWhen undefined, the type is located at the root of the assembly (its\\n`fqn` would be like `<assembly>.<name>`).\\n\\nFor types inside other types or inside submodules, the `<namespace>` corresponds to\\nthe namespace-qualified name of the container (can contain multiple segments like:\\n`<ns1>.<ns2>.<ns3>`).\\n\\nIn all cases:\\n\\n <fqn> = <assembly>[.<namespace>].<name>","type":"string"},"properties":{"default":"none","description":"List of properties.","items":{"$ref":"#/definitions/Property"},"type":"array"},"symbolId":{"description":"Unique string representation of the corresponding Typescript symbol\\n\\nUsed to map from TypeScript code back into the assembly.","type":"string"}},"required":["assembly","fqn","kind","name"],"type":"object"},"CollectionKind":{"description":"Kinds of collections.","enum":["array","map"],"type":"string"},"CollectionTypeReference":{"description":"Reference to a collection type.","properties":{"collection":{"properties":{"elementtype":{"$ref":"#/definitions/TypeReference","description":"The type of an element (map keys are always strings)."},"kind":{"$ref":"#/definitions/CollectionKind","description":"The kind of collection."}},"required":["elementtype","kind"],"type":"object"}},"required":["collection"],"type":"object"},"DependencyConfiguration":{"properties":{"submodules":{"additionalProperties":{"$ref":"#/definitions/Targetable"},"type":"object"},"targets":{"$ref":"#/definitions/AssemblyTargets","default":"none","description":"A map of target name to configuration, which is used when generating\\npackages for various languages."}},"type":"object"},"Docs":{"description":"Key value pairs of documentation nodes.\\nBased on TSDoc.","properties":{"custom":{"additionalProperties":{"type":"string"},"default":"none","description":"Custom tags that are not any of the default ones","type":"object"},"default":{"default":"none","description":"Description of the default","type":"string"},"deprecated":{"default":"none","description":"If present, this block indicates that an API item is no longer supported\\nand may be removed in a future release. The `@deprecated` tag must be\\nfollowed by a sentence describing the recommended alternative.\\nDeprecation recursively applies to members of a container. For example,\\nif a class is deprecated, then so are all of its members.","type":"string"},"example":{"default":"none","description":"Example showing the usage of this API item\\n\\nStarts off in running text mode, may switch to code using fenced code\\nblocks.","type":"string"},"remarks":{"default":"none","description":"Detailed information about an API item.\\n\\nEither the explicitly tagged `@remarks` section, otherwise everything\\npast the first paragraph if there is no `@remarks` tag.","type":"string"},"returns":{"default":"none","description":"The `@returns` block for this doc comment, or undefined if there is not\\none.","type":"string"},"see":{"default":"none","description":"A `@see` link with more information","type":"string"},"stability":{"description":"Whether the API item is beta/experimental quality","enum":["deprecated","experimental","external","stable"],"type":"string"},"subclassable":{"default":false,"description":"Whether this class or interface was intended to be subclassed/implemented\\nby library users.\\n\\nClasses intended for subclassing, and interfaces intended to be\\nimplemented by consumers, are held to stricter standards of API\\ncompatibility.","type":"boolean"},"summary":{"default":"none","description":"Summary documentation for an API item.\\n\\nThe first part of the documentation before hitting a `@remarks` tags, or\\nthe first line of the doc comment block if there is no `@remarks` tag.","type":"string"}},"type":"object"},"EnumMember":{"description":"Represents a member of an enum.","properties":{"docs":{"$ref":"#/definitions/Docs","default":"none","description":"Documentation for this entity."},"name":{"description":"The name/symbol of the member.","type":"string"}},"required":["name"],"type":"object"},"EnumType":{"description":"Represents an enum type.","properties":{"assembly":{"description":"The name of the assembly the type belongs to.","minLength":1,"type":"string"},"docs":{"$ref":"#/definitions/Docs","default":"none","description":"Documentation for this entity."},"fqn":{"description":"The fully qualified name of the type (``<assembly>.<namespace>.<name>``)","minLength":3,"type":"string"},"kind":{"const":"enum","description":"The kind of the type.","type":"string"},"locationInModule":{"$ref":"#/definitions/SourceLocation","default":"none","description":"Where in the module this definition was found\\n\\nWhy is this not `locationInAssembly`? Because the assembly is the JSII\\nfile combining compiled code and its manifest, whereas this is referring\\nto the location of the source in the module the assembly was built from."},"members":{"description":"Members of the enum.","items":{"$ref":"#/definitions/EnumMember"},"type":"array"},"name":{"description":"The simple name of the type (MyClass).","minLength":1,"type":"string"},"namespace":{"default":"none","description":"The namespace of the type (`foo.bar.baz`).\\n\\nWhen undefined, the type is located at the root of the assembly (its\\n`fqn` would be like `<assembly>.<name>`).\\n\\nFor types inside other types or inside submodules, the `<namespace>` corresponds to\\nthe namespace-qualified name of the container (can contain multiple segments like:\\n`<ns1>.<ns2>.<ns3>`).\\n\\nIn all cases:\\n\\n <fqn> = <assembly>[.<namespace>].<name>","type":"string"},"symbolId":{"description":"Unique string representation of the corresponding Typescript symbol\\n\\nUsed to map from TypeScript code back into the assembly.","type":"string"}},"required":["assembly","fqn","kind","members","name"],"type":"object"},"InterfaceType":{"properties":{"assembly":{"description":"The name of the assembly the type belongs to.","minLength":1,"type":"string"},"datatype":{"default":false,"description":"True if this interface only contains properties. Different backends might\\nhave idiomatic ways to allow defining concrete instances such interfaces.\\nFor example, in Java, the generator will produce a PoJo and a builder\\nwhich will allow users to create a concrete object with data which\\nadheres to this interface.","type":"boolean"},"docs":{"$ref":"#/definitions/Docs","default":"none","description":"Documentation for this entity."},"fqn":{"description":"The fully qualified name of the type (``<assembly>.<namespace>.<name>``)","minLength":3,"type":"string"},"interfaces":{"default":"none","description":"The FQNs of the interfaces this interface extends, if any.","items":{"type":"string"},"type":"array","uniqueItems":true},"kind":{"const":"interface","description":"The kind of the type.","type":"string"},"locationInModule":{"$ref":"#/definitions/SourceLocation","default":"none","description":"Where in the module this definition was found\\n\\nWhy is this not `locationInAssembly`? Because the assembly is the JSII\\nfile combining compiled code and its manifest, whereas this is referring\\nto the location of the source in the module the assembly was built from."},"methods":{"default":"none","description":"List of methods.","items":{"$ref":"#/definitions/Method"},"type":"array"},"name":{"description":"The simple name of the type (MyClass).","minLength":1,"type":"string"},"namespace":{"default":"none","description":"The namespace of the type (`foo.bar.baz`).\\n\\nWhen undefined, the type is located at the root of the assembly (its\\n`fqn` would be like `<assembly>.<name>`).\\n\\nFor types inside other types or inside submodules, the `<namespace>` corresponds to\\nthe namespace-qualified name of the container (can contain multiple segments like:\\n`<ns1>.<ns2>.<ns3>`).\\n\\nIn all cases:\\n\\n <fqn> = <assembly>[.<namespace>].<name>","type":"string"},"properties":{"default":"none","description":"List of properties.","items":{"$ref":"#/definitions/Property"},"type":"array"},"symbolId":{"description":"Unique string representation of the corresponding Typescript symbol\\n\\nUsed to map from TypeScript code back into the assembly.","type":"string"}},"required":["assembly","fqn","kind","name"],"type":"object"},"Method":{"description":"A method with a name (i.e: not an initializer).","properties":{"abstract":{"default":false,"description":"Is this method an abstract method (this means the class will also be an abstract class)","type":"boolean"},"async":{"default":false,"description":"Indicates if this is an asynchronous method (it will return a promise).","type":"boolean"},"docs":{"$ref":"#/definitions/Docs","default":"none","description":"Documentation for this entity."},"locationInModule":{"$ref":"#/definitions/SourceLocation","default":"none","description":"Where in the module this definition was found\\n\\nWhy is this not `locationInAssembly`? Because the assembly is the JSII\\nfile combining compiled code and its manifest, whereas this is referring\\nto the location of the source in the module the assembly was built from."},"name":{"description":"The name of the method. Undefined if this method is a initializer.","type":"string"},"overrides":{"default":"this member is not overriding anything","description":"The FQN of the parent type (class or interface) that this entity\\noverrides or implements. If undefined, then this entity is the first in\\nit\'s hierarchy to declare this entity.","type":"string"},"parameters":{"default":"none","description":"The parameters of the Initializer or Method.","items":{"$ref":"#/definitions/Parameter"},"type":"array"},"protected":{"default":false,"description":"Indicates if this Initializer or Method is protected (otherwise it is\\npublic, since private members are not modeled).","type":"boolean"},"returns":{"$ref":"#/definitions/OptionalValue","default":"void","description":"The return type of the method (`undefined` if `void`)"},"static":{"default":false,"description":"Indicates if this is a static method.","type":"boolean"},"variadic":{"default":false,"description":"Indicates whether this Initializer or Method is variadic or not. When\\n``true``, the last element of ``#parameters`` will also be flagged\\n``#variadic``.","type":"boolean"}},"required":["name"],"type":"object"},"NamedTypeReference":{"description":"Reference to a named type, defined by this assembly or one of its\\ndependencies.","properties":{"fqn":{"description":"The fully-qualified-name of the type (can be located in the\\n``spec.types[fqn]``` of the assembly that defines the type).","type":"string"}},"required":["fqn"],"type":"object"},"OptionalValue":{"description":"A value that can possibly be optional.","properties":{"optional":{"default":false,"description":"Determines whether the value is, indeed, optional.","type":"boolean"},"type":{"$ref":"#/definitions/TypeReference","description":"The declared type of the value, when it\'s present."}},"required":["type"],"type":"object"},"Parameter":{"description":"Represents a method parameter.","properties":{"docs":{"$ref":"#/definitions/Docs","default":"none","description":"Documentation for this entity."},"name":{"description":"The name of the parameter.","minLength":1,"type":"string"},"optional":{"default":false,"description":"Determines whether the value is, indeed, optional.","type":"boolean"},"type":{"$ref":"#/definitions/TypeReference","description":"The declared type of the value, when it\'s present."},"variadic":{"default":false,"description":"Whether this is the last parameter of a variadic method. In such cases,\\nthe `#type` attribute is the type of each individual item of the variadic\\narguments list (as opposed to some array type, as for example TypeScript\\nwould model it).","type":"boolean"}},"required":["name","type"],"type":"object"},"Person":{"description":"Metadata about people or organizations associated with the project that\\nresulted in the Assembly. Some of this metadata is required in order to\\npublish to certain package repositories (for example, Maven Central), but is\\nnot normalized, and the meaning of fields (role, for example), is up to each\\nproject maintainer.","properties":{"email":{"default":"none","description":"The email of the person","type":"string"},"name":{"description":"The name of the person","type":"string"},"organization":{"default":false,"description":"If true, this person is, in fact, an organization","type":"boolean"},"roles":{"description":"A list of roles this person has in the project, for example `maintainer`,\\n`contributor`, `owner`, ...","items":{"type":"string"},"type":"array"},"url":{"default":"none","description":"The URL for the person","type":"string"}},"required":["name","roles"],"type":"object"},"PrimitiveType":{"description":"Kinds of primitive types.","enum":["date","string","number","boolean","json","any"],"type":"string"},"PrimitiveTypeReference":{"description":"Reference to a primitive type.","properties":{"primitive":{"$ref":"#/definitions/PrimitiveType","description":"If this is a reference to a primitive type, this will include the\\nprimitive type kind."}},"required":["primitive"],"type":"object"},"Property":{"description":"A class property.","properties":{"abstract":{"default":false,"description":"Indicates if this property is abstract","type":"boolean"},"const":{"default":false,"description":"A hint that indicates that this static, immutable property is initialized\\nduring startup. This allows emitting \\"const\\" idioms in different target\\nlanguages. Implies `static` and `immutable`.","type":"boolean"},"docs":{"$ref":"#/definitions/Docs","default":"none","description":"Documentation for this entity."},"immutable":{"default":false,"description":"Indicates if this property only has a getter (immutable).","type":"boolean"},"locationInModule":{"$ref":"#/definitions/SourceLocation","default":"none","description":"Where in the module this definition was found\\n\\nWhy is this not `locationInAssembly`? Because the assembly is the JSII\\nfile combining compiled code and its manifest, whereas this is referring\\nto the location of the source in the module the assembly was built from."},"name":{"description":"The name of the property.","minLength":1,"type":"string"},"optional":{"default":false,"description":"Determines whether the value is, indeed, optional.","type":"boolean"},"overrides":{"default":"this member is not overriding anything","description":"The FQN of the parent type (class or interface) that this entity\\noverrides or implements. If undefined, then this entity is the first in\\nit\'s hierarchy to declare this entity.","type":"string"},"protected":{"default":false,"description":"Indicates if this property is protected (otherwise it is public)","type":"boolean"},"static":{"default":false,"description":"Indicates if this is a static property.","type":"boolean"},"type":{"$ref":"#/definitions/TypeReference","description":"The declared type of the value, when it\'s present."}},"required":["name","type"],"type":"object"},"ReadMe":{"description":"README information","properties":{"markdown":{"type":"string"}},"required":["markdown"],"type":"object"},"ReadMeContainer":{"description":"Elements that can contain a `readme` property.","properties":{"readme":{"$ref":"#/definitions/ReadMe","default":"none","description":"The readme document for this module (if any)."}},"type":"object"},"SourceLocatable":{"description":"Indicates that an entity has a source location","properties":{"locationInModule":{"$ref":"#/definitions/SourceLocation","default":"none","description":"Where in the module this definition was found\\n\\nWhy is this not `locationInAssembly`? Because the assembly is the JSII\\nfile combining compiled code and its manifest, whereas this is referring\\nto the location of the source in the module the assembly was built from."}},"type":"object"},"SourceLocation":{"description":"Where in the module source the definition for this API item was found","properties":{"filename":{"description":"Relative filename","type":"string"},"line":{"description":"1-based line number in the indicated file","type":"number"}},"required":["filename","line"],"type":"object"},"Submodule":{"allOf":[{"$ref":"#/definitions/ReadMeContainer"},{"$ref":"#/definitions/SourceLocatable"},{"$ref":"#/definitions/Targetable"},{"$ref":"#/definitions/TypeScriptLocatable"}],"description":"A submodule\\n\\nThe difference between a top-level module (the assembly) and a submodule is\\nthat the submodule is annotated with its location in the repository."},"Targetable":{"description":"A targetable module-like thing\\n\\nHas targets and a readme. Used for Assemblies and Submodules.","properties":{"targets":{"$ref":"#/definitions/AssemblyTargets","default":"none","description":"A map of target name to configuration, which is used when generating\\npackages for various languages."}},"type":"object"},"Type":{"anyOf":[{"allOf":[{"$ref":"#/definitions/TypeBase"},{"$ref":"#/definitions/ClassType"}]},{"allOf":[{"$ref":"#/definitions/TypeBase"},{"$ref":"#/definitions/EnumType"}]},{"allOf":[{"$ref":"#/definitions/TypeBase"},{"$ref":"#/definitions/InterfaceType"}]}],"description":"Represents a type definition (not a type reference)."},"TypeBase":{"description":"Common attributes of a type definition.","properties":{"assembly":{"description":"The name of the assembly the type belongs to.","minLength":1,"type":"string"},"docs":{"$ref":"#/definitions/Docs","default":"none","description":"Documentation for this entity."},"fqn":{"description":"The fully qualified name of the type (``<assembly>.<namespace>.<name>``)","minLength":3,"type":"string"},"kind":{"$ref":"#/definitions/TypeKind","description":"The kind of the type."},"locationInModule":{"$ref":"#/definitions/SourceLocation","default":"none","description":"Where in the module this definition was found\\n\\nWhy is this not `locationInAssembly`? Because the assembly is the JSII\\nfile combining compiled code and its manifest, whereas this is referring\\nto the location of the source in the module the assembly was built from."},"name":{"description":"The simple name of the type (MyClass).","minLength":1,"type":"string"},"namespace":{"default":"none","description":"The namespace of the type (`foo.bar.baz`).\\n\\nWhen undefined, the type is located at the root of the assembly (its\\n`fqn` would be like `<assembly>.<name>`).\\n\\nFor types inside other types or inside submodules, the `<namespace>` corresponds to\\nthe namespace-qualified name of the container (can contain multiple segments like:\\n`<ns1>.<ns2>.<ns3>`).\\n\\nIn all cases:\\n\\n <fqn> = <assembly>[.<namespace>].<name>","type":"string"},"symbolId":{"description":"Unique string representation of the corresponding Typescript symbol\\n\\nUsed to map from TypeScript code back into the assembly.","type":"string"}},"required":["assembly","fqn","kind","name"],"type":"object"},"TypeKind":{"description":"Kinds of types.","enum":["class","enum","interface"],"type":"string"},"TypeReference":{"anyOf":[{"$ref":"#/definitions/NamedTypeReference"},{"$ref":"#/definitions/PrimitiveTypeReference"},{"$ref":"#/definitions/CollectionTypeReference"},{"$ref":"#/definitions/UnionTypeReference"}],"description":"A reference to a type (primitive, collection or fqn)."},"TypeScriptLocatable":{"description":"Indicates that a jsii entity\'s origin can be traced to TypeScript code\\n\\nThis is interface is not the same as `SourceLocatable`. SourceLocatable\\nidentifies lines in source files in a source repository (in a `.ts` file,\\nwith respect to a git root).\\n\\nOn the other hand, `TypeScriptLocatable` identifies a symbol name inside a\\npotentially distributed TypeScript file (in either a `.d.ts` or `.ts`\\nfile, with respect to the package root).","properties":{"symbolId":{"description":"Unique string representation of the corresponding Typescript symbol\\n\\nUsed to map from TypeScript code back into the assembly.","type":"string"}},"type":"object"},"UnionTypeReference":{"description":"Reference to a union type.","properties":{"union":{"description":"Indicates that this is a union type, which means it can be one of a set\\nof types.","properties":{"types":{"description":"All the possible types (including the primary type).","items":{"$ref":"#/definitions/TypeReference"},"minItems":2,"type":"array"}},"required":["types"],"type":"object"}},"required":["union"],"type":"object"}}}');
|
|
17484
17497
|
}
|
|
@@ -17508,10 +17521,10 @@ var __webpack_exports__ = {};
|
|
|
17508
17521
|
__webpack_unused_export__ = {
|
|
17509
17522
|
value: true
|
|
17510
17523
|
};
|
|
17511
|
-
const packageInfo = __webpack_require__(
|
|
17512
|
-
const host_1 = __webpack_require__(
|
|
17513
|
-
const in_out_1 = __webpack_require__(
|
|
17514
|
-
const sync_stdio_1 = __webpack_require__(
|
|
17524
|
+
const packageInfo = __webpack_require__(8330);
|
|
17525
|
+
const host_1 = __webpack_require__(8623);
|
|
17526
|
+
const in_out_1 = __webpack_require__(6663);
|
|
17527
|
+
const sync_stdio_1 = __webpack_require__(7614);
|
|
17515
17528
|
const name = packageInfo.name;
|
|
17516
17529
|
const version = packageInfo.version;
|
|
17517
17530
|
const noStack = !!process.env.JSII_NOSTACK;
|