@aws-amplify/cache 5.1.21 → 5.1.23
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.js +1 -0
- package/lib/index.js.map +1 -1
- package/lib-esm/index.js +1 -0
- package/lib-esm/index.js.map +1 -1
- package/package.json +3 -3
- package/src/index.ts +2 -0
package/lib/index.js
CHANGED
|
@@ -7,4 +7,5 @@ exports.BrowserStorageCache = BrowserStorageCache_1.BrowserStorageCache;
|
|
|
7
7
|
exports.Cache = BrowserStorageCache_1.BrowserStorageCache;
|
|
8
8
|
var InMemoryCache_1 = require("./InMemoryCache");
|
|
9
9
|
exports.InMemoryCache = InMemoryCache_1.InMemoryCache;
|
|
10
|
+
// chore: trigger v5-stable LTS release to complete partial publish (uuid-v11 RN fix, datastore). No functional change.
|
|
10
11
|
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA,qEAAqE;AACrE,sCAAsC;;AAEtC,6DAA4D;AAInD,8BAJA,yCAAmB,CAIA;AAGI,gBAPvB,yCAAmB,CAOS;AANrC,iDAAgD;AAGlB,wBAHrB,6BAAa,CAGqB"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA,qEAAqE;AACrE,sCAAsC;;AAEtC,6DAA4D;AAInD,8BAJA,yCAAmB,CAIA;AAGI,gBAPvB,yCAAmB,CAOS;AANrC,iDAAgD;AAGlB,wBAHrB,6BAAa,CAGqB;AAK3C,uHAAuH"}
|
package/lib-esm/index.js
CHANGED
|
@@ -5,4 +5,5 @@ import { InMemoryCache } from './InMemoryCache';
|
|
|
5
5
|
export { BrowserStorageCache, InMemoryCache };
|
|
6
6
|
// Standard `Cache` export to maintain interoperability with React Native
|
|
7
7
|
export { BrowserStorageCache as Cache };
|
|
8
|
+
// chore: trigger v5-stable LTS release to complete partial publish (uuid-v11 RN fix, datastore). No functional change.
|
|
8
9
|
//# sourceMappingURL=index.js.map
|
package/lib-esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,sCAAsC;AAEtC,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAGhD,OAAO,EAAE,mBAAmB,EAAE,aAAa,EAAe,CAAC;AAE3D,yEAAyE;AACzE,OAAO,EAAE,mBAAmB,IAAI,KAAK,EAAE,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,sCAAsC;AAEtC,OAAO,EAAE,mBAAmB,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAGhD,OAAO,EAAE,mBAAmB,EAAE,aAAa,EAAe,CAAC;AAE3D,yEAAyE;AACzE,OAAO,EAAE,mBAAmB,IAAI,KAAK,EAAE,CAAC;AAExC,uHAAuH"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/cache",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.23",
|
|
4
4
|
"description": "Cache category of aws-amplify",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib-esm/index.js",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"src"
|
|
49
49
|
],
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@aws-amplify/core": "5.8.
|
|
51
|
+
"@aws-amplify/core": "5.8.17",
|
|
52
52
|
"tslib": "^1.8.0"
|
|
53
53
|
},
|
|
54
54
|
"size-limit": [
|
|
@@ -113,5 +113,5 @@
|
|
|
113
113
|
"lib-esm"
|
|
114
114
|
]
|
|
115
115
|
},
|
|
116
|
-
"gitHead": "
|
|
116
|
+
"gitHead": "69166f4610eb60b3186782eca4fa2e034fdc4a71"
|
|
117
117
|
}
|
package/src/index.ts
CHANGED
|
@@ -9,3 +9,5 @@ export { BrowserStorageCache, InMemoryCache, CacheConfig };
|
|
|
9
9
|
|
|
10
10
|
// Standard `Cache` export to maintain interoperability with React Native
|
|
11
11
|
export { BrowserStorageCache as Cache };
|
|
12
|
+
|
|
13
|
+
// chore: trigger v5-stable LTS release to complete partial publish (uuid-v11 RN fix, datastore). No functional change.
|