@digipair/skill-editor 0.32.7 → 0.33.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/schema.en.json +0 -298
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-editor",
3
- "version": "0.32.7",
3
+ "version": "0.33.0",
4
4
  "dependencies": {},
5
5
  "main": "./index.cjs.js",
6
6
  "module": "./index.esm.js"
package/schema.en.json DELETED
@@ -1,298 +0,0 @@
1
- {
2
- "openapi": "3.0.0",
3
- "info": {
4
- "title": "@digipair/skill-editor",
5
- "summary": "Editing Reasonings",
6
- "description": "The skill allows managing the editing of the reasonings of digipairs.",
7
- "version": "0.1.0",
8
- "x-icon": "🏗"
9
- },
10
- "paths": {
11
- "/reasonings": {
12
- "post": {
13
- "tags": ["service"],
14
- "summary": "List Reasonings",
15
- "descriptions": "Lists the reasonings of a digipair",
16
- "parameters": [
17
- {
18
- "name": "path",
19
- "summary": "Access Path",
20
- "required": false,
21
- "description": "Access path to the digipair's directory",
22
- "schema": {
23
- "type": "string"
24
- }
25
- },
26
- {
27
- "name": "digipair",
28
- "summary": "Digipair",
29
- "required": true,
30
- "description": "Name of the digipair",
31
- "schema": {
32
- "type": "string"
33
- }
34
- }
35
- ],
36
- "x-events": []
37
- }
38
- },
39
- "/reasoning": {
40
- "post": {
41
- "tags": ["service"],
42
- "summary": "Reasoning Information",
43
- "parameters": [
44
- {
45
- "name": "path",
46
- "summary": "Access Path",
47
- "required": false,
48
- "description": "Access path to the digipair's directory",
49
- "schema": {
50
- "type": "string"
51
- }
52
- },
53
- {
54
- "name": "digipair",
55
- "summary": "Digipair",
56
- "required": true,
57
- "description": "Name of the digipair",
58
- "schema": {
59
- "type": "string"
60
- }
61
- },
62
- {
63
- "name": "reasoning",
64
- "summary": "Reasoning",
65
- "required": true,
66
- "description": "Name of the reasoning",
67
- "schema": {
68
- "type": "string"
69
- }
70
- }
71
- ],
72
- "x-events": []
73
- }
74
- },
75
- "/setReasoning": {
76
- "post": {
77
- "tags": ["service"],
78
- "summary": "Register a Reasoning",
79
- "parameters": [
80
- {
81
- "name": "path",
82
- "summary": "Access Path",
83
- "required": false,
84
- "description": "Access path to the digipair's directory",
85
- "schema": {
86
- "type": "string"
87
- }
88
- },
89
- {
90
- "name": "digipair",
91
- "summary": "Digipair",
92
- "required": true,
93
- "description": "Name of the digipair",
94
- "schema": {
95
- "type": "string"
96
- }
97
- },
98
- {
99
- "name": "reasoning",
100
- "summary": "Reasoning",
101
- "required": true,
102
- "description": "Name of the reasoning",
103
- "schema": {
104
- "type": "string"
105
- }
106
- },
107
- {
108
- "name": "value",
109
- "summary": "Content",
110
- "required": true,
111
- "description": "Content of the reasoning to be saved",
112
- "schema": {
113
- "type": "object"
114
- }
115
- }
116
- ],
117
- "x-events": []
118
- }
119
- },
120
- "/removeReasoning": {
121
- "post": {
122
- "tags": ["service"],
123
- "summary": "Remove a Reasoning",
124
- "parameters": [
125
- {
126
- "name": "path",
127
- "summary": "Access Path",
128
- "required": false,
129
- "description": "Access path to the digipair's directory",
130
- "schema": {
131
- "type": "string"
132
- }
133
- },
134
- {
135
- "name": "digipair",
136
- "summary": "Digipair",
137
- "required": true,
138
- "description": "Name of the digipair",
139
- "schema": {
140
- "type": "string"
141
- }
142
- },
143
- {
144
- "name": "reasoning",
145
- "summary": "Reasoning",
146
- "required": true,
147
- "description": "Name of the reasoning",
148
- "schema": {
149
- "type": "string"
150
- }
151
- }
152
- ],
153
- "x-events": []
154
- }
155
- },
156
- "/digipairs": {
157
- "post": {
158
- "tags": ["service"],
159
- "summary": "List Digipairs",
160
- "descriptions": "Lists the available digipairs",
161
- "parameters": [
162
- {
163
- "name": "path",
164
- "summary": "Access Path",
165
- "required": false,
166
- "description": "Access path to the digipair's directory",
167
- "schema": {
168
- "type": "string"
169
- }
170
- }
171
- ],
172
- "x-events": []
173
- }
174
- },
175
- "/digipair": {
176
- "post": {
177
- "tags": ["service"],
178
- "summary": "Digipair Information",
179
- "descriptions": "Information about a digipair",
180
- "parameters": [
181
- {
182
- "name": "path",
183
- "summary": "Access Path",
184
- "required": false,
185
- "description": "Access path to the digipair's directory",
186
- "schema": {
187
- "type": "string"
188
- }
189
- },
190
- {
191
- "name": "digipair",
192
- "summary": "Digipair",
193
- "required": true,
194
- "description": "Name of the digipair",
195
- "schema": {
196
- "type": "string"
197
- }
198
- }
199
- ],
200
- "x-events": []
201
- }
202
- },
203
- "/setDigipair": {
204
- "post": {
205
- "tags": ["service"],
206
- "summary": "Register a Digipair",
207
- "parameters": [
208
- {
209
- "name": "path",
210
- "summary": "Access Path",
211
- "required": false,
212
- "description": "Access path to the digipair's directory",
213
- "schema": {
214
- "type": "string"
215
- }
216
- },
217
- {
218
- "name": "digipair",
219
- "summary": "Digipair",
220
- "required": true,
221
- "description": "Name of the digipair",
222
- "schema": {
223
- "type": "string"
224
- }
225
- },
226
- {
227
- "name": "value",
228
- "summary": "Content",
229
- "required": true,
230
- "description": "Content of the reasoning to be saved",
231
- "schema": {
232
- "type": "object"
233
- }
234
- }
235
- ],
236
- "x-events": []
237
- }
238
- },
239
- "/removeDigipair": {
240
- "post": {
241
- "tags": ["service"],
242
- "summary": "Remove a Digipair",
243
- "parameters": [
244
- {
245
- "name": "path",
246
- "summary": "Access Path",
247
- "required": false,
248
- "description": "Access path to the digipair's directory",
249
- "schema": {
250
- "type": "string"
251
- }
252
- },
253
- {
254
- "name": "digipair",
255
- "summary": "Digipair",
256
- "required": true,
257
- "description": "Name of the digipair",
258
- "schema": {
259
- "type": "string"
260
- }
261
- }
262
- ],
263
- "x-events": []
264
- }
265
- },
266
- "/addDigipair": {
267
- "post": {
268
- "tags": ["service"],
269
- "summary": "Add a Digipair",
270
- "parameters": [
271
- {
272
- "name": "path",
273
- "summary": "Access Path",
274
- "required": false,
275
- "description": "Access path to the digipair's directory",
276
- "schema": {
277
- "type": "string"
278
- }
279
- },
280
- {
281
- "name": "digipair",
282
- "summary": "Digipair",
283
- "required": true,
284
- "description": "Name of the digipair",
285
- "schema": {
286
- "type": "string"
287
- }
288
- }
289
- ],
290
- "x-events": []
291
- }
292
- }
293
- },
294
- "components": {
295
- "schemas": {}
296
- },
297
- "x-scene-blocks": {}
298
- }