* `id` of the store doing the mutation.
*/
storeId: string
+
+ /**
+ * 🔴 DEV ONLY, DO NOT use for production code. Different mutation calls. Comes from
+ * https://vuejs.org/guide/extras/reactivity-in-depth.html#reactivity-debugging and allows to track mutations in
+ * devtools and plugins **during development only**.
+ */
+ events?: DebuggerEvent[] | DebuggerEvent
}
/**
extends _SubscriptionCallbackMutationBase {
type: MutationType.direct
- /**
- * DEV ONLY. Different mutation calls.
- */
events: DebuggerEvent
}
extends _SubscriptionCallbackMutationBase {
type: MutationType.patchObject
- /**
- * DEV ONLY. Array for patch calls.
- */
events: DebuggerEvent[]
/**
extends _SubscriptionCallbackMutationBase {
type: MutationType.patchFunction
- /**
- * DEV ONLY. Array of all the mutations done inside of the callback.
- */
events: DebuggerEvent[]
/**