@forklaunch/universal-sdk 0.1.2 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3 @@
1
+ declare const universalSdk: <TypedController>(host: string) => TypedController;
2
+
3
+ export { universalSdk };
package/lib/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
- export declare const universalSdk: <TypedController>(host: string) => TypedController;
2
- //# sourceMappingURL=index.d.ts.map
1
+ declare const universalSdk: <TypedController>(host: string) => TypedController;
2
+
3
+ export { universalSdk };
package/lib/index.js CHANGED
@@ -1,20 +1,217 @@
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);
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // index.ts
21
+ var index_exports = {};
22
+ __export(index_exports, {
23
+ universalSdk: () => universalSdk
24
+ });
25
+ module.exports = __toCommonJS(index_exports);
26
+
27
+ // src/utils/regex.ts
28
+ function generateStringFromRegex(regex) {
29
+ let regexStr = typeof regex === "object" ? regex.source : regex;
30
+ if (regexStr.startsWith("/")) regexStr = regexStr.slice(1);
31
+ if (regexStr.endsWith("/g")) regexStr = regexStr.slice(0, -2);
32
+ if (regexStr.endsWith("/")) regexStr = regexStr.slice(0, -1);
33
+ let result = "";
34
+ let i = 0;
35
+ while (i < regexStr.length) {
36
+ const char = regexStr[i];
37
+ switch (char) {
38
+ case "\\": {
39
+ const nextChar = regexStr[i + 1];
40
+ switch (nextChar) {
41
+ case "b":
42
+ if (result.length > 0 && /\w/.test(result[result.length - 1])) {
43
+ result += " ";
15
44
  }
16
- throw new Error(`Method ${String(prop)} not found`);
45
+ break;
46
+ case "d":
47
+ result += "0";
48
+ break;
49
+ case "w":
50
+ result += "a";
51
+ break;
52
+ case "s":
53
+ result += " ";
54
+ break;
55
+ default:
56
+ result += nextChar;
57
+ }
58
+ i += 2;
59
+ break;
60
+ }
61
+ case ".":
62
+ result += "a";
63
+ i++;
64
+ break;
65
+ case "[": {
66
+ const endIdx = regexStr.indexOf("]", i);
67
+ if (endIdx === -1) {
68
+ throw new Error("Unmatched [");
69
+ }
70
+ const charClass = regexStr.slice(i + 1, endIdx);
71
+ result += charClass[0];
72
+ i = endIdx + 1;
73
+ break;
74
+ }
75
+ case "(": {
76
+ const endGroupIdx = regexStr.indexOf(")", i);
77
+ if (endGroupIdx === -1) {
78
+ throw new Error("Unmatched (");
17
79
  }
80
+ const groupContent = regexStr.slice(i + 1, endGroupIdx);
81
+ result += generateStringFromRegex(groupContent);
82
+ i = endGroupIdx + 1;
83
+ break;
84
+ }
85
+ case "{": {
86
+ const endQuantIdx = regexStr.indexOf("}", i);
87
+ if (endQuantIdx === -1) {
88
+ throw new Error("Unmatched {");
89
+ }
90
+ const quantifier = regexStr.slice(i + 1, endQuantIdx);
91
+ const min = parseInt(quantifier.split(",")[0], 10) || 1;
92
+ const lastChar = result[result.length - 1];
93
+ result += lastChar.repeat(min - 1);
94
+ i = endQuantIdx + 1;
95
+ break;
96
+ }
97
+ case "*":
98
+ case "+":
99
+ case "?": {
100
+ const prevChar = result[result.length - 1];
101
+ if (char === "*") {
102
+ result += prevChar;
103
+ } else if (char === "+") {
104
+ result += prevChar;
105
+ }
106
+ i++;
107
+ break;
108
+ }
109
+ default:
110
+ result += char;
111
+ i++;
112
+ break;
113
+ }
114
+ }
115
+ return result;
116
+ }
117
+
118
+ // src/utils/resolvePath.ts
119
+ function getSdkPath(path) {
120
+ let sdkPath = path;
121
+ if (Array.isArray(path)) {
122
+ sdkPath = path.pop() || path[0];
123
+ }
124
+ if (!sdkPath) {
125
+ throw new Error("Path is not defined");
126
+ }
127
+ if (sdkPath instanceof RegExp) {
128
+ sdkPath = generateStringFromRegex(sdkPath);
129
+ }
130
+ return sdkPath;
131
+ }
132
+
133
+ // src/universalSdk.ts
134
+ var UniversalSdk = class {
135
+ /**
136
+ * Creates an instance of UniversalSdk.
137
+ *
138
+ * @param {string} host - The host URL for the SDK.
139
+ */
140
+ constructor(host) {
141
+ this.host = host;
142
+ }
143
+ /**
144
+ * Executes an HTTP request.
145
+ *
146
+ * @param {string} route - The route path for the request.
147
+ * @param {'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'} method - The HTTP method.
148
+ * @param {RequestType} [request] - The request object.
149
+ * @returns {Promise<ResponseType>} - The response object.
150
+ */
151
+ async execute(route, method, request) {
152
+ const { params, body, query, headers } = request || {};
153
+ let url = getSdkPath(this.host + route);
154
+ if (params) {
155
+ for (const key in params) {
156
+ url = url.replace(`:${key}`, encodeURIComponent(params[key]));
157
+ }
158
+ }
159
+ if (query) {
160
+ const queryString = new URLSearchParams(
161
+ query
162
+ ).toString();
163
+ url += queryString ? `?${queryString}` : "";
164
+ }
165
+ const response = await fetch(encodeURI(url), {
166
+ method,
167
+ headers: headers ? { ...headers, "Content-Type": "application/json" } : void 0,
168
+ body: body ? JSON.stringify(body) : void 0
18
169
  });
19
- return proxyInternal;
170
+ const contentType = response.headers.get("content-type");
171
+ const responseBody = contentType && contentType.includes("application/json") ? await response.json() : await response.text();
172
+ return {
173
+ code: response.status,
174
+ content: responseBody,
175
+ headers: response.headers
176
+ };
177
+ }
178
+ async pathParamRequest(route, method, request) {
179
+ return this.execute(route, method, request);
180
+ }
181
+ async bodyRequest(route, method, request) {
182
+ return this.execute(route, method, request);
183
+ }
184
+ async get(route, request) {
185
+ return this.pathParamRequest(route, "GET", request);
186
+ }
187
+ async post(route, request) {
188
+ return this.bodyRequest(route, "POST", request);
189
+ }
190
+ async put(route, request) {
191
+ return this.bodyRequest(route, "PUT", request);
192
+ }
193
+ async patch(route, request) {
194
+ return this.bodyRequest(route, "PATCH", request);
195
+ }
196
+ async delete(route, request) {
197
+ return this.pathParamRequest(route, "DELETE", request);
198
+ }
199
+ };
200
+
201
+ // index.ts
202
+ var universalSdk = (host) => {
203
+ const sdkInternal = new UniversalSdk(host);
204
+ const proxyInternal = new Proxy(sdkInternal, {
205
+ get(target, prop) {
206
+ if (typeof prop === "string" && prop in target) {
207
+ return target[prop].bind(target);
208
+ }
209
+ throw new Error(`Method ${String(prop)} not found`);
210
+ }
211
+ });
212
+ return proxyInternal;
20
213
  };
214
+ // Annotate the CommonJS export names for ESM import in node:
215
+ 0 && (module.exports = {
216
+ universalSdk
217
+ });
package/lib/index.mjs ADDED
@@ -0,0 +1,190 @@
1
+ // src/utils/regex.ts
2
+ function generateStringFromRegex(regex) {
3
+ let regexStr = typeof regex === "object" ? regex.source : regex;
4
+ if (regexStr.startsWith("/")) regexStr = regexStr.slice(1);
5
+ if (regexStr.endsWith("/g")) regexStr = regexStr.slice(0, -2);
6
+ if (regexStr.endsWith("/")) regexStr = regexStr.slice(0, -1);
7
+ let result = "";
8
+ let i = 0;
9
+ while (i < regexStr.length) {
10
+ const char = regexStr[i];
11
+ switch (char) {
12
+ case "\\": {
13
+ const nextChar = regexStr[i + 1];
14
+ switch (nextChar) {
15
+ case "b":
16
+ if (result.length > 0 && /\w/.test(result[result.length - 1])) {
17
+ result += " ";
18
+ }
19
+ break;
20
+ case "d":
21
+ result += "0";
22
+ break;
23
+ case "w":
24
+ result += "a";
25
+ break;
26
+ case "s":
27
+ result += " ";
28
+ break;
29
+ default:
30
+ result += nextChar;
31
+ }
32
+ i += 2;
33
+ break;
34
+ }
35
+ case ".":
36
+ result += "a";
37
+ i++;
38
+ break;
39
+ case "[": {
40
+ const endIdx = regexStr.indexOf("]", i);
41
+ if (endIdx === -1) {
42
+ throw new Error("Unmatched [");
43
+ }
44
+ const charClass = regexStr.slice(i + 1, endIdx);
45
+ result += charClass[0];
46
+ i = endIdx + 1;
47
+ break;
48
+ }
49
+ case "(": {
50
+ const endGroupIdx = regexStr.indexOf(")", i);
51
+ if (endGroupIdx === -1) {
52
+ throw new Error("Unmatched (");
53
+ }
54
+ const groupContent = regexStr.slice(i + 1, endGroupIdx);
55
+ result += generateStringFromRegex(groupContent);
56
+ i = endGroupIdx + 1;
57
+ break;
58
+ }
59
+ case "{": {
60
+ const endQuantIdx = regexStr.indexOf("}", i);
61
+ if (endQuantIdx === -1) {
62
+ throw new Error("Unmatched {");
63
+ }
64
+ const quantifier = regexStr.slice(i + 1, endQuantIdx);
65
+ const min = parseInt(quantifier.split(",")[0], 10) || 1;
66
+ const lastChar = result[result.length - 1];
67
+ result += lastChar.repeat(min - 1);
68
+ i = endQuantIdx + 1;
69
+ break;
70
+ }
71
+ case "*":
72
+ case "+":
73
+ case "?": {
74
+ const prevChar = result[result.length - 1];
75
+ if (char === "*") {
76
+ result += prevChar;
77
+ } else if (char === "+") {
78
+ result += prevChar;
79
+ }
80
+ i++;
81
+ break;
82
+ }
83
+ default:
84
+ result += char;
85
+ i++;
86
+ break;
87
+ }
88
+ }
89
+ return result;
90
+ }
91
+
92
+ // src/utils/resolvePath.ts
93
+ function getSdkPath(path) {
94
+ let sdkPath = path;
95
+ if (Array.isArray(path)) {
96
+ sdkPath = path.pop() || path[0];
97
+ }
98
+ if (!sdkPath) {
99
+ throw new Error("Path is not defined");
100
+ }
101
+ if (sdkPath instanceof RegExp) {
102
+ sdkPath = generateStringFromRegex(sdkPath);
103
+ }
104
+ return sdkPath;
105
+ }
106
+
107
+ // src/universalSdk.ts
108
+ var UniversalSdk = class {
109
+ /**
110
+ * Creates an instance of UniversalSdk.
111
+ *
112
+ * @param {string} host - The host URL for the SDK.
113
+ */
114
+ constructor(host) {
115
+ this.host = host;
116
+ }
117
+ /**
118
+ * Executes an HTTP request.
119
+ *
120
+ * @param {string} route - The route path for the request.
121
+ * @param {'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'} method - The HTTP method.
122
+ * @param {RequestType} [request] - The request object.
123
+ * @returns {Promise<ResponseType>} - The response object.
124
+ */
125
+ async execute(route, method, request) {
126
+ const { params, body, query, headers } = request || {};
127
+ let url = getSdkPath(this.host + route);
128
+ if (params) {
129
+ for (const key in params) {
130
+ url = url.replace(`:${key}`, encodeURIComponent(params[key]));
131
+ }
132
+ }
133
+ if (query) {
134
+ const queryString = new URLSearchParams(
135
+ query
136
+ ).toString();
137
+ url += queryString ? `?${queryString}` : "";
138
+ }
139
+ const response = await fetch(encodeURI(url), {
140
+ method,
141
+ headers: headers ? { ...headers, "Content-Type": "application/json" } : void 0,
142
+ body: body ? JSON.stringify(body) : void 0
143
+ });
144
+ const contentType = response.headers.get("content-type");
145
+ const responseBody = contentType && contentType.includes("application/json") ? await response.json() : await response.text();
146
+ return {
147
+ code: response.status,
148
+ content: responseBody,
149
+ headers: response.headers
150
+ };
151
+ }
152
+ async pathParamRequest(route, method, request) {
153
+ return this.execute(route, method, request);
154
+ }
155
+ async bodyRequest(route, method, request) {
156
+ return this.execute(route, method, request);
157
+ }
158
+ async get(route, request) {
159
+ return this.pathParamRequest(route, "GET", request);
160
+ }
161
+ async post(route, request) {
162
+ return this.bodyRequest(route, "POST", request);
163
+ }
164
+ async put(route, request) {
165
+ return this.bodyRequest(route, "PUT", request);
166
+ }
167
+ async patch(route, request) {
168
+ return this.bodyRequest(route, "PATCH", request);
169
+ }
170
+ async delete(route, request) {
171
+ return this.pathParamRequest(route, "DELETE", request);
172
+ }
173
+ };
174
+
175
+ // index.ts
176
+ var universalSdk = (host) => {
177
+ const sdkInternal = new UniversalSdk(host);
178
+ const proxyInternal = new Proxy(sdkInternal, {
179
+ get(target, prop) {
180
+ if (typeof prop === "string" && prop in target) {
181
+ return target[prop].bind(target);
182
+ }
183
+ throw new Error(`Method ${String(prop)} not found`);
184
+ }
185
+ });
186
+ return proxyInternal;
187
+ };
188
+ export {
189
+ universalSdk
190
+ };
package/package.json CHANGED
@@ -1,40 +1,49 @@
1
1
  {
2
2
  "name": "@forklaunch/universal-sdk",
3
- "version": "0.1.2",
3
+ "version": "0.2.1",
4
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
5
  "keywords": [
14
6
  "fetch",
15
7
  "http",
16
8
  "express",
17
9
  "hyper-express"
18
10
  ],
19
- "author": "Rohin Bhargava",
20
- "license": "MIT",
11
+ "homepage": "https://github.com/forklaunch/forklaunch-js#readme",
21
12
  "bugs": {
22
13
  "url": "https://github.com/forklaunch/forklaunch-js/issues"
23
14
  },
24
- "homepage": "https://github.com/forklaunch/forklaunch-js#readme",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/forklaunch/forklaunch-js.git"
18
+ },
19
+ "license": "MIT",
20
+ "author": "Rohin Bhargava",
21
+ "exports": {
22
+ ".": {
23
+ "types": "./lib/index.d.ts",
24
+ "import": "./lib/index.mjs",
25
+ "require": "./lib/index.js",
26
+ "default": "./lib/index.js"
27
+ }
28
+ },
29
+ "types": "lib/index.d.ts",
30
+ "files": [
31
+ "lib/**"
32
+ ],
25
33
  "devDependencies": {
26
- "fetch-mock": "^12.2.0",
34
+ "fetch-mock": "^12.5.2",
27
35
  "jest": "^29.7.0",
28
- "ts-jest": "^29.2.5"
36
+ "ts-jest": "^29.2.6",
37
+ "tsup": "^8.4.0"
29
38
  },
30
39
  "scripts": {
31
- "test": "vitest --passWithNoTests",
32
- "build": "tsc",
40
+ "build": "tsc --noEmit && tsup index.ts --format cjs,esm --no-splitting --dts --tsconfig tsconfig.json --out-dir lib --clean",
33
41
  "clean": "rm -rf lib pnpm.lock.yaml node_modules",
34
42
  "docs": "typedoc --out docs *",
43
+ "format": "prettier --ignore-path=.prettierignore --config .prettierrc '**/*.{ts,tsx,json}' --write",
35
44
  "lint": "eslint . -c eslint.config.mjs",
36
45
  "lint:fix": "eslint . -c eslint.config.mjs --fix",
37
- "format": "prettier --ignore-path=.prettierignore --config .prettierrc '**/*.ts' --write",
38
- "publish:package": "./publish-package.bash"
46
+ "publish:package": "./publish-package.bash",
47
+ "test": "vitest --passWithNoTests"
39
48
  }
40
49
  }
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,YAAY,GAAI,eAAe,QAAQ,MAAM,KAYhC,eACzB,CAAC"}
@@ -1,25 +0,0 @@
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
@@ -1 +0,0 @@
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"}
@@ -1,8 +0,0 @@
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 {};
@@ -1,30 +0,0 @@
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
@@ -1 +0,0 @@
1
- {"version":3,"file":"universalSdk.d.ts","sourceRoot":"","sources":["../../src/universalSdk.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAG7D;;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"}
@@ -1,73 +0,0 @@
1
- import { getSdkPath } from './utils/resolvePath';
2
- /**
3
- * A class representing the Forklaunch SDK.
4
- */
5
- export class UniversalSdk {
6
- host;
7
- /**
8
- * Creates an instance of UniversalSdk.
9
- *
10
- * @param {string} host - The host URL for the SDK.
11
- */
12
- constructor(host) {
13
- this.host = host;
14
- }
15
- /**
16
- * Executes an HTTP request.
17
- *
18
- * @param {string} route - The route path for the request.
19
- * @param {'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'} method - The HTTP method.
20
- * @param {RequestType} [request] - The request object.
21
- * @returns {Promise<ResponseType>} - The response object.
22
- */
23
- async execute(route, method, request) {
24
- const { params, body, query, headers } = request || {};
25
- let url = getSdkPath(this.host + route);
26
- if (params) {
27
- for (const key in params) {
28
- url = url.replace(`:${key}`, encodeURIComponent(params[key]));
29
- }
30
- }
31
- if (query) {
32
- const queryString = new URLSearchParams(query).toString();
33
- url += queryString ? `?${queryString}` : '';
34
- }
35
- const response = await fetch(encodeURI(url), {
36
- method,
37
- headers: headers
38
- ? { ...headers, 'Content-Type': 'application/json' }
39
- : undefined,
40
- body: body ? JSON.stringify(body) : undefined
41
- });
42
- const contentType = response.headers.get('content-type');
43
- const responseBody = contentType && contentType.includes('application/json')
44
- ? await response.json()
45
- : await response.text();
46
- return {
47
- code: response.status,
48
- content: responseBody,
49
- headers: response.headers
50
- };
51
- }
52
- async pathParamRequest(route, method, request) {
53
- return this.execute(route, method, request);
54
- }
55
- async bodyRequest(route, method, request) {
56
- return this.execute(route, method, request);
57
- }
58
- async get(route, request) {
59
- return this.pathParamRequest(route, 'GET', request);
60
- }
61
- async post(route, request) {
62
- return this.bodyRequest(route, 'POST', request);
63
- }
64
- async put(route, request) {
65
- return this.bodyRequest(route, 'PUT', request);
66
- }
67
- async patch(route, request) {
68
- return this.bodyRequest(route, 'PATCH', request);
69
- }
70
- async delete(route, request) {
71
- return this.pathParamRequest(route, 'DELETE', request);
72
- }
73
- }
@@ -1,9 +0,0 @@
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
@@ -1 +0,0 @@
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"}
@@ -1,111 +0,0 @@
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
- }
@@ -1,9 +0,0 @@
1
- /**
2
- * Extracts the SDK path from the given path.
3
- *
4
- * @param {string | RegExp | (string | RegExp)[]} path - The provided path.
5
- * @returns {string} - The extracted SDK path.
6
- * @throws {Error} - Throws an error if the path is not defined.
7
- */
8
- export declare function getSdkPath(path: string | RegExp | (string | RegExp)[]): string;
9
- //# sourceMappingURL=resolvePath.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"resolvePath.d.ts","sourceRoot":"","sources":["../../../src/utils/resolvePath.ts"],"names":[],"mappings":"AAEA;;;;;;GAMG;AACH,wBAAgB,UAAU,CACxB,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,GAC1C,MAAM,CAgBR"}
@@ -1,21 +0,0 @@
1
- import { generateStringFromRegex } from './regex';
2
- /**
3
- * Extracts the SDK path from the given path.
4
- *
5
- * @param {string | RegExp | (string | RegExp)[]} path - The provided path.
6
- * @returns {string} - The extracted SDK path.
7
- * @throws {Error} - Throws an error if the path is not defined.
8
- */
9
- export function getSdkPath(path) {
10
- let sdkPath = path;
11
- if (Array.isArray(path)) {
12
- sdkPath = path.pop() || path[0];
13
- }
14
- if (!sdkPath) {
15
- throw new Error('Path is not defined');
16
- }
17
- if (sdkPath instanceof RegExp) {
18
- sdkPath = generateStringFromRegex(sdkPath);
19
- }
20
- return sdkPath;
21
- }
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=universalSdk.test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"universalSdk.test.d.ts","sourceRoot":"","sources":["../../tests/universalSdk.test.ts"],"names":[],"mappings":""}
@@ -1,94 +0,0 @@
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.clearHistory();
7
- fetchMock.removeRoutes();
8
- });
9
- afterAll(() => {
10
- fetchMock.clearHistory();
11
- fetchMock.removeRoutes();
12
- });
13
- test('GET request should be called with correct URL and method', async () => {
14
- fetchMock.getOnce('https://api.example.com/test', {
15
- status: 200,
16
- body: { message: 'Success' },
17
- headers: { 'Content-Type': 'application/json' }
18
- });
19
- const response = await sdk.get('/test');
20
- expect(fetchMock.callHistory.called('https://api.example.com/test')).toBe(true);
21
- expect(await response.content).toEqual({ message: 'Success' });
22
- });
23
- test('POST request should be called with correct URL, method, headers, and body', async () => {
24
- fetchMock.postOnce('https://api.example.com/test', {
25
- status: 201,
26
- body: { message: 'Created' },
27
- headers: { 'Content-Type': 'application/json' }
28
- });
29
- const response = await sdk.post('/test', {
30
- body: { key: 'value' },
31
- headers: { Authorization: 'Bearer token' }
32
- });
33
- expect(fetchMock.callHistory.called('https://api.example.com/test')).toBe(true);
34
- const lastCall = fetchMock.callHistory.lastCall('https://api.example.com/test');
35
- expect(lastCall?.request?.method).toBe('POST');
36
- expect(lastCall?.request?.headers).toEqual({
37
- 'Content-Type': 'application/json',
38
- Authorization: 'Bearer token'
39
- });
40
- expect(lastCall?.request?.body).toBe(JSON.stringify({ key: 'value' }));
41
- expect(await response.content).toEqual({ message: 'Created' });
42
- });
43
- test('PUT request should be called with correct URL and method', async () => {
44
- fetchMock.putOnce('https://api.example.com/test/123', {
45
- status: 200,
46
- body: { message: 'Updated' },
47
- headers: { 'Content-Type': 'application/json' }
48
- });
49
- const response = await sdk.put('/test/123', {
50
- body: { key: 'updatedValue' },
51
- headers: { Authorization: 'Bearer token' }
52
- });
53
- expect(fetchMock.callHistory.called('https://api.example.com/test/123')).toBe(true);
54
- const lastCall = fetchMock.callHistory.lastCall('https://api.example.com/test/123');
55
- expect(lastCall?.request?.method).toBe('PUT');
56
- expect(lastCall?.request?.headers).toEqual({
57
- 'Content-Type': 'application/json',
58
- Authorization: 'Bearer token'
59
- });
60
- expect(lastCall?.request?.body).toBe(JSON.stringify({ key: 'updatedValue' }));
61
- expect(await response.content).toEqual({ message: 'Updated' });
62
- });
63
- test('PATCH request should be called with correct URL and method', async () => {
64
- fetchMock.patchOnce('https://api.example.com/test/123', {
65
- status: 200,
66
- body: { message: 'Patched' },
67
- headers: { 'Content-Type': 'application/json' }
68
- });
69
- const response = await sdk.patch('/test/123', {
70
- body: { key: 'patchedValue' },
71
- headers: { Authorization: 'Bearer token' }
72
- });
73
- expect(fetchMock.callHistory.called('https://api.example.com/test/123')).toBe(true);
74
- const lastCall = fetchMock.callHistory.lastCall('https://api.example.com/test/123');
75
- expect(lastCall?.request?.method).toBe('PATCH');
76
- expect(lastCall?.request?.headers).toEqual({
77
- 'Content-Type': 'application/json',
78
- Authorization: 'Bearer token'
79
- });
80
- expect(lastCall?.request?.body).toBe(JSON.stringify({ key: 'patchedValue' }));
81
- expect(await response.content).toEqual({ message: 'Patched' });
82
- });
83
- test('DELETE request should be called with correct URL and method', async () => {
84
- fetchMock.deleteOnce('https://api.example.com/test/123', {
85
- status: 204,
86
- headers: {}
87
- });
88
- const response = await sdk.delete('/test/123');
89
- expect(fetchMock.callHistory.called('https://api.example.com/test/123')).toBe(true);
90
- const lastCall = fetchMock.callHistory.lastCall('https://api.example.com/test/123');
91
- expect(lastCall?.request?.method).toBe('DELETE');
92
- expect(response.code).toBe(204);
93
- });
94
- });
@@ -1 +0,0 @@
1
- {"fileNames":["../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.7.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/types/sdktypes.ts","../src/utils/regex.ts","../src/utils/resolvepath.ts","../src/universalsdk.ts","../index.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/compatibility/disposable.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/compatibility/indexable.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/compatibility/index.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/header.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/readable.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/file.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/fetch.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/formdata.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/connector.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/client.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/errors.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/global-origin.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/pool-stats.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/pool.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/handlers.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/agent.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-agent.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-client.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-pool.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/mock-errors.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/retry-handler.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/retry-agent.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/api.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/interceptors.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/util.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/cookies.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/patch.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/websocket.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/eventsource.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/filereader.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/content-type.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/cache.d.ts","../../node_modules/.pnpm/undici-types@6.20.0/node_modules/undici-types/index.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/dom-events.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/sea.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/sqlite.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@22.10.1/node_modules/@types/node/index.d.ts","../../node_modules/.pnpm/@types+estree@1.0.6/node_modules/@types/estree/index.d.ts","../../node_modules/.pnpm/rollup@4.28.0/node_modules/rollup/dist/rollup.d.ts","../../node_modules/.pnpm/rollup@4.28.0/node_modules/rollup/dist/parseast.d.ts","../../node_modules/.pnpm/vite@5.4.11_@types+node@22.10.1/node_modules/vite/types/hmrpayload.d.ts","../../node_modules/.pnpm/vite@5.4.11_@types+node@22.10.1/node_modules/vite/types/customevent.d.ts","../../node_modules/.pnpm/vite@5.4.11_@types+node@22.10.1/node_modules/vite/types/hot.d.ts","../../node_modules/.pnpm/vite@5.4.11_@types+node@22.10.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.1/node_modules/source-map-js/source-map.d.ts","../../node_modules/.pnpm/postcss@8.4.49/node_modules/postcss/lib/previous-map.d.ts","../../node_modules/.pnpm/postcss@8.4.49/node_modules/postcss/lib/input.d.ts","../../node_modules/.pnpm/postcss@8.4.49/node_modules/postcss/lib/css-syntax-error.d.ts","../../node_modules/.pnpm/postcss@8.4.49/node_modules/postcss/lib/declaration.d.ts","../../node_modules/.pnpm/postcss@8.4.49/node_modules/postcss/lib/root.d.ts","../../node_modules/.pnpm/postcss@8.4.49/node_modules/postcss/lib/warning.d.ts","../../node_modules/.pnpm/postcss@8.4.49/node_modules/postcss/lib/lazy-result.d.ts","../../node_modules/.pnpm/postcss@8.4.49/node_modules/postcss/lib/no-work-result.d.ts","../../node_modules/.pnpm/postcss@8.4.49/node_modules/postcss/lib/processor.d.ts","../../node_modules/.pnpm/postcss@8.4.49/node_modules/postcss/lib/result.d.ts","../../node_modules/.pnpm/postcss@8.4.49/node_modules/postcss/lib/document.d.ts","../../node_modules/.pnpm/postcss@8.4.49/node_modules/postcss/lib/rule.d.ts","../../node_modules/.pnpm/postcss@8.4.49/node_modules/postcss/lib/node.d.ts","../../node_modules/.pnpm/postcss@8.4.49/node_modules/postcss/lib/comment.d.ts","../../node_modules/.pnpm/postcss@8.4.49/node_modules/postcss/lib/container.d.ts","../../node_modules/.pnpm/postcss@8.4.49/node_modules/postcss/lib/at-rule.d.ts","../../node_modules/.pnpm/postcss@8.4.49/node_modules/postcss/lib/list.d.ts","../../node_modules/.pnpm/postcss@8.4.49/node_modules/postcss/lib/postcss.d.ts","../../node_modules/.pnpm/postcss@8.4.49/node_modules/postcss/lib/postcss.d.mts","../../node_modules/.pnpm/vite@5.4.11_@types+node@22.10.1/node_modules/vite/dist/node/runtime.d.ts","../../node_modules/.pnpm/vite@5.4.11_@types+node@22.10.1/node_modules/vite/types/importglob.d.ts","../../node_modules/.pnpm/vite@5.4.11_@types+node@22.10.1/node_modules/vite/types/metadata.d.ts","../../node_modules/.pnpm/vite@5.4.11_@types+node@22.10.1/node_modules/vite/dist/node/index.d.ts","../../node_modules/.pnpm/@vitest+pretty-format@2.1.8/node_modules/@vitest/pretty-format/dist/index.d.ts","../../node_modules/.pnpm/@vitest+utils@2.1.8/node_modules/@vitest/utils/dist/types.d.ts","../../node_modules/.pnpm/@vitest+utils@2.1.8/node_modules/@vitest/utils/dist/helpers.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.1.8/node_modules/@vitest/utils/dist/index.d.ts","../../node_modules/.pnpm/@vitest+runner@2.1.8/node_modules/@vitest/runner/dist/tasks-3znpj1lr.d.ts","../../node_modules/.pnpm/@vitest+utils@2.1.8/node_modules/@vitest/utils/dist/types-bxe-2udy.d.ts","../../node_modules/.pnpm/@vitest+utils@2.1.8/node_modules/@vitest/utils/dist/diff.d.ts","../../node_modules/.pnpm/@vitest+runner@2.1.8/node_modules/@vitest/runner/dist/types.d.ts","../../node_modules/.pnpm/@vitest+utils@2.1.8/node_modules/@vitest/utils/dist/error.d.ts","../../node_modules/.pnpm/@vitest+runner@2.1.8/node_modules/@vitest/runner/dist/index.d.ts","../../node_modules/.pnpm/vitest@2.1.8_@types+node@22.10.1/node_modules/vitest/dist/chunks/environment.looobwuu.d.ts","../../node_modules/.pnpm/@vitest+snapshot@2.1.8/node_modules/@vitest/snapshot/dist/environment-ddx0edty.d.ts","../../node_modules/.pnpm/@vitest+snapshot@2.1.8/node_modules/@vitest/snapshot/dist/rawsnapshot-cpnkto81.d.ts","../../node_modules/.pnpm/@vitest+snapshot@2.1.8/node_modules/@vitest/snapshot/dist/index.d.ts","../../node_modules/.pnpm/@vitest+snapshot@2.1.8/node_modules/@vitest/snapshot/dist/environment.d.ts","../../node_modules/.pnpm/vitest@2.1.8_@types+node@22.10.1/node_modules/vitest/dist/chunks/config.cy0c388z.d.ts","../../node_modules/.pnpm/vite-node@2.1.8_@types+node@22.10.1/node_modules/vite-node/dist/trace-mapping.d-dlvdeqop.d.ts","../../node_modules/.pnpm/vite-node@2.1.8_@types+node@22.10.1/node_modules/vite-node/dist/index-z0r8hvru.d.ts","../../node_modules/.pnpm/vite-node@2.1.8_@types+node@22.10.1/node_modules/vite-node/dist/index.d.ts","../../node_modules/.pnpm/@vitest+utils@2.1.8/node_modules/@vitest/utils/dist/source-map.d.ts","../../node_modules/.pnpm/vite-node@2.1.8_@types+node@22.10.1/node_modules/vite-node/dist/client.d.ts","../../node_modules/.pnpm/vite-node@2.1.8_@types+node@22.10.1/node_modules/vite-node/dist/server.d.ts","../../node_modules/.pnpm/@vitest+runner@2.1.8/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.1.8_@types+node@22.10.1/node_modules/vitest/dist/chunks/benchmark.geerunq4.d.ts","../../node_modules/.pnpm/@vitest+snapshot@2.1.8/node_modules/@vitest/snapshot/dist/manager.d.ts","../../node_modules/.pnpm/vitest@2.1.8_@types+node@22.10.1/node_modules/vitest/dist/chunks/reporters.d7jzd9gs.d.ts","../../node_modules/.pnpm/vitest@2.1.8_@types+node@22.10.1/node_modules/vitest/dist/chunks/vite.c-n5bbze.d.ts","../../node_modules/.pnpm/vitest@2.1.8_@types+node@22.10.1/node_modules/vitest/dist/config.d.ts","../../node_modules/.pnpm/vitest@2.1.8_@types+node@22.10.1/node_modules/vitest/config.d.ts","../vitest.config.ts","../../node_modules/.pnpm/fetch-mock@12.2.0/node_modules/fetch-mock/dist/esm/requestutils.d.ts","../../node_modules/.pnpm/fetch-mock@12.2.0/node_modules/fetch-mock/dist/esm/callhistory.d.ts","../../node_modules/.pnpm/fetch-mock@12.2.0/node_modules/fetch-mock/dist/esm/matchers.d.ts","../../node_modules/.pnpm/fetch-mock@12.2.0/node_modules/fetch-mock/dist/esm/route.d.ts","../../node_modules/.pnpm/fetch-mock@12.2.0/node_modules/fetch-mock/dist/esm/router.d.ts","../../node_modules/.pnpm/fetch-mock@12.2.0/node_modules/fetch-mock/dist/esm/fetchmock.d.ts","../../node_modules/.pnpm/fetch-mock@12.2.0/node_modules/fetch-mock/dist/esm/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/chalk@4.1.2/node_modules/chalk/index.d.ts","../../node_modules/.pnpm/@sinclair+typebox@0.27.8/node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas/build/index.d.ts","../../node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format/build/index.d.ts","../../node_modules/.pnpm/jest-diff@29.7.0/node_modules/jest-diff/build/index.d.ts","../../node_modules/.pnpm/jest-matcher-utils@29.7.0/node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/.pnpm/expect@29.7.0/node_modules/expect/build/index.d.ts","../../node_modules/.pnpm/@types+jest@29.5.14/node_modules/@types/jest/index.d.ts"],"fileIdsList":[[88,131],[88,131,257],[88,131,259,262],[88,128,131],[88,130,131],[131],[88,131,136,166],[88,131,132,137,143,144,151,163,174],[88,131,132,133,143,151],[83,84,85,88,131],[88,131,134,175],[88,131,135,136,144,152],[88,131,136,163,171],[88,131,137,139,143,151],[88,130,131,138],[88,131,139,140],[88,131,143],[88,131,141,143],[88,130,131,143],[88,131,143,144,145,163,174],[88,131,143,144,145,158,163,166],[88,126,131,179],[88,126,131,139,143,146,151,163,174],[88,131,143,144,146,147,151,163,171,174],[88,131,146,148,163,171,174],[86,87,88,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[88,131,143,149],[88,131,150,174,179],[88,131,139,143,151,163],[88,131,152],[88,131,153],[88,130,131,154],[88,128,129,130,131,132,133,134,135,136,137,138,139,140,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180],[88,131,156],[88,131,157],[88,131,143,158,159],[88,131,158,160,175,177],[88,131,143,163,164,165,166],[88,131,163,165],[88,131,163,164],[88,131,166],[88,131,167],[88,128,131,163],[88,131,143,169,170],[88,131,169,170],[88,131,136,151,163,171],[88,131,172],[88,131,151,173],[88,131,146,157,174],[88,131,136,175],[88,131,163,176],[88,131,150,177],[88,131,178],[88,131,136,143,145,154,163,174,177,179],[88,131,163,180],[88,131,219,220,222,223,224],[88,131,219],[88,131,219,220,222],[88,131,219,220],[88,131,227],[88,131,214,227,228],[88,131,214,227],[88,131,214,221],[88,131,215],[88,131,214,215,216,218],[88,131,214],[88,131,255,261],[88,131,247,249,250,251,252],[88,131,248,249,250,251],[88,131,248,249,250,251,252],[88,131,248,250],[88,131,248],[88,131,248,249,252],[88,131,248,249,250,252],[88,131,259],[88,131,256,260],[88,131,205],[88,131,203,205],[88,131,194,202,203,204,206],[88,131,192],[88,131,195,200,205,208],[88,131,191,208],[88,131,195,196,199,200,201,208],[88,131,195,196,197,199,200,208],[88,131,192,193,194,195,196,200,201,202,204,205,206,208],[88,131,208],[88,131,190,192,193,194,195,196,197,199,200,201,202,203,204,205,206,207],[88,131,190,208],[88,131,195,197,198,200,201,208],[88,131,199,208],[88,131,200,201,205,208],[88,131,193,203],[88,131,258],[88,131,183,212],[88,131,182,183],[88,131,217],[88,98,102,131,174],[88,98,131,163,174],[88,93,131],[88,95,98,131,171,174],[88,131,151,171],[88,131,181],[88,93,131,181],[88,95,98,131,151,174],[88,90,91,94,97,131,143,163,174],[88,98,105,131],[88,90,96,131],[88,98,119,120,131],[88,94,98,131,166,174,181],[88,119,131,181],[88,92,93,131,181],[88,98,131],[88,92,93,94,95,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,120,121,122,123,124,125,131],[88,98,113,131],[88,98,105,106,131],[88,96,98,106,107,131],[88,97,131],[88,90,93,98,131],[88,98,102,106,107,131],[88,102,131],[88,96,98,101,131,174],[88,90,95,98,105,131],[88,131,163],[88,93,98,119,131,179,181],[88,131,232,233],[88,131,232],[88,131,213,232,233,243],[88,131,143,144,146,147,148,151,163,171,174,180,181,183,184,185,186,187,188,189,209,210,211,212],[88,131,185,186,187,188],[88,131,185,186,187],[88,131,185],[88,131,186],[88,131,183],[88,131,244],[88,131,225,238,239],[88,131,214,225,229,230],[88,131,144,163,213,214,219,225,226,229,231,234,235,236,237,240,241,243],[88,131,213,242],[88,131,144,163,213,214,219,225,226,229,230,231,234,235,236,237,238,239,240,241,242,243],[81,88,131],[78,80,88,131],[79,88,131],[78,82,88,131,253],[88,131,245]],"fileInfos":[{"version":"e41c290ef7dd7dab3493e6cbe5909e0148edf4a8dad0271be08edec368a0f7b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"e12a46ce14b817d4c9e6b2b478956452330bf00c9801b79de46f7a1815b5bd40","impliedFormat":1},{"version":"4fd3f3422b2d2a3dfd5cdd0f387b3a8ec45f006c6ea896a4cb41264c2100bb2c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"62bb211266ee48b2d0edf0d8d1b191f0c24fc379a82bd4c1692a082c540bc6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"f1e2a172204962276504466a6393426d2ca9c54894b1ad0a6c9dad867a65f876","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"bab26767638ab3557de12c900f0b91f710c7dc40ee9793d5a27d32c04f0bf646","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f2d92894020e0c09fab50821c2b87e3fb21d2af5306e3b429a62a3a7d702e39","signature":"b881b9e671fce5aabe3969d5b5015aa9afead7306f0b741eb9c5b000300fce50"},{"version":"b5ce24da7d50c139cb8dade33b800ac0eca7dad568b10a31702b63205f6d9e0b","signature":"cd011ee43fbd00505436ccc466c3e804d119f765d65296d071d2347faa0d3818"},{"version":"94bfa27e5caf1effd73650a97d8f62dfea3cd210acf53edcdf993deda33e0ba4","signature":"7b5f9d9537ec7480a7b3bbf2edb5c8c0cbabf06c079aefaceb3fec62a53466b0"},{"version":"9ef03c1460e11923e3445ecdd89c77685cebb13af627cf3c35a1de6286f3bd7a","signature":"08102df8c0dcac83508b69a6131d75d990f34969bb2e667ac5cb1318ec1061fd"},{"version":"1655276baf4c025d7d07475601ddd1488a413423ab7db193ef62bdeec1ca663c","signature":"b9770afc42dfe625f3e75f10afbb4b9deafd2818f2de61f6dcb861a53b61edef"},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"030e350db2525514580ed054f712ffb22d273e6bc7eddc1bb7eda1e0ba5d395e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"0fd06258805d26c72f5997e07a23155d322d5f05387adb3744a791fe6a0b042d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"81184fe8e67d78ac4e5374650f0892d547d665d77da2b2f544b5d84729c4a15d","affectsGlobalScope":true,"impliedFormat":1},{"version":"f52e8dacc97d71dcc96af29e49584353f9c54cb916d132e3e768d8b8129c928d","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"76103716ba397bbb61f9fa9c9090dca59f39f9047cb1352b2179c5d8e7f4e8d0","impliedFormat":1},{"version":"53eac70430b30089a3a1959d8306b0f9cfaf0de75224b68ef25243e0b5ad1ca3","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"115971d64632ea4742b5b115fb64ed04bcaae2c3c342f13d9ba7e3f9ee39c4e7","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"86956cc2eb9dd371d6fab493d326a574afedebf76eef3fa7833b8e0d9b52d6f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"24642567d3729bcc545bacb65ee7c0db423400c7f1ef757cab25d05650064f98","impliedFormat":1},{"version":"e6f5a38687bebe43a4cef426b69d34373ef68be9a6b1538ec0a371e69f309354","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"875928df2f3e9a3aed4019539a15d04ff6140a06df6cd1b2feb836d22a81eaca","affectsGlobalScope":true,"impliedFormat":1},{"version":"e9ad08a376ac84948fcca0013d6f1d4ae4f9522e26b91f87945b97c99d7cc30b","impliedFormat":1},{"version":"eaf9ee1d90a35d56264f0bf39842282c58b9219e112ac7d0c1bce98c6c5da672","impliedFormat":1},{"version":"c15c4427ae7fd1dcd7f312a8a447ac93581b0d4664ddf151ecd07de4bf2bb9d7","impliedFormat":1},{"version":"5135bdd72cc05a8192bd2e92f0914d7fc43ee077d1293dc622a049b7035a0afb","impliedFormat":1},{"version":"4f80de3a11c0d2f1329a72e92c7416b2f7eab14f67e92cac63bb4e8d01c6edc8","impliedFormat":1},{"version":"6d386bc0d7f3afa1d401afc3e00ed6b09205a354a9795196caed937494a713e6","impliedFormat":1},{"version":"75c3400359d59fae5aed4c4a59fcd8a9760cf451e25dc2174cb5e08b9d4803e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"94c4187083503a74f4544503b5a30e2bd7af0032dc739b0c9a7ce87f8bddc7b9","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"3eb62baae4df08c9173e6903d3ca45942ccec8c3659b0565684a75f3292cffbb","affectsGlobalScope":true,"impliedFormat":1},{"version":"a85683ef86875f4ad4c6b7301bbcc63fb379a8d80d3d3fd735ee57f48ef8a47e","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"c6b4e0a02545304935ecbf7de7a8e056a31bb50939b5b321c9d50a405b5a0bba","impliedFormat":1},{"version":"fab29e6d649aa074a6b91e3bdf2bff484934a46067f6ee97a30fcd9762ae2213","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"15c5e91b5f08be34a78e3d976179bf5b7a9cc28dc0ef1ffebffeb3c7812a2dca","impliedFormat":1},{"version":"a8f06c2382a30b7cb89ad2dfc48fc3b2b490f3dafcd839dadc008e4e5d57031d","impliedFormat":1},{"version":"553870e516f8c772b89f3820576152ebc70181d7994d96917bb943e37da7f8a7","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"745c4240220559bd340c8aeb6e3c5270a709d3565e934dc22a69c304703956bc","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"9212c6e9d80cb45441a3614e95afd7235a55a18584c2ed32d6c1aca5a0c53d93","affectsGlobalScope":true,"impliedFormat":1},{"version":"bef91efa0baea5d0e0f0f27b574a8bc100ce62a6d7e70220a0d58af6acab5e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"282fd2a1268a25345b830497b4b7bf5037a5e04f6a9c44c840cb605e19fea841","impliedFormat":1},{"version":"5360a27d3ebca11b224d7d3e38e3e2c63f8290cb1fcf6c3610401898f8e68bc3","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"6bd91a2a356600dee28eb0438082d0799a18a974a6537c4410a796bab749813c","affectsGlobalScope":true,"impliedFormat":1},{"version":"f689c4237b70ae6be5f0e4180e8833f34ace40529d1acc0676ab8fb8f70457d7","impliedFormat":1},{"version":"ae25afbbf1ed5df63a177d67b9048bf7481067f1b8dc9c39212e59db94fc9fc6","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"52a8e7e8a1454b6d1b5ad428efae3870ffc56f2c02d923467f2940c454aa9aec","affectsGlobalScope":true,"impliedFormat":1},{"version":"78dc0513cc4f1642906b74dda42146bcbd9df7401717d6e89ea6d72d12ecb539","impliedFormat":1},{"version":"ad90122e1cb599b3bc06a11710eb5489101be678f2920f2322b0ac3e195af78d","impliedFormat":1},{"version":"785b9d575b49124ce01b46f5b9402157c7611e6532effa562ac6aebec0074dfc","impliedFormat":1},{"version":"207bee54c60bfe26feca8ef79922f66fd091092a9d24aa12daea1b340fa7e0ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"a660aa95476042d3fdcc1343cf6bb8fdf24772d31712b1db321c5a4dcc325434","impliedFormat":1},{"version":"282f98006ed7fa9bb2cd9bdbe2524595cfc4bcd58a0bb3232e4519f2138df811","impliedFormat":1},{"version":"6222e987b58abfe92597e1273ad7233626285bc2d78409d4a7b113d81a83496b","impliedFormat":1},{"version":"cbe726263ae9a7bf32352380f7e8ab66ee25b3457137e316929269c19e18a2be","impliedFormat":1},{"version":"8b96046bf5fb0a815cba6b0880d9f97b7f3a93cf187e8dcfe8e2792e97f38f87","impliedFormat":99},{"version":"bacf2c84cf448b2cd02c717ad46c3d7fd530e0c91282888c923ad64810a4d511","affectsGlobalScope":true,"impliedFormat":1},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","impliedFormat":1},{"version":"4d979e3c12ffb6497d2b1dc5613130196d986fff764c4526360c0716a162e7e7","impliedFormat":1},{"version":"e61df3640a38d535fd4bc9f4a53aef17c296b58dc4b6394fd576b808dd2fe5e6","impliedFormat":1},{"version":"80781460eca408fe8d2937d9fdbbb780d6aac35f549621e6200c9bee1da5b8fe","impliedFormat":1},{"version":"4719c209b9c00b579553859407a7e5dcfaa1c472994bd62aa5dd3cc0757eb077","impliedFormat":1},{"version":"7ec359bbc29b69d4063fe7dad0baaf35f1856f914db16b3f4f6e3e1bca4099fa","impliedFormat":1},{"version":"b9261ac3e9944d3d72c5ee4cf888ad35d9743a5563405c6963c4e43ee3708ca4","impliedFormat":1},{"version":"c84fd54e8400def0d1ef1569cafd02e9f39a622df9fa69b57ccc82128856b916","impliedFormat":1},{"version":"a022503e75d6953d0e82c2c564508a5c7f8556fad5d7f971372d2d40479e4034","impliedFormat":1},{"version":"2ed6489ef46eb61442d067c08e87e3db501c0bfb2837eee4041a27bf3e792bb0","impliedFormat":1},{"version":"644491cde678bd462bb922c1d0cfab8f17d626b195ccb7f008612dc31f445d2d","impliedFormat":1},{"version":"d60fe6d59d4e19ecc65359490b8535e359ca4b760d2cdb56897ca75d09d41ba3","impliedFormat":1},{"version":"f45a2a8b1777ecb50ed65e1a04bb899d4b676529b7921bd5d69b08573a00c832","impliedFormat":1},{"version":"774b783046ba3d473948132d28a69f52a295b2f378f2939304118ba571b1355e","impliedFormat":1},{"version":"b5734e05c787a40e4f9efe71f16683c5f7dc3bdb0de7c04440c855bd000f8fa7","impliedFormat":1},{"version":"14ba97f0907144771331e1349fdccb5a13526eba0647e6b447e572376d811b6f","impliedFormat":1},{"version":"2a771d907aebf9391ac1f50e4ad37952943515eeea0dcc7e78aa08f508294668","impliedFormat":1},{"version":"7165050eddaed878c2d2cd3cafcaf171072ac39e586a048c0603712b5555f536","impliedFormat":1},{"version":"26e629be9bbd94ea1d465af83ce5a3306890520695f07be6eb016f8d734d02be","impliedFormat":99},{"version":"82e687ebd99518bc63ea04b0c3810fb6e50aa6942decd0ca6f7a56d9b9a212a6","impliedFormat":99},{"version":"7f698624bbbb060ece7c0e51b7236520ebada74b747d7523c7df376453ed6fea","impliedFormat":1},{"version":"8f07f2b6514744ac96e51d7cb8518c0f4de319471237ea10cf688b8d0e9d0225","impliedFormat":1},{"version":"9ae0ca65717af0d3b554a26fd333ad9c78ad3910ad4b22140ff02acb63076927","impliedFormat":99},{"version":"d2e64a6f25013b099e83bfadb2c388d7bef3e8f3fdb25528225bbc841e7e7e3a","impliedFormat":99},{"version":"369ba5259e66ca8c7d35e3234f7a2a0863a770fdb8266505747c65cf346a0804","impliedFormat":99},{"version":"64d984f55025daf604f670b7dfd090ea765f2098aee871174ef2ee3e94479098","impliedFormat":99},{"version":"f147b6710441cf3ec3234adf63b0593ce5e8c9b692959d21d3babc8454bcf743","impliedFormat":99},{"version":"e96d5373a66c2cfbbc7e6642cf274055aa2c7ff6bd37be7480c66faf9804db6d","impliedFormat":99},{"version":"02bcdd7a76c5c1c485cbf05626d24c86ac8f9a1d8dc31f8924108bbaa4cf3ba9","impliedFormat":99},{"version":"c874ab6feac6e0fdf9142727c9a876065777a5392f14b0bbcf869b1e69eb46b5","impliedFormat":99},{"version":"7c553fc9e34773ddbaabe0fa1367d4b109101d0868a008f11042bee24b5a925d","impliedFormat":99},{"version":"9962ce696fbdce2421d883ca4b062a54f982496625437ae4d3633376c5ad4a80","impliedFormat":99},{"version":"e3ea467c4a7f743f3548c9ed61300591965b1d12c08c8bb9aaff8a002ba95fce","impliedFormat":99},{"version":"4c17183a07a63bea2653fbfc0a942b027160ddbee823024789a415f9589de327","impliedFormat":99},{"version":"3e2203c892297ea44b87470fde51b3d48cfe3eeb6901995de429539462894464","impliedFormat":99},{"version":"c84bf7a4abc5e7fdf45971a71b25b0e0d34ccd5e720a866dd78bb71d60d41a3f","impliedFormat":99},{"version":"e01ea380015ed698c3c0e2ccd0db72f3fc3ef1abc4519f122aa1c1a8d419a505","impliedFormat":99},{"version":"5ada1f8a9580c0f7478fe03ae3e07e958f0b79bdfb9dd50eeb98c1324f40011b","impliedFormat":99},{"version":"a8301dc90b4bd9fba333226ee0f1681aeeff1bd90233a8f647e687cb4b7d3521","impliedFormat":99},{"version":"e3225dc0bec183183509d290f641786245e6652bc3dce755f7ef404060693c35","impliedFormat":99},{"version":"09a03870ed8c55d7453bc9ad684df88965f2f770f987481ca71b8a09be5205bc","impliedFormat":99},{"version":"e6233e1c976265e85aa8ad76c3881febe6264cb06ae3136f0257e1eab4a6cc5a","impliedFormat":99},{"version":"2cdd50ddc49e2d608ee848fc4ab0db9a2716624fabb4209c7c683d87e54d79c5","impliedFormat":99},{"version":"e431d664338b8470abb1750d699c7dfcebb1a25434559ef85bb96f1e82de5972","impliedFormat":99},{"version":"2c4254139d037c3caca66ce291c1308c1b5092cfcb151eb25980db932dd3b01a","impliedFormat":99},{"version":"970ae00ed018cb96352dc3f37355ef9c2d9f8aa94d7174ccd6d0ed855e462097","impliedFormat":99},{"version":"d2f8dee457ef7660b604226d471d55d927c3051766bdd80353553837492635c3","impliedFormat":99},{"version":"110a503289a2ef76141ffff3ffceb9a1c3662c32748eb9f6777a2bd0866d6fb1","impliedFormat":99},{"version":"69bf2422313487956e4dacf049f30cb91b34968912058d244cb19e4baa24da97","impliedFormat":99},{"version":"310e6b62c493ce991624169a1c1904015769d947be88dc67e00adc7ebebcfa87","impliedFormat":99},{"version":"62fefda288160bf6e435b21cc03d3fbac11193d8d3bd0e82d86623cca7691c29","impliedFormat":99},{"version":"4f40c8f34ff420c9a4eff580b2503856efb722cb4a4956cee9044ef5ee3b9939","impliedFormat":99},{"version":"34bd231cdbfcaed4a33638fa67333b17457f410a25b221ed841b8c3ada3ea1a9","impliedFormat":99},{"version":"ef0173cf22e6d245c76963bcb1c82a470d1992ca4318c3c0faf98318e1abae13","impliedFormat":99},{"version":"aa348c4fb2f8ac77df855f07fb66281c9f6e71746fdff3b13c7932aa7642b788","impliedFormat":99},{"version":"9a11651d35d8c48a0c359bffecafc29e5eab44a2b93003ad93694859d941a6ed","signature":"4b96dd19fd2949d28ce80e913412b0026dc421e5bf6c31d87c7b5eb11b5753b4"},{"version":"c5a817c952fd31fc6d0af6afb59143f98c4ac5ad39838b37324e023243c3c74b","impliedFormat":99},{"version":"85b8114e96cf91fbd833ac3f759043f44204e657009e2695b72d14fb3218735c","impliedFormat":99},{"version":"0974b33956c8a2646c9c8e3fd171b76fbcb31a2182066163dd5940ed5dc883db","impliedFormat":99},{"version":"345348930536b2f48e73378eadcff1f1b9d5c6e3e3836720fcff0ff4115f1baa","impliedFormat":99},{"version":"4327a69b322bc0b7f34505ce1a915af11fb8cdf492b64f75826e6b09bcfec8a2","impliedFormat":99},{"version":"a95b19f9ac75c19086dbc2d724dc2e4f89724937e78ae79f841bcb6255c2a20b","impliedFormat":99},{"version":"510b0960280f4541f3feb7507577600c5d81c74981a1c0f06eb749c75b6a2d6d","impliedFormat":99},{"version":"7015ea110f150118835fb7c9195063b5d142d93e35e7e4820c46dc779a8968e3","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true,"impliedFormat":1}],"root":[[78,82],246,254],"options":{"allowJs":true,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":99,"outDir":"./","skipLibCheck":true,"strict":true,"target":99},"referencedMap":[[255,1],[258,2],[257,1],[182,1],[263,3],[128,4],[129,4],[130,5],[88,6],[131,7],[132,8],[133,9],[83,1],[86,10],[84,1],[85,1],[134,11],[135,12],[136,13],[137,14],[138,15],[139,16],[140,16],[142,17],[141,18],[143,19],[144,20],[145,21],[127,22],[87,1],[146,23],[147,24],[148,25],[181,26],[149,27],[150,28],[151,29],[152,30],[153,31],[154,32],[155,33],[156,34],[157,35],[158,36],[159,36],[160,37],[161,1],[162,1],[163,38],[165,39],[164,40],[166,41],[167,42],[168,43],[169,44],[170,45],[171,46],[172,47],[173,48],[174,49],[175,50],[176,51],[177,52],[178,53],[179,54],[180,55],[214,1],[225,56],[220,57],[223,58],[238,59],[227,1],[230,60],[229,61],[241,61],[228,62],[222,63],[224,63],[216,64],[219,65],[235,64],[221,66],[215,1],[89,1],[256,1],[189,1],[262,67],[248,68],[252,69],[253,70],[249,71],[247,72],[250,73],[251,74],[260,75],[261,76],[206,77],[204,78],[205,79],[193,80],[194,78],[201,81],[192,82],[197,83],[207,1],[198,84],[203,85],[209,86],[208,87],[191,88],[199,89],[200,90],[195,91],[202,77],[196,92],[259,93],[184,94],[183,95],[190,1],[239,1],[217,1],[218,96],[76,1],[77,1],[13,1],[15,1],[14,1],[2,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[3,1],[24,1],[25,1],[4,1],[26,1],[30,1],[27,1],[28,1],[29,1],[31,1],[32,1],[33,1],[5,1],[34,1],[35,1],[36,1],[37,1],[6,1],[41,1],[38,1],[39,1],[40,1],[42,1],[7,1],[43,1],[48,1],[49,1],[44,1],[45,1],[46,1],[47,1],[8,1],[53,1],[50,1],[51,1],[52,1],[54,1],[9,1],[55,1],[56,1],[57,1],[59,1],[58,1],[60,1],[61,1],[10,1],[62,1],[63,1],[64,1],[11,1],[65,1],[66,1],[67,1],[68,1],[69,1],[1,1],[70,1],[71,1],[12,1],[74,1],[73,1],[72,1],[75,1],[105,97],[115,98],[104,97],[125,99],[96,100],[95,101],[124,102],[118,103],[123,104],[98,105],[112,106],[97,107],[121,108],[93,109],[92,102],[122,110],[94,111],[99,112],[100,1],[103,112],[90,1],[126,113],[116,114],[107,115],[108,116],[110,117],[106,118],[109,119],[119,102],[101,120],[102,121],[111,122],[91,123],[114,114],[113,112],[117,1],[120,124],[236,125],[233,126],[234,125],[237,127],[232,1],[213,128],[210,129],[188,130],[186,131],[185,1],[187,132],[211,1],[212,133],[245,134],[240,135],[231,136],[226,1],[242,137],[243,138],[244,139],[82,140],[78,1],[81,141],[79,1],[80,142],[254,143],[246,144]],"latestChangedDtsFile":"./tests/universalSdk.test.d.ts","version":"5.7.2"}
@@ -1,3 +0,0 @@
1
- declare const _default: import("vite").UserConfig;
2
- export default _default;
3
- //# sourceMappingURL=vitest.config.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"vitest.config.d.ts","sourceRoot":"","sources":["../vitest.config.ts"],"names":[],"mappings":";AAEA,wBAKG"}
@@ -1,7 +0,0 @@
1
- import { defineConfig } from 'vitest/config';
2
- export default defineConfig({
3
- test: {
4
- globals: true,
5
- exclude: ['**/lib/**', '**/dist/**', '**/node_modules/**']
6
- }
7
- });