@sitecore-cloudsdk/personalize 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/package.json +1 -1
- package/dist/cjs/src/browser.d.ts +1 -1
- package/dist/cjs/src/lib/initializer/client/initializer.d.ts +7 -10
- package/dist/cjs/src/lib/initializer/client/initializer.js +2 -2
- package/dist/cjs/src/lib/initializer/server/initializer.d.ts +7 -7
- package/dist/cjs/src/lib/initializer/server/initializer.js +1 -1
- package/dist/cjs/src/lib/personalization/callflow-edge-proxy-client.d.ts +22 -22
- package/dist/cjs/src/lib/personalization/callflow-edge-proxy-client.js +6 -6
- package/dist/cjs/src/lib/personalization/personalize.d.ts +3 -3
- package/dist/cjs/src/lib/personalization/personalizeServer.d.ts +4 -4
- package/dist/cjs/src/lib/personalization/personalizer.d.ts +15 -15
- package/dist/cjs/src/lib/personalization/personalizer.js +8 -8
- package/dist/cjs/src/server.d.ts +1 -1
- package/dist/cjs/tsconfig.cjs.tsbuildinfo +1 -1
- package/dist/esm/package.json +1 -1
- package/dist/esm/src/browser.d.ts +1 -1
- package/dist/esm/src/lib/initializer/client/initializer.d.ts +7 -10
- package/dist/esm/src/lib/initializer/client/initializer.js +3 -3
- package/dist/esm/src/lib/initializer/server/initializer.d.ts +7 -7
- package/dist/esm/src/lib/initializer/server/initializer.js +1 -1
- package/dist/esm/src/lib/personalization/callflow-edge-proxy-client.d.ts +22 -22
- package/dist/esm/src/lib/personalization/callflow-edge-proxy-client.js +6 -6
- package/dist/esm/src/lib/personalization/personalize.d.ts +3 -3
- package/dist/esm/src/lib/personalization/personalizeServer.d.ts +4 -4
- package/dist/esm/src/lib/personalization/personalizer.d.ts +15 -15
- package/dist/esm/src/lib/personalization/personalizer.js +8 -8
- package/dist/esm/src/server.d.ts +1 -1
- package/dist/esm/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/cjs/src/lib/utils/appendScriptWithAttributes.d.ts +0 -6
- package/dist/cjs/src/lib/utils/appendScriptWithAttributes.js +0 -12
- package/dist/esm/src/lib/utils/appendScriptWithAttributes.d.ts +0 -6
- package/dist/esm/src/lib/utils/appendScriptWithAttributes.js +0 -8
package/dist/cjs/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { init } from './lib/initializer/client/initializer';
|
|
2
2
|
export { personalize } from './lib/personalization/personalize';
|
|
3
3
|
export { LIBRARY_VERSION } from './lib/consts';
|
|
4
|
-
export type {
|
|
4
|
+
export type { PersonalizerInput } from './lib/personalization/personalizer';
|
|
@@ -1,31 +1,28 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Settings, SettingsParamsBrowser } from '@sitecore-cloudsdk/core';
|
|
2
2
|
import { CallFlowEdgeProxyClient } from '../../personalization/callflow-edge-proxy-client';
|
|
3
3
|
/**
|
|
4
4
|
* Sets the personalize settings to be used by the application.
|
|
5
5
|
*
|
|
6
6
|
* @param settings - The personalize settings to be set, or `null` to clear the settings.
|
|
7
7
|
*/
|
|
8
|
-
export declare function setDependencies(settings:
|
|
8
|
+
export declare function setDependencies(settings: BrowserPersonalizeSettings | null): void;
|
|
9
9
|
/**
|
|
10
10
|
* Retrieves the browser personalize settings object.
|
|
11
11
|
*
|
|
12
|
-
* This function ensures that the browser personalize settings have been initialized and contain essential properties like `settings` and `
|
|
12
|
+
* This function ensures that the browser personalize settings have been initialized and contain essential properties like `settings` and `callFlowEPClient`.
|
|
13
13
|
*
|
|
14
14
|
* @returns The browser personalize settings object.
|
|
15
15
|
* @throws Error if the personalize settings haven't been initialized with the required properties.
|
|
16
16
|
*/
|
|
17
|
-
export declare function getDependencies():
|
|
17
|
+
export declare function getDependencies(): BrowserPersonalizeSettings;
|
|
18
18
|
/**
|
|
19
19
|
* Initiates the Engage library using the global settings added by the developer
|
|
20
20
|
* @param settingsInput - Global settings added by the developer
|
|
21
21
|
* @returns A promise that resolves with an object that handles the library functionality
|
|
22
22
|
*/
|
|
23
|
-
export declare function init(settingsInput:
|
|
24
|
-
export
|
|
25
|
-
webPersonalization?: boolean | IWebPersonalizationConfig;
|
|
26
|
-
} & ISettingsParamsBrowser;
|
|
27
|
-
export interface IBrowserPersonalizeSettings {
|
|
23
|
+
export declare function init(settingsInput: SettingsParamsBrowser): Promise<void>;
|
|
24
|
+
export interface BrowserPersonalizeSettings {
|
|
28
25
|
id: string;
|
|
29
|
-
settings:
|
|
26
|
+
settings: Settings;
|
|
30
27
|
callFlowEdgeProxyClient: CallFlowEdgeProxyClient;
|
|
31
28
|
}
|
|
@@ -18,14 +18,14 @@ exports.setDependencies = setDependencies;
|
|
|
18
18
|
/**
|
|
19
19
|
* Retrieves the browser personalize settings object.
|
|
20
20
|
*
|
|
21
|
-
* This function ensures that the browser personalize settings have been initialized and contain essential properties like `settings` and `
|
|
21
|
+
* This function ensures that the browser personalize settings have been initialized and contain essential properties like `settings` and `callFlowEPClient`.
|
|
22
22
|
*
|
|
23
23
|
* @returns The browser personalize settings object.
|
|
24
24
|
* @throws Error if the personalize settings haven't been initialized with the required properties.
|
|
25
25
|
*/
|
|
26
26
|
function getDependencies() {
|
|
27
27
|
if (!dependencies) {
|
|
28
|
-
throw Error(`[IE-
|
|
28
|
+
throw Error(`[IE-0006] You must first initialize the "personalize/browser" module. Run the "init" function.`);
|
|
29
29
|
}
|
|
30
30
|
return dependencies;
|
|
31
31
|
}
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { SettingsParamsServer } from '@sitecore-cloudsdk/core';
|
|
2
|
+
import { BrowserPersonalizeSettings } from '../client/initializer';
|
|
3
|
+
import { HttpResponse, MiddlewareNextResponse, Request } from '@sitecore-cloudsdk/utils';
|
|
4
4
|
/**
|
|
5
5
|
* Sets the personalize settings to be used by the application.
|
|
6
6
|
*
|
|
7
7
|
* @param settings - The personalize settings to be set, or `null` to clear the settings.
|
|
8
8
|
*/
|
|
9
|
-
export declare function setDependencies(settings:
|
|
9
|
+
export declare function setDependencies(settings: ServerPersonalize | null): void;
|
|
10
10
|
/**
|
|
11
11
|
* Retrieves the personalize server settings used by the application.
|
|
12
12
|
*
|
|
13
13
|
* @returns The personalize server settings.
|
|
14
14
|
* @throws Error if the personalize server settings haven't been initialized.
|
|
15
15
|
*/
|
|
16
|
-
export declare function getServerDependencies():
|
|
16
|
+
export declare function getServerDependencies(): ServerPersonalize;
|
|
17
17
|
/**
|
|
18
18
|
* Initiates the server Engage library using the global settings added by the developer
|
|
19
19
|
* @param settings - Global settings added by the developer
|
|
20
20
|
* @returns A promise that resolves with an object that handles the library functionality
|
|
21
21
|
*/
|
|
22
|
-
export declare function initServer<
|
|
23
|
-
export type
|
|
22
|
+
export declare function initServer<Response extends MiddlewareNextResponse | HttpResponse>(settingsInput: SettingsParamsServer, request: Request, response: Response): Promise<void>;
|
|
23
|
+
export type ServerPersonalize = Omit<BrowserPersonalizeSettings, 'id'>;
|
|
@@ -22,7 +22,7 @@ exports.setDependencies = setDependencies;
|
|
|
22
22
|
*/
|
|
23
23
|
function getServerDependencies() {
|
|
24
24
|
if (!serverDependencies) {
|
|
25
|
-
throw Error(`[IE-
|
|
25
|
+
throw Error(`[IE-0007] You must first initialize the "personalize/server" module. Run the "init" function.`);
|
|
26
26
|
}
|
|
27
27
|
return serverDependencies;
|
|
28
28
|
}
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
export declare class CallFlowEdgeProxyClient implements
|
|
4
|
-
settings:
|
|
1
|
+
import { Settings } from '@sitecore-cloudsdk/core';
|
|
2
|
+
import { NestedObject } from '@sitecore-cloudsdk/utils';
|
|
3
|
+
export declare class CallFlowEdgeProxyClient implements PersonalizeClient {
|
|
4
|
+
settings: Settings;
|
|
5
5
|
/**
|
|
6
6
|
* A helper class which handles the functionality for sending CALLFLOW requests
|
|
7
|
-
* @param personalizeData - The mandatory payload to be send to Sitecore
|
|
7
|
+
* @param personalizeData - The mandatory payload to be send to Sitecore EP
|
|
8
8
|
* @param settings - The global settings
|
|
9
9
|
*/
|
|
10
|
-
constructor(settings:
|
|
10
|
+
constructor(settings: Settings);
|
|
11
11
|
/**
|
|
12
|
-
* A function that sends a CallFlow request to Sitecore
|
|
13
|
-
* @param personalizeData - Properties to be send to Sitecore
|
|
12
|
+
* A function that sends a CallFlow request to Sitecore EP
|
|
13
|
+
* @param personalizeData - Properties to be send to Sitecore EP
|
|
14
14
|
* @param timeout - Optional timeout in milliseconds to cancel the request
|
|
15
|
-
* @returns - A promise that resolves with either the Sitecore
|
|
15
|
+
* @returns - A promise that resolves with either the Sitecore EP response object or unknown
|
|
16
16
|
*/
|
|
17
|
-
sendCallFlowsRequest(
|
|
17
|
+
sendCallFlowsRequest(epCallFlowsBody: EPCallFlowsBody, timeout?: number): Promise<any>;
|
|
18
18
|
}
|
|
19
19
|
/**
|
|
20
20
|
* An interface with the basic functionality that the derived classes needs to implement
|
|
21
21
|
*/
|
|
22
|
-
export interface
|
|
23
|
-
settings:
|
|
24
|
-
sendCallFlowsRequest: (
|
|
22
|
+
export interface PersonalizeClient {
|
|
23
|
+
settings: Settings;
|
|
24
|
+
sendCallFlowsRequest: (epCallFlowAttributes: EPCallFlowsBody, timeout?: number) => Promise<unknown | null | FailedCalledFlowsResponse>;
|
|
25
25
|
}
|
|
26
26
|
/**
|
|
27
|
-
* An interface that describes the failed response model from Sitecore
|
|
27
|
+
* An interface that describes the failed response model from Sitecore EP
|
|
28
28
|
*/
|
|
29
|
-
export interface
|
|
29
|
+
export interface FailedCalledFlowsResponse {
|
|
30
30
|
status: string;
|
|
31
31
|
code: string;
|
|
32
32
|
message: string;
|
|
@@ -36,26 +36,26 @@ export interface IFailedCalledFlowsResponse {
|
|
|
36
36
|
/**
|
|
37
37
|
* An interface that describes the identifier model attributes for the library
|
|
38
38
|
*/
|
|
39
|
-
export interface
|
|
39
|
+
export interface EPIdentifier {
|
|
40
40
|
id: string;
|
|
41
41
|
provider: string;
|
|
42
42
|
}
|
|
43
43
|
/**
|
|
44
|
-
* An interface that describes the payload sent to Sitecore
|
|
44
|
+
* An interface that describes the payload sent to Sitecore EP library
|
|
45
45
|
*/
|
|
46
|
-
export interface
|
|
46
|
+
export interface EPCallFlowsBody {
|
|
47
47
|
browserId?: string;
|
|
48
48
|
email?: string;
|
|
49
49
|
friendlyId: string;
|
|
50
|
-
identifiers?:
|
|
50
|
+
identifiers?: EPIdentifier;
|
|
51
51
|
channel: string;
|
|
52
52
|
clientKey: string;
|
|
53
53
|
currencyCode: string;
|
|
54
54
|
language: string | undefined;
|
|
55
|
-
params?:
|
|
55
|
+
params?: EPCallFlowsParams;
|
|
56
56
|
pointOfSale: string;
|
|
57
57
|
}
|
|
58
58
|
/**
|
|
59
|
-
* A type that describes the params property of the
|
|
59
|
+
* A type that describes the params property of the EPCallFlowsBody
|
|
60
60
|
*/
|
|
61
|
-
export type
|
|
61
|
+
export type EPCallFlowsParams = NestedObject;
|
|
@@ -7,22 +7,22 @@ const consts_1 = require("../consts");
|
|
|
7
7
|
class CallFlowEdgeProxyClient {
|
|
8
8
|
/**
|
|
9
9
|
* A helper class which handles the functionality for sending CALLFLOW requests
|
|
10
|
-
* @param personalizeData - The mandatory payload to be send to Sitecore
|
|
10
|
+
* @param personalizeData - The mandatory payload to be send to Sitecore EP
|
|
11
11
|
* @param settings - The global settings
|
|
12
12
|
*/
|
|
13
13
|
constructor(settings) {
|
|
14
14
|
this.settings = settings;
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
|
-
* A function that sends a CallFlow request to Sitecore
|
|
18
|
-
* @param personalizeData - Properties to be send to Sitecore
|
|
17
|
+
* A function that sends a CallFlow request to Sitecore EP
|
|
18
|
+
* @param personalizeData - Properties to be send to Sitecore EP
|
|
19
19
|
* @param timeout - Optional timeout in milliseconds to cancel the request
|
|
20
|
-
* @returns - A promise that resolves with either the Sitecore
|
|
20
|
+
* @returns - A promise that resolves with either the Sitecore EP response object or unknown
|
|
21
21
|
*/
|
|
22
|
-
async sendCallFlowsRequest(
|
|
22
|
+
async sendCallFlowsRequest(epCallFlowsBody, timeout) {
|
|
23
23
|
const requestUrl = `${this.settings.sitecoreEdgeUrl}/personalize/v2/callFlows?sitecoreContextId=${this.settings.sitecoreEdgeContextId}&siteId=${this.settings.siteName}`;
|
|
24
24
|
const fetchOptions = {
|
|
25
|
-
body: JSON.stringify(
|
|
25
|
+
body: JSON.stringify(epCallFlowsBody),
|
|
26
26
|
headers: {
|
|
27
27
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
28
28
|
'Content-Type': 'application/json',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { FailedCalledFlowsResponse } from './callflow-edge-proxy-client';
|
|
2
|
+
import { PersonalizerInput } from './personalizer';
|
|
3
3
|
/**
|
|
4
4
|
* A function that executes an interactive experiment or web experiment over any web-based or mobile application.
|
|
5
5
|
* @param personalizeData - The required/optional attributes in order to create a flow execution
|
|
@@ -7,4 +7,4 @@ import { IPersonalizerInput } from './personalizer';
|
|
|
7
7
|
* Used to abort the request to execute an interactive experiment or web experiment.
|
|
8
8
|
* @returns A flow execution response
|
|
9
9
|
*/
|
|
10
|
-
export declare function personalize(personalizeData:
|
|
10
|
+
export declare function personalize(personalizeData: PersonalizerInput, timeout?: number): Promise<unknown | null | FailedCalledFlowsResponse>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { FailedCalledFlowsResponse } from './callflow-edge-proxy-client';
|
|
2
|
+
import { Request } from '@sitecore-cloudsdk/utils';
|
|
3
|
+
import { PersonalizerInput } from './personalizer';
|
|
4
4
|
/**
|
|
5
5
|
* A function that executes an interactive experiment or web experiment over any web-based or mobile application.
|
|
6
6
|
* @param personalizeData - The required/optional attributes in order to create a flow execution
|
|
@@ -9,4 +9,4 @@ import { IPersonalizerInput } from './personalizer';
|
|
|
9
9
|
* Used to abort the request to execute an interactive experiment or web experiment.
|
|
10
10
|
* @returns A flow execution response
|
|
11
11
|
*/
|
|
12
|
-
export declare function personalizeServer<T extends
|
|
12
|
+
export declare function personalizeServer<T extends Request>(personalizeData: PersonalizerInput, request: T, timeout?: number): Promise<unknown | null | FailedCalledFlowsResponse>;
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { FailedCalledFlowsResponse, PersonalizeClient } from './callflow-edge-proxy-client';
|
|
2
|
+
import { NestedObject } from '@sitecore-cloudsdk/utils';
|
|
3
3
|
export declare class Personalizer {
|
|
4
4
|
private personalizeClient;
|
|
5
5
|
private id;
|
|
6
6
|
/**
|
|
7
7
|
* The Personalizer Class runs a flow of interactive experiments.
|
|
8
|
-
* @param personalizeClient - The data to be send to Sitecore
|
|
8
|
+
* @param personalizeClient - The data to be send to Sitecore EP
|
|
9
9
|
* @param infer - The source of methods to estimate language and page parameters
|
|
10
10
|
*/
|
|
11
|
-
constructor(personalizeClient:
|
|
11
|
+
constructor(personalizeClient: PersonalizeClient, id: string);
|
|
12
12
|
/**
|
|
13
|
-
* A function to make a request to the Sitecore
|
|
13
|
+
* A function to make a request to the Sitecore EP /callFlows API endpoint
|
|
14
14
|
* @param timeout - Optional timeout in milliseconds to cancel the request
|
|
15
|
-
* @returns - A promise that resolves with either the Sitecore
|
|
15
|
+
* @returns - A promise that resolves with either the Sitecore EP response object or null
|
|
16
16
|
*/
|
|
17
|
-
getInteractiveExperienceData(personalizeInput:
|
|
17
|
+
getInteractiveExperienceData(personalizeInput: PersonalizerInput, timeout?: number): Promise<unknown | null | FailedCalledFlowsResponse>;
|
|
18
18
|
/**
|
|
19
19
|
* A function that sanitizes the personalize input data
|
|
20
20
|
* @returns - The sanitized object
|
|
21
21
|
*/
|
|
22
22
|
private sanitizeInput;
|
|
23
23
|
/**
|
|
24
|
-
* A function that maps the personalize input data with the
|
|
25
|
-
* @returns - The
|
|
24
|
+
* A function that maps the personalize input data with the EP
|
|
25
|
+
* @returns - The EP object
|
|
26
26
|
*/
|
|
27
|
-
private
|
|
27
|
+
private mapPersonalizeInputToEPData;
|
|
28
28
|
/**
|
|
29
29
|
* A validation method to throw error for the mandatory property for runtime users
|
|
30
30
|
*/
|
|
@@ -33,23 +33,23 @@ export declare class Personalizer {
|
|
|
33
33
|
/**
|
|
34
34
|
* An interface that describes the flow execution model attributes input for the library
|
|
35
35
|
*/
|
|
36
|
-
export interface
|
|
36
|
+
export interface PersonalizerInput {
|
|
37
37
|
channel: string;
|
|
38
38
|
currency: string;
|
|
39
39
|
email?: string;
|
|
40
40
|
friendlyId: string;
|
|
41
|
-
identifier?:
|
|
41
|
+
identifier?: PersonalizeIdentifierInput;
|
|
42
42
|
language?: string;
|
|
43
|
-
params?:
|
|
43
|
+
params?: PersonalizeInputParams;
|
|
44
44
|
}
|
|
45
45
|
/**
|
|
46
46
|
* An interface that describes the identifier model attributes for the library
|
|
47
47
|
*/
|
|
48
|
-
export interface
|
|
48
|
+
export interface PersonalizeIdentifierInput {
|
|
49
49
|
id: string;
|
|
50
50
|
provider: string;
|
|
51
51
|
}
|
|
52
52
|
/**
|
|
53
53
|
* A type that describes the params field
|
|
54
54
|
*/
|
|
55
|
-
export type
|
|
55
|
+
export type PersonalizeInputParams = NestedObject;
|
|
@@ -7,7 +7,7 @@ const utils_1 = require("@sitecore-cloudsdk/utils");
|
|
|
7
7
|
class Personalizer {
|
|
8
8
|
/**
|
|
9
9
|
* The Personalizer Class runs a flow of interactive experiments.
|
|
10
|
-
* @param personalizeClient - The data to be send to Sitecore
|
|
10
|
+
* @param personalizeClient - The data to be send to Sitecore EP
|
|
11
11
|
* @param infer - The source of methods to estimate language and page parameters
|
|
12
12
|
*/
|
|
13
13
|
constructor(personalizeClient, id) {
|
|
@@ -15,14 +15,14 @@ class Personalizer {
|
|
|
15
15
|
this.id = id;
|
|
16
16
|
}
|
|
17
17
|
/**
|
|
18
|
-
* A function to make a request to the Sitecore
|
|
18
|
+
* A function to make a request to the Sitecore EP /callFlows API endpoint
|
|
19
19
|
* @param timeout - Optional timeout in milliseconds to cancel the request
|
|
20
|
-
* @returns - A promise that resolves with either the Sitecore
|
|
20
|
+
* @returns - A promise that resolves with either the Sitecore EP response object or null
|
|
21
21
|
*/
|
|
22
22
|
async getInteractiveExperienceData(personalizeInput, timeout) {
|
|
23
23
|
this.validate(personalizeInput);
|
|
24
24
|
const sanitizedInput = this.sanitizeInput(personalizeInput);
|
|
25
|
-
const mappedData = this.
|
|
25
|
+
const mappedData = this.mapPersonalizeInputToEPData(sanitizedInput);
|
|
26
26
|
if (!mappedData.email && !mappedData.identifiers)
|
|
27
27
|
mappedData.browserId = this.id;
|
|
28
28
|
const response = await this.personalizeClient.sendCallFlowsRequest(mappedData, timeout);
|
|
@@ -50,10 +50,10 @@ class Personalizer {
|
|
|
50
50
|
return sanitizedInput;
|
|
51
51
|
}
|
|
52
52
|
/**
|
|
53
|
-
* A function that maps the personalize input data with the
|
|
54
|
-
* @returns - The
|
|
53
|
+
* A function that maps the personalize input data with the EP
|
|
54
|
+
* @returns - The EP object
|
|
55
55
|
*/
|
|
56
|
-
|
|
56
|
+
mapPersonalizeInputToEPData(input) {
|
|
57
57
|
const mappedData = {
|
|
58
58
|
channel: input.channel,
|
|
59
59
|
clientKey: '',
|
|
@@ -72,7 +72,7 @@ class Personalizer {
|
|
|
72
72
|
*/
|
|
73
73
|
validate({ friendlyId }) {
|
|
74
74
|
if (!friendlyId || friendlyId.trim().length === 0)
|
|
75
|
-
throw new Error(`[MV-
|
|
75
|
+
throw new Error(`[MV-0004] "friendlyId" is required.`);
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
78
|
exports.Personalizer = Personalizer;
|
package/dist/cjs/src/server.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { initServer as init } from './lib/initializer/server/initializer';
|
|
2
2
|
export { personalizeServer as personalize } from './lib/personalization/personalizeServer';
|
|
3
3
|
export { LIBRARY_VERSION } from './lib/consts';
|
|
4
|
-
export type {
|
|
4
|
+
export type { PersonalizerInput } from './lib/personalization/personalizer';
|
|
@@ -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.dom.d.ts","../../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/typescript/lib/lib.es2020.full.d.ts","../../../core/dist/esm/src/lib/settings/interfaces.d.ts","../../../core/dist/esm/src/lib/cookie/create-cookie.d.ts","../../../utils/dist/esm/src/lib/cookies/interfaces.d.ts","../../../utils/dist/esm/src/lib/cookies/create-cookie-string.d.ts","../../../utils/dist/esm/src/lib/fetch-with-timeout.d.ts","../../../utils/dist/esm/src/lib/cookies/get-cookie-value-client-side.d.ts","../../../utils/dist/esm/src/lib/interfaces.d.ts","../../../utils/dist/esm/src/lib/typeguards/is-next-js-middleware-request.d.ts","../../../utils/dist/esm/src/lib/typeguards/is-next-js-middleware-response.d.ts","../../../utils/dist/esm/src/lib/typeguards/is-http-request.d.ts","../../../utils/dist/esm/src/lib/typeguards/is-http-response.d.ts","../../../utils/dist/esm/src/lib/cookies/get-cookie.d.ts","../../../utils/dist/esm/src/lib/cookies/get-cookie-server-side.d.ts","../../../utils/dist/esm/src/lib/cookies/cookie-exists.d.ts","../../../utils/dist/esm/src/lib/converters/flatten-object.d.ts","../../../utils/dist/esm/src/lib/validators/is-short-iso-date-string.d.ts","../../../utils/dist/esm/src/lib/validators/is-valid-email.d.ts","../../../utils/dist/esm/src/index.d.ts","../../../core/dist/esm/src/lib/cookie/get-browser-id-from-middleware-request.d.ts","../../../core/dist/esm/src/lib/cookie/get-default-cookie-attributes.d.ts","../../../core/dist/esm/src/lib/cookie/handle-http-cookie.d.ts","../../../core/dist/esm/src/lib/cookie/handle-next-js-middleware-cookie.d.ts","../../../core/dist/esm/src/lib/cookie/handle-server-cookie.d.ts","../../../core/dist/esm/src/lib/init/get-browser-id.d.ts","../../../core/dist/esm/src/lib/interfaces.d.ts","../../../core/dist/esm/src/lib/init/fetch-browser-id-from-edge-proxy.d.ts","../../../core/dist/esm/src/lib/init/get-guest-id.d.ts","../../../core/dist/esm/src/lib/settings/create-settings.d.ts","../../../core/dist/esm/src/lib/init/init-core.d.ts","../../../core/dist/esm/src/lib/init/init-core-server.d.ts","../../../core/dist/esm/src/lib/settings/validate-settings.d.ts","../../../core/dist/esm/src/lib/infer/infer.d.ts","../../../core/dist/esm/src/lib/cookie/get-browser-id-from-request.d.ts","../../../core/dist/esm/src/lib/consts.d.ts","../../../core/dist/esm/src/index.d.ts","../../package.json","../../src/lib/consts.ts","../../src/lib/personalization/callflow-edge-proxy-client.ts","../../src/lib/initializer/client/initializer.ts","../../src/lib/personalization/personalizer.ts","../../src/lib/personalization/personalize.ts","../../src/browser.ts","../../src/lib/initializer/server/initializer.ts","../../src/lib/personalization/personalizeServer.ts","../../src/server.ts","../../src/lib/global.d.ts","../../src/lib/utils/appendScriptWithAttributes.ts","../../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../../node_modules/chalk/index.d.ts","../../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../../node_modules/@jest/schemas/build/index.d.ts","../../../../node_modules/jest-diff/node_modules/pretty-format/build/index.d.ts","../../../../node_modules/jest-diff/build/index.d.ts","../../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../../node_modules/expect/build/index.d.ts","../../../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../../../node_modules/@types/jest/index.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/dom-events.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/globals.global.d.ts","../../../../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"322cc0ca9c311414642c0d7ef3b57beedbac198ca074e3e109a4be4c366dcb81","46f1575ca904fe5140444b2032ff23bfd2f00c9dd6873d5631fe838fab742d3a","13034e9ce7dd33731c71a1e9842a60a1afb81c30ff06b1b97942d070a5ab64e4","8a097d689786f46d5f2e6433a49d383b044597073e5e0b1fea48f3efa042cb79","bc93e02cfc0e3019072cf0ec0a57ded2e3f5813870dca04623e5db3e1d2f03e2","4d991768db6e5c49ae62899e3ca696b6ebd2d83865adc5ee387c67ab5906d6f8","70f72bf6ae0d50e11a1771689db30fe9dc7cece2955286423cfa442be5e1263a","800324653fc8a4a83e13eaf657897aa036b1301e08680ccb92f1f25700520283","988259d717cdcad1948c91db5c45a06d03b362bc632104f7f757e87a8a9c0ace","fb892dfd2a188b6d704f8b170e28b4154cedcd9c2d7932ef31a1bf09b99694d4","d8cb56e6c1f33c1f89f50c3d3e7460a2ffa5ead63890efb89c6601bf371400a0","6b911aac7d12ff36549b5106659918afcf836477cca6bc1e9b86253ae8065561","ac8c3a873b20c5f64c0dd1e9e504ae2a7a1e45177e3bcaefdadbf9d5ec1261c8","71be9175dc8a1c1cd6eee99770d6afb634c9f7dee2befff0f4ce9c8ca704522e","134134de823f2c8466a1138fa7f84989df4a3fa189d752144fee6ebc5ee32bd9","1e5c5277a6f3466ddcaa3302779e026d9c981105011e146a6c57d7bf7a76bfdd","2349625342a54f6ce6f4511d96353950cf57fb58e424f3322e797f2d04f1dec4","c13a58be4eba73d3a4944e8d3c7ae3b0ac1dad71ae4dbfc53d4e6ac8ac4fe2c8","bbce5333ed4bfd02bb85eeb4d0624f9f9c3a161aa531e97e1328f97061e6752d","e47e9baf9908c033d818b742a668229f268bc3f6e6d06e6ae5964edf5bc25262","65c158fe69604ebb5035fb027d119369eefa7a9fe1e861d4468e4f50f25abd9d","e2308a3252c57dba7d3ab4e634cc5c29c06ec8701778e53987e736ec563afcbe","514af66144ac166d955da4e4d3392d4ba948bac7874110a77c2f1d32aa9f6415","594d58068c15be3e097d8a6081e1accda8cddd4afdefe54384164d13dd37f903","9826d50920e503c91ce6a4c6397014442176b5df0df4e69268330b07c713c15e","0cc167c9bc9d94d8fa28333d743c8b63d05898cf6a937d1c721483fa880cfb8f","a49459e5d534bbc148196aafefefa776cbf0175fa2ef8def7c58b19d7dfed693","27e7359db3a04f2bb1e01d7c10bddcd50d5b9adcd9fa82d3461f46ff3e1b57e5","bb0922c76f35347d61f80686f62d0215babdb422f0d7ce0b6b8f9cea6492dc23","040753aff179abefbc603307f9016881060bb626aeba2a0f9a4de0cce1406e13","1ffeca4342eda74f4760ccee393322e31dcec48bf08583e06c89f821b5b3e49b","2fac316d606e1972e2947d0cf7c2a437fd21ee72185c09398402357ed61508d3","676b58d76d71a6097229241486f251f4884fa519af63bc9afa502dede8f561d2","261236614035a32bf453f5f7c2ad8efd253d9b0edecd050f69138c2efbc889ba","a061675939d3852e89037b0ab920e93429f96322a2d1bf519bb7c36f6a4a99c3","673fcb9cdf8bac5e9cd6b0f448b2d1f9558effcfedb7364bf9a500b7a09a2039","216f44af042969e2e62abdc1629ce9bfd181f74a3b3b52f473013d860f20ecb8",{"version":"1156924528d7f80cd31bef2f902e0dd6cd055a4db69db995c54955cddc799279","signature":"fde4f04ed0e841614f97369ca06ad25e37c67c938e5b6e8a3f52656cee0cbcdd"},{"version":"0730af77751b86eb722e4b22b77bb5aa9e8bb1260c3f4232800eec1d3ecbfaa3","signature":"0943d158ab0d8c9ae45c9416922da9418e5e9dc9ba4dc41527b4ede9146b2dad"},{"version":"e7d5d2e2112f50ff2fc4e1c8b8283485d8655f3148f4522b5079ef84d90e13d0","signature":"9782cee2de7aed327e6928213407b0f5056b726fe796d2ee96f09a8b3a0acecd"},{"version":"bb1b85e41db7e5edffe1780364429e623eca80556edafd9a9d28f3a7ad90a0ba","signature":"9207d683ad2e7d0854b838aa9a7f1102b787b80edfb99e732c736f66da830f82"},{"version":"b454a53a758e00fed4f75eff384a84d8ecf9ba5601e394546f87ec7f2f00dcdf","signature":"3771e237d8f30bde44fa73fcf03e8b76c98df3b768b47ff8920f96698f73821f"},{"version":"5d4e67dd60bd29aaca8780203c4ff0f94cd8b6fe6dc5b7f110b89bd5d9e1c935","signature":"24db741918546339b1d45ea94d67d8dff03e41c1ed874efefc64c910bc17eadc"},{"version":"4f74d6a69f5f703610a8b15e0f8d92ad7b4ffc1bde5554222f53e190c49bdce0","signature":"1fd329a3a4c651ad27272d770564f9541078423dc572a5958ec1a53323dd1623"},{"version":"9ae5787327f358832f437c66c30bf4d458f31870d7af15816289a4a5d462d344","signature":"318af0ffc18c853e1ea707a6682c94bcfe7a7e2bc61caa77938d5b71d7c2528a"},{"version":"85654bdaef14a7a0784def63e9823529571a92c35b72913054a7b31f7a50a3fa","signature":"19ad23e363a752af170bb7df7bd99c16300fc9f616125cb833cf679b260086cc"},{"version":"7f0c5aa9b4c036b91f95697d8aac231d4ba036c3d4af37f9f31e7d22244b86b8","affectsGlobalScope":true},{"version":"832d5b990f0bc202a360dd3a0a80458f00d981b2fac9c01e7c05f3b9ffbd1721","signature":"e83b3c2de27d1f96d76c0ca268091f1099dd490b43b3fbca682fd02c64341c4e"},"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e",{"version":"9afcfd847523b81d526c73130a247fbb65aa1eba2a1d4195cfacd677a9e4de08","affectsGlobalScope":true},"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"fc811ced095f38ad4438bb94a8d665c63bf4943e58a71ada16627add5ad93226","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","5eb881ed2a0d5b17ea36df5cd4c4be500e460c412f270c3170e906bec65580ac","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"2c45b35f4850881ab132f80d3cb51e8a359a4d8fafdc5ff2401d260dc27862f4","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","09326ae5f7e3d49be5cd9ea00eb814770e71870a438faa2efd8bdd9b4db21320",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"ed2a670a77a1b80653c5bde2d813b0ab2e92872cc9b2b611ce11050b95139be6"],"root":[[84,95]],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../..","strict":true,"target":7},"fileIdsList":[[152],[98,152],[100,103,152],[99,152],[106,152],[109,152],[110,115,143,152],[111,122,123,130,140,151,152],[111,112,122,130,152],[113,152],[114,115,123,131,152],[115,140,148,152],[116,118,122,130,152],[117,152],[118,119,152],[122,152],[120,122,152],[122,123,124,140,151,152],[122,123,124,137,140,143,152],[152,156],[118,125,130,140,151,152],[122,123,125,126,130,140,148,151,152],[125,127,140,148,151,152],[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,158],[122,128,152],[129,151,152],[118,122,130,140,152],[131,152],[132,152],[109,133,152],[134,150,152,156],[135,152],[136,152],[122,137,138,152],[137,139,152,154],[110,122,140,141,142,143,152],[110,140,142,152],[140,141,152],[143,152],[144,152],[122,146,147,152],[146,147,152],[115,130,140,148,152],[149,152],[130,150,152],[110,125,136,151,152],[115,152],[140,152,153],[152,154],[152,155],[110,115,122,124,133,140,151,152,154,156],[140,152,157],[96,102,152],[100,152],[97,101,152],[49,50,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,152],[49,152],[66,152],[49,66,152],[73,152],[85,87,88,89,152],[84,152],[83,152],[83,85,86,152],[66,83,86,87,152],[66,83,85,152],[86,87,88,152],[66,83,86,88,91,152],[66,83,86,152],[85,88,91,92,152],[51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,152],[55,152],[51,152],[85,87,88,89],[83,86],[66,83,87],[66,83],[86,88],[66,86,88],[66,86],[85,88,91,92]],"referencedMap":[[96,1],[99,2],[98,1],[105,3],[104,4],[106,5],[107,5],[109,6],[110,7],[111,8],[112,9],[113,10],[114,11],[115,12],[116,13],[117,14],[118,15],[119,15],[121,16],[120,17],[122,16],[123,18],[124,19],[108,20],[158,1],[125,21],[126,22],[127,23],[159,24],[128,25],[129,26],[130,27],[131,28],[132,29],[133,30],[134,31],[135,32],[136,33],[137,34],[138,34],[139,35],[140,36],[142,37],[141,38],[143,39],[144,40],[145,1],[146,41],[147,42],[148,43],[149,44],[150,45],[151,46],[152,47],[153,48],[154,49],[155,50],[156,51],[157,52],[97,1],[103,53],[101,54],[100,4],[102,55],[46,1],[47,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[48,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1],[45,1],[11,1],[10,1],[83,56],[82,1],[50,57],[67,58],[81,58],[68,58],[69,59],[70,59],[71,58],[80,1],[74,60],[72,1],[75,1],[78,59],[77,57],[73,1],[76,57],[49,1],[79,57],[84,1],[90,61],[85,62],[94,63],[87,64],[91,65],[86,66],[89,67],[92,68],[88,69],[95,1],[93,70],[66,71],[63,72],[62,1],[52,73],[61,1],[54,1],[60,1],[51,1],[53,1],[55,73],[58,72],[59,72],[56,72],[57,72],[64,1],[65,1]],"exportedModulesMap":[[96,1],[99,2],[98,1],[105,3],[104,4],[106,5],[107,5],[109,6],[110,7],[111,8],[112,9],[113,10],[114,11],[115,12],[116,13],[117,14],[118,15],[119,15],[121,16],[120,17],[122,16],[123,18],[124,19],[108,20],[158,1],[125,21],[126,22],[127,23],[159,24],[128,25],[129,26],[130,27],[131,28],[132,29],[133,30],[134,31],[135,32],[136,33],[137,34],[138,34],[139,35],[140,36],[142,37],[141,38],[143,39],[144,40],[145,1],[146,41],[147,42],[148,43],[149,44],[150,45],[151,46],[152,47],[153,48],[154,49],[155,50],[156,51],[157,52],[97,1],[103,53],[101,54],[100,4],[102,55],[46,1],[47,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[48,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1],[45,1],[11,1],[10,1],[83,56],[82,1],[50,57],[67,58],[81,58],[68,58],[69,59],[70,59],[71,58],[80,1],[74,60],[72,1],[75,1],[78,59],[77,57],[73,1],[76,57],[49,1],[79,57],[84,1],[90,74],[94,63],[87,75],[91,76],[86,77],[89,78],[92,79],[88,80],[93,81],[66,71],[63,72],[62,1],[52,73],[61,1],[54,1],[60,1],[51,1],[53,1],[55,73],[58,72],[59,72],[56,72],[57,72],[64,1],[65,1]],"semanticDiagnosticsPerFile":[96,99,98,105,104,106,107,109,110,111,112,113,114,115,116,117,118,119,121,120,122,123,124,108,158,125,126,127,159,128,129,130,131,132,133,134,135,136,137,138,139,140,142,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,97,103,101,100,102,46,47,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,48,43,44,39,40,41,42,1,45,11,10,83,82,50,67,81,68,69,70,71,80,74,72,75,78,77,73,76,49,79,84,90,85,94,87,91,86,89,92,88,95,93,66,63,62,52,61,54,60,51,53,55,58,59,56,57,64,65],"latestChangedDtsFile":"./src/lib/utils/appendScriptWithAttributes.d.ts"},"version":"5.1.6"}
|
|
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.dom.d.ts","../../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/typescript/lib/lib.es2020.full.d.ts","../../../core/dist/esm/src/lib/settings/interfaces.d.ts","../../../core/dist/esm/src/lib/cookie/create-cookie.d.ts","../../../utils/dist/esm/src/lib/cookies/interfaces.d.ts","../../../utils/dist/esm/src/lib/cookies/create-cookie-string.d.ts","../../../utils/dist/esm/src/lib/fetch-with-timeout.d.ts","../../../utils/dist/esm/src/lib/cookies/get-cookie-value-client-side.d.ts","../../../utils/dist/esm/src/lib/interfaces.d.ts","../../../utils/dist/esm/src/lib/typeguards/is-next-js-middleware-request.d.ts","../../../utils/dist/esm/src/lib/typeguards/is-next-js-middleware-response.d.ts","../../../utils/dist/esm/src/lib/typeguards/is-http-request.d.ts","../../../utils/dist/esm/src/lib/typeguards/is-http-response.d.ts","../../../utils/dist/esm/src/lib/cookies/get-cookie.d.ts","../../../utils/dist/esm/src/lib/cookies/get-cookie-server-side.d.ts","../../../utils/dist/esm/src/lib/cookies/cookie-exists.d.ts","../../../utils/dist/esm/src/lib/converters/flatten-object.d.ts","../../../utils/dist/esm/src/lib/validators/is-short-iso-date-string.d.ts","../../../utils/dist/esm/src/lib/validators/is-valid-email.d.ts","../../../utils/dist/esm/src/index.d.ts","../../../core/dist/esm/src/lib/cookie/get-browser-id-from-middleware-request.d.ts","../../../core/dist/esm/src/lib/cookie/get-default-cookie-attributes.d.ts","../../../core/dist/esm/src/lib/cookie/handle-http-cookie.d.ts","../../../core/dist/esm/src/lib/cookie/handle-next-js-middleware-cookie.d.ts","../../../core/dist/esm/src/lib/cookie/handle-server-cookie.d.ts","../../../core/dist/esm/src/lib/init/get-browser-id.d.ts","../../../core/dist/esm/src/lib/interfaces.d.ts","../../../core/dist/esm/src/lib/init/fetch-browser-id-from-edge-proxy.d.ts","../../../core/dist/esm/src/lib/init/get-guest-id.d.ts","../../../core/dist/esm/src/lib/settings/create-settings.d.ts","../../../core/dist/esm/src/lib/init/init-core.d.ts","../../../core/dist/esm/src/lib/init/init-core-server.d.ts","../../../core/dist/esm/src/lib/settings/validate-settings.d.ts","../../../core/dist/esm/src/lib/infer/infer.d.ts","../../../core/dist/esm/src/lib/cookie/get-browser-id-from-request.d.ts","../../../core/dist/esm/src/lib/consts.d.ts","../../../core/dist/esm/src/index.d.ts","../../package.json","../../src/lib/consts.ts","../../src/lib/personalization/callflow-edge-proxy-client.ts","../../src/lib/initializer/client/initializer.ts","../../src/lib/personalization/personalizer.ts","../../src/lib/personalization/personalize.ts","../../src/browser.ts","../../src/lib/initializer/server/initializer.ts","../../src/lib/personalization/personalizeServer.ts","../../src/server.ts","../../src/lib/global.d.ts","../../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../../node_modules/chalk/index.d.ts","../../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../../node_modules/@jest/schemas/build/index.d.ts","../../../../node_modules/jest-diff/node_modules/pretty-format/build/index.d.ts","../../../../node_modules/jest-diff/build/index.d.ts","../../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../../node_modules/expect/build/index.d.ts","../../../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../../../node_modules/@types/jest/index.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/dom-events.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/globals.global.d.ts","../../../../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"322cc0ca9c311414642c0d7ef3b57beedbac198ca074e3e109a4be4c366dcb81","0536daa43be5b2bf2fd1774a32d79105a4685482769c463af635bb4d0c746855","e9ac7944f801e64399870514e48160e4dfe6d2a91461d62912905568179152bb","c60f2ef51cc641b725a8a4830a091321cae5670b6c0e755e67c688b48098d533","024c5cac56628fdddf5fac2b6d6cf2807126545a0bbb2b8cbe01e4201fa9b27d","4d991768db6e5c49ae62899e3ca696b6ebd2d83865adc5ee387c67ab5906d6f8","70f72bf6ae0d50e11a1771689db30fe9dc7cece2955286423cfa442be5e1263a","d3d5faf80f2c4e40fd5abd64f3c944e3f9b95e9954ee699faba9f7f454b0ca30","6434c5c23b10df54100ec3d8c8918473fee276747d7171c3dcce495709e5a74c","577fe9aa8b987863c4372d005be888e6d25c8fc6bdcff3a8e77a14f912a3ca97","e5de375229106fb4094e7ac2627b59d4ab3df3bbd5fe1fb06c3555ebde6b3edb","b64c191a67dca89165ccd351ae29598c33169738646c3b8f7ccbc74ca4c031ba","ac8c3a873b20c5f64c0dd1e9e504ae2a7a1e45177e3bcaefdadbf9d5ec1261c8","71be9175dc8a1c1cd6eee99770d6afb634c9f7dee2befff0f4ce9c8ca704522e","134134de823f2c8466a1138fa7f84989df4a3fa189d752144fee6ebc5ee32bd9","80dccc902883b7dd0e373fd1e4bc0705e3b69f3346522d94975cb80f518e7e00","2349625342a54f6ce6f4511d96353950cf57fb58e424f3322e797f2d04f1dec4","c13a58be4eba73d3a4944e8d3c7ae3b0ac1dad71ae4dbfc53d4e6ac8ac4fe2c8","8aeb92f0dd21a754587ebfdf0230a8e51fd530a6213aafca04e7b6e8e2daf7dd","810ec63ebb6ee62de133c3ab206f58e12b73683712e5e671476e26240cd64a8e","c9c29ba209b4c1b4dd25c47227cf04fd353187da4d7c0caea889ae3e1506afc7","c40049897ac2848d0f1db7ac9a72c16f960fe86824691f1dfc8c8d8f1abd26d7","d967d89b323db259946dcaae61d6210066fb72f284afe2420c6274cd3202155a","db284f4353b1db7e644c27c85659de13fd12f9e378075e60aa148d1ec3beb501","9826d50920e503c91ce6a4c6397014442176b5df0df4e69268330b07c713c15e","a45f605b8bb11945f9777cd791c47e4717d3e4ba0d85b352ceaa31546fd6b145","28f3576eba77015d4b60fa685a747d346bb79c1fafbd6dce31890bf99058605c","d7bdf32a9cc8cf7fde056dd2f124245eaacafbbdd6ddb7a7bbefa6f1dff840e1","f5c6e592fc89e6b0a9ec9b98d191a81c6185700ff939de6f50cb8ac7de6da033","e68081e5c6552ffaa00201adc6802d12271fb1efee3cb0423c60dab53e127b34","fde105e55cb111e717b376b38502bc375361061dd6f877696d06e36c7de88ff5","a827b589ba12db1d7028e98be9a7780f82470df00ca4af62bf11dbde2dafce30","676b58d76d71a6097229241486f251f4884fa519af63bc9afa502dede8f561d2","13a096de23d0cba1d243f64ad7040dba5d07bc1bd1375cd1b64e2127482ae10c","a061675939d3852e89037b0ab920e93429f96322a2d1bf519bb7c36f6a4a99c3","f8080d65ef8cf7ada957c5864fb1fe6a20e33bdc3d9449021de858330b27e620","3943e3707bc0c04b075342e6268e1c3831a0ebf881c7ec8f83db22281ce56534",{"version":"1156924528d7f80cd31bef2f902e0dd6cd055a4db69db995c54955cddc799279","signature":"fde4f04ed0e841614f97369ca06ad25e37c67c938e5b6e8a3f52656cee0cbcdd"},{"version":"b670df646f3e79e5a3a246c37012b8915d78b153af9c115d1ebbe0b93ce7a321","signature":"58a210577e949fdb5925e76e0ed7534693aad0652cb5888d307dbf7d6a1feb0a"},{"version":"aa84799bda7c98b11b229a141a33347e18c2da101109e6a7da8f985c8f21f6bb","signature":"ca88954899a8873df8b42c6b286563153f5f4efb8c5030b8528ae2f2f1cddf66"},{"version":"75861f33ced681b3ac9114c114a910405dc33370e7314b270d40b179a8761f83","signature":"3db335be83742a3bb1af172d8d383e9089a3e1ccf66355c82f1dbe66d122902a"},{"version":"16e453f106f93648f341c9ebebd9f88b6d3454387254488ccc020945a1382c00","signature":"e9a35ca3414eebe7749bd4362d4d643ff9465864e658cb8ce0186c1e79a4ff3e"},{"version":"e063a05b1ea12de657ec3a44be83b0d42cefd5b07775819e87e96ec647af679b","signature":"68636106c1b42340d0cd87838419d10d92bb62c1103cbc79acd0e1a8ea1fe30c"},{"version":"d9731484245f62e0af00e2fd35279543cf785e8cedc264fe958b66aec00a749f","signature":"3e9cccb893df520edae4e1b351d0205fffa55b77d766d1dcee1c5c7e80d938c7"},{"version":"6d04bdc7be842f0d8fde977226df5aba3c3b5655e28e0b15e38cacb62eaa58e4","signature":"86517b1ccd52b89939f47324e5675a3c38678629cda184583131551521b46c72"},{"version":"0465cc3ebe426fa647366a891d3fd24fc848bd3ccbda115f8127b639c89b25f8","signature":"16634ccb4935ece983f245edf72d91c04f3d8181ddd2f389e88014b3705ee70e"},{"version":"b32b41b5b507c1fa33d2aa148f8353b773e9ab0df87f18c96d9a7c2d0d784dc6","affectsGlobalScope":true},"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e",{"version":"9afcfd847523b81d526c73130a247fbb65aa1eba2a1d4195cfacd677a9e4de08","affectsGlobalScope":true},"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"fc811ced095f38ad4438bb94a8d665c63bf4943e58a71ada16627add5ad93226","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","5eb881ed2a0d5b17ea36df5cd4c4be500e460c412f270c3170e906bec65580ac","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"2c45b35f4850881ab132f80d3cb51e8a359a4d8fafdc5ff2401d260dc27862f4","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","09326ae5f7e3d49be5cd9ea00eb814770e71870a438faa2efd8bdd9b4db21320",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"ed2a670a77a1b80653c5bde2d813b0ab2e92872cc9b2b611ce11050b95139be6"],"root":[[84,94]],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../..","strict":true,"target":7},"fileIdsList":[[151],[97,151],[99,102,151],[98,151],[105,151],[108,151],[109,114,142,151],[110,121,122,129,139,150,151],[110,111,121,129,151],[112,151],[113,114,122,130,151],[114,139,147,151],[115,117,121,129,151],[116,151],[117,118,151],[121,151],[119,121,151],[121,122,123,139,150,151],[121,122,123,136,139,142,151],[151,155],[117,124,129,139,150,151],[121,122,124,125,129,139,147,150,151],[124,126,139,147,150,151],[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,155,156,157],[121,127,151],[128,150,151],[117,121,129,139,151],[130,151],[131,151],[108,132,151],[133,149,151,155],[134,151],[135,151],[121,136,137,151],[136,138,151,153],[109,121,139,140,141,142,151],[109,139,141,151],[139,140,151],[142,151],[143,151],[121,145,146,151],[145,146,151],[114,129,139,147,151],[148,151],[129,149,151],[109,124,135,150,151],[114,151],[139,151,152],[151,153],[151,154],[109,114,121,123,132,139,150,151,153,155],[139,151,156],[95,101,151],[99,151],[96,100,151],[49,50,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,151],[49,151],[66,151],[49,66,151],[73,151],[85,87,88,89,151],[84,151],[83,85,86,151],[66,83,86,87,151],[66,83,85,151],[86,87,88,151],[66,83,86,88,91,151],[66,83,86,151],[85,88,91,92,151],[51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,151],[55,151],[51,151],[85,87,88,89],[83,86],[66,83,87],[66,83],[86,88],[66,86,88],[66,86],[85,88,91,92]],"referencedMap":[[95,1],[98,2],[97,1],[104,3],[103,4],[105,5],[106,5],[108,6],[109,7],[110,8],[111,9],[112,10],[113,11],[114,12],[115,13],[116,14],[117,15],[118,15],[120,16],[119,17],[121,16],[122,18],[123,19],[107,20],[157,1],[124,21],[125,22],[126,23],[158,24],[127,25],[128,26],[129,27],[130,28],[131,29],[132,30],[133,31],[134,32],[135,33],[136,34],[137,34],[138,35],[139,36],[141,37],[140,38],[142,39],[143,40],[144,1],[145,41],[146,42],[147,43],[148,44],[149,45],[150,46],[151,47],[152,48],[153,49],[154,50],[155,51],[156,52],[96,1],[102,53],[100,54],[99,4],[101,55],[46,1],[47,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[48,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1],[45,1],[11,1],[10,1],[83,56],[82,1],[50,57],[67,58],[81,58],[68,58],[69,59],[70,59],[71,58],[80,1],[74,60],[72,1],[75,1],[78,59],[77,57],[73,1],[76,57],[49,1],[79,57],[84,1],[90,61],[85,62],[94,1],[87,63],[91,64],[86,65],[89,66],[92,67],[88,68],[93,69],[66,70],[63,71],[62,1],[52,72],[61,1],[54,1],[60,1],[51,1],[53,1],[55,72],[58,71],[59,71],[56,71],[57,71],[64,1],[65,1]],"exportedModulesMap":[[95,1],[98,2],[97,1],[104,3],[103,4],[105,5],[106,5],[108,6],[109,7],[110,8],[111,9],[112,10],[113,11],[114,12],[115,13],[116,14],[117,15],[118,15],[120,16],[119,17],[121,16],[122,18],[123,19],[107,20],[157,1],[124,21],[125,22],[126,23],[158,24],[127,25],[128,26],[129,27],[130,28],[131,29],[132,30],[133,31],[134,32],[135,33],[136,34],[137,34],[138,35],[139,36],[141,37],[140,38],[142,39],[143,40],[144,1],[145,41],[146,42],[147,43],[148,44],[149,45],[150,46],[151,47],[152,48],[153,49],[154,50],[155,51],[156,52],[96,1],[102,53],[100,54],[99,4],[101,55],[46,1],[47,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[48,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1],[45,1],[11,1],[10,1],[83,56],[82,1],[50,57],[67,58],[81,58],[68,58],[69,59],[70,59],[71,58],[80,1],[74,60],[72,1],[75,1],[78,59],[77,57],[73,1],[76,57],[49,1],[79,57],[84,1],[90,73],[94,1],[87,74],[91,75],[86,76],[89,77],[92,78],[88,79],[93,80],[66,70],[63,71],[62,1],[52,72],[61,1],[54,1],[60,1],[51,1],[53,1],[55,72],[58,71],[59,71],[56,71],[57,71],[64,1],[65,1]],"semanticDiagnosticsPerFile":[95,98,97,104,103,105,106,108,109,110,111,112,113,114,115,116,117,118,120,119,121,122,123,107,157,124,125,126,158,127,128,129,130,131,132,133,134,135,136,137,138,139,141,140,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,96,102,100,99,101,46,47,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,48,43,44,39,40,41,42,1,45,11,10,83,82,50,67,81,68,69,70,71,80,74,72,75,78,77,73,76,49,79,84,90,85,94,87,91,86,89,92,88,93,66,63,62,52,61,54,60,51,53,55,58,59,56,57,64,65],"latestChangedDtsFile":"./src/server.d.ts"},"version":"5.1.6"}
|
package/dist/esm/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { init } from './lib/initializer/client/initializer';
|
|
2
2
|
export { personalize } from './lib/personalization/personalize';
|
|
3
3
|
export { LIBRARY_VERSION } from './lib/consts';
|
|
4
|
-
export type {
|
|
4
|
+
export type { PersonalizerInput } from './lib/personalization/personalizer';
|
|
@@ -1,31 +1,28 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Settings, SettingsParamsBrowser } from '@sitecore-cloudsdk/core';
|
|
2
2
|
import { CallFlowEdgeProxyClient } from '../../personalization/callflow-edge-proxy-client';
|
|
3
3
|
/**
|
|
4
4
|
* Sets the personalize settings to be used by the application.
|
|
5
5
|
*
|
|
6
6
|
* @param settings - The personalize settings to be set, or `null` to clear the settings.
|
|
7
7
|
*/
|
|
8
|
-
export declare function setDependencies(settings:
|
|
8
|
+
export declare function setDependencies(settings: BrowserPersonalizeSettings | null): void;
|
|
9
9
|
/**
|
|
10
10
|
* Retrieves the browser personalize settings object.
|
|
11
11
|
*
|
|
12
|
-
* This function ensures that the browser personalize settings have been initialized and contain essential properties like `settings` and `
|
|
12
|
+
* This function ensures that the browser personalize settings have been initialized and contain essential properties like `settings` and `callFlowEPClient`.
|
|
13
13
|
*
|
|
14
14
|
* @returns The browser personalize settings object.
|
|
15
15
|
* @throws Error if the personalize settings haven't been initialized with the required properties.
|
|
16
16
|
*/
|
|
17
|
-
export declare function getDependencies():
|
|
17
|
+
export declare function getDependencies(): BrowserPersonalizeSettings;
|
|
18
18
|
/**
|
|
19
19
|
* Initiates the Engage library using the global settings added by the developer
|
|
20
20
|
* @param settingsInput - Global settings added by the developer
|
|
21
21
|
* @returns A promise that resolves with an object that handles the library functionality
|
|
22
22
|
*/
|
|
23
|
-
export declare function init(settingsInput:
|
|
24
|
-
export
|
|
25
|
-
webPersonalization?: boolean | IWebPersonalizationConfig;
|
|
26
|
-
} & ISettingsParamsBrowser;
|
|
27
|
-
export interface IBrowserPersonalizeSettings {
|
|
23
|
+
export declare function init(settingsInput: SettingsParamsBrowser): Promise<void>;
|
|
24
|
+
export interface BrowserPersonalizeSettings {
|
|
28
25
|
id: string;
|
|
29
|
-
settings:
|
|
26
|
+
settings: Settings;
|
|
30
27
|
callFlowEdgeProxyClient: CallFlowEdgeProxyClient;
|
|
31
28
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// © Sitecore Corporation A/S. All rights reserved. Sitecore® is a registered trademark of Sitecore Corporation A/S.
|
|
2
|
-
import { getBrowserId, getSettings, initCore
|
|
2
|
+
import { getBrowserId, getSettings, initCore } from '@sitecore-cloudsdk/core';
|
|
3
3
|
import { LIBRARY_VERSION } from '../../consts';
|
|
4
4
|
import { CallFlowEdgeProxyClient } from '../../personalization/callflow-edge-proxy-client';
|
|
5
5
|
let dependencies = null;
|
|
@@ -14,14 +14,14 @@ export function setDependencies(settings) {
|
|
|
14
14
|
/**
|
|
15
15
|
* Retrieves the browser personalize settings object.
|
|
16
16
|
*
|
|
17
|
-
* This function ensures that the browser personalize settings have been initialized and contain essential properties like `settings` and `
|
|
17
|
+
* This function ensures that the browser personalize settings have been initialized and contain essential properties like `settings` and `callFlowEPClient`.
|
|
18
18
|
*
|
|
19
19
|
* @returns The browser personalize settings object.
|
|
20
20
|
* @throws Error if the personalize settings haven't been initialized with the required properties.
|
|
21
21
|
*/
|
|
22
22
|
export function getDependencies() {
|
|
23
23
|
if (!dependencies) {
|
|
24
|
-
throw Error(`[IE-
|
|
24
|
+
throw Error(`[IE-0006] You must first initialize the "personalize/browser" module. Run the "init" function.`);
|
|
25
25
|
}
|
|
26
26
|
return dependencies;
|
|
27
27
|
}
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { SettingsParamsServer } from '@sitecore-cloudsdk/core';
|
|
2
|
+
import { BrowserPersonalizeSettings } from '../client/initializer';
|
|
3
|
+
import { HttpResponse, MiddlewareNextResponse, Request } from '@sitecore-cloudsdk/utils';
|
|
4
4
|
/**
|
|
5
5
|
* Sets the personalize settings to be used by the application.
|
|
6
6
|
*
|
|
7
7
|
* @param settings - The personalize settings to be set, or `null` to clear the settings.
|
|
8
8
|
*/
|
|
9
|
-
export declare function setDependencies(settings:
|
|
9
|
+
export declare function setDependencies(settings: ServerPersonalize | null): void;
|
|
10
10
|
/**
|
|
11
11
|
* Retrieves the personalize server settings used by the application.
|
|
12
12
|
*
|
|
13
13
|
* @returns The personalize server settings.
|
|
14
14
|
* @throws Error if the personalize server settings haven't been initialized.
|
|
15
15
|
*/
|
|
16
|
-
export declare function getServerDependencies():
|
|
16
|
+
export declare function getServerDependencies(): ServerPersonalize;
|
|
17
17
|
/**
|
|
18
18
|
* Initiates the server Engage library using the global settings added by the developer
|
|
19
19
|
* @param settings - Global settings added by the developer
|
|
20
20
|
* @returns A promise that resolves with an object that handles the library functionality
|
|
21
21
|
*/
|
|
22
|
-
export declare function initServer<
|
|
23
|
-
export type
|
|
22
|
+
export declare function initServer<Response extends MiddlewareNextResponse | HttpResponse>(settingsInput: SettingsParamsServer, request: Request, response: Response): Promise<void>;
|
|
23
|
+
export type ServerPersonalize = Omit<BrowserPersonalizeSettings, 'id'>;
|
|
@@ -18,7 +18,7 @@ export function setDependencies(settings) {
|
|
|
18
18
|
*/
|
|
19
19
|
export function getServerDependencies() {
|
|
20
20
|
if (!serverDependencies) {
|
|
21
|
-
throw Error(`[IE-
|
|
21
|
+
throw Error(`[IE-0007] You must first initialize the "personalize/server" module. Run the "init" function.`);
|
|
22
22
|
}
|
|
23
23
|
return serverDependencies;
|
|
24
24
|
}
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
export declare class CallFlowEdgeProxyClient implements
|
|
4
|
-
settings:
|
|
1
|
+
import { Settings } from '@sitecore-cloudsdk/core';
|
|
2
|
+
import { NestedObject } from '@sitecore-cloudsdk/utils';
|
|
3
|
+
export declare class CallFlowEdgeProxyClient implements PersonalizeClient {
|
|
4
|
+
settings: Settings;
|
|
5
5
|
/**
|
|
6
6
|
* A helper class which handles the functionality for sending CALLFLOW requests
|
|
7
|
-
* @param personalizeData - The mandatory payload to be send to Sitecore
|
|
7
|
+
* @param personalizeData - The mandatory payload to be send to Sitecore EP
|
|
8
8
|
* @param settings - The global settings
|
|
9
9
|
*/
|
|
10
|
-
constructor(settings:
|
|
10
|
+
constructor(settings: Settings);
|
|
11
11
|
/**
|
|
12
|
-
* A function that sends a CallFlow request to Sitecore
|
|
13
|
-
* @param personalizeData - Properties to be send to Sitecore
|
|
12
|
+
* A function that sends a CallFlow request to Sitecore EP
|
|
13
|
+
* @param personalizeData - Properties to be send to Sitecore EP
|
|
14
14
|
* @param timeout - Optional timeout in milliseconds to cancel the request
|
|
15
|
-
* @returns - A promise that resolves with either the Sitecore
|
|
15
|
+
* @returns - A promise that resolves with either the Sitecore EP response object or unknown
|
|
16
16
|
*/
|
|
17
|
-
sendCallFlowsRequest(
|
|
17
|
+
sendCallFlowsRequest(epCallFlowsBody: EPCallFlowsBody, timeout?: number): Promise<any>;
|
|
18
18
|
}
|
|
19
19
|
/**
|
|
20
20
|
* An interface with the basic functionality that the derived classes needs to implement
|
|
21
21
|
*/
|
|
22
|
-
export interface
|
|
23
|
-
settings:
|
|
24
|
-
sendCallFlowsRequest: (
|
|
22
|
+
export interface PersonalizeClient {
|
|
23
|
+
settings: Settings;
|
|
24
|
+
sendCallFlowsRequest: (epCallFlowAttributes: EPCallFlowsBody, timeout?: number) => Promise<unknown | null | FailedCalledFlowsResponse>;
|
|
25
25
|
}
|
|
26
26
|
/**
|
|
27
|
-
* An interface that describes the failed response model from Sitecore
|
|
27
|
+
* An interface that describes the failed response model from Sitecore EP
|
|
28
28
|
*/
|
|
29
|
-
export interface
|
|
29
|
+
export interface FailedCalledFlowsResponse {
|
|
30
30
|
status: string;
|
|
31
31
|
code: string;
|
|
32
32
|
message: string;
|
|
@@ -36,26 +36,26 @@ export interface IFailedCalledFlowsResponse {
|
|
|
36
36
|
/**
|
|
37
37
|
* An interface that describes the identifier model attributes for the library
|
|
38
38
|
*/
|
|
39
|
-
export interface
|
|
39
|
+
export interface EPIdentifier {
|
|
40
40
|
id: string;
|
|
41
41
|
provider: string;
|
|
42
42
|
}
|
|
43
43
|
/**
|
|
44
|
-
* An interface that describes the payload sent to Sitecore
|
|
44
|
+
* An interface that describes the payload sent to Sitecore EP library
|
|
45
45
|
*/
|
|
46
|
-
export interface
|
|
46
|
+
export interface EPCallFlowsBody {
|
|
47
47
|
browserId?: string;
|
|
48
48
|
email?: string;
|
|
49
49
|
friendlyId: string;
|
|
50
|
-
identifiers?:
|
|
50
|
+
identifiers?: EPIdentifier;
|
|
51
51
|
channel: string;
|
|
52
52
|
clientKey: string;
|
|
53
53
|
currencyCode: string;
|
|
54
54
|
language: string | undefined;
|
|
55
|
-
params?:
|
|
55
|
+
params?: EPCallFlowsParams;
|
|
56
56
|
pointOfSale: string;
|
|
57
57
|
}
|
|
58
58
|
/**
|
|
59
|
-
* A type that describes the params property of the
|
|
59
|
+
* A type that describes the params property of the EPCallFlowsBody
|
|
60
60
|
*/
|
|
61
|
-
export type
|
|
61
|
+
export type EPCallFlowsParams = NestedObject;
|
|
@@ -4,22 +4,22 @@ import { LIBRARY_VERSION } from '../consts';
|
|
|
4
4
|
export class CallFlowEdgeProxyClient {
|
|
5
5
|
/**
|
|
6
6
|
* A helper class which handles the functionality for sending CALLFLOW requests
|
|
7
|
-
* @param personalizeData - The mandatory payload to be send to Sitecore
|
|
7
|
+
* @param personalizeData - The mandatory payload to be send to Sitecore EP
|
|
8
8
|
* @param settings - The global settings
|
|
9
9
|
*/
|
|
10
10
|
constructor(settings) {
|
|
11
11
|
this.settings = settings;
|
|
12
12
|
}
|
|
13
13
|
/**
|
|
14
|
-
* A function that sends a CallFlow request to Sitecore
|
|
15
|
-
* @param personalizeData - Properties to be send to Sitecore
|
|
14
|
+
* A function that sends a CallFlow request to Sitecore EP
|
|
15
|
+
* @param personalizeData - Properties to be send to Sitecore EP
|
|
16
16
|
* @param timeout - Optional timeout in milliseconds to cancel the request
|
|
17
|
-
* @returns - A promise that resolves with either the Sitecore
|
|
17
|
+
* @returns - A promise that resolves with either the Sitecore EP response object or unknown
|
|
18
18
|
*/
|
|
19
|
-
async sendCallFlowsRequest(
|
|
19
|
+
async sendCallFlowsRequest(epCallFlowsBody, timeout) {
|
|
20
20
|
const requestUrl = `${this.settings.sitecoreEdgeUrl}/personalize/v2/callFlows?sitecoreContextId=${this.settings.sitecoreEdgeContextId}&siteId=${this.settings.siteName}`;
|
|
21
21
|
const fetchOptions = {
|
|
22
|
-
body: JSON.stringify(
|
|
22
|
+
body: JSON.stringify(epCallFlowsBody),
|
|
23
23
|
headers: {
|
|
24
24
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
25
25
|
'Content-Type': 'application/json',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { FailedCalledFlowsResponse } from './callflow-edge-proxy-client';
|
|
2
|
+
import { PersonalizerInput } from './personalizer';
|
|
3
3
|
/**
|
|
4
4
|
* A function that executes an interactive experiment or web experiment over any web-based or mobile application.
|
|
5
5
|
* @param personalizeData - The required/optional attributes in order to create a flow execution
|
|
@@ -7,4 +7,4 @@ import { IPersonalizerInput } from './personalizer';
|
|
|
7
7
|
* Used to abort the request to execute an interactive experiment or web experiment.
|
|
8
8
|
* @returns A flow execution response
|
|
9
9
|
*/
|
|
10
|
-
export declare function personalize(personalizeData:
|
|
10
|
+
export declare function personalize(personalizeData: PersonalizerInput, timeout?: number): Promise<unknown | null | FailedCalledFlowsResponse>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { FailedCalledFlowsResponse } from './callflow-edge-proxy-client';
|
|
2
|
+
import { Request } from '@sitecore-cloudsdk/utils';
|
|
3
|
+
import { PersonalizerInput } from './personalizer';
|
|
4
4
|
/**
|
|
5
5
|
* A function that executes an interactive experiment or web experiment over any web-based or mobile application.
|
|
6
6
|
* @param personalizeData - The required/optional attributes in order to create a flow execution
|
|
@@ -9,4 +9,4 @@ import { IPersonalizerInput } from './personalizer';
|
|
|
9
9
|
* Used to abort the request to execute an interactive experiment or web experiment.
|
|
10
10
|
* @returns A flow execution response
|
|
11
11
|
*/
|
|
12
|
-
export declare function personalizeServer<T extends
|
|
12
|
+
export declare function personalizeServer<T extends Request>(personalizeData: PersonalizerInput, request: T, timeout?: number): Promise<unknown | null | FailedCalledFlowsResponse>;
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { FailedCalledFlowsResponse, PersonalizeClient } from './callflow-edge-proxy-client';
|
|
2
|
+
import { NestedObject } from '@sitecore-cloudsdk/utils';
|
|
3
3
|
export declare class Personalizer {
|
|
4
4
|
private personalizeClient;
|
|
5
5
|
private id;
|
|
6
6
|
/**
|
|
7
7
|
* The Personalizer Class runs a flow of interactive experiments.
|
|
8
|
-
* @param personalizeClient - The data to be send to Sitecore
|
|
8
|
+
* @param personalizeClient - The data to be send to Sitecore EP
|
|
9
9
|
* @param infer - The source of methods to estimate language and page parameters
|
|
10
10
|
*/
|
|
11
|
-
constructor(personalizeClient:
|
|
11
|
+
constructor(personalizeClient: PersonalizeClient, id: string);
|
|
12
12
|
/**
|
|
13
|
-
* A function to make a request to the Sitecore
|
|
13
|
+
* A function to make a request to the Sitecore EP /callFlows API endpoint
|
|
14
14
|
* @param timeout - Optional timeout in milliseconds to cancel the request
|
|
15
|
-
* @returns - A promise that resolves with either the Sitecore
|
|
15
|
+
* @returns - A promise that resolves with either the Sitecore EP response object or null
|
|
16
16
|
*/
|
|
17
|
-
getInteractiveExperienceData(personalizeInput:
|
|
17
|
+
getInteractiveExperienceData(personalizeInput: PersonalizerInput, timeout?: number): Promise<unknown | null | FailedCalledFlowsResponse>;
|
|
18
18
|
/**
|
|
19
19
|
* A function that sanitizes the personalize input data
|
|
20
20
|
* @returns - The sanitized object
|
|
21
21
|
*/
|
|
22
22
|
private sanitizeInput;
|
|
23
23
|
/**
|
|
24
|
-
* A function that maps the personalize input data with the
|
|
25
|
-
* @returns - The
|
|
24
|
+
* A function that maps the personalize input data with the EP
|
|
25
|
+
* @returns - The EP object
|
|
26
26
|
*/
|
|
27
|
-
private
|
|
27
|
+
private mapPersonalizeInputToEPData;
|
|
28
28
|
/**
|
|
29
29
|
* A validation method to throw error for the mandatory property for runtime users
|
|
30
30
|
*/
|
|
@@ -33,23 +33,23 @@ export declare class Personalizer {
|
|
|
33
33
|
/**
|
|
34
34
|
* An interface that describes the flow execution model attributes input for the library
|
|
35
35
|
*/
|
|
36
|
-
export interface
|
|
36
|
+
export interface PersonalizerInput {
|
|
37
37
|
channel: string;
|
|
38
38
|
currency: string;
|
|
39
39
|
email?: string;
|
|
40
40
|
friendlyId: string;
|
|
41
|
-
identifier?:
|
|
41
|
+
identifier?: PersonalizeIdentifierInput;
|
|
42
42
|
language?: string;
|
|
43
|
-
params?:
|
|
43
|
+
params?: PersonalizeInputParams;
|
|
44
44
|
}
|
|
45
45
|
/**
|
|
46
46
|
* An interface that describes the identifier model attributes for the library
|
|
47
47
|
*/
|
|
48
|
-
export interface
|
|
48
|
+
export interface PersonalizeIdentifierInput {
|
|
49
49
|
id: string;
|
|
50
50
|
provider: string;
|
|
51
51
|
}
|
|
52
52
|
/**
|
|
53
53
|
* A type that describes the params field
|
|
54
54
|
*/
|
|
55
|
-
export type
|
|
55
|
+
export type PersonalizeInputParams = NestedObject;
|
|
@@ -4,7 +4,7 @@ import { flattenObject } from '@sitecore-cloudsdk/utils';
|
|
|
4
4
|
export class Personalizer {
|
|
5
5
|
/**
|
|
6
6
|
* The Personalizer Class runs a flow of interactive experiments.
|
|
7
|
-
* @param personalizeClient - The data to be send to Sitecore
|
|
7
|
+
* @param personalizeClient - The data to be send to Sitecore EP
|
|
8
8
|
* @param infer - The source of methods to estimate language and page parameters
|
|
9
9
|
*/
|
|
10
10
|
constructor(personalizeClient, id) {
|
|
@@ -12,14 +12,14 @@ export class Personalizer {
|
|
|
12
12
|
this.id = id;
|
|
13
13
|
}
|
|
14
14
|
/**
|
|
15
|
-
* A function to make a request to the Sitecore
|
|
15
|
+
* A function to make a request to the Sitecore EP /callFlows API endpoint
|
|
16
16
|
* @param timeout - Optional timeout in milliseconds to cancel the request
|
|
17
|
-
* @returns - A promise that resolves with either the Sitecore
|
|
17
|
+
* @returns - A promise that resolves with either the Sitecore EP response object or null
|
|
18
18
|
*/
|
|
19
19
|
async getInteractiveExperienceData(personalizeInput, timeout) {
|
|
20
20
|
this.validate(personalizeInput);
|
|
21
21
|
const sanitizedInput = this.sanitizeInput(personalizeInput);
|
|
22
|
-
const mappedData = this.
|
|
22
|
+
const mappedData = this.mapPersonalizeInputToEPData(sanitizedInput);
|
|
23
23
|
if (!mappedData.email && !mappedData.identifiers)
|
|
24
24
|
mappedData.browserId = this.id;
|
|
25
25
|
const response = await this.personalizeClient.sendCallFlowsRequest(mappedData, timeout);
|
|
@@ -47,10 +47,10 @@ export class Personalizer {
|
|
|
47
47
|
return sanitizedInput;
|
|
48
48
|
}
|
|
49
49
|
/**
|
|
50
|
-
* A function that maps the personalize input data with the
|
|
51
|
-
* @returns - The
|
|
50
|
+
* A function that maps the personalize input data with the EP
|
|
51
|
+
* @returns - The EP object
|
|
52
52
|
*/
|
|
53
|
-
|
|
53
|
+
mapPersonalizeInputToEPData(input) {
|
|
54
54
|
const mappedData = {
|
|
55
55
|
channel: input.channel,
|
|
56
56
|
clientKey: '',
|
|
@@ -69,6 +69,6 @@ export class Personalizer {
|
|
|
69
69
|
*/
|
|
70
70
|
validate({ friendlyId }) {
|
|
71
71
|
if (!friendlyId || friendlyId.trim().length === 0)
|
|
72
|
-
throw new Error(`[MV-
|
|
72
|
+
throw new Error(`[MV-0004] "friendlyId" is required.`);
|
|
73
73
|
}
|
|
74
74
|
}
|
package/dist/esm/src/server.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export { initServer as init } from './lib/initializer/server/initializer';
|
|
2
2
|
export { personalizeServer as personalize } from './lib/personalization/personalizeServer';
|
|
3
3
|
export { LIBRARY_VERSION } from './lib/consts';
|
|
4
|
-
export type {
|
|
4
|
+
export type { PersonalizerInput } from './lib/personalization/personalizer';
|
|
@@ -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.dom.d.ts","../../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/typescript/lib/lib.es2020.full.d.ts","../../../core/dist/esm/src/lib/settings/interfaces.d.ts","../../../core/dist/esm/src/lib/cookie/create-cookie.d.ts","../../../utils/dist/esm/src/lib/cookies/interfaces.d.ts","../../../utils/dist/esm/src/lib/cookies/create-cookie-string.d.ts","../../../utils/dist/esm/src/lib/fetch-with-timeout.d.ts","../../../utils/dist/esm/src/lib/cookies/get-cookie-value-client-side.d.ts","../../../utils/dist/esm/src/lib/interfaces.d.ts","../../../utils/dist/esm/src/lib/typeguards/is-next-js-middleware-request.d.ts","../../../utils/dist/esm/src/lib/typeguards/is-next-js-middleware-response.d.ts","../../../utils/dist/esm/src/lib/typeguards/is-http-request.d.ts","../../../utils/dist/esm/src/lib/typeguards/is-http-response.d.ts","../../../utils/dist/esm/src/lib/cookies/get-cookie.d.ts","../../../utils/dist/esm/src/lib/cookies/get-cookie-server-side.d.ts","../../../utils/dist/esm/src/lib/cookies/cookie-exists.d.ts","../../../utils/dist/esm/src/lib/converters/flatten-object.d.ts","../../../utils/dist/esm/src/lib/validators/is-short-iso-date-string.d.ts","../../../utils/dist/esm/src/lib/validators/is-valid-email.d.ts","../../../utils/dist/esm/src/index.d.ts","../../../core/dist/esm/src/lib/cookie/get-browser-id-from-middleware-request.d.ts","../../../core/dist/esm/src/lib/cookie/get-default-cookie-attributes.d.ts","../../../core/dist/esm/src/lib/cookie/handle-http-cookie.d.ts","../../../core/dist/esm/src/lib/cookie/handle-next-js-middleware-cookie.d.ts","../../../core/dist/esm/src/lib/cookie/handle-server-cookie.d.ts","../../../core/dist/esm/src/lib/init/get-browser-id.d.ts","../../../core/dist/esm/src/lib/interfaces.d.ts","../../../core/dist/esm/src/lib/init/fetch-browser-id-from-edge-proxy.d.ts","../../../core/dist/esm/src/lib/init/get-guest-id.d.ts","../../../core/dist/esm/src/lib/settings/create-settings.d.ts","../../../core/dist/esm/src/lib/init/init-core.d.ts","../../../core/dist/esm/src/lib/init/init-core-server.d.ts","../../../core/dist/esm/src/lib/settings/validate-settings.d.ts","../../../core/dist/esm/src/lib/infer/infer.d.ts","../../../core/dist/esm/src/lib/cookie/get-browser-id-from-request.d.ts","../../../core/dist/esm/src/lib/consts.d.ts","../../../core/dist/esm/src/index.d.ts","../../package.json","../../src/lib/consts.ts","../../src/lib/personalization/callflow-edge-proxy-client.ts","../../src/lib/initializer/client/initializer.ts","../../src/lib/personalization/personalizer.ts","../../src/lib/personalization/personalize.ts","../../src/browser.ts","../../src/lib/initializer/server/initializer.ts","../../src/lib/personalization/personalizeServer.ts","../../src/server.ts","../../src/lib/global.d.ts","../../src/lib/utils/appendScriptWithAttributes.ts","../../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../../node_modules/chalk/index.d.ts","../../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../../node_modules/@jest/schemas/build/index.d.ts","../../../../node_modules/jest-diff/node_modules/pretty-format/build/index.d.ts","../../../../node_modules/jest-diff/build/index.d.ts","../../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../../node_modules/expect/build/index.d.ts","../../../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../../../node_modules/@types/jest/index.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/dom-events.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/globals.global.d.ts","../../../../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"322cc0ca9c311414642c0d7ef3b57beedbac198ca074e3e109a4be4c366dcb81","46f1575ca904fe5140444b2032ff23bfd2f00c9dd6873d5631fe838fab742d3a","13034e9ce7dd33731c71a1e9842a60a1afb81c30ff06b1b97942d070a5ab64e4","8a097d689786f46d5f2e6433a49d383b044597073e5e0b1fea48f3efa042cb79","bc93e02cfc0e3019072cf0ec0a57ded2e3f5813870dca04623e5db3e1d2f03e2","4d991768db6e5c49ae62899e3ca696b6ebd2d83865adc5ee387c67ab5906d6f8","70f72bf6ae0d50e11a1771689db30fe9dc7cece2955286423cfa442be5e1263a","800324653fc8a4a83e13eaf657897aa036b1301e08680ccb92f1f25700520283","988259d717cdcad1948c91db5c45a06d03b362bc632104f7f757e87a8a9c0ace","fb892dfd2a188b6d704f8b170e28b4154cedcd9c2d7932ef31a1bf09b99694d4","d8cb56e6c1f33c1f89f50c3d3e7460a2ffa5ead63890efb89c6601bf371400a0","6b911aac7d12ff36549b5106659918afcf836477cca6bc1e9b86253ae8065561","ac8c3a873b20c5f64c0dd1e9e504ae2a7a1e45177e3bcaefdadbf9d5ec1261c8","71be9175dc8a1c1cd6eee99770d6afb634c9f7dee2befff0f4ce9c8ca704522e","134134de823f2c8466a1138fa7f84989df4a3fa189d752144fee6ebc5ee32bd9","1e5c5277a6f3466ddcaa3302779e026d9c981105011e146a6c57d7bf7a76bfdd","2349625342a54f6ce6f4511d96353950cf57fb58e424f3322e797f2d04f1dec4","c13a58be4eba73d3a4944e8d3c7ae3b0ac1dad71ae4dbfc53d4e6ac8ac4fe2c8","bbce5333ed4bfd02bb85eeb4d0624f9f9c3a161aa531e97e1328f97061e6752d","e47e9baf9908c033d818b742a668229f268bc3f6e6d06e6ae5964edf5bc25262","65c158fe69604ebb5035fb027d119369eefa7a9fe1e861d4468e4f50f25abd9d","e2308a3252c57dba7d3ab4e634cc5c29c06ec8701778e53987e736ec563afcbe","514af66144ac166d955da4e4d3392d4ba948bac7874110a77c2f1d32aa9f6415","594d58068c15be3e097d8a6081e1accda8cddd4afdefe54384164d13dd37f903","9826d50920e503c91ce6a4c6397014442176b5df0df4e69268330b07c713c15e","0cc167c9bc9d94d8fa28333d743c8b63d05898cf6a937d1c721483fa880cfb8f","a49459e5d534bbc148196aafefefa776cbf0175fa2ef8def7c58b19d7dfed693","27e7359db3a04f2bb1e01d7c10bddcd50d5b9adcd9fa82d3461f46ff3e1b57e5","bb0922c76f35347d61f80686f62d0215babdb422f0d7ce0b6b8f9cea6492dc23","040753aff179abefbc603307f9016881060bb626aeba2a0f9a4de0cce1406e13","1ffeca4342eda74f4760ccee393322e31dcec48bf08583e06c89f821b5b3e49b","2fac316d606e1972e2947d0cf7c2a437fd21ee72185c09398402357ed61508d3","676b58d76d71a6097229241486f251f4884fa519af63bc9afa502dede8f561d2","261236614035a32bf453f5f7c2ad8efd253d9b0edecd050f69138c2efbc889ba","a061675939d3852e89037b0ab920e93429f96322a2d1bf519bb7c36f6a4a99c3","673fcb9cdf8bac5e9cd6b0f448b2d1f9558effcfedb7364bf9a500b7a09a2039","216f44af042969e2e62abdc1629ce9bfd181f74a3b3b52f473013d860f20ecb8",{"version":"1156924528d7f80cd31bef2f902e0dd6cd055a4db69db995c54955cddc799279","signature":"fde4f04ed0e841614f97369ca06ad25e37c67c938e5b6e8a3f52656cee0cbcdd"},{"version":"0730af77751b86eb722e4b22b77bb5aa9e8bb1260c3f4232800eec1d3ecbfaa3","signature":"0943d158ab0d8c9ae45c9416922da9418e5e9dc9ba4dc41527b4ede9146b2dad"},{"version":"e7d5d2e2112f50ff2fc4e1c8b8283485d8655f3148f4522b5079ef84d90e13d0","signature":"9782cee2de7aed327e6928213407b0f5056b726fe796d2ee96f09a8b3a0acecd"},{"version":"bb1b85e41db7e5edffe1780364429e623eca80556edafd9a9d28f3a7ad90a0ba","signature":"9207d683ad2e7d0854b838aa9a7f1102b787b80edfb99e732c736f66da830f82"},{"version":"b454a53a758e00fed4f75eff384a84d8ecf9ba5601e394546f87ec7f2f00dcdf","signature":"3771e237d8f30bde44fa73fcf03e8b76c98df3b768b47ff8920f96698f73821f"},{"version":"5d4e67dd60bd29aaca8780203c4ff0f94cd8b6fe6dc5b7f110b89bd5d9e1c935","signature":"24db741918546339b1d45ea94d67d8dff03e41c1ed874efefc64c910bc17eadc"},{"version":"4f74d6a69f5f703610a8b15e0f8d92ad7b4ffc1bde5554222f53e190c49bdce0","signature":"1fd329a3a4c651ad27272d770564f9541078423dc572a5958ec1a53323dd1623"},{"version":"9ae5787327f358832f437c66c30bf4d458f31870d7af15816289a4a5d462d344","signature":"318af0ffc18c853e1ea707a6682c94bcfe7a7e2bc61caa77938d5b71d7c2528a"},{"version":"85654bdaef14a7a0784def63e9823529571a92c35b72913054a7b31f7a50a3fa","signature":"19ad23e363a752af170bb7df7bd99c16300fc9f616125cb833cf679b260086cc"},{"version":"7f0c5aa9b4c036b91f95697d8aac231d4ba036c3d4af37f9f31e7d22244b86b8","affectsGlobalScope":true},{"version":"832d5b990f0bc202a360dd3a0a80458f00d981b2fac9c01e7c05f3b9ffbd1721","signature":"e83b3c2de27d1f96d76c0ca268091f1099dd490b43b3fbca682fd02c64341c4e"},"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e",{"version":"9afcfd847523b81d526c73130a247fbb65aa1eba2a1d4195cfacd677a9e4de08","affectsGlobalScope":true},"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"fc811ced095f38ad4438bb94a8d665c63bf4943e58a71ada16627add5ad93226","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","5eb881ed2a0d5b17ea36df5cd4c4be500e460c412f270c3170e906bec65580ac","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"2c45b35f4850881ab132f80d3cb51e8a359a4d8fafdc5ff2401d260dc27862f4","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","09326ae5f7e3d49be5cd9ea00eb814770e71870a438faa2efd8bdd9b4db21320",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"ed2a670a77a1b80653c5bde2d813b0ab2e92872cc9b2b611ce11050b95139be6"],"root":[[84,95]],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../..","strict":true,"target":7},"fileIdsList":[[152],[98,152],[100,103,152],[99,152],[106,152],[109,152],[110,115,143,152],[111,122,123,130,140,151,152],[111,112,122,130,152],[113,152],[114,115,123,131,152],[115,140,148,152],[116,118,122,130,152],[117,152],[118,119,152],[122,152],[120,122,152],[122,123,124,140,151,152],[122,123,124,137,140,143,152],[152,156],[118,125,130,140,151,152],[122,123,125,126,130,140,148,151,152],[125,127,140,148,151,152],[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,158],[122,128,152],[129,151,152],[118,122,130,140,152],[131,152],[132,152],[109,133,152],[134,150,152,156],[135,152],[136,152],[122,137,138,152],[137,139,152,154],[110,122,140,141,142,143,152],[110,140,142,152],[140,141,152],[143,152],[144,152],[122,146,147,152],[146,147,152],[115,130,140,148,152],[149,152],[130,150,152],[110,125,136,151,152],[115,152],[140,152,153],[152,154],[152,155],[110,115,122,124,133,140,151,152,154,156],[140,152,157],[96,102,152],[100,152],[97,101,152],[49,50,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,152],[49,152],[66,152],[49,66,152],[73,152],[85,87,88,89,152],[84,152],[83,152],[83,85,86,152],[66,83,86,87,152],[66,83,85,152],[86,87,88,152],[66,83,86,88,91,152],[66,83,86,152],[85,88,91,92,152],[51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,152],[55,152],[51,152],[85,87,88,89],[83,86],[66,83,87],[66,83],[86,88],[66,86,88],[66,86],[85,88,91,92]],"referencedMap":[[96,1],[99,2],[98,1],[105,3],[104,4],[106,5],[107,5],[109,6],[110,7],[111,8],[112,9],[113,10],[114,11],[115,12],[116,13],[117,14],[118,15],[119,15],[121,16],[120,17],[122,16],[123,18],[124,19],[108,20],[158,1],[125,21],[126,22],[127,23],[159,24],[128,25],[129,26],[130,27],[131,28],[132,29],[133,30],[134,31],[135,32],[136,33],[137,34],[138,34],[139,35],[140,36],[142,37],[141,38],[143,39],[144,40],[145,1],[146,41],[147,42],[148,43],[149,44],[150,45],[151,46],[152,47],[153,48],[154,49],[155,50],[156,51],[157,52],[97,1],[103,53],[101,54],[100,4],[102,55],[46,1],[47,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[48,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1],[45,1],[11,1],[10,1],[83,56],[82,1],[50,57],[67,58],[81,58],[68,58],[69,59],[70,59],[71,58],[80,1],[74,60],[72,1],[75,1],[78,59],[77,57],[73,1],[76,57],[49,1],[79,57],[84,1],[90,61],[85,62],[94,63],[87,64],[91,65],[86,66],[89,67],[92,68],[88,69],[95,1],[93,70],[66,71],[63,72],[62,1],[52,73],[61,1],[54,1],[60,1],[51,1],[53,1],[55,73],[58,72],[59,72],[56,72],[57,72],[64,1],[65,1]],"exportedModulesMap":[[96,1],[99,2],[98,1],[105,3],[104,4],[106,5],[107,5],[109,6],[110,7],[111,8],[112,9],[113,10],[114,11],[115,12],[116,13],[117,14],[118,15],[119,15],[121,16],[120,17],[122,16],[123,18],[124,19],[108,20],[158,1],[125,21],[126,22],[127,23],[159,24],[128,25],[129,26],[130,27],[131,28],[132,29],[133,30],[134,31],[135,32],[136,33],[137,34],[138,34],[139,35],[140,36],[142,37],[141,38],[143,39],[144,40],[145,1],[146,41],[147,42],[148,43],[149,44],[150,45],[151,46],[152,47],[153,48],[154,49],[155,50],[156,51],[157,52],[97,1],[103,53],[101,54],[100,4],[102,55],[46,1],[47,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[48,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1],[45,1],[11,1],[10,1],[83,56],[82,1],[50,57],[67,58],[81,58],[68,58],[69,59],[70,59],[71,58],[80,1],[74,60],[72,1],[75,1],[78,59],[77,57],[73,1],[76,57],[49,1],[79,57],[84,1],[90,74],[94,63],[87,75],[91,76],[86,77],[89,78],[92,79],[88,80],[93,81],[66,71],[63,72],[62,1],[52,73],[61,1],[54,1],[60,1],[51,1],[53,1],[55,73],[58,72],[59,72],[56,72],[57,72],[64,1],[65,1]],"semanticDiagnosticsPerFile":[96,99,98,105,104,106,107,109,110,111,112,113,114,115,116,117,118,119,121,120,122,123,124,108,158,125,126,127,159,128,129,130,131,132,133,134,135,136,137,138,139,140,142,141,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,97,103,101,100,102,46,47,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,48,43,44,39,40,41,42,1,45,11,10,83,82,50,67,81,68,69,70,71,80,74,72,75,78,77,73,76,49,79,84,90,85,94,87,91,86,89,92,88,95,93,66,63,62,52,61,54,60,51,53,55,58,59,56,57,64,65],"latestChangedDtsFile":"./src/lib/utils/appendScriptWithAttributes.d.ts"},"version":"5.1.6"}
|
|
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.dom.d.ts","../../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/typescript/lib/lib.es2020.full.d.ts","../../../core/dist/esm/src/lib/settings/interfaces.d.ts","../../../core/dist/esm/src/lib/cookie/create-cookie.d.ts","../../../utils/dist/esm/src/lib/cookies/interfaces.d.ts","../../../utils/dist/esm/src/lib/cookies/create-cookie-string.d.ts","../../../utils/dist/esm/src/lib/fetch-with-timeout.d.ts","../../../utils/dist/esm/src/lib/cookies/get-cookie-value-client-side.d.ts","../../../utils/dist/esm/src/lib/interfaces.d.ts","../../../utils/dist/esm/src/lib/typeguards/is-next-js-middleware-request.d.ts","../../../utils/dist/esm/src/lib/typeguards/is-next-js-middleware-response.d.ts","../../../utils/dist/esm/src/lib/typeguards/is-http-request.d.ts","../../../utils/dist/esm/src/lib/typeguards/is-http-response.d.ts","../../../utils/dist/esm/src/lib/cookies/get-cookie.d.ts","../../../utils/dist/esm/src/lib/cookies/get-cookie-server-side.d.ts","../../../utils/dist/esm/src/lib/cookies/cookie-exists.d.ts","../../../utils/dist/esm/src/lib/converters/flatten-object.d.ts","../../../utils/dist/esm/src/lib/validators/is-short-iso-date-string.d.ts","../../../utils/dist/esm/src/lib/validators/is-valid-email.d.ts","../../../utils/dist/esm/src/index.d.ts","../../../core/dist/esm/src/lib/cookie/get-browser-id-from-middleware-request.d.ts","../../../core/dist/esm/src/lib/cookie/get-default-cookie-attributes.d.ts","../../../core/dist/esm/src/lib/cookie/handle-http-cookie.d.ts","../../../core/dist/esm/src/lib/cookie/handle-next-js-middleware-cookie.d.ts","../../../core/dist/esm/src/lib/cookie/handle-server-cookie.d.ts","../../../core/dist/esm/src/lib/init/get-browser-id.d.ts","../../../core/dist/esm/src/lib/interfaces.d.ts","../../../core/dist/esm/src/lib/init/fetch-browser-id-from-edge-proxy.d.ts","../../../core/dist/esm/src/lib/init/get-guest-id.d.ts","../../../core/dist/esm/src/lib/settings/create-settings.d.ts","../../../core/dist/esm/src/lib/init/init-core.d.ts","../../../core/dist/esm/src/lib/init/init-core-server.d.ts","../../../core/dist/esm/src/lib/settings/validate-settings.d.ts","../../../core/dist/esm/src/lib/infer/infer.d.ts","../../../core/dist/esm/src/lib/cookie/get-browser-id-from-request.d.ts","../../../core/dist/esm/src/lib/consts.d.ts","../../../core/dist/esm/src/index.d.ts","../../package.json","../../src/lib/consts.ts","../../src/lib/personalization/callflow-edge-proxy-client.ts","../../src/lib/initializer/client/initializer.ts","../../src/lib/personalization/personalizer.ts","../../src/lib/personalization/personalize.ts","../../src/browser.ts","../../src/lib/initializer/server/initializer.ts","../../src/lib/personalization/personalizeServer.ts","../../src/server.ts","../../src/lib/global.d.ts","../../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../../node_modules/chalk/index.d.ts","../../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../../node_modules/@jest/schemas/build/index.d.ts","../../../../node_modules/jest-diff/node_modules/pretty-format/build/index.d.ts","../../../../node_modules/jest-diff/build/index.d.ts","../../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../../node_modules/expect/build/index.d.ts","../../../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../../../node_modules/@types/jest/index.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/dom-events.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/globals.global.d.ts","../../../../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"322cc0ca9c311414642c0d7ef3b57beedbac198ca074e3e109a4be4c366dcb81","0536daa43be5b2bf2fd1774a32d79105a4685482769c463af635bb4d0c746855","e9ac7944f801e64399870514e48160e4dfe6d2a91461d62912905568179152bb","c60f2ef51cc641b725a8a4830a091321cae5670b6c0e755e67c688b48098d533","024c5cac56628fdddf5fac2b6d6cf2807126545a0bbb2b8cbe01e4201fa9b27d","4d991768db6e5c49ae62899e3ca696b6ebd2d83865adc5ee387c67ab5906d6f8","70f72bf6ae0d50e11a1771689db30fe9dc7cece2955286423cfa442be5e1263a","d3d5faf80f2c4e40fd5abd64f3c944e3f9b95e9954ee699faba9f7f454b0ca30","6434c5c23b10df54100ec3d8c8918473fee276747d7171c3dcce495709e5a74c","577fe9aa8b987863c4372d005be888e6d25c8fc6bdcff3a8e77a14f912a3ca97","e5de375229106fb4094e7ac2627b59d4ab3df3bbd5fe1fb06c3555ebde6b3edb","b64c191a67dca89165ccd351ae29598c33169738646c3b8f7ccbc74ca4c031ba","ac8c3a873b20c5f64c0dd1e9e504ae2a7a1e45177e3bcaefdadbf9d5ec1261c8","71be9175dc8a1c1cd6eee99770d6afb634c9f7dee2befff0f4ce9c8ca704522e","134134de823f2c8466a1138fa7f84989df4a3fa189d752144fee6ebc5ee32bd9","80dccc902883b7dd0e373fd1e4bc0705e3b69f3346522d94975cb80f518e7e00","2349625342a54f6ce6f4511d96353950cf57fb58e424f3322e797f2d04f1dec4","c13a58be4eba73d3a4944e8d3c7ae3b0ac1dad71ae4dbfc53d4e6ac8ac4fe2c8","8aeb92f0dd21a754587ebfdf0230a8e51fd530a6213aafca04e7b6e8e2daf7dd","810ec63ebb6ee62de133c3ab206f58e12b73683712e5e671476e26240cd64a8e","c9c29ba209b4c1b4dd25c47227cf04fd353187da4d7c0caea889ae3e1506afc7","c40049897ac2848d0f1db7ac9a72c16f960fe86824691f1dfc8c8d8f1abd26d7","d967d89b323db259946dcaae61d6210066fb72f284afe2420c6274cd3202155a","db284f4353b1db7e644c27c85659de13fd12f9e378075e60aa148d1ec3beb501","9826d50920e503c91ce6a4c6397014442176b5df0df4e69268330b07c713c15e","a45f605b8bb11945f9777cd791c47e4717d3e4ba0d85b352ceaa31546fd6b145","28f3576eba77015d4b60fa685a747d346bb79c1fafbd6dce31890bf99058605c","d7bdf32a9cc8cf7fde056dd2f124245eaacafbbdd6ddb7a7bbefa6f1dff840e1","f5c6e592fc89e6b0a9ec9b98d191a81c6185700ff939de6f50cb8ac7de6da033","e68081e5c6552ffaa00201adc6802d12271fb1efee3cb0423c60dab53e127b34","fde105e55cb111e717b376b38502bc375361061dd6f877696d06e36c7de88ff5","a827b589ba12db1d7028e98be9a7780f82470df00ca4af62bf11dbde2dafce30","676b58d76d71a6097229241486f251f4884fa519af63bc9afa502dede8f561d2","13a096de23d0cba1d243f64ad7040dba5d07bc1bd1375cd1b64e2127482ae10c","a061675939d3852e89037b0ab920e93429f96322a2d1bf519bb7c36f6a4a99c3","f8080d65ef8cf7ada957c5864fb1fe6a20e33bdc3d9449021de858330b27e620","3943e3707bc0c04b075342e6268e1c3831a0ebf881c7ec8f83db22281ce56534",{"version":"1156924528d7f80cd31bef2f902e0dd6cd055a4db69db995c54955cddc799279","signature":"fde4f04ed0e841614f97369ca06ad25e37c67c938e5b6e8a3f52656cee0cbcdd"},{"version":"b670df646f3e79e5a3a246c37012b8915d78b153af9c115d1ebbe0b93ce7a321","signature":"58a210577e949fdb5925e76e0ed7534693aad0652cb5888d307dbf7d6a1feb0a"},{"version":"aa84799bda7c98b11b229a141a33347e18c2da101109e6a7da8f985c8f21f6bb","signature":"ca88954899a8873df8b42c6b286563153f5f4efb8c5030b8528ae2f2f1cddf66"},{"version":"75861f33ced681b3ac9114c114a910405dc33370e7314b270d40b179a8761f83","signature":"3db335be83742a3bb1af172d8d383e9089a3e1ccf66355c82f1dbe66d122902a"},{"version":"16e453f106f93648f341c9ebebd9f88b6d3454387254488ccc020945a1382c00","signature":"e9a35ca3414eebe7749bd4362d4d643ff9465864e658cb8ce0186c1e79a4ff3e"},{"version":"e063a05b1ea12de657ec3a44be83b0d42cefd5b07775819e87e96ec647af679b","signature":"68636106c1b42340d0cd87838419d10d92bb62c1103cbc79acd0e1a8ea1fe30c"},{"version":"d9731484245f62e0af00e2fd35279543cf785e8cedc264fe958b66aec00a749f","signature":"3e9cccb893df520edae4e1b351d0205fffa55b77d766d1dcee1c5c7e80d938c7"},{"version":"6d04bdc7be842f0d8fde977226df5aba3c3b5655e28e0b15e38cacb62eaa58e4","signature":"86517b1ccd52b89939f47324e5675a3c38678629cda184583131551521b46c72"},{"version":"0465cc3ebe426fa647366a891d3fd24fc848bd3ccbda115f8127b639c89b25f8","signature":"16634ccb4935ece983f245edf72d91c04f3d8181ddd2f389e88014b3705ee70e"},{"version":"b32b41b5b507c1fa33d2aa148f8353b773e9ab0df87f18c96d9a7c2d0d784dc6","affectsGlobalScope":true},"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e",{"version":"9afcfd847523b81d526c73130a247fbb65aa1eba2a1d4195cfacd677a9e4de08","affectsGlobalScope":true},"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"fc811ced095f38ad4438bb94a8d665c63bf4943e58a71ada16627add5ad93226","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","5eb881ed2a0d5b17ea36df5cd4c4be500e460c412f270c3170e906bec65580ac","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"2c45b35f4850881ab132f80d3cb51e8a359a4d8fafdc5ff2401d260dc27862f4","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","09326ae5f7e3d49be5cd9ea00eb814770e71870a438faa2efd8bdd9b4db21320",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"ed2a670a77a1b80653c5bde2d813b0ab2e92872cc9b2b611ce11050b95139be6"],"root":[[84,94]],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"module":99,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../..","strict":true,"target":7},"fileIdsList":[[151],[97,151],[99,102,151],[98,151],[105,151],[108,151],[109,114,142,151],[110,121,122,129,139,150,151],[110,111,121,129,151],[112,151],[113,114,122,130,151],[114,139,147,151],[115,117,121,129,151],[116,151],[117,118,151],[121,151],[119,121,151],[121,122,123,139,150,151],[121,122,123,136,139,142,151],[151,155],[117,124,129,139,150,151],[121,122,124,125,129,139,147,150,151],[124,126,139,147,150,151],[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,155,156,157],[121,127,151],[128,150,151],[117,121,129,139,151],[130,151],[131,151],[108,132,151],[133,149,151,155],[134,151],[135,151],[121,136,137,151],[136,138,151,153],[109,121,139,140,141,142,151],[109,139,141,151],[139,140,151],[142,151],[143,151],[121,145,146,151],[145,146,151],[114,129,139,147,151],[148,151],[129,149,151],[109,124,135,150,151],[114,151],[139,151,152],[151,153],[151,154],[109,114,121,123,132,139,150,151,153,155],[139,151,156],[95,101,151],[99,151],[96,100,151],[49,50,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,151],[49,151],[66,151],[49,66,151],[73,151],[85,87,88,89,151],[84,151],[83,85,86,151],[66,83,86,87,151],[66,83,85,151],[86,87,88,151],[66,83,86,88,91,151],[66,83,86,151],[85,88,91,92,151],[51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,151],[55,151],[51,151],[85,87,88,89],[83,86],[66,83,87],[66,83],[86,88],[66,86,88],[66,86],[85,88,91,92]],"referencedMap":[[95,1],[98,2],[97,1],[104,3],[103,4],[105,5],[106,5],[108,6],[109,7],[110,8],[111,9],[112,10],[113,11],[114,12],[115,13],[116,14],[117,15],[118,15],[120,16],[119,17],[121,16],[122,18],[123,19],[107,20],[157,1],[124,21],[125,22],[126,23],[158,24],[127,25],[128,26],[129,27],[130,28],[131,29],[132,30],[133,31],[134,32],[135,33],[136,34],[137,34],[138,35],[139,36],[141,37],[140,38],[142,39],[143,40],[144,1],[145,41],[146,42],[147,43],[148,44],[149,45],[150,46],[151,47],[152,48],[153,49],[154,50],[155,51],[156,52],[96,1],[102,53],[100,54],[99,4],[101,55],[46,1],[47,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[48,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1],[45,1],[11,1],[10,1],[83,56],[82,1],[50,57],[67,58],[81,58],[68,58],[69,59],[70,59],[71,58],[80,1],[74,60],[72,1],[75,1],[78,59],[77,57],[73,1],[76,57],[49,1],[79,57],[84,1],[90,61],[85,62],[94,1],[87,63],[91,64],[86,65],[89,66],[92,67],[88,68],[93,69],[66,70],[63,71],[62,1],[52,72],[61,1],[54,1],[60,1],[51,1],[53,1],[55,72],[58,71],[59,71],[56,71],[57,71],[64,1],[65,1]],"exportedModulesMap":[[95,1],[98,2],[97,1],[104,3],[103,4],[105,5],[106,5],[108,6],[109,7],[110,8],[111,9],[112,10],[113,11],[114,12],[115,13],[116,14],[117,15],[118,15],[120,16],[119,17],[121,16],[122,18],[123,19],[107,20],[157,1],[124,21],[125,22],[126,23],[158,24],[127,25],[128,26],[129,27],[130,28],[131,29],[132,30],[133,31],[134,32],[135,33],[136,34],[137,34],[138,35],[139,36],[141,37],[140,38],[142,39],[143,40],[144,1],[145,41],[146,42],[147,43],[148,44],[149,45],[150,46],[151,47],[152,48],[153,49],[154,50],[155,51],[156,52],[96,1],[102,53],[100,54],[99,4],[101,55],[46,1],[47,1],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[48,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1],[45,1],[11,1],[10,1],[83,56],[82,1],[50,57],[67,58],[81,58],[68,58],[69,59],[70,59],[71,58],[80,1],[74,60],[72,1],[75,1],[78,59],[77,57],[73,1],[76,57],[49,1],[79,57],[84,1],[90,73],[94,1],[87,74],[91,75],[86,76],[89,77],[92,78],[88,79],[93,80],[66,70],[63,71],[62,1],[52,72],[61,1],[54,1],[60,1],[51,1],[53,1],[55,72],[58,71],[59,71],[56,71],[57,71],[64,1],[65,1]],"semanticDiagnosticsPerFile":[95,98,97,104,103,105,106,108,109,110,111,112,113,114,115,116,117,118,120,119,121,122,123,107,157,124,125,126,158,127,128,129,130,131,132,133,134,135,136,137,138,139,141,140,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,96,102,100,99,101,46,47,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,48,43,44,39,40,41,42,1,45,11,10,83,82,50,67,81,68,69,70,71,80,74,72,75,78,77,73,76,49,79,84,90,85,94,87,91,86,89,92,88,93,66,63,62,52,61,54,60,51,53,55,58,59,56,57,64,65],"latestChangedDtsFile":"./src/server.d.ts"},"version":"5.1.6"}
|
package/package.json
CHANGED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// © Sitecore Corporation A/S. All rights reserved. Sitecore® is a registered trademark of Sitecore Corporation A/S.
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.appendScriptWithAttributes = void 0;
|
|
5
|
-
function appendScriptWithAttributes(attributes) {
|
|
6
|
-
const sdkScriptElement = document.createElement('script');
|
|
7
|
-
sdkScriptElement.type = 'text/javascript';
|
|
8
|
-
sdkScriptElement.src = attributes.src;
|
|
9
|
-
sdkScriptElement.async = attributes.async;
|
|
10
|
-
document.head.appendChild(sdkScriptElement);
|
|
11
|
-
}
|
|
12
|
-
exports.appendScriptWithAttributes = appendScriptWithAttributes;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
// © Sitecore Corporation A/S. All rights reserved. Sitecore® is a registered trademark of Sitecore Corporation A/S.
|
|
2
|
-
export function appendScriptWithAttributes(attributes) {
|
|
3
|
-
const sdkScriptElement = document.createElement('script');
|
|
4
|
-
sdkScriptElement.type = 'text/javascript';
|
|
5
|
-
sdkScriptElement.src = attributes.src;
|
|
6
|
-
sdkScriptElement.async = attributes.async;
|
|
7
|
-
document.head.appendChild(sdkScriptElement);
|
|
8
|
-
}
|