@bcrumbs.net/bc-api 0.0.18 → 0.0.19
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/index.cjs.js +88187 -0
- package/index.esm.js +4861 -13081
- package/package.json +5 -4
- /package/{index.esm.d.ts → index.cjs.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bcrumbs.net/bc-api",
|
|
3
3
|
"description": "The SDK that helps to work with Bread Crumbs APIs",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.19",
|
|
5
5
|
"keyword": [
|
|
6
6
|
"bcrumbs",
|
|
7
7
|
"bc-api"
|
|
@@ -17,12 +17,13 @@
|
|
|
17
17
|
"jwt-decode": "^3.1.2",
|
|
18
18
|
"i18next-browser-languagedetector": "^6.1.3",
|
|
19
19
|
"i18next-http-backend": "^1.3.2",
|
|
20
|
-
"next-with-apollo": "^5.3.0"
|
|
20
|
+
"next-with-apollo": "^5.3.0",
|
|
21
|
+
"apollo-cache-inmemory": "^1.6.6",
|
|
22
|
+
"apollo-link-http": "^1.5.17"
|
|
21
23
|
},
|
|
22
24
|
"author": {
|
|
23
25
|
"name": "Ahmad Mhaish"
|
|
24
26
|
},
|
|
25
27
|
"module": "./index.esm.js",
|
|
26
|
-
"
|
|
27
|
-
"main": "./index.esm.js"
|
|
28
|
+
"main": "./index.cjs.js"
|
|
28
29
|
}
|
|
File without changes
|