@ama-terasu/core 10.0.0-next.9 → 11.0.0-next.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 +18 -16
- package/src/module/common-config.d.ts +0 -2
- package/src/module/common-config.d.ts.map +1 -1
- package/src/module/common-config.js +0 -7
- package/src/module/common-config.js.map +1 -1
- package/src/module/helpers.d.ts +0 -1
- package/src/module/helpers.d.ts.map +1 -1
- package/src/module/helpers.js +0 -1
- package/src/module/helpers.js.map +1 -1
- package/src/module/interface.d.ts +1 -25
- package/src/module/interface.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@ama-terasu/core",
|
|
3
3
|
"main": "./src/public_api.js",
|
|
4
4
|
"typings": "./src/public_api.d.ts",
|
|
5
|
-
"version": "
|
|
5
|
+
"version": "11.0.0-next.0",
|
|
6
6
|
"description": "Command Line Interface to administrate a DES project",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"nx": "nx",
|
|
@@ -12,29 +12,30 @@
|
|
|
12
12
|
"prepare:publish": "prepare-publish ./dist"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@angular-eslint/eslint-plugin": "~
|
|
16
|
-
"@nx/
|
|
17
|
-
"@
|
|
18
|
-
"@o3r/
|
|
19
|
-
"@o3r/eslint-plugin": "^
|
|
15
|
+
"@angular-eslint/eslint-plugin": "~17.1.0",
|
|
16
|
+
"@nx/eslint-plugin": "~17.1.1",
|
|
17
|
+
"@nx/jest": "~17.1.1",
|
|
18
|
+
"@o3r/build-helpers": "^11.0.0-next.0",
|
|
19
|
+
"@o3r/eslint-plugin": "^11.0.0-next.0",
|
|
20
20
|
"@types/jest": "~29.5.2",
|
|
21
21
|
"@types/minimist": "^1.2.2",
|
|
22
|
-
"@types/node": "^
|
|
22
|
+
"@types/node": "^20.0.0",
|
|
23
23
|
"@types/yargs": "^17.0.20",
|
|
24
|
-
"@typescript-eslint/eslint-plugin": "
|
|
25
|
-
"@typescript-eslint/parser": "^
|
|
24
|
+
"@typescript-eslint/eslint-plugin": "6.11.0",
|
|
25
|
+
"@typescript-eslint/parser": "^6.11.0",
|
|
26
26
|
"eslint": "^8.42.0",
|
|
27
27
|
"eslint-import-resolver-node": "^0.3.4",
|
|
28
|
-
"eslint-plugin-jest": "~27.
|
|
29
|
-
"eslint-plugin-jsdoc": "~
|
|
28
|
+
"eslint-plugin-jest": "~27.6.0",
|
|
29
|
+
"eslint-plugin-jsdoc": "~48.0.0",
|
|
30
30
|
"eslint-plugin-prefer-arrow": "~1.2.3",
|
|
31
|
-
"eslint-plugin-unicorn": "^
|
|
31
|
+
"eslint-plugin-unicorn": "^50.0.0",
|
|
32
32
|
"jest": "~29.7.0",
|
|
33
33
|
"jest-junit": "~16.0.0",
|
|
34
|
+
"jsonc-eslint-parser": "~2.4.0",
|
|
34
35
|
"loglevel": "^1.8.0",
|
|
35
|
-
"nx": "~
|
|
36
|
+
"nx": "~17.1.1",
|
|
36
37
|
"ts-jest": "~29.1.1",
|
|
37
|
-
"typescript": "~5.
|
|
38
|
+
"typescript": "~5.2.2",
|
|
38
39
|
"yargs": "^17.6.2"
|
|
39
40
|
},
|
|
40
41
|
"dependencies": {
|
|
@@ -45,7 +46,7 @@
|
|
|
45
46
|
"yargs": "^17.6.2"
|
|
46
47
|
},
|
|
47
48
|
"engines": {
|
|
48
|
-
"node": ">=
|
|
49
|
+
"node": ">=18.0.0",
|
|
49
50
|
"vscode": "^1.22.0"
|
|
50
51
|
},
|
|
51
52
|
"type": "commonjs",
|
|
@@ -112,5 +113,6 @@
|
|
|
112
113
|
],
|
|
113
114
|
"bugs": "https://github.com/AmadeusITGroup/otter/issues",
|
|
114
115
|
"repository": "https://github.com/AmadeusITGroup/otter",
|
|
115
|
-
"license": "BSD-3-Clause"
|
|
116
|
+
"license": "BSD-3-Clause",
|
|
117
|
+
"homepage": "https://amadeusitgroup.github.io/otter/"
|
|
116
118
|
}
|
|
@@ -22,8 +22,6 @@ export interface DefaultOptions {
|
|
|
22
22
|
}
|
|
23
23
|
/** List of common option/command name to align between the modules */
|
|
24
24
|
export declare const EXTRA_COMMON_OPTIONS: {
|
|
25
|
-
/** @deprecated, will be removed in V9 */
|
|
26
|
-
readonly registryToken: "registry-token";
|
|
27
25
|
readonly azureToken: "azure-token";
|
|
28
26
|
readonly path: "path";
|
|
29
27
|
readonly yarn: "yarn";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common-config.d.ts","sourceRoot":"","sources":["../../../src/module/common-config.ts"],"names":[],"mappings":"AAAA,OAAc,EAAE,kBAAkB,EAAE,IAAI,EAAE,MAAM,OAAO,CAAC;AAGxD,yBAAyB;AACzB,eAAO,MAAM,WAAW;;;;;;;;EAuB6B,CAAC;AAEtD,wDAAwD;AACxD,MAAM,MAAM,aAAa,GAAG,CAAC,OAAO,WAAW,CAAC,SAAS,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,kBAAkB,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC;AAEvG;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B,yCAAyC;IACzC,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IAC1B,+CAA+C;IAC/C,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,sEAAsE;AACtE,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"common-config.d.ts","sourceRoot":"","sources":["../../../src/module/common-config.ts"],"names":[],"mappings":"AAAA,OAAc,EAAE,kBAAkB,EAAE,IAAI,EAAE,MAAM,OAAO,CAAC;AAGxD,yBAAyB;AACzB,eAAO,MAAM,WAAW;;;;;;;;EAuB6B,CAAC;AAEtD,wDAAwD;AACxD,MAAM,MAAM,aAAa,GAAG,CAAC,OAAO,WAAW,CAAC,SAAS,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,kBAAkB,CAAC,CAAC,CAAC,GAAG,KAAK,CAAC;AAEvG;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B,yCAAyC;IACzC,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IAC1B,+CAA+C;IAC/C,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,sEAAsE;AACtE,eAAO,MAAM,oBAAoB;;;;CAIvB,CAAC;AAEX,qBAAqB;AAErB,eAAO,MAAM,cAAc,EAAE;KAAG,CAAC,IAAI,MAAM,OAAO,oBAAoB,GAAG,cAAc;CAWtF,CAAC"}
|
|
@@ -30,8 +30,6 @@ exports.yargsAmaCli = (0, yargs_1.default)((0, helpers_1.hideBin)(process.argv))
|
|
|
30
30
|
.config('config', 'Path to the configuration file');
|
|
31
31
|
/** List of common option/command name to align between the modules */
|
|
32
32
|
exports.EXTRA_COMMON_OPTIONS = {
|
|
33
|
-
/** @deprecated, will be removed in V9 */
|
|
34
|
-
registryToken: 'registry-token',
|
|
35
33
|
azureToken: 'azure-token',
|
|
36
34
|
path: 'path',
|
|
37
35
|
yarn: 'yarn'
|
|
@@ -39,11 +37,6 @@ exports.EXTRA_COMMON_OPTIONS = {
|
|
|
39
37
|
/** Common options */
|
|
40
38
|
// eslint-disable-next-line no-unused-vars
|
|
41
39
|
exports.MODULE_OPTIONS = {
|
|
42
|
-
/** @deprecated, will be removed in V9 */
|
|
43
|
-
registryToken: {
|
|
44
|
-
alias: 'T',
|
|
45
|
-
description: 'NPM registry access token'
|
|
46
|
-
},
|
|
47
40
|
azureToken: {
|
|
48
41
|
alias: 'A',
|
|
49
42
|
description: 'Azure registry Personal Access Token'
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common-config.js","sourceRoot":"","sources":["../../../src/module/common-config.ts"],"names":[],"mappings":";;;AAAA,iCAAwD;AACxD,2CAAwC;AAExC,yBAAyB;AACZ,QAAA,WAAW,GAAG,IAAA,eAAK,EAAC,IAAA,iBAAO,EAAC,OAAO,CAAC,IAAI,CAAC,CAAC;KACpD,OAAO,CAAC,KAAK,EAAE;IACd,MAAM,EAAE,IAAI;IACZ,KAAK,EAAE,GAAG;IACV,WAAW,EAAE,4BAA4B;IACzC,IAAI,EAAE,SAAS;CAChB,CAAC;KACD,OAAO,CAAC,KAAK,CAAC;KACd,OAAO,CAAC,SAAS,EAAE;IAClB,KAAK,EAAE,GAAG;IACV,WAAW,EAAE,sBAAsB;IACnC,IAAI,EAAE,SAAS;CAChB,CAAC;KACD,OAAO,CAAC,SAAS,EAAE;IAClB,MAAM,EAAE,IAAI;IACZ,WAAW,EAAE,iCAAiC;IAC9C,IAAI,EAAE,SAAS;CAChB,CAAC;KACD,OAAO,CAAC,YAAY,EAAE;IACrB,MAAM,EAAE,IAAI;IACZ,WAAW,EAAE,4BAA4B;IACzC,IAAI,EAAE,SAAS;CAChB,CAAC;KACD,MAAM,CAAC,QAAQ,EAAE,gCAAgC,CAAC,CAAC;AAetD,sEAAsE;AACzD,QAAA,oBAAoB,GAAG;IAClC,
|
|
1
|
+
{"version":3,"file":"common-config.js","sourceRoot":"","sources":["../../../src/module/common-config.ts"],"names":[],"mappings":";;;AAAA,iCAAwD;AACxD,2CAAwC;AAExC,yBAAyB;AACZ,QAAA,WAAW,GAAG,IAAA,eAAK,EAAC,IAAA,iBAAO,EAAC,OAAO,CAAC,IAAI,CAAC,CAAC;KACpD,OAAO,CAAC,KAAK,EAAE;IACd,MAAM,EAAE,IAAI;IACZ,KAAK,EAAE,GAAG;IACV,WAAW,EAAE,4BAA4B;IACzC,IAAI,EAAE,SAAS;CAChB,CAAC;KACD,OAAO,CAAC,KAAK,CAAC;KACd,OAAO,CAAC,SAAS,EAAE;IAClB,KAAK,EAAE,GAAG;IACV,WAAW,EAAE,sBAAsB;IACnC,IAAI,EAAE,SAAS;CAChB,CAAC;KACD,OAAO,CAAC,SAAS,EAAE;IAClB,MAAM,EAAE,IAAI;IACZ,WAAW,EAAE,iCAAiC;IAC9C,IAAI,EAAE,SAAS;CAChB,CAAC;KACD,OAAO,CAAC,YAAY,EAAE;IACrB,MAAM,EAAE,IAAI;IACZ,WAAW,EAAE,4BAA4B;IACzC,IAAI,EAAE,SAAS;CAChB,CAAC;KACD,MAAM,CAAC,QAAQ,EAAE,gCAAgC,CAAC,CAAC;AAetD,sEAAsE;AACzD,QAAA,oBAAoB,GAAG;IAClC,UAAU,EAAE,aAAa;IACzB,IAAI,EAAE,MAAM;IACZ,IAAI,EAAE,MAAM;CACJ,CAAC;AAEX,qBAAqB;AACrB,0CAA0C;AAC7B,QAAA,cAAc,GAAiE;IAC1F,UAAU,EAAE;QACV,KAAK,EAAE,GAAG;QACV,WAAW,EAAE,sCAAsC;KACpD;IACD,IAAI,EAAE;QACJ,WAAW,EAAE,2BAA2B;KACzC;IACD,IAAI,EAAE;QACJ,WAAW,EAAE,yBAAyB;KACvC;CACF,CAAC"}
|
package/src/module/helpers.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../src/module/helpers.ts"],"names":[],"mappings":";AACA,OAAO,EAAS,wBAAwB,EAAE,MAAM,oBAAoB,CAAC;AACrE,OAAO,KAAK,KAAK,MAAM,MAAM,UAAU,CAAC;AAExC,oCAAoC;AACpC,MAAM,WAAW,YAAa,SAAQ,wBAAwB;IAC5D,6CAA6C;IAC7C,YAAY,EAAE,OAAO,MAAM,CAAC,KAAK,CAAC;IAClC,6CAA6C;IAC7C,YAAY,EAAE,OAAO,MAAM,CAAC,KAAK,CAAC;IAClC,8BAA8B;IAC9B,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,CAAC;CACxB;AAED
|
|
1
|
+
{"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../src/module/helpers.ts"],"names":[],"mappings":";AACA,OAAO,EAAS,wBAAwB,EAAE,MAAM,oBAAoB,CAAC;AACrE,OAAO,KAAK,KAAK,MAAM,MAAM,UAAU,CAAC;AAExC,oCAAoC;AACpC,MAAM,WAAW,YAAa,SAAQ,wBAAwB;IAC5D,6CAA6C;IAC7C,YAAY,EAAE,OAAO,MAAM,CAAC,KAAK,CAAC;IAClC,6CAA6C;IAC7C,YAAY,EAAE,OAAO,MAAM,CAAC,KAAK,CAAC;IAClC,8BAA8B;IAC9B,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,CAAC;CACxB;AAED;;;;GAIG;AACH,eAAO,MAAM,YAAY,YAAa,MAAM,QAAQ,QAAQ,YAAY,CAAC,kBAwBxE,CAAC"}
|
package/src/module/helpers.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"helpers.js","sourceRoot":"","sources":["../../../src/module/helpers.ts"],"names":[],"mappings":";;;AAAA,+BAA+B;AAC/B,2DAAqE;AAarE
|
|
1
|
+
{"version":3,"file":"helpers.js","sourceRoot":"","sources":["../../../src/module/helpers.ts"],"names":[],"mappings":";;;AAAA,+BAA+B;AAC/B,2DAAqE;AAarE;;;;GAIG;AACI,MAAM,YAAY,GAAG,CAAC,OAAe,EAAE,GAA2B,EAAE,EAAE;IAC3E,MAAM,OAAO,GAAiB;QAC5B,GAAG,EAAE,OAAO,CAAC,GAAG,EAAE;QAClB,YAAY,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,IAAI,OAAO,CAAC,KAAK;QACjD,YAAY,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,IAAI,OAAO,CAAC,KAAK;QACjD,GAAG,EAAE,OAAO,CAAC,GAAG;QAChB,KAAK,EAAE,IAAI;QACX,KAAK,EAAE,CAAC,SAAS,EAAE,MAAM,EAAE,MAAM,CAAC;QAClC,GAAG,GAAG;KACP,CAAC;IAEF,OAAO,CAAC,MAAM,EAAE,KAAK,CAAC,OAAO,OAAO,QAAQ,OAAO,CAAC,GAAI,CAAC,QAAQ,EAAE,GAAG,CAAC,CAAC;IACxE,MAAM,GAAG,GAAG,IAAA,0BAAK,EAAC,OAAO,EAAE,OAAO,CAAC,CAAC;IAEpC,IAAI,OAAO,CAAC,YAAY,EAAE;QACxB,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC;KAC9E;IACD,IAAI,OAAO,CAAC,YAAY,EAAE;QACxB,GAAG,CAAC,MAAM,CAAC,EAAE,CAAC,MAAM,EAAE,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC;KAC9E;IACD,OAAO,IAAI,OAAO,CAAO,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;QAC3C,GAAG,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;QACxC,GAAG,CAAC,IAAI,CAAC,OAAO,EAAE,CAAC,MAAM,EAAE,EAAE,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,KAAK,CAAC,WAAW,MAAM,IAAI,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC;IAC7G,CAAC,CAAC,CAAC;AACL,CAAC,CAAC;AAxBW,QAAA,YAAY,gBAwBvB"}
|
|
@@ -12,7 +12,6 @@ export interface ProgressBarUpdate {
|
|
|
12
12
|
export interface ProgressBar {
|
|
13
13
|
/**
|
|
14
14
|
* Increment progress
|
|
15
|
-
*
|
|
16
15
|
* @param update Update the display of the progress bar
|
|
17
16
|
*/
|
|
18
17
|
tick: (update?: ProgressBarUpdate) => void;
|
|
@@ -23,48 +22,41 @@ export interface ProgressBar {
|
|
|
23
22
|
export interface Task {
|
|
24
23
|
/**
|
|
25
24
|
* Update the task label
|
|
26
|
-
*
|
|
27
25
|
* @param label Label to display
|
|
28
26
|
*/
|
|
29
27
|
start: () => void;
|
|
30
28
|
/**
|
|
31
29
|
* Update the task label
|
|
32
|
-
*
|
|
33
30
|
* @param label Label to display
|
|
34
31
|
*/
|
|
35
32
|
updateLabel: (label: string) => void;
|
|
36
33
|
/**
|
|
37
34
|
* Set the task as success
|
|
38
|
-
*
|
|
39
35
|
* @param label Label to display
|
|
40
36
|
*/
|
|
41
37
|
succeed: (label?: string) => void;
|
|
42
38
|
/**
|
|
43
39
|
* Set the task as failure
|
|
44
|
-
*
|
|
45
40
|
* @param label Label to display
|
|
46
41
|
*/
|
|
47
42
|
fail: (label?: string) => void;
|
|
48
43
|
/**
|
|
49
44
|
* Bind task to promise
|
|
50
|
-
*
|
|
51
45
|
* @param promise Promise to bind to
|
|
52
46
|
* @param label Label to display
|
|
53
47
|
*/
|
|
54
|
-
fromPromise: <T
|
|
48
|
+
fromPromise: <T>(promise: PromiseLike<T>, successLabel?: string, failureLabel?: string) => PromiseLike<T>;
|
|
55
49
|
}
|
|
56
50
|
/** Context of a module to dialog with CLI host */
|
|
57
51
|
export interface Context {
|
|
58
52
|
/**
|
|
59
53
|
* Progress bar helper
|
|
60
|
-
*
|
|
61
54
|
* @param total Total value of the progress bar
|
|
62
55
|
* @param initialLabel Label to be displayed initially on the progressBar
|
|
63
56
|
*/
|
|
64
57
|
getProgressBar: (total: number, initialLabel?: string) => ProgressBar;
|
|
65
58
|
/**
|
|
66
59
|
* Retrieve an install of the spinner to be used in the Amaterasu module
|
|
67
|
-
*
|
|
68
60
|
* @param initialLabel Label to be displayed initially on the spinner
|
|
69
61
|
*/
|
|
70
62
|
getSpinner: (initialLabel?: string) => Task;
|
|
@@ -75,14 +67,12 @@ export interface Context {
|
|
|
75
67
|
export interface RootContext extends Context {
|
|
76
68
|
/**
|
|
77
69
|
* Show Help message
|
|
78
|
-
*
|
|
79
70
|
* @param amaYargs instance of current Yarg
|
|
80
71
|
* @param arg Argument of the command
|
|
81
72
|
*/
|
|
82
73
|
showHelpMessage: (amaYargs: Argv, arg: Arguments) => void | Promise<void>;
|
|
83
74
|
/**
|
|
84
75
|
* Generate a formatted usage message
|
|
85
|
-
*
|
|
86
76
|
* @param moduleName Nome of the module
|
|
87
77
|
* @param command CLI Command
|
|
88
78
|
* @param longDescription Long description of the command to add additional information
|
|
@@ -92,28 +82,14 @@ export interface RootContext extends Context {
|
|
|
92
82
|
generateUsageMessage: (moduleName: string, command?: string, longDescription?: string, cmdParameters?: string, baseCommand?: string) => string;
|
|
93
83
|
/**
|
|
94
84
|
* Retrieve context tools based on executed rule
|
|
95
|
-
*
|
|
96
85
|
* @param commonOptions Value of the common options
|
|
97
86
|
* @param totalProgress total number of steps for teh command
|
|
98
87
|
*/
|
|
99
88
|
getContext: (commonOptions: CommonOptions) => Context;
|
|
100
89
|
}
|
|
101
90
|
export interface AmaCliModule {
|
|
102
|
-
/**
|
|
103
|
-
* Name of the CLI module
|
|
104
|
-
*
|
|
105
|
-
* @deprecated will be read from package.json instead
|
|
106
|
-
*/
|
|
107
|
-
name: string;
|
|
108
|
-
/**
|
|
109
|
-
* Description of the module
|
|
110
|
-
*
|
|
111
|
-
* @deprecated will be read from package.json instead
|
|
112
|
-
*/
|
|
113
|
-
description: string;
|
|
114
91
|
/**
|
|
115
92
|
* Initialization the module and export yargs instance
|
|
116
|
-
*
|
|
117
93
|
* @param yargsAma Global CLI configuration
|
|
118
94
|
* @param context Factory to retrieve context to the executed command
|
|
119
95
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"interface.d.ts","sourceRoot":"","sources":["../../../src/module/interface.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AACvC,OAAO,EAAE,SAAS,EAAE,IAAI,EAAE,MAAM,OAAO,CAAC;AACxC,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAE7D,kCAAkC;AAClC,MAAM,WAAW,iBAAiB;IAChC,2CAA2C;IAC3C,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,sCAAsC;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,6BAA6B;AAC7B,MAAM,WAAW,WAAW;IAC1B
|
|
1
|
+
{"version":3,"file":"interface.d.ts","sourceRoot":"","sources":["../../../src/module/interface.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AACvC,OAAO,EAAE,SAAS,EAAE,IAAI,EAAE,MAAM,OAAO,CAAC;AACxC,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAE7D,kCAAkC;AAClC,MAAM,WAAW,iBAAiB;IAChC,2CAA2C;IAC3C,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,sCAAsC;IACtC,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,6BAA6B;AAC7B,MAAM,WAAW,WAAW;IAC1B;;;OAGG;IACH,IAAI,EAAE,CAAC,MAAM,CAAC,EAAE,iBAAiB,KAAK,IAAI,CAAC;IAE3C,gCAAgC;IAChC,QAAQ,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,2BAA2B;AAC3B,MAAM,WAAW,IAAI;IACnB;;;OAGG;IACH,KAAK,EAAE,MAAM,IAAI,CAAC;IAElB;;;OAGG;IACH,WAAW,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAErC;;;OAGG;IACH,OAAO,EAAE,CAAC,KAAK,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAElC;;;OAGG;IACH,IAAI,EAAE,CAAC,KAAK,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAE/B;;;;OAIG;IACH,WAAW,EAAE,CAAC,CAAC,EAAE,OAAO,EAAE,WAAW,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM,KAAK,WAAW,CAAC,CAAC,CAAC,CAAC;CAC3G;AAED,kDAAkD;AAClD,MAAM,WAAW,OAAO;IACtB;;;;OAIG;IACH,cAAc,EAAE,CAAC,KAAK,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM,KAAK,WAAW,CAAC;IAEtE;;;OAGG;IACH,UAAU,EAAE,CAAC,YAAY,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;IAE5C,aAAa;IACb,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,uCAAuC;AACvC,MAAM,WAAW,WAAY,SAAQ,OAAO;IAE1C;;;;OAIG;IACH,eAAe,EAAE,CAAC,QAAQ,EAAE,IAAI,EAAE,GAAG,EAAE,SAAS,KAAK,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC;IAE1E;;;;;;;OAOG;IACH,oBAAoB,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,EAAE,eAAe,CAAC,EAAE,MAAM,EAAE,aAAa,CAAC,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,KAAK,MAAM,CAAC;IAE/I;;;;OAIG;IACH,UAAU,EAAE,CAAC,aAAa,EAAE,aAAa,KAAK,OAAO,CAAC;CACvD;AAED,MAAM,WAAW,YAAY;IAC3B;;;;OAIG;IACH,IAAI,EAAE,CAAC,CAAC,SAAS,OAAO,WAAW,EAAE,CAAC,SAAS,CAAC,EAAE,QAAQ,EAAE,CAAC,EAAE,OAAO,EAAE,WAAW,KAAK,CAAC,CAAC;CAC3F"}
|