@lemoncloud/chatic-sockets-api 0.26.519 → 0.26.524

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.
@@ -0,0 +1,36 @@
1
+ import type { InferSocketError, InferSocketRequest, InferSocketResponse, SocketErrorMessage, SocketRequestMessage, SocketResponseMessage } from '../types';
2
+ export declare type AuthUpdateState = '' | 'pending' | 'validating' | 'authenticated' | 'failed' | 'disconnected';
3
+ export interface AuthUpdateRequestData {
4
+ token?: string;
5
+ dryRun?: boolean;
6
+ }
7
+ export interface AuthUpdateMemberHead {
8
+ id?: string;
9
+ name?: string;
10
+ }
11
+ export interface AuthUpdateResponseData {
12
+ connId?: string;
13
+ deviceId?: string;
14
+ authId?: string;
15
+ memberId?: string;
16
+ state?: AuthUpdateState;
17
+ stateAt?: number;
18
+ error?: string;
19
+ member$?: AuthUpdateMemberHead;
20
+ }
21
+ declare module '../types' {
22
+ interface SocketPacketRegistry {
23
+ 'auth.update': {
24
+ request: AuthUpdateRequestData;
25
+ response: AuthUpdateResponseData;
26
+ error: null;
27
+ };
28
+ }
29
+ }
30
+ export declare type AuthUpdateType = 'auth.update';
31
+ export declare type AuthUpdateInput = InferSocketRequest<AuthUpdateType>;
32
+ export declare type AuthUpdateResponse = InferSocketResponse<AuthUpdateType>;
33
+ export declare type AuthUpdateErrorData = InferSocketError<AuthUpdateType>;
34
+ export declare type AuthUpdateRequestMessage = SocketRequestMessage<AuthUpdateType>;
35
+ export declare type AuthUpdateResponseMessage = SocketResponseMessage<AuthUpdateType>;
36
+ export declare type AuthUpdateErrorMessage = SocketErrorMessage<AuthUpdateType>;
@@ -0,0 +1,175 @@
1
+ import type { InferSocketRequest, SocketRequestMessage } from '../types';
2
+ import type { ChannelStereo } from '../../modules/chat/types';
3
+ export interface ChannelCreateRequestData {
4
+ stereo: ChannelStereo;
5
+ name?: string;
6
+ }
7
+ export interface ChannelByIdRequestData {
8
+ channelId: string;
9
+ }
10
+ export interface ChannelLeaveRequestData {
11
+ channelId: string;
12
+ userId?: string;
13
+ }
14
+ export interface ChannelMineRequestData {
15
+ page?: number;
16
+ limit?: number;
17
+ detail?: boolean;
18
+ hasSite?: boolean;
19
+ }
20
+ export interface ChannelUpdateRequestData {
21
+ channelId: string;
22
+ name?: string;
23
+ desc?: string;
24
+ thumbnail?: string;
25
+ }
26
+ export interface ChannelInviteRequestData {
27
+ channelId: string;
28
+ userIds: string[];
29
+ }
30
+ export interface ChannelListUserRequestData {
31
+ channelId: string;
32
+ limit?: number;
33
+ page?: number;
34
+ detail?: boolean;
35
+ }
36
+ export interface ChannelUpdateJoinRequestData {
37
+ channelId: string;
38
+ joinId?: string;
39
+ nick?: string;
40
+ notify?: '' | 'all' | 'mention' | 'none';
41
+ }
42
+ export interface ChannelSyncRequestData {
43
+ since?: number;
44
+ }
45
+ export interface ChannelSyncUsersRequestData {
46
+ channelId: string;
47
+ since?: number;
48
+ }
49
+ declare module '../types' {
50
+ interface SocketPacketRegistry {
51
+ 'channel.create': {
52
+ request: ChannelCreateRequestData;
53
+ response: unknown;
54
+ error: null;
55
+ };
56
+ 'channel.join': {
57
+ request: ChannelByIdRequestData;
58
+ response: unknown;
59
+ error: null;
60
+ };
61
+ 'channel.leave': {
62
+ request: ChannelLeaveRequestData;
63
+ response: unknown;
64
+ error: null;
65
+ };
66
+ 'channel.get-self': {
67
+ request: Record<string, never>;
68
+ response: unknown;
69
+ error: null;
70
+ };
71
+ 'channel.mine': {
72
+ request: ChannelMineRequestData;
73
+ response: unknown;
74
+ error: null;
75
+ };
76
+ 'channel.list-user': {
77
+ request: ChannelListUserRequestData;
78
+ response: unknown;
79
+ error: null;
80
+ };
81
+ 'channel.invite': {
82
+ request: ChannelInviteRequestData;
83
+ response: unknown;
84
+ error: null;
85
+ };
86
+ 'channel.update': {
87
+ request: ChannelUpdateRequestData;
88
+ response: unknown;
89
+ error: null;
90
+ };
91
+ 'channel.update-join': {
92
+ request: ChannelUpdateJoinRequestData;
93
+ response: unknown;
94
+ error: null;
95
+ };
96
+ 'channel.delete': {
97
+ request: ChannelByIdRequestData;
98
+ response: unknown;
99
+ error: null;
100
+ };
101
+ 'channel.sync': {
102
+ request: ChannelSyncRequestData;
103
+ response: unknown;
104
+ error: null;
105
+ };
106
+ 'channel.sync-users': {
107
+ request: ChannelSyncUsersRequestData;
108
+ response: unknown;
109
+ error: null;
110
+ };
111
+ 'channel.sync-site-profile': {
112
+ request: ChannelSyncRequestData;
113
+ response: unknown;
114
+ error: null;
115
+ };
116
+ 'channel.unreads': {
117
+ request: Record<string, never>;
118
+ response: unknown;
119
+ error: null;
120
+ };
121
+ }
122
+ }
123
+ export declare type ChannelCreateType = 'channel.create';
124
+ export declare type ChannelCreateInput = InferSocketRequest<ChannelCreateType>;
125
+ export declare type ChannelCreateRequestMessage = SocketRequestMessage<ChannelCreateType>;
126
+ export declare type ChannelJoinType = 'channel.join';
127
+ export declare type ChannelJoinInput = InferSocketRequest<ChannelJoinType>;
128
+ export declare type ChannelJoinRequestMessage = SocketRequestMessage<ChannelJoinType>;
129
+ export declare type ChannelLeaveType = 'channel.leave';
130
+ export declare type ChannelLeaveInput = InferSocketRequest<ChannelLeaveType>;
131
+ export declare type ChannelLeaveRequestMessage = SocketRequestMessage<ChannelLeaveType>;
132
+ export declare type ChannelGetSelfType = 'channel.get-self';
133
+ export declare type ChannelGetSelfInput = InferSocketRequest<ChannelGetSelfType>;
134
+ export declare type ChannelGetSelfRequestMessage = SocketRequestMessage<ChannelGetSelfType>;
135
+ export declare type ChannelMineType = 'channel.mine';
136
+ export declare type ChannelMineInput = InferSocketRequest<ChannelMineType>;
137
+ export declare type ChannelListMyInput = ChannelMineInput;
138
+ export declare type ChannelMineRequestMessage = SocketRequestMessage<ChannelMineType>;
139
+ export declare type ChannelListUserType = 'channel.list-user';
140
+ export declare type ChannelListUserInput = InferSocketRequest<ChannelListUserType>;
141
+ export declare type ChannelListUserRequestMessage = SocketRequestMessage<ChannelListUserType>;
142
+ export declare type ChannelInviteType = 'channel.invite';
143
+ export declare type ChannelInviteInput = InferSocketRequest<ChannelInviteType>;
144
+ export declare type ChannelInviteRequestMessage = SocketRequestMessage<ChannelInviteType>;
145
+ export declare type ChannelUpdateType = 'channel.update';
146
+ export declare type ChannelUpdateInput = InferSocketRequest<ChannelUpdateType>;
147
+ export declare type ChannelUpdateRequestMessage = SocketRequestMessage<ChannelUpdateType>;
148
+ export declare type ChannelUpdateJoinType = 'channel.update-join';
149
+ export declare type ChannelUpdateJoinInput = InferSocketRequest<ChannelUpdateJoinType>;
150
+ export declare type JoinUpdateInput = ChannelUpdateJoinInput;
151
+ export declare type ChannelUpdateJoinRequestMessage = SocketRequestMessage<ChannelUpdateJoinType>;
152
+ export declare type ChannelDeleteType = 'channel.delete';
153
+ export declare type ChannelDeleteInput = InferSocketRequest<ChannelDeleteType>;
154
+ export declare type ChannelDeleteRequestMessage = SocketRequestMessage<ChannelDeleteType>;
155
+ export declare type ChannelSyncType = 'channel.sync';
156
+ export declare type ChannelSyncInput = InferSocketRequest<ChannelSyncType>;
157
+ export declare type ChannelSyncRequestMessage = SocketRequestMessage<ChannelSyncType>;
158
+ export declare type ChannelSyncUsersType = 'channel.sync-users';
159
+ export declare type ChannelSyncUsersInput = InferSocketRequest<ChannelSyncUsersType>;
160
+ export declare type ChannelSyncUsersRequestMessage = SocketRequestMessage<ChannelSyncUsersType>;
161
+ export declare type ChannelSyncProfileType = 'channel.sync-site-profile';
162
+ export declare type ChannelSyncProfileInput = InferSocketRequest<ChannelSyncProfileType>;
163
+ export declare type ChannelSyncSiteProfileInput = ChannelSyncProfileInput;
164
+ export declare type ChannelSyncProfileRequestMessage = SocketRequestMessage<ChannelSyncProfileType>;
165
+ export declare type ChannelUnreadsType = 'channel.unreads';
166
+ export declare type ChannelUnreadsInput = InferSocketRequest<ChannelUnreadsType>;
167
+ export declare type ChannelUnreadsRequestMessage = SocketRequestMessage<ChannelUnreadsType>;
168
+ export declare type ChatStartInput = ChannelCreateInput;
169
+ export declare type ChatMineInput = ChannelMineInput;
170
+ export declare type ChatUsersInput = ChannelListUserInput;
171
+ export declare type ChatInviteInput = ChannelInviteInput;
172
+ export declare type ChatLeaveInput = ChannelLeaveInput;
173
+ export declare type ChatUpdateChannelInput = ChannelUpdateInput;
174
+ export declare type ChatUpdateJoinInput = ChannelUpdateJoinInput;
175
+ export declare type ChatDeleteChannelInput = ChannelDeleteInput;
@@ -0,0 +1,44 @@
1
+ import type { InferSocketRequest, SocketRequestMessage } from '../types';
2
+ export interface ChatSendRequestData {
3
+ channelId: string;
4
+ content: string;
5
+ contentType?: string;
6
+ parentId?: string;
7
+ }
8
+ export interface ChatReadRequestData {
9
+ channelId: string;
10
+ chatNo: number;
11
+ }
12
+ export interface ChatFeedRequestData {
13
+ channelId: string;
14
+ cursorNo?: number;
15
+ limit?: number;
16
+ }
17
+ declare module '../types' {
18
+ interface SocketPacketRegistry {
19
+ 'chat.send': {
20
+ request: ChatSendRequestData;
21
+ response: unknown;
22
+ error: null;
23
+ };
24
+ 'chat.read': {
25
+ request: ChatReadRequestData;
26
+ response: unknown;
27
+ error: null;
28
+ };
29
+ 'chat.feed': {
30
+ request: ChatFeedRequestData;
31
+ response: unknown;
32
+ error: null;
33
+ };
34
+ }
35
+ }
36
+ export declare type ChatSendType = 'chat.send';
37
+ export declare type ChatSendInput = InferSocketRequest<ChatSendType>;
38
+ export declare type ChatSendRequestMessage = SocketRequestMessage<ChatSendType>;
39
+ export declare type ChatReadType = 'chat.read';
40
+ export declare type ChatReadInput = InferSocketRequest<ChatReadType>;
41
+ export declare type ChatReadRequestMessage = SocketRequestMessage<ChatReadType>;
42
+ export declare type ChatFeedType = 'chat.feed';
43
+ export declare type ChatFeedInput = InferSocketRequest<ChatFeedType>;
44
+ export declare type ChatFeedRequestMessage = SocketRequestMessage<ChatFeedType>;
@@ -0,0 +1,18 @@
1
+ import type { InferSocketRequest, SocketRequestMessage } from '../types';
2
+ export interface CloudUpdateRequestData {
3
+ cloudId?: string;
4
+ name?: string;
5
+ }
6
+ declare module '../types' {
7
+ interface SocketPacketRegistry {
8
+ 'cloud.update': {
9
+ request: CloudUpdateRequestData;
10
+ response: unknown;
11
+ error: null;
12
+ };
13
+ }
14
+ }
15
+ export declare type CloudUpdateType = 'cloud.update';
16
+ export declare type CloudUpdateInput = InferSocketRequest<CloudUpdateType>;
17
+ export declare type UpdateCloudInput = CloudUpdateInput;
18
+ export declare type CloudUpdateRequestMessage = SocketRequestMessage<CloudUpdateType>;
@@ -0,0 +1,36 @@
1
+ /**
2
+ * `lib/device/contracts.ts`
3
+ * - client-safe shared device contracts.
4
+ * - keep this file free from server-only runtime dependencies.
5
+ */
6
+ export declare type DeviceStatus = '' | 'green' | 'red' | 'yellow';
7
+ export declare type DevicePlatform = '' | 'ios' | 'android' | 'web' | 'macos' | 'windows' | 'linux';
8
+ /**
9
+ * common device shape shared across websocket client/server contracts.
10
+ */
11
+ export interface DeviceView {
12
+ id?: string;
13
+ name?: string;
14
+ platform?: DevicePlatform;
15
+ status?: DeviceStatus;
16
+ tick?: number;
17
+ posX?: number;
18
+ posY?: number;
19
+ lastActiveAt?: number;
20
+ connectedAt?: number;
21
+ disconnectedAt?: number;
22
+ connId?: string;
23
+ }
24
+ /**
25
+ * mutable device body accepted by `device.save`.
26
+ * - `tick` is server-managed and must be ignored when provided by clients.
27
+ */
28
+ export interface DeviceBody extends Partial<DeviceView> {
29
+ }
30
+ /**
31
+ * client bootstrap seed.
32
+ * - `tick` is intentionally blocked because the client must never author it.
33
+ */
34
+ export declare type DeviceSeed = Omit<DeviceBody, 'tick'> & {
35
+ tick?: never;
36
+ };
@@ -0,0 +1,56 @@
1
+ import type { InferSocketError, InferSocketRequest, InferSocketResponse, SocketErrorMessage, SocketRequestMessage, SocketResponseMessage } from '../types';
2
+ import type { DeviceBody, DeviceSeed, DeviceView } from './contracts';
3
+ /**
4
+ * request payload for `device.read`
5
+ * - omit `id` to read the device linked to the current connection.
6
+ */
7
+ export interface DeviceGetRequestData {
8
+ id?: string;
9
+ }
10
+ export interface DeviceSyncRequestData {
11
+ id?: string;
12
+ tick?: number;
13
+ }
14
+ declare module '../types' {
15
+ interface SocketPacketRegistry {
16
+ 'device.save': {
17
+ request: DeviceBody;
18
+ response: DeviceView;
19
+ error: null;
20
+ };
21
+ 'device.read': {
22
+ request: DeviceGetRequestData | null;
23
+ response: DeviceView;
24
+ error: null;
25
+ };
26
+ 'device.sync': {
27
+ request: DeviceSyncRequestData | null;
28
+ response: null;
29
+ error: null;
30
+ };
31
+ }
32
+ }
33
+ export declare type DeviceSaveType = 'device.save';
34
+ export declare type DeviceSaveResponseData = InferSocketResponse<DeviceSaveType>;
35
+ export declare type DeviceSaveErrorData = InferSocketError<DeviceSaveType>;
36
+ export declare type DeviceSaveInput = InferSocketRequest<DeviceSaveType>;
37
+ export declare type DeviceBootstrapInput = DeviceSeed;
38
+ export declare type DeviceSaveRequestMessage = SocketRequestMessage<DeviceSaveType>;
39
+ export declare type DeviceSaveResponseMessage = SocketResponseMessage<DeviceSaveType>;
40
+ export declare type DeviceSaveErrorMessage = SocketErrorMessage<DeviceSaveType>;
41
+ export declare type DeviceGetType = 'device.read';
42
+ export declare type DeviceGetResponseData = InferSocketResponse<DeviceGetType>;
43
+ export declare type DeviceGetErrorData = InferSocketError<DeviceGetType>;
44
+ export declare type DeviceGetInput = InferSocketRequest<DeviceGetType>;
45
+ export declare type DeviceReadInput = DeviceGetInput;
46
+ export declare type DeviceGetRequestMessage = SocketRequestMessage<DeviceGetType>;
47
+ export declare type DeviceGetResponseMessage = SocketResponseMessage<DeviceGetType>;
48
+ export declare type DeviceGetErrorMessage = SocketErrorMessage<DeviceGetType>;
49
+ export declare type DeviceSyncType = 'device.sync';
50
+ export declare type DeviceSyncResponseData = InferSocketResponse<DeviceSyncType>;
51
+ export declare type DeviceSyncErrorData = InferSocketError<DeviceSyncType>;
52
+ export declare type DeviceSyncInput = InferSocketRequest<DeviceSyncType>;
53
+ export declare type DeviceSyncRequestMessage = SocketRequestMessage<DeviceSyncType>;
54
+ export declare type DeviceSyncResponseMessage = SocketResponseMessage<DeviceSyncType>;
55
+ export declare type DeviceSyncErrorMessage = SocketErrorMessage<DeviceSyncType>;
56
+ export type { DeviceBody, DeviceSeed, DeviceView };
@@ -0,0 +1,239 @@
1
+ /**
2
+ * `socket-actions.ts`
3
+ * - supported wsv2 socket domain/action lookup table.
4
+ *
5
+ * Keep this file client-safe. It is used as a public type contract and must not
6
+ * import server-side modules.
7
+ */
8
+ /**
9
+ * lookup table
10
+ * - wsv2에서 공개/지원하는 socket action 목록
11
+ */
12
+ export declare const SocketActionTypeLUT: {
13
+ /**
14
+ * DomainType
15
+ * - message domain
16
+ */
17
+ readonly DomainType: {
18
+ readonly '': "";
19
+ /** system - builtin/system messages */
20
+ readonly system: "system";
21
+ /** sockets - socket connection helpers */
22
+ readonly sockets: "sockets";
23
+ /** device - client device state */
24
+ readonly device: "device";
25
+ /** auth - connection authentication */
26
+ readonly auth: "auth";
27
+ /** channel - chat channel operations */
28
+ readonly channel: "channel";
29
+ /** chat - chat message operations */
30
+ readonly chat: "chat";
31
+ /** user - user/site profile operations */
32
+ readonly user: "user";
33
+ /** cloud - cloud profile operations */
34
+ readonly cloud: "cloud";
35
+ };
36
+ /**
37
+ * SystemActionType
38
+ * - system 도메인 액션
39
+ */
40
+ readonly SystemActionType: {
41
+ readonly '': "";
42
+ /** ping - keep-alive request */
43
+ readonly ping: "ping";
44
+ /** pong - keep-alive response/event */
45
+ readonly pong: "pong";
46
+ /** info - connection/server information */
47
+ readonly info: "info";
48
+ /** message - generic system message */
49
+ readonly message: "message";
50
+ /** error - generic system error */
51
+ readonly error: "error";
52
+ };
53
+ /**
54
+ * SocketsActionType
55
+ * - sockets 도메인 액션
56
+ */
57
+ readonly SocketsActionType: {
58
+ readonly '': "";
59
+ /** find-connection - find or create current connection model */
60
+ readonly 'find-connection': "find-connection";
61
+ };
62
+ /**
63
+ * DeviceActionType
64
+ * - device 도메인 액션
65
+ */
66
+ readonly DeviceActionType: {
67
+ readonly '': "";
68
+ /** save - create or update linked device */
69
+ readonly save: "save";
70
+ /** read - read linked or requested device */
71
+ readonly read: "read";
72
+ /** sync - client device state sync hint */
73
+ readonly sync: "sync";
74
+ };
75
+ /**
76
+ * AuthActionType
77
+ * - auth 도메인 액션
78
+ */
79
+ readonly AuthActionType: {
80
+ readonly '': "";
81
+ /** update - update authentication state for current connection */
82
+ readonly update: "update";
83
+ };
84
+ /**
85
+ * ChannelActionType
86
+ * - channel 도메인 액션
87
+ */
88
+ readonly ChannelActionType: {
89
+ readonly '': "";
90
+ /** create - create a channel */
91
+ readonly create: "create";
92
+ /** join - join a channel */
93
+ readonly join: "join";
94
+ /** leave - leave or kick from a channel */
95
+ readonly leave: "leave";
96
+ /** get-self - get or create personal channel */
97
+ readonly 'get-self': "get-self";
98
+ /** mine - list my channels */
99
+ readonly mine: "mine";
100
+ /** list-user - list channel members */
101
+ readonly 'list-user': "list-user";
102
+ /** invite - invite users to a channel */
103
+ readonly invite: "invite";
104
+ /** update - update channel information */
105
+ readonly update: "update";
106
+ /** update-join - update channel participation settings */
107
+ readonly 'update-join': "update-join";
108
+ /** delete - delete a channel */
109
+ readonly delete: "delete";
110
+ /** sync - synchronize channel list/state */
111
+ readonly sync: "sync";
112
+ /** sync-users - synchronize channel users */
113
+ readonly 'sync-users': "sync-users";
114
+ /** sync-site-profile - synchronize related site profile */
115
+ readonly 'sync-site-profile': "sync-site-profile";
116
+ /** unreads - get unread message summary */
117
+ readonly unreads: "unreads";
118
+ };
119
+ /**
120
+ * ChatActionType
121
+ * - chat 도메인 액션
122
+ */
123
+ readonly ChatActionType: {
124
+ readonly '': "";
125
+ /** send - send chat message */
126
+ readonly send: "send";
127
+ /** read - mark chat message/channel as read */
128
+ readonly read: "read";
129
+ /** feed - get chat feed */
130
+ readonly feed: "feed";
131
+ };
132
+ /**
133
+ * UserActionType
134
+ * - user 도메인 액션
135
+ */
136
+ readonly UserActionType: {
137
+ readonly '': "";
138
+ /** invite - invite a user */
139
+ readonly invite: "invite";
140
+ /** invite-batch - invite multiple users */
141
+ readonly 'invite-batch': "invite-batch";
142
+ /** my-site - list accessible sites */
143
+ readonly 'my-site': "my-site";
144
+ /** make-site - create a site */
145
+ readonly 'make-site': "make-site";
146
+ /** update-profile - update user profile */
147
+ readonly 'update-profile': "update-profile";
148
+ /** update-site - update site profile */
149
+ readonly 'update-site': "update-site";
150
+ /** get-site-profile - get site profile */
151
+ readonly 'get-site-profile': "get-site-profile";
152
+ /** set-site-profile - set site profile */
153
+ readonly 'set-site-profile': "set-site-profile";
154
+ };
155
+ /**
156
+ * CloudActionType
157
+ * - cloud 도메인 액션
158
+ */
159
+ readonly CloudActionType: {
160
+ readonly '': "";
161
+ /** update - update cloud profile */
162
+ readonly update: "update";
163
+ };
164
+ };
165
+ declare type SocketActionKeyOf<T> = Extract<keyof T, string>;
166
+ declare type NonEmptySocketAction<T extends string> = Exclude<T, ''>;
167
+ /**
168
+ * type: `SocketDomainType`
169
+ */
170
+ export declare type SocketDomainType = SocketActionKeyOf<typeof SocketActionTypeLUT.DomainType>;
171
+ /**
172
+ * type: `SocketSystemActionType`
173
+ */
174
+ export declare type SocketSystemActionType = SocketActionKeyOf<typeof SocketActionTypeLUT.SystemActionType>;
175
+ /**
176
+ * type: `SocketSocketsActionType`
177
+ */
178
+ export declare type SocketSocketsActionType = SocketActionKeyOf<typeof SocketActionTypeLUT.SocketsActionType>;
179
+ /**
180
+ * type: `SocketDeviceActionType`
181
+ */
182
+ export declare type SocketDeviceActionType = SocketActionKeyOf<typeof SocketActionTypeLUT.DeviceActionType>;
183
+ /**
184
+ * type: `SocketAuthActionType`
185
+ */
186
+ export declare type SocketAuthActionType = SocketActionKeyOf<typeof SocketActionTypeLUT.AuthActionType>;
187
+ /**
188
+ * type: `SocketChannelActionType`
189
+ */
190
+ export declare type SocketChannelActionType = SocketActionKeyOf<typeof SocketActionTypeLUT.ChannelActionType>;
191
+ /**
192
+ * type: `SocketChatActionType`
193
+ */
194
+ export declare type SocketChatActionType = SocketActionKeyOf<typeof SocketActionTypeLUT.ChatActionType>;
195
+ /**
196
+ * type: `SocketUserActionType`
197
+ */
198
+ export declare type SocketUserActionType = SocketActionKeyOf<typeof SocketActionTypeLUT.UserActionType>;
199
+ /**
200
+ * type: `SocketCloudActionType`
201
+ */
202
+ export declare type SocketCloudActionType = SocketActionKeyOf<typeof SocketActionTypeLUT.CloudActionType>;
203
+ /**
204
+ * type: `SocketActionType`
205
+ */
206
+ export declare type SocketActionType = SocketSystemActionType | SocketSocketsActionType | SocketDeviceActionType | SocketAuthActionType | SocketChannelActionType | SocketChatActionType | SocketUserActionType | SocketCloudActionType;
207
+ /**
208
+ * interface: `SocketActionTypeMap`
209
+ * - domain to action type map
210
+ */
211
+ export interface SocketActionTypeMap {
212
+ system: SocketSystemActionType;
213
+ sockets: SocketSocketsActionType;
214
+ device: SocketDeviceActionType;
215
+ auth: SocketAuthActionType;
216
+ channel: SocketChannelActionType;
217
+ chat: SocketChatActionType;
218
+ user: SocketUserActionType;
219
+ cloud: SocketCloudActionType;
220
+ }
221
+ /**
222
+ * type: `SocketSupportedDomainType`
223
+ */
224
+ export declare type SocketSupportedDomainType = keyof SocketActionTypeMap;
225
+ /**
226
+ * type: `SocketSupportedActionType`
227
+ */
228
+ export declare type SocketSupportedActionType = NonEmptySocketAction<SocketActionType>;
229
+ /**
230
+ * type: `SocketActionTypeOf`
231
+ */
232
+ export declare type SocketActionTypeOf<TDomain extends SocketSupportedDomainType> = SocketActionTypeMap[TDomain];
233
+ /**
234
+ * type: `SocketPacketActionType`
235
+ */
236
+ export declare type SocketPacketActionType = {
237
+ [TDomain in SocketSupportedDomainType]: `${TDomain}.${NonEmptySocketAction<SocketActionTypeMap[TDomain]>}`;
238
+ }[SocketSupportedDomainType];
239
+ export {};
@@ -0,0 +1,13 @@
1
+ /**
2
+ * `socket-inputs.ts`
3
+ * - public socket message.data input type barrel.
4
+ *
5
+ * Keep this file type-only and client-safe.
6
+ */
7
+ export type { AuthUpdateInput } from './auth/types';
8
+ export type { DeviceGetInput, DeviceReadInput, DeviceSaveInput, DeviceSyncInput } from './device/types';
9
+ export type { FindConnectionModelInput, SocketsFindConnectionInput } from './sockets/types';
10
+ export type { ChatFeedInput, ChatReadInput, ChatSendInput } from './chat/types';
11
+ export type { ChannelCreateInput, ChannelDeleteInput, ChannelGetSelfInput, ChannelInviteInput, ChannelJoinInput, ChannelLeaveInput, ChannelListMyInput, ChannelListUserInput, ChannelMineInput, ChannelSyncInput, ChannelSyncProfileInput, ChannelSyncSiteProfileInput, ChannelSyncUsersInput, ChannelUnreadsInput, ChannelUpdateInput, ChannelUpdateJoinInput, ChatDeleteChannelInput, ChatInviteInput, ChatLeaveInput, ChatMineInput, ChatStartInput, ChatUpdateChannelInput, ChatUpdateJoinInput, ChatUsersInput, JoinUpdateInput, } from './channel/types';
12
+ export type { CloudUpdateInput, UpdateCloudInput } from './cloud/types';
13
+ export type { UserGetSiteProfileInput, UserInviteBatchInput, UserInviteInput, UserMakeSiteInput, UserMySiteInput, UserSetSiteProfileInput, UserUpdateProfileInput, UserUpdateSiteInput, } from './user/types';
@@ -0,0 +1,67 @@
1
+ import type { InferSocketError, InferSocketRequest, InferSocketResponse, SocketErrorMessage, SocketRequestMessage, SocketResponseMessage } from '../types';
2
+ declare module '../types' {
3
+ interface SocketPacketRegistry {
4
+ 'system.ping': {
5
+ request: null;
6
+ response: {
7
+ ts: number;
8
+ };
9
+ error: null;
10
+ };
11
+ 'system.fail': {
12
+ request: {
13
+ count?: number;
14
+ };
15
+ response: null;
16
+ error: null;
17
+ };
18
+ 'demo.echo': {
19
+ request: {
20
+ text?: string;
21
+ };
22
+ response: {
23
+ echoed?: string;
24
+ };
25
+ error: null;
26
+ };
27
+ 'demo.route': {
28
+ request: null;
29
+ response: {
30
+ route?: string;
31
+ kind: 'socket';
32
+ };
33
+ error: null;
34
+ };
35
+ }
36
+ interface SocketPacketAliasRegistry {
37
+ ping: 'system.ping';
38
+ }
39
+ }
40
+ export declare type SystemPingType = 'system.ping';
41
+ export declare type SystemPingRequestData = InferSocketRequest<SystemPingType>;
42
+ export declare type SystemPingResponseData = InferSocketResponse<SystemPingType>;
43
+ export declare type SystemPingErrorData = InferSocketError<SystemPingType>;
44
+ export declare type SystemPingRequestMessage = SocketRequestMessage<SystemPingType>;
45
+ export declare type SystemPingResponseMessage = SocketResponseMessage<SystemPingType>;
46
+ export declare type SystemPingErrorMessage = SocketErrorMessage<SystemPingType>;
47
+ export declare type SystemFailType = 'system.fail';
48
+ export declare type SystemFailRequestData = InferSocketRequest<SystemFailType>;
49
+ export declare type SystemFailResponseData = InferSocketResponse<SystemFailType>;
50
+ export declare type SystemFailErrorData = InferSocketError<SystemFailType>;
51
+ export declare type SystemFailRequestMessage = SocketRequestMessage<SystemFailType>;
52
+ export declare type SystemFailResponseMessage = SocketResponseMessage<SystemFailType>;
53
+ export declare type SystemFailErrorMessage = SocketErrorMessage<SystemFailType>;
54
+ export declare type DemoEchoType = 'demo.echo';
55
+ export declare type DemoEchoRequestData = InferSocketRequest<DemoEchoType>;
56
+ export declare type DemoEchoResponseData = InferSocketResponse<DemoEchoType>;
57
+ export declare type DemoEchoErrorData = InferSocketError<DemoEchoType>;
58
+ export declare type DemoEchoRequestMessage = SocketRequestMessage<DemoEchoType>;
59
+ export declare type DemoEchoResponseMessage = SocketResponseMessage<DemoEchoType>;
60
+ export declare type DemoEchoErrorMessage = SocketErrorMessage<DemoEchoType>;
61
+ export declare type DemoRouteType = 'demo.route';
62
+ export declare type DemoRouteRequestData = InferSocketRequest<DemoRouteType>;
63
+ export declare type DemoRouteResponseData = InferSocketResponse<DemoRouteType>;
64
+ export declare type DemoRouteErrorData = InferSocketError<DemoRouteType>;
65
+ export declare type DemoRouteRequestMessage = SocketRequestMessage<DemoRouteType>;
66
+ export declare type DemoRouteResponseMessage = SocketResponseMessage<DemoRouteType>;
67
+ export declare type DemoRouteErrorMessage = SocketErrorMessage<DemoRouteType>;
@@ -0,0 +1,27 @@
1
+ export * from './packets';
2
+ export interface FindConnectionModelEvent {
3
+ id?: string;
4
+ stage?: string;
5
+ domain?: string;
6
+ apiId?: string;
7
+ connectionId?: string;
8
+ connectedAt?: number;
9
+ origin?: string;
10
+ remote?: string;
11
+ reason?: string;
12
+ agent?: string;
13
+ route?: string;
14
+ param?: {
15
+ [key: string]: string;
16
+ };
17
+ }
18
+ export interface FindConnectionModelInput {
19
+ event: FindConnectionModelEvent;
20
+ }
21
+ export declare type SocketsFindConnectionInput = FindConnectionModelInput;
22
+ export interface FindConnectionModelOptions {
23
+ useSession?: boolean;
24
+ errScope?: string;
25
+ validate?: boolean;
26
+ current?: number;
27
+ }
@@ -0,0 +1,102 @@
1
+ import type { InferSocketRequest, SocketRequestMessage } from '../types';
2
+ export interface UserMakeSiteRequestData {
3
+ name: string;
4
+ }
5
+ export interface UserInviteRequestData {
6
+ channelId?: string;
7
+ name: string;
8
+ phone: string;
9
+ }
10
+ export interface UserInviteBatchRequestData {
11
+ to: string[];
12
+ channelId?: string;
13
+ cloudId?: string;
14
+ cloudName?: string;
15
+ }
16
+ export interface UserUpdateProfileRequestData {
17
+ name?: string;
18
+ nick?: string;
19
+ thumbnail?: string;
20
+ }
21
+ export interface UserUpdateSiteRequestData {
22
+ sid?: string;
23
+ name?: string;
24
+ thumbnail?: string;
25
+ }
26
+ export interface UserSetSiteProfileRequestData {
27
+ id?: string;
28
+ userId?: string;
29
+ siteId?: string;
30
+ nick?: string;
31
+ thumbnail?: string;
32
+ active?: boolean;
33
+ [key: string]: unknown;
34
+ }
35
+ declare module '../types' {
36
+ interface SocketPacketRegistry {
37
+ 'user.get-site-profile': {
38
+ request: Record<string, never>;
39
+ response: unknown;
40
+ error: null;
41
+ };
42
+ 'user.my-site': {
43
+ request: Record<string, never>;
44
+ response: unknown;
45
+ error: null;
46
+ };
47
+ 'user.make-site': {
48
+ request: UserMakeSiteRequestData;
49
+ response: unknown;
50
+ error: null;
51
+ };
52
+ 'user.invite': {
53
+ request: UserInviteRequestData;
54
+ response: unknown;
55
+ error: null;
56
+ };
57
+ 'user.invite-batch': {
58
+ request: UserInviteBatchRequestData;
59
+ response: unknown;
60
+ error: null;
61
+ };
62
+ 'user.update-profile': {
63
+ request: UserUpdateProfileRequestData;
64
+ response: unknown;
65
+ error: null;
66
+ };
67
+ 'user.update-site': {
68
+ request: UserUpdateSiteRequestData;
69
+ response: unknown;
70
+ error: null;
71
+ };
72
+ 'user.set-site-profile': {
73
+ request: UserSetSiteProfileRequestData;
74
+ response: unknown;
75
+ error: null;
76
+ };
77
+ }
78
+ }
79
+ export declare type UserGetSiteProfileType = 'user.get-site-profile';
80
+ export declare type UserGetSiteProfileInput = InferSocketRequest<UserGetSiteProfileType>;
81
+ export declare type UserGetSiteProfileRequestMessage = SocketRequestMessage<UserGetSiteProfileType>;
82
+ export declare type UserMySiteType = 'user.my-site';
83
+ export declare type UserMySiteInput = InferSocketRequest<UserMySiteType>;
84
+ export declare type UserMySiteRequestMessage = SocketRequestMessage<UserMySiteType>;
85
+ export declare type UserMakeSiteType = 'user.make-site';
86
+ export declare type UserMakeSiteInput = InferSocketRequest<UserMakeSiteType>;
87
+ export declare type UserMakeSiteRequestMessage = SocketRequestMessage<UserMakeSiteType>;
88
+ export declare type UserInviteType = 'user.invite';
89
+ export declare type UserInviteInput = InferSocketRequest<UserInviteType>;
90
+ export declare type UserInviteRequestMessage = SocketRequestMessage<UserInviteType>;
91
+ export declare type UserInviteBatchType = 'user.invite-batch';
92
+ export declare type UserInviteBatchInput = InferSocketRequest<UserInviteBatchType>;
93
+ export declare type UserInviteBatchRequestMessage = SocketRequestMessage<UserInviteBatchType>;
94
+ export declare type UserUpdateProfileType = 'user.update-profile';
95
+ export declare type UserUpdateProfileInput = InferSocketRequest<UserUpdateProfileType>;
96
+ export declare type UserUpdateProfileRequestMessage = SocketRequestMessage<UserUpdateProfileType>;
97
+ export declare type UserUpdateSiteType = 'user.update-site';
98
+ export declare type UserUpdateSiteInput = InferSocketRequest<UserUpdateSiteType>;
99
+ export declare type UserUpdateSiteRequestMessage = SocketRequestMessage<UserUpdateSiteType>;
100
+ export declare type UserSetSiteProfileType = 'user.set-site-profile';
101
+ export declare type UserSetSiteProfileInput = InferSocketRequest<UserSetSiteProfileType>;
102
+ export declare type UserSetSiteProfileRequestMessage = SocketRequestMessage<UserSetSiteProfileType>;
@@ -10,6 +10,8 @@
10
10
  import { NextContext, NextIdentity } from 'lemon-model';
11
11
  export type { NextContext };
12
12
  export * from '../lib/types';
13
+ export * from '../lib/socket-actions';
14
+ export * from '../lib/socket-inputs';
13
15
  /**
14
16
  * interface: `ConnectionInfo`
15
17
  * - 연결 정보 공통 모델
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es6.d.ts","../../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.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.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.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/lemon-model/dist/types/core-types.d.ts","../../node_modules/lemon-model/dist/types/core-storage.d.ts","../../node_modules/lemon-model/dist/types/index.d.ts","../../node_modules/lemon-model/dist/cores/transformer.d.ts","../../node_modules/lemon-model/dist/cores/index.d.ts","../../node_modules/lemon-model/dist/index.d.ts","../../src/lib/types.ts","../../src/libs/sockets.ts","../../src/modules/sockets/types.ts","../../src/generated/field-registry.ts","../../src/modules/chat/types.ts","../../src/modules/chat/model.ts","../../src/modules/sockets/model.ts","../../src/lib/broadcast/types.ts","../../src/modules/callback/types.ts","../../src/modules/mock/types.ts","../../src/modules/auth/types.ts","../../src/service/backend-types.ts","../../src/modules/mock/model.ts","../../src/modules/mock/views.ts","../../src/modules/sockets/views.ts","../../src/view/types.ts","../../node_modules/@types/aws-lambda/handler.d.ts","../../node_modules/@types/aws-lambda/common/api-gateway.d.ts","../../node_modules/@types/aws-lambda/common/cloudfront.d.ts","../../node_modules/@types/aws-lambda/trigger/alb.d.ts","../../node_modules/@types/aws-lambda/trigger/api-gateway-proxy.d.ts","../../node_modules/@types/aws-lambda/trigger/api-gateway-authorizer.d.ts","../../node_modules/@types/aws-lambda/trigger/appsync-resolver.d.ts","../../node_modules/@types/aws-lambda/trigger/autoscaling.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudformation-custom-resource.d.ts","../../node_modules/@types/aws-lambda/trigger/cdk-custom-resource.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudfront-request.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudfront-response.d.ts","../../node_modules/@types/aws-lambda/trigger/eventbridge.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudwatch-events.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudwatch-logs.d.ts","../../node_modules/@types/aws-lambda/trigger/codebuild-cloudwatch-state.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-action.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-pipeline.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-stage.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/_common.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/create-auth-challenge.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-message.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-email-sender.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-sms-sender.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/define-auth-challenge.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-authentication.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-confirmation.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-authentication.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-signup.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/user-migration.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/verify-auth-challenge-response.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/index.d.ts","../../node_modules/@types/aws-lambda/trigger/connect-contact-flow.d.ts","../../node_modules/@types/aws-lambda/trigger/dynamodb-stream.d.ts","../../node_modules/@types/aws-lambda/trigger/iot.d.ts","../../node_modules/@types/aws-lambda/trigger/kinesis-firehose-transformation.d.ts","../../node_modules/@types/aws-lambda/trigger/kinesis-stream.d.ts","../../node_modules/@types/aws-lambda/trigger/lex.d.ts","../../node_modules/@types/aws-lambda/trigger/lex-v2.d.ts","../../node_modules/@types/aws-lambda/trigger/s3.d.ts","../../node_modules/@types/aws-lambda/trigger/s3-batch.d.ts","../../node_modules/@types/aws-lambda/trigger/ses.d.ts","../../node_modules/@types/aws-lambda/trigger/sns.d.ts","../../node_modules/@types/aws-lambda/trigger/sqs.d.ts","../../node_modules/@types/aws-lambda/trigger/msk.d.ts","../../node_modules/@types/aws-lambda/trigger/secretsmanager.d.ts","../../node_modules/@types/aws-lambda/trigger/s3-event-notification.d.ts","../../node_modules/@types/aws-lambda/trigger/amplify-resolver.d.ts","../../node_modules/@types/aws-lambda/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/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/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/globals.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/dom-events.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/querystring/decode.d.ts","../../node_modules/querystring/encode.d.ts","../../node_modules/querystring/index.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/sqlite.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/keyv/src/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/@types/caseless/index.d.ts","../../node_modules/@types/deep-eql/index.d.ts","../../node_modules/assertion-error/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/cookiejar/index.d.ts","../../node_modules/@types/cors/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/ioredis/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/chalk/types/index.d.ts","../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.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/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/jsonwebtoken/index.d.ts","../../node_modules/@types/keyv/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/prettier/index.d.ts","../../node_modules/form-data/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/request/index.d.ts","../../node_modules/@types/retry/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/superagent/index.d.ts","../../node_modules/@types/supertest/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"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},"83411374f9c21de98b86707275dced234039e2362b649e231f600b7393202bda","39f5e11cbb7b085c74da81bbac3271c44c35a04a4776a41bf6803014de601495","e7390687ca5063ac5852f889935dedd1141bbd2539888ef82eab8e7020b7b3ee","b89aa7b6d177a2b409912b5042f5ce475031e40d7531cfb8e780927fcc6d4c83","064e3027d702ca00f80516658897613142b83dcb015cce9d098d55fbf97f206e","5a7778249dc6ff452778d13a5a148f12b1eba99137d0b33e8aef7f20d5ab55b8",{"version":"1c647792ffc556899bad2b5020ba2b987bc7eaff0cba347c3b63b05fce84c1b4","signature":"13f0bdef3affd9fb625ff1908714c0a5ddfba01b2d691256b9d848259b55c1e3"},{"version":"c9d5259b7bdaa15c995d5810e896945dcac7539fa0a9919593b3aa3b2b071141","signature":"1dd5305ccd61bcc042ad0bc41caad6805c8e306061e4cc6fb9af88e37bc4e5dd"},{"version":"07dba9d63d4300df4b9ed088bc416cfb0210bc64fe5bd8fab9e368eb50139690","signature":"000e7fcc59e9ab29872c615584fb9ad1f393fabd095d3d5e1df78cc089dd0a18"},{"version":"fdc0333b00e2154ae10bc53b38f32eab4189e10775468cbfa2a059d2923f8d95","signature":"0e6a0abf93b0fc3797e113fd26a893eb2cfa6b983b23f51f3d3f6dd5c66ac175"},{"version":"a842798040516b86329a1d346b2ef2d3b54f08cc875f8696e445162e8978bc8a","signature":"46c96ac8b0673b3a6f570a6381a6a349e8cd42564f6300fe8cc22432eb97898b"},{"version":"5de7ab6ad06d01f23b04604dcdbf1202b1b1ce04cd7a77dfa19b9d6ca70a4a7f","signature":"bbdf8e211c3745d84d3980ccc80f9c7ecf36c2854e0c4d713bd818aeb65f44d4"},{"version":"75cba7d038c07aee19e84cf03cb2931af7620a9b97c392e8002f51f1b30b3d17","signature":"8542d3fecb8a671496049624a3f38776d167cebb40c89ed4a5afa47ed75867fb"},{"version":"4234dbb2b9d5b3153a1d09f1a6d142eaae706602f8fb2401f6bccc784b6063fd","signature":"ab10c78c69049172f6816c2004656aad0760d3e4b6d7215d0f9ddb1d5539be3d"},{"version":"e1c8140514d6ec39addfd35edb2db6fffacb91fe3bc9689042a5301af949f029","signature":"f5650aa760f8e975c83cacf536a80d4bd7acb2d3e70bdaacd3df2ff1a6b8ca9c"},{"version":"1da3a70158dd226f00c7a7a7e020d80b3b7f17bb5275d7a723d4838f736aa782","signature":"88fff4682b0806218ac53a36143ab70bf74f510e3644cd41819063694c3f334f"},{"version":"eadc3a138f8cc2514c2e69e899177c1941c19e26dad4523055ea38732d64af2c","signature":"d2cf9520be4535f982b943e193eeaa1fa1f4e5ccf26dcf51f5b1410dc0360bc3"},{"version":"4bb6e792bf36ad67e26ac8e048966c2b221ce261a46893bd18e83da11ce75c85","signature":"ec8bba75254e7d2a5c5a71ace6deba043b97c53ecfe47b5c60a3013cf789ac3c"},{"version":"0805f4a2f0fe2cf95a491e0f21fa0f704ceaee5e841aea7a552387430d7ea276","signature":"80edbbf40e69f892daf0aa3790256a372cfe0d4159fce0b6f93cc08e6f07a830"},{"version":"65cf50b41253764bb96a38e9341382229a2aa2418efe88e448395a88514f6a5a","signature":"9f00f7c8f110b5eea2eb0d79651c74912775835f0fa2183d1114ffe4ababb603"},{"version":"2c9b22faccb9f9923dcc6e9e8bd8bcd4c1e0496393189503334f76cb2b01a59f","signature":"80b77708adf625cccea981f36cdaa98ecc338622480e0f8c72d42cf622bb06f9"},"1872e604dded563b8856ae072c33a82cb12238baa6fdd5a11daef91dd1871553","6d1675231de1aa366144f91852cddb2eb3cad8d9f2e7e48f4e5e0031e7046ddc","bc9d1a62f3ab938e3ac66b85363c8f1ec1c5b9cf32e5d393f7b14209b4811c48","429d2e0d28ec8be13ebc5e0b389f34e0622d435c88ec5efe408c4d82e17f37c9","6bb7cbba94c9a5c43add2e17d93d04da08e51a69d412e9d1afaf130f4624e91a","f6f23892b68818f45d4863d7009401085ec48c699c9a65a8786ba9ad6b552628","7305cccc01f462295be680ae8955284e7182e34102256e2af2d21ec924bc87a0","bd6cd4ae039cc123778bd665d1711665415b18edde58fdc8ca3610e5ff84182a","46b3f5cf0c95f16651fa2582446bb9b35a28421a56097e9e853e00ebaeb9c610","004678b644cdb4615ac6cda7b2d285d0eb850e55eb53da47e8c1325cba362bb9","4205ae686b67d9dea3bff36ff28888ebfd278ca09ce45b66918a6420b26a09cc","d29a230261d709ce237307b4eadf9f0b55b00eee6ce3b47f389bf348614c132c","0dad26ffdf5cae28cb67ac9c0ce06c7ec732001b01046f47eeaa4ee5a3655f5d","ad5939fcb0c3db887f55a55284a9d7672c1a6f747d083751b614b2f0ed34b611","4194cc6e823aa830a71c733b18d0de1c29323b102c6460e9fe835ac5f8b8a9ba","4ff4add7b8cf26df217f2c883292778205847aefb0fd2aee64f5a229d0ffd399","420878898a89ebc3515fb87bbfd6662f0432fe918652669414b584c2540e3bc8","c24e2fddbca24f0b63d0b82e5aca4da50c8c591566711be7260c900c97d7c9f2","f4922a1814e47fdb4d93c2cf27968ea30c174e04d4a3374774046a9307dbbaf0","bfff1bb349423cc262a88775d8233f7ea2b87d66ba1f0631eec0c30bea097dd5","a177f76c040e29b9c31adfc93225c273828ff784b592bf56c6131771e624f628","06236dfec90a14b0c3db8249831069ea3f90b004d73d496a559a4466e5a344a4","19c08e1ce502625c711682ec21495ca47ca893b21f346621e7a175bcd677335f","5d36c521b96ba0d4b98919ca833c8cc62f1f225d40467122ba561a2c5553ab80","b8b71558bba1cdf2dff3d7796bd8e3383daa5f1278be5144ff0b0ac7538fa264","2b3046d66390c6447811adc06be3b085a7f396c53a7a4670d11159672d5aeb15","84d9e9735b2d0d9b1f5b58666d849b7d9a730749dd531e55bd17cb5c7e6e21eb","0aaa0e1d10349bc24bdee9dd2bca420741f1deb7028c7a17a2b9d5df2f5d9d63","dd289cb306f619c7844ff82fec02badc571c6ed66c7da72815239647febee137","754fb3e7737eb1feb7fcf4902e925cae8c050dd134819deb25ae3ed6843b7dd1","f05c1be0c5bf0e983941f9f75a43297b04730393d0bdabc687066d8b1d6b8d16","a97972e1e9b4bc5d31380c695b7a827c014bd042ec17369bc4d920a1fab7d47b","b5740b8d4723dcdc408195835a52cc83501b1f44399e3104eb4677b082c8973e","feb17c6ab54766cb447ed7efa1da2eacfe289d024da02eb0171fc072704f9be7","dd50796be484a4f4f3733dd67d0a829d93c5b6dd678552d40683f89e6767706c","4e50d35ec611c6d56d740d374bb78120280de9c077b3ecf6c8c6297a7058d5ea","b12effb4e275d1e3516506c030f4046283cc7a4d7e2b4e316b4397446444aa22","cdbff147b3bd958f7be6f4c621e8b29c5c17226ba8aa506e5d01d3446ee6ff21","66738976a7aa2d5fb2770a1b689f8bc643af958f836b7bc08e412d4092de3ab9","0751ea9602b019c630c160aa81c6d59495f0119123d171f2351c9907cd3440d7","33107c5cb9509a44748ca6de5159993a4366fdcea6828ca5d3241b216d5b0627","3809c600654ed5b6bdce015f7110d40a75e402e59de80c12b622b925f44a8599","146577c9761cc6015ae035a1407d4ada5f2232453acb82e7998daabe9f3a23d0","cec3cf5159f51f7725d5b06b631996fef4863d8f5c237b8a3f9a18f5570c8286","47ffa0bd85219fa1551c7cb128e3e1b44f980c9eb5baee26b0164db191ab917b","bb7de140ec25957e693e6b48de186b7229653d5c683fe7bbd1d24bcc66a86a15","162994e0ad049c7c8aa5f99a7f1e556f700d80452441a6ff0e4648cfcfaebbb8","fb8aebad66729980040dcf5ec38b723a4abb2336db77e51b1d642f73a81291b4","5b6df0d20c824e4c66b791ec39d10721af9954794231ad9e0f73889b38e83858","35c3631308ca05a1cac7a31b6a3d2a68442cdd2315adfb476d0461dea2cac030","256d2eed83c1e05fc9b18694f07f7b74da266bed410c6d392e3236ab36cdd0da","f3711e90a75e13ce96795f7c02287dd7ef76905998cb5804a69795f863b7d776","a0c6f9338d39354a276bb9431c19e23d6d03a72cc868e41438a9a9e1ab80a2b8","8d27e5f73b75340198b2df36f39326f693743e64006bd7b88a925a5f285df628","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","1c2cd862994b1fbed3cde0d1e8de47835ff112d197a3debfddf7b2ee3b2c52bc","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","fc72135da24040641388fb5f2c2a7a99aa5b962c0fa125bd96fabeec63dd2e63","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3",{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true},"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a",{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true},{"version":"109b9c280e8848c08bf4a78fff1fed0750a6ca1735671b5cf08b71bae5448c03","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":"a12d953aa755b14ac1d28ecdc1e184f3285b01d6d1e58abc11bf1826bc9d80e6","affectsGlobalScope":true},"a38efe83ff77c34e0f418a806a01ca3910c02ee7d64212a59d59bca6c2c38fa1","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","3fe4022ba1e738034e38ad9afacbf0f1f16b458ed516326f5bf9e4a31e9be1dc",{"version":"a957197054b074bcdf5555d26286e8461680c7c878040d0f4e2d5509a7524944","affectsGlobalScope":true},"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","e9b97d69510658d2f4199b7d384326b7c4053b9e6645f5c19e1c2a54ede427fc",{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true},"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a",{"version":"f478f6f5902dc144c0d6d7bdc919c5177cac4d17a8ca8653c2daf6d7dc94317f","affectsGlobalScope":true},"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","0a6b3ad6e19dd0fe347a54cbfd8c8bd5091951a2f97b2f17e0af011bfde05482","0a37a4672f163d7fe46a414923d0ef1b0526dcd2d2d3d01c65afe6da03bf2495","1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393",{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true},"25d130083f833251b5b4c2794890831b1b8ce2ead24089f724181576cf9d7279","ffe66ee5c9c47017aca2136e95d51235c10e6790753215608bff1e712ff54ec6","2b0439104c87ea2041f0f41d7ed44447fe87b5bd4d31535233176fa19882e800","017caf5d2a8ef581cf94f678af6ce7415e06956317946315560f1487b9a56167","528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","d71535813e39c23baa113bc4a29a0e187b87d1105ccc8c5a6ebaca38d9a9bff2",{"version":"aa9e37a18f4a50ea4bb5f118d03d144cc779b778e0e3fe60ee80c3add19e613b","affectsGlobalScope":true},"f72bc8fe16da67e4e3268599295797b202b95e54bd215a03f97e925dd1502a36","b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0",{"version":"915e18c559321c0afaa8d34674d3eb77e1ded12c3e85bf2a9891ec48b07a1ca5","affectsGlobalScope":true},"ad7e61eca7f2f8bf47e72695f9f6663b75e41d87ef49abdb17c0cb843862f8aa","ecba2e44af95b0599c269a92628cec22e752868bce37396740deb51a5c547a26","46a9fb41a8f3bc7539eeebc15a6e04b9e55d7537a081615ad3614220d34c3e0f",{"version":"636302a00dfd1f9fe6e8e91e4e9350c6518dcc8d51a474e4fc3a9ba07135100b","affectsGlobalScope":true},"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","e1ce1d622f1e561f6cdf246372ead3bbc07ce0342024d0e9c7caf3136f712698","199c8269497136f3a0f4da1d1d90ab033f899f070e0dd801946f2a241c8abba2","37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093",{"version":"27e4532aaaa1665d0dd19023321e4dc12a35a741d6b8e1ca3517fcc2544e0efe","affectsGlobalScope":true},"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","edbb3546af6a57fa655860fef11f4109390f4a2f1eab4a93f548ccc21d604a56",{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true},"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","98ffdf93dfdd206516971d28e3e473f417a5cfd41172e46b4ce45008f640588e","66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4",{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true},{"version":"a7692a54334fd08960cd0c610ff509c2caa93998e0dcefa54021489bcc67c22d","affectsGlobalScope":true},"0f7e00beefa952297cde4638b2124d2d9a1eed401960db18edcadaa8500c78eb","3a051941721a7f905544732b0eb819c8d88333a96576b13af08b82c4f17581e4","ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a",{"version":"1e25f8d0a8573cafd5b5a16af22d26ab872068a693b9dbccd3f72846ab373655","affectsGlobalScope":true},"3797dd6f4ea3dc15f356f8cdd3128bfa18122213b38a80d6c1f05d8e13cbdad8","171fd8807643c46a9d17e843959abdf10480d57d60d38d061fb44a4c8d4a8cc4","42baf4ca38c38deaf411ea73f37bc39ff56c6e5c761a968b64ac1b25c92b5cd8","4f6ae308c5f2901f2988c817e1511520619e9025b9b12cc7cce2ab2e6ffed78a","8718fa41d7cf4aa91de4e8f164c90f88e0bf343aa92a1b9b725a9c675c64e16b","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","5343f3c160282dfbaab9af350119a0c3b59b7076ef0117bb5995a66e240dab28","427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d",{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true},"8d48b8f8a377ade8dd1f000625bc276eea067f2529cc9cafdf082d17142107d6","6fbd58e4015b9ae31ea977d4d549eb24a1102cc798b57ec5d70868b542c06612","151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","be00321090ed100e3bd1e566c0408004137e73feb19d6380eba57d68519ff6c5","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","091f417275a51ab3c47b949723e9e8a193012157ecc64a96e2d7b1505e82f395","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","bb4ed283cfb3db7ec1d4bb79c37f5e96d39b340f1f4de995c4b0b836c8d5fa05","fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","380b919bfa0516118edaf25b99e45f855e7bc3fd75ce4163a1cfe4a666388804","40de86ced5175a6ffe84a52abe6ac59ac0efbc604a5975a8c6476c3ddc682ff1","fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","5a0b15210129310cee9fa6af9200714bb4b12af4a04d890e15f34dbea1cf1852","0244119dbcbcf34faf3ffdae72dab1e9bc2bc9efc3c477b2240ffa94af3bca56","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","f1d8b21cdf08726021c8cce0cd6159486236cf1d633eeabbc435b5b2e5869c2e","e91ad231af87f864b3f07cd0e39b1cf6c133988156f087c1c3ccb0a5491c9115","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","bf0b1297461549a0e32cd57dffb992c63d7c7134fe0f9e15d359abcc88dbd28c","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","31c502014e5ba046d5cb060136929b73fd53f0f989aa37b2b0424644cb0d93ef","76232dbb982272b182a76ad8745a9b02724dc9896e2328ce360e2c56c64c9778","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"declaration":true,"emitDeclarationOnly":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noImplicitAny":false,"outDir":"./","removeComments":false,"skipLibCheck":true,"sourceMap":true,"strict":false,"target":2},"fileIdsList":[[119,130,172],[130,172],[67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,130,172],[67,130,172],[67,73,130,172],[67,68,71,130,172],[67,68,130,172],[67,75,130,172],[67,69,130,172],[79,130,172],[67,84,85,86,130,172],[67,88,130,172],[67,89,90,91,92,93,94,95,96,97,98,99,100,130,172],[67,79,130,172],[119,120,121,122,123,130,172],[119,121,130,172],[130,172,184,187,218,225,226,227,228],[130,172,231,232],[130,172,187],[130,172,185,225],[130,172,184,207,215,225],[130,172,239],[130,172,240],[130,172,245,250],[130,172,225],[130,172,184,225],[130,172,255,257,258,259,260,261,262,263,264,265,266,267],[130,172,255,256,258,259,260,261,262,263,264,265,266,267],[130,172,256,257,258,259,260,261,262,263,264,265,266,267],[130,172,255,256,257,259,260,261,262,263,264,265,266,267],[130,172,255,256,257,258,260,261,262,263,264,265,266,267],[130,172,255,256,257,258,259,261,262,263,264,265,266,267],[130,172,255,256,257,258,259,260,262,263,264,265,266,267],[130,172,255,256,257,258,259,260,261,263,264,265,266,267],[130,172,255,256,257,258,259,260,261,262,264,265,266,267],[130,172,255,256,257,258,259,260,261,262,263,265,266,267],[130,172,255,256,257,258,259,260,261,262,263,264,266,267],[130,172,255,256,257,258,259,260,261,262,263,264,265,267],[130,172,255,256,257,258,259,260,261,262,263,264,265,266],[130,169,172],[130,171,172],[130,172,177,210],[130,172,173,178,184,185,192,207,218],[130,172,173,174,184,192],[125,126,127,130,172],[130,172,175,219],[130,172,176,177,185,193],[130,172,177,207,215],[130,172,178,180,184,192],[130,171,172,179],[130,172,180,181],[130,172,182,184],[130,171,172,184],[130,172,184,185,186,207,218],[130,172,184,185,186,202,207,210],[130,167,172],[130,167,172,180,184,187,192,207,218],[130,172,184,185,187,188,192,207,215,218],[130,172,187,189,207,215,218],[130,172,184,190],[130,172,191,218],[130,172,180,184,192,207],[130,172,193],[130,172,194],[130,171,172,195],[130,169,170,171,172,173,174,175,176,177,178,179,180,181,182,184,185,186,187,188,189,190,191,192,193,194,195,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224],[130,172,200],[130,172,201],[130,172,184,202,203],[130,172,202,204,219,221],[130,172,184,207,208,210],[130,172,209,210],[130,172,207,208],[130,172,210],[130,172,211],[130,169,172,207,212],[130,172,184,213,214],[130,172,213,214],[130,172,177,192,207,215],[130,172,216],[172],[128,129,130,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224],[130,172,192,217],[130,172,187,201,218],[130,172,177,219],[130,172,207,220],[130,172,191,221],[130,172,222],[130,172,184,186,195,207,210,218,221,223],[130,172,207,224],[130,172,185,187,189,192,207,218,225,230,269,270],[130,172,187,207,225],[130,172,185,187,207,225,234],[130,172,274],[130,172,277],[130,172,243,246],[130,172,243,246,247,248],[130,172,245],[130,172,242,249],[130,172,184],[48,130,172],[46,130,172],[47,49,130,172],[45,46,130,172],[130,172,244],[130,172,196,197],[130,139,143,172,218],[130,139,172,207,218],[130,134,172],[130,136,139,172,215,218],[130,172,192,215],[130,134,172,225],[130,136,139,172,192,218],[130,131,132,135,138,172,184,207,218],[130,139,146,172],[130,131,137,172],[130,139,160,161,172],[130,135,139,172,210,218,225],[130,160,172,225],[130,133,134,172,225],[130,139,172],[130,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,161,162,163,164,165,166,172],[130,139,154,172],[130,139,146,147,172],[130,137,139,147,148,172],[130,138,172],[130,131,134,139,172],[130,139,143,147,148,172],[130,143,172],[130,137,139,142,172,218],[130,131,136,139,146,172],[130,172,207],[130,134,139,160,172,223,225],[57,130,172],[50,51,130,172],[50,54,55,130,172],[50,54,60,130,172],[50,60,63,130,172],[50,53,54,56,130,172],[50,53,57,130,172],[50,53,55,59,60,61,130,172],[52,58,62,64,65,130,172],[57],[50,51],[50,55],[50,60],[50,60,63],[50,53,56],[50,53,57],[50]],"referencedMap":[[121,1],[119,2],[68,2],[69,2],[67,2],[118,3],[70,4],[117,5],[72,6],[71,7],[73,4],[74,4],[76,8],[75,4],[77,9],[78,9],[80,10],[81,4],[82,10],[84,4],[85,4],[86,4],[87,11],[83,4],[88,2],[89,12],[91,12],[90,12],[92,12],[93,12],[101,13],[94,12],[95,12],[96,12],[97,12],[98,12],[99,12],[100,12],[102,4],[103,4],[79,4],[104,4],[105,4],[106,4],[108,4],[107,4],[114,4],[110,4],[116,14],[109,4],[115,4],[111,4],[112,4],[113,4],[124,15],[120,1],[122,16],[123,1],[229,17],[230,2],[233,18],[234,2],[235,19],[231,2],[236,2],[237,20],[227,2],[238,21],[239,2],[240,22],[241,23],[251,24],[252,2],[253,25],[254,26],[256,27],[257,28],[255,29],[258,30],[259,31],[260,32],[261,33],[262,34],[263,35],[264,36],[265,37],[266,38],[267,39],[169,40],[170,40],[171,41],[172,42],[173,43],[174,44],[125,2],[128,45],[126,2],[127,2],[175,46],[176,47],[177,48],[178,49],[179,50],[180,51],[181,51],[183,2],[182,52],[184,53],[185,54],[186,55],[168,56],[187,57],[188,58],[189,59],[190,60],[191,61],[192,62],[193,63],[194,64],[195,65],[199,66],[200,67],[201,68],[202,69],[203,69],[204,70],[205,2],[206,2],[207,71],[209,72],[208,73],[210,74],[211,75],[212,76],[213,77],[214,78],[215,79],[216,80],[130,81],[129,2],[225,82],[217,83],[218,84],[219,85],[220,86],[221,87],[222,88],[223,89],[224,90],[268,2],[271,91],[228,92],[272,2],[273,2],[274,93],[275,94],[270,2],[276,2],[277,2],[278,95],[232,2],[242,2],[269,92],[243,2],[247,96],[249,97],[248,96],[246,98],[250,99],[226,100],[49,101],[48,102],[50,103],[46,2],[45,2],[47,104],[245,105],[244,2],[196,2],[197,2],[198,106],[9,2],[10,2],[14,2],[13,2],[3,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[4,2],[5,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[34,2],[35,2],[36,2],[37,2],[8,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[2,2],[1,2],[12,2],[11,2],[146,107],[156,108],[145,107],[166,109],[137,110],[136,111],[165,25],[159,112],[164,113],[139,114],[153,115],[138,116],[162,117],[134,118],[133,25],[163,119],[135,120],[140,121],[141,2],[144,121],[131,2],[167,122],[157,123],[148,124],[149,125],[151,126],[147,127],[150,128],[160,25],[142,129],[143,130],[152,131],[132,132],[155,123],[154,121],[158,2],[161,133],[54,2],[58,134],[51,2],[52,135],[61,2],[59,2],[56,136],[55,2],[63,137],[60,2],[64,138],[57,139],[53,2],[65,140],[62,141],[66,142]],"exportedModulesMap":[[121,1],[119,2],[68,2],[69,2],[67,2],[118,3],[70,4],[117,5],[72,6],[71,7],[73,4],[74,4],[76,8],[75,4],[77,9],[78,9],[80,10],[81,4],[82,10],[84,4],[85,4],[86,4],[87,11],[83,4],[88,2],[89,12],[91,12],[90,12],[92,12],[93,12],[101,13],[94,12],[95,12],[96,12],[97,12],[98,12],[99,12],[100,12],[102,4],[103,4],[79,4],[104,4],[105,4],[106,4],[108,4],[107,4],[114,4],[110,4],[116,14],[109,4],[115,4],[111,4],[112,4],[113,4],[124,15],[120,1],[122,16],[123,1],[229,17],[230,2],[233,18],[234,2],[235,19],[231,2],[236,2],[237,20],[227,2],[238,21],[239,2],[240,22],[241,23],[251,24],[252,2],[253,25],[254,26],[256,27],[257,28],[255,29],[258,30],[259,31],[260,32],[261,33],[262,34],[263,35],[264,36],[265,37],[266,38],[267,39],[169,40],[170,40],[171,41],[172,42],[173,43],[174,44],[125,2],[128,45],[126,2],[127,2],[175,46],[176,47],[177,48],[178,49],[179,50],[180,51],[181,51],[183,2],[182,52],[184,53],[185,54],[186,55],[168,56],[187,57],[188,58],[189,59],[190,60],[191,61],[192,62],[193,63],[194,64],[195,65],[199,66],[200,67],[201,68],[202,69],[203,69],[204,70],[205,2],[206,2],[207,71],[209,72],[208,73],[210,74],[211,75],[212,76],[213,77],[214,78],[215,79],[216,80],[130,81],[129,2],[225,82],[217,83],[218,84],[219,85],[220,86],[221,87],[222,88],[223,89],[224,90],[268,2],[271,91],[228,92],[272,2],[273,2],[274,93],[275,94],[270,2],[276,2],[277,2],[278,95],[232,2],[242,2],[269,92],[243,2],[247,96],[249,97],[248,96],[246,98],[250,99],[226,100],[49,101],[48,102],[50,103],[46,2],[45,2],[47,104],[245,105],[244,2],[196,2],[197,2],[198,106],[9,2],[10,2],[14,2],[13,2],[3,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[4,2],[5,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[34,2],[35,2],[36,2],[37,2],[8,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[2,2],[1,2],[12,2],[11,2],[146,107],[156,108],[145,107],[166,109],[137,110],[136,111],[165,25],[159,112],[164,113],[139,114],[153,115],[138,116],[162,117],[134,118],[133,25],[163,119],[135,120],[140,121],[141,2],[144,121],[131,2],[167,122],[157,123],[148,124],[149,125],[151,126],[147,127],[150,128],[160,25],[142,129],[143,130],[152,131],[132,132],[155,123],[154,121],[158,2],[161,133],[58,143],[52,144],[56,145],[63,146],[64,147],[57,148],[65,149],[62,150],[66,142]],"semanticDiagnosticsPerFile":[121,119,68,69,67,118,70,117,72,71,73,74,76,75,77,78,80,81,82,84,85,86,87,83,88,89,91,90,92,93,101,94,95,96,97,98,99,100,102,103,79,104,105,106,108,107,114,110,116,109,115,111,112,113,124,120,122,123,229,230,233,234,235,231,236,237,227,238,239,240,241,251,252,253,254,256,257,255,258,259,260,261,262,263,264,265,266,267,169,170,171,172,173,174,125,128,126,127,175,176,177,178,179,180,181,183,182,184,185,186,168,187,188,189,190,191,192,193,194,195,199,200,201,202,203,204,205,206,207,209,208,210,211,212,213,214,215,216,130,129,225,217,218,219,220,221,222,223,224,268,271,228,272,273,274,275,270,276,277,278,232,242,269,243,247,249,248,246,250,226,49,48,50,46,45,47,245,244,196,197,198,9,10,14,13,3,15,16,17,18,19,20,21,22,4,5,26,23,24,25,27,28,29,6,30,31,32,33,7,34,35,36,37,8,38,43,44,39,40,41,42,2,1,12,11,146,156,145,166,137,136,165,159,164,139,153,138,162,134,133,163,135,140,141,144,131,167,157,148,149,151,147,150,160,142,143,152,132,155,154,158,161,54,58,51,52,61,59,56,55,63,60,64,57,53,65,62,66]},"version":"4.7.4"}
1
+ {"program":{"fileNames":["../../node_modules/typescript/lib/lib.es6.d.ts","../../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.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.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.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/lemon-model/dist/types/core-types.d.ts","../../node_modules/lemon-model/dist/types/core-storage.d.ts","../../node_modules/lemon-model/dist/types/index.d.ts","../../node_modules/lemon-model/dist/cores/transformer.d.ts","../../node_modules/lemon-model/dist/cores/index.d.ts","../../node_modules/lemon-model/dist/socket/types.d.ts","../../node_modules/lemon-model/dist/socket/transport.d.ts","../../node_modules/lemon-model/dist/socket/websocket.d.ts","../../node_modules/lemon-model/dist/socket/index.d.ts","../../node_modules/lemon-model/dist/genai/types.d.ts","../../node_modules/lemon-model/dist/genai/proxy.d.ts","../../node_modules/lemon-model/dist/genai/transport.d.ts","../../node_modules/lemon-model/dist/genai/dump-test.d.ts","../../node_modules/lemon-model/dist/genai/index.d.ts","../../node_modules/lemon-model/dist/buffer/token.d.ts","../../node_modules/lemon-model/dist/buffer/stream.d.ts","../../node_modules/lemon-model/dist/buffer/network.d.ts","../../node_modules/lemon-model/dist/buffer/index.d.ts","../../node_modules/lemon-model/dist/index.d.ts","../../src/lib/types.ts","../../src/lib/socket-actions.ts","../../src/lib/auth/types.ts","../../src/lib/device/contracts.ts","../../src/lib/device/types.ts","../../src/lib/sockets/packets.ts","../../src/lib/sockets/types.ts","../../src/lib/chat/types.ts","../../src/modules/chat/types.ts","../../src/lib/channel/types.ts","../../src/lib/cloud/types.ts","../../src/lib/user/types.ts","../../src/lib/socket-inputs.ts","../../src/libs/sockets.ts","../../src/modules/sockets/types.ts","../../src/generated/field-registry.ts","../../src/modules/chat/model.ts","../../src/modules/sockets/model.ts","../../src/lib/broadcast/types.ts","../../src/modules/callback/types.ts","../../src/modules/mock/types.ts","../../src/modules/auth/types.ts","../../src/service/backend-types.ts","../../src/modules/mock/model.ts","../../src/modules/mock/views.ts","../../src/modules/sockets/views.ts","../../src/view/types.ts","../../node_modules/@types/aws-lambda/handler.d.ts","../../node_modules/@types/aws-lambda/common/api-gateway.d.ts","../../node_modules/@types/aws-lambda/common/cloudfront.d.ts","../../node_modules/@types/aws-lambda/trigger/alb.d.ts","../../node_modules/@types/aws-lambda/trigger/api-gateway-proxy.d.ts","../../node_modules/@types/aws-lambda/trigger/api-gateway-authorizer.d.ts","../../node_modules/@types/aws-lambda/trigger/appsync-resolver.d.ts","../../node_modules/@types/aws-lambda/trigger/autoscaling.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudformation-custom-resource.d.ts","../../node_modules/@types/aws-lambda/trigger/cdk-custom-resource.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudfront-request.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudfront-response.d.ts","../../node_modules/@types/aws-lambda/trigger/eventbridge.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudwatch-events.d.ts","../../node_modules/@types/aws-lambda/trigger/cloudwatch-logs.d.ts","../../node_modules/@types/aws-lambda/trigger/codebuild-cloudwatch-state.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-action.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-pipeline.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch-stage.d.ts","../../node_modules/@types/aws-lambda/trigger/codepipeline-cloudwatch.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/_common.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/create-auth-challenge.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-message.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-email-sender.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/custom-sms-sender.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/define-auth-challenge.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-authentication.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/post-confirmation.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-authentication.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-signup.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/pre-token-generation.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/user-migration.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/verify-auth-challenge-response.d.ts","../../node_modules/@types/aws-lambda/trigger/cognito-user-pool-trigger/index.d.ts","../../node_modules/@types/aws-lambda/trigger/connect-contact-flow.d.ts","../../node_modules/@types/aws-lambda/trigger/dynamodb-stream.d.ts","../../node_modules/@types/aws-lambda/trigger/iot.d.ts","../../node_modules/@types/aws-lambda/trigger/kinesis-firehose-transformation.d.ts","../../node_modules/@types/aws-lambda/trigger/kinesis-stream.d.ts","../../node_modules/@types/aws-lambda/trigger/lex.d.ts","../../node_modules/@types/aws-lambda/trigger/lex-v2.d.ts","../../node_modules/@types/aws-lambda/trigger/s3.d.ts","../../node_modules/@types/aws-lambda/trigger/s3-batch.d.ts","../../node_modules/@types/aws-lambda/trigger/ses.d.ts","../../node_modules/@types/aws-lambda/trigger/sns.d.ts","../../node_modules/@types/aws-lambda/trigger/sqs.d.ts","../../node_modules/@types/aws-lambda/trigger/msk.d.ts","../../node_modules/@types/aws-lambda/trigger/secretsmanager.d.ts","../../node_modules/@types/aws-lambda/trigger/s3-event-notification.d.ts","../../node_modules/@types/aws-lambda/trigger/amplify-resolver.d.ts","../../node_modules/@types/aws-lambda/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/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/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/globals.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/dom-events.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/querystring/decode.d.ts","../../node_modules/querystring/encode.d.ts","../../node_modules/querystring/index.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/sqlite.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/keyv/src/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/@types/caseless/index.d.ts","../../node_modules/@types/deep-eql/index.d.ts","../../node_modules/assertion-error/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/cookiejar/index.d.ts","../../node_modules/@types/cors/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/ioredis/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/chalk/types/index.d.ts","../../node_modules/jest-diff/build/cleanupsemantic.d.ts","../../node_modules/pretty-format/build/types.d.ts","../../node_modules/pretty-format/build/index.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/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/jsonwebtoken/index.d.ts","../../node_modules/@types/keyv/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/prettier/index.d.ts","../../node_modules/form-data/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/request/index.d.ts","../../node_modules/@types/retry/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/superagent/index.d.ts","../../node_modules/@types/supertest/index.d.ts","../../node_modules/@types/uuid/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":["721cec59c3fef87aaf480047d821fb758b3ec9482c4129a54631e6e25e432a31",{"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},"83411374f9c21de98b86707275dced234039e2362b649e231f600b7393202bda","39f5e11cbb7b085c74da81bbac3271c44c35a04a4776a41bf6803014de601495","e7390687ca5063ac5852f889935dedd1141bbd2539888ef82eab8e7020b7b3ee","b89aa7b6d177a2b409912b5042f5ce475031e40d7531cfb8e780927fcc6d4c83","064e3027d702ca00f80516658897613142b83dcb015cce9d098d55fbf97f206e","4cdbc9897980cdcb76b7462ca386ce219f7305c103317e43927cb7ea498276cb","bc68ad9b141d299b5f203cb1c417917427a46d96cd18e7100119ffc4783e28c7","3e5f11595ccf0aafe4f25ad81f448bdaa812da77cb983c2d1f5bfa98cc1449b4","50c399cbdf7dfad2051e0062e4a74ffe68ff2a43069fa9c108751397867ac311","593280998635871e8d1f9310bac70bca3a5ac234eec829516d37d6341cfe3954","4b7c84064e72560ad1d3a4b258e429deb6fd50113e0758b7d2ab0b8faa84ad78","332c4df2279dafa9127964ecb8e7d58ab0d0b2c227efc157f83db50eae170e45","2a1eadf3f5f26253b516ed338b0c87b29832db48d8f850cdd8cffc8ec223b92c","541d04e5150b52f43ebfb4b617be31104fe278a488064828eae69a1e216d5bc2","cb30db99bbe785db22a509b96e57a630a54728ceda109cac3f2f539fd2494412","30091d3b74e6b4ba11971d0469715c49140f11f668007992deda9d1fd038f3a9","00caaac345ef64778ee438a5bcaacbef379a57bb27b800a079a688c85821b4f4","ec793d024ae644efeab03bd382ff0a6aa05b47564c494287c72f519e18a0e51a","41e6204ac58b3f9702e8bf5576926a645897874804912ae57c29a667dc05b64b",{"version":"1c647792ffc556899bad2b5020ba2b987bc7eaff0cba347c3b63b05fce84c1b4","signature":"13f0bdef3affd9fb625ff1908714c0a5ddfba01b2d691256b9d848259b55c1e3"},{"version":"20f8e738d73965ffbbc79c34a64e6d38a4d001d20f449be7af97ed7254f25512","signature":"3f93a8f1f3f7c8a8c7c84250a8f2b00f20628ce25adf68c58603446c3207dd99"},{"version":"d010276c2c174d7df2ccf46dc544489c4819916b442a46271f69c0a1cb313494","signature":"c57599432dea1f4a40a92a0698344c4ac8ad8fd8b011be701afe5f5c6181db5f"},{"version":"880895d6f4e2f9661f2fae14eef2d2eea6b6497a1d8590e6775a4e1aef3d571c","signature":"c0463923ca42707cd0eb48de5aa4098d220a4535c390f70abb3fa2fac56d3e65"},{"version":"800be546f69aa7c806539a848f55a8c09a0536b3723d5ebdc61cf8ae9ac43b06","signature":"1aceb4b0d03583b2c2f7fdefcdf13ff3ed996b4ac45270690d439a0fb6c2fb36"},{"version":"2b0a813c4751d77f8a5e0bfc1dd3814bb28b1e13532ff507aa494510e04ff1f9","signature":"22a8928bf326140a2127095a12c1d7ff68fe979de0f03e17805854693fc00784"},{"version":"bf5867931610ece2c436c39db3135ebe292b7ea353cfc3b5967e267fa39909c5","signature":"ffa599629fa796a139468e5d977a70fdf0d87b94ecabbf67d986510386b35569"},{"version":"003450ac7d4d38edeed4ae65d8ed89e77f3fc978b7878ecd8bf16f5fc9d3b63a","signature":"2df9bb2c46aaa1542051ba565cd3d495d5b962b54d2934bf2f69f0080dc05e63"},{"version":"a842798040516b86329a1d346b2ef2d3b54f08cc875f8696e445162e8978bc8a","signature":"46c96ac8b0673b3a6f570a6381a6a349e8cd42564f6300fe8cc22432eb97898b"},{"version":"536015ec37b74fe7d1e0e0b9f543a894df81a0ef6f4528a9a3b25a50ff3abf11","signature":"ef4da37fc692d2f80a409364ff7debd435c6ad460ae2e52d16005dd253adc473"},{"version":"e61b12317f2369d74a51de3914c53823a94f6fe4b2d7243cc909292b233b79b5","signature":"4e19c59e8498426b4d62175c7043a6a257e222598a282abff40f2bab9723739a"},{"version":"9734f687aa67e17a77f3d397ce19b0f3da1c1ce308bd690d7c18f21d4ec2918a","signature":"d21df2d1d6b6698a97707cf9554fcf522b8c5d672bb267e6e3f1d6a409f4b1fb"},{"version":"ed541b1d2489c947bdb489abefd9645ba557c24eed7b3f56bc9e7c69500feeba","signature":"71cec67efb2602ec67861c49b50750e1f8c9edd42cc519166504321d03d498c2"},{"version":"85ab3b51159f233dcef1979616dc7810be23a7f4da34a4706b96f44edbad18c6","signature":"b6265edfee3742c9f70ce99be3d3be22d51564f925c44137debed884d69684c4"},{"version":"07dba9d63d4300df4b9ed088bc416cfb0210bc64fe5bd8fab9e368eb50139690","signature":"000e7fcc59e9ab29872c615584fb9ad1f393fabd095d3d5e1df78cc089dd0a18"},{"version":"fdc0333b00e2154ae10bc53b38f32eab4189e10775468cbfa2a059d2923f8d95","signature":"0e6a0abf93b0fc3797e113fd26a893eb2cfa6b983b23f51f3d3f6dd5c66ac175"},{"version":"5de7ab6ad06d01f23b04604dcdbf1202b1b1ce04cd7a77dfa19b9d6ca70a4a7f","signature":"bbdf8e211c3745d84d3980ccc80f9c7ecf36c2854e0c4d713bd818aeb65f44d4"},{"version":"75cba7d038c07aee19e84cf03cb2931af7620a9b97c392e8002f51f1b30b3d17","signature":"8542d3fecb8a671496049624a3f38776d167cebb40c89ed4a5afa47ed75867fb"},{"version":"4234dbb2b9d5b3153a1d09f1a6d142eaae706602f8fb2401f6bccc784b6063fd","signature":"ab10c78c69049172f6816c2004656aad0760d3e4b6d7215d0f9ddb1d5539be3d"},{"version":"e1c8140514d6ec39addfd35edb2db6fffacb91fe3bc9689042a5301af949f029","signature":"f5650aa760f8e975c83cacf536a80d4bd7acb2d3e70bdaacd3df2ff1a6b8ca9c"},{"version":"1da3a70158dd226f00c7a7a7e020d80b3b7f17bb5275d7a723d4838f736aa782","signature":"88fff4682b0806218ac53a36143ab70bf74f510e3644cd41819063694c3f334f"},{"version":"eadc3a138f8cc2514c2e69e899177c1941c19e26dad4523055ea38732d64af2c","signature":"d2cf9520be4535f982b943e193eeaa1fa1f4e5ccf26dcf51f5b1410dc0360bc3"},{"version":"4bb6e792bf36ad67e26ac8e048966c2b221ce261a46893bd18e83da11ce75c85","signature":"ec8bba75254e7d2a5c5a71ace6deba043b97c53ecfe47b5c60a3013cf789ac3c"},{"version":"0805f4a2f0fe2cf95a491e0f21fa0f704ceaee5e841aea7a552387430d7ea276","signature":"80edbbf40e69f892daf0aa3790256a372cfe0d4159fce0b6f93cc08e6f07a830"},{"version":"65cf50b41253764bb96a38e9341382229a2aa2418efe88e448395a88514f6a5a","signature":"9f00f7c8f110b5eea2eb0d79651c74912775835f0fa2183d1114ffe4ababb603"},{"version":"2c9b22faccb9f9923dcc6e9e8bd8bcd4c1e0496393189503334f76cb2b01a59f","signature":"80b77708adf625cccea981f36cdaa98ecc338622480e0f8c72d42cf622bb06f9"},"1872e604dded563b8856ae072c33a82cb12238baa6fdd5a11daef91dd1871553","6d1675231de1aa366144f91852cddb2eb3cad8d9f2e7e48f4e5e0031e7046ddc","bc9d1a62f3ab938e3ac66b85363c8f1ec1c5b9cf32e5d393f7b14209b4811c48","429d2e0d28ec8be13ebc5e0b389f34e0622d435c88ec5efe408c4d82e17f37c9","6bb7cbba94c9a5c43add2e17d93d04da08e51a69d412e9d1afaf130f4624e91a","f6f23892b68818f45d4863d7009401085ec48c699c9a65a8786ba9ad6b552628","7305cccc01f462295be680ae8955284e7182e34102256e2af2d21ec924bc87a0","bd6cd4ae039cc123778bd665d1711665415b18edde58fdc8ca3610e5ff84182a","46b3f5cf0c95f16651fa2582446bb9b35a28421a56097e9e853e00ebaeb9c610","004678b644cdb4615ac6cda7b2d285d0eb850e55eb53da47e8c1325cba362bb9","4205ae686b67d9dea3bff36ff28888ebfd278ca09ce45b66918a6420b26a09cc","d29a230261d709ce237307b4eadf9f0b55b00eee6ce3b47f389bf348614c132c","0dad26ffdf5cae28cb67ac9c0ce06c7ec732001b01046f47eeaa4ee5a3655f5d","ad5939fcb0c3db887f55a55284a9d7672c1a6f747d083751b614b2f0ed34b611","4194cc6e823aa830a71c733b18d0de1c29323b102c6460e9fe835ac5f8b8a9ba","4ff4add7b8cf26df217f2c883292778205847aefb0fd2aee64f5a229d0ffd399","420878898a89ebc3515fb87bbfd6662f0432fe918652669414b584c2540e3bc8","c24e2fddbca24f0b63d0b82e5aca4da50c8c591566711be7260c900c97d7c9f2","f4922a1814e47fdb4d93c2cf27968ea30c174e04d4a3374774046a9307dbbaf0","bfff1bb349423cc262a88775d8233f7ea2b87d66ba1f0631eec0c30bea097dd5","a177f76c040e29b9c31adfc93225c273828ff784b592bf56c6131771e624f628","06236dfec90a14b0c3db8249831069ea3f90b004d73d496a559a4466e5a344a4","19c08e1ce502625c711682ec21495ca47ca893b21f346621e7a175bcd677335f","5d36c521b96ba0d4b98919ca833c8cc62f1f225d40467122ba561a2c5553ab80","b8b71558bba1cdf2dff3d7796bd8e3383daa5f1278be5144ff0b0ac7538fa264","2b3046d66390c6447811adc06be3b085a7f396c53a7a4670d11159672d5aeb15","84d9e9735b2d0d9b1f5b58666d849b7d9a730749dd531e55bd17cb5c7e6e21eb","0aaa0e1d10349bc24bdee9dd2bca420741f1deb7028c7a17a2b9d5df2f5d9d63","dd289cb306f619c7844ff82fec02badc571c6ed66c7da72815239647febee137","754fb3e7737eb1feb7fcf4902e925cae8c050dd134819deb25ae3ed6843b7dd1","f05c1be0c5bf0e983941f9f75a43297b04730393d0bdabc687066d8b1d6b8d16","a97972e1e9b4bc5d31380c695b7a827c014bd042ec17369bc4d920a1fab7d47b","b5740b8d4723dcdc408195835a52cc83501b1f44399e3104eb4677b082c8973e","feb17c6ab54766cb447ed7efa1da2eacfe289d024da02eb0171fc072704f9be7","dd50796be484a4f4f3733dd67d0a829d93c5b6dd678552d40683f89e6767706c","4e50d35ec611c6d56d740d374bb78120280de9c077b3ecf6c8c6297a7058d5ea","b12effb4e275d1e3516506c030f4046283cc7a4d7e2b4e316b4397446444aa22","cdbff147b3bd958f7be6f4c621e8b29c5c17226ba8aa506e5d01d3446ee6ff21","66738976a7aa2d5fb2770a1b689f8bc643af958f836b7bc08e412d4092de3ab9","0751ea9602b019c630c160aa81c6d59495f0119123d171f2351c9907cd3440d7","33107c5cb9509a44748ca6de5159993a4366fdcea6828ca5d3241b216d5b0627","3809c600654ed5b6bdce015f7110d40a75e402e59de80c12b622b925f44a8599","146577c9761cc6015ae035a1407d4ada5f2232453acb82e7998daabe9f3a23d0","cec3cf5159f51f7725d5b06b631996fef4863d8f5c237b8a3f9a18f5570c8286","47ffa0bd85219fa1551c7cb128e3e1b44f980c9eb5baee26b0164db191ab917b","bb7de140ec25957e693e6b48de186b7229653d5c683fe7bbd1d24bcc66a86a15","162994e0ad049c7c8aa5f99a7f1e556f700d80452441a6ff0e4648cfcfaebbb8","fb8aebad66729980040dcf5ec38b723a4abb2336db77e51b1d642f73a81291b4","5b6df0d20c824e4c66b791ec39d10721af9954794231ad9e0f73889b38e83858","35c3631308ca05a1cac7a31b6a3d2a68442cdd2315adfb476d0461dea2cac030","256d2eed83c1e05fc9b18694f07f7b74da266bed410c6d392e3236ab36cdd0da","f3711e90a75e13ce96795f7c02287dd7ef76905998cb5804a69795f863b7d776","a0c6f9338d39354a276bb9431c19e23d6d03a72cc868e41438a9a9e1ab80a2b8","8d27e5f73b75340198b2df36f39326f693743e64006bd7b88a925a5f285df628","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","1c2cd862994b1fbed3cde0d1e8de47835ff112d197a3debfddf7b2ee3b2c52bc","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","fc72135da24040641388fb5f2c2a7a99aa5b962c0fa125bd96fabeec63dd2e63","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3",{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true},"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a",{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true},{"version":"109b9c280e8848c08bf4a78fff1fed0750a6ca1735671b5cf08b71bae5448c03","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":"a12d953aa755b14ac1d28ecdc1e184f3285b01d6d1e58abc11bf1826bc9d80e6","affectsGlobalScope":true},"a38efe83ff77c34e0f418a806a01ca3910c02ee7d64212a59d59bca6c2c38fa1","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","3fe4022ba1e738034e38ad9afacbf0f1f16b458ed516326f5bf9e4a31e9be1dc",{"version":"a957197054b074bcdf5555d26286e8461680c7c878040d0f4e2d5509a7524944","affectsGlobalScope":true},"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","e9b97d69510658d2f4199b7d384326b7c4053b9e6645f5c19e1c2a54ede427fc",{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true},"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a",{"version":"f478f6f5902dc144c0d6d7bdc919c5177cac4d17a8ca8653c2daf6d7dc94317f","affectsGlobalScope":true},"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","0a6b3ad6e19dd0fe347a54cbfd8c8bd5091951a2f97b2f17e0af011bfde05482","0a37a4672f163d7fe46a414923d0ef1b0526dcd2d2d3d01c65afe6da03bf2495","1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393",{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true},"25d130083f833251b5b4c2794890831b1b8ce2ead24089f724181576cf9d7279","ffe66ee5c9c47017aca2136e95d51235c10e6790753215608bff1e712ff54ec6","2b0439104c87ea2041f0f41d7ed44447fe87b5bd4d31535233176fa19882e800","017caf5d2a8ef581cf94f678af6ce7415e06956317946315560f1487b9a56167","528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","d71535813e39c23baa113bc4a29a0e187b87d1105ccc8c5a6ebaca38d9a9bff2",{"version":"aa9e37a18f4a50ea4bb5f118d03d144cc779b778e0e3fe60ee80c3add19e613b","affectsGlobalScope":true},"f72bc8fe16da67e4e3268599295797b202b95e54bd215a03f97e925dd1502a36","b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0",{"version":"915e18c559321c0afaa8d34674d3eb77e1ded12c3e85bf2a9891ec48b07a1ca5","affectsGlobalScope":true},"ad7e61eca7f2f8bf47e72695f9f6663b75e41d87ef49abdb17c0cb843862f8aa","ecba2e44af95b0599c269a92628cec22e752868bce37396740deb51a5c547a26","46a9fb41a8f3bc7539eeebc15a6e04b9e55d7537a081615ad3614220d34c3e0f",{"version":"636302a00dfd1f9fe6e8e91e4e9350c6518dcc8d51a474e4fc3a9ba07135100b","affectsGlobalScope":true},"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","e1ce1d622f1e561f6cdf246372ead3bbc07ce0342024d0e9c7caf3136f712698","199c8269497136f3a0f4da1d1d90ab033f899f070e0dd801946f2a241c8abba2","37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093",{"version":"27e4532aaaa1665d0dd19023321e4dc12a35a741d6b8e1ca3517fcc2544e0efe","affectsGlobalScope":true},"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","edbb3546af6a57fa655860fef11f4109390f4a2f1eab4a93f548ccc21d604a56",{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true},"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","98ffdf93dfdd206516971d28e3e473f417a5cfd41172e46b4ce45008f640588e","66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4",{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true},{"version":"a7692a54334fd08960cd0c610ff509c2caa93998e0dcefa54021489bcc67c22d","affectsGlobalScope":true},"0f7e00beefa952297cde4638b2124d2d9a1eed401960db18edcadaa8500c78eb","3a051941721a7f905544732b0eb819c8d88333a96576b13af08b82c4f17581e4","ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a",{"version":"1e25f8d0a8573cafd5b5a16af22d26ab872068a693b9dbccd3f72846ab373655","affectsGlobalScope":true},"3797dd6f4ea3dc15f356f8cdd3128bfa18122213b38a80d6c1f05d8e13cbdad8","171fd8807643c46a9d17e843959abdf10480d57d60d38d061fb44a4c8d4a8cc4","42baf4ca38c38deaf411ea73f37bc39ff56c6e5c761a968b64ac1b25c92b5cd8","4f6ae308c5f2901f2988c817e1511520619e9025b9b12cc7cce2ab2e6ffed78a","8718fa41d7cf4aa91de4e8f164c90f88e0bf343aa92a1b9b725a9c675c64e16b","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","5343f3c160282dfbaab9af350119a0c3b59b7076ef0117bb5995a66e240dab28","427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d",{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true},"8d48b8f8a377ade8dd1f000625bc276eea067f2529cc9cafdf082d17142107d6","6fbd58e4015b9ae31ea977d4d549eb24a1102cc798b57ec5d70868b542c06612","151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","be00321090ed100e3bd1e566c0408004137e73feb19d6380eba57d68519ff6c5","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","091f417275a51ab3c47b949723e9e8a193012157ecc64a96e2d7b1505e82f395","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true},"f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","bb4ed283cfb3db7ec1d4bb79c37f5e96d39b340f1f4de995c4b0b836c8d5fa05","fec943fdb3275eb6e006b35e04a8e2e99e9adf3f4b969ddf15315ac7575a93e4","380b919bfa0516118edaf25b99e45f855e7bc3fd75ce4163a1cfe4a666388804","40de86ced5175a6ffe84a52abe6ac59ac0efbc604a5975a8c6476c3ddc682ff1","fcf79300e5257a23ed3bacaa6861d7c645139c6f7ece134d15e6669447e5e6db","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","aa2c18a1b5a086bbcaae10a4efba409cc95ba7287d8cf8f2591b53704fea3dea","5a0b15210129310cee9fa6af9200714bb4b12af4a04d890e15f34dbea1cf1852","0244119dbcbcf34faf3ffdae72dab1e9bc2bc9efc3c477b2240ffa94af3bca56","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","a873c50d3e47c21aa09fbe1e2023d9a44efb07cc0cb8c72f418bf301b0771fd3","7c14ccd2eaa82619fffc1bfa877eb68a012e9fb723d07ee98db451fadb618906","49c36529ee09ea9ce19525af5bb84985ea8e782cb7ee8c493d9e36d027a3d019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9","4f6a12044ee6f458db11964153830abbc499e73d065c51c329ec97407f4b13dd","f1d8b21cdf08726021c8cce0cd6159486236cf1d633eeabbc435b5b2e5869c2e","e91ad231af87f864b3f07cd0e39b1cf6c133988156f087c1c3ccb0a5491c9115","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","bf0b1297461549a0e32cd57dffb992c63d7c7134fe0f9e15d359abcc88dbd28c","58a3914b1cce4560d9ad6eee2b716caaa030eda0a90b21ca2457ea9e2783eaa3","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","31c502014e5ba046d5cb060136929b73fd53f0f989aa37b2b0424644cb0d93ef","76232dbb982272b182a76ad8745a9b02724dc9896e2328ce360e2c56c64c9778","fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"declaration":true,"emitDeclarationOnly":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noImplicitAny":false,"outDir":"./","removeComments":false,"skipLibCheck":true,"sourceMap":true,"strict":false,"target":2},"fileIdsList":[[143,154,196],[154,196],[91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,154,196],[91,154,196],[91,97,154,196],[91,92,95,154,196],[91,92,154,196],[91,99,154,196],[91,93,154,196],[103,154,196],[91,108,109,110,154,196],[91,112,154,196],[91,113,114,115,116,117,118,119,120,121,122,123,124,154,196],[91,103,154,196],[143,144,145,146,147,154,196],[143,145,154,196],[154,196,208,211,242,249,250,251,252],[154,196,255,256],[154,196,211],[154,196,209,249],[154,196,208,231,239,249],[154,196,263],[154,196,264],[154,196,269,274],[154,196,249],[154,196,208,249],[154,196,279,281,282,283,284,285,286,287,288,289,290,291],[154,196,279,280,282,283,284,285,286,287,288,289,290,291],[154,196,280,281,282,283,284,285,286,287,288,289,290,291],[154,196,279,280,281,283,284,285,286,287,288,289,290,291],[154,196,279,280,281,282,284,285,286,287,288,289,290,291],[154,196,279,280,281,282,283,285,286,287,288,289,290,291],[154,196,279,280,281,282,283,284,286,287,288,289,290,291],[154,196,279,280,281,282,283,284,285,287,288,289,290,291],[154,196,279,280,281,282,283,284,285,286,288,289,290,291],[154,196,279,280,281,282,283,284,285,286,287,289,290,291],[154,196,279,280,281,282,283,284,285,286,287,288,290,291],[154,196,279,280,281,282,283,284,285,286,287,288,289,291],[154,196,279,280,281,282,283,284,285,286,287,288,289,290],[154,193,196],[154,195,196],[154,196,201,234],[154,196,197,202,208,209,216,231,242],[154,196,197,198,208,216],[149,150,151,154,196],[154,196,199,243],[154,196,200,201,209,217],[154,196,201,231,239],[154,196,202,204,208,216],[154,195,196,203],[154,196,204,205],[154,196,206,208],[154,195,196,208],[154,196,208,209,210,231,242],[154,196,208,209,210,226,231,234],[154,191,196],[154,191,196,204,208,211,216,231,242],[154,196,208,209,211,212,216,231,239,242],[154,196,211,213,231,239,242],[154,196,208,214],[154,196,215,242],[154,196,204,208,216,231],[154,196,217],[154,196,218],[154,195,196,219],[154,193,194,195,196,197,198,199,200,201,202,203,204,205,206,208,209,210,211,212,213,214,215,216,217,218,219,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248],[154,196,224],[154,196,225],[154,196,208,226,227],[154,196,226,228,243,245],[154,196,208,231,232,234],[154,196,233,234],[154,196,231,232],[154,196,234],[154,196,235],[154,193,196,231,236],[154,196,208,237,238],[154,196,237,238],[154,196,201,216,231,239],[154,196,240],[196],[152,153,154,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248],[154,196,216,241],[154,196,211,225,242],[154,196,201,243],[154,196,231,244],[154,196,215,245],[154,196,246],[154,196,208,210,219,231,234,242,245,247],[154,196,231,248],[154,196,209,211,213,216,231,242,249,254,293,294],[154,196,211,231,249],[154,196,209,211,231,249,258],[154,196,298],[154,196,301],[154,196,267,270],[154,196,267,270,271,272],[154,196,269],[154,196,266,273],[154,196,208],[59,60,61,154,196],[50,51,60,154,196],[48,154,196],[46,154,196],[52,154,196],[54,55,56,57,154,196],[54,154,196],[50,51,54,154,196],[47,49,53,58,62,154,196],[50,51,52,154,196],[50,154,196],[45,46,154,196],[154,196,268],[154,196,220,221],[154,163,167,196,242],[154,163,196,231,242],[154,158,196],[154,160,163,196,239,242],[154,196,216,239],[154,158,196,249],[154,160,163,196,216,242],[154,155,156,159,162,196,208,231,242],[154,163,170,196],[154,155,161,196],[154,163,184,185,196],[154,159,163,196,234,242,249],[154,184,196,249],[154,157,158,196,249],[154,163,196],[154,157,158,159,160,161,162,163,164,165,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,185,186,187,188,189,190,196],[154,163,178,196],[154,163,170,171,196],[154,161,163,171,172,196],[154,162,196],[154,155,158,163,196],[154,163,167,171,172,196],[154,167,196],[154,161,163,166,196,242],[154,155,160,163,170,196],[154,196,231],[154,158,163,184,196,247,249],[64,66,68,69,71,73,74,75,154,196],[81,154,196],[64,66,68,69,71,72,73,74,75,154,196],[64,66,67,68,69,71,73,74,75,154,196],[66,68,70,71,73,74,75,154,196],[69,154,196],[63,64,65,66,68,69,71,73,74,75,76,154,196],[63,72,79,154,196],[63,79,84,154,196],[63,84,87,154,196],[63,78,79,80,154,196],[63,78,81,154,196],[63,72,78,83,84,85,154,196],[77,82,86,88,89,154,196],[64,66,68,69,71,73,74,75],[81],[64,66,68,69,71,72,73,74,75],[64,66,67,68,69,71,73,74,75],[66,68,70,71,73,74,75],[69],[63,64,65,66,68,69,71,73,74,75,76],[63,72],[63,84],[63,84,87],[63,78,80],[63,78,81],[63]],"referencedMap":[[145,1],[143,2],[92,2],[93,2],[91,2],[142,3],[94,4],[141,5],[96,6],[95,7],[97,4],[98,4],[100,8],[99,4],[101,9],[102,9],[104,10],[105,4],[106,10],[108,4],[109,4],[110,4],[111,11],[107,4],[112,2],[113,12],[115,12],[114,12],[116,12],[117,12],[125,13],[118,12],[119,12],[120,12],[121,12],[122,12],[123,12],[124,12],[126,4],[127,4],[103,4],[128,4],[129,4],[130,4],[132,4],[131,4],[138,4],[134,4],[140,14],[133,4],[139,4],[135,4],[136,4],[137,4],[148,15],[144,1],[146,16],[147,1],[253,17],[254,2],[257,18],[258,2],[259,19],[255,2],[260,2],[261,20],[251,2],[262,21],[263,2],[264,22],[265,23],[275,24],[276,2],[277,25],[278,26],[280,27],[281,28],[279,29],[282,30],[283,31],[284,32],[285,33],[286,34],[287,35],[288,36],[289,37],[290,38],[291,39],[193,40],[194,40],[195,41],[196,42],[197,43],[198,44],[149,2],[152,45],[150,2],[151,2],[199,46],[200,47],[201,48],[202,49],[203,50],[204,51],[205,51],[207,2],[206,52],[208,53],[209,54],[210,55],[192,56],[211,57],[212,58],[213,59],[214,60],[215,61],[216,62],[217,63],[218,64],[219,65],[223,66],[224,67],[225,68],[226,69],[227,69],[228,70],[229,2],[230,2],[231,71],[233,72],[232,73],[234,74],[235,75],[236,76],[237,77],[238,78],[239,79],[240,80],[154,81],[153,2],[249,82],[241,83],[242,84],[243,85],[244,86],[245,87],[246,88],[247,89],[248,90],[292,2],[295,91],[252,92],[296,2],[297,2],[298,93],[299,94],[294,2],[300,2],[301,2],[302,95],[256,2],[266,2],[293,92],[267,2],[271,96],[273,97],[272,96],[270,98],[274,99],[250,100],[62,101],[61,102],[60,2],[59,2],[49,103],[48,104],[57,105],[58,106],[55,107],[56,108],[54,2],[63,109],[53,110],[51,111],[50,2],[52,111],[46,2],[45,2],[47,112],[269,113],[268,2],[220,2],[221,2],[222,114],[9,2],[10,2],[14,2],[13,2],[3,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[4,2],[5,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[34,2],[35,2],[36,2],[37,2],[8,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[2,2],[1,2],[12,2],[11,2],[170,115],[180,116],[169,115],[190,117],[161,118],[160,119],[189,25],[183,120],[188,121],[163,122],[177,123],[162,124],[186,125],[158,126],[157,25],[187,127],[159,128],[164,129],[165,2],[168,129],[155,2],[191,130],[181,131],[172,132],[173,133],[175,134],[171,135],[174,136],[184,25],[166,137],[167,138],[176,139],[156,140],[179,131],[178,129],[182,2],[185,141],[79,2],[66,142],[82,143],[73,144],[71,142],[74,142],[67,2],[68,145],[65,2],[76,146],[69,142],[70,147],[64,2],[75,142],[77,148],[85,2],[83,2],[80,149],[72,2],[87,150],[84,2],[88,151],[81,152],[78,2],[89,153],[86,154],[90,155]],"exportedModulesMap":[[145,1],[143,2],[92,2],[93,2],[91,2],[142,3],[94,4],[141,5],[96,6],[95,7],[97,4],[98,4],[100,8],[99,4],[101,9],[102,9],[104,10],[105,4],[106,10],[108,4],[109,4],[110,4],[111,11],[107,4],[112,2],[113,12],[115,12],[114,12],[116,12],[117,12],[125,13],[118,12],[119,12],[120,12],[121,12],[122,12],[123,12],[124,12],[126,4],[127,4],[103,4],[128,4],[129,4],[130,4],[132,4],[131,4],[138,4],[134,4],[140,14],[133,4],[139,4],[135,4],[136,4],[137,4],[148,15],[144,1],[146,16],[147,1],[253,17],[254,2],[257,18],[258,2],[259,19],[255,2],[260,2],[261,20],[251,2],[262,21],[263,2],[264,22],[265,23],[275,24],[276,2],[277,25],[278,26],[280,27],[281,28],[279,29],[282,30],[283,31],[284,32],[285,33],[286,34],[287,35],[288,36],[289,37],[290,38],[291,39],[193,40],[194,40],[195,41],[196,42],[197,43],[198,44],[149,2],[152,45],[150,2],[151,2],[199,46],[200,47],[201,48],[202,49],[203,50],[204,51],[205,51],[207,2],[206,52],[208,53],[209,54],[210,55],[192,56],[211,57],[212,58],[213,59],[214,60],[215,61],[216,62],[217,63],[218,64],[219,65],[223,66],[224,67],[225,68],[226,69],[227,69],[228,70],[229,2],[230,2],[231,71],[233,72],[232,73],[234,74],[235,75],[236,76],[237,77],[238,78],[239,79],[240,80],[154,81],[153,2],[249,82],[241,83],[242,84],[243,85],[244,86],[245,87],[246,88],[247,89],[248,90],[292,2],[295,91],[252,92],[296,2],[297,2],[298,93],[299,94],[294,2],[300,2],[301,2],[302,95],[256,2],[266,2],[293,92],[267,2],[271,96],[273,97],[272,96],[270,98],[274,99],[250,100],[62,101],[61,102],[60,2],[59,2],[49,103],[48,104],[57,105],[58,106],[55,107],[56,108],[54,2],[63,109],[53,110],[51,111],[50,2],[52,111],[46,2],[45,2],[47,112],[269,113],[268,2],[220,2],[221,2],[222,114],[9,2],[10,2],[14,2],[13,2],[3,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[4,2],[5,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[34,2],[35,2],[36,2],[37,2],[8,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[2,2],[1,2],[12,2],[11,2],[170,115],[180,116],[169,115],[190,117],[161,118],[160,119],[189,25],[183,120],[188,121],[163,122],[177,123],[162,124],[186,125],[158,126],[157,25],[187,127],[159,128],[164,129],[165,2],[168,129],[155,2],[191,130],[181,131],[172,132],[173,133],[175,134],[171,135],[174,136],[184,25],[166,137],[167,138],[176,139],[156,140],[179,131],[178,129],[182,2],[185,141],[66,156],[82,157],[73,158],[71,156],[74,156],[68,159],[76,160],[69,156],[70,161],[75,156],[77,162],[80,163],[87,164],[88,165],[81,166],[89,167],[86,168],[90,155]],"semanticDiagnosticsPerFile":[145,143,92,93,91,142,94,141,96,95,97,98,100,99,101,102,104,105,106,108,109,110,111,107,112,113,115,114,116,117,125,118,119,120,121,122,123,124,126,127,103,128,129,130,132,131,138,134,140,133,139,135,136,137,148,144,146,147,253,254,257,258,259,255,260,261,251,262,263,264,265,275,276,277,278,280,281,279,282,283,284,285,286,287,288,289,290,291,193,194,195,196,197,198,149,152,150,151,199,200,201,202,203,204,205,207,206,208,209,210,192,211,212,213,214,215,216,217,218,219,223,224,225,226,227,228,229,230,231,233,232,234,235,236,237,238,239,240,154,153,249,241,242,243,244,245,246,247,248,292,295,252,296,297,298,299,294,300,301,302,256,266,293,267,271,273,272,270,274,250,62,61,60,59,49,48,57,58,55,56,54,63,53,51,50,52,46,45,47,269,268,220,221,222,9,10,14,13,3,15,16,17,18,19,20,21,22,4,5,26,23,24,25,27,28,29,6,30,31,32,33,7,34,35,36,37,8,38,43,44,39,40,41,42,2,1,12,11,170,180,169,190,161,160,189,183,188,163,177,162,186,158,157,187,159,164,165,168,155,191,181,172,173,175,171,174,184,166,167,176,156,179,178,182,185,79,66,82,73,71,74,67,68,65,76,69,70,64,75,77,85,83,80,72,87,84,88,81,78,89,86,90]},"version":"4.7.4"}
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@lemoncloud/chatic-sockets-api",
3
- "version": "0.26.519",
3
+ "version": "0.26.524",
4
4
  "description": "chatic-sockets management api",
5
5
  "types": "dist/view/types.d.ts",
6
6
  "scripts": {},
7
7
  "dependencies": {
8
- "lemon-model": "^1.1.1"
8
+ "lemon-model": "^1.2.2"
9
9
  },
10
10
  "browser": {
11
11
  "fs": false