@sanity/sdk 0.0.0-chore-react-18-compat.0 → 0.0.0-chore-react-18-compat.1
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/index.cjs +4888 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +2121 -0
- package/dist/index.js +1 -1
- package/package.json +3 -2
package/dist/index.js
CHANGED
|
@@ -4847,7 +4847,7 @@ const API_VERSION = "vX", usersStore = {
|
|
|
4847
4847
|
resolveUsers,
|
|
4848
4848
|
setOptions
|
|
4849
4849
|
});
|
|
4850
|
-
var version = "0.0.0-chore-react-18-compat.
|
|
4850
|
+
var version = "0.0.0-chore-react-18-compat.1";
|
|
4851
4851
|
const CORE_SDK_VERSION = getEnv("PKG_VERSION") || `${version}-development`;
|
|
4852
4852
|
export {
|
|
4853
4853
|
AuthStateType,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/sdk",
|
|
3
|
-
"version": "0.0.0-chore-react-18-compat.
|
|
3
|
+
"version": "0.0.0-chore-react-18-compat.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Sanity SDK",
|
|
6
6
|
"keywords": [
|
|
@@ -28,11 +28,12 @@
|
|
|
28
28
|
".": {
|
|
29
29
|
"source": "./src/_exports/index.ts",
|
|
30
30
|
"import": "./dist/index.js",
|
|
31
|
+
"require": "./dist/index.cjs",
|
|
31
32
|
"default": "./dist/index.js"
|
|
32
33
|
},
|
|
33
34
|
"./package.json": "./package.json"
|
|
34
35
|
},
|
|
35
|
-
"main": "./dist/index.
|
|
36
|
+
"main": "./dist/index.cjs",
|
|
36
37
|
"module": "./dist/index.js",
|
|
37
38
|
"types": "./dist/index.d.ts",
|
|
38
39
|
"files": [
|