@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.
@@ -440,9 +440,9 @@ export interface ClipperDeleteWorkingDocumentsParams {
440
440
  deleteAll: boolean;
441
441
  }
442
442
  export interface ClipperUserLink {
443
- id: number;
443
+ id?: number | null;
444
444
  userId: number;
445
- userName: string;
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