@greatapps/greatagents 0.1.22 → 0.1.23
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/CLAUDE.md +2 -2
- package/package.json +1 -1
- package/src/modules/agents/properties.js +12 -0
package/CLAUDE.md
CHANGED
|
@@ -6,11 +6,11 @@ Pacote NPM `@greatapps/greatagents`: definições de schema compartilhadas por t
|
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
# Após alterar schemas, atualizar version e publicar:
|
|
9
|
-
|
|
9
|
+
bun version patch # ou minor/major
|
|
10
10
|
npm publish # Publica no registry
|
|
11
11
|
```
|
|
12
12
|
|
|
13
|
-
**IMPORTANTE**: Após publicar, atualizar a versão em `gagents-r1-api-postgresql/package.json` e `gagents-r3-api/package.json`, rodar `
|
|
13
|
+
**IMPORTANTE**: Após publicar, atualizar a versão em `gagents-r1-api-postgresql/package.json` e `gagents-r3-api/package.json`, rodar `bun install` em ambos, e fazer deploy.
|
|
14
14
|
|
|
15
15
|
## Estrutura
|
|
16
16
|
|
package/package.json
CHANGED
|
@@ -45,6 +45,18 @@ export const properties = {
|
|
|
45
45
|
disabled: true
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
|
+
active: {
|
|
49
|
+
type: "boolean",
|
|
50
|
+
default: true,
|
|
51
|
+
filterable: true,
|
|
52
|
+
interface: {
|
|
53
|
+
label: {
|
|
54
|
+
"pt-br": "Ativo",
|
|
55
|
+
"en": "Active"
|
|
56
|
+
},
|
|
57
|
+
component: "toggle"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
48
60
|
title: {
|
|
49
61
|
type: "string",
|
|
50
62
|
required: true,
|