@forklaunch/universal-sdk 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 forklaunch
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,3 @@
1
+ declare const _default: any[];
2
+ export default _default;
3
+ //# sourceMappingURL=eslint.config.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"eslint.config.d.mts","sourceRoot":"","sources":["../eslint.config.mjs"],"names":[],"mappings":""}
@@ -0,0 +1,10 @@
1
+ import pluginJs from '@eslint/js';
2
+ import globals from 'globals';
3
+ import tseslint from 'typescript-eslint';
4
+ export default [
5
+ { files: ['**/*.{ts}'] },
6
+ { ignores: ['tests/**/*', 'dist/**/*', 'node_modules/**/*'] },
7
+ { languageOptions: { globals: globals.browser } },
8
+ pluginJs.configs.recommended,
9
+ ...tseslint.configs.recommended
10
+ ];
package/lib/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export declare const universalSdk: <TypedController>(host: string) => TypedController;
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,YAAY,GAAI,eAAe,QAAQ,MAAM,KAYhC,eACzB,CAAC"}
package/lib/index.js ADDED
@@ -0,0 +1,20 @@
1
+ /**
2
+ * Initializes the Forklaunch SDK with HTTP methods proxied.
3
+ *
4
+ * @template TypedController
5
+ * @param {string} host - The host URL for the SDK.
6
+ * @returns {TypedController} - The SDK proxy with methods for HTTP requests.
7
+ */
8
+ import { UniversalSdk } from './src/universalSdk';
9
+ export const universalSdk = (host) => {
10
+ const sdkInternal = new UniversalSdk(host);
11
+ const proxyInternal = new Proxy(sdkInternal, {
12
+ get(target, prop) {
13
+ if (typeof prop === 'string' && prop in target) {
14
+ return target[prop].bind(target);
15
+ }
16
+ throw new Error(`Method ${String(prop)} not found`);
17
+ }
18
+ });
19
+ return proxyInternal;
20
+ };
@@ -0,0 +1,4 @@
1
+ import type { JestConfigWithTsJest } from 'ts-jest';
2
+ declare const jestConfig: JestConfigWithTsJest;
3
+ export default jestConfig;
4
+ //# sourceMappingURL=jest.config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"jest.config.d.ts","sourceRoot":"","sources":["../jest.config.ts"],"names":[],"mappings":"AAoBA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,SAAS,CAAC;AAEpD,QAAA,MAAM,UAAU,EAAE,oBAkBjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
@@ -0,0 +1,21 @@
1
+ // import type { Config } from 'jest';
2
+ const jestConfig = {
3
+ // [...]
4
+ preset: 'ts-jest/presets/default-esm', // or other ESM presets
5
+ moduleNameMapper: {
6
+ '^(\\.{1,2}/.*)\\.js$': '$1'
7
+ },
8
+ transform: {
9
+ // '^.+\\.[tj]sx?$' to process ts,js,tsx,jsx with `ts-jest`
10
+ // '^.+\\.m?[tj]sx?$' to process ts,js,tsx,jsx,mts,mjs,mtsx,mjsx with `ts-jest`
11
+ '^.+\\.[tj]sx?$': [
12
+ 'ts-jest',
13
+ {
14
+ useESM: true
15
+ }
16
+ ],
17
+ '^.+\\.js$': 'babel-jest'
18
+ },
19
+ testPathIgnorePatterns: ['.*dist/', '.*node_modules/']
20
+ };
21
+ export default jestConfig;
@@ -0,0 +1,25 @@
1
+ /**
2
+ * @typedef {Object} RequestType
3
+ * @property {Record<string, string | number | boolean>} [params] - URL parameters.
4
+ * @property {Record<string, unknown>} [body] - Request body.
5
+ * @property {Record<string, string | number | boolean>} [query] - Query parameters.
6
+ * @property {Record<string, string>} [headers] - Request headers.
7
+ */
8
+ /**
9
+ * @typedef {Object} ResponseType
10
+ * @property {number} code - The HTTP response code.
11
+ * @property {any} response - The response body.
12
+ * @property {Headers} headers - The response headers.
13
+ */
14
+ export interface RequestType {
15
+ params?: Record<string, string | number | boolean>;
16
+ body?: Record<string, unknown>;
17
+ query?: Record<string, string | number | boolean>;
18
+ headers?: Record<string, string>;
19
+ }
20
+ export interface ResponseType {
21
+ code: number;
22
+ content: unknown;
23
+ headers: Headers;
24
+ }
25
+ //# sourceMappingURL=sdkTypes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sdkTypes.d.ts","sourceRoot":"","sources":["../../../src/types/sdkTypes.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH;;;;;GAKG;AACH,MAAM,WAAW,WAAW;IAC1B,MAAM,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC;IACnD,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAC/B,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,CAAC;IAClD,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAClC;AAED,MAAM,WAAW,YAAY;IAC3B,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,OAAO,CAAC;CAClB"}
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @typedef {Object} RequestType
3
+ * @property {Record<string, string | number | boolean>} [params] - URL parameters.
4
+ * @property {Record<string, unknown>} [body] - Request body.
5
+ * @property {Record<string, string | number | boolean>} [query] - Query parameters.
6
+ * @property {Record<string, string>} [headers] - Request headers.
7
+ */
8
+ export {};
@@ -0,0 +1,30 @@
1
+ import { RequestType, ResponseType } from './types/sdkTypes';
2
+ /**
3
+ * A class representing the Forklaunch SDK.
4
+ */
5
+ export declare class UniversalSdk {
6
+ private host;
7
+ /**
8
+ * Creates an instance of UniversalSdk.
9
+ *
10
+ * @param {string} host - The host URL for the SDK.
11
+ */
12
+ constructor(host: string);
13
+ /**
14
+ * Executes an HTTP request.
15
+ *
16
+ * @param {string} route - The route path for the request.
17
+ * @param {'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'} method - The HTTP method.
18
+ * @param {RequestType} [request] - The request object.
19
+ * @returns {Promise<ResponseType>} - The response object.
20
+ */
21
+ private execute;
22
+ pathParamRequest(route: string, method: 'GET' | 'DELETE', request?: RequestType): Promise<ResponseType>;
23
+ bodyRequest(route: string, method: 'POST' | 'PUT' | 'PATCH', request?: RequestType): Promise<ResponseType>;
24
+ get(route: string, request?: RequestType): Promise<ResponseType>;
25
+ post(route: string, request?: RequestType): Promise<ResponseType>;
26
+ put(route: string, request?: RequestType): Promise<ResponseType>;
27
+ patch(route: string, request?: RequestType): Promise<ResponseType>;
28
+ delete(route: string, request?: RequestType): Promise<ResponseType>;
29
+ }
30
+ //# sourceMappingURL=universalSdk.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"universalSdk.d.ts","sourceRoot":"","sources":["../../src/universalSdk.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAE7D;;GAEG;AACH,qBAAa,YAAY;IAMX,OAAO,CAAC,IAAI;IALxB;;;;OAIG;gBACiB,IAAI,EAAE,MAAM;IAEhC;;;;;;;OAOG;YACW,OAAO;IA0Cf,gBAAgB,CACpB,KAAK,EAAE,MAAM,EACb,MAAM,EAAE,KAAK,GAAG,QAAQ,EACxB,OAAO,CAAC,EAAE,WAAW;IAKjB,WAAW,CACf,KAAK,EAAE,MAAM,EACb,MAAM,EAAE,MAAM,GAAG,KAAK,GAAG,OAAO,EAChC,OAAO,CAAC,EAAE,WAAW;IAKjB,GAAG,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,WAAW;IAIxC,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,WAAW;IAIzC,GAAG,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,WAAW;IAIxC,KAAK,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,WAAW;IAI1C,MAAM,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,WAAW;CAGlD"}
@@ -0,0 +1,72 @@
1
+ /**
2
+ * A class representing the Forklaunch SDK.
3
+ */
4
+ export class UniversalSdk {
5
+ host;
6
+ /**
7
+ * Creates an instance of UniversalSdk.
8
+ *
9
+ * @param {string} host - The host URL for the SDK.
10
+ */
11
+ constructor(host) {
12
+ this.host = host;
13
+ }
14
+ /**
15
+ * Executes an HTTP request.
16
+ *
17
+ * @param {string} route - The route path for the request.
18
+ * @param {'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'} method - The HTTP method.
19
+ * @param {RequestType} [request] - The request object.
20
+ * @returns {Promise<ResponseType>} - The response object.
21
+ */
22
+ async execute(route, method, request) {
23
+ const { params, body, query, headers } = request || {};
24
+ let url = this.host + route;
25
+ if (params) {
26
+ for (const key in params) {
27
+ url = url.replace(`:${key}`, encodeURIComponent(params[key]));
28
+ }
29
+ }
30
+ if (query) {
31
+ const queryString = new URLSearchParams(query).toString();
32
+ url += queryString ? `?${queryString}` : '';
33
+ }
34
+ const response = await fetch(encodeURI(url), {
35
+ method,
36
+ headers: headers
37
+ ? { ...headers, 'Content-Type': 'application/json' }
38
+ : undefined,
39
+ body: body ? JSON.stringify(body) : undefined
40
+ });
41
+ const contentType = response.headers.get('content-type');
42
+ const responseBody = contentType && contentType.includes('application/json')
43
+ ? await response.json()
44
+ : await response.text();
45
+ return {
46
+ code: response.status,
47
+ content: responseBody,
48
+ headers: response.headers
49
+ };
50
+ }
51
+ async pathParamRequest(route, method, request) {
52
+ return this.execute(route, method, request);
53
+ }
54
+ async bodyRequest(route, method, request) {
55
+ return this.execute(route, method, request);
56
+ }
57
+ async get(route, request) {
58
+ return this.pathParamRequest(route, 'GET', request);
59
+ }
60
+ async post(route, request) {
61
+ return this.bodyRequest(route, 'POST', request);
62
+ }
63
+ async put(route, request) {
64
+ return this.bodyRequest(route, 'PUT', request);
65
+ }
66
+ async patch(route, request) {
67
+ return this.bodyRequest(route, 'PATCH', request);
68
+ }
69
+ async delete(route, request) {
70
+ return this.pathParamRequest(route, 'DELETE', request);
71
+ }
72
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Generates a string from a given regular expression or string representation of a regex.
3
+ *
4
+ * @param {RegExp | string} regex - The regular expression or string representation of a regex.
5
+ * @returns {string} - The generated string based on the regex pattern.
6
+ * @throws {Error} - Throws an error if there are unmatched brackets or groups.
7
+ */
8
+ export declare function generateStringFromRegex(regex: RegExp | string): string;
9
+ //# sourceMappingURL=regex.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"regex.d.ts","sourceRoot":"","sources":["../../../src/utils/regex.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,wBAAgB,uBAAuB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,CAwGtE"}
@@ -0,0 +1,111 @@
1
+ /**
2
+ * Generates a string from a given regular expression or string representation of a regex.
3
+ *
4
+ * @param {RegExp | string} regex - The regular expression or string representation of a regex.
5
+ * @returns {string} - The generated string based on the regex pattern.
6
+ * @throws {Error} - Throws an error if there are unmatched brackets or groups.
7
+ */
8
+ export function generateStringFromRegex(regex) {
9
+ let regexStr = typeof regex === 'object' ? regex.source : regex;
10
+ // Remove leading and trailing slashes if present
11
+ if (regexStr.startsWith('/'))
12
+ regexStr = regexStr.slice(1);
13
+ if (regexStr.endsWith('/g'))
14
+ regexStr = regexStr.slice(0, -2); // Remove the global flag
15
+ if (regexStr.endsWith('/'))
16
+ regexStr = regexStr.slice(0, -1);
17
+ let result = '';
18
+ let i = 0;
19
+ while (i < regexStr.length) {
20
+ const char = regexStr[i];
21
+ switch (char) {
22
+ case '\\': {
23
+ // Handle escaped characters
24
+ const nextChar = regexStr[i + 1];
25
+ switch (nextChar) {
26
+ case 'b':
27
+ // Word boundary, ensure we start a new word
28
+ if (result.length > 0 && /\w/.test(result[result.length - 1])) {
29
+ result += ' ';
30
+ }
31
+ break;
32
+ case 'd':
33
+ result += '0'; // Match a digit
34
+ break;
35
+ case 'w':
36
+ result += 'a'; // Match a word character
37
+ break;
38
+ case 's':
39
+ result += ' '; // Match a whitespace character
40
+ break;
41
+ default:
42
+ result += nextChar;
43
+ }
44
+ i += 2;
45
+ break;
46
+ }
47
+ case '.':
48
+ // Match any character (using 'a' for simplicity)
49
+ result += 'a';
50
+ i++;
51
+ break;
52
+ case '[': {
53
+ // Handle character classes
54
+ const endIdx = regexStr.indexOf(']', i);
55
+ if (endIdx === -1) {
56
+ throw new Error('Unmatched [');
57
+ }
58
+ const charClass = regexStr.slice(i + 1, endIdx);
59
+ result += charClass[0]; // Use the first character in the class
60
+ i = endIdx + 1;
61
+ break;
62
+ }
63
+ case '(': {
64
+ // Handle groups (non-capturing groups (?:...) are simplified to normal groups)
65
+ const endGroupIdx = regexStr.indexOf(')', i);
66
+ if (endGroupIdx === -1) {
67
+ throw new Error('Unmatched (');
68
+ }
69
+ const groupContent = regexStr.slice(i + 1, endGroupIdx);
70
+ result += generateStringFromRegex(groupContent); // Recursively handle group content
71
+ i = endGroupIdx + 1;
72
+ break;
73
+ }
74
+ case '{': {
75
+ // Handle quantifiers {n} or {n,m}
76
+ const endQuantIdx = regexStr.indexOf('}', i);
77
+ if (endQuantIdx === -1) {
78
+ throw new Error('Unmatched {');
79
+ }
80
+ const quantifier = regexStr.slice(i + 1, endQuantIdx);
81
+ const min = parseInt(quantifier.split(',')[0], 10) || 1;
82
+ const lastChar = result[result.length - 1];
83
+ result += lastChar.repeat(min - 1);
84
+ i = endQuantIdx + 1;
85
+ break;
86
+ }
87
+ case '*':
88
+ case '+':
89
+ case '?': {
90
+ // Handle *, +, and ? quantifiers (simplified handling)
91
+ const prevChar = result[result.length - 1];
92
+ if (char === '*') {
93
+ // Match zero or more (using one for simplicity)
94
+ result += prevChar;
95
+ }
96
+ else if (char === '+') {
97
+ // Match one or more (already have one, so add one more)
98
+ result += prevChar;
99
+ }
100
+ i++;
101
+ break;
102
+ }
103
+ default:
104
+ // Default case: add character to result
105
+ result += char;
106
+ i++;
107
+ break;
108
+ }
109
+ }
110
+ return result;
111
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=universalSdk.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"universalSdk.test.d.ts","sourceRoot":"","sources":["../../tests/universalSdk.test.ts"],"names":[],"mappings":""}
@@ -0,0 +1,92 @@
1
+ import fetchMock from 'fetch-mock';
2
+ import { universalSdk } from '../index';
3
+ describe('universalSdk tests', () => {
4
+ const sdk = universalSdk('https://api.example.com');
5
+ beforeEach(() => {
6
+ fetchMock.reset(); // Reset fetchMock before each test
7
+ });
8
+ afterAll(() => {
9
+ fetchMock.restore(); // Restore fetchMock after all tests are done
10
+ });
11
+ test('GET request should be called with correct URL and method', async () => {
12
+ fetchMock.getOnce('https://api.example.com/test', {
13
+ status: 200,
14
+ body: { message: 'Success' },
15
+ headers: { 'Content-Type': 'application/json' }
16
+ });
17
+ const response = await sdk.get('/test');
18
+ expect(fetchMock.called('https://api.example.com/test')).toBe(true);
19
+ expect(await response.content).toEqual({ message: 'Success' });
20
+ });
21
+ test('POST request should be called with correct URL, method, headers, and body', async () => {
22
+ fetchMock.postOnce('https://api.example.com/test', {
23
+ status: 201,
24
+ body: { message: 'Created' },
25
+ headers: { 'Content-Type': 'application/json' }
26
+ });
27
+ const response = await sdk.post('/test', {
28
+ body: { key: 'value' },
29
+ headers: { Authorization: 'Bearer token' }
30
+ });
31
+ expect(fetchMock.called('https://api.example.com/test')).toBe(true);
32
+ const lastCall = fetchMock.lastCall('https://api.example.com/test');
33
+ expect(lastCall?.[1]?.method).toBe('POST');
34
+ expect(lastCall?.[1]?.headers).toEqual({
35
+ 'Content-Type': 'application/json',
36
+ Authorization: 'Bearer token'
37
+ });
38
+ expect(lastCall?.[1]?.body).toBe(JSON.stringify({ key: 'value' }));
39
+ expect(await response.content).toEqual({ message: 'Created' });
40
+ });
41
+ test('PUT request should be called with correct URL and method', async () => {
42
+ fetchMock.putOnce('https://api.example.com/test/123', {
43
+ status: 200,
44
+ body: { message: 'Updated' },
45
+ headers: { 'Content-Type': 'application/json' }
46
+ });
47
+ const response = await sdk.put('/test/123', {
48
+ body: { key: 'updatedValue' },
49
+ headers: { Authorization: 'Bearer token' }
50
+ });
51
+ expect(fetchMock.called('https://api.example.com/test/123')).toBe(true);
52
+ const lastCall = fetchMock.lastCall('https://api.example.com/test/123');
53
+ expect(lastCall?.[1]?.method).toBe('PUT');
54
+ expect(lastCall?.[1]?.headers).toEqual({
55
+ 'Content-Type': 'application/json',
56
+ Authorization: 'Bearer token'
57
+ });
58
+ expect(lastCall?.[1]?.body).toBe(JSON.stringify({ key: 'updatedValue' }));
59
+ expect(await response.content).toEqual({ message: 'Updated' });
60
+ });
61
+ test('PATCH request should be called with correct URL and method', async () => {
62
+ fetchMock.patchOnce('https://api.example.com/test/123', {
63
+ status: 200,
64
+ body: { message: 'Patched' },
65
+ headers: { 'Content-Type': 'application/json' }
66
+ });
67
+ const response = await sdk.patch('/test/123', {
68
+ body: { key: 'patchedValue' },
69
+ headers: { Authorization: 'Bearer token' }
70
+ });
71
+ expect(fetchMock.called('https://api.example.com/test/123')).toBe(true);
72
+ const lastCall = fetchMock.lastCall('https://api.example.com/test/123');
73
+ expect(lastCall?.[1]?.method).toBe('PATCH');
74
+ expect(lastCall?.[1]?.headers).toEqual({
75
+ 'Content-Type': 'application/json',
76
+ Authorization: 'Bearer token'
77
+ });
78
+ expect(lastCall?.[1]?.body).toBe(JSON.stringify({ key: 'patchedValue' }));
79
+ expect(await response.content).toEqual({ message: 'Patched' });
80
+ });
81
+ test('DELETE request should be called with correct URL and method', async () => {
82
+ fetchMock.deleteOnce('https://api.example.com/test/123', {
83
+ status: 204,
84
+ headers: {}
85
+ });
86
+ const response = await sdk.delete('/test/123');
87
+ expect(fetchMock.called('https://api.example.com/test/123')).toBe(true);
88
+ const lastCall = fetchMock.lastCall('https://api.example.com/test/123');
89
+ expect(lastCall?.[1]?.method).toBe('DELETE');
90
+ expect(response.code).toBe(204);
91
+ });
92
+ });
@@ -0,0 +1 @@
1
+ {"program":{"fileNames":["../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.string.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.object.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/typescript.d.ts","../../../node_modules/.pnpm/@typescript-eslint+types@7.18.0/node_modules/@typescript-eslint/types/dist/generated/ast-spec.d.ts","../../../node_modules/.pnpm/@typescript-eslint+types@7.18.0/node_modules/@typescript-eslint/types/dist/lib.d.ts","../../../node_modules/.pnpm/@typescript-eslint+types@7.18.0/node_modules/@typescript-eslint/types/dist/parser-options.d.ts","../../../node_modules/.pnpm/@typescript-eslint+types@7.18.0/node_modules/@typescript-eslint/types/dist/ts-estree.d.ts","../../../node_modules/.pnpm/@typescript-eslint+types@7.18.0/node_modules/@typescript-eslint/types/dist/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.5.4/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.5.4/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.5.4/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.5.4/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.5.4/node_modules/@typescript-eslint/typescript-estree/dist/parser.d.ts","../../../node_modules/.pnpm/@typescript-eslint+visitor-keys@7.18.0/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts","../../../node_modules/.pnpm/@typescript-eslint+visitor-keys@7.18.0/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts","../../../node_modules/.pnpm/@typescript-eslint+visitor-keys@7.18.0/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.5.4/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.d.ts","../../../node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/tsserverlibrary.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.5.4/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createprojectservice.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.5.4/node_modules/@typescript-eslint/typescript-estree/dist/parsesettings/expiringcache.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.5.4/node_modules/@typescript-eslint/typescript-estree/dist/parsesettings/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.5.4/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.5.4/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useprovidedprograms.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.5.4/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getscriptkind.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.5.4/node_modules/@typescript-eslint/typescript-estree/dist/version-check.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.5.4/node_modules/@typescript-eslint/typescript-estree/dist/getmodifiers.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.5.4/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.5.4/node_modules/@typescript-eslint/typescript-estree/dist/clear-caches.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.5.4/node_modules/@typescript-eslint/typescript-estree/dist/withoutprojectparseroptions.d.ts","../../../node_modules/.pnpm/@typescript-eslint+typescript-estree@7.18.0_typescript@5.5.4/node_modules/@typescript-eslint/typescript-estree/dist/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ts-estree.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ts-eslint/ast.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ts-eslint/parseroptions.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/definition/definitiontype.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/definition/definitionbase.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/definition/catchclausedefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/definition/classnamedefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/definition/functionnamedefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/definition/implicitglobalvariabledefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/definition/importbindingdefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/definition/parameterdefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/definition/tsenummemberdefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/definition/tsenumnamedefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/definition/tsmodulenamedefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/definition/typedefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/definition/variabledefinition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/definition/definition.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/variable/variablebase.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/variable/eslintscopevariable.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/variable/variable.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/variable/implicitlibvariable.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/reference.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/scopetype.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/functionscope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/globalscope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/modulescope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/tsmodulescope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/scopebase.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/catchscope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/classscope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/classstaticblockscope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/conditionaltypescope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/forscope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/functionexpressionnamescope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/functiontypescope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/mappedtypescope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/switchscope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/tsenumscope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/typescope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/withscope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/scope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/classfieldinitializerscope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scopemanager.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/blockscope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/visitorbase.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/patternvisitor.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/visitor.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/referencer.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts","../../../node_modules/.pnpm/@typescript-eslint+scope-manager@7.18.0/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ts-eslint/scope.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ts-eslint/parser.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/json-schema.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ts-eslint/sourcecode.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ts-eslint/rule.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ts-eslint/linter.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ts-eslint/processor.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ts-eslint/config.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/eslintshared.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/legacyeslint.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/flateslint.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ts-eslint/ruletester.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astutilities.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/patternmatcher.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/referencetracker.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeanalysis.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ast-utils/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/eslint-utils/applydefault.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/eslint-utils/context.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/eslint-utils/getparserservices.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/eslint-utils/infertypesfromrule.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/eslint-utils/rulecreator.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepmerge.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullthrows.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ts-utils/isarray.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/ts-utils/index.d.ts","../../../node_modules/.pnpm/@typescript-eslint+utils@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/@typescript-eslint/utils/dist/index.d.ts","../../../node_modules/.pnpm/typescript-eslint@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/typescript-eslint/dist/config-helper.d.ts","../../../node_modules/.pnpm/typescript-eslint@7.18.0_eslint@9.9.0_typescript@5.5.4/node_modules/typescript-eslint/dist/index.d.ts","../eslint.config.mjs","../src/types/sdktypes.ts","../src/universalsdk.ts","../index.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@22.4.1/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@types+yargs-parser@21.0.3/node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/.pnpm/@types+yargs@17.0.33/node_modules/@types/yargs/index.d.ts","../../../node_modules/.pnpm/@types+yargs@17.0.33/node_modules/@types/yargs/index.d.mts","../../../node_modules/.pnpm/@types+istanbul-lib-coverage@2.0.6/node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../../../node_modules/.pnpm/@types+istanbul-lib-report@3.0.3/node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/.pnpm/@types+istanbul-reports@3.0.4/node_modules/@types/istanbul-reports/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/@jest+types@29.6.3/node_modules/@jest/types/build/index.d.ts","../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping/dist/types/sourcemap-segment.d.ts","../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping/dist/types/types.d.ts","../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping/dist/types/any-map.d.ts","../../../node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping/dist/types/trace-mapping.d.ts","../../../node_modules/.pnpm/@jest+transform@29.7.0/node_modules/@jest/transform/build/index.d.ts","../../../node_modules/.pnpm/@babel+types@7.25.2/node_modules/@babel/types/lib/index.d.ts","../../../node_modules/.pnpm/@types+babel__generator@7.6.8/node_modules/@types/babel__generator/index.d.ts","../../../node_modules/.pnpm/@babel+parser@7.25.3/node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/.pnpm/@types+babel__template@7.4.4/node_modules/@types/babel__template/index.d.ts","../../../node_modules/.pnpm/@types+babel__traverse@7.20.6/node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/.pnpm/@types+babel__core@7.20.5/node_modules/@types/babel__core/index.d.ts","../../../node_modules/.pnpm/ts-jest@29.2.4_@babel+core@7.25.2_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@29.7.0_cl7oapbfpd3bk46btiubcvgryi/node_modules/ts-jest/dist/constants.d.ts","../../../node_modules/.pnpm/bs-logger@0.2.6/node_modules/bs-logger/dist/logger/context.d.ts","../../../node_modules/.pnpm/bs-logger@0.2.6/node_modules/bs-logger/dist/logger/message.d.ts","../../../node_modules/.pnpm/bs-logger@0.2.6/node_modules/bs-logger/dist/logger/target.d.ts","../../../node_modules/.pnpm/bs-logger@0.2.6/node_modules/bs-logger/dist/logger/index.d.ts","../../../node_modules/.pnpm/bs-logger@0.2.6/node_modules/bs-logger/dist/logger/level.d.ts","../../../node_modules/.pnpm/bs-logger@0.2.6/node_modules/bs-logger/dist/logger/root.d.ts","../../../node_modules/.pnpm/bs-logger@0.2.6/node_modules/bs-logger/dist/testing/target-mock.d.ts","../../../node_modules/.pnpm/bs-logger@0.2.6/node_modules/bs-logger/dist/testing/index.d.ts","../../../node_modules/.pnpm/bs-logger@0.2.6/node_modules/bs-logger/dist/index.d.ts","../../../node_modules/.pnpm/ts-jest@29.2.4_@babel+core@7.25.2_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@29.7.0_cl7oapbfpd3bk46btiubcvgryi/node_modules/ts-jest/dist/raw-compiler-options.d.ts","../../../node_modules/.pnpm/ts-jest@29.2.4_@babel+core@7.25.2_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@29.7.0_cl7oapbfpd3bk46btiubcvgryi/node_modules/ts-jest/dist/legacy/config/config-set.d.ts","../../../node_modules/.pnpm/ts-jest@29.2.4_@babel+core@7.25.2_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@29.7.0_cl7oapbfpd3bk46btiubcvgryi/node_modules/ts-jest/dist/types.d.ts","../../../node_modules/.pnpm/ts-jest@29.2.4_@babel+core@7.25.2_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@29.7.0_cl7oapbfpd3bk46btiubcvgryi/node_modules/ts-jest/dist/legacy/ts-jest-transformer.d.ts","../../../node_modules/.pnpm/ts-jest@29.2.4_@babel+core@7.25.2_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@29.7.0_cl7oapbfpd3bk46btiubcvgryi/node_modules/ts-jest/dist/config/paths-to-module-name-mapper.d.ts","../../../node_modules/.pnpm/ts-jest@29.2.4_@babel+core@7.25.2_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@29.7.0_cl7oapbfpd3bk46btiubcvgryi/node_modules/ts-jest/dist/config/index.d.ts","../../../node_modules/.pnpm/ts-jest@29.2.4_@babel+core@7.25.2_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@29.7.0_cl7oapbfpd3bk46btiubcvgryi/node_modules/ts-jest/dist/legacy/compiler/ts-compiler.d.ts","../../../node_modules/.pnpm/ts-jest@29.2.4_@babel+core@7.25.2_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@29.7.0_cl7oapbfpd3bk46btiubcvgryi/node_modules/ts-jest/dist/legacy/compiler/ts-jest-compiler.d.ts","../../../node_modules/.pnpm/ts-jest@29.2.4_@babel+core@7.25.2_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@29.7.0_cl7oapbfpd3bk46btiubcvgryi/node_modules/ts-jest/dist/legacy/compiler/index.d.ts","../../../node_modules/.pnpm/ts-jest@29.2.4_@babel+core@7.25.2_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@29.7.0_cl7oapbfpd3bk46btiubcvgryi/node_modules/ts-jest/dist/presets/create-jest-preset.d.ts","../../../node_modules/.pnpm/ts-jest@29.2.4_@babel+core@7.25.2_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@29.7.0_cl7oapbfpd3bk46btiubcvgryi/node_modules/ts-jest/dist/utils/json.d.ts","../../../node_modules/.pnpm/ts-jest@29.2.4_@babel+core@7.25.2_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@29.7.0_cl7oapbfpd3bk46btiubcvgryi/node_modules/ts-jest/dist/utils/jsonable-value.d.ts","../../../node_modules/.pnpm/ts-jest@29.2.4_@babel+core@7.25.2_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@29.7.0_cl7oapbfpd3bk46btiubcvgryi/node_modules/ts-jest/dist/utils/logger.d.ts","../../../node_modules/.pnpm/ts-jest@29.2.4_@babel+core@7.25.2_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@29.7.0_cl7oapbfpd3bk46btiubcvgryi/node_modules/ts-jest/dist/utils/index.d.ts","../../../node_modules/.pnpm/ts-jest@29.2.4_@babel+core@7.25.2_@jest+transform@29.7.0_@jest+types@29.6.3_babel-jest@29.7.0_cl7oapbfpd3bk46btiubcvgryi/node_modules/ts-jest/dist/index.d.ts","../jest.config.ts","../../../node_modules/.pnpm/@vitest+utils@2.0.5/node_modules/@vitest/utils/dist/types.d.ts","../../../node_modules/.pnpm/@vitest+utils@2.0.5/node_modules/@vitest/utils/dist/helpers.d.ts","../../../node_modules/.pnpm/@vitest+pretty-format@2.0.5/node_modules/@vitest/pretty-format/dist/index.d.ts","../../../node_modules/.pnpm/tinyrainbow@1.2.0/node_modules/tinyrainbow/dist/index-c1cfc5e9.d.ts","../../../node_modules/.pnpm/tinyrainbow@1.2.0/node_modules/tinyrainbow/dist/node.d.ts","../../../node_modules/.pnpm/@vitest+utils@2.0.5/node_modules/@vitest/utils/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+runner@2.0.5/node_modules/@vitest/runner/dist/tasks-zb5upaup.d.ts","../../../node_modules/.pnpm/@vitest+utils@2.0.5/node_modules/@vitest/utils/dist/types-bxe-2udy.d.ts","../../../node_modules/.pnpm/@vitest+utils@2.0.5/node_modules/@vitest/utils/dist/diff.d.ts","../../../node_modules/.pnpm/@vitest+runner@2.0.5/node_modules/@vitest/runner/dist/types.d.ts","../../../node_modules/.pnpm/@vitest+utils@2.0.5/node_modules/@vitest/utils/dist/error.d.ts","../../../node_modules/.pnpm/@vitest+runner@2.0.5/node_modules/@vitest/runner/dist/index.d.ts","../../../node_modules/.pnpm/@types+estree@1.0.5/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/rollup@4.21.0/node_modules/rollup/dist/rollup.d.ts","../../../node_modules/.pnpm/rollup@4.21.0/node_modules/rollup/dist/parseast.d.ts","../../../node_modules/.pnpm/vite@5.4.1_@types+node@22.4.1/node_modules/vite/types/hmrpayload.d.ts","../../../node_modules/.pnpm/vite@5.4.1_@types+node@22.4.1/node_modules/vite/types/customevent.d.ts","../../../node_modules/.pnpm/vite@5.4.1_@types+node@22.4.1/node_modules/vite/types/hot.d.ts","../../../node_modules/.pnpm/vite@5.4.1_@types+node@22.4.1/node_modules/vite/dist/node/types.d-agj9qkwt.d.ts","../../../node_modules/.pnpm/esbuild@0.21.5/node_modules/esbuild/lib/main.d.ts","../../../node_modules/.pnpm/source-map-js@1.2.0/node_modules/source-map-js/source-map.d.ts","../../../node_modules/.pnpm/postcss@8.4.41/node_modules/postcss/lib/previous-map.d.ts","../../../node_modules/.pnpm/postcss@8.4.41/node_modules/postcss/lib/input.d.ts","../../../node_modules/.pnpm/postcss@8.4.41/node_modules/postcss/lib/css-syntax-error.d.ts","../../../node_modules/.pnpm/postcss@8.4.41/node_modules/postcss/lib/declaration.d.ts","../../../node_modules/.pnpm/postcss@8.4.41/node_modules/postcss/lib/root.d.ts","../../../node_modules/.pnpm/postcss@8.4.41/node_modules/postcss/lib/warning.d.ts","../../../node_modules/.pnpm/postcss@8.4.41/node_modules/postcss/lib/lazy-result.d.ts","../../../node_modules/.pnpm/postcss@8.4.41/node_modules/postcss/lib/no-work-result.d.ts","../../../node_modules/.pnpm/postcss@8.4.41/node_modules/postcss/lib/processor.d.ts","../../../node_modules/.pnpm/postcss@8.4.41/node_modules/postcss/lib/result.d.ts","../../../node_modules/.pnpm/postcss@8.4.41/node_modules/postcss/lib/document.d.ts","../../../node_modules/.pnpm/postcss@8.4.41/node_modules/postcss/lib/rule.d.ts","../../../node_modules/.pnpm/postcss@8.4.41/node_modules/postcss/lib/node.d.ts","../../../node_modules/.pnpm/postcss@8.4.41/node_modules/postcss/lib/comment.d.ts","../../../node_modules/.pnpm/postcss@8.4.41/node_modules/postcss/lib/container.d.ts","../../../node_modules/.pnpm/postcss@8.4.41/node_modules/postcss/lib/at-rule.d.ts","../../../node_modules/.pnpm/postcss@8.4.41/node_modules/postcss/lib/list.d.ts","../../../node_modules/.pnpm/postcss@8.4.41/node_modules/postcss/lib/postcss.d.ts","../../../node_modules/.pnpm/postcss@8.4.41/node_modules/postcss/lib/postcss.d.mts","../../../node_modules/.pnpm/vite@5.4.1_@types+node@22.4.1/node_modules/vite/dist/node/runtime.d.ts","../../../node_modules/.pnpm/vite@5.4.1_@types+node@22.4.1/node_modules/vite/types/importglob.d.ts","../../../node_modules/.pnpm/vite@5.4.1_@types+node@22.4.1/node_modules/vite/types/metadata.d.ts","../../../node_modules/.pnpm/vite@5.4.1_@types+node@22.4.1/node_modules/vite/dist/node/index.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@2.0.5/node_modules/@vitest/snapshot/dist/environment-ddx0edty.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@2.0.5/node_modules/@vitest/snapshot/dist/index-y6kquicb.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@2.0.5/node_modules/@vitest/snapshot/dist/index.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@2.0.5/node_modules/@vitest/snapshot/dist/environment.d.ts","../../../node_modules/.pnpm/vitest@2.0.5_@types+node@22.4.1/node_modules/vitest/dist/chunks/config.dcnyctbs.d.ts","../../../node_modules/.pnpm/vite-node@2.0.5_@types+node@22.4.1/node_modules/vite-node/dist/trace-mapping.d-dlvdeqop.d.ts","../../../node_modules/.pnpm/vite-node@2.0.5_@types+node@22.4.1/node_modules/vite-node/dist/index-ccsqccr7.d.ts","../../../node_modules/.pnpm/vite-node@2.0.5_@types+node@22.4.1/node_modules/vite-node/dist/index.d.ts","../../../node_modules/.pnpm/vitest@2.0.5_@types+node@22.4.1/node_modules/vitest/dist/chunks/environment.0m5r1sx_.d.ts","../../../node_modules/.pnpm/vite-node@2.0.5_@types+node@22.4.1/node_modules/vite-node/dist/client.d.ts","../../../node_modules/.pnpm/@vitest+snapshot@2.0.5/node_modules/@vitest/snapshot/dist/manager.d.ts","../../../node_modules/.pnpm/vite-node@2.0.5_@types+node@22.4.1/node_modules/vite-node/dist/server.d.ts","../../../node_modules/.pnpm/@vitest+utils@2.0.5/node_modules/@vitest/utils/dist/source-map.d.ts","../../../node_modules/.pnpm/@vitest+runner@2.0.5/node_modules/@vitest/runner/dist/utils.d.ts","../../../node_modules/.pnpm/tinybench@2.9.0/node_modules/tinybench/dist/index.d.ts","../../../node_modules/.pnpm/vitest@2.0.5_@types+node@22.4.1/node_modules/vitest/dist/chunks/benchmark.pubfxyfe.d.ts","../../../node_modules/.pnpm/vitest@2.0.5_@types+node@22.4.1/node_modules/vitest/dist/chunks/reporters.c_zwcd4j.d.ts","../../../node_modules/.pnpm/vitest@2.0.5_@types+node@22.4.1/node_modules/vitest/dist/config.d.ts","../../../node_modules/.pnpm/vitest@2.0.5_@types+node@22.4.1/node_modules/vitest/config.d.ts","../vitest.config.ts","../src/utils/regex.ts","../../../node_modules/.pnpm/fetch-mock@11.1.1/node_modules/fetch-mock/dist/esm/types/index.d.ts","../tests/universalsdk.test.ts","../../../node_modules/.pnpm/@jest+expect-utils@29.7.0/node_modules/@jest/expect-utils/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.12/node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","17edc026abf73c5c2dd508652d63f68ec4efd9d4856e3469890d27598209feb5",{"version":"4af6b0c727b7a2896463d512fafd23634229adf69ac7c00e2ae15a09cb084fad","affectsGlobalScope":true},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"8eb142d9d0e29220c562296bdbed6b2c228df84589ce5d0c74ed7c333c1ba6cd","f335874afb045c560a54d81e9776b702c84909a78cbb228a21f86334cc6819c8","0cb6dac34f4d159ba21a22428fa5a09df5a185f1fc15ce8c6b6c93061872b385","9a9c7df6267782204c5b9a6bbe95a963e311eff9a105be10bb64c7dfadf46c51","970028c83ed8a590ae0d2c59694301b0cf6e1ca3ada88b070df62d1078752c70","92ebc3261b20037c4e078cd3d26bccedb719b3eec653925e103b6ced4a936c0d","e905c4888a69a73f499e0df4357922ea168a137fa4f27b37fcbab62c289fec2f","eac23d66e74253c09e8d5cc40721b266c1991c4deee423e768c4c40c42073035","7c6ad54ea23ada6d5573084dd2cc7a4e5850245ec6e39bd3af6a09572cef6ff4","58c8108fb2dfa71b6bede57d26efe9117ab47e9aa9a4174e911317688f7f0206","0e67cd25518c7405d5dcaeb5471b16a81bc7472d527d0b657f9c48ea77f6b3c8","b181ff38cfb4c79fb7aa7ef163c06e84fe5b0c3b7a286848a0eaa5b2ec38c706","a8c65d6931f57824f95012e902b3c4aaed39aa655183d13a7f7487dcb1bcbf00","9a5cece9b6895a117590afa088b6b91db167e25b00e5de1cb5885898fad0a270","4d567f85f7734b209da4129603c0ceb307209d9de0e4abdae83ba2916032ce29","73b15a0b7cf5c6df9076b9408c5ce682f11813453bf54c54cb284f075b5224cf","8421f5a210c36c1818019e023e831d89d8686d7c8708fa2a86ff16aea4db5d1e","8ab16ba470e30c5083e6955c3a00d4a174c10e01cabfdd11ac8a8d99d167a697","4500082b24b523db168ff63c6e38f1aa20467d88d09ca8320b2ae031b6a22f9c","29ac96666b3a92086e8a704580f5f8437337ad80ef948be324de25637d56b3c4","3884455a26771bbc6f010da73045949047b5949fc24881e21fafdca913fb40cf","2c757867a2d1c49a365da450bd4dbaf0c5facc7f0434c5ce647a8293e49dc453","f0808e3589e8bd7e9a455fcd7b73352b59ba5cfa1647950666882faa738d3d96","5d1201e776c3167527653c835035e4ad29cd79e0d6b139aa250ca74899e0741e","f58588d21855a722bcd5e9262b3f61e63c0802522833ddac0a0fcd7ebe057d70","9acc441d14a127dea0228cd2645203c3285b296f452f723f850dc2941d2b9c7e","0488538b3037b00fef10b817013069c75f8ba9faf08ec95c15a50babe42a0c9f","5664840085fc23e24a01f9710786c6e529b65503f7ac4161e0bba916e98a92af","bac5187f95f7b26f068c22b90693d33a659eb402f15bcc6dd7e1006b534c5105","0e7a46e217fb2dbf1058e5abcd5dfe9ea7d7060cbe54d92e0bb56f2aa2b8672d","17a3603c479b3ec90e1d0b39112dee575c8127b7148a24144ce8d8593ed2f672","857864124c3a81507e55dcd7ed8cfa3f0c0f14dcee7acf94ed598cb25526d278","b9ac727a76d62fe780484c3470e788fa24649d1a56f81cfc0b6a40d14c6d8e56","55e5a83c57e75329952d4138a50cf1564ac2dfd0669c2e01fa9f50ee68196ced","50b410acd8c96105e69d93826137269413e120758411ba1dbb992b901e6a2e55","0d4e5400743b35d420d83f1a33add04e1be352d45c98f2777708ca40cbb525e6","a49a99c6fc351fa5491d7b7efa0dc5666f1400b57f2063ed8f362a93f2f98797","e4f5face52c9781d20d2127cf405288a8007cf2e15e87574f677916e534e706a","892bf5856b242f0769a7a87c05ca17a7f2075450cbaa0ab589b8944b03804a93","34bc4ae02c19ebf98cefa8f4505bcb87413a60fd2544d7d4e6193acbc4108dda","5eee4649c790eaab36ab3e1aa60c807ce0e8aaf9a025c90fb40e60b5f5684e6c","30d6dc9b525dd82df213f2ce4a2aa0b2935b3ae5366ea164f96e6c08f0968ac2","ebe7db5bd9df714d7dddaf077a0a5ab6cf33740c1e39ca0274beeb96bc86828c","4a091e7847acab6fe0536b507db54b71270d22fe98513728658e446b08941c8e","c467f362b3da83f87dff5bae2f330f17c8086eba5f8eb5240b12b049a7f77db5","ad42060f3e0f92a294748f19d9490a8a6a980fb40dda0fd4627991d1361862cc","ecbfb361d752394a3728d319a93d0a208c5a00960ec1e5763d23b5944a00e35d","60a6e14c616a9977e7e0e196977721232e6977952d0324be4fb932a07d1679e1","bd76bdc3263ffb0ca3353fb6a525e8d14323768e48b91927f9ba87183d20fff1","2d94e74a3f71bbafeab55ec22b10151b89ae85587bc65f00b83344899ee52e2c","711789984a100da43d3e498c17ae14d9702f03fa0fc32cb07bd789a405bf4ab6","281d01063c2dd246078dd4079bd7827d2680e74cfc19490d3705675022336683","1a9cdf3bfd9f257233439cb40238352fe1c6128005290ecabf5c09633d58e1bd","f92d1a32779136c5707ea3a9bfcaa66c719598b7221da13d7b4843d60b7cb1ce","abc44e24a9e4d448c16be0592efe21c226348f2cabc4a29baaca1a9d20603e48","6d6a44413b5561347e604b9136c09074efd84fac96f105b9e1b65ce2e1c4a105","0471d30e55be2eca003ccde4240963c61ed191ef664704aa9d714f66518004ae","0a58b24a08d7ec5babf99cf7e5ebebce8a65775d6247715c30fd5fb1bcbbfdc9","78febe79c300eb4e36b21a5f92c64b55659f9b1b4fdac3cccb9481b28e2572a2","9a0dbf7e661a3dc3d1842bd0fa64e001037e9086b5c6c3d46c34400afb9c8689","b8dffdc3b519083310f3405512c60e673170dd0cef15407f65f9e82790091b1a","0cf8620ca1bb4e8b07545a3ae165f49db3daf0fd184e435e0eb1aa16ba512174","3c72d7ec3a861bfbc632454bf0bfc514aa965ed26ec1f9450108258a3b6430a7","024e0a74ebd335b4c675747eee99453b53813d5ff3ad6cbaa81942a4f4ed57da","1eee1bcd570bda3524753ec72a47e4b1597d5fc362a6a83ec4bdc3195320f281","3416ba78c03a35b340a9f76647353292a656110f5327c2145fec97ff71f61ba6","0e0be8210df9c573b64f81f18a1c284c83d72b472abdfc840cf40cc0a1db3465","5199370d76f8fcb993ce69295f10a287d633de43a64a78fd5d2a367a31c4b258","aae56a4211c19ab565a4377a606ed2ff444264399560aa9f52b308e650880ecb","5b717f6f0f351120cdf828e55537e3e61ea96f82a1a160faa5b9ae39a75c6f68","083ae29c6fb50d676b29fd5965144fa7950ac4e3ee4fdf57c587bb3194013ae8","7c6b13ae7496db0387dea584ed361ed5ad7f9ee3426da3305a1526c4eedf8c5e","41cdf66049423dfbc1c69cd456cdeb66edf147520ffbec82a3fdc0cf2be0e422","16bb3683a72c89bbc51886628bbd22522148d2aa3615422eba481bcade151df7","55fa234a04eacdf253e0b46d72f6e3bd8a044339c43547a29cf3b9f29ccd050d","0d2b5656e6ee0ccde2ff5025a6230130598609e6ee351ffdfa9a468459c69fa6","f7a240307887227c5dafbea0de4e10ec4726f75b95704965853c7101fcd7e741","d2312207819e8646ffd59367976ee611f0865c5b1d1518269a005f58eaf1ccf2","506b317560aa1584d4df37db00883515cff1e29e7cd6a6764d1e9ff93297b415","20173928a097871e7ce47443e237a9b34c38f80d62e025d831699ea7671458a0","82bd0d821a7b11c1abb6958d97b2ef6b124d6b814c855545381833a4d90eba3c","ae826fd8f6c1c292b6134b449344f2d2ef7af2386b067293396e6f10435d256c","f459d3a7885bb253c3ee856df1d803f3c10a0c40026fbba1692706a44c16250b","472bead2d617265a6fa64c9752943c5aab2e9e86f0a185176479f41a550fb3ff","2a79737ec344a4e233e1259992eea87f5c218be345fb5f9c9610bd6f5a6a9d8b","0ee0daca7e6e2888bfa756477941c14dc5b7c53130f972077eaea3b2a086e8d9","c1152b769ddcc7935e173fb07ab69e61dbf10b0f46d2aa8b9c7f87a8317edcae","f5181a12efd612a1b07b0be9b8b9d622e6eb76af685b28245207145732048fc3","d1e0f154bffa05527ab925cbb61ddcdbdf005b729f9044a54ccd34c230628532","4f6eb01f34e5c100d6692d8177f0a373638c6bca7489868d956421d10b2b21d7","b364940c6d08fc6a544022fa63acb0e0275407887df88a8aab0f5a77cce3f066","71de65e470fb5a0920472a8b13d37fff8960822e34d709aee14599802c15770c","7d8c912e0a3acadd621a1b90f0e8839b5feb8f33f616d7c057d0ed6081c8c271","152f3fcc313985f572032d3c549403a6677024c9f899744b6136e278ee19eff9","1b622417ec7e6a66926ebccae5634865225472e6ebfbfc8dafe35b4727a96176","17ec351733c9b9a5de7d0aee5f710ca792a19efc365bed93ec045b885c309fde","7c5e6766d29151cea06c988554f0fc71cc3752d630d89b0ffc3624a7d87a8008","0cc1286108470352e586a04ad379421501ad5d548aa2106b831faa4d32d07947","890f3f3432ebdd5d189e8d6f7331ec491eaa8509bbc3a4317e2eddc4456be74f","4ac4ec0b295bca800f86f2959e9ebfe82f29dcf527d3fa67b677f67af73e89d6","e54a2a6f1738dc52e9dbfa3c2735fc13d82e2a525d1b66c3852490becc5f1917","a97990e77a23aea39060610aef4b4bb92154d5330ecb0b557324ba4c14a1db41","06b1ee456e58fdadbf17fe4a2e94ec88f8d518f93cc2c038bdb97132fcca4a6a","4888f20319cb26b99def6b5a9cadc99043fa873ad73c7f26c1ef8caff3cb2fb7","d8146e460ae63d97772a3c4096e2316ebd937f5527bb9fff10bd21d2d1bc8a81","b90283ab6c36fc580b06cb293629a9b37eaba24e17ff9ae2f0d874a3f3a962a1","0bbe4abbaf922b94d856946a155065476a38d2c4b188897f08e0e753ba82ffea","190f2bf5195dbcfaf988c534739b2ba85c8ebaa65fe2c84a28e883b28a0ee37b","033f53bebd500b1c0c7a32573b5e931eb40705ede233c1278405785fa7702f24","ab0a9763ed69fac66bb42fcea82a2399761bdefecce5cee45a9124cd6b4f7093","c4de62ec9ca6448ecc635f07e4e466a6fc9a59efbd749af93ca2d9d0faed7093","ea8334a19d4d5265d60668438642c044c497d44e792b78c8d13a75872ed45b3e","7463f240aa9a63fa72b3abde87ffe9ff85b71373bd3e0054b5722c9891244451","2b38a5cb42198846185b42aec9f02b1ad41493a629e24f937b16e829ba1862f2","79e7eb72b4d9ca2d268460d35fa7bfe01db96e93659752bd5fc5cbf5c5be8294","9e972232b831687462c01ab9d949a53f3b2799a0b9f7825078240d22319f038a","2da2b946df1f0ac928ed168d49420401775ce8175bca15addad490544bcde612","21b384c04d995ffcec7956c598dffba1fab62d0f25ae39c14858193846a1b1b7","0581e9043dc5f9f7064996c11d5c26f627f14fbd93a523e052827bfe8e248054",{"version":"9a442f39099d4a075ac6a45236d4140bd969a5fd1ed4fab1abf84b9796a93a59","signature":"ed7ddf06f8a2868a97462ca8c17bb09aa640dad83568c5b19c61491481d836d4"},{"version":"2f2d92894020e0c09fab50821c2b87e3fb21d2af5306e3b429a62a3a7d702e39","signature":"b881b9e671fce5aabe3969d5b5015aa9afead7306f0b741eb9c5b000300fce50"},{"version":"343d44915ec9dba869de528d9eed970bd073f706e193c8feb13ebff436098916","signature":"08102df8c0dcac83508b69a6131d75d990f34969bb2e667ac5cb1318ec1061fd"},{"version":"1655276baf4c025d7d07475601ddd1488a413423ab7db193ef62bdeec1ca663c","signature":"b9770afc42dfe625f3e75f10afbb4b9deafd2818f2de61f6dcb861a53b61edef"},"e142fda89ed689ea53d6f2c93693898464c7d29a0ae71c6dc8cdfe5a1d76c775","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107",{"version":"b0007d2025c46c15c1b67f107aea10349b79e436bcf5e6690554df3f7232de0f","affectsGlobalScope":true},"db3ec8993b7596a4ef47f309c7b25ee2505b519c13050424d9c34701e5973315",{"version":"5a38909344f43b30b74c90623f83f4412344e992f2ff158e3b6d3725af18dc02","affectsGlobalScope":true},"af49b066a76ce26673fe49d1885cc6b44153f1071ed2d952f2a90fccba1095c9","f22fd1dc2df53eaf5ce0ff9e0a3326fc66f880d6a652210d50563ae72625455f",{"version":"3ddbdb519e87a7827c4f0c4007013f3628ca0ebb9e2b018cf31e5b2f61c593f1","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"6d498d4fd8036ea02a4edcae10375854a0eb1df0496cf0b9d692577d3c0fd603","affectsGlobalScope":true},"24642567d3729bcc545bacb65ee7c0db423400c7f1ef757cab25d05650064f98","fd09b892597ab93e7f79745ce725a3aaf6dd005e8db20f0c63a5d10984cba328","a3be878ff1e1964ab2dc8e0a3b67087cf838731c7f3d8f603337e7b712fdd558","5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","9be74296ee565af0c12d7071541fdd23260f53c3da7731fb6361f61150a791f6",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"f501a53b94ba382d9ba396a5c486969a3abc68309828fa67f916035f5d37fe2b","affectsGlobalScope":true},"aa658b5d765f630c312ac9202d110bbaf2b82d180376457f0a9d57b42629714a","312ac7cbd070107766a9886fd27f9faad997ef57d93fdfb4095df2c618ac8162","bcfcff784a59db3f323c25cea5ae99a903ca9292c060f2c7e470ea73aaf71b44","672ad3045f329e94002256f8ed460cfd06173a50c92cde41edaadfacffd16808","64da4965d1e0559e134d9c1621ae400279a216f87ed00c4cce4f2c7c78021712","ddbf3aac94f85dbb8e4d0360782e60020da75a0becfc0d3c69e437c645feb30f",{"version":"0166fce1204d520fdfd6b5febb3cda3deee438bcbf8ce9ffeb2b1bcde7155346","affectsGlobalScope":true},"d8b13eab85b532285031b06a971fa051bf0175d8fff68065a24a6da9c1c986cf","50c382ba1827988c59aa9cc9d046e386d55d70f762e9e352e95ee8cb7337cdb8","2178ab4b68402d1de2dda199d3e4a55f7200e3334f5a9727fbd9d16975cdf75f",{"version":"21d7e87f271e72d02f8d167edc902f90b04525edc7918f00f01dd0bd00599f7e","affectsGlobalScope":true},{"version":"6dcdc8592e04b95cee9fce2c82de3613c170e47573c5d2f464787d574a68e5eb","affectsGlobalScope":true},"a215554477f7629e3dcbc8cde104bec036b78673650272f5ffdc5a2cee399a0a","c3497fc242aabfedcd430b5932412f94f157b5906568e737f6a18cc77b36a954","cdc1de3b672f9ef03ff15c443aa1b631edca35b6ae6970a7da6400647ff74d95","139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","bf01fdd3b93cf633b3f7420718457af19c57ab8cbfea49268df60bae2e84d627","15c5e91b5f08be34a78e3d976179bf5b7a9cc28dc0ef1ffebffeb3c7812a2dca","65b39cc6b610a4a4aecc321f6efb436f10c0509d686124795b4c36a5e915b89e","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","d3edb86744e2c19f2c1503849ac7594a5e06024f2451bacae032390f2e20314a",{"version":"ea70400f0fe63efb412817f818a4f67afeb9f7edf4c6a320064b8dabe05588d4","affectsGlobalScope":true},{"version":"8a3e61347b8f80aa5af532094498bceb0c0b257b25a6aa8ab4880fd6ed57c95a","affectsGlobalScope":true},"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","950f6810f7c80e0cffefcf1bcc6ade3485c94394720e334c3c2be3c16b6922fb","5475df7cfc493a08483c9d7aa61cc04791aecba9d0a2efc213f23c4006d4d3cd","000720870b275764c65e9f28ac97cc9e4d9e4a36942d4750ca8603e416e9c57c",{"version":"54412c70bacb9ed547ed6caae8836f712a83ccf58d94466f3387447ec4e82dc3","affectsGlobalScope":true},{"version":"e74e7b0baa7a24f073080091427d36a75836d584b9393e6ac2b1daf1647fe65a","affectsGlobalScope":true},"4c48e931a72f6971b5add7fdb1136be1d617f124594e94595f7114af749395e0","478eb5c32250678a906d91e0529c70243fc4d75477a08f3da408e2615396f558","e686a88c9ee004c8ba12ffc9d674ca3192a4c50ed0ca6bd5b2825c289e2b2bfe",{"version":"98d547613610452ac9323fb9ec4eafc89acab77644d6e23105b3c94913f712b3","affectsGlobalScope":true},"4423fb3d6abe6eefb8d7f79eb2df9510824a216ec1c6feee46718c9b18e6d89f",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","26a770cec4bd2e7dbba95c6e536390fffe83c6268b78974a93727903b515c4e7","dd5115b329c19c4385af13eda13e3ab03355e711c3f313173fd54ed7d08cfd39","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","e00243d23c495ca2170c9b9e20b5c92331239100b51efdc2b4401cdad859bbef","971f12a5fc236419ced0b7b9f23a53c1758233713f565635bbf4b85e2b23f55a","9d670bb3be18ea59cea824e3bb07d576b55c9542f5bc24aacc2a3c1ebd889de6","695b586df2d8c78b78cdd7cc6943594f3f4bc52948f13b31cdedfa3ce8d97c31","0771a93ef5e3b2a29f929c20f7ad232829341a671c9d1e96e93ef3fc42ef7bc2","11bd091ab63b92aa7931cb17d21b1d461a931635688299eac29c94e4a220611a","9bc7900e5ecd93822053b8b42ac890c871eee76c7b6cbd2c2561dc1db95f7d0a","2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","5f02abbb1b17e3d1e68c5eea14adf4705696e6255e2982b010c0dc2a5417b606","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","ecbdbf41320ad859bdaab24e375a40e866ead7fe1c82c26cfe3422229c229952","65c7b7d187996753bc1123675ea0818afb8c786dc0e17383a2d142a6e7c99583","de72f256a62891721d0ffca233d8800ec53a796130ee1a96727f8bb8569f1a7f","410eb7f9ff52d25dfcd6cebd9a00fbe77f9179d519b12f64c335a15ef6a232c0","a851221adc509c2cce65d904f52518b55ccc38e8a1b6977ff5505dd804ebf0e7","5cf7a28f01bfd9464436382d584d440648ef2df7fa778dd7422541fb0af2300c","0704d789bfa16d3aed8b1cc1f0f10f1cafda3c77f72fb87a9ab66165edba1d17","7ca6400edc5361c8c97bf007c04c4b8751ddb8e7a085beffd0c428dc7a15e04e","7ec5674af4fb8f51cba36bbc77959f6cb1220940f9f5e615d149620bc812911f","3e644067dba779ff6caed5837b88788477ce77b9b7c089c2ee7ff17015231cb0","20a63b8723ceb954f98f5cfa3685cb97f7268d5ae15830b1db3248f634abca02","742d5b7fc57653c96a463163663a609642c6774f73e46b3dbe06d65b003d1caa","b2707e352dc69baa515ebc50c76cfd812e24a07ab9d86f910d0f6369746a9219","9b411a8ddac42eafee6817f86f2622e0b0dd6c80fbef35edcc5fdb665cfee07d","695aaf684740c53c3d2c2b2395b3cfb06696365c47725ce6eff60440d19e56bc","fccae86f32071207ce14084b7233408093e9776c81a4fa6d64702dd36737c510","925e9933d74d647f6fa543f7cf687483e1f954505510c15efb5984d7ebcede06","cd4b43a0ebf146d68a0b09d441531f96298aa90eca3aa29d6ff177b18221d79b","ee9ce14dad4645d103905057e150ebc744efab72b72eab1c27a2d0562c43eb0c","198fd9a1c4c5a3063bf1983bdae3b1ee132c481f4fc30aca4c99d5f69c950b9c","84c0712971dc51a43fd3f8728497ac87c4c13ba85ea32d060cb7f7dbe94df1bd","0c2d16972876ecc73410e8c1ca14b2a6219b53d6c88db949ab22c02b523b993a","1e2882edbe331cafb9ba09da99f7cbd5788fe77a4e846c629ba67fe9409787d3","c0d13ab11ea1a74dad5603e759011727e4643c43f2775dac0272d149a80e97c3","49c3a54c100328504aa2fcd826e3b6c4224a4ed6d54b461e5ec3436ed370a676",{"version":"089ded56bd391f6f5adbdc6bea740583f4213ebdbe156b17bcd8e6862f5b7dfc","signature":"5365c2b4e187c058c95e48894c51d0d64ad37946dbfc2cdb7e02cdd15175f6ed"},"369ba5259e66ca8c7d35e3234f7a2a0863a770fdb8266505747c65cf346a0804","86ecd6bc8313be39460480af6e8eed773e411781a606b1ac4354d4d16a32ed69","d2e64a6f25013b099e83bfadb2c388d7bef3e8f3fdb25528225bbc841e7e7e3a","f147b6710441cf3ec3234adf63b0593ce5e8c9b692959d21d3babc8454bcf743","e96d5373a66c2cfbbc7e6642cf274055aa2c7ff6bd37be7480c66faf9804db6d","dfda5e1e9f066a9e33c802a1c4d0be8fcc0277893e74b85170554f6edd502cac","14695440f2506778155bef183cd5d75d0d87104cb03855bfa59d015efdd85ede","7c553fc9e34773ddbaabe0fa1367d4b109101d0868a008f11042bee24b5a925d","9962ce696fbdce2421d883ca4b062a54f982496625437ae4d3633376c5ad4a80","22cf1eaa4ed331dfc145048a77cbcd837dbd035f8490020a749aee4c2cf43cab","4c17183a07a63bea2653fbfc0a942b027160ddbee823024789a415f9589de327","c3d14a5afa2061f29ed1463b0e1eb6bba028c0d64b9509cb10e1ccdf908dfa58","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea",{"version":"f5ed3fcde4f8e724ad213e1deddd8a52adaeca132025b613f32bfe7ace31f42b","affectsGlobalScope":true},"a660aa95476042d3fdcc1343cf6bb8fdf24772d31712b1db321c5a4dcc325434","282f98006ed7fa9bb2cd9bdbe2524595cfc4bcd58a0bb3232e4519f2138df811","6222e987b58abfe92597e1273ad7233626285bc2d78409d4a7b113d81a83496b","cbe726263ae9a7bf32352380f7e8ab66ee25b3457137e316929269c19e18a2be","8b96046bf5fb0a815cba6b0880d9f97b7f3a93cf187e8dcfe8e2792e97f38f87",{"version":"bacf2c84cf448b2cd02c717ad46c3d7fd530e0c91282888c923ad64810a4d511","affectsGlobalScope":true},"858d0d831826c6eb563df02f7db71c90e26deadd0938652096bea3cc14899700","8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","bb37a0638c082c58b9c2743213e11f1bf21ee127c4e9d491d9a6ea5ff51820c6","e61df3640a38d535fd4bc9f4a53aef17c296b58dc4b6394fd576b808dd2fe5e6","80781460eca408fe8d2937d9fdbbb780d6aac35f549621e6200c9bee1da5b8fe","352706de457583c883af57408149007f73ad2f42f5951b2b0de9603af2d4fb9e","7ec359bbc29b69d4063fe7dad0baaf35f1856f914db16b3f4f6e3e1bca4099fa","b9261ac3e9944d3d72c5ee4cf888ad35d9743a5563405c6963c4e43ee3708ca4","c84fd54e8400def0d1ef1569cafd02e9f39a622df9fa69b57ccc82128856b916","c7a38c1ef8d6ae4bf252be67bd9a8b012b2cdea65bd6225a3d1a726c4f0d52b6","2ed6489ef46eb61442d067c08e87e3db501c0bfb2837eee4041a27bf3e792bb0","54916fb53d13d06476a63992ca6f0e217b7479aa81373f00e628dd923bf88ccf","da710103337668d6b63f2fd74329c1a5d29e92b51b345b568819fbe65499af30","ee2bc8d5a6885d88ebb59fc1a80167a8f96f82cedce2fb6367fe77ec8a87d3a9","774b783046ba3d473948132d28a69f52a295b2f378f2939304118ba571b1355e","bad9c34f6923020692d8bc9ac12148e95c6bf740c5c3e5b2e84ebcc95a8f12de","14ba97f0907144771331e1349fdccb5a13526eba0647e6b447e572376d811b6f","fd630a97a81e535d943456555ce5a8007572714dd5e1bb08a0d1e425ac25b633","d1a4bc0f6c2fa03bcdbfcd9ea3ab9af78bcd29089d1344761d0a5b868dcf9ea6","26e629be9bbd94ea1d465af83ce5a3306890520695f07be6eb016f8d734d02be","82e687ebd99518bc63ea04b0c3810fb6e50aa6942decd0ca6f7a56d9b9a212a6","7f698624bbbb060ece7c0e51b7236520ebada74b747d7523c7df376453ed6fea","8f07f2b6514744ac96e51d7cb8518c0f4de319471237ea10cf688b8d0e9d0225","9ae0ca65717af0d3b554a26fd333ad9c78ad3910ad4b22140ff02acb63076927","e01ea380015ed698c3c0e2ccd0db72f3fc3ef1abc4519f122aa1c1a8d419a505","9e2534be8a9338e750d24acc6076680d49b1643ae993c74510776a92af0c1604","09033524cc0d7429e7bbbcd04bb37614bfc4a5a060c742c6c2b2980794a98090","e3225dc0bec183183509d290f641786245e6652bc3dce755f7ef404060693c35","515a66150b58eeef4bf3a71be4a61b75ae31f694b520162f78ec93b59117413b","e6233e1c976265e85aa8ad76c3881febe6264cb06ae3136f0257e1eab4a6cc5a","3a07ebaeb3b96c1e7a5fc0588364a8e58c74efd63b62f64b34c33b01907dc320","b1e92c7f8608744a7e40c636f7096e98d0dafe2c36aa6ba31b5f5a6c22794e37","95d3e2ebf53761edfec9c112a515b29bc1439adb6562c4b8d0d93eb93b2ff824","7f8ea3140f0c2d102ff2d92ce2ce7fb33d1d209a851032332658a0dd081b0b8e","a0e40a10412a69609cbd9b157169c3011b080e66ef46a6370cd1d069a53eb52b","9a690435fa5e89ac3a0105d793c1ae21e1751ac2a912847de925107aabb9c9c0","9f3e99401b5bfdcb2ff75be940e02402b5c23cf8b4f8d0ba552c7d2d97c36568","0a8e4560349bb64da02e19e14b229d2daf82e5a5da5c4d33368d70d6876500bd","69bf2422313487956e4dacf049f30cb91b34968912058d244cb19e4baa24da97","56c7d0f2c2e2d0c44f047db69846d41936a8706c4163bb2641505ff9c5656881","616ed39d373b24d4312cb915716d0e453081ba440f14da06f67394256905d06d","4a83529a3726808a452930529de273f49bcf6e47e5bda440dd920084c405f6ba","aa348c4fb2f8ac77df855f07fb66281c9f6e71746fdff3b13c7932aa7642b788",{"version":"1da04ba8013352010b04acc9a8aef6d768efb905cf388056dc8c692bb2fb3fc7","signature":"4b96dd19fd2949d28ce80e913412b0026dc421e5bf6c31d87c7b5eb11b5753b4"},{"version":"b5ce24da7d50c139cb8dade33b800ac0eca7dad568b10a31702b63205f6d9e0b","signature":"cd011ee43fbd00505436ccc466c3e804d119f765d65296d071d2347faa0d3818"},"ac1a02dd215904c8767dc11884a97436f364ad277772d2769b9f74677574812a",{"version":"5df5e5f15b9e646a9816c7170ab9263b01423371760b4ad7caeda77823d8a86a","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"5ab630d466ac55baa6d32820378098404fc18ba9da6f7bc5df30c5dbb1cffae8","affectsGlobalScope":true}],"root":[[192,195],335,399,400,402],"options":{"allowJs":true,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":99,"outDir":"./","skipLibCheck":true,"strict":true,"target":99},"fileIdsList":[[304],[296],[298,302,322],[288,291,292,293,295,297],[300,302],[299,300,301],[299,302],[304,305,306,307,308],[304,306],[292],[294],[404,407],[196],[237],[238,243,272],[239,244,250,251,258,269,280],[239,240,250,258],[241,281],[242,243,251,259],[243,269,277],[244,246,250,258],[237,245],[246,247],[250],[248,250],[237,250],[250,251,252,269,280],[250,251,252,265,269,272],[235,238,285],[246,250,253,258,269,280],[250,251,253,254,258,269,277,280],[253,255,269,277,280],[196,197,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287],[250,256],[257,280,285],[246,250,258,269],[259],[260],[237,261],[196,197,237,238,239,240,241,242,243,244,245,246,247,248,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286],[263],[264],[250,265,266],[265,267,281,283],[238,250,269,270,271,272],[238,269,271],[269,270],[272],[273],[196,269],[250,275,276],[275,276],[243,258,269,277],[278],[258,279],[238,253,264,280],[243,281],[269,282],[257,283],[284],[238,243,250,252,261,269,280,283,285],[269,286],[290],[289],[78,145,152],[78,104,105],[106,107,108,109,110,111,112,113,114,115,116],[78,104],[104,106,107,108,109,110,111,112,113,114,115,116,117],[118,123,124,145,147,149,150,153],[151],[78,148],[78,123,147],[78,124,145,147,150],[78,148,149],[78,86],[78,125,130,143,145],[78,123,124,125,130,143,145],[78,123,125,130,143,145],[125,126,127,128,129,131,132,134,135,136,137,138,139,140,141,142,143,144,146],[126,127,128,129,131,132,133,134,135,136,137,138,139,140,141,142,144,146],[78,118,123,124,125,126,127,128,129,143,145],[78,123,133,144,147],[78,119],[120,121,147],[120,121,122],[119],[78,118,124,147],[73],[74,75,76,77],[73,75],[74,77],[82,88],[73,91],[73,92],[81,82,83,87,92,93,94,95,96,97,98,99],[73,81],[73,78,81],[73,81,82],[78],[73,79,81,89,90,92],[81,86],[73,78,79],[78,79,80],[82],[101,168],[169,170,171,172,173],[101],[174,175,176,177],[101,159,168],[179,180,181,182,183,184,185],[168],[159],[101,157,168,178,186,188],[103,156,159,161],[164,165],[159,160],[162,163],[160,162,163],[102,103,155,156,158,159,160,161,162,166,167],[156,158,159,161,162],[101,103,155],[160],[101,102,155,157,158,160,162],[101,103,159,160,162],[154],[101,155,156],[78,100],[187],[84,85],[341,342,344,345,346],[341],[341,342,344],[341,342],[380],[338,380],[338,380,381],[338,343],[336],[336,337,338,340],[338],[311,312,313,314,315,316,318],[311,312,313],[311],[314],[269,288,312],[314,317],[312,313],[403,406],[404],[293,405],[371],[369,371],[360,368,369,370,372],[358],[361,366,371,374],[357,374],[361,362,365,366,367,374],[361,362,363,365,366,374],[358,359,360,361,362,366,367,368,370,371,372,374],[374],[356,358,359,360,361,362,363,365,366,367,368,369,370,371,372,373],[356,374],[361,363,364,366,367,374],[365,374],[366,367,371,374],[359,369],[297],[349,378],[348,349],[356],[339],[324],[73,298,322],[310,320,321,322,323,325,328,329,333],[326,327],[73,319,321,322],[321,322],[73,319,320,322],[303,321,322],[298,322],[73,298,303,309,310,320,321,322],[330,331,332],[319],[189],[189,190],[207,211,280],[207,269,280],[202],[204,207,277,280],[258,277],[288],[202,288],[204,207,258,280],[199,200,203,206,238,250,269,280],[207,214],[199,205],[207,228,229],[203,207,238,272,280,288],[238,288],[228,238,288],[201,202,288],[207],[201,202,203,204,205,206,207,208,209,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,229,230,231,232,233,234],[207,222],[207,214,215],[205,207,215,216],[206],[199,202,207],[207,211,215,216],[211],[205,207,210,280],[199,204,207,214],[238,269],[202,207,228,238,285,288],[385,386],[385],[379,385,386,396],[250,251,253,254,255,258,269,277,280,286,288,349,350,351,352,353,354,355,375,376,377,378],[351,352,353,354],[351,352,353],[351],[352],[349],[397],[347,393,394],[338,347,382,383],[251,269,338,341,347,379,382,384,387,388,389,390,391,392,395,396],[251,269,338,341,347,379,382,383,384,387,388,389,390,391,392,393,394,395,396],[191],[194],[334],[193],[193,195,401],[398]],"referencedMap":[[306,1],[297,2],[303,3],[298,4],[301,5],[302,6],[300,7],[309,8],[305,1],[307,9],[308,1],[294,10],[295,11],[408,12],[196,13],[197,13],[237,14],[238,15],[239,16],[240,17],[241,18],[242,19],[243,20],[244,21],[245,22],[246,23],[247,23],[249,24],[248,25],[250,26],[251,27],[252,28],[236,29],[253,30],[254,31],[255,32],[288,33],[256,34],[257,35],[258,36],[259,37],[260,38],[261,39],[262,40],[263,41],[264,42],[265,43],[266,43],[267,44],[269,45],[271,46],[270,47],[272,48],[273,49],[274,50],[275,51],[276,52],[277,53],[278,54],[279,55],[280,56],[281,57],[282,58],[283,59],[284,60],[285,61],[286,62],[291,63],[290,64],[153,65],[106,66],[107,66],[117,67],[105,68],[108,66],[109,66],[110,66],[118,69],[111,66],[112,66],[113,66],[114,66],[115,66],[116,66],[154,70],[152,71],[149,72],[124,73],[151,74],[150,75],[148,76],[146,77],[131,77],[144,77],[132,77],[133,77],[134,77],[135,77],[136,77],[126,78],[137,77],[127,79],[147,80],[138,77],[128,77],[143,81],[130,82],[139,77],[140,77],[129,77],[141,77],[142,77],[145,83],[120,84],[122,85],[123,86],[121,87],[119,88],[74,89],[78,90],[76,91],[77,92],[89,93],[94,89],[92,94],[93,95],[96,89],[100,96],[97,97],[82,98],[83,99],[90,100],[91,101],[87,102],[80,103],[81,104],[79,94],[99,105],[169,106],[174,107],[171,108],[172,106],[173,106],[175,108],[178,109],[176,108],[177,108],[180,110],[181,106],[186,111],[182,112],[183,113],[189,114],[102,108],[162,115],[166,116],[163,117],[165,118],[164,119],[168,120],[160,121],[156,122],[103,100],[161,123],[159,124],[167,125],[155,126],[158,127],[101,128],[188,129],[84,100],[86,130],[347,131],[342,132],[345,133],[393,134],[383,135],[381,136],[382,137],[390,137],[344,138],[346,138],[337,139],[341,140],[392,139],[343,141],[319,142],[314,143],[312,144],[316,145],[313,146],[318,147],[317,148],[407,149],[405,150],[406,151],[372,152],[370,153],[371,154],[359,155],[360,153],[367,156],[358,157],[363,158],[364,159],[369,160],[375,161],[374,162],[357,163],[365,164],[366,165],[361,166],[368,152],[362,167],[404,168],[350,169],[349,170],[356,171],[340,172],[325,173],[324,174],[334,175],[328,176],[326,177],[327,178],[321,179],[323,180],[329,181],[322,182],[333,183],[332,184],[190,185],[191,186],[88,89],[214,187],[224,188],[213,187],[234,189],[205,190],[204,191],[233,192],[227,193],[232,194],[207,195],[221,196],[206,197],[230,198],[202,199],[201,200],[231,201],[203,202],[208,203],[212,203],[235,204],[225,205],[216,206],[217,207],[219,208],[215,209],[218,210],[228,192],[210,211],[211,212],[220,213],[200,214],[223,205],[222,203],[229,215],[389,216],[386,217],[387,216],[391,218],[379,219],[376,220],[354,221],[352,222],[353,223],[378,224],[398,225],[395,226],[384,227],[396,228],[397,229],[192,230],[195,231],[335,232],[194,233],[402,234],[399,235]],"latestChangedDtsFile":"./tests/universalSdk.test.d.ts"},"version":"5.5.4"}
@@ -0,0 +1,3 @@
1
+ declare const _default: import("vite").UserConfig;
2
+ export default _default;
3
+ //# sourceMappingURL=vitest.config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vitest.config.d.ts","sourceRoot":"","sources":["../vitest.config.ts"],"names":[],"mappings":";AAEA,wBAKG"}
@@ -0,0 +1,7 @@
1
+ import { defineConfig } from 'vitest/config';
2
+ export default defineConfig({
3
+ test: {
4
+ globals: true,
5
+ exclude: ['**/lib/**', '**/node_modules/**']
6
+ }
7
+ });
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@forklaunch/universal-sdk",
3
+ "version": "0.1.0",
4
+ "description": "Cross runtime fetch library for forklaunch router sdks",
5
+ "files": [
6
+ "lib/**"
7
+ ],
8
+ "types": "lib/index.d.ts",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/forklaunch/forklaunch-js.git"
12
+ },
13
+ "keywords": [
14
+ "fetch",
15
+ "http",
16
+ "express",
17
+ "hyper-express"
18
+ ],
19
+ "author": "Rohin Bhargava",
20
+ "license": "MIT",
21
+ "bugs": {
22
+ "url": "https://github.com/forklaunch/forklaunch-js/issues"
23
+ },
24
+ "homepage": "https://github.com/forklaunch/forklaunch-js#readme",
25
+ "type": "module",
26
+ "devDependencies": {
27
+ "fetch-mock": "^11.1.1",
28
+ "jest": "^29.7.0",
29
+ "ts-jest": "^29.2.4"
30
+ },
31
+ "scripts": {
32
+ "test": "vitest --passWithNoTests",
33
+ "build": "tsc",
34
+ "clean": "rm -rf dist pnpm.lock.yaml node_modules",
35
+ "docs": "typedoc --out docs *",
36
+ "lint": "eslint . -c eslint.config.mjs",
37
+ "lint:fix": "eslint . -c eslint.config.mjs --fix",
38
+ "format": "prettier --ignore-path=.prettierignore --config .prettierrc '**/*.ts' --write"
39
+ }
40
+ }