@wix/sdk 1.1.14 → 1.1.16
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/dist/cjs/index.js +0 -4
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/wixClient.js +25 -23
- package/dist/cjs/wixClient.js.map +1 -1
- package/dist/cjs/wixMedia.js +25 -41
- package/dist/cjs/wixMedia.js.map +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/wixClient.js +36 -36
- package/dist/esm/wixClient.js.map +1 -1
- package/dist/esm/wixMedia.js +26 -40
- package/dist/esm/wixMedia.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/wixClient.d.ts +2 -2
- package/dist/types/wixClient.d.ts.map +1 -1
- package/dist/types/wixMedia.d.ts +8 -8
- package/dist/types/wixMedia.d.ts.map +1 -1
- package/package.json +11 -11
package/dist/cjs/index.js
CHANGED
|
@@ -1,17 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.__esModule = true;
|
|
4
|
-
|
|
5
4
|
var _wixClient = require("./wixClient");
|
|
6
|
-
|
|
7
5
|
Object.keys(_wixClient).forEach(function (key) {
|
|
8
6
|
if (key === "default" || key === "__esModule") return;
|
|
9
7
|
if (key in exports && exports[key] === _wixClient[key]) return;
|
|
10
8
|
exports[key] = _wixClient[key];
|
|
11
9
|
});
|
|
12
|
-
|
|
13
10
|
var _wixMedia = require("./wixMedia");
|
|
14
|
-
|
|
15
11
|
Object.keys(_wixMedia).forEach(function (key) {
|
|
16
12
|
if (key === "default" || key === "__esModule") return;
|
|
17
13
|
if (key in exports && exports[key] === _wixMedia[key]) return;
|
package/dist/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sources":["../../src/index.ts"],"sourcesContent":["export * from './wixClient';\nexport * from './wixMedia';\n"],"mappings":"
|
|
1
|
+
{"version":3,"names":[],"sources":["../../src/index.ts"],"sourcesContent":["export * from './wixClient';\nexport * from './wixMedia';\n"],"mappings":";;;AAAA;AAAA;EAAA;EAAA;EAAA;AAAA;AACA;AAAA;EAAA;EAAA;EAAA;AAAA"}
|
package/dist/cjs/wixClient.js
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
exports.__esModule = true;
|
|
4
4
|
exports.createClient = createClient;
|
|
5
5
|
const API_URL = 'www.wixapis.com';
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
const wrapperBuilder = (origFunc, headers
|
|
7
|
+
// @ts-expect-error
|
|
8
8
|
) => {
|
|
9
9
|
return origFunc({
|
|
10
10
|
request: async factory => {
|
|
@@ -12,13 +12,15 @@ const wrapperBuilder = (origFunc, headers // @ts-expect-error
|
|
|
12
12
|
// eslint-disable-next-line no-throw-literal
|
|
13
13
|
throw errorBuilder(500, 'You must set Authorization header before triggering a call');
|
|
14
14
|
}
|
|
15
|
-
|
|
16
15
|
const requestOptions = factory({
|
|
17
16
|
host: API_URL
|
|
18
17
|
});
|
|
19
|
-
|
|
18
|
+
let url = `https://${API_URL}${requestOptions.url}`;
|
|
19
|
+
if (requestOptions.params) {
|
|
20
|
+
url += `?${new URLSearchParams(requestOptions.params)}`;
|
|
21
|
+
}
|
|
20
22
|
try {
|
|
21
|
-
const res = await fetch(
|
|
23
|
+
const res = await fetch(url, {
|
|
22
24
|
method: requestOptions.method,
|
|
23
25
|
...(requestOptions.data && {
|
|
24
26
|
body: JSON.stringify(requestOptions.data)
|
|
@@ -28,37 +30,42 @@ const wrapperBuilder = (origFunc, headers // @ts-expect-error
|
|
|
28
30
|
...headers
|
|
29
31
|
}
|
|
30
32
|
});
|
|
31
|
-
|
|
32
33
|
if (res.status !== 200) {
|
|
33
|
-
|
|
34
|
+
var _dataError, _dataError2;
|
|
35
|
+
let dataError = null;
|
|
36
|
+
try {
|
|
37
|
+
dataError = await res.json();
|
|
38
|
+
} catch (e) {
|
|
39
|
+
//
|
|
40
|
+
}
|
|
41
|
+
throw errorBuilder(res.status, (_dataError = dataError) == null ? void 0 : _dataError.message, (_dataError2 = dataError) == null ? void 0 : _dataError2.details);
|
|
34
42
|
}
|
|
35
|
-
|
|
36
43
|
const data = await res.json();
|
|
37
44
|
return {
|
|
38
45
|
data
|
|
39
46
|
};
|
|
40
47
|
} catch (e) {
|
|
41
48
|
var _e$message;
|
|
42
|
-
|
|
43
49
|
if ((_e$message = e.message) != null && _e$message.includes('fetch is not defined')) {
|
|
44
50
|
console.error('Node.js v18+ is required');
|
|
45
51
|
}
|
|
46
|
-
|
|
47
52
|
throw e;
|
|
48
53
|
}
|
|
49
54
|
}
|
|
50
55
|
});
|
|
51
56
|
};
|
|
52
|
-
|
|
53
|
-
const errorBuilder = (code, description) => {
|
|
57
|
+
const errorBuilder = (code, description, details) => {
|
|
54
58
|
return {
|
|
55
59
|
response: {
|
|
56
60
|
data: {
|
|
57
61
|
details: {
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
+
...details,
|
|
63
|
+
...(!(details != null && details.validationError) && {
|
|
64
|
+
applicationError: {
|
|
65
|
+
description,
|
|
66
|
+
code
|
|
67
|
+
}
|
|
68
|
+
})
|
|
62
69
|
},
|
|
63
70
|
message: description
|
|
64
71
|
},
|
|
@@ -66,18 +73,14 @@ const errorBuilder = (code, description) => {
|
|
|
66
73
|
}
|
|
67
74
|
};
|
|
68
75
|
};
|
|
69
|
-
|
|
70
76
|
function createClient(config) {
|
|
71
77
|
if (!config.modules || Object.entries(config.modules).length < 1) {
|
|
72
78
|
throw new Error('Missing modules');
|
|
73
79
|
}
|
|
74
|
-
|
|
75
80
|
const _headers = config.headers || {
|
|
76
81
|
Authorization: ''
|
|
77
82
|
};
|
|
78
|
-
|
|
79
83
|
const isObject = val => val && typeof val === 'object' && !Array.isArray(val);
|
|
80
|
-
|
|
81
84
|
const traverse = obj => {
|
|
82
85
|
return Object.entries(obj).reduce((prev, [key, value]) => {
|
|
83
86
|
if (isObject(value)) {
|
|
@@ -87,13 +90,12 @@ function createClient(config) {
|
|
|
87
90
|
} else {
|
|
88
91
|
prev[key] = value;
|
|
89
92
|
}
|
|
90
|
-
|
|
91
93
|
return prev;
|
|
92
94
|
}, {});
|
|
93
95
|
};
|
|
94
|
-
|
|
95
96
|
const wrappedModules = traverse(config.modules);
|
|
96
|
-
return {
|
|
97
|
+
return {
|
|
98
|
+
...wrappedModules,
|
|
97
99
|
setHeaders: headers => {
|
|
98
100
|
for (const k in headers) {
|
|
99
101
|
_headers[k] = headers[k];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["API_URL","wrapperBuilder","origFunc","headers","request","factory","Authorization","errorBuilder","requestOptions","host","
|
|
1
|
+
{"version":3,"names":["API_URL","wrapperBuilder","origFunc","headers","request","factory","Authorization","errorBuilder","requestOptions","host","url","params","URLSearchParams","res","fetch","method","data","body","JSON","stringify","status","dataError","json","e","message","details","includes","console","error","code","description","response","validationError","applicationError","createClient","config","modules","Object","entries","length","Error","_headers","isObject","val","Array","isArray","traverse","obj","reduce","prev","key","value","wrappedModules","setHeaders","k"],"sources":["../../src/wixClient.ts"],"sourcesContent":["import { Simplify } from 'type-fest';\n\ntype Headers = { Authorization: string } & Record<string, string>;\n\ntype WithoutFunctionWrapper<T> = {\n [Key in keyof T]: T[Key] extends (...args: any) => any\n ? ReturnType<T[Key]>\n : Simplify<WithoutFunctionWrapper<T[Key]>>;\n};\n\nexport interface IWrapper {\n setHeaders(headers: Headers): void;\n}\n\nconst API_URL = 'www.wixapis.com';\n\nconst wrapperBuilder = <T extends Function>(\n origFunc: T,\n headers: Headers,\n // @ts-expect-error\n): ReturnType<T> => {\n return origFunc({\n request: async (factory: any) => {\n if (!headers.Authorization) {\n // eslint-disable-next-line no-throw-literal\n throw errorBuilder(\n 500,\n 'You must set Authorization header before triggering a call',\n );\n }\n\n const requestOptions = factory({ host: API_URL });\n let url = `https://${API_URL}${requestOptions.url}`;\n if (requestOptions.params) {\n url += `?${new URLSearchParams(requestOptions.params)}`;\n }\n try {\n const res = await fetch(url, {\n method: requestOptions.method,\n ...(requestOptions.data && {\n body: JSON.stringify(requestOptions.data),\n }),\n headers: {\n 'Content-Type': 'application/json',\n ...headers,\n },\n });\n if (res.status !== 200) {\n let dataError: any = null;\n try {\n dataError = await res.json();\n } catch (e) {\n //\n }\n throw errorBuilder(\n res.status,\n dataError?.message,\n dataError?.details,\n );\n }\n const data = await res.json();\n return { data };\n } catch (e: any) {\n if (e.message?.includes('fetch is not defined')) {\n console.error('Node.js v18+ is required');\n }\n throw e;\n }\n },\n });\n};\n\nconst errorBuilder = (code: number, description: string, details?: any) => {\n return {\n response: {\n data: {\n details: {\n ...details,\n ...(!details?.validationError && {\n applicationError: {\n description,\n code,\n },\n }),\n },\n message: description,\n },\n status: code,\n },\n };\n};\n\nexport function createClient<T = any>(config: {\n modules: T;\n headers?: Headers;\n}): WithoutFunctionWrapper<T> & IWrapper {\n if (!config.modules || Object.entries(config.modules).length < 1) {\n throw new Error('Missing modules');\n }\n\n const _headers: Headers = config.headers || { Authorization: '' };\n const isObject = (val: any) =>\n val && typeof val === 'object' && !Array.isArray(val);\n\n const traverse = (obj: any) => {\n return Object.entries(obj).reduce((prev: any, [key, value]) => {\n if (isObject(value)) {\n prev[key] = traverse(value);\n } else if (typeof obj[key] === 'function') {\n prev[key] = wrapperBuilder(value as Function, _headers);\n } else {\n prev[key] = value;\n }\n return prev;\n }, {});\n };\n\n const wrappedModules = traverse(config.modules);\n return {\n ...wrappedModules,\n setHeaders: (headers: Headers) => {\n for (const k in headers) {\n _headers[k] = headers[k];\n }\n },\n };\n}\n"],"mappings":"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"}
|
package/dist/cjs/wixMedia.js
CHANGED
|
@@ -3,45 +3,34 @@
|
|
|
3
3
|
exports.__esModule = true;
|
|
4
4
|
exports.decodeText = decodeText;
|
|
5
5
|
exports.media = void 0;
|
|
6
|
-
|
|
7
6
|
var _imageKit = require("@wix/image-kit");
|
|
8
|
-
|
|
9
7
|
var _querystring = require("querystring");
|
|
10
|
-
|
|
11
8
|
const URL_HASH_PREFIX = '#';
|
|
12
9
|
const WIX_PROTOCOL = 'wix:';
|
|
13
10
|
const WIX_IMAGE = 'image';
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
const img = getRawImageUrl(wixMediaIdentifier);
|
|
11
|
+
function getScaledToFillImageUrl(wixMediaIdentifier, targetWidth, targetHeight, options) {
|
|
12
|
+
const img = getImageUrl(wixMediaIdentifier);
|
|
17
13
|
return _imageKit.sdk.getScaleToFillImageURL(img.id, img.height, img.width, targetWidth, targetHeight, options);
|
|
18
14
|
}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
const img = getRawImageUrl(wixMediaIdentifier);
|
|
15
|
+
function getScaledToFitImageUrl(wixMediaIdentifier, targetWidth, targetHeight, options) {
|
|
16
|
+
const img = getImageUrl(wixMediaIdentifier);
|
|
22
17
|
return _imageKit.sdk.getScaleToFitImageURL(img.id, img.height, img.width, targetWidth, targetHeight, options);
|
|
23
18
|
}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
const img = getRawImageUrl(wixMediaIdentifier);
|
|
19
|
+
function getCroppedImageUrl(wixMediaIdentifier, cropX, cropY, cropWidth, cropHeight, targetWidth, targetHeight, options) {
|
|
20
|
+
const img = getImageUrl(wixMediaIdentifier);
|
|
27
21
|
return _imageKit.sdk.getCropImageURL(img.id, img.height, img.width, cropX, cropY, cropWidth, cropHeight, targetWidth, targetHeight, options);
|
|
28
22
|
}
|
|
29
|
-
|
|
30
|
-
function getRawImageUrl(val) {
|
|
23
|
+
function getImageUrl(val) {
|
|
31
24
|
const alignedImage = alignIfLegacy(val, WIX_IMAGE);
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
const _pathname$replace$spl = pathname.replace(`${WIX_IMAGE}://v1/`, '').split('/'),
|
|
42
|
-
id = _pathname$replace$spl[0],
|
|
43
|
-
filenameOrAltText = _pathname$replace$spl[1];
|
|
44
|
-
|
|
25
|
+
const {
|
|
26
|
+
hash,
|
|
27
|
+
pathname
|
|
28
|
+
} = new URL(alignedImage);
|
|
29
|
+
const {
|
|
30
|
+
originHeight: height,
|
|
31
|
+
originWidth: width
|
|
32
|
+
} = (0, _querystring.parse)(hash.replace(URL_HASH_PREFIX, ''));
|
|
33
|
+
const [id, filenameOrAltText] = pathname.replace(`${WIX_IMAGE}://v1/`, '').split('/');
|
|
45
34
|
const decodedFilenameOrAltText = decodeText(filenameOrAltText);
|
|
46
35
|
const res = {
|
|
47
36
|
id,
|
|
@@ -49,37 +38,32 @@ function getRawImageUrl(val) {
|
|
|
49
38
|
height: Number(height),
|
|
50
39
|
width: Number(width)
|
|
51
40
|
};
|
|
52
|
-
|
|
53
41
|
if (!decodedFilenameOrAltText) {
|
|
54
42
|
return res;
|
|
55
43
|
}
|
|
56
|
-
|
|
57
|
-
|
|
44
|
+
return {
|
|
45
|
+
...res,
|
|
58
46
|
altText: decodedFilenameOrAltText,
|
|
59
47
|
filename: decodedFilenameOrAltText
|
|
60
48
|
};
|
|
61
49
|
}
|
|
62
|
-
|
|
63
50
|
function decodeText(s) {
|
|
64
51
|
if (!s) {
|
|
65
52
|
return s;
|
|
66
53
|
}
|
|
67
|
-
|
|
68
54
|
return decodeURIComponent(s);
|
|
69
55
|
}
|
|
70
|
-
|
|
71
56
|
function alignIfLegacy(url, type) {
|
|
72
|
-
const
|
|
73
|
-
|
|
74
|
-
|
|
57
|
+
const {
|
|
58
|
+
protocol
|
|
59
|
+
} = new URL(url);
|
|
75
60
|
return protocol === `${type}:` ? `${WIX_PROTOCOL}${url}` : url;
|
|
76
61
|
}
|
|
77
|
-
|
|
78
62
|
const media = {
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
63
|
+
getCroppedImageUrl,
|
|
64
|
+
getScaledToFillImageUrl,
|
|
65
|
+
getScaledToFitImageUrl,
|
|
66
|
+
getImageUrl
|
|
83
67
|
};
|
|
84
68
|
exports.media = media;
|
|
85
69
|
//# sourceMappingURL=wixMedia.js.map
|
package/dist/cjs/wixMedia.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["URL_HASH_PREFIX","WIX_PROTOCOL","WIX_IMAGE","
|
|
1
|
+
{"version":3,"names":["URL_HASH_PREFIX","WIX_PROTOCOL","WIX_IMAGE","getScaledToFillImageUrl","wixMediaIdentifier","targetWidth","targetHeight","options","img","getImageUrl","sdk","getScaleToFillImageURL","id","height","width","getScaledToFitImageUrl","getScaleToFitImageURL","getCroppedImageUrl","cropX","cropY","cropWidth","cropHeight","getCropImageURL","val","alignedImage","alignIfLegacy","hash","pathname","URL","originHeight","originWidth","parse","replace","filenameOrAltText","split","decodedFilenameOrAltText","decodeText","res","url","Number","altText","filename","s","decodeURIComponent","type","protocol","media"],"sources":["../../src/wixMedia.ts"],"sourcesContent":["import { sdk, ImageTransformOptions } from '@wix/image-kit';\nimport { parse } from 'querystring';\n\nconst URL_HASH_PREFIX = '#';\nconst WIX_PROTOCOL = 'wix:';\nconst WIX_IMAGE = 'image';\n\nfunction getScaledToFillImageUrl(\n wixMediaIdentifier: string,\n targetWidth: number,\n targetHeight: number,\n options: ImageTransformOptions,\n) {\n const img = getImageUrl(wixMediaIdentifier);\n\n return sdk.getScaleToFillImageURL(\n img.id,\n img.height,\n img.width,\n targetWidth,\n targetHeight,\n options,\n );\n}\n\nfunction getScaledToFitImageUrl(\n wixMediaIdentifier: string,\n targetWidth: number,\n targetHeight: number,\n options: ImageTransformOptions,\n) {\n const img = getImageUrl(wixMediaIdentifier);\n\n return sdk.getScaleToFitImageURL(\n img.id,\n img.height,\n img.width,\n targetWidth,\n targetHeight,\n options,\n );\n}\n\nfunction getCroppedImageUrl(\n wixMediaIdentifier: string,\n cropX: number,\n cropY: number,\n cropWidth: number,\n cropHeight: number,\n targetWidth: number,\n targetHeight: number,\n options?: ImageTransformOptions,\n) {\n const img = getImageUrl(wixMediaIdentifier);\n\n return sdk.getCropImageURL(\n img.id,\n img.height,\n img.width,\n cropX,\n cropY,\n cropWidth,\n cropHeight,\n targetWidth,\n targetHeight,\n options,\n );\n}\n\nfunction getImageUrl(val: string) {\n const alignedImage = alignIfLegacy(val, WIX_IMAGE);\n\n const { hash, pathname } = new URL(alignedImage);\n\n const { originHeight: height, originWidth: width } = parse(\n hash.replace(URL_HASH_PREFIX, ''),\n );\n const [id, filenameOrAltText] = pathname\n .replace(`${WIX_IMAGE}://v1/`, '')\n .split('/');\n\n const decodedFilenameOrAltText = decodeText(filenameOrAltText);\n\n const res = {\n id,\n url: `https://static.wixstatic.com/media/${id}`,\n height: Number(height),\n width: Number(width),\n };\n\n if (!decodedFilenameOrAltText) {\n return res;\n }\n\n return {\n ...res,\n altText: decodedFilenameOrAltText,\n filename: decodedFilenameOrAltText,\n };\n}\n\nexport function decodeText(s: string) {\n if (!s) {\n return s;\n }\n\n return decodeURIComponent(s);\n}\n\nfunction alignIfLegacy(url: string, type: string): string {\n const { protocol } = new URL(url);\n\n return protocol === `${type}:` ? `${WIX_PROTOCOL}${url}` : url;\n}\n\nexport const media = {\n getCroppedImageUrl,\n getScaledToFillImageUrl,\n getScaledToFitImageUrl,\n getImageUrl,\n};\n"],"mappings":";;;;;AAAA;AACA;AAEA,MAAMA,eAAe,GAAG,GAAG;AAC3B,MAAMC,YAAY,GAAG,MAAM;AAC3B,MAAMC,SAAS,GAAG,OAAO;AAEzB,SAASC,uBAAuB,CAC9BC,kBAA0B,EAC1BC,WAAmB,EACnBC,YAAoB,EACpBC,OAA8B,EAC9B;EACA,MAAMC,GAAG,GAAGC,WAAW,CAACL,kBAAkB,CAAC;EAE3C,OAAOM,aAAG,CAACC,sBAAsB,CAC/BH,GAAG,CAACI,EAAE,EACNJ,GAAG,CAACK,MAAM,EACVL,GAAG,CAACM,KAAK,EACTT,WAAW,EACXC,YAAY,EACZC,OAAO,CACR;AACH;AAEA,SAASQ,sBAAsB,CAC7BX,kBAA0B,EAC1BC,WAAmB,EACnBC,YAAoB,EACpBC,OAA8B,EAC9B;EACA,MAAMC,GAAG,GAAGC,WAAW,CAACL,kBAAkB,CAAC;EAE3C,OAAOM,aAAG,CAACM,qBAAqB,CAC9BR,GAAG,CAACI,EAAE,EACNJ,GAAG,CAACK,MAAM,EACVL,GAAG,CAACM,KAAK,EACTT,WAAW,EACXC,YAAY,EACZC,OAAO,CACR;AACH;AAEA,SAASU,kBAAkB,CACzBb,kBAA0B,EAC1Bc,KAAa,EACbC,KAAa,EACbC,SAAiB,EACjBC,UAAkB,EAClBhB,WAAmB,EACnBC,YAAoB,EACpBC,OAA+B,EAC/B;EACA,MAAMC,GAAG,GAAGC,WAAW,CAACL,kBAAkB,CAAC;EAE3C,OAAOM,aAAG,CAACY,eAAe,CACxBd,GAAG,CAACI,EAAE,EACNJ,GAAG,CAACK,MAAM,EACVL,GAAG,CAACM,KAAK,EACTI,KAAK,EACLC,KAAK,EACLC,SAAS,EACTC,UAAU,EACVhB,WAAW,EACXC,YAAY,EACZC,OAAO,CACR;AACH;AAEA,SAASE,WAAW,CAACc,GAAW,EAAE;EAChC,MAAMC,YAAY,GAAGC,aAAa,CAACF,GAAG,EAAErB,SAAS,CAAC;EAElD,MAAM;IAAEwB,IAAI;IAAEC;EAAS,CAAC,GAAG,IAAIC,GAAG,CAACJ,YAAY,CAAC;EAEhD,MAAM;IAAEK,YAAY,EAAEhB,MAAM;IAAEiB,WAAW,EAAEhB;EAAM,CAAC,GAAG,IAAAiB,kBAAK,EACxDL,IAAI,CAACM,OAAO,CAAChC,eAAe,EAAE,EAAE,CAAC,CAClC;EACD,MAAM,CAACY,EAAE,EAAEqB,iBAAiB,CAAC,GAAGN,QAAQ,CACrCK,OAAO,CAAE,GAAE9B,SAAU,QAAO,EAAE,EAAE,CAAC,CACjCgC,KAAK,CAAC,GAAG,CAAC;EAEb,MAAMC,wBAAwB,GAAGC,UAAU,CAACH,iBAAiB,CAAC;EAE9D,MAAMI,GAAG,GAAG;IACVzB,EAAE;IACF0B,GAAG,EAAG,sCAAqC1B,EAAG,EAAC;IAC/CC,MAAM,EAAE0B,MAAM,CAAC1B,MAAM,CAAC;IACtBC,KAAK,EAAEyB,MAAM,CAACzB,KAAK;EACrB,CAAC;EAED,IAAI,CAACqB,wBAAwB,EAAE;IAC7B,OAAOE,GAAG;EACZ;EAEA,OAAO;IACL,GAAGA,GAAG;IACNG,OAAO,EAAEL,wBAAwB;IACjCM,QAAQ,EAAEN;EACZ,CAAC;AACH;AAEO,SAASC,UAAU,CAACM,CAAS,EAAE;EACpC,IAAI,CAACA,CAAC,EAAE;IACN,OAAOA,CAAC;EACV;EAEA,OAAOC,kBAAkB,CAACD,CAAC,CAAC;AAC9B;AAEA,SAASjB,aAAa,CAACa,GAAW,EAAEM,IAAY,EAAU;EACxD,MAAM;IAAEC;EAAS,CAAC,GAAG,IAAIjB,GAAG,CAACU,GAAG,CAAC;EAEjC,OAAOO,QAAQ,KAAM,GAAED,IAAK,GAAE,GAAI,GAAE3C,YAAa,GAAEqC,GAAI,EAAC,GAAGA,GAAG;AAChE;AAEO,MAAMQ,KAAK,GAAG;EACnB7B,kBAAkB;EAClBd,uBAAuB;EACvBY,sBAAsB;EACtBN;AACF,CAAC;AAAC"}
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sources":["../../src/index.ts"],"sourcesContent":["export * from './wixClient';\nexport * from './wixMedia';\n"],"mappings":"AAAA,cAAc,
|
|
1
|
+
{"version":3,"names":[],"sources":["../../src/index.ts"],"sourcesContent":["export * from './wixClient';\nexport * from './wixMedia';\n"],"mappings":"AAAA,cAAc,aAAa;AAC3B,cAAc,YAAY"}
|
package/dist/esm/wixClient.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import _extends from "@babel/runtime/helpers/extends";
|
|
2
1
|
const API_URL = 'www.wixapis.com';
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
const wrapperBuilder = (origFunc, headers
|
|
3
|
+
// @ts-expect-error
|
|
5
4
|
) => {
|
|
6
5
|
return origFunc({
|
|
7
6
|
request: async factory => {
|
|
@@ -9,52 +8,60 @@ const wrapperBuilder = (origFunc, headers // @ts-expect-error
|
|
|
9
8
|
// eslint-disable-next-line no-throw-literal
|
|
10
9
|
throw errorBuilder(500, 'You must set Authorization header before triggering a call');
|
|
11
10
|
}
|
|
12
|
-
|
|
13
11
|
const requestOptions = factory({
|
|
14
12
|
host: API_URL
|
|
15
13
|
});
|
|
16
|
-
|
|
14
|
+
let url = "https://" + API_URL + requestOptions.url;
|
|
15
|
+
if (requestOptions.params) {
|
|
16
|
+
url += "?" + new URLSearchParams(requestOptions.params);
|
|
17
|
+
}
|
|
17
18
|
try {
|
|
18
|
-
const res = await fetch(
|
|
19
|
-
method: requestOptions.method
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
headers:
|
|
24
|
-
'Content-Type': 'application/json'
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
19
|
+
const res = await fetch(url, {
|
|
20
|
+
method: requestOptions.method,
|
|
21
|
+
...(requestOptions.data && {
|
|
22
|
+
body: JSON.stringify(requestOptions.data)
|
|
23
|
+
}),
|
|
24
|
+
headers: {
|
|
25
|
+
'Content-Type': 'application/json',
|
|
26
|
+
...headers
|
|
27
|
+
}
|
|
28
|
+
});
|
|
28
29
|
if (res.status !== 200) {
|
|
29
|
-
|
|
30
|
+
var _dataError, _dataError2;
|
|
31
|
+
let dataError = null;
|
|
32
|
+
try {
|
|
33
|
+
dataError = await res.json();
|
|
34
|
+
} catch (e) {
|
|
35
|
+
//
|
|
36
|
+
}
|
|
37
|
+
throw errorBuilder(res.status, (_dataError = dataError) == null ? void 0 : _dataError.message, (_dataError2 = dataError) == null ? void 0 : _dataError2.details);
|
|
30
38
|
}
|
|
31
|
-
|
|
32
39
|
const data = await res.json();
|
|
33
40
|
return {
|
|
34
41
|
data
|
|
35
42
|
};
|
|
36
43
|
} catch (e) {
|
|
37
44
|
var _e$message;
|
|
38
|
-
|
|
39
45
|
if ((_e$message = e.message) != null && _e$message.includes('fetch is not defined')) {
|
|
40
46
|
console.error('Node.js v18+ is required');
|
|
41
47
|
}
|
|
42
|
-
|
|
43
48
|
throw e;
|
|
44
49
|
}
|
|
45
50
|
}
|
|
46
51
|
});
|
|
47
52
|
};
|
|
48
|
-
|
|
49
|
-
const errorBuilder = (code, description) => {
|
|
53
|
+
const errorBuilder = (code, description, details) => {
|
|
50
54
|
return {
|
|
51
55
|
response: {
|
|
52
56
|
data: {
|
|
53
57
|
details: {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
+
...details,
|
|
59
|
+
...(!(details != null && details.validationError) && {
|
|
60
|
+
applicationError: {
|
|
61
|
+
description,
|
|
62
|
+
code
|
|
63
|
+
}
|
|
64
|
+
})
|
|
58
65
|
},
|
|
59
66
|
message: description
|
|
60
67
|
},
|
|
@@ -62,23 +69,17 @@ const errorBuilder = (code, description) => {
|
|
|
62
69
|
}
|
|
63
70
|
};
|
|
64
71
|
};
|
|
65
|
-
|
|
66
72
|
export function createClient(config) {
|
|
67
73
|
if (!config.modules || Object.entries(config.modules).length < 1) {
|
|
68
74
|
throw new Error('Missing modules');
|
|
69
75
|
}
|
|
70
|
-
|
|
71
76
|
const _headers = config.headers || {
|
|
72
77
|
Authorization: ''
|
|
73
78
|
};
|
|
74
|
-
|
|
75
79
|
const isObject = val => val && typeof val === 'object' && !Array.isArray(val);
|
|
76
|
-
|
|
77
80
|
const traverse = obj => {
|
|
78
81
|
return Object.entries(obj).reduce((prev, _ref) => {
|
|
79
|
-
let key = _ref
|
|
80
|
-
value = _ref[1];
|
|
81
|
-
|
|
82
|
+
let [key, value] = _ref;
|
|
82
83
|
if (isObject(value)) {
|
|
83
84
|
prev[key] = traverse(value);
|
|
84
85
|
} else if (typeof obj[key] === 'function') {
|
|
@@ -86,18 +87,17 @@ export function createClient(config) {
|
|
|
86
87
|
} else {
|
|
87
88
|
prev[key] = value;
|
|
88
89
|
}
|
|
89
|
-
|
|
90
90
|
return prev;
|
|
91
91
|
}, {});
|
|
92
92
|
};
|
|
93
|
-
|
|
94
93
|
const wrappedModules = traverse(config.modules);
|
|
95
|
-
return
|
|
94
|
+
return {
|
|
95
|
+
...wrappedModules,
|
|
96
96
|
setHeaders: headers => {
|
|
97
97
|
for (const k in headers) {
|
|
98
98
|
_headers[k] = headers[k];
|
|
99
99
|
}
|
|
100
100
|
}
|
|
101
|
-
}
|
|
101
|
+
};
|
|
102
102
|
}
|
|
103
103
|
//# sourceMappingURL=wixClient.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["API_URL","wrapperBuilder","origFunc","headers","request","factory","Authorization","errorBuilder","requestOptions","host","
|
|
1
|
+
{"version":3,"names":["API_URL","wrapperBuilder","origFunc","headers","request","factory","Authorization","errorBuilder","requestOptions","host","url","params","URLSearchParams","res","fetch","method","data","body","JSON","stringify","status","dataError","json","e","message","details","includes","console","error","code","description","response","validationError","applicationError","createClient","config","modules","Object","entries","length","Error","_headers","isObject","val","Array","isArray","traverse","obj","reduce","prev","key","value","wrappedModules","setHeaders","k"],"sources":["../../src/wixClient.ts"],"sourcesContent":["import { Simplify } from 'type-fest';\n\ntype Headers = { Authorization: string } & Record<string, string>;\n\ntype WithoutFunctionWrapper<T> = {\n [Key in keyof T]: T[Key] extends (...args: any) => any\n ? ReturnType<T[Key]>\n : Simplify<WithoutFunctionWrapper<T[Key]>>;\n};\n\nexport interface IWrapper {\n setHeaders(headers: Headers): void;\n}\n\nconst API_URL = 'www.wixapis.com';\n\nconst wrapperBuilder = <T extends Function>(\n origFunc: T,\n headers: Headers,\n // @ts-expect-error\n): ReturnType<T> => {\n return origFunc({\n request: async (factory: any) => {\n if (!headers.Authorization) {\n // eslint-disable-next-line no-throw-literal\n throw errorBuilder(\n 500,\n 'You must set Authorization header before triggering a call',\n );\n }\n\n const requestOptions = factory({ host: API_URL });\n let url = `https://${API_URL}${requestOptions.url}`;\n if (requestOptions.params) {\n url += `?${new URLSearchParams(requestOptions.params)}`;\n }\n try {\n const res = await fetch(url, {\n method: requestOptions.method,\n ...(requestOptions.data && {\n body: JSON.stringify(requestOptions.data),\n }),\n headers: {\n 'Content-Type': 'application/json',\n ...headers,\n },\n });\n if (res.status !== 200) {\n let dataError: any = null;\n try {\n dataError = await res.json();\n } catch (e) {\n //\n }\n throw errorBuilder(\n res.status,\n dataError?.message,\n dataError?.details,\n );\n }\n const data = await res.json();\n return { data };\n } catch (e: any) {\n if (e.message?.includes('fetch is not defined')) {\n console.error('Node.js v18+ is required');\n }\n throw e;\n }\n },\n });\n};\n\nconst errorBuilder = (code: number, description: string, details?: any) => {\n return {\n response: {\n data: {\n details: {\n ...details,\n ...(!details?.validationError && {\n applicationError: {\n description,\n code,\n },\n }),\n },\n message: description,\n },\n status: code,\n },\n };\n};\n\nexport function createClient<T = any>(config: {\n modules: T;\n headers?: Headers;\n}): WithoutFunctionWrapper<T> & IWrapper {\n if (!config.modules || Object.entries(config.modules).length < 1) {\n throw new Error('Missing modules');\n }\n\n const _headers: Headers = config.headers || { Authorization: '' };\n const isObject = (val: any) =>\n val && typeof val === 'object' && !Array.isArray(val);\n\n const traverse = (obj: any) => {\n return Object.entries(obj).reduce((prev: any, [key, value]) => {\n if (isObject(value)) {\n prev[key] = traverse(value);\n } else if (typeof obj[key] === 'function') {\n prev[key] = wrapperBuilder(value as Function, _headers);\n } else {\n prev[key] = value;\n }\n return prev;\n }, {});\n };\n\n const wrappedModules = traverse(config.modules);\n return {\n ...wrappedModules,\n setHeaders: (headers: Headers) => {\n for (const k in headers) {\n _headers[k] = headers[k];\n }\n },\n };\n}\n"],"mappings":"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"}
|
package/dist/esm/wixMedia.js
CHANGED
|
@@ -1,40 +1,31 @@
|
|
|
1
|
-
import _extends from "@babel/runtime/helpers/extends";
|
|
2
1
|
import { sdk } from '@wix/image-kit';
|
|
3
2
|
import { parse } from 'querystring';
|
|
4
3
|
const URL_HASH_PREFIX = '#';
|
|
5
4
|
const WIX_PROTOCOL = 'wix:';
|
|
6
5
|
const WIX_IMAGE = 'image';
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
const img = getRawImageUrl(wixMediaIdentifier);
|
|
6
|
+
function getScaledToFillImageUrl(wixMediaIdentifier, targetWidth, targetHeight, options) {
|
|
7
|
+
const img = getImageUrl(wixMediaIdentifier);
|
|
10
8
|
return sdk.getScaleToFillImageURL(img.id, img.height, img.width, targetWidth, targetHeight, options);
|
|
11
9
|
}
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
const img = getRawImageUrl(wixMediaIdentifier);
|
|
10
|
+
function getScaledToFitImageUrl(wixMediaIdentifier, targetWidth, targetHeight, options) {
|
|
11
|
+
const img = getImageUrl(wixMediaIdentifier);
|
|
15
12
|
return sdk.getScaleToFitImageURL(img.id, img.height, img.width, targetWidth, targetHeight, options);
|
|
16
13
|
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
const img = getRawImageUrl(wixMediaIdentifier);
|
|
14
|
+
function getCroppedImageUrl(wixMediaIdentifier, cropX, cropY, cropWidth, cropHeight, targetWidth, targetHeight, options) {
|
|
15
|
+
const img = getImageUrl(wixMediaIdentifier);
|
|
20
16
|
return sdk.getCropImageURL(img.id, img.height, img.width, cropX, cropY, cropWidth, cropHeight, targetWidth, targetHeight, options);
|
|
21
17
|
}
|
|
22
|
-
|
|
23
|
-
function getRawImageUrl(val) {
|
|
18
|
+
function getImageUrl(val) {
|
|
24
19
|
const alignedImage = alignIfLegacy(val, WIX_IMAGE);
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
const _pathname$replace$spl = pathname.replace(WIX_IMAGE + "://v1/", '').split('/'),
|
|
35
|
-
id = _pathname$replace$spl[0],
|
|
36
|
-
filenameOrAltText = _pathname$replace$spl[1];
|
|
37
|
-
|
|
20
|
+
const {
|
|
21
|
+
hash,
|
|
22
|
+
pathname
|
|
23
|
+
} = new URL(alignedImage);
|
|
24
|
+
const {
|
|
25
|
+
originHeight: height,
|
|
26
|
+
originWidth: width
|
|
27
|
+
} = parse(hash.replace(URL_HASH_PREFIX, ''));
|
|
28
|
+
const [id, filenameOrAltText] = pathname.replace(WIX_IMAGE + "://v1/", '').split('/');
|
|
38
29
|
const decodedFilenameOrAltText = decodeText(filenameOrAltText);
|
|
39
30
|
const res = {
|
|
40
31
|
id,
|
|
@@ -42,36 +33,31 @@ function getRawImageUrl(val) {
|
|
|
42
33
|
height: Number(height),
|
|
43
34
|
width: Number(width)
|
|
44
35
|
};
|
|
45
|
-
|
|
46
36
|
if (!decodedFilenameOrAltText) {
|
|
47
37
|
return res;
|
|
48
38
|
}
|
|
49
|
-
|
|
50
|
-
|
|
39
|
+
return {
|
|
40
|
+
...res,
|
|
51
41
|
altText: decodedFilenameOrAltText,
|
|
52
42
|
filename: decodedFilenameOrAltText
|
|
53
|
-
}
|
|
43
|
+
};
|
|
54
44
|
}
|
|
55
|
-
|
|
56
45
|
export function decodeText(s) {
|
|
57
46
|
if (!s) {
|
|
58
47
|
return s;
|
|
59
48
|
}
|
|
60
|
-
|
|
61
49
|
return decodeURIComponent(s);
|
|
62
50
|
}
|
|
63
|
-
|
|
64
51
|
function alignIfLegacy(url, type) {
|
|
65
|
-
const
|
|
66
|
-
|
|
67
|
-
|
|
52
|
+
const {
|
|
53
|
+
protocol
|
|
54
|
+
} = new URL(url);
|
|
68
55
|
return protocol === type + ":" ? "" + WIX_PROTOCOL + url : url;
|
|
69
56
|
}
|
|
70
|
-
|
|
71
57
|
export const media = {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
58
|
+
getCroppedImageUrl,
|
|
59
|
+
getScaledToFillImageUrl,
|
|
60
|
+
getScaledToFitImageUrl,
|
|
61
|
+
getImageUrl
|
|
76
62
|
};
|
|
77
63
|
//# sourceMappingURL=wixMedia.js.map
|
package/dist/esm/wixMedia.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["sdk","parse","URL_HASH_PREFIX","WIX_PROTOCOL","WIX_IMAGE","
|
|
1
|
+
{"version":3,"names":["sdk","parse","URL_HASH_PREFIX","WIX_PROTOCOL","WIX_IMAGE","getScaledToFillImageUrl","wixMediaIdentifier","targetWidth","targetHeight","options","img","getImageUrl","getScaleToFillImageURL","id","height","width","getScaledToFitImageUrl","getScaleToFitImageURL","getCroppedImageUrl","cropX","cropY","cropWidth","cropHeight","getCropImageURL","val","alignedImage","alignIfLegacy","hash","pathname","URL","originHeight","originWidth","replace","filenameOrAltText","split","decodedFilenameOrAltText","decodeText","res","url","Number","altText","filename","s","decodeURIComponent","type","protocol","media"],"sources":["../../src/wixMedia.ts"],"sourcesContent":["import { sdk, ImageTransformOptions } from '@wix/image-kit';\nimport { parse } from 'querystring';\n\nconst URL_HASH_PREFIX = '#';\nconst WIX_PROTOCOL = 'wix:';\nconst WIX_IMAGE = 'image';\n\nfunction getScaledToFillImageUrl(\n wixMediaIdentifier: string,\n targetWidth: number,\n targetHeight: number,\n options: ImageTransformOptions,\n) {\n const img = getImageUrl(wixMediaIdentifier);\n\n return sdk.getScaleToFillImageURL(\n img.id,\n img.height,\n img.width,\n targetWidth,\n targetHeight,\n options,\n );\n}\n\nfunction getScaledToFitImageUrl(\n wixMediaIdentifier: string,\n targetWidth: number,\n targetHeight: number,\n options: ImageTransformOptions,\n) {\n const img = getImageUrl(wixMediaIdentifier);\n\n return sdk.getScaleToFitImageURL(\n img.id,\n img.height,\n img.width,\n targetWidth,\n targetHeight,\n options,\n );\n}\n\nfunction getCroppedImageUrl(\n wixMediaIdentifier: string,\n cropX: number,\n cropY: number,\n cropWidth: number,\n cropHeight: number,\n targetWidth: number,\n targetHeight: number,\n options?: ImageTransformOptions,\n) {\n const img = getImageUrl(wixMediaIdentifier);\n\n return sdk.getCropImageURL(\n img.id,\n img.height,\n img.width,\n cropX,\n cropY,\n cropWidth,\n cropHeight,\n targetWidth,\n targetHeight,\n options,\n );\n}\n\nfunction getImageUrl(val: string) {\n const alignedImage = alignIfLegacy(val, WIX_IMAGE);\n\n const { hash, pathname } = new URL(alignedImage);\n\n const { originHeight: height, originWidth: width } = parse(\n hash.replace(URL_HASH_PREFIX, ''),\n );\n const [id, filenameOrAltText] = pathname\n .replace(`${WIX_IMAGE}://v1/`, '')\n .split('/');\n\n const decodedFilenameOrAltText = decodeText(filenameOrAltText);\n\n const res = {\n id,\n url: `https://static.wixstatic.com/media/${id}`,\n height: Number(height),\n width: Number(width),\n };\n\n if (!decodedFilenameOrAltText) {\n return res;\n }\n\n return {\n ...res,\n altText: decodedFilenameOrAltText,\n filename: decodedFilenameOrAltText,\n };\n}\n\nexport function decodeText(s: string) {\n if (!s) {\n return s;\n }\n\n return decodeURIComponent(s);\n}\n\nfunction alignIfLegacy(url: string, type: string): string {\n const { protocol } = new URL(url);\n\n return protocol === `${type}:` ? `${WIX_PROTOCOL}${url}` : url;\n}\n\nexport const media = {\n getCroppedImageUrl,\n getScaledToFillImageUrl,\n getScaledToFitImageUrl,\n getImageUrl,\n};\n"],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@stylable/runtime/dist/types.d.ts","../../../node_modules/@stylable/runtime/dist/keyed-list-renderer.d.ts","../../../node_modules/@stylable/runtime/dist/css-runtime-renderer.d.ts","../../../node_modules/@stylable/runtime/dist/css-runtime-stylesheet.d.ts","../../../node_modules/@stylable/runtime/dist/index.d.ts","../../../node_modules/@stylable/runtime/stylesheet.d.ts","../../../node_modules/graphql/version.d.ts","../../../node_modules/graphql/jsutils/Maybe.d.ts","../../../node_modules/graphql/language/source.d.ts","../../../node_modules/graphql/language/tokenKind.d.ts","../../../node_modules/graphql/language/ast.d.ts","../../../node_modules/graphql/language/directiveLocation.d.ts","../../../node_modules/graphql/jsutils/PromiseOrValue.d.ts","../../../node_modules/graphql/jsutils/Path.d.ts","../../../node_modules/graphql/type/definition.d.ts","../../../node_modules/graphql/type/directives.d.ts","../../../node_modules/graphql/type/schema.d.ts","../../../node_modules/graphql/language/location.d.ts","../../../node_modules/graphql/error/GraphQLError.d.ts","../../../node_modules/graphql/error/formatError.d.ts","../../../node_modules/graphql/execution/execute.d.ts","../../../node_modules/graphql/graphql.d.ts","../../../node_modules/graphql/type/scalars.d.ts","../../../node_modules/graphql/type/introspection.d.ts","../../../node_modules/graphql/type/validate.d.ts","../../../node_modules/graphql/type/index.d.ts","../../../node_modules/graphql/language/printLocation.d.ts","../../../node_modules/graphql/language/kinds.d.ts","../../../node_modules/graphql/language/lexer.d.ts","../../../node_modules/graphql/language/parser.d.ts","../../../node_modules/graphql/language/printer.d.ts","../../../node_modules/graphql/language/visitor.d.ts","../../../node_modules/graphql/language/predicates.d.ts","../../../node_modules/graphql/language/index.d.ts","../../../node_modules/graphql/execution/values.d.ts","../../../node_modules/graphql/execution/index.d.ts","../../../node_modules/graphql/subscription/subscribe.d.ts","../../../node_modules/graphql/subscription/index.d.ts","../../../node_modules/graphql/utilities/TypeInfo.d.ts","../../../node_modules/graphql/validation/ValidationContext.d.ts","../../../node_modules/graphql/validation/validate.d.ts","../../../node_modules/graphql/validation/specifiedRules.d.ts","../../../node_modules/graphql/validation/rules/ExecutableDefinitionsRule.d.ts","../../../node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.d.ts","../../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.d.ts","../../../node_modules/graphql/validation/rules/KnownArgumentNamesRule.d.ts","../../../node_modules/graphql/validation/rules/KnownDirectivesRule.d.ts","../../../node_modules/graphql/validation/rules/KnownFragmentNamesRule.d.ts","../../../node_modules/graphql/validation/rules/KnownTypeNamesRule.d.ts","../../../node_modules/graphql/validation/rules/LoneAnonymousOperationRule.d.ts","../../../node_modules/graphql/validation/rules/NoFragmentCyclesRule.d.ts","../../../node_modules/graphql/validation/rules/NoUndefinedVariablesRule.d.ts","../../../node_modules/graphql/validation/rules/NoUnusedFragmentsRule.d.ts","../../../node_modules/graphql/validation/rules/NoUnusedVariablesRule.d.ts","../../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.d.ts","../../../node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.d.ts","../../../node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.d.ts","../../../node_modules/graphql/validation/rules/ScalarLeafsRule.d.ts","../../../node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueArgumentNamesRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueFragmentNamesRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueOperationNamesRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueVariableNamesRule.d.ts","../../../node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.d.ts","../../../node_modules/graphql/validation/rules/VariablesAreInputTypesRule.d.ts","../../../node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.d.ts","../../../node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueOperationTypesRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueTypeNamesRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.d.ts","../../../node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.d.ts","../../../node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.d.ts","../../../node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.d.ts","../../../node_modules/graphql/validation/index.d.ts","../../../node_modules/graphql/error/syntaxError.d.ts","../../../node_modules/graphql/error/locatedError.d.ts","../../../node_modules/graphql/error/index.d.ts","../../../node_modules/graphql/utilities/getIntrospectionQuery.d.ts","../../../node_modules/graphql/utilities/getOperationAST.d.ts","../../../node_modules/graphql/utilities/getOperationRootType.d.ts","../../../node_modules/graphql/utilities/introspectionFromSchema.d.ts","../../../node_modules/graphql/utilities/buildClientSchema.d.ts","../../../node_modules/graphql/utilities/buildASTSchema.d.ts","../../../node_modules/graphql/utilities/extendSchema.d.ts","../../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts","../../../node_modules/graphql/utilities/printSchema.d.ts","../../../node_modules/graphql/utilities/typeFromAST.d.ts","../../../node_modules/graphql/utilities/valueFromAST.d.ts","../../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts","../../../node_modules/graphql/utilities/astFromValue.d.ts","../../../node_modules/graphql/utilities/coerceInputValue.d.ts","../../../node_modules/graphql/utilities/concatAST.d.ts","../../../node_modules/graphql/utilities/separateOperations.d.ts","../../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts","../../../node_modules/graphql/utilities/typeComparators.d.ts","../../../node_modules/graphql/utilities/assertValidName.d.ts","../../../node_modules/graphql/utilities/findBreakingChanges.d.ts","../../../node_modules/graphql/utilities/typedQueryDocumentNode.d.ts","../../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts","../../../node_modules/graphql/utilities/index.d.ts","../../../node_modules/graphql/index.d.ts","../../../node_modules/@wix/yoshi-common/types.d.ts","../../../node_modules/@wix/yoshi-flow-library/types.d.ts","../src/external-types.d.ts","../../../node_modules/@types/puppeteer/index.d.ts","../../../node_modules/@wix/jest-yoshi-preset/types.d.ts","../src/test-types.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/type-fest/source/primitive.d.ts","../../../node_modules/type-fest/source/typed-array.d.ts","../../../node_modules/type-fest/source/basic.d.ts","../../../node_modules/type-fest/source/observable-like.d.ts","../../../node_modules/type-fest/source/internal.d.ts","../../../node_modules/type-fest/source/except.d.ts","../../../node_modules/type-fest/source/simplify.d.ts","../../../node_modules/type-fest/source/writable.d.ts","../../../node_modules/type-fest/source/mutable.d.ts","../../../node_modules/type-fest/source/merge.d.ts","../../../node_modules/type-fest/source/merge-exclusive.d.ts","../../../node_modules/type-fest/source/require-at-least-one.d.ts","../../../node_modules/type-fest/source/require-exactly-one.d.ts","../../../node_modules/type-fest/source/require-all-or-none.d.ts","../../../node_modules/type-fest/source/remove-index-signature.d.ts","../../../node_modules/type-fest/source/partial-deep.d.ts","../../../node_modules/type-fest/source/partial-on-undefined-deep.d.ts","../../../node_modules/type-fest/source/readonly-deep.d.ts","../../../node_modules/type-fest/source/literal-union.d.ts","../../../node_modules/type-fest/source/promisable.d.ts","../../../node_modules/type-fest/source/opaque.d.ts","../../../node_modules/type-fest/source/invariant-of.d.ts","../../../node_modules/type-fest/source/set-optional.d.ts","../../../node_modules/type-fest/source/set-required.d.ts","../../../node_modules/type-fest/source/set-non-nullable.d.ts","../../../node_modules/type-fest/source/value-of.d.ts","../../../node_modules/type-fest/source/promise-value.d.ts","../../../node_modules/type-fest/source/async-return-type.d.ts","../../../node_modules/type-fest/source/conditional-keys.d.ts","../../../node_modules/type-fest/source/conditional-except.d.ts","../../../node_modules/type-fest/source/conditional-pick.d.ts","../../../node_modules/type-fest/source/union-to-intersection.d.ts","../../../node_modules/type-fest/source/stringified.d.ts","../../../node_modules/type-fest/source/fixed-length-array.d.ts","../../../node_modules/type-fest/source/multidimensional-array.d.ts","../../../node_modules/type-fest/source/multidimensional-readonly-array.d.ts","../../../node_modules/type-fest/source/iterable-element.d.ts","../../../node_modules/type-fest/source/entry.d.ts","../../../node_modules/type-fest/source/entries.d.ts","../../../node_modules/type-fest/source/set-return-type.d.ts","../../../node_modules/type-fest/source/asyncify.d.ts","../../../node_modules/type-fest/source/numeric.d.ts","../../../node_modules/type-fest/source/jsonify.d.ts","../../../node_modules/type-fest/source/schema.d.ts","../../../node_modules/type-fest/source/literal-to-primitive.d.ts","../../../node_modules/type-fest/source/string-key-of.d.ts","../../../node_modules/type-fest/source/exact.d.ts","../../../node_modules/type-fest/source/readonly-tuple.d.ts","../../../node_modules/type-fest/source/optional-keys-of.d.ts","../../../node_modules/type-fest/source/has-optional-keys.d.ts","../../../node_modules/type-fest/source/required-keys-of.d.ts","../../../node_modules/type-fest/source/has-required-keys.d.ts","../../../node_modules/type-fest/source/spread.d.ts","../../../node_modules/type-fest/source/split.d.ts","../../../node_modules/type-fest/source/camel-case.d.ts","../../../node_modules/type-fest/source/camel-cased-properties.d.ts","../../../node_modules/type-fest/source/camel-cased-properties-deep.d.ts","../../../node_modules/type-fest/source/delimiter-case.d.ts","../../../node_modules/type-fest/source/kebab-case.d.ts","../../../node_modules/type-fest/source/delimiter-cased-properties.d.ts","../../../node_modules/type-fest/source/kebab-cased-properties.d.ts","../../../node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts","../../../node_modules/type-fest/source/kebab-cased-properties-deep.d.ts","../../../node_modules/type-fest/source/pascal-case.d.ts","../../../node_modules/type-fest/source/pascal-cased-properties.d.ts","../../../node_modules/type-fest/source/pascal-cased-properties-deep.d.ts","../../../node_modules/type-fest/source/snake-case.d.ts","../../../node_modules/type-fest/source/snake-cased-properties.d.ts","../../../node_modules/type-fest/source/snake-cased-properties-deep.d.ts","../../../node_modules/type-fest/source/includes.d.ts","../../../node_modules/type-fest/source/screaming-snake-case.d.ts","../../../node_modules/type-fest/source/join.d.ts","../../../node_modules/type-fest/source/trim.d.ts","../../../node_modules/type-fest/source/replace.d.ts","../../../node_modules/type-fest/source/get.d.ts","../../../node_modules/type-fest/source/last-array-element.d.ts","../../../node_modules/type-fest/source/package-json.d.ts","../../../node_modules/type-fest/source/tsconfig-json.d.ts","../../../node_modules/type-fest/index.d.ts","../src/wixClient.ts","../../../node_modules/@wix/image-kit/dist/types/types.d.ts","../../../node_modules/@wix/image-kit/dist/types/helpers/imageServiceConstants.d.ts","../../../node_modules/@wix/image-kit/dist/types/helpers/populateFeatureSupport.d.ts","../../../node_modules/@wix/image-kit/dist/types/api/max/api.d.ts","../../../node_modules/@wix/image-kit/dist/types/api/uri/index.d.ts","../../../node_modules/@wix/image-kit/dist/types/sdk/api.d.ts","../../../node_modules/@wix/image-kit/dist/types/sdk/index.d.ts","../../../node_modules/@wix/image-kit/dist/types/api/max/index.d.ts","../../../node_modules/querystring/decode.d.ts","../../../node_modules/querystring/encode.d.ts","../../../node_modules/querystring/index.d.ts","../src/wixMedia.ts","../src/index.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/bytebuffer/node_modules/@types/long/index.d.ts","../../../node_modules/@types/bytebuffer/index.d.ts","../../../node_modules/@types/configstore/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/mime/Mime.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/get-port/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/jest-diff/build/cleanupSemantic.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/diffLines.d.ts","../../../node_modules/jest-diff/build/printDiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/long/index.d.ts","../../../node_modules/@types/mkdirp/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/rimraf/node_modules/@types/glob/index.d.ts","../../../node_modules/@types/rimraf/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/tmp/index.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/webpack/node_modules/@types/estree/index.d.ts","../../../node_modules/schema-utils/declarations/ValidationError.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/webpack-bundle-analyzer/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts","../../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","2f93dda35dafec68ec217c9ce67f0f4fbbbb030c055ac312641565ad60dd7e26","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"dbb73d4d99be496175cb432c74c2615f78c76f4272f1d83cba11ee0ed6dbddf0","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"e8c9f4e445a489991ca1a4232667de3ac36b07ba75ea335971fbeacf2d26fe67","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"2f6c9750131d5d2fdaba85c164a930dc07d2d7e7e8970b89d32864aa6c72620c","affectsGlobalScope":true},"56d13f223ab40f71840795f5bef2552a397a70666ee60878222407f3893fb8d0",{"version":"aeeee3998c5a730f8689f04038d41cf4245c9edbf6ef29a698e45b36e399b8ed","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","3a0c45fe95e8f0e2c5247d48acf3a522d2ef29f1ab0effb3c59a9c4fdd5edbcd","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","c993aac3b6d4a4620ef9651497069eb84806a131420e4f158ea9396fb8eb9b8c","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","06ccebc2c2db57d6bdbca63b71c4ae5e6ddc42d972fd8f122d4c1a28aa111b25",{"version":"81e8508d1e82278f5d3fee936f267e00c308af36219bfcee2631f9513c9c4017","affectsGlobalScope":true},"413a4be7f94f631235bbc83dad36c4d15e5a2ff02bca1efdbd03636d6454631b","20c468256fd68d3ef1fa53526e76d51d6aa91711e84d72c0343589b99238287e","0fac2b483246d890f74e4050c8651f43b4569519c386082d4c3838cd42f39a7c","d2f5c67858e65ebb932c2f4bd2af646f5764e8ad7f1e4fbe942a0b5ea05dc0e7","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","d61c7c41eb1960b1285e242fd102c162b65c0522985b839fadda59874308a170",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"11c8be5993cd30dbb5310d95ba6c54dbb8724221eed0c4b2e4a7d6a4f9a032dd","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","0e1b73efb8ce3afd418f04f59e26134f46418d2033dff332446fe0ee762b884a","a4210a84a82b3e7a8cec5b2f3616e46d523f4f10cc1576d8f2fb89d0987b341e",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","02b3239cf1b1ff8737e383ed5557f0247499d15f5bd21ab849b1a24687b6100c","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637","a4471d2bdba495b2a6a30b8765d5e0282fa7009d88345a9528f73c37869d3b93",{"version":"aee7013623e7632fba449d4df1da92925b27d9b816cb05546044dbfe54c88ef4","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","c9d70d3d7191a66a81cb554557f8ed1cf736ea8397c44a864fe52689de18865a","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"1aad825534c73852a1f3275e527d729a2c0640f539198fdfdfeb83b839851910","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"3a4c859c27b2aaedcd27173220d66590fa7da27ee45d84e365fb0fe7f2c2f72c","e0e59c460f1b8a364b29e839699d5aad9e71215b957b517870984879f6d6fe35","fc2094628f1cbcbf50fa85326840e29ab1d1e8156d5105fc863f3ae9c2eeb428",{"version":"8c24754e024801574a0328ec034c3333332447e81add7059834688dfa7789fde","affectsGlobalScope":true},"82eaf272c880a381f1e142408132e6a383c3e0b0fa92bee39e5fb2ff13b829f2","199bcd04e28326aa53d2b1c887695d2b57f6c7a6d174121025f3f2ac05090e36","1327e2337952ca39488fca54c9593ced6f62065b72a70e44249483f2418b2165","fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2","d086d18c6de38fff9261952724c77cfb8915e09d8e927133565f368ae3f80f6d","115d60d2b07ac7d513543b5e86e13bbf9a9524faf8bdf4985bd7a08815b46406","4a1545bdbccec0209a67da02f760fad629deedbe7d8ac9f55c93c82f95ff5449","7b52c21bd6397ca26df3b7863fa2d5014aa4bbf5621377769726bbd59956e6bc","6b93d6b362ef33a455a7852f7891a6023a8a2bbb03a81cf84bb0f2b627673148","641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717","5534c99590ae8b633509d9e4d2e1a7bf6511cb7fd1710c36d7723c2f9486aeba","431666f207d18bf924ef0c3b8e1ffabe4e050becb25a82feb9d57355a55ec43d","3ace48f46b43fec335799729ecba491fba8478ef911bbaba4e64ae91ac284082","0da6adbb172817b7101eb1fc5a93310d5b140ac7c3678e3f8891d6177d1f2ce8","95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160","912e51e547d6297d2dc7611148c27ed51dbfc544e35298bc30d846e0ae51c376","032aa0bbc88640270f29cfee50f0857ebd903dee14626eb9ec52043d75765173","d24cd8c79f8eb91b85d4a61e75188504f0d2dcd6ab8ebb87ac22a8ba0ec200b2","70055bc7cbe14541919f4b9e4c488b31cc901fa8defa32827ca3ba955a409762","155dc0abafc201d20cb2c4c54d631e13cf286f5a757fff975dc2dd7e196380fe","256eb1263ff0eae669dd39371245c70e082437ebd01dac855dda8ef5bc5a1330","b56adcca0e4ea4e2ff1a527006c90a7eecf5c0637f10b7232d5a6ffb40e1a47e","92910a77d5284b3bb6fb8fa17209d7128619b23a05d8c38b63dbe7b102552145","3084564f4782aacb5f60dee152f260a73b7ec7093432626814d019d2f871b1e9","67aaa92c35872e8ac9ca6092e0010db368656740e28e4486c2cf8064e536d057","04b00c8e04b88f9dd0aefaec6b8c42fa4d1ffdfd9a73131cb6d96b185978d536","17eab666f34227a634a3e24041ea06a7f52cd0216411de7dea6bccaef7ab62ac","1d8dc736a80d377b4ce3b78568038c796485e604cb9c5c664ac5718a5fb63c41","9df9a424cba33791a9f05592ce73c61a6ea6cd0e8d02b5d634601d169e28229c","1a1cfc77cc8eb4bf26f01d2da8059920873646a67cb359e41d5b0842cd423271","4d33127708c239d63baa8c5bdf6f23e50e4a40527bce36e5511bf6d655c873f3","2626836cf152b2231a1d800779a594695b029c19bd49a150e5e994f788a8d9e1","8315d8694e8042084de91475cdb9cc307e50c3b4154776294c899eb7e47bbd09","9fce90d4533619eb5754806401668fa487fbdf0efeeb30c43299aef5a0b5c552","a0aba12f2b210e2151aa6ff772c4c0e1115d437306e1942d7b71f0b45c48ccf3","3b59126bda683d0720973054280a28f57af77498b081985b15779fe85dc96f77","fadd926f5d4644bf9e3161c69104c9f5246e5a5cffbf9076399c3b086ee7f0d3","da2266dd4ecebf71026539d95e36674563a06f869a53ae8e837d512161013dee","e4b3c4ec3ccd3fbe8ed62f6eb3b39c9f0ad574a35eafd1a31077c1e8dd29e93d","4dbbbf7f7b59aa88c2dda60aed5a06c5a57f29b6f931f70ac53bf6cc8aac1cef","8da32928f6184ecfa071cb9aac8e886a640ec68000d72b1fc47a85b5778bdbba","c737d79aaa58f7b5225de26005f12cbfeb60d6e1c0799df85c372a5b3498b313","ccb092565dcf7e8e9eb07dabe8f77a257bb18d10745b78f09501a2826f0b9f7e","50001c90059bbb2d06aabb16ad94b44a9a3dbd0b76a7ad1fbceef53c67ed67ff","103cc813c979b72c032d57fd398bb8a7de019c009a0cd8968f90f149a21c7b09","85aeedbb5aaee4ebb373587871ef070586a3b76eedd345db9dfba6b76bb3d7c0","9fa580d16a5b066442f16778c2846ee169e7ba421f45cd841bcf6d44495b9b13","9cec7eef215c0e9a903104033b96bd6c14fb71dc8b6084c81c869c39acb84101","d204930d40cace62928e7318026791c1e0cef281a06eabde7a98ddddf57154dc","f96b8ea264d72de393165690a473893934773a21cbc29ebadf22a2bbb2e64df2","d2bb51b12f0a2f927774a9a9affed26f0cd925f440f2352c833c55f695b65890","239689e40d3935cd4f340798982febacca88f44ca353b503f654ccb4233370fb","19d4b8c121977c1ea5ad800579d5a4a69007796faa9a547add76a6e94ab91ab4","c70f356c83e8167cd33cc119e908d1d32a9736e8b9f130f8d88fd0d9d498831a","eb9d456c9ba78783d6044925a34d2edcc4ab519bc366e5b42f82fa714eb3d6ae","434ac011dacc3b2659595fbc0555800dd725e626b29cc83292abdb6517262e32","520da364d225aa51b0e7b7adb8fd1a7489a6f680f4bb37ca573024147de84100","aca1a7376ae8f37e0c2b9447633196e3e1671371193451bae8c1ff09e58bad1a","c1c25d86e86ac79472059cf4249b20e04e36f06ead16296a78df76561c9ab59d","c766a7f306fa53af2dacface548cb9590202209e19cd8677febbd66261837a7a","8c403008299cb52d4fb675e9a4cd732a52f1c4c39dba4b2d33a197192c343ea5","c37bf53cf0701fedc43913d79405dcab26450c5aa8afe8bd1b2b4a049da748ae","ebb6dcacb4caa1f40b085fda697f84860fcb74cf3bbb15d5a4f5e0dc27edc6c8","5191da1f2d2e5d8aa799ec10e571e434dc544e9a3e600eeb7dce881f88c3146a","ecf8bb458fd8aa581d044827f214f4c108bd93a32140bd2ed29ca6f2af1bf72f","544e42686ffda36f20b22830f1c1ae966ab1ba4b1f1e6bc68dc6c51d2ace867b","19e18f2211b420eef79412c0bc407119617a7e7699af24d3c70d7d88ee14b2c2","57eb3245f592f2382e2f79b5bdcd3684ba5a21bc0b411de82ef8101284aeb213","74e6286c0c9e2336ac18e6103a82e90a781985604418ff37a695bf9e91148577","53b7b0ad34feb6667b7aa137afb2f87316e8eb2c15d6327355353224fe47b55b","5b581648b2a40a6f970cd938b57270e5e2febf41bfb2813d3176a4ccd9e8fcd5","e74d4b1989725bbdd6ba672055b4e769d3eb90f294d99a683997d1fa6dd3cad5","04017eca924a3c90094ebc57fdc0d60d1c37a8592c988af07926e341fe91fc0b","08b1e0a48d64af7ea99e7911db1a540ebcfef468b4a62c589c40e2de630d786e","f473e9a749dd87ab056d387c4454faba9d21c921b744afbcf9b989043273d44f","cd674d3401bf5b290da4a5e31890305ba67a378b2c01aa8da6ac73feb0685f50","01a1038d946f7820cfb6136f103dc282e3d2cbe8ad2ea244bbe1c15a94727cfb","6123fa53525865f0f96b5e59f98bf56aba6ba4acaa171ec23676d13bc0b77020","19f96045ebaef51fbea86ab5d00f98fd18381eaf54aefe4a6d4d1cd02b866e7d","9ef452a63549b5d29f8c0a8ad8af73e33d23f388b9f34992b8ea9b8c80e2e219","44faba923fbff252b227ab2222946cc55ab7a8d2c941e56afa7d5f4dc38bebbc","005605697e492ea72f9fc309fa31ee8587e0478bbfc9bb72676559dab2f39339","a1c1195f9dd70a8de22947a275074d1c30571c61f762518291e748a7e644ac9e","f2949ec3b920d10267dff3f4803b3db920f81401182af62740a41e76cc26d8f6","23cfdfc12051eef1bddaff6d95cbda090174b36fb105c7d263acdadb76da1577","ffee2f0960a86ceada047cffc3404363bf9e7783e30848199c4d90cb210123dd","e004995dfdf9fd1a97f47cdc6b74ba0f1da186736eac03c6856412661ac6a6d4","36a29c4843b36ccf4b6f0ed12763414a3516f0176563747b99c016ab3a570922","8ce2616be99a635b1346deef302d68969006b044fc82d6992abb432a4956dc6a","ad73903fb76951a5cd4c4e91d9eed60fb9b0114b1477c2da5c55691dd78cdfe6","9db5c31039049a999fe86ec606d07f9fe0074cf9289400c8f7a5f7ffb5719e9f","ccd23805724c86c86eccc2a73e9f1438c7b0a6e08647c0f54f6c2b3f505026a5","101c66c0a04753be2f1604483f98e1f072d1a95418345d3a7593de7ddfd92fc9","ec007e489e7403a1b46f85392a94fef09533a2bb12f9b98e9d433871aac66b5a","8b26b547fc41921b66353c05c2dbdbdb1dc8d0b60a9ea60f912787818bb9c42c","dbce3e1a32c2696ee8f056b92d2442fc0370f7e3d8d95dddc88cdc8d3ca03454","15ac98e72a64754e1a2c673e630f0c3e6dc163ec18ebf326f7f88f45bb80f526","e4188659bc53e80d6c46cf76e5bdc2968a137166f1e5a853088fc6a0aed4f52b","ea3882010173f50840078eb0e7b013a8a1d9d2b23dbe1725fb0e8350c9abd856","85968e53cc97754877d8b409ca3815b1c0f1c4317d41d47b7975a31e8f3a5bf4","b318a3e94029ffc01f1a3eb1797647bf7487a2a179d4da963043c42fdaf0b4f5","05f82884018fbd03c6512b56d11a712c0282dd1df6338473a2ca5bcacffa8fb9","bed07301895129f3c4ae6bc55e681231fe8c4819d250cda58bef0e891579db20","17e1bdeca5db4adaaa9804ea96b6e7ea02f6b5c8142418b1d5882f8ec4c5b14b","9fc947627f070ce2adfc2cb7bfabd0a4bf1157b2942daf83f4f2dced2eaacd8b","dd432baba70577d8ef35db945b4e5e536013d73e3e8595683aafc277bf226f75",{"version":"ddba046134fa71602860e4fd45baba8b649e13406a38889bede42cb930988351","affectsGlobalScope":true},"1ef94e1e6897a9c8e44cbe2120b122b0d92246c6cc3692d7a4054ba48a75d03e","14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","cd51ceafea7762ad639afb3ca5b68e1e4ffeaacaa402d7ef2cae17016e29e098","1b8357b3fef5be61b5de6d6a4805a534d68fe3e040c11f1944e27d4aec85936a","4a15fc59b27b65b9894952048be2afc561865ec37606cd0f5e929ee4a102233b",{"version":"744e7c636288493667d553c8f8ebd666ccbc0e715df445a4a7c4a48812f20544","affectsGlobalScope":true},"c05dcfbd5bd0abcefa3ad7d2931424d4d8090bc55bbe4f5c8acb8d2ca5886b2e","326da4aebf555d54b995854ff8f3432f63ba067be354fa16c6e1f50daa0667de","90748076a143bbeb455f8d5e8ad1cc451424c4856d41410e491268a496165256","76e3f3a30c533bf20840d4185ce2d143dc18ca955b64400ac09670a89d388198","144dfcee38ebc38aae93a85bc47211c9268d529b099127b74d61242ec5c17f35","2cf38989b23031694f04308b6797877534a49818b2f5257f4a5d824e7ea82a5a","f981ffdbd651f67db134479a5352dac96648ca195f981284e79dc0a1dbc53fd5","e4ace1cf5316aa7720e58c8dd511ba86bab1c981336996fb694fa64b8231d5f0","a1c85a61ff2b66291676ab84ae03c1b1ff7139ffde1942173f6aee8dc4ee357b","f35a727758da36dd885a70dd13a74d9167691aaff662d50eaaf66ed591957702","116205156fb819f2afe33f9c6378ea11b6123fa3090f858211c23f667fff75da","8fe68442c15f8952b8816fa4e7e6bd8d5c45542832206bd7bcf3ebdc77d1c3f3","3add9402f56a60e9b379593f69729831ac0fc9eae604b6fafde5fa86d2f8a4b9","cc28c8b188905e790de427f3cd00b96734c9c662fb849d68ff9d5f0327165c0d","da2aa652d2bf03cc042e2ff31e4194f4f18f042b8344dcb2568f761daaf7869f","03ed68319c97cd4ce8f1c4ded110d9b40b8a283c3242b9fe934ccfa834e45572","de2b56099545de410af72a7e430ead88894e43e4f959de29663d4d0ba464944d","eec9e706eef30b4f1c6ff674738d3fca572829b7fa1715f37742863dabb3d2f2","cec67731fce8577b0a90aa67ef0522ddb9f1fd681bece50cdcb80a833b4ed06f","a14679c24962a81ef24b6f4e95bbc31601551f150d91af2dc0bce51f7961f223","3f4d43bb3f61d173a4646c19557e090a06e9a2ec9415313a6d84af388df64923","18b86125c67d99150f54225df07349ddd07acde086b55f3eeac1c34c81e424d8","d5a5025f04e7a3264ecfa3030ca9a3cb0353450f1915a26d5b84f596240a11cd","03f4449c691dd9c51e42efd51155b63c8b89a5f56b5cf3015062e2f818be8959","23b213ec3af677b3d33ec17d9526a88d5f226506e1b50e28ce4090fb7e4050a8","f0abf96437a6e57b9751a792ba2ebb765729a40d0d573f7f6800b305691b1afb","7d30aee3d35e64b4f49c235d17a09e7a7ce2961bebb3996ee1db5aa192f3feba","eb1625bab70cfed00931a1e09ecb7834b61a666b0011913b0ec24a8e219023ef","1a923815c127b27f7f375c143bb0d9313ccf3c66478d5d2965375eeb7da72a4c","4f92df9d64e5413d4b34020ae6b382edda84347daec97099e7c008a9d5c0910b","fcc438e50c00c9e865d9c1777627d3fdc1e13a4078c996fb4b04e67e462648c8","d0f07efa072420758194c452edb3f04f8eabc01cd4b3884a23e7274d4e2a7b69","7086cca41a87b3bf52c6abfc37cda0a0ec86bb7e8e5ef166b07976abec73fa5e","4571a6886b4414403eacdd1b4cdbd854453626900ece196a173e15fb2b795155","c122227064c2ebf6a5bd2800383181395b56bb71fd6683d5e92add550302e45f","60f476f1c4de44a08d6a566c6f1e1b7de6cbe53d9153c9cc2284ca0022e21fba","84315d5153613eeb4b34990fb3bc3a1261879a06812ee7ae481141e30876d8dc","4f0781ec008bb24dc1923285d25d648ea48fb5a3c36d0786e2ee82eb00eff426","8fefaef4be2d484cdfc35a1b514ee7e7bb51680ef998fb9f651f532c0b169e6b","8be5c5be3dbf0003a628f99ad870e31bebc2364c28ea3b96231089a94e09f7a6","6626bbc69c25a92f6d32e6d2f25038f156b4c2380cbf29a420f7084fb1d2f7d7","f351eaa598ba2046e3078e5480a7533be7051e4db9212bb40f4eeb84279aa24d","5126032fe6e999f333827ee8e67f7ca1d5f3d6418025878aa5ebf13b499c2024","4ce53edb8fb1d2f8b2f6814084b773cdf5846f49bf5a426fbe4029327bda95bf","1edc9192dfc277c60b92525cdfa1980e1bfd161ae77286c96777d10db36be73c","1573cae51ae8a5b889ec55ecb58e88978fe251fd3962efa5c4fdb69ce00b23ba","75a7db3b7ddf0ca49651629bb665e0294fda8d19ba04fddc8a14d32bb35eb248","f2d1ac34b05bb6ce326ea1702befb0216363f1d5eccdd1b4b0b2f5a7e953ed8a","789665f0cd78bc675a31140d8f133ec6a482d753a514012fe1bb7f86d0a21040","bb30fb0534dceb2e41a884c1e4e2bb7a0c668dadd148092bba9ff15aafb94790","6ef829366514e4a8f75ce55fa390ebe080810b347e6f4a87bbeecb41e612c079","8f313aa8055158f08bd75e3a57161fa473a50884c20142f3318f89f19bfc0373","e789eb929b46299187312a01ff71905222f67907e546e491952c384b6f956a63","a0147b607f8c88a5433a5313cdc10443c6a45ed430e1b0a335a413dc2b099fd5","a86492d82baf906c071536e8de073e601eaa5deed138c2d9c42d471d72395d7e","6b1071c06abcbe1c9f60638d570fdbfe944b6768f95d9f28ebc06c7eec9b4087","92eb8a98444729aa61be5e6e489602363d763da27d1bcfdf89356c1d360484da","1285ddb279c6d0bc5fe46162a893855078ae5b708d804cd93bfc4a23d1e903d9","d729b8b400507b9b51ff40d11e012379dbf0acd6e2f66bf596a3bc59444d9bf1","fc3ee92b81a6188a545cba5c15dc7c5d38ee0aaca3d8adc29af419d9bdb1fdb9","a14371dc39f95c27264f8eb02ce2f80fd84ac693a2750983ac422877f0ae586d","755bcc456b4dd032244b51a8b4fe68ee3b2d2e463cf795f3fde970bb3f269fb1","c00b402135ef36fb09d59519e34d03445fd6541c09e68b189abb64151f211b12","e08e58ac493a27b29ceee80da90bb31ec64341b520907d480df6244cdbec01f8","c0fe2b1135ca803efa203408c953e1e12645b8065e1a4c1336ad8bb11ea1101b","f3dedc92d06e0fdc43e76c2e1acca21759dd63d2572c9ec78a5188249965d944","25b1108faedaf2043a97a76218240b1b537459bbca5ae9e2207c236c40dcfdef","a1d1e49ccd2ac07ed8a49a3f98dfd2f7357cf03649b9e348b58b97bb75116f18","7ad042f7d744ccfbcf6398216203c7712f01359d6fd4348c8bd8df8164e98096","0e0b8353d6d7f7cc3344adbabf3866e64f2f2813b23477254ba51f69e8fdf0eb","8e7653c13989dca094412bc4de20d5c449457fc92735546331d5e9cdd79ac16e","189dedb255e41c8556d0d61d7f1c18506501896354d0925cbd47060bcddccab1","48f0819c2e14214770232f1ab0058125bafdde1d04c4be84339d5533098bf60a","2641aff32336e35a5b702aa2d870a0891da29dc1c19ae48602678e2050614041","e133066d15e9e860ca96220a548dee28640039a8ac33a9130d0f83c814a78605","a542f23895d69c7e32f5336a1447815e7ac15a5a356661fbbc4412756ed0a40f","ccbcc47e837b87957de405c764227e061377c549bd0e4d80b27749f985366561","97b0bca2aef1271b6874a7acfbcba5144f35dd2e0ee1c219452cd82347c00b6c","747ffb802a5d325dcf1054c0ec2f5832ed737a6100107d5523b79e02d654cbbe","478aa60ea3cd34b072d07b50ed84a401878936650f3e0c92cc183a19c23f8b61","3fb039aafdf6fbd779c8e31b0c493f9c49b65a308104b25dc9941bd1f4ca45b6","8dbd3c72609fd60422d16ed83f44ad480439b943258884f843261288372ba68e","241a2bc3391cff2756dc4fc4150d9fca616543285622f5a93f42bf6f1b82d5c1","9640e1c4b5cf92193e06290ae5dcec96ff25729abe853281a7b516c4da6f82d9","ad7e61eca7f2f8bf47e72695f9f6663b75e41d87ef49abdb17c0cb843862f8aa","ecba2e44af95b0599c269a92628cec22e752868bce37396740deb51a5c547a26","46a9fb41a8f3bc7539eeebc15a6e04b9e55d7537a081615ad3614220d34c3e0f","6f4456249b86b88608782dd407b65425bd2159d8056a52e2653431d410e35707","386d62b92949d4126069693aafec0964f0b5e6af3d0c19c4006f5eced6ca14eb","ef178bff7cb17db8a2f3535f947f54cf6c22de8f87f9727cb340754c56c212ec","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","a46a2e69d12afe63876ec1e58d70e5dbee6d3e74132f4468f570c3d69f809f1c","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","c7597e9b1b1eac80e5bca7d136321ab80804ff37f026bc84a8a8553904db9847","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","99c9b6d28e44d05b34760e1311ec35b47e5b5a0b1ad9ce8b8eb0d6cdfb7c7e61","82811dfe87c4591e09a5347247c518bd9eab15cffedaa719ef17ae26146b71f3","e3cb1b4d91d7fd308d69b4af172c80c9455e2ce52970d7f6f817d2132e7a72da","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"ae3fe461989bbd951344efc1f1fe932360ce7392e6126bdb225a82a1bbaf15ee","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","37a4038e69fb61043e363140b58d7d517d6f99f274adad0774f226ea2ee8c903",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"946bd1737d9412395a8f24414c70f18660b84a75a12b0b448e6eb1a2161d06dd","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","c84d0f714fe122193c21c0f0917e873beb3a03fa3422ceb2fbd1ebc0558790a0","e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","f47887b61c6cf2f48746980390d6cb5b8013518951d912cfb37fe748071942be","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","00c886d849a8a4b7ceb0a8a6c7a36b168a7a44b2f93fe30c6c30dae71c05709f","48d9ba210c07f79960e0a193b3cb05e540d83837aa3f5006f02b12e92bebf0d4","5df18146efb27157c4592eade8b8b55a937ed70d6f4081f78ac613cf8d6912dc","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","6702a1cd8818cb22ee95c85dcf2c31c117bde892e1afd2bc254bd720f4c6263c","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"e8465811693dfe4e96ef2b3dffda539d6edfe896961b7af37b44db2c0e48532b","6396a7a06f3ef0fc31a7c89330e015146b78a2256b030c698b6d404594c37b8f","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3034db2891e04de367126370bebec88ac3b4e3b1eb8b7dc30671ccddb717eed2","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","f26c7e4aa5603123034d9ee4459f43d49daa3d96fdd12999d45d7fa16e584cfe","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","721124f5db1f4a42da2308dfa1414d2e99055d2dfc59de7bf2e0b6ac64356c0e","0d7569149194d622212c21d5d162b0715d5a6ca764cebae7145fdbaff1e07311","cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","e09496173b22a2c0b21983b94b6ae6e30251370f1c5b8a3d30128884e533f25c","2583a91339f7d3e0d2935b1a9f501adaee370c3ae9f1f94154641703288bc5a7","b4358a89fcd9c579f84a6c68e2ce44ca91b07e4db3f8f403c2b7a72c1a1e04b6","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438","65dfa4bc49ccd1355789abb6ae215b302a5b050fdee9651124fe7e826f33113c"],"options":{"declaration":true,"declarationDir":"./types","declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"importHelpers":true,"jsx":2,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./esm","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":4},"fileIdsList":[[96,309],[96],[96,104,105],[96,104,106],[96,104,105,106,107],[96,104],[96,108],[96,309,310,311,312,313],[96,309,311],[70,96,103,315],[62,96,103],[96,103,318],[95,96,103,323],[70,96,103],[96,327,329],[96,326,327,328],[67,70,96,103,321,322],[96,316,322,323,333],[67,68,96,103,336],[68,96,103],[67,70,72,75,84,95,96,103],[96,341],[96,342],[96,347,352],[96,355,357,358,359,360,361,362,363,364,365,366,367],[96,355,356,358,359,360,361,362,363,364,365,366,367],[96,356,357,358,359,360,361,362,363,364,365,366,367],[96,355,356,357,359,360,361,362,363,364,365,366,367],[96,355,356,357,358,360,361,362,363,364,365,366,367],[96,355,356,357,358,359,361,362,363,364,365,366,367],[96,355,356,357,358,359,360,362,363,364,365,366,367],[96,355,356,357,358,359,360,361,363,364,365,366,367],[96,355,356,357,358,359,360,361,362,364,365,366,367],[96,355,356,357,358,359,360,361,362,363,365,366,367],[96,355,356,357,358,359,360,361,362,363,364,366,367],[96,355,356,357,358,359,360,361,362,363,364,365,367],[96,355,356,357,358,359,360,361,362,363,364,365,366],[96,332],[96,331],[52,96],[55,96],[56,61,96],[57,67,68,75,84,95,96],[57,58,67,75,96],[59,96],[60,61,68,76,96],[61,84,92,96],[62,64,67,75,96],[63,96],[64,65,96],[66,67,96],[67,96],[67,68,69,84,95,96],[67,68,69,84,96],[70,75,84,95,96],[67,68,70,71,75,84,92,95,96],[70,72,84,92,95,96],[52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102],[67,73,96],[74,95,96],[64,67,75,84,96],[76,96],[77,96],[55,78,96],[79,94,96,100],[80,96],[81,96],[67,82,96],[82,83,96,98],[67,84,85,86,96],[84,86,96],[84,85,96],[87,96],[88,96],[67,90,91,96],[90,91,96],[61,75,92,96],[93,96],[75,94,96],[56,70,81,95,96],[61,96],[84,96,97],[96,98],[96,99],[56,61,67,69,78,84,95,96,98,100],[84,96,101],[57,96,103],[68,96,103,374],[68,96,334],[70,96,103,332],[70,96,103,387],[67,70,72,84,92,95,96,101,103],[96,390],[67,84,96,103],[96,296],[96,296,297,298,299,302],[96,296,297,298],[96,296,300],[96,301],[96,212],[96,103,109,208],[96,209],[96,111,112,114,121],[96,121,122],[96,122,123,182,183],[96,111,114,122],[96,112,122],[96,111,114,116,117,118,120,122,123],[96,117,124,138],[96,111,114,118,119,120,122],[96,111,112,118,120,124],[96,110,125,129,137,139,141,181,184,207],[96,112,113],[96,112,113,114,115,121,130,131,132,133,134,135,136],[96,112,113,114],[96,112],[96,111,112,113,114,132,208],[96,114],[96,112,114,121],[96,111,114],[96,140],[96,111,114,118,120,124],[96,111,114,116,117,120],[96,111,114,115,118],[96,117,118,119,120,126,127,128],[96,118],[96,111,114,118,119],[96,120,122],[96,111,114,118,119,120,135],[96,122],[96,111,114,118],[96,112,114,120,133],[96,120,185],[96,118,122],[96,111,114,120],[96,120],[96,114,120,122],[96,111,115],[96,114,118,120],[96,142,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206],[96,118,120],[96,111,114,118,119,120,122,135,142],[96,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],[96,135,143],[96,143],[96,111,114,120,122,142,143],[96,345,348],[96,345,348,349,350],[96,347],[96,344,351],[96,346],[96,304,305],[96,328,384],[96,384],[96,328,382,383],[96,216,217,218,219,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,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,288,289,290,291,292,293],[96,242],[96,242,255],[96,220,269],[96,270],[96,221,244],[96,244],[96,220],[96,273],[96,253],[96,220,261,269],[96,264],[96,266],[96,216],[96,236],[96,217,218,257],[96,277],[96,275],[96,221,222],[96,223],[96,234],[96,220,225],[96,279],[96,221],[96,273,282,285],[96,221,222,266],[56,70,75,92,96,381,382,384,385,386],[96,210],[96,215,295,307],[96,213],[96,215,294],[81,96,215,303]],"referencedMap":[[311,1],[309,2],[106,3],[107,4],[108,5],[105,6],[104,2],[109,7],[314,8],[310,1],[312,9],[313,1],[316,10],[317,11],[319,12],[318,2],[320,2],[324,13],[315,14],[325,2],[330,15],[326,2],[329,16],[327,2],[323,17],[334,18],[335,2],[337,19],[338,20],[339,2],[340,21],[341,2],[342,22],[343,23],[353,24],[328,2],[354,2],[356,25],[357,26],[355,27],[358,28],[359,29],[360,30],[361,31],[362,32],[363,33],[364,34],[365,35],[366,36],[367,37],[368,2],[331,38],[332,39],[336,2],[369,20],[52,40],[53,40],[55,41],[56,42],[57,43],[58,44],[59,45],[60,46],[61,47],[62,48],[63,49],[64,50],[65,50],[66,51],[67,52],[68,53],[69,54],[54,2],[102,2],[70,55],[71,56],[72,57],[103,58],[73,59],[74,60],[75,61],[76,62],[77,63],[78,64],[79,65],[80,66],[81,67],[82,68],[83,69],[84,70],[86,71],[85,72],[87,73],[88,74],[89,2],[90,75],[91,76],[92,77],[93,78],[94,79],[95,80],[96,81],[97,82],[98,83],[99,84],[100,85],[101,86],[370,2],[371,2],[372,2],[212,87],[322,2],[321,2],[373,2],[375,88],[374,19],[376,89],[333,90],[377,14],[378,2],[379,2],[388,91],[389,92],[390,2],[391,93],[392,94],[299,95],[303,96],[300,97],[297,95],[298,2],[301,98],[302,99],[296,2],[213,100],[209,101],[210,102],[383,2],[380,2],[344,2],[122,103],[123,104],[184,105],[183,106],[182,107],[124,108],[139,109],[138,110],[125,111],[208,112],[111,2],[117,2],[116,2],[114,113],[115,2],[137,114],[131,2],[132,115],[121,116],[133,117],[136,118],[130,119],[134,118],[112,2],[113,2],[135,120],[141,121],[140,122],[118,123],[119,124],[129,125],[127,126],[126,126],[120,127],[128,128],[142,129],[203,130],[197,131],[190,132],[189,133],[198,134],[199,118],[191,135],[204,136],[206,137],[185,138],[186,120],[187,139],[207,140],[188,133],[192,136],[193,141],[200,118],[201,116],[202,141],[194,139],[205,118],[195,131],[196,120],[143,142],[181,143],[146,144],[147,144],[148,144],[149,144],[150,144],[151,144],[152,144],[153,144],[172,144],[154,144],[155,144],[156,144],[157,144],[158,144],[159,144],[178,144],[160,144],[161,144],[162,144],[163,144],[177,144],[164,144],[175,144],[176,144],[165,144],[166,144],[167,144],[173,144],[174,144],[168,144],[169,144],[170,144],[171,144],[179,144],[180,144],[145,145],[144,146],[110,2],[345,2],[349,147],[351,148],[350,147],[348,149],[352,150],[347,151],[346,2],[304,2],[305,2],[306,152],[382,153],[385,154],[384,155],[386,2],[215,2],[294,156],[243,157],[256,158],[218,2],[270,159],[272,160],[271,160],[245,161],[244,2],[246,162],[273,163],[277,164],[275,164],[254,165],[253,2],[262,163],[221,163],[249,2],[290,166],[265,167],[267,168],[285,163],[220,169],[237,170],[252,2],[287,2],[258,171],[274,164],[278,172],[276,173],[291,2],[260,2],[234,169],[226,2],[225,174],[250,163],[251,163],[224,175],[257,2],[219,2],[236,2],[264,2],[292,176],[231,163],[232,177],[279,160],[281,178],[280,178],[216,2],[235,2],[242,2],[233,163],[263,2],[230,2],[289,2],[229,2],[227,179],[228,2],[266,2],[259,2],[286,180],[240,174],[238,174],[239,174],[255,2],[222,2],[282,164],[284,172],[283,173],[269,2],[268,181],[261,2],[248,2],[288,2],[293,2],[217,2],[247,2],[241,2],[223,174],[11,2],[12,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[4,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[5,2],[30,2],[31,2],[32,2],[33,2],[6,2],[34,2],[35,2],[36,2],[37,2],[7,2],[42,2],[38,2],[39,2],[40,2],[41,2],[8,2],[46,2],[43,2],[44,2],[45,2],[47,2],[9,2],[48,2],[49,2],[50,2],[1,2],[10,2],[51,2],[381,2],[387,182],[211,183],[308,184],[214,185],[295,186],[307,187]],"exportedModulesMap":[[311,1],[309,2],[106,3],[107,4],[108,5],[105,6],[104,2],[109,7],[314,8],[310,1],[312,9],[313,1],[316,10],[317,11],[319,12],[318,2],[320,2],[324,13],[315,14],[325,2],[330,15],[326,2],[329,16],[327,2],[323,17],[334,18],[335,2],[337,19],[338,20],[339,2],[340,21],[341,2],[342,22],[343,23],[353,24],[328,2],[354,2],[356,25],[357,26],[355,27],[358,28],[359,29],[360,30],[361,31],[362,32],[363,33],[364,34],[365,35],[366,36],[367,37],[368,2],[331,38],[332,39],[336,2],[369,20],[52,40],[53,40],[55,41],[56,42],[57,43],[58,44],[59,45],[60,46],[61,47],[62,48],[63,49],[64,50],[65,50],[66,51],[67,52],[68,53],[69,54],[54,2],[102,2],[70,55],[71,56],[72,57],[103,58],[73,59],[74,60],[75,61],[76,62],[77,63],[78,64],[79,65],[80,66],[81,67],[82,68],[83,69],[84,70],[86,71],[85,72],[87,73],[88,74],[89,2],[90,75],[91,76],[92,77],[93,78],[94,79],[95,80],[96,81],[97,82],[98,83],[99,84],[100,85],[101,86],[370,2],[371,2],[372,2],[212,87],[322,2],[321,2],[373,2],[375,88],[374,19],[376,89],[333,90],[377,14],[378,2],[379,2],[388,91],[389,92],[390,2],[391,93],[392,94],[299,95],[303,96],[300,97],[297,95],[298,2],[301,98],[302,99],[296,2],[213,100],[209,101],[210,102],[383,2],[380,2],[344,2],[122,103],[123,104],[184,105],[183,106],[182,107],[124,108],[139,109],[138,110],[125,111],[208,112],[111,2],[117,2],[116,2],[114,113],[115,2],[137,114],[131,2],[132,115],[121,116],[133,117],[136,118],[130,119],[134,118],[112,2],[113,2],[135,120],[141,121],[140,122],[118,123],[119,124],[129,125],[127,126],[126,126],[120,127],[128,128],[142,129],[203,130],[197,131],[190,132],[189,133],[198,134],[199,118],[191,135],[204,136],[206,137],[185,138],[186,120],[187,139],[207,140],[188,133],[192,136],[193,141],[200,118],[201,116],[202,141],[194,139],[205,118],[195,131],[196,120],[143,142],[181,143],[146,144],[147,144],[148,144],[149,144],[150,144],[151,144],[152,144],[153,144],[172,144],[154,144],[155,144],[156,144],[157,144],[158,144],[159,144],[178,144],[160,144],[161,144],[162,144],[163,144],[177,144],[164,144],[175,144],[176,144],[165,144],[166,144],[167,144],[173,144],[174,144],[168,144],[169,144],[170,144],[171,144],[179,144],[180,144],[145,145],[144,146],[110,2],[345,2],[349,147],[351,148],[350,147],[348,149],[352,150],[347,151],[346,2],[304,2],[305,2],[306,152],[382,153],[385,154],[384,155],[386,2],[215,2],[294,156],[243,157],[256,158],[218,2],[270,159],[272,160],[271,160],[245,161],[244,2],[246,162],[273,163],[277,164],[275,164],[254,165],[253,2],[262,163],[221,163],[249,2],[290,166],[265,167],[267,168],[285,163],[220,169],[237,170],[252,2],[287,2],[258,171],[274,164],[278,172],[276,173],[291,2],[260,2],[234,169],[226,2],[225,174],[250,163],[251,163],[224,175],[257,2],[219,2],[236,2],[264,2],[292,176],[231,163],[232,177],[279,160],[281,178],[280,178],[216,2],[235,2],[242,2],[233,163],[263,2],[230,2],[289,2],[229,2],[227,179],[228,2],[266,2],[259,2],[286,180],[240,174],[238,174],[239,174],[255,2],[222,2],[282,164],[284,172],[283,173],[269,2],[268,181],[261,2],[248,2],[288,2],[293,2],[217,2],[247,2],[241,2],[223,174],[11,2],[12,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[4,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[5,2],[30,2],[31,2],[32,2],[33,2],[6,2],[34,2],[35,2],[36,2],[37,2],[7,2],[42,2],[38,2],[39,2],[40,2],[41,2],[8,2],[46,2],[43,2],[44,2],[45,2],[47,2],[9,2],[48,2],[49,2],[50,2],[1,2],[10,2],[51,2],[381,2],[387,182],[211,183],[308,184],[214,185],[295,186],[307,187]],"semanticDiagnosticsPerFile":[311,309,106,107,108,105,104,109,314,310,312,313,316,317,319,318,320,324,315,325,330,326,329,327,323,334,335,337,338,339,340,341,342,343,353,328,354,356,357,355,358,359,360,361,362,363,364,365,366,367,368,331,332,336,369,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,54,102,70,71,72,103,73,74,75,76,77,78,79,80,81,82,83,84,86,85,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,370,371,372,212,322,321,373,375,374,376,333,377,378,379,388,389,390,391,392,299,303,300,297,298,301,302,296,213,209,210,383,380,344,122,123,184,183,182,124,139,138,125,208,111,117,116,114,115,137,131,132,121,133,136,130,134,112,113,135,141,140,118,119,129,127,126,120,128,142,203,197,190,189,198,199,191,204,206,185,186,187,207,188,192,193,200,201,202,194,205,195,196,143,181,146,147,148,149,150,151,152,153,172,154,155,156,157,158,159,178,160,161,162,163,177,164,175,176,165,166,167,173,174,168,169,170,171,179,180,145,144,110,345,349,351,350,348,352,347,346,304,305,306,382,385,384,386,215,294,243,256,218,270,272,271,245,244,246,273,277,275,254,253,262,221,249,290,265,267,285,220,237,252,287,258,274,278,276,291,260,234,226,225,250,251,224,257,219,236,264,292,231,232,279,281,280,216,235,242,233,263,230,289,229,227,228,266,259,286,240,238,239,255,222,282,284,283,269,268,261,248,288,293,217,247,241,223,11,12,14,13,2,15,16,17,18,19,20,21,22,3,4,26,23,24,25,27,28,29,5,30,31,32,33,6,34,35,36,37,7,42,38,39,40,41,8,46,43,44,45,47,9,48,49,50,1,10,51,381,387,211,308,214,295,307]},"version":"4.6.4"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/@types/node/assert.d.ts","../../../node_modules/@types/node/assert/strict.d.ts","../../../node_modules/@types/node/globals.d.ts","../../../node_modules/@types/node/async_hooks.d.ts","../../../node_modules/@types/node/buffer.d.ts","../../../node_modules/@types/node/child_process.d.ts","../../../node_modules/@types/node/cluster.d.ts","../../../node_modules/@types/node/console.d.ts","../../../node_modules/@types/node/constants.d.ts","../../../node_modules/@types/node/crypto.d.ts","../../../node_modules/@types/node/dgram.d.ts","../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/@types/node/dns.d.ts","../../../node_modules/@types/node/dns/promises.d.ts","../../../node_modules/@types/node/domain.d.ts","../../../node_modules/@types/node/events.d.ts","../../../node_modules/@types/node/fs.d.ts","../../../node_modules/@types/node/fs/promises.d.ts","../../../node_modules/@types/node/http.d.ts","../../../node_modules/@types/node/http2.d.ts","../../../node_modules/@types/node/https.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/module.d.ts","../../../node_modules/@types/node/net.d.ts","../../../node_modules/@types/node/os.d.ts","../../../node_modules/@types/node/path.d.ts","../../../node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/@types/node/process.d.ts","../../../node_modules/@types/node/punycode.d.ts","../../../node_modules/@types/node/querystring.d.ts","../../../node_modules/@types/node/readline.d.ts","../../../node_modules/@types/node/repl.d.ts","../../../node_modules/@types/node/stream.d.ts","../../../node_modules/@types/node/stream/promises.d.ts","../../../node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/@types/node/stream/web.d.ts","../../../node_modules/@types/node/string_decoder.d.ts","../../../node_modules/@types/node/test.d.ts","../../../node_modules/@types/node/timers.d.ts","../../../node_modules/@types/node/timers/promises.d.ts","../../../node_modules/@types/node/tls.d.ts","../../../node_modules/@types/node/trace_events.d.ts","../../../node_modules/@types/node/tty.d.ts","../../../node_modules/@types/node/url.d.ts","../../../node_modules/@types/node/util.d.ts","../../../node_modules/@types/node/v8.d.ts","../../../node_modules/@types/node/vm.d.ts","../../../node_modules/@types/node/wasi.d.ts","../../../node_modules/@types/node/worker_threads.d.ts","../../../node_modules/@types/node/zlib.d.ts","../../../node_modules/@types/node/globals.global.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@stylable/runtime/dist/types.d.ts","../../../node_modules/@stylable/runtime/dist/keyed-list-renderer.d.ts","../../../node_modules/@stylable/runtime/dist/css-runtime-renderer.d.ts","../../../node_modules/@stylable/runtime/dist/css-runtime-stylesheet.d.ts","../../../node_modules/@stylable/runtime/dist/index.d.ts","../../../node_modules/@stylable/runtime/stylesheet.d.ts","../../../node_modules/graphql/version.d.ts","../../../node_modules/graphql/jsutils/Maybe.d.ts","../../../node_modules/graphql/language/source.d.ts","../../../node_modules/graphql/language/tokenKind.d.ts","../../../node_modules/graphql/language/ast.d.ts","../../../node_modules/graphql/language/directiveLocation.d.ts","../../../node_modules/graphql/jsutils/PromiseOrValue.d.ts","../../../node_modules/graphql/jsutils/Path.d.ts","../../../node_modules/graphql/type/definition.d.ts","../../../node_modules/graphql/type/directives.d.ts","../../../node_modules/graphql/type/schema.d.ts","../../../node_modules/graphql/language/location.d.ts","../../../node_modules/graphql/error/GraphQLError.d.ts","../../../node_modules/graphql/error/formatError.d.ts","../../../node_modules/graphql/execution/execute.d.ts","../../../node_modules/graphql/graphql.d.ts","../../../node_modules/graphql/type/scalars.d.ts","../../../node_modules/graphql/type/introspection.d.ts","../../../node_modules/graphql/type/validate.d.ts","../../../node_modules/graphql/type/index.d.ts","../../../node_modules/graphql/language/printLocation.d.ts","../../../node_modules/graphql/language/kinds.d.ts","../../../node_modules/graphql/language/lexer.d.ts","../../../node_modules/graphql/language/parser.d.ts","../../../node_modules/graphql/language/printer.d.ts","../../../node_modules/graphql/language/visitor.d.ts","../../../node_modules/graphql/language/predicates.d.ts","../../../node_modules/graphql/language/index.d.ts","../../../node_modules/graphql/execution/values.d.ts","../../../node_modules/graphql/execution/index.d.ts","../../../node_modules/graphql/subscription/subscribe.d.ts","../../../node_modules/graphql/subscription/index.d.ts","../../../node_modules/graphql/utilities/TypeInfo.d.ts","../../../node_modules/graphql/validation/ValidationContext.d.ts","../../../node_modules/graphql/validation/validate.d.ts","../../../node_modules/graphql/validation/specifiedRules.d.ts","../../../node_modules/graphql/validation/rules/ExecutableDefinitionsRule.d.ts","../../../node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.d.ts","../../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.d.ts","../../../node_modules/graphql/validation/rules/KnownArgumentNamesRule.d.ts","../../../node_modules/graphql/validation/rules/KnownDirectivesRule.d.ts","../../../node_modules/graphql/validation/rules/KnownFragmentNamesRule.d.ts","../../../node_modules/graphql/validation/rules/KnownTypeNamesRule.d.ts","../../../node_modules/graphql/validation/rules/LoneAnonymousOperationRule.d.ts","../../../node_modules/graphql/validation/rules/NoFragmentCyclesRule.d.ts","../../../node_modules/graphql/validation/rules/NoUndefinedVariablesRule.d.ts","../../../node_modules/graphql/validation/rules/NoUnusedFragmentsRule.d.ts","../../../node_modules/graphql/validation/rules/NoUnusedVariablesRule.d.ts","../../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.d.ts","../../../node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.d.ts","../../../node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.d.ts","../../../node_modules/graphql/validation/rules/ScalarLeafsRule.d.ts","../../../node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueArgumentNamesRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueFragmentNamesRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueOperationNamesRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueVariableNamesRule.d.ts","../../../node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.d.ts","../../../node_modules/graphql/validation/rules/VariablesAreInputTypesRule.d.ts","../../../node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.d.ts","../../../node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueOperationTypesRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueTypeNamesRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.d.ts","../../../node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.d.ts","../../../node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.d.ts","../../../node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.d.ts","../../../node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.d.ts","../../../node_modules/graphql/validation/index.d.ts","../../../node_modules/graphql/error/syntaxError.d.ts","../../../node_modules/graphql/error/locatedError.d.ts","../../../node_modules/graphql/error/index.d.ts","../../../node_modules/graphql/utilities/getIntrospectionQuery.d.ts","../../../node_modules/graphql/utilities/getOperationAST.d.ts","../../../node_modules/graphql/utilities/getOperationRootType.d.ts","../../../node_modules/graphql/utilities/introspectionFromSchema.d.ts","../../../node_modules/graphql/utilities/buildClientSchema.d.ts","../../../node_modules/graphql/utilities/buildASTSchema.d.ts","../../../node_modules/graphql/utilities/extendSchema.d.ts","../../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts","../../../node_modules/graphql/utilities/printSchema.d.ts","../../../node_modules/graphql/utilities/typeFromAST.d.ts","../../../node_modules/graphql/utilities/valueFromAST.d.ts","../../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts","../../../node_modules/graphql/utilities/astFromValue.d.ts","../../../node_modules/graphql/utilities/coerceInputValue.d.ts","../../../node_modules/graphql/utilities/concatAST.d.ts","../../../node_modules/graphql/utilities/separateOperations.d.ts","../../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts","../../../node_modules/graphql/utilities/typeComparators.d.ts","../../../node_modules/graphql/utilities/assertValidName.d.ts","../../../node_modules/graphql/utilities/findBreakingChanges.d.ts","../../../node_modules/graphql/utilities/typedQueryDocumentNode.d.ts","../../../node_modules/graphql/utilities/findDeprecatedUsages.d.ts","../../../node_modules/graphql/utilities/index.d.ts","../../../node_modules/graphql/index.d.ts","../../../node_modules/@wix/yoshi-common/types.d.ts","../../../node_modules/@wix/yoshi-flow-library/types.d.ts","../src/external-types.d.ts","../../../node_modules/@types/puppeteer/index.d.ts","../../../node_modules/@wix/jest-yoshi-preset/types.d.ts","../src/test-types.d.ts","../../../node_modules/tslib/tslib.d.ts","../../../node_modules/type-fest/source/primitive.d.ts","../../../node_modules/type-fest/source/typed-array.d.ts","../../../node_modules/type-fest/source/basic.d.ts","../../../node_modules/type-fest/source/observable-like.d.ts","../../../node_modules/type-fest/source/internal.d.ts","../../../node_modules/type-fest/source/except.d.ts","../../../node_modules/type-fest/source/simplify.d.ts","../../../node_modules/type-fest/source/writable.d.ts","../../../node_modules/type-fest/source/mutable.d.ts","../../../node_modules/type-fest/source/merge.d.ts","../../../node_modules/type-fest/source/merge-exclusive.d.ts","../../../node_modules/type-fest/source/require-at-least-one.d.ts","../../../node_modules/type-fest/source/require-exactly-one.d.ts","../../../node_modules/type-fest/source/require-all-or-none.d.ts","../../../node_modules/type-fest/source/remove-index-signature.d.ts","../../../node_modules/type-fest/source/partial-deep.d.ts","../../../node_modules/type-fest/source/partial-on-undefined-deep.d.ts","../../../node_modules/type-fest/source/readonly-deep.d.ts","../../../node_modules/type-fest/source/literal-union.d.ts","../../../node_modules/type-fest/source/promisable.d.ts","../../../node_modules/type-fest/source/opaque.d.ts","../../../node_modules/type-fest/source/invariant-of.d.ts","../../../node_modules/type-fest/source/set-optional.d.ts","../../../node_modules/type-fest/source/set-required.d.ts","../../../node_modules/type-fest/source/set-non-nullable.d.ts","../../../node_modules/type-fest/source/value-of.d.ts","../../../node_modules/type-fest/source/promise-value.d.ts","../../../node_modules/type-fest/source/async-return-type.d.ts","../../../node_modules/type-fest/source/conditional-keys.d.ts","../../../node_modules/type-fest/source/conditional-except.d.ts","../../../node_modules/type-fest/source/conditional-pick.d.ts","../../../node_modules/type-fest/source/union-to-intersection.d.ts","../../../node_modules/type-fest/source/stringified.d.ts","../../../node_modules/type-fest/source/fixed-length-array.d.ts","../../../node_modules/type-fest/source/multidimensional-array.d.ts","../../../node_modules/type-fest/source/multidimensional-readonly-array.d.ts","../../../node_modules/type-fest/source/iterable-element.d.ts","../../../node_modules/type-fest/source/entry.d.ts","../../../node_modules/type-fest/source/entries.d.ts","../../../node_modules/type-fest/source/set-return-type.d.ts","../../../node_modules/type-fest/source/asyncify.d.ts","../../../node_modules/type-fest/source/numeric.d.ts","../../../node_modules/type-fest/source/jsonify.d.ts","../../../node_modules/type-fest/source/schema.d.ts","../../../node_modules/type-fest/source/literal-to-primitive.d.ts","../../../node_modules/type-fest/source/string-key-of.d.ts","../../../node_modules/type-fest/source/exact.d.ts","../../../node_modules/type-fest/source/readonly-tuple.d.ts","../../../node_modules/type-fest/source/optional-keys-of.d.ts","../../../node_modules/type-fest/source/has-optional-keys.d.ts","../../../node_modules/type-fest/source/required-keys-of.d.ts","../../../node_modules/type-fest/source/has-required-keys.d.ts","../../../node_modules/type-fest/source/spread.d.ts","../../../node_modules/type-fest/source/split.d.ts","../../../node_modules/type-fest/source/camel-case.d.ts","../../../node_modules/type-fest/source/camel-cased-properties.d.ts","../../../node_modules/type-fest/source/camel-cased-properties-deep.d.ts","../../../node_modules/type-fest/source/delimiter-case.d.ts","../../../node_modules/type-fest/source/kebab-case.d.ts","../../../node_modules/type-fest/source/delimiter-cased-properties.d.ts","../../../node_modules/type-fest/source/kebab-cased-properties.d.ts","../../../node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts","../../../node_modules/type-fest/source/kebab-cased-properties-deep.d.ts","../../../node_modules/type-fest/source/pascal-case.d.ts","../../../node_modules/type-fest/source/pascal-cased-properties.d.ts","../../../node_modules/type-fest/source/pascal-cased-properties-deep.d.ts","../../../node_modules/type-fest/source/snake-case.d.ts","../../../node_modules/type-fest/source/snake-cased-properties.d.ts","../../../node_modules/type-fest/source/snake-cased-properties-deep.d.ts","../../../node_modules/type-fest/source/includes.d.ts","../../../node_modules/type-fest/source/screaming-snake-case.d.ts","../../../node_modules/type-fest/source/join.d.ts","../../../node_modules/type-fest/source/trim.d.ts","../../../node_modules/type-fest/source/replace.d.ts","../../../node_modules/type-fest/source/get.d.ts","../../../node_modules/type-fest/source/last-array-element.d.ts","../../../node_modules/type-fest/source/package-json.d.ts","../../../node_modules/type-fest/source/tsconfig-json.d.ts","../../../node_modules/type-fest/index.d.ts","../src/wixClient.ts","../../../node_modules/@wix/image-kit/dist/types/types.d.ts","../../../node_modules/@wix/image-kit/dist/types/helpers/imageServiceConstants.d.ts","../../../node_modules/@wix/image-kit/dist/types/helpers/populateFeatureSupport.d.ts","../../../node_modules/@wix/image-kit/dist/types/api/max/api.d.ts","../../../node_modules/@wix/image-kit/dist/types/api/uri/index.d.ts","../../../node_modules/@wix/image-kit/dist/types/sdk/api.d.ts","../../../node_modules/@wix/image-kit/dist/types/sdk/index.d.ts","../../../node_modules/@wix/image-kit/dist/types/api/max/index.d.ts","../../../node_modules/querystring/decode.d.ts","../../../node_modules/querystring/encode.d.ts","../../../node_modules/querystring/index.d.ts","../src/wixMedia.ts","../src/index.ts","../../../node_modules/@babel/types/lib/index.d.ts","../../../node_modules/@types/babel__generator/index.d.ts","../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../node_modules/@types/babel__template/index.d.ts","../../../node_modules/@types/babel__traverse/index.d.ts","../../../node_modules/@types/babel__core/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/bonjour/index.d.ts","../../../node_modules/@types/bytebuffer/node_modules/@types/long/index.d.ts","../../../node_modules/@types/bytebuffer/index.d.ts","../../../node_modules/@types/configstore/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/connect-history-api-fallback/index.d.ts","../../../node_modules/@types/debug/index.d.ts","../../../node_modules/@types/eslint/helpers.d.ts","../../../node_modules/@types/estree/index.d.ts","../../../node_modules/@types/json-schema/index.d.ts","../../../node_modules/@types/eslint/index.d.ts","../../../node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/@types/mime/Mime.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/@types/get-port/index.d.ts","../../../node_modules/@types/minimatch/index.d.ts","../../../node_modules/@types/glob/index.d.ts","../../../node_modules/@types/graceful-fs/index.d.ts","../../../node_modules/@types/html-minifier-terser/index.d.ts","../../../node_modules/@types/http-proxy/index.d.ts","../../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../../node_modules/@types/istanbul-lib-report/index.d.ts","../../../node_modules/@types/istanbul-reports/index.d.ts","../../../node_modules/chalk/index.d.ts","../../../node_modules/jest-diff/build/cleanupSemantic.d.ts","../../../node_modules/pretty-format/build/types.d.ts","../../../node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/diffLines.d.ts","../../../node_modules/jest-diff/build/printDiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts","../../../node_modules/@types/json5/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/long/index.d.ts","../../../node_modules/@types/mkdirp/index.d.ts","../../../node_modules/@types/newrelic/index.d.ts","../../../node_modules/@types/normalize-package-data/index.d.ts","../../../node_modules/@types/parse-json/index.d.ts","../../../node_modules/@types/prettier/index.d.ts","../../../node_modules/@types/retry/index.d.ts","../../../node_modules/@types/rimraf/node_modules/@types/glob/index.d.ts","../../../node_modules/@types/rimraf/index.d.ts","../../../node_modules/@types/semver/classes/semver.d.ts","../../../node_modules/@types/semver/functions/parse.d.ts","../../../node_modules/@types/semver/functions/valid.d.ts","../../../node_modules/@types/semver/functions/clean.d.ts","../../../node_modules/@types/semver/functions/inc.d.ts","../../../node_modules/@types/semver/functions/diff.d.ts","../../../node_modules/@types/semver/functions/major.d.ts","../../../node_modules/@types/semver/functions/minor.d.ts","../../../node_modules/@types/semver/functions/patch.d.ts","../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../node_modules/@types/semver/functions/compare.d.ts","../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../node_modules/@types/semver/functions/sort.d.ts","../../../node_modules/@types/semver/functions/rsort.d.ts","../../../node_modules/@types/semver/functions/gt.d.ts","../../../node_modules/@types/semver/functions/lt.d.ts","../../../node_modules/@types/semver/functions/eq.d.ts","../../../node_modules/@types/semver/functions/neq.d.ts","../../../node_modules/@types/semver/functions/gte.d.ts","../../../node_modules/@types/semver/functions/lte.d.ts","../../../node_modules/@types/semver/functions/cmp.d.ts","../../../node_modules/@types/semver/functions/coerce.d.ts","../../../node_modules/@types/semver/classes/comparator.d.ts","../../../node_modules/@types/semver/classes/range.d.ts","../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../node_modules/@types/semver/ranges/valid.d.ts","../../../node_modules/@types/semver/ranges/outside.d.ts","../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../node_modules/@types/semver/ranges/subset.d.ts","../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../node_modules/@types/semver/index.d.ts","../../../node_modules/@types/serve-index/index.d.ts","../../../node_modules/@types/sockjs/index.d.ts","../../../node_modules/@types/stack-utils/index.d.ts","../../../node_modules/@types/tmp/index.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/webpack/node_modules/@types/estree/index.d.ts","../../../node_modules/schema-utils/declarations/ValidationError.d.ts","../../../node_modules/ajv/lib/ajv.d.ts","../../../node_modules/schema-utils/declarations/validate.d.ts","../../../node_modules/schema-utils/declarations/index.d.ts","../../../node_modules/tapable/tapable.d.ts","../../../node_modules/webpack/types.d.ts","../../../node_modules/@types/webpack-bundle-analyzer/index.d.ts","../../../node_modules/@types/ws/index.d.ts","../../../node_modules/@types/yargs-parser/index.d.ts","../../../node_modules/@types/yargs/index.d.ts","../../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"4911d4c3a7f7c11bad0e2cec329a19a385d10ea83b0b69c76e032359e388f624","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"4f6463a60e5754bbc4a864b2aaf8fecb7706b96a21b88f27b534589b801978b6","affectsGlobalScope":true},"56d13f223ab40f71840795f5bef2552a397a70666ee60878222407f3893fb8d0",{"version":"4ffef5c4698e94e49dcf150e3270bad2b24a2aeab48b24acbe7c1366edff377d","affectsGlobalScope":true},"2534e46a52653b55dfb5a41ce427ec430c4afbaaf3bfcb1ae09b185c5d6bf169","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","3f2478baf49cf27aa1335ba5299e2394131284e9d50a3845e3f95e52664ff518","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","8bd106053ee0345dde7f626ed1f6100a89fb85f13ea65352627cf78c5f30c553","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","06ccebc2c2db57d6bdbca63b71c4ae5e6ddc42d972fd8f122d4c1a28aa111b25",{"version":"81e8508d1e82278f5d3fee936f267e00c308af36219bfcee2631f9513c9c4017","affectsGlobalScope":true},"413a4be7f94f631235bbc83dad36c4d15e5a2ff02bca1efdbd03636d6454631b","20c468256fd68d3ef1fa53526e76d51d6aa91711e84d72c0343589b99238287e","4198acced75d48a039c078734c4efca7788ff8c78609c270a2b63ec20e3e1676","8d4c16a26d59e3ce49741a7d4a6e8206b884e226cf308667c7778a0b2c0fee7f","288dd0c774a5c6e3964084c7a2bc8cc6b746d70f44a9892d028d04f915cf7ebc","d61c7c41eb1960b1285e242fd102c162b65c0522985b839fadda59874308a170",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"1805e0e4d1ed00f6361db25dff6887c7fa9b5b39f32599a34e8551da7daaa9c2","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","fb0989383c6109f20281b3d31265293daefdd76d0d30551782c1654e93704f48","a4210a84a82b3e7a8cec5b2f3616e46d523f4f10cc1576d8f2fb89d0987b341e",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","22d48bfb37261136423ac687f1fa7bd4dda3083f767416d409a8260cf92bc8fc","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","95518ff86843e226b62a800f679f6968ad8dac8ccbe30fbfe63de3afb13761a2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","698ab660b477b9c2cd5ccbd99e7e7df8b4a6134c1f5711fa615ed7aab51cb7f7","33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637","a4471d2bdba495b2a6a30b8765d5e0282fa7009d88345a9528f73c37869d3b93",{"version":"aee7013623e7632fba449d4df1da92925b27d9b816cb05546044dbfe54c88ef4","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c9d70d3d7191a66a81cb554557f8ed1cf736ea8397c44a864fe52689de18865a","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"1aad825534c73852a1f3275e527d729a2c0640f539198fdfdfeb83b839851910","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"88003d9ab15507806f41b120be6d407c1afe566c2f6689ebe3a034dd5ec0c8dc","e0e59c460f1b8a364b29e839699d5aad9e71215b957b517870984879f6d6fe35","fc2094628f1cbcbf50fa85326840e29ab1d1e8156d5105fc863f3ae9c2eeb428",{"version":"8c24754e024801574a0328ec034c3333332447e81add7059834688dfa7789fde","affectsGlobalScope":true},"82eaf272c880a381f1e142408132e6a383c3e0b0fa92bee39e5fb2ff13b829f2","199bcd04e28326aa53d2b1c887695d2b57f6c7a6d174121025f3f2ac05090e36","1327e2337952ca39488fca54c9593ced6f62065b72a70e44249483f2418b2165","fd179d7b68260caf075aaabe202dfd39622403405beec3c7a697dec1df338cb2","d086d18c6de38fff9261952724c77cfb8915e09d8e927133565f368ae3f80f6d","115d60d2b07ac7d513543b5e86e13bbf9a9524faf8bdf4985bd7a08815b46406","4a1545bdbccec0209a67da02f760fad629deedbe7d8ac9f55c93c82f95ff5449","7b52c21bd6397ca26df3b7863fa2d5014aa4bbf5621377769726bbd59956e6bc","6b93d6b362ef33a455a7852f7891a6023a8a2bbb03a81cf84bb0f2b627673148","641b9da0622e0225740b5a55f47af9f23f01bf8f4dcbfb81128c16b585900717","5534c99590ae8b633509d9e4d2e1a7bf6511cb7fd1710c36d7723c2f9486aeba","431666f207d18bf924ef0c3b8e1ffabe4e050becb25a82feb9d57355a55ec43d","3ace48f46b43fec335799729ecba491fba8478ef911bbaba4e64ae91ac284082","0da6adbb172817b7101eb1fc5a93310d5b140ac7c3678e3f8891d6177d1f2ce8","95210bf2a09475e9e19fe532fdc2562dced3536fc50f92aad88466950ff11160","912e51e547d6297d2dc7611148c27ed51dbfc544e35298bc30d846e0ae51c376","032aa0bbc88640270f29cfee50f0857ebd903dee14626eb9ec52043d75765173","d24cd8c79f8eb91b85d4a61e75188504f0d2dcd6ab8ebb87ac22a8ba0ec200b2","70055bc7cbe14541919f4b9e4c488b31cc901fa8defa32827ca3ba955a409762","155dc0abafc201d20cb2c4c54d631e13cf286f5a757fff975dc2dd7e196380fe","256eb1263ff0eae669dd39371245c70e082437ebd01dac855dda8ef5bc5a1330","b56adcca0e4ea4e2ff1a527006c90a7eecf5c0637f10b7232d5a6ffb40e1a47e","92910a77d5284b3bb6fb8fa17209d7128619b23a05d8c38b63dbe7b102552145","3084564f4782aacb5f60dee152f260a73b7ec7093432626814d019d2f871b1e9","67aaa92c35872e8ac9ca6092e0010db368656740e28e4486c2cf8064e536d057","04b00c8e04b88f9dd0aefaec6b8c42fa4d1ffdfd9a73131cb6d96b185978d536","17eab666f34227a634a3e24041ea06a7f52cd0216411de7dea6bccaef7ab62ac","1d8dc736a80d377b4ce3b78568038c796485e604cb9c5c664ac5718a5fb63c41","9df9a424cba33791a9f05592ce73c61a6ea6cd0e8d02b5d634601d169e28229c","1a1cfc77cc8eb4bf26f01d2da8059920873646a67cb359e41d5b0842cd423271","4d33127708c239d63baa8c5bdf6f23e50e4a40527bce36e5511bf6d655c873f3","2626836cf152b2231a1d800779a594695b029c19bd49a150e5e994f788a8d9e1","8315d8694e8042084de91475cdb9cc307e50c3b4154776294c899eb7e47bbd09","9fce90d4533619eb5754806401668fa487fbdf0efeeb30c43299aef5a0b5c552","a0aba12f2b210e2151aa6ff772c4c0e1115d437306e1942d7b71f0b45c48ccf3","3b59126bda683d0720973054280a28f57af77498b081985b15779fe85dc96f77","fadd926f5d4644bf9e3161c69104c9f5246e5a5cffbf9076399c3b086ee7f0d3","da2266dd4ecebf71026539d95e36674563a06f869a53ae8e837d512161013dee","e4b3c4ec3ccd3fbe8ed62f6eb3b39c9f0ad574a35eafd1a31077c1e8dd29e93d","4dbbbf7f7b59aa88c2dda60aed5a06c5a57f29b6f931f70ac53bf6cc8aac1cef","8da32928f6184ecfa071cb9aac8e886a640ec68000d72b1fc47a85b5778bdbba","c737d79aaa58f7b5225de26005f12cbfeb60d6e1c0799df85c372a5b3498b313","ccb092565dcf7e8e9eb07dabe8f77a257bb18d10745b78f09501a2826f0b9f7e","50001c90059bbb2d06aabb16ad94b44a9a3dbd0b76a7ad1fbceef53c67ed67ff","103cc813c979b72c032d57fd398bb8a7de019c009a0cd8968f90f149a21c7b09","85aeedbb5aaee4ebb373587871ef070586a3b76eedd345db9dfba6b76bb3d7c0","9fa580d16a5b066442f16778c2846ee169e7ba421f45cd841bcf6d44495b9b13","9cec7eef215c0e9a903104033b96bd6c14fb71dc8b6084c81c869c39acb84101","d204930d40cace62928e7318026791c1e0cef281a06eabde7a98ddddf57154dc","f96b8ea264d72de393165690a473893934773a21cbc29ebadf22a2bbb2e64df2","d2bb51b12f0a2f927774a9a9affed26f0cd925f440f2352c833c55f695b65890","239689e40d3935cd4f340798982febacca88f44ca353b503f654ccb4233370fb","19d4b8c121977c1ea5ad800579d5a4a69007796faa9a547add76a6e94ab91ab4","c70f356c83e8167cd33cc119e908d1d32a9736e8b9f130f8d88fd0d9d498831a","eb9d456c9ba78783d6044925a34d2edcc4ab519bc366e5b42f82fa714eb3d6ae","434ac011dacc3b2659595fbc0555800dd725e626b29cc83292abdb6517262e32","520da364d225aa51b0e7b7adb8fd1a7489a6f680f4bb37ca573024147de84100","aca1a7376ae8f37e0c2b9447633196e3e1671371193451bae8c1ff09e58bad1a","c1c25d86e86ac79472059cf4249b20e04e36f06ead16296a78df76561c9ab59d","c766a7f306fa53af2dacface548cb9590202209e19cd8677febbd66261837a7a","8c403008299cb52d4fb675e9a4cd732a52f1c4c39dba4b2d33a197192c343ea5","c37bf53cf0701fedc43913d79405dcab26450c5aa8afe8bd1b2b4a049da748ae","ebb6dcacb4caa1f40b085fda697f84860fcb74cf3bbb15d5a4f5e0dc27edc6c8","5191da1f2d2e5d8aa799ec10e571e434dc544e9a3e600eeb7dce881f88c3146a","ecf8bb458fd8aa581d044827f214f4c108bd93a32140bd2ed29ca6f2af1bf72f","544e42686ffda36f20b22830f1c1ae966ab1ba4b1f1e6bc68dc6c51d2ace867b","19e18f2211b420eef79412c0bc407119617a7e7699af24d3c70d7d88ee14b2c2","57eb3245f592f2382e2f79b5bdcd3684ba5a21bc0b411de82ef8101284aeb213","74e6286c0c9e2336ac18e6103a82e90a781985604418ff37a695bf9e91148577","53b7b0ad34feb6667b7aa137afb2f87316e8eb2c15d6327355353224fe47b55b","5b581648b2a40a6f970cd938b57270e5e2febf41bfb2813d3176a4ccd9e8fcd5","e74d4b1989725bbdd6ba672055b4e769d3eb90f294d99a683997d1fa6dd3cad5","04017eca924a3c90094ebc57fdc0d60d1c37a8592c988af07926e341fe91fc0b","08b1e0a48d64af7ea99e7911db1a540ebcfef468b4a62c589c40e2de630d786e","f473e9a749dd87ab056d387c4454faba9d21c921b744afbcf9b989043273d44f","cd674d3401bf5b290da4a5e31890305ba67a378b2c01aa8da6ac73feb0685f50","01a1038d946f7820cfb6136f103dc282e3d2cbe8ad2ea244bbe1c15a94727cfb","6123fa53525865f0f96b5e59f98bf56aba6ba4acaa171ec23676d13bc0b77020","19f96045ebaef51fbea86ab5d00f98fd18381eaf54aefe4a6d4d1cd02b866e7d","9ef452a63549b5d29f8c0a8ad8af73e33d23f388b9f34992b8ea9b8c80e2e219","44faba923fbff252b227ab2222946cc55ab7a8d2c941e56afa7d5f4dc38bebbc","005605697e492ea72f9fc309fa31ee8587e0478bbfc9bb72676559dab2f39339","a1c1195f9dd70a8de22947a275074d1c30571c61f762518291e748a7e644ac9e","f2949ec3b920d10267dff3f4803b3db920f81401182af62740a41e76cc26d8f6","23cfdfc12051eef1bddaff6d95cbda090174b36fb105c7d263acdadb76da1577","ffee2f0960a86ceada047cffc3404363bf9e7783e30848199c4d90cb210123dd","e004995dfdf9fd1a97f47cdc6b74ba0f1da186736eac03c6856412661ac6a6d4","36a29c4843b36ccf4b6f0ed12763414a3516f0176563747b99c016ab3a570922","8ce2616be99a635b1346deef302d68969006b044fc82d6992abb432a4956dc6a","ad73903fb76951a5cd4c4e91d9eed60fb9b0114b1477c2da5c55691dd78cdfe6","9db5c31039049a999fe86ec606d07f9fe0074cf9289400c8f7a5f7ffb5719e9f","ccd23805724c86c86eccc2a73e9f1438c7b0a6e08647c0f54f6c2b3f505026a5","101c66c0a04753be2f1604483f98e1f072d1a95418345d3a7593de7ddfd92fc9","ec007e489e7403a1b46f85392a94fef09533a2bb12f9b98e9d433871aac66b5a","8b26b547fc41921b66353c05c2dbdbdb1dc8d0b60a9ea60f912787818bb9c42c","dbce3e1a32c2696ee8f056b92d2442fc0370f7e3d8d95dddc88cdc8d3ca03454","15ac98e72a64754e1a2c673e630f0c3e6dc163ec18ebf326f7f88f45bb80f526","e4188659bc53e80d6c46cf76e5bdc2968a137166f1e5a853088fc6a0aed4f52b","ea3882010173f50840078eb0e7b013a8a1d9d2b23dbe1725fb0e8350c9abd856","85968e53cc97754877d8b409ca3815b1c0f1c4317d41d47b7975a31e8f3a5bf4","b318a3e94029ffc01f1a3eb1797647bf7487a2a179d4da963043c42fdaf0b4f5","05f82884018fbd03c6512b56d11a712c0282dd1df6338473a2ca5bcacffa8fb9","bed07301895129f3c4ae6bc55e681231fe8c4819d250cda58bef0e891579db20","17e1bdeca5db4adaaa9804ea96b6e7ea02f6b5c8142418b1d5882f8ec4c5b14b","9fc947627f070ce2adfc2cb7bfabd0a4bf1157b2942daf83f4f2dced2eaacd8b","d81d85c49cb39a0cbe2ba467864076c88675a883be767a08b0595bf4cdf4eeda",{"version":"ddba046134fa71602860e4fd45baba8b649e13406a38889bede42cb930988351","affectsGlobalScope":true},"1ef94e1e6897a9c8e44cbe2120b122b0d92246c6cc3692d7a4054ba48a75d03e","14a84fbe4ec531dcbaf5d2594fd95df107258e60ae6c6a076404f13c3f66f28e","cd51ceafea7762ad639afb3ca5b68e1e4ffeaacaa402d7ef2cae17016e29e098","1b8357b3fef5be61b5de6d6a4805a534d68fe3e040c11f1944e27d4aec85936a","4a15fc59b27b65b9894952048be2afc561865ec37606cd0f5e929ee4a102233b",{"version":"744e7c636288493667d553c8f8ebd666ccbc0e715df445a4a7c4a48812f20544","affectsGlobalScope":true},"c05dcfbd5bd0abcefa3ad7d2931424d4d8090bc55bbe4f5c8acb8d2ca5886b2e","326da4aebf555d54b995854ff8f3432f63ba067be354fa16c6e1f50daa0667de","90748076a143bbeb455f8d5e8ad1cc451424c4856d41410e491268a496165256","76e3f3a30c533bf20840d4185ce2d143dc18ca955b64400ac09670a89d388198","144dfcee38ebc38aae93a85bc47211c9268d529b099127b74d61242ec5c17f35","2cf38989b23031694f04308b6797877534a49818b2f5257f4a5d824e7ea82a5a","f981ffdbd651f67db134479a5352dac96648ca195f981284e79dc0a1dbc53fd5","e4ace1cf5316aa7720e58c8dd511ba86bab1c981336996fb694fa64b8231d5f0","a1c85a61ff2b66291676ab84ae03c1b1ff7139ffde1942173f6aee8dc4ee357b","f35a727758da36dd885a70dd13a74d9167691aaff662d50eaaf66ed591957702","116205156fb819f2afe33f9c6378ea11b6123fa3090f858211c23f667fff75da","8fe68442c15f8952b8816fa4e7e6bd8d5c45542832206bd7bcf3ebdc77d1c3f3","3add9402f56a60e9b379593f69729831ac0fc9eae604b6fafde5fa86d2f8a4b9","cc28c8b188905e790de427f3cd00b96734c9c662fb849d68ff9d5f0327165c0d","da2aa652d2bf03cc042e2ff31e4194f4f18f042b8344dcb2568f761daaf7869f","03ed68319c97cd4ce8f1c4ded110d9b40b8a283c3242b9fe934ccfa834e45572","de2b56099545de410af72a7e430ead88894e43e4f959de29663d4d0ba464944d","eec9e706eef30b4f1c6ff674738d3fca572829b7fa1715f37742863dabb3d2f2","cec67731fce8577b0a90aa67ef0522ddb9f1fd681bece50cdcb80a833b4ed06f","a14679c24962a81ef24b6f4e95bbc31601551f150d91af2dc0bce51f7961f223","3f4d43bb3f61d173a4646c19557e090a06e9a2ec9415313a6d84af388df64923","18b86125c67d99150f54225df07349ddd07acde086b55f3eeac1c34c81e424d8","d5a5025f04e7a3264ecfa3030ca9a3cb0353450f1915a26d5b84f596240a11cd","03f4449c691dd9c51e42efd51155b63c8b89a5f56b5cf3015062e2f818be8959","23b213ec3af677b3d33ec17d9526a88d5f226506e1b50e28ce4090fb7e4050a8","f0abf96437a6e57b9751a792ba2ebb765729a40d0d573f7f6800b305691b1afb","7d30aee3d35e64b4f49c235d17a09e7a7ce2961bebb3996ee1db5aa192f3feba","eb1625bab70cfed00931a1e09ecb7834b61a666b0011913b0ec24a8e219023ef","1a923815c127b27f7f375c143bb0d9313ccf3c66478d5d2965375eeb7da72a4c","4f92df9d64e5413d4b34020ae6b382edda84347daec97099e7c008a9d5c0910b","fcc438e50c00c9e865d9c1777627d3fdc1e13a4078c996fb4b04e67e462648c8","d0f07efa072420758194c452edb3f04f8eabc01cd4b3884a23e7274d4e2a7b69","7086cca41a87b3bf52c6abfc37cda0a0ec86bb7e8e5ef166b07976abec73fa5e","4571a6886b4414403eacdd1b4cdbd854453626900ece196a173e15fb2b795155","c122227064c2ebf6a5bd2800383181395b56bb71fd6683d5e92add550302e45f","60f476f1c4de44a08d6a566c6f1e1b7de6cbe53d9153c9cc2284ca0022e21fba","84315d5153613eeb4b34990fb3bc3a1261879a06812ee7ae481141e30876d8dc","4f0781ec008bb24dc1923285d25d648ea48fb5a3c36d0786e2ee82eb00eff426","8fefaef4be2d484cdfc35a1b514ee7e7bb51680ef998fb9f651f532c0b169e6b","8be5c5be3dbf0003a628f99ad870e31bebc2364c28ea3b96231089a94e09f7a6","6626bbc69c25a92f6d32e6d2f25038f156b4c2380cbf29a420f7084fb1d2f7d7","f351eaa598ba2046e3078e5480a7533be7051e4db9212bb40f4eeb84279aa24d","5126032fe6e999f333827ee8e67f7ca1d5f3d6418025878aa5ebf13b499c2024","4ce53edb8fb1d2f8b2f6814084b773cdf5846f49bf5a426fbe4029327bda95bf","1edc9192dfc277c60b92525cdfa1980e1bfd161ae77286c96777d10db36be73c","1573cae51ae8a5b889ec55ecb58e88978fe251fd3962efa5c4fdb69ce00b23ba","75a7db3b7ddf0ca49651629bb665e0294fda8d19ba04fddc8a14d32bb35eb248","f2d1ac34b05bb6ce326ea1702befb0216363f1d5eccdd1b4b0b2f5a7e953ed8a","789665f0cd78bc675a31140d8f133ec6a482d753a514012fe1bb7f86d0a21040","bb30fb0534dceb2e41a884c1e4e2bb7a0c668dadd148092bba9ff15aafb94790","6ef829366514e4a8f75ce55fa390ebe080810b347e6f4a87bbeecb41e612c079","8f313aa8055158f08bd75e3a57161fa473a50884c20142f3318f89f19bfc0373","e789eb929b46299187312a01ff71905222f67907e546e491952c384b6f956a63","a0147b607f8c88a5433a5313cdc10443c6a45ed430e1b0a335a413dc2b099fd5","a86492d82baf906c071536e8de073e601eaa5deed138c2d9c42d471d72395d7e","6b1071c06abcbe1c9f60638d570fdbfe944b6768f95d9f28ebc06c7eec9b4087","92eb8a98444729aa61be5e6e489602363d763da27d1bcfdf89356c1d360484da","1285ddb279c6d0bc5fe46162a893855078ae5b708d804cd93bfc4a23d1e903d9","d729b8b400507b9b51ff40d11e012379dbf0acd6e2f66bf596a3bc59444d9bf1","fc3ee92b81a6188a545cba5c15dc7c5d38ee0aaca3d8adc29af419d9bdb1fdb9","a14371dc39f95c27264f8eb02ce2f80fd84ac693a2750983ac422877f0ae586d","755bcc456b4dd032244b51a8b4fe68ee3b2d2e463cf795f3fde970bb3f269fb1","c00b402135ef36fb09d59519e34d03445fd6541c09e68b189abb64151f211b12","e08e58ac493a27b29ceee80da90bb31ec64341b520907d480df6244cdbec01f8","c0fe2b1135ca803efa203408c953e1e12645b8065e1a4c1336ad8bb11ea1101b","f3dedc92d06e0fdc43e76c2e1acca21759dd63d2572c9ec78a5188249965d944","25b1108faedaf2043a97a76218240b1b537459bbca5ae9e2207c236c40dcfdef","a1d1e49ccd2ac07ed8a49a3f98dfd2f7357cf03649b9e348b58b97bb75116f18","7ad042f7d744ccfbcf6398216203c7712f01359d6fd4348c8bd8df8164e98096","0e0b8353d6d7f7cc3344adbabf3866e64f2f2813b23477254ba51f69e8fdf0eb","8e7653c13989dca094412bc4de20d5c449457fc92735546331d5e9cdd79ac16e","189dedb255e41c8556d0d61d7f1c18506501896354d0925cbd47060bcddccab1","48f0819c2e14214770232f1ab0058125bafdde1d04c4be84339d5533098bf60a","2641aff32336e35a5b702aa2d870a0891da29dc1c19ae48602678e2050614041","e133066d15e9e860ca96220a548dee28640039a8ac33a9130d0f83c814a78605",{"version":"2fb82db27281885a7b172afa14746463d9c2f210039e6a05e2db47db3e824d67","signature":"53f68fbe664324c700836a4d2bcf6d46328dc60cfebd417a79dab602cf01db49"},"ccbcc47e837b87957de405c764227e061377c549bd0e4d80b27749f985366561","97b0bca2aef1271b6874a7acfbcba5144f35dd2e0ee1c219452cd82347c00b6c","747ffb802a5d325dcf1054c0ec2f5832ed737a6100107d5523b79e02d654cbbe","478aa60ea3cd34b072d07b50ed84a401878936650f3e0c92cc183a19c23f8b61","3fb039aafdf6fbd779c8e31b0c493f9c49b65a308104b25dc9941bd1f4ca45b6","8dbd3c72609fd60422d16ed83f44ad480439b943258884f843261288372ba68e","241a2bc3391cff2756dc4fc4150d9fca616543285622f5a93f42bf6f1b82d5c1","9640e1c4b5cf92193e06290ae5dcec96ff25729abe853281a7b516c4da6f82d9","ad7e61eca7f2f8bf47e72695f9f6663b75e41d87ef49abdb17c0cb843862f8aa","ecba2e44af95b0599c269a92628cec22e752868bce37396740deb51a5c547a26","46a9fb41a8f3bc7539eeebc15a6e04b9e55d7537a081615ad3614220d34c3e0f",{"version":"09c2b4a501e8102e987d949c597d4aa857536956b111ceee9fed678abfab3c04","signature":"51bde4f079d9a74296f832e2f78944939bf11788ce5f6e7338b13fed05a3ccd5"},"386d62b92949d4126069693aafec0964f0b5e6af3d0c19c4006f5eced6ca14eb","f4617bbd5403ec5b058db53b242dcb1421952e2652bd5c80abf6a1c4ea5656d6","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb","230d323ef7f2ffadfc0ceae494492c4d2faa2b4eaec07a4b71424d084b97ebb8","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","c7597e9b1b1eac80e5bca7d136321ab80804ff37f026bc84a8a8553904db9847","5426e62886b7be7806312d31a00e8f7dccd6fe63ba9bbefe99ee2eab29cc48a3","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07","99c9b6d28e44d05b34760e1311ec35b47e5b5a0b1ad9ce8b8eb0d6cdfb7c7e61","82811dfe87c4591e09a5347247c518bd9eab15cffedaa719ef17ae26146b71f3","e3cb1b4d91d7fd308d69b4af172c80c9455e2ce52970d7f6f817d2132e7a72da","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"a34eb69d404f1db719580115825bd7ba837023effe04d235bdbb2e0168df7451","affectsGlobalScope":true},"56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a","37a4038e69fb61043e363140b58d7d517d6f99f274adad0774f226ea2ee8c903",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"946bd1737d9412395a8f24414c70f18660b84a75a12b0b448e6eb1a2161d06dd","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","c84d0f714fe122193c21c0f0917e873beb3a03fa3422ceb2fbd1ebc0558790a0","e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","f47887b61c6cf2f48746980390d6cb5b8013518951d912cfb37fe748071942be","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","00c886d849a8a4b7ceb0a8a6c7a36b168a7a44b2f93fe30c6c30dae71c05709f","48d9ba210c07f79960e0a193b3cb05e540d83837aa3f5006f02b12e92bebf0d4","5df18146efb27157c4592eade8b8b55a937ed70d6f4081f78ac613cf8d6912dc","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044","c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73",{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"e8465811693dfe4e96ef2b3dffda539d6edfe896961b7af37b44db2c0e48532b","6396a7a06f3ef0fc31a7c89330e015146b78a2256b030c698b6d404594c37b8f","caa819c063a3e32303741ba22a134b4a9a98a7f8dc64f574f9d22eb78845e0dc","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","93c4fc5b5237c09bc9ed65cb8f0dc1d89034406ab40500b89701341994897142","199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3034db2891e04de367126370bebec88ac3b4e3b1eb8b7dc30671ccddb717eed2","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","6aee496bf0ecfbf6731aa8cca32f4b6e92cdc0a444911a7d88410408a45ecc5d","acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5","82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","f26c7e4aa5603123034d9ee4459f43d49daa3d96fdd12999d45d7fa16e584cfe","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449","dee5d387e2e6f3015cbf91fc0c13ed6f016f9c5c1f2ad9c62602f4fd398fa83a","67f129ed8b372622ff36b8b10e39d03e09e363a5ff7821105f92f085b8d1ccba","721124f5db1f4a42da2308dfa1414d2e99055d2dfc59de7bf2e0b6ac64356c0e","0d7569149194d622212c21d5d162b0715d5a6ca764cebae7145fdbaff1e07311","cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad","2836f718f2458d81c2df3d01d1f998f75631b0763bd9298e1bd15331cc4f2632","2583a91339f7d3e0d2935b1a9f501adaee370c3ae9f1f94154641703288bc5a7","bc81aff061c53a7140270555f4b22da4ecfe8601e8027cf5aa175fbdc7927c31","70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438","65dfa4bc49ccd1355789abb6ae215b302a5b050fdee9651124fe7e826f33113c"],"options":{"declaration":true,"declarationDir":"./types","declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"importHelpers":true,"jsx":2,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./esm","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":4},"fileIdsList":[[101,314],[101],[101,109,110],[101,109,111],[101,109,110,111,112],[101,109],[101,113],[101,314,315,316,317,318],[101,314,316],[75,101,108,320],[67,101,108],[101,108,323],[100,101,108,328],[75,101,108],[101,332,334],[101,331,332,333],[72,75,101,108,326,327],[101,321,327,328,338],[72,73,101,108,341],[73,101,108],[72,75,77,80,89,100,101,108],[101,346],[101,347],[101,352,357],[101,360,362,363,364,365,366,367,368,369,370,371,372],[101,360,361,363,364,365,366,367,368,369,370,371,372],[101,361,362,363,364,365,366,367,368,369,370,371,372],[101,360,361,362,364,365,366,367,368,369,370,371,372],[101,360,361,362,363,365,366,367,368,369,370,371,372],[101,360,361,362,363,364,366,367,368,369,370,371,372],[101,360,361,362,363,364,365,367,368,369,370,371,372],[101,360,361,362,363,364,365,366,368,369,370,371,372],[101,360,361,362,363,364,365,366,367,369,370,371,372],[101,360,361,362,363,364,365,366,367,368,370,371,372],[101,360,361,362,363,364,365,366,367,368,369,371,372],[101,360,361,362,363,364,365,366,367,368,369,370,372],[101,360,361,362,363,364,365,366,367,368,369,370,371],[101,337],[101,336],[57,101],[60,101],[61,66,92,101],[62,72,73,80,89,100,101],[62,63,72,80,101],[64,101],[65,66,73,81,101],[66,89,97,101],[67,69,72,80,101],[68,101],[69,70,101],[71,72,101],[72,101],[72,73,74,89,100,101],[72,73,74,89,101],[75,80,89,100,101],[72,73,75,76,80,89,97,100,101],[75,77,89,97,100,101],[57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107],[72,78,101],[79,100,101],[69,72,80,89,101],[81,101],[82,101],[60,83,101],[84,99,101,105],[85,101],[86,101],[72,87,101],[87,88,101,103],[61,72,89,90,91,101],[61,89,91,101],[89,90,101],[92,101],[93,101],[72,95,96,101],[95,96,101],[66,80,97,101],[98,101],[80,99,101],[61,75,86,100,101],[66,101],[89,101,102],[101,103],[101,104],[61,66,72,74,83,89,100,101,103,105],[89,101,106],[62,101,108],[73,101,108,380],[101,382,421],[101,382,406,421],[101,421],[101,382],[101,382,407,421],[101,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420],[101,407,421],[73,101,339],[75,101,108,337],[75,101,108,433],[72,75,77,80,89,97,100,101,106,108],[101,436],[72,89,101,108],[101,301],[101,301,302,303,304,307],[101,301,302,303],[101,301,305],[101,306],[101,217],[101,108,114,213],[101,214],[101,116,117,119,126],[101,126,127],[101,127,128,187,188],[101,116,119,127],[101,117,127],[101,116,119,121,122,123,125,127,128],[101,122,129,143],[101,116,119,123,124,125,127],[101,116,117,123,125,129],[101,115,130,134,142,144,146,186,189,212],[101,117,118],[101,117,118,119,120,126,135,136,137,138,139,140,141],[101,117,118,119],[101,117],[101,116,117,118,119,137,213],[101,119],[101,117,119,126],[101,116,119],[101,145],[101,116,119,123,125,129],[101,116,119,121,122,125],[101,116,119,120,123],[101,122,123,124,125,131,132,133],[101,123],[101,116,119,123,124],[101,125,127],[101,116,119,123,124,125,140],[101,127],[101,116,119,123],[101,117,119,125,138],[101,125,190],[101,123,127],[101,116,119,125],[101,125],[101,119,125,127],[101,116,120],[101,119,123,125],[101,147,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211],[101,123,125],[101,116,119,123,124,125,127,140,147],[101,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,181,182,183,184,185],[101,140,148],[101,148],[101,116,119,125,127,147,148],[101,350,353],[101,350,353,354,355],[101,352],[101,349,356],[101,351],[101,309,310],[101,333,430],[101,430],[101,333,428,429],[101,221,222,223,224,226,227,228,229,230,231,232,233,234,235,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,288,289,290,291,292,293,294,295,296,297,298],[101,247],[101,247,260],[101,225,274],[101,275],[101,226,249],[101,249],[101,225],[101,278],[101,258],[101,225,266,274],[101,269],[101,271],[101,221],[101,241],[101,222,223,262],[101,282],[101,280],[101,226,227],[101,228],[101,239],[101,225,230],[101,284],[101,226],[101,278,287,290],[101,226,227,271],[61,75,80,97,101,427,428,430,431,432],[101,215],[101,220,300,312],[101,218],[101,220,299],[86,101,220,308],[299],[308]],"referencedMap":[[316,1],[314,2],[111,3],[112,4],[113,5],[110,6],[109,2],[114,7],[319,8],[315,1],[317,9],[318,1],[321,10],[322,11],[324,12],[323,2],[325,2],[329,13],[320,14],[330,2],[335,15],[331,2],[334,16],[332,2],[328,17],[339,18],[340,2],[342,19],[343,20],[344,2],[345,21],[346,2],[347,22],[348,23],[358,24],[333,2],[359,2],[361,25],[362,26],[360,27],[363,28],[364,29],[365,30],[366,31],[367,32],[368,33],[369,34],[370,35],[371,36],[372,37],[373,2],[336,38],[337,39],[341,2],[374,20],[375,2],[57,40],[58,40],[60,41],[61,42],[62,43],[63,44],[64,45],[65,46],[66,47],[67,48],[68,49],[69,50],[70,50],[71,51],[72,52],[73,53],[74,54],[59,2],[107,2],[75,55],[76,56],[77,57],[108,58],[78,59],[79,60],[80,61],[81,62],[82,63],[83,64],[84,65],[85,66],[86,67],[87,68],[88,69],[89,70],[91,71],[90,72],[92,73],[93,74],[94,2],[95,75],[96,76],[97,77],[98,78],[99,79],[100,80],[101,81],[102,82],[103,83],[104,84],[105,85],[106,86],[376,2],[377,2],[378,2],[217,87],[327,2],[326,2],[379,2],[381,88],[380,19],[406,89],[407,90],[382,91],[385,91],[404,89],[405,89],[395,89],[394,92],[392,89],[387,89],[400,89],[398,89],[402,89],[386,89],[399,89],[403,89],[388,89],[389,89],[401,89],[383,89],[390,89],[391,89],[393,89],[397,89],[408,93],[396,89],[384,89],[421,94],[420,2],[415,93],[417,95],[416,93],[409,93],[410,93],[412,93],[414,93],[418,95],[419,95],[411,95],[413,95],[422,96],[338,97],[423,14],[424,2],[425,2],[434,98],[435,99],[436,2],[437,100],[438,101],[304,102],[308,103],[305,104],[302,102],[303,2],[306,105],[307,106],[301,2],[218,107],[214,108],[215,109],[429,2],[426,2],[349,2],[127,110],[128,111],[189,112],[188,113],[187,114],[129,115],[144,116],[143,117],[130,118],[213,119],[116,2],[122,2],[121,2],[119,120],[120,2],[142,121],[136,2],[137,122],[126,123],[138,124],[141,125],[135,126],[139,125],[117,2],[118,2],[140,127],[146,128],[145,129],[123,130],[124,131],[134,132],[132,133],[131,133],[125,134],[133,135],[147,136],[208,137],[202,138],[195,139],[194,140],[203,141],[204,125],[196,142],[209,143],[211,144],[190,145],[191,127],[192,146],[212,147],[193,140],[197,143],[198,148],[205,125],[206,123],[207,148],[199,146],[210,125],[200,138],[201,127],[148,149],[186,150],[151,151],[152,151],[153,151],[154,151],[155,151],[156,151],[157,151],[158,151],[177,151],[159,151],[160,151],[161,151],[162,151],[163,151],[164,151],[183,151],[165,151],[166,151],[167,151],[168,151],[182,151],[169,151],[180,151],[181,151],[170,151],[171,151],[172,151],[178,151],[179,151],[173,151],[174,151],[175,151],[176,151],[184,151],[185,151],[150,152],[149,153],[115,2],[350,2],[354,154],[356,155],[355,154],[353,156],[357,157],[352,158],[351,2],[309,2],[310,2],[311,159],[428,160],[431,161],[430,162],[432,2],[220,2],[299,163],[248,164],[261,165],[223,2],[275,166],[277,167],[276,167],[250,168],[249,2],[251,169],[278,170],[282,171],[280,171],[259,172],[258,2],[267,170],[226,170],[254,2],[295,173],[270,174],[272,175],[290,170],[225,176],[242,177],[257,2],[292,2],[263,178],[279,171],[283,179],[281,180],[296,2],[265,2],[239,176],[231,2],[230,181],[255,170],[256,170],[229,182],[262,2],[224,2],[241,2],[269,2],[297,183],[236,170],[237,184],[284,167],[286,185],[285,185],[221,2],[240,2],[247,2],[238,170],[268,2],[235,2],[294,2],[234,2],[232,186],[233,2],[271,2],[264,2],[291,187],[245,181],[243,181],[244,181],[260,2],[227,2],[287,171],[289,179],[288,180],[274,2],[273,188],[266,2],[253,2],[293,2],[298,2],[222,2],[252,2],[246,2],[228,181],[11,2],[12,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[4,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[5,2],[30,2],[31,2],[32,2],[33,2],[6,2],[37,2],[34,2],[35,2],[36,2],[38,2],[7,2],[39,2],[44,2],[45,2],[40,2],[41,2],[42,2],[43,2],[8,2],[49,2],[46,2],[47,2],[48,2],[50,2],[9,2],[51,2],[52,2],[53,2],[54,2],[55,2],[1,2],[10,2],[56,2],[427,2],[433,189],[216,190],[313,191],[219,192],[300,193],[312,194]],"exportedModulesMap":[[316,1],[314,2],[111,3],[112,4],[113,5],[110,6],[109,2],[114,7],[319,8],[315,1],[317,9],[318,1],[321,10],[322,11],[324,12],[323,2],[325,2],[329,13],[320,14],[330,2],[335,15],[331,2],[334,16],[332,2],[328,17],[339,18],[340,2],[342,19],[343,20],[344,2],[345,21],[346,2],[347,22],[348,23],[358,24],[333,2],[359,2],[361,25],[362,26],[360,27],[363,28],[364,29],[365,30],[366,31],[367,32],[368,33],[369,34],[370,35],[371,36],[372,37],[373,2],[336,38],[337,39],[341,2],[374,20],[375,2],[57,40],[58,40],[60,41],[61,42],[62,43],[63,44],[64,45],[65,46],[66,47],[67,48],[68,49],[69,50],[70,50],[71,51],[72,52],[73,53],[74,54],[59,2],[107,2],[75,55],[76,56],[77,57],[108,58],[78,59],[79,60],[80,61],[81,62],[82,63],[83,64],[84,65],[85,66],[86,67],[87,68],[88,69],[89,70],[91,71],[90,72],[92,73],[93,74],[94,2],[95,75],[96,76],[97,77],[98,78],[99,79],[100,80],[101,81],[102,82],[103,83],[104,84],[105,85],[106,86],[376,2],[377,2],[378,2],[217,87],[327,2],[326,2],[379,2],[381,88],[380,19],[406,89],[407,90],[382,91],[385,91],[404,89],[405,89],[395,89],[394,92],[392,89],[387,89],[400,89],[398,89],[402,89],[386,89],[399,89],[403,89],[388,89],[389,89],[401,89],[383,89],[390,89],[391,89],[393,89],[397,89],[408,93],[396,89],[384,89],[421,94],[420,2],[415,93],[417,95],[416,93],[409,93],[410,93],[412,93],[414,93],[418,95],[419,95],[411,95],[413,95],[422,96],[338,97],[423,14],[424,2],[425,2],[434,98],[435,99],[436,2],[437,100],[438,101],[304,102],[308,103],[305,104],[302,102],[303,2],[306,105],[307,106],[301,2],[218,107],[214,108],[215,109],[429,2],[426,2],[349,2],[127,110],[128,111],[189,112],[188,113],[187,114],[129,115],[144,116],[143,117],[130,118],[213,119],[116,2],[122,2],[121,2],[119,120],[120,2],[142,121],[136,2],[137,122],[126,123],[138,124],[141,125],[135,126],[139,125],[117,2],[118,2],[140,127],[146,128],[145,129],[123,130],[124,131],[134,132],[132,133],[131,133],[125,134],[133,135],[147,136],[208,137],[202,138],[195,139],[194,140],[203,141],[204,125],[196,142],[209,143],[211,144],[190,145],[191,127],[192,146],[212,147],[193,140],[197,143],[198,148],[205,125],[206,123],[207,148],[199,146],[210,125],[200,138],[201,127],[148,149],[186,150],[151,151],[152,151],[153,151],[154,151],[155,151],[156,151],[157,151],[158,151],[177,151],[159,151],[160,151],[161,151],[162,151],[163,151],[164,151],[183,151],[165,151],[166,151],[167,151],[168,151],[182,151],[169,151],[180,151],[181,151],[170,151],[171,151],[172,151],[178,151],[179,151],[173,151],[174,151],[175,151],[176,151],[184,151],[185,151],[150,152],[149,153],[115,2],[350,2],[354,154],[356,155],[355,154],[353,156],[357,157],[352,158],[351,2],[309,2],[310,2],[311,159],[428,160],[431,161],[430,162],[432,2],[220,2],[299,163],[248,164],[261,165],[223,2],[275,166],[277,167],[276,167],[250,168],[249,2],[251,169],[278,170],[282,171],[280,171],[259,172],[258,2],[267,170],[226,170],[254,2],[295,173],[270,174],[272,175],[290,170],[225,176],[242,177],[257,2],[292,2],[263,178],[279,171],[283,179],[281,180],[296,2],[265,2],[239,176],[231,2],[230,181],[255,170],[256,170],[229,182],[262,2],[224,2],[241,2],[269,2],[297,183],[236,170],[237,184],[284,167],[286,185],[285,185],[221,2],[240,2],[247,2],[238,170],[268,2],[235,2],[294,2],[234,2],[232,186],[233,2],[271,2],[264,2],[291,187],[245,181],[243,181],[244,181],[260,2],[227,2],[287,171],[289,179],[288,180],[274,2],[273,188],[266,2],[253,2],[293,2],[298,2],[222,2],[252,2],[246,2],[228,181],[11,2],[12,2],[14,2],[13,2],[2,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[3,2],[4,2],[26,2],[23,2],[24,2],[25,2],[27,2],[28,2],[29,2],[5,2],[30,2],[31,2],[32,2],[33,2],[6,2],[37,2],[34,2],[35,2],[36,2],[38,2],[7,2],[39,2],[44,2],[45,2],[40,2],[41,2],[42,2],[43,2],[8,2],[49,2],[46,2],[47,2],[48,2],[50,2],[9,2],[51,2],[52,2],[53,2],[54,2],[55,2],[1,2],[10,2],[56,2],[427,2],[433,189],[216,190],[313,191],[219,192],[300,195],[312,196]],"semanticDiagnosticsPerFile":[316,314,111,112,113,110,109,114,319,315,317,318,321,322,324,323,325,329,320,330,335,331,334,332,328,339,340,342,343,344,345,346,347,348,358,333,359,361,362,360,363,364,365,366,367,368,369,370,371,372,373,336,337,341,374,375,57,58,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,59,107,75,76,77,108,78,79,80,81,82,83,84,85,86,87,88,89,91,90,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,376,377,378,217,327,326,379,381,380,406,407,382,385,404,405,395,394,392,387,400,398,402,386,399,403,388,389,401,383,390,391,393,397,408,396,384,421,420,415,417,416,409,410,412,414,418,419,411,413,422,338,423,424,425,434,435,436,437,438,304,308,305,302,303,306,307,301,218,214,215,429,426,349,127,128,189,188,187,129,144,143,130,213,116,122,121,119,120,142,136,137,126,138,141,135,139,117,118,140,146,145,123,124,134,132,131,125,133,147,208,202,195,194,203,204,196,209,211,190,191,192,212,193,197,198,205,206,207,199,210,200,201,148,186,151,152,153,154,155,156,157,158,177,159,160,161,162,163,164,183,165,166,167,168,182,169,180,181,170,171,172,178,179,173,174,175,176,184,185,150,149,115,350,354,356,355,353,357,352,351,309,310,311,428,431,430,432,220,299,248,261,223,275,277,276,250,249,251,278,282,280,259,258,267,226,254,295,270,272,290,225,242,257,292,263,279,283,281,296,265,239,231,230,255,256,229,262,224,241,269,297,236,237,284,286,285,221,240,247,238,268,235,294,234,232,233,271,264,291,245,243,244,260,227,287,289,288,274,273,266,253,293,298,222,252,246,228,11,12,14,13,2,15,16,17,18,19,20,21,22,3,4,26,23,24,25,27,28,29,5,30,31,32,33,6,37,34,35,36,38,7,39,44,45,40,41,42,43,8,49,46,47,48,50,9,51,52,53,54,55,1,10,56,427,433,216,313,219,300,312]},"version":"4.9.4"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Simplify } from 'type-fest';
|
|
2
|
-
|
|
2
|
+
type Headers = {
|
|
3
3
|
Authorization: string;
|
|
4
4
|
} & Record<string, string>;
|
|
5
|
-
|
|
5
|
+
type WithoutFunctionWrapper<T> = {
|
|
6
6
|
[Key in keyof T]: T[Key] extends (...args: any) => any ? ReturnType<T[Key]> : Simplify<WithoutFunctionWrapper<T[Key]>>;
|
|
7
7
|
};
|
|
8
8
|
export interface IWrapper {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wixClient.d.ts","sourceRoot":"","sources":["../../src/wixClient.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAErC,
|
|
1
|
+
{"version":3,"file":"wixClient.d.ts","sourceRoot":"","sources":["../../src/wixClient.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,WAAW,CAAC;AAErC,KAAK,OAAO,GAAG;IAAE,aAAa,EAAE,MAAM,CAAA;CAAE,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;AAElE,KAAK,sBAAsB,CAAC,CAAC,IAAI;KAC9B,GAAG,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,SAAS,CAAC,GAAG,IAAI,EAAE,GAAG,KAAK,GAAG,GAClD,UAAU,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,GAClB,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;CAC7C,CAAC;AAEF,MAAM,WAAW,QAAQ;IACvB,UAAU,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI,CAAC;CACpC;AAgFD,wBAAgB,YAAY,CAAC,CAAC,GAAG,GAAG,EAAE,MAAM,EAAE;IAC5C,OAAO,EAAE,CAAC,CAAC;IACX,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,GAAG,sBAAsB,CAAC,CAAC,CAAC,GAAG,QAAQ,CA+BvC"}
|
package/dist/types/wixMedia.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ImageTransformOptions } from '@wix/image-kit';
|
|
2
|
-
declare function
|
|
3
|
-
declare function
|
|
4
|
-
declare function
|
|
5
|
-
declare function
|
|
2
|
+
declare function getScaledToFillImageUrl(wixMediaIdentifier: string, targetWidth: number, targetHeight: number, options: ImageTransformOptions): string;
|
|
3
|
+
declare function getScaledToFitImageUrl(wixMediaIdentifier: string, targetWidth: number, targetHeight: number, options: ImageTransformOptions): string;
|
|
4
|
+
declare function getCroppedImageUrl(wixMediaIdentifier: string, cropX: number, cropY: number, cropWidth: number, cropHeight: number, targetWidth: number, targetHeight: number, options?: ImageTransformOptions): string;
|
|
5
|
+
declare function getImageUrl(val: string): {
|
|
6
6
|
id: string;
|
|
7
7
|
url: string;
|
|
8
8
|
height: number;
|
|
@@ -17,10 +17,10 @@ declare function getRawImageUrl(val: string): {
|
|
|
17
17
|
};
|
|
18
18
|
export declare function decodeText(s: string): string;
|
|
19
19
|
export declare const media: {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
20
|
+
getCroppedImageUrl: typeof getCroppedImageUrl;
|
|
21
|
+
getScaledToFillImageUrl: typeof getScaledToFillImageUrl;
|
|
22
|
+
getScaledToFitImageUrl: typeof getScaledToFitImageUrl;
|
|
23
|
+
getImageUrl: typeof getImageUrl;
|
|
24
24
|
};
|
|
25
25
|
export {};
|
|
26
26
|
//# sourceMappingURL=wixMedia.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wixMedia.d.ts","sourceRoot":"","sources":["../../src/wixMedia.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,qBAAqB,EAAE,MAAM,gBAAgB,CAAC;AAO5D,iBAAS,
|
|
1
|
+
{"version":3,"file":"wixMedia.d.ts","sourceRoot":"","sources":["../../src/wixMedia.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,qBAAqB,EAAE,MAAM,gBAAgB,CAAC;AAO5D,iBAAS,uBAAuB,CAC9B,kBAAkB,EAAE,MAAM,EAC1B,WAAW,EAAE,MAAM,EACnB,YAAY,EAAE,MAAM,EACpB,OAAO,EAAE,qBAAqB,UAY/B;AAED,iBAAS,sBAAsB,CAC7B,kBAAkB,EAAE,MAAM,EAC1B,WAAW,EAAE,MAAM,EACnB,YAAY,EAAE,MAAM,EACpB,OAAO,EAAE,qBAAqB,UAY/B;AAED,iBAAS,kBAAkB,CACzB,kBAAkB,EAAE,MAAM,EAC1B,KAAK,EAAE,MAAM,EACb,KAAK,EAAE,MAAM,EACb,SAAS,EAAE,MAAM,EACjB,UAAU,EAAE,MAAM,EAClB,WAAW,EAAE,MAAM,EACnB,YAAY,EAAE,MAAM,EACpB,OAAO,CAAC,EAAE,qBAAqB,UAgBhC;AAED,iBAAS,WAAW,CAAC,GAAG,EAAE,MAAM;;;;;;;;;;;;EA8B/B;AAED,wBAAgB,UAAU,CAAC,CAAC,EAAE,MAAM,UAMnC;AAQD,eAAO,MAAM,KAAK;;;;;CAKjB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/sdk",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.16",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Ronny Ringel",
|
|
@@ -27,20 +27,20 @@
|
|
|
27
27
|
"*.{js,ts}": "yarn lint"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@babel/runtime": "^7.
|
|
30
|
+
"@babel/runtime": "^7.20.7",
|
|
31
31
|
"@wix/image-kit": "^1.23.0",
|
|
32
|
-
"@wix/sdk-types": "^1.1.
|
|
32
|
+
"@wix/sdk-types": "^1.1.16",
|
|
33
33
|
"querystring": "^0.2.1",
|
|
34
34
|
"type-fest": "^2.19.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@types/jest": "^27.
|
|
38
|
-
"@types/node": "^16.
|
|
39
|
-
"@wix/ecom": "^1.0.
|
|
40
|
-
"@wix/jest-yoshi-preset": "^6.
|
|
41
|
-
"@wix/yoshi-flow-library": "^6.
|
|
42
|
-
"ts-jest": "^27.1.
|
|
43
|
-
"typescript": "~4.
|
|
37
|
+
"@types/jest": "^27.5.2",
|
|
38
|
+
"@types/node": "^16.18.11",
|
|
39
|
+
"@wix/ecom": "^1.0.83",
|
|
40
|
+
"@wix/jest-yoshi-preset": "^6.50.4",
|
|
41
|
+
"@wix/yoshi-flow-library": "^6.50.4",
|
|
42
|
+
"ts-jest": "^27.1.5",
|
|
43
|
+
"typescript": "~4.9.4"
|
|
44
44
|
},
|
|
45
45
|
"jest": {
|
|
46
46
|
"preset": "@wix/jest-yoshi-preset"
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"wallaby": {
|
|
66
66
|
"autoDetect": true
|
|
67
67
|
},
|
|
68
|
-
"falconPackageHash": "
|
|
68
|
+
"falconPackageHash": "7f4bef3dab8a8c351bdc7899ed38b5153cde6a92a7db86eacff1a401"
|
|
69
69
|
}
|