@flourish/sdk 5.2.2 → 5.2.4
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/.c8rc +4 -0
- package/RELEASE_NOTES.md +12 -0
- package/common/embed/credit.js +26 -11
- package/common/embed/embedding.js +1 -1
- package/common/embed/localizations.d.ts +46 -2
- package/common/embed/localizations.js +48 -37
- package/common/package.json +2 -2
- package/common/tsconfig.sdk.tsbuildinfo +1 -1
- package/common/utils/data.d.ts +2 -2
- package/common/utils/data.js +2 -1
- package/common/utils/types.d.ts +1 -2
- package/coverage-sdk/lcov-report/base.css +224 -0
- package/coverage-sdk/lcov-report/block-navigation.js +87 -0
- package/coverage-sdk/lcov-report/common/utils/columns.js.html +646 -0
- package/coverage-sdk/lcov-report/common/utils/index.html +131 -0
- package/coverage-sdk/lcov-report/common/utils/state.js.html +559 -0
- package/coverage-sdk/lcov-report/favicon.png +0 -0
- package/coverage-sdk/lcov-report/index.html +146 -0
- package/coverage-sdk/lcov-report/lib/common.js.html +181 -0
- package/coverage-sdk/lcov-report/lib/index.html +161 -0
- package/coverage-sdk/lcov-report/lib/log.js.html +178 -0
- package/coverage-sdk/lcov-report/lib/sdk.js.html +2008 -0
- package/coverage-sdk/lcov-report/lib/validate_config.js.html +1459 -0
- package/coverage-sdk/lcov-report/prettify.css +1 -0
- package/coverage-sdk/lcov-report/prettify.js +2 -0
- package/coverage-sdk/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage-sdk/lcov-report/sorter.js +210 -0
- package/coverage-sdk/lcov-report/test/lib/index.html +131 -0
- package/coverage-sdk/lcov-report/test/lib/sdk.js.html +532 -0
- package/coverage-sdk/lcov-report/test/lib/validate_config.js.html +3307 -0
- package/coverage-sdk/lcov.info +3556 -0
- package/coverage-sdk/tmp/coverage-36833-1757890375186-0.json +1 -0
- package/coverage-sdk/tmp/coverage-36834-1757890374890-0.json +1 -0
- package/lib/cmd/publish.js +1 -0
- package/lib/validate_config.js +31 -0
- package/package.json +7 -6
- package/server/columns.js +150 -0
- package/server/comms_js.js +13 -0
- package/server/data.js +132 -0
- package/server/json.js +40 -0
- package/server/views/index.html +13 -29
- package/site/embedded.js +2 -2
- package/site/images/embed_flourish_in_canva.png +0 -0
- package/site/images/flourish_app_icon.png +0 -0
- package/site/images/icon-arrow-down.svg +3 -0
- package/site/images/icon-arrow-left.svg +3 -0
- package/site/images/icon-close.svg +3 -0
- package/site/images/icon-login.svg +4 -0
- package/site/images/icon-sso.svg +4 -0
- package/site/images/share_image.jpg +0 -0
- package/site/images/upsell-presenter.jpg +0 -0
- package/site/images/upsell-publisher.jpg +0 -0
- package/site/script.js +3 -3
- package/site/sdk.css +1 -1
- package/test/lib/validate_config.js +126 -0
package/.c8rc
ADDED
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# 5.2.4
|
|
2
|
+
* Add new properties to support standalone HTML downloads. The first is
|
|
3
|
+
`allowed_standalone_download_origins` at the top level, so that
|
|
4
|
+
you can whitelist origins that the template should be able to
|
|
5
|
+
contact (e.g. map tile servers). You can also use
|
|
6
|
+
`cacheable_for_standalone_downloads: true` on settings and
|
|
7
|
+
data bindings to indicate that their URL values can fetched and
|
|
8
|
+
cached for HTML downloads.
|
|
9
|
+
|
|
10
|
+
# 5.2.3
|
|
11
|
+
* Update version of @flourish/interpreter
|
|
12
|
+
|
|
1
13
|
# 5.2.2
|
|
2
14
|
* Addresses some technical debt.
|
|
3
15
|
|
package/common/embed/credit.js
CHANGED
|
@@ -10,24 +10,39 @@ function createFlourishCredit(credit_url, query_string, public_url, credit_text)
|
|
|
10
10
|
credit_url = credit_url || "https://flourish.studio",
|
|
11
11
|
query_string = query_string || "?utm_source=api&utm_campaign=" + window.location.href,
|
|
12
12
|
public_url = public_url || "https://public.flourish.studio/",
|
|
13
|
-
credit_text = credit_text || "
|
|
13
|
+
credit_text = credit_text || "Made with Flourish • Create your own";
|
|
14
14
|
var credit = document.createElement("div");
|
|
15
15
|
credit.setAttribute("class", "flourish-credit");
|
|
16
|
-
credit.setAttribute("style", "
|
|
16
|
+
credit.setAttribute("style", "margin:4px 8px;text-align:right;font-family:system-ui,sans-serif;color:inherit;opacity:0.8;font-size:12px;font-weight:normal;font-style:normal;-webkit-font-smoothing:antialiased;box-shadow:none;");
|
|
17
|
+
// Split credit text into prefix and CTA (linked part)
|
|
18
|
+
// If no bullet (•) is present, the entire text will be linked
|
|
19
|
+
var parts = credit_text.split("•");
|
|
20
|
+
var UNICODE_NO_BREAK_SPACE = "\u00A0"; // Simple spacing without introducing line breaking
|
|
21
|
+
var prefix_text = parts.length > 1 ? parts[0].trim() + `${UNICODE_NO_BREAK_SPACE}•${UNICODE_NO_BREAK_SPACE}` : "";
|
|
22
|
+
var cta_text = parts.length > 1 ? parts[1].trim() : credit_text;
|
|
23
|
+
if (prefix_text) {
|
|
24
|
+
var prefix = document.createElement("span");
|
|
25
|
+
prefix.setAttribute("style", "font:inherit;color:inherit;vertical-align:middle;display:inline-block;box-shadow:none;");
|
|
26
|
+
prefix.appendChild(document.createTextNode(prefix_text));
|
|
27
|
+
credit.appendChild(prefix);
|
|
28
|
+
}
|
|
17
29
|
var a = document.createElement("a");
|
|
18
30
|
a.setAttribute("href", credit_url + query_string);
|
|
19
|
-
a.setAttribute("target", "
|
|
20
|
-
a.setAttribute("
|
|
31
|
+
a.setAttribute("target", "_blank");
|
|
32
|
+
a.setAttribute("aria-label", cta_text + " (opens in new tab)");
|
|
33
|
+
a.setAttribute("rel", "noopener noreferrer");
|
|
34
|
+
a.setAttribute("style", "display:inline-block;text-decoration:none;font:inherit;color:inherit;border:none;box-shadow:none;");
|
|
21
35
|
credit.appendChild(a);
|
|
22
|
-
var img = document.createElement("img");
|
|
23
|
-
img.setAttribute("alt", "Flourish logo");
|
|
24
|
-
img.setAttribute("src", public_url + "resources/bosh.svg");
|
|
25
|
-
img.setAttribute("style", "font:inherit!important;width:auto!important;height:12px!important;border:none!important;margin:0 2px 0!important;vertical-align:middle!important;display:inline-block!important;box-shadow:none!important;");
|
|
26
|
-
a.appendChild(img);
|
|
27
36
|
var span = document.createElement("span");
|
|
28
|
-
span.setAttribute("style", "font:inherit
|
|
29
|
-
span.appendChild(document.createTextNode(
|
|
37
|
+
span.setAttribute("style", "font:inherit;color:inherit;vertical-align:middle;display:inline-block;box-shadow:none;");
|
|
38
|
+
span.appendChild(document.createTextNode(cta_text));
|
|
30
39
|
a.appendChild(span);
|
|
40
|
+
span.addEventListener("mouseover", () => {
|
|
41
|
+
span.style.textDecoration = "underline";
|
|
42
|
+
});
|
|
43
|
+
span.addEventListener("mouseout", () => {
|
|
44
|
+
span.style.textDecoration = "none";
|
|
45
|
+
});
|
|
31
46
|
return credit;
|
|
32
47
|
}
|
|
33
48
|
function getLocalizedCreditTextAndUrl(lang, credit_key) {
|
|
@@ -214,7 +214,7 @@ function startEventListeners(callback, allowed_methods, embed_domain) {
|
|
|
214
214
|
return true;
|
|
215
215
|
}
|
|
216
216
|
}
|
|
217
|
-
if (event.origin.match(/\/\/localhost:\d+$|\/\/(?:public|app)\.flourish
|
|
217
|
+
if (event.origin.match(/\/\/localhost:\d+$|\/\/(?:public|app)\.local\.flourish-internal\.com$|\/\/flourish-api\.com$|\.flourish\.(?:local(:\d+)?|net|rocks|studio)$|\.uri\.sh$|\/\/flourish-user-templates\.com$/)) {
|
|
218
218
|
return true;
|
|
219
219
|
}
|
|
220
220
|
return false;
|
|
@@ -11,10 +11,26 @@ declare namespace _default {
|
|
|
11
11
|
text: string;
|
|
12
12
|
url: string;
|
|
13
13
|
};
|
|
14
|
+
"3d-arc-map": {
|
|
15
|
+
text: string;
|
|
16
|
+
url: string;
|
|
17
|
+
};
|
|
18
|
+
"3d-map": {
|
|
19
|
+
text: string;
|
|
20
|
+
url: string;
|
|
21
|
+
};
|
|
22
|
+
"3d-marker-map": {
|
|
23
|
+
text: string;
|
|
24
|
+
url: string;
|
|
25
|
+
};
|
|
14
26
|
annotator: {
|
|
15
27
|
text: string;
|
|
16
28
|
url: string;
|
|
17
29
|
};
|
|
30
|
+
audio: {
|
|
31
|
+
text: string;
|
|
32
|
+
url: string;
|
|
33
|
+
};
|
|
18
34
|
"bar-chart-race": {
|
|
19
35
|
text: string;
|
|
20
36
|
url: string;
|
|
@@ -23,6 +39,14 @@ declare namespace _default {
|
|
|
23
39
|
text: string;
|
|
24
40
|
url: string;
|
|
25
41
|
};
|
|
42
|
+
calculator: {
|
|
43
|
+
text: string;
|
|
44
|
+
url: string;
|
|
45
|
+
};
|
|
46
|
+
calendar: {
|
|
47
|
+
text: string;
|
|
48
|
+
url: string;
|
|
49
|
+
};
|
|
26
50
|
cards: {
|
|
27
51
|
text: string;
|
|
28
52
|
url: string;
|
|
@@ -35,6 +59,10 @@ declare namespace _default {
|
|
|
35
59
|
text: string;
|
|
36
60
|
url: string;
|
|
37
61
|
};
|
|
62
|
+
"connections-globe": {
|
|
63
|
+
text: string;
|
|
64
|
+
url: string;
|
|
65
|
+
};
|
|
38
66
|
countdown: {
|
|
39
67
|
text: string;
|
|
40
68
|
url: string;
|
|
@@ -71,6 +99,10 @@ declare namespace _default {
|
|
|
71
99
|
text: string;
|
|
72
100
|
url: string;
|
|
73
101
|
};
|
|
102
|
+
"interactive-diagram": {
|
|
103
|
+
text: string;
|
|
104
|
+
url: string;
|
|
105
|
+
};
|
|
74
106
|
map: {
|
|
75
107
|
text: string;
|
|
76
108
|
url: string;
|
|
@@ -103,6 +135,10 @@ declare namespace _default {
|
|
|
103
135
|
text: string;
|
|
104
136
|
url: string;
|
|
105
137
|
};
|
|
138
|
+
"projection-map": {
|
|
139
|
+
text: string;
|
|
140
|
+
url: string;
|
|
141
|
+
};
|
|
106
142
|
quiz: {
|
|
107
143
|
text: string;
|
|
108
144
|
url: string;
|
|
@@ -131,6 +167,10 @@ declare namespace _default {
|
|
|
131
167
|
text: string;
|
|
132
168
|
url: string;
|
|
133
169
|
};
|
|
170
|
+
story: {
|
|
171
|
+
text: string;
|
|
172
|
+
url: string;
|
|
173
|
+
};
|
|
134
174
|
survey: {
|
|
135
175
|
text: string;
|
|
136
176
|
url: string;
|
|
@@ -139,11 +179,11 @@ declare namespace _default {
|
|
|
139
179
|
text: string;
|
|
140
180
|
url: string;
|
|
141
181
|
};
|
|
142
|
-
|
|
182
|
+
"text-annotator": {
|
|
143
183
|
text: string;
|
|
144
184
|
url: string;
|
|
145
185
|
};
|
|
146
|
-
|
|
186
|
+
timeline: {
|
|
147
187
|
text: string;
|
|
148
188
|
url: string;
|
|
149
189
|
};
|
|
@@ -151,6 +191,10 @@ declare namespace _default {
|
|
|
151
191
|
text: string;
|
|
152
192
|
url: string;
|
|
153
193
|
};
|
|
194
|
+
webgl: {
|
|
195
|
+
text: string;
|
|
196
|
+
url: string;
|
|
197
|
+
};
|
|
154
198
|
"word-cloud": {
|
|
155
199
|
text: string;
|
|
156
200
|
url: string;
|
|
@@ -8,43 +8,54 @@ exports.default = {
|
|
|
8
8
|
},
|
|
9
9
|
"en": {
|
|
10
10
|
credits: {
|
|
11
|
-
"default": { text: "
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"globe": { text: "
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
11
|
+
"default": { text: "Made with Flourish • Create your own", url: "https://flourish.studio/" },
|
|
12
|
+
"3d-arc-map": { text: "Made with Flourish • Create an arc map", url: "https://flourish.studio/visualisations/maps/" },
|
|
13
|
+
"3d-map": { text: "Made with Flourish • Create a 3D map", url: "https://flourish.studio/visualisations/maps/" },
|
|
14
|
+
"3d-marker-map": { text: "Made with Flourish • Create a marker map", url: "https://flourish.studio/visualisations/maps/" },
|
|
15
|
+
"annotator": { text: "Made with Flourish • Create an annotator", url: "https://app.flourish.studio/@flourish/svg-annotator" },
|
|
16
|
+
"audio": { text: "Made with Flourish • Create an audio player", url: "https://flourish.studio/product/interactive-content/" },
|
|
17
|
+
"bar-chart-race": { text: "Made with Flourish • Create a bar chart race", url: "https://flourish.studio/visualisations/bar-chart-race/" },
|
|
18
|
+
"bubble-chart": { text: "Made with Flourish • Create a bubble chart", url: "https://flourish.studio/visualisations/bubble-charts/" },
|
|
19
|
+
"calculator": { text: "Made with Flourish • Create a calculator", url: "https://flourish.studio/product/interactive-content/" },
|
|
20
|
+
"calendar": { text: "Made with Flourish • Create a calendar", url: "https://flourish.studio/visualisations/calendar-maker/" },
|
|
21
|
+
"cards": { text: "Made with Flourish • Create interactive content", url: "https://flourish.studio/product/interactive-content/" },
|
|
22
|
+
"chart": { text: "Made with Flourish • Create a chart", url: "https://flourish.studio/visualisations/line-bar-pie-charts/" },
|
|
23
|
+
"chord": { text: "Made with Flourish • Create a chord diagram", url: "https://flourish.studio/visualisations/chord-diagrams/" },
|
|
24
|
+
"connections-globe": { text: "Made with Flourish • Create a connections globe", url: "https://flourish.studio/visualisations/maps/" },
|
|
25
|
+
"countdown": { text: "Made with Flourish • Create a countdown", url: "https://flourish.studio/product/interactive-content/" },
|
|
26
|
+
"data-explorer": { text: "Made with Flourish • Create a data explorer", url: "https://flourish.studio/visualisations/data-explorer/" },
|
|
27
|
+
"draw": { text: "Made with Flourish • Create a draw the line chart", url: "https://flourish.studio/product/interactive-content/" },
|
|
28
|
+
"election": { text: "Made with Flourish • Create an election results chart", url: "https://flourish.studio/resources/elections/" },
|
|
29
|
+
"gantt": { text: "Made with Flourish • Create a Gantt chart", url: "https://flourish.studio/visualisations/gantt-charts/" },
|
|
30
|
+
"gauge": { text: "Made with Flourish • Create a gauge chart", url: "https://flourish.studio/visualisations/gauge-charts/" },
|
|
31
|
+
"globe": { text: "Made with Flourish • Create a globe", url: "https://flourish.studio/visualisations/maps/" },
|
|
32
|
+
"heatmap": { text: "Made with Flourish • Create a heatmap", url: "https://flourish.studio/visualisations/heatmaps/" },
|
|
33
|
+
"hierarchy": { text: "Made with Flourish • Create a hierarchy graph", url: "https://flourish.studio/visualisations/treemaps/" },
|
|
34
|
+
"interactive-diagram": { text: "Made with Flourish • Create an interactive SVG", url: "https://flourish.studio/visualisations/interactive-svg/" },
|
|
35
|
+
"map": { text: "Made with Flourish • Create a map", url: "https://flourish.studio/visualisations/maps/" },
|
|
36
|
+
"marimekko": { text: "Made with Flourish • Create a Marimekko chart", url: "https://flourish.studio/visualisations/marimekko-charts/" },
|
|
37
|
+
"model": { text: "Made with Flourish • Create a 3D viewer", url: "https://flourish.studio/visualisations/3d-viewer/" },
|
|
38
|
+
"network": { text: "Made with Flourish • Create a network graph", url: "https://flourish.studio/visualisations/network-charts/" },
|
|
39
|
+
"number-ticker": { text: "Made with Flourish • Create a number ticker", url: "https://flourish.studio/product/interactive-content/" },
|
|
40
|
+
"parliament": { text: "Made with Flourish • Create a parliament chart", url: "https://flourish.studio/visualisations/parliament-charts/" },
|
|
41
|
+
"photo-slider": { text: "Made with Flourish • Create a photo slider", url: "https://flourish.studio/product/interactive-content/" },
|
|
42
|
+
"pictogram": { text: "Made with Flourish • Create a pictogram chart", url: "https://flourish.studio/visualisations/pictogram-charts/" },
|
|
43
|
+
"projection-map": { text: "Made with Flourish • Create a map", url: "https://flourish.studio/visualisations/maps/" },
|
|
44
|
+
"quiz": { text: "Made with Flourish • Create a quiz", url: "https://flourish.studio/product/interactive-content/" },
|
|
45
|
+
"radar": { text: "Made with Flourish • Create a radar chart", url: "https://flourish.studio/visualisations/radar-charts/" },
|
|
46
|
+
"ranking": { text: "Made with Flourish • Create a line chart race", url: "https://flourish.studio/visualisations/line-chart-race/" },
|
|
47
|
+
"sankey": { text: "Made with Flourish • Create a Sankey diagram", url: "https://flourish.studio/visualisations/sankey-charts/" },
|
|
48
|
+
"scatter": { text: "Made with Flourish • Create a scatter plot", url: "https://flourish.studio/visualisations/scatter-charts/" },
|
|
49
|
+
"slope": { text: "Made with Flourish • Create a slope chart", url: "https://flourish.studio/visualisations/slope-charts/" },
|
|
50
|
+
"sports": { text: "Made with Flourish • Visualize sports data", url: "https://flourish.studio/resources/sports/" },
|
|
51
|
+
"story": { text: "Made with Flourish • Create a data story", url: "https://flourish.studio/product/data-storytelling/" },
|
|
52
|
+
"survey": { text: "Made with Flourish • Create a survey graph", url: "https://flourish.studio/visualisations/survey-template/" },
|
|
53
|
+
"table": { text: "Made with Flourish • Create a table", url: "https://flourish.studio/visualisations/create-a-table/" },
|
|
54
|
+
"text-annotator": { text: "Made with Flourish • Create a text annotator", url: "https://flourish.studio/product/data-visualization/" },
|
|
55
|
+
"timeline": { text: "Made with Flourish • Create a timeline", url: "https://flourish.studio/visualisations/timeline-maker/" },
|
|
56
|
+
"tournament": { text: "Made with Flourish • Create a tournament chart", url: "https://flourish.studio/visualisations/tournament-chart/" },
|
|
57
|
+
"webgl": { text: "Made with Flourish • Create a globe", url: "https://flourish.studio/visualisations/maps/" },
|
|
58
|
+
"word-cloud": { text: "Made with Flourish • Create a word cloud", url: "https://flourish.studio/product/interactive-content/" },
|
|
48
59
|
},
|
|
49
60
|
},
|
|
50
61
|
"es": {
|
package/common/package.json
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
"description": "Common shared utilities",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"test": "jest",
|
|
6
|
-
"test:ci": "jest --config jest.config.ci.mjs"
|
|
6
|
+
"test:ci": "jest --config jest.config.ci.mjs --coverage"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@adobe/css-tools": "^4.3.3",
|
|
10
|
-
"@flourish/interpreter": "^9.
|
|
10
|
+
"@flourish/interpreter": "^9.2.0",
|
|
11
11
|
"dompurify": "^3.2.4"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
@@ -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.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.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.date.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.esnext.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../common/utils/types.ts","../../common/utils/state.ts","../../common/utils/columns.js","../../common/utils/json.ts","../../common/utils/polyfills.js","../../common/utils/data.ts","../../common/embed/localizations.js","../../common/embed/credit.js","../../common/embed/customer_analytics.js","../../common/node_modules/@types/trusted-types/lib/index.d.ts","../../common/node_modules/@types/trusted-types/index.d.ts","../../common/node_modules/dompurify/dist/purify.cjs.d.ts","../../common/embed/parse_query_params.js","../../common/embed/embedding.js","../../common/package.json","../../common/node_modules/@babel/types/lib/index.d.ts","../../common/node_modules/@types/babel__generator/index.d.ts","../../common/node_modules/@babel/parser/typings/babel-parser.d.ts","../../common/node_modules/@types/babel__template/index.d.ts","../../common/node_modules/@types/babel__traverse/index.d.ts","../../common/node_modules/@types/babel__core/index.d.ts","../../common/node_modules/@types/node/assert.d.ts","../../common/node_modules/@types/node/assert/strict.d.ts","../../common/node_modules/undici-types/header.d.ts","../../common/node_modules/undici-types/readable.d.ts","../../common/node_modules/undici-types/file.d.ts","../../common/node_modules/undici-types/fetch.d.ts","../../common/node_modules/undici-types/formdata.d.ts","../../common/node_modules/undici-types/connector.d.ts","../../common/node_modules/undici-types/client.d.ts","../../common/node_modules/undici-types/errors.d.ts","../../common/node_modules/undici-types/dispatcher.d.ts","../../common/node_modules/undici-types/global-dispatcher.d.ts","../../common/node_modules/undici-types/global-origin.d.ts","../../common/node_modules/undici-types/pool-stats.d.ts","../../common/node_modules/undici-types/pool.d.ts","../../common/node_modules/undici-types/handlers.d.ts","../../common/node_modules/undici-types/balanced-pool.d.ts","../../common/node_modules/undici-types/agent.d.ts","../../common/node_modules/undici-types/mock-interceptor.d.ts","../../common/node_modules/undici-types/mock-agent.d.ts","../../common/node_modules/undici-types/mock-client.d.ts","../../common/node_modules/undici-types/mock-pool.d.ts","../../common/node_modules/undici-types/mock-errors.d.ts","../../common/node_modules/undici-types/proxy-agent.d.ts","../../common/node_modules/undici-types/api.d.ts","../../common/node_modules/undici-types/cookies.d.ts","../../common/node_modules/undici-types/patch.d.ts","../../common/node_modules/undici-types/filereader.d.ts","../../common/node_modules/undici-types/diagnostics-channel.d.ts","../../common/node_modules/undici-types/websocket.d.ts","../../common/node_modules/undici-types/content-type.d.ts","../../common/node_modules/undici-types/cache.d.ts","../../common/node_modules/undici-types/interceptors.d.ts","../../common/node_modules/undici-types/index.d.ts","../../common/node_modules/@types/node/globals.d.ts","../../common/node_modules/@types/node/async_hooks.d.ts","../../common/node_modules/@types/node/buffer.d.ts","../../common/node_modules/@types/node/child_process.d.ts","../../common/node_modules/@types/node/cluster.d.ts","../../common/node_modules/@types/node/console.d.ts","../../common/node_modules/@types/node/constants.d.ts","../../common/node_modules/@types/node/crypto.d.ts","../../common/node_modules/@types/node/dgram.d.ts","../../common/node_modules/@types/node/diagnostics_channel.d.ts","../../common/node_modules/@types/node/dns.d.ts","../../common/node_modules/@types/node/dns/promises.d.ts","../../common/node_modules/@types/node/domain.d.ts","../../common/node_modules/@types/node/dom-events.d.ts","../../common/node_modules/@types/node/events.d.ts","../../common/node_modules/@types/node/fs.d.ts","../../common/node_modules/@types/node/fs/promises.d.ts","../../common/node_modules/@types/node/http.d.ts","../../common/node_modules/@types/node/http2.d.ts","../../common/node_modules/@types/node/https.d.ts","../../common/node_modules/@types/node/inspector.d.ts","../../common/node_modules/@types/node/module.d.ts","../../common/node_modules/@types/node/net.d.ts","../../common/node_modules/@types/node/os.d.ts","../../common/node_modules/@types/node/path.d.ts","../../common/node_modules/@types/node/perf_hooks.d.ts","../../common/node_modules/@types/node/process.d.ts","../../common/node_modules/@types/node/punycode.d.ts","../../common/node_modules/@types/node/querystring.d.ts","../../common/node_modules/@types/node/readline.d.ts","../../common/node_modules/@types/node/readline/promises.d.ts","../../common/node_modules/@types/node/repl.d.ts","../../common/node_modules/@types/node/sea.d.ts","../../common/node_modules/@types/node/stream.d.ts","../../common/node_modules/@types/node/stream/promises.d.ts","../../common/node_modules/@types/node/stream/consumers.d.ts","../../common/node_modules/@types/node/stream/web.d.ts","../../common/node_modules/@types/node/string_decoder.d.ts","../../common/node_modules/@types/node/test.d.ts","../../common/node_modules/@types/node/timers.d.ts","../../common/node_modules/@types/node/timers/promises.d.ts","../../common/node_modules/@types/node/tls.d.ts","../../common/node_modules/@types/node/trace_events.d.ts","../../common/node_modules/@types/node/tty.d.ts","../../common/node_modules/@types/node/url.d.ts","../../common/node_modules/@types/node/util.d.ts","../../common/node_modules/@types/node/v8.d.ts","../../common/node_modules/@types/node/vm.d.ts","../../common/node_modules/@types/node/wasi.d.ts","../../common/node_modules/@types/node/worker_threads.d.ts","../../common/node_modules/@types/node/zlib.d.ts","../../common/node_modules/@types/node/globals.global.d.ts","../../common/node_modules/@types/node/index.d.ts","../../common/node_modules/@types/graceful-fs/index.d.ts","../../common/node_modules/@types/istanbul-lib-coverage/index.d.ts","../../common/node_modules/@types/istanbul-lib-report/index.d.ts","../../common/node_modules/@types/istanbul-reports/index.d.ts","../../common/node_modules/@jest/expect-utils/build/index.d.ts","../../common/node_modules/chalk/index.d.ts","../../common/node_modules/@sinclair/typebox/typebox.d.ts","../../common/node_modules/@jest/schemas/build/index.d.ts","../../common/node_modules/pretty-format/build/index.d.ts","../../common/node_modules/jest-diff/build/index.d.ts","../../common/node_modules/jest-matcher-utils/build/index.d.ts","../../common/node_modules/expect/build/index.d.ts","../../common/node_modules/@types/jest/index.d.ts","../../common/node_modules/@types/stack-utils/index.d.ts","../../common/node_modules/@types/yargs-parser/index.d.ts","../../common/node_modules/@types/yargs/index.d.ts","../../node_modules/@types/cloudflare/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569",{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"2c15fa58e3c4c4e3a94cf4bec4db6d8e188621464c4e5bc450863a3c80f153bf","signature":"b219e7d4b6684feae7020878c6ab8ee25cf015a3d320cc9a9c1b99bf9cd26862"},{"version":"4746d6341a9295a0b585fc5dcac8d6f466663055cc84814cfb4bd786fe969a4f","signature":"f412a2a363b1ff132145468021305ea7088d510a7ed1a5677c656a8a11b4cd40"},{"version":"148ccd8c8240a0524140c996b0809e1c10f30b0b35847c446306387933a5acfb","signature":"01ac0acdb218da1dd9d1ed03d33cb55b57c2df478781473b857800eddb3460fd"},{"version":"752ba70ef56abc58603831b5f783dce85ab2b56c14b2d2af8f53eeb04e9c9414","signature":"d1d7b66be3e33473562aa33a2e7a820ae5e53149b141e4ed6b6a527eec13dcbf"},{"version":"e4280e0303831dd1970b82460fb69af507536c2aaa2babd3beede56cd1279623","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","affectsGlobalScope":true},{"version":"b6cb6fed5d660036d2b4ed27b09adff27b3fda6cf062ce7f3b39400a93f61b29","signature":"269ff4f54efdd89eb0c5c9e971471ca0f3235f4af544416603da9b7a425217e2"},{"version":"0f3628f7b42686c332f921bb21a10c47ca4b4159ab3f5fb52f4f564fa2533dd9","signature":"1fa53b8c0d36b9fc633cfc86a7f4fff8aa29085606478318deb03b9c410c4754"},{"version":"a009aa268f402eae40c2334b4adb3205d2f4a02e643f7d912b45aecc638a4646","signature":"ab369d6522cc4480179febd57523e5ea502266c06dbcbeaa7cc4a2d74a3b92be"},{"version":"928e11ff15d57fa9558b1f36d988a468bf891eca7c82579d027f88edfb0549ac","signature":"7d53f8799f685a263392f5b44289117d99e541ab09a9f6cf2608d2438c39a8fe"},"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e",{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true},"86d2516e98db8624510d5368695702e15c0119305cd5bda1be2aa29d469d9ca8",{"version":"5dbbe54fcb5348c7b3f9fe8f78564301a8ca853245716792e0923041fe55cfa7","signature":"e2a8347f36e74ee72a5b91e1685372919b967cadc3d48fd5f5fc7435b05826bc"},{"version":"218c9fc68a906b68a294fac48ece072fd205e1757a789a790ed1f27fd3ac713d","signature":"e849dde379a052fd6e755df1c2d5805c10aa4ba7e3bd09644169fbd11d7b4138"},"1ceea9a73519fcd56c990b9a20d15dd5964bb5551c0d9aa80a7dc484b7c3d961","8d27e5f73b75340198b2df36f39326f693743e64006bd7b88a925a5f285df628","2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","1c2cd862994b1fbed3cde0d1e8de47835ff112d197a3debfddf7b2ee3b2c52bc","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"e7be367719c613d580d4b27fdf8fe64c9736f48217f4b322c0d63b2971460918","affectsGlobalScope":true},"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36",{"version":"392eadc2af403dd10b4debfbc655c089a7fa6a9750caeb770cfb30051e55e848","affectsGlobalScope":true},"62f1c00d3d246e0e3cf0224f91e122d560428ec1ccc36bb51d4574a84f1dbad0","53f0960fdcc53d097918adfd8861ffbe0db989c56ffc16c052197bf115da5ed6",{"version":"662163e5327f260b23ca0a1a1ad8a74078aabb587c904fcb5ef518986987eaff","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"c48c503c6b3f63baf18257e9a87559b5602a4e960107c762586d2a6a62b64a18","affectsGlobalScope":true},"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","0364f8bb461d6e84252412d4e5590feda4eb582f77d47f7a024a7a9ff105dfdc","5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","d0ca5d7df114035258a9d01165be309371fcccf0cccd9d57b1453204686d1ed0",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"1493cc4d72bfaabe2ac13e987d026a5fc99a816f6289bfca7192834a396205cf","affectsGlobalScope":true},"173b6275a81ebdb283b180654890f46516c21199734fed01a773b1c168b8c45c","304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","1b9adafe8a7fefaeaf9099a0e06f602903f6268438147b843a33a5233ac71745","98273274f2dbb79b0b2009b20f74eca4a7146a3447c912d580cd5d2d94a7ae30","c933f7ba4b201c98b14275fd11a14abb950178afd2074703250fe3654fc10cd2","2eaa31492906bc8525aff3c3ec2236e22d90b0dfeee77089f196cd0adf0b3e3b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"8f5814f29dbaf8bacd1764aebdf1c8a6eb86381f6a188ddbac0fcbaab855ce52","a63d03de72adfb91777784015bd3b4125abd2f5ef867fc5a13920b5649e8f52b","d20e003f3d518a7c1f749dbe27c6ab5e3be7b3c905a48361b04a9557de4a6900",{"version":"1d4d78c8b23c9ddaaaa49485e6adc2ec01086dfe5d8d4d36ca4cdc98d2f7e74a","affectsGlobalScope":true},{"version":"44fc16356b81c0463cc7d7b2b35dcf324d8144136f5bc5ce73ced86f2b3475b5","affectsGlobalScope":true},"575fb200043b11b464db8e42cc64379c5fd322b6d787638e005b5ee98a64486d","6de2f225d942562733e231a695534b30039bdf1875b377bb7255881f0df8ede8","56249fd3ef1f6b90888e606f4ea648c43978ef43a7263aafad64f8d83cd3b8aa","139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","7b166975fdbd3b37afb64707b98bca88e46577bbc6c59871f9383a7df2daacd1","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","81505c54d7cad0009352eaa21bd923ab7cdee7ec3405357a54d9a5da033a2084","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","2ee1645e0df9d84467cfe1d67b0ad3003c2f387de55874d565094464ee6f2927",{"version":"071d4b4af5755e1a081aa3b785b5526d09276af5a50e4725dea26edd4e7deb31","affectsGlobalScope":true},{"version":"9cf780e96b687e4bdfd1907ed26a688c18b89797490a00598fa8b8ab683335dd","affectsGlobalScope":true},"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","9ae88ce9f73446c24b2d2452e993b676da1b31fca5ceb7276e7f36279f693ed1","e49d7625faff2a7842e4e7b9b197f972633fca685afcf6b4403400c97d087c36","b82c38abc53922b1b3670c3af6f333c21b735722a8f156e7d357a2da7c53a0a0",{"version":"b423f53647708043299ded4daa68d95c967a2ac30aa1437adc4442129d7d0a6c","affectsGlobalScope":true},{"version":"7245af181218216bacb01fbdf51095617a51661f20d77178c69a377e16fb69ed","affectsGlobalScope":true},"4f0fc7b7f54422bd97cfaf558ddb4bca86893839367b746a8f86b60ac7619673","4cdd8b6b51599180a387cc7c1c50f49eca5ce06595d781638fd0216520d98246","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"8704423bf338bff381ebc951ed819935d0252d90cd6de7dffe5b0a5debb65d07","affectsGlobalScope":true},"7c6929fd7cbf38499b6a600b91c3b603d1d78395046dc3499b2b92d01418b94b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"5ab630d466ac55baa6d32820378098404fc18ba9da6f7bc5df30c5dbb1cffae8","affectsGlobalScope":true},"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","5d30d04a14ed8527ac5d654dc345a4db11b593334c11a65efb6e4facc5484a0e","edb9f56c510bbb951e141e9760ad686a2323eeaf5d1df0f343573f7f5d6a68d1","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a"],"root":[[51,59],[63,65]],"options":{"allowJs":true,"composite":true,"declaration":true,"declarationMap":false,"esModuleInterop":true,"module":1,"noImplicitAny":false,"outDir":"./","rootDir":"../../common","skipLibCheck":true,"strict":true,"target":8},"fileIdsList":[[57],[59,62,63],[66],[165],[66,67,68,69,70],[66,68],[121,158],[160],[161],[167,170],[72],[107],[108,113,142],[109,114,120,121,128,139,150],[109,110,120,128],[111,151],[112,113,121,129],[113,139,147],[114,116,120,128],[107,115],[116,117],[120],[118,120],[107,120],[120,121,122,139,150],[120,121,122,135,139,142],[105,108,155],[116,120,123,128,139,150],[120,121,123,124,128,139,147,150],[123,125,139,147,150],[72,73,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157],[120,126],[127,150,155],[116,120,128,139],[129],[130],[107,131],[128,129,132,149,155],[133],[134],[120,135,136],[135,137,151,153],[108,120,139,140,141,142],[108,139,141],[139,140],[142],[143],[107,139],[120,145,146],[145,146],[113,128,139,147],[148],[128,149],[108,123,134,150],[113,151],[139,152],[127,153],[154],[108,113,120,122,131,139,150,153,155],[139,156],[60],[173],[61],[163,169],[167],[164,168],[166],[82,86,150],[82,139,150],[77],[79,82,147,150],[128,147],[158],[77,158],[79,82,128,150],[74,75,78,81,108,120,139,150],[74,80],[78,82,108,142,150,158],[108,158],[98,108,158],[76,77,158],[82],[76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,96,97,99,100,101,102,103,104],[82,89,90],[80,82,90,91],[81],[74,77,82],[82,86,90,91],[86],[80,82,85,150],[74,79,80,82,86,89],[108,139],[77,82,98,108,155,158],[51]],"referencedMap":[[58,1],[64,2],[68,3],[166,4],[71,5],[67,3],[69,6],[70,3],[159,7],[161,8],[162,9],[171,10],[72,11],[73,11],[107,12],[108,13],[109,14],[110,15],[111,16],[112,17],[113,18],[114,19],[115,20],[116,21],[117,21],[119,22],[118,23],[120,24],[121,25],[122,26],[106,27],[123,28],[124,29],[125,30],[158,31],[126,32],[127,33],[128,34],[129,35],[130,36],[131,37],[132,38],[133,39],[134,40],[135,41],[136,41],[137,42],[139,43],[141,44],[140,45],[142,46],[143,47],[144,48],[145,49],[146,50],[147,51],[148,52],[149,53],[150,54],[151,55],[152,56],[153,57],[154,58],[155,59],[156,60],[61,61],[174,62],[62,63],[170,64],[168,65],[169,66],[167,67],[89,68],[96,69],[88,68],[103,70],[80,71],[79,72],[102,73],[97,74],[100,75],[82,76],[81,77],[77,78],[76,79],[99,80],[78,81],[83,82],[87,82],[105,83],[104,82],[91,84],[92,85],[94,86],[90,87],[93,88],[98,73],[85,89],[86,90],[95,91],[75,92],[101,93],[56,94],[54,94]],"latestChangedDtsFile":"./embed/embedding.d.ts"},"version":"5.5.2"}
|
|
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.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.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.date.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.esnext.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../common/utils/types.ts","../../common/utils/state.ts","../../common/utils/columns.js","../../common/utils/json.ts","../../common/utils/polyfills.js","../../common/utils/data.ts","../../common/embed/localizations.js","../../common/embed/credit.js","../../common/embed/customer_analytics.js","../../common/node_modules/@types/trusted-types/lib/index.d.ts","../../common/node_modules/@types/trusted-types/index.d.ts","../../common/node_modules/dompurify/dist/purify.cjs.d.ts","../../common/embed/parse_query_params.js","../../common/embed/embedding.js","../../common/package.json","../../common/node_modules/@babel/types/lib/index.d.ts","../../common/node_modules/@types/babel__generator/index.d.ts","../../common/node_modules/@babel/parser/typings/babel-parser.d.ts","../../common/node_modules/@types/babel__template/index.d.ts","../../common/node_modules/@types/babel__traverse/index.d.ts","../../common/node_modules/@types/babel__core/index.d.ts","../../common/node_modules/@types/node/assert.d.ts","../../common/node_modules/@types/node/assert/strict.d.ts","../../common/node_modules/undici-types/header.d.ts","../../common/node_modules/undici-types/readable.d.ts","../../common/node_modules/undici-types/file.d.ts","../../common/node_modules/undici-types/fetch.d.ts","../../common/node_modules/undici-types/formdata.d.ts","../../common/node_modules/undici-types/connector.d.ts","../../common/node_modules/undici-types/client.d.ts","../../common/node_modules/undici-types/errors.d.ts","../../common/node_modules/undici-types/dispatcher.d.ts","../../common/node_modules/undici-types/global-dispatcher.d.ts","../../common/node_modules/undici-types/global-origin.d.ts","../../common/node_modules/undici-types/pool-stats.d.ts","../../common/node_modules/undici-types/pool.d.ts","../../common/node_modules/undici-types/handlers.d.ts","../../common/node_modules/undici-types/balanced-pool.d.ts","../../common/node_modules/undici-types/agent.d.ts","../../common/node_modules/undici-types/mock-interceptor.d.ts","../../common/node_modules/undici-types/mock-agent.d.ts","../../common/node_modules/undici-types/mock-client.d.ts","../../common/node_modules/undici-types/mock-pool.d.ts","../../common/node_modules/undici-types/mock-errors.d.ts","../../common/node_modules/undici-types/proxy-agent.d.ts","../../common/node_modules/undici-types/api.d.ts","../../common/node_modules/undici-types/cookies.d.ts","../../common/node_modules/undici-types/patch.d.ts","../../common/node_modules/undici-types/filereader.d.ts","../../common/node_modules/undici-types/diagnostics-channel.d.ts","../../common/node_modules/undici-types/websocket.d.ts","../../common/node_modules/undici-types/content-type.d.ts","../../common/node_modules/undici-types/cache.d.ts","../../common/node_modules/undici-types/interceptors.d.ts","../../common/node_modules/undici-types/index.d.ts","../../common/node_modules/@types/node/globals.d.ts","../../common/node_modules/@types/node/async_hooks.d.ts","../../common/node_modules/@types/node/buffer.d.ts","../../common/node_modules/@types/node/child_process.d.ts","../../common/node_modules/@types/node/cluster.d.ts","../../common/node_modules/@types/node/console.d.ts","../../common/node_modules/@types/node/constants.d.ts","../../common/node_modules/@types/node/crypto.d.ts","../../common/node_modules/@types/node/dgram.d.ts","../../common/node_modules/@types/node/diagnostics_channel.d.ts","../../common/node_modules/@types/node/dns.d.ts","../../common/node_modules/@types/node/dns/promises.d.ts","../../common/node_modules/@types/node/domain.d.ts","../../common/node_modules/@types/node/dom-events.d.ts","../../common/node_modules/@types/node/events.d.ts","../../common/node_modules/@types/node/fs.d.ts","../../common/node_modules/@types/node/fs/promises.d.ts","../../common/node_modules/@types/node/http.d.ts","../../common/node_modules/@types/node/http2.d.ts","../../common/node_modules/@types/node/https.d.ts","../../common/node_modules/@types/node/inspector.d.ts","../../common/node_modules/@types/node/module.d.ts","../../common/node_modules/@types/node/net.d.ts","../../common/node_modules/@types/node/os.d.ts","../../common/node_modules/@types/node/path.d.ts","../../common/node_modules/@types/node/perf_hooks.d.ts","../../common/node_modules/@types/node/process.d.ts","../../common/node_modules/@types/node/punycode.d.ts","../../common/node_modules/@types/node/querystring.d.ts","../../common/node_modules/@types/node/readline.d.ts","../../common/node_modules/@types/node/readline/promises.d.ts","../../common/node_modules/@types/node/repl.d.ts","../../common/node_modules/@types/node/sea.d.ts","../../common/node_modules/@types/node/stream.d.ts","../../common/node_modules/@types/node/stream/promises.d.ts","../../common/node_modules/@types/node/stream/consumers.d.ts","../../common/node_modules/@types/node/stream/web.d.ts","../../common/node_modules/@types/node/string_decoder.d.ts","../../common/node_modules/@types/node/test.d.ts","../../common/node_modules/@types/node/timers.d.ts","../../common/node_modules/@types/node/timers/promises.d.ts","../../common/node_modules/@types/node/tls.d.ts","../../common/node_modules/@types/node/trace_events.d.ts","../../common/node_modules/@types/node/tty.d.ts","../../common/node_modules/@types/node/url.d.ts","../../common/node_modules/@types/node/util.d.ts","../../common/node_modules/@types/node/v8.d.ts","../../common/node_modules/@types/node/vm.d.ts","../../common/node_modules/@types/node/wasi.d.ts","../../common/node_modules/@types/node/worker_threads.d.ts","../../common/node_modules/@types/node/zlib.d.ts","../../common/node_modules/@types/node/globals.global.d.ts","../../common/node_modules/@types/node/index.d.ts","../../common/node_modules/@types/graceful-fs/index.d.ts","../../common/node_modules/@types/istanbul-lib-coverage/index.d.ts","../../common/node_modules/@types/istanbul-lib-report/index.d.ts","../../common/node_modules/@types/istanbul-reports/index.d.ts","../../common/node_modules/@jest/expect-utils/build/index.d.ts","../../common/node_modules/chalk/index.d.ts","../../common/node_modules/@sinclair/typebox/typebox.d.ts","../../common/node_modules/@jest/schemas/build/index.d.ts","../../common/node_modules/pretty-format/build/index.d.ts","../../common/node_modules/jest-diff/build/index.d.ts","../../common/node_modules/jest-matcher-utils/build/index.d.ts","../../common/node_modules/expect/build/index.d.ts","../../common/node_modules/@types/jest/index.d.ts","../../common/node_modules/@types/stack-utils/index.d.ts","../../common/node_modules/@types/yargs-parser/index.d.ts","../../common/node_modules/@types/yargs/index.d.ts","../../node_modules/@types/cloudflare/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569",{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"72043b063a51240c9fd08a990829238cf29ffc06a600ab4670a7aa5c4e7c7ad7","signature":"18b2677d278d86f665aafdd4baf290615281edb1f4756b4287207a6f6f104c29"},{"version":"4746d6341a9295a0b585fc5dcac8d6f466663055cc84814cfb4bd786fe969a4f","signature":"f412a2a363b1ff132145468021305ea7088d510a7ed1a5677c656a8a11b4cd40"},{"version":"148ccd8c8240a0524140c996b0809e1c10f30b0b35847c446306387933a5acfb","signature":"01ac0acdb218da1dd9d1ed03d33cb55b57c2df478781473b857800eddb3460fd"},{"version":"752ba70ef56abc58603831b5f783dce85ab2b56c14b2d2af8f53eeb04e9c9414","signature":"d1d7b66be3e33473562aa33a2e7a820ae5e53149b141e4ed6b6a527eec13dcbf"},{"version":"e4280e0303831dd1970b82460fb69af507536c2aaa2babd3beede56cd1279623","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","affectsGlobalScope":true},{"version":"23bf998c0208ca002688e8c3ce38216a68ea68325eb952f409f0ad02927a44d3","signature":"60216bf2a9af329397bcf17ea19e8ceaccf572c52690820fbb7fa8e3f34652bb"},{"version":"8e4ebd678def84d8a802a6b435fcb19caf945b655241c35ac1f4d220dd2bbcb0","signature":"58e2b0b0ba7488b441f2205acaa6e77eaf91917123aed6cef348935e6eccfd83"},{"version":"1357ddb5e2262fe40a32c4d11ffd0312fab0077e6ab4e7347918fb21e9cfddaa","signature":"ab369d6522cc4480179febd57523e5ea502266c06dbcbeaa7cc4a2d74a3b92be"},{"version":"928e11ff15d57fa9558b1f36d988a468bf891eca7c82579d027f88edfb0549ac","signature":"7d53f8799f685a263392f5b44289117d99e541ab09a9f6cf2608d2438c39a8fe"},"15fe687c59d62741b4494d5e623d497d55eb38966ecf5bea7f36e48fc3fbe15e",{"version":"2c3b8be03577c98530ef9cb1a76e2c812636a871f367e9edf4c5f3ce702b77f8","affectsGlobalScope":true},"86d2516e98db8624510d5368695702e15c0119305cd5bda1be2aa29d469d9ca8",{"version":"5dbbe54fcb5348c7b3f9fe8f78564301a8ca853245716792e0923041fe55cfa7","signature":"e2a8347f36e74ee72a5b91e1685372919b967cadc3d48fd5f5fc7435b05826bc"},{"version":"cc80b639e37e3fba8770963b4af63620106da18695e55a3c77b923fa6084e9d2","signature":"e849dde379a052fd6e755df1c2d5805c10aa4ba7e3bd09644169fbd11d7b4138"},"3c20af25e4663a77e460306def93823d20cf2e5a7bfa7da59c956ed8a55943ea","8d27e5f73b75340198b2df36f39326f693743e64006bd7b88a925a5f285df628","2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","1c2cd862994b1fbed3cde0d1e8de47835ff112d197a3debfddf7b2ee3b2c52bc","670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"e7be367719c613d580d4b27fdf8fe64c9736f48217f4b322c0d63b2971460918","affectsGlobalScope":true},"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36",{"version":"392eadc2af403dd10b4debfbc655c089a7fa6a9750caeb770cfb30051e55e848","affectsGlobalScope":true},"62f1c00d3d246e0e3cf0224f91e122d560428ec1ccc36bb51d4574a84f1dbad0","53f0960fdcc53d097918adfd8861ffbe0db989c56ffc16c052197bf115da5ed6",{"version":"662163e5327f260b23ca0a1a1ad8a74078aabb587c904fcb5ef518986987eaff","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"c48c503c6b3f63baf18257e9a87559b5602a4e960107c762586d2a6a62b64a18","affectsGlobalScope":true},"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","0364f8bb461d6e84252412d4e5590feda4eb582f77d47f7a024a7a9ff105dfdc","5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","d0ca5d7df114035258a9d01165be309371fcccf0cccd9d57b1453204686d1ed0",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"1493cc4d72bfaabe2ac13e987d026a5fc99a816f6289bfca7192834a396205cf","affectsGlobalScope":true},"173b6275a81ebdb283b180654890f46516c21199734fed01a773b1c168b8c45c","304f66274aa8119e8d65a49b1cff84cbf803def6afe1b2cc987386e9a9890e22","1b9adafe8a7fefaeaf9099a0e06f602903f6268438147b843a33a5233ac71745","98273274f2dbb79b0b2009b20f74eca4a7146a3447c912d580cd5d2d94a7ae30","c933f7ba4b201c98b14275fd11a14abb950178afd2074703250fe3654fc10cd2","2eaa31492906bc8525aff3c3ec2236e22d90b0dfeee77089f196cd0adf0b3e3b",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"8f5814f29dbaf8bacd1764aebdf1c8a6eb86381f6a188ddbac0fcbaab855ce52","a63d03de72adfb91777784015bd3b4125abd2f5ef867fc5a13920b5649e8f52b","d20e003f3d518a7c1f749dbe27c6ab5e3be7b3c905a48361b04a9557de4a6900",{"version":"1d4d78c8b23c9ddaaaa49485e6adc2ec01086dfe5d8d4d36ca4cdc98d2f7e74a","affectsGlobalScope":true},{"version":"44fc16356b81c0463cc7d7b2b35dcf324d8144136f5bc5ce73ced86f2b3475b5","affectsGlobalScope":true},"575fb200043b11b464db8e42cc64379c5fd322b6d787638e005b5ee98a64486d","6de2f225d942562733e231a695534b30039bdf1875b377bb7255881f0df8ede8","56249fd3ef1f6b90888e606f4ea648c43978ef43a7263aafad64f8d83cd3b8aa","139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","7b166975fdbd3b37afb64707b98bca88e46577bbc6c59871f9383a7df2daacd1","9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","81505c54d7cad0009352eaa21bd923ab7cdee7ec3405357a54d9a5da033a2084","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","2ee1645e0df9d84467cfe1d67b0ad3003c2f387de55874d565094464ee6f2927",{"version":"071d4b4af5755e1a081aa3b785b5526d09276af5a50e4725dea26edd4e7deb31","affectsGlobalScope":true},{"version":"9cf780e96b687e4bdfd1907ed26a688c18b89797490a00598fa8b8ab683335dd","affectsGlobalScope":true},"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","9ae88ce9f73446c24b2d2452e993b676da1b31fca5ceb7276e7f36279f693ed1","e49d7625faff2a7842e4e7b9b197f972633fca685afcf6b4403400c97d087c36","b82c38abc53922b1b3670c3af6f333c21b735722a8f156e7d357a2da7c53a0a0",{"version":"b423f53647708043299ded4daa68d95c967a2ac30aa1437adc4442129d7d0a6c","affectsGlobalScope":true},{"version":"7245af181218216bacb01fbdf51095617a51661f20d77178c69a377e16fb69ed","affectsGlobalScope":true},"4f0fc7b7f54422bd97cfaf558ddb4bca86893839367b746a8f86b60ac7619673","4cdd8b6b51599180a387cc7c1c50f49eca5ce06595d781638fd0216520d98246","d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c",{"version":"8704423bf338bff381ebc951ed819935d0252d90cd6de7dffe5b0a5debb65d07","affectsGlobalScope":true},"7c6929fd7cbf38499b6a600b91c3b603d1d78395046dc3499b2b92d01418b94b",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","afe73051ff6a03a9565cbd8ebb0e956ee3df5e913ad5c1ded64218aabfa3dcb5","035a5df183489c2e22f3cf59fc1ed2b043d27f357eecc0eb8d8e840059d44245","a4809f4d92317535e6b22b01019437030077a76fec1d93b9881c9ed4738fcc54","5f53fa0bd22096d2a78533f94e02c899143b8f0f9891a46965294ee8b91a9434","cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"5ab630d466ac55baa6d32820378098404fc18ba9da6f7bc5df30c5dbb1cffae8","affectsGlobalScope":true},"ab82804a14454734010dcdcd43f564ff7b0389bee4c5692eec76ff5b30d4cf66","bae8d023ef6b23df7da26f51cea44321f95817c190342a36882e93b80d07a960","5d30d04a14ed8527ac5d654dc345a4db11b593334c11a65efb6e4facc5484a0e","edb9f56c510bbb951e141e9760ad686a2323eeaf5d1df0f343573f7f5d6a68d1","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a"],"root":[[51,59],[63,65]],"options":{"allowJs":true,"composite":true,"declaration":true,"declarationMap":false,"esModuleInterop":true,"module":1,"noImplicitAny":false,"outDir":"./","rootDir":"../../common","skipLibCheck":true,"strict":true,"target":8},"fileIdsList":[[57],[59,62,63],[66],[165],[66,67,68,69,70],[66,68],[121,158],[160],[161],[167,170],[72],[107],[108,113,142],[109,114,120,121,128,139,150],[109,110,120,128],[111,151],[112,113,121,129],[113,139,147],[114,116,120,128],[107,115],[116,117],[120],[118,120],[107,120],[120,121,122,139,150],[120,121,122,135,139,142],[105,108,155],[116,120,123,128,139,150],[120,121,123,124,128,139,147,150],[123,125,139,147,150],[72,73,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157],[120,126],[127,150,155],[116,120,128,139],[129],[130],[107,131],[128,129,132,149,155],[133],[134],[120,135,136],[135,137,151,153],[108,120,139,140,141,142],[108,139,141],[139,140],[142],[143],[107,139],[120,145,146],[145,146],[113,128,139,147],[148],[128,149],[108,123,134,150],[113,151],[139,152],[127,153],[154],[108,113,120,122,131,139,150,153,155],[139,156],[60],[173],[61],[163,169],[167],[164,168],[166],[82,86,150],[82,139,150],[77],[79,82,147,150],[128,147],[158],[77,158],[79,82,128,150],[74,75,78,81,108,120,139,150],[74,80],[78,82,108,142,150,158],[108,158],[98,108,158],[76,77,158],[82],[76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,92,93,94,95,96,97,99,100,101,102,103,104],[82,89,90],[80,82,90,91],[81],[74,77,82],[82,86,90,91],[86],[80,82,85,150],[74,79,80,82,86,89],[108,139],[77,82,98,108,155,158],[51]],"referencedMap":[[58,1],[64,2],[68,3],[166,4],[71,5],[67,3],[69,6],[70,3],[159,7],[161,8],[162,9],[171,10],[72,11],[73,11],[107,12],[108,13],[109,14],[110,15],[111,16],[112,17],[113,18],[114,19],[115,20],[116,21],[117,21],[119,22],[118,23],[120,24],[121,25],[122,26],[106,27],[123,28],[124,29],[125,30],[158,31],[126,32],[127,33],[128,34],[129,35],[130,36],[131,37],[132,38],[133,39],[134,40],[135,41],[136,41],[137,42],[139,43],[141,44],[140,45],[142,46],[143,47],[144,48],[145,49],[146,50],[147,51],[148,52],[149,53],[150,54],[151,55],[152,56],[153,57],[154,58],[155,59],[156,60],[61,61],[174,62],[62,63],[170,64],[168,65],[169,66],[167,67],[89,68],[96,69],[88,68],[103,70],[80,71],[79,72],[102,73],[97,74],[100,75],[82,76],[81,77],[77,78],[76,79],[99,80],[78,81],[83,82],[87,82],[105,83],[104,82],[91,84],[92,85],[94,86],[90,87],[93,88],[98,73],[85,89],[86,90],[95,91],[75,92],[101,93],[56,94],[54,94]],"latestChangedDtsFile":"./embed/embedding.d.ts"},"version":"5.5.2"}
|
package/common/utils/data.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ export declare function transposeNestedArray(nested_array: string[][]): string[]
|
|
|
45
45
|
export declare function getSlicedData(arr: string[]): string[];
|
|
46
46
|
export declare function interpretColumn(arr: string[]): any;
|
|
47
47
|
export declare function sortDataTables(data_tables: {
|
|
48
|
-
name
|
|
48
|
+
name?: string;
|
|
49
49
|
}[], data_bindings: (string | TemplateDataBinding)[] | undefined): {
|
|
50
|
-
name
|
|
50
|
+
name?: string;
|
|
51
51
|
}[] | undefined;
|
package/common/utils/data.js
CHANGED
|
@@ -364,7 +364,8 @@ function sortDataTables(data_tables, data_bindings) {
|
|
|
364
364
|
}
|
|
365
365
|
});
|
|
366
366
|
return data_tables.sort(function (dt1, dt2) {
|
|
367
|
-
|
|
367
|
+
const i = dt1.name ? table_names.indexOf(dt1.name) : -1;
|
|
368
|
+
const j = dt2.name ? table_names.indexOf(dt2.name) : -1;
|
|
368
369
|
return (i == -1 ? Infinity : i) < (j == -1 ? Infinity : j) ? -1 : 1;
|
|
369
370
|
});
|
|
370
371
|
}
|
package/common/utils/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
type ColumnTypeInMetadata = {
|
|
1
|
+
export type ColumnTypeInMetadata = {
|
|
2
2
|
type: string;
|
|
3
3
|
type_id: string;
|
|
4
4
|
output_format_id: string;
|
|
@@ -60,4 +60,3 @@ export type ColumnTypesById = {
|
|
|
60
60
|
export type NullableColumnTypesById = {
|
|
61
61
|
[data_table_id: string]: ColumnType[] | null;
|
|
62
62
|
};
|
|
63
|
-
export {};
|