@greatapps/greatagents 0.1.26 → 0.1.27
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/package.json
CHANGED
|
@@ -97,7 +97,38 @@ export const properties = {
|
|
|
97
97
|
"en": "Give a short and descriptive title for the objective"
|
|
98
98
|
}
|
|
99
99
|
}
|
|
100
|
-
},
|
|
100
|
+
},
|
|
101
|
+
slug: {
|
|
102
|
+
type: "string",
|
|
103
|
+
required: true,
|
|
104
|
+
filterable: true,
|
|
105
|
+
validation: {
|
|
106
|
+
maxLength: 255
|
|
107
|
+
},
|
|
108
|
+
interface: {
|
|
109
|
+
label: {
|
|
110
|
+
"pt-br": "Slug (identificador)",
|
|
111
|
+
"en": "Slug (identifier)"
|
|
112
|
+
},
|
|
113
|
+
component: "string",
|
|
114
|
+
placeholder: {
|
|
115
|
+
"pt-br": "Ex: agendar-consulta",
|
|
116
|
+
"en": "E.g.: schedule-appointment"
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
active: {
|
|
121
|
+
type: "boolean",
|
|
122
|
+
default: true,
|
|
123
|
+
filterable: true,
|
|
124
|
+
interface: {
|
|
125
|
+
label: {
|
|
126
|
+
"pt-br": "Ativo",
|
|
127
|
+
"en": "Active"
|
|
128
|
+
},
|
|
129
|
+
component: "switch"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
101
132
|
prompt: {
|
|
102
133
|
type: "string",
|
|
103
134
|
interface: {
|