@flourish/sdk 4.2.2 → 5.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -447,13 +447,26 @@ Builds the template and runs the SDK viewer in your web browser. If `dir_name` i
447
447
 
448
448
  While it’s running it watches the template directory for changes:
449
449
  * if you edit any static template files (`index.html`, `template.yml`, `data/*`, `static/*`) the SDK will refresh the page in the browser;
450
- * if you edit a file that is the source for a [build rule](#build-configuration), the SDK will run that build rule and then refresh the page.
450
+ * if you edit a file that is the source for a [build rule](#build-configuration), the SDK will run that build rule and then refresh the page;
451
+ * when the page has been refreshed, your previously applied settings in the same tab will be automatically restored (see below for more details).
451
452
 
452
453
  Options:
453
454
  * `--open` or `-o` Try to open the SDK in your web browser once the server is running. At present this only works on macOS.
454
455
  * `--port` Specify a particular port; defaults to [1685](https://en.wikipedia.org/wiki/Johann_Sebastian_Bach)
455
456
  * `--no-build` Skip the build process
456
457
 
458
+ ### Settings restore and reset
459
+
460
+ Your previously applied settings in your SDK browser tab will be automatically restored by the SDK on each page refresh (from version `5.0.0`).
461
+
462
+ Template settings when using the SDK are therefore:
463
+
464
+ - stored locally in your browser's session storage per window
465
+ - are restored on page load before the template `draw` call
466
+ - do not include restore of template state other than settings
467
+
468
+ You can click the "Reset" button on the top right hand side of the SDK interface to refresh the tab and start from template default settings, or alternatively you can close and open a new SDK browser tab.
469
+
457
470
  ### Publish a template
458
471
  ```sh
459
472
  flourish publish [dir_name]
package/RELEASE_NOTES.md CHANGED
@@ -1,5 +1,10 @@
1
- # 4.2.2
2
- * Addresses some technical debt.
1
+ # 5.1.0
2
+ * Revoke SDK token on logout
3
+ this improves on the previous behaviour where logging out would only purge tokens locally.
4
+
5
+ # 5.0.0
6
+ * Add automatic SDK local settings restore on template reload
7
+ * Upgrade node-fetch dependency to avoid annoying deprecation warning. #91
3
8
 
4
9
  # 4.2.1
5
10
  * Fix bug with OR conditions for imported module settings
@@ -3,7 +3,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.getLocalizedCreditTextAndUrl = exports.createFlourishCredit = void 0;
6
+ exports.createFlourishCredit = createFlourishCredit;
7
+ exports.getLocalizedCreditTextAndUrl = getLocalizedCreditTextAndUrl;
7
8
  const localizations_1 = __importDefault(require("./localizations"));
8
9
  function createFlourishCredit(credit_url, query_string, public_url, credit_text) {
9
10
  credit_url = credit_url || "https://flourish.studio",
@@ -29,7 +30,6 @@ function createFlourishCredit(credit_url, query_string, public_url, credit_text)
29
30
  a.appendChild(span);
30
31
  return credit;
31
32
  }
32
- exports.createFlourishCredit = createFlourishCredit;
33
33
  function getLocalizedCreditTextAndUrl(lang, credit_key) {
34
34
  var credit_text, credit_url;
35
35
  lang = lang || "en", credit_key = credit_key || "";
@@ -44,4 +44,3 @@ function getLocalizedCreditTextAndUrl(lang, credit_key) {
44
44
  credit_url: credit_url
45
45
  };
46
46
  }
47
- exports.getLocalizedCreditTextAndUrl = getLocalizedCreditTextAndUrl;
@@ -1,6 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.initCustomerAnalytics = exports.dispatchAnalyticsEvent = exports.removeAnalyticsListener = exports.addAnalyticsListener = exports.sendCustomerAnalyticsMessage = void 0;
3
+ exports.sendCustomerAnalyticsMessage = sendCustomerAnalyticsMessage;
4
+ exports.addAnalyticsListener = addAnalyticsListener;
5
+ exports.removeAnalyticsListener = removeAnalyticsListener;
6
+ exports.dispatchAnalyticsEvent = dispatchAnalyticsEvent;
7
+ exports.initCustomerAnalytics = initCustomerAnalytics;
4
8
  // Embedded code - must work in IE
5
9
  var enabled = false;
6
10
  function getLocationData() {
@@ -52,14 +56,12 @@ function sendCustomerAnalyticsMessage(message) {
52
56
  }
53
57
  embedded_window.parent.postMessage(JSON.stringify(message_with_metadata), "*");
54
58
  }
55
- exports.sendCustomerAnalyticsMessage = sendCustomerAnalyticsMessage;
56
59
  function addAnalyticsListener(callback) {
57
60
  if (typeof callback !== "function") {
58
61
  throw new Error("Analytics callback is not a function");
59
62
  }
60
63
  window.Flourish._analytics_listeners.push(callback);
61
64
  }
62
- exports.addAnalyticsListener = addAnalyticsListener;
63
65
  function removeAnalyticsListener(callback) {
64
66
  if (typeof callback !== "function") {
65
67
  throw new Error("Analytics callback is not a function");
@@ -68,7 +70,6 @@ function removeAnalyticsListener(callback) {
68
70
  return callback !== listener;
69
71
  });
70
72
  }
71
- exports.removeAnalyticsListener = removeAnalyticsListener;
72
73
  function dispatchAnalyticsEvent(message) {
73
74
  // If the window.Flourish object hasn't been created by the customer, they
74
75
  // can't be listening for analytics events
@@ -78,7 +79,6 @@ function dispatchAnalyticsEvent(message) {
78
79
  listener(message);
79
80
  });
80
81
  }
81
- exports.dispatchAnalyticsEvent = dispatchAnalyticsEvent;
82
82
  function initCustomerAnalytics() {
83
83
  enabled = true;
84
84
  var events = [
@@ -111,4 +111,3 @@ function initCustomerAnalytics() {
111
111
  }, event.use_capture);
112
112
  });
113
113
  }
114
- exports.initCustomerAnalytics = initCustomerAnalytics;
@@ -18,7 +18,7 @@ declare function getHeightForBreakpoint(width: any): 650 | 575 | 400;
18
18
  declare function startEventListeners(callback: any, allowed_methods: any, embed_domain: any): void;
19
19
  declare function notifyParentWindow(height: any, opts: any): void;
20
20
  declare function initScrolly(opts: any): void;
21
- declare function createScrolly(iframe: any, slides: any): void;
21
+ declare function createScrolly(iframe: any, captions: any): void;
22
22
  declare function isSafari(): boolean;
23
23
  import { initCustomerAnalytics } from "./customer_analytics";
24
24
  import { addAnalyticsListener } from "./customer_analytics";
@@ -5,6 +5,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  };
6
6
  Object.defineProperty(exports, "__esModule", { value: true });
7
7
  const customer_analytics_1 = require("./customer_analytics");
8
+ const dompurify_1 = __importDefault(require("dompurify"));
8
9
  const parse_query_params_1 = __importDefault(require("./parse_query_params"));
9
10
  var is_fixed_height;
10
11
  var is_amp;
@@ -39,11 +40,8 @@ function initScrolly(opts) {
39
40
  var message = {
40
41
  sender: "Flourish",
41
42
  method: "scrolly",
43
+ captions: opts.captions
42
44
  };
43
- if (opts) {
44
- for (var name in opts)
45
- message[name] = opts[name];
46
- }
47
45
  embedded_window.parent.postMessage(JSON.stringify(message), "*");
48
46
  }
49
47
  function notifyParentWindow(height, opts) {
@@ -65,7 +63,7 @@ function notifyParentWindow(height, opts) {
65
63
  var message = {
66
64
  sender: "Flourish",
67
65
  context: "iframe.resize",
68
- method: "resize",
66
+ method: "resize", // backwards compatibility
69
67
  height: height,
70
68
  src: embedded_window.location.toString(),
71
69
  };
@@ -129,7 +127,7 @@ function validateScrolly(message) {
129
127
  console.warn("BUG: validateScrolly called for method" + message.method);
130
128
  return false;
131
129
  }
132
- if (!Array.isArray(message.slides))
130
+ if (!Array.isArray(message.captions))
133
131
  return false;
134
132
  return true;
135
133
  }
@@ -259,7 +257,7 @@ function onSafariWindowResize() {
259
257
  iframe.style.width = width + "px";
260
258
  }
261
259
  }
262
- function createScrolly(iframe, slides) {
260
+ function createScrolly(iframe, captions) {
263
261
  var parent = iframe.parentNode;
264
262
  // Fallback to avoid any situation where the scrolly gets initialised twice
265
263
  if (parent.classList.contains("fl-scrolly-wrapper")) {
@@ -282,7 +280,7 @@ function createScrolly(iframe, slides) {
282
280
  credit.style.position = "sticky";
283
281
  credit.style.top = "calc(50vh + " + h + "/2)";
284
282
  }
285
- slides.forEach(function (d, i) {
283
+ captions.forEach(function (d, i) {
286
284
  var has_content = typeof d == "string" && d.trim() != "";
287
285
  var step = document.createElement("div");
288
286
  step.setAttribute("data-slide", i);
@@ -297,7 +295,7 @@ function createScrolly(iframe, slides) {
297
295
  step.style.marginLeft = "auto";
298
296
  step.style.marginRight = "auto";
299
297
  var caption = document.createElement("div");
300
- caption.innerHTML = d;
298
+ caption.innerHTML = dompurify_1.default.sanitize(d, { ADD_ATTR: ["target"] });
301
299
  caption.style.visibility = has_content ? "" : "hidden";
302
300
  caption.style.display = "inline-block";
303
301
  caption.style.paddingTop = "1.25em";
@@ -1,12 +1,12 @@
1
1
  declare namespace _default {
2
2
  namespace de {
3
3
  namespace credits {
4
- const _default: string;
4
+ let _default: string;
5
5
  export { _default as default };
6
6
  }
7
7
  }
8
8
  namespace en {
9
- const credits_1: {
9
+ let credits_1: {
10
10
  default: {
11
11
  text: string;
12
12
  url: string;
@@ -159,7 +159,7 @@ declare namespace _default {
159
159
  export { credits_1 as credits };
160
160
  }
161
161
  namespace es {
162
- const credits_2: {
162
+ let credits_2: {
163
163
  default: string;
164
164
  bar_race: {
165
165
  text: string;
@@ -173,7 +173,7 @@ declare namespace _default {
173
173
  export { credits_2 as credits };
174
174
  }
175
175
  namespace fr {
176
- const credits_3: {
176
+ let credits_3: {
177
177
  default: string;
178
178
  bar_race: {
179
179
  text: string;
@@ -187,7 +187,7 @@ declare namespace _default {
187
187
  export { credits_3 as credits };
188
188
  }
189
189
  namespace it {
190
- const credits_4: {
190
+ let credits_4: {
191
191
  default: string;
192
192
  bar_race: {
193
193
  text: string;
@@ -201,7 +201,7 @@ declare namespace _default {
201
201
  export { credits_4 as credits };
202
202
  }
203
203
  namespace mi {
204
- const credits_5: {
204
+ let credits_5: {
205
205
  default: string;
206
206
  bar_race: {
207
207
  text: string;
@@ -215,7 +215,7 @@ declare namespace _default {
215
215
  export { credits_5 as credits };
216
216
  }
217
217
  namespace nl {
218
- const credits_6: {
218
+ let credits_6: {
219
219
  default: string;
220
220
  bar_race: {
221
221
  text: string;
@@ -228,7 +228,7 @@ declare namespace _default {
228
228
  };
229
229
  export { credits_6 as credits };
230
230
  }
231
- const pt: {
231
+ let pt: {
232
232
  default: string;
233
233
  bar_race: {
234
234
  text: string;
@@ -1,8 +1,17 @@
1
1
  {
2
2
  "name": "@flourish/common",
3
3
  "description": "Common shared utilities",
4
+ "scripts": {
5
+ "test": "jest"
6
+ },
4
7
  "dependencies": {
5
- "@flourish/interpreter": "^8.4.0",
6
- "@adobe/css-tools": "^4.3.1"
8
+ "@adobe/css-tools": "^4.3.3",
9
+ "@flourish/interpreter": "^8.5.0",
10
+ "dompurify": "^3.1.4"
11
+ },
12
+ "devDependencies": {
13
+ "@types/jest": "^29.5.12",
14
+ "jest": "^29.7.0",
15
+ "ts-jest": "^29.1.5"
7
16
  }
8
17
  }
@@ -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.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.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","../../common/utils/state.js","../../common/utils/columns.js","../../common/utils/json.js","../../common/utils/polyfills.js","../../common/utils/data.js","../../common/embed/localizations.js","../../common/embed/credit.js","../../common/embed/customer_analytics.js","../../common/embed/parse_query_params.js","../../common/embed/embedding.js","../../common/package.json","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/node/ts4.8/assert.d.ts","../../node_modules/@types/node/ts4.8/assert/strict.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/file.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/ts4.8/globals.d.ts","../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../node_modules/@types/node/ts4.8/buffer.d.ts","../../node_modules/@types/node/ts4.8/child_process.d.ts","../../node_modules/@types/node/ts4.8/cluster.d.ts","../../node_modules/@types/node/ts4.8/console.d.ts","../../node_modules/@types/node/ts4.8/constants.d.ts","../../node_modules/@types/node/ts4.8/crypto.d.ts","../../node_modules/@types/node/ts4.8/dgram.d.ts","../../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../../node_modules/@types/node/ts4.8/dns.d.ts","../../node_modules/@types/node/ts4.8/dns/promises.d.ts","../../node_modules/@types/node/ts4.8/domain.d.ts","../../node_modules/@types/node/ts4.8/dom-events.d.ts","../../node_modules/@types/node/ts4.8/events.d.ts","../../node_modules/@types/node/ts4.8/fs.d.ts","../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../node_modules/@types/node/ts4.8/http.d.ts","../../node_modules/@types/node/ts4.8/http2.d.ts","../../node_modules/@types/node/ts4.8/https.d.ts","../../node_modules/@types/node/ts4.8/inspector.d.ts","../../node_modules/@types/node/ts4.8/module.d.ts","../../node_modules/@types/node/ts4.8/net.d.ts","../../node_modules/@types/node/ts4.8/os.d.ts","../../node_modules/@types/node/ts4.8/path.d.ts","../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../node_modules/@types/node/ts4.8/process.d.ts","../../node_modules/@types/node/ts4.8/punycode.d.ts","../../node_modules/@types/node/ts4.8/querystring.d.ts","../../node_modules/@types/node/ts4.8/readline.d.ts","../../node_modules/@types/node/ts4.8/readline/promises.d.ts","../../node_modules/@types/node/ts4.8/repl.d.ts","../../node_modules/@types/node/ts4.8/stream.d.ts","../../node_modules/@types/node/ts4.8/stream/promises.d.ts","../../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../../node_modules/@types/node/ts4.8/stream/web.d.ts","../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../node_modules/@types/node/ts4.8/test.d.ts","../../node_modules/@types/node/ts4.8/timers.d.ts","../../node_modules/@types/node/ts4.8/timers/promises.d.ts","../../node_modules/@types/node/ts4.8/tls.d.ts","../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../node_modules/@types/node/ts4.8/tty.d.ts","../../node_modules/@types/node/ts4.8/url.d.ts","../../node_modules/@types/node/ts4.8/util.d.ts","../../node_modules/@types/node/ts4.8/v8.d.ts","../../node_modules/@types/node/ts4.8/vm.d.ts","../../node_modules/@types/node/ts4.8/wasi.d.ts","../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../node_modules/@types/node/ts4.8/zlib.d.ts","../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../node_modules/@types/node/ts4.8/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","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":"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":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},{"version":"fda3b2d7f1e97e8eef74752073d2239113227eea4bfd8169f28609e5ed19de4c","signature":"12511f2109722b6ce10ffee10e0545d56be400e5ff50f01d968821cfc2969507"},{"version":"59699bfe2bc2c6cd0c2b39f077231497f87789e9402f86d25af5bd1553952ad3","signature":"01ac0acdb218da1dd9d1ed03d33cb55b57c2df478781473b857800eddb3460fd"},{"version":"7b7dbc10ed1adff00c4f4c0d7cfacefa1a2abdc065b1b33ae5d91a08403cad2a","signature":"cd40a81de979e7c9afcce7a3b142ac1c6099e9411153c301479485883340aa3d"},{"version":"35aea7fee5e75f4b111634f1f8eed9f3cec26da2589c0b043b40bd11e0e894a3","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","affectsGlobalScope":true},{"version":"bab03fb5b53c06c863d4db22d31e772066d8dab8db75500ce7f469d1747ce919","signature":"b821c57657b32180f5b611bcc3823845ce6931315bc42eb988b52394b62dcd0d"},{"version":"01d25b10b92ffd08658fe655bb929d9c7bc5e2f22daf8816ec8a2505a22612cc","signature":"5039da289824258f4b4eb90c1c552de3081160fb440d6e67da5ee92ead87e6db"},{"version":"957570920b8ab5529e6be3bff21978036e9b99eddcf5eee1b14fc173a469f6c4","signature":"ab369d6522cc4480179febd57523e5ea502266c06dbcbeaa7cc4a2d74a3b92be"},{"version":"ecd53f20b9368642727fd699d841ca2f94a2e10010405949b9016bf0ace689d0","signature":"7d53f8799f685a263392f5b44289117d99e541ab09a9f6cf2608d2438c39a8fe"},{"version":"a934f462df8ecd7acb231d8d152b2d79f62fb4b9bd7ffad6ad677f29fed08fff","signature":"e2a8347f36e74ee72a5b91e1685372919b967cadc3d48fd5f5fc7435b05826bc"},{"version":"21c8d0f513b983aea480b05b72c567f26d6008724f953ceb52d1192cd0924740","signature":"5a5bd5fc544077640e55d1e0ca3e4e36dddb95f01d9e67d62d4a621d0d5bcece"},"d0abb6361ceba0a7127bca063cec8524006617fe798640fa9f52857219d22485","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","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":"4d719cfab49ae4045d15cb6bed0f38ad3d7d6eb7f277d2603502a0f862ca3182","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"185282b122cbca820c297a02a57b89cf5967ab43e220e3e174d872d3f9a94d2c","affectsGlobalScope":true},"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","af30512288e59acdc5894428be044b5c3bf41921a761a05e494beb0c6c300510","285e512c7a0db217a0599e18c462d565fa35be4a5153dd7b80bee88c83e83ddf","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"7ae9dc7dbb58cd843065639707815df85c044babaa0947116f97bdb824d07204","affectsGlobalScope":true},"7aae1df2053572c2cfc2089a77847aadbb38eedbaa837a846c6a49fb37c6e5bd","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","1f758340b027b18ae8773ac3d33a60648a2af49eaae9e4fde18d0a0dd608642c","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"dea4c00820d4fac5e530d4842aed2fb20d6744d75a674b95502cbd433f88bcb0","affectsGlobalScope":true},"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"5c5b70291ce21df19466e6b25108192089e69f6ec1b19e1f1be0b2a99d2dac74","affectsGlobalScope":true},{"version":"b7eadc0b0cba14ab854122810f330314132c5cfdb7800fceb82d521997a1f5b0","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","d742ed2db6d5425b3b6ac5fb1f2e4b1ed2ae74fbeee8d0030d852121a4b05d2f","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","458b216959c231df388a5de9dcbcafd4b4ca563bc3784d706d0455467d7d4942","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"2225100373ca3d63bcc7f206e1177152d2e2161285a0bd83c8374db1503a0d1f","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eefcdf86cefff36e5d87de36a3638ab5f7d16c2b68932be4a72c14bb924e43c1","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"4d0405568cf6e0ff36a4861c4a77e641366feaefa751600b0a4d12a5e8f730a8","affectsGlobalScope":true},{"version":"527e6e7c1e60184879fe97517f0d51dbfab72c4625cef50179f27f46d7fd69a1","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","4a34b074b11c3597fb2ff890bc8f1484375b3b80793ab01f974534808d5777c7",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"652ee9c5103e89102d87bc20d167a02a0e3e5e53665674466c8cfea8a9e418c7","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a"],"options":{"composite":true,"declaration":true,"declarationMap":false,"esModuleInterop":true,"module":1,"noImplicitAny":false,"outDir":"./","rootDir":"../../common","skipLibCheck":true,"strict":true,"target":8},"fileIdsList":[[51,137],[137],[53,54,137],[59,137],[94,137],[95,100,128,137],[96,107,108,115,125,136,137],[96,97,107,115,137],[98,137],[99,100,108,116,137],[100,125,133,137],[101,103,107,115,137],[102,137],[103,104,137],[107,137],[105,107,137],[94,107,137],[107,108,109,125,136,137],[107,108,109,122,125,128,137],[92,137,141],[103,107,110,115,125,136,137],[107,108,110,111,115,125,133,136,137],[110,112,125,133,136,137],[59,60,93,94,95,96,97,98,99,100,101,102,103,104,105,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],[107,113,137],[114,136,137,141],[103,107,115,125,137],[116,137],[117,137],[94,118,137],[119,135,137,141],[120,137],[121,137],[107,122,123,137],[122,124,137,139],[95,107,125,126,127,128,137],[95,125,127,137],[125,126,137],[128,137],[129,137],[94,125,137],[107,131,132,137],[131,132,137],[100,115,125,133,137],[134,137],[115,135,137],[95,110,121,136,137],[100,137],[125,137,138],[114,137,139],[137,140],[95,100,107,109,118,125,136,137,139,141],[125,137,142],[69,73,136,137],[69,125,136,137],[64,137],[66,69,133,136,137],[115,133,137],[137,144],[64,137,144],[66,69,115,136,137],[61,62,65,68,95,107,125,136,137],[61,67,137],[65,69,95,128,136,137,144],[95,137,144],[85,95,137,144],[63,64,137,144],[69,137],[63,64,65,66,67,68,69,70,71,73,74,75,76,77,78,79,80,81,82,83,84,86,87,88,89,90,91,137],[69,76,77,137],[67,69,77,78,137],[68,137],[61,64,69,137],[69,73,77,78,137],[73,137],[67,69,72,136,137],[61,66,67,69,73,76,137],[95,125,137],[64,69,85,95,137,141,144]],"referencedMap":[[52,1],[53,2],[55,3],[51,2],[54,2],[56,2],[47,2],[50,2],[48,2],[49,2],[46,2],[57,2],[58,2],[59,4],[60,4],[94,5],[95,6],[96,7],[97,8],[98,9],[99,10],[100,11],[101,12],[102,13],[103,14],[104,14],[106,15],[105,16],[107,17],[108,18],[109,19],[93,20],[143,2],[110,21],[111,22],[112,23],[144,24],[113,25],[114,26],[115,27],[116,28],[117,29],[118,30],[119,31],[120,32],[121,33],[122,34],[123,34],[124,35],[125,36],[127,37],[126,38],[128,39],[129,40],[130,41],[131,42],[132,43],[133,44],[134,45],[135,46],[136,47],[137,48],[138,49],[139,50],[140,51],[141,52],[142,53],[145,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[34,2],[39,2],[40,2],[35,2],[36,2],[37,2],[38,2],[8,2],[44,2],[41,2],[42,2],[43,2],[1,2],[45,2],[76,54],[83,55],[75,54],[90,56],[67,57],[66,58],[89,59],[84,60],[87,61],[69,62],[68,63],[64,64],[63,65],[86,66],[65,67],[70,68],[71,2],[74,68],[61,2],[92,69],[91,68],[78,70],[79,71],[81,72],[77,73],[80,74],[85,59],[72,75],[73,76],[82,77],[62,78],[88,79]],"exportedModulesMap":[[56,2],[57,2],[58,2],[59,4],[60,4],[94,5],[95,6],[96,7],[97,8],[98,9],[99,10],[100,11],[101,12],[102,13],[103,14],[104,14],[106,15],[105,16],[107,17],[108,18],[109,19],[93,20],[143,2],[110,21],[111,22],[112,23],[144,24],[113,25],[114,26],[115,27],[116,28],[117,29],[118,30],[119,31],[120,32],[121,33],[122,34],[123,34],[124,35],[125,36],[127,37],[126,38],[128,39],[129,40],[130,41],[131,42],[132,43],[133,44],[134,45],[135,46],[136,47],[137,48],[138,49],[139,50],[140,51],[141,52],[142,53],[145,2],[10,2],[9,2],[2,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[3,2],[4,2],[22,2],[19,2],[20,2],[21,2],[23,2],[24,2],[25,2],[5,2],[26,2],[27,2],[28,2],[29,2],[6,2],[30,2],[31,2],[32,2],[33,2],[7,2],[34,2],[39,2],[40,2],[35,2],[36,2],[37,2],[38,2],[8,2],[44,2],[41,2],[42,2],[43,2],[1,2],[45,2],[76,54],[83,55],[75,54],[90,56],[67,57],[66,58],[89,59],[84,60],[87,61],[69,62],[68,63],[64,64],[63,65],[86,66],[65,67],[70,68],[71,2],[74,68],[61,2],[92,69],[91,68],[78,70],[79,71],[81,72],[77,73],[80,74],[85,59],[72,75],[73,76],[82,77],[62,78],[88,79]],"semanticDiagnosticsPerFile":[52,53,55,51,54,56,47,50,48,49,46,57,58,59,60,94,95,96,97,98,99,100,101,102,103,104,106,105,107,108,109,93,143,110,111,112,144,113,114,115,116,117,118,119,120,121,122,123,124,125,127,126,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,145,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,30,31,32,33,7,34,39,40,35,36,37,38,8,44,41,42,43,1,45,76,83,75,90,67,66,89,84,87,69,68,64,63,86,65,70,71,74,61,92,91,78,79,81,77,80,85,72,73,82,62,88],"latestChangedDtsFile":"./embed/embedding.d.ts"},"version":"4.8.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.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.js","../../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/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/json-schema/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":"fda3b2d7f1e97e8eef74752073d2239113227eea4bfd8169f28609e5ed19de4c","signature":"12511f2109722b6ce10ffee10e0545d56be400e5ff50f01d968821cfc2969507"},{"version":"59699bfe2bc2c6cd0c2b39f077231497f87789e9402f86d25af5bd1553952ad3","signature":"01ac0acdb218da1dd9d1ed03d33cb55b57c2df478781473b857800eddb3460fd"},{"version":"12fe5775e3fe07600c002dc838a368d10b5552561427e5986ba820248a219a25","signature":"d1d7b66be3e33473562aa33a2e7a820ae5e53149b141e4ed6b6a527eec13dcbf"},{"version":"35aea7fee5e75f4b111634f1f8eed9f3cec26da2589c0b043b40bd11e0e894a3","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","affectsGlobalScope":true},{"version":"a25601bc7617b159f475daf6a4199010a6d2e03f145b57bb23a2af25ada5e2a6","signature":"08070017fd7915f5e51a516130a92bb777c9f02a5f7e5991731cfba6a845d3e3"},{"version":"01d25b10b92ffd08658fe655bb929d9c7bc5e2f22daf8816ec8a2505a22612cc","signature":"1fa53b8c0d36b9fc633cfc86a7f4fff8aa29085606478318deb03b9c410c4754"},{"version":"957570920b8ab5529e6be3bff21978036e9b99eddcf5eee1b14fc173a469f6c4","signature":"ab369d6522cc4480179febd57523e5ea502266c06dbcbeaa7cc4a2d74a3b92be"},{"version":"ecd53f20b9368642727fd699d841ca2f94a2e10010405949b9016bf0ace689d0","signature":"7d53f8799f685a263392f5b44289117d99e541ab09a9f6cf2608d2438c39a8fe"},{"version":"a934f462df8ecd7acb231d8d152b2d79f62fb4b9bd7ffad6ad677f29fed08fff","signature":"e2a8347f36e74ee72a5b91e1685372919b967cadc3d48fd5f5fc7435b05826bc"},{"version":"e3800802d1ef0c7ef0e6ef456a0fe230bda22a8318189583178e11defb85cb4e","signature":"db81b3f9e33c5b9cdbe1ea7831e54dabef28ccb6a3b773054a2ae4db5878bb62"},"5b74dcecff013fe8ce7843223390338cf623a98445d9d09d2d4e0ee45b7c43a4","55584873eae27c5607725f0a9b2123cdea9100fd47cd4bfd582b567a7c363877","2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","5f02abbb1b17e3d1e68c5eea14adf4705696e6255e2982b010c0dc2a5417b606","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","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a"],"root":[[51,62]],"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,60],[63],[162],[63,64,65,66,67],[63,65],[118,155],[157],[158],[164,167],[69],[104],[105,110,139],[106,111,117,118,125,136,147],[106,107,117,125],[108,148],[109,110,118,126],[110,136,144],[111,113,117,125],[104,112],[113,114],[117],[115,117],[104,117],[117,118,119,136,147],[117,118,119,132,136,139],[102,105,152],[113,117,120,125,136,147],[117,118,120,121,125,136,144,147],[120,122,136,144,147],[69,70,103,104,105,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],[117,123],[124,147,152],[113,117,125,136],[126],[127],[104,128],[125,126,129,146,152],[130],[131],[117,132,133],[132,134,148,150],[105,117,136,137,138,139],[105,136,138],[136,137],[139],[140],[104,136],[117,142,143],[142,143],[110,125,136,144],[145],[125,146],[105,120,131,147],[110,148],[136,149],[124,150],[151],[105,110,117,119,128,136,147,150,152],[136,153],[170],[160,166],[164],[161,165],[163],[79,83,147],[79,136,147],[74],[76,79,144,147],[125,144],[155],[74,155],[76,79,125,147],[71,72,75,78,105,117,136,147],[71,77],[75,79,105,139,147,155],[105,155],[95,105,155],[73,74,155],[79],[73,74,75,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,94,96,97,98,99,100,101],[79,86,87],[77,79,87,88],[78],[71,74,79],[79,83,87,88],[83],[77,79,82,147],[71,76,77,79,83,86],[105,136],[74,79,95,105,152,155],[51]],"referencedMap":[[58,1],[61,2],[65,3],[163,4],[68,5],[64,3],[66,6],[67,3],[156,7],[158,8],[159,9],[168,10],[69,11],[70,11],[104,12],[105,13],[106,14],[107,15],[108,16],[109,17],[110,18],[111,19],[112,20],[113,21],[114,21],[116,22],[115,23],[117,24],[118,25],[119,26],[103,27],[120,28],[121,29],[122,30],[155,31],[123,32],[124,33],[125,34],[126,35],[127,36],[128,37],[129,38],[130,39],[131,40],[132,41],[133,41],[134,42],[136,43],[138,44],[137,45],[139,46],[140,47],[141,48],[142,49],[143,50],[144,51],[145,52],[146,53],[147,54],[148,55],[149,56],[150,57],[151,58],[152,59],[153,60],[171,61],[167,62],[165,63],[166,64],[164,65],[86,66],[93,67],[85,66],[100,68],[77,69],[76,70],[99,71],[94,72],[97,73],[79,74],[78,75],[74,76],[73,77],[96,78],[75,79],[80,80],[84,80],[102,81],[101,80],[88,82],[89,83],[91,84],[87,85],[90,86],[95,71],[82,87],[83,88],[92,89],[72,90],[98,91],[56,92],[54,92]],"latestChangedDtsFile":"./embed/embedding.d.ts"},"version":"5.5.2"}
@@ -1,6 +1,12 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.printDataBinding = exports.parseDataBinding = exports.printColumns = exports.parseColumns = exports.parseRange = exports.printColumn = exports.parseColumn = void 0;
3
+ exports.parseColumn = parseColumn;
4
+ exports.printColumn = printColumn;
5
+ exports.parseRange = parseRange;
6
+ exports.parseColumns = parseColumns;
7
+ exports.printColumns = printColumns;
8
+ exports.parseDataBinding = parseDataBinding;
9
+ exports.printDataBinding = printDataBinding;
4
10
  const MAX_INTEGER = Math.pow(2, 31) - 1;
5
11
  const MAX_RANGE_LENGTH = Math.pow(2, 15);
6
12
  // Attempt to parse col_spec as a columns spec;
@@ -37,7 +43,6 @@ function parseColumn(col_spec, is_optional) {
37
43
  console.warn("Column index out of range");
38
44
  return Math.min(col_ix - 1, MAX_INTEGER);
39
45
  }
40
- exports.parseColumn = parseColumn;
41
46
  function printColumn(col_ix) {
42
47
  col_ix += 1;
43
48
  var col_spec = "";
@@ -52,7 +57,6 @@ function printColumn(col_ix) {
52
57
  }
53
58
  return col_spec;
54
59
  }
55
- exports.printColumn = printColumn;
56
60
  function parseRange(col_range) {
57
61
  var dash_mo = col_range.match(/\s*(?:[-–—:]|\.\.)\s*/);
58
62
  if (!dash_mo)
@@ -71,7 +75,6 @@ function parseRange(col_range) {
71
75
  }
72
76
  return r;
73
77
  }
74
- exports.parseRange = parseRange;
75
78
  function printRange(start, end) {
76
79
  return printColumn(start) + "-" + printColumn(end);
77
80
  }
@@ -92,7 +95,6 @@ function parseColumns(cols_spec) {
92
95
  }
93
96
  return indexes;
94
97
  }
95
- exports.parseColumns = parseColumns;
96
98
  function splitIntoRanges(indexes) {
97
99
  if (!indexes.length) {
98
100
  return [];
@@ -136,7 +138,6 @@ function printColumns(indexes) {
136
138
  }
137
139
  return r.join(",");
138
140
  }
139
- exports.printColumns = printColumns;
140
141
  function parseDataBinding(d, data_table_ids) {
141
142
  var r = {};
142
143
  if (!(d.type in d)) {
@@ -158,7 +159,6 @@ function parseDataBinding(d, data_table_ids) {
158
159
  throw new Error("Unknown data binding type: " + d.type);
159
160
  return r;
160
161
  }
161
- exports.parseDataBinding = parseDataBinding;
162
162
  function printDataBinding(r, data_table_names, print_data_table_name, optional) {
163
163
  var data_table_name = print_data_table_name ? data_table_names[r.data_table_id] + "::" : "";
164
164
  if ("column" in r) {
@@ -172,4 +172,3 @@ function printDataBinding(r, data_table_names, print_data_table_name, optional)
172
172
  }
173
173
  throw new Error("Data binding must have .column or .columns");
174
174
  }
175
- exports.printDataBinding = printDataBinding;
@@ -1,13 +1,29 @@
1
- export function extractData(data_binding: any, data_by_id: any, column_types_by_id: any, template_data_binding: any): {}[];
2
- export function getColumnTypesForData(data: any): {
3
- type_id: any;
4
- index: number;
5
- output_format_id: any;
6
- }[];
7
- export function getRandomSeededSample(column: any, sample_size: any): any;
8
- export function mulberry32(seed: any): () => number;
9
- export function trimTrailingEmptyRows(data: any): any;
10
- export function dropReturnCharacters(data: any): any;
1
+ import "./polyfills";
2
+ import { ColumnType, NullableColumnTypesById, DataBinding, DatasetType, TemplateDataBinding, KeyToTemplateDataBinding } from "./types";
3
+ export { createInterpreter } from "@flourish/interpreter";
4
+ type AugmentedDataBinding = DataBinding & {
5
+ key?: string;
6
+ template_data_binding?: TemplateDataBinding;
7
+ };
8
+ type KeyToAugmentedDataBinding = {
9
+ [key: string]: AugmentedDataBinding;
10
+ };
11
+ export type Timestamps = {
12
+ last_updated?: Date;
13
+ };
14
+ export type DatasheetsTimestamps = {
15
+ per_data_table: {
16
+ [dt_id: string]: Timestamps;
17
+ };
18
+ };
19
+ export declare function extractData(data_binding: KeyToAugmentedDataBinding, data_by_id: {
20
+ [data_table_id: string]: string[][] | undefined;
21
+ }, column_types_by_id: NullableColumnTypesById, template_data_bindings: KeyToTemplateDataBinding, timestamps: DatasheetsTimestamps): DatasetType;
22
+ export declare function getColumnTypesForData(data: string[][]): ColumnType[];
23
+ export declare function getRandomSeededSample(column: string[], sample_size: number): string[];
24
+ export declare function mulberry32(seed: number): () => number;
25
+ export declare function trimTrailingEmptyRows(data: unknown[][]): unknown[][];
26
+ export declare function dropReturnCharacters(data: string[][]): string[][];
11
27
  /**
12
28
  * Takes an array of arrays (typically tabular data) and rewrites
13
29
  * it so that:
@@ -23,8 +39,13 @@ export function dropReturnCharacters(data: any): any;
23
39
  * @param {any[][]} data
24
40
  * @returns {string[][]}
25
41
  */
26
- export function tidyTable(data: any[][]): string[][];
27
- export function stripCommonFixes(str: any): any;
28
- export function transposeNestedArray(nested_array: any): any[][];
29
- export function getSlicedData(arr: any): any;
30
- export function interpretColumn(arr: any): any;
42
+ export declare function tidyTable(data: unknown[][]): string[][];
43
+ export declare function stripCommonFixes(str: string): string;
44
+ export declare function transposeNestedArray(nested_array: string[][]): string[][];
45
+ export declare function getSlicedData(arr: string[]): string[];
46
+ export declare function interpretColumn(arr: string[]): any;
47
+ export declare function sortDataTables(data_tables: {
48
+ name: string;
49
+ }[], data_bindings: (string | TemplateDataBinding)[] | undefined): {
50
+ name: string;
51
+ }[] | undefined;