@cbm-common/cbm-types 0.0.104 → 0.0.106

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.
@@ -0,0 +1,8 @@
1
+ import { Location } from '@angular/common';
2
+ import { Router } from '@angular/router';
3
+ export declare class CbmForbidden {
4
+ private readonly location;
5
+ private readonly router;
6
+ constructor(location: Location, router: Router);
7
+ goBack(): void;
8
+ }
@@ -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;
@@ -107,6 +107,7 @@ export declare namespace CbmAuthData {
107
107
  type: string;
108
108
  user_role_id: string;
109
109
  selected: boolean;
110
+ count_user_role: boolean;
110
111
  access: Roles.Access[];
111
112
  }
112
113
  namespace Roles {
@@ -0,0 +1,3 @@
1
+ import { Router } from "@angular/router";
2
+ import { CbmAuthService } from "../../domain/services/auth/auth.service";
3
+ export declare function authFactory(router: Router): CbmAuthService;
@@ -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;
@@ -0,0 +1,3 @@
1
+ export * from "../domain/services/notification/notification.service";
2
+ export * from "./services/auth.service";
3
+ export * from "./services/web-socket.service";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cbm-common/cbm-types",
3
- "version": "0.0.104",
3
+ "version": "0.0.106",
4
4
  "main": "index.js",
5
5
  "types": "public-api.d.ts",
6
6
  "exports": {