@uniformdev/canvas-next-rsc-shared 19.147.1-alpha.3 → 19.149.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/index.d.mts +3 -10
- package/dist/index.d.ts +3 -10
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -20,24 +20,17 @@ type UniformServerConfig = {
|
|
|
20
20
|
* Cache mode for manifest data.
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
manifestCache?: CacheMode
|
|
24
|
-
bypassCache?: boolean;
|
|
25
|
-
};
|
|
23
|
+
manifestCache?: CacheMode;
|
|
26
24
|
/**
|
|
27
25
|
* Cache mode for canvas data.
|
|
28
26
|
*
|
|
29
27
|
*/
|
|
30
|
-
canvasCache?: CacheMode
|
|
31
|
-
disableSWR?: boolean;
|
|
32
|
-
bypassCache?: boolean;
|
|
33
|
-
};
|
|
28
|
+
canvasCache?: CacheMode;
|
|
34
29
|
/**
|
|
35
30
|
* Cache mode for project map data.
|
|
36
31
|
*
|
|
37
32
|
*/
|
|
38
|
-
projectMapCache?: CacheMode
|
|
39
|
-
bypassCache?: boolean;
|
|
40
|
-
};
|
|
33
|
+
projectMapCache?: CacheMode;
|
|
41
34
|
/**
|
|
42
35
|
* Options for Uniform Context
|
|
43
36
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -20,24 +20,17 @@ type UniformServerConfig = {
|
|
|
20
20
|
* Cache mode for manifest data.
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
manifestCache?: CacheMode
|
|
24
|
-
bypassCache?: boolean;
|
|
25
|
-
};
|
|
23
|
+
manifestCache?: CacheMode;
|
|
26
24
|
/**
|
|
27
25
|
* Cache mode for canvas data.
|
|
28
26
|
*
|
|
29
27
|
*/
|
|
30
|
-
canvasCache?: CacheMode
|
|
31
|
-
disableSWR?: boolean;
|
|
32
|
-
bypassCache?: boolean;
|
|
33
|
-
};
|
|
28
|
+
canvasCache?: CacheMode;
|
|
34
29
|
/**
|
|
35
30
|
* Cache mode for project map data.
|
|
36
31
|
*
|
|
37
32
|
*/
|
|
38
|
-
projectMapCache?: CacheMode
|
|
39
|
-
bypassCache?: boolean;
|
|
40
|
-
};
|
|
33
|
+
projectMapCache?: CacheMode;
|
|
41
34
|
/**
|
|
42
35
|
* Options for Uniform Context
|
|
43
36
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/canvas-next-rsc-shared",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.149.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "tsup",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"react-dom": "18.2.0"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@uniformdev/canvas": "19.
|
|
36
|
-
"@uniformdev/context": "19.
|
|
35
|
+
"@uniformdev/canvas": "19.149.0",
|
|
36
|
+
"@uniformdev/context": "19.149.0"
|
|
37
37
|
},
|
|
38
38
|
"engines": {
|
|
39
39
|
"node": ">=16.14.0"
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "fb8b8ed8fe0f1872070ef3ece9961f2970f7f17a"
|
|
50
50
|
}
|