mitra-interactions-sdk 1.0.58-beta.4 → 1.0.58-beta.5
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 +33 -2
- package/dist/index.d.ts +33 -2
- package/dist/index.js +7 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -547,6 +547,13 @@ interface GetAgentTaskCreateOptions {
|
|
|
547
547
|
projectId?: number;
|
|
548
548
|
/** Tipo do agente. Default: 'claudecode'. */
|
|
549
549
|
agentType?: AgentType;
|
|
550
|
+
/**
|
|
551
|
+
* Modelo a usar (value vindo de manageAgentCredentialMitra({action:'list_models'})).
|
|
552
|
+
* Ex: 'openai/gpt-5.5:medium', 'glm/glm-5.1', 'subscription:anthropic:claude-opus-4-7'.
|
|
553
|
+
* O backend deriva agentType/provider/model a partir dele. Vira o default da
|
|
554
|
+
* task; cada send() pode sobrescrever via SendOptions.modelId.
|
|
555
|
+
*/
|
|
556
|
+
modelId?: string;
|
|
550
557
|
/** Nome do chat (default: derivado do prompt). */
|
|
551
558
|
name?: string;
|
|
552
559
|
}
|
|
@@ -567,6 +574,12 @@ interface QueuedItem {
|
|
|
567
574
|
}
|
|
568
575
|
interface SendOptions {
|
|
569
576
|
agentType?: AgentType;
|
|
577
|
+
/**
|
|
578
|
+
* Modelo a usar neste turno (value de list_models). Ex: 'openai/gpt-5.5:medium',
|
|
579
|
+
* 'glm/glm-5.1', 'subscription:anthropic:claude-opus-4-7'. Sobrescreve o modelId
|
|
580
|
+
* default da session. Se omitido, usa o default da session / agentType.
|
|
581
|
+
*/
|
|
582
|
+
modelId?: string;
|
|
570
583
|
}
|
|
571
584
|
interface AgentDeltaEvent {
|
|
572
585
|
delta: string;
|
|
@@ -644,7 +657,25 @@ type CredentialTarget = AgentSubscriptionTarget | AgentApiKeyTarget;
|
|
|
644
657
|
* de baixo nível + abre popup + espera autorização):
|
|
645
658
|
* connect
|
|
646
659
|
*/
|
|
647
|
-
type CredentialAction = 'connect' | 'status' | 'remove' | 'list' | 'validate' | 'save' | 'oauth_start' | 'oauth_exchange' | 'device_start' | 'device_poll' | 'device_cancel';
|
|
660
|
+
type CredentialAction = 'connect' | 'status' | 'remove' | 'list' | 'list_models' | 'validate' | 'save' | 'oauth_start' | 'oauth_exchange' | 'device_start' | 'device_poll' | 'device_cancel';
|
|
661
|
+
/** Um modelo selecionável (retornado por action='list_models'). */
|
|
662
|
+
interface AgentModelOption {
|
|
663
|
+
/** Passe direto em send({ modelId }) ou getAgentTaskMitra({ create, modelId }). */
|
|
664
|
+
modelId: string;
|
|
665
|
+
/** Label exibível. */
|
|
666
|
+
name: string;
|
|
667
|
+
}
|
|
668
|
+
/** Grupo de modelos por (tipo × provedor) — só grupos com credencial. */
|
|
669
|
+
interface AgentModelGroup {
|
|
670
|
+
id: string;
|
|
671
|
+
name: string;
|
|
672
|
+
kind: 'subscription' | 'api_key';
|
|
673
|
+
models: AgentModelOption[];
|
|
674
|
+
}
|
|
675
|
+
/** Retorno de manageAgentCredentialMitra({ action: 'list_models' }). */
|
|
676
|
+
interface ListAgentModelsResult {
|
|
677
|
+
providers: AgentModelGroup[];
|
|
678
|
+
}
|
|
648
679
|
/**
|
|
649
680
|
* Opções de baixo nível (RPC direto) de `manageAgentCredentialMitra`. Campos
|
|
650
681
|
* extras (key, code, codeVerifier, redirectUri, pollId, accessToken,
|
|
@@ -1146,4 +1177,4 @@ declare function setProfileScreensMitra(options: SetProfileScreensOptions): Prom
|
|
|
1146
1177
|
*/
|
|
1147
1178
|
declare function setProfileServerFunctionsMitra(options: SetProfileServerFunctionsOptions): Promise<SetProfilePermissionResponse>;
|
|
1148
1179
|
|
|
1149
|
-
export { type AgentApiKeyTarget, type AgentChat, type AgentDeltaEvent, type AgentErrorEvent, type AgentMessage, type AgentQueueChangeEvent, type AgentStatusChangeEvent, type AgentSubscriptionAccount, type AgentSubscriptionTarget, type AgentTaskCreatedEvent, type AgentTaskEventMap, type AgentTaskEventName, type AgentTaskSession, type AgentTaskStatus, type AgentToolEvent, type AgentTurnEndEvent, type AgentType, type CallIntegrationOptions, type CallIntegrationResponse, type ConnectAgentCredentialOptions, type ConnectAgentSubscriptionResult, type CreateProfileOptions, type CreateProfileResponse, type CreateRecordOptions, type CreateRecordsBatchOptions, type CredentialAction, type CredentialTarget, type DeleteProfileOptions, type DeleteProfileResponse, type DeleteRecordOptions, type EmailLoginOptions, type EmailResendCodeOptions, type EmailSignupOptions, type EmailVerifyCodeOptions, type ExecuteDataLoaderOptions, type ExecuteDataLoaderResponse, type ExecuteDbActionOptions, type ExecuteDbActionResponse, type ExecutePublicServerFunctionAsyncResponse, type ExecutePublicServerFunctionOptions, type ExecutePublicServerFunctionResponse, type ExecuteServerFunctionAsyncOptions, type ExecuteServerFunctionAsyncResponse, type ExecuteServerFunctionOptions, type ExecuteServerFunctionResponse, type GetAgentChatsOptions, type GetAgentTaskCreateOptions, type GetAgentTaskOpenOptions, type GetAgentTaskOptions, type GetProfileDetailsOptions, type GetProfileDetailsResponse, type GetPublicServerFunctionExecutionOptions, type GetPublicServerFunctionExecutionResponse, type GetRecordOptions, type GetVariableOptions, type GetVariableResponse, type IntegrationResponse, type ListIntegrationsOptions, type ListProfilesOptions, type ListProfilesResponse, type ListRecordsOptions, type ListRecordsResponse, type ListVariablesOptions, type ListVariablesResponse, type LoginOptions, type LoginResponse, type ManageAgentCredentialOptions, type ManageAgentCredentialResult, type MitraConfig, type MitraInstance, type PatchRecordOptions, type ProfileTableRef, type QueuedItem, type ResetPasswordOptions, type RunActionOptions, type RunActionResponse, type SendOptions, type SendPasswordResetCodeOptions, type SetFileStatusOptions, type SetFileStatusResponse, type SetProfileActionsOptions, type SetProfileDmlTablesOptions, type SetProfilePermissionResponse, type SetProfileScreensOptions, type SetProfileSelectTablesOptions, type SetProfileServerFunctionsOptions, type SetProfileUsersOptions, type SetVariableOptions, type SetVariableResponse, type StopServerFunctionExecutionOptions, type StopServerFunctionExecutionResponse, type UpdateProfileOptions, type UpdateProfileResponse, type UpdateRecordOptions, type UploadFileOptions, type UploadFileResponse, type ValidatePasswordResetCodeOptions, callIntegrationMitra, closeChatMitra, configureSdkMitra, createMitraInstance, createProfileMitra, createRecordMitra, createRecordsBatchMitra, deleteProfileMitra, deleteRecordMitra, emailLoginMitra, emailResendCodeMitra, emailSignupMitra, emailVerifyCodeMitra, executeDataLoaderMitra, executeDbActionMitra, executePublicServerFunctionAsyncMitra, executePublicServerFunctionMitra, executeServerFunctionAsyncMitra, executeServerFunctionMitra, getAgentChatsMitra, getAgentTaskMitra, getConfig, getProfileDetailsMitra, getPublicServerFunctionExecutionMitra, getRecordMitra, getVariableMitra, listIntegrationsMitra, listProfilesMitra, listRecordsMitra, listVariablesMitra, loginMitra, loginWithEmailMitra, loginWithGoogleMitra, loginWithMicrosoftMitra, manageAgentCredentialMitra, openChatMitra, patchRecordMitra, refreshTokenSilently, resetPasswordMitra, resolveProjectId, runActionMitra, sendPasswordResetCodeMitra, setFileStatusMitra, setProfileActionsMitra, setProfileDmlTablesMitra, setProfileScreensMitra, setProfileSelectTablesMitra, setProfileServerFunctionsMitra, setProfileUsersMitra, setVariableMitra, stopServerFunctionExecutionMitra, updateProfileMitra, updateRecordMitra, uploadFileLoadableMitra, uploadFilePublicMitra, validatePasswordResetCodeMitra };
|
|
1180
|
+
export { type AgentApiKeyTarget, type AgentChat, type AgentDeltaEvent, type AgentErrorEvent, type AgentMessage, type AgentModelGroup, type AgentModelOption, type AgentQueueChangeEvent, type AgentStatusChangeEvent, type AgentSubscriptionAccount, type AgentSubscriptionTarget, type AgentTaskCreatedEvent, type AgentTaskEventMap, type AgentTaskEventName, type AgentTaskSession, type AgentTaskStatus, type AgentToolEvent, type AgentTurnEndEvent, type AgentType, type CallIntegrationOptions, type CallIntegrationResponse, type ConnectAgentCredentialOptions, type ConnectAgentSubscriptionResult, type CreateProfileOptions, type CreateProfileResponse, type CreateRecordOptions, type CreateRecordsBatchOptions, type CredentialAction, type CredentialTarget, type DeleteProfileOptions, type DeleteProfileResponse, type DeleteRecordOptions, type EmailLoginOptions, type EmailResendCodeOptions, type EmailSignupOptions, type EmailVerifyCodeOptions, type ExecuteDataLoaderOptions, type ExecuteDataLoaderResponse, type ExecuteDbActionOptions, type ExecuteDbActionResponse, type ExecutePublicServerFunctionAsyncResponse, type ExecutePublicServerFunctionOptions, type ExecutePublicServerFunctionResponse, type ExecuteServerFunctionAsyncOptions, type ExecuteServerFunctionAsyncResponse, type ExecuteServerFunctionOptions, type ExecuteServerFunctionResponse, type GetAgentChatsOptions, type GetAgentTaskCreateOptions, type GetAgentTaskOpenOptions, type GetAgentTaskOptions, type GetProfileDetailsOptions, type GetProfileDetailsResponse, type GetPublicServerFunctionExecutionOptions, type GetPublicServerFunctionExecutionResponse, type GetRecordOptions, type GetVariableOptions, type GetVariableResponse, type IntegrationResponse, type ListAgentModelsResult, type ListIntegrationsOptions, type ListProfilesOptions, type ListProfilesResponse, type ListRecordsOptions, type ListRecordsResponse, type ListVariablesOptions, type ListVariablesResponse, type LoginOptions, type LoginResponse, type ManageAgentCredentialOptions, type ManageAgentCredentialResult, type MitraConfig, type MitraInstance, type PatchRecordOptions, type ProfileTableRef, type QueuedItem, type ResetPasswordOptions, type RunActionOptions, type RunActionResponse, type SendOptions, type SendPasswordResetCodeOptions, type SetFileStatusOptions, type SetFileStatusResponse, type SetProfileActionsOptions, type SetProfileDmlTablesOptions, type SetProfilePermissionResponse, type SetProfileScreensOptions, type SetProfileSelectTablesOptions, type SetProfileServerFunctionsOptions, type SetProfileUsersOptions, type SetVariableOptions, type SetVariableResponse, type StopServerFunctionExecutionOptions, type StopServerFunctionExecutionResponse, type UpdateProfileOptions, type UpdateProfileResponse, type UpdateRecordOptions, type UploadFileOptions, type UploadFileResponse, type ValidatePasswordResetCodeOptions, callIntegrationMitra, closeChatMitra, configureSdkMitra, createMitraInstance, createProfileMitra, createRecordMitra, createRecordsBatchMitra, deleteProfileMitra, deleteRecordMitra, emailLoginMitra, emailResendCodeMitra, emailSignupMitra, emailVerifyCodeMitra, executeDataLoaderMitra, executeDbActionMitra, executePublicServerFunctionAsyncMitra, executePublicServerFunctionMitra, executeServerFunctionAsyncMitra, executeServerFunctionMitra, getAgentChatsMitra, getAgentTaskMitra, getConfig, getProfileDetailsMitra, getPublicServerFunctionExecutionMitra, getRecordMitra, getVariableMitra, listIntegrationsMitra, listProfilesMitra, listRecordsMitra, listVariablesMitra, loginMitra, loginWithEmailMitra, loginWithGoogleMitra, loginWithMicrosoftMitra, manageAgentCredentialMitra, openChatMitra, patchRecordMitra, refreshTokenSilently, resetPasswordMitra, resolveProjectId, runActionMitra, sendPasswordResetCodeMitra, setFileStatusMitra, setProfileActionsMitra, setProfileDmlTablesMitra, setProfileScreensMitra, setProfileSelectTablesMitra, setProfileServerFunctionsMitra, setProfileUsersMitra, setVariableMitra, stopServerFunctionExecutionMitra, updateProfileMitra, updateRecordMitra, uploadFileLoadableMitra, uploadFilePublicMitra, validatePasswordResetCodeMitra };
|
package/dist/index.d.ts
CHANGED
|
@@ -547,6 +547,13 @@ interface GetAgentTaskCreateOptions {
|
|
|
547
547
|
projectId?: number;
|
|
548
548
|
/** Tipo do agente. Default: 'claudecode'. */
|
|
549
549
|
agentType?: AgentType;
|
|
550
|
+
/**
|
|
551
|
+
* Modelo a usar (value vindo de manageAgentCredentialMitra({action:'list_models'})).
|
|
552
|
+
* Ex: 'openai/gpt-5.5:medium', 'glm/glm-5.1', 'subscription:anthropic:claude-opus-4-7'.
|
|
553
|
+
* O backend deriva agentType/provider/model a partir dele. Vira o default da
|
|
554
|
+
* task; cada send() pode sobrescrever via SendOptions.modelId.
|
|
555
|
+
*/
|
|
556
|
+
modelId?: string;
|
|
550
557
|
/** Nome do chat (default: derivado do prompt). */
|
|
551
558
|
name?: string;
|
|
552
559
|
}
|
|
@@ -567,6 +574,12 @@ interface QueuedItem {
|
|
|
567
574
|
}
|
|
568
575
|
interface SendOptions {
|
|
569
576
|
agentType?: AgentType;
|
|
577
|
+
/**
|
|
578
|
+
* Modelo a usar neste turno (value de list_models). Ex: 'openai/gpt-5.5:medium',
|
|
579
|
+
* 'glm/glm-5.1', 'subscription:anthropic:claude-opus-4-7'. Sobrescreve o modelId
|
|
580
|
+
* default da session. Se omitido, usa o default da session / agentType.
|
|
581
|
+
*/
|
|
582
|
+
modelId?: string;
|
|
570
583
|
}
|
|
571
584
|
interface AgentDeltaEvent {
|
|
572
585
|
delta: string;
|
|
@@ -644,7 +657,25 @@ type CredentialTarget = AgentSubscriptionTarget | AgentApiKeyTarget;
|
|
|
644
657
|
* de baixo nível + abre popup + espera autorização):
|
|
645
658
|
* connect
|
|
646
659
|
*/
|
|
647
|
-
type CredentialAction = 'connect' | 'status' | 'remove' | 'list' | 'validate' | 'save' | 'oauth_start' | 'oauth_exchange' | 'device_start' | 'device_poll' | 'device_cancel';
|
|
660
|
+
type CredentialAction = 'connect' | 'status' | 'remove' | 'list' | 'list_models' | 'validate' | 'save' | 'oauth_start' | 'oauth_exchange' | 'device_start' | 'device_poll' | 'device_cancel';
|
|
661
|
+
/** Um modelo selecionável (retornado por action='list_models'). */
|
|
662
|
+
interface AgentModelOption {
|
|
663
|
+
/** Passe direto em send({ modelId }) ou getAgentTaskMitra({ create, modelId }). */
|
|
664
|
+
modelId: string;
|
|
665
|
+
/** Label exibível. */
|
|
666
|
+
name: string;
|
|
667
|
+
}
|
|
668
|
+
/** Grupo de modelos por (tipo × provedor) — só grupos com credencial. */
|
|
669
|
+
interface AgentModelGroup {
|
|
670
|
+
id: string;
|
|
671
|
+
name: string;
|
|
672
|
+
kind: 'subscription' | 'api_key';
|
|
673
|
+
models: AgentModelOption[];
|
|
674
|
+
}
|
|
675
|
+
/** Retorno de manageAgentCredentialMitra({ action: 'list_models' }). */
|
|
676
|
+
interface ListAgentModelsResult {
|
|
677
|
+
providers: AgentModelGroup[];
|
|
678
|
+
}
|
|
648
679
|
/**
|
|
649
680
|
* Opções de baixo nível (RPC direto) de `manageAgentCredentialMitra`. Campos
|
|
650
681
|
* extras (key, code, codeVerifier, redirectUri, pollId, accessToken,
|
|
@@ -1146,4 +1177,4 @@ declare function setProfileScreensMitra(options: SetProfileScreensOptions): Prom
|
|
|
1146
1177
|
*/
|
|
1147
1178
|
declare function setProfileServerFunctionsMitra(options: SetProfileServerFunctionsOptions): Promise<SetProfilePermissionResponse>;
|
|
1148
1179
|
|
|
1149
|
-
export { type AgentApiKeyTarget, type AgentChat, type AgentDeltaEvent, type AgentErrorEvent, type AgentMessage, type AgentQueueChangeEvent, type AgentStatusChangeEvent, type AgentSubscriptionAccount, type AgentSubscriptionTarget, type AgentTaskCreatedEvent, type AgentTaskEventMap, type AgentTaskEventName, type AgentTaskSession, type AgentTaskStatus, type AgentToolEvent, type AgentTurnEndEvent, type AgentType, type CallIntegrationOptions, type CallIntegrationResponse, type ConnectAgentCredentialOptions, type ConnectAgentSubscriptionResult, type CreateProfileOptions, type CreateProfileResponse, type CreateRecordOptions, type CreateRecordsBatchOptions, type CredentialAction, type CredentialTarget, type DeleteProfileOptions, type DeleteProfileResponse, type DeleteRecordOptions, type EmailLoginOptions, type EmailResendCodeOptions, type EmailSignupOptions, type EmailVerifyCodeOptions, type ExecuteDataLoaderOptions, type ExecuteDataLoaderResponse, type ExecuteDbActionOptions, type ExecuteDbActionResponse, type ExecutePublicServerFunctionAsyncResponse, type ExecutePublicServerFunctionOptions, type ExecutePublicServerFunctionResponse, type ExecuteServerFunctionAsyncOptions, type ExecuteServerFunctionAsyncResponse, type ExecuteServerFunctionOptions, type ExecuteServerFunctionResponse, type GetAgentChatsOptions, type GetAgentTaskCreateOptions, type GetAgentTaskOpenOptions, type GetAgentTaskOptions, type GetProfileDetailsOptions, type GetProfileDetailsResponse, type GetPublicServerFunctionExecutionOptions, type GetPublicServerFunctionExecutionResponse, type GetRecordOptions, type GetVariableOptions, type GetVariableResponse, type IntegrationResponse, type ListIntegrationsOptions, type ListProfilesOptions, type ListProfilesResponse, type ListRecordsOptions, type ListRecordsResponse, type ListVariablesOptions, type ListVariablesResponse, type LoginOptions, type LoginResponse, type ManageAgentCredentialOptions, type ManageAgentCredentialResult, type MitraConfig, type MitraInstance, type PatchRecordOptions, type ProfileTableRef, type QueuedItem, type ResetPasswordOptions, type RunActionOptions, type RunActionResponse, type SendOptions, type SendPasswordResetCodeOptions, type SetFileStatusOptions, type SetFileStatusResponse, type SetProfileActionsOptions, type SetProfileDmlTablesOptions, type SetProfilePermissionResponse, type SetProfileScreensOptions, type SetProfileSelectTablesOptions, type SetProfileServerFunctionsOptions, type SetProfileUsersOptions, type SetVariableOptions, type SetVariableResponse, type StopServerFunctionExecutionOptions, type StopServerFunctionExecutionResponse, type UpdateProfileOptions, type UpdateProfileResponse, type UpdateRecordOptions, type UploadFileOptions, type UploadFileResponse, type ValidatePasswordResetCodeOptions, callIntegrationMitra, closeChatMitra, configureSdkMitra, createMitraInstance, createProfileMitra, createRecordMitra, createRecordsBatchMitra, deleteProfileMitra, deleteRecordMitra, emailLoginMitra, emailResendCodeMitra, emailSignupMitra, emailVerifyCodeMitra, executeDataLoaderMitra, executeDbActionMitra, executePublicServerFunctionAsyncMitra, executePublicServerFunctionMitra, executeServerFunctionAsyncMitra, executeServerFunctionMitra, getAgentChatsMitra, getAgentTaskMitra, getConfig, getProfileDetailsMitra, getPublicServerFunctionExecutionMitra, getRecordMitra, getVariableMitra, listIntegrationsMitra, listProfilesMitra, listRecordsMitra, listVariablesMitra, loginMitra, loginWithEmailMitra, loginWithGoogleMitra, loginWithMicrosoftMitra, manageAgentCredentialMitra, openChatMitra, patchRecordMitra, refreshTokenSilently, resetPasswordMitra, resolveProjectId, runActionMitra, sendPasswordResetCodeMitra, setFileStatusMitra, setProfileActionsMitra, setProfileDmlTablesMitra, setProfileScreensMitra, setProfileSelectTablesMitra, setProfileServerFunctionsMitra, setProfileUsersMitra, setVariableMitra, stopServerFunctionExecutionMitra, updateProfileMitra, updateRecordMitra, uploadFileLoadableMitra, uploadFilePublicMitra, validatePasswordResetCodeMitra };
|
|
1180
|
+
export { type AgentApiKeyTarget, type AgentChat, type AgentDeltaEvent, type AgentErrorEvent, type AgentMessage, type AgentModelGroup, type AgentModelOption, type AgentQueueChangeEvent, type AgentStatusChangeEvent, type AgentSubscriptionAccount, type AgentSubscriptionTarget, type AgentTaskCreatedEvent, type AgentTaskEventMap, type AgentTaskEventName, type AgentTaskSession, type AgentTaskStatus, type AgentToolEvent, type AgentTurnEndEvent, type AgentType, type CallIntegrationOptions, type CallIntegrationResponse, type ConnectAgentCredentialOptions, type ConnectAgentSubscriptionResult, type CreateProfileOptions, type CreateProfileResponse, type CreateRecordOptions, type CreateRecordsBatchOptions, type CredentialAction, type CredentialTarget, type DeleteProfileOptions, type DeleteProfileResponse, type DeleteRecordOptions, type EmailLoginOptions, type EmailResendCodeOptions, type EmailSignupOptions, type EmailVerifyCodeOptions, type ExecuteDataLoaderOptions, type ExecuteDataLoaderResponse, type ExecuteDbActionOptions, type ExecuteDbActionResponse, type ExecutePublicServerFunctionAsyncResponse, type ExecutePublicServerFunctionOptions, type ExecutePublicServerFunctionResponse, type ExecuteServerFunctionAsyncOptions, type ExecuteServerFunctionAsyncResponse, type ExecuteServerFunctionOptions, type ExecuteServerFunctionResponse, type GetAgentChatsOptions, type GetAgentTaskCreateOptions, type GetAgentTaskOpenOptions, type GetAgentTaskOptions, type GetProfileDetailsOptions, type GetProfileDetailsResponse, type GetPublicServerFunctionExecutionOptions, type GetPublicServerFunctionExecutionResponse, type GetRecordOptions, type GetVariableOptions, type GetVariableResponse, type IntegrationResponse, type ListAgentModelsResult, type ListIntegrationsOptions, type ListProfilesOptions, type ListProfilesResponse, type ListRecordsOptions, type ListRecordsResponse, type ListVariablesOptions, type ListVariablesResponse, type LoginOptions, type LoginResponse, type ManageAgentCredentialOptions, type ManageAgentCredentialResult, type MitraConfig, type MitraInstance, type PatchRecordOptions, type ProfileTableRef, type QueuedItem, type ResetPasswordOptions, type RunActionOptions, type RunActionResponse, type SendOptions, type SendPasswordResetCodeOptions, type SetFileStatusOptions, type SetFileStatusResponse, type SetProfileActionsOptions, type SetProfileDmlTablesOptions, type SetProfilePermissionResponse, type SetProfileScreensOptions, type SetProfileSelectTablesOptions, type SetProfileServerFunctionsOptions, type SetProfileUsersOptions, type SetVariableOptions, type SetVariableResponse, type StopServerFunctionExecutionOptions, type StopServerFunctionExecutionResponse, type UpdateProfileOptions, type UpdateProfileResponse, type UpdateRecordOptions, type UploadFileOptions, type UploadFileResponse, type ValidatePasswordResetCodeOptions, callIntegrationMitra, closeChatMitra, configureSdkMitra, createMitraInstance, createProfileMitra, createRecordMitra, createRecordsBatchMitra, deleteProfileMitra, deleteRecordMitra, emailLoginMitra, emailResendCodeMitra, emailSignupMitra, emailVerifyCodeMitra, executeDataLoaderMitra, executeDbActionMitra, executePublicServerFunctionAsyncMitra, executePublicServerFunctionMitra, executeServerFunctionAsyncMitra, executeServerFunctionMitra, getAgentChatsMitra, getAgentTaskMitra, getConfig, getProfileDetailsMitra, getPublicServerFunctionExecutionMitra, getRecordMitra, getVariableMitra, listIntegrationsMitra, listProfilesMitra, listRecordsMitra, listVariablesMitra, loginMitra, loginWithEmailMitra, loginWithGoogleMitra, loginWithMicrosoftMitra, manageAgentCredentialMitra, openChatMitra, patchRecordMitra, refreshTokenSilently, resetPasswordMitra, resolveProjectId, runActionMitra, sendPasswordResetCodeMitra, setFileStatusMitra, setProfileActionsMitra, setProfileDmlTablesMitra, setProfileScreensMitra, setProfileSelectTablesMitra, setProfileServerFunctionsMitra, setProfileUsersMitra, setVariableMitra, stopServerFunctionExecutionMitra, updateProfileMitra, updateRecordMitra, uploadFileLoadableMitra, uploadFilePublicMitra, validatePasswordResetCodeMitra };
|
package/dist/index.js
CHANGED
|
@@ -390,6 +390,7 @@ var AgentTaskSession = class {
|
|
|
390
390
|
if (init.kind === "new") {
|
|
391
391
|
this._projectId = init.projectId;
|
|
392
392
|
this._agentType = init.agentType;
|
|
393
|
+
this._modelId = init.modelId;
|
|
393
394
|
this._initialName = init.name;
|
|
394
395
|
this._setStatus("idle");
|
|
395
396
|
this._wsUnsubscribePending = this._transport.subscribePending(
|
|
@@ -479,12 +480,13 @@ var AgentTaskSession = class {
|
|
|
479
480
|
}
|
|
480
481
|
// ── Comandos ───────────────────────────────────────
|
|
481
482
|
send(prompt, options) {
|
|
482
|
-
var _a, _b, _c;
|
|
483
|
+
var _a, _b, _c, _d;
|
|
483
484
|
if (this._status === "closed") {
|
|
484
485
|
throw new Error("AgentTaskSession: session fechada.");
|
|
485
486
|
}
|
|
486
487
|
if (!prompt.trim()) return;
|
|
487
488
|
const agentType = (_b = (_a = options == null ? void 0 : options.agentType) != null ? _a : this._agentType) != null ? _b : "claudecode";
|
|
489
|
+
const modelId = (_c = options == null ? void 0 : options.modelId) != null ? _c : this._modelId;
|
|
488
490
|
if (this._status === "streaming") {
|
|
489
491
|
this._enqueue(prompt, agentType);
|
|
490
492
|
if (this._taskId) {
|
|
@@ -495,6 +497,7 @@ var AgentTaskSession = class {
|
|
|
495
497
|
taskId: this._taskId,
|
|
496
498
|
projectId: this._projectId,
|
|
497
499
|
agentType,
|
|
500
|
+
...modelId ? { modelId } : {},
|
|
498
501
|
midSession: true
|
|
499
502
|
},
|
|
500
503
|
this._taskId
|
|
@@ -521,11 +524,12 @@ var AgentTaskSession = class {
|
|
|
521
524
|
projectId: this._projectId,
|
|
522
525
|
agentType
|
|
523
526
|
};
|
|
527
|
+
if (modelId) payload.modelId = modelId;
|
|
524
528
|
if (this._taskId) payload.taskId = this._taskId;
|
|
525
529
|
if (this._initialName && !this._taskId) {
|
|
526
530
|
payload.name = this._initialName;
|
|
527
531
|
}
|
|
528
|
-
this._transport.send("send_prompt", payload, (
|
|
532
|
+
this._transport.send("send_prompt", payload, (_d = this._taskId) != null ? _d : void 0);
|
|
529
533
|
}
|
|
530
534
|
async cancel() {
|
|
531
535
|
if (this._status === "closed") return;
|
|
@@ -934,6 +938,7 @@ function getAgentTaskMitra(options) {
|
|
|
934
938
|
kind: "new",
|
|
935
939
|
projectId: options.projectId,
|
|
936
940
|
agentType: options.agentType,
|
|
941
|
+
modelId: options.modelId,
|
|
937
942
|
name: options.name
|
|
938
943
|
},
|
|
939
944
|
transport
|