@cbm-common/cbm-types 0.0.155 → 0.0.157

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.
@@ -78,6 +78,7 @@ export declare namespace CbmPendingDocumentModel {
78
78
  date: number;
79
79
  type: string;
80
80
  checked?: boolean;
81
+ event_module?: string;
81
82
  }
82
83
  interface totales {
83
84
  total_retention?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cbm-common/cbm-types",
3
- "version": "0.0.155",
3
+ "version": "0.0.157",
4
4
  "main": "index.js",
5
5
  "types": "public-api.d.ts",
6
6
  "exports": {
package/public-api.d.ts CHANGED
@@ -378,9 +378,9 @@ export * from './lib/domain/models/reverse-movements.domain.model';
378
378
  export * from './lib/domain/repositories/retention-sales.domain.repository';
379
379
  export * from './lib/domain/models/retention-sales.domain.model';
380
380
 
381
- //#region sales pending document repository
382
- export * from './lib/domain/repositories/sales-pending-document.domain.repository';
383
- export * from './lib/domain/models/sales-pending-document.domain.model';
381
+ //#region pending document repository
382
+ export * from './lib/domain/repositories/pending-document.domain.repository';
383
+ export * from './lib/domain/models/pending-document.domain.model';
384
384
 
385
385
  //#region transactions purchase repository
386
386
  export * from './lib/domain/repositories/transactions-purchase.domain.repository';
@@ -487,7 +487,7 @@ export * from './lib/components/forbidden/forbidden';
487
487
  //#region not-found
488
488
  export * from './lib/components/not-found/not-found';
489
489
 
490
- //#region items detail
490
+ //#region items detail
491
491
  export * from './lib/components/item-details/item-details';
492
492
 
493
493
  //#region service detail
@@ -1,12 +0,0 @@
1
- import { DestroyRef } from "@angular/core";
2
- import { FormControl } from "@angular/forms";
3
- import { IGetPriceTypeParams, IPriceTypeExec } from "../../../types/price-type.fn";
4
- import { CbmSalePriceModel } from "../../models/sale-price.domain.model";
5
- export declare class FindPriceTypeService {
6
- private readonly destroyRef;
7
- private readonly controlPriceType;
8
- private readonly controls;
9
- private readonly params;
10
- constructor(destroyRef: DestroyRef, controlPriceType: FormControl<Partial<CbmSalePriceModel.GetResponse.Data> | null>, controls: Omit<IPriceTypeExec, 'controlPriceType'>, params: IGetPriceTypeParams);
11
- subObserver(): void;
12
- }