automation-lib 6.4.11 → 6.4.12
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 +31 -0
- package/dist/index.d.ts +31 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3465,6 +3465,37 @@ interface AccountAICreateDto {
|
|
|
3465
3465
|
status: EAccountAIModelStatus;
|
|
3466
3466
|
note: string;
|
|
3467
3467
|
listProxyIds: string[];
|
|
3468
|
+
accountContent: {
|
|
3469
|
+
contentGPT: {
|
|
3470
|
+
apiKey: string;
|
|
3471
|
+
apiModel: string;
|
|
3472
|
+
apiStatus: EAccountAIModelApiStatus;
|
|
3473
|
+
browserPlan: EAccountAIModelBrowserPlan;
|
|
3474
|
+
browserStatus: EAccountAIModelStatus;
|
|
3475
|
+
};
|
|
3476
|
+
contentGemini: {
|
|
3477
|
+
apiKey: string;
|
|
3478
|
+
apiModel: string;
|
|
3479
|
+
apiStatus: EAccountAIModelApiStatus;
|
|
3480
|
+
browserPlan: EAccountAIModelBrowserPlan;
|
|
3481
|
+
browserStatus: EAccountAIModelStatus;
|
|
3482
|
+
};
|
|
3483
|
+
};
|
|
3484
|
+
accountContentImageVideo: {
|
|
3485
|
+
apiProjectID: string;
|
|
3486
|
+
apiLocation: EAccountAIModelLocation;
|
|
3487
|
+
apiStatus: EAccountAIModelApiStatus;
|
|
3488
|
+
apiJsonToken: string;
|
|
3489
|
+
browserCredits: number;
|
|
3490
|
+
browserStatus: EAccountAIModelCreditStatus;
|
|
3491
|
+
};
|
|
3492
|
+
accountContentVoice: {
|
|
3493
|
+
apiProjectID: string;
|
|
3494
|
+
apiKey: string;
|
|
3495
|
+
apiStatus: EAccountAIModelApiStatus;
|
|
3496
|
+
browserCredits: number;
|
|
3497
|
+
browserStatus: EAccountAIModelCreditStatus;
|
|
3498
|
+
};
|
|
3468
3499
|
}
|
|
3469
3500
|
interface FindAccountAIDto extends IFindBaseDto {
|
|
3470
3501
|
typeAccountAI: EEmailTagType;
|
package/dist/index.d.ts
CHANGED
|
@@ -3465,6 +3465,37 @@ interface AccountAICreateDto {
|
|
|
3465
3465
|
status: EAccountAIModelStatus;
|
|
3466
3466
|
note: string;
|
|
3467
3467
|
listProxyIds: string[];
|
|
3468
|
+
accountContent: {
|
|
3469
|
+
contentGPT: {
|
|
3470
|
+
apiKey: string;
|
|
3471
|
+
apiModel: string;
|
|
3472
|
+
apiStatus: EAccountAIModelApiStatus;
|
|
3473
|
+
browserPlan: EAccountAIModelBrowserPlan;
|
|
3474
|
+
browserStatus: EAccountAIModelStatus;
|
|
3475
|
+
};
|
|
3476
|
+
contentGemini: {
|
|
3477
|
+
apiKey: string;
|
|
3478
|
+
apiModel: string;
|
|
3479
|
+
apiStatus: EAccountAIModelApiStatus;
|
|
3480
|
+
browserPlan: EAccountAIModelBrowserPlan;
|
|
3481
|
+
browserStatus: EAccountAIModelStatus;
|
|
3482
|
+
};
|
|
3483
|
+
};
|
|
3484
|
+
accountContentImageVideo: {
|
|
3485
|
+
apiProjectID: string;
|
|
3486
|
+
apiLocation: EAccountAIModelLocation;
|
|
3487
|
+
apiStatus: EAccountAIModelApiStatus;
|
|
3488
|
+
apiJsonToken: string;
|
|
3489
|
+
browserCredits: number;
|
|
3490
|
+
browserStatus: EAccountAIModelCreditStatus;
|
|
3491
|
+
};
|
|
3492
|
+
accountContentVoice: {
|
|
3493
|
+
apiProjectID: string;
|
|
3494
|
+
apiKey: string;
|
|
3495
|
+
apiStatus: EAccountAIModelApiStatus;
|
|
3496
|
+
browserCredits: number;
|
|
3497
|
+
browserStatus: EAccountAIModelCreditStatus;
|
|
3498
|
+
};
|
|
3468
3499
|
}
|
|
3469
3500
|
interface FindAccountAIDto extends IFindBaseDto {
|
|
3470
3501
|
typeAccountAI: EEmailTagType;
|