@expo/entity 0.28.0 → 0.30.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 before the entity is created in, updated in, or deleted from
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.28.0",
3
+ "version": "0.30.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": "dbf1e030394d1f2bdf58d858cb455be9136a1b14"
36
+ "gitHead": "abd86b91d344e4367b6acd416ab0e5ee3704cb1a"
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 before the entity is created in, updated in, or deleted from
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>[];