@expo/entity 0.28.0 → 0.29.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.
|
@@ -35,7 +35,7 @@ export default interface EntityMutationTriggerConfiguration<TFields, TID extends
|
|
|
35
35
|
*/
|
|
36
36
|
beforeAll?: EntityMutationTrigger<TFields, TID, TViewerContext, TEntity, TSelectedFields>[];
|
|
37
37
|
/**
|
|
38
|
-
* Trigger set that runs within the transaction but
|
|
38
|
+
* Trigger set that runs within the transaction but after the entity is created in, updated in, or deleted from
|
|
39
39
|
* the database and the cache is invalidated.
|
|
40
40
|
*/
|
|
41
41
|
afterAll?: EntityMutationTrigger<TFields, TID, TViewerContext, TEntity, TSelectedFields>[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/entity",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.29.0",
|
|
4
4
|
"description": "A privacy-first data model",
|
|
5
5
|
"files": [
|
|
6
6
|
"build",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"invariant": "^2.2.4",
|
|
34
34
|
"uuid": "^8.3.0"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "b11bd24351ae34afd71a1572c8d023dde03fbdf3"
|
|
37
37
|
}
|
|
@@ -45,7 +45,7 @@ export default interface EntityMutationTriggerConfiguration<
|
|
|
45
45
|
*/
|
|
46
46
|
beforeAll?: EntityMutationTrigger<TFields, TID, TViewerContext, TEntity, TSelectedFields>[];
|
|
47
47
|
/**
|
|
48
|
-
* Trigger set that runs within the transaction but
|
|
48
|
+
* Trigger set that runs within the transaction but after the entity is created in, updated in, or deleted from
|
|
49
49
|
* the database and the cache is invalidated.
|
|
50
50
|
*/
|
|
51
51
|
afterAll?: EntityMutationTrigger<TFields, TID, TViewerContext, TEntity, TSelectedFields>[];
|