@cbm-common/cbm-types 0.0.137 → 0.0.139
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.
|
@@ -27,6 +27,7 @@ export declare namespace CbmPrintSettingsModel {
|
|
|
27
27
|
enabled: boolean;
|
|
28
28
|
deleted: boolean;
|
|
29
29
|
created_at: number;
|
|
30
|
+
created_user?: string;
|
|
30
31
|
updated_user: string;
|
|
31
32
|
updated_at: number;
|
|
32
33
|
signature_ride: boolean;
|
|
@@ -125,10 +126,14 @@ export declare namespace CbmPrintSettingsModel {
|
|
|
125
126
|
signature: boolean;
|
|
126
127
|
signature_ride: boolean;
|
|
127
128
|
enabled: boolean;
|
|
129
|
+
order?: number;
|
|
128
130
|
deleted: boolean;
|
|
129
131
|
signature_data: any[];
|
|
130
132
|
signature_data_ride: any[];
|
|
131
133
|
created_at: number;
|
|
134
|
+
created_user?: string;
|
|
135
|
+
updated_at?: number;
|
|
136
|
+
updated_user?: string;
|
|
132
137
|
}
|
|
133
138
|
}
|
|
134
139
|
interface ConfirmResponse {
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { Subject } from "rxjs";
|
|
2
2
|
import { CbmAuthReactiveModel } from "../models/auth-reactive.domain.model";
|
|
3
3
|
import { CbmAuthService } from "./auth/auth.service";
|
|
4
|
+
type TLocalStorageKey = CbmAuthReactiveModel.TLocalStorageKey;
|
|
4
5
|
export declare class CbmAuthReactiveService {
|
|
5
6
|
private readonly authService;
|
|
6
7
|
constructor(authService: CbmAuthService);
|
|
7
8
|
setToken: Subject<[CbmAuthReactiveModel.TLocalStorageKey, string | null]>;
|
|
8
|
-
authenticationMode: import("@angular/core").WritableSignal<CbmAuthReactiveModel.TAccessMode>;
|
|
9
9
|
private userTokenData;
|
|
10
10
|
private globalTokenData;
|
|
11
11
|
private consoleTokenData;
|
|
12
|
-
|
|
12
|
+
tokens: Record<TLocalStorageKey, () => string | null>;
|
|
13
13
|
userData: import("@angular/core").Signal<CbmAuthReactiveModel.UserTokenData | null>;
|
|
14
14
|
globalData: import("@angular/core").Signal<CbmAuthReactiveModel.GlobalTokenData | null>;
|
|
15
15
|
consoleData: import("@angular/core").Signal<CbmAuthReactiveModel.ConsoleTokenData | null>;
|
|
@@ -20,3 +20,4 @@ export declare class CbmAuthReactiveService {
|
|
|
20
20
|
private loadTokensFromStorage;
|
|
21
21
|
private decodeToken;
|
|
22
22
|
}
|
|
23
|
+
export {};
|