@refinedev/core 4.57.7 → 4.57.9
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/CHANGELOG.md +16 -0
- package/dist/hooks/data/useDelete.d.cts +1 -1
- package/dist/hooks/data/useDelete.d.mts +1 -1
- package/dist/hooks/data/useDelete.d.mts.map +1 -1
- package/dist/hooks/data/useDelete.d.ts +1 -1
- package/dist/hooks/data/useDeleteMany.d.cts +1 -1
- package/dist/hooks/data/useDeleteMany.d.mts +1 -1
- package/dist/hooks/data/useDeleteMany.d.mts.map +1 -1
- package/dist/hooks/data/useDeleteMany.d.ts +1 -1
- package/dist/hooks/data/useUpdate.d.cts +1 -1
- package/dist/hooks/data/useUpdate.d.mts +1 -1
- package/dist/hooks/data/useUpdate.d.mts.map +1 -1
- package/dist/hooks/data/useUpdate.d.ts +1 -1
- package/dist/hooks/data/useUpdateMany.d.cts +1 -1
- package/dist/hooks/data/useUpdateMany.d.mts +1 -1
- package/dist/hooks/data/useUpdateMany.d.mts.map +1 -1
- package/dist/hooks/data/useUpdateMany.d.ts +1 -1
- package/dist/hooks/form/types.d.cts +1 -1
- package/dist/hooks/form/types.d.mts +1 -1
- package/dist/hooks/form/types.d.mts.map +1 -1
- package/dist/hooks/form/types.d.ts +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/hooks/data/useDelete.ts +1 -1
- package/src/hooks/data/useDeleteMany.ts +1 -1
- package/src/hooks/data/useUpdate.ts +1 -1
- package/src/hooks/data/useUpdateMany.ts +1 -1
- package/src/hooks/form/types.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@refinedev/core",
|
|
3
|
-
"version": "4.57.
|
|
3
|
+
"version": "4.57.9",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Refine is a React meta-framework for building enterprise-level, data-intensive applications rapidly with support for modern UI libraries and headless integrations.",
|
|
6
6
|
"repository": {
|
|
@@ -58,7 +58,7 @@ export type DeleteParams<TData, TError, TVariables> = {
|
|
|
58
58
|
*/
|
|
59
59
|
resource: string;
|
|
60
60
|
/**
|
|
61
|
-
* [Determines when mutations are executed](/advanced-tutorials/mutation-mode
|
|
61
|
+
* [Determines when mutations are executed](/docs/advanced-tutorials/mutation-mode/)
|
|
62
62
|
*/
|
|
63
63
|
mutationMode?: MutationMode;
|
|
64
64
|
/**
|
|
@@ -59,7 +59,7 @@ export type DeleteManyParams<TData, TError, TVariables> = {
|
|
|
59
59
|
*/
|
|
60
60
|
resource: string;
|
|
61
61
|
/**
|
|
62
|
-
* [Determines when mutations are executed](/advanced-tutorials/mutation-mode
|
|
62
|
+
* [Determines when mutations are executed](/docs/advanced-tutorials/mutation-mode/)
|
|
63
63
|
*/
|
|
64
64
|
mutationMode?: MutationMode;
|
|
65
65
|
/**
|
|
@@ -85,7 +85,7 @@ export type UpdateParams<TData, TError, TVariables> = {
|
|
|
85
85
|
*/
|
|
86
86
|
id?: BaseKey;
|
|
87
87
|
/**
|
|
88
|
-
* [Determines when mutations are executed](/advanced-tutorials/mutation-mode
|
|
88
|
+
* [Determines when mutations are executed](/docs/advanced-tutorials/mutation-mode/)
|
|
89
89
|
*/
|
|
90
90
|
mutationMode?: MutationMode;
|
|
91
91
|
/**
|
|
@@ -87,7 +87,7 @@ export type UpdateManyParams<TData, TError, TVariables> = {
|
|
|
87
87
|
*/
|
|
88
88
|
resource?: string;
|
|
89
89
|
/**
|
|
90
|
-
* [Determines when mutations are executed](/advanced-tutorials/mutation-mode
|
|
90
|
+
* [Determines when mutations are executed](/docs/advanced-tutorials/mutation-mode/)
|
|
91
91
|
*/
|
|
92
92
|
mutationMode?: MutationMode;
|
|
93
93
|
/**
|
package/src/hooks/form/types.ts
CHANGED
|
@@ -118,7 +118,7 @@ type ActionFormProps<
|
|
|
118
118
|
*/
|
|
119
119
|
mutationMeta?: MetaQuery;
|
|
120
120
|
/**
|
|
121
|
-
* [Determines when mutations are executed](/advanced-tutorials/mutation-mode
|
|
121
|
+
* [Determines when mutations are executed](/docs/advanced-tutorials/mutation-mode/)
|
|
122
122
|
* @default `"pessimistic"*`
|
|
123
123
|
*/
|
|
124
124
|
mutationMode?: MutationMode;
|