automation-lib 6.6.543 → 6.6.544

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/dist/index.d.mts CHANGED
@@ -5205,6 +5205,10 @@ interface FindAccountDriveDto extends IFindBaseDto {
5205
5205
  password: string;
5206
5206
  code2FA: string;
5207
5207
  googleRefreshToken?: string;
5208
+ authenticatedEmail?: string | null;
5209
+ tokenExpiryDate?: Date | string | null;
5210
+ lastAuthorizedAt?: Date | string | null;
5211
+ emailMismatch?: boolean;
5208
5212
  idriveE2Credentials?: IIDriveE2Credentials;
5209
5213
  currentSpace: string;
5210
5214
  maxSpace: string;
@@ -5365,6 +5369,9 @@ interface IAccountDrive extends IBaseModel, IAssignUser, ITrackingModel {
5365
5369
  password: string;
5366
5370
  code2FA: string;
5367
5371
  googleRefreshToken?: string;
5372
+ authenticatedEmail?: string | null;
5373
+ tokenExpiryDate?: Date | string | null;
5374
+ lastAuthorizedAt?: Date | string | null;
5368
5375
  idriveE2Credentials?: IIDriveE2Credentials;
5369
5376
  currentSpace: string;
5370
5377
  maxSpace: string;
package/dist/index.d.ts CHANGED
@@ -5205,6 +5205,10 @@ interface FindAccountDriveDto extends IFindBaseDto {
5205
5205
  password: string;
5206
5206
  code2FA: string;
5207
5207
  googleRefreshToken?: string;
5208
+ authenticatedEmail?: string | null;
5209
+ tokenExpiryDate?: Date | string | null;
5210
+ lastAuthorizedAt?: Date | string | null;
5211
+ emailMismatch?: boolean;
5208
5212
  idriveE2Credentials?: IIDriveE2Credentials;
5209
5213
  currentSpace: string;
5210
5214
  maxSpace: string;
@@ -5365,6 +5369,9 @@ interface IAccountDrive extends IBaseModel, IAssignUser, ITrackingModel {
5365
5369
  password: string;
5366
5370
  code2FA: string;
5367
5371
  googleRefreshToken?: string;
5372
+ authenticatedEmail?: string | null;
5373
+ tokenExpiryDate?: Date | string | null;
5374
+ lastAuthorizedAt?: Date | string | null;
5368
5375
  idriveE2Credentials?: IIDriveE2Credentials;
5369
5376
  currentSpace: string;
5370
5377
  maxSpace: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "6.6.543",
3
+ "version": "6.6.544",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",