@aws-amplify/analytics 6.3.2-unstable.7ebbbb1.2 → 6.3.3-api-v6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -4
- package/src/types/Provider.ts +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/analytics",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.3-api-v6.2+366313460",
|
|
4
4
|
"description": "Analytics category of aws-amplify",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib-esm/index.js",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"src"
|
|
49
49
|
],
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@aws-amplify/cache": "5.1.
|
|
52
|
-
"@aws-amplify/core": "5.5.
|
|
51
|
+
"@aws-amplify/cache": "5.1.4-api-v6.2+366313460",
|
|
52
|
+
"@aws-amplify/core": "5.5.3-api-v6.2+366313460",
|
|
53
53
|
"@aws-sdk/client-firehose": "3.6.1",
|
|
54
54
|
"@aws-sdk/client-kinesis": "3.6.1",
|
|
55
55
|
"@aws-sdk/client-personalize-events": "3.6.1",
|
|
@@ -120,5 +120,5 @@
|
|
|
120
120
|
"<rootDir>/src/setupTests.ts"
|
|
121
121
|
]
|
|
122
122
|
},
|
|
123
|
-
"gitHead": "
|
|
123
|
+
"gitHead": "36631346052721682d49a4b3311352631ee8d6ac"
|
|
124
124
|
}
|
package/src/types/Provider.ts
CHANGED
|
@@ -6,6 +6,9 @@ export interface PromiseHandlers {
|
|
|
6
6
|
reject: Function;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
+
// CAUTION: The AnalyticsProvider interface is publicly available and allows customers to implement their own custom
|
|
10
|
+
// analytics providers. Exercise caution when modifying this class as additive changes to this interface can break
|
|
11
|
+
// customers when not marked as optional.
|
|
9
12
|
export interface AnalyticsProvider {
|
|
10
13
|
// you need to implement those methods
|
|
11
14
|
|