@arsedizioni/ars-utils 18.2.374 → 18.2.376
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 -2
- package/clipper.common/common/services/clipper.service.d.ts +2 -2
- package/esm2022/clipper.common/common/definitions.mjs +1 -1
- package/esm2022/clipper.common/common/services/clipper.service.mjs +1 -1
- package/esm2022/evolution.common/common/definitions.mjs +1 -1
- package/esm2022/evolution.common/common/services/evolution.service.mjs +1 -1
- package/evolution.common/common/definitions.d.ts +2 -2
- package/evolution.common/common/services/evolution.service.d.ts +2 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs.map +1 -1
- package/package.json +7 -7
|
@@ -440,9 +440,9 @@ export interface ClipperDeleteWorkingDocumentsParams {
|
|
|
440
440
|
deleteAll: boolean;
|
|
441
441
|
}
|
|
442
442
|
export interface ClipperUserLink {
|
|
443
|
-
id
|
|
443
|
+
id?: number | null;
|
|
444
444
|
userId: number;
|
|
445
|
-
userName
|
|
445
|
+
userName?: string | null;
|
|
446
446
|
key: string;
|
|
447
447
|
}
|
|
448
448
|
export interface ClipperUserTrialInfo {
|
|
@@ -48,12 +48,12 @@ export declare class ClipperService implements OnDestroy {
|
|
|
48
48
|
* @param oauthAccessToken: the optional OAuth2 access token
|
|
49
49
|
* @param onSucces: function to execute on seccess
|
|
50
50
|
*/
|
|
51
|
-
autoLogin(email?: string | null | undefined, password?: string | null | undefined, remember?: boolean | null | undefined, oauth?: LoginOAuthType | null | undefined, oauthAccessToken?: string | null | undefined, onSucces?: Function): boolean;
|
|
51
|
+
autoLogin(email?: string | null | undefined, password?: string | null | undefined, remember?: boolean | null | undefined, oauth?: LoginOAuthType | null | undefined, oauthAccessToken?: string | null | undefined, onSucces?: Function | null | undefined): boolean;
|
|
52
52
|
/**
|
|
53
53
|
* Perform auto logout
|
|
54
54
|
* @param onSucces: function to execute on seccess
|
|
55
55
|
*/
|
|
56
|
-
autoLogout(onSucces?: Function | null): void;
|
|
56
|
+
autoLogout(onSucces?: Function | null | undefined): void;
|
|
57
57
|
/**
|
|
58
58
|
* Perform login
|
|
59
59
|
* @param email: the optioanl email if using OAuth2
|