@digipair/skill-worker 0.112.0 → 0.112.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/package.json +1 -1
- package/schema.fr.json +11 -7
- package/schema.json +11 -7
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 i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
|
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 i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
23932
23932
|
}
|
|
23933
23933
|
tokens1 = _to_consumable_array$4(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 i = i1, nextMatch = nextMatch1, tokens = tokens1, "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 i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
|
|
23970
23970
|
}
|
|
23971
|
-
return
|
|
23971
|
+
return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
|
|
23972
23972
|
v: nextMatch1
|
|
23973
23973
|
};
|
|
23974
23974
|
};
|
package/package.json
CHANGED
package/schema.fr.json
CHANGED
|
@@ -267,7 +267,7 @@
|
|
|
267
267
|
"schema": {
|
|
268
268
|
"type": "array",
|
|
269
269
|
"items": {
|
|
270
|
-
"$ref": "#/components/schemas/
|
|
270
|
+
"$ref": "#/components/schemas/Prompt"
|
|
271
271
|
}
|
|
272
272
|
}
|
|
273
273
|
}
|
|
@@ -374,13 +374,17 @@
|
|
|
374
374
|
"summary": "Icône"
|
|
375
375
|
},
|
|
376
376
|
"tags": {
|
|
377
|
-
"type": "
|
|
378
|
-
"summary": "Tags"
|
|
379
|
-
"items": {
|
|
380
|
-
"type": "string"
|
|
381
|
-
}
|
|
377
|
+
"type": "object",
|
|
378
|
+
"summary": "Tags"
|
|
382
379
|
}
|
|
383
|
-
}
|
|
380
|
+
},
|
|
381
|
+
"required": [
|
|
382
|
+
"title",
|
|
383
|
+
"description",
|
|
384
|
+
"prompt",
|
|
385
|
+
"icon",
|
|
386
|
+
"tags"
|
|
387
|
+
]
|
|
384
388
|
}
|
|
385
389
|
}
|
|
386
390
|
}
|
package/schema.json
CHANGED
|
@@ -285,13 +285,17 @@
|
|
|
285
285
|
"summary": "Icon"
|
|
286
286
|
},
|
|
287
287
|
"tags": {
|
|
288
|
-
"type": "
|
|
289
|
-
"summary": "Tags"
|
|
290
|
-
"items": {
|
|
291
|
-
"type": "string"
|
|
292
|
-
}
|
|
288
|
+
"type": "object",
|
|
289
|
+
"summary": "Tags"
|
|
293
290
|
}
|
|
294
|
-
}
|
|
291
|
+
},
|
|
292
|
+
"required": [
|
|
293
|
+
"title",
|
|
294
|
+
"description",
|
|
295
|
+
"prompt",
|
|
296
|
+
"icon",
|
|
297
|
+
"tags"
|
|
298
|
+
]
|
|
295
299
|
}
|
|
296
300
|
}
|
|
297
301
|
},
|
|
@@ -363,7 +367,7 @@
|
|
|
363
367
|
"schema": {
|
|
364
368
|
"type": "array",
|
|
365
369
|
"items": {
|
|
366
|
-
"$ref": "#/components/schemas/
|
|
370
|
+
"$ref": "#/components/schemas/Prompt"
|
|
367
371
|
}
|
|
368
372
|
}
|
|
369
373
|
}
|