@infrab4a/connect 4.23.0-beta.1 → 4.23.0-beta.3

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/index.cjs.js CHANGED
@@ -334,8 +334,19 @@ tslib.__decorate([
334
334
  ], Product.prototype, "kitProducts", void 0);
335
335
 
336
336
  class ProductErrors extends BaseModel {
337
- setErrors(...errors) {
338
- this.errors.push(...errors.filter((error) => !this.errors.includes(error)));
337
+ constructor() {
338
+ super(...arguments);
339
+ this.errors = {};
340
+ }
341
+ setErrors(source, errors) {
342
+ this.errors[source] = errors.filter((error) => { var _a, _b; return !((_b = (_a = this.errors) === null || _a === void 0 ? void 0 : _a[source]) === null || _b === void 0 ? void 0 : _b.includes(error)); });
343
+ this.hasErrors = Object.values(this.errors).flat().length > 0;
344
+ }
345
+ getErrors(source) {
346
+ return this.errors[source];
347
+ }
348
+ getAllErrors() {
349
+ return this.errors;
339
350
  }
340
351
  static get identifiersFields() {
341
352
  return ['productId'];
package/index.esm.js CHANGED
@@ -328,8 +328,19 @@ __decorate([
328
328
  ], Product.prototype, "kitProducts", void 0);
329
329
 
330
330
  class ProductErrors extends BaseModel {
331
- setErrors(...errors) {
332
- this.errors.push(...errors.filter((error) => !this.errors.includes(error)));
331
+ constructor() {
332
+ super(...arguments);
333
+ this.errors = {};
334
+ }
335
+ setErrors(source, errors) {
336
+ this.errors[source] = errors.filter((error) => { var _a, _b; return !((_b = (_a = this.errors) === null || _a === void 0 ? void 0 : _a[source]) === null || _b === void 0 ? void 0 : _b.includes(error)); });
337
+ this.hasErrors = Object.values(this.errors).flat().length > 0;
338
+ }
339
+ getErrors(source) {
340
+ return this.errors[source];
341
+ }
342
+ getAllErrors() {
343
+ return this.errors;
333
344
  }
334
345
  static get identifiersFields() {
335
346
  return ['productId'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infrab4a/connect",
3
- "version": "4.23.0-beta.1",
3
+ "version": "4.23.0-beta.3",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org"
6
6
  },
@@ -8,7 +8,9 @@ export declare class ProductErrors extends BaseModel<ProductErrors, ProductError
8
8
  createdAt: Date;
9
9
  updatedAt: Date;
10
10
  product: Product;
11
- setErrors(...errors: string[]): void;
11
+ setErrors(source: string, errors: string[]): void;
12
+ getErrors(source: string): string[];
13
+ getAllErrors(): Record<string, string[]>;
12
14
  static get identifiersFields(): ProductErrorsIdentifiers[];
13
15
  }
14
16
  export {};
@@ -5,7 +5,7 @@ import { FirestoreRepository, FirestoreSubRepository } from '../types';
5
5
  export declare const withHelpers: <TMixinBase extends MixinCtor<any, any[]> = MixinCtor<any, any[]>>(MixinBase: MixinCtor<any, any[]> & TMixinBase) => {
6
6
  new (...args: any[]): {
7
7
  [x: string]: any;
8
- toArray<T extends ModelBaseStructure<T, T["identifiersFields"][number]>>(snapShot: QuerySnapshot<T> | QueryDocumentSnapshot<T>[]): T[];
8
+ toArray<T extends ModelBaseStructure<T, T["identifiersFields"][number]>>(snapShot: QuerySnapshot<T, import("firebase/firestore").DocumentData> | QueryDocumentSnapshot<T, import("firebase/firestore").DocumentData>[]): T[];
9
9
  isSubCollection<T_1 extends ModelBaseStructure<T_1, T_1["identifiersFields"][number]>, E extends ModelBaseStructure<E, E["identifiersFields"][number]>>(repository: FirestoreRepository<T_1> | FirestoreSubRepository<T_1, E>): repository is FirestoreSubRepository<T_1, E>;
10
10
  };
11
11
  } & TMixinBase;