automation-lib 6.4.33 → 6.4.34
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/commit.bat +5 -5
- package/dist/index.d.mts +8 -29
- package/dist/index.d.ts +8 -29
- package/package.json +1 -1
package/commit.bat
CHANGED
|
@@ -7,10 +7,10 @@ git add .
|
|
|
7
7
|
echo Committing changes...
|
|
8
8
|
set /p commit_message="Enter commit message: "
|
|
9
9
|
git commit -m "%commit_message%"
|
|
10
|
-
|
|
10
|
+
sleep 2
|
|
11
11
|
|
|
12
12
|
:: Push changes to the 'main' branch of the 'cp' remote
|
|
13
|
-
git pull
|
|
13
|
+
git pull origin toan
|
|
14
14
|
|
|
15
15
|
:: Read the current version from package.json
|
|
16
16
|
for /f "tokens=2 delims=:, " %%i in ('findstr "version" package.json') do set currentVersion=%%i
|
|
@@ -41,10 +41,10 @@ echo New version: %newVersion%
|
|
|
41
41
|
call npm run pub
|
|
42
42
|
|
|
43
43
|
git add .
|
|
44
|
-
|
|
44
|
+
sleep 1
|
|
45
45
|
git commit -m "%commit_message%"
|
|
46
|
-
|
|
46
|
+
sleep 2
|
|
47
47
|
|
|
48
|
-
git push
|
|
48
|
+
git push origin toan
|
|
49
49
|
|
|
50
50
|
|
package/dist/index.d.mts
CHANGED
|
@@ -3492,7 +3492,6 @@ interface AccountAIImportDto {
|
|
|
3492
3492
|
sheetName: string;
|
|
3493
3493
|
}
|
|
3494
3494
|
interface AccountAICreateDto {
|
|
3495
|
-
typeAccountAI: EEmailTagType;
|
|
3496
3495
|
email: string;
|
|
3497
3496
|
emailRecovery: string;
|
|
3498
3497
|
password: string;
|
|
@@ -3519,22 +3518,17 @@ interface AccountAICreateDto {
|
|
|
3519
3518
|
};
|
|
3520
3519
|
};
|
|
3521
3520
|
accountContentImageVideo: {
|
|
3522
|
-
apiKey: string;
|
|
3523
|
-
apiModel: string;
|
|
3524
3521
|
apiProjectID: string;
|
|
3525
3522
|
apiLocation: EAccountAIModelLocation;
|
|
3526
3523
|
apiStatus: EAccountAIModelApiStatus;
|
|
3527
3524
|
apiJsonToken: string;
|
|
3528
|
-
browserPlan: EAccountAIModelBrowserPlan;
|
|
3529
3525
|
browserCredits: number;
|
|
3530
3526
|
browserStatus: EAccountAIModelCreditStatus;
|
|
3531
3527
|
};
|
|
3532
3528
|
accountContentVoice: {
|
|
3533
3529
|
apiProjectID: string;
|
|
3534
3530
|
apiKey: string;
|
|
3535
|
-
apiModel: string;
|
|
3536
3531
|
apiStatus: EAccountAIModelApiStatus;
|
|
3537
|
-
browserPlan: EAccountAIModelBrowserPlan;
|
|
3538
3532
|
browserCredits: number;
|
|
3539
3533
|
browserStatus: EAccountAIModelCreditStatus;
|
|
3540
3534
|
};
|
|
@@ -3552,24 +3546,13 @@ interface FindAccountAIDto extends IFindBaseDto {
|
|
|
3552
3546
|
gemini: EAccountAIModelApiStatus;
|
|
3553
3547
|
};
|
|
3554
3548
|
aiContentInfo: {
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
|
|
3558
|
-
|
|
3559
|
-
|
|
3560
|
-
|
|
3561
|
-
|
|
3562
|
-
note: string;
|
|
3563
|
-
} | null;
|
|
3564
|
-
gemini: {
|
|
3565
|
-
id: string;
|
|
3566
|
-
apiKey: string;
|
|
3567
|
-
model: string;
|
|
3568
|
-
plan: EAccountAIModelBrowserPlan;
|
|
3569
|
-
statusModel: EAccountAIModelApiStatus;
|
|
3570
|
-
timeChangeStatusModel: Date;
|
|
3571
|
-
note: string;
|
|
3572
|
-
} | null;
|
|
3549
|
+
id: string;
|
|
3550
|
+
apiKey: string;
|
|
3551
|
+
model: string;
|
|
3552
|
+
plan: EAccountAIModelBrowserPlan;
|
|
3553
|
+
statusModel: EAccountAIModelApiStatus;
|
|
3554
|
+
timeChangeStatusModel: Date;
|
|
3555
|
+
note: string;
|
|
3573
3556
|
};
|
|
3574
3557
|
aiContentCredit: {
|
|
3575
3558
|
credits: number;
|
|
@@ -3586,9 +3569,6 @@ interface FindAccountAIDto extends IFindBaseDto {
|
|
|
3586
3569
|
statusCredit: EAccountAIModelCreditStatus;
|
|
3587
3570
|
timeChangeStatusCredit: Date;
|
|
3588
3571
|
};
|
|
3589
|
-
syncAccountAIContent: EAccountAIModelApiStatus;
|
|
3590
|
-
syncAccountAIImageVideo: EAccountAIModelApiStatus;
|
|
3591
|
-
syncAccountAIVoice: EAccountAIModelApiStatus;
|
|
3592
3572
|
email: string;
|
|
3593
3573
|
emailRecovery: string;
|
|
3594
3574
|
password: string;
|
|
@@ -8299,7 +8279,7 @@ interface FindTaskInstagramPostDto extends IFindBaseDto {
|
|
|
8299
8279
|
isSchedule: boolean;
|
|
8300
8280
|
editPostRunTime: string;
|
|
8301
8281
|
statusEditContent: string;
|
|
8302
|
-
|
|
8282
|
+
isAddAILabel: boolean;
|
|
8303
8283
|
dateTimeStart: Date;
|
|
8304
8284
|
dateTimeEnd: Date;
|
|
8305
8285
|
}
|
|
@@ -8649,7 +8629,6 @@ interface ITaskInstagramPost extends IBaseModel, ITrackingModel {
|
|
|
8649
8629
|
isSchedule: boolean;
|
|
8650
8630
|
editPostRunTime: string;
|
|
8651
8631
|
statusEditContent: string;
|
|
8652
|
-
aiLabel: boolean;
|
|
8653
8632
|
}
|
|
8654
8633
|
|
|
8655
8634
|
interface ITaskInstagramPostLog extends IBaseModel, ITrackingModel {
|
package/dist/index.d.ts
CHANGED
|
@@ -3492,7 +3492,6 @@ interface AccountAIImportDto {
|
|
|
3492
3492
|
sheetName: string;
|
|
3493
3493
|
}
|
|
3494
3494
|
interface AccountAICreateDto {
|
|
3495
|
-
typeAccountAI: EEmailTagType;
|
|
3496
3495
|
email: string;
|
|
3497
3496
|
emailRecovery: string;
|
|
3498
3497
|
password: string;
|
|
@@ -3519,22 +3518,17 @@ interface AccountAICreateDto {
|
|
|
3519
3518
|
};
|
|
3520
3519
|
};
|
|
3521
3520
|
accountContentImageVideo: {
|
|
3522
|
-
apiKey: string;
|
|
3523
|
-
apiModel: string;
|
|
3524
3521
|
apiProjectID: string;
|
|
3525
3522
|
apiLocation: EAccountAIModelLocation;
|
|
3526
3523
|
apiStatus: EAccountAIModelApiStatus;
|
|
3527
3524
|
apiJsonToken: string;
|
|
3528
|
-
browserPlan: EAccountAIModelBrowserPlan;
|
|
3529
3525
|
browserCredits: number;
|
|
3530
3526
|
browserStatus: EAccountAIModelCreditStatus;
|
|
3531
3527
|
};
|
|
3532
3528
|
accountContentVoice: {
|
|
3533
3529
|
apiProjectID: string;
|
|
3534
3530
|
apiKey: string;
|
|
3535
|
-
apiModel: string;
|
|
3536
3531
|
apiStatus: EAccountAIModelApiStatus;
|
|
3537
|
-
browserPlan: EAccountAIModelBrowserPlan;
|
|
3538
3532
|
browserCredits: number;
|
|
3539
3533
|
browserStatus: EAccountAIModelCreditStatus;
|
|
3540
3534
|
};
|
|
@@ -3552,24 +3546,13 @@ interface FindAccountAIDto extends IFindBaseDto {
|
|
|
3552
3546
|
gemini: EAccountAIModelApiStatus;
|
|
3553
3547
|
};
|
|
3554
3548
|
aiContentInfo: {
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
|
|
3558
|
-
|
|
3559
|
-
|
|
3560
|
-
|
|
3561
|
-
|
|
3562
|
-
note: string;
|
|
3563
|
-
} | null;
|
|
3564
|
-
gemini: {
|
|
3565
|
-
id: string;
|
|
3566
|
-
apiKey: string;
|
|
3567
|
-
model: string;
|
|
3568
|
-
plan: EAccountAIModelBrowserPlan;
|
|
3569
|
-
statusModel: EAccountAIModelApiStatus;
|
|
3570
|
-
timeChangeStatusModel: Date;
|
|
3571
|
-
note: string;
|
|
3572
|
-
} | null;
|
|
3549
|
+
id: string;
|
|
3550
|
+
apiKey: string;
|
|
3551
|
+
model: string;
|
|
3552
|
+
plan: EAccountAIModelBrowserPlan;
|
|
3553
|
+
statusModel: EAccountAIModelApiStatus;
|
|
3554
|
+
timeChangeStatusModel: Date;
|
|
3555
|
+
note: string;
|
|
3573
3556
|
};
|
|
3574
3557
|
aiContentCredit: {
|
|
3575
3558
|
credits: number;
|
|
@@ -3586,9 +3569,6 @@ interface FindAccountAIDto extends IFindBaseDto {
|
|
|
3586
3569
|
statusCredit: EAccountAIModelCreditStatus;
|
|
3587
3570
|
timeChangeStatusCredit: Date;
|
|
3588
3571
|
};
|
|
3589
|
-
syncAccountAIContent: EAccountAIModelApiStatus;
|
|
3590
|
-
syncAccountAIImageVideo: EAccountAIModelApiStatus;
|
|
3591
|
-
syncAccountAIVoice: EAccountAIModelApiStatus;
|
|
3592
3572
|
email: string;
|
|
3593
3573
|
emailRecovery: string;
|
|
3594
3574
|
password: string;
|
|
@@ -8299,7 +8279,7 @@ interface FindTaskInstagramPostDto extends IFindBaseDto {
|
|
|
8299
8279
|
isSchedule: boolean;
|
|
8300
8280
|
editPostRunTime: string;
|
|
8301
8281
|
statusEditContent: string;
|
|
8302
|
-
|
|
8282
|
+
isAddAILabel: boolean;
|
|
8303
8283
|
dateTimeStart: Date;
|
|
8304
8284
|
dateTimeEnd: Date;
|
|
8305
8285
|
}
|
|
@@ -8649,7 +8629,6 @@ interface ITaskInstagramPost extends IBaseModel, ITrackingModel {
|
|
|
8649
8629
|
isSchedule: boolean;
|
|
8650
8630
|
editPostRunTime: string;
|
|
8651
8631
|
statusEditContent: string;
|
|
8652
|
-
aiLabel: boolean;
|
|
8653
8632
|
}
|
|
8654
8633
|
|
|
8655
8634
|
interface ITaskInstagramPostLog extends IBaseModel, ITrackingModel {
|