@rodrigobeber/patoai-dtos 4.7.69 → 4.7.71

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.
@@ -13,3 +13,4 @@ export * from './support-funnel.dto';
13
13
  export * from './support-insight-access.dto';
14
14
  export * from './support-agent-balance.dto';
15
15
  export * from './support-lab-session.dto';
16
+ export * from './support-lab-onboarding.dto';
@@ -29,3 +29,4 @@ __exportStar(require("./support-funnel.dto"), exports);
29
29
  __exportStar(require("./support-insight-access.dto"), exports);
30
30
  __exportStar(require("./support-agent-balance.dto"), exports);
31
31
  __exportStar(require("./support-lab-session.dto"), exports);
32
+ __exportStar(require("./support-lab-onboarding.dto"), exports);
@@ -0,0 +1,19 @@
1
+ export interface SupportLabSeedDto {
2
+ idCrew: number;
3
+ agentName?: string;
4
+ shouldReview?: string[];
5
+ }
6
+ export interface SupportLabSeedResponseDto {
7
+ idSession: string | null;
8
+ }
9
+ export interface SupportOnboardingItemDto {
10
+ key: string;
11
+ label: string;
12
+ applicable: boolean;
13
+ done: boolean;
14
+ link?: string;
15
+ essential?: boolean;
16
+ }
17
+ export interface SupportOnboardingStatusDto {
18
+ items: SupportOnboardingItemDto[];
19
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ // Onboarding guiado do Laboratório (pós-criação do agente). Duas peças:
3
+ // 1) SEED: cria uma conversa "assistant-first" persistida ("Primeiros passos") com uma saudação
4
+ // ESTÁTICA (sem LLM/quota). Endpoint: POST /support/lab/seed (idempotente por (idCrew,idAccount)).
5
+ // 2) STATUS: bloco de pendências VIVO — o crew deriva, dos sinais atuais da config, o que ainda
6
+ // falta configurar. Endpoint: GET /support/lab/onboarding-status?idCrew (RPC support.getOnboardingStatus).
7
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -31,6 +31,9 @@ export interface SupportBaseTemplatesDto {
31
31
  }
32
32
  export interface SupportWorkbenchLimitsDto {
33
33
  promptRunMax: number;
34
+ promptRunUsed: number;
35
+ promptRunRemaining: number;
36
+ worstStageName: string | null;
34
37
  aboutMax: number;
35
38
  roleMax: number;
36
39
  audienceMax: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rodrigobeber/patoai-dtos",
3
- "version": "4.7.69",
3
+ "version": "4.7.71",
4
4
  "description": "Data Transfer Objects for PatoAI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",