@cloudbase/cals 0.3.17 → 0.3.21
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/README.md +17 -10
- package/lib/parser/cals/index.d.ts +5 -1
- package/lib/parser/cals/index.d.ts.map +1 -1
- package/lib/parser/cals/index.js +12 -10
- package/lib/parser/cals/utils/common.d.ts +5 -0
- package/lib/parser/cals/utils/common.d.ts.map +1 -1
- package/lib/parser/cals/utils/common.js +125 -1
- package/lib/parser/cals/utils/runtime.d.ts.map +1 -1
- package/lib/parser/cals/utils/spinoff/index.d.ts.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/types/basic/app.d.ts +1 -1
- package/lib/types/basic/app.d.ts.map +1 -1
- package/lib/types/platform/app.d.ts +40 -2
- package/lib/types/platform/app.d.ts.map +1 -1
- package/lib/types/platform/common.d.ts +7 -7
- package/lib/types/platform/common.d.ts.map +1 -1
- package/lib/types/platform/common.js +4 -5
- package/lib/types/platform/component.d.ts +12 -11
- package/lib/types/platform/component.d.ts.map +1 -1
- package/lib/types/platform/component.js +5 -6
- package/lib/types/platform/datasource.d.ts +33 -8
- package/lib/types/platform/datasource.d.ts.map +1 -1
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -2,24 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
## 定义
|
|
4
4
|
|
|
5
|
-
CALS 是将前端应用抽象为统一模型, 采用跨端的数据交换格式(如JSON)对前端应用进行标准化描述, 与平台、语言、框架无关的应用规范。
|
|
5
|
+
CALS 是将前端应用抽象为统一模型, 采用跨端的数据交换格式(如 JSON)对前端应用进行标准化描述, 与平台、语言、框架无关的应用规范。
|
|
6
6
|
|
|
7
|
-
通用应用语言规范 :Common Application Language Specification,简称CALS。
|
|
7
|
+
通用应用语言规范 :Common Application Language Specification,简称 CALS。
|
|
8
8
|
|
|
9
9
|
## 组成
|
|
10
10
|
|
|
11
11
|
CALS 规范主要分为三部分 :
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
|
|
13
|
+
- 通用组件语言描述([**CLS**](http://cls.pages.oa.com/))
|
|
14
|
+
- 通用数据源描述
|
|
15
|
+
- 通用应用信息描述
|
|
15
16
|
|
|
16
17
|
## 应用
|
|
17
18
|
|
|
18
19
|
CALS 目前主要应用于云开发低码平台,目前定义了 basic 和 platform 两套规范(platform 继承自 basic)
|
|
19
20
|
|
|
20
|
-
|
|
|
21
|
-
|
|
|
22
|
-
| **basic** | 基类 |
|
|
23
|
-
| **platform** | 子类 |
|
|
21
|
+
| 类型 | 层级 | 定义 |
|
|
22
|
+
| ------------ | ---- | ------------------------------------------ |
|
|
23
|
+
| **basic** | 基类 | 对外的通用应用规范 |
|
|
24
|
+
| **platform** | 子类 | 对内的低码应用规范,微搭平台运行的实际标准 |
|
|
25
|
+
|
|
26
|
+
## 组件
|
|
27
|
+
|
|
28
|
+
TODO
|
|
29
|
+
|
|
30
|
+
## 数据源
|
|
24
31
|
|
|
25
|
-
|
|
32
|
+
TODO
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { getUsedComps } from './utils/common';
|
|
1
2
|
import { IAttributes, IPlatformApp, IComplexComponent, IBasicComponent, IPageComponent, IDataSourceVariable, IDataVarMethod, // 勿删,为了生成d.ts
|
|
2
3
|
IPlatformDataSource, IDependencies, LCDS } from '../../types';
|
|
3
4
|
import { IDynamicValue, PropBindType } from '../expression';
|
|
@@ -307,6 +308,9 @@ export declare function deserializePlatformApp(data: IPlatformApp, optsions: {
|
|
|
307
308
|
updateMethod?: IDataVarMethod;
|
|
308
309
|
}[];
|
|
309
310
|
};
|
|
311
|
+
compHiddenConfig: {
|
|
312
|
+
[pageId: string]: string[];
|
|
313
|
+
};
|
|
310
314
|
npmDependencies: {
|
|
311
315
|
[key: string]: string;
|
|
312
316
|
};
|
|
@@ -336,6 +340,7 @@ export declare function deserializePlatformApp(data: IPlatformApp, optsions: {
|
|
|
336
340
|
name: string;
|
|
337
341
|
author: string;
|
|
338
342
|
description: string;
|
|
343
|
+
domain?: string;
|
|
339
344
|
};
|
|
340
345
|
dependencies: IDependencies;
|
|
341
346
|
};
|
|
@@ -389,5 +394,4 @@ export declare function deserializeComponentLibraryMeta(meta: {
|
|
|
389
394
|
};
|
|
390
395
|
};
|
|
391
396
|
};
|
|
392
|
-
export {};
|
|
393
397
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../parser/cals/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../parser/cals/index.ts"],"names":[],"mappings":"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"}
|
package/lib/parser/cals/index.js
CHANGED
|
@@ -11,12 +11,13 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
|
11
11
|
return t;
|
|
12
12
|
};
|
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
-
exports.deserializeComponentLibraryMeta = exports.deserializeRuntimeComponent = exports.serializeRuntimeComponent = exports.serializeRuntimePage = exports.deserializePlatformApp = exports.serializePlatformApp = exports.deserializePage = exports.serializePage = exports.deserializeComponent = exports.serializeComponent = exports.deserializeDataVariables = exports.deserializeAttributes = exports.serializeAttributes = exports.deserializeDynamicMap = exports.serializeDynamicMap = exports.deserializeValue = exports.serializeValue = void 0;
|
|
14
|
+
exports.deserializeComponentLibraryMeta = exports.deserializeRuntimeComponent = exports.serializeRuntimeComponent = exports.serializeRuntimePage = exports.deserializePlatformApp = exports.serializePlatformApp = exports.deserializePage = exports.serializePage = exports.deserializeComponent = exports.serializeComponent = exports.deserializeDataVariables = exports.deserializeAttributes = exports.serializeAttributes = exports.deserializeDynamicMap = exports.serializeDynamicMap = exports.deserializeValue = exports.serializeValue = exports.getUsedComps = void 0;
|
|
15
15
|
const lodash_1 = require("lodash");
|
|
16
16
|
const common_1 = require("../../types/platform/common");
|
|
17
|
-
|
|
17
|
+
var common_2 = require("./utils/common");
|
|
18
|
+
Object.defineProperty(exports, "getUsedComps", { enumerable: true, get: function () { return common_2.getUsedComps; } });
|
|
18
19
|
const expression_1 = require("../expression");
|
|
19
|
-
const
|
|
20
|
+
const common_3 = require("./utils/common");
|
|
20
21
|
const style_1 = require("./utils/style");
|
|
21
22
|
const runtime_1 = require("./utils/runtime");
|
|
22
23
|
const config_1 = require("./utils/version/config");
|
|
@@ -585,7 +586,7 @@ function deserializeComponent(ctx, components) {
|
|
|
585
586
|
if (Array.isArray(item)) {
|
|
586
587
|
return !!item.length;
|
|
587
588
|
}
|
|
588
|
-
return item != undefined && !(0,
|
|
589
|
+
return item != undefined && !(0, common_3.isEmptyObj)(item);
|
|
589
590
|
})
|
|
590
591
|
? xProps
|
|
591
592
|
: undefined,
|
|
@@ -613,7 +614,7 @@ function serializePage(ctx, page) {
|
|
|
613
614
|
}
|
|
614
615
|
let processedPage = {
|
|
615
616
|
id: page.id,
|
|
616
|
-
type:
|
|
617
|
+
type: 'PAGE',
|
|
617
618
|
component: 'Page',
|
|
618
619
|
attributes: (0, runtime_1.getValidValue)(serializeAttributes(pageCtx, 'page', page.data)),
|
|
619
620
|
items: Object.keys(page.componentInstances || {}).map((id) => {
|
|
@@ -724,7 +725,7 @@ function deserializePlatformApp(data, optsions) {
|
|
|
724
725
|
var _a, _b;
|
|
725
726
|
let homePageId = data.main || ((_a = data.items[0]) === null || _a === void 0 ? void 0 : _a.id) || '';
|
|
726
727
|
let extra = data.extra || {};
|
|
727
|
-
const { historyType, npmDependencies, plugins, maxID, rootPath, themeVars, presetColors, appConfig, miniprogramPlugins } = extra, restExtra = __rest(extra, ["historyType", "npmDependencies", "plugins", "maxID", "rootPath", "themeVars", "presetColors", "appConfig", "miniprogramPlugins"]);
|
|
728
|
+
const { historyType, npmDependencies, plugins, maxID, rootPath, themeVars, presetColors, appConfig, miniprogramPlugins, compHiddenConfig } = extra, restExtra = __rest(extra, ["historyType", "npmDependencies", "plugins", "maxID", "rootPath", "themeVars", "presetColors", "appConfig", "miniprogramPlugins", "compHiddenConfig"]);
|
|
728
729
|
const ctx = {
|
|
729
730
|
app: data,
|
|
730
731
|
dependencies: (optsions === null || optsions === void 0 ? void 0 : optsions.dependencies) || [],
|
|
@@ -752,6 +753,7 @@ function deserializePlatformApp(data, optsions) {
|
|
|
752
753
|
return deserializeDataVariables(ctx, item);
|
|
753
754
|
})) || [],
|
|
754
755
|
},
|
|
756
|
+
compHiddenConfig: compHiddenConfig || {},
|
|
755
757
|
npmDependencies: npmDependencies || {},
|
|
756
758
|
plugins: plugins || [],
|
|
757
759
|
maxID: maxID,
|
|
@@ -778,7 +780,7 @@ function serializeRuntimePage(ctx, page //IPageInstance
|
|
|
778
780
|
const pageCtx = Object.assign(Object.assign({}, ctx), { dependenciesMap: processDependenciesMap(ctx.dependencies || []), page: { id: page.id } });
|
|
779
781
|
let processedPage = {
|
|
780
782
|
id: page.id,
|
|
781
|
-
type:
|
|
783
|
+
type: 'PAGE',
|
|
782
784
|
component: 'Page',
|
|
783
785
|
attributes: serializeAttributes(pageCtx, 'page', (0, runtime_1.readDynamicData)(page)),
|
|
784
786
|
items: (0, runtime_1.getValidValue)(Object.keys(((_a = page.componentSchemaJson) === null || _a === void 0 ? void 0 : _a.properties) || {}).map((id) => {
|
|
@@ -799,14 +801,14 @@ function serializeRuntimePage(ctx, page //IPageInstance
|
|
|
799
801
|
children: (0, runtime_1.getValidValue)((_e = page.children) === null || _e === void 0 ? void 0 : _e.map((child) => serializeRuntimePage(ctx, child))),
|
|
800
802
|
},
|
|
801
803
|
};
|
|
802
|
-
if ((0,
|
|
804
|
+
if ((0, common_3.isValidStyleBind)(page.styleBind) && (0, runtime_1.getValidValue)(page.styleBind)) {
|
|
803
805
|
page[':style'] = serializeValue({
|
|
804
806
|
ctx: pageCtx,
|
|
805
807
|
key: 'styleBind',
|
|
806
808
|
dynamicValue: page.styleBind,
|
|
807
809
|
}).value;
|
|
808
810
|
}
|
|
809
|
-
if ((0,
|
|
811
|
+
if ((0, common_3.isValidClassNameListBind)(page.classListBind) &&
|
|
810
812
|
(0, runtime_1.getValidValue)(page.classListBind)) {
|
|
811
813
|
page[':class'] = serializeValue({
|
|
812
814
|
ctx: pageCtx,
|
|
@@ -856,7 +858,7 @@ function serializeRuntimeComponent(ctx, component //IComponentSchemaJson
|
|
|
856
858
|
.filter((key) => !excludeKeys.includes(key))
|
|
857
859
|
.map((key) => serializeRuntimeComponent(ctx, Object.assign({ id: key }, properties[key])))), listeners: (_b = (0, runtime_1.getValidValue)((0, runtime_1.readListeners)(props.listenerInstances))) === null || _b === void 0 ? void 0 : _b.map((listener /* IEventListener */) => {
|
|
858
860
|
return serializeListener(componentCtx, listener);
|
|
859
|
-
}), directives: serializeDirecties(componentCtx, ((0, runtime_1.getValidValue)((0, runtime_1.readDirectives)(props)) || {})) || undefined, ':class': (0,
|
|
861
|
+
}), directives: serializeDirecties(componentCtx, ((0, runtime_1.getValidValue)((0, runtime_1.readDirectives)(props)) || {})) || undefined, ':class': (0, common_3.isValidClassNameListBind)(props.classNameListBind)
|
|
860
862
|
? serializeValue({
|
|
861
863
|
ctx: componentCtx,
|
|
862
864
|
key: 'classListBind',
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
import { IDataBind } from '../../expression/index';
|
|
2
|
+
declare type IUsedComps = {
|
|
3
|
+
[libName: string]: Set<string>;
|
|
4
|
+
};
|
|
2
5
|
export declare function camelcase(str: string, firstUpperCase?: boolean): string;
|
|
3
6
|
export declare function isPlainObject(src: any): boolean;
|
|
4
7
|
export declare const isEmptyObj: (obj: object) => boolean;
|
|
5
8
|
export declare function isValidStyleBind(styleBind: IDataBind): boolean;
|
|
6
9
|
export declare function isValidClassNameListBind(classNameListBind: IDataBind): boolean;
|
|
10
|
+
export declare function getUsedComps(apps: any[], comps: any[]): IUsedComps;
|
|
11
|
+
export {};
|
|
7
12
|
//# sourceMappingURL=common.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../../parser/cals/utils/common.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAA;
|
|
1
|
+
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../../parser/cals/utils/common.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAA;AAYlD,aAAK,UAAU,GAAG;IAAE,CAAC,OAAO,EAAE,MAAM,GAAG,GAAG,CAAC,MAAM,CAAC,CAAA;CAAE,CAAA;AAGpD,wBAAgB,SAAS,CAAC,GAAG,EAAE,MAAM,EAAE,cAAc,UAAQ,UAQ5D;AAED,wBAAgB,aAAa,CAAC,GAAG,EAAE,GAAG,WAErC;AAED,eAAO,MAAM,UAAU,QAAS,MAAM,YAUrC,CAAA;AAED,wBAAgB,gBAAgB,CAAC,SAAS,EAAE,SAAS,WAQpD;AAED,wBAAgB,wBAAwB,CAAC,iBAAiB,EAAE,SAAS,WAQpE;AAmFD,wBAAgB,YAAY,CAExB,IAAI,EAAE,GAAG,EAAE,EAEX,KAAK,EAAE,GAAG,EAAE,GACb,UAAU,CAwDZ"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.isValidClassNameListBind = exports.isValidStyleBind = exports.isEmptyObj = exports.isPlainObject = exports.camelcase = void 0;
|
|
3
|
+
exports.getUsedComps = exports.isValidClassNameListBind = exports.isValidStyleBind = exports.isEmptyObj = exports.isPlainObject = exports.camelcase = void 0;
|
|
4
|
+
const index_1 = require("../index");
|
|
4
5
|
function camelcase(str, firstUpperCase = false) {
|
|
5
6
|
str = str.replace(/[_-]([a-z])/g, function (l) {
|
|
6
7
|
return l[1].toUpperCase();
|
|
@@ -46,3 +47,126 @@ function isValidClassNameListBind(classNameListBind) {
|
|
|
46
47
|
return false;
|
|
47
48
|
}
|
|
48
49
|
exports.isValidClassNameListBind = isValidClassNameListBind;
|
|
50
|
+
// 递归查询属性树所使用的组件
|
|
51
|
+
function getUsedCompsFromProperties(properties, usedComps) {
|
|
52
|
+
for (const id in properties) {
|
|
53
|
+
const { xComponent, properties: children } = properties[id];
|
|
54
|
+
if (xComponent) {
|
|
55
|
+
// 记录使用到的组件库和组件
|
|
56
|
+
const { moduleName: libName, name: compName } = xComponent;
|
|
57
|
+
if (!usedComps[libName]) {
|
|
58
|
+
usedComps[libName] = new Set();
|
|
59
|
+
}
|
|
60
|
+
usedComps[libName].add(compName);
|
|
61
|
+
}
|
|
62
|
+
if (children) {
|
|
63
|
+
// 遍历下一层属性树
|
|
64
|
+
getUsedCompsFromProperties(children, usedComps);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
// 递归查询复合组件库所使用的组件
|
|
69
|
+
function getUsedCompsFromCompositedLibsRecursively(
|
|
70
|
+
// 已知的被使用到的组件
|
|
71
|
+
usedComps,
|
|
72
|
+
// 已知的被遍历过的组件
|
|
73
|
+
checkedComps,
|
|
74
|
+
// 全量复合组件库
|
|
75
|
+
compositedLibMap,
|
|
76
|
+
// 新增的被使用到的组件
|
|
77
|
+
addedUsedComps) {
|
|
78
|
+
// 开始遍历已知的被使用到的组件库
|
|
79
|
+
Object.keys(usedComps).forEach((libName) => {
|
|
80
|
+
if (!compositedLibMap.has(libName)) {
|
|
81
|
+
// 不是复合组件库, 不需要继续遍历
|
|
82
|
+
return;
|
|
83
|
+
}
|
|
84
|
+
// 遍历复合组件库
|
|
85
|
+
const lib = compositedLibMap.get(libName);
|
|
86
|
+
const cmpNames = usedComps[libName];
|
|
87
|
+
cmpNames.forEach((cmpName) => {
|
|
88
|
+
// 找到复合组件的内容
|
|
89
|
+
const cmp = lib.components.find((c) => c.name === cmpName);
|
|
90
|
+
if (!cmp) {
|
|
91
|
+
// 找不到复合组件内容, 应该抛异常
|
|
92
|
+
console.warn('Component not found', libName + ':' + cmpName);
|
|
93
|
+
return;
|
|
94
|
+
}
|
|
95
|
+
if (checkedComps.indexOf(cmp) > -1) {
|
|
96
|
+
// 该复合组件已经在其他递归路径上入栈
|
|
97
|
+
return;
|
|
98
|
+
}
|
|
99
|
+
// 该复合组件第一次入栈, 则需要记录并继续递归它的内容
|
|
100
|
+
checkedComps.push(cmp);
|
|
101
|
+
const usedCompsOfThisComp = {};
|
|
102
|
+
// 和遍历应用内容一样, 遍历低码组件内容, 寻找出组件自身引用的所有组件
|
|
103
|
+
getUsedCompsFromProperties(cmp.componentInstances, usedCompsOfThisComp);
|
|
104
|
+
Object.keys(usedCompsOfThisComp).forEach((libName) => {
|
|
105
|
+
// 开始记录新增的被使用的组件库
|
|
106
|
+
if (!addedUsedComps[libName]) {
|
|
107
|
+
addedUsedComps[libName] = usedCompsOfThisComp[libName];
|
|
108
|
+
}
|
|
109
|
+
else {
|
|
110
|
+
usedCompsOfThisComp[libName].forEach((n) => addedUsedComps[libName].add(n));
|
|
111
|
+
}
|
|
112
|
+
});
|
|
113
|
+
// 递归遍历
|
|
114
|
+
getUsedCompsFromCompositedLibsRecursively(usedCompsOfThisComp, checkedComps, compositedLibMap, addedUsedComps);
|
|
115
|
+
});
|
|
116
|
+
});
|
|
117
|
+
}
|
|
118
|
+
// 获取使用到的组件
|
|
119
|
+
function getUsedComps(
|
|
120
|
+
// 主子包的应用内容
|
|
121
|
+
apps,
|
|
122
|
+
// 分库后的组件库 denpendienicy
|
|
123
|
+
comps) {
|
|
124
|
+
// 0. 应用内容转换(cals to weapps)
|
|
125
|
+
const transferApps = apps.map(app => {
|
|
126
|
+
return (0, index_1.deserializePlatformApp)(app, { dependencies: comps });
|
|
127
|
+
});
|
|
128
|
+
// 1. 寻找应用内容里用到的所有组件
|
|
129
|
+
// 1.1 寻找主子应用各自的内容里所用到的组件
|
|
130
|
+
const appUsedComps = transferApps.map(app => {
|
|
131
|
+
var _a;
|
|
132
|
+
const usedComps = {};
|
|
133
|
+
// 主子包模式下, 可能没有应用内容
|
|
134
|
+
(_a = app.pageInstanceList) === null || _a === void 0 ? void 0 : _a.forEach((p) => {
|
|
135
|
+
getUsedCompsFromProperties(p.componentInstances, usedComps);
|
|
136
|
+
});
|
|
137
|
+
return usedComps;
|
|
138
|
+
});
|
|
139
|
+
// 1.2 合并主子包所有用到的组件
|
|
140
|
+
const mergeAppUsedComps = appUsedComps.reduce((comps, item) => {
|
|
141
|
+
for (const libName in item) {
|
|
142
|
+
comps[libName] = new Set([
|
|
143
|
+
...Array.from(item[libName]),
|
|
144
|
+
...Array.from(comps[libName] || [])
|
|
145
|
+
]);
|
|
146
|
+
}
|
|
147
|
+
return comps;
|
|
148
|
+
}, {});
|
|
149
|
+
// 2. 寻找应用内容的复合组件里嵌套的其他组件(复合组件即低码组件)
|
|
150
|
+
// 2.1 过滤出复合组件库
|
|
151
|
+
const compositedLibMap = new Map();
|
|
152
|
+
comps.forEach((lib) => {
|
|
153
|
+
if (lib.isComposite) {
|
|
154
|
+
compositedLibMap.set(lib.name, lib);
|
|
155
|
+
}
|
|
156
|
+
});
|
|
157
|
+
// 2.2 递归查询复合组件库所使用的组件
|
|
158
|
+
const libUsedComps = {};
|
|
159
|
+
getUsedCompsFromCompositedLibsRecursively(mergeAppUsedComps, [], compositedLibMap, libUsedComps);
|
|
160
|
+
// 3. 合并[应用内容用到的组件]和[复合组件库用到的组件]
|
|
161
|
+
const allUsedComps = [mergeAppUsedComps, libUsedComps].reduce((comps, item) => {
|
|
162
|
+
for (const libName in item) {
|
|
163
|
+
comps[libName] = new Set([
|
|
164
|
+
...Array.from(item[libName]),
|
|
165
|
+
...Array.from(comps[libName] || [])
|
|
166
|
+
]);
|
|
167
|
+
}
|
|
168
|
+
return comps;
|
|
169
|
+
}, {});
|
|
170
|
+
return allUsedComps;
|
|
171
|
+
}
|
|
172
|
+
exports.getUsedComps = getUsedComps;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runtime.d.ts","sourceRoot":"","sources":["../../../../parser/cals/utils/runtime.ts"],"names":[],"mappings":"AAUA,wBAAgB,cAAc,CAC5B,UAAU,GAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CAAmB,EACnD,WAAW,GAAE,MAAM,EAAO,GACzB,MAAM,CA+DR;AAED,wBAAgB,cAAc,CAAC,GAAG,EAAE,GAAG,OAuCtC;AAED,wBAAgB,eAAe,CAAC,GAAG,EAAE,GAAG,OA8BvC;AAED,wBAAgB,aAAa,CAAC,iBAAiB,GAAE,GAAG,EAAO,OAiB1D;AAED,wBAAgB,cAAc,CAAC,SAAS,GAAE,GAAG,EAAO,SAenD;AAGD,wBAAgB,gBAAgB,CAAC,IAAI,
|
|
1
|
+
{"version":3,"file":"runtime.d.ts","sourceRoot":"","sources":["../../../../parser/cals/utils/runtime.ts"],"names":[],"mappings":"AAUA,wBAAgB,cAAc,CAC5B,UAAU,GAAE;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CAAmB,EACnD,WAAW,GAAE,MAAM,EAAO,GACzB,MAAM,CA+DR;AAED,wBAAgB,cAAc,CAAC,GAAG,EAAE,GAAG,OAuCtC;AAED,wBAAgB,eAAe,CAAC,GAAG,EAAE,GAAG,OA8BvC;AAED,wBAAgB,aAAa,CAAC,iBAAiB,GAAE,GAAG,EAAO,OAiB1D;AAED,wBAAgB,cAAc,CAAC,SAAS,GAAE,GAAG,EAAO,SAenD;AAGD,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,GAAQ,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,EAAE,GAAG,OAgExE;AAED,wBAAgB,aAAa,CAAC,MAAM,EAAE,GAAG,EAAE,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,QAKjE;AAED,wBAAgB,aAAa,CAAC,KAAK,EAAE,GAAG,OAWvC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../parser/cals/utils/spinoff/index.ts"],"names":[],"mappings":"AAIA,OAAO,EACL,YAAY,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../parser/cals/utils/spinoff/index.ts"],"names":[],"mappings":"AAIA,OAAO,EACL,YAAY,EAMb,MAAM,mBAAmB,CAAA;AAwI1B;;;;GAIG;AACH,wBAAgB,sBAAsB,CACpC,IAAI,EAAE,GAAG,EACT,QAAQ,EAAE;IACR,YAAY,EAAE,MAAM,EAAE,CAAA;CACvB,GACA,YAAY,CAiCd"}
|
package/lib/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/@types/lodash/common/common.d.ts","../node_modules/@types/lodash/common/array.d.ts","../node_modules/@types/lodash/common/collection.d.ts","../node_modules/@types/lodash/common/date.d.ts","../node_modules/@types/lodash/common/function.d.ts","../node_modules/@types/lodash/common/lang.d.ts","../node_modules/@types/lodash/common/math.d.ts","../node_modules/@types/lodash/common/number.d.ts","../node_modules/@types/lodash/common/object.d.ts","../node_modules/@types/lodash/common/seq.d.ts","../node_modules/@types/lodash/common/string.d.ts","../node_modules/@types/lodash/common/util.d.ts","../node_modules/@types/lodash/index.d.ts","../types/basic/common.ts","../types/platform/datasource.ts","../types/platform/common.ts","../types/basic/datasource.ts","../types/basic/component.ts","../types/basic/app.ts","../types/platform/component.ts","../types/platform/app.ts","../types/lcds.ts","../types/index.ts","../node_modules/acorn/dist/acorn.d.ts","../parser/expression/index.ts","../parser/cals/utils/common.ts","../parser/cals/utils/style.ts","../parser/cals/utils/runtime.ts","../parser/cals/utils/version/config.ts","../parser/cals/index.ts","../parser/cals/utils/version/utils.ts","../parser/cals/utils/version/common.ts","../parser/cals/utils/version/parses.ts","../parser/cals/utils/version/index.ts","../parser/cals/utils/spinoff/index.ts","../parser/cals/utils/block/index.ts","../parser/index.ts","../node_modules/ajv/dist/compile/codegen/code.d.ts","../node_modules/ajv/dist/compile/codegen/scope.d.ts","../node_modules/ajv/dist/compile/codegen/index.d.ts","../node_modules/ajv/dist/compile/rules.d.ts","../node_modules/ajv/dist/compile/util.d.ts","../node_modules/ajv/dist/compile/validate/subschema.d.ts","../node_modules/ajv/dist/compile/errors.d.ts","../node_modules/ajv/dist/compile/validate/index.d.ts","../node_modules/ajv/dist/compile/validate/datatype.d.ts","../node_modules/ajv/dist/vocabularies/applicator/additionalitems.d.ts","../node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts","../node_modules/ajv/dist/vocabularies/applicator/contains.d.ts","../node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts","../node_modules/ajv/dist/vocabularies/applicator/propertynames.d.ts","../node_modules/ajv/dist/vocabularies/applicator/additionalproperties.d.ts","../node_modules/ajv/dist/vocabularies/applicator/not.d.ts","../node_modules/ajv/dist/vocabularies/applicator/anyof.d.ts","../node_modules/ajv/dist/vocabularies/applicator/oneof.d.ts","../node_modules/ajv/dist/vocabularies/applicator/if.d.ts","../node_modules/ajv/dist/vocabularies/applicator/index.d.ts","../node_modules/ajv/dist/vocabularies/validation/limitnumber.d.ts","../node_modules/ajv/dist/vocabularies/validation/multipleof.d.ts","../node_modules/ajv/dist/vocabularies/validation/pattern.d.ts","../node_modules/ajv/dist/vocabularies/validation/required.d.ts","../node_modules/ajv/dist/vocabularies/validation/uniqueitems.d.ts","../node_modules/ajv/dist/vocabularies/validation/const.d.ts","../node_modules/ajv/dist/vocabularies/validation/enum.d.ts","../node_modules/ajv/dist/vocabularies/validation/index.d.ts","../node_modules/ajv/dist/vocabularies/format/format.d.ts","../node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedproperties.d.ts","../node_modules/ajv/dist/vocabularies/unevaluated/unevaluateditems.d.ts","../node_modules/ajv/dist/vocabularies/validation/dependentrequired.d.ts","../node_modules/ajv/dist/vocabularies/discriminator/types.d.ts","../node_modules/ajv/dist/vocabularies/discriminator/index.d.ts","../node_modules/ajv/dist/vocabularies/errors.d.ts","../node_modules/ajv/dist/types/json-schema.d.ts","../node_modules/ajv/dist/types/jtd-schema.d.ts","../node_modules/ajv/dist/runtime/validation_error.d.ts","../node_modules/ajv/dist/compile/ref_error.d.ts","../node_modules/ajv/dist/core.d.ts","../node_modules/uri-js/dist/es5/uri.all.d.ts","../node_modules/ajv/dist/compile/resolve.d.ts","../node_modules/ajv/dist/compile/index.d.ts","../node_modules/ajv/dist/types/index.d.ts","../node_modules/ajv/dist/ajv.d.ts","../utils/constant.ts","../utils/index.ts","../schema/platform_application.json","../tests/common-application-specs.test.ts","../types/platform/widget/form.ts","../types/platform/widget/meta.ts","../node_modules/typescript-json-schema/node_modules/typescript/lib/typescript.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/typescript-json-schema/dist/typescript-json-schema.d.ts","../utils/build.ts","../utils/global.d.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/acorn/index.d.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/@types/prettier/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts","../../../node_modules/@types/ejs/index.d.ts","../../../node_modules/@types/figlet/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/rxjs/internal/subscription.d.ts","../../../node_modules/rxjs/internal/types.d.ts","../../../node_modules/rxjs/internal/subscriber.d.ts","../../../node_modules/rxjs/internal/operator.d.ts","../../../node_modules/rxjs/internal/observable/iif.d.ts","../../../node_modules/rxjs/internal/observable/throwerror.d.ts","../../../node_modules/rxjs/internal/observable.d.ts","../../../node_modules/rxjs/internal/subject.d.ts","../../../node_modules/rxjs/internal/observable/connectableobservable.d.ts","../../../node_modules/rxjs/internal/operators/groupby.d.ts","../../../node_modules/rxjs/internal/symbol/observable.d.ts","../../../node_modules/rxjs/internal/behaviorsubject.d.ts","../../../node_modules/rxjs/internal/replaysubject.d.ts","../../../node_modules/rxjs/internal/asyncsubject.d.ts","../../../node_modules/rxjs/internal/scheduler.d.ts","../../../node_modules/rxjs/internal/scheduler/action.d.ts","../../../node_modules/rxjs/internal/scheduler/asyncscheduler.d.ts","../../../node_modules/rxjs/internal/scheduler/asyncaction.d.ts","../../../node_modules/rxjs/internal/scheduler/asapscheduler.d.ts","../../../node_modules/rxjs/internal/scheduler/asap.d.ts","../../../node_modules/rxjs/internal/scheduler/async.d.ts","../../../node_modules/rxjs/internal/scheduler/queuescheduler.d.ts","../../../node_modules/rxjs/internal/scheduler/queue.d.ts","../../../node_modules/rxjs/internal/scheduler/animationframescheduler.d.ts","../../../node_modules/rxjs/internal/scheduler/animationframe.d.ts","../../../node_modules/rxjs/internal/scheduler/virtualtimescheduler.d.ts","../../../node_modules/rxjs/internal/notification.d.ts","../../../node_modules/rxjs/internal/util/pipe.d.ts","../../../node_modules/rxjs/internal/util/noop.d.ts","../../../node_modules/rxjs/internal/util/identity.d.ts","../../../node_modules/rxjs/internal/util/isobservable.d.ts","../../../node_modules/rxjs/internal/util/argumentoutofrangeerror.d.ts","../../../node_modules/rxjs/internal/util/emptyerror.d.ts","../../../node_modules/rxjs/internal/util/objectunsubscribederror.d.ts","../../../node_modules/rxjs/internal/util/unsubscriptionerror.d.ts","../../../node_modules/rxjs/internal/util/timeouterror.d.ts","../../../node_modules/rxjs/internal/observable/bindcallback.d.ts","../../../node_modules/rxjs/internal/observable/bindnodecallback.d.ts","../../../node_modules/rxjs/internal/innersubscriber.d.ts","../../../node_modules/rxjs/internal/outersubscriber.d.ts","../../../node_modules/rxjs/internal/observable/combinelatest.d.ts","../../../node_modules/rxjs/internal/observable/concat.d.ts","../../../node_modules/rxjs/internal/observable/defer.d.ts","../../../node_modules/rxjs/internal/observable/empty.d.ts","../../../node_modules/rxjs/internal/observable/forkjoin.d.ts","../../../node_modules/rxjs/internal/observable/from.d.ts","../../../node_modules/rxjs/internal/observable/fromevent.d.ts","../../../node_modules/rxjs/internal/observable/fromeventpattern.d.ts","../../../node_modules/rxjs/internal/observable/generate.d.ts","../../../node_modules/rxjs/internal/observable/interval.d.ts","../../../node_modules/rxjs/internal/observable/merge.d.ts","../../../node_modules/rxjs/internal/observable/never.d.ts","../../../node_modules/rxjs/internal/observable/of.d.ts","../../../node_modules/rxjs/internal/observable/onerrorresumenext.d.ts","../../../node_modules/rxjs/internal/observable/pairs.d.ts","../../../node_modules/rxjs/internal/observable/partition.d.ts","../../../node_modules/rxjs/internal/observable/race.d.ts","../../../node_modules/rxjs/internal/observable/range.d.ts","../../../node_modules/rxjs/internal/observable/timer.d.ts","../../../node_modules/rxjs/internal/observable/using.d.ts","../../../node_modules/rxjs/internal/observable/zip.d.ts","../../../node_modules/rxjs/internal/scheduled/scheduled.d.ts","../../../node_modules/rxjs/internal/config.d.ts","../../../node_modules/rxjs/index.d.ts","../../../node_modules/@types/through/index.d.ts","../../../node_modules/@types/inquirer/lib/objects/choice.d.ts","../../../node_modules/@types/inquirer/lib/objects/separator.d.ts","../../../node_modules/@types/inquirer/lib/objects/choices.d.ts","../../../node_modules/@types/inquirer/lib/utils/screen-manager.d.ts","../../../node_modules/@types/inquirer/lib/prompts/base.d.ts","../../../node_modules/@types/inquirer/lib/utils/paginator.d.ts","../../../node_modules/@types/inquirer/lib/prompts/checkbox.d.ts","../../../node_modules/@types/inquirer/lib/prompts/confirm.d.ts","../../../node_modules/@types/inquirer/lib/prompts/editor.d.ts","../../../node_modules/@types/inquirer/lib/prompts/expand.d.ts","../../../node_modules/@types/inquirer/lib/prompts/input.d.ts","../../../node_modules/@types/inquirer/lib/prompts/list.d.ts","../../../node_modules/@types/inquirer/lib/prompts/number.d.ts","../../../node_modules/@types/inquirer/lib/prompts/password.d.ts","../../../node_modules/@types/inquirer/lib/prompts/rawlist.d.ts","../../../node_modules/@types/inquirer/lib/ui/baseui.d.ts","../../../node_modules/@types/inquirer/lib/ui/bottom-bar.d.ts","../../../node_modules/@types/inquirer/lib/ui/prompt.d.ts","../../../node_modules/@types/inquirer/lib/utils/events.d.ts","../../../node_modules/@types/inquirer/lib/utils/readline.d.ts","../../../node_modules/@types/inquirer/lib/utils/utils.d.ts","../../../node_modules/@types/inquirer/index.d.ts","../../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/difflines.d.ts","../../../node_modules/jest-diff/build/printdiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/jest/ts3.2/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/lodash.merge/index.d.ts","../../../node_modules/@types/lowdb/index.d.ts","../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/progress/index.d.ts","../../../node_modules/@types/tinycolor2/index.d.ts"],"fileInfos":[{"version":"6adbf5efd0e374ff5f427a4f26a5a413e9734eee5067a0e86da69aea41910b52","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","6ac6f24aff52e62c3950461aa17eab26e3a156927858e6b654baef0058b4cd1e",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"499b66b9ed32d339c0227f5c839719d15a15aeb2cac7a6ef1d078e6a8ae9a818","5921a84a68e7140e869be9aec9dda5f65bb73ab8b2034f079e8105ed24f83e93","0014967c3d74be556730cdf7bb289a156d34325ed4742e8971c51efb341c997a","4ad87367f0baf0e4f02b8c7c7c8da88ef51c2859b090fd8910a910c185187a88","1f4f97f5c6c43d972eba611693dee681c6caf28c63db1427ff96e407f0bdf812","868837e4a7a6b6c6e2d8ba8e01f18c735742c804beb7f1ee451dbff8ba87dddf",{"version":"6908a25fe898f491197ebde83e8d3f1ae3f46f455ca19f217e23d5ae4b8f0714","signature":"699b1812437de3b78b8ef115863d9de0d473ec83ff157b7d5baaaa5e652b51a2"},{"version":"31f41966f0fd5fcd45c6cb2dcdcc7654da1c044861caefdae119d4a10aa1283a","signature":"cfffae28b0d0f6bb1f2d27f4f59691613ca77677a7ec95760d8577c59e2e37e9"},"b143797f2cc8570ab79df4e0e3387841ca3cda61a75f028807e637b70f94f02d",{"version":"c8fbd0782df14cde27a5f1d2f68fe8b82c3c096d351164182a022efb850e1644","signature":"6268522ee5e43d926ae1090d6848d4f3e1881c81a4210cb3b240370f152e8d18"},"f212c443c26f61e0d3b81a830982e6f8c128156f7deb1490642eeca69edcf180","e8406ad8d11f39e7693cc2ccb4ee6f8348032144df9fb8b1aa5f5fac88da8a2f","ca16f791d473ba9b50a4be53dcf219a993200a2a48b20bd35458f6fd077d0f78","a214a0429a8907c26bb431e7cccb7a18233355836aaa0fdb9126967dbc27b04c",{"version":"bddc53cf42b22e6e7fd9f07238270778422ba7c74cee94c76007c4d773407128","signature":"6953af876fd0ff1381fa7f89d16e493f8d84d4d04a1353a9174a8f9220de99a4"},{"version":"fcc2b26e4c3bc514bb5e9f5165947f798a6687125a633bda7b4ec28a42cc6dca","signature":"1e9da47313e6db43d6a3d88c0de86d77f5f182d18b9189f3e75b5939d3de3007"},{"version":"bf7f397f2d5d20d9ff066de0db23e9e32aaeb0b2ef5b5c328d0b6e68b914ec0b","signature":"0c8372172509edabbd8a327953291595397ca1dfaf297530093578207f1d1361"},{"version":"f737b592cafd16c7087bbdb8bd8d6475571a00f974424ca3e1f926142729db34","signature":"63aa6988d7c691c84fd33650b589d9a6395361b829d2db0da410101b1280b6d1"},"56a26b5ece30626fb8fbbd86586dd1e1e8e8d2a99e0ab4b3a0d51336363a8e4c","ed6dcfe11505dd54503928ac4511608182333ac410f2dc8514c7312e9697c800","356e773501cfb0bf87381fe6100bb12a266d3d883029704b626a79737c8376da","5dce20a7335b9ac24e409b3b4e6315a8fdc3bf7b2cbb73f191c7d39be8860d0f","1be6877e088889da2ec69716af1c93cb8297021e3bc3c915714001d3259b4656","e67ec5149a7abff821f5a99694ac3c58e7ee0974bfe5070b1801da65783e13c8","e6ada7804df8cd574c66660fdc6abc584a31692293636d1626573e476699bcf0","60bb0e47502bf8716d1230288b4e6387c1d34cded12752ab5338108e2e662e67","b8870b5155d11a273c75718a4f19026da49f91c548703858cd3400d06c3bd3b8","b3ae4ded82f27cabba780b9af9647f6e08c9a4cabe8fbb7a0cca69c7add9ef4b","8d26ae32e5c9c080e44aee4a67e5ef02b5fda0604e6fecbb7b753c537e5282d9","05c4e792dae38912ba333725cdf8c42d242337d006c0d887f4ce5a7787871a95","cd44995ee13d5d23df17a10213fed7b483fabfd5ea08f267ab52c07ce0b6b4da","58ce1486f851942bd2d3056b399079bc9cb978ec933fe9833ea417e33eab676e","1a23b521db8d7ec9e2b96c6fbd4c7e96d12f408b1e03661b3b9f7da7291103e6","d3d0d11d30c9878ada3356b9c36a2754b8c7b6204a41c86bfb1488c08ce263b0","a6493f1f479637ed89a3ebec03f6dc117e3b1851d7e938ac4c8501396b8639a8","ae0951e44973e928fe2e999b11960493835d094b16adac0b085a79cff181bcb9","9d00e3a59eff68fa8c40e89953083eeaad1c5b2580ed7da2304424b249ecb237","1609ad4d488c356ee91eba7d7aa87cc6fb59bc8ac05c1a8f08665285ba3b71ad","8add088f72326098d68d622ddb024c00ae56a912383efe96b03f0481db88f7c9","dd17fe6332567b8f13e33dd3ff8926553cdcea2ad32d4350ce0063a2addaa764","4091d56a4622480549350b8811ec64c7826cd41a70ce5d9c1cc20384bb144049","353c0125b9e50c2a71e18394d46be5ccb37161cc0f0e7c69216aa6932c8cdafb","9c5d5f167e86b6ddf7142559a17d13fd39c34e868ae947c40381db866eed6609","4430dea494b0ee77bf823d9a7c4850a539e1060d5d865316bb23fb393e4f01d7","aae698ceead4edad0695b9ea87e43f274e698bdb302c8cb5fd2cab4dc496ccf0","51631e9a0c041e12479ab01f5801d8a237327d19e9ee37d5f1f66be912631425","c9d5d8adb1455f49182751ce885745dcc5f9697e9c260388bc3ae9d1860d5d10","f64289e3fa8d5719eaf5ba1bb02dd32dbbf7c603dda75c16770a6bc6e9c6b6d9","b1aa0e2e3511a8d10990f35866405c64c9e576258ef99eeb9ebafed980fd7506","2d255a5287f2fb5295688cb25bd18e1cd59866179f795f3f1fd6b71b7f0edf8f","43c1dbb78d5277a5fdd8fddce8b257f84ffa2b4253f58b95c04a310710d19e97","6c669d7e080344c1574aa276a89e57c3b9f0e97fab96a09427e7dfb19ca261bf","b71ac126853867d8e64c910f47d46d05c5ea797987d2604f63d401507dc43b6d","9a37238558d28b7ee06d08599e92eab30b90704541cc85e6448009d6d55fffa9","120b14d66a061910309ff97e7b06b5c6c09444218178b80b687a92af4d22d5dc","3de958065e3a44cbe0bfa667813bc59c63e63c9ce522af8dc1b64714910fa9ba","66e655f7c43558bae6703242cbd6c0551a94d0a97204bd4c4bbf7e77f24d1f85","72f7b32e023814078046c036ed4b7ad92414be0aebb63e805c682e14103ae38a","a89d8e67966d085ff971c9900cfa1abdd9732bab66d9c1914ecc15befdf8623d","7dfd0308261bb91b058eb91802690fe3f09192b263e070a19df4d629df29e265","2887a41f8373ff8443ac2bb9d898b398687621830465643ad131ad1a43e2678e","cde493e09daad4bb29922fe633f760be9f0e8e2f39cdca999cce3b8690b5e13a","18cc75193738e5c88f89facc31481024911f04da53bb3294930ecacd112a8f6e","0fc36d14cac3c41e1b4d648d1b846399284498aac7216eec4928c4388663bbce","9f3c5498245c38c9016a369795ec5ef1768d09db63643c8dba9656e5ab294825","19ff974f37a672180ddb3c6c2ed72fa319e516d4a5a3b234c65917c88bb77d0a","66408d81ba8962282b1a55da34c6bd767105141f54d0ba14dca330efe0c8f552","c71d7d5ef352a2ff67f064984e72026682b32db525e57e8d0b238e1444f40f2e","821e64ddbdfa10fac5f0aed1c1d4e1f275840400caa96357ddfd15d02e5afba1",{"version":"be86caf800642bb0df4e528c6cd7f8221508adf3965a63e6af2b8a355daa36e6","signature":"4a3e378de7f969f0eb0c6960ea406d408e9d06c40a1e0890ac27e38990891892"},"df575ddfda5f77d97fc62c01fa5de0c3bd896cfcaf5c93949292681ab922710f",{"version":"acee6571df5cece5c6c775931be1130f684e1aa61fa8aa8fd39b1b8e2d9afcb9","signature":"693c63434a862386775da87a7ca95ca1449e0e2748bb509ffb426180d9670bed"},{"version":"1489d7c42e822800f21ef73b033909d4ceef5bf3a1b36b40c209af34fbb9c502","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"635c0e05a5ad26f24f67be5b3a28e6ada2a203128cafa427300721e197df6c71","affectsGlobalScope":true},"ba19b2d72419c9c74b04069b26f1a8a6fc4058f7aaff70fb7e52d1530b0d2f30","d7b12d89dac50d74fc6e17b4429a2547026b6655d9a983bd442510770e68cca3","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","3636dedd85f87967bea828be43351ae2b4348c8b7c196512fb67f73d21b6db3b","9c6f28ec1fc6ee0767e9eecb57f8e22dfbe9c48497247ba3e1252f0379f0806c",{"version":"0875d71f48051f81cee80e4c5b75c7cff30c8901e0c5881d3b604ff766d8617d","affectsGlobalScope":true},"7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","3777eb752cef9aa8dd35bb997145413310008aa54ec44766de81a7ad891526cd","272c2dac4baaf7fdd2d7efeef0fa2547af54cc21883c5e138b8c4d1661697a54","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","64b867c61effed7b5bc0cc06b3d8eac23b067a3fba581fc7d3c292fa593e6a45","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","80164ffebe1723a50e020a648e0623c026ff39be13c5cd45e6a82d0fcc06e2d0","d555cd63a3fc837840db192596273fdf52fb28092b0a33bec98e89a0334b3a4c",{"version":"dc5f6951bbf5b544349cbdef895c08dee6929818abd27d7d53c38cf1209091b3","affectsGlobalScope":true},"85d545d430795d54a8b2896f67f9aeb7bf19fd74a1469ae0627311eb72f0dfa2","a473cf45c3d9809518f8af913312139d9f4db6887dc554e0d06d0f4e52722e6b","d5afcd002167b6b03d595fb8b9630a00456b6fb9d2c5e8b6aaa30cb31bc44e2b","3d68ecf05475492f041c88395372c3a01b30351619bebcd38287ab185be7f7e4",{"version":"a97ac401f6b334e9b1f6c8ee9319d6e21cc39d2f400e909805dfb8ab5eab0576","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","7674b65ac0a3b160232d84464b3486d727415581e5b99ff4aec324500adc98a4","87f16999a5832968485f6e20dd70529399143c3cf35003485020a037f338b75f","c6d4108ff964f5407f128d651d3ba5b15882cd40a0dfb63918af437d967db44b",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"8f8f6ee2a0c94077f79439f51640a625ac7e2f5dd6866bd3b5a41705c836adfc","affectsGlobalScope":true},"ad908b2432dc4143f3439d3c625255f1050447a0232a1e9c2bffa20f37ec0097","e8d2d40a15313520a510409c8f3aeed28b79aab61af41ae65084570f9843b306","9700d148ccc0784923f66a3a7162e523172b530e8b3aa9834f53a6e893127c80","88587b5c94b0c4f5d78026e4beeb93383b3933c860d9840b55d6bf47d7b632bb","a473ecd14d9bafbd6a33105524b033237bbf1d6ce2cd81eb71cc54bec2d83d55","4e9f66d07d1687983ef1903654f4a4977563a0318046e893c5ecdb4dac25d376","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","7a2a3ff87ffd4313a6a2f3b012e801dd249ee58152cedf90c8718dcd2c811fe3","69640cc2e76dad52daeb9914e6b70c5c9a5591a3a65190a2d3ea432cf0015e16","a39a4c527b7a2dc7a2661b711a534c10c76852c5ad6ae320767d3f7d2621b67d","1bb5c9857b2ee32c199dd85bc0f4c0299112485d6e5dc91428eabfdee0dbd68c",{"version":"5daba568741c8ed283d67bf370c626a91e09fdfbc6d4abe22a7f93e2cf5138b9","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","662661bbf9ccd869f3bca82d34234b2abdc95c657e2187c35352d42dddb24c2d","bec890dbc489a627439ad67330f9418d7f03aed29d1f874e5219a121da040cfa","4c4334eb5d8fae83416a361d787b55a5743916aed8af812a909898bc7333e709","6feb6f75a3e4e017f8e6e12740cf06f18eefcf829284fa310da6c7f4d44fb2eb","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","0953427f9c2498f71dd912fdd8a81b19cf6925de3e1ad67ab9a77b9a0f79bf0b","b709ff1f6d6235f5e9c8dcbce3e683ff24ec35046b232d5a281af083026018d1","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","ee6a154ecccde26b413e89c97a0b824f25b253c4c50a3c392bcb2b4c6ba9c314","d9a653f75614c4d3f63e88b7aae66390bf71a8cea02f5f7db8ca6c1a8e8c3f1a","a364b4a8a015ae377052fa4fac94204d79a69d879567f444c7ceff1b7a18482d","c5ec3b97d9db756c689cd11f4a11eaa9e6077b2768e3e9b54ff727a93c03a909","c14e9e86f18189c7d32b5dd03b4cf3f40bed68f0509dec06d75d41b82c065fe2","bdb07038733b2d74a75ba9c381dcb92774cd6f161ee125bfa921eae7d883ccc9","ad93e960a3a07dff7394bf0c8a558006a9ff2d0725ab28fc33dec227d4cb251e",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"11dbfb02b6464018e215cbc26a3c38c45a0ae5ef89a58ee992220af1ad11fc97","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438","cf0b62aa311100fcff8104f9677664878ae745cb45224b878c6cb9a2fa0bc48b","ce6bde516377b2ba64c5f390598fcaa9eacce36660c32aa13de6170e6cca6cab","95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2","393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0","6cb35d83d21a7e72bd00398c93302749bcd38349d0cc5e76ff3a90c6d1498a4d","051451ceae7f29c8f17b810e6a6d8d270c67b401866f487cdc50c5c1a8b3f511","2632057d8b983ee33295566088c080384d7d69a492bc60b008d6a6dfd3508d6b","4bf71cf2a94492fc71e97800bdf2bcb0a9a0fa5fce921c8fe42c67060780cbfa","0996ff06f64cb05b6dac158a6ada2e16f8c2ccd20f9ff6f3c3e871f1ba5fb6d9","5c492d01a19fea5ebfff9d27e786bc533e5078909521ca17ae41236f16f9686a","a6ee930b81c65ec79aca49025b797817dde6f2d2e9b0e0106f0844e18e2cc819","84fce15473e993e6b656db9dd3c9196b80f545647458e6621675e840fd700d29","7d5336ee766aa72dffb1cc2a515f61d18a4fb61b7a2757cbccfb7b286b783dfb","63e96248ab63f6e7a86e31aa3e654ed6de1c3f99e3b668e04800df05874e8b77",{"version":"ed164267a8b206892d69768f51e6e7157ad0a6e89745fbd39f3e81c4700e9a9e","affectsGlobalScope":true},"06a20cc7d937074863861ea1159ac783ff97b13952b4b5d1811c7d8ab5c94776","ab6de4af0e293eae73b67dad251af097d7bcc0b8b62de84e3674e831514cb056","18cbd79079af97af66c9c07c61b481fce14a4e7282eca078c474b40c970ba1d0","e7b45405689d87e745a217b648d3646fb47a6aaba9c8d775204de90c7ea9ff35","669b754ec246dd7471e19b655b73bda6c2ca5bb7ccb1a4dff44a9ae45b6a716a","bcfaca4a8ff50f57fd36df91fba5d34056883f213baff7192cbfc4d3805d2084","76a564b360b267502219a89514953058494713ee0923a63b2024e542c18b40e5","8f62cbd3afbd6a07bb8c934294b6bfbe437021b89e53a4da7de2648ecfc7af25","a20629551ed7923f35f7556c4c15d0c8b2ebe7afaa68ceaab079a1707ba64be2","d6de66600c97cd499526ddecea6e12166ab1c0e8d9bf36fb2339fd39c8b3372a","8e7a5b8f867b99cc8763c0b024068fb58e09f7da2c4810c12833e1ca6eb11c4f","a8932876de2e3138a5a27f9426b225a4d27f0ba0a1e2764ba20930b4c3faf4b9","df877050b04c29b9f8409aa10278d586825f511f0841d1ec41b6554f8362092b","027d600e00c5f5e1816c207854285d736f2f5fa28276e2829db746d5d6811ba1","5443113a16ef378446e08d6500bb48b35de582426459abdb5c9704f5c7d327d9","0fb581ecb53304a3c95bb930160b4fa610537470cce850371cbaad5a458ca0d9","7da4e290c009d7967343a7f8c3f145a3d2c157c62483362183ba9f637a536489","eb21ddc3a8136a12e69176531197def71dc28ffaf357b74d4bf83407bd845991","914560d0c4c6aa947cfe7489fe970c94ba25383c414bbe0168b44fd20dbf0df4","4fb3405055b54566dea2135845c3a776339e7e170d692401d97fd41ad9a20e5d","8d607832a6ef0eac30657173441367dd76c96bf7800d77193428b922e060c3af","20ff7207f0bb5cdde5fee8e83315ade7e5b8100cfa2087d20d39069a3d7d06f4","7ca4c534eab7cff43d81327e369a23464bc37ef38ce5337ceff24a42c6c84eb2","5252dec18a34078398be4e321dee884dc7f47930e5225262543a799b591b36d2","23caed4dff98bd28157d2b798b43f1dfefe727f18641648c01ce4e0e929a1630","f67e013d5374826596d7c23dbae1cdb14375a27cd72e16c5fb46a4b445059329","ea3401b70e2302683bbf4c18b69ef2292b60f4d8f8e6d920413b81fb7bde0f65","71afe26642c0fb86b9f8b1af4af5deb5181b43b6542a3ff2314871b53d04c749","0d7f01634e6234d84cf0106508efdb8ae00e5ed126eff9606d37b031ac1de654","f8d209086bad78af6bd7fef063c1ed449c815e6f8d36058115f222d9f788b848","3ad003278d569d1953779e2f838f7798f02e793f6a1eceac8e0065f1a202669b","fb2c5eceffcd918dbb86332afa0199f5e7b6cf6ee42809e930a827b28ef25afe","f664aaff6a981eeca68f1ff2d9fd21b6664f47bf45f3ae19874df5a6683a8d8a","ce066f85d73e09e9adbd0049bcf6471c7eefbfc2ec4b5692b5bcef1e36babd2a","09d302513cacfbcc54b67088739bd8ac1c3c57917f83f510b2d1adcb99fd7d2a","3faa54e978b92a6f726440c13fe3ab35993dc74d697c7709681dc1764a25219f","2bd0489e968925eb0c4c0fb12ef090be5165c86bd088e1e803102c38d4a717d8","88924207132b9ba339c1adb1ed3ea07e47b3149ff8a2e21a3ea1f91cee68589d","b8800b93d8ab532f8915be73f8195b9d4ef06376d8a82e8cdc17c400553172d6","d7d469703b78beba76d511957f8c8b534c3bbb02bea7ab4705c65ef573532fb8","74c8c3057669c03264263d911d0f82e876cef50b05be21c54fef23c900de0420","b303eda2ff2d582a9c3c5ecb708fb57355cdc25e8c8197a9f66d4d1bf09fda19","4e5dc89fa22ff43da3dee1db97d5add0591ebaff9e4adef6c8b6f0b41f0f60f0","ec4e82cb42a902fe83dc13153c7a260bee95684541f8d7ef26cb0629a2f4ca31","5f36e24cd92b0ff3e2a243685a8a780c9413941c36739f04b428cc4e15de629d","40a26494e6ab10a91851791169582ab77fed4fbd799518968177e7eefe08c7a9","208e125b45bc561765a74f6f1019d88e44e94678769824cf93726e1bac457961","b3985971de086ef3aa698ef19009a53527b72e65851b782dc188ac341a1e1390","c81d421aabb6113cd98b9d4f11e9a03273b363b841f294b457f37c15d513151d","30063e3a184ff31254bbafa782c78a2d6636943dfe59e1a34f451827fd7a68dc","c05d4cae0bceed02c9d013360d3e65658297acb1b7a90252fe366f2bf4f9ccc9","6f14b92848889abba03a474e0750f7350cc91fc190c107408ca48679a03975ae","a588d0765b1d18bf00a498b75a83e095aef75a9300b6c1e91cbf39e408f2fe2f","656424ca784760c679bf2677d8aaf55d1cb8452cd0ac04bbe1c0f659f45f8c11","5d2651c679f59706bf484e7d423f0ec2d9c79897e2e68c91a3f582f21328d193","30d49e69cb62f350ff0bc5dda1c557429c425014955c19c557f101c0de9272e7","d3747dbed45540212e9a906c2fb8b5beb691f2cd0861af58a66dc01871004f38","05a21cbb7cbe1ec502e7baca1f4846a4e860d96bad112f3e316b995ba99715b7","1eaee2b52f1c0e1848845a79050c1d06ae554d8050c35e3bf479f13d6ee19dd5","fd219904eea67c470dfebbaf44129b0db858207c3c3b55514bdc84de547b1687","4de232968f584b960b4101b4cdae593456aff149c5d0c70c2389248e9eb9fbac","933c42f6ed2768265dfb42faa817ce8d902710c57a21a1859a9c3fe5e985080e","c5430542eeebb207d651e8b00a08e4bb680c47ecb73dd388d8fa597a1fc5de5b","a6c5c9906262cf10549989c0061e5a44afdc1f61da77d5e09418a9ecea0018fe","bc6e433cb982bf63eaa523dbbbd30fe12960a09861b352d77baf77ad6dd8886d","9af64ab00918f552388252977c1569fe31890686ca1fdb8e20f58d3401c9a50c","3d3cc03b5c6e056c24aac76789f4bc67caee98a4f0774ab82bc8ba34d16be916","747ce36fa27a750a05096f3610e59c9b5a55e13defec545c01a75fd13d67b620","1a8f503c64bdb36308f245960d9e4acac4cf65d8b6bd0534f88230ebf0be7883","a2c1f4012459547d62116d724e7ec820bb2e6848da40ea0747bf160ffd99b283","0dc197e52512a7cbea4823cc33c23b0337af97bd59b38bf83be047f37cd8c9a8","492c93ade227fe4545fabb3035b9dd5d57d8b4fde322e5217fdaef20aa1b80a8","83c54a3b3e836d1773b8c23ff76ce6e0aae1a2209fc772b75e9de173fec9eac0","475e411f48f74c14b1f6e50cc244387a5cc8ce52340dddfae897c96e03f86527","5573ce7aa683a81c9a727294ffdb47d82d7715a148bfe9f4ddcf2f6cdfef1f0a","2cd9edbb4a6411a9f5258237dd73323db978d7aa9ebf1d1b0ac79771ac233e24","e222104af6cb9415238ad358488b74d76eceeff238c1268ec6e85655b05341da","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","eba230221317c985ab1953ccc3edc517f248b37db4fef7875cb2c8d08aff7be7","b83e796810e475da3564c6515bc0ae9577070596a33d89299b7d99f94ecfd921","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"f624e578325b8c58e55b30c998b1f4c3ec1b61a9fa66373da4250c89b7880d44","affectsGlobalScope":true},{"version":"d3002f620eab4bf6476c9da5c0efb2041d46f7df8b3032a5631bd206abef2c75","affectsGlobalScope":true},"c303a72d3128054d400767264e6f5414b86bf29c1b11730c45027f2213e82f34","3594c022901a1c8993b0f78a3f534cfb81e7b619ed215348f7f6882f3db02abc","438284c7c455a29b9c0e2d1e72abc62ee93d9a163029ffe918a34c5db3b92da2","0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c9f396e71966bd3a890d8a36a6a497dbf260e9b868158ea7824d4b5421210afe","509235563ea2b939e1bbe92aae17e71e6a82ceab8f568b45fb4fce7d72523a32","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","c311349ec71bb69399ffc4092853e7d8a86c1ca39ddb4cd129e775c19d985793","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","4908e4c00832b26ce77a629de8501b0e23a903c094f9e79a7fec313a15da796a","2630a7cbb597e85d713b7ef47f2946d4280d3d4c02733282770741d40672b1a5",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"a25713e4a4769ba11d2a1bc317250334968b0a892d3342d285a0e238c537af09","bafb812b339ee0f79ef5c47a7e3211dab8ea1f94db44f2d3f0806856561d57d0","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","972f1e91dab93b182624a17eeed02f683b8cb3fefbda7b689cc84570029d5f73","9895aad6ad1d505e2b03c8e41c8643b60a813ad130eb68f843b736b2db7d42e1","cbb21f1320a64785fe24657e8c268e18836dc31abfff96feea912e65d5c37d52","27bd05635cf2be7e3f75f375de542eab00cbb24c6b9961d37a0bf99fd344d1fc"],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"outDir":"./","skipLibCheck":true,"sourceMap":false,"target":2},"fileIdsList":[[124],[122],[124,125,126,127,128],[124,126],[143,173],[175],[176],[29,31,32,33,34,35,36,37,38,39,40,41],[29,30,32,33,34,35,36,37,38,39,40,41],[30,31,32,33,34,35,36,37,38,39,40,41],[29,30,31,33,34,35,36,37,38,39,40,41],[29,30,31,32,34,35,36,37,38,39,40,41],[29,30,31,32,33,35,36,37,38,39,40,41],[29,30,31,32,33,34,36,37,38,39,40,41],[29,30,31,32,33,34,35,37,38,39,40,41],[29,30,31,32,33,34,35,36,38,39,40,41],[29,30,31,32,33,34,35,36,37,39,40,41],[29,30,31,32,33,34,35,36,37,38,40,41],[29,30,31,32,33,34,35,36,37,38,39,41],[29,30,31,32,33,34,35,36,37,38,39,40],[142,143,150,159],[134,142,150],[166],[138,143,151],[159],[140,142,150],[142],[142,144,159,165],[143],[150,159,165],[142,143,145,150,159,162,165],[145,159,162,165],[130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172],[165],[140,142,159],[132],[164],[157,166,168],[150],[156],[142,144,159,165,168],[180],[68,69,73,100,101,105,108,109],[66,67],[66],[68,109],[68,69,105,107,109],[106,109,110],[109],[68,69,108,109],[68,69,71,72,108,109],[68,69,70,108,109],[68,69,73,100,101,102,103,104,108,109],[68,69,73,105,108],[73,109],[75,76,77,78,79,80,81,82,83,84,109],[98,109],[74,85,93,94,95,96,97,99],[78,109],[86,87,88,89,90,91,92,109],[117,118],[41,44,51,53,54,55,56,57],[41,51,53],[53],[41,53,54,55],[41,44,51,53,54,55,56],[54],[41,54,59,62],[58,59,60,61,143,152],[41,59,60],[41,57],[52],[53,58,62,63,64],[110,112,113],[42,45,46],[42],[42,43,44,45,46,47,48,49,50],[43,44,46,47,48],[42,43],[43,44,46],[41,119,143,152],[51,65,111],[142,173,184],[157,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,267,268,269,270,271],[272],[251,252,272],[157,249,254,272],[157,255,256,272],[157,255,272],[157,249,255,272],[157,261,272],[157,272],[250,266,272],[249,266,272],[157,249],[254],[157],[249,272],[277,279],[280],[295],[283,285,286,287,288,289,290,291,292,293,294,295,297],[283,284,286,287,288,289,290,291,292,293,294,295,297],[284,285,286,287,288,289,290,291,292,293,294,295,297],[283,284,285,287,288,289,290,291,292,293,294,295,297],[283,284,285,286,288,289,290,291,292,293,294,295,297],[283,284,285,286,287,289,290,291,292,293,294,295,297],[283,284,285,286,287,288,290,291,292,293,294,295,297],[283,284,285,286,287,288,289,291,292,293,294,295,297],[283,284,285,286,287,288,289,290,292,293,294,295,297],[283,284,285,286,287,288,289,290,291,293,294,295,297],[283,284,285,286,287,288,289,290,291,292,294,295,297],[283,284,285,286,287,288,289,290,291,292,293,295,297],[283,284,285,286,287,288,289,290,291,292,293,294],[283,284,285,286,287,288,289,290,291,292,293,294,295],[145,165,173,298,299],[145,159,173],[173],[159,173],[273,274],[273,274,275,276],[278],[186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,205,206,208,210,211,212,213,214,215,216,217,218,219,220,221,222,223,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248],[186,188,193],[188,225],[187,192],[186,187,188,189,190,191],[187,188,189,192,225],[186,188,192,193],[192],[192,232],[186,187,188,192],[187,188,189,192],[187,188],[186,187,188,192,193],[188,224],[186,187,188,193],[249],[186,187,201],[186,187,200],[209],[202,203],[204],[202],[186,187,201,202],[186,187,200,201,203],[207],[186,187,202,203],[186,187,188,189,192],[186,187],[187],[186,192],[51,53]],"referencedMap":[[126,1],[123,2],[129,3],[125,1],[127,4],[128,1],[174,5],[176,6],[177,7],[30,8],[31,9],[29,10],[32,11],[33,12],[34,13],[35,14],[36,15],[37,16],[38,17],[39,18],[40,19],[41,20],[134,21],[135,22],[136,23],[137,24],[138,25],[139,26],[141,27],[142,27],[143,28],[144,29],[145,30],[146,31],[147,32],[173,33],[148,27],[149,34],[150,35],[153,36],[154,37],[157,27],[158,38],[159,27],[162,39],[164,39],[165,40],[167,25],[170,41],[171,25],[181,42],[110,43],[68,44],[67,45],[72,46],[108,47],[107,48],[69,49],[70,50],[74,50],[73,51],[71,52],[105,53],[103,49],[109,54],[75,55],[80,49],[82,49],[77,49],[78,55],[84,49],[85,56],[76,49],[81,49],[83,49],[79,49],[99,57],[98,49],[100,58],[94,49],[96,49],[95,49],[91,49],[97,59],[92,49],[93,60],[86,49],[87,49],[88,49],[89,49],[90,49],[119,61],[58,62],[64,63],[54,64],[56,65],[63,66],[55,67],[60,68],[62,69],[61,70],[59,71],[53,72],[65,73],[114,74],[47,75],[46,76],[51,77],[49,78],[44,79],[48,80],[120,81],[112,82],[185,83],[272,84],[251,85],[253,86],[252,85],[255,87],[257,88],[258,89],[259,90],[260,88],[261,89],[262,88],[263,91],[264,89],[265,88],[266,92],[267,93],[268,94],[269,95],[256,96],[270,97],[254,97],[271,98],[280,99],[281,100],[296,101],[284,102],[285,103],[283,104],[286,105],[287,106],[288,107],[289,108],[290,109],[291,110],[292,111],[293,112],[294,113],[295,114],[297,115],[300,116],[298,117],[301,118],[250,119],[275,120],[277,121],[276,120],[279,122],[249,123],[199,124],[197,124],[224,125],[212,126],[192,127],[222,126],[223,126],[226,128],[227,126],[194,129],[228,126],[229,126],[230,126],[231,126],[232,130],[233,131],[234,126],[190,126],[235,126],[236,126],[237,130],[238,126],[239,126],[240,132],[241,126],[242,128],[243,126],[191,126],[244,126],[245,126],[246,133],[189,134],[195,135],[225,136],[198,137],[247,138],[200,139],[201,140],[210,141],[209,142],[205,143],[204,142],[206,144],[203,145],[202,146],[208,147],[207,144],[211,148],[193,149],[188,150],[186,151],[187,152],[216,130],[213,151]],"exportedModulesMap":[[126,1],[123,2],[129,3],[125,1],[127,4],[128,1],[174,5],[176,6],[177,7],[30,8],[31,9],[29,10],[32,11],[33,12],[34,13],[35,14],[36,15],[37,16],[38,17],[39,18],[40,19],[41,20],[134,21],[135,22],[136,23],[137,24],[138,25],[139,26],[141,27],[142,27],[143,28],[144,29],[145,30],[146,31],[147,32],[173,33],[148,27],[149,34],[150,35],[153,36],[154,37],[157,27],[158,38],[159,27],[162,39],[164,39],[165,40],[167,25],[170,41],[171,25],[181,42],[110,43],[68,44],[67,45],[72,46],[108,47],[107,48],[69,49],[70,50],[74,50],[73,51],[71,52],[105,53],[103,49],[109,54],[75,55],[80,49],[82,49],[77,49],[78,55],[84,49],[85,56],[76,49],[81,49],[83,49],[79,49],[99,57],[98,49],[100,58],[94,49],[96,49],[95,49],[91,49],[97,59],[92,49],[93,60],[86,49],[87,49],[88,49],[89,49],[90,49],[119,61],[58,153],[64,63],[54,64],[63,66],[55,67],[60,68],[62,69],[61,70],[53,72],[65,73],[47,75],[46,76],[51,77],[49,78],[44,79],[48,80],[120,81],[112,82],[185,83],[272,84],[251,85],[253,86],[252,85],[255,87],[257,88],[258,89],[259,90],[260,88],[261,89],[262,88],[263,91],[264,89],[265,88],[266,92],[267,93],[268,94],[269,95],[256,96],[270,97],[254,97],[271,98],[280,99],[281,100],[296,101],[284,102],[285,103],[283,104],[286,105],[287,106],[288,107],[289,108],[290,109],[291,110],[292,111],[293,112],[294,113],[295,114],[297,115],[300,116],[298,117],[301,118],[250,119],[275,120],[277,121],[276,120],[279,122],[249,123],[199,124],[197,124],[224,125],[212,126],[192,127],[222,126],[223,126],[226,128],[227,126],[194,129],[228,126],[229,126],[230,126],[231,126],[232,130],[233,131],[234,126],[190,126],[235,126],[236,126],[237,130],[238,126],[239,126],[240,132],[241,126],[242,128],[243,126],[191,126],[244,126],[245,126],[246,133],[189,134],[195,135],[225,136],[198,137],[247,138],[200,139],[201,140],[210,141],[209,142],[205,143],[204,142],[206,144],[203,145],[202,146],[208,147],[207,144],[211,148],[193,149],[188,150],[186,151],[187,152],[216,130],[213,151]],"semanticDiagnosticsPerFile":[126,124,123,129,125,127,128,122,174,175,176,177,118,30,31,29,32,33,34,35,36,37,38,39,40,41,130,132,133,134,135,136,137,138,139,140,141,142,143,144,131,172,145,146,147,173,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,178,179,180,181,52,110,66,68,67,72,108,104,107,69,70,74,73,71,105,103,109,101,102,75,80,82,77,78,84,85,76,81,83,79,99,98,100,94,96,95,91,97,92,93,86,87,88,89,90,119,117,8,7,2,9,10,11,12,13,14,15,16,3,4,20,17,18,19,21,22,23,5,24,25,26,27,1,28,6,106,58,64,54,56,63,55,60,57,62,61,59,53,65,113,[114,[{"file":"../tests/common-application-specs.test.ts","start":338,"length":3,"code":2741,"category":1,"messageText":"Property 'dependencies' is missing in type '{ name: string; description: string; items: { type: EComponentType.PAGE; id: string; component: string; items: { component: string; attributes: {}; items: { component: string; attributes: { ...; }; }[]; }[]; }[]; }' but required in type 'IPlatformApp'.","relatedInformation":[{"file":"../types/platform/app.ts","start":893,"length":12,"messageText":"'dependencies' is declared here.","category":3,"code":2728}]}]],47,42,46,45,51,50,49,44,48,43,115,116,120,111,121,112,182,183,185,272,251,253,252,255,257,258,259,260,261,262,263,264,265,266,267,268,269,256,270,254,271,280,281,282,296,284,285,283,286,287,288,289,290,291,292,293,294,295,297,184,299,300,298,301,250,302,273,275,277,276,274,279,278,249,199,197,248,224,212,192,222,223,226,227,194,228,229,230,231,232,233,234,190,235,236,237,238,239,240,241,242,243,191,244,245,246,189,195,225,198,247,200,201,210,209,205,204,206,203,202,208,207,211,193,188,186,196,187,217,218,215,216,214,219,213,221,220]},"version":"4.5.2"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/@types/lodash/common/common.d.ts","../node_modules/@types/lodash/common/array.d.ts","../node_modules/@types/lodash/common/collection.d.ts","../node_modules/@types/lodash/common/date.d.ts","../node_modules/@types/lodash/common/function.d.ts","../node_modules/@types/lodash/common/lang.d.ts","../node_modules/@types/lodash/common/math.d.ts","../node_modules/@types/lodash/common/number.d.ts","../node_modules/@types/lodash/common/object.d.ts","../node_modules/@types/lodash/common/seq.d.ts","../node_modules/@types/lodash/common/string.d.ts","../node_modules/@types/lodash/common/util.d.ts","../node_modules/@types/lodash/index.d.ts","../types/basic/common.ts","../types/platform/datasource.ts","../types/platform/common.ts","../node_modules/acorn/dist/acorn.d.ts","../parser/expression/index.ts","../parser/cals/utils/common.ts","../types/basic/datasource.ts","../types/basic/component.ts","../types/basic/app.ts","../types/platform/component.ts","../types/platform/app.ts","../types/lcds.ts","../types/index.ts","../parser/cals/utils/style.ts","../parser/cals/utils/runtime.ts","../parser/cals/utils/version/config.ts","../parser/cals/index.ts","../parser/cals/utils/version/utils.ts","../parser/cals/utils/version/common.ts","../parser/cals/utils/version/parses.ts","../parser/cals/utils/version/index.ts","../parser/cals/utils/spinoff/index.ts","../parser/cals/utils/block/index.ts","../parser/index.ts","../types/platform/widget/form.ts","../types/platform/widget/meta.ts","../node_modules/typescript-json-schema/node_modules/typescript/lib/typescript.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/typescript-json-schema/dist/typescript-json-schema.d.ts","../utils/build.ts","../utils/constant.ts","../utils/global.d.ts","../utils/index.ts","../node_modules/@types/estree/index.d.ts","../node_modules/@types/acorn/index.d.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/@types/prettier/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts","../../../node_modules/@types/ejs/index.d.ts","../../../node_modules/@types/figlet/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/rxjs/internal/subscription.d.ts","../../../node_modules/rxjs/internal/types.d.ts","../../../node_modules/rxjs/internal/subscriber.d.ts","../../../node_modules/rxjs/internal/operator.d.ts","../../../node_modules/rxjs/internal/observable/iif.d.ts","../../../node_modules/rxjs/internal/observable/throwerror.d.ts","../../../node_modules/rxjs/internal/observable.d.ts","../../../node_modules/rxjs/internal/subject.d.ts","../../../node_modules/rxjs/internal/observable/connectableobservable.d.ts","../../../node_modules/rxjs/internal/operators/groupby.d.ts","../../../node_modules/rxjs/internal/symbol/observable.d.ts","../../../node_modules/rxjs/internal/behaviorsubject.d.ts","../../../node_modules/rxjs/internal/replaysubject.d.ts","../../../node_modules/rxjs/internal/asyncsubject.d.ts","../../../node_modules/rxjs/internal/scheduler.d.ts","../../../node_modules/rxjs/internal/scheduler/action.d.ts","../../../node_modules/rxjs/internal/scheduler/asyncscheduler.d.ts","../../../node_modules/rxjs/internal/scheduler/asyncaction.d.ts","../../../node_modules/rxjs/internal/scheduler/asapscheduler.d.ts","../../../node_modules/rxjs/internal/scheduler/asap.d.ts","../../../node_modules/rxjs/internal/scheduler/async.d.ts","../../../node_modules/rxjs/internal/scheduler/queuescheduler.d.ts","../../../node_modules/rxjs/internal/scheduler/queue.d.ts","../../../node_modules/rxjs/internal/scheduler/animationframescheduler.d.ts","../../../node_modules/rxjs/internal/scheduler/animationframe.d.ts","../../../node_modules/rxjs/internal/scheduler/virtualtimescheduler.d.ts","../../../node_modules/rxjs/internal/notification.d.ts","../../../node_modules/rxjs/internal/util/pipe.d.ts","../../../node_modules/rxjs/internal/util/noop.d.ts","../../../node_modules/rxjs/internal/util/identity.d.ts","../../../node_modules/rxjs/internal/util/isobservable.d.ts","../../../node_modules/rxjs/internal/util/argumentoutofrangeerror.d.ts","../../../node_modules/rxjs/internal/util/emptyerror.d.ts","../../../node_modules/rxjs/internal/util/objectunsubscribederror.d.ts","../../../node_modules/rxjs/internal/util/unsubscriptionerror.d.ts","../../../node_modules/rxjs/internal/util/timeouterror.d.ts","../../../node_modules/rxjs/internal/observable/bindcallback.d.ts","../../../node_modules/rxjs/internal/observable/bindnodecallback.d.ts","../../../node_modules/rxjs/internal/innersubscriber.d.ts","../../../node_modules/rxjs/internal/outersubscriber.d.ts","../../../node_modules/rxjs/internal/observable/combinelatest.d.ts","../../../node_modules/rxjs/internal/observable/concat.d.ts","../../../node_modules/rxjs/internal/observable/defer.d.ts","../../../node_modules/rxjs/internal/observable/empty.d.ts","../../../node_modules/rxjs/internal/observable/forkjoin.d.ts","../../../node_modules/rxjs/internal/observable/from.d.ts","../../../node_modules/rxjs/internal/observable/fromevent.d.ts","../../../node_modules/rxjs/internal/observable/fromeventpattern.d.ts","../../../node_modules/rxjs/internal/observable/generate.d.ts","../../../node_modules/rxjs/internal/observable/interval.d.ts","../../../node_modules/rxjs/internal/observable/merge.d.ts","../../../node_modules/rxjs/internal/observable/never.d.ts","../../../node_modules/rxjs/internal/observable/of.d.ts","../../../node_modules/rxjs/internal/observable/onerrorresumenext.d.ts","../../../node_modules/rxjs/internal/observable/pairs.d.ts","../../../node_modules/rxjs/internal/observable/partition.d.ts","../../../node_modules/rxjs/internal/observable/race.d.ts","../../../node_modules/rxjs/internal/observable/range.d.ts","../../../node_modules/rxjs/internal/observable/timer.d.ts","../../../node_modules/rxjs/internal/observable/using.d.ts","../../../node_modules/rxjs/internal/observable/zip.d.ts","../../../node_modules/rxjs/internal/scheduled/scheduled.d.ts","../../../node_modules/rxjs/internal/config.d.ts","../../../node_modules/rxjs/index.d.ts","../../../node_modules/@types/through/index.d.ts","../../../node_modules/@types/inquirer/lib/objects/choice.d.ts","../../../node_modules/@types/inquirer/lib/objects/separator.d.ts","../../../node_modules/@types/inquirer/lib/objects/choices.d.ts","../../../node_modules/@types/inquirer/lib/utils/screen-manager.d.ts","../../../node_modules/@types/inquirer/lib/prompts/base.d.ts","../../../node_modules/@types/inquirer/lib/utils/paginator.d.ts","../../../node_modules/@types/inquirer/lib/prompts/checkbox.d.ts","../../../node_modules/@types/inquirer/lib/prompts/confirm.d.ts","../../../node_modules/@types/inquirer/lib/prompts/editor.d.ts","../../../node_modules/@types/inquirer/lib/prompts/expand.d.ts","../../../node_modules/@types/inquirer/lib/prompts/input.d.ts","../../../node_modules/@types/inquirer/lib/prompts/list.d.ts","../../../node_modules/@types/inquirer/lib/prompts/number.d.ts","../../../node_modules/@types/inquirer/lib/prompts/password.d.ts","../../../node_modules/@types/inquirer/lib/prompts/rawlist.d.ts","../../../node_modules/@types/inquirer/lib/ui/baseui.d.ts","../../../node_modules/@types/inquirer/lib/ui/bottom-bar.d.ts","../../../node_modules/@types/inquirer/lib/ui/prompt.d.ts","../../../node_modules/@types/inquirer/lib/utils/events.d.ts","../../../node_modules/@types/inquirer/lib/utils/readline.d.ts","../../../node_modules/@types/inquirer/lib/utils/utils.d.ts","../../../node_modules/@types/inquirer/index.d.ts","../../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/difflines.d.ts","../../../node_modules/jest-diff/build/printdiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/jest/ts3.2/index.d.ts","../../../node_modules/@types/js-yaml/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/lodash.merge/index.d.ts","../../../node_modules/@types/lowdb/index.d.ts","../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/@types/progress/index.d.ts","../../../node_modules/@types/tinycolor2/index.d.ts"],"fileInfos":[{"version":"6adbf5efd0e374ff5f427a4f26a5a413e9734eee5067a0e86da69aea41910b52","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","378df8bbbb9e3f6fca05d58f644aab538e1062eab5e778fb0b83d41125df246d","d88a479cccf787b4aa82362150fbeba5211a32dbfafa7b92ba6995ecaf9a1a89","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c24ad9be9adf28f0927e3d9d9e9cec1c677022356f241ccbbfb97bfe8fb3d1a1","0ec0998e2d085e8ea54266f547976ae152c9dd6cdb9ac4d8a520a230f5ebae84","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","6ac6f24aff52e62c3950461aa17eab26e3a156927858e6b654baef0058b4cd1e",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"499b66b9ed32d339c0227f5c839719d15a15aeb2cac7a6ef1d078e6a8ae9a818",{"version":"7853d19a0afd97032a9053fdea1dd2a0888756eac7c5817c9722668c72f421a9","signature":"dee0e5b8a88c6e3ca2fc9cb2ff8299ca80814ed1e00fc4e4d6bb3c49041542fd"},{"version":"8c8ae742be0ae65890c088f020aabe4fe3bc101c5e17ac8440df68b206706b95","signature":"c4e44127784f2fc7be77a2ca7476ef7aa79e6bdcb4edea6e5fcf4cc8788b54f1"},"f212c443c26f61e0d3b81a830982e6f8c128156f7deb1490642eeca69edcf180","e8406ad8d11f39e7693cc2ccb4ee6f8348032144df9fb8b1aa5f5fac88da8a2f",{"version":"79b3c7594d5bf576cf10e372a30c9f792ba2cd6bb5bba756ea872855b7e35802","signature":"f54000838e1a1d2d627f7756a1e95e7645fb6351ac0fe5c03a8795da5bafed21"},"4ad87367f0baf0e4f02b8c7c7c8da88ef51c2859b090fd8910a910c185187a88","1f4f97f5c6c43d972eba611693dee681c6caf28c63db1427ff96e407f0bdf812",{"version":"fa5acc6196efac6d62f8daba0081d64d1067c7969f4626bb3003c992bd5d4116","signature":"df54c91acbc9bb72f398acb6bf901c376bef4293728a20de243381e5f35c3728"},{"version":"0c207d6046d0f9fdb2ab8a988f5029c3c03c9d180903566cdc3261a6076cc625","signature":"fb84a6ddd09160ffe9cb62fc6b5ebb6b2131449cdc63eb9549dbd7c5231d9562"},{"version":"4dd2db222b9cb28e3ab92c376424812b01964059edb40874539173c16a303a55","signature":"c33df1799e475e6eaec8e0f137a67c45dcdd92b66083be0a49f1ec7afdc9340d"},"b143797f2cc8570ab79df4e0e3387841ca3cda61a75f028807e637b70f94f02d",{"version":"c8fbd0782df14cde27a5f1d2f68fe8b82c3c096d351164182a022efb850e1644","signature":"6268522ee5e43d926ae1090d6848d4f3e1881c81a4210cb3b240370f152e8d18"},{"version":"a214a0429a8907c26bb431e7cccb7a18233355836aaa0fdb9126967dbc27b04c","signature":"75f4e806a6033dd03e1d5f3e78c72020da7209977ad3a32dd15128ed1fd0f8e3"},{"version":"bddc53cf42b22e6e7fd9f07238270778422ba7c74cee94c76007c4d773407128","signature":"6953af876fd0ff1381fa7f89d16e493f8d84d4d04a1353a9174a8f9220de99a4"},{"version":"fcc2b26e4c3bc514bb5e9f5165947f798a6687125a633bda7b4ec28a42cc6dca","signature":"1e9da47313e6db43d6a3d88c0de86d77f5f182d18b9189f3e75b5939d3de3007"},{"version":"67310ceeb7cbe33e5b7836bbb8de14398a5c402168a3d71343812054821cb22e","signature":"6732aaaee3a434922440af9f27be562ff0c16fb19a50753e77807709349fb43d"},{"version":"f737b592cafd16c7087bbdb8bd8d6475571a00f974424ca3e1f926142729db34","signature":"63aa6988d7c691c84fd33650b589d9a6395361b829d2db0da410101b1280b6d1"},{"version":"56a26b5ece30626fb8fbbd86586dd1e1e8e8d2a99e0ab4b3a0d51336363a8e4c","signature":"863de44d3b0643458ddf8cc72cf7f81a950ad96f231d9410fb225549c3d63576"},{"version":"ed6dcfe11505dd54503928ac4511608182333ac410f2dc8514c7312e9697c800","signature":"3ea08d4ec0c16fc10d9fb5d28524432f7361be7993e48697fc3adb8813d0968d"},{"version":"356e773501cfb0bf87381fe6100bb12a266d3d883029704b626a79737c8376da","signature":"6f8342e145ff2111f77c72fc3b73e5fa0e60eeaa39bd0d7374474f06412379ca"},{"version":"13f9929842b5a7ea0ff93b863d1bcf1e8ace89285b7fa0044e43976770a62a27","signature":"69562417d55db6a00ba649b62dee63ef8514a01475f0fcb39e43e3b17552b3b8"},"1be6877e088889da2ec69716af1c93cb8297021e3bc3c915714001d3259b4656",{"version":"e67ec5149a7abff821f5a99694ac3c58e7ee0974bfe5070b1801da65783e13c8","signature":"d6031e0a5a0eadeb55465cc079e948131c5d96851d9fee3469162528ad3e16dc"},{"version":"635c0e05a5ad26f24f67be5b3a28e6ada2a203128cafa427300721e197df6c71","affectsGlobalScope":true},"ba19b2d72419c9c74b04069b26f1a8a6fc4058f7aaff70fb7e52d1530b0d2f30","d7b12d89dac50d74fc6e17b4429a2547026b6655d9a983bd442510770e68cca3","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","3636dedd85f87967bea828be43351ae2b4348c8b7c196512fb67f73d21b6db3b","9c6f28ec1fc6ee0767e9eecb57f8e22dfbe9c48497247ba3e1252f0379f0806c",{"version":"be86caf800642bb0df4e528c6cd7f8221508adf3965a63e6af2b8a355daa36e6","signature":"4a3e378de7f969f0eb0c6960ea406d408e9d06c40a1e0890ac27e38990891892"},{"version":"0875d71f48051f81cee80e4c5b75c7cff30c8901e0c5881d3b604ff766d8617d","affectsGlobalScope":true},"df575ddfda5f77d97fc62c01fa5de0c3bd896cfcaf5c93949292681ab922710f","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","3777eb752cef9aa8dd35bb997145413310008aa54ec44766de81a7ad891526cd","272c2dac4baaf7fdd2d7efeef0fa2547af54cc21883c5e138b8c4d1661697a54","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","64b867c61effed7b5bc0cc06b3d8eac23b067a3fba581fc7d3c292fa593e6a45","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","80164ffebe1723a50e020a648e0623c026ff39be13c5cd45e6a82d0fcc06e2d0","d555cd63a3fc837840db192596273fdf52fb28092b0a33bec98e89a0334b3a4c",{"version":"dc5f6951bbf5b544349cbdef895c08dee6929818abd27d7d53c38cf1209091b3","affectsGlobalScope":true},"85d545d430795d54a8b2896f67f9aeb7bf19fd74a1469ae0627311eb72f0dfa2","a473cf45c3d9809518f8af913312139d9f4db6887dc554e0d06d0f4e52722e6b","d5afcd002167b6b03d595fb8b9630a00456b6fb9d2c5e8b6aaa30cb31bc44e2b","3d68ecf05475492f041c88395372c3a01b30351619bebcd38287ab185be7f7e4",{"version":"a97ac401f6b334e9b1f6c8ee9319d6e21cc39d2f400e909805dfb8ab5eab0576","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","7674b65ac0a3b160232d84464b3486d727415581e5b99ff4aec324500adc98a4","87f16999a5832968485f6e20dd70529399143c3cf35003485020a037f338b75f","c6d4108ff964f5407f128d651d3ba5b15882cd40a0dfb63918af437d967db44b",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"8f8f6ee2a0c94077f79439f51640a625ac7e2f5dd6866bd3b5a41705c836adfc","affectsGlobalScope":true},"ad908b2432dc4143f3439d3c625255f1050447a0232a1e9c2bffa20f37ec0097","e8d2d40a15313520a510409c8f3aeed28b79aab61af41ae65084570f9843b306","9700d148ccc0784923f66a3a7162e523172b530e8b3aa9834f53a6e893127c80","88587b5c94b0c4f5d78026e4beeb93383b3933c860d9840b55d6bf47d7b632bb","a473ecd14d9bafbd6a33105524b033237bbf1d6ce2cd81eb71cc54bec2d83d55","4e9f66d07d1687983ef1903654f4a4977563a0318046e893c5ecdb4dac25d376","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","7a2a3ff87ffd4313a6a2f3b012e801dd249ee58152cedf90c8718dcd2c811fe3","69640cc2e76dad52daeb9914e6b70c5c9a5591a3a65190a2d3ea432cf0015e16","a39a4c527b7a2dc7a2661b711a534c10c76852c5ad6ae320767d3f7d2621b67d","1bb5c9857b2ee32c199dd85bc0f4c0299112485d6e5dc91428eabfdee0dbd68c",{"version":"5daba568741c8ed283d67bf370c626a91e09fdfbc6d4abe22a7f93e2cf5138b9","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","662661bbf9ccd869f3bca82d34234b2abdc95c657e2187c35352d42dddb24c2d","bec890dbc489a627439ad67330f9418d7f03aed29d1f874e5219a121da040cfa","4c4334eb5d8fae83416a361d787b55a5743916aed8af812a909898bc7333e709","6feb6f75a3e4e017f8e6e12740cf06f18eefcf829284fa310da6c7f4d44fb2eb","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","0953427f9c2498f71dd912fdd8a81b19cf6925de3e1ad67ab9a77b9a0f79bf0b","b709ff1f6d6235f5e9c8dcbce3e683ff24ec35046b232d5a281af083026018d1","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","ee6a154ecccde26b413e89c97a0b824f25b253c4c50a3c392bcb2b4c6ba9c314","d9a653f75614c4d3f63e88b7aae66390bf71a8cea02f5f7db8ca6c1a8e8c3f1a","a364b4a8a015ae377052fa4fac94204d79a69d879567f444c7ceff1b7a18482d","c5ec3b97d9db756c689cd11f4a11eaa9e6077b2768e3e9b54ff727a93c03a909","c14e9e86f18189c7d32b5dd03b4cf3f40bed68f0509dec06d75d41b82c065fe2","bdb07038733b2d74a75ba9c381dcb92774cd6f161ee125bfa921eae7d883ccc9","ad93e960a3a07dff7394bf0c8a558006a9ff2d0725ab28fc33dec227d4cb251e",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"11dbfb02b6464018e215cbc26a3c38c45a0ae5ef89a58ee992220af1ad11fc97","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438","cf0b62aa311100fcff8104f9677664878ae745cb45224b878c6cb9a2fa0bc48b","ce6bde516377b2ba64c5f390598fcaa9eacce36660c32aa13de6170e6cca6cab","95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2","393137c76bd922ba70a2f8bf1ade4f59a16171a02fb25918c168d48875b0cfb0","6cb35d83d21a7e72bd00398c93302749bcd38349d0cc5e76ff3a90c6d1498a4d","051451ceae7f29c8f17b810e6a6d8d270c67b401866f487cdc50c5c1a8b3f511","2632057d8b983ee33295566088c080384d7d69a492bc60b008d6a6dfd3508d6b","4bf71cf2a94492fc71e97800bdf2bcb0a9a0fa5fce921c8fe42c67060780cbfa","0996ff06f64cb05b6dac158a6ada2e16f8c2ccd20f9ff6f3c3e871f1ba5fb6d9","5c492d01a19fea5ebfff9d27e786bc533e5078909521ca17ae41236f16f9686a","a6ee930b81c65ec79aca49025b797817dde6f2d2e9b0e0106f0844e18e2cc819","84fce15473e993e6b656db9dd3c9196b80f545647458e6621675e840fd700d29","7d5336ee766aa72dffb1cc2a515f61d18a4fb61b7a2757cbccfb7b286b783dfb","63e96248ab63f6e7a86e31aa3e654ed6de1c3f99e3b668e04800df05874e8b77",{"version":"ed164267a8b206892d69768f51e6e7157ad0a6e89745fbd39f3e81c4700e9a9e","affectsGlobalScope":true},"06a20cc7d937074863861ea1159ac783ff97b13952b4b5d1811c7d8ab5c94776","ab6de4af0e293eae73b67dad251af097d7bcc0b8b62de84e3674e831514cb056","18cbd79079af97af66c9c07c61b481fce14a4e7282eca078c474b40c970ba1d0","e7b45405689d87e745a217b648d3646fb47a6aaba9c8d775204de90c7ea9ff35","669b754ec246dd7471e19b655b73bda6c2ca5bb7ccb1a4dff44a9ae45b6a716a","bcfaca4a8ff50f57fd36df91fba5d34056883f213baff7192cbfc4d3805d2084","76a564b360b267502219a89514953058494713ee0923a63b2024e542c18b40e5","8f62cbd3afbd6a07bb8c934294b6bfbe437021b89e53a4da7de2648ecfc7af25","a20629551ed7923f35f7556c4c15d0c8b2ebe7afaa68ceaab079a1707ba64be2","d6de66600c97cd499526ddecea6e12166ab1c0e8d9bf36fb2339fd39c8b3372a","8e7a5b8f867b99cc8763c0b024068fb58e09f7da2c4810c12833e1ca6eb11c4f","a8932876de2e3138a5a27f9426b225a4d27f0ba0a1e2764ba20930b4c3faf4b9","df877050b04c29b9f8409aa10278d586825f511f0841d1ec41b6554f8362092b","027d600e00c5f5e1816c207854285d736f2f5fa28276e2829db746d5d6811ba1","5443113a16ef378446e08d6500bb48b35de582426459abdb5c9704f5c7d327d9","0fb581ecb53304a3c95bb930160b4fa610537470cce850371cbaad5a458ca0d9","7da4e290c009d7967343a7f8c3f145a3d2c157c62483362183ba9f637a536489","eb21ddc3a8136a12e69176531197def71dc28ffaf357b74d4bf83407bd845991","914560d0c4c6aa947cfe7489fe970c94ba25383c414bbe0168b44fd20dbf0df4","4fb3405055b54566dea2135845c3a776339e7e170d692401d97fd41ad9a20e5d","8d607832a6ef0eac30657173441367dd76c96bf7800d77193428b922e060c3af","20ff7207f0bb5cdde5fee8e83315ade7e5b8100cfa2087d20d39069a3d7d06f4","7ca4c534eab7cff43d81327e369a23464bc37ef38ce5337ceff24a42c6c84eb2","5252dec18a34078398be4e321dee884dc7f47930e5225262543a799b591b36d2","23caed4dff98bd28157d2b798b43f1dfefe727f18641648c01ce4e0e929a1630","f67e013d5374826596d7c23dbae1cdb14375a27cd72e16c5fb46a4b445059329","ea3401b70e2302683bbf4c18b69ef2292b60f4d8f8e6d920413b81fb7bde0f65","71afe26642c0fb86b9f8b1af4af5deb5181b43b6542a3ff2314871b53d04c749","0d7f01634e6234d84cf0106508efdb8ae00e5ed126eff9606d37b031ac1de654","f8d209086bad78af6bd7fef063c1ed449c815e6f8d36058115f222d9f788b848","3ad003278d569d1953779e2f838f7798f02e793f6a1eceac8e0065f1a202669b","fb2c5eceffcd918dbb86332afa0199f5e7b6cf6ee42809e930a827b28ef25afe","f664aaff6a981eeca68f1ff2d9fd21b6664f47bf45f3ae19874df5a6683a8d8a","ce066f85d73e09e9adbd0049bcf6471c7eefbfc2ec4b5692b5bcef1e36babd2a","09d302513cacfbcc54b67088739bd8ac1c3c57917f83f510b2d1adcb99fd7d2a","3faa54e978b92a6f726440c13fe3ab35993dc74d697c7709681dc1764a25219f","2bd0489e968925eb0c4c0fb12ef090be5165c86bd088e1e803102c38d4a717d8","88924207132b9ba339c1adb1ed3ea07e47b3149ff8a2e21a3ea1f91cee68589d","b8800b93d8ab532f8915be73f8195b9d4ef06376d8a82e8cdc17c400553172d6","d7d469703b78beba76d511957f8c8b534c3bbb02bea7ab4705c65ef573532fb8","74c8c3057669c03264263d911d0f82e876cef50b05be21c54fef23c900de0420","b303eda2ff2d582a9c3c5ecb708fb57355cdc25e8c8197a9f66d4d1bf09fda19","4e5dc89fa22ff43da3dee1db97d5add0591ebaff9e4adef6c8b6f0b41f0f60f0","ec4e82cb42a902fe83dc13153c7a260bee95684541f8d7ef26cb0629a2f4ca31","5f36e24cd92b0ff3e2a243685a8a780c9413941c36739f04b428cc4e15de629d","40a26494e6ab10a91851791169582ab77fed4fbd799518968177e7eefe08c7a9","208e125b45bc561765a74f6f1019d88e44e94678769824cf93726e1bac457961","b3985971de086ef3aa698ef19009a53527b72e65851b782dc188ac341a1e1390","c81d421aabb6113cd98b9d4f11e9a03273b363b841f294b457f37c15d513151d","30063e3a184ff31254bbafa782c78a2d6636943dfe59e1a34f451827fd7a68dc","c05d4cae0bceed02c9d013360d3e65658297acb1b7a90252fe366f2bf4f9ccc9","6f14b92848889abba03a474e0750f7350cc91fc190c107408ca48679a03975ae","a588d0765b1d18bf00a498b75a83e095aef75a9300b6c1e91cbf39e408f2fe2f","656424ca784760c679bf2677d8aaf55d1cb8452cd0ac04bbe1c0f659f45f8c11","5d2651c679f59706bf484e7d423f0ec2d9c79897e2e68c91a3f582f21328d193","30d49e69cb62f350ff0bc5dda1c557429c425014955c19c557f101c0de9272e7","d3747dbed45540212e9a906c2fb8b5beb691f2cd0861af58a66dc01871004f38","05a21cbb7cbe1ec502e7baca1f4846a4e860d96bad112f3e316b995ba99715b7","1eaee2b52f1c0e1848845a79050c1d06ae554d8050c35e3bf479f13d6ee19dd5","fd219904eea67c470dfebbaf44129b0db858207c3c3b55514bdc84de547b1687","4de232968f584b960b4101b4cdae593456aff149c5d0c70c2389248e9eb9fbac","933c42f6ed2768265dfb42faa817ce8d902710c57a21a1859a9c3fe5e985080e","c5430542eeebb207d651e8b00a08e4bb680c47ecb73dd388d8fa597a1fc5de5b","a6c5c9906262cf10549989c0061e5a44afdc1f61da77d5e09418a9ecea0018fe","bc6e433cb982bf63eaa523dbbbd30fe12960a09861b352d77baf77ad6dd8886d","9af64ab00918f552388252977c1569fe31890686ca1fdb8e20f58d3401c9a50c","3d3cc03b5c6e056c24aac76789f4bc67caee98a4f0774ab82bc8ba34d16be916","747ce36fa27a750a05096f3610e59c9b5a55e13defec545c01a75fd13d67b620","1a8f503c64bdb36308f245960d9e4acac4cf65d8b6bd0534f88230ebf0be7883","a2c1f4012459547d62116d724e7ec820bb2e6848da40ea0747bf160ffd99b283","0dc197e52512a7cbea4823cc33c23b0337af97bd59b38bf83be047f37cd8c9a8","492c93ade227fe4545fabb3035b9dd5d57d8b4fde322e5217fdaef20aa1b80a8","83c54a3b3e836d1773b8c23ff76ce6e0aae1a2209fc772b75e9de173fec9eac0","475e411f48f74c14b1f6e50cc244387a5cc8ce52340dddfae897c96e03f86527","5573ce7aa683a81c9a727294ffdb47d82d7715a148bfe9f4ddcf2f6cdfef1f0a","2cd9edbb4a6411a9f5258237dd73323db978d7aa9ebf1d1b0ac79771ac233e24","e222104af6cb9415238ad358488b74d76eceeff238c1268ec6e85655b05341da","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","eba230221317c985ab1953ccc3edc517f248b37db4fef7875cb2c8d08aff7be7","b83e796810e475da3564c6515bc0ae9577070596a33d89299b7d99f94ecfd921","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"f624e578325b8c58e55b30c998b1f4c3ec1b61a9fa66373da4250c89b7880d44","affectsGlobalScope":true},{"version":"d3002f620eab4bf6476c9da5c0efb2041d46f7df8b3032a5631bd206abef2c75","affectsGlobalScope":true},"c303a72d3128054d400767264e6f5414b86bf29c1b11730c45027f2213e82f34","3594c022901a1c8993b0f78a3f534cfb81e7b619ed215348f7f6882f3db02abc","438284c7c455a29b9c0e2d1e72abc62ee93d9a163029ffe918a34c5db3b92da2","0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","c9f396e71966bd3a890d8a36a6a497dbf260e9b868158ea7824d4b5421210afe","509235563ea2b939e1bbe92aae17e71e6a82ceab8f568b45fb4fce7d72523a32","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","c311349ec71bb69399ffc4092853e7d8a86c1ca39ddb4cd129e775c19d985793","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","4908e4c00832b26ce77a629de8501b0e23a903c094f9e79a7fec313a15da796a","2630a7cbb597e85d713b7ef47f2946d4280d3d4c02733282770741d40672b1a5",{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true},"a25713e4a4769ba11d2a1bc317250334968b0a892d3342d285a0e238c537af09","bafb812b339ee0f79ef5c47a7e3211dab8ea1f94db44f2d3f0806856561d57d0","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","972f1e91dab93b182624a17eeed02f683b8cb3fefbda7b689cc84570029d5f73","9895aad6ad1d505e2b03c8e41c8643b60a813ad130eb68f843b736b2db7d42e1","cbb21f1320a64785fe24657e8c268e18836dc31abfff96feea912e65d5c37d52","27bd05635cf2be7e3f75f375de542eab00cbb24c6b9961d37a0bf99fd344d1fc"],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":1,"outDir":"./","skipLibCheck":true,"sourceMap":false,"target":2},"fileIdsList":[[77],[75],[77,78,79,80,81],[77,79],[96,126],[128],[129],[29,31,32,33,34,35,36,37,38,39,40,41],[29,30,32,33,34,35,36,37,38,39,40,41],[30,31,32,33,34,35,36,37,38,39,40,41],[29,30,31,33,34,35,36,37,38,39,40,41],[29,30,31,32,34,35,36,37,38,39,40,41],[29,30,31,32,33,35,36,37,38,39,40,41],[29,30,31,32,33,34,36,37,38,39,40,41],[29,30,31,32,33,34,35,37,38,39,40,41],[29,30,31,32,33,34,35,36,38,39,40,41],[29,30,31,32,33,34,35,36,37,39,40,41],[29,30,31,32,33,34,35,36,37,38,40,41],[29,30,31,32,33,34,35,36,37,38,39,41],[29,30,31,32,33,34,35,36,37,38,39,40],[95,96,103,112],[87,95,103],[119],[91,96,104],[112],[93,95,103],[95],[95,97,112,118],[96],[103,112,118],[95,96,98,103,112,115,118],[98,112,115,118],[83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125],[118],[93,95,112],[85],[117],[110,119,121],[103],[109],[95,97,112,118,121],[133],[68,69],[41,44,46,47,54,55,56,57],[41,46,54],[46,58],[41,46,47,55],[41,44,46,47,54,55,56],[47],[41,47,59,62],[58,59,60,61,96,105],[41,59,60],[41,57],[45],[46,58,62,63,64],[42,48,49],[42],[42,43,44,48,49,50,51,52,53],[43,44,49,50,51],[42,43],[43,44,49],[41,70,96,105],[54,65,72],[95,126,137],[110,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,220,221,222,223,224],[225],[204,205,225],[110,202,207,225],[110,208,209,225],[110,208,225],[110,202,208,225],[110,214,225],[110,225],[203,219,225],[202,219,225],[110,202],[207],[110],[202,225],[230,232],[233],[248],[236,238,239,240,241,242,243,244,245,246,247,248,250],[236,237,239,240,241,242,243,244,245,246,247,248,250],[237,238,239,240,241,242,243,244,245,246,247,248,250],[236,237,238,240,241,242,243,244,245,246,247,248,250],[236,237,238,239,241,242,243,244,245,246,247,248,250],[236,237,238,239,240,242,243,244,245,246,247,248,250],[236,237,238,239,240,241,243,244,245,246,247,248,250],[236,237,238,239,240,241,242,244,245,246,247,248,250],[236,237,238,239,240,241,242,243,245,246,247,248,250],[236,237,238,239,240,241,242,243,244,246,247,248,250],[236,237,238,239,240,241,242,243,244,245,247,248,250],[236,237,238,239,240,241,242,243,244,245,246,248,250],[236,237,238,239,240,241,242,243,244,245,246,247],[236,237,238,239,240,241,242,243,244,245,246,247,248],[98,118,126,251,252],[98,112,126],[126],[112,126],[226,227],[226,227,228,229],[231],[139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,158,159,161,163,164,165,166,167,168,169,170,171,172,173,174,175,176,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201],[139,141,146],[141,178],[140,145],[139,140,141,142,143,144],[140,141,142,145,178],[139,141,145,146],[145],[145,185],[139,140,141,145],[140,141,142,145],[140,141],[139,140,141,145,146],[141,177],[139,140,141,146],[202],[139,140,154],[139,140,153],[162],[155,156],[157],[155],[139,140,154,155],[139,140,153,154,156],[160],[139,140,155,156],[139,140,141,142,145],[139,140],[140],[139,145],[46,47,54],[46],[54]],"referencedMap":[[79,1],[76,2],[82,3],[78,1],[80,4],[81,1],[127,5],[129,6],[130,7],[30,8],[31,9],[29,10],[32,11],[33,12],[34,13],[35,14],[36,15],[37,16],[38,17],[39,18],[40,19],[41,20],[87,21],[88,22],[89,23],[90,24],[91,25],[92,26],[94,27],[95,27],[96,28],[97,29],[98,30],[99,31],[100,32],[126,33],[101,27],[102,34],[103,35],[106,36],[107,37],[110,27],[111,38],[112,27],[115,39],[117,39],[118,40],[120,25],[123,41],[124,25],[134,42],[70,43],[58,44],[64,45],[47,46],[56,47],[63,48],[55,49],[60,50],[62,51],[61,52],[59,53],[46,54],[65,55],[50,56],[49,57],[54,58],[52,59],[44,60],[51,61],[71,62],[74,63],[138,64],[225,65],[204,66],[206,67],[205,66],[208,68],[210,69],[211,70],[212,71],[213,69],[214,70],[215,69],[216,72],[217,70],[218,69],[219,73],[220,74],[221,75],[222,76],[209,77],[223,78],[207,78],[224,79],[233,80],[234,81],[249,82],[237,83],[238,84],[236,85],[239,86],[240,87],[241,88],[242,89],[243,90],[244,91],[245,92],[246,93],[247,94],[248,95],[250,96],[253,97],[251,98],[254,99],[203,100],[228,101],[230,102],[229,101],[232,103],[202,104],[152,105],[150,105],[177,106],[165,107],[145,108],[175,107],[176,107],[179,109],[180,107],[147,110],[181,107],[182,107],[183,107],[184,107],[185,111],[186,112],[187,107],[143,107],[188,107],[189,107],[190,111],[191,107],[192,107],[193,113],[194,107],[195,109],[196,107],[144,107],[197,107],[198,107],[199,114],[142,115],[148,116],[178,117],[151,118],[200,119],[153,120],[154,121],[163,122],[162,123],[158,124],[157,123],[159,125],[156,126],[155,127],[161,128],[160,125],[164,129],[146,130],[141,131],[139,132],[140,133],[169,111],[166,132]],"exportedModulesMap":[[79,1],[76,2],[82,3],[78,1],[80,4],[81,1],[127,5],[129,6],[130,7],[30,8],[31,9],[29,10],[32,11],[33,12],[34,13],[35,14],[36,15],[37,16],[38,17],[39,18],[40,19],[41,20],[87,21],[88,22],[89,23],[90,24],[91,25],[92,26],[94,27],[95,27],[96,28],[97,29],[98,30],[99,31],[100,32],[126,33],[101,27],[102,34],[103,35],[106,36],[107,37],[110,27],[111,38],[112,27],[115,39],[117,39],[118,40],[120,25],[123,41],[124,25],[134,42],[70,43],[58,134],[64,45],[47,135],[63,136],[46,54],[65,55],[50,56],[49,57],[54,58],[52,59],[44,60],[51,61],[71,62],[74,63],[138,64],[225,65],[204,66],[206,67],[205,66],[208,68],[210,69],[211,70],[212,71],[213,69],[214,70],[215,69],[216,72],[217,70],[218,69],[219,73],[220,74],[221,75],[222,76],[209,77],[223,78],[207,78],[224,79],[233,80],[234,81],[249,82],[237,83],[238,84],[236,85],[239,86],[240,87],[241,88],[242,89],[243,90],[244,91],[245,92],[246,93],[247,94],[248,95],[250,96],[253,97],[251,98],[254,99],[203,100],[228,101],[230,102],[229,101],[232,103],[202,104],[152,105],[150,105],[177,106],[165,107],[145,108],[175,107],[176,107],[179,109],[180,107],[147,110],[181,107],[182,107],[183,107],[184,107],[185,111],[186,112],[187,107],[143,107],[188,107],[189,107],[190,111],[191,107],[192,107],[193,113],[194,107],[195,109],[196,107],[144,107],[197,107],[198,107],[199,114],[142,115],[148,116],[178,117],[151,118],[200,119],[153,120],[154,121],[163,122],[162,123],[158,124],[157,123],[159,125],[156,126],[155,127],[161,128],[160,125],[164,129],[146,130],[141,131],[139,132],[140,133],[169,111],[166,132]],"semanticDiagnosticsPerFile":[79,77,76,82,78,80,81,75,127,128,129,130,69,30,31,29,32,33,34,35,36,37,38,39,40,41,83,85,86,87,88,89,90,91,92,93,94,95,96,97,84,125,98,99,100,126,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,131,132,133,134,45,70,68,8,7,2,9,10,11,12,13,14,15,16,3,4,20,17,18,19,21,22,23,5,24,25,26,27,1,28,6,58,64,47,56,63,55,60,57,62,61,59,46,65,50,42,49,48,54,53,52,44,51,43,66,67,71,72,73,74,135,136,138,225,204,206,205,208,210,211,212,213,214,215,216,217,218,219,220,221,222,209,223,207,224,233,234,235,249,237,238,236,239,240,241,242,243,244,245,246,247,248,250,137,252,253,251,254,203,255,226,228,230,229,227,232,231,202,152,150,201,177,165,145,175,176,179,180,147,181,182,183,184,185,186,187,143,188,189,190,191,192,193,194,195,196,144,197,198,199,142,148,178,151,200,153,154,163,162,158,157,159,156,155,161,160,164,146,141,139,149,140,170,171,168,169,167,172,166,174,173]},"version":"4.5.2"}
|
package/lib/types/basic/app.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.ts","sourceRoot":"","sources":["../../../types/basic/app.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,UAAU,CAAA;AAC/C,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAA;AAC1C,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AAExC,MAAM,WAAW,IAAI;IACnB;;;;;OAKG;IAEH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;;;;OAKG;IACH,OAAO,CAAC,EAAE,MAAM,CAAA;IAEhB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAA;IAEpB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;IAEf;;OAEG;IACH,UAAU,CAAC,EAAE,GAAG,CAAA;
|
|
1
|
+
{"version":3,"file":"app.d.ts","sourceRoot":"","sources":["../../../types/basic/app.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,UAAU,CAAA;AAC/C,OAAO,EAAE,WAAW,EAAE,MAAM,cAAc,CAAA;AAC1C,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAA;AAExC,MAAM,WAAW,IAAI;IACnB;;;;;OAKG;IAEH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IAEd;;;;;OAKG;IACH,OAAO,CAAC,EAAE,MAAM,CAAA;IAEhB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAA;IAEpB;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;IAEf;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IAEhC;;OAEG;IACH,MAAM,CAAC,EAAE,GAAG,CAAA;IAEZ;;OAEG;IACH,KAAK,EAAE,UAAU,EAAE,CAAA;IAEnB;;OAEG;IACH,WAAW,CAAC,EAAE,WAAW,EAAE,CAAA;IAE3B;;;;OAIG;IACH,SAAS,CAAC,EAAE,SAAS,EAAE,CAAA;IAEvB;;OAEG;IACH,SAAS,CAAC,EAAE,SAAS,EAAE,CAAA;IAEvB;;OAEG;IACH,KAAK,CAAC,EAAE,GAAG,CAAA;CACZ"}
|
|
@@ -6,7 +6,7 @@ import { IEvents } from '../basic/component';
|
|
|
6
6
|
/**
|
|
7
7
|
* 云开发低码平台应用
|
|
8
8
|
*/
|
|
9
|
-
export interface IPlatformApp extends Omit<Basic.IApp, 'attributes' | 'events' | 'listeners'> {
|
|
9
|
+
export interface IPlatformApp extends Omit<Basic.IApp, 'attributes' | 'events' | 'listeners' | 'items' | 'resources'> {
|
|
10
10
|
/**
|
|
11
11
|
* 必填, 应用的组件集合
|
|
12
12
|
*/
|
|
@@ -39,7 +39,11 @@ export interface IPlatformApp extends Omit<Basic.IApp, 'attributes' | 'events' |
|
|
|
39
39
|
* 应用依赖和依赖对应版本信息,包含组件库,数据源sdk,应用运行时
|
|
40
40
|
* IDependencies
|
|
41
41
|
*/
|
|
42
|
-
dependencies
|
|
42
|
+
dependencies?: IDependencies;
|
|
43
|
+
/** 应用所在环境ID */
|
|
44
|
+
envId?: string;
|
|
45
|
+
/** 应用 id */
|
|
46
|
+
id?: string;
|
|
43
47
|
}
|
|
44
48
|
/**
|
|
45
49
|
* 格式和npm一样
|
|
@@ -65,12 +69,27 @@ export declare type IDependencies = {
|
|
|
65
69
|
[key: string]: string;
|
|
66
70
|
};
|
|
67
71
|
export interface IPlatformAppExtra {
|
|
72
|
+
/**
|
|
73
|
+
* 应用统一路由模式
|
|
74
|
+
*/
|
|
68
75
|
historyType?: 'HASH' | 'BROWSER';
|
|
76
|
+
/**
|
|
77
|
+
* 额外 npm 依赖
|
|
78
|
+
*/
|
|
69
79
|
npmDependencies?: {
|
|
70
80
|
[key: string]: string;
|
|
71
81
|
};
|
|
82
|
+
/**
|
|
83
|
+
* 预设色彩值
|
|
84
|
+
*/
|
|
72
85
|
presetColors?: string[];
|
|
86
|
+
/**
|
|
87
|
+
* 生成自增ID极限范围
|
|
88
|
+
*/
|
|
73
89
|
maxID?: number;
|
|
90
|
+
/**
|
|
91
|
+
* 小程序插件
|
|
92
|
+
*/
|
|
74
93
|
plugins?: {
|
|
75
94
|
title: string;
|
|
76
95
|
name: string;
|
|
@@ -78,10 +97,19 @@ export interface IPlatformAppExtra {
|
|
|
78
97
|
type?: 'kbone' | 'mp';
|
|
79
98
|
version: string;
|
|
80
99
|
}[];
|
|
100
|
+
/**
|
|
101
|
+
* 小程序子包名 或 web 子页面路径
|
|
102
|
+
*/
|
|
81
103
|
rootPath?: string | null;
|
|
104
|
+
/**
|
|
105
|
+
* 主题定义
|
|
106
|
+
*/
|
|
82
107
|
themeVars?: {
|
|
83
108
|
[key: string]: string;
|
|
84
109
|
};
|
|
110
|
+
/**
|
|
111
|
+
* 应用额外定义
|
|
112
|
+
*/
|
|
85
113
|
appConfig?: {};
|
|
86
114
|
/**
|
|
87
115
|
* 小程序插件描述
|
|
@@ -94,6 +122,16 @@ export interface IPlatformAppExtra {
|
|
|
94
122
|
isMiniProgramPlugins?: boolean;
|
|
95
123
|
})[];
|
|
96
124
|
}[];
|
|
125
|
+
/**
|
|
126
|
+
* 当前页面静态资源域名(html、图片等静态资源)
|
|
127
|
+
*/
|
|
128
|
+
domain?: string;
|
|
129
|
+
/**
|
|
130
|
+
* 隐藏插槽配置
|
|
131
|
+
*/
|
|
132
|
+
compHiddenConfig?: {
|
|
133
|
+
[pageId: string]: string[];
|
|
134
|
+
};
|
|
97
135
|
}
|
|
98
136
|
export interface IPlatformAppLifeCycle extends IEvents {
|
|
99
137
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.ts","sourceRoot":"","sources":["../../../types/platform/app.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,cAAc,CAAA;AACrC,OAAO,EACL,aAAa,EACb,QAAQ,EAGT,MAAM,UAAU,CAAA;AACjB,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAC5C,OAAO,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,MAAM,cAAc,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAA;AAE5C;;GAEG;AACH,MAAM,WAAW,YACf,SAAQ,IAAI,
|
|
1
|
+
{"version":3,"file":"app.d.ts","sourceRoot":"","sources":["../../../types/platform/app.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,cAAc,CAAA;AACrC,OAAO,EACL,aAAa,EACb,QAAQ,EAGT,MAAM,UAAU,CAAA;AACjB,OAAO,EAAE,cAAc,EAAE,MAAM,aAAa,CAAA;AAC5C,OAAO,EAAE,mBAAmB,EAAE,mBAAmB,EAAE,MAAM,cAAc,CAAA;AACvE,OAAO,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAA;AAE5C;;GAEG;AACH,MAAM,WAAW,YACf,SAAQ,IAAI,CACZ,KAAK,CAAC,IAAI,EACV,YAAY,GAAG,QAAQ,GAAG,WAAW,GAAG,OAAO,GAAG,WAAW,CAC5D;IACD;;OAEG;IACH,KAAK,EAAE,cAAc,EAAE,CAAA;IAEvB;;OAEG;IACH,WAAW,CAAC,EAAE,mBAAmB,EAAE,CAAA;IAEnC;;OAEG;IACH,OAAO,CAAC,EAAE,QAAQ,CAAA;IAElB;;;;OAIG;IACH,aAAa,CAAC,EAAE,mBAAmB,EAAE,CAAA;IAErC;;OAEG;IACH,KAAK,CAAC,EAAE,iBAAiB,CAAA;IAEzB;;;;OAIG;IACH,SAAS,CAAC,EAAE,aAAa,EAAE,CAAA;IAE3B;;;OAGG;IACH,YAAY,CAAC,EAAE,aAAa,CAAA;IAe5B,eAAe;IACf,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,YAAY;IACZ,EAAE,CAAC,EAAE,MAAM,CAAA;CACZ;AAED;;;;;;;;;;;;;;;;;;;GAmBG;AACH,oBAAY,aAAa,GAAG;IAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;CACtB,CAAA;AAED,MAAM,WAAW,iBAAiB;IAChC;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IAChC;;OAEG;IACH,eAAe,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAA;IAC3C;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,EAAE,CAAA;IACvB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAA;IACd;;OAEG;IACH,OAAO,CAAC,EAAE;QACR,KAAK,EAAE,MAAM,CAAA;QACb,IAAI,EAAE,MAAM,CAAA;QACZ,MAAM,EAAE,MAAM,CAAA;QACd,IAAI,CAAC,EAAE,OAAO,GAAG,IAAI,CAAA;QACrB,OAAO,EAAE,MAAM,CAAA;KAChB,EAAE,CAAA;IACH;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;IACxB;;OAEG;IACH,SAAS,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAA;IACrC;;OAEG;IACH,SAAS,CAAC,EAAE,EAAE,CAAA;IACd;;OAEG;IACH,kBAAkB,CAAC,EAAE;QACnB,IAAI,EAAE,MAAM,CAAA;QACZ,OAAO,EAAE,MAAM,CAAA;QACf,WAAW,EAAE,MAAM,CAAA;QACnB,gBAAgB,EAAE,CAAC,MAAM,GAAG;YAC1B,oBAAoB,CAAC,EAAE,OAAO,CAAA;SAC/B,CAAC,EAAE,CAAA;KACL,EAAE,CAAA;IAEH;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAA;IAEf;;OAEG;IACH,gBAAgB,CAAC,EAAE;QAAE,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;KAAE,CAAA;CAClD;AAED,MAAM,WAAW,qBAAsB,SAAQ,OAAO;IACpD;;OAEG;IACH,wBAAwB,CAAC,EAAE,MAAM,CAAA;IACjC;;OAEG;IACH,wBAAwB,CAAC,EAAE,MAAM,CAAA;IACjC;;OAEG;IACH,0BAA0B,CAAC,EAAE,MAAM,CAAA;CACpC"}
|
|
@@ -9,7 +9,7 @@ export interface IDataset {
|
|
|
9
9
|
}
|
|
10
10
|
export interface IStateVariable {
|
|
11
11
|
/** 中文名 */
|
|
12
|
-
label
|
|
12
|
+
label?: string;
|
|
13
13
|
/** 变量类型 */
|
|
14
14
|
varType: 'state';
|
|
15
15
|
/**
|
|
@@ -33,10 +33,10 @@ export interface IParamsVariable {
|
|
|
33
33
|
/**
|
|
34
34
|
* 资源类型
|
|
35
35
|
*/
|
|
36
|
-
export declare
|
|
37
|
-
CODE
|
|
38
|
-
LIBRARY
|
|
39
|
-
}
|
|
36
|
+
export declare const EResourceType: {
|
|
37
|
+
readonly CODE: "CODE";
|
|
38
|
+
readonly LIBRARY: "LIBRARY";
|
|
39
|
+
};
|
|
40
40
|
export declare enum ECodeType {
|
|
41
41
|
/**
|
|
42
42
|
* 生命周期
|
|
@@ -81,7 +81,7 @@ export interface ICodeResource extends Basic.IResource {
|
|
|
81
81
|
/**
|
|
82
82
|
* 资源类型
|
|
83
83
|
*/
|
|
84
|
-
type:
|
|
84
|
+
type: 'CODE';
|
|
85
85
|
/**
|
|
86
86
|
* 必填, 代码片段
|
|
87
87
|
*/
|
|
@@ -100,7 +100,7 @@ export interface ICodeResource extends Basic.IResource {
|
|
|
100
100
|
codeType?: string;
|
|
101
101
|
}
|
|
102
102
|
export interface ILibraryResource extends Basic.IResource {
|
|
103
|
-
type:
|
|
103
|
+
type: 'LIBRARY';
|
|
104
104
|
/**
|
|
105
105
|
* 选填, 组件库的版本号
|
|
106
106
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../types/platform/common.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,iBAAiB,CAAA;AACxC,OAAO,EAAE,mBAAmB,EAAE,MAAM,cAAc,CAAA;AAElD,SAAS;AACT,MAAM,WAAW,QAAQ;IACvB,SAAS;IACT,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,cAAc,GAAG,mBAAmB,CAAC,CAAA;IAC5D,eAAe;IACf,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,eAAe,CAAC,CAAA;CACzC;AAED,MAAM,WAAW,cAAc;IAC7B,UAAU;IACV,KAAK,EAAE,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../types/platform/common.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,iBAAiB,CAAA;AACxC,OAAO,EAAE,mBAAmB,EAAE,MAAM,cAAc,CAAA;AAElD,SAAS;AACT,MAAM,WAAW,QAAQ;IACvB,SAAS;IACT,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,cAAc,GAAG,mBAAmB,CAAC,CAAA;IAC5D,eAAe;IACf,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,eAAe,CAAC,CAAA;CACzC;AAED,MAAM,WAAW,cAAc;IAC7B,UAAU;IACV,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,WAAW;IACX,OAAO,EAAE,OAAO,CAAA;IAChB;;;OAGG;IACH,QAAQ,EAAE,MAAM,CAAA;IAChB,UAAU;IACV,YAAY,EAAE,GAAG,CAAA;CAClB;AAED,aAAa;AACb,MAAM,WAAW,eAAe;IAC9B,UAAU;IACV,KAAK,EAAE,MAAM,CAAA;IACb,qBAAqB;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,4BAA4B;IAE5B,qBAAqB;IACrB,WAAW,CAAC,EAAE,MAAM,CAAA;CACrB;AAID;;GAEG;AACH,eAAO,MAAM,aAAa;;;CAGhB,CAAA;AAEV,oBAAY,SAAS;IACnB;;OAEG;IACH,SAAS,cAAc;IACvB;;OAEG;IACH,MAAM,WAAW;IACjB;;OAEG;IACH,KAAK,UAAU;IACf;;OAEG;IACH,SAAS,aAAa;IACtB;;;OAGG;IACH,UAAU,eAAe;IACzB;;;OAGG;IACH,aAAa,kBAAkB;IAC/B;;OAEG;IACH,KAAK,UAAU;IACf;;OAEG;IACH,KAAK,UAAU;IACf;;OAEG;IACH,QAAQ,cAAc;CACvB;AAED,MAAM,WAAW,aAAc,SAAQ,KAAK,CAAC,SAAS;IACpD;;OAEG;IACH,IAAI,EAAE,MAAM,CAAA;IAEZ;;OAEG;IACH,IAAI,EAAE,MAAM,CAAA;IAEZ;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAA;IAEpB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAA;IAEb;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAA;CAClB;AAED,MAAM,WAAW,gBAAiB,SAAQ,KAAK,CAAC,SAAS;IACvD,IAAI,EAAE,SAAS,CAAA;IAEf;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAA;CACjB;AAED;;GAEG;AACH,MAAM,WAAW,iBAAkB,SAAQ,KAAK,CAAC,SAAS;IACxD;;;OAGG;IACH,cAAc,CAAC,EAAE,OAAO,CAAA;IAExB;;OAEG;IACH,EAAE,EAAE,MAAM,CAAA;CACX"}
|
|
@@ -4,11 +4,10 @@ exports.ECodeType = exports.EResourceType = void 0;
|
|
|
4
4
|
/**
|
|
5
5
|
* 资源类型
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
})(EResourceType = exports.EResourceType || (exports.EResourceType = {}));
|
|
7
|
+
exports.EResourceType = {
|
|
8
|
+
CODE: 'CODE',
|
|
9
|
+
LIBRARY: 'LIBRARY',
|
|
10
|
+
};
|
|
12
11
|
var ECodeType;
|
|
13
12
|
(function (ECodeType) {
|
|
14
13
|
/**
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import * as Basic from '../basic/component';
|
|
2
2
|
import { ICodeResource, IDataset, IPlatformListener } from './common';
|
|
3
3
|
import { IDataSourceVariable } from './datasource';
|
|
4
|
+
declare type Values<T> = T[keyof T];
|
|
4
5
|
/**
|
|
5
6
|
* 组件类型
|
|
6
7
|
*/
|
|
7
|
-
export declare
|
|
8
|
-
|
|
9
|
-
COMPLEX
|
|
10
|
-
PAGE
|
|
11
|
-
}
|
|
12
|
-
export interface IPlatformAttributes {
|
|
8
|
+
export declare const EComponentType: {
|
|
9
|
+
readonly BASIC: "BASIC";
|
|
10
|
+
readonly COMPLEX: "COMPLEX";
|
|
11
|
+
readonly PAGE: "PAGE";
|
|
12
|
+
};
|
|
13
|
+
export interface IPlatformAttributes extends Record<string, any> {
|
|
13
14
|
class?: Basic.IAttributes['class'];
|
|
14
15
|
style?: Basic.IAttributes['style'];
|
|
15
|
-
[key: string]: any;
|
|
16
16
|
}
|
|
17
17
|
/**
|
|
18
18
|
* 云开发低码平台组件
|
|
@@ -25,7 +25,7 @@ export interface IPlatformComponent extends Omit<Basic.IComponent, 'value' | 'va
|
|
|
25
25
|
/**
|
|
26
26
|
* 选填, 组件类型
|
|
27
27
|
*/
|
|
28
|
-
type?: EComponentType
|
|
28
|
+
type?: Values<typeof EComponentType>;
|
|
29
29
|
/**
|
|
30
30
|
* 可选, 组件绑定的监听器
|
|
31
31
|
*/
|
|
@@ -111,7 +111,7 @@ export interface IPlatformComponentExtra {
|
|
|
111
111
|
* 默认组件, 由平台提供的组件
|
|
112
112
|
*/
|
|
113
113
|
export interface IBasicComponent extends IPlatformComponent {
|
|
114
|
-
type?:
|
|
114
|
+
type?: 'BASIC';
|
|
115
115
|
items?: (IBasicComponent | IComplexComponent)[];
|
|
116
116
|
/**
|
|
117
117
|
* 可选, 组件所属的组件库
|
|
@@ -122,7 +122,7 @@ export interface IBasicComponent extends IPlatformComponent {
|
|
|
122
122
|
* 自定义组件, 开发者组合已有的默认组件, 得到的新组件
|
|
123
123
|
*/
|
|
124
124
|
export interface IComplexComponent extends IPlatformComponent {
|
|
125
|
-
type?:
|
|
125
|
+
type?: 'COMPLEX';
|
|
126
126
|
items?: (IBasicComponent | IComplexComponent)[];
|
|
127
127
|
/**
|
|
128
128
|
* 可选, 组件所属的组件库
|
|
@@ -133,7 +133,7 @@ export interface IComplexComponent extends IPlatformComponent {
|
|
|
133
133
|
* 页面组件, 描述整个页面的组件
|
|
134
134
|
*/
|
|
135
135
|
export interface IPageComponent extends Omit<IPlatformComponent, 'events'> {
|
|
136
|
-
type:
|
|
136
|
+
type: 'PAGE';
|
|
137
137
|
/** 页面 id,对应页面 path */
|
|
138
138
|
id: string;
|
|
139
139
|
items?: (IBasicComponent | IComplexComponent)[];
|
|
@@ -176,4 +176,5 @@ export interface IPageComponentLifeCycle extends Basic.IEvents {
|
|
|
176
176
|
*/
|
|
177
177
|
lifecycleOnUnloadEventName?: string;
|
|
178
178
|
}
|
|
179
|
+
export {};
|
|
179
180
|
//# sourceMappingURL=component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"component.d.ts","sourceRoot":"","sources":["../../../types/platform/component.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,oBAAoB,CAAA;AAC3C,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,iBAAiB,EAAE,MAAM,UAAU,CAAA;AACrE,OAAO,EAAE,mBAAmB,EAAE,MAAM,cAAc,CAAA;AAElD;;GAEG;AACH,
|
|
1
|
+
{"version":3,"file":"component.d.ts","sourceRoot":"","sources":["../../../types/platform/component.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,9 +4,8 @@ exports.EComponentType = void 0;
|
|
|
4
4
|
/**
|
|
5
5
|
* 组件类型
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
})(EComponentType = exports.EComponentType || (exports.EComponentType = {}));
|
|
7
|
+
exports.EComponentType = {
|
|
8
|
+
BASIC: 'BASIC',
|
|
9
|
+
COMPLEX: 'COMPLEX',
|
|
10
|
+
PAGE: 'PAGE',
|
|
11
|
+
};
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 微搭数据源结构
|
|
3
|
+
*/
|
|
4
|
+
export declare type IPlatformDataSource = IDatabaseDataSource | ICloudIntegrationDataSource;
|
|
1
5
|
/**
|
|
2
6
|
* 数据源基本通用信息
|
|
3
7
|
*/
|
|
@@ -12,8 +16,12 @@ export interface IDataSourceBase {
|
|
|
12
16
|
* 数据源标识
|
|
13
17
|
*/
|
|
14
18
|
name: string;
|
|
15
|
-
/**
|
|
19
|
+
/**
|
|
20
|
+
* 数据源类型
|
|
21
|
+
*/
|
|
16
22
|
type: string;
|
|
23
|
+
/** 数据源子类型 */
|
|
24
|
+
subType?: string;
|
|
17
25
|
/** 数据源描述信息 */
|
|
18
26
|
description: string;
|
|
19
27
|
/** 数据源模型信息 */
|
|
@@ -37,14 +45,19 @@ export interface IConfigurationBase {
|
|
|
37
45
|
/** 公共变量 */
|
|
38
46
|
vars?: ISimpleField;
|
|
39
47
|
}
|
|
40
|
-
/**
|
|
41
|
-
* 云开发低码平台数据源
|
|
42
|
-
*/
|
|
43
|
-
export declare type IPlatformDataSource = IDatabaseDataSource | ICloudIntegrationDataSource;
|
|
44
48
|
/** 云端集成数据源 */
|
|
45
49
|
export interface ICloudIntegrationDataSource extends IDataSourceBase {
|
|
46
|
-
/**
|
|
50
|
+
/**
|
|
51
|
+
* 数据源类型: 连接器(原第三方数据源)
|
|
52
|
+
*/
|
|
47
53
|
type: 'cloud-integration';
|
|
54
|
+
/**
|
|
55
|
+
* 子类型, 默认为 custom-connector
|
|
56
|
+
* custom-database 用户自定义模型, 模型内的方法的出参入参与 database 一致, 但是方法内容由用户自己实现
|
|
57
|
+
* custom-connector: 自定义连接器
|
|
58
|
+
* connector: 标准连接器, 由微搭提供功能实现, 用户只需要进行简单的授权设置
|
|
59
|
+
*/
|
|
60
|
+
subType?: 'custom-database' | 'custom-connector' | 'connector';
|
|
48
61
|
/** 第三方数据源基础配置 */
|
|
49
62
|
configuration: ICloudIntegrationConfig;
|
|
50
63
|
/** 数据源自定义方法 */
|
|
@@ -75,8 +88,16 @@ export interface ICloudIntegrationConfig extends IConfigurationBase {
|
|
|
75
88
|
* 内建数据源
|
|
76
89
|
*/
|
|
77
90
|
export interface IDatabaseDataSource extends IDataSourceBase {
|
|
78
|
-
/**
|
|
91
|
+
/**
|
|
92
|
+
* 数据源类型: 模型数据源
|
|
93
|
+
*/
|
|
79
94
|
type: 'database';
|
|
95
|
+
/**
|
|
96
|
+
* 子类型, 默认值为 database:
|
|
97
|
+
* database 即原来的自建数据源, 依赖云开发自身的云数据库做数据存储
|
|
98
|
+
* system 系统模型, 微搭系统自带的数据源, 如 用户、组织架构等等
|
|
99
|
+
*/
|
|
100
|
+
subType?: 'database' | 'system';
|
|
80
101
|
configuration: IConfigurationBase;
|
|
81
102
|
schema: IDatabaseSchema;
|
|
82
103
|
/** 数据源自定义方法, 数据库类型数据源设计上也可支持 http */
|
|
@@ -86,7 +107,11 @@ export interface IDatabaseDataSource extends IDataSourceBase {
|
|
|
86
107
|
export interface IDatabaseSchema extends IJsonSchemaObject {
|
|
87
108
|
/** 数据库类型, 默认 tcb */
|
|
88
109
|
'x-kind'?: string;
|
|
89
|
-
/**
|
|
110
|
+
/**
|
|
111
|
+
* 启用的内置方法名称
|
|
112
|
+
* 内置方法名称均需使用 weda 前缀, 自定义方法名称则不允许以 weda 开头
|
|
113
|
+
* wedaCreate, wedaDelete, wedaUpdate, wedaGetItem, wedaGetList, wedaGetRecords
|
|
114
|
+
*/
|
|
90
115
|
'x-defaultMethods': string[];
|
|
91
116
|
/**
|
|
92
117
|
* 新建/编辑 数据源不需要该字段
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"datasource.d.ts","sourceRoot":"","sources":["../../../types/platform/datasource.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,YAAY;IACZ,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,IAAI,EAAE,MAAM,CAAA;IACZ
|
|
1
|
+
{"version":3,"file":"datasource.d.ts","sourceRoot":"","sources":["../../../types/platform/datasource.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudbase/cals",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.21",
|
|
4
4
|
"description": "Common application specifications",
|
|
5
5
|
"main": "lib/utils/index.js",
|
|
6
|
+
"typedocMain": "types/index.ts",
|
|
6
7
|
"files": [
|
|
7
8
|
"lib"
|
|
8
9
|
],
|
|
9
10
|
"scripts": {
|
|
10
|
-
"build": "tsc
|
|
11
|
+
"build": "tsc",
|
|
12
|
+
"build:schema": "node lib/utils/build.js",
|
|
13
|
+
"develop": "tsc --watch",
|
|
11
14
|
"docs": "typedoc --options typedoc.json types",
|
|
12
15
|
"test": "jest"
|
|
13
16
|
},
|
|
@@ -24,6 +27,7 @@
|
|
|
24
27
|
},
|
|
25
28
|
"devDependencies": {
|
|
26
29
|
"@types/acorn": "^4.0.5",
|
|
30
|
+
"@types/jest": "^27.4.0",
|
|
27
31
|
"@types/lodash": "^4.14.168",
|
|
28
32
|
"@types/node": "^14.14.6",
|
|
29
33
|
"ajv": "^8.8.2",
|