@plyaz/types 1.21.3 → 1.21.4

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.
@@ -59,6 +59,8 @@ export interface ErrorStoreState {
59
59
  export interface ErrorStoreActions {
60
60
  /** Add an error to the store */
61
61
  addError: (error: SerializedError) => void;
62
+ /** Add multiple errors to the store (batch operation) */
63
+ addErrors: (errors: SerializedError[]) => void;
62
64
  /** Remove an error by ID */
63
65
  removeError: (id: string) => void;
64
66
  /** Clear all errors */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plyaz/types",
3
- "version": "1.21.3",
3
+ "version": "1.21.4",
4
4
  "author": "Redeemer Pace",
5
5
  "license": "ISC",
6
6
  "description": "Provides shared TypeScript types and schema utilities for validation and parsing in the @playz ecosystem.",