@digipair/skill-tool 0.98.0 → 0.98.2
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/index.cjs.js +5 -5
- package/index.esm.js +5 -5
- package/package.json +1 -1
- package/schema.fr.json +28 -9
package/index.cjs.js
CHANGED
|
@@ -23921,14 +23921,14 @@ function indent(str, spaces) {
|
|
|
23921
23921
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23922
23922
|
// match is required
|
|
23923
23923
|
if (!match) {
|
|
23924
|
-
return
|
|
23924
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
|
|
23925
23925
|
v: nextMatch1
|
|
23926
23926
|
};
|
|
23927
23927
|
}
|
|
23928
23928
|
var token = match.token, offset = match.offset;
|
|
23929
23929
|
i1 += offset;
|
|
23930
23930
|
if (token === " ") {
|
|
23931
|
-
return
|
|
23931
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
|
|
23932
23932
|
}
|
|
23933
23933
|
tokens1 = _to_consumable_array$1(tokens1).concat([
|
|
23934
23934
|
token
|
|
@@ -23947,7 +23947,7 @@ function indent(str, spaces) {
|
|
|
23947
23947
|
if (contextKeys.some(function(el) {
|
|
23948
23948
|
return el.startsWith(name);
|
|
23949
23949
|
})) {
|
|
23950
|
-
return
|
|
23950
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
|
|
23951
23951
|
}
|
|
23952
23952
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23953
23953
|
return el === name;
|
|
@@ -23966,9 +23966,9 @@ function indent(str, spaces) {
|
|
|
23966
23966
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23967
23967
|
return el.startsWith(name);
|
|
23968
23968
|
})) {
|
|
23969
|
-
return
|
|
23969
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
|
|
23970
23970
|
}
|
|
23971
|
-
return
|
|
23971
|
+
return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
|
|
23972
23972
|
v: nextMatch1
|
|
23973
23973
|
};
|
|
23974
23974
|
};
|
package/index.esm.js
CHANGED
|
@@ -23899,14 +23899,14 @@ function indent(str, spaces) {
|
|
|
23899
23899
|
var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
|
|
23900
23900
|
// match is required
|
|
23901
23901
|
if (!match) {
|
|
23902
|
-
return
|
|
23902
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
|
23903
23903
|
v: nextMatch1
|
|
23904
23904
|
};
|
|
23905
23905
|
}
|
|
23906
23906
|
var token = match.token, offset = match.offset;
|
|
23907
23907
|
i1 += offset;
|
|
23908
23908
|
if (token === " ") {
|
|
23909
|
-
return
|
|
23909
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
23910
23910
|
}
|
|
23911
23911
|
tokens1 = _to_consumable_array$1(tokens1).concat([
|
|
23912
23912
|
token
|
|
@@ -23925,7 +23925,7 @@ function indent(str, spaces) {
|
|
|
23925
23925
|
if (contextKeys.some(function(el) {
|
|
23926
23926
|
return el.startsWith(name);
|
|
23927
23927
|
})) {
|
|
23928
|
-
return
|
|
23928
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
23929
23929
|
}
|
|
23930
23930
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23931
23931
|
return el === name;
|
|
@@ -23944,9 +23944,9 @@ function indent(str, spaces) {
|
|
|
23944
23944
|
if (dateTimeIdentifiers.some(function(el) {
|
|
23945
23945
|
return el.startsWith(name);
|
|
23946
23946
|
})) {
|
|
23947
|
-
return
|
|
23947
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, "continue";
|
|
23948
23948
|
}
|
|
23949
|
-
return
|
|
23949
|
+
return i = i1, tokens = tokens1, nextMatch = nextMatch1, {
|
|
23950
23950
|
v: nextMatch1
|
|
23951
23951
|
};
|
|
23952
23952
|
};
|
package/package.json
CHANGED
package/schema.fr.json
CHANGED
|
@@ -10,7 +10,9 @@
|
|
|
10
10
|
"paths": {
|
|
11
11
|
"/stop": {
|
|
12
12
|
"post": {
|
|
13
|
-
"tags": [
|
|
13
|
+
"tags": [
|
|
14
|
+
"service"
|
|
15
|
+
],
|
|
14
16
|
"summary": "Stop",
|
|
15
17
|
"description": "Arrête le raisonnement",
|
|
16
18
|
"parameters": [
|
|
@@ -41,7 +43,9 @@
|
|
|
41
43
|
},
|
|
42
44
|
"/keepAlive": {
|
|
43
45
|
"post": {
|
|
44
|
-
"tags": [
|
|
46
|
+
"tags": [
|
|
47
|
+
"service"
|
|
48
|
+
],
|
|
45
49
|
"summary": "Keep-alive",
|
|
46
50
|
"description": "Garder en vie le raisonnement",
|
|
47
51
|
"parameters": [],
|
|
@@ -62,7 +66,9 @@
|
|
|
62
66
|
},
|
|
63
67
|
"/execute": {
|
|
64
68
|
"post": {
|
|
65
|
-
"tags": [
|
|
69
|
+
"tags": [
|
|
70
|
+
"service"
|
|
71
|
+
],
|
|
66
72
|
"summary": "Execute avec un contexte",
|
|
67
73
|
"description": "Execute des Pin's avec un contexte donné",
|
|
68
74
|
"parameters": [
|
|
@@ -109,7 +115,9 @@
|
|
|
109
115
|
"/task": {
|
|
110
116
|
"summary": "Tache",
|
|
111
117
|
"description": "Exécution d'une tache.",
|
|
112
|
-
"tags": [
|
|
118
|
+
"tags": [
|
|
119
|
+
"service"
|
|
120
|
+
],
|
|
113
121
|
"metadata": [],
|
|
114
122
|
"parameters": [
|
|
115
123
|
{
|
|
@@ -129,7 +137,9 @@
|
|
|
129
137
|
"/action": {
|
|
130
138
|
"summary": "Action",
|
|
131
139
|
"description": "Action exécutable.",
|
|
132
|
-
"tags": [
|
|
140
|
+
"tags": [
|
|
141
|
+
"service"
|
|
142
|
+
],
|
|
133
143
|
"metadata": [
|
|
134
144
|
{
|
|
135
145
|
"name": "parameters",
|
|
@@ -180,7 +190,9 @@
|
|
|
180
190
|
"/trigger": {
|
|
181
191
|
"summary": "Déclencheur",
|
|
182
192
|
"description": "Déclenchement d'une exécution d'actions.",
|
|
183
|
-
"tags": [
|
|
193
|
+
"tags": [
|
|
194
|
+
"service"
|
|
195
|
+
],
|
|
184
196
|
"metadata": [
|
|
185
197
|
{
|
|
186
198
|
"name": "tags",
|
|
@@ -227,7 +239,9 @@
|
|
|
227
239
|
"schemas": {
|
|
228
240
|
"Parameter": {
|
|
229
241
|
"type": "object",
|
|
230
|
-
"tags": [
|
|
242
|
+
"tags": [
|
|
243
|
+
"service"
|
|
244
|
+
],
|
|
231
245
|
"summary": "Parameter",
|
|
232
246
|
"properties": {
|
|
233
247
|
"name": {
|
|
@@ -255,8 +269,13 @@
|
|
|
255
269
|
"type": "string"
|
|
256
270
|
}
|
|
257
271
|
},
|
|
258
|
-
"required": [
|
|
272
|
+
"required": [
|
|
273
|
+
"name",
|
|
274
|
+
"summary",
|
|
275
|
+
"required",
|
|
276
|
+
"schema"
|
|
277
|
+
]
|
|
259
278
|
}
|
|
260
279
|
}
|
|
261
280
|
}
|
|
262
|
-
}
|
|
281
|
+
}
|