@book000/node-utils 1.15.5 → 1.15.7

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,2 @@
1
+ export {};
2
+ //# sourceMappingURL=configuration.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"configuration.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/configuration.test.ts"],"names":[],"mappings":""}
@@ -0,0 +1,159 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const node_fs_1 = __importDefault(require("node:fs"));
7
+ const node_path_1 = __importDefault(require("node:path"));
8
+ const configuration_1 = require("../configuration");
9
+ const node_os_1 = __importDefault(require("node:os"));
10
+ class TestConfigFramework extends configuration_1.ConfigFramework {
11
+ validates() {
12
+ return {
13
+ 'name is string': (config) => typeof config.name === 'string',
14
+ 'value is number': (config) => typeof config.value === 'number',
15
+ 'flag is boolean': (config) => typeof config.flag === 'boolean',
16
+ 'nested.key is string': (config) => {
17
+ if (!config.nested)
18
+ return true;
19
+ return typeof config.nested.key === 'string';
20
+ },
21
+ 'value is greater than zero': (config) => config.value > 0,
22
+ };
23
+ }
24
+ }
25
+ describe('ConfigFramework', () => {
26
+ const tempDir = node_fs_1.default.mkdtempSync(node_path_1.default.join(node_os_1.default.tmpdir(), 'config-test-'));
27
+ const validConfigPath = node_path_1.default.join(tempDir, 'valid-config.json');
28
+ const invalidConfigPath = node_path_1.default.join(tempDir, 'invalid-config.json');
29
+ const invalidJsonConfigPath = node_path_1.default.join(tempDir, 'invalid-json-config.json');
30
+ beforeAll(() => {
31
+ node_fs_1.default.writeFileSync(validConfigPath, JSON.stringify({
32
+ name: 'test',
33
+ value: 10,
34
+ flag: true,
35
+ nested: {
36
+ key: 'nested-value',
37
+ },
38
+ }));
39
+ node_fs_1.default.writeFileSync(invalidConfigPath, JSON.stringify({
40
+ name: 'test',
41
+ value: -5,
42
+ flag: 'invalid',
43
+ }));
44
+ node_fs_1.default.writeFileSync(invalidJsonConfigPath, '{ invalid json');
45
+ });
46
+ afterAll(() => {
47
+ node_fs_1.default.rmSync(tempDir, { recursive: true, force: true });
48
+ });
49
+ describe('constructor', () => {
50
+ it('should use the path provided as an argument when it exists', () => {
51
+ const config = new TestConfigFramework(validConfigPath);
52
+ expect(config).toBeDefined();
53
+ });
54
+ it('should use CONFIG_PATH environment variable when it exists', () => {
55
+ const originalConfigPath = process.env.CONFIG_PATH;
56
+ process.env.CONFIG_PATH = validConfigPath;
57
+ try {
58
+ const config = new TestConfigFramework();
59
+ expect(config).toBeDefined();
60
+ }
61
+ finally {
62
+ process.env.CONFIG_PATH = originalConfigPath;
63
+ }
64
+ });
65
+ it('should use CONFIG_FILE environment variable when it exists and CONFIG_PATH is not defined', () => {
66
+ const originalConfigPath = process.env.CONFIG_PATH;
67
+ const originalConfigFile = process.env.CONFIG_FILE;
68
+ delete process.env.CONFIG_PATH;
69
+ process.env.CONFIG_FILE = validConfigPath;
70
+ try {
71
+ const config = new TestConfigFramework();
72
+ expect(config).toBeDefined();
73
+ }
74
+ finally {
75
+ process.env.CONFIG_PATH = originalConfigPath;
76
+ process.env.CONFIG_FILE = originalConfigFile;
77
+ }
78
+ });
79
+ it('should throw an error when no valid path is provided', () => {
80
+ const originalConfigPath = process.env.CONFIG_PATH;
81
+ const originalConfigFile = process.env.CONFIG_FILE;
82
+ delete process.env.CONFIG_PATH;
83
+ delete process.env.CONFIG_FILE;
84
+ try {
85
+ expect(() => new TestConfigFramework('non-existent-file.json')).toThrow('Config path not found');
86
+ }
87
+ finally {
88
+ process.env.CONFIG_PATH = originalConfigPath;
89
+ process.env.CONFIG_FILE = originalConfigFile;
90
+ }
91
+ });
92
+ });
93
+ describe('load', () => {
94
+ it('should load a valid config file', () => {
95
+ const config = new TestConfigFramework(validConfigPath);
96
+ expect(() => {
97
+ config.load();
98
+ }).not.toThrow();
99
+ });
100
+ it('should load but resulting in incomplete parsing when JSON is invalid', () => {
101
+ const config = new TestConfigFramework(invalidJsonConfigPath);
102
+ expect(() => {
103
+ config.load();
104
+ }).not.toThrow();
105
+ });
106
+ });
107
+ describe('validate', () => {
108
+ it('should validate a valid config successfully', () => {
109
+ const config = new TestConfigFramework(validConfigPath);
110
+ config.load();
111
+ const result = config.validate();
112
+ expect(result).toBeTruthy();
113
+ expect(config.getValidateFailures()).toHaveLength(0);
114
+ });
115
+ it('should fail validation for an invalid config', () => {
116
+ const config = new TestConfigFramework(invalidConfigPath);
117
+ config.load();
118
+ const result = config.validate();
119
+ expect(result).toBeFalsy();
120
+ const failures = config.getValidateFailures();
121
+ expect(failures).toContain('flag is boolean');
122
+ expect(failures).toContain('value is greater than zero');
123
+ });
124
+ it('should throw an error when config is not loaded', () => {
125
+ const config = new TestConfigFramework(validConfigPath);
126
+ expect(() => config.validate()).toThrow('Config not loaded');
127
+ });
128
+ });
129
+ describe('get', () => {
130
+ it('should get a config value by key', () => {
131
+ const config = new TestConfigFramework(validConfigPath);
132
+ config.load();
133
+ expect(config.get('name')).toBe('test');
134
+ expect(config.get('value')).toBe(10);
135
+ expect(config.get('flag')).toBe(true);
136
+ expect(config.get('nested')).toEqual({ key: 'nested-value' });
137
+ });
138
+ it('should throw an error when config is not loaded', () => {
139
+ const config = new TestConfigFramework(validConfigPath);
140
+ expect(() => config.get('name')).toThrow('Config not loaded');
141
+ });
142
+ });
143
+ describe('getValidateFailures', () => {
144
+ it('should return an empty array if no validation has been run', () => {
145
+ const config = new TestConfigFramework(validConfigPath);
146
+ config.load();
147
+ expect(config.getValidateFailures()).toHaveLength(0);
148
+ });
149
+ it('should return failed validation rules', () => {
150
+ const config = new TestConfigFramework(invalidConfigPath);
151
+ config.load();
152
+ config.validate();
153
+ const failures = config.getValidateFailures();
154
+ expect(failures).toContain('flag is boolean');
155
+ expect(failures).toContain('value is greater than zero');
156
+ });
157
+ });
158
+ });
159
+ //# sourceMappingURL=configuration.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"configuration.test.js","sourceRoot":"","sources":["../../src/__tests__/configuration.test.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=discord.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"discord.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/discord.test.ts"],"names":[],"mappings":""}
@@ -0,0 +1,362 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const axios_1 = __importDefault(require("axios"));
7
+ const discord_1 = require("../discord");
8
+ const form_data_1 = __importDefault(require("form-data"));
9
+ jest.mock('axios');
10
+ const mockedAxios = axios_1.default;
11
+ const originalFormDataAppend = form_data_1.default.prototype.append;
12
+ form_data_1.default.prototype.append = jest.fn(function (_field, _value, _options) {
13
+ return {};
14
+ });
15
+ const originalFormDataGetHeaders = form_data_1.default.prototype.getHeaders;
16
+ form_data_1.default.prototype.getHeaders = jest.fn(function () {
17
+ return {
18
+ 'content-type': 'multipart/form-data; boundary=---------------------------1234',
19
+ };
20
+ });
21
+ const LinkStyle = 5;
22
+ describe('Discord', () => {
23
+ beforeEach(() => {
24
+ jest.clearAllMocks();
25
+ mockedAxios.post.mockResolvedValue({
26
+ status: 200,
27
+ data: { id: 'mock-message-id' },
28
+ });
29
+ mockedAxios.patch.mockResolvedValue({ status: 200, data: {} });
30
+ jest.clearAllMocks();
31
+ });
32
+ afterAll(() => {
33
+ form_data_1.default.prototype.append = originalFormDataAppend;
34
+ form_data_1.default.prototype.getHeaders = originalFormDataGetHeaders;
35
+ });
36
+ describe('constructor', () => {
37
+ it('should initialize with bot options', () => {
38
+ const options = { token: 'test-token', channelId: 'test-channel' };
39
+ const discord = new discord_1.Discord(options);
40
+ expect(discord).toBeDefined();
41
+ });
42
+ it('should initialize with webhook options', () => {
43
+ const options = { webhookUrl: 'https://discord.com/api/webhooks/123/abc' };
44
+ const discord = new discord_1.Discord(options);
45
+ expect(discord).toBeDefined();
46
+ });
47
+ it('should throw an error with invalid options', () => {
48
+ const options = { invalidOption: 'test' };
49
+ expect(() => new discord_1.Discord(options)).toThrow('Invalid options');
50
+ });
51
+ });
52
+ describe('validations', () => {
53
+ const validations = discord_1.Discord.validations;
54
+ it('should validate token or webhookUrl and channelId', () => {
55
+ expect(validations['token or webhookUrl and channelId']({ token: 'test' })).toBe(true);
56
+ expect(validations['token or webhookUrl and channelId']({
57
+ webhookUrl: 'test',
58
+ channelId: 'test',
59
+ })).toBe(true);
60
+ expect(validations['token or webhookUrl and channelId']({})).toBe(false);
61
+ });
62
+ it('should validate token is valid', () => {
63
+ expect(validations['token is valid']({ token: 'test' })).toBe(true);
64
+ expect(validations['token is valid']({ token: 123 })).toBe(false);
65
+ expect(validations['token is valid']({})).toBe(false);
66
+ });
67
+ it('should validate webhookUrl is valid', () => {
68
+ expect(validations['webhookUrl is valid']({ webhookUrl: 'test' })).toBe(true);
69
+ expect(validations['webhookUrl is valid']({ webhookUrl: 123 })).toBe(false);
70
+ expect(validations['webhookUrl is valid']({})).toBe(false);
71
+ });
72
+ it('should validate channelId is valid', () => {
73
+ expect(validations['channelId is valid']({ channelId: 'test' })).toBe(true);
74
+ expect(validations['channelId is valid']({ channelId: 123 })).toBe(false);
75
+ expect(validations['channelId is valid']({})).toBe(false);
76
+ });
77
+ });
78
+ describe('sendMessage', () => {
79
+ it('should send a string message via bot', async () => {
80
+ const discord = new discord_1.Discord({
81
+ token: 'test-token',
82
+ channelId: 'test-channel',
83
+ });
84
+ const messageId = await discord.sendMessage('Test message');
85
+ expect(mockedAxios.post).toHaveBeenCalled();
86
+ expect(messageId).toBe('mock-message-id');
87
+ const call = mockedAxios.post.mock.calls[0];
88
+ expect(call[0]).toContain('/channels/test-channel/messages');
89
+ expect(call[2]?.headers).toHaveProperty('Authorization', 'Bot test-token');
90
+ });
91
+ it('should send an embed message via bot', async () => {
92
+ const discord = new discord_1.Discord({
93
+ token: 'test-token',
94
+ channelId: 'test-channel',
95
+ });
96
+ const embeds = [
97
+ {
98
+ title: 'Test Title',
99
+ description: 'Test Description',
100
+ color: 16711680,
101
+ },
102
+ ];
103
+ const messageId = await discord.sendMessage({ embeds });
104
+ expect(mockedAxios.post).toHaveBeenCalled();
105
+ expect(messageId).toBe('mock-message-id');
106
+ });
107
+ it('should send a component message via bot', async () => {
108
+ const discord = new discord_1.Discord({
109
+ token: 'test-token',
110
+ channelId: 'test-channel',
111
+ });
112
+ const components = [
113
+ {
114
+ type: 1,
115
+ components: [
116
+ {
117
+ type: 2,
118
+ style: LinkStyle,
119
+ label: 'Test Button',
120
+ url: 'https://example.com',
121
+ },
122
+ ],
123
+ },
124
+ ];
125
+ const messageId = await discord.sendMessage({ components });
126
+ expect(mockedAxios.post).toHaveBeenCalled();
127
+ expect(messageId).toBe('mock-message-id');
128
+ });
129
+ it('should send a file message via bot', async () => {
130
+ const discord = new discord_1.Discord({
131
+ token: 'test-token',
132
+ channelId: 'test-channel',
133
+ });
134
+ const file = {
135
+ name: 'test.txt',
136
+ file: new ArrayBuffer(10),
137
+ contentType: 'text/plain',
138
+ };
139
+ await discord.sendMessage({ file });
140
+ expect(form_data_1.default.prototype.append).toHaveBeenCalledWith('file', expect.anything(), expect.objectContaining({
141
+ filename: 'test.txt',
142
+ }));
143
+ expect(mockedAxios.post).toHaveBeenCalled();
144
+ });
145
+ it('should send a file message with spoiler via bot', async () => {
146
+ const discord = new discord_1.Discord({
147
+ token: 'test-token',
148
+ channelId: 'test-channel',
149
+ });
150
+ const file = {
151
+ name: 'test.txt',
152
+ file: new ArrayBuffer(10),
153
+ contentType: 'text/plain',
154
+ isSpoiler: true,
155
+ };
156
+ await discord.sendMessage({ file });
157
+ expect(form_data_1.default.prototype.append).toHaveBeenCalledWith('file', expect.anything(), expect.objectContaining({
158
+ filename: 'SPOILER_test.txt',
159
+ }));
160
+ expect(mockedAxios.post).toHaveBeenCalled();
161
+ });
162
+ it('should send a message with flags via bot', async () => {
163
+ const discord = new discord_1.Discord({
164
+ token: 'test-token',
165
+ channelId: 'test-channel',
166
+ });
167
+ const messageId = await discord.sendMessage({ flags: 4100 });
168
+ expect(mockedAxios.post).toHaveBeenCalled();
169
+ expect(messageId).toBe('mock-message-id');
170
+ });
171
+ it('should send a message via webhook', async () => {
172
+ const discord = new discord_1.Discord({
173
+ webhookUrl: 'https://discord.com/api/webhooks/123/abc',
174
+ });
175
+ const messageId = await discord.sendMessage('Test webhook message');
176
+ expect(mockedAxios.post).toHaveBeenCalled();
177
+ expect(messageId).toBe('mock-message-id');
178
+ const call = mockedAxios.post.mock.calls[0];
179
+ expect(call[0]).toContain('https://discord.com/api/webhooks/123/abc?wait=true');
180
+ });
181
+ it('should handle 204 status code for webhook messages', async () => {
182
+ mockedAxios.post.mockResolvedValueOnce({
183
+ status: 204,
184
+ data: {},
185
+ });
186
+ const discord = new discord_1.Discord({
187
+ webhookUrl: 'https://discord.com/api/webhooks/123/abc',
188
+ });
189
+ const messageId = await discord.sendMessage('Test webhook message');
190
+ expect(messageId).toBeUndefined();
191
+ });
192
+ it('should handle API error for bot messages', async () => {
193
+ mockedAxios.post.mockResolvedValueOnce({
194
+ status: 400,
195
+ data: { message: 'Bad Request' },
196
+ });
197
+ const discord = new discord_1.Discord({
198
+ token: 'test-token',
199
+ channelId: 'test-channel',
200
+ });
201
+ await expect(discord.sendMessage('Test message')).rejects.toThrow('Discord API returned 400');
202
+ });
203
+ it('should handle API error for webhook messages', async () => {
204
+ mockedAxios.post.mockResolvedValueOnce({
205
+ status: 404,
206
+ data: { message: 'Not Found' },
207
+ });
208
+ const discord = new discord_1.Discord({
209
+ webhookUrl: 'https://discord.com/api/webhooks/123/abc',
210
+ });
211
+ await expect(discord.sendMessage('Test message')).rejects.toThrow('Discord API returned 404');
212
+ });
213
+ it('should mock sendBot to throw error with webhook options', async () => {
214
+ mockedAxios.post.mockImplementationOnce(() => {
215
+ throw new Error('Invalid bot options');
216
+ });
217
+ const discord = new discord_1.Discord({
218
+ webhookUrl: 'https://discord.com/api/webhooks/123/abc',
219
+ });
220
+ await expect(discord.sendMessage('Test message')).rejects.toThrow();
221
+ });
222
+ it('should mock sendWebhook to throw error with bot options', async () => {
223
+ mockedAxios.post.mockImplementationOnce(() => {
224
+ throw new Error('Invalid webhook options');
225
+ });
226
+ const discord = new discord_1.Discord({
227
+ token: 'test-token',
228
+ channelId: 'test-channel',
229
+ });
230
+ await expect(discord.sendMessage('Test message')).rejects.toThrow();
231
+ });
232
+ });
233
+ describe('editMessage', () => {
234
+ it('should edit a message via bot', async () => {
235
+ const discord = new discord_1.Discord({
236
+ token: 'test-token',
237
+ channelId: 'test-channel',
238
+ });
239
+ await discord.editMessage('message-id', 'Updated message');
240
+ expect(mockedAxios.patch).toHaveBeenCalled();
241
+ const call = mockedAxios.patch.mock.calls[0];
242
+ expect(call[0]).toContain('/channels/test-channel/messages/message-id');
243
+ expect(call[2]?.headers).toHaveProperty('Authorization', 'Bot test-token');
244
+ });
245
+ it('should edit an embed message via bot', async () => {
246
+ const discord = new discord_1.Discord({
247
+ token: 'test-token',
248
+ channelId: 'test-channel',
249
+ });
250
+ const embeds = [
251
+ {
252
+ title: 'Updated Title',
253
+ description: 'Updated Description',
254
+ color: 65280,
255
+ },
256
+ ];
257
+ await discord.editMessage('message-id', { embeds });
258
+ expect(mockedAxios.patch).toHaveBeenCalled();
259
+ });
260
+ it('should edit a file message via bot', async () => {
261
+ const discord = new discord_1.Discord({
262
+ token: 'test-token',
263
+ channelId: 'test-channel',
264
+ });
265
+ const file = {
266
+ name: 'updated.txt',
267
+ file: new ArrayBuffer(10),
268
+ contentType: 'text/plain',
269
+ };
270
+ await discord.editMessage('message-id', { file });
271
+ expect(form_data_1.default.prototype.append).toHaveBeenCalledWith('file', expect.anything(), expect.objectContaining({
272
+ filename: 'updated.txt',
273
+ contentType: 'text/plain',
274
+ }));
275
+ expect(mockedAxios.patch).toHaveBeenCalled();
276
+ });
277
+ it('should edit a message via webhook', async () => {
278
+ const discord = new discord_1.Discord({
279
+ webhookUrl: 'https://discord.com/api/webhooks/123/abc',
280
+ });
281
+ await discord.editMessage('message-id', 'Updated webhook message');
282
+ expect(mockedAxios.patch).toHaveBeenCalled();
283
+ const call = mockedAxios.patch.mock.calls[0];
284
+ expect(call[0]).toContain('https://discord.com/api/webhooks/123/abc?wait=true/messages/message-id');
285
+ });
286
+ it('should handle 204 status code for webhook message edit', async () => {
287
+ mockedAxios.patch.mockResolvedValueOnce({
288
+ status: 204,
289
+ data: {},
290
+ });
291
+ const discord = new discord_1.Discord({
292
+ webhookUrl: 'https://discord.com/api/webhooks/123/abc',
293
+ });
294
+ await discord.editMessage('message-id', 'Test webhook message');
295
+ expect(mockedAxios.patch).toHaveBeenCalled();
296
+ });
297
+ it('should handle API error for bot message edit', async () => {
298
+ mockedAxios.patch.mockResolvedValueOnce({
299
+ status: 400,
300
+ data: { message: 'Bad Request' },
301
+ });
302
+ const discord = new discord_1.Discord({
303
+ token: 'test-token',
304
+ channelId: 'test-channel',
305
+ });
306
+ await expect(discord.editMessage('message-id', 'Test message')).rejects.toThrow('Discord API returned 400');
307
+ });
308
+ it('should handle API error for webhook message edit', async () => {
309
+ mockedAxios.patch.mockResolvedValueOnce({
310
+ status: 404,
311
+ data: { message: 'Not Found' },
312
+ });
313
+ const discord = new discord_1.Discord({
314
+ webhookUrl: 'https://discord.com/api/webhooks/123/abc',
315
+ });
316
+ await expect(discord.editMessage('message-id', 'Test message')).rejects.toThrow('Discord API returned 404');
317
+ });
318
+ it('should mock editBot to throw error with webhook options', async () => {
319
+ mockedAxios.patch.mockImplementationOnce(() => {
320
+ throw new Error('Invalid bot options');
321
+ });
322
+ const discord = new discord_1.Discord({
323
+ webhookUrl: 'https://discord.com/api/webhooks/123/abc',
324
+ });
325
+ await expect(discord.editMessage('message-id', 'Test message')).rejects.toThrow();
326
+ });
327
+ it('should mock editWebhook to throw error with bot options', async () => {
328
+ mockedAxios.patch.mockImplementationOnce(() => {
329
+ throw new Error('Invalid webhook options');
330
+ });
331
+ const discord = new discord_1.Discord({
332
+ token: 'test-token',
333
+ channelId: 'test-channel',
334
+ });
335
+ await expect(discord.editMessage('message-id', 'Test message')).rejects.toThrow();
336
+ });
337
+ });
338
+ describe('internal methods', () => {
339
+ it('should identify valid bot options', async () => {
340
+ const discord = new discord_1.Discord({
341
+ token: 'test-token',
342
+ channelId: 'test-channel',
343
+ });
344
+ await discord.sendMessage('Test message');
345
+ const call = mockedAxios.post.mock.calls[0];
346
+ expect(call[0]).toContain('/channels/test-channel/messages');
347
+ });
348
+ it('should identify valid webhook options', async () => {
349
+ const discord = new discord_1.Discord({
350
+ webhookUrl: 'https://discord.com/api/webhooks/123/abc',
351
+ });
352
+ await discord.sendMessage('Test message');
353
+ const call = mockedAxios.post.mock.calls[0];
354
+ expect(call[0]).toContain('https://discord.com/api/webhooks/123/abc');
355
+ });
356
+ it('should invalidate incomplete bot options', () => {
357
+ expect(() => new discord_1.Discord({ token: 'test-token' })).toThrow('Invalid options');
358
+ expect(() => new discord_1.Discord({ channelId: 'test-channel' })).toThrow('Invalid options');
359
+ });
360
+ });
361
+ });
362
+ //# sourceMappingURL=discord.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"discord.test.js","sourceRoot":"","sources":["../../src/__tests__/discord.test.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=logger.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"logger.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/logger.test.ts"],"names":[],"mappings":""}
@@ -0,0 +1,268 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const logger_1 = require("../logger");
7
+ const winston_1 = __importDefault(require("winston"));
8
+ const winston_daily_rotate_file_1 = __importDefault(require("winston-daily-rotate-file"));
9
+ const moment_timezone_1 = __importDefault(require("moment-timezone"));
10
+ jest.mock('winston', () => {
11
+ const mockFormat = {
12
+ combine: jest.fn().mockReturnValue('combined-format'),
13
+ timestamp: jest.fn().mockReturnValue('timestamp-format'),
14
+ printf: jest.fn().mockReturnValue('printf-format'),
15
+ colorize: jest.fn().mockReturnValue('colorize-format'),
16
+ uncolorize: jest.fn().mockReturnValue('uncolorize-format'),
17
+ errors: jest.fn().mockReturnValue('errors-format'),
18
+ json: jest.fn().mockReturnValue('json-format'),
19
+ };
20
+ const formatFunc = jest.fn().mockReturnValue('format');
21
+ formatFunc.mockImplementation(() => jest.fn().mockReturnValue('custom-format'));
22
+ Object.assign(formatFunc, mockFormat);
23
+ const mockLogger = {
24
+ debug: jest.fn(),
25
+ info: jest.fn(),
26
+ warn: jest.fn(),
27
+ error: jest.fn(),
28
+ };
29
+ return {
30
+ createLogger: jest.fn(() => mockLogger),
31
+ format: formatFunc,
32
+ transports: {
33
+ Console: jest.fn(),
34
+ },
35
+ };
36
+ });
37
+ jest.mock('winston-daily-rotate-file');
38
+ jest.mock('cycle', () => ({
39
+ decycle: jest.fn((obj) => obj),
40
+ }));
41
+ jest.mock('moment-timezone', () => {
42
+ const mockMomentObj = {
43
+ format: jest.fn(() => '2025-05-05 12:00:00.000'),
44
+ tz: jest.fn(function () {
45
+ return this;
46
+ }),
47
+ };
48
+ const mockMomentFn = jest.fn(() => mockMomentObj);
49
+ mockMomentFn.tz = {
50
+ zone: jest.fn((timezone) => timezone === 'Invalid/Timezone' ? null : true),
51
+ };
52
+ return mockMomentFn;
53
+ });
54
+ const originalProcessOn = process.on;
55
+ describe('Logger', () => {
56
+ const originalEnv = process.env;
57
+ beforeEach(() => {
58
+ jest.clearAllMocks();
59
+ process.env = { ...originalEnv };
60
+ delete process.env.LOG_LEVEL;
61
+ delete process.env.LOG_FILE_LEVEL;
62
+ delete process.env.LOG_DIR;
63
+ delete process.env.VERCEL;
64
+ delete process.env.LOG_FILE_MAX_AGE;
65
+ delete process.env.LOG_FILE_FORMAT;
66
+ delete process.env.TZ;
67
+ });
68
+ afterEach(() => {
69
+ process.env = originalEnv;
70
+ });
71
+ describe('configure', () => {
72
+ it('should create a logger with default settings', () => {
73
+ const logger = logger_1.Logger.configure('test');
74
+ expect(winston_1.default.createLogger).toHaveBeenCalled();
75
+ expect(winston_1.default.transports.Console).toHaveBeenCalledWith(expect.objectContaining({
76
+ level: 'info',
77
+ }));
78
+ expect(winston_daily_rotate_file_1.default).toHaveBeenCalledWith(expect.objectContaining({
79
+ level: 'info',
80
+ dirname: 'logs',
81
+ maxFiles: '30d',
82
+ }));
83
+ expect(logger).toBeInstanceOf(logger_1.Logger);
84
+ });
85
+ it('should use LOG_LEVEL environment variable when provided', () => {
86
+ process.env.LOG_LEVEL = 'debug';
87
+ logger_1.Logger.configure('test');
88
+ expect(winston_1.default.transports.Console).toHaveBeenCalledWith(expect.objectContaining({
89
+ level: 'debug',
90
+ }));
91
+ });
92
+ it('should use LOG_FILE_LEVEL environment variable when provided', () => {
93
+ process.env.LOG_FILE_LEVEL = 'warn';
94
+ logger_1.Logger.configure('test');
95
+ expect(winston_daily_rotate_file_1.default).toHaveBeenCalledWith(expect.objectContaining({
96
+ level: 'warn',
97
+ }));
98
+ });
99
+ it('should use VERCEL environment variable for log directory when provided', () => {
100
+ process.env.VERCEL = 'true';
101
+ logger_1.Logger.configure('test');
102
+ expect(winston_daily_rotate_file_1.default).toHaveBeenCalledWith(expect.objectContaining({
103
+ dirname: '/tmp/logs',
104
+ }));
105
+ });
106
+ it('should use LOG_DIR environment variable when provided', () => {
107
+ process.env.LOG_DIR = 'custom-logs';
108
+ logger_1.Logger.configure('test');
109
+ expect(winston_daily_rotate_file_1.default).toHaveBeenCalledWith(expect.objectContaining({
110
+ dirname: 'custom-logs',
111
+ }));
112
+ });
113
+ it('should use LOG_FILE_MAX_AGE environment variable when provided', () => {
114
+ process.env.LOG_FILE_MAX_AGE = '7d';
115
+ logger_1.Logger.configure('test');
116
+ expect(winston_daily_rotate_file_1.default).toHaveBeenCalledWith(expect.objectContaining({
117
+ maxFiles: '7d',
118
+ }));
119
+ });
120
+ it('should use ndjson format when LOG_FILE_FORMAT is set to ndjson', () => {
121
+ process.env.LOG_FILE_FORMAT = 'ndjson';
122
+ logger_1.Logger.configure('test');
123
+ expect(winston_1.default.format.json).toHaveBeenCalled();
124
+ expect(winston_daily_rotate_file_1.default).toHaveBeenCalledWith(expect.objectContaining({
125
+ filename: '%DATE%.ndjson',
126
+ }));
127
+ });
128
+ it('should use text format when LOG_FILE_FORMAT is not set to ndjson', () => {
129
+ logger_1.Logger.configure('test');
130
+ expect(winston_1.default.format.json).not.toHaveBeenCalled();
131
+ expect(winston_daily_rotate_file_1.default).toHaveBeenCalledWith(expect.objectContaining({
132
+ filename: '%DATE%.log',
133
+ }));
134
+ });
135
+ it('should create text format correctly', () => {
136
+ const formatPrintf = require('winston').format.printf;
137
+ logger_1.Logger.configure('test');
138
+ expect(formatPrintf).toHaveBeenCalled();
139
+ const printfCallback = formatPrintf.mock.calls[0][0];
140
+ const simpleInfo = {
141
+ timestamp: '2025-05-05 12:00:00',
142
+ level: 'info',
143
+ message: 'Test message',
144
+ };
145
+ const simpleResult = printfCallback(simpleInfo);
146
+ expect(simpleResult).toContain('[2025-05-05 12:00:00]');
147
+ expect(simpleResult).toContain('[test/INFO]');
148
+ expect(simpleResult).toContain('Test message');
149
+ const metadataInfo = {
150
+ timestamp: '2025-05-05 12:00:00',
151
+ level: 'info',
152
+ message: 'Test message',
153
+ extra: 'data',
154
+ };
155
+ const metadataResult = printfCallback(metadataInfo);
156
+ expect(metadataResult).toContain('"extra":"data"');
157
+ const stackInfo = {
158
+ timestamp: '2025-05-05 12:00:00',
159
+ level: 'error',
160
+ message: 'Error message',
161
+ stack: 'Error\n at line1\n at line2',
162
+ };
163
+ const stackResult = printfCallback(stackInfo);
164
+ expect(stackResult).toContain(' at line1');
165
+ const objectStackInfo = {
166
+ timestamp: '2025-05-05 12:00:00',
167
+ level: 'error',
168
+ message: 'Error message',
169
+ stack: { trace: 'stack trace' },
170
+ };
171
+ const objectStackResult = printfCallback(objectStackInfo);
172
+ expect(objectStackResult).toContain('{"trace":"stack trace"}');
173
+ });
174
+ });
175
+ describe('getTimestamp', () => {
176
+ it('should use TZ environment variable when provided and valid', () => {
177
+ process.env.TZ = 'America/New_York';
178
+ const timestampFn = logger_1.Logger.getTimestamp();
179
+ timestampFn();
180
+ expect(moment_timezone_1.default.tz.zone).toHaveBeenCalledWith('America/New_York');
181
+ });
182
+ it('should use default timezone (Asia/Tokyo) when TZ is not provided', () => {
183
+ delete process.env.TZ;
184
+ const timestampFn = logger_1.Logger.getTimestamp();
185
+ const result = timestampFn();
186
+ expect(result).toBe('2025-05-05 12:00:00.000');
187
+ });
188
+ it('should use default timezone (Asia/Tokyo) when TZ is invalid', () => {
189
+ process.env.TZ = 'Invalid/Timezone';
190
+ const timestampFn = logger_1.Logger.getTimestamp();
191
+ const result = timestampFn();
192
+ expect(result).toBe('2025-05-05 12:00:00.000');
193
+ });
194
+ });
195
+ describe('logging methods', () => {
196
+ let loggerInstance;
197
+ let mockWinstonLogger;
198
+ beforeEach(() => {
199
+ mockWinstonLogger = winston_1.default.createLogger();
200
+ loggerInstance = logger_1.Logger.configure('test');
201
+ });
202
+ it('should call debug method with message', () => {
203
+ loggerInstance.debug('Debug message');
204
+ expect(mockWinstonLogger.debug).toHaveBeenCalledWith('Debug message', {});
205
+ });
206
+ it('should call debug method with message and metadata', () => {
207
+ const metadata = { key: 'value' };
208
+ loggerInstance.debug('Debug message', metadata);
209
+ expect(mockWinstonLogger.debug).toHaveBeenCalledWith('Debug message', metadata);
210
+ });
211
+ it('should call info method with message', () => {
212
+ loggerInstance.info('Info message');
213
+ expect(mockWinstonLogger.info).toHaveBeenCalledWith('Info message', {});
214
+ });
215
+ it('should call info method with message and metadata', () => {
216
+ const metadata = { key: 'value' };
217
+ loggerInstance.info('Info message', metadata);
218
+ expect(mockWinstonLogger.info).toHaveBeenCalledWith('Info message', metadata);
219
+ });
220
+ it('should call warn method with message', () => {
221
+ loggerInstance.warn('Warning message');
222
+ expect(mockWinstonLogger.warn).toHaveBeenCalledWith('Warning message', undefined);
223
+ });
224
+ it('should call warn method with message and error', () => {
225
+ const error = new Error('Test error');
226
+ loggerInstance.warn('Warning message', error);
227
+ expect(mockWinstonLogger.warn).toHaveBeenCalledWith('Warning message', error);
228
+ });
229
+ it('should call error method with message', () => {
230
+ loggerInstance.error('Error message');
231
+ expect(mockWinstonLogger.error).toHaveBeenCalledWith('Error message', undefined);
232
+ });
233
+ it('should call error method with message and error', () => {
234
+ const error = new Error('Test error');
235
+ loggerInstance.error('Error message', error);
236
+ expect(mockWinstonLogger.error).toHaveBeenCalledWith('Error message', error);
237
+ });
238
+ });
239
+ describe('process event handlers', () => {
240
+ it('should register events for unhandledRejection and uncaughtException', () => {
241
+ try {
242
+ const eventHandlers = {};
243
+ process.on = jest
244
+ .fn()
245
+ .mockImplementation((event, handler) => {
246
+ eventHandlers[event] = handler;
247
+ return process;
248
+ });
249
+ jest.isolateModules(() => {
250
+ require('../logger');
251
+ });
252
+ expect(process.on).toHaveBeenCalledWith('unhandledRejection', expect.any(Function));
253
+ expect(process.on).toHaveBeenCalledWith('uncaughtException', expect.any(Function));
254
+ expect(eventHandlers).toHaveProperty('unhandledRejection');
255
+ expect(eventHandlers).toHaveProperty('uncaughtException');
256
+ const mockError = new Error('Test error');
257
+ eventHandlers.unhandledRejection(mockError);
258
+ expect(winston_1.default.createLogger().error).toHaveBeenCalledWith('unhandledRejection', mockError);
259
+ eventHandlers.uncaughtException(mockError);
260
+ expect(winston_1.default.createLogger().error).toHaveBeenCalledWith('uncaughtException', mockError);
261
+ }
262
+ finally {
263
+ process.on = originalProcessOn;
264
+ }
265
+ });
266
+ });
267
+ });
268
+ //# sourceMappingURL=logger.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"logger.test.js","sourceRoot":"","sources":["../../src/__tests__/logger.test.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"fileNames":["../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2024.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2024.collection.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2024.object.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2024.promise.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2024.string.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.array.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.float16.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/.pnpm/jsonc-parser@3.3.1/node_modules/jsonc-parser/lib/umd/main.d.ts","../src/configuration.ts","../src/cycle.d.ts","../node_modules/.pnpm/axios@1.9.0/node_modules/axios/index.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/compatibility/index.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/globals.typedarray.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/buffer.buffer.d.ts","../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/globals.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/assert.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/assert/strict.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/async_hooks.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/buffer.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/child_process.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/cluster.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/console.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/constants.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/crypto.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/dgram.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/dns.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/dns/promises.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/domain.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/dom-events.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/events.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/fs.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/fs/promises.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/http.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/http2.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/https.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/inspector.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/module.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/net.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/os.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/path.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/perf_hooks.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/process.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/punycode.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/querystring.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/readline.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/readline/promises.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/repl.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/sea.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/sqlite.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/stream.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/stream/promises.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/stream/consumers.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/stream/web.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/string_decoder.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/test.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/timers.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/timers/promises.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/tls.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/trace_events.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/tty.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/url.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/util.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/v8.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/vm.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/wasi.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/worker_threads.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/zlib.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/index.d.ts","../node_modules/.pnpm/form-data@4.0.2/node_modules/form-data/index.d.ts","../src/discord.ts","../node_modules/.pnpm/@types+triple-beam@1.3.5/node_modules/@types/triple-beam/index.d.ts","../node_modules/.pnpm/logform@2.7.0/node_modules/logform/index.d.ts","../node_modules/.pnpm/winston-transport@4.9.0/node_modules/winston-transport/index.d.ts","../node_modules/.pnpm/winston@3.17.0/node_modules/winston/lib/winston/config/index.d.ts","../node_modules/.pnpm/winston@3.17.0/node_modules/winston/lib/winston/transports/index.d.ts","../node_modules/.pnpm/winston@3.17.0/node_modules/winston/index.d.ts","../node_modules/.pnpm/winston-daily-rotate-file@5.0.0_winston@3.17.0/node_modules/winston-daily-rotate-file/index.d.ts","../node_modules/.pnpm/moment@2.30.1/node_modules/moment/ts3.1-typings/moment.d.ts","../node_modules/.pnpm/moment-timezone@0.5.48/node_modules/moment-timezone/index.d.ts","../src/logger.ts","../src/index.ts"],"fileIdsList":[[88,128,131],[88,130,131],[131],[88,131,136,166],[88,131,132,137,143,144,151,163,174],[88,131,132,133,143,151],[88,131],[83,84,85,88,131],[88,131,134,175],[88,131,135,136,144,152],[88,131,136,163,171],[88,131,137,139,143,151],[88,130,131,138],[88,131,139,140],[88,131,143],[88,131,141,143],[88,130,131,143],[88,131,143,144,145,163,174],[88,131,143,144,145,158,163,166],[88,126,131,179],[88,126,131,139,143,146,151,163,174],[88,131,143,144,146,147,151,163,171,174],[88,131,146,148,163,171,174],[86,87,88,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[88,131,143,149],[88,131,150,174],[88,131,139,143,151,163],[88,131,152],[88,131,153],[88,130,131,154],[88,128,129,130,131,132,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,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[88,131,156],[88,131,157],[88,131,143,158,159],[88,131,158,160,175,177],[88,131,143,163,164,166],[88,131,165,166],[88,131,163,164],[88,131,166],[88,131,167],[88,128,131,163],[88,131,143,169,170],[88,131,169,170],[88,131,136,151,163,171],[88,131,172],[88,131,151,173],[88,131,146,157,174],[88,131,136,175],[88,131,163,176],[88,131,150,177],[88,131,178],[88,131,136,143,145,154,163,174,177,179],[88,131,163,180],[88,131,146,163,181],[88,131,184],[88,131,191],[88,98,102,131,174],[88,98,131,163,174],[88,93,131],[88,95,98,131,171,174],[88,131,151,171],[88,131,181],[88,93,131,181],[88,95,98,131,151,174],[88,90,91,94,97,131,143,163,174],[88,98,105,131],[88,90,96,131],[88,98,119,120,131],[88,94,98,131,166,174,181],[88,119,131,181],[88,92,93,131,181],[88,98,131],[88,92,93,94,95,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,131],[88,98,113,131],[88,98,105,106,131],[88,96,98,106,107,131],[88,97,131],[88,90,93,98,131],[88,98,102,106,107,131],[88,102,131],[88,96,98,101,131,174],[88,90,95,98,105,131],[88,131,163],[88,93,98,119,131,179,181],[88,131,186,188],[88,131,163,181,185],[88,131,163,181,185,186,187,188],[88,131,146,181,186],[79,88,131,144],[82,88,131,182],[80,88,131,183,193],[81,88,131,189,190,192]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1d603af05e59e26aae3d9fa7bb0138e744bfbfc9f4793ddeaabe5c85da1d30f","impliedFormat":1},{"version":"2bbbf8eda8309ea0d77d78e40ca3577758eebbdbff93388bb9fa1046c69c2089","signature":"2250bccc05d4105344e3ede1947995c90ed692887ba9145e4fd39e95190172e8"},"b5aa7bc01d38cd548b55ed25c04959eda34466fbb0c1940ea2251118305e7e75",{"version":"c1a44418b7e3f9381e55dea86cc32b26ec3d5ccf6510102716aaa55023919f38","impliedFormat":99},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"030e350db2525514580ed054f712ffb22d273e6bc7eddc1bb7eda1e0ba5d395e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c928f02e5e827c24b3c61b69d5d8ffd1a54759eb9a9fe7594f6d7fc7270a5de","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"d2bc987ae352271d0d615a420dcf98cc886aa16b87fb2b569358c1fe0ca0773d","affectsGlobalScope":true,"impliedFormat":1},{"version":"a38efe83ff77c34e0f418a806a01ca3910c02ee7d64212a59d59bca6c2c38fa1","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"7e6ffd24de25a608b1b8e372c515a72a90bd9df03980272edec67071daec6d65","impliedFormat":1},{"version":"f9677e434b7a3b14f0a9367f9dfa1227dfe3ee661792d0085523c3191ae6a1a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"f478f6f5902dc144c0d6d7bdc919c5177cac4d17a8ca8653c2daf6d7dc94317f","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0476e6b51a47a8eaf5ee6ecab0d686f066f3081de9a572f1dde3b2a8a7fb055","impliedFormat":1},{"version":"0ae4a428bf11b21b0014285626078010cc7a2b683046d61dc29aabb08948eec0","impliedFormat":1},{"version":"f96a023e442f02cf551b4cfe435805ccb0a7e13c81619d4da61ec835d03fe512","impliedFormat":1},{"version":"3f3edb8e44e3b9df3b7ca3219ab539710b6a7f4fe16bd884d441af207e03cd57","impliedFormat":1},{"version":"528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","impliedFormat":1},{"version":"d71535813e39c23baa113bc4a29a0e187b87d1105ccc8c5a6ebaca38d9a9bff2","impliedFormat":1},{"version":"8cf7e92bdb2862c2d28ba4535c43dc599cfbc0025db5ed9973d9b708dcbe3d98","affectsGlobalScope":true,"impliedFormat":1},{"version":"23459c1915878a7c1e86e8bdb9c187cddd3aea105b8b1dfce512f093c969bc7e","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"1dc73f8854e5c4506131c4d95b3a6c24d0c80336d3758e95110f4c7b5cb16397","affectsGlobalScope":true,"impliedFormat":1},{"version":"636302a00dfd1f9fe6e8e91e4e9350c6518dcc8d51a474e4fc3a9ba07135100b","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"e1ce1d622f1e561f6cdf246372ead3bbc07ce0342024d0e9c7caf3136f712698","impliedFormat":1},{"version":"c878f74b6d10b267f6075c51ac1d8becd15b4aa6a58f79c0cfe3b24908357f60","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"fbf68fc8057932b1c30107ebc37420f8d8dc4bef1253c4c2f9e141886c0df5ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"8c2ad42d5d1a2e8e6112625767f8794d9537f1247907378543106f7ba6c7df90","affectsGlobalScope":true,"impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"94a4ee5be6f0961ea6a7077e78f09626430320f2ae4048f41f77d1804900e1a5","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f706a8f7a08b4df9b12708e3c230e5e2a1e4cfe404f986871fb3618fe70015c","affectsGlobalScope":true,"impliedFormat":1},{"version":"74736930d108365d7bbe740c7154706ccfb1b2a3855a897963ab3e5c07ecbf19","impliedFormat":1},{"version":"b02784111b3fc9c38590cd4339ff8718f9329a6f4d3fd66e9744a1dcd1d7e191","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"63b05afa6121657f25e99e1519596b0826cda026f09372c9100dfe21417f4bd6","affectsGlobalScope":true,"impliedFormat":1},{"version":"3797dd6f4ea3dc15f356f8cdd3128bfa18122213b38a80d6c1f05d8e13cbdad8","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"f3b378f86476457c895f1534bbc355d7be69f52e097f1e5853df0f2039deec36","signature":"e85c989d15d19019cb45f19a05f2501c3dd179d212790695b4cd0b1e3cc0d786"},{"version":"908217c4f2244ec402b73533ebfcc46d6dcd34fc1c807ff403d7f98702abb3bc","impliedFormat":1},{"version":"1bc5991c91bf4be8b59db501ed284a34945d95abe9b7451d02ea001f7c5621a9","impliedFormat":1},{"version":"d8b8a5a6bf623239d5374ad4a7ff6f3b195ab5ee61293f59f1957e90d2a22809","impliedFormat":1},{"version":"35d283eca7dc0a0c7b099f5fbbf0678b87f3d837572cd5e539ba297ad9837e68","impliedFormat":1},{"version":"1c8384a195a2d931cf6e2b8f656acf558ca649a3f74922d86b95889f49a7f7c5","impliedFormat":1},{"version":"cd11655f57a3558dfcee05a6e78c026f9dfd30535eaf124439c5e88a5617359b","impliedFormat":1},{"version":"60acaaf99f80c65b62f3daa650b47090acab36d50b79e5c9fce95c0a97a0d83a","impliedFormat":1},{"version":"4051f6311deb0ce6052329eeb1cd4b1b104378fe52f882f483130bea75f92197","impliedFormat":1},{"version":"75b4df517570229d59a1951e1f283e17f232b8c1df8cb675f1bbb127da208e2e","impliedFormat":1},{"version":"67a7ca7fd4b214dff1f1fbb12cd03479e7092740af9efaee6e8df3dfcb20d75c","signature":"f7ca6572ec7093a653a5d6c5bad05f48b58e082794552d38666e002a4dcbca44"},{"version":"32daeab61aee8b5ecf83a1a3e0cc229b3548bbbb70796cf991374bbb2fd5a8a7","signature":"0578ae9e8bea088fb4893046640236f6f8d5a645a774703744a18e67a909e1f3"}],"root":[80,81,183,193,194],"options":{"allowJs":true,"checkJs":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"newLine":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","removeComments":true,"sourceMap":true,"strict":true,"strictBindCallApply":true,"strictNullChecks":true,"target":7},"referencedMap":[[128,1],[129,1],[130,2],[88,3],[131,4],[132,5],[133,6],[83,7],[86,8],[84,7],[85,7],[134,9],[135,10],[136,11],[137,12],[138,13],[139,14],[140,14],[142,15],[141,16],[143,17],[144,18],[145,19],[127,20],[87,7],[146,21],[147,22],[148,23],[181,24],[149,25],[150,26],[151,27],[152,28],[153,29],[154,30],[155,31],[156,32],[157,33],[158,34],[159,34],[160,35],[161,7],[162,7],[163,36],[165,37],[164,38],[166,39],[167,40],[168,41],[169,42],[170,43],[171,44],[172,45],[173,46],[174,47],[175,48],[176,49],[177,50],[178,51],[179,52],[180,53],[184,7],[82,7],[89,7],[182,54],[79,7],[185,55],[192,56],[191,7],[77,7],[78,7],[14,7],[13,7],[2,7],[15,7],[16,7],[17,7],[18,7],[19,7],[20,7],[21,7],[22,7],[3,7],[23,7],[24,7],[4,7],[25,7],[29,7],[26,7],[27,7],[28,7],[30,7],[31,7],[32,7],[5,7],[33,7],[34,7],[35,7],[36,7],[6,7],[40,7],[37,7],[38,7],[39,7],[41,7],[7,7],[42,7],[47,7],[48,7],[43,7],[44,7],[45,7],[46,7],[8,7],[52,7],[49,7],[50,7],[51,7],[53,7],[9,7],[54,7],[55,7],[56,7],[58,7],[57,7],[59,7],[60,7],[10,7],[61,7],[62,7],[63,7],[11,7],[64,7],[65,7],[66,7],[67,7],[68,7],[1,7],[69,7],[70,7],[12,7],[74,7],[72,7],[76,7],[71,7],[75,7],[73,7],[105,57],[115,58],[104,57],[125,59],[96,60],[95,61],[124,62],[118,63],[123,64],[98,65],[112,66],[97,67],[121,68],[93,69],[92,62],[122,70],[94,71],[99,72],[100,7],[103,72],[90,7],[126,73],[116,74],[107,75],[108,76],[110,77],[106,78],[109,79],[119,62],[101,80],[102,81],[111,82],[91,83],[114,74],[113,72],[117,7],[120,84],[190,85],[186,86],[189,87],[187,62],[188,88],[80,89],[81,7],[183,90],[194,91],[193,92]],"version":"5.8.3"}
1
+ {"fileNames":["../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2024.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2024.collection.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2024.object.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2024.promise.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2024.string.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.array.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.esnext.float16.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/.pnpm/jsonc-parser@3.3.1/node_modules/jsonc-parser/lib/umd/main.d.ts","../src/configuration.ts","../src/cycle.d.ts","../node_modules/.pnpm/axios@1.9.0/node_modules/axios/index.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/compatibility/disposable.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/compatibility/indexable.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/compatibility/index.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/globals.typedarray.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/buffer.buffer.d.ts","../node_modules/.pnpm/buffer@5.7.1/node_modules/buffer/index.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/globals.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/assert.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/assert/strict.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/async_hooks.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/buffer.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/child_process.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/cluster.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/console.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/constants.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/crypto.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/dgram.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/dns.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/dns/promises.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/domain.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/dom-events.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/events.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/fs.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/fs/promises.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/http.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/http2.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/https.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/inspector.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/module.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/net.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/os.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/path.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/perf_hooks.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/process.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/punycode.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/querystring.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/readline.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/readline/promises.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/repl.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/sea.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/sqlite.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/stream.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/stream/promises.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/stream/consumers.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/stream/web.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/string_decoder.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/test.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/timers.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/timers/promises.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/tls.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/trace_events.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/tty.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/url.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/util.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/v8.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/vm.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/wasi.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/worker_threads.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/zlib.d.ts","../node_modules/.pnpm/@types+node@22.15.3/node_modules/@types/node/index.d.ts","../node_modules/.pnpm/form-data@4.0.2/node_modules/form-data/index.d.ts","../src/discord.ts","../node_modules/.pnpm/@types+triple-beam@1.3.5/node_modules/@types/triple-beam/index.d.ts","../node_modules/.pnpm/logform@2.7.0/node_modules/logform/index.d.ts","../node_modules/.pnpm/winston-transport@4.9.0/node_modules/winston-transport/index.d.ts","../node_modules/.pnpm/winston@3.17.0/node_modules/winston/lib/winston/config/index.d.ts","../node_modules/.pnpm/winston@3.17.0/node_modules/winston/lib/winston/transports/index.d.ts","../node_modules/.pnpm/winston@3.17.0/node_modules/winston/index.d.ts","../node_modules/.pnpm/winston-daily-rotate-file@5.0.0_winston@3.17.0/node_modules/winston-daily-rotate-file/index.d.ts","../node_modules/.pnpm/moment@2.30.1/node_modules/moment/ts3.1-typings/moment.d.ts","../node_modules/.pnpm/moment-timezone@0.5.48/node_modules/moment-timezone/index.d.ts","../src/logger.ts","../src/index.ts","../src/__tests__/configuration.test.ts","../src/__tests__/discord.test.ts","../src/__tests__/logger.test.ts","../node_modules/.pnpm/@jest+expect-utils@29.7.0/node_modules/@jest/expect-utils/build/index.d.ts","../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../node_modules/.pnpm/@sinclair+typebox@0.27.8/node_modules/@sinclair/typebox/typebox.d.ts","../node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas/build/index.d.ts","../node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format/build/index.d.ts","../node_modules/.pnpm/jest-diff@29.7.0/node_modules/jest-diff/build/index.d.ts","../node_modules/.pnpm/jest-matcher-utils@29.7.0/node_modules/jest-matcher-utils/build/index.d.ts","../node_modules/.pnpm/expect@29.7.0/node_modules/expect/build/index.d.ts","../node_modules/.pnpm/@types+jest@29.5.14/node_modules/@types/jest/index.d.ts"],"fileIdsList":[[88,131],[88,131,200],[88,131,202,205],[88,128,131],[88,130,131],[131],[88,131,136,166],[88,131,132,137,143,144,151,163,174],[88,131,132,133,143,151],[83,84,85,88,131],[88,131,134,175],[88,131,135,136,144,152],[88,131,136,163,171],[88,131,137,139,143,151],[88,130,131,138],[88,131,139,140],[88,131,143],[88,131,141,143],[88,130,131,143],[88,131,143,144,145,163,174],[88,131,143,144,145,158,163,166],[88,126,131,179],[88,126,131,139,143,146,151,163,174],[88,131,143,144,146,147,151,163,171,174],[88,131,146,148,163,171,174],[86,87,88,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[88,131,143,149],[88,131,150,174],[88,131,139,143,151,163],[88,131,152],[88,131,153],[88,130,131,154],[88,128,129,130,131,132,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,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[88,131,156],[88,131,157],[88,131,143,158,159],[88,131,158,160,175,177],[88,131,143,163,164,166],[88,131,165,166],[88,131,163,164],[88,131,166],[88,131,167],[88,128,131,163],[88,131,143,169,170],[88,131,169,170],[88,131,136,151,163,171],[88,131,172],[88,131,151,173],[88,131,146,157,174],[88,131,136,175],[88,131,163,176],[88,131,150,177],[88,131,178],[88,131,136,143,145,154,163,174,177,179],[88,131,163,180],[88,131,198,204],[88,131,146,163,181],[88,131,202],[88,131,199,203],[88,131,184],[88,131,191],[88,131,201],[88,98,102,131,174],[88,98,131,163,174],[88,93,131],[88,95,98,131,171,174],[88,131,151,171],[88,131,181],[88,93,131,181],[88,95,98,131,151,174],[88,90,91,94,97,131,143,163,174],[88,98,105,131],[88,90,96,131],[88,98,119,120,131],[88,94,98,131,166,174,181],[88,119,131,181],[88,92,93,131,181],[88,98,131],[88,92,93,94,95,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,131],[88,98,113,131],[88,98,105,106,131],[88,96,98,106,107,131],[88,97,131],[88,90,93,98,131],[88,98,102,106,107,131],[88,102,131],[88,96,98,101,131,174],[88,90,95,98,105,131],[88,131,163],[88,93,98,119,131,179,181],[88,131,186,188],[88,131,163,181,185],[88,131,163,181,185,186,187,188],[88,131,146,181,186],[80,88,131,144,152,153],[82,88,131,182,183],[88,131,189,190,192,193],[79,88,131,144],[82,88,131,182],[80,88,131,183,193],[81,88,131,189,190,192]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1d603af05e59e26aae3d9fa7bb0138e744bfbfc9f4793ddeaabe5c85da1d30f","impliedFormat":1},{"version":"2bbbf8eda8309ea0d77d78e40ca3577758eebbdbff93388bb9fa1046c69c2089","signature":"2250bccc05d4105344e3ede1947995c90ed692887ba9145e4fd39e95190172e8"},"b5aa7bc01d38cd548b55ed25c04959eda34466fbb0c1940ea2251118305e7e75",{"version":"c1a44418b7e3f9381e55dea86cc32b26ec3d5ccf6510102716aaa55023919f38","impliedFormat":99},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"030e350db2525514580ed054f712ffb22d273e6bc7eddc1bb7eda1e0ba5d395e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c928f02e5e827c24b3c61b69d5d8ffd1a54759eb9a9fe7594f6d7fc7270a5de","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"d2bc987ae352271d0d615a420dcf98cc886aa16b87fb2b569358c1fe0ca0773d","affectsGlobalScope":true,"impliedFormat":1},{"version":"a38efe83ff77c34e0f418a806a01ca3910c02ee7d64212a59d59bca6c2c38fa1","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"7e6ffd24de25a608b1b8e372c515a72a90bd9df03980272edec67071daec6d65","impliedFormat":1},{"version":"f9677e434b7a3b14f0a9367f9dfa1227dfe3ee661792d0085523c3191ae6a1a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"f478f6f5902dc144c0d6d7bdc919c5177cac4d17a8ca8653c2daf6d7dc94317f","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0476e6b51a47a8eaf5ee6ecab0d686f066f3081de9a572f1dde3b2a8a7fb055","impliedFormat":1},{"version":"0ae4a428bf11b21b0014285626078010cc7a2b683046d61dc29aabb08948eec0","impliedFormat":1},{"version":"f96a023e442f02cf551b4cfe435805ccb0a7e13c81619d4da61ec835d03fe512","impliedFormat":1},{"version":"3f3edb8e44e3b9df3b7ca3219ab539710b6a7f4fe16bd884d441af207e03cd57","impliedFormat":1},{"version":"528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","impliedFormat":1},{"version":"d71535813e39c23baa113bc4a29a0e187b87d1105ccc8c5a6ebaca38d9a9bff2","impliedFormat":1},{"version":"8cf7e92bdb2862c2d28ba4535c43dc599cfbc0025db5ed9973d9b708dcbe3d98","affectsGlobalScope":true,"impliedFormat":1},{"version":"23459c1915878a7c1e86e8bdb9c187cddd3aea105b8b1dfce512f093c969bc7e","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"1dc73f8854e5c4506131c4d95b3a6c24d0c80336d3758e95110f4c7b5cb16397","affectsGlobalScope":true,"impliedFormat":1},{"version":"636302a00dfd1f9fe6e8e91e4e9350c6518dcc8d51a474e4fc3a9ba07135100b","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"e1ce1d622f1e561f6cdf246372ead3bbc07ce0342024d0e9c7caf3136f712698","impliedFormat":1},{"version":"c878f74b6d10b267f6075c51ac1d8becd15b4aa6a58f79c0cfe3b24908357f60","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"fbf68fc8057932b1c30107ebc37420f8d8dc4bef1253c4c2f9e141886c0df5ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"8c2ad42d5d1a2e8e6112625767f8794d9537f1247907378543106f7ba6c7df90","affectsGlobalScope":true,"impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"94a4ee5be6f0961ea6a7077e78f09626430320f2ae4048f41f77d1804900e1a5","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f706a8f7a08b4df9b12708e3c230e5e2a1e4cfe404f986871fb3618fe70015c","affectsGlobalScope":true,"impliedFormat":1},{"version":"74736930d108365d7bbe740c7154706ccfb1b2a3855a897963ab3e5c07ecbf19","impliedFormat":1},{"version":"b02784111b3fc9c38590cd4339ff8718f9329a6f4d3fd66e9744a1dcd1d7e191","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"63b05afa6121657f25e99e1519596b0826cda026f09372c9100dfe21417f4bd6","affectsGlobalScope":true,"impliedFormat":1},{"version":"3797dd6f4ea3dc15f356f8cdd3128bfa18122213b38a80d6c1f05d8e13cbdad8","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"f3b378f86476457c895f1534bbc355d7be69f52e097f1e5853df0f2039deec36","signature":"e85c989d15d19019cb45f19a05f2501c3dd179d212790695b4cd0b1e3cc0d786"},{"version":"908217c4f2244ec402b73533ebfcc46d6dcd34fc1c807ff403d7f98702abb3bc","impliedFormat":1},{"version":"1bc5991c91bf4be8b59db501ed284a34945d95abe9b7451d02ea001f7c5621a9","impliedFormat":1},{"version":"d8b8a5a6bf623239d5374ad4a7ff6f3b195ab5ee61293f59f1957e90d2a22809","impliedFormat":1},{"version":"35d283eca7dc0a0c7b099f5fbbf0678b87f3d837572cd5e539ba297ad9837e68","impliedFormat":1},{"version":"1c8384a195a2d931cf6e2b8f656acf558ca649a3f74922d86b95889f49a7f7c5","impliedFormat":1},{"version":"cd11655f57a3558dfcee05a6e78c026f9dfd30535eaf124439c5e88a5617359b","impliedFormat":1},{"version":"60acaaf99f80c65b62f3daa650b47090acab36d50b79e5c9fce95c0a97a0d83a","impliedFormat":1},{"version":"4051f6311deb0ce6052329eeb1cd4b1b104378fe52f882f483130bea75f92197","impliedFormat":1},{"version":"75b4df517570229d59a1951e1f283e17f232b8c1df8cb675f1bbb127da208e2e","impliedFormat":1},{"version":"67a7ca7fd4b214dff1f1fbb12cd03479e7092740af9efaee6e8df3dfcb20d75c","signature":"f7ca6572ec7093a653a5d6c5bad05f48b58e082794552d38666e002a4dcbca44"},{"version":"32daeab61aee8b5ecf83a1a3e0cc229b3548bbbb70796cf991374bbb2fd5a8a7","signature":"0578ae9e8bea088fb4893046640236f6f8d5a645a774703744a18e67a909e1f3"},{"version":"df0eff0399531477af9ed095d9b40d2d755a46ac91f5e0492ea48ac826af1b45","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"04d23dcf59ce2d15ec8eecb02309b4d13ceede2da88eddf49f2f687d4387a7b8","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"4c8fd2d7d285c16d12f056979291fb48a4b24520209d481490f5afc7b3bf501b","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true,"impliedFormat":1}],"root":[80,81,183,[193,197]],"options":{"allowJs":true,"checkJs":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"newLine":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","removeComments":true,"sourceMap":true,"strict":true,"strictBindCallApply":true,"strictNullChecks":true,"target":7},"referencedMap":[[198,1],[201,2],[200,1],[206,3],[128,4],[129,4],[130,5],[88,6],[131,7],[132,8],[133,9],[83,1],[86,10],[84,1],[85,1],[134,11],[135,12],[136,13],[137,14],[138,15],[139,16],[140,16],[142,17],[141,18],[143,19],[144,20],[145,21],[127,22],[87,1],[146,23],[147,24],[148,25],[181,26],[149,27],[150,28],[151,29],[152,30],[153,31],[154,32],[155,33],[156,34],[157,35],[158,36],[159,36],[160,37],[161,1],[162,1],[163,38],[165,39],[164,40],[166,41],[167,42],[168,43],[169,44],[170,45],[171,46],[172,47],[173,48],[174,49],[175,50],[176,51],[177,52],[178,53],[179,54],[180,55],[184,1],[82,1],[89,1],[199,1],[205,56],[182,57],[203,58],[204,59],[79,1],[185,60],[192,61],[191,1],[202,62],[77,1],[78,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[23,1],[24,1],[4,1],[25,1],[29,1],[26,1],[27,1],[28,1],[30,1],[31,1],[32,1],[5,1],[33,1],[34,1],[35,1],[36,1],[6,1],[40,1],[37,1],[38,1],[39,1],[41,1],[7,1],[42,1],[47,1],[48,1],[43,1],[44,1],[45,1],[46,1],[8,1],[52,1],[49,1],[50,1],[51,1],[53,1],[9,1],[54,1],[55,1],[56,1],[58,1],[57,1],[59,1],[60,1],[10,1],[61,1],[62,1],[63,1],[11,1],[64,1],[65,1],[66,1],[67,1],[68,1],[1,1],[69,1],[70,1],[12,1],[74,1],[72,1],[76,1],[71,1],[75,1],[73,1],[105,63],[115,64],[104,63],[125,65],[96,66],[95,67],[124,68],[118,69],[123,70],[98,71],[112,72],[97,73],[121,74],[93,75],[92,68],[122,76],[94,77],[99,78],[100,1],[103,78],[90,1],[126,79],[116,80],[107,81],[108,82],[110,83],[106,84],[109,85],[119,68],[101,86],[102,87],[111,88],[91,89],[114,80],[113,78],[117,1],[120,90],[190,91],[186,92],[189,93],[187,68],[188,94],[195,95],[196,96],[197,97],[80,98],[81,1],[183,99],[194,100],[193,101]],"version":"5.8.3"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@book000/node-utils",
3
- "version": "1.15.5",
3
+ "version": "1.15.7",
4
4
  "description": "Self-Utility library",
5
5
  "homepage": "https://github.com/book000/node-utils",
6
6
  "bugs": {
@@ -28,6 +28,7 @@
28
28
  },
29
29
  "devDependencies": {
30
30
  "@book000/eslint-config": "1.8.63",
31
+ "@types/jest": "29.5.14",
31
32
  "@types/node": "22.15.3",
32
33
  "ctix": "2.7.1",
33
34
  "cycle": "1.0.3",
@@ -36,15 +37,44 @@
36
37
  "eslint-plugin-import": "2.31.0",
37
38
  "eslint-plugin-n": "17.17.0",
38
39
  "eslint-plugin-promise": "7.2.1",
40
+ "jest": "29.7.0",
41
+ "jest-expect-message": "1.1.3",
39
42
  "prettier": "3.5.3",
40
43
  "rimraf": "6.0.1",
41
44
  "run-z": "2.1.0",
45
+ "ts-jest": "29.3.2",
42
46
  "tsx": "4.19.4",
43
47
  "typescript": "5.8.3",
44
48
  "winston": "3.17.0",
45
49
  "winston-daily-rotate-file": "5.0.0",
46
50
  "yarn-run-all": "3.1.1"
47
51
  },
52
+ "jest": {
53
+ "transform": {
54
+ "^.+\\.ts$": [
55
+ "ts-jest",
56
+ {
57
+ "tsconfig": "tsconfig.json"
58
+ }
59
+ ]
60
+ },
61
+ "moduleFileExtensions": [
62
+ "js",
63
+ "ts"
64
+ ],
65
+ "setupFilesAfterEnv": [
66
+ "jest-expect-message"
67
+ ],
68
+ "testMatch": [
69
+ "**/*.test.ts"
70
+ ],
71
+ "collectCoverageFrom": [
72
+ "src/**/*.ts",
73
+ "!src/**/*.d.ts",
74
+ "!src/examples/**",
75
+ "!src/index.ts"
76
+ ]
77
+ },
48
78
  "scripts": {
49
79
  "start": "tsx ./src/main.ts",
50
80
  "dev": "tsx watch ./src/main.ts",
@@ -59,6 +89,7 @@
59
89
  "lint": "run-z lint:prettier,lint:eslint,lint:tsc",
60
90
  "lint:eslint": "eslint . -c eslint.config.mjs",
61
91
  "fix": "run-z fix:prettier,fix:eslint",
62
- "fix:eslint": "eslint . -c eslint.config.mjs --fix"
92
+ "fix:eslint": "eslint . -c eslint.config.mjs --fix",
93
+ "test": "jest --runInBand --passWithNoTests --detectOpenHandles --forceExit --coverage"
63
94
  }
64
95
  }