automation-lib 6.4.34 → 6.4.35
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 +30 -7
- package/dist/index.d.ts +30 -7
- 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
|
+
timeout /t 2 /nobreak >nul
|
|
11
11
|
|
|
12
12
|
:: Push changes to the 'main' branch of the 'cp' remote
|
|
13
|
-
git pull
|
|
13
|
+
git pull hs main
|
|
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
|
+
timeout /t 1 /nobreak >nul
|
|
45
45
|
git commit -m "%commit_message%"
|
|
46
|
-
|
|
46
|
+
timeout /t 2 /nobreak >nul
|
|
47
47
|
|
|
48
|
-
git push
|
|
48
|
+
git push hs main
|
|
49
49
|
|
|
50
50
|
|
package/dist/index.d.mts
CHANGED
|
@@ -3492,6 +3492,7 @@ interface AccountAIImportDto {
|
|
|
3492
3492
|
sheetName: string;
|
|
3493
3493
|
}
|
|
3494
3494
|
interface AccountAICreateDto {
|
|
3495
|
+
typeAccountAI: EEmailTagType;
|
|
3495
3496
|
email: string;
|
|
3496
3497
|
emailRecovery: string;
|
|
3497
3498
|
password: string;
|
|
@@ -3518,17 +3519,22 @@ interface AccountAICreateDto {
|
|
|
3518
3519
|
};
|
|
3519
3520
|
};
|
|
3520
3521
|
accountContentImageVideo: {
|
|
3522
|
+
apiKey: string;
|
|
3523
|
+
apiModel: string;
|
|
3521
3524
|
apiProjectID: string;
|
|
3522
3525
|
apiLocation: EAccountAIModelLocation;
|
|
3523
3526
|
apiStatus: EAccountAIModelApiStatus;
|
|
3524
3527
|
apiJsonToken: string;
|
|
3528
|
+
browserPlan: EAccountAIModelBrowserPlan;
|
|
3525
3529
|
browserCredits: number;
|
|
3526
3530
|
browserStatus: EAccountAIModelCreditStatus;
|
|
3527
3531
|
};
|
|
3528
3532
|
accountContentVoice: {
|
|
3529
3533
|
apiProjectID: string;
|
|
3530
3534
|
apiKey: string;
|
|
3535
|
+
apiModel: string;
|
|
3531
3536
|
apiStatus: EAccountAIModelApiStatus;
|
|
3537
|
+
browserPlan: EAccountAIModelBrowserPlan;
|
|
3532
3538
|
browserCredits: number;
|
|
3533
3539
|
browserStatus: EAccountAIModelCreditStatus;
|
|
3534
3540
|
};
|
|
@@ -3546,13 +3552,24 @@ interface FindAccountAIDto extends IFindBaseDto {
|
|
|
3546
3552
|
gemini: EAccountAIModelApiStatus;
|
|
3547
3553
|
};
|
|
3548
3554
|
aiContentInfo: {
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3555
|
+
gpt: {
|
|
3556
|
+
id: string;
|
|
3557
|
+
apiKey: string;
|
|
3558
|
+
model: string;
|
|
3559
|
+
plan: EAccountAIModelBrowserPlan;
|
|
3560
|
+
statusModel: EAccountAIModelApiStatus;
|
|
3561
|
+
timeChangeStatusModel: Date;
|
|
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;
|
|
3556
3573
|
};
|
|
3557
3574
|
aiContentCredit: {
|
|
3558
3575
|
credits: number;
|
|
@@ -3569,6 +3586,12 @@ interface FindAccountAIDto extends IFindBaseDto {
|
|
|
3569
3586
|
statusCredit: EAccountAIModelCreditStatus;
|
|
3570
3587
|
timeChangeStatusCredit: Date;
|
|
3571
3588
|
};
|
|
3589
|
+
syncAccountAIContent: EAccountAIModelApiStatus;
|
|
3590
|
+
syncAccountAIImageVideo: EAccountAIModelApiStatus;
|
|
3591
|
+
syncAccountAIVoice: EAccountAIModelApiStatus;
|
|
3592
|
+
timeSyncAccountAIContent: Date;
|
|
3593
|
+
timeSyncAccountAIImageVideo: Date;
|
|
3594
|
+
timeSyncAccountAIVoice: Date;
|
|
3572
3595
|
email: string;
|
|
3573
3596
|
emailRecovery: string;
|
|
3574
3597
|
password: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -3492,6 +3492,7 @@ interface AccountAIImportDto {
|
|
|
3492
3492
|
sheetName: string;
|
|
3493
3493
|
}
|
|
3494
3494
|
interface AccountAICreateDto {
|
|
3495
|
+
typeAccountAI: EEmailTagType;
|
|
3495
3496
|
email: string;
|
|
3496
3497
|
emailRecovery: string;
|
|
3497
3498
|
password: string;
|
|
@@ -3518,17 +3519,22 @@ interface AccountAICreateDto {
|
|
|
3518
3519
|
};
|
|
3519
3520
|
};
|
|
3520
3521
|
accountContentImageVideo: {
|
|
3522
|
+
apiKey: string;
|
|
3523
|
+
apiModel: string;
|
|
3521
3524
|
apiProjectID: string;
|
|
3522
3525
|
apiLocation: EAccountAIModelLocation;
|
|
3523
3526
|
apiStatus: EAccountAIModelApiStatus;
|
|
3524
3527
|
apiJsonToken: string;
|
|
3528
|
+
browserPlan: EAccountAIModelBrowserPlan;
|
|
3525
3529
|
browserCredits: number;
|
|
3526
3530
|
browserStatus: EAccountAIModelCreditStatus;
|
|
3527
3531
|
};
|
|
3528
3532
|
accountContentVoice: {
|
|
3529
3533
|
apiProjectID: string;
|
|
3530
3534
|
apiKey: string;
|
|
3535
|
+
apiModel: string;
|
|
3531
3536
|
apiStatus: EAccountAIModelApiStatus;
|
|
3537
|
+
browserPlan: EAccountAIModelBrowserPlan;
|
|
3532
3538
|
browserCredits: number;
|
|
3533
3539
|
browserStatus: EAccountAIModelCreditStatus;
|
|
3534
3540
|
};
|
|
@@ -3546,13 +3552,24 @@ interface FindAccountAIDto extends IFindBaseDto {
|
|
|
3546
3552
|
gemini: EAccountAIModelApiStatus;
|
|
3547
3553
|
};
|
|
3548
3554
|
aiContentInfo: {
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3555
|
+
gpt: {
|
|
3556
|
+
id: string;
|
|
3557
|
+
apiKey: string;
|
|
3558
|
+
model: string;
|
|
3559
|
+
plan: EAccountAIModelBrowserPlan;
|
|
3560
|
+
statusModel: EAccountAIModelApiStatus;
|
|
3561
|
+
timeChangeStatusModel: Date;
|
|
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;
|
|
3556
3573
|
};
|
|
3557
3574
|
aiContentCredit: {
|
|
3558
3575
|
credits: number;
|
|
@@ -3569,6 +3586,12 @@ interface FindAccountAIDto extends IFindBaseDto {
|
|
|
3569
3586
|
statusCredit: EAccountAIModelCreditStatus;
|
|
3570
3587
|
timeChangeStatusCredit: Date;
|
|
3571
3588
|
};
|
|
3589
|
+
syncAccountAIContent: EAccountAIModelApiStatus;
|
|
3590
|
+
syncAccountAIImageVideo: EAccountAIModelApiStatus;
|
|
3591
|
+
syncAccountAIVoice: EAccountAIModelApiStatus;
|
|
3592
|
+
timeSyncAccountAIContent: Date;
|
|
3593
|
+
timeSyncAccountAIImageVideo: Date;
|
|
3594
|
+
timeSyncAccountAIVoice: Date;
|
|
3572
3595
|
email: string;
|
|
3573
3596
|
emailRecovery: string;
|
|
3574
3597
|
password: string;
|