@arsedizioni/ars-utils 18.2.387 → 18.2.389
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/clipper.common/common/definitions.d.ts +2 -1
- package/clipper.common/common/services/clipper.service.d.ts +4 -0
- package/esm2022/clipper.common/common/definitions.mjs +2 -1
- package/esm2022/clipper.common/common/services/clipper.service.mjs +15 -5
- package/esm2022/evolution.common/common/definitions.mjs +2 -1
- package/esm2022/evolution.common/common/services/evolution.service.mjs +14 -5
- package/esm2022/support.common/common/definitions.mjs +2 -1
- package/esm2022/support.common/common/services/support.service.mjs +1 -1
- package/evolution.common/common/definitions.d.ts +2 -1
- package/evolution.common/common/services/evolution.service.d.ts +4 -0
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +15 -4
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs +14 -4
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-support.common.mjs +1 -0
- package/fesm2022/arsedizioni-ars-utils-support.common.mjs.map +1 -1
- package/package.json +1 -1
- package/support.common/common/definitions.d.ts +2 -1
|
@@ -4,7 +4,8 @@ import { LoginOAuthType } from '@arsedizioni/ars-utils/ui.oauth';
|
|
|
4
4
|
import { Signal } from '@angular/core';
|
|
5
5
|
export declare enum ClipperServiceFlags {
|
|
6
6
|
None = 0,
|
|
7
|
-
NotifySystemErrors = 1
|
|
7
|
+
NotifySystemErrors = 1,
|
|
8
|
+
DisplayConnectionStateMessages = 2
|
|
8
9
|
}
|
|
9
10
|
export declare enum ClipperSelectionMode {
|
|
10
11
|
Single = 1,
|
|
@@ -42,6 +42,10 @@ export declare class ClipperService implements OnDestroy {
|
|
|
42
42
|
* @param refresh: true to get the refresh token. Default is false.
|
|
43
43
|
*/
|
|
44
44
|
getToken(refresh?: boolean): string;
|
|
45
|
+
/**
|
|
46
|
+
* Store login info
|
|
47
|
+
*/
|
|
48
|
+
storeLogin(): void;
|
|
45
49
|
/**
|
|
46
50
|
* Perform auto login using current link data
|
|
47
51
|
* @param email: the optional email if using OAuth2
|