@getsupervisor/agents-studio-sdk 1.1.0 → 1.3.0
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/CHANGELOG.md +19 -0
- package/dist/index.cjs +518 -56
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1007 -127
- package/dist/index.d.ts +1007 -127
- package/dist/index.js +509 -56
- package/dist/index.js.map +1 -1
- package/package.json +7 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## v1.1.0
|
|
2
|
+
|
|
3
|
+
## [1.1.0](https://github.com/julio-supervisor/agents-studio-be/compare/v1.0.0...v1.1.0) (2025-10-09)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* agregar documentación inicial para el monorepo y sus contextos ([84b7383](https://github.com/julio-supervisor/agents-studio-be/commit/84b7383189c83e0e0a72d95ec12234253a317c0a))
|
|
8
|
+
* agregar endpoint de health check y controlador correspondiente ([361f3b9](https://github.com/julio-supervisor/agents-studio-be/commit/361f3b9bf30907ed37c17ab7da5a60b8816a659a))
|
|
9
|
+
* agregar soporte para workspaces dinámicos en el cliente, incluyendo métodos para establecer y obtener el workspace actual ([2eb6894](https://github.com/julio-supervisor/agents-studio-be/commit/2eb6894de045e69200a42f333383b8826c4eda19))
|
|
10
|
+
* **auth:** integrate Auth0 for JWT authentication ([6a885f5](https://github.com/julio-supervisor/agents-studio-be/commit/6a885f5351898b5fdbe3ef036a1dcace311e446e))
|
|
11
|
+
* **database:** agregar configuración de PostgreSQL y TypeORM, incluyendo documentación y docker-compose ([01cf725](https://github.com/julio-supervisor/agents-studio-be/commit/01cf7258c34c04843f8b85c88797a1deca3682de))
|
|
12
|
+
* **database:** agregar migración para la tabla external_workspaces con extensión pgcrypto ([71173e7](https://github.com/julio-supervisor/agents-studio-be/commit/71173e7c5abdc1095471ee0ae37a7b5641c1a90c))
|
|
13
|
+
* **database:** agregar migraciones para las tablas business_hour_exceptions, agent_business_hours, catalog_tags, agent_versions, user_profiles, user_roles y workspace_settings, incluyendo índices y triggers ([d735ade](https://github.com/julio-supervisor/agents-studio-be/commit/d735ade30d0a2269bd37f03e3d0543e3d83e4fcd))
|
|
14
|
+
* **database:** agregar migraciones para las tablas external_users y agents, incluyendo índices y restricciones ([7d00502](https://github.com/julio-supervisor/agents-studio-be/commit/7d00502dbb402a3e7c18a78a7b9d5b6c70ef7e94))
|
|
15
|
+
* **database:** agregar migraciones y semillas para catálogos de lenguaje, estilo, tono y herramientas, incluyendo funciones utilitarias ([1ee3857](https://github.com/julio-supervisor/agents-studio-be/commit/1ee385707ac4b98d514e7527d5e7296d64185bec))
|
|
16
|
+
* enhance documentation for agent creation endpoint and update interceptor details ([4660630](https://github.com/julio-supervisor/agents-studio-be/commit/466063032ed0d739d67d50c828c829d5ae849fe6))
|
|
17
|
+
* implement WorkspaceGuard for workspace ID validation in HTTP requests ([6011d1f](https://github.com/julio-supervisor/agents-studio-be/commit/6011d1f3fe763bf111863ac3dffb9b1c620fa5fc))
|
|
18
|
+
|
|
19
|
+
|
|
1
20
|
## v1.0.0
|
|
2
21
|
|
|
3
22
|
## 1.0.0 (2025-10-07)
|