@cbm-common/cbm-types 0.0.172 → 0.0.174

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.
@@ -24,8 +24,10 @@ export declare namespace CbmSalesPendingDocumentModel {
24
24
  _id: string;
25
25
  created_at: number;
26
26
  document_nomenclature: string;
27
+ document_number: string;
27
28
  document_emission_point_number: string;
28
29
  document_sequence: string;
30
+ new_document_number: string;
29
31
  balance: number;
30
32
  client_id: string;
31
33
  client_payment_deadline?: number;
@@ -73,7 +75,6 @@ export declare namespace CbmSalesPendingDocumentModel {
73
75
  client_branch_contact_full_name?: string;
74
76
  client_branch_contact_cellphone?: string;
75
77
  client_branch_contact_email?: string[];
76
- new_document_number: string;
77
78
  date: number;
78
79
  type: string;
79
80
  checked?: boolean;
@@ -0,0 +1,15 @@
1
+ import { DestroyRef } from "@angular/core";
2
+ import { FormControl } from "@angular/forms";
3
+ import { CbmItemModel } from "@cbm-common/cbm-types";
4
+ import { CbmItemDomainRepository } from "../../repositories/item.domain.repository";
5
+ import { CbmNotificationService } from "../notification/notification.service";
6
+ export declare class FindItemCodeService {
7
+ private readonly destroyRef;
8
+ private readonly itemRepository;
9
+ private readonly notificationService;
10
+ private readonly codeControl;
11
+ private readonly itemControl;
12
+ constructor(destroyRef: DestroyRef, itemRepository: CbmItemDomainRepository, notificationService: CbmNotificationService, codeControl: FormControl<string>, itemControl: FormControl<Partial<CbmItemModel.ListResponse.Item> | null>);
13
+ loading: import("@angular/core").WritableSignal<boolean>;
14
+ findCode(code?: string): Promise<void>;
15
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cbm-common/cbm-types",
3
- "version": "0.0.172",
3
+ "version": "0.0.174",
4
4
  "main": "index.js",
5
5
  "types": "public-api.d.ts",
6
6
  "exports": {
package/public-api.d.ts CHANGED
@@ -514,4 +514,8 @@ export * from './lib/domain/repositories/manufacturer.domain.repository';
514
514
  export * from './lib/domain/models/manufacturer.domain.model';
515
515
 
516
516
  //#region Adavnced account search modal component
517
- export * from './lib/components/advanced-account-search-modal/advanced-account-search-modal';
517
+ export * from './lib/components/advanced-account-search-modal/advanced-account-search-modal';
518
+
519
+ //#region provider contact repository
520
+ export * from './lib/domain/repositories/provider-contact.domain.repository';
521
+ export * from './lib/domain/models/provider-contact.domain.model';