@digipair/skill-chatbot 0.86.1 → 0.87.1
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 +1 -1
- package/schema.fr.json +40 -0
- package/schema.json +40 -0
package/package.json
CHANGED
package/schema.fr.json
CHANGED
@@ -188,6 +188,34 @@
|
|
188
188
|
}
|
189
189
|
},
|
190
190
|
"required": []
|
191
|
+
},
|
192
|
+
"ContextParameter": {
|
193
|
+
"type": "object",
|
194
|
+
"tags": ["service"],
|
195
|
+
"summary": "Parametre de contexte",
|
196
|
+
"properties": {
|
197
|
+
"name": {
|
198
|
+
"summary": "Paramètre",
|
199
|
+
"type": "string"
|
200
|
+
},
|
201
|
+
"summary": {
|
202
|
+
"summary": "Nom",
|
203
|
+
"type": "string"
|
204
|
+
},
|
205
|
+
"required": {
|
206
|
+
"summary": "Requis",
|
207
|
+
"type": "boolean"
|
208
|
+
},
|
209
|
+
"schema": {
|
210
|
+
"summary": "Schema",
|
211
|
+
"type": "object"
|
212
|
+
},
|
213
|
+
"description": {
|
214
|
+
"summary": "Description",
|
215
|
+
"type": "string"
|
216
|
+
}
|
217
|
+
},
|
218
|
+
"required": ["name", "summary", "required", "schema"]
|
191
219
|
}
|
192
220
|
}
|
193
221
|
},
|
@@ -223,6 +251,18 @@
|
|
223
251
|
"schema": {
|
224
252
|
"type": "string"
|
225
253
|
}
|
254
|
+
},
|
255
|
+
{
|
256
|
+
"name": "context",
|
257
|
+
"summary": "Contexte",
|
258
|
+
"required": true,
|
259
|
+
"description": "Schema du contexte",
|
260
|
+
"schema": {
|
261
|
+
"type": "array",
|
262
|
+
"items": {
|
263
|
+
"$ref": "#/components/schemas/ContextParameter"
|
264
|
+
}
|
265
|
+
}
|
226
266
|
}
|
227
267
|
],
|
228
268
|
"parameters": [
|
package/schema.json
CHANGED
@@ -188,6 +188,34 @@
|
|
188
188
|
}
|
189
189
|
},
|
190
190
|
"required": []
|
191
|
+
},
|
192
|
+
"ContextParameter": {
|
193
|
+
"type": "object",
|
194
|
+
"tags": ["service"],
|
195
|
+
"summary": "Context Parameter",
|
196
|
+
"properties": {
|
197
|
+
"name": {
|
198
|
+
"summary": "Name",
|
199
|
+
"type": "string"
|
200
|
+
},
|
201
|
+
"summary": {
|
202
|
+
"summary": "Summary",
|
203
|
+
"type": "string"
|
204
|
+
},
|
205
|
+
"required": {
|
206
|
+
"summary": "Required",
|
207
|
+
"type": "boolean"
|
208
|
+
},
|
209
|
+
"schema": {
|
210
|
+
"summary": "Schema",
|
211
|
+
"type": "object"
|
212
|
+
},
|
213
|
+
"description": {
|
214
|
+
"summary": "Summary",
|
215
|
+
"type": "string"
|
216
|
+
}
|
217
|
+
},
|
218
|
+
"required": ["name", "summary", "required", "schema"]
|
191
219
|
}
|
192
220
|
}
|
193
221
|
},
|
@@ -223,6 +251,18 @@
|
|
223
251
|
"schema": {
|
224
252
|
"type": "string"
|
225
253
|
}
|
254
|
+
},
|
255
|
+
{
|
256
|
+
"name": "context",
|
257
|
+
"summary": "Context",
|
258
|
+
"required": true,
|
259
|
+
"description": "Context schema",
|
260
|
+
"schema": {
|
261
|
+
"type": "array",
|
262
|
+
"items": {
|
263
|
+
"$ref": "#/components/schemas/ContextParameter"
|
264
|
+
}
|
265
|
+
}
|
226
266
|
}
|
227
267
|
],
|
228
268
|
"parameters": [
|