@chen0825/aiapp-ability 0.1.0 → 0.1.2
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/lib/abilities/dingtalk/index.d.ts +92 -0
- package/lib/abilities/dingtalk/index.js +242 -0
- package/{src/abilities/index.ts → lib/abilities/index.d.ts} +0 -1
- package/lib/abilities/index.js +21 -0
- package/lib/abilities/registry.d.ts +69 -0
- package/lib/abilities/registry.js +111 -0
- package/lib/core/environment.d.ts +47 -0
- package/lib/core/environment.js +51 -0
- package/lib/core/http-client.d.ts +16 -0
- package/lib/core/http-client.js +77 -0
- package/{src/core/index.ts → lib/core/index.d.ts} +0 -1
- package/lib/core/index.js +21 -0
- package/lib/index.d.ts +8 -0
- package/lib/index.js +30 -0
- package/lib/types/dingtalk.d.ts +80 -0
- package/lib/types/dingtalk.js +5 -0
- package/{src/types/index.ts → lib/types/index.d.ts} +8 -12
- package/lib/types/index.js +21 -0
- package/lib/utils/index.js +1 -0
- package/package.json +9 -7
- package/ali-aiapp-ability-0.1.0.tgz +0 -0
- package/coverage/clover.xml +0 -226
- package/coverage/coverage-final.json +0 -12
- package/coverage/lcov-report/abilities/dingtalk/get-access-token.ts.html +0 -244
- package/coverage/lcov-report/abilities/dingtalk/get-user-info.ts.html +0 -253
- package/coverage/lcov-report/abilities/dingtalk/index.html +0 -146
- package/coverage/lcov-report/abilities/dingtalk/send-message.ts.html +0 -259
- package/coverage/lcov-report/abilities/index.html +0 -116
- package/coverage/lcov-report/abilities/registry.ts.html +0 -484
- package/coverage/lcov-report/base.css +0 -224
- package/coverage/lcov-report/block-navigation.js +0 -87
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +0 -176
- package/coverage/lcov-report/prettify.css +0 -1
- package/coverage/lcov-report/prettify.js +0 -2
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +0 -210
- package/coverage/lcov-report/src/abilities/dingtalk/get-access-token.ts.html +0 -244
- package/coverage/lcov-report/src/abilities/dingtalk/get-user-info.ts.html +0 -253
- package/coverage/lcov-report/src/abilities/dingtalk/index.html +0 -161
- package/coverage/lcov-report/src/abilities/dingtalk/index.ts.html +0 -106
- package/coverage/lcov-report/src/abilities/dingtalk/send-message.ts.html +0 -259
- package/coverage/lcov-report/src/abilities/index.html +0 -131
- package/coverage/lcov-report/src/abilities/index.ts.html +0 -103
- package/coverage/lcov-report/src/abilities/registry.ts.html +0 -484
- package/coverage/lcov-report/src/core/environment.ts.html +0 -241
- package/coverage/lcov-report/src/core/http-client.ts.html +0 -430
- package/coverage/lcov-report/src/core/index.html +0 -146
- package/coverage/lcov-report/src/core/index.ts.html +0 -103
- package/coverage/lcov-report/src/index.html +0 -116
- package/coverage/lcov-report/src/index.ts.html +0 -268
- package/coverage/lcov-report/src/utils/index.html +0 -116
- package/coverage/lcov-report/src/utils/index.ts.html +0 -385
- package/coverage/lcov-report/utils/index.html +0 -116
- package/coverage/lcov-report/utils/index.ts.html +0 -385
- package/coverage/lcov.info +0 -397
- package/src/abilities/dingtalk/index.ts +0 -311
- package/src/abilities/registry.ts +0 -134
- package/src/core/environment.ts +0 -79
- package/src/core/http-client.ts +0 -88
- package/src/index.ts +0 -17
- package/src/types/dingtalk.ts +0 -91
- package/tsconfig.tsbuildinfo +0 -1
- /package/{src/utils/index.ts → lib/utils/index.d.ts} +0 -0
|
@@ -1,134 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 能力注册表模块
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
import { AbilityProvider } from '../types';
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* 能力注册表配置
|
|
9
|
-
*/
|
|
10
|
-
export interface AbilityRegistryConfig {
|
|
11
|
-
/** 是否启用日志 */
|
|
12
|
-
enableLogging?: boolean;
|
|
13
|
-
/** 默认超时时间 */
|
|
14
|
-
defaultTimeout?: number;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* 能力注册表
|
|
19
|
-
*/
|
|
20
|
-
export class AbilityRegistry {
|
|
21
|
-
private providers: Map<string, AbilityProvider> = new Map();
|
|
22
|
-
private config: AbilityRegistryConfig;
|
|
23
|
-
|
|
24
|
-
constructor(config: AbilityRegistryConfig = {}) {
|
|
25
|
-
this.config = {
|
|
26
|
-
enableLogging: false,
|
|
27
|
-
defaultTimeout: 30000,
|
|
28
|
-
...config,
|
|
29
|
-
};
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
/**
|
|
33
|
-
* 注册能力提供者
|
|
34
|
-
* @param provider 能力提供者
|
|
35
|
-
*/
|
|
36
|
-
register(provider: AbilityProvider): void {
|
|
37
|
-
if (this.providers.has(provider.name)) {
|
|
38
|
-
throw new Error(`Provider "${provider.name}" is already registered`);
|
|
39
|
-
}
|
|
40
|
-
this.providers.set(provider.name, provider);
|
|
41
|
-
this.log(`Registered provider: ${provider.name}`);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
/**
|
|
45
|
-
* 批量注册能力提供者
|
|
46
|
-
* @param providers 能力提供者数组
|
|
47
|
-
*/
|
|
48
|
-
registerAll(providers: AbilityProvider[]): void {
|
|
49
|
-
for (const provider of providers) {
|
|
50
|
-
this.register(provider);
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
/**
|
|
55
|
-
* 获取能力提供者
|
|
56
|
-
* @param name 提供者名称
|
|
57
|
-
*/
|
|
58
|
-
get<T extends AbilityProvider = AbilityProvider>(name: string): T | undefined {
|
|
59
|
-
return this.providers.get(name) as T | undefined;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
/**
|
|
63
|
-
* 检查能力提供者是否已注册
|
|
64
|
-
* @param name 提供者名称
|
|
65
|
-
*/
|
|
66
|
-
has(name: string): boolean {
|
|
67
|
-
return this.providers.has(name);
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
/**
|
|
71
|
-
* 获取所有已注册的提供者名称
|
|
72
|
-
*/
|
|
73
|
-
getNames(): string[] {
|
|
74
|
-
return Array.from(this.providers.keys());
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
/**
|
|
78
|
-
* 获取所有已注册的提供者
|
|
79
|
-
*/
|
|
80
|
-
getAll(): AbilityProvider[] {
|
|
81
|
-
return Array.from(this.providers.values());
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
/**
|
|
85
|
-
* 注销能力提供者
|
|
86
|
-
* @param name 提供者名称
|
|
87
|
-
*/
|
|
88
|
-
unregister(name: string): boolean {
|
|
89
|
-
const result = this.providers.delete(name);
|
|
90
|
-
if (result) {
|
|
91
|
-
this.log(`Unregistered provider: ${name}`);
|
|
92
|
-
}
|
|
93
|
-
return result;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
/**
|
|
97
|
-
* 清空所有能力提供者
|
|
98
|
-
*/
|
|
99
|
-
clear(): void {
|
|
100
|
-
this.providers.clear();
|
|
101
|
-
this.log('Cleared all providers');
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
/**
|
|
105
|
-
* 初始化所有已注册的提供者
|
|
106
|
-
*/
|
|
107
|
-
async initializeAll(): Promise<void> {
|
|
108
|
-
for (const provider of this.providers.values()) {
|
|
109
|
-
if (provider.initialize) {
|
|
110
|
-
await provider.initialize();
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
/**
|
|
116
|
-
* 销毁所有已注册的提供者
|
|
117
|
-
*/
|
|
118
|
-
async destroyAll(): Promise<void> {
|
|
119
|
-
for (const provider of this.providers.values()) {
|
|
120
|
-
if (provider.destroy) {
|
|
121
|
-
await provider.destroy();
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
private log(message: string): void {
|
|
127
|
-
if (this.config.enableLogging) {
|
|
128
|
-
console.log(`[AbilityRegistry] ${message}`);
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
/** 默认能力注册表实例 */
|
|
134
|
-
export const defaultRegistry = new AbilityRegistry();
|
package/src/core/environment.ts
DELETED
|
@@ -1,79 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 环境配置模块
|
|
3
|
-
*/
|
|
4
|
-
export interface EnvironmentConfig {
|
|
5
|
-
/** API 基础 URL */
|
|
6
|
-
apiUrl: string;
|
|
7
|
-
/** 当前环境 */
|
|
8
|
-
env: 'development' | 'production';
|
|
9
|
-
/** 应用 ID */
|
|
10
|
-
appId?: string;
|
|
11
|
-
/** 用户 ID */
|
|
12
|
-
userId?: string;
|
|
13
|
-
/** 租户 ID */
|
|
14
|
-
tenantId?: string;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* 钉钉环境配置
|
|
19
|
-
*/
|
|
20
|
-
export interface DingTalkEnvConfig {
|
|
21
|
-
/** 钉钉应用 AppKey */
|
|
22
|
-
appKey?: string;
|
|
23
|
-
/** 钉钉应用 AppSecret */
|
|
24
|
-
appSecret?: string;
|
|
25
|
-
/** 钉钉机器人编码 */
|
|
26
|
-
robotCode?: string;
|
|
27
|
-
/** 钉钉 API 基础 URL */
|
|
28
|
-
apiUrl?: string;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
/**
|
|
32
|
-
* 默认环境配置
|
|
33
|
-
*/
|
|
34
|
-
const defaultConfig: EnvironmentConfig = {
|
|
35
|
-
apiUrl: process.env.API_URL || '',
|
|
36
|
-
env: (process.env.NODE_ENV as 'development' | 'production') || 'development',
|
|
37
|
-
appId: process.env.APP_ID,
|
|
38
|
-
userId: process.env.USER_ID,
|
|
39
|
-
tenantId: process.env.TENANT_ID,
|
|
40
|
-
};
|
|
41
|
-
|
|
42
|
-
/** 当前环境配置 */
|
|
43
|
-
let currentConfig: EnvironmentConfig = { ...defaultConfig };
|
|
44
|
-
|
|
45
|
-
/**
|
|
46
|
-
* 获取环境配置
|
|
47
|
-
* @returns 环境配置对象
|
|
48
|
-
*/
|
|
49
|
-
export function getEnvironmentConfig(): EnvironmentConfig {
|
|
50
|
-
return { ...currentConfig };
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
/**
|
|
54
|
-
* 设置环境配置
|
|
55
|
-
* @param config 部分配置
|
|
56
|
-
*/
|
|
57
|
-
export function setEnvironmentConfig(config: Partial<EnvironmentConfig>): void {
|
|
58
|
-
currentConfig = { ...currentConfig, ...config };
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
/**
|
|
62
|
-
* 重置环境配置为默认值
|
|
63
|
-
*/
|
|
64
|
-
export function resetEnvironmentConfig(): void {
|
|
65
|
-
currentConfig = { ...defaultConfig };
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
/**
|
|
69
|
-
* 获取钉钉环境配置(从环境变量)
|
|
70
|
-
* @returns 钉钉环境配置对象
|
|
71
|
-
*/
|
|
72
|
-
export function getDingTalkEnvConfig(): DingTalkEnvConfig {
|
|
73
|
-
return {
|
|
74
|
-
appKey: process.env.DINGTALK_APP_KEY,
|
|
75
|
-
appSecret: process.env.DINGTALK_APP_SECRET,
|
|
76
|
-
robotCode: process.env.DINGTALK_ROBOT_CODE,
|
|
77
|
-
apiUrl: process.env.DINGTALK_API_URL,
|
|
78
|
-
};
|
|
79
|
-
}
|
package/src/core/http-client.ts
DELETED
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
import { BaseResponse } from "../types";
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* HTTP 请求客户端
|
|
5
|
-
*/
|
|
6
|
-
export class HttpClient {
|
|
7
|
-
private baseUrl: string;
|
|
8
|
-
|
|
9
|
-
constructor(baseUrl: string) {
|
|
10
|
-
this.baseUrl = baseUrl;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
/**
|
|
14
|
-
* 发送 POST 请求
|
|
15
|
-
*/
|
|
16
|
-
async post<T = any>(
|
|
17
|
-
endpoint: string,
|
|
18
|
-
data: any,
|
|
19
|
-
options?: RequestInit,
|
|
20
|
-
): Promise<BaseResponse<T>> {
|
|
21
|
-
try {
|
|
22
|
-
const response = await fetch(`${this.baseUrl}${endpoint}`, {
|
|
23
|
-
method: "POST",
|
|
24
|
-
headers: {
|
|
25
|
-
"Content-Type": "application/json",
|
|
26
|
-
...options?.headers,
|
|
27
|
-
},
|
|
28
|
-
body: JSON.stringify(data),
|
|
29
|
-
...options,
|
|
30
|
-
});
|
|
31
|
-
|
|
32
|
-
if (!response.ok) {
|
|
33
|
-
return {
|
|
34
|
-
success: false,
|
|
35
|
-
message: "请求异常",
|
|
36
|
-
data: undefined,
|
|
37
|
-
};
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
const result = await response.json();
|
|
41
|
-
return result;
|
|
42
|
-
} catch (error) {
|
|
43
|
-
console.error("HTTP请求失败:", error);
|
|
44
|
-
return {
|
|
45
|
-
success: false,
|
|
46
|
-
message: error instanceof Error ? error.message : "请求失败",
|
|
47
|
-
data: undefined,
|
|
48
|
-
};
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
/**
|
|
53
|
-
* 发送 GET 请求
|
|
54
|
-
*/
|
|
55
|
-
async get<T = any>(
|
|
56
|
-
endpoint: string,
|
|
57
|
-
options?: RequestInit,
|
|
58
|
-
): Promise<BaseResponse<T>> {
|
|
59
|
-
try {
|
|
60
|
-
const response = await fetch(`${this.baseUrl}${endpoint}`, {
|
|
61
|
-
method: "GET",
|
|
62
|
-
headers: {
|
|
63
|
-
"Content-Type": "application/json",
|
|
64
|
-
...options?.headers,
|
|
65
|
-
},
|
|
66
|
-
...options,
|
|
67
|
-
});
|
|
68
|
-
|
|
69
|
-
if (!response.ok) {
|
|
70
|
-
return {
|
|
71
|
-
success: false,
|
|
72
|
-
message: "请求异常",
|
|
73
|
-
data: undefined,
|
|
74
|
-
};
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
const result = await response.json();
|
|
78
|
-
return result;
|
|
79
|
-
} catch (error) {
|
|
80
|
-
console.error("HTTP请求失败:", error);
|
|
81
|
-
return {
|
|
82
|
-
success: false,
|
|
83
|
-
message: error instanceof Error ? error.message : "请求失败",
|
|
84
|
-
data: undefined,
|
|
85
|
-
};
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
}
|
package/src/index.ts
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @ali/aiapp-ability
|
|
3
|
-
* AI应用能力包
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
// 导出类型
|
|
7
|
-
export * from './types';
|
|
8
|
-
|
|
9
|
-
// 导出核心模块
|
|
10
|
-
export * from './core';
|
|
11
|
-
|
|
12
|
-
// 导出能力模块
|
|
13
|
-
export * from './abilities';
|
|
14
|
-
|
|
15
|
-
export default function main() {
|
|
16
|
-
return 'Write your own legend...';
|
|
17
|
-
}
|
package/src/types/dingtalk.ts
DELETED
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 钉钉能力相关类型定义
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
// ========== AccessToken 相关类型 ==========
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* 获取 AccessToken 请求参数
|
|
9
|
-
*/
|
|
10
|
-
export interface GetAccessTokenRequest {
|
|
11
|
-
/** 已创建的企业内部应用的 AppKey */
|
|
12
|
-
appKey: string;
|
|
13
|
-
/** 已创建的企业内部应用的 AppSecret */
|
|
14
|
-
appSecret: string;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* 获取 AccessToken 响应
|
|
19
|
-
*/
|
|
20
|
-
export interface GetAccessTokenResponse {
|
|
21
|
-
/** 生成的 accessToken */
|
|
22
|
-
accessToken: string;
|
|
23
|
-
/** accessToken 的过期时间,单位秒 */
|
|
24
|
-
expireIn: number;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
// ========== 批量发送机器人消息相关类型 ==========
|
|
28
|
-
|
|
29
|
-
/**
|
|
30
|
-
* 批量发送机器人消息的消息类型
|
|
31
|
-
*/
|
|
32
|
-
export type RobotMsgKey = 'sampleMarkdown' // Markdown 消息
|
|
33
|
-
|
|
34
|
-
/**
|
|
35
|
-
* 批量发送机器人消息请求参数
|
|
36
|
-
* @see POST /v1.0/robot/oToMessages/batchSend
|
|
37
|
-
*/
|
|
38
|
-
export interface BatchSendRobotMsgRequest<T extends RobotMsgKey = RobotMsgKey> {
|
|
39
|
-
/** 机器人的编码 */
|
|
40
|
-
robotCode: string;
|
|
41
|
-
/** 接收消息的用户 userId 列表,最多支持 20 人 */
|
|
42
|
-
userIds: string[];
|
|
43
|
-
/** 消息模板 key */
|
|
44
|
-
msgKey: T;
|
|
45
|
-
/** 消息模板动态参数(JSON 字符串) */
|
|
46
|
-
msgParam: string;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
/**
|
|
50
|
-
* 批量发送机器人消息响应
|
|
51
|
-
*/
|
|
52
|
-
export interface BatchSendRobotMsgResponse {
|
|
53
|
-
/** 处理结果列表 */
|
|
54
|
-
sendResults?: BatchSendResult[];
|
|
55
|
-
/** 流程 ID */
|
|
56
|
-
processQueryKey?: string;
|
|
57
|
-
/** 被限流的用户列表 */
|
|
58
|
-
flowControlledStaffIdList?: string[];
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
/**
|
|
62
|
-
* 批量发送结果
|
|
63
|
-
*/
|
|
64
|
-
export interface BatchSendResult {
|
|
65
|
-
/** 用户 ID */
|
|
66
|
-
staffId: string;
|
|
67
|
-
/** 是否成功 */
|
|
68
|
-
success: boolean;
|
|
69
|
-
/** 错误码 */
|
|
70
|
-
errorCode?: string;
|
|
71
|
-
/** 错误信息 */
|
|
72
|
-
errorMsg?: string;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
/**
|
|
76
|
-
* 批量发送响应
|
|
77
|
-
*/
|
|
78
|
-
export interface BatchSendResponse {
|
|
79
|
-
/** 是否成功 */
|
|
80
|
-
success: boolean;
|
|
81
|
-
/** 消息 */
|
|
82
|
-
message?: string;
|
|
83
|
-
/** 发送结果详情 */
|
|
84
|
-
data?: BatchSendRobotMsgResponse;
|
|
85
|
-
/** 失败的用户列表 */
|
|
86
|
-
failedUserIds?: string[];
|
|
87
|
-
/** 发送成功的数量 */
|
|
88
|
-
successCount?: number;
|
|
89
|
-
/** 发送失败的数量 */
|
|
90
|
-
failCount?: number;
|
|
91
|
-
}
|
package/tsconfig.tsbuildinfo
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es5.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2016.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.dom.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.scripthost.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../../../../usr/local/lib/node_modules/typescript/lib/lib.es2020.full.d.ts","./src/types/dingtalk.ts","./src/types/index.ts","./src/core/http-client.ts","./src/core/environment.ts","./src/core/index.ts","./src/abilities/dingtalk/utils.ts","./src/abilities/dingtalk/index.ts","./src/abilities/registry.ts","./src/abilities/index.ts","./src/index.ts","./src/utils/index.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/compatibility/disposable.d.ts","./node_modules/@types/node/compatibility/indexable.d.ts","./node_modules/@types/node/compatibility/iterators.d.ts","./node_modules/@types/node/compatibility/index.d.ts","./node_modules/@types/node/ts5.6/globals.typedarray.d.ts","./node_modules/@types/node/ts5.6/buffer.buffer.d.ts","./node_modules/@types/node/globals.d.ts","./node_modules/@types/node/web-globals/abortcontroller.d.ts","./node_modules/@types/node/web-globals/domexception.d.ts","./node_modules/@types/node/web-globals/events.d.ts","./node_modules/undici-types/header.d.ts","./node_modules/undici-types/readable.d.ts","./node_modules/undici-types/file.d.ts","./node_modules/undici-types/fetch.d.ts","./node_modules/undici-types/formdata.d.ts","./node_modules/undici-types/connector.d.ts","./node_modules/undici-types/client.d.ts","./node_modules/undici-types/errors.d.ts","./node_modules/undici-types/dispatcher.d.ts","./node_modules/undici-types/global-dispatcher.d.ts","./node_modules/undici-types/global-origin.d.ts","./node_modules/undici-types/pool-stats.d.ts","./node_modules/undici-types/pool.d.ts","./node_modules/undici-types/handlers.d.ts","./node_modules/undici-types/balanced-pool.d.ts","./node_modules/undici-types/agent.d.ts","./node_modules/undici-types/mock-interceptor.d.ts","./node_modules/undici-types/mock-agent.d.ts","./node_modules/undici-types/mock-client.d.ts","./node_modules/undici-types/mock-pool.d.ts","./node_modules/undici-types/mock-errors.d.ts","./node_modules/undici-types/proxy-agent.d.ts","./node_modules/undici-types/env-http-proxy-agent.d.ts","./node_modules/undici-types/retry-handler.d.ts","./node_modules/undici-types/retry-agent.d.ts","./node_modules/undici-types/api.d.ts","./node_modules/undici-types/interceptors.d.ts","./node_modules/undici-types/util.d.ts","./node_modules/undici-types/cookies.d.ts","./node_modules/undici-types/patch.d.ts","./node_modules/undici-types/websocket.d.ts","./node_modules/undici-types/eventsource.d.ts","./node_modules/undici-types/filereader.d.ts","./node_modules/undici-types/diagnostics-channel.d.ts","./node_modules/undici-types/content-type.d.ts","./node_modules/undici-types/cache.d.ts","./node_modules/undici-types/index.d.ts","./node_modules/@types/node/web-globals/fetch.d.ts","./node_modules/@types/node/assert.d.ts","./node_modules/@types/node/assert/strict.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/diagnostics_channel.d.ts","./node_modules/@types/node/dns.d.ts","./node_modules/@types/node/dns/promises.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.generated.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/readline/promises.d.ts","./node_modules/@types/node/repl.d.ts","./node_modules/@types/node/sea.d.ts","./node_modules/@types/node/stream.d.ts","./node_modules/@types/node/stream/promises.d.ts","./node_modules/@types/node/stream/consumers.d.ts","./node_modules/@types/node/stream/web.d.ts","./node_modules/@types/node/string_decoder.d.ts","./node_modules/@types/node/test.d.ts","./node_modules/@types/node/timers.d.ts","./node_modules/@types/node/timers/promises.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/ts5.6/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/@jest/expect-utils/build/index.d.ts","./node_modules/chalk/index.d.ts","./node_modules/@sinclair/typebox/typebox.d.ts","./node_modules/@jest/schemas/build/index.d.ts","./node_modules/pretty-format/build/index.d.ts","./node_modules/jest-diff/build/index.d.ts","./node_modules/jest-matcher-utils/build/index.d.ts","./node_modules/expect/build/index.d.ts","./node_modules/@types/jest/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"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","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":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},"f58c6d0669d1ee04b2fcb0e87fb949b6828602f3f29c7bf6c76a214f16fd50d5",{"version":"d438beeac02bcf36c763e37bd181b47eefe4c0e78a8ecbbdd84bf2ff1a31b51b","signature":"8cc350777969b0d2227f75ac759cba7ff81fdab0db2b262058bd690e4fe783d2"},{"version":"557c69a8d1031c77e23bc65f209751418d3a4b3c25e07cc8626793f3b34e3793","signature":"884d95400a7077a3ff1aeb9435b6b1c2cca035c0f92d0129772f721f7ac7c544"},"02b5c9bb8322762796b0e728a00d1aa712081087d33b55fc9cf71a98988a6a11",{"version":"2bafbad595cdf38361e1e500fa21e065c4d4d52ea2d2e6879c01f119fd8c49f9","signature":"8365b7e1094a1a8355163d9da065ec2f8ac36ca337b32238cd930b5911866e89"},"d4c2bc7be25911afc28e7e4a1ea237b8d6d372c09b4297f86be1e141a07a10cd",{"version":"a2dd20f19d191e2722e8869a36e52161b7e4b1806a328920930b8e8da446c1b7","signature":"94147fa6cf20d866f668386a9e555bd2116597bc17ef5c3684dbb1e17dfb2cec"},{"version":"851b56079e64ea9605e227324a997e4275a3f12e7ee9eb8764455e941392ca23","signature":"b6e44e4908df4d3723d6282c16df187a7a55fe8b703cde2ee6392acac4130a1a"},"fe82a080c7d9819abd14480d4e9499e01dfe1fc7489d8976b3b68b8734639ab8",{"version":"450d586068463ca1d312bb3d3f667b84cf4e7ca5b18b1e870a99c02760209464","signature":"a2be47bb22b65eb44238af3dfd95a4cd7aadccf3deaeb7924b1bddfd747b2516"},"10ac06354bae4c4ff90372b181a961050aaa0fa1deace091497889df6906a11a","e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","556ccd493ec36c7d7cb130d51be66e147b91cc1415be383d71da0f1e49f742a9","b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","95aba78013d782537cc5e23868e736bec5d377b918990e28ed56110e3ae8b958","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9",{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true},"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a",{"version":"1456e80bd8a3870034d89f91bd7df12ac29acfb083e31c0bb1fb38ca7bf5fbc2","affectsGlobalScope":true},{"version":"a98aedd64ad81793f146d36d1611ed9ba61b8b49ff040f0d13a103ed626595d9","affectsGlobalScope":true},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","affectsGlobalScope":true},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true},"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107",{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true},"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f",{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","affectsGlobalScope":true},"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c",{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true},"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a",{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","affectsGlobalScope":true},"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45",{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","affectsGlobalScope":true},"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","714435130b9015fae551788df2a88038471a5a11eb471f27c4ede86552842bc9","855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86",{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true},"27fdb0da0daf3b337c5530c5f266efe046a6ceb606e395b346974e4360c36419","2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d",{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","affectsGlobalScope":true},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","affectsGlobalScope":true},"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","47ab634529c5955b6ad793474ae188fce3e6163e3a3fb5edd7e0e48f14435333","37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee",{"version":"fad4e3c207fe23922d0b2d06b01acbfb9714c4f2685cf80fd384c8a100c82fd0","affectsGlobalScope":true},"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5",{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true},"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9",{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","affectsGlobalScope":true},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","affectsGlobalScope":true},"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e",{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true},"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","0ea329e5eab6719ff83bcb97e8bd03f1faab4feb74704010783b881fc9d80f92","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","e1028394c1cf96d5d057ecc647e31e457b919092f882ed0c7092152b077fed9d","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true},"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7"],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"module":1,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"strict":true,"target":7},"fileIdsList":[[56,67,113],[67,113],[67,113,168],[56,57,58,59,60,67,113],[56,58,67,113],[67,113,125,161],[67,113,163],[67,113,164],[67,113,170,173],[67,110,113],[67,112,113],[67,113,118,146],[67,113,114,119,124,132,143,154],[67,113,114,115,124,132],[62,63,64,67,113],[67,113,116,155],[67,113,117,118,125,133],[67,113,118,143,151],[67,113,119,121,124,132],[67,112,113,120],[67,113,121,122],[67,113,123,124],[67,112,113,124],[67,113,124,125,126,143,154],[67,113,124,125,126,139,143,146],[67,113,121,124,127,132,143,154],[67,113,124,125,127,128,132,143,151,154],[67,113,127,129,143,151,154],[67,113,124,130],[67,113,131,154,159],[67,113,121,124,132,143],[67,113,133],[67,113,134],[67,112,113,135],[67,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,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],[67,113,137],[67,113,138],[67,113,124,139,140],[67,113,139,141,155,157],[67,113,124,143,144,146],[67,113,145,146],[67,113,143,144],[67,113,146],[67,113,147],[67,110,113,143,148],[67,113,124,149,150],[67,113,149,150],[67,113,118,132,143,151],[67,113,152],[113],[65,66,67,68,69,70,71,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,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],[67,113,132,153],[67,113,127,138,154],[67,113,118,155],[67,113,143,156],[67,113,131,157],[67,113,158],[67,108,113],[67,108,113,124,126,135,143,146,154,157,159],[67,113,143,160],[67,113,176],[67,113,166,172],[67,113,170],[67,113,167,171],[67,113,169],[67,80,84,113,154],[67,80,113,143,154],[67,75,113],[67,77,80,113,151,154],[67,113,132,151],[67,113,161],[67,75,113,161],[67,77,80,113,132,154],[67,72,73,76,79,113,124,143,154],[67,80,87,113],[67,72,78,113],[67,80,101,102,113],[67,76,80,113,146,154,161],[67,101,113,161],[67,74,75,113,161],[67,80,113],[67,74,75,76,77,78,79,80,81,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,102,103,104,105,106,107,113],[67,80,95,113],[67,80,87,88,113],[67,78,80,88,89,113],[67,79,113],[67,72,75,80,113],[67,80,84,88,89,113],[67,84,113],[67,78,80,83,113,154],[67,72,77,80,87,113],[67,113,143],[67,75,80,101,113,159,161],[45,46,47,48,50,67,113],[67,113,118],[51,52,67,113],[46,67,113],[47,48,67,113],[46,49,53,67,113],[45,67,113],[45,46,50],[51,52],[45]],"referencedMap":[[58,1],[56,2],[166,2],[169,3],[168,2],[61,4],[57,1],[59,5],[60,1],[162,6],[163,2],[164,7],[165,8],[174,9],[110,10],[111,10],[112,11],[113,12],[114,13],[115,14],[62,2],[65,15],[63,2],[64,2],[116,16],[117,17],[118,18],[119,19],[120,20],[121,21],[122,21],[123,22],[124,23],[125,24],[126,25],[68,2],[127,26],[128,27],[129,28],[130,29],[131,30],[132,31],[133,32],[134,33],[135,34],[136,35],[137,36],[138,37],[139,38],[140,38],[141,39],[142,2],[143,40],[145,41],[144,42],[146,43],[147,44],[148,45],[149,46],[150,47],[151,48],[152,49],[67,50],[66,2],[161,51],[153,52],[154,53],[155,54],[156,55],[157,56],[158,57],[69,2],[70,2],[71,2],[109,58],[159,59],[160,60],[175,2],[176,2],[177,61],[167,2],[173,62],[171,63],[172,64],[170,65],[87,66],[97,67],[86,66],[107,68],[78,69],[77,70],[106,71],[100,72],[105,73],[80,74],[94,75],[79,76],[103,77],[75,78],[74,71],[104,79],[76,80],[81,81],[82,2],[85,81],[72,2],[108,82],[98,83],[89,84],[90,85],[92,86],[88,87],[91,88],[101,71],[83,89],[84,90],[93,91],[73,92],[96,83],[95,81],[99,2],[102,93],[51,94],[50,95],[53,96],[52,97],[48,2],[47,97],[49,98],[54,99],[45,2],[46,100],[55,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[33,2],[34,2],[35,2],[36,2],[7,2],[37,2],[44,2],[42,2],[43,2],[38,2],[39,2],[40,2],[41,2],[1,2],[11,2],[10,2]],"exportedModulesMap":[[58,1],[56,2],[166,2],[169,3],[168,2],[61,4],[57,1],[59,5],[60,1],[162,6],[163,2],[164,7],[165,8],[174,9],[110,10],[111,10],[112,11],[113,12],[114,13],[115,14],[62,2],[65,15],[63,2],[64,2],[116,16],[117,17],[118,18],[119,19],[120,20],[121,21],[122,21],[123,22],[124,23],[125,24],[126,25],[68,2],[127,26],[128,27],[129,28],[130,29],[131,30],[132,31],[133,32],[134,33],[135,34],[136,35],[137,36],[138,37],[139,38],[140,38],[141,39],[142,2],[143,40],[145,41],[144,42],[146,43],[147,44],[148,45],[149,46],[150,47],[151,48],[152,49],[67,50],[66,2],[161,51],[153,52],[154,53],[155,54],[156,55],[157,56],[158,57],[69,2],[70,2],[71,2],[109,58],[159,59],[160,60],[175,2],[176,2],[177,61],[167,2],[173,62],[171,63],[172,64],[170,65],[87,66],[97,67],[86,66],[107,68],[78,69],[77,70],[106,71],[100,72],[105,73],[80,74],[94,75],[79,76],[103,77],[75,78],[74,71],[104,79],[76,80],[81,81],[82,2],[85,81],[72,2],[108,82],[98,83],[89,84],[90,85],[92,86],[88,87],[91,88],[101,71],[83,89],[84,90],[93,91],[73,92],[96,83],[95,81],[99,2],[102,93],[51,101],[53,102],[52,97],[47,97],[49,98],[54,99],[46,103],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[33,2],[34,2],[35,2],[36,2],[7,2],[37,2],[44,2],[42,2],[43,2],[38,2],[39,2],[40,2],[41,2],[1,2],[11,2],[10,2]],"semanticDiagnosticsPerFile":[58,56,166,169,168,61,57,59,60,162,163,164,165,174,110,111,112,113,114,115,62,65,63,64,116,117,118,119,120,121,122,123,124,125,126,68,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,145,144,146,147,148,149,150,151,152,67,66,161,153,154,155,156,157,158,69,70,71,109,159,160,175,176,177,167,173,171,172,170,87,97,86,107,78,77,106,100,105,80,94,79,103,75,74,104,76,81,82,85,72,108,98,89,90,92,88,91,101,83,84,93,73,96,95,99,102,51,50,53,52,48,47,49,54,45,46,55,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,37,44,42,43,38,39,40,41,1,11,10],"affectedFilesPendingEmit":[[51,1],[50,1],[53,1],[52,1],[48,1],[47,1],[49,1],[54,1],[45,1],[46,1],[55,1]]},"version":"4.7.4"}
|
|
File without changes
|