@cbm-common/cbm-types 0.0.105 → 0.0.107
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/lib/components/not-found/not-found.d.ts +8 -0
- package/lib/domain/models/client.domain.model.d.ts +8 -2
- package/lib/domain/models/sales-pending-document.domain.model.d.ts +3 -0
- package/lib/remotes/services/auth.service.d.ts +3 -0
- package/lib/remotes/services/web-socket.service.d.ts +4 -0
- package/lib/remotes/services.remote.d.ts +3 -0
- package/package.json +1 -1
|
@@ -150,6 +150,9 @@ export declare namespace CbmClientModel {
|
|
|
150
150
|
seller_id?: string;
|
|
151
151
|
seller_identification_number?: string;
|
|
152
152
|
seller_full_name?: string;
|
|
153
|
+
seller_address?: string;
|
|
154
|
+
seller_email?: string[];
|
|
155
|
+
seller_cellphone?: string;
|
|
153
156
|
enabled?: boolean;
|
|
154
157
|
type_establishment?: string;
|
|
155
158
|
deleted?: boolean;
|
|
@@ -327,8 +330,11 @@ export declare namespace CbmClientModel {
|
|
|
327
330
|
professions_code?: string;
|
|
328
331
|
professions_name?: string;
|
|
329
332
|
category_client_name?: string;
|
|
330
|
-
seller_identification_number
|
|
331
|
-
seller_full_name
|
|
333
|
+
seller_identification_number: string;
|
|
334
|
+
seller_full_name: string;
|
|
335
|
+
seller_address: string;
|
|
336
|
+
seller_email?: string[];
|
|
337
|
+
seller_cellphone?: string;
|
|
332
338
|
price_list_name?: string;
|
|
333
339
|
price_list_code?: string;
|
|
334
340
|
}
|
|
@@ -34,6 +34,9 @@ export declare namespace CbmSalesPendingDocumentModel {
|
|
|
34
34
|
client_trade_name: string;
|
|
35
35
|
client_document_number: string;
|
|
36
36
|
client_credit_application: boolean;
|
|
37
|
+
client_price_list_id: string;
|
|
38
|
+
client_price_list_code: string;
|
|
39
|
+
client_price_list_name: string;
|
|
37
40
|
client_document_type_id: string;
|
|
38
41
|
client_document_type_name: string;
|
|
39
42
|
client_document_type_code: string;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { ApplicationRef } from "@angular/core";
|
|
2
|
+
import { Router } from "@angular/router";
|
|
3
|
+
import { CbmWebSocketService } from "../../domain/services/web-socket/web-socket.service";
|
|
4
|
+
export declare function webSocketFactory(appRef: ApplicationRef, router: Router): CbmWebSocketService;
|