@rodrigobeber/patoai-dtos 4.7.30 → 4.7.32
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.
|
@@ -105,3 +105,12 @@ export interface AdminCrewBillingInfoDto {
|
|
|
105
105
|
export interface AdminBillingBatchResponseDto {
|
|
106
106
|
items: AdminCrewBillingInfoDto[];
|
|
107
107
|
}
|
|
108
|
+
export interface BillingPlanLimitsRequestDto {
|
|
109
|
+
idCrew: number;
|
|
110
|
+
}
|
|
111
|
+
export interface BillingPlanLimitsDto {
|
|
112
|
+
dailyTokenCeiling: number;
|
|
113
|
+
maxTokensPerConversation: number;
|
|
114
|
+
maxOutputTokens: number;
|
|
115
|
+
maxTurns: number;
|
|
116
|
+
}
|
|
@@ -113,6 +113,8 @@ export interface WizardIngestUrlRequestDto {
|
|
|
113
113
|
}
|
|
114
114
|
export interface WizardMaterialResponseDto {
|
|
115
115
|
material: WizardMaterialDto;
|
|
116
|
+
/** Frase de reconhecimento do agente gerada ao anexar (o frontend mostra como msg do assistente). */
|
|
117
|
+
ack?: string | null;
|
|
116
118
|
}
|
|
117
119
|
export interface WizardMaterialsResponseDto {
|
|
118
120
|
materials: WizardMaterialDto[];
|