@aws-amplify/analytics 7.0.1-console-preview.814dea6.0 → 7.0.1-console-preview.047a1dd.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +1 -1
- package/lib/index.js +4 -3
- package/lib/providers/pinpoint/apis/identifyUser.d.ts +41 -6
- package/lib/providers/pinpoint/apis/identifyUser.js +39 -4
- package/lib/providers/pinpoint/apis/record.d.ts +31 -6
- package/lib/providers/pinpoint/apis/record.js +29 -4
- package/lib/providers/pinpoint/index.d.ts +2 -1
- package/lib/providers/pinpoint/index.js +4 -2
- package/lib/providers/pinpoint/types/index.d.ts +1 -1
- package/lib/providers/pinpoint/types/{parameters.d.ts → inputs.d.ts} +8 -2
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib-esm/index.d.ts +1 -1
- package/lib-esm/index.js +1 -1
- package/lib-esm/providers/pinpoint/apis/identifyUser.d.ts +41 -6
- package/lib-esm/providers/pinpoint/apis/identifyUser.js +39 -4
- package/lib-esm/providers/pinpoint/apis/record.d.ts +31 -6
- package/lib-esm/providers/pinpoint/apis/record.js +29 -4
- package/lib-esm/providers/pinpoint/index.d.ts +2 -1
- package/lib-esm/providers/pinpoint/index.js +1 -1
- package/lib-esm/providers/pinpoint/types/index.d.ts +1 -1
- package/lib-esm/providers/pinpoint/types/{parameters.d.ts → inputs.d.ts} +8 -2
- package/lib-esm/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/src/index.ts +6 -1
- package/src/providers/pinpoint/apis/identifyUser.ts +41 -6
- package/src/providers/pinpoint/apis/record.ts +32 -7
- package/src/providers/pinpoint/index.ts +2 -1
- package/src/providers/pinpoint/types/index.ts +1 -1
- package/src/providers/pinpoint/types/{parameters.ts → inputs.ts} +8 -2
- /package/lib/providers/pinpoint/types/{parameters.js → inputs.js} +0 -0
- /package/lib-esm/providers/pinpoint/types/{parameters.js → inputs.js} +0 -0
package/lib/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { record, identifyUser, RecordInput, IdentifyUserInput, } from './providers/pinpoint';
|
|
2
2
|
export { AnalyticsError } from './errors';
|
package/lib/index.js
CHANGED
|
@@ -2,8 +2,9 @@
|
|
|
2
2
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
3
3
|
// SPDX-License-Identifier: Apache-2.0
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.AnalyticsError = void 0;
|
|
6
|
-
var
|
|
7
|
-
|
|
5
|
+
exports.AnalyticsError = exports.identifyUser = exports.record = void 0;
|
|
6
|
+
var pinpoint_1 = require("./providers/pinpoint");
|
|
7
|
+
Object.defineProperty(exports, "record", { enumerable: true, get: function () { return pinpoint_1.record; } });
|
|
8
|
+
Object.defineProperty(exports, "identifyUser", { enumerable: true, get: function () { return pinpoint_1.identifyUser; } });
|
|
8
9
|
var errors_1 = require("./errors");
|
|
9
10
|
Object.defineProperty(exports, "AnalyticsError", { enumerable: true, get: function () { return errors_1.AnalyticsError; } });
|
|
@@ -1,10 +1,45 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { IdentifyUserInput } from '../types';
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Sends information about a user to Pinpoint. Sending user information allows you to associate a user to their user
|
|
4
|
+
* profile and activities or actions in your application. Activity can be tracked across devices & platforms by using
|
|
5
|
+
* the same `userId`.
|
|
4
6
|
*
|
|
5
|
-
* @param {IdentifyUserParameters} params
|
|
7
|
+
* @param {IdentifyUserParameters} params The input object used to construct requests sent to Pinpoint's UpdateEndpoint
|
|
8
|
+
* API.
|
|
6
9
|
*
|
|
7
|
-
* @throws
|
|
8
|
-
* @throws
|
|
10
|
+
* @throws service: {@link UpdateEndpointException} - Thrown when the underlying Pinpoint service returns an error.
|
|
11
|
+
* @throws validation: {@link AnalyticsValidationErrorCode} - Thrown when the provided parameters or library
|
|
12
|
+
* configuration is incorrect.
|
|
13
|
+
*
|
|
14
|
+
* @returns A promise that will resolve when the operation is complete.
|
|
15
|
+
*
|
|
16
|
+
* @example
|
|
17
|
+
* ```ts
|
|
18
|
+
* // Identify a user with Pinpoint
|
|
19
|
+
* await identifyUser({
|
|
20
|
+
* userId,
|
|
21
|
+
* userProfile: {
|
|
22
|
+
* attributes: {
|
|
23
|
+
* email: [userEmail],
|
|
24
|
+
* },
|
|
25
|
+
* }
|
|
26
|
+
* });
|
|
27
|
+
* ```
|
|
28
|
+
*
|
|
29
|
+
* @example
|
|
30
|
+
* ```ts
|
|
31
|
+
* // Identify a user with Pinpoint with some additional demographics
|
|
32
|
+
* await identifyUser({
|
|
33
|
+
* userId,
|
|
34
|
+
* userProfile: {
|
|
35
|
+
* attributes: {
|
|
36
|
+
* email: [userEmail],
|
|
37
|
+
* },
|
|
38
|
+
* demographic: {
|
|
39
|
+
* platform: 'ios',
|
|
40
|
+
* timezone: 'America/Los_Angeles'
|
|
41
|
+
* }
|
|
42
|
+
* }
|
|
43
|
+
* });
|
|
9
44
|
*/
|
|
10
|
-
export declare const identifyUser: ({ userId, userProfile, }:
|
|
45
|
+
export declare const identifyUser: ({ userId, userProfile, }: IdentifyUserInput) => Promise<void>;
|
|
@@ -9,12 +9,47 @@ var pinpoint_1 = require("@aws-amplify/core/internals/providers/pinpoint");
|
|
|
9
9
|
var userAgent_1 = require("../../../utils/userAgent");
|
|
10
10
|
var utils_2 = require("../utils");
|
|
11
11
|
/**
|
|
12
|
-
*
|
|
12
|
+
* Sends information about a user to Pinpoint. Sending user information allows you to associate a user to their user
|
|
13
|
+
* profile and activities or actions in your application. Activity can be tracked across devices & platforms by using
|
|
14
|
+
* the same `userId`.
|
|
13
15
|
*
|
|
14
|
-
* @param {IdentifyUserParameters} params
|
|
16
|
+
* @param {IdentifyUserParameters} params The input object used to construct requests sent to Pinpoint's UpdateEndpoint
|
|
17
|
+
* API.
|
|
15
18
|
*
|
|
16
|
-
* @throws
|
|
17
|
-
* @throws
|
|
19
|
+
* @throws service: {@link UpdateEndpointException} - Thrown when the underlying Pinpoint service returns an error.
|
|
20
|
+
* @throws validation: {@link AnalyticsValidationErrorCode} - Thrown when the provided parameters or library
|
|
21
|
+
* configuration is incorrect.
|
|
22
|
+
*
|
|
23
|
+
* @returns A promise that will resolve when the operation is complete.
|
|
24
|
+
*
|
|
25
|
+
* @example
|
|
26
|
+
* ```ts
|
|
27
|
+
* // Identify a user with Pinpoint
|
|
28
|
+
* await identifyUser({
|
|
29
|
+
* userId,
|
|
30
|
+
* userProfile: {
|
|
31
|
+
* attributes: {
|
|
32
|
+
* email: [userEmail],
|
|
33
|
+
* },
|
|
34
|
+
* }
|
|
35
|
+
* });
|
|
36
|
+
* ```
|
|
37
|
+
*
|
|
38
|
+
* @example
|
|
39
|
+
* ```ts
|
|
40
|
+
* // Identify a user with Pinpoint with some additional demographics
|
|
41
|
+
* await identifyUser({
|
|
42
|
+
* userId,
|
|
43
|
+
* userProfile: {
|
|
44
|
+
* attributes: {
|
|
45
|
+
* email: [userEmail],
|
|
46
|
+
* },
|
|
47
|
+
* demographic: {
|
|
48
|
+
* platform: 'ios',
|
|
49
|
+
* timezone: 'America/Los_Angeles'
|
|
50
|
+
* }
|
|
51
|
+
* }
|
|
52
|
+
* });
|
|
18
53
|
*/
|
|
19
54
|
var identifyUser = function (_a) {
|
|
20
55
|
var userId = _a.userId, userProfile = _a.userProfile;
|
|
@@ -1,11 +1,36 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { RecordInput } from '../types';
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Records an Analytic event to Pinpoint. Events will be buffered and periodically sent to Pinpoint.
|
|
4
4
|
*
|
|
5
|
-
* @param {
|
|
5
|
+
* @param {RecordInput} params The input object used to construct the request.
|
|
6
6
|
*
|
|
7
|
-
* @throws
|
|
7
|
+
* @throws validation: {@link AnalyticsValidationErrorCode} - Thrown when the provided parameters or library
|
|
8
|
+
* configuration is incorrect.
|
|
8
9
|
*
|
|
9
|
-
* @
|
|
10
|
+
* @example
|
|
11
|
+
* ```ts
|
|
12
|
+
* // Send an event to Pinpoint
|
|
13
|
+
* record({
|
|
14
|
+
* event: {
|
|
15
|
+
* name: eventName,
|
|
16
|
+
* }
|
|
17
|
+
* })
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* @example
|
|
21
|
+
* ```ts
|
|
22
|
+
* // Send an event to Pinpoint with metrics & custom attributes
|
|
23
|
+
* record({
|
|
24
|
+
* event: {
|
|
25
|
+
* name: eventName,
|
|
26
|
+
* attributes: {
|
|
27
|
+
* 'my-attribute': attributeValue
|
|
28
|
+
* },
|
|
29
|
+
* metrics: {
|
|
30
|
+
* 'my-metric': metricValue
|
|
31
|
+
* }
|
|
32
|
+
* }
|
|
33
|
+
* })
|
|
34
|
+
* ```
|
|
10
35
|
*/
|
|
11
|
-
export declare const record: ({ event }:
|
|
36
|
+
export declare const record: ({ event }: RecordInput) => void;
|
|
@@ -10,13 +10,38 @@ var userAgent_1 = require("../../../utils/userAgent");
|
|
|
10
10
|
var utils_2 = require("../utils");
|
|
11
11
|
var logger = new utils_1.ConsoleLogger('Analytics');
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
13
|
+
* Records an Analytic event to Pinpoint. Events will be buffered and periodically sent to Pinpoint.
|
|
14
14
|
*
|
|
15
|
-
* @param {
|
|
15
|
+
* @param {RecordInput} params The input object used to construct the request.
|
|
16
16
|
*
|
|
17
|
-
* @throws
|
|
17
|
+
* @throws validation: {@link AnalyticsValidationErrorCode} - Thrown when the provided parameters or library
|
|
18
|
+
* configuration is incorrect.
|
|
18
19
|
*
|
|
19
|
-
* @
|
|
20
|
+
* @example
|
|
21
|
+
* ```ts
|
|
22
|
+
* // Send an event to Pinpoint
|
|
23
|
+
* record({
|
|
24
|
+
* event: {
|
|
25
|
+
* name: eventName,
|
|
26
|
+
* }
|
|
27
|
+
* })
|
|
28
|
+
* ```
|
|
29
|
+
*
|
|
30
|
+
* @example
|
|
31
|
+
* ```ts
|
|
32
|
+
* // Send an event to Pinpoint with metrics & custom attributes
|
|
33
|
+
* record({
|
|
34
|
+
* event: {
|
|
35
|
+
* name: eventName,
|
|
36
|
+
* attributes: {
|
|
37
|
+
* 'my-attribute': attributeValue
|
|
38
|
+
* },
|
|
39
|
+
* metrics: {
|
|
40
|
+
* 'my-metric': metricValue
|
|
41
|
+
* }
|
|
42
|
+
* }
|
|
43
|
+
* })
|
|
44
|
+
* ```
|
|
20
45
|
*/
|
|
21
46
|
var record = function (_a) {
|
|
22
47
|
var event = _a.event;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { record, identifyUser } from './apis';
|
|
2
|
+
export { RecordInput, IdentifyUserInput } from './types/inputs';
|
|
@@ -2,5 +2,7 @@
|
|
|
2
2
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
3
3
|
// SPDX-License-Identifier: Apache-2.0
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
exports.identifyUser = exports.record = void 0;
|
|
6
|
+
var apis_1 = require("./apis");
|
|
7
|
+
Object.defineProperty(exports, "record", { enumerable: true, get: function () { return apis_1.record; } });
|
|
8
|
+
Object.defineProperty(exports, "identifyUser", { enumerable: true, get: function () { return apis_1.identifyUser; } });
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { UpdateEndpointException } from './errors';
|
|
2
|
-
export {
|
|
2
|
+
export { RecordInput, IdentifyUserInput } from './inputs';
|
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
import { UserProfile } from '@aws-amplify/core';
|
|
2
2
|
import { PinpointAnalyticsEvent } from '@aws-amplify/core/internals/providers/pinpoint';
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
|
+
* Input type for Pinpoint record API.
|
|
5
|
+
*/
|
|
6
|
+
export type RecordInput = {
|
|
4
7
|
/**
|
|
5
8
|
* An event to send to the default Analytics provider.
|
|
6
9
|
*/
|
|
7
10
|
event: PinpointAnalyticsEvent;
|
|
8
11
|
};
|
|
9
|
-
|
|
12
|
+
/**
|
|
13
|
+
* Input type for Pinpoint identifyUser API.
|
|
14
|
+
*/
|
|
15
|
+
export type IdentifyUserInput = {
|
|
10
16
|
/**
|
|
11
17
|
* A User ID associated to the current device.
|
|
12
18
|
*/
|
package/lib/tsconfig.tsbuildinfo
CHANGED
|
@@ -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.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../core/lib-esm/Util/JS.d.ts","../../core/lib-esm/singleton/Auth/types.d.ts","../../core/lib-esm/singleton/Auth/utils/index.d.ts","../../core/lib-esm/singleton/Auth/index.d.ts","../../core/lib-esm/Signer.d.ts","../../core/lib-esm/types/core.d.ts","../../core/lib-esm/types/errors.d.ts","../../core/lib-esm/types/logging.d.ts","../../core/lib-esm/types/storage.d.ts","../../core/lib-esm/types/index.d.ts","../../core/lib-esm/Logger/logger-interface.d.ts","../../core/lib-esm/Logger/ConsoleLogger.d.ts","../../core/lib-esm/Logger/index.d.ts","../../core/lib-esm/ClientDevice/index.d.ts","../../core/lib-esm/Platform/types.d.ts","../../../node_modules/@smithy/types/dist-types/abort.d.ts","../../../node_modules/@smithy/types/dist-types/auth.d.ts","../../../node_modules/@types/events/index.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/base.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","../../../node_modules/@smithy/types/dist-types/crypto.d.ts","../../../node_modules/@smithy/types/dist-types/checksum.d.ts","../../../node_modules/@smithy/types/dist-types/endpoint.d.ts","../../../node_modules/@smithy/types/dist-types/logger.d.ts","../../../node_modules/@smithy/types/dist-types/uri.d.ts","../../../node_modules/@smithy/types/dist-types/http.d.ts","../../../node_modules/@smithy/types/dist-types/response.d.ts","../../../node_modules/@smithy/types/dist-types/util.d.ts","../../../node_modules/@smithy/types/dist-types/middleware.d.ts","../../../node_modules/@smithy/types/dist-types/command.d.ts","../../../node_modules/@smithy/types/dist-types/client.d.ts","../../../node_modules/@smithy/types/dist-types/connection/config.d.ts","../../../node_modules/@smithy/types/dist-types/transfer.d.ts","../../../node_modules/@smithy/types/dist-types/connection/manager.d.ts","../../../node_modules/@smithy/types/dist-types/connection/pool.d.ts","../../../node_modules/@smithy/types/dist-types/connection/index.d.ts","../../../node_modules/@smithy/types/dist-types/eventStream.d.ts","../../../node_modules/@smithy/types/dist-types/encode.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/index.d.ts","../../../node_modules/@smithy/types/dist-types/extensions/checksum.d.ts","../../../node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts","../../../node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts","../../../node_modules/@smithy/types/dist-types/extensions/index.d.ts","../../../node_modules/@smithy/types/dist-types/identity/identity.d.ts","../../../node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts","../../../node_modules/@smithy/types/dist-types/identity/index.d.ts","../../../node_modules/@smithy/types/dist-types/pagination.d.ts","../../../node_modules/@smithy/types/dist-types/profile.d.ts","../../../node_modules/@smithy/types/dist-types/retry.d.ts","../../../node_modules/@smithy/types/dist-types/serde.d.ts","../../../node_modules/@smithy/types/dist-types/shapes.d.ts","../../../node_modules/@smithy/types/dist-types/signature.d.ts","../../../node_modules/@smithy/types/dist-types/stream.d.ts","../../../node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","../../../node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","../../../node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","../../../node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","../../../node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","../../../node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","../../../node_modules/@smithy/types/dist-types/waiter.d.ts","../../../node_modules/@smithy/types/dist-types/index.d.ts","../../../node_modules/@aws-sdk/types/dist-types/abort.d.ts","../../../node_modules/@aws-sdk/types/dist-types/auth.d.ts","../../../node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","../../../node_modules/@aws-sdk/types/dist-types/checksum.d.ts","../../../node_modules/@aws-sdk/types/dist-types/client.d.ts","../../../node_modules/@aws-sdk/types/dist-types/command.d.ts","../../../node_modules/@aws-sdk/types/dist-types/connection.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","../../../node_modules/@aws-sdk/types/dist-types/util.d.ts","../../../node_modules/@aws-sdk/types/dist-types/credentials.d.ts","../../../node_modules/@aws-sdk/types/dist-types/crypto.d.ts","../../../node_modules/@aws-sdk/types/dist-types/dns.d.ts","../../../node_modules/@aws-sdk/types/dist-types/encode.d.ts","../../../node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","../../../node_modules/@aws-sdk/types/dist-types/eventStream.d.ts","../../../node_modules/@aws-sdk/types/dist-types/http.d.ts","../../../node_modules/@aws-sdk/types/dist-types/logger.d.ts","../../../node_modules/@aws-sdk/types/dist-types/middleware.d.ts","../../../node_modules/@aws-sdk/types/dist-types/pagination.d.ts","../../../node_modules/@aws-sdk/types/dist-types/profile.d.ts","../../../node_modules/@aws-sdk/types/dist-types/request.d.ts","../../../node_modules/@aws-sdk/types/dist-types/response.d.ts","../../../node_modules/@aws-sdk/types/dist-types/retry.d.ts","../../../node_modules/@aws-sdk/types/dist-types/serde.d.ts","../../../node_modules/@aws-sdk/types/dist-types/shapes.d.ts","../../../node_modules/@aws-sdk/types/dist-types/signature.d.ts","../../../node_modules/@aws-sdk/types/dist-types/stream.d.ts","../../../node_modules/@aws-sdk/types/dist-types/token.d.ts","../../../node_modules/@aws-sdk/types/dist-types/transfer.d.ts","../../../node_modules/@aws-sdk/types/dist-types/uri.d.ts","../../../node_modules/@aws-sdk/types/dist-types/waiter.d.ts","../../../node_modules/@aws-sdk/types/dist-types/index.d.ts","../../core/lib-esm/Platform/index.d.ts","../../core/lib-esm/ServiceWorker/ServiceWorker.d.ts","../../core/lib-esm/ServiceWorker/index.d.ts","../../core/lib-esm/Util/Retry.d.ts","../../core/lib-esm/Util/Mutex.d.ts","../../../node_modules/zen-observable-ts/lib/types.d.ts","../../../node_modules/zen-observable-ts/lib/zenObservable.d.ts","../../../node_modules/zen-observable-ts/lib/index.d.ts","../../core/lib-esm/Util/Reachability.d.ts","../../core/lib-esm/Util/DateUtils.d.ts","../../core/lib-esm/Util/StringUtils.d.ts","../../core/lib-esm/Util/Constants.d.ts","../../core/lib-esm/Util/BackgroundProcessManager.d.ts","../../core/lib-esm/Util/index.d.ts","../../core/lib-esm/Util/errors/AssertError.d.ts","../../core/lib-esm/Util/Errors.d.ts","../../core/lib-esm/OAuthHelper/GoogleOAuth.d.ts","../../core/lib-esm/OAuthHelper/FacebookOAuth.d.ts","../../core/lib-esm/OAuthHelper/index.d.ts","../../core/lib-esm/RNComponents/index.d.ts","../../core/lib-esm/providers/pinpoint/types/pinpoint.d.ts","../../core/lib-esm/providers/pinpoint/types/index.d.ts","../../core/lib-esm/singleton/Analytics/types.d.ts","../../core/lib-esm/singleton/Storage/types.d.ts","../../core/lib-esm/singleton/types.d.ts","../../core/lib-esm/singleton/Amplify.d.ts","../../core/lib-esm/singleton/apis/internal/fetchAuthSession.d.ts","../../core/lib-esm/Hub/types/AuthTypes.d.ts","../../core/lib-esm/Hub/types/HubTypes.d.ts","../../core/lib-esm/Hub/types/index.d.ts","../../core/lib-esm/Hub/index.d.ts","../../core/lib-esm/libraryUtils.d.ts","../../core/lib-esm/providers/pinpoint/apis/updateEndpoint.d.ts","../../core/lib-esm/providers/pinpoint/apis/record.d.ts","../../core/lib-esm/providers/pinpoint/apis/index.d.ts","../../core/lib-esm/providers/pinpoint/index.d.ts","../src/errors/AnalyticsError.ts","../src/errors/validation.ts","../src/errors/assertValidationError.ts","../src/errors/index.ts","../src/utils/userAgent.ts","../../core/lib-esm/singleton/apis/fetchAuthSession.d.ts","../../core/lib-esm/singleton/apis/clearCredentials.d.ts","../../core/lib-esm/singleton/index.d.ts","../../core/lib-esm/clients/endpoints/getDnsSuffix.d.ts","../../core/lib-esm/clients/endpoints/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/isomorphic-unfetch/index.d.ts","../../core/lib-esm/clients/types/core.d.ts","../../core/lib-esm/clients/types/http.d.ts","../../core/lib-esm/clients/handlers/fetch.d.ts","../../core/lib-esm/clients/middleware/retry/middleware.d.ts","../../core/lib-esm/clients/middleware/retry/jitteredBackoff.d.ts","../../core/lib-esm/clients/types/aws.d.ts","../../core/lib-esm/clients/types/index.d.ts","../../core/lib-esm/clients/middleware/retry/defaultRetryDecider.d.ts","../../core/lib-esm/clients/middleware/retry/index.d.ts","../../core/lib-esm/clients/middleware/userAgent/middleware.d.ts","../../core/lib-esm/clients/middleware/userAgent/index.d.ts","../../core/lib-esm/clients/handlers/unauthenticated.d.ts","../../core/lib-esm/clients/middleware/signing/middleware.d.ts","../../core/lib-esm/clients/middleware/signing/index.d.ts","../../core/lib-esm/clients/handlers/authenticated.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/types/signer.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/signRequest.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/types/index.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/presignUrl.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/constants.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/utils/getHashedPayload.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/index.d.ts","../../core/lib-esm/clients/middleware/signing/utils/extendedEncodeURIComponent.d.ts","../../core/lib-esm/clients/serde/responseInfo.d.ts","../../core/lib-esm/clients/serde/json.d.ts","../../core/lib-esm/clients/serde/index.d.ts","../../core/lib-esm/clients/utils/memoization.d.ts","../../core/lib-esm/clients/index.d.ts","../../core/lib-esm/AwsClients/CognitoIdentity/types.d.ts","../../core/lib-esm/AwsClients/CognitoIdentity/getId.d.ts","../../core/lib-esm/AwsClients/CognitoIdentity/getCredentialsForIdentity.d.ts","../../core/lib-esm/AwsClients/CognitoIdentity/index.d.ts","../../core/lib-esm/StorageHelper/sessionStorage.d.ts","../../core/lib-esm/StorageHelper/localStorage.d.ts","../../core/lib-esm/StorageHelper/inMemoryStorage.d.ts","../../core/lib-esm/StorageHelper/cookieStorage.d.ts","../../core/lib-esm/StorageHelper/index.d.ts","../../core/lib-esm/Cache/types/Cache.d.ts","../../core/lib-esm/Cache/types/index.d.ts","../../core/lib-esm/Cache/StorageCache.d.ts","../../core/lib-esm/Cache/BrowserStorageCache.d.ts","../../core/lib-esm/Cache/InMemoryCache.d.ts","../../core/lib-esm/I18n/types.d.ts","../../core/lib-esm/I18n/index.d.ts","../../core/lib-esm/parseAWSExports.d.ts","../../core/lib-esm/index.d.ts","../src/providers/pinpoint/types/parameters.ts","../src/providers/pinpoint/utils/resolveConfig.ts","../src/providers/pinpoint/utils/resolveCredentials.ts","../src/providers/pinpoint/utils/index.ts","../src/providers/pinpoint/apis/record.ts","../src/providers/pinpoint/types/errors.ts","../src/providers/pinpoint/types/index.ts","../src/providers/pinpoint/apis/identifyUser.ts","../src/providers/pinpoint/apis/index.ts","../src/providers/pinpoint/index.ts","../src/index.ts","../src/setupTests.ts","../src/types/analytics.ts","../src/types/index.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7",{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true},{"version":"9a60b92bca4c1257db03b349d58e63e4868cfc0d1c8d0ba60c2dbc63f4e6c9f6","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","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":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"95f22ce5f9dbcfc757ff850e7326a1ba1bc69806f1e70f48caefa824819d6f4f","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","5a818a0de4bdba13c3f12eb6a56102d822c39c8dc09c7fd23eabb4c024285c2d","84c5807dc645f3585203fe1e62682fc7ffa7ba5a4fef10922d967d1e0555f780","49fda21cc71dd79e0f8863f780510cd0e17463627329f8de3f022534ab5efcd6","e27bcd180eb2e43ea41080b89cf3e9c8d6ad038ff3909213a329b2b131ec220d","a4ec97372c9fbe46f63967913148522b5966b77a1c58516ad4e5b8f168fc9ce1","d168c2128bb332790986a36ea42c110b235043910d27723c74d9b55920860fe0","cdf6c6e9bcd76ee15dffe37b0457d563e1f6809204b839563556cc5d1003bbc1","93435d0cb12c02ea8de08c8d58e1bba2badb01f9c94bcfab450308a3dba84a97","616deecdf9155598632b6ae2375fe80a08077d61d19b335adfa190508b609c10","e4e57c7707a3fcd8f9e05b019f657731c14ee6eac1e1c4b8658e64874b4389ca","31dcc0a044f6ec34e633f24d50a68af9b28fce321ac88f91398ac0d5b95569f5","9339629f426a34250a332e83c468c433a401139eee914790c55d2518320417d9","2a9dd23cd43596eeda1866c1086fbcf2cdb4abf17994bc8a6b9656fe8062b4cb","edf7f975df241cc98c9f4c51aab781f4ecfc884ff6ce03cfd3c59a19a7e729b8","419f10aa9fe307eb5e0b0d410a096d22126c75b36c7a9eb0c17d96c15a5e346f","c55ae709f94155174ff63647edd2a7e3acbd02a2909aa2541569e8b8bac9fc40","dccbb9e0b7e4c3585234775219e1c2d9dc43e717a84c56941bfc7523d4bceca0","400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935","7e49dbf1543b3ee54853ade4c5e9fa460b6a4eca967efe6bf943e0c505d087ed",{"version":"4450cc7b485b116b876cfe3e57d82b76464d6aee1ecefe0bf5ffc03ad9f13cf7","affectsGlobalScope":true},"9f0963be7caec23db8944f66bacb623a7bc7391520125845087241a270e9b3ce","81d8b494be2d4665e017c19095362ca9d8422646c4124d4e40edc48a049e6031","017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","5d514a639cfd3ffd8af8094fc05ea4e8d276946d0069ebff273d6a07ec4f8abd","4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","d12680e217215b37094868d491d00196e80f270ce47e5a4bc50269945ae5554d","396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","5866f85b79bae844211df93770e10e68298d934f2aed751e7a5cdf9ab59f76dc","6300ebd0fcb387c55e37c1b8ab2ab8d47605bb4d9ea8651c63ee76bb832ee024","aee8faa433dde04beedb779b3329456a286a966462d666c138c19113ce78c79e","b7e9c39f7edd1ecd2c3d73b753213a0834144d82ac2a67230c1d291d25430a2e","4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","96812f4fe12e18d14ca12f9af2be3a0ecc4f07859a298dd822aba0bd7cca423d","e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","9ea37c47ee6021afcb56ff4e6a0f0886c2ab112f492a1af519467a3b16f9ab12","219a25474e58a8161b242776856ec5f6960839b63e74809445e51cadbfc18096","c4d3d6a6c3d97bdf3cf6d5ccc78b88fa64dde12503893d07228cda7300304f09","ea62880fdc447b7eafa83e8b00e6e8b0028aef69898a17a1f96dffa12aabd84c","07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","9252778562c2587c88775bf9e8a474a2ac51d562fff90b0ab240b51d0248f16d","a57e2e11a5c279edfa86c59c822e2cbaad9776b9ad90b3936815fec0dcb5d18e","230ead17dc76009af0147a17e3ca1885e3bfa861dfb307b2e353b0ad20bf48f3","d1abdb6b55d9657539f59a08e115f81e3606404cae89bceb8c8db732dfc92a0a","16a6f76f6507cc76012cfd3954136a41a58db595231c2f9bfaf35eca6b25346c","c5f2cdab01270375da7f5c3ae12157d529938533f0145fa0df91735a96cc1a65","53522a2c33f9196ef05e72118a009c6ae717265e5b0eac3ee6bdc8305e8dde2e","9da2c58a27fdce871c2eac09d5172b04248bb86ada9b0d10e8b3dfa8470b8dd3","5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","78bc52637a67f2815407bdf87c857b4af9e43214ef711a091bc9a4a749b73487","5df51db7d128af1aab9e78500f2278a841a61120598a8e3f53ced8a8b06b0174","0b1e4cee9abaf79ef53d736bb4b50a2b0c19733cbaf8bbc6e480d81fb1b91b3f","057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","38aa389acf91d77db5a4f8e26e713ed53dc832ed5573def9cd20acd9ba97c1fe","65f20bda7afd3738c59db566dc94ff98a9e22b87d39bc259351d9e4201ab2595","b9115605f72b65a662723020b2a1eb696c375a5803d6b401dc01fcbfe49ece90","f1afe721e73e468fa292f5fe9ed48955fc6c53ef8b62e9783446b563e0b66fc4","a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","d97766e9af30de9f96c7a5e8d7d6b3e39a269b8bd011083bd3745be7bd532b13","363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","fa2a8e2cc0bde051290d89f15a7b8f4db16d71cf67892be2bf4fca8cc2c3b338","1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","48f1a1b9f15770d9a64b51c596f9569f262fc7e67d7767595068a69539d32939","a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7",{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true},"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","25a6f013a17350c81854e5a62c01aa24841e2219d5d95da5946890d3d8cbdcdf","52470c64ff42d847d24be31b19aff4d39c4a74b2073de6cc7fb95545ef8d87a5","b0e330349eae981f3a980231098a9617358aa39d024c16e23d2300ebdf1bcd92","71282feddaf48e9f4e7b9f4424212fea6ef6d10e077782d19f06c1c10e883b57","04fdd290883caeddaba1daea7785ab6466ed7ee3b1e427da306e83705029bcd4","3f90d3efbeabab0fecf21a642dd0bc3a2fc4e5ce0f95ceb3efcb62ebe6f51e02","b9bd24b171b907a61f153e14a41c8898ea6e106b655329e16b75af2e74153514","5192439c9b51f8092412c50911ffb41a08ad4501f4c6fc46257fda58fdd9d211","8e2dff92f635c8e5438be2a53e3222c4e379e5a2a89811201fb34079b773e0e0","2b3fd32b91b46728c0e51eea7193f08be3494e7b4a53210a800c71839ac16346","5310895182becfe8588f89e9e7aebf9187898ede63d176c97f1c0462c60ae39e","265e6c1ff2cb6ba60eb77a60fa1281a41001c86f07ea636d3fb3c15ef2456b47","f6a54a2736a573dca953e93da8b17fc88920f4025edb5615a556b9eff4107eb7","cd2ca6c6ff07f39fc35ecac63814e20754d923ad1248717a66a8079bcd1fd5ff","b03ea4fde2350f177062b5c1ef2a6966447c4410601b98f28172317cf562ffc9","ed612e03e2e1effa29f252872a9ddeef44f835f5634c0d455b2e32fa5fc78e49","cb1c05f9a414177a5b4ad06287955814090954a300e6f1f8543a976bc7f5e50c","5076e00ee7bfaa654947a247ab06e54da257fca366160c79e4880021e2e56ba2","75b1ef79f5a0d736283f71c1d9debd49f23cdc987762b9ddc8fb85a847a8662d","1df9bca9c7c73e218e77aee7f4aa33f5c3b860f2dc34ba0c5e53fe0d82578c91","b7fd046f8daa7f6494895702cff2f1f2c784bca29f60329cc272db2f3a4b8d2d","35a44d95b0ff9590681e92b12963f671766b3464fab6cd6010b65e3ef2913c4f","4719d02184cf8209c2bb62e01d319f4452260159efdcdb04ceccb80468db87b8","918cf1ba151c31cb372e2366b88a84bbad57953a8e8becbdf5629257a280b665","859de8ddba40d5683a9aaf22536b4103b316cb677b005b0a22d6882bf2c86ffa","905695b2b734538e60a1a862a52b6e8c20f4dbd65b4a1952108a3867bdb85c9c","528cb2f04f620ed0870c15e690c6664744e77e497c941f1443fec22d012264fa","e02f9f6928bd974cc18803419ecc30e12dc39fb3c4383eaa897bf8d868135ef1","6f6df1f586b5edf4d529d07b3535edea07e5cacfd895c81dda133f8359d22e6b","9a23afdd036a23560984aeeec5dbdfc3ddd3e50bd8ca87929fca3d0a13292148","2b57988ad287ad13fd9abceb983fe2e8d16906d0abb910696de8da426e8002a2","2077e93daeb39cd72b5f35797d8f71ecae21760d54f5d3753847f8e8ec0e6441","165ede303ab1fef4735f8370fa2a6335a3805a2810b79ef03f10d5011d9f7cfd","e8d5178d7615abb5145fdc887b01665c1a587e4cf9e27c9aff40c3f89ccb6e18","44dafdc3720da09e2d4d2cc2ffb636b6d3e11320f14c813668faeb0924f56773","84a309e98ab0ebd0ec9f441a12f44bd1ca07ae8180cf71b185d5cdc74a942a9f","dc7192ead27a652fee22e9bb4b32f6ed5c0f98762cd8955b697e258d9f3e4529",{"version":"66d826e2413ce829841754cac2e715eb41cc581a9b3357d99d267267a1491b7b","signature":"3fcb9a6a2cd2d8ae5f8a76f1f5fca7fc8ca51e49a8d6eecbfa6177df77096094"},{"version":"4373fd8f9b51c144d43b2ca56d9a31beda446921428c25e8dee87c39cfe54964","signature":"7c9cc5fe99ec6b741898260aa19c9983757ac0f479476c4f641db48a759c9dd7"},{"version":"c29a80bf3a5140763c19c09219000f1991cd1be5c9198f415fe74d062f9c717c","signature":"8c2430bba9f38c9717ca1aa2d0aefb1c0005b6591e650640e8a08a911095fb28"},{"version":"1c719c619ee01098654db44c182ba8ae6df124076d55f66599a5d9a61c820b6e","signature":"0ea18cafa6cc99063618706dbef248a0213639a8338dbdd80a99a781f9289377"},{"version":"6b35b6c881fb30d059506ff319c5a21020c1568107885b1a111653aae4c034f1","signature":"c9783cd5c2cf8b6658110818c02eef33cc70dafa4c259e0d8e1b4d357d01b665"},"df1a1f23d18a3dac758a03f4f8f6a3d14e83fb78a45431d15e6833fb53ed8055","21fa3aaad5d8cbfa85395e4eae75972ab8333020b001b4585f4b8ec81994e2f5","87e852324ee3c69c24b13c17a0b9f320d8e3d8eb1d49669ad1d7774b45058265","68947051891fb1dde45efbcc0f562b501658b16f5140d2899c6ffd5746c6a2cc","75b8b33bb1945e875e0d09fea6a6de04f0bd6bb1239d3841683a42118c00e7ed","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","626bccaba2f61f03abe558a39501631565389a748bc47dd52b305c80176333c1","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","e75aea34fc8ed19027ad9e082ebe562594a21d14d520289adc416f846a606ca6","622028afad3e12a65acced3c75ae7726bf56d49c199ec3607be2564fca27aac3","45c269aa1f151a3200ec2d58d52c6458d21fd595881d1a1e804406bc3b58e340","206151e8c1ca17a488134c332d9b743113ee03553e0c3bd6e0a4ebae40cf51a7","0a219ea8ec306caaf53a291af13ce0241f36c98dbfe4657728107efeae95ce51","7de5baa4b52a643d2740398148968188c6a254a17aaa46c706c94452fc8c4f86","3bf9341cd7a1fef9ed8187fc46c44f396e942b587b7edfb1a0225e90d333c5bc","3bceaf07826fed56555629106c544892fa77c28d70238703731fbc0c0bd1943a","1d44cf66f6aaadd2f192a95b1af1270142a6d966b5b4641136060d79b40cdfa6","db515f15908f421edac14e77743e2583d1adc5ff005d051d9013b24e575f0aa3","ddf752b71b7c4c1b09c20cabdd2712305c7c7e815d02a720a7c45f465f9f5578","5ded46b22f516dc8f0f8eeb8bd89130f1a0ad9eef8dfdb8f1cd6849be7ebef90","78cc1f01a03c52299c9621e2c82b98b1589f39bd16a6dce0b1edb5cefcd980ed","e5392016ff99b5f6a53fb57816e13fea7482f71f7bf9d7ca493a15013db46e2f","8f15d54abeeef93a0d41ce96f659078b9f3ba3eb7cf193fc00682f2ff780931c","844883b808444065389a74087db9e61b11d9a5f0d6e44d1abe885540c1d0ff11","404bb2400a069a39f90d792aeb656b86b33365053fa90d45992b1eb12740f316","38492c28c947539347d0c4677eeddc9ec13e9eb4fb2eb7d29cbf6b8cf38aaacb","4a09f82cf471f95f2d392dd33a598ada3a0987e9f8efff160883d004ea4f08bc","aada70df37b186d7f870362533ff395098fdae80a5ab19ed9c41dfe1285aa364","a19e34d8a2f1470c3e353e8d366e7d9e835d19dd78a3122114c5fe52e5a79a60","7949d810d38b5358244cd86e80f0d840cad62caac4a4b3a6a75c6dab78ae29a8","e6dfc1705e93a5d648527d304e4cf0463902d442a64566e3262e7ffba4e38af4","ea22dd065a3ee61e8f5fc53b4f2275e809a09a3f58b98bb66f8fc07050100892","ff1eab0e4b697c10256786b2d62f47a88ae33c3cea17864f13e6f7bf4137c810","bc8e1ef35172e1b9c46cb39e262c0c4c5839732e75c3bf8b4c3a10fe8a6dec97","190ce538265abf5fb250db8d335bce7665eab997ce16a218a189c2978a7a8b8a","2e62ed413051bfbf3978d1f3cde446dbc6fbee5e7a425820d4692dd6cc74563d","8b4034aca6f85bd65594e19eaa642b37fa9f4741f9026ca3ab739c84eb61a1be","4e44566ddea6053606d02c098cfa08ab23167a3baf7fce6a752a94b970096245","4483cf5d918b7448d4dd90477ed0be6634021d16b13822839c6af60f162e57a1","ceaabfa94bb14224bf77de1ec2ad98524ca7f8ac8cfe2b38aec2ca416da6c379","3d818456cf9b63583e99c67aebccca8b5ec05675316048507fa5eefb2abd3123","75ae21b2cb6f0f6e7d03c11ffed85d758f68dbe83d8518ddc9ae538e6ab3563d","10216645929c14d30e3008e2dc772bf6c080ea21fe5d2881b1b37d1e16e434d1","fb25f956967f769385af68d8eba44c159455d497df9265ff69aabfb3a0e64d44","e1737067f587d29e62f67a09b8b7c83047c8dfb84fab774840517597c9ae3859","4df8c6e6764013d5995dd89061af8d8da4fd1c4e94fbc535af68e150c0b74930","022c2921df6a3b481e721e5bc4dc4df70656b3e6445bf573e1ad77ee79274fc0","42e2414802c2b01007ec019171a588249931675e29d61e6eb8cfbcb18a9a1e85","456328f2ba6290e9d85d213de29b9ff1495734bca75cc6b214b05751051addff","45fe7896fd6e269bd3a8c1c6713e07701c127076cdb74f183516b9ba5ea3318f","a21e6b4bebe10b7e0ad199954dff9c5b9813e6552585fd5a944a691d5d0250ed","c7525ce0da03c467948253477743c85a19d4d80af168491ac93f171892b05361","5750131d1fc5684bf3d6dd7e22f64526d3ca52d362676e26e85bf0a573b11c56","9c2b50924961e9da2c7ced6ea9b1119ff68297217345c6bfd74dc927beb07a78","ed1d4eff96e533eb16608d9a02b6c7116d1e2b47c6b8426c7f81297c3bfa4919",{"version":"35923d8d2ffcf70b90c231a2c0d37cb0c2150b06ef67899dafaf8401ef1213e0","signature":"04b5ee89d10f745f9402c2aaf0b0172d95fb136d0b49ed5194adb72a4fe569f6"},{"version":"35dc48b51c52e115005e337a7a1c2a469987193dd07bbfe9c5085b8088ce5519","signature":"8d76f3727475c6c147dbaa7a952910a83de7e96c23021d7625cdef98c95c206c"},{"version":"d3021db469a21de072e28eb6fb9be14880eb739f1b1ede857133114dec06988d","signature":"f848a594e5ecbebed6b9e7a2b62c57466dbf0faede2b27e3538a1c7fe2efb2e1"},{"version":"6601832367b2c1359b16db86700174171375fa7d1403c5558910962ce36fa70a","signature":"52cd14ac0718c0e8764474498076290de91f682d7f46cfed4d9d1a5ad37ed70e"},{"version":"f588c14410dd286b4dfe0ced993404e00c5fc7b260bafa702561b346ef7e1f74","signature":"1aa5c5160d8e690d6d1a013ba816fd278ccb44b628e58fd59fcbf833285a51ec"},{"version":"16c1f3b57781817bac8aea5f77b6c611df4b814549a4f0a64e16beca21edd509","signature":"95abdbf021481c53794a3bd150db5574b83338085f78f1d7aa554e1fea26d461"},{"version":"64c7ef8e37c7cd24a7fb2e0001331f051ffdcfe943d0eb0eeff6050351ceda1d","signature":"229c05560c9e9971794b988fe2c1f8035d6fcb3796400983e5e1ac95bf842fec"},{"version":"3c6e4ae962405a7538f72bbf7f74155b8b35834cf54500888e67a2b8d8246927","signature":"fdd9917f9d17a83349b884342cf02a879c71287215e4d4d8d5891edd2ce0bebc"},{"version":"74045c53c7cf31c3149fc966013b53125758e96e9132df334c3896689cb51a88","signature":"9b1ea80ff901ddbe1c03d85de10548cb7ef0e97f2a127dcf2ea7044c4ab8da4a"},{"version":"592156bdfd71343cbcec115de28ed22530dc089940170625f6c19ec07721d8a7","signature":"a209263fc164880adecdb4368ba7961e981ec5ae9db56db8a9c4f5459a11280a"},{"version":"1a698bf48297094297010c4d22538242f87814921ef0787a71db338e0145371e","signature":"1dc3214b3514d4c469c6653eac3ae222de692001cd569d949a8154bafd14a8aa"},{"version":"381fbea4f6d325b2e49ddd1de41f72ae01491de54da566e892ccc5a4c5e80553","signature":"4f1cefa77cb10b31da8b3cea3f509caaabc673c4d9584b4d29199b3e4392db88","affectsGlobalScope":true},{"version":"805f59daec33b5d243890e4f99d1f7f5e6ab96f6db826e84890d7bc83ecffaca","signature":"5353eb8820d99f91dcc2101e0f25aa9a4324e5d5ffeb8552e034fb38034e206f"},{"version":"c931b09271b6bb01b421149ee079577b35b438dab6451fe53ecf2a05f6fb1602","signature":"cc19b5554216f97795e7e269891d351f34dfa82d6ec1a60c47310a8306ca43b8"}],"root":[[179,183],[239,252]],"options":{"declaration":true,"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":1,"noEmitOnError":true,"noImplicitAny":true,"outDir":"./","strict":true,"target":1},"fileIdsList":[[57,58,105],[57,58,118,119],[57,58],[57,58,113],[57,58,113,114,115,116,117],[57,58,106,107,108,109,110,111,112,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141],[57,58,60],[57,58,66,67,68,69],[57,58,66,68],[57,58,71,73,74],[57,58,71,72],[57,58,76],[54,57,58],[57,58,62,78],[57,58,78],[57,58,81],[57,58,78,79,80],[57,58,78,79,80,81,82],[57,58,63],[57,58,65,66,68],[57,58,60,61],[57,58,84],[57,58,84,85,86],[53,57,58,64],[57,58,88],[57,58,88,89],[53,54,57,58,59,60,61,62,63,64,65,66,67,68,69,70,72,75,76,77,83,87,90,91,92,93,94,95,96,97,98,99,100,101,103,104],[54,57,58,62,63,67],[57,58,70],[57,58,65,67,72],[57,58,65,66],[57,58,65,76],[57,58,60,61,67],[57,58,94],[57,58,66,69,100,101],[57,58,65,70,94,102],[57,58,65],[53,57,58],[57,58,189,190],[56,57,58],[57],[57,58,191],[57,58,149],[57,58,148],[37,57,58,174],[37,57,58,179,180],[37,57,58,179,180,181],[37,57,58,182,248],[37,57,58,174,178,182,183,242,245],[37,57,58,243,246],[37,57,58,174,178,182,183,239,242],[37,57,58,247],[37,57,58],[37,57,58,239,244],[37,57,58,178,238],[37,57,58,240,241],[37,57,58,182,238],[37,57,58,251],[37,57,58,142,174],[57,58,220,221],[57,58,222,223],[57,58,142],[57,58,231,232],[57,58,231],[57,58,230],[57,58,172],[57,58,170],[57,58,170,171],[57,58,235],[47,48,57,58],[49,57,58],[47,57,58],[57,58,159,160],[52,57,58,142],[57,58,144],[57,58,225,226,227,228],[44,57,58],[57,58,150],[57,58,146,147,151,152,153,154,155],[57,58,187],[57,58,199,201,203,206],[57,58,192,193,194],[57,58,199,201,203],[57,58,188,195,199,201,203,204,206,207,212,214,215,218,219],[57,58,199],[57,58,196,197,200],[57,58,196],[57,58,193],[57,58,205],[57,58,209,210,211,212,213],[57,58,210],[57,58,199,208],[57,58,208],[57,58,202],[57,58,193,194],[57,58,216,217],[57,58,142,194],[57,58,142,193,194],[57,58,193,194,198],[39,47,57,58,167,172,173,186,224,229,233,234,236,237],[38,39,40,41,42,47,50,51,52,57,58,143,145,154,156,157,158,161,162,169,173],[57,58,167],[57,58,175,176],[57,58,164],[57,58,164,177],[57,58,163],[39,47,57,58],[41,57,58,167],[39,57,58],[39,57,58,168],[57,58,168,184,185],[39,57,58,165,166],[43,44,45,46,57,58],[174],[180],[179,180,181],[182,248],[245],[243,246],[239],[247],[239,244],[178,238],[240,241],[251],[142,174]],"referencedMap":[[106,1],[107,1],[108,1],[109,1],[110,1],[111,1],[112,1],[120,2],[121,1],[122,3],[123,1],[124,1],[125,1],[126,1],[114,4],[115,1],[113,1],[116,4],[117,4],[118,5],[142,6],[127,1],[128,1],[129,1],[130,1],[131,3],[132,1],[133,1],[134,1],[135,1],[136,1],[137,1],[138,2],[139,1],[140,1],[119,1],[141,1],[53,3],[54,3],[59,3],[61,7],[70,8],[69,9],[71,3],[75,10],[73,11],[74,3],[60,3],[77,12],[62,13],[79,14],[80,15],[82,16],[81,17],[83,18],[78,19],[76,20],[84,21],[85,22],[86,22],[87,23],[65,24],[89,25],[88,3],[90,26],[105,27],[63,3],[68,28],[91,29],[92,3],[66,3],[93,3],[94,30],[95,31],[96,32],[97,33],[98,3],[99,3],[100,34],[72,3],[102,35],[103,36],[101,3],[64,37],[67,20],[104,38],[55,3],[190,3],[191,39],[57,40],[58,41],[56,3],[189,3],[192,42],[37,3],[150,43],[148,3],[149,44],[35,3],[36,3],[7,3],[8,3],[10,3],[9,3],[2,3],[11,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[3,3],[4,3],[22,3],[19,3],[20,3],[21,3],[23,3],[24,3],[25,3],[5,3],[26,3],[27,3],[28,3],[29,3],[6,3],[33,3],[30,3],[31,3],[32,3],[34,3],[1,3],[179,45],[181,46],[182,47],[180,45],[249,48],[246,49],[247,50],[243,51],[248,52],[244,53],[245,54],[239,55],[242,56],[240,57],[241,57],[250,3],[251,53],[252,58],[183,59],[223,60],[222,60],[224,61],[221,62],[233,63],[234,63],[232,64],[230,3],[231,65],[51,3],[173,66],[170,3],[171,67],[172,68],[236,69],[235,3],[49,70],[50,71],[48,72],[160,3],[159,3],[161,73],[143,74],[52,3],[162,3],[144,3],[145,75],[42,3],[228,72],[227,72],[229,76],[226,72],[225,72],[155,3],[154,3],[152,3],[158,77],[38,3],[147,3],[151,78],[146,72],[153,3],[157,72],[156,79],[187,3],[188,80],[207,81],[195,82],[204,83],[220,84],[200,85],[201,86],[197,87],[196,88],[206,89],[205,85],[212,3],[214,90],[211,91],[209,92],[210,93],[208,85],[213,85],[215,3],[203,94],[202,95],[218,96],[217,85],[216,97],[198,98],[193,3],[194,88],[199,99],[219,3],[238,100],[174,101],[237,102],[177,103],[176,104],[175,104],[178,105],[164,106],[163,107],[168,108],[165,104],[41,109],[39,3],[40,109],[166,3],[185,3],[184,109],[169,110],[186,111],[167,112],[43,3],[44,3],[47,113],[45,3],[46,3]],"exportedModulesMap":[[106,1],[107,1],[108,1],[109,1],[110,1],[111,1],[112,1],[120,2],[121,1],[122,3],[123,1],[124,1],[125,1],[126,1],[114,4],[115,1],[113,1],[116,4],[117,4],[118,5],[142,6],[127,1],[128,1],[129,1],[130,1],[131,3],[132,1],[133,1],[134,1],[135,1],[136,1],[137,1],[138,2],[139,1],[140,1],[119,1],[141,1],[53,3],[54,3],[59,3],[61,7],[70,8],[69,9],[71,3],[75,10],[73,11],[74,3],[60,3],[77,12],[62,13],[79,14],[80,15],[82,16],[81,17],[83,18],[78,19],[76,20],[84,21],[85,22],[86,22],[87,23],[65,24],[89,25],[88,3],[90,26],[105,27],[63,3],[68,28],[91,29],[92,3],[66,3],[93,3],[94,30],[95,31],[96,32],[97,33],[98,3],[99,3],[100,34],[72,3],[102,35],[103,36],[101,3],[64,37],[67,20],[104,38],[55,3],[190,3],[191,39],[57,40],[58,41],[56,3],[189,3],[192,42],[37,3],[150,43],[148,3],[149,44],[35,3],[36,3],[7,3],[8,3],[10,3],[9,3],[2,3],[11,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[3,3],[4,3],[22,3],[19,3],[20,3],[21,3],[23,3],[24,3],[25,3],[5,3],[26,3],[27,3],[28,3],[29,3],[6,3],[33,3],[30,3],[31,3],[32,3],[34,3],[1,3],[179,114],[181,115],[182,116],[180,114],[249,117],[246,118],[247,119],[243,120],[248,121],[245,122],[239,123],[242,124],[252,125],[183,126],[223,60],[222,60],[224,61],[221,62],[233,63],[234,63],[232,64],[230,3],[231,65],[51,3],[173,66],[170,3],[171,67],[172,68],[236,69],[235,3],[49,70],[50,71],[48,72],[160,3],[159,3],[161,73],[143,74],[52,3],[162,3],[144,3],[145,75],[42,3],[228,72],[227,72],[229,76],[226,72],[225,72],[155,3],[154,3],[152,3],[158,77],[38,3],[147,3],[151,78],[146,72],[153,3],[157,72],[156,79],[187,3],[188,80],[207,81],[195,82],[204,83],[220,84],[200,85],[201,86],[197,87],[196,88],[206,89],[205,85],[212,3],[214,90],[211,91],[209,92],[210,93],[208,85],[213,85],[215,3],[203,94],[202,95],[218,96],[217,85],[216,97],[198,98],[193,3],[194,88],[199,99],[219,3],[238,100],[174,101],[237,102],[177,103],[176,104],[175,104],[178,105],[164,106],[163,107],[168,108],[165,104],[41,109],[39,3],[40,109],[166,3],[185,3],[184,109],[169,110],[186,111],[167,112],[43,3],[44,3],[47,113],[45,3],[46,3]],"semanticDiagnosticsPerFile":[106,107,108,109,110,111,112,120,121,122,123,124,125,126,114,115,113,116,117,118,142,127,128,129,130,131,132,133,134,135,136,137,138,139,140,119,141,53,54,59,61,70,69,71,75,73,74,60,77,62,79,80,82,81,83,78,76,84,85,86,87,65,89,88,90,105,63,68,91,92,66,93,94,95,96,97,98,99,100,72,102,103,101,64,67,104,55,190,191,57,58,56,189,192,37,150,148,149,35,36,7,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,1,179,181,182,180,249,246,247,243,248,244,245,239,242,240,241,250,251,252,183,223,222,224,221,233,234,232,230,231,51,173,170,171,172,236,235,49,50,48,160,159,161,143,52,162,144,145,42,228,227,229,226,225,155,154,152,158,38,147,151,146,153,157,156,187,188,207,195,204,220,200,201,197,196,206,205,212,214,211,209,210,208,213,215,203,202,218,217,216,198,193,194,199,219,238,174,237,177,176,175,178,164,163,168,165,41,39,40,166,185,184,169,186,167,43,44,47,45,46]},"version":"5.0.2"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../core/lib-esm/Util/JS.d.ts","../../core/lib-esm/singleton/API/types.d.ts","../../core/lib-esm/singleton/Auth/types.d.ts","../../core/lib-esm/types/core.d.ts","../../core/lib-esm/types/errors.d.ts","../../core/lib-esm/types/logging.d.ts","../../core/lib-esm/types/storage.d.ts","../../core/lib-esm/types/index.d.ts","../../core/lib-esm/providers/pinpoint/types/pinpoint.d.ts","../../core/lib-esm/providers/pinpoint/types/index.d.ts","../../core/lib-esm/singleton/Analytics/types.d.ts","../../core/lib-esm/singleton/Storage/types.d.ts","../../core/lib-esm/singleton/types.d.ts","../../core/lib-esm/parseAWSExports.d.ts","../../core/lib-esm/singleton/Auth/utils/index.d.ts","../../core/lib-esm/singleton/Auth/index.d.ts","../../core/lib-esm/Signer.d.ts","../../core/lib-esm/Logger/logger-interface.d.ts","../../core/lib-esm/Logger/ConsoleLogger.d.ts","../../core/lib-esm/Logger/index.d.ts","../../core/lib-esm/ClientDevice/index.d.ts","../../core/lib-esm/Platform/types.d.ts","../../../node_modules/@smithy/types/dist-types/abort.d.ts","../../../node_modules/@smithy/types/dist-types/auth.d.ts","../../../node_modules/@types/events/index.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/base.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","../../../node_modules/@smithy/types/dist-types/crypto.d.ts","../../../node_modules/@smithy/types/dist-types/checksum.d.ts","../../../node_modules/@smithy/types/dist-types/endpoint.d.ts","../../../node_modules/@smithy/types/dist-types/logger.d.ts","../../../node_modules/@smithy/types/dist-types/uri.d.ts","../../../node_modules/@smithy/types/dist-types/http.d.ts","../../../node_modules/@smithy/types/dist-types/response.d.ts","../../../node_modules/@smithy/types/dist-types/util.d.ts","../../../node_modules/@smithy/types/dist-types/middleware.d.ts","../../../node_modules/@smithy/types/dist-types/command.d.ts","../../../node_modules/@smithy/types/dist-types/client.d.ts","../../../node_modules/@smithy/types/dist-types/connection/config.d.ts","../../../node_modules/@smithy/types/dist-types/transfer.d.ts","../../../node_modules/@smithy/types/dist-types/connection/manager.d.ts","../../../node_modules/@smithy/types/dist-types/connection/pool.d.ts","../../../node_modules/@smithy/types/dist-types/connection/index.d.ts","../../../node_modules/@smithy/types/dist-types/eventStream.d.ts","../../../node_modules/@smithy/types/dist-types/encode.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/index.d.ts","../../../node_modules/@smithy/types/dist-types/identity/identity.d.ts","../../../node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts","../../../node_modules/@smithy/types/dist-types/identity/index.d.ts","../../../node_modules/@smithy/types/dist-types/pagination.d.ts","../../../node_modules/@smithy/types/dist-types/profile.d.ts","../../../node_modules/@smithy/types/dist-types/retry.d.ts","../../../node_modules/@smithy/types/dist-types/serde.d.ts","../../../node_modules/@smithy/types/dist-types/shapes.d.ts","../../../node_modules/@smithy/types/dist-types/signature.d.ts","../../../node_modules/@smithy/types/dist-types/stream.d.ts","../../../node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","../../../node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","../../../node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","../../../node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","../../../node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","../../../node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","../../../node_modules/@smithy/types/dist-types/waiter.d.ts","../../../node_modules/@smithy/types/dist-types/index.d.ts","../../../node_modules/@aws-sdk/types/dist-types/abort.d.ts","../../../node_modules/@aws-sdk/types/dist-types/auth.d.ts","../../../node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","../../../node_modules/@aws-sdk/types/dist-types/checksum.d.ts","../../../node_modules/@aws-sdk/types/dist-types/client.d.ts","../../../node_modules/@aws-sdk/types/dist-types/command.d.ts","../../../node_modules/@aws-sdk/types/dist-types/connection.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","../../../node_modules/@aws-sdk/types/dist-types/util.d.ts","../../../node_modules/@aws-sdk/types/dist-types/credentials.d.ts","../../../node_modules/@aws-sdk/types/dist-types/crypto.d.ts","../../../node_modules/@aws-sdk/types/dist-types/dns.d.ts","../../../node_modules/@aws-sdk/types/dist-types/encode.d.ts","../../../node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","../../../node_modules/@aws-sdk/types/dist-types/eventStream.d.ts","../../../node_modules/@aws-sdk/types/dist-types/http.d.ts","../../../node_modules/@aws-sdk/types/dist-types/logger.d.ts","../../../node_modules/@aws-sdk/types/dist-types/middleware.d.ts","../../../node_modules/@aws-sdk/types/dist-types/pagination.d.ts","../../../node_modules/@aws-sdk/types/dist-types/profile.d.ts","../../../node_modules/@aws-sdk/types/dist-types/request.d.ts","../../../node_modules/@aws-sdk/types/dist-types/response.d.ts","../../../node_modules/@aws-sdk/types/dist-types/retry.d.ts","../../../node_modules/@aws-sdk/types/dist-types/serde.d.ts","../../../node_modules/@aws-sdk/types/dist-types/shapes.d.ts","../../../node_modules/@aws-sdk/types/dist-types/signature.d.ts","../../../node_modules/@aws-sdk/types/dist-types/stream.d.ts","../../../node_modules/@aws-sdk/types/dist-types/token.d.ts","../../../node_modules/@aws-sdk/types/dist-types/transfer.d.ts","../../../node_modules/@aws-sdk/types/dist-types/uri.d.ts","../../../node_modules/@aws-sdk/types/dist-types/waiter.d.ts","../../../node_modules/@aws-sdk/types/dist-types/index.d.ts","../../core/lib-esm/Platform/index.d.ts","../../core/lib-esm/ServiceWorker/ServiceWorker.d.ts","../../core/lib-esm/ServiceWorker/index.d.ts","../../core/lib-esm/Util/Retry.d.ts","../../core/lib-esm/Util/Mutex.d.ts","../../../node_modules/zen-observable-ts/lib/types.d.ts","../../../node_modules/zen-observable-ts/lib/zenObservable.d.ts","../../../node_modules/zen-observable-ts/lib/index.d.ts","../../core/lib-esm/Util/Reachability.d.ts","../../core/lib-esm/Util/DateUtils.d.ts","../../core/lib-esm/Util/StringUtils.d.ts","../../core/lib-esm/Util/Constants.d.ts","../../core/lib-esm/Util/BackgroundProcessManager.d.ts","../../core/lib-esm/Util/index.d.ts","../../core/lib-esm/Util/errors/AssertError.d.ts","../../core/lib-esm/Util/Errors.d.ts","../../core/lib-esm/singleton/Amplify.d.ts","../../core/lib-esm/singleton/apis/internal/fetchAuthSession.d.ts","../../core/lib-esm/Hub/types/AuthTypes.d.ts","../../core/lib-esm/Hub/types/HubTypes.d.ts","../../core/lib-esm/Hub/types/index.d.ts","../../core/lib-esm/Hub/index.d.ts","../../core/lib-esm/libraryUtils.d.ts","../../core/lib-esm/providers/pinpoint/apis/updateEndpoint.d.ts","../../core/lib-esm/providers/pinpoint/apis/record.d.ts","../../core/lib-esm/providers/pinpoint/apis/index.d.ts","../../core/lib-esm/providers/pinpoint/index.d.ts","../src/errors/AnalyticsError.ts","../src/errors/validation.ts","../src/errors/assertValidationError.ts","../src/errors/index.ts","../src/utils/userAgent.ts","../src/providers/pinpoint/types/errors.ts","../../core/lib-esm/singleton/apis/fetchAuthSession.d.ts","../../core/lib-esm/singleton/apis/clearCredentials.d.ts","../../core/lib-esm/singleton/index.d.ts","../../core/lib-esm/clients/endpoints/getDnsSuffix.d.ts","../../core/lib-esm/clients/endpoints/index.d.ts","../../core/lib-esm/clients/types/core.d.ts","../../core/lib-esm/clients/types/http.d.ts","../../core/lib-esm/clients/handlers/fetch.d.ts","../../core/lib-esm/clients/middleware/retry/middleware.d.ts","../../core/lib-esm/clients/middleware/retry/jitteredBackoff.d.ts","../../core/lib-esm/clients/types/aws.d.ts","../../core/lib-esm/clients/types/index.d.ts","../../core/lib-esm/clients/middleware/retry/defaultRetryDecider.d.ts","../../core/lib-esm/clients/middleware/retry/index.d.ts","../../core/lib-esm/clients/middleware/userAgent/middleware.d.ts","../../core/lib-esm/clients/middleware/userAgent/index.d.ts","../../core/lib-esm/clients/handlers/unauthenticated.d.ts","../../core/lib-esm/clients/middleware/signing/middleware.d.ts","../../core/lib-esm/clients/middleware/signing/index.d.ts","../../core/lib-esm/clients/handlers/authenticated.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/types/signer.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/signRequest.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/types/index.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/presignUrl.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/constants.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/utils/getHashedPayload.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/index.d.ts","../../core/lib-esm/clients/middleware/signing/utils/extendedEncodeURIComponent.d.ts","../../core/lib-esm/clients/serde/responseInfo.d.ts","../../core/lib-esm/clients/serde/json.d.ts","../../core/lib-esm/clients/serde/index.d.ts","../../core/lib-esm/clients/utils/memoization.d.ts","../../core/lib-esm/clients/index.d.ts","../../core/lib-esm/AwsClients/CognitoIdentity/types.d.ts","../../core/lib-esm/AwsClients/CognitoIdentity/getId.d.ts","../../core/lib-esm/AwsClients/CognitoIdentity/getCredentialsForIdentity.d.ts","../../core/lib-esm/AwsClients/CognitoIdentity/index.d.ts","../../core/lib-esm/storage/KeyValueStorage.d.ts","../../core/lib-esm/storage/DefaultStorage.d.ts","../../core/lib-esm/storage/SessionStorage.d.ts","../../core/lib-esm/storage/CookieStorage.d.ts","../../core/lib-esm/storage/index.d.ts","../../core/lib-esm/Cache/types/Cache.d.ts","../../core/lib-esm/Cache/types/index.d.ts","../../core/lib-esm/Cache/StorageCache.d.ts","../../core/lib-esm/Cache/BrowserStorageCache.d.ts","../../core/lib-esm/Cache/InMemoryCache.d.ts","../../core/lib-esm/I18n/types.d.ts","../../core/lib-esm/I18n/index.d.ts","../../core/lib-esm/index.d.ts","../src/providers/pinpoint/types/inputs.ts","../src/providers/pinpoint/types/index.ts","../src/providers/pinpoint/utils/resolveConfig.ts","../src/providers/pinpoint/utils/resolveCredentials.ts","../src/providers/pinpoint/utils/index.ts","../src/providers/pinpoint/apis/record.ts","../src/providers/pinpoint/apis/identifyUser.ts","../src/providers/pinpoint/apis/index.ts","../src/providers/pinpoint/index.ts","../src/index.ts","../src/setupTests.ts","../src/types/analytics.ts","../src/types/index.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7",{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true},{"version":"9a60b92bca4c1257db03b349d58e63e4868cfc0d1c8d0ba60c2dbc63f4e6c9f6","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","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":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"95f22ce5f9dbcfc757ff850e7326a1ba1bc69806f1e70f48caefa824819d6f4f","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","b07b765c7407b972ab62b6edc374e6295ea233cd54892bb5432e0c0022b41a95","ce372e42ef5430cccae0248ecb29a03f973ec6dc39894270fd94947ab7358b5d","84c5807dc645f3585203fe1e62682fc7ffa7ba5a4fef10922d967d1e0555f780","d168c2128bb332790986a36ea42c110b235043910d27723c74d9b55920860fe0","cdf6c6e9bcd76ee15dffe37b0457d563e1f6809204b839563556cc5d1003bbc1","93435d0cb12c02ea8de08c8d58e1bba2badb01f9c94bcfab450308a3dba84a97","62fb62d6e03c94e6269a4f1a64077f97ac65265af075f3554708616f86968b9c","e4e57c7707a3fcd8f9e05b019f657731c14ee6eac1e1c4b8658e64874b4389ca","ca78a077f1eca40fefd5486dda297b19a1de1c01b8b36f243da8ba98e3976840","4719d02184cf8209c2bb62e01d319f4452260159efdcdb04ceccb80468db87b8","918cf1ba151c31cb372e2366b88a84bbad57953a8e8becbdf5629257a280b665","9b1f66012e58888f1bd2f5b8b749784d7d592ad7d5ac48972511e2e942161e96","7329a213f0ce82933ad95f8fb487aec4d93c6323213b1cdb3d1d9fbe3bdc2da8","9c2b50924961e9da2c7ced6ea9b1119ff68297217345c6bfd74dc927beb07a78","49fda21cc71dd79e0f8863f780510cd0e17463627329f8de3f022534ab5efcd6","702d32653e4f248e6abac940c03a9f1ab1cf87bbde61493e1a491648cc7f73bf","a4ec97372c9fbe46f63967913148522b5966b77a1c58516ad4e5b8f168fc9ce1","31dcc0a044f6ec34e633f24d50a68af9b28fce321ac88f91398ac0d5b95569f5","9339629f426a34250a332e83c468c433a401139eee914790c55d2518320417d9","2a9dd23cd43596eeda1866c1086fbcf2cdb4abf17994bc8a6b9656fe8062b4cb","edf7f975df241cc98c9f4c51aab781f4ecfc884ff6ce03cfd3c59a19a7e729b8","419f10aa9fe307eb5e0b0d410a096d22126c75b36c7a9eb0c17d96c15a5e346f","c55ae709f94155174ff63647edd2a7e3acbd02a2909aa2541569e8b8bac9fc40","dccbb9e0b7e4c3585234775219e1c2d9dc43e717a84c56941bfc7523d4bceca0","400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935","7e49dbf1543b3ee54853ade4c5e9fa460b6a4eca967efe6bf943e0c505d087ed",{"version":"4450cc7b485b116b876cfe3e57d82b76464d6aee1ecefe0bf5ffc03ad9f13cf7","affectsGlobalScope":true},"9f0963be7caec23db8944f66bacb623a7bc7391520125845087241a270e9b3ce","81d8b494be2d4665e017c19095362ca9d8422646c4124d4e40edc48a049e6031","017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","5d514a639cfd3ffd8af8094fc05ea4e8d276946d0069ebff273d6a07ec4f8abd","4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","d12680e217215b37094868d491d00196e80f270ce47e5a4bc50269945ae5554d","396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","5866f85b79bae844211df93770e10e68298d934f2aed751e7a5cdf9ab59f76dc","6300ebd0fcb387c55e37c1b8ab2ab8d47605bb4d9ea8651c63ee76bb832ee024","aee8faa433dde04beedb779b3329456a286a966462d666c138c19113ce78c79e","b7e9c39f7edd1ecd2c3d73b753213a0834144d82ac2a67230c1d291d25430a2e","4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","96812f4fe12e18d14ca12f9af2be3a0ecc4f07859a298dd822aba0bd7cca423d","e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","9252778562c2587c88775bf9e8a474a2ac51d562fff90b0ab240b51d0248f16d","a57e2e11a5c279edfa86c59c822e2cbaad9776b9ad90b3936815fec0dcb5d18e","230ead17dc76009af0147a17e3ca1885e3bfa861dfb307b2e353b0ad20bf48f3","d1abdb6b55d9657539f59a08e115f81e3606404cae89bceb8c8db732dfc92a0a","16a6f76f6507cc76012cfd3954136a41a58db595231c2f9bfaf35eca6b25346c","c5f2cdab01270375da7f5c3ae12157d529938533f0145fa0df91735a96cc1a65","53522a2c33f9196ef05e72118a009c6ae717265e5b0eac3ee6bdc8305e8dde2e","9da2c58a27fdce871c2eac09d5172b04248bb86ada9b0d10e8b3dfa8470b8dd3","5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","78bc52637a67f2815407bdf87c857b4af9e43214ef711a091bc9a4a749b73487","5df51db7d128af1aab9e78500f2278a841a61120598a8e3f53ced8a8b06b0174","0b1e4cee9abaf79ef53d736bb4b50a2b0c19733cbaf8bbc6e480d81fb1b91b3f","057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","38aa389acf91d77db5a4f8e26e713ed53dc832ed5573def9cd20acd9ba97c1fe","65f20bda7afd3738c59db566dc94ff98a9e22b87d39bc259351d9e4201ab2595","b9115605f72b65a662723020b2a1eb696c375a5803d6b401dc01fcbfe49ece90","bc72d80dbeca9f95dbb8f851438233824778a90f458f75666706d26634822cd9","a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","d97766e9af30de9f96c7a5e8d7d6b3e39a269b8bd011083bd3745be7bd532b13","363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","fa2a8e2cc0bde051290d89f15a7b8f4db16d71cf67892be2bf4fca8cc2c3b338","1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","48f1a1b9f15770d9a64b51c596f9569f262fc7e67d7767595068a69539d32939","a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7",{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true},"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","25a6f013a17350c81854e5a62c01aa24841e2219d5d95da5946890d3d8cbdcdf","52470c64ff42d847d24be31b19aff4d39c4a74b2073de6cc7fb95545ef8d87a5","b0e330349eae981f3a980231098a9617358aa39d024c16e23d2300ebdf1bcd92","71282feddaf48e9f4e7b9f4424212fea6ef6d10e077782d19f06c1c10e883b57","04fdd290883caeddaba1daea7785ab6466ed7ee3b1e427da306e83705029bcd4","3f90d3efbeabab0fecf21a642dd0bc3a2fc4e5ce0f95ceb3efcb62ebe6f51e02","b9bd24b171b907a61f153e14a41c8898ea6e106b655329e16b75af2e74153514","5192439c9b51f8092412c50911ffb41a08ad4501f4c6fc46257fda58fdd9d211","8e2dff92f635c8e5438be2a53e3222c4e379e5a2a89811201fb34079b773e0e0","2b3fd32b91b46728c0e51eea7193f08be3494e7b4a53210a800c71839ac16346","5310895182becfe8588f89e9e7aebf9187898ede63d176c97f1c0462c60ae39e","265e6c1ff2cb6ba60eb77a60fa1281a41001c86f07ea636d3fb3c15ef2456b47","f6a54a2736a573dca953e93da8b17fc88920f4025edb5615a556b9eff4107eb7","cd2ca6c6ff07f39fc35ecac63814e20754d923ad1248717a66a8079bcd1fd5ff","b03ea4fde2350f177062b5c1ef2a6966447c4410601b98f28172317cf562ffc9","ed612e03e2e1effa29f252872a9ddeef44f835f5634c0d455b2e32fa5fc78e49","cb1c05f9a414177a5b4ad06287955814090954a300e6f1f8543a976bc7f5e50c","2ff57bdf0a0ce1bdffb532e5ef5d55411a1cd11254cd66dfd753041eb68d353b","e02f9f6928bd974cc18803419ecc30e12dc39fb3c4383eaa897bf8d868135ef1","6f6df1f586b5edf4d529d07b3535edea07e5cacfd895c81dda133f8359d22e6b","9a23afdd036a23560984aeeec5dbdfc3ddd3e50bd8ca87929fca3d0a13292148","2b57988ad287ad13fd9abceb983fe2e8d16906d0abb910696de8da426e8002a2","2077e93daeb39cd72b5f35797d8f71ecae21760d54f5d3753847f8e8ec0e6441","3e79c2c69bed15b0f4fbc0043b9d5e751a98d4961e8c532551863d799c377ada","8a92805c917ba796c3e41272566404af479e493f56633c36f7573293209afdc8","37537c88fea9f12e2e6b26c0a7950bb1a6d7e59797ca99f1f04f8cca7ee6931b","84a309e98ab0ebd0ec9f441a12f44bd1ca07ae8180cf71b185d5cdc74a942a9f","dc7192ead27a652fee22e9bb4b32f6ed5c0f98762cd8955b697e258d9f3e4529",{"version":"66d826e2413ce829841754cac2e715eb41cc581a9b3357d99d267267a1491b7b","signature":"3fcb9a6a2cd2d8ae5f8a76f1f5fca7fc8ca51e49a8d6eecbfa6177df77096094"},{"version":"4373fd8f9b51c144d43b2ca56d9a31beda446921428c25e8dee87c39cfe54964","signature":"7c9cc5fe99ec6b741898260aa19c9983757ac0f479476c4f641db48a759c9dd7"},{"version":"c29a80bf3a5140763c19c09219000f1991cd1be5c9198f415fe74d062f9c717c","signature":"8c2430bba9f38c9717ca1aa2d0aefb1c0005b6591e650640e8a08a911095fb28"},{"version":"1c719c619ee01098654db44c182ba8ae6df124076d55f66599a5d9a61c820b6e","signature":"0ea18cafa6cc99063618706dbef248a0213639a8338dbdd80a99a781f9289377"},{"version":"6b35b6c881fb30d059506ff319c5a21020c1568107885b1a111653aae4c034f1","signature":"c9783cd5c2cf8b6658110818c02eef33cc70dafa4c259e0d8e1b4d357d01b665"},{"version":"16c1f3b57781817bac8aea5f77b6c611df4b814549a4f0a64e16beca21edd509","signature":"95abdbf021481c53794a3bd150db5574b83338085f78f1d7aa554e1fea26d461"},"df1a1f23d18a3dac758a03f4f8f6a3d14e83fb78a45431d15e6833fb53ed8055","21fa3aaad5d8cbfa85395e4eae75972ab8333020b001b4585f4b8ec81994e2f5","87e852324ee3c69c24b13c17a0b9f320d8e3d8eb1d49669ad1d7774b45058265","68947051891fb1dde45efbcc0f562b501658b16f5140d2899c6ffd5746c6a2cc","75b8b33bb1945e875e0d09fea6a6de04f0bd6bb1239d3841683a42118c00e7ed","622028afad3e12a65acced3c75ae7726bf56d49c199ec3607be2564fca27aac3","7784419956b37af55a9b17e20ef076c61a1e245b577e7b4ec0ff3ea347f3064c","9e6390c460ca50e0b768107f2be5a14f3da4adb6e775ada0f239d2b3be5732c5","0a219ea8ec306caaf53a291af13ce0241f36c98dbfe4657728107efeae95ce51","7de5baa4b52a643d2740398148968188c6a254a17aaa46c706c94452fc8c4f86","0da837840ba21f91b1f9c3c8450cc4f81510b38005ac42c2cd0da4a37e414740","552f15c117a4c13bdd11903a0de928e29dcda845a6aaf9fc5388a26304b96233","1d44cf66f6aaadd2f192a95b1af1270142a6d966b5b4641136060d79b40cdfa6","db515f15908f421edac14e77743e2583d1adc5ff005d051d9013b24e575f0aa3","ddf752b71b7c4c1b09c20cabdd2712305c7c7e815d02a720a7c45f465f9f5578","5ded46b22f516dc8f0f8eeb8bd89130f1a0ad9eef8dfdb8f1cd6849be7ebef90","74bb817a79884249a393466dda60df28f2d2c7a583facba4012ef1d27fb9d4d4","e5392016ff99b5f6a53fb57816e13fea7482f71f7bf9d7ca493a15013db46e2f","8f15d54abeeef93a0d41ce96f659078b9f3ba3eb7cf193fc00682f2ff780931c","c36b9847b1c3f8b837c3a2501b1d2f2605d5dcc3730d59bb22eaecd3b894b0cf","404bb2400a069a39f90d792aeb656b86b33365053fa90d45992b1eb12740f316","38492c28c947539347d0c4677eeddc9ec13e9eb4fb2eb7d29cbf6b8cf38aaacb","4a09f82cf471f95f2d392dd33a598ada3a0987e9f8efff160883d004ea4f08bc","aada70df37b186d7f870362533ff395098fdae80a5ab19ed9c41dfe1285aa364","a19e34d8a2f1470c3e353e8d366e7d9e835d19dd78a3122114c5fe52e5a79a60","7949d810d38b5358244cd86e80f0d840cad62caac4a4b3a6a75c6dab78ae29a8","e6dfc1705e93a5d648527d304e4cf0463902d442a64566e3262e7ffba4e38af4","ea22dd065a3ee61e8f5fc53b4f2275e809a09a3f58b98bb66f8fc07050100892","ff1eab0e4b697c10256786b2d62f47a88ae33c3cea17864f13e6f7bf4137c810","bc8e1ef35172e1b9c46cb39e262c0c4c5839732e75c3bf8b4c3a10fe8a6dec97","190ce538265abf5fb250db8d335bce7665eab997ce16a218a189c2978a7a8b8a","2e62ed413051bfbf3978d1f3cde446dbc6fbee5e7a425820d4692dd6cc74563d","8b4034aca6f85bd65594e19eaa642b37fa9f4741f9026ca3ab739c84eb61a1be","4e44566ddea6053606d02c098cfa08ab23167a3baf7fce6a752a94b970096245","a905e2a4d34f5b9689f081aeae3ac6f66f6b9b74d26e3fea0d680abddb9440b5","c129eb7ae39d46b088611e72e42f2eca6aa881bd22a930030364840cf6b7dd34","3d818456cf9b63583e99c67aebccca8b5ec05675316048507fa5eefb2abd3123","35587060a6244e9b10629024cd12ab34ab7e874379a9761e61aca06847981fec","56cd67ee37e8b99f38be9096472df3defcef640fca4ae8cb68c495d105b68aeb","54adf87084900e062a22a02e0e2b3bb9c862ce3b0af04af452cc2cac1539f58c","15a3d1c6f23a3c7015c3d718bd8ddaffe9de21e5f4baf57998a188ce36698eb3","09f8c424b8d8394a44bf731306d0022eef5f9b18845cb796da2cc4d4d49b5795","022c2921df6a3b481e721e5bc4dc4df70656b3e6445bf573e1ad77ee79274fc0","42e2414802c2b01007ec019171a588249931675e29d61e6eb8cfbcb18a9a1e85","456328f2ba6290e9d85d213de29b9ff1495734bca75cc6b214b05751051addff","45fe7896fd6e269bd3a8c1c6713e07701c127076cdb74f183516b9ba5ea3318f","a21e6b4bebe10b7e0ad199954dff9c5b9813e6552585fd5a944a691d5d0250ed","c7525ce0da03c467948253477743c85a19d4d80af168491ac93f171892b05361","5750131d1fc5684bf3d6dd7e22f64526d3ca52d362676e26e85bf0a573b11c56","4bd05ede5659522906a8d555b6d7e9bdbf53c33865531172ee383aef1ff76bd8",{"version":"1ac930a9f4792cf7c2558537a6c911332103fc76be2691d792a6d0b38cec5ec7","signature":"3c1eac846c50e17304178372f390780ff8f76650dae54c68648c0c2be71432ba"},{"version":"609db87aaabcf850359341e337073ab5177c0c48c9a60cfc9e8bf75e1a825de1","signature":"3ac1a933e386e0e2894ae7d2d1cd112dacb10c91c85b632c0c561996d6479765"},{"version":"35dc48b51c52e115005e337a7a1c2a469987193dd07bbfe9c5085b8088ce5519","signature":"8d76f3727475c6c147dbaa7a952910a83de7e96c23021d7625cdef98c95c206c"},{"version":"d3021db469a21de072e28eb6fb9be14880eb739f1b1ede857133114dec06988d","signature":"f848a594e5ecbebed6b9e7a2b62c57466dbf0faede2b27e3538a1c7fe2efb2e1"},{"version":"6601832367b2c1359b16db86700174171375fa7d1403c5558910962ce36fa70a","signature":"52cd14ac0718c0e8764474498076290de91f682d7f46cfed4d9d1a5ad37ed70e"},{"version":"6bd7e786b07c40f46e015484fe4cf536bdd0b3e384185f0fe7a43499eddf8bed","signature":"64d9271f6b8e80dff32e710264216715d77e37e83076f6cbbf6209ee34d3e3ab"},{"version":"a4a0719a3a95ab86eb374eb2d8eaa78062c6e88b5dc33ac81cbf2462ced266d1","signature":"fc516c9bc8edd23b12237453f75f4174622a05f55d51f0089158415231b544ba"},{"version":"74045c53c7cf31c3149fc966013b53125758e96e9132df334c3896689cb51a88","signature":"9b1ea80ff901ddbe1c03d85de10548cb7ef0e97f2a127dcf2ea7044c4ab8da4a"},{"version":"4acd60f7a93690b4beb561b09605a11bd19f44ac6eee78acfc69c821ea1e58b6","signature":"10a4da3cc345940eee866bf150489f555e01a4dca905840111cdc0aa9d39f590"},{"version":"23d4419bf1e3bdb186624f5bd024ced5d392ce7711fa4b922c3cce6a17f25d18","signature":"0f5e5ff4d0687e8a29e8ac67e4775bb0c5a0711bbd98c060f585a4dcab503fe4"},{"version":"381fbea4f6d325b2e49ddd1de41f72ae01491de54da566e892ccc5a4c5e80553","signature":"4f1cefa77cb10b31da8b3cea3f509caaabc673c4d9584b4d29199b3e4392db88","affectsGlobalScope":true},{"version":"805f59daec33b5d243890e4f99d1f7f5e6ab96f6db826e84890d7bc83ecffaca","signature":"5353eb8820d99f91dcc2101e0f25aa9a4324e5d5ffeb8552e034fb38034e206f"},{"version":"c931b09271b6bb01b421149ee079577b35b438dab6451fe53ecf2a05f6fb1602","signature":"cc19b5554216f97795e7e269891d351f34dfa82d6ec1a60c47310a8306ca43b8"}],"root":[[173,178],[229,241]],"options":{"declaration":true,"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":1,"noEmitOnError":true,"noImplicitAny":true,"outDir":"./","strict":true,"target":1},"fileIdsList":[[64,65,108],[64,65,121,122],[64,65],[64,65,116],[64,65,116,117,118,119,120],[64,65,109,110,111,112,113,114,115,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144],[64,65,67],[64,65,73,74,75,76],[64,65,73,75],[64,65,78,80,81],[64,65,78,79],[64,65,83],[61,64,65],[64,65,69,85],[64,65,85],[64,65,88],[64,65,85,86,87],[64,65,85,86,87,88,89],[64,65,70],[64,65,72,73,75],[60,64,65,71],[64,65,91],[64,65,91,92],[60,61,64,65,66,67,68,69,70,71,72,73,74,75,76,77,79,82,83,84,90,93,94,95,96,97,98,99,100,101,102,103,104,106,107],[61,64,65,69,70,74],[64,65,77],[64,65,72,74,79],[64,65,72,73],[64,65,72,83],[64,65,67,68,74],[64,65,97],[64,65,73,76,103,104],[64,65,72,77,97,105],[64,65,72],[60,64,65],[63,64,65],[64],[64,65,152],[64,65,151],[37,64,65,168],[37,64,65,173,174],[37,64,65,173,174,175],[37,64,65,176,237],[37,64,65,168,172,176,177,230,233],[37,64,65,234,235],[37,64,65,229,236],[37,64,65],[37,64,65,178,229],[37,64,65,172,228],[37,64,65,231,232],[37,64,65,176,228],[37,64,65,240],[37,64,65,145,168],[64,65,211,212],[64,65,213,214],[64,65,145],[64,65,222,223],[64,65,222],[64,65,221],[64,65,166],[64,65,164],[64,65,164,165],[64,65,226],[45,55,64,65],[56,64,65],[45,64,65],[59,64,65,145],[64,65,147],[42,64,65],[64,65,153],[64,65,149,150,154,155,156,157,158],[64,65,182],[64,65,190,192,194,197],[64,65,184,185],[64,65,190,192,194],[64,65,183,186,190,192,194,195,197,198,203,205,206,209,210],[64,65,190],[64,65,187,188,191],[64,65,187],[64,65,184],[64,65,196],[64,65,200,201,202,203,204],[64,65,201],[64,65,190,199],[64,65,199],[64,65,193],[64,65,207,208],[64,65,145,185],[64,65,145,184,185],[64,65,184,185,189],[40,45,50,64,65,166,167,181,215,220,224,225,227],[38,40,45,50,51,52,53,54,57,58,59,64,65,146,148,157,159,160,161,163,167],[50,64,65],[64,65,169,170],[47,64,65],[47,64,65,171],[46,64,65],[40,45,64,65],[50,53,64,65],[40,64,65],[40,64,65,162],[64,65,162,179,180],[39,40,48,49,64,65],[64,65,216],[64,65,216,217,218,219],[41,42,43,44,64,65],[168],[174],[173,174,175],[176,237],[230],[234,235],[229,236],[178,229],[172,228],[231,232],[240],[145,168]],"referencedMap":[[109,1],[110,1],[111,1],[112,1],[113,1],[114,1],[115,1],[123,2],[124,1],[125,3],[126,1],[127,1],[128,1],[129,1],[117,4],[118,1],[116,1],[119,4],[120,4],[121,5],[145,6],[130,1],[131,1],[132,1],[133,1],[134,3],[135,1],[136,1],[137,1],[138,1],[139,1],[140,1],[141,2],[142,1],[143,1],[122,1],[144,1],[60,3],[61,3],[66,3],[68,7],[77,8],[76,9],[78,3],[82,10],[80,11],[81,3],[67,3],[84,12],[69,13],[86,14],[87,15],[89,16],[88,17],[90,18],[85,19],[83,20],[72,21],[92,22],[91,3],[93,23],[108,24],[70,3],[75,25],[94,26],[95,3],[73,3],[96,3],[97,27],[98,28],[99,29],[100,30],[101,3],[102,3],[103,31],[79,3],[105,32],[106,33],[104,3],[71,34],[74,20],[107,35],[62,3],[64,36],[65,37],[63,3],[37,3],[153,38],[151,3],[152,39],[35,3],[36,3],[7,3],[8,3],[10,3],[9,3],[2,3],[11,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[3,3],[4,3],[22,3],[19,3],[20,3],[21,3],[23,3],[24,3],[25,3],[5,3],[26,3],[27,3],[28,3],[29,3],[6,3],[33,3],[30,3],[31,3],[32,3],[34,3],[1,3],[173,40],[175,41],[176,42],[174,40],[238,43],[235,44],[236,45],[234,44],[237,46],[178,47],[230,48],[229,49],[233,50],[231,51],[232,51],[239,3],[240,47],[241,52],[177,53],[214,54],[213,54],[215,55],[212,56],[224,57],[225,57],[223,58],[221,3],[222,59],[58,3],[167,60],[164,3],[165,61],[166,62],[227,63],[226,3],[56,64],[57,65],[55,66],[146,67],[59,3],[147,3],[148,68],[54,3],[158,3],[157,3],[155,3],[161,69],[38,3],[150,3],[154,70],[149,66],[156,3],[160,66],[159,71],[182,3],[183,72],[198,73],[186,74],[195,75],[211,76],[191,77],[192,78],[188,79],[187,80],[197,81],[196,77],[203,3],[205,82],[202,83],[200,84],[201,85],[199,77],[204,77],[206,3],[194,86],[193,74],[209,87],[208,77],[207,88],[189,89],[184,3],[185,80],[190,90],[210,3],[228,91],[168,92],[51,93],[171,94],[170,95],[169,95],[172,96],[47,97],[46,98],[39,3],[162,99],[48,95],[53,100],[40,3],[52,100],[49,3],[180,3],[179,100],[163,101],[181,102],[50,103],[219,66],[217,104],[216,66],[218,104],[220,105],[41,3],[42,3],[45,106],[43,3],[44,3]],"exportedModulesMap":[[109,1],[110,1],[111,1],[112,1],[113,1],[114,1],[115,1],[123,2],[124,1],[125,3],[126,1],[127,1],[128,1],[129,1],[117,4],[118,1],[116,1],[119,4],[120,4],[121,5],[145,6],[130,1],[131,1],[132,1],[133,1],[134,3],[135,1],[136,1],[137,1],[138,1],[139,1],[140,1],[141,2],[142,1],[143,1],[122,1],[144,1],[60,3],[61,3],[66,3],[68,7],[77,8],[76,9],[78,3],[82,10],[80,11],[81,3],[67,3],[84,12],[69,13],[86,14],[87,15],[89,16],[88,17],[90,18],[85,19],[83,20],[72,21],[92,22],[91,3],[93,23],[108,24],[70,3],[75,25],[94,26],[95,3],[73,3],[96,3],[97,27],[98,28],[99,29],[100,30],[101,3],[102,3],[103,31],[79,3],[105,32],[106,33],[104,3],[71,34],[74,20],[107,35],[62,3],[64,36],[65,37],[63,3],[37,3],[153,38],[151,3],[152,39],[35,3],[36,3],[7,3],[8,3],[10,3],[9,3],[2,3],[11,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[3,3],[4,3],[22,3],[19,3],[20,3],[21,3],[23,3],[24,3],[25,3],[5,3],[26,3],[27,3],[28,3],[29,3],[6,3],[33,3],[30,3],[31,3],[32,3],[34,3],[1,3],[173,107],[175,108],[176,109],[174,107],[238,110],[235,111],[236,112],[234,111],[237,113],[230,114],[229,115],[233,116],[241,117],[177,118],[214,54],[213,54],[215,55],[212,56],[224,57],[225,57],[223,58],[221,3],[222,59],[58,3],[167,60],[164,3],[165,61],[166,62],[227,63],[226,3],[56,64],[57,65],[55,66],[146,67],[59,3],[147,3],[148,68],[54,3],[158,3],[157,3],[155,3],[161,69],[38,3],[150,3],[154,70],[149,66],[156,3],[160,66],[159,71],[182,3],[183,72],[198,73],[186,74],[195,75],[211,76],[191,77],[192,78],[188,79],[187,80],[197,81],[196,77],[203,3],[205,82],[202,83],[200,84],[201,85],[199,77],[204,77],[206,3],[194,86],[193,74],[209,87],[208,77],[207,88],[189,89],[184,3],[185,80],[190,90],[210,3],[228,91],[168,92],[51,93],[171,94],[170,95],[169,95],[172,96],[47,97],[46,98],[39,3],[162,99],[48,95],[53,100],[40,3],[52,100],[49,3],[180,3],[179,100],[163,101],[181,102],[50,103],[219,66],[217,104],[216,66],[218,104],[220,105],[41,3],[42,3],[45,106],[43,3],[44,3]],"semanticDiagnosticsPerFile":[109,110,111,112,113,114,115,123,124,125,126,127,128,129,117,118,116,119,120,121,145,130,131,132,133,134,135,136,137,138,139,140,141,142,143,122,144,60,61,66,68,77,76,78,82,80,81,67,84,69,86,87,89,88,90,85,83,72,92,91,93,108,70,75,94,95,73,96,97,98,99,100,101,102,103,79,105,106,104,71,74,107,62,64,65,63,37,153,151,152,35,36,7,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,1,173,175,176,174,238,235,236,234,237,178,230,229,233,231,232,239,240,241,177,214,213,215,212,224,225,223,221,222,58,167,164,165,166,227,226,56,57,55,146,59,147,148,54,158,157,155,161,38,150,154,149,156,160,159,182,183,198,186,195,211,191,192,188,187,197,196,203,205,202,200,201,199,204,206,194,193,209,208,207,189,184,185,190,210,228,168,51,171,170,169,172,47,46,39,162,48,53,40,52,49,180,179,163,181,50,219,217,216,218,220,41,42,45,43,44]},"version":"5.0.2"}
|
package/lib-esm/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { record, identifyUser, RecordInput, IdentifyUserInput, } from './providers/pinpoint';
|
|
2
2
|
export { AnalyticsError } from './errors';
|
package/lib-esm/index.js
CHANGED
|
@@ -1,10 +1,45 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { IdentifyUserInput } from '../types';
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Sends information about a user to Pinpoint. Sending user information allows you to associate a user to their user
|
|
4
|
+
* profile and activities or actions in your application. Activity can be tracked across devices & platforms by using
|
|
5
|
+
* the same `userId`.
|
|
4
6
|
*
|
|
5
|
-
* @param {IdentifyUserParameters} params
|
|
7
|
+
* @param {IdentifyUserParameters} params The input object used to construct requests sent to Pinpoint's UpdateEndpoint
|
|
8
|
+
* API.
|
|
6
9
|
*
|
|
7
|
-
* @throws
|
|
8
|
-
* @throws
|
|
10
|
+
* @throws service: {@link UpdateEndpointException} - Thrown when the underlying Pinpoint service returns an error.
|
|
11
|
+
* @throws validation: {@link AnalyticsValidationErrorCode} - Thrown when the provided parameters or library
|
|
12
|
+
* configuration is incorrect.
|
|
13
|
+
*
|
|
14
|
+
* @returns A promise that will resolve when the operation is complete.
|
|
15
|
+
*
|
|
16
|
+
* @example
|
|
17
|
+
* ```ts
|
|
18
|
+
* // Identify a user with Pinpoint
|
|
19
|
+
* await identifyUser({
|
|
20
|
+
* userId,
|
|
21
|
+
* userProfile: {
|
|
22
|
+
* attributes: {
|
|
23
|
+
* email: [userEmail],
|
|
24
|
+
* },
|
|
25
|
+
* }
|
|
26
|
+
* });
|
|
27
|
+
* ```
|
|
28
|
+
*
|
|
29
|
+
* @example
|
|
30
|
+
* ```ts
|
|
31
|
+
* // Identify a user with Pinpoint with some additional demographics
|
|
32
|
+
* await identifyUser({
|
|
33
|
+
* userId,
|
|
34
|
+
* userProfile: {
|
|
35
|
+
* attributes: {
|
|
36
|
+
* email: [userEmail],
|
|
37
|
+
* },
|
|
38
|
+
* demographic: {
|
|
39
|
+
* platform: 'ios',
|
|
40
|
+
* timezone: 'America/Los_Angeles'
|
|
41
|
+
* }
|
|
42
|
+
* }
|
|
43
|
+
* });
|
|
9
44
|
*/
|
|
10
|
-
export declare const identifyUser: ({ userId, userProfile, }:
|
|
45
|
+
export declare const identifyUser: ({ userId, userProfile, }: IdentifyUserInput) => Promise<void>;
|
|
@@ -6,12 +6,47 @@ import { updateEndpoint } from '@aws-amplify/core/internals/providers/pinpoint';
|
|
|
6
6
|
import { getAnalyticsUserAgentString } from '../../../utils/userAgent';
|
|
7
7
|
import { resolveConfig, resolveCredentials } from '../utils';
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* Sends information about a user to Pinpoint. Sending user information allows you to associate a user to their user
|
|
10
|
+
* profile and activities or actions in your application. Activity can be tracked across devices & platforms by using
|
|
11
|
+
* the same `userId`.
|
|
10
12
|
*
|
|
11
|
-
* @param {IdentifyUserParameters} params
|
|
13
|
+
* @param {IdentifyUserParameters} params The input object used to construct requests sent to Pinpoint's UpdateEndpoint
|
|
14
|
+
* API.
|
|
12
15
|
*
|
|
13
|
-
* @throws
|
|
14
|
-
* @throws
|
|
16
|
+
* @throws service: {@link UpdateEndpointException} - Thrown when the underlying Pinpoint service returns an error.
|
|
17
|
+
* @throws validation: {@link AnalyticsValidationErrorCode} - Thrown when the provided parameters or library
|
|
18
|
+
* configuration is incorrect.
|
|
19
|
+
*
|
|
20
|
+
* @returns A promise that will resolve when the operation is complete.
|
|
21
|
+
*
|
|
22
|
+
* @example
|
|
23
|
+
* ```ts
|
|
24
|
+
* // Identify a user with Pinpoint
|
|
25
|
+
* await identifyUser({
|
|
26
|
+
* userId,
|
|
27
|
+
* userProfile: {
|
|
28
|
+
* attributes: {
|
|
29
|
+
* email: [userEmail],
|
|
30
|
+
* },
|
|
31
|
+
* }
|
|
32
|
+
* });
|
|
33
|
+
* ```
|
|
34
|
+
*
|
|
35
|
+
* @example
|
|
36
|
+
* ```ts
|
|
37
|
+
* // Identify a user with Pinpoint with some additional demographics
|
|
38
|
+
* await identifyUser({
|
|
39
|
+
* userId,
|
|
40
|
+
* userProfile: {
|
|
41
|
+
* attributes: {
|
|
42
|
+
* email: [userEmail],
|
|
43
|
+
* },
|
|
44
|
+
* demographic: {
|
|
45
|
+
* platform: 'ios',
|
|
46
|
+
* timezone: 'America/Los_Angeles'
|
|
47
|
+
* }
|
|
48
|
+
* }
|
|
49
|
+
* });
|
|
15
50
|
*/
|
|
16
51
|
export var identifyUser = function (_a) {
|
|
17
52
|
var userId = _a.userId, userProfile = _a.userProfile;
|
|
@@ -1,11 +1,36 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { RecordInput } from '../types';
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Records an Analytic event to Pinpoint. Events will be buffered and periodically sent to Pinpoint.
|
|
4
4
|
*
|
|
5
|
-
* @param {
|
|
5
|
+
* @param {RecordInput} params The input object used to construct the request.
|
|
6
6
|
*
|
|
7
|
-
* @throws
|
|
7
|
+
* @throws validation: {@link AnalyticsValidationErrorCode} - Thrown when the provided parameters or library
|
|
8
|
+
* configuration is incorrect.
|
|
8
9
|
*
|
|
9
|
-
* @
|
|
10
|
+
* @example
|
|
11
|
+
* ```ts
|
|
12
|
+
* // Send an event to Pinpoint
|
|
13
|
+
* record({
|
|
14
|
+
* event: {
|
|
15
|
+
* name: eventName,
|
|
16
|
+
* }
|
|
17
|
+
* })
|
|
18
|
+
* ```
|
|
19
|
+
*
|
|
20
|
+
* @example
|
|
21
|
+
* ```ts
|
|
22
|
+
* // Send an event to Pinpoint with metrics & custom attributes
|
|
23
|
+
* record({
|
|
24
|
+
* event: {
|
|
25
|
+
* name: eventName,
|
|
26
|
+
* attributes: {
|
|
27
|
+
* 'my-attribute': attributeValue
|
|
28
|
+
* },
|
|
29
|
+
* metrics: {
|
|
30
|
+
* 'my-metric': metricValue
|
|
31
|
+
* }
|
|
32
|
+
* }
|
|
33
|
+
* })
|
|
34
|
+
* ```
|
|
10
35
|
*/
|
|
11
|
-
export declare const record: ({ event }:
|
|
36
|
+
export declare const record: ({ event }: RecordInput) => void;
|
|
@@ -7,13 +7,38 @@ import { getAnalyticsUserAgentString } from '../../../utils/userAgent';
|
|
|
7
7
|
import { resolveConfig, resolveCredentials } from '../utils';
|
|
8
8
|
var logger = new Logger('Analytics');
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* Records an Analytic event to Pinpoint. Events will be buffered and periodically sent to Pinpoint.
|
|
11
11
|
*
|
|
12
|
-
* @param {
|
|
12
|
+
* @param {RecordInput} params The input object used to construct the request.
|
|
13
13
|
*
|
|
14
|
-
* @throws
|
|
14
|
+
* @throws validation: {@link AnalyticsValidationErrorCode} - Thrown when the provided parameters or library
|
|
15
|
+
* configuration is incorrect.
|
|
15
16
|
*
|
|
16
|
-
* @
|
|
17
|
+
* @example
|
|
18
|
+
* ```ts
|
|
19
|
+
* // Send an event to Pinpoint
|
|
20
|
+
* record({
|
|
21
|
+
* event: {
|
|
22
|
+
* name: eventName,
|
|
23
|
+
* }
|
|
24
|
+
* })
|
|
25
|
+
* ```
|
|
26
|
+
*
|
|
27
|
+
* @example
|
|
28
|
+
* ```ts
|
|
29
|
+
* // Send an event to Pinpoint with metrics & custom attributes
|
|
30
|
+
* record({
|
|
31
|
+
* event: {
|
|
32
|
+
* name: eventName,
|
|
33
|
+
* attributes: {
|
|
34
|
+
* 'my-attribute': attributeValue
|
|
35
|
+
* },
|
|
36
|
+
* metrics: {
|
|
37
|
+
* 'my-metric': metricValue
|
|
38
|
+
* }
|
|
39
|
+
* }
|
|
40
|
+
* })
|
|
41
|
+
* ```
|
|
17
42
|
*/
|
|
18
43
|
export var record = function (_a) {
|
|
19
44
|
var event = _a.event;
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { record, identifyUser } from './apis';
|
|
2
|
+
export { RecordInput, IdentifyUserInput } from './types/inputs';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { UpdateEndpointException } from './errors';
|
|
2
|
-
export {
|
|
2
|
+
export { RecordInput, IdentifyUserInput } from './inputs';
|
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
import { UserProfile } from '@aws-amplify/core';
|
|
2
2
|
import { PinpointAnalyticsEvent } from '@aws-amplify/core/internals/providers/pinpoint';
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
|
+
* Input type for Pinpoint record API.
|
|
5
|
+
*/
|
|
6
|
+
export type RecordInput = {
|
|
4
7
|
/**
|
|
5
8
|
* An event to send to the default Analytics provider.
|
|
6
9
|
*/
|
|
7
10
|
event: PinpointAnalyticsEvent;
|
|
8
11
|
};
|
|
9
|
-
|
|
12
|
+
/**
|
|
13
|
+
* Input type for Pinpoint identifyUser API.
|
|
14
|
+
*/
|
|
15
|
+
export type IdentifyUserInput = {
|
|
10
16
|
/**
|
|
11
17
|
* A User ID associated to the current device.
|
|
12
18
|
*/
|
|
@@ -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.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../core/lib-esm/Util/JS.d.ts","../../core/lib-esm/singleton/Auth/types.d.ts","../../core/lib-esm/singleton/Auth/utils/index.d.ts","../../core/lib-esm/singleton/Auth/index.d.ts","../../core/lib-esm/Signer.d.ts","../../core/lib-esm/types/core.d.ts","../../core/lib-esm/types/errors.d.ts","../../core/lib-esm/types/logging.d.ts","../../core/lib-esm/types/storage.d.ts","../../core/lib-esm/types/index.d.ts","../../core/lib-esm/Logger/logger-interface.d.ts","../../core/lib-esm/Logger/ConsoleLogger.d.ts","../../core/lib-esm/Logger/index.d.ts","../../core/lib-esm/ClientDevice/index.d.ts","../../core/lib-esm/Platform/types.d.ts","../../../node_modules/@smithy/types/dist-types/abort.d.ts","../../../node_modules/@smithy/types/dist-types/auth.d.ts","../../../node_modules/@types/events/index.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/base.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","../../../node_modules/@smithy/types/dist-types/crypto.d.ts","../../../node_modules/@smithy/types/dist-types/checksum.d.ts","../../../node_modules/@smithy/types/dist-types/endpoint.d.ts","../../../node_modules/@smithy/types/dist-types/logger.d.ts","../../../node_modules/@smithy/types/dist-types/uri.d.ts","../../../node_modules/@smithy/types/dist-types/http.d.ts","../../../node_modules/@smithy/types/dist-types/response.d.ts","../../../node_modules/@smithy/types/dist-types/util.d.ts","../../../node_modules/@smithy/types/dist-types/middleware.d.ts","../../../node_modules/@smithy/types/dist-types/command.d.ts","../../../node_modules/@smithy/types/dist-types/client.d.ts","../../../node_modules/@smithy/types/dist-types/connection/config.d.ts","../../../node_modules/@smithy/types/dist-types/transfer.d.ts","../../../node_modules/@smithy/types/dist-types/connection/manager.d.ts","../../../node_modules/@smithy/types/dist-types/connection/pool.d.ts","../../../node_modules/@smithy/types/dist-types/connection/index.d.ts","../../../node_modules/@smithy/types/dist-types/eventStream.d.ts","../../../node_modules/@smithy/types/dist-types/encode.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/index.d.ts","../../../node_modules/@smithy/types/dist-types/extensions/checksum.d.ts","../../../node_modules/@smithy/types/dist-types/extensions/defaultClientConfiguration.d.ts","../../../node_modules/@smithy/types/dist-types/extensions/defaultExtensionConfiguration.d.ts","../../../node_modules/@smithy/types/dist-types/extensions/index.d.ts","../../../node_modules/@smithy/types/dist-types/identity/identity.d.ts","../../../node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts","../../../node_modules/@smithy/types/dist-types/identity/index.d.ts","../../../node_modules/@smithy/types/dist-types/pagination.d.ts","../../../node_modules/@smithy/types/dist-types/profile.d.ts","../../../node_modules/@smithy/types/dist-types/retry.d.ts","../../../node_modules/@smithy/types/dist-types/serde.d.ts","../../../node_modules/@smithy/types/dist-types/shapes.d.ts","../../../node_modules/@smithy/types/dist-types/signature.d.ts","../../../node_modules/@smithy/types/dist-types/stream.d.ts","../../../node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","../../../node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","../../../node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","../../../node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","../../../node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","../../../node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","../../../node_modules/@smithy/types/dist-types/waiter.d.ts","../../../node_modules/@smithy/types/dist-types/index.d.ts","../../../node_modules/@aws-sdk/types/dist-types/abort.d.ts","../../../node_modules/@aws-sdk/types/dist-types/auth.d.ts","../../../node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","../../../node_modules/@aws-sdk/types/dist-types/checksum.d.ts","../../../node_modules/@aws-sdk/types/dist-types/client.d.ts","../../../node_modules/@aws-sdk/types/dist-types/command.d.ts","../../../node_modules/@aws-sdk/types/dist-types/connection.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","../../../node_modules/@aws-sdk/types/dist-types/util.d.ts","../../../node_modules/@aws-sdk/types/dist-types/credentials.d.ts","../../../node_modules/@aws-sdk/types/dist-types/crypto.d.ts","../../../node_modules/@aws-sdk/types/dist-types/dns.d.ts","../../../node_modules/@aws-sdk/types/dist-types/encode.d.ts","../../../node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","../../../node_modules/@aws-sdk/types/dist-types/eventStream.d.ts","../../../node_modules/@aws-sdk/types/dist-types/http.d.ts","../../../node_modules/@aws-sdk/types/dist-types/logger.d.ts","../../../node_modules/@aws-sdk/types/dist-types/middleware.d.ts","../../../node_modules/@aws-sdk/types/dist-types/pagination.d.ts","../../../node_modules/@aws-sdk/types/dist-types/profile.d.ts","../../../node_modules/@aws-sdk/types/dist-types/request.d.ts","../../../node_modules/@aws-sdk/types/dist-types/response.d.ts","../../../node_modules/@aws-sdk/types/dist-types/retry.d.ts","../../../node_modules/@aws-sdk/types/dist-types/serde.d.ts","../../../node_modules/@aws-sdk/types/dist-types/shapes.d.ts","../../../node_modules/@aws-sdk/types/dist-types/signature.d.ts","../../../node_modules/@aws-sdk/types/dist-types/stream.d.ts","../../../node_modules/@aws-sdk/types/dist-types/token.d.ts","../../../node_modules/@aws-sdk/types/dist-types/transfer.d.ts","../../../node_modules/@aws-sdk/types/dist-types/uri.d.ts","../../../node_modules/@aws-sdk/types/dist-types/waiter.d.ts","../../../node_modules/@aws-sdk/types/dist-types/index.d.ts","../../core/lib-esm/Platform/index.d.ts","../../core/lib-esm/ServiceWorker/ServiceWorker.d.ts","../../core/lib-esm/ServiceWorker/index.d.ts","../../core/lib-esm/Util/Retry.d.ts","../../core/lib-esm/Util/Mutex.d.ts","../../../node_modules/zen-observable-ts/lib/types.d.ts","../../../node_modules/zen-observable-ts/lib/zenObservable.d.ts","../../../node_modules/zen-observable-ts/lib/index.d.ts","../../core/lib-esm/Util/Reachability.d.ts","../../core/lib-esm/Util/DateUtils.d.ts","../../core/lib-esm/Util/StringUtils.d.ts","../../core/lib-esm/Util/Constants.d.ts","../../core/lib-esm/Util/BackgroundProcessManager.d.ts","../../core/lib-esm/Util/index.d.ts","../../core/lib-esm/Util/errors/AssertError.d.ts","../../core/lib-esm/Util/Errors.d.ts","../../core/lib-esm/OAuthHelper/GoogleOAuth.d.ts","../../core/lib-esm/OAuthHelper/FacebookOAuth.d.ts","../../core/lib-esm/OAuthHelper/index.d.ts","../../core/lib-esm/RNComponents/index.d.ts","../../core/lib-esm/providers/pinpoint/types/pinpoint.d.ts","../../core/lib-esm/providers/pinpoint/types/index.d.ts","../../core/lib-esm/singleton/Analytics/types.d.ts","../../core/lib-esm/singleton/Storage/types.d.ts","../../core/lib-esm/singleton/types.d.ts","../../core/lib-esm/singleton/Amplify.d.ts","../../core/lib-esm/singleton/apis/internal/fetchAuthSession.d.ts","../../core/lib-esm/Hub/types/AuthTypes.d.ts","../../core/lib-esm/Hub/types/HubTypes.d.ts","../../core/lib-esm/Hub/types/index.d.ts","../../core/lib-esm/Hub/index.d.ts","../../core/lib-esm/libraryUtils.d.ts","../../core/lib-esm/providers/pinpoint/apis/updateEndpoint.d.ts","../../core/lib-esm/providers/pinpoint/apis/record.d.ts","../../core/lib-esm/providers/pinpoint/apis/index.d.ts","../../core/lib-esm/providers/pinpoint/index.d.ts","../src/errors/AnalyticsError.ts","../src/errors/validation.ts","../src/errors/assertValidationError.ts","../src/errors/index.ts","../src/utils/userAgent.ts","../../core/lib-esm/singleton/apis/fetchAuthSession.d.ts","../../core/lib-esm/singleton/apis/clearCredentials.d.ts","../../core/lib-esm/singleton/index.d.ts","../../core/lib-esm/clients/endpoints/getDnsSuffix.d.ts","../../core/lib-esm/clients/endpoints/index.d.ts","../../../node_modules/form-data/index.d.ts","../../../node_modules/@types/node-fetch/externals.d.ts","../../../node_modules/@types/node-fetch/index.d.ts","../../../node_modules/isomorphic-unfetch/index.d.ts","../../core/lib-esm/clients/types/core.d.ts","../../core/lib-esm/clients/types/http.d.ts","../../core/lib-esm/clients/handlers/fetch.d.ts","../../core/lib-esm/clients/middleware/retry/middleware.d.ts","../../core/lib-esm/clients/middleware/retry/jitteredBackoff.d.ts","../../core/lib-esm/clients/types/aws.d.ts","../../core/lib-esm/clients/types/index.d.ts","../../core/lib-esm/clients/middleware/retry/defaultRetryDecider.d.ts","../../core/lib-esm/clients/middleware/retry/index.d.ts","../../core/lib-esm/clients/middleware/userAgent/middleware.d.ts","../../core/lib-esm/clients/middleware/userAgent/index.d.ts","../../core/lib-esm/clients/handlers/unauthenticated.d.ts","../../core/lib-esm/clients/middleware/signing/middleware.d.ts","../../core/lib-esm/clients/middleware/signing/index.d.ts","../../core/lib-esm/clients/handlers/authenticated.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/types/signer.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/signRequest.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/types/index.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/presignUrl.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/constants.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/utils/getHashedPayload.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/index.d.ts","../../core/lib-esm/clients/middleware/signing/utils/extendedEncodeURIComponent.d.ts","../../core/lib-esm/clients/serde/responseInfo.d.ts","../../core/lib-esm/clients/serde/json.d.ts","../../core/lib-esm/clients/serde/index.d.ts","../../core/lib-esm/clients/utils/memoization.d.ts","../../core/lib-esm/clients/index.d.ts","../../core/lib-esm/AwsClients/CognitoIdentity/types.d.ts","../../core/lib-esm/AwsClients/CognitoIdentity/getId.d.ts","../../core/lib-esm/AwsClients/CognitoIdentity/getCredentialsForIdentity.d.ts","../../core/lib-esm/AwsClients/CognitoIdentity/index.d.ts","../../core/lib-esm/StorageHelper/sessionStorage.d.ts","../../core/lib-esm/StorageHelper/localStorage.d.ts","../../core/lib-esm/StorageHelper/inMemoryStorage.d.ts","../../core/lib-esm/StorageHelper/cookieStorage.d.ts","../../core/lib-esm/StorageHelper/index.d.ts","../../core/lib-esm/Cache/types/Cache.d.ts","../../core/lib-esm/Cache/types/index.d.ts","../../core/lib-esm/Cache/StorageCache.d.ts","../../core/lib-esm/Cache/BrowserStorageCache.d.ts","../../core/lib-esm/Cache/InMemoryCache.d.ts","../../core/lib-esm/I18n/types.d.ts","../../core/lib-esm/I18n/index.d.ts","../../core/lib-esm/parseAWSExports.d.ts","../../core/lib-esm/index.d.ts","../src/providers/pinpoint/types/parameters.ts","../src/providers/pinpoint/utils/resolveConfig.ts","../src/providers/pinpoint/utils/resolveCredentials.ts","../src/providers/pinpoint/utils/index.ts","../src/providers/pinpoint/apis/record.ts","../src/providers/pinpoint/types/errors.ts","../src/providers/pinpoint/types/index.ts","../src/providers/pinpoint/apis/identifyUser.ts","../src/providers/pinpoint/apis/index.ts","../src/providers/pinpoint/index.ts","../src/index.ts","../src/setupTests.ts","../src/types/analytics.ts","../src/types/index.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7",{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true},{"version":"9a60b92bca4c1257db03b349d58e63e4868cfc0d1c8d0ba60c2dbc63f4e6c9f6","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","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":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"95f22ce5f9dbcfc757ff850e7326a1ba1bc69806f1e70f48caefa824819d6f4f","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","5a818a0de4bdba13c3f12eb6a56102d822c39c8dc09c7fd23eabb4c024285c2d","84c5807dc645f3585203fe1e62682fc7ffa7ba5a4fef10922d967d1e0555f780","49fda21cc71dd79e0f8863f780510cd0e17463627329f8de3f022534ab5efcd6","e27bcd180eb2e43ea41080b89cf3e9c8d6ad038ff3909213a329b2b131ec220d","a4ec97372c9fbe46f63967913148522b5966b77a1c58516ad4e5b8f168fc9ce1","d168c2128bb332790986a36ea42c110b235043910d27723c74d9b55920860fe0","cdf6c6e9bcd76ee15dffe37b0457d563e1f6809204b839563556cc5d1003bbc1","93435d0cb12c02ea8de08c8d58e1bba2badb01f9c94bcfab450308a3dba84a97","616deecdf9155598632b6ae2375fe80a08077d61d19b335adfa190508b609c10","e4e57c7707a3fcd8f9e05b019f657731c14ee6eac1e1c4b8658e64874b4389ca","31dcc0a044f6ec34e633f24d50a68af9b28fce321ac88f91398ac0d5b95569f5","9339629f426a34250a332e83c468c433a401139eee914790c55d2518320417d9","2a9dd23cd43596eeda1866c1086fbcf2cdb4abf17994bc8a6b9656fe8062b4cb","edf7f975df241cc98c9f4c51aab781f4ecfc884ff6ce03cfd3c59a19a7e729b8","419f10aa9fe307eb5e0b0d410a096d22126c75b36c7a9eb0c17d96c15a5e346f","c55ae709f94155174ff63647edd2a7e3acbd02a2909aa2541569e8b8bac9fc40","dccbb9e0b7e4c3585234775219e1c2d9dc43e717a84c56941bfc7523d4bceca0","400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935","7e49dbf1543b3ee54853ade4c5e9fa460b6a4eca967efe6bf943e0c505d087ed",{"version":"4450cc7b485b116b876cfe3e57d82b76464d6aee1ecefe0bf5ffc03ad9f13cf7","affectsGlobalScope":true},"9f0963be7caec23db8944f66bacb623a7bc7391520125845087241a270e9b3ce","81d8b494be2d4665e017c19095362ca9d8422646c4124d4e40edc48a049e6031","017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","5d514a639cfd3ffd8af8094fc05ea4e8d276946d0069ebff273d6a07ec4f8abd","4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","d12680e217215b37094868d491d00196e80f270ce47e5a4bc50269945ae5554d","396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","5866f85b79bae844211df93770e10e68298d934f2aed751e7a5cdf9ab59f76dc","6300ebd0fcb387c55e37c1b8ab2ab8d47605bb4d9ea8651c63ee76bb832ee024","aee8faa433dde04beedb779b3329456a286a966462d666c138c19113ce78c79e","b7e9c39f7edd1ecd2c3d73b753213a0834144d82ac2a67230c1d291d25430a2e","4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","96812f4fe12e18d14ca12f9af2be3a0ecc4f07859a298dd822aba0bd7cca423d","e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","9ea37c47ee6021afcb56ff4e6a0f0886c2ab112f492a1af519467a3b16f9ab12","219a25474e58a8161b242776856ec5f6960839b63e74809445e51cadbfc18096","c4d3d6a6c3d97bdf3cf6d5ccc78b88fa64dde12503893d07228cda7300304f09","ea62880fdc447b7eafa83e8b00e6e8b0028aef69898a17a1f96dffa12aabd84c","07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","9252778562c2587c88775bf9e8a474a2ac51d562fff90b0ab240b51d0248f16d","a57e2e11a5c279edfa86c59c822e2cbaad9776b9ad90b3936815fec0dcb5d18e","230ead17dc76009af0147a17e3ca1885e3bfa861dfb307b2e353b0ad20bf48f3","d1abdb6b55d9657539f59a08e115f81e3606404cae89bceb8c8db732dfc92a0a","16a6f76f6507cc76012cfd3954136a41a58db595231c2f9bfaf35eca6b25346c","c5f2cdab01270375da7f5c3ae12157d529938533f0145fa0df91735a96cc1a65","53522a2c33f9196ef05e72118a009c6ae717265e5b0eac3ee6bdc8305e8dde2e","9da2c58a27fdce871c2eac09d5172b04248bb86ada9b0d10e8b3dfa8470b8dd3","5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","78bc52637a67f2815407bdf87c857b4af9e43214ef711a091bc9a4a749b73487","5df51db7d128af1aab9e78500f2278a841a61120598a8e3f53ced8a8b06b0174","0b1e4cee9abaf79ef53d736bb4b50a2b0c19733cbaf8bbc6e480d81fb1b91b3f","057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","38aa389acf91d77db5a4f8e26e713ed53dc832ed5573def9cd20acd9ba97c1fe","65f20bda7afd3738c59db566dc94ff98a9e22b87d39bc259351d9e4201ab2595","b9115605f72b65a662723020b2a1eb696c375a5803d6b401dc01fcbfe49ece90","f1afe721e73e468fa292f5fe9ed48955fc6c53ef8b62e9783446b563e0b66fc4","a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","d97766e9af30de9f96c7a5e8d7d6b3e39a269b8bd011083bd3745be7bd532b13","363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","fa2a8e2cc0bde051290d89f15a7b8f4db16d71cf67892be2bf4fca8cc2c3b338","1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","48f1a1b9f15770d9a64b51c596f9569f262fc7e67d7767595068a69539d32939","a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7",{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true},"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","25a6f013a17350c81854e5a62c01aa24841e2219d5d95da5946890d3d8cbdcdf","52470c64ff42d847d24be31b19aff4d39c4a74b2073de6cc7fb95545ef8d87a5","b0e330349eae981f3a980231098a9617358aa39d024c16e23d2300ebdf1bcd92","71282feddaf48e9f4e7b9f4424212fea6ef6d10e077782d19f06c1c10e883b57","04fdd290883caeddaba1daea7785ab6466ed7ee3b1e427da306e83705029bcd4","3f90d3efbeabab0fecf21a642dd0bc3a2fc4e5ce0f95ceb3efcb62ebe6f51e02","b9bd24b171b907a61f153e14a41c8898ea6e106b655329e16b75af2e74153514","5192439c9b51f8092412c50911ffb41a08ad4501f4c6fc46257fda58fdd9d211","8e2dff92f635c8e5438be2a53e3222c4e379e5a2a89811201fb34079b773e0e0","2b3fd32b91b46728c0e51eea7193f08be3494e7b4a53210a800c71839ac16346","5310895182becfe8588f89e9e7aebf9187898ede63d176c97f1c0462c60ae39e","265e6c1ff2cb6ba60eb77a60fa1281a41001c86f07ea636d3fb3c15ef2456b47","f6a54a2736a573dca953e93da8b17fc88920f4025edb5615a556b9eff4107eb7","cd2ca6c6ff07f39fc35ecac63814e20754d923ad1248717a66a8079bcd1fd5ff","b03ea4fde2350f177062b5c1ef2a6966447c4410601b98f28172317cf562ffc9","ed612e03e2e1effa29f252872a9ddeef44f835f5634c0d455b2e32fa5fc78e49","cb1c05f9a414177a5b4ad06287955814090954a300e6f1f8543a976bc7f5e50c","5076e00ee7bfaa654947a247ab06e54da257fca366160c79e4880021e2e56ba2","75b1ef79f5a0d736283f71c1d9debd49f23cdc987762b9ddc8fb85a847a8662d","1df9bca9c7c73e218e77aee7f4aa33f5c3b860f2dc34ba0c5e53fe0d82578c91","b7fd046f8daa7f6494895702cff2f1f2c784bca29f60329cc272db2f3a4b8d2d","35a44d95b0ff9590681e92b12963f671766b3464fab6cd6010b65e3ef2913c4f","4719d02184cf8209c2bb62e01d319f4452260159efdcdb04ceccb80468db87b8","918cf1ba151c31cb372e2366b88a84bbad57953a8e8becbdf5629257a280b665","859de8ddba40d5683a9aaf22536b4103b316cb677b005b0a22d6882bf2c86ffa","905695b2b734538e60a1a862a52b6e8c20f4dbd65b4a1952108a3867bdb85c9c","528cb2f04f620ed0870c15e690c6664744e77e497c941f1443fec22d012264fa","e02f9f6928bd974cc18803419ecc30e12dc39fb3c4383eaa897bf8d868135ef1","6f6df1f586b5edf4d529d07b3535edea07e5cacfd895c81dda133f8359d22e6b","9a23afdd036a23560984aeeec5dbdfc3ddd3e50bd8ca87929fca3d0a13292148","2b57988ad287ad13fd9abceb983fe2e8d16906d0abb910696de8da426e8002a2","2077e93daeb39cd72b5f35797d8f71ecae21760d54f5d3753847f8e8ec0e6441","165ede303ab1fef4735f8370fa2a6335a3805a2810b79ef03f10d5011d9f7cfd","e8d5178d7615abb5145fdc887b01665c1a587e4cf9e27c9aff40c3f89ccb6e18","44dafdc3720da09e2d4d2cc2ffb636b6d3e11320f14c813668faeb0924f56773","84a309e98ab0ebd0ec9f441a12f44bd1ca07ae8180cf71b185d5cdc74a942a9f","dc7192ead27a652fee22e9bb4b32f6ed5c0f98762cd8955b697e258d9f3e4529",{"version":"66d826e2413ce829841754cac2e715eb41cc581a9b3357d99d267267a1491b7b","signature":"3fcb9a6a2cd2d8ae5f8a76f1f5fca7fc8ca51e49a8d6eecbfa6177df77096094"},{"version":"4373fd8f9b51c144d43b2ca56d9a31beda446921428c25e8dee87c39cfe54964","signature":"7c9cc5fe99ec6b741898260aa19c9983757ac0f479476c4f641db48a759c9dd7"},{"version":"c29a80bf3a5140763c19c09219000f1991cd1be5c9198f415fe74d062f9c717c","signature":"8c2430bba9f38c9717ca1aa2d0aefb1c0005b6591e650640e8a08a911095fb28"},{"version":"1c719c619ee01098654db44c182ba8ae6df124076d55f66599a5d9a61c820b6e","signature":"0ea18cafa6cc99063618706dbef248a0213639a8338dbdd80a99a781f9289377"},{"version":"6b35b6c881fb30d059506ff319c5a21020c1568107885b1a111653aae4c034f1","signature":"c9783cd5c2cf8b6658110818c02eef33cc70dafa4c259e0d8e1b4d357d01b665"},"df1a1f23d18a3dac758a03f4f8f6a3d14e83fb78a45431d15e6833fb53ed8055","21fa3aaad5d8cbfa85395e4eae75972ab8333020b001b4585f4b8ec81994e2f5","87e852324ee3c69c24b13c17a0b9f320d8e3d8eb1d49669ad1d7774b45058265","68947051891fb1dde45efbcc0f562b501658b16f5140d2899c6ffd5746c6a2cc","75b8b33bb1945e875e0d09fea6a6de04f0bd6bb1239d3841683a42118c00e7ed","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","626bccaba2f61f03abe558a39501631565389a748bc47dd52b305c80176333c1","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","e75aea34fc8ed19027ad9e082ebe562594a21d14d520289adc416f846a606ca6","622028afad3e12a65acced3c75ae7726bf56d49c199ec3607be2564fca27aac3","45c269aa1f151a3200ec2d58d52c6458d21fd595881d1a1e804406bc3b58e340","206151e8c1ca17a488134c332d9b743113ee03553e0c3bd6e0a4ebae40cf51a7","0a219ea8ec306caaf53a291af13ce0241f36c98dbfe4657728107efeae95ce51","7de5baa4b52a643d2740398148968188c6a254a17aaa46c706c94452fc8c4f86","3bf9341cd7a1fef9ed8187fc46c44f396e942b587b7edfb1a0225e90d333c5bc","3bceaf07826fed56555629106c544892fa77c28d70238703731fbc0c0bd1943a","1d44cf66f6aaadd2f192a95b1af1270142a6d966b5b4641136060d79b40cdfa6","db515f15908f421edac14e77743e2583d1adc5ff005d051d9013b24e575f0aa3","ddf752b71b7c4c1b09c20cabdd2712305c7c7e815d02a720a7c45f465f9f5578","5ded46b22f516dc8f0f8eeb8bd89130f1a0ad9eef8dfdb8f1cd6849be7ebef90","78cc1f01a03c52299c9621e2c82b98b1589f39bd16a6dce0b1edb5cefcd980ed","e5392016ff99b5f6a53fb57816e13fea7482f71f7bf9d7ca493a15013db46e2f","8f15d54abeeef93a0d41ce96f659078b9f3ba3eb7cf193fc00682f2ff780931c","844883b808444065389a74087db9e61b11d9a5f0d6e44d1abe885540c1d0ff11","404bb2400a069a39f90d792aeb656b86b33365053fa90d45992b1eb12740f316","38492c28c947539347d0c4677eeddc9ec13e9eb4fb2eb7d29cbf6b8cf38aaacb","4a09f82cf471f95f2d392dd33a598ada3a0987e9f8efff160883d004ea4f08bc","aada70df37b186d7f870362533ff395098fdae80a5ab19ed9c41dfe1285aa364","a19e34d8a2f1470c3e353e8d366e7d9e835d19dd78a3122114c5fe52e5a79a60","7949d810d38b5358244cd86e80f0d840cad62caac4a4b3a6a75c6dab78ae29a8","e6dfc1705e93a5d648527d304e4cf0463902d442a64566e3262e7ffba4e38af4","ea22dd065a3ee61e8f5fc53b4f2275e809a09a3f58b98bb66f8fc07050100892","ff1eab0e4b697c10256786b2d62f47a88ae33c3cea17864f13e6f7bf4137c810","bc8e1ef35172e1b9c46cb39e262c0c4c5839732e75c3bf8b4c3a10fe8a6dec97","190ce538265abf5fb250db8d335bce7665eab997ce16a218a189c2978a7a8b8a","2e62ed413051bfbf3978d1f3cde446dbc6fbee5e7a425820d4692dd6cc74563d","8b4034aca6f85bd65594e19eaa642b37fa9f4741f9026ca3ab739c84eb61a1be","4e44566ddea6053606d02c098cfa08ab23167a3baf7fce6a752a94b970096245","4483cf5d918b7448d4dd90477ed0be6634021d16b13822839c6af60f162e57a1","ceaabfa94bb14224bf77de1ec2ad98524ca7f8ac8cfe2b38aec2ca416da6c379","3d818456cf9b63583e99c67aebccca8b5ec05675316048507fa5eefb2abd3123","75ae21b2cb6f0f6e7d03c11ffed85d758f68dbe83d8518ddc9ae538e6ab3563d","10216645929c14d30e3008e2dc772bf6c080ea21fe5d2881b1b37d1e16e434d1","fb25f956967f769385af68d8eba44c159455d497df9265ff69aabfb3a0e64d44","e1737067f587d29e62f67a09b8b7c83047c8dfb84fab774840517597c9ae3859","4df8c6e6764013d5995dd89061af8d8da4fd1c4e94fbc535af68e150c0b74930","022c2921df6a3b481e721e5bc4dc4df70656b3e6445bf573e1ad77ee79274fc0","42e2414802c2b01007ec019171a588249931675e29d61e6eb8cfbcb18a9a1e85","456328f2ba6290e9d85d213de29b9ff1495734bca75cc6b214b05751051addff","45fe7896fd6e269bd3a8c1c6713e07701c127076cdb74f183516b9ba5ea3318f","a21e6b4bebe10b7e0ad199954dff9c5b9813e6552585fd5a944a691d5d0250ed","c7525ce0da03c467948253477743c85a19d4d80af168491ac93f171892b05361","5750131d1fc5684bf3d6dd7e22f64526d3ca52d362676e26e85bf0a573b11c56","9c2b50924961e9da2c7ced6ea9b1119ff68297217345c6bfd74dc927beb07a78","ed1d4eff96e533eb16608d9a02b6c7116d1e2b47c6b8426c7f81297c3bfa4919",{"version":"35923d8d2ffcf70b90c231a2c0d37cb0c2150b06ef67899dafaf8401ef1213e0","signature":"04b5ee89d10f745f9402c2aaf0b0172d95fb136d0b49ed5194adb72a4fe569f6"},{"version":"35dc48b51c52e115005e337a7a1c2a469987193dd07bbfe9c5085b8088ce5519","signature":"8d76f3727475c6c147dbaa7a952910a83de7e96c23021d7625cdef98c95c206c"},{"version":"d3021db469a21de072e28eb6fb9be14880eb739f1b1ede857133114dec06988d","signature":"f848a594e5ecbebed6b9e7a2b62c57466dbf0faede2b27e3538a1c7fe2efb2e1"},{"version":"6601832367b2c1359b16db86700174171375fa7d1403c5558910962ce36fa70a","signature":"52cd14ac0718c0e8764474498076290de91f682d7f46cfed4d9d1a5ad37ed70e"},{"version":"f588c14410dd286b4dfe0ced993404e00c5fc7b260bafa702561b346ef7e1f74","signature":"1aa5c5160d8e690d6d1a013ba816fd278ccb44b628e58fd59fcbf833285a51ec"},{"version":"16c1f3b57781817bac8aea5f77b6c611df4b814549a4f0a64e16beca21edd509","signature":"95abdbf021481c53794a3bd150db5574b83338085f78f1d7aa554e1fea26d461"},{"version":"64c7ef8e37c7cd24a7fb2e0001331f051ffdcfe943d0eb0eeff6050351ceda1d","signature":"229c05560c9e9971794b988fe2c1f8035d6fcb3796400983e5e1ac95bf842fec"},{"version":"3c6e4ae962405a7538f72bbf7f74155b8b35834cf54500888e67a2b8d8246927","signature":"fdd9917f9d17a83349b884342cf02a879c71287215e4d4d8d5891edd2ce0bebc"},{"version":"74045c53c7cf31c3149fc966013b53125758e96e9132df334c3896689cb51a88","signature":"9b1ea80ff901ddbe1c03d85de10548cb7ef0e97f2a127dcf2ea7044c4ab8da4a"},{"version":"592156bdfd71343cbcec115de28ed22530dc089940170625f6c19ec07721d8a7","signature":"a209263fc164880adecdb4368ba7961e981ec5ae9db56db8a9c4f5459a11280a"},{"version":"1a698bf48297094297010c4d22538242f87814921ef0787a71db338e0145371e","signature":"1dc3214b3514d4c469c6653eac3ae222de692001cd569d949a8154bafd14a8aa"},{"version":"381fbea4f6d325b2e49ddd1de41f72ae01491de54da566e892ccc5a4c5e80553","signature":"4f1cefa77cb10b31da8b3cea3f509caaabc673c4d9584b4d29199b3e4392db88","affectsGlobalScope":true},{"version":"805f59daec33b5d243890e4f99d1f7f5e6ab96f6db826e84890d7bc83ecffaca","signature":"5353eb8820d99f91dcc2101e0f25aa9a4324e5d5ffeb8552e034fb38034e206f"},{"version":"c931b09271b6bb01b421149ee079577b35b438dab6451fe53ecf2a05f6fb1602","signature":"cc19b5554216f97795e7e269891d351f34dfa82d6ec1a60c47310a8306ca43b8"}],"root":[[179,183],[239,252]],"options":{"declaration":true,"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":99,"noEmitOnError":true,"noImplicitAny":true,"outDir":"./","strict":true,"target":1},"fileIdsList":[[57,58,105],[57,58,118,119],[57,58],[57,58,113],[57,58,113,114,115,116,117],[57,58,106,107,108,109,110,111,112,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141],[57,58,60],[57,58,66,67,68,69],[57,58,66,68],[57,58,71,73,74],[57,58,71,72],[57,58,76],[54,57,58],[57,58,62,78],[57,58,78],[57,58,81],[57,58,78,79,80],[57,58,78,79,80,81,82],[57,58,63],[57,58,65,66,68],[57,58,60,61],[57,58,84],[57,58,84,85,86],[53,57,58,64],[57,58,88],[57,58,88,89],[53,54,57,58,59,60,61,62,63,64,65,66,67,68,69,70,72,75,76,77,83,87,90,91,92,93,94,95,96,97,98,99,100,101,103,104],[54,57,58,62,63,67],[57,58,70],[57,58,65,67,72],[57,58,65,66],[57,58,65,76],[57,58,60,61,67],[57,58,94],[57,58,66,69,100,101],[57,58,65,70,94,102],[57,58,65],[53,57,58],[57,58,189,190],[56,57,58],[57],[57,58,191],[57,58,149],[57,58,148],[37,57,58,174],[37,57,58,179,180],[37,57,58,179,180,181],[37,57,58,182,248],[37,57,58,174,178,182,183,242,245],[37,57,58,243,246],[37,57,58,174,178,182,183,239,242],[37,57,58,247],[37,57,58],[37,57,58,239,244],[37,57,58,178,238],[37,57,58,240,241],[37,57,58,182,238],[37,57,58,251],[37,57,58,142,174],[57,58,220,221],[57,58,222,223],[57,58,142],[57,58,231,232],[57,58,231],[57,58,230],[57,58,172],[57,58,170],[57,58,170,171],[57,58,235],[47,48,57,58],[49,57,58],[47,57,58],[57,58,159,160],[52,57,58,142],[57,58,144],[57,58,225,226,227,228],[44,57,58],[57,58,150],[57,58,146,147,151,152,153,154,155],[57,58,187],[57,58,199,201,203,206],[57,58,192,193,194],[57,58,199,201,203],[57,58,188,195,199,201,203,204,206,207,212,214,215,218,219],[57,58,199],[57,58,196,197,200],[57,58,196],[57,58,193],[57,58,205],[57,58,209,210,211,212,213],[57,58,210],[57,58,199,208],[57,58,208],[57,58,202],[57,58,193,194],[57,58,216,217],[57,58,142,194],[57,58,142,193,194],[57,58,193,194,198],[39,47,57,58,167,172,173,186,224,229,233,234,236,237],[38,39,40,41,42,47,50,51,52,57,58,143,145,154,156,157,158,161,162,169,173],[57,58,167],[57,58,175,176],[57,58,164],[57,58,164,177],[57,58,163],[39,47,57,58],[41,57,58,167],[39,57,58],[39,57,58,168],[57,58,168,184,185],[39,57,58,165,166],[43,44,45,46,57,58],[174],[180],[179,180,181],[182,248],[245],[243,246],[239],[247],[239,244],[178,238],[240,241],[251],[142,174]],"referencedMap":[[106,1],[107,1],[108,1],[109,1],[110,1],[111,1],[112,1],[120,2],[121,1],[122,3],[123,1],[124,1],[125,1],[126,1],[114,4],[115,1],[113,1],[116,4],[117,4],[118,5],[142,6],[127,1],[128,1],[129,1],[130,1],[131,3],[132,1],[133,1],[134,1],[135,1],[136,1],[137,1],[138,2],[139,1],[140,1],[119,1],[141,1],[53,3],[54,3],[59,3],[61,7],[70,8],[69,9],[71,3],[75,10],[73,11],[74,3],[60,3],[77,12],[62,13],[79,14],[80,15],[82,16],[81,17],[83,18],[78,19],[76,20],[84,21],[85,22],[86,22],[87,23],[65,24],[89,25],[88,3],[90,26],[105,27],[63,3],[68,28],[91,29],[92,3],[66,3],[93,3],[94,30],[95,31],[96,32],[97,33],[98,3],[99,3],[100,34],[72,3],[102,35],[103,36],[101,3],[64,37],[67,20],[104,38],[55,3],[190,3],[191,39],[57,40],[58,41],[56,3],[189,3],[192,42],[37,3],[150,43],[148,3],[149,44],[35,3],[36,3],[7,3],[8,3],[10,3],[9,3],[2,3],[11,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[3,3],[4,3],[22,3],[19,3],[20,3],[21,3],[23,3],[24,3],[25,3],[5,3],[26,3],[27,3],[28,3],[29,3],[6,3],[33,3],[30,3],[31,3],[32,3],[34,3],[1,3],[179,45],[181,46],[182,47],[180,45],[249,48],[246,49],[247,50],[243,51],[248,52],[244,53],[245,54],[239,55],[242,56],[240,57],[241,57],[250,3],[251,53],[252,58],[183,59],[223,60],[222,60],[224,61],[221,62],[233,63],[234,63],[232,64],[230,3],[231,65],[51,3],[173,66],[170,3],[171,67],[172,68],[236,69],[235,3],[49,70],[50,71],[48,72],[160,3],[159,3],[161,73],[143,74],[52,3],[162,3],[144,3],[145,75],[42,3],[228,72],[227,72],[229,76],[226,72],[225,72],[155,3],[154,3],[152,3],[158,77],[38,3],[147,3],[151,78],[146,72],[153,3],[157,72],[156,79],[187,3],[188,80],[207,81],[195,82],[204,83],[220,84],[200,85],[201,86],[197,87],[196,88],[206,89],[205,85],[212,3],[214,90],[211,91],[209,92],[210,93],[208,85],[213,85],[215,3],[203,94],[202,95],[218,96],[217,85],[216,97],[198,98],[193,3],[194,88],[199,99],[219,3],[238,100],[174,101],[237,102],[177,103],[176,104],[175,104],[178,105],[164,106],[163,107],[168,108],[165,104],[41,109],[39,3],[40,109],[166,3],[185,3],[184,109],[169,110],[186,111],[167,112],[43,3],[44,3],[47,113],[45,3],[46,3]],"exportedModulesMap":[[106,1],[107,1],[108,1],[109,1],[110,1],[111,1],[112,1],[120,2],[121,1],[122,3],[123,1],[124,1],[125,1],[126,1],[114,4],[115,1],[113,1],[116,4],[117,4],[118,5],[142,6],[127,1],[128,1],[129,1],[130,1],[131,3],[132,1],[133,1],[134,1],[135,1],[136,1],[137,1],[138,2],[139,1],[140,1],[119,1],[141,1],[53,3],[54,3],[59,3],[61,7],[70,8],[69,9],[71,3],[75,10],[73,11],[74,3],[60,3],[77,12],[62,13],[79,14],[80,15],[82,16],[81,17],[83,18],[78,19],[76,20],[84,21],[85,22],[86,22],[87,23],[65,24],[89,25],[88,3],[90,26],[105,27],[63,3],[68,28],[91,29],[92,3],[66,3],[93,3],[94,30],[95,31],[96,32],[97,33],[98,3],[99,3],[100,34],[72,3],[102,35],[103,36],[101,3],[64,37],[67,20],[104,38],[55,3],[190,3],[191,39],[57,40],[58,41],[56,3],[189,3],[192,42],[37,3],[150,43],[148,3],[149,44],[35,3],[36,3],[7,3],[8,3],[10,3],[9,3],[2,3],[11,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[3,3],[4,3],[22,3],[19,3],[20,3],[21,3],[23,3],[24,3],[25,3],[5,3],[26,3],[27,3],[28,3],[29,3],[6,3],[33,3],[30,3],[31,3],[32,3],[34,3],[1,3],[179,114],[181,115],[182,116],[180,114],[249,117],[246,118],[247,119],[243,120],[248,121],[245,122],[239,123],[242,124],[252,125],[183,126],[223,60],[222,60],[224,61],[221,62],[233,63],[234,63],[232,64],[230,3],[231,65],[51,3],[173,66],[170,3],[171,67],[172,68],[236,69],[235,3],[49,70],[50,71],[48,72],[160,3],[159,3],[161,73],[143,74],[52,3],[162,3],[144,3],[145,75],[42,3],[228,72],[227,72],[229,76],[226,72],[225,72],[155,3],[154,3],[152,3],[158,77],[38,3],[147,3],[151,78],[146,72],[153,3],[157,72],[156,79],[187,3],[188,80],[207,81],[195,82],[204,83],[220,84],[200,85],[201,86],[197,87],[196,88],[206,89],[205,85],[212,3],[214,90],[211,91],[209,92],[210,93],[208,85],[213,85],[215,3],[203,94],[202,95],[218,96],[217,85],[216,97],[198,98],[193,3],[194,88],[199,99],[219,3],[238,100],[174,101],[237,102],[177,103],[176,104],[175,104],[178,105],[164,106],[163,107],[168,108],[165,104],[41,109],[39,3],[40,109],[166,3],[185,3],[184,109],[169,110],[186,111],[167,112],[43,3],[44,3],[47,113],[45,3],[46,3]],"semanticDiagnosticsPerFile":[106,107,108,109,110,111,112,120,121,122,123,124,125,126,114,115,113,116,117,118,142,127,128,129,130,131,132,133,134,135,136,137,138,139,140,119,141,53,54,59,61,70,69,71,75,73,74,60,77,62,79,80,82,81,83,78,76,84,85,86,87,65,89,88,90,105,63,68,91,92,66,93,94,95,96,97,98,99,100,72,102,103,101,64,67,104,55,190,191,57,58,56,189,192,37,150,148,149,35,36,7,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,1,179,181,182,180,249,246,247,243,248,244,245,239,242,240,241,250,251,252,183,223,222,224,221,233,234,232,230,231,51,173,170,171,172,236,235,49,50,48,160,159,161,143,52,162,144,145,42,228,227,229,226,225,155,154,152,158,38,147,151,146,153,157,156,187,188,207,195,204,220,200,201,197,196,206,205,212,214,211,209,210,208,213,215,203,202,218,217,216,198,193,194,199,219,238,174,237,177,176,175,178,164,163,168,165,41,39,40,166,185,184,169,186,167,43,44,47,45,46]},"version":"5.0.2"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/tslib/tslib.d.ts","../../core/lib-esm/Util/JS.d.ts","../../core/lib-esm/singleton/API/types.d.ts","../../core/lib-esm/singleton/Auth/types.d.ts","../../core/lib-esm/types/core.d.ts","../../core/lib-esm/types/errors.d.ts","../../core/lib-esm/types/logging.d.ts","../../core/lib-esm/types/storage.d.ts","../../core/lib-esm/types/index.d.ts","../../core/lib-esm/providers/pinpoint/types/pinpoint.d.ts","../../core/lib-esm/providers/pinpoint/types/index.d.ts","../../core/lib-esm/singleton/Analytics/types.d.ts","../../core/lib-esm/singleton/Storage/types.d.ts","../../core/lib-esm/singleton/types.d.ts","../../core/lib-esm/parseAWSExports.d.ts","../../core/lib-esm/singleton/Auth/utils/index.d.ts","../../core/lib-esm/singleton/Auth/index.d.ts","../../core/lib-esm/Signer.d.ts","../../core/lib-esm/Logger/logger-interface.d.ts","../../core/lib-esm/Logger/ConsoleLogger.d.ts","../../core/lib-esm/Logger/index.d.ts","../../core/lib-esm/ClientDevice/index.d.ts","../../core/lib-esm/Platform/types.d.ts","../../../node_modules/@smithy/types/dist-types/abort.d.ts","../../../node_modules/@smithy/types/dist-types/auth.d.ts","../../../node_modules/@types/events/index.d.ts","../../../node_modules/@types/node/inspector.d.ts","../../../node_modules/@types/node/base.d.ts","../../../node_modules/@types/node/index.d.ts","../../../node_modules/@smithy/types/dist-types/blob/blob-payload-input-types.d.ts","../../../node_modules/@smithy/types/dist-types/crypto.d.ts","../../../node_modules/@smithy/types/dist-types/checksum.d.ts","../../../node_modules/@smithy/types/dist-types/endpoint.d.ts","../../../node_modules/@smithy/types/dist-types/logger.d.ts","../../../node_modules/@smithy/types/dist-types/uri.d.ts","../../../node_modules/@smithy/types/dist-types/http.d.ts","../../../node_modules/@smithy/types/dist-types/response.d.ts","../../../node_modules/@smithy/types/dist-types/util.d.ts","../../../node_modules/@smithy/types/dist-types/middleware.d.ts","../../../node_modules/@smithy/types/dist-types/command.d.ts","../../../node_modules/@smithy/types/dist-types/client.d.ts","../../../node_modules/@smithy/types/dist-types/connection/config.d.ts","../../../node_modules/@smithy/types/dist-types/transfer.d.ts","../../../node_modules/@smithy/types/dist-types/connection/manager.d.ts","../../../node_modules/@smithy/types/dist-types/connection/pool.d.ts","../../../node_modules/@smithy/types/dist-types/connection/index.d.ts","../../../node_modules/@smithy/types/dist-types/eventStream.d.ts","../../../node_modules/@smithy/types/dist-types/encode.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/shared.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/EndpointRuleObject.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/ErrorRuleObject.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/TreeRuleObject.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/RuleSetObject.d.ts","../../../node_modules/@smithy/types/dist-types/endpoints/index.d.ts","../../../node_modules/@smithy/types/dist-types/identity/identity.d.ts","../../../node_modules/@smithy/types/dist-types/identity/awsCredentialIdentity.d.ts","../../../node_modules/@smithy/types/dist-types/identity/index.d.ts","../../../node_modules/@smithy/types/dist-types/pagination.d.ts","../../../node_modules/@smithy/types/dist-types/profile.d.ts","../../../node_modules/@smithy/types/dist-types/retry.d.ts","../../../node_modules/@smithy/types/dist-types/serde.d.ts","../../../node_modules/@smithy/types/dist-types/shapes.d.ts","../../../node_modules/@smithy/types/dist-types/signature.d.ts","../../../node_modules/@smithy/types/dist-types/stream.d.ts","../../../node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-common-types.d.ts","../../../node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-input-types.d.ts","../../../node_modules/@smithy/types/dist-types/streaming-payload/streaming-blob-payload-output-types.d.ts","../../../node_modules/@smithy/types/dist-types/transform/type-transform.d.ts","../../../node_modules/@smithy/types/dist-types/transform/client-method-transforms.d.ts","../../../node_modules/@smithy/types/dist-types/transform/client-payload-blob-type-narrow.d.ts","../../../node_modules/@smithy/types/dist-types/waiter.d.ts","../../../node_modules/@smithy/types/dist-types/index.d.ts","../../../node_modules/@aws-sdk/types/dist-types/abort.d.ts","../../../node_modules/@aws-sdk/types/dist-types/auth.d.ts","../../../node_modules/@aws-sdk/types/dist-types/blob/blob-types.d.ts","../../../node_modules/@aws-sdk/types/dist-types/checksum.d.ts","../../../node_modules/@aws-sdk/types/dist-types/client.d.ts","../../../node_modules/@aws-sdk/types/dist-types/command.d.ts","../../../node_modules/@aws-sdk/types/dist-types/connection.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/Identity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/AnonymousIdentity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/AwsCredentialIdentity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/LoginIdentity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/TokenIdentity.d.ts","../../../node_modules/@aws-sdk/types/dist-types/identity/index.d.ts","../../../node_modules/@aws-sdk/types/dist-types/util.d.ts","../../../node_modules/@aws-sdk/types/dist-types/credentials.d.ts","../../../node_modules/@aws-sdk/types/dist-types/crypto.d.ts","../../../node_modules/@aws-sdk/types/dist-types/dns.d.ts","../../../node_modules/@aws-sdk/types/dist-types/encode.d.ts","../../../node_modules/@aws-sdk/types/dist-types/endpoint.d.ts","../../../node_modules/@aws-sdk/types/dist-types/eventStream.d.ts","../../../node_modules/@aws-sdk/types/dist-types/http.d.ts","../../../node_modules/@aws-sdk/types/dist-types/logger.d.ts","../../../node_modules/@aws-sdk/types/dist-types/middleware.d.ts","../../../node_modules/@aws-sdk/types/dist-types/pagination.d.ts","../../../node_modules/@aws-sdk/types/dist-types/profile.d.ts","../../../node_modules/@aws-sdk/types/dist-types/request.d.ts","../../../node_modules/@aws-sdk/types/dist-types/response.d.ts","../../../node_modules/@aws-sdk/types/dist-types/retry.d.ts","../../../node_modules/@aws-sdk/types/dist-types/serde.d.ts","../../../node_modules/@aws-sdk/types/dist-types/shapes.d.ts","../../../node_modules/@aws-sdk/types/dist-types/signature.d.ts","../../../node_modules/@aws-sdk/types/dist-types/stream.d.ts","../../../node_modules/@aws-sdk/types/dist-types/token.d.ts","../../../node_modules/@aws-sdk/types/dist-types/transfer.d.ts","../../../node_modules/@aws-sdk/types/dist-types/uri.d.ts","../../../node_modules/@aws-sdk/types/dist-types/waiter.d.ts","../../../node_modules/@aws-sdk/types/dist-types/index.d.ts","../../core/lib-esm/Platform/index.d.ts","../../core/lib-esm/ServiceWorker/ServiceWorker.d.ts","../../core/lib-esm/ServiceWorker/index.d.ts","../../core/lib-esm/Util/Retry.d.ts","../../core/lib-esm/Util/Mutex.d.ts","../../../node_modules/zen-observable-ts/lib/types.d.ts","../../../node_modules/zen-observable-ts/lib/zenObservable.d.ts","../../../node_modules/zen-observable-ts/lib/index.d.ts","../../core/lib-esm/Util/Reachability.d.ts","../../core/lib-esm/Util/DateUtils.d.ts","../../core/lib-esm/Util/StringUtils.d.ts","../../core/lib-esm/Util/Constants.d.ts","../../core/lib-esm/Util/BackgroundProcessManager.d.ts","../../core/lib-esm/Util/index.d.ts","../../core/lib-esm/Util/errors/AssertError.d.ts","../../core/lib-esm/Util/Errors.d.ts","../../core/lib-esm/singleton/Amplify.d.ts","../../core/lib-esm/singleton/apis/internal/fetchAuthSession.d.ts","../../core/lib-esm/Hub/types/AuthTypes.d.ts","../../core/lib-esm/Hub/types/HubTypes.d.ts","../../core/lib-esm/Hub/types/index.d.ts","../../core/lib-esm/Hub/index.d.ts","../../core/lib-esm/libraryUtils.d.ts","../../core/lib-esm/providers/pinpoint/apis/updateEndpoint.d.ts","../../core/lib-esm/providers/pinpoint/apis/record.d.ts","../../core/lib-esm/providers/pinpoint/apis/index.d.ts","../../core/lib-esm/providers/pinpoint/index.d.ts","../src/errors/AnalyticsError.ts","../src/errors/validation.ts","../src/errors/assertValidationError.ts","../src/errors/index.ts","../src/utils/userAgent.ts","../src/providers/pinpoint/types/errors.ts","../../core/lib-esm/singleton/apis/fetchAuthSession.d.ts","../../core/lib-esm/singleton/apis/clearCredentials.d.ts","../../core/lib-esm/singleton/index.d.ts","../../core/lib-esm/clients/endpoints/getDnsSuffix.d.ts","../../core/lib-esm/clients/endpoints/index.d.ts","../../core/lib-esm/clients/types/core.d.ts","../../core/lib-esm/clients/types/http.d.ts","../../core/lib-esm/clients/handlers/fetch.d.ts","../../core/lib-esm/clients/middleware/retry/middleware.d.ts","../../core/lib-esm/clients/middleware/retry/jitteredBackoff.d.ts","../../core/lib-esm/clients/types/aws.d.ts","../../core/lib-esm/clients/types/index.d.ts","../../core/lib-esm/clients/middleware/retry/defaultRetryDecider.d.ts","../../core/lib-esm/clients/middleware/retry/index.d.ts","../../core/lib-esm/clients/middleware/userAgent/middleware.d.ts","../../core/lib-esm/clients/middleware/userAgent/index.d.ts","../../core/lib-esm/clients/handlers/unauthenticated.d.ts","../../core/lib-esm/clients/middleware/signing/middleware.d.ts","../../core/lib-esm/clients/middleware/signing/index.d.ts","../../core/lib-esm/clients/handlers/authenticated.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/types/signer.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/signRequest.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/types/index.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/presignUrl.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/constants.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/utils/getHashedPayload.d.ts","../../core/lib-esm/clients/middleware/signing/signer/signatureV4/index.d.ts","../../core/lib-esm/clients/middleware/signing/utils/extendedEncodeURIComponent.d.ts","../../core/lib-esm/clients/serde/responseInfo.d.ts","../../core/lib-esm/clients/serde/json.d.ts","../../core/lib-esm/clients/serde/index.d.ts","../../core/lib-esm/clients/utils/memoization.d.ts","../../core/lib-esm/clients/index.d.ts","../../core/lib-esm/AwsClients/CognitoIdentity/types.d.ts","../../core/lib-esm/AwsClients/CognitoIdentity/getId.d.ts","../../core/lib-esm/AwsClients/CognitoIdentity/getCredentialsForIdentity.d.ts","../../core/lib-esm/AwsClients/CognitoIdentity/index.d.ts","../../core/lib-esm/storage/KeyValueStorage.d.ts","../../core/lib-esm/storage/DefaultStorage.d.ts","../../core/lib-esm/storage/SessionStorage.d.ts","../../core/lib-esm/storage/CookieStorage.d.ts","../../core/lib-esm/storage/index.d.ts","../../core/lib-esm/Cache/types/Cache.d.ts","../../core/lib-esm/Cache/types/index.d.ts","../../core/lib-esm/Cache/StorageCache.d.ts","../../core/lib-esm/Cache/BrowserStorageCache.d.ts","../../core/lib-esm/Cache/InMemoryCache.d.ts","../../core/lib-esm/I18n/types.d.ts","../../core/lib-esm/I18n/index.d.ts","../../core/lib-esm/index.d.ts","../src/providers/pinpoint/types/inputs.ts","../src/providers/pinpoint/types/index.ts","../src/providers/pinpoint/utils/resolveConfig.ts","../src/providers/pinpoint/utils/resolveCredentials.ts","../src/providers/pinpoint/utils/index.ts","../src/providers/pinpoint/apis/record.ts","../src/providers/pinpoint/apis/identifyUser.ts","../src/providers/pinpoint/apis/index.ts","../src/providers/pinpoint/index.ts","../src/index.ts","../src/setupTests.ts","../src/types/analytics.ts","../src/types/index.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7",{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true},{"version":"9a60b92bca4c1257db03b349d58e63e4868cfc0d1c8d0ba60c2dbc63f4e6c9f6","affectsGlobalScope":true},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","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":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"95f22ce5f9dbcfc757ff850e7326a1ba1bc69806f1e70f48caefa824819d6f4f","affectsGlobalScope":true},"7a1971efcba559ea9002ada4c4e3c925004fb67a755300d53b5edf9399354900","b07b765c7407b972ab62b6edc374e6295ea233cd54892bb5432e0c0022b41a95","ce372e42ef5430cccae0248ecb29a03f973ec6dc39894270fd94947ab7358b5d","84c5807dc645f3585203fe1e62682fc7ffa7ba5a4fef10922d967d1e0555f780","d168c2128bb332790986a36ea42c110b235043910d27723c74d9b55920860fe0","cdf6c6e9bcd76ee15dffe37b0457d563e1f6809204b839563556cc5d1003bbc1","93435d0cb12c02ea8de08c8d58e1bba2badb01f9c94bcfab450308a3dba84a97","62fb62d6e03c94e6269a4f1a64077f97ac65265af075f3554708616f86968b9c","e4e57c7707a3fcd8f9e05b019f657731c14ee6eac1e1c4b8658e64874b4389ca","ca78a077f1eca40fefd5486dda297b19a1de1c01b8b36f243da8ba98e3976840","4719d02184cf8209c2bb62e01d319f4452260159efdcdb04ceccb80468db87b8","918cf1ba151c31cb372e2366b88a84bbad57953a8e8becbdf5629257a280b665","9b1f66012e58888f1bd2f5b8b749784d7d592ad7d5ac48972511e2e942161e96","7329a213f0ce82933ad95f8fb487aec4d93c6323213b1cdb3d1d9fbe3bdc2da8","9c2b50924961e9da2c7ced6ea9b1119ff68297217345c6bfd74dc927beb07a78","49fda21cc71dd79e0f8863f780510cd0e17463627329f8de3f022534ab5efcd6","702d32653e4f248e6abac940c03a9f1ab1cf87bbde61493e1a491648cc7f73bf","a4ec97372c9fbe46f63967913148522b5966b77a1c58516ad4e5b8f168fc9ce1","31dcc0a044f6ec34e633f24d50a68af9b28fce321ac88f91398ac0d5b95569f5","9339629f426a34250a332e83c468c433a401139eee914790c55d2518320417d9","2a9dd23cd43596eeda1866c1086fbcf2cdb4abf17994bc8a6b9656fe8062b4cb","edf7f975df241cc98c9f4c51aab781f4ecfc884ff6ce03cfd3c59a19a7e729b8","419f10aa9fe307eb5e0b0d410a096d22126c75b36c7a9eb0c17d96c15a5e346f","c55ae709f94155174ff63647edd2a7e3acbd02a2909aa2541569e8b8bac9fc40","dccbb9e0b7e4c3585234775219e1c2d9dc43e717a84c56941bfc7523d4bceca0","400db42c3a46984118bff14260d60cec580057dc1ab4c2d7310beb643e4f5935","7e49dbf1543b3ee54853ade4c5e9fa460b6a4eca967efe6bf943e0c505d087ed",{"version":"4450cc7b485b116b876cfe3e57d82b76464d6aee1ecefe0bf5ffc03ad9f13cf7","affectsGlobalScope":true},"9f0963be7caec23db8944f66bacb623a7bc7391520125845087241a270e9b3ce","81d8b494be2d4665e017c19095362ca9d8422646c4124d4e40edc48a049e6031","017de6fdabea79015d493bf71e56cbbff092525253c1d76003b3d58280cd82a0","ab9ea2596cb7800bd79d1526930c785606ec4f439c275adbca5adc1ddf87747d","5d514a639cfd3ffd8af8094fc05ea4e8d276946d0069ebff273d6a07ec4f8abd","4d2b263907b8c03c5b2df90e6c1f166e9da85bd87bf439683f150afc91fce7e7","c70e38e0f30b7c0542af9aa7e0324a23dd2b0c1a64e078296653d1d3b36fa248","d12680e217215b37094868d491d00196e80f270ce47e5a4bc50269945ae5554d","396c2c14fa408707235d761a965bd84ce3d4fc3117c3b9f1404d6987d98a30d6","5866f85b79bae844211df93770e10e68298d934f2aed751e7a5cdf9ab59f76dc","6300ebd0fcb387c55e37c1b8ab2ab8d47605bb4d9ea8651c63ee76bb832ee024","aee8faa433dde04beedb779b3329456a286a966462d666c138c19113ce78c79e","b7e9c39f7edd1ecd2c3d73b753213a0834144d82ac2a67230c1d291d25430a2e","4e693235d606287d6b5a4e7d572f190862b93ea4a28df8a63fc328aa8becdc9d","e58d1ea2fc84c9c03742b4f56449b7d4602c8c4deb4f0e57c619bab35bbbbf81","d82bc1f8fe8eef55aa741373da68b80a8503228c9aa0ec46bdd38fd7e0c02a18","d7c7f8a461326507d90d0888efff0c4011a5e69eb08ccb990232aa22334e4dd6","5af5ebe8c9b84f667cd047cfcf1942d53e3b369dbd63fbea2a189bbf381146c6","27deb39ac0921db739b503407dc9aa93a546b015c06738bc8b66bdf0ae593c7c","eff5b8bdfe94c0a174484a6de01e802fb66f99f8737a20e4fba4df05c2f24cea","52fa3a4f47e30ef266dbda3b69821fe5811be4faad2b266586090d8b4806342e","5cb6f9ea4a097094fe624c3513111292690e39e83167a412f8912807be71ca65","fa461c83b2adc6b33997a95335d19723bddd4d7aaff41cac6f9f817e3c3ae730","d9eed4a308aeb32babee0600d21c3a3ba8452c89e8a4916e5460b45da147c33c","96812f4fe12e18d14ca12f9af2be3a0ecc4f07859a298dd822aba0bd7cca423d","e647d13de80e1b6b4e1d94363ea6f5f8f77dfb95d562748b488a7248af25aabf","07863eea4f350458f803714350e43947f7f73d1d67a9ddf747017065d36b073a","9252778562c2587c88775bf9e8a474a2ac51d562fff90b0ab240b51d0248f16d","a57e2e11a5c279edfa86c59c822e2cbaad9776b9ad90b3936815fec0dcb5d18e","230ead17dc76009af0147a17e3ca1885e3bfa861dfb307b2e353b0ad20bf48f3","d1abdb6b55d9657539f59a08e115f81e3606404cae89bceb8c8db732dfc92a0a","16a6f76f6507cc76012cfd3954136a41a58db595231c2f9bfaf35eca6b25346c","c5f2cdab01270375da7f5c3ae12157d529938533f0145fa0df91735a96cc1a65","53522a2c33f9196ef05e72118a009c6ae717265e5b0eac3ee6bdc8305e8dde2e","9da2c58a27fdce871c2eac09d5172b04248bb86ada9b0d10e8b3dfa8470b8dd3","5c317403752871838140f70879b09509e37422e92e7364b4363c7b179310ee44","78bc52637a67f2815407bdf87c857b4af9e43214ef711a091bc9a4a749b73487","5df51db7d128af1aab9e78500f2278a841a61120598a8e3f53ced8a8b06b0174","0b1e4cee9abaf79ef53d736bb4b50a2b0c19733cbaf8bbc6e480d81fb1b91b3f","057cac07c7bc5abdcfba44325fcea4906dff7919a3d7d82d4ec40f8b4c90cf2f","38aa389acf91d77db5a4f8e26e713ed53dc832ed5573def9cd20acd9ba97c1fe","65f20bda7afd3738c59db566dc94ff98a9e22b87d39bc259351d9e4201ab2595","b9115605f72b65a662723020b2a1eb696c375a5803d6b401dc01fcbfe49ece90","bc72d80dbeca9f95dbb8f851438233824778a90f458f75666706d26634822cd9","a54f60678f44415d01a810ca27244e04b4dde3d9b6d9492874262f1a95e56c7d","84058607d19ac1fdef225a04832d7480478808c094cbaedbceda150fa87c7e25","415d60633cf542e700dc0d6d5d320b31052efbdc519fcd8b6b30a1f992ef6d5c","901c640dced9243875645e850705362cb0a9a7f2eea1a82bb95ed53d162f38dd","ebb0d92294fe20f62a07925ce590a93012d6323a6c77ddce92b7743fa1e9dd20","b499f398b4405b9f073b99ad853e47a6394ae6e1b7397c5d2f19c23a4081f213","ef2cbb05dee40c0167de4e459b9da523844707ab4b3b32e40090c649ad5616e9","068a22b89ecc0bed7182e79724a3d4d3d05daacfe3b6e6d3fd2fa3d063d94f44","3f2009badf85a479d3659a735e40607d9f00f23606a0626ae28db3da90b8bf52","fd80c03dca7c1c9b56d6845c3b94c67bf082b72e7e0108a2dfd2c0dec03fb53f","d32b5a3d39b581f0330bd05a5ef577173bd1d51166a7fff43b633f0cc8020071","d97766e9af30de9f96c7a5e8d7d6b3e39a269b8bd011083bd3745be7bd532b13","363dd28f6a218239fbd45bbcc37202ad6a9a40b533b3e208e030137fa8037b03","c6986e90cf95cf639f7f55d8ca49c7aaf0d561d47e6d70ab6879e40f73518c8d","fa2a8e2cc0bde051290d89f15a7b8f4db16d71cf67892be2bf4fca8cc2c3b338","1518707348d7bd6154e30d49487ba92d47b6bd9a32d320cd8e602b59700b5317","ede55f9bac348427d5b32a45ad7a24cc6297354289076d50c68f1692add61bce","d53a7e00791305f0bd04ea6e4d7ea9850ccc3538877f070f55308b3222f0a793","4ea5b45c6693288bb66b2007041a950a9d2fe765e376738377ba445950e927f6","7f25e826bfabe77a159a5fec52af069c13378d0a09d2712c6373ff904ba55d4b","c30b346ad7f4df2f7659f5b3aff4c5c490a1f4654e31c44c839292c930199649","48f1a1b9f15770d9a64b51c596f9569f262fc7e67d7767595068a69539d32939","a83a104129a183f71c203f3a680486abe808895917c4c8380b312161e17b84db","64269ed536e2647e12239481e8287509f9ee029cbb11169793796519cc37ecd4","c06fd8688dd064796b41170733bba3dcacfaf7e711045859364f4f778263fc7b","b0a8bf71fea54a788588c181c0bffbdd2c49904075a7c9cb8c98a3106ad6aa6d","434c5a40f2d5defeede46ae03fb07ed8b8c1d65e10412abd700291b24953c578","c5a6184688526f9cf53e3c9f216beb2123165bfa1ffcbfc7b1c3a925d031abf7",{"version":"cd548f9fcd3cebe99b5ba91ae0ec61c3eae50bed9bc3cfd29d42dcfc201b68b5","affectsGlobalScope":true},"14a8ec10f9faf6e0baff58391578250a51e19d2e14abcc6fc239edb0fb4df7c5","81b0cf8cd66ae6736fd5496c5bbb9e19759713e29c9ed414b00350bd13d89d70","4992afbc8b2cb81e0053d989514a87d1e6c68cc7dedfe71f4b6e1ba35e29b77a","f15480150f26caaccf7680a61c410a07bd4c765eedc6cbdca71f7bca1c241c32","1c390420d6e444195fd814cb9dc2d9ca65e86eb2df9c1e14ff328098e1dc48ae","ec8b45e83323be47c740f3b573760a6f444964d19bbe20d34e3bca4b0304b3ad","ab8b86168ceb965a16e6fc39989b601c0857e1fd3fd63ff8289230163b114171","25a6f013a17350c81854e5a62c01aa24841e2219d5d95da5946890d3d8cbdcdf","52470c64ff42d847d24be31b19aff4d39c4a74b2073de6cc7fb95545ef8d87a5","b0e330349eae981f3a980231098a9617358aa39d024c16e23d2300ebdf1bcd92","71282feddaf48e9f4e7b9f4424212fea6ef6d10e077782d19f06c1c10e883b57","04fdd290883caeddaba1daea7785ab6466ed7ee3b1e427da306e83705029bcd4","3f90d3efbeabab0fecf21a642dd0bc3a2fc4e5ce0f95ceb3efcb62ebe6f51e02","b9bd24b171b907a61f153e14a41c8898ea6e106b655329e16b75af2e74153514","5192439c9b51f8092412c50911ffb41a08ad4501f4c6fc46257fda58fdd9d211","8e2dff92f635c8e5438be2a53e3222c4e379e5a2a89811201fb34079b773e0e0","2b3fd32b91b46728c0e51eea7193f08be3494e7b4a53210a800c71839ac16346","5310895182becfe8588f89e9e7aebf9187898ede63d176c97f1c0462c60ae39e","265e6c1ff2cb6ba60eb77a60fa1281a41001c86f07ea636d3fb3c15ef2456b47","f6a54a2736a573dca953e93da8b17fc88920f4025edb5615a556b9eff4107eb7","cd2ca6c6ff07f39fc35ecac63814e20754d923ad1248717a66a8079bcd1fd5ff","b03ea4fde2350f177062b5c1ef2a6966447c4410601b98f28172317cf562ffc9","ed612e03e2e1effa29f252872a9ddeef44f835f5634c0d455b2e32fa5fc78e49","cb1c05f9a414177a5b4ad06287955814090954a300e6f1f8543a976bc7f5e50c","2ff57bdf0a0ce1bdffb532e5ef5d55411a1cd11254cd66dfd753041eb68d353b","e02f9f6928bd974cc18803419ecc30e12dc39fb3c4383eaa897bf8d868135ef1","6f6df1f586b5edf4d529d07b3535edea07e5cacfd895c81dda133f8359d22e6b","9a23afdd036a23560984aeeec5dbdfc3ddd3e50bd8ca87929fca3d0a13292148","2b57988ad287ad13fd9abceb983fe2e8d16906d0abb910696de8da426e8002a2","2077e93daeb39cd72b5f35797d8f71ecae21760d54f5d3753847f8e8ec0e6441","3e79c2c69bed15b0f4fbc0043b9d5e751a98d4961e8c532551863d799c377ada","8a92805c917ba796c3e41272566404af479e493f56633c36f7573293209afdc8","37537c88fea9f12e2e6b26c0a7950bb1a6d7e59797ca99f1f04f8cca7ee6931b","84a309e98ab0ebd0ec9f441a12f44bd1ca07ae8180cf71b185d5cdc74a942a9f","dc7192ead27a652fee22e9bb4b32f6ed5c0f98762cd8955b697e258d9f3e4529",{"version":"66d826e2413ce829841754cac2e715eb41cc581a9b3357d99d267267a1491b7b","signature":"3fcb9a6a2cd2d8ae5f8a76f1f5fca7fc8ca51e49a8d6eecbfa6177df77096094"},{"version":"4373fd8f9b51c144d43b2ca56d9a31beda446921428c25e8dee87c39cfe54964","signature":"7c9cc5fe99ec6b741898260aa19c9983757ac0f479476c4f641db48a759c9dd7"},{"version":"c29a80bf3a5140763c19c09219000f1991cd1be5c9198f415fe74d062f9c717c","signature":"8c2430bba9f38c9717ca1aa2d0aefb1c0005b6591e650640e8a08a911095fb28"},{"version":"1c719c619ee01098654db44c182ba8ae6df124076d55f66599a5d9a61c820b6e","signature":"0ea18cafa6cc99063618706dbef248a0213639a8338dbdd80a99a781f9289377"},{"version":"6b35b6c881fb30d059506ff319c5a21020c1568107885b1a111653aae4c034f1","signature":"c9783cd5c2cf8b6658110818c02eef33cc70dafa4c259e0d8e1b4d357d01b665"},{"version":"16c1f3b57781817bac8aea5f77b6c611df4b814549a4f0a64e16beca21edd509","signature":"95abdbf021481c53794a3bd150db5574b83338085f78f1d7aa554e1fea26d461"},"df1a1f23d18a3dac758a03f4f8f6a3d14e83fb78a45431d15e6833fb53ed8055","21fa3aaad5d8cbfa85395e4eae75972ab8333020b001b4585f4b8ec81994e2f5","87e852324ee3c69c24b13c17a0b9f320d8e3d8eb1d49669ad1d7774b45058265","68947051891fb1dde45efbcc0f562b501658b16f5140d2899c6ffd5746c6a2cc","75b8b33bb1945e875e0d09fea6a6de04f0bd6bb1239d3841683a42118c00e7ed","622028afad3e12a65acced3c75ae7726bf56d49c199ec3607be2564fca27aac3","7784419956b37af55a9b17e20ef076c61a1e245b577e7b4ec0ff3ea347f3064c","9e6390c460ca50e0b768107f2be5a14f3da4adb6e775ada0f239d2b3be5732c5","0a219ea8ec306caaf53a291af13ce0241f36c98dbfe4657728107efeae95ce51","7de5baa4b52a643d2740398148968188c6a254a17aaa46c706c94452fc8c4f86","0da837840ba21f91b1f9c3c8450cc4f81510b38005ac42c2cd0da4a37e414740","552f15c117a4c13bdd11903a0de928e29dcda845a6aaf9fc5388a26304b96233","1d44cf66f6aaadd2f192a95b1af1270142a6d966b5b4641136060d79b40cdfa6","db515f15908f421edac14e77743e2583d1adc5ff005d051d9013b24e575f0aa3","ddf752b71b7c4c1b09c20cabdd2712305c7c7e815d02a720a7c45f465f9f5578","5ded46b22f516dc8f0f8eeb8bd89130f1a0ad9eef8dfdb8f1cd6849be7ebef90","74bb817a79884249a393466dda60df28f2d2c7a583facba4012ef1d27fb9d4d4","e5392016ff99b5f6a53fb57816e13fea7482f71f7bf9d7ca493a15013db46e2f","8f15d54abeeef93a0d41ce96f659078b9f3ba3eb7cf193fc00682f2ff780931c","c36b9847b1c3f8b837c3a2501b1d2f2605d5dcc3730d59bb22eaecd3b894b0cf","404bb2400a069a39f90d792aeb656b86b33365053fa90d45992b1eb12740f316","38492c28c947539347d0c4677eeddc9ec13e9eb4fb2eb7d29cbf6b8cf38aaacb","4a09f82cf471f95f2d392dd33a598ada3a0987e9f8efff160883d004ea4f08bc","aada70df37b186d7f870362533ff395098fdae80a5ab19ed9c41dfe1285aa364","a19e34d8a2f1470c3e353e8d366e7d9e835d19dd78a3122114c5fe52e5a79a60","7949d810d38b5358244cd86e80f0d840cad62caac4a4b3a6a75c6dab78ae29a8","e6dfc1705e93a5d648527d304e4cf0463902d442a64566e3262e7ffba4e38af4","ea22dd065a3ee61e8f5fc53b4f2275e809a09a3f58b98bb66f8fc07050100892","ff1eab0e4b697c10256786b2d62f47a88ae33c3cea17864f13e6f7bf4137c810","bc8e1ef35172e1b9c46cb39e262c0c4c5839732e75c3bf8b4c3a10fe8a6dec97","190ce538265abf5fb250db8d335bce7665eab997ce16a218a189c2978a7a8b8a","2e62ed413051bfbf3978d1f3cde446dbc6fbee5e7a425820d4692dd6cc74563d","8b4034aca6f85bd65594e19eaa642b37fa9f4741f9026ca3ab739c84eb61a1be","4e44566ddea6053606d02c098cfa08ab23167a3baf7fce6a752a94b970096245","a905e2a4d34f5b9689f081aeae3ac6f66f6b9b74d26e3fea0d680abddb9440b5","c129eb7ae39d46b088611e72e42f2eca6aa881bd22a930030364840cf6b7dd34","3d818456cf9b63583e99c67aebccca8b5ec05675316048507fa5eefb2abd3123","35587060a6244e9b10629024cd12ab34ab7e874379a9761e61aca06847981fec","56cd67ee37e8b99f38be9096472df3defcef640fca4ae8cb68c495d105b68aeb","54adf87084900e062a22a02e0e2b3bb9c862ce3b0af04af452cc2cac1539f58c","15a3d1c6f23a3c7015c3d718bd8ddaffe9de21e5f4baf57998a188ce36698eb3","09f8c424b8d8394a44bf731306d0022eef5f9b18845cb796da2cc4d4d49b5795","022c2921df6a3b481e721e5bc4dc4df70656b3e6445bf573e1ad77ee79274fc0","42e2414802c2b01007ec019171a588249931675e29d61e6eb8cfbcb18a9a1e85","456328f2ba6290e9d85d213de29b9ff1495734bca75cc6b214b05751051addff","45fe7896fd6e269bd3a8c1c6713e07701c127076cdb74f183516b9ba5ea3318f","a21e6b4bebe10b7e0ad199954dff9c5b9813e6552585fd5a944a691d5d0250ed","c7525ce0da03c467948253477743c85a19d4d80af168491ac93f171892b05361","5750131d1fc5684bf3d6dd7e22f64526d3ca52d362676e26e85bf0a573b11c56","4bd05ede5659522906a8d555b6d7e9bdbf53c33865531172ee383aef1ff76bd8",{"version":"1ac930a9f4792cf7c2558537a6c911332103fc76be2691d792a6d0b38cec5ec7","signature":"3c1eac846c50e17304178372f390780ff8f76650dae54c68648c0c2be71432ba"},{"version":"609db87aaabcf850359341e337073ab5177c0c48c9a60cfc9e8bf75e1a825de1","signature":"3ac1a933e386e0e2894ae7d2d1cd112dacb10c91c85b632c0c561996d6479765"},{"version":"35dc48b51c52e115005e337a7a1c2a469987193dd07bbfe9c5085b8088ce5519","signature":"8d76f3727475c6c147dbaa7a952910a83de7e96c23021d7625cdef98c95c206c"},{"version":"d3021db469a21de072e28eb6fb9be14880eb739f1b1ede857133114dec06988d","signature":"f848a594e5ecbebed6b9e7a2b62c57466dbf0faede2b27e3538a1c7fe2efb2e1"},{"version":"6601832367b2c1359b16db86700174171375fa7d1403c5558910962ce36fa70a","signature":"52cd14ac0718c0e8764474498076290de91f682d7f46cfed4d9d1a5ad37ed70e"},{"version":"6bd7e786b07c40f46e015484fe4cf536bdd0b3e384185f0fe7a43499eddf8bed","signature":"64d9271f6b8e80dff32e710264216715d77e37e83076f6cbbf6209ee34d3e3ab"},{"version":"a4a0719a3a95ab86eb374eb2d8eaa78062c6e88b5dc33ac81cbf2462ced266d1","signature":"fc516c9bc8edd23b12237453f75f4174622a05f55d51f0089158415231b544ba"},{"version":"74045c53c7cf31c3149fc966013b53125758e96e9132df334c3896689cb51a88","signature":"9b1ea80ff901ddbe1c03d85de10548cb7ef0e97f2a127dcf2ea7044c4ab8da4a"},{"version":"4acd60f7a93690b4beb561b09605a11bd19f44ac6eee78acfc69c821ea1e58b6","signature":"10a4da3cc345940eee866bf150489f555e01a4dca905840111cdc0aa9d39f590"},{"version":"23d4419bf1e3bdb186624f5bd024ced5d392ce7711fa4b922c3cce6a17f25d18","signature":"0f5e5ff4d0687e8a29e8ac67e4775bb0c5a0711bbd98c060f585a4dcab503fe4"},{"version":"381fbea4f6d325b2e49ddd1de41f72ae01491de54da566e892ccc5a4c5e80553","signature":"4f1cefa77cb10b31da8b3cea3f509caaabc673c4d9584b4d29199b3e4392db88","affectsGlobalScope":true},{"version":"805f59daec33b5d243890e4f99d1f7f5e6ab96f6db826e84890d7bc83ecffaca","signature":"5353eb8820d99f91dcc2101e0f25aa9a4324e5d5ffeb8552e034fb38034e206f"},{"version":"c931b09271b6bb01b421149ee079577b35b438dab6451fe53ecf2a05f6fb1602","signature":"cc19b5554216f97795e7e269891d351f34dfa82d6ec1a60c47310a8306ca43b8"}],"root":[[173,178],[229,241]],"options":{"declaration":true,"downlevelIteration":true,"esModuleInterop":true,"importHelpers":true,"module":99,"noEmitOnError":true,"noImplicitAny":true,"outDir":"./","strict":true,"target":1},"fileIdsList":[[64,65,108],[64,65,121,122],[64,65],[64,65,116],[64,65,116,117,118,119,120],[64,65,109,110,111,112,113,114,115,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144],[64,65,67],[64,65,73,74,75,76],[64,65,73,75],[64,65,78,80,81],[64,65,78,79],[64,65,83],[61,64,65],[64,65,69,85],[64,65,85],[64,65,88],[64,65,85,86,87],[64,65,85,86,87,88,89],[64,65,70],[64,65,72,73,75],[60,64,65,71],[64,65,91],[64,65,91,92],[60,61,64,65,66,67,68,69,70,71,72,73,74,75,76,77,79,82,83,84,90,93,94,95,96,97,98,99,100,101,102,103,104,106,107],[61,64,65,69,70,74],[64,65,77],[64,65,72,74,79],[64,65,72,73],[64,65,72,83],[64,65,67,68,74],[64,65,97],[64,65,73,76,103,104],[64,65,72,77,97,105],[64,65,72],[60,64,65],[63,64,65],[64],[64,65,152],[64,65,151],[37,64,65,168],[37,64,65,173,174],[37,64,65,173,174,175],[37,64,65,176,237],[37,64,65,168,172,176,177,230,233],[37,64,65,234,235],[37,64,65,229,236],[37,64,65],[37,64,65,178,229],[37,64,65,172,228],[37,64,65,231,232],[37,64,65,176,228],[37,64,65,240],[37,64,65,145,168],[64,65,211,212],[64,65,213,214],[64,65,145],[64,65,222,223],[64,65,222],[64,65,221],[64,65,166],[64,65,164],[64,65,164,165],[64,65,226],[45,55,64,65],[56,64,65],[45,64,65],[59,64,65,145],[64,65,147],[42,64,65],[64,65,153],[64,65,149,150,154,155,156,157,158],[64,65,182],[64,65,190,192,194,197],[64,65,184,185],[64,65,190,192,194],[64,65,183,186,190,192,194,195,197,198,203,205,206,209,210],[64,65,190],[64,65,187,188,191],[64,65,187],[64,65,184],[64,65,196],[64,65,200,201,202,203,204],[64,65,201],[64,65,190,199],[64,65,199],[64,65,193],[64,65,207,208],[64,65,145,185],[64,65,145,184,185],[64,65,184,185,189],[40,45,50,64,65,166,167,181,215,220,224,225,227],[38,40,45,50,51,52,53,54,57,58,59,64,65,146,148,157,159,160,161,163,167],[50,64,65],[64,65,169,170],[47,64,65],[47,64,65,171],[46,64,65],[40,45,64,65],[50,53,64,65],[40,64,65],[40,64,65,162],[64,65,162,179,180],[39,40,48,49,64,65],[64,65,216],[64,65,216,217,218,219],[41,42,43,44,64,65],[168],[174],[173,174,175],[176,237],[230],[234,235],[229,236],[178,229],[172,228],[231,232],[240],[145,168]],"referencedMap":[[109,1],[110,1],[111,1],[112,1],[113,1],[114,1],[115,1],[123,2],[124,1],[125,3],[126,1],[127,1],[128,1],[129,1],[117,4],[118,1],[116,1],[119,4],[120,4],[121,5],[145,6],[130,1],[131,1],[132,1],[133,1],[134,3],[135,1],[136,1],[137,1],[138,1],[139,1],[140,1],[141,2],[142,1],[143,1],[122,1],[144,1],[60,3],[61,3],[66,3],[68,7],[77,8],[76,9],[78,3],[82,10],[80,11],[81,3],[67,3],[84,12],[69,13],[86,14],[87,15],[89,16],[88,17],[90,18],[85,19],[83,20],[72,21],[92,22],[91,3],[93,23],[108,24],[70,3],[75,25],[94,26],[95,3],[73,3],[96,3],[97,27],[98,28],[99,29],[100,30],[101,3],[102,3],[103,31],[79,3],[105,32],[106,33],[104,3],[71,34],[74,20],[107,35],[62,3],[64,36],[65,37],[63,3],[37,3],[153,38],[151,3],[152,39],[35,3],[36,3],[7,3],[8,3],[10,3],[9,3],[2,3],[11,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[3,3],[4,3],[22,3],[19,3],[20,3],[21,3],[23,3],[24,3],[25,3],[5,3],[26,3],[27,3],[28,3],[29,3],[6,3],[33,3],[30,3],[31,3],[32,3],[34,3],[1,3],[173,40],[175,41],[176,42],[174,40],[238,43],[235,44],[236,45],[234,44],[237,46],[178,47],[230,48],[229,49],[233,50],[231,51],[232,51],[239,3],[240,47],[241,52],[177,53],[214,54],[213,54],[215,55],[212,56],[224,57],[225,57],[223,58],[221,3],[222,59],[58,3],[167,60],[164,3],[165,61],[166,62],[227,63],[226,3],[56,64],[57,65],[55,66],[146,67],[59,3],[147,3],[148,68],[54,3],[158,3],[157,3],[155,3],[161,69],[38,3],[150,3],[154,70],[149,66],[156,3],[160,66],[159,71],[182,3],[183,72],[198,73],[186,74],[195,75],[211,76],[191,77],[192,78],[188,79],[187,80],[197,81],[196,77],[203,3],[205,82],[202,83],[200,84],[201,85],[199,77],[204,77],[206,3],[194,86],[193,74],[209,87],[208,77],[207,88],[189,89],[184,3],[185,80],[190,90],[210,3],[228,91],[168,92],[51,93],[171,94],[170,95],[169,95],[172,96],[47,97],[46,98],[39,3],[162,99],[48,95],[53,100],[40,3],[52,100],[49,3],[180,3],[179,100],[163,101],[181,102],[50,103],[219,66],[217,104],[216,66],[218,104],[220,105],[41,3],[42,3],[45,106],[43,3],[44,3]],"exportedModulesMap":[[109,1],[110,1],[111,1],[112,1],[113,1],[114,1],[115,1],[123,2],[124,1],[125,3],[126,1],[127,1],[128,1],[129,1],[117,4],[118,1],[116,1],[119,4],[120,4],[121,5],[145,6],[130,1],[131,1],[132,1],[133,1],[134,3],[135,1],[136,1],[137,1],[138,1],[139,1],[140,1],[141,2],[142,1],[143,1],[122,1],[144,1],[60,3],[61,3],[66,3],[68,7],[77,8],[76,9],[78,3],[82,10],[80,11],[81,3],[67,3],[84,12],[69,13],[86,14],[87,15],[89,16],[88,17],[90,18],[85,19],[83,20],[72,21],[92,22],[91,3],[93,23],[108,24],[70,3],[75,25],[94,26],[95,3],[73,3],[96,3],[97,27],[98,28],[99,29],[100,30],[101,3],[102,3],[103,31],[79,3],[105,32],[106,33],[104,3],[71,34],[74,20],[107,35],[62,3],[64,36],[65,37],[63,3],[37,3],[153,38],[151,3],[152,39],[35,3],[36,3],[7,3],[8,3],[10,3],[9,3],[2,3],[11,3],[12,3],[13,3],[14,3],[15,3],[16,3],[17,3],[18,3],[3,3],[4,3],[22,3],[19,3],[20,3],[21,3],[23,3],[24,3],[25,3],[5,3],[26,3],[27,3],[28,3],[29,3],[6,3],[33,3],[30,3],[31,3],[32,3],[34,3],[1,3],[173,107],[175,108],[176,109],[174,107],[238,110],[235,111],[236,112],[234,111],[237,113],[230,114],[229,115],[233,116],[241,117],[177,118],[214,54],[213,54],[215,55],[212,56],[224,57],[225,57],[223,58],[221,3],[222,59],[58,3],[167,60],[164,3],[165,61],[166,62],[227,63],[226,3],[56,64],[57,65],[55,66],[146,67],[59,3],[147,3],[148,68],[54,3],[158,3],[157,3],[155,3],[161,69],[38,3],[150,3],[154,70],[149,66],[156,3],[160,66],[159,71],[182,3],[183,72],[198,73],[186,74],[195,75],[211,76],[191,77],[192,78],[188,79],[187,80],[197,81],[196,77],[203,3],[205,82],[202,83],[200,84],[201,85],[199,77],[204,77],[206,3],[194,86],[193,74],[209,87],[208,77],[207,88],[189,89],[184,3],[185,80],[190,90],[210,3],[228,91],[168,92],[51,93],[171,94],[170,95],[169,95],[172,96],[47,97],[46,98],[39,3],[162,99],[48,95],[53,100],[40,3],[52,100],[49,3],[180,3],[179,100],[163,101],[181,102],[50,103],[219,66],[217,104],[216,66],[218,104],[220,105],[41,3],[42,3],[45,106],[43,3],[44,3]],"semanticDiagnosticsPerFile":[109,110,111,112,113,114,115,123,124,125,126,127,128,129,117,118,116,119,120,121,145,130,131,132,133,134,135,136,137,138,139,140,141,142,143,122,144,60,61,66,68,77,76,78,82,80,81,67,84,69,86,87,89,88,90,85,83,72,92,91,93,108,70,75,94,95,73,96,97,98,99,100,101,102,103,79,105,106,104,71,74,107,62,64,65,63,37,153,151,152,35,36,7,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,1,173,175,176,174,238,235,236,234,237,178,230,229,233,231,232,239,240,241,177,214,213,215,212,224,225,223,221,222,58,167,164,165,166,227,226,56,57,55,146,59,147,148,54,158,157,155,161,38,150,154,149,156,160,159,182,183,198,186,195,211,191,192,188,187,197,196,203,205,202,200,201,199,204,206,194,193,209,208,207,189,184,185,190,210,228,168,51,171,170,169,172,47,46,39,162,48,53,40,52,49,180,179,163,181,50,219,217,216,218,220,41,42,45,43,44]},"version":"5.0.2"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/analytics",
|
|
3
|
-
"version": "7.0.1-console-preview.
|
|
3
|
+
"version": "7.0.1-console-preview.047a1dd.0+047a1dd",
|
|
4
4
|
"description": "Analytics category of aws-amplify",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib-esm/index.js",
|
|
@@ -69,10 +69,10 @@
|
|
|
69
69
|
"uuid": "^9.0.0"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
|
-
"@aws-amplify/core": "6.0.1-console-preview.
|
|
72
|
+
"@aws-amplify/core": "6.0.1-console-preview.047a1dd.0+047a1dd"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
-
"@aws-amplify/core": "6.0.1-console-preview.
|
|
75
|
+
"@aws-amplify/core": "6.0.1-console-preview.047a1dd.0+047a1dd",
|
|
76
76
|
"@aws-sdk/types": "3.398.0",
|
|
77
77
|
"@types/uuid": "^9.0.0",
|
|
78
78
|
"typescript": "5.0.2"
|
|
@@ -121,5 +121,5 @@
|
|
|
121
121
|
"<rootDir>/src/setupTests.ts"
|
|
122
122
|
]
|
|
123
123
|
},
|
|
124
|
-
"gitHead": "
|
|
124
|
+
"gitHead": "047a1dd83d54c8f3ee74e0766d96c6a3b9f97f90"
|
|
125
125
|
}
|
package/src/index.ts
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
// SPDX-License-Identifier: Apache-2.0
|
|
3
3
|
|
|
4
|
-
export
|
|
4
|
+
export {
|
|
5
|
+
record,
|
|
6
|
+
identifyUser,
|
|
7
|
+
RecordInput,
|
|
8
|
+
IdentifyUserInput,
|
|
9
|
+
} from './providers/pinpoint';
|
|
5
10
|
export { AnalyticsError } from './errors';
|
|
@@ -5,21 +5,56 @@ import { AnalyticsAction } from '@aws-amplify/core/internals/utils';
|
|
|
5
5
|
import { updateEndpoint } from '@aws-amplify/core/internals/providers/pinpoint';
|
|
6
6
|
import { AnalyticsValidationErrorCode } from '../../../errors';
|
|
7
7
|
import { getAnalyticsUserAgentString } from '../../../utils/userAgent';
|
|
8
|
-
import {
|
|
8
|
+
import { IdentifyUserInput, UpdateEndpointException } from '../types';
|
|
9
9
|
import { resolveConfig, resolveCredentials } from '../utils';
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
|
-
*
|
|
12
|
+
* Sends information about a user to Pinpoint. Sending user information allows you to associate a user to their user
|
|
13
|
+
* profile and activities or actions in your application. Activity can be tracked across devices & platforms by using
|
|
14
|
+
* the same `userId`.
|
|
13
15
|
*
|
|
14
|
-
* @param {IdentifyUserParameters} params
|
|
16
|
+
* @param {IdentifyUserParameters} params The input object used to construct requests sent to Pinpoint's UpdateEndpoint
|
|
17
|
+
* API.
|
|
15
18
|
*
|
|
16
|
-
* @throws
|
|
17
|
-
* @throws
|
|
19
|
+
* @throws service: {@link UpdateEndpointException} - Thrown when the underlying Pinpoint service returns an error.
|
|
20
|
+
* @throws validation: {@link AnalyticsValidationErrorCode} - Thrown when the provided parameters or library
|
|
21
|
+
* configuration is incorrect.
|
|
22
|
+
*
|
|
23
|
+
* @returns A promise that will resolve when the operation is complete.
|
|
24
|
+
*
|
|
25
|
+
* @example
|
|
26
|
+
* ```ts
|
|
27
|
+
* // Identify a user with Pinpoint
|
|
28
|
+
* await identifyUser({
|
|
29
|
+
* userId,
|
|
30
|
+
* userProfile: {
|
|
31
|
+
* attributes: {
|
|
32
|
+
* email: [userEmail],
|
|
33
|
+
* },
|
|
34
|
+
* }
|
|
35
|
+
* });
|
|
36
|
+
* ```
|
|
37
|
+
*
|
|
38
|
+
* @example
|
|
39
|
+
* ```ts
|
|
40
|
+
* // Identify a user with Pinpoint with some additional demographics
|
|
41
|
+
* await identifyUser({
|
|
42
|
+
* userId,
|
|
43
|
+
* userProfile: {
|
|
44
|
+
* attributes: {
|
|
45
|
+
* email: [userEmail],
|
|
46
|
+
* },
|
|
47
|
+
* demographic: {
|
|
48
|
+
* platform: 'ios',
|
|
49
|
+
* timezone: 'America/Los_Angeles'
|
|
50
|
+
* }
|
|
51
|
+
* }
|
|
52
|
+
* });
|
|
18
53
|
*/
|
|
19
54
|
export const identifyUser = async ({
|
|
20
55
|
userId,
|
|
21
56
|
userProfile,
|
|
22
|
-
}:
|
|
57
|
+
}: IdentifyUserInput): Promise<void> => {
|
|
23
58
|
const { credentials, identityId } = await resolveCredentials();
|
|
24
59
|
const { appId, region } = resolveConfig();
|
|
25
60
|
updateEndpoint({
|
|
@@ -11,21 +11,46 @@ import {
|
|
|
11
11
|
assertValidationError,
|
|
12
12
|
} from '../../../errors';
|
|
13
13
|
import { getAnalyticsUserAgentString } from '../../../utils/userAgent';
|
|
14
|
-
import {
|
|
14
|
+
import { RecordInput } from '../types';
|
|
15
15
|
import { resolveConfig, resolveCredentials } from '../utils';
|
|
16
16
|
|
|
17
17
|
const logger = new Logger('Analytics');
|
|
18
18
|
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Records an Analytic event to Pinpoint. Events will be buffered and periodically sent to Pinpoint.
|
|
21
21
|
*
|
|
22
|
-
* @param {
|
|
22
|
+
* @param {RecordInput} params The input object used to construct the request.
|
|
23
23
|
*
|
|
24
|
-
* @throws
|
|
25
|
-
*
|
|
26
|
-
*
|
|
24
|
+
* @throws validation: {@link AnalyticsValidationErrorCode} - Thrown when the provided parameters or library
|
|
25
|
+
* configuration is incorrect.
|
|
26
|
+
*
|
|
27
|
+
* @example
|
|
28
|
+
* ```ts
|
|
29
|
+
* // Send an event to Pinpoint
|
|
30
|
+
* record({
|
|
31
|
+
* event: {
|
|
32
|
+
* name: eventName,
|
|
33
|
+
* }
|
|
34
|
+
* })
|
|
35
|
+
* ```
|
|
36
|
+
*
|
|
37
|
+
* @example
|
|
38
|
+
* ```ts
|
|
39
|
+
* // Send an event to Pinpoint with metrics & custom attributes
|
|
40
|
+
* record({
|
|
41
|
+
* event: {
|
|
42
|
+
* name: eventName,
|
|
43
|
+
* attributes: {
|
|
44
|
+
* 'my-attribute': attributeValue
|
|
45
|
+
* },
|
|
46
|
+
* metrics: {
|
|
47
|
+
* 'my-metric': metricValue
|
|
48
|
+
* }
|
|
49
|
+
* }
|
|
50
|
+
* })
|
|
51
|
+
* ```
|
|
27
52
|
*/
|
|
28
|
-
export const record = ({ event }:
|
|
53
|
+
export const record = ({ event }: RecordInput): void => {
|
|
29
54
|
const { appId, region } = resolveConfig();
|
|
30
55
|
|
|
31
56
|
assertValidationError(!!event, AnalyticsValidationErrorCode.NoEvent);
|
|
@@ -4,14 +4,20 @@
|
|
|
4
4
|
import { UserProfile } from '@aws-amplify/core';
|
|
5
5
|
import { PinpointAnalyticsEvent } from '@aws-amplify/core/internals/providers/pinpoint';
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
/**
|
|
8
|
+
* Input type for Pinpoint record API.
|
|
9
|
+
*/
|
|
10
|
+
export type RecordInput = {
|
|
8
11
|
/**
|
|
9
12
|
* An event to send to the default Analytics provider.
|
|
10
13
|
*/
|
|
11
14
|
event: PinpointAnalyticsEvent;
|
|
12
15
|
};
|
|
13
16
|
|
|
14
|
-
|
|
17
|
+
/**
|
|
18
|
+
* Input type for Pinpoint identifyUser API.
|
|
19
|
+
*/
|
|
20
|
+
export type IdentifyUserInput = {
|
|
15
21
|
/**
|
|
16
22
|
* A User ID associated to the current device.
|
|
17
23
|
*/
|
|
File without changes
|
|
File without changes
|