@aws-amplify/analytics 7.0.80 → 7.0.81-local-stack.00864ae.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/dist/cjs/errors/assertValidationError.js +1 -2
- package/dist/cjs/errors/assertValidationError.js.map +1 -1
- package/dist/cjs/errors/validation.js +1 -1
- package/dist/cjs/errors/validation.js.map +1 -1
- package/dist/cjs/utils/userAgent.js +2 -3
- package/dist/cjs/utils/userAgent.js.map +1 -1
- package/package.json +109 -110
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
4
4
|
// SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.assertValidationError =
|
|
6
|
+
exports.assertValidationError = assertValidationError;
|
|
7
7
|
const AnalyticsError_1 = require("./AnalyticsError");
|
|
8
8
|
const validation_1 = require("./validation");
|
|
9
9
|
/**
|
|
@@ -19,5 +19,4 @@ function assertValidationError(assertion, name, message) {
|
|
|
19
19
|
});
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
|
-
exports.assertValidationError = assertValidationError;
|
|
23
22
|
//# sourceMappingURL=assertValidationError.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"assertValidationError.js","sources":["../../../src/errors/assertValidationError.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.assertValidationError =
|
|
1
|
+
{"version":3,"file":"assertValidationError.js","sources":["../../../src/errors/assertValidationError.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.assertValidationError = assertValidationError;\nconst AnalyticsError_1 = require(\"./AnalyticsError\");\nconst validation_1 = require(\"./validation\");\n/**\n * @internal\n */\nfunction assertValidationError(assertion, name, message) {\n const { message: defaultMessage, recoverySuggestion } = validation_1.validationErrorMap[name];\n if (!assertion) {\n throw new AnalyticsError_1.AnalyticsError({\n name,\n message: message ?? defaultMessage,\n recoverySuggestion,\n });\n }\n}\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,OAAO,CAAC,qBAAqB,GAAG,qBAAqB;AACrD,MAAM,gBAAgB,GAAG,OAAO,CAAC,kBAAkB,CAAC;AACpD,MAAM,YAAY,GAAG,OAAO,CAAC,cAAc,CAAC;AAC5C;AACA;AACA;AACA,SAAS,qBAAqB,CAAC,SAAS,EAAE,IAAI,EAAE,OAAO,EAAE;AACzD,IAAI,MAAM,EAAE,OAAO,EAAE,cAAc,EAAE,kBAAkB,EAAE,GAAG,YAAY,CAAC,kBAAkB,CAAC,IAAI,CAAC;AACjG,IAAI,IAAI,CAAC,SAAS,EAAE;AACpB,QAAQ,MAAM,IAAI,gBAAgB,CAAC,cAAc,CAAC;AAClD,YAAY,IAAI;AAChB,YAAY,OAAO,EAAE,OAAO,IAAI,cAAc;AAC9C,YAAY,kBAAkB;AAC9B,SAAS,CAAC;AACV;AACA;;"}
|
|
@@ -14,7 +14,7 @@ var AnalyticsValidationErrorCode;
|
|
|
14
14
|
AnalyticsValidationErrorCode["UnsupportedPlatform"] = "UnsupportedPlatform";
|
|
15
15
|
AnalyticsValidationErrorCode["NoTrackingId"] = "NoTrackingId";
|
|
16
16
|
AnalyticsValidationErrorCode["InvalidFlushSize"] = "InvalidFlushSize";
|
|
17
|
-
})(AnalyticsValidationErrorCode
|
|
17
|
+
})(AnalyticsValidationErrorCode || (exports.AnalyticsValidationErrorCode = AnalyticsValidationErrorCode = {}));
|
|
18
18
|
exports.validationErrorMap = {
|
|
19
19
|
[AnalyticsValidationErrorCode.NoAppId]: {
|
|
20
20
|
message: 'Missing application id.',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validation.js","sources":["../../../src/errors/validation.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.validationErrorMap = exports.AnalyticsValidationErrorCode = void 0;\nvar AnalyticsValidationErrorCode;\n(function (AnalyticsValidationErrorCode) {\n AnalyticsValidationErrorCode[\"NoAppId\"] = \"NoAppId\";\n AnalyticsValidationErrorCode[\"NoCredentials\"] = \"NoCredentials\";\n AnalyticsValidationErrorCode[\"NoEventName\"] = \"NoEventName\";\n AnalyticsValidationErrorCode[\"NoRegion\"] = \"NoRegion\";\n AnalyticsValidationErrorCode[\"InvalidTracker\"] = \"InvalidTracker\";\n AnalyticsValidationErrorCode[\"UnsupportedPlatform\"] = \"UnsupportedPlatform\";\n AnalyticsValidationErrorCode[\"NoTrackingId\"] = \"NoTrackingId\";\n AnalyticsValidationErrorCode[\"InvalidFlushSize\"] = \"InvalidFlushSize\";\n})(AnalyticsValidationErrorCode
|
|
1
|
+
{"version":3,"file":"validation.js","sources":["../../../src/errors/validation.ts"],"sourcesContent":["\"use strict\";\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.validationErrorMap = exports.AnalyticsValidationErrorCode = void 0;\nvar AnalyticsValidationErrorCode;\n(function (AnalyticsValidationErrorCode) {\n AnalyticsValidationErrorCode[\"NoAppId\"] = \"NoAppId\";\n AnalyticsValidationErrorCode[\"NoCredentials\"] = \"NoCredentials\";\n AnalyticsValidationErrorCode[\"NoEventName\"] = \"NoEventName\";\n AnalyticsValidationErrorCode[\"NoRegion\"] = \"NoRegion\";\n AnalyticsValidationErrorCode[\"InvalidTracker\"] = \"InvalidTracker\";\n AnalyticsValidationErrorCode[\"UnsupportedPlatform\"] = \"UnsupportedPlatform\";\n AnalyticsValidationErrorCode[\"NoTrackingId\"] = \"NoTrackingId\";\n AnalyticsValidationErrorCode[\"InvalidFlushSize\"] = \"InvalidFlushSize\";\n})(AnalyticsValidationErrorCode || (exports.AnalyticsValidationErrorCode = AnalyticsValidationErrorCode = {}));\nexports.validationErrorMap = {\n [AnalyticsValidationErrorCode.NoAppId]: {\n message: 'Missing application id.',\n },\n [AnalyticsValidationErrorCode.NoCredentials]: {\n message: 'Credentials should not be empty.',\n },\n [AnalyticsValidationErrorCode.NoEventName]: {\n message: 'Events must specify a name.',\n },\n [AnalyticsValidationErrorCode.NoRegion]: {\n message: 'Missing region.',\n },\n [AnalyticsValidationErrorCode.InvalidTracker]: {\n message: 'Invalid tracker type specified.',\n },\n [AnalyticsValidationErrorCode.UnsupportedPlatform]: {\n message: 'Only session tracking is supported on React Native.',\n },\n [AnalyticsValidationErrorCode.InvalidFlushSize]: {\n message: 'Invalid FlushSize, it should be smaller than BufferSize',\n },\n [AnalyticsValidationErrorCode.NoTrackingId]: {\n message: 'A trackingId is required to use Amazon Personalize',\n },\n};\n"],"names":[],"mappings":";;AACA;AACA;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,OAAO,CAAC,kBAAkB,GAAG,OAAO,CAAC,4BAA4B,GAAG,MAAM;AAC1E,IAAI,4BAA4B;AAChC,CAAC,UAAU,4BAA4B,EAAE;AACzC,IAAI,4BAA4B,CAAC,SAAS,CAAC,GAAG,SAAS;AACvD,IAAI,4BAA4B,CAAC,eAAe,CAAC,GAAG,eAAe;AACnE,IAAI,4BAA4B,CAAC,aAAa,CAAC,GAAG,aAAa;AAC/D,IAAI,4BAA4B,CAAC,UAAU,CAAC,GAAG,UAAU;AACzD,IAAI,4BAA4B,CAAC,gBAAgB,CAAC,GAAG,gBAAgB;AACrE,IAAI,4BAA4B,CAAC,qBAAqB,CAAC,GAAG,qBAAqB;AAC/E,IAAI,4BAA4B,CAAC,cAAc,CAAC,GAAG,cAAc;AACjE,IAAI,4BAA4B,CAAC,kBAAkB,CAAC,GAAG,kBAAkB;AACzE,CAAC,EAAE,4BAA4B,KAAK,OAAO,CAAC,4BAA4B,GAAG,4BAA4B,GAAG,EAAE,CAAC,CAAC;AAC9G,OAAO,CAAC,kBAAkB,GAAG;AAC7B,IAAI,CAAC,4BAA4B,CAAC,OAAO,GAAG;AAC5C,QAAQ,OAAO,EAAE,yBAAyB;AAC1C,KAAK;AACL,IAAI,CAAC,4BAA4B,CAAC,aAAa,GAAG;AAClD,QAAQ,OAAO,EAAE,kCAAkC;AACnD,KAAK;AACL,IAAI,CAAC,4BAA4B,CAAC,WAAW,GAAG;AAChD,QAAQ,OAAO,EAAE,6BAA6B;AAC9C,KAAK;AACL,IAAI,CAAC,4BAA4B,CAAC,QAAQ,GAAG;AAC7C,QAAQ,OAAO,EAAE,iBAAiB;AAClC,KAAK;AACL,IAAI,CAAC,4BAA4B,CAAC,cAAc,GAAG;AACnD,QAAQ,OAAO,EAAE,iCAAiC;AAClD,KAAK;AACL,IAAI,CAAC,4BAA4B,CAAC,mBAAmB,GAAG;AACxD,QAAQ,OAAO,EAAE,qDAAqD;AACtE,KAAK;AACL,IAAI,CAAC,4BAA4B,CAAC,gBAAgB,GAAG;AACrD,QAAQ,OAAO,EAAE,yDAAyD;AAC1E,KAAK;AACL,IAAI,CAAC,4BAA4B,CAAC,YAAY,GAAG;AACjD,QAAQ,OAAO,EAAE,oDAAoD;AACrE,KAAK;AACL,CAAC;;"}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.
|
|
4
|
+
exports.getAnalyticsUserAgent = getAnalyticsUserAgent;
|
|
5
|
+
exports.getAnalyticsUserAgentString = getAnalyticsUserAgentString;
|
|
5
6
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
6
7
|
// SPDX-License-Identifier: Apache-2.0
|
|
7
8
|
const utils_1 = require("@aws-amplify/core/internals/utils");
|
|
@@ -11,12 +12,10 @@ function getAnalyticsUserAgent(action) {
|
|
|
11
12
|
action,
|
|
12
13
|
});
|
|
13
14
|
}
|
|
14
|
-
exports.getAnalyticsUserAgent = getAnalyticsUserAgent;
|
|
15
15
|
function getAnalyticsUserAgentString(action) {
|
|
16
16
|
return (0, utils_1.getAmplifyUserAgent)({
|
|
17
17
|
category: utils_1.Category.Analytics,
|
|
18
18
|
action,
|
|
19
19
|
});
|
|
20
20
|
}
|
|
21
|
-
exports.getAnalyticsUserAgentString = getAnalyticsUserAgentString;
|
|
22
21
|
//# sourceMappingURL=userAgent.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"userAgent.js","sources":["../../../src/utils/userAgent.ts"],"sourcesContent":["\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.
|
|
1
|
+
{"version":3,"file":"userAgent.js","sources":["../../../src/utils/userAgent.ts"],"sourcesContent":["\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\nexports.getAnalyticsUserAgent = getAnalyticsUserAgent;\nexports.getAnalyticsUserAgentString = getAnalyticsUserAgentString;\n// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n// SPDX-License-Identifier: Apache-2.0\nconst utils_1 = require(\"@aws-amplify/core/internals/utils\");\nfunction getAnalyticsUserAgent(action) {\n return (0, utils_1.getAmplifyUserAgentObject)({\n category: utils_1.Category.Analytics,\n action,\n });\n}\nfunction getAnalyticsUserAgentString(action) {\n return (0, utils_1.getAmplifyUserAgent)({\n category: utils_1.Category.Analytics,\n action,\n });\n}\n"],"names":[],"mappings":";;AACA,MAAM,CAAC,cAAc,CAAC,OAAO,EAAE,YAAY,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC;AAC7D,OAAO,CAAC,qBAAqB,GAAG,qBAAqB;AACrD,OAAO,CAAC,2BAA2B,GAAG,2BAA2B;AACjE;AACA;AACA,MAAM,OAAO,GAAG,OAAO,CAAC,mCAAmC,CAAC;AAC5D,SAAS,qBAAqB,CAAC,MAAM,EAAE;AACvC,IAAI,OAAO,IAAI,OAAO,CAAC,yBAAyB,EAAE;AAClD,QAAQ,QAAQ,EAAE,OAAO,CAAC,QAAQ,CAAC,SAAS;AAC5C,QAAQ,MAAM;AACd,KAAK,CAAC;AACN;AACA,SAAS,2BAA2B,CAAC,MAAM,EAAE;AAC7C,IAAI,OAAO,IAAI,OAAO,CAAC,mBAAmB,EAAE;AAC5C,QAAQ,QAAQ,EAAE,OAAO,CAAC,QAAQ,CAAC,SAAS;AAC5C,QAAQ,MAAM;AACd,KAAK,CAAC;AACN;;"}
|
package/package.json
CHANGED
|
@@ -1,112 +1,111 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
"gitHead": "f2ac9929610f7f878f124083ceaf03465113cd44"
|
|
2
|
+
"name": "@aws-amplify/analytics",
|
|
3
|
+
"version": "7.0.81-local-stack.00864ae.0+00864ae",
|
|
4
|
+
"description": "Analytics category of aws-amplify",
|
|
5
|
+
"main": "./dist/cjs/index.js",
|
|
6
|
+
"module": "./dist/esm/index.mjs",
|
|
7
|
+
"react-native": "./dist/cjs/index.js",
|
|
8
|
+
"typings": "./dist/esm/index.d.ts",
|
|
9
|
+
"sideEffects": false,
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public"
|
|
12
|
+
},
|
|
13
|
+
"scripts": {
|
|
14
|
+
"test": "npm run lint && jest -w 1 --coverage --logHeapUsage",
|
|
15
|
+
"build-with-test": "npm run clean && npm run test && npm run build",
|
|
16
|
+
"build:umd": "webpack && webpack --config ./webpack.config.dev.js",
|
|
17
|
+
"build:esm-cjs": "rollup --forceExit -c rollup.config.mjs",
|
|
18
|
+
"build:watch": "npm run build:esm-cjs -- --watch",
|
|
19
|
+
"build": "npm run clean && npm run build:esm-cjs && npm run build:umd",
|
|
20
|
+
"clean": "npm run clean:size && rimraf dist lib lib-esm",
|
|
21
|
+
"clean:size": "rimraf dual-publish-tmp tmp*",
|
|
22
|
+
"format": "echo \"Not implemented\"",
|
|
23
|
+
"lint": "eslint '**/*.{ts,tsx}' && npm run ts-coverage",
|
|
24
|
+
"lint:fix": "eslint '**/*.{ts,tsx}' --fix",
|
|
25
|
+
"ts-coverage": "typescript-coverage-report -p ./tsconfig.build.json -t 71.4"
|
|
26
|
+
},
|
|
27
|
+
"typesVersions": {
|
|
28
|
+
">=4.2": {
|
|
29
|
+
"pinpoint": [
|
|
30
|
+
"./dist/esm/providers/pinpoint/index.d.ts"
|
|
31
|
+
],
|
|
32
|
+
"kinesis": [
|
|
33
|
+
"./dist/esm/providers/kinesis/index.d.ts"
|
|
34
|
+
],
|
|
35
|
+
"kinesis-firehose": [
|
|
36
|
+
"./dist/esm/providers/kinesis-firehose/index.d.ts"
|
|
37
|
+
],
|
|
38
|
+
"personalize": [
|
|
39
|
+
"./dist/esm/providers/personalize/index.d.ts"
|
|
40
|
+
]
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"exports": {
|
|
44
|
+
".": {
|
|
45
|
+
"react-native": "./dist/cjs/index.js",
|
|
46
|
+
"types": "./dist/esm/index.d.ts",
|
|
47
|
+
"import": "./dist/esm/index.mjs",
|
|
48
|
+
"require": "./dist/cjs/index.js"
|
|
49
|
+
},
|
|
50
|
+
"./pinpoint": {
|
|
51
|
+
"react-native": "./dist/cjs/providers/pinpoint/index.js",
|
|
52
|
+
"types": "./dist/esm/providers/pinpoint/index.d.ts",
|
|
53
|
+
"import": "./dist/esm/providers/pinpoint/index.mjs",
|
|
54
|
+
"require": "./dist/cjs/providers/pinpoint/index.js"
|
|
55
|
+
},
|
|
56
|
+
"./kinesis": {
|
|
57
|
+
"react-native": "./dist/cjs/providers/kinesis/index.js",
|
|
58
|
+
"types": "./dist/esm/providers/kinesis/index.d.ts",
|
|
59
|
+
"import": "./dist/esm/providers/kinesis/index.mjs",
|
|
60
|
+
"require": "./dist/cjs/providers/kinesis/index.js"
|
|
61
|
+
},
|
|
62
|
+
"./kinesis-firehose": {
|
|
63
|
+
"react-native": "./dist/cjs/providers/kinesis-firehose/index.js",
|
|
64
|
+
"types": "./dist/esm/providers/kinesis-firehose/index.d.ts",
|
|
65
|
+
"import": "./dist/esm/providers/kinesis-firehose/index.mjs",
|
|
66
|
+
"require": "./dist/cjs/providers/kinesis-firehose/index.js"
|
|
67
|
+
},
|
|
68
|
+
"./personalize": {
|
|
69
|
+
"react-native": "./dist/cjs/providers/personalize/index.js",
|
|
70
|
+
"types": "./dist/esm/providers/personalize/index.d.ts",
|
|
71
|
+
"import": "./dist/esm/providers/personalize/index.mjs",
|
|
72
|
+
"require": "./dist/cjs/providers/personalize/index.js"
|
|
73
|
+
},
|
|
74
|
+
"./package.json": "./package.json"
|
|
75
|
+
},
|
|
76
|
+
"repository": {
|
|
77
|
+
"type": "git",
|
|
78
|
+
"url": "https://github.com/aws-amplify/amplify-js.git"
|
|
79
|
+
},
|
|
80
|
+
"author": "Amazon Web Services",
|
|
81
|
+
"license": "Apache-2.0",
|
|
82
|
+
"bugs": {
|
|
83
|
+
"url": "https://github.com/aws/aws-amplify/issues"
|
|
84
|
+
},
|
|
85
|
+
"homepage": "https://aws-amplify.github.io/",
|
|
86
|
+
"files": [
|
|
87
|
+
"dist/cjs",
|
|
88
|
+
"dist/esm",
|
|
89
|
+
"src",
|
|
90
|
+
"pinpoint",
|
|
91
|
+
"kinesis",
|
|
92
|
+
"kinesis-firehose",
|
|
93
|
+
"personalize"
|
|
94
|
+
],
|
|
95
|
+
"dependencies": {
|
|
96
|
+
"@aws-sdk/client-firehose": "3.621.0",
|
|
97
|
+
"@aws-sdk/client-kinesis": "3.621.0",
|
|
98
|
+
"@aws-sdk/client-personalize-events": "3.621.0",
|
|
99
|
+
"@smithy/util-utf8": "2.0.0",
|
|
100
|
+
"tslib": "^2.5.0"
|
|
101
|
+
},
|
|
102
|
+
"peerDependencies": {
|
|
103
|
+
"@aws-amplify/core": "6.11.5-local-stack.00864ae.0+00864ae"
|
|
104
|
+
},
|
|
105
|
+
"devDependencies": {
|
|
106
|
+
"@aws-amplify/core": "6.11.5-local-stack.00864ae.0+00864ae",
|
|
107
|
+
"@aws-amplify/react-native": "1.1.10-local-stack.00864ae.0+00864ae",
|
|
108
|
+
"@aws-sdk/types": "3.398.0"
|
|
109
|
+
},
|
|
110
|
+
"gitHead": "00864aec571d0509655eea0673e896d69d434972"
|
|
112
111
|
}
|