automation-lib 5.1.101 → 5.1.103

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
@@ -3870,6 +3870,8 @@ interface IFindBaseDto {
3870
3870
  leaderName?: string;
3871
3871
  team: ITeam;
3872
3872
  teamName: string;
3873
+ createdByName: string;
3874
+ updateByName: string;
3873
3875
  }
3874
3876
  interface IFilterBaseDto {
3875
3877
  team: string;
@@ -5154,25 +5156,25 @@ interface FilterAccountCanvaDto extends IFilterBaseDto, Omit<IAccountCanva, TOmi
5154
5156
  }
5155
5157
  interface FindOverviewAccountCanvaDto {
5156
5158
  totalAccounts: {
5157
- total: string;
5159
+ total: number;
5158
5160
  free: number;
5159
5161
  premium: number;
5160
5162
  };
5161
5163
  totalAccountsActiveWorking: {
5162
- total: string;
5164
+ total: number;
5163
5165
  active: number;
5164
5166
  working: number;
5165
5167
  };
5166
5168
  totalAccountNew: {
5167
- total: string;
5169
+ total: number;
5168
5170
  percentage: number;
5169
5171
  };
5170
5172
  totalAccountWrongPassword: {
5171
- total: string;
5173
+ total: number;
5172
5174
  percentage: number;
5173
5175
  };
5174
5176
  totalAccountNotExist: {
5175
- total: string;
5177
+ total: number;
5176
5178
  percentage: number;
5177
5179
  };
5178
5180
  }
@@ -5183,25 +5185,25 @@ interface FindAccountDriveDto extends IFindBaseDto, IAccountDrive {
5183
5185
  }
5184
5186
  interface FindOverviewAccountDriveDto {
5185
5187
  totalAccounts: {
5186
- total: string;
5188
+ total: number;
5187
5189
  free: number;
5188
5190
  premium: number;
5189
5191
  };
5190
5192
  totalAccountsActiveWorking: {
5191
- total: string;
5193
+ total: number;
5192
5194
  active: number;
5193
5195
  working: number;
5194
5196
  };
5195
5197
  totalAccountNew: {
5196
- total: string;
5198
+ total: number;
5197
5199
  percentage: number;
5198
5200
  };
5199
5201
  totalAccountWrongPassword: {
5200
- total: string;
5202
+ total: number;
5201
5203
  percentage: number;
5202
5204
  };
5203
5205
  totalAccountNotExist: {
5204
- total: string;
5206
+ total: number;
5205
5207
  percentage: number;
5206
5208
  };
5207
5209
  }
@@ -5286,17 +5288,17 @@ interface FindAccountVPNDto extends IFindBaseDto, IAccountVPN {
5286
5288
  }
5287
5289
  interface FindOverviewAccountVPNDto {
5288
5290
  totalAccounts: {
5289
- total: string;
5291
+ total: number;
5290
5292
  free: number;
5291
5293
  premium: number;
5292
5294
  };
5293
5295
  totalAccountsActiveWorking: {
5294
- total: string;
5296
+ total: number;
5295
5297
  active: number;
5296
5298
  working: number;
5297
5299
  };
5298
5300
  totalAccountNew: {
5299
- total: string;
5301
+ total: number;
5300
5302
  percentage: number;
5301
5303
  };
5302
5304
  totalAccountInactiveError: {
@@ -5309,16 +5311,16 @@ interface FindOverviewAccountVPNDto {
5309
5311
  percentage: number;
5310
5312
  };
5311
5313
  totalAccountConnectedDevices: {
5312
- total: string;
5314
+ total: number;
5313
5315
  android: number;
5314
5316
  ios: number;
5315
5317
  };
5316
5318
  totalAccountWrongPassword: {
5317
- total: string;
5319
+ total: number;
5318
5320
  percentage: number;
5319
5321
  };
5320
5322
  totalAccountNotExist: {
5321
- total: string;
5323
+ total: number;
5322
5324
  percentage: number;
5323
5325
  };
5324
5326
  }
@@ -5347,15 +5349,15 @@ interface FindAccountCHPlayICloudDto extends IFindBaseDto, IAccountCHPlayICloud
5347
5349
  }
5348
5350
  interface FindOverviewAccountCHPlayICloudDto {
5349
5351
  totalAccounts: {
5350
- total: string;
5352
+ total: number;
5351
5353
  };
5352
5354
  totalAccountsActiveWorking: {
5353
- total: string;
5355
+ total: number;
5354
5356
  active: number;
5355
5357
  working: number;
5356
5358
  };
5357
5359
  totalAccountNew: {
5358
- total: string;
5360
+ total: number;
5359
5361
  percentage: number;
5360
5362
  };
5361
5363
  totalAccountInactiveError: {
@@ -5364,16 +5366,16 @@ interface FindOverviewAccountCHPlayICloudDto {
5364
5366
  error: number;
5365
5367
  };
5366
5368
  totalAccountConnectedDevices: {
5367
- total: string;
5369
+ total: number;
5368
5370
  android: number;
5369
5371
  ios: number;
5370
5372
  };
5371
5373
  totalAccountWrongPassword: {
5372
- total: string;
5374
+ total: number;
5373
5375
  percentage: number;
5374
5376
  };
5375
5377
  totalAccountNotExist: {
5376
- total: string;
5378
+ total: number;
5377
5379
  percentage: number;
5378
5380
  };
5379
5381
  }
package/dist/index.d.ts CHANGED
@@ -3870,6 +3870,8 @@ interface IFindBaseDto {
3870
3870
  leaderName?: string;
3871
3871
  team: ITeam;
3872
3872
  teamName: string;
3873
+ createdByName: string;
3874
+ updateByName: string;
3873
3875
  }
3874
3876
  interface IFilterBaseDto {
3875
3877
  team: string;
@@ -5154,25 +5156,25 @@ interface FilterAccountCanvaDto extends IFilterBaseDto, Omit<IAccountCanva, TOmi
5154
5156
  }
5155
5157
  interface FindOverviewAccountCanvaDto {
5156
5158
  totalAccounts: {
5157
- total: string;
5159
+ total: number;
5158
5160
  free: number;
5159
5161
  premium: number;
5160
5162
  };
5161
5163
  totalAccountsActiveWorking: {
5162
- total: string;
5164
+ total: number;
5163
5165
  active: number;
5164
5166
  working: number;
5165
5167
  };
5166
5168
  totalAccountNew: {
5167
- total: string;
5169
+ total: number;
5168
5170
  percentage: number;
5169
5171
  };
5170
5172
  totalAccountWrongPassword: {
5171
- total: string;
5173
+ total: number;
5172
5174
  percentage: number;
5173
5175
  };
5174
5176
  totalAccountNotExist: {
5175
- total: string;
5177
+ total: number;
5176
5178
  percentage: number;
5177
5179
  };
5178
5180
  }
@@ -5183,25 +5185,25 @@ interface FindAccountDriveDto extends IFindBaseDto, IAccountDrive {
5183
5185
  }
5184
5186
  interface FindOverviewAccountDriveDto {
5185
5187
  totalAccounts: {
5186
- total: string;
5188
+ total: number;
5187
5189
  free: number;
5188
5190
  premium: number;
5189
5191
  };
5190
5192
  totalAccountsActiveWorking: {
5191
- total: string;
5193
+ total: number;
5192
5194
  active: number;
5193
5195
  working: number;
5194
5196
  };
5195
5197
  totalAccountNew: {
5196
- total: string;
5198
+ total: number;
5197
5199
  percentage: number;
5198
5200
  };
5199
5201
  totalAccountWrongPassword: {
5200
- total: string;
5202
+ total: number;
5201
5203
  percentage: number;
5202
5204
  };
5203
5205
  totalAccountNotExist: {
5204
- total: string;
5206
+ total: number;
5205
5207
  percentage: number;
5206
5208
  };
5207
5209
  }
@@ -5286,17 +5288,17 @@ interface FindAccountVPNDto extends IFindBaseDto, IAccountVPN {
5286
5288
  }
5287
5289
  interface FindOverviewAccountVPNDto {
5288
5290
  totalAccounts: {
5289
- total: string;
5291
+ total: number;
5290
5292
  free: number;
5291
5293
  premium: number;
5292
5294
  };
5293
5295
  totalAccountsActiveWorking: {
5294
- total: string;
5296
+ total: number;
5295
5297
  active: number;
5296
5298
  working: number;
5297
5299
  };
5298
5300
  totalAccountNew: {
5299
- total: string;
5301
+ total: number;
5300
5302
  percentage: number;
5301
5303
  };
5302
5304
  totalAccountInactiveError: {
@@ -5309,16 +5311,16 @@ interface FindOverviewAccountVPNDto {
5309
5311
  percentage: number;
5310
5312
  };
5311
5313
  totalAccountConnectedDevices: {
5312
- total: string;
5314
+ total: number;
5313
5315
  android: number;
5314
5316
  ios: number;
5315
5317
  };
5316
5318
  totalAccountWrongPassword: {
5317
- total: string;
5319
+ total: number;
5318
5320
  percentage: number;
5319
5321
  };
5320
5322
  totalAccountNotExist: {
5321
- total: string;
5323
+ total: number;
5322
5324
  percentage: number;
5323
5325
  };
5324
5326
  }
@@ -5347,15 +5349,15 @@ interface FindAccountCHPlayICloudDto extends IFindBaseDto, IAccountCHPlayICloud
5347
5349
  }
5348
5350
  interface FindOverviewAccountCHPlayICloudDto {
5349
5351
  totalAccounts: {
5350
- total: string;
5352
+ total: number;
5351
5353
  };
5352
5354
  totalAccountsActiveWorking: {
5353
- total: string;
5355
+ total: number;
5354
5356
  active: number;
5355
5357
  working: number;
5356
5358
  };
5357
5359
  totalAccountNew: {
5358
- total: string;
5360
+ total: number;
5359
5361
  percentage: number;
5360
5362
  };
5361
5363
  totalAccountInactiveError: {
@@ -5364,16 +5366,16 @@ interface FindOverviewAccountCHPlayICloudDto {
5364
5366
  error: number;
5365
5367
  };
5366
5368
  totalAccountConnectedDevices: {
5367
- total: string;
5369
+ total: number;
5368
5370
  android: number;
5369
5371
  ios: number;
5370
5372
  };
5371
5373
  totalAccountWrongPassword: {
5372
- total: string;
5374
+ total: number;
5373
5375
  percentage: number;
5374
5376
  };
5375
5377
  totalAccountNotExist: {
5376
- total: string;
5378
+ total: number;
5377
5379
  percentage: number;
5378
5380
  };
5379
5381
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "5.1.101",
3
+ "version": "5.1.103",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",