@basou/core 0.36.0 → 0.38.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.
- package/dist/index.d.ts +23 -9
- package/dist/index.js +542 -60
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/schemas/event.schema.json +16 -2
- package/schemas/session-import.schema.json +16 -2
package/package.json
CHANGED
|
@@ -441,7 +441,14 @@
|
|
|
441
441
|
"const": "command_executed"
|
|
442
442
|
},
|
|
443
443
|
"command": {
|
|
444
|
-
"
|
|
444
|
+
"anyOf": [
|
|
445
|
+
{
|
|
446
|
+
"type": "string"
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"type": "null"
|
|
450
|
+
}
|
|
451
|
+
]
|
|
445
452
|
},
|
|
446
453
|
"args": {
|
|
447
454
|
"type": "array",
|
|
@@ -450,7 +457,14 @@
|
|
|
450
457
|
}
|
|
451
458
|
},
|
|
452
459
|
"cwd": {
|
|
453
|
-
"
|
|
460
|
+
"anyOf": [
|
|
461
|
+
{
|
|
462
|
+
"type": "string"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"type": "null"
|
|
466
|
+
}
|
|
467
|
+
]
|
|
454
468
|
},
|
|
455
469
|
"exit_code": {
|
|
456
470
|
"anyOf": [
|
|
@@ -685,7 +685,14 @@
|
|
|
685
685
|
"const": "command_executed"
|
|
686
686
|
},
|
|
687
687
|
"command": {
|
|
688
|
-
"
|
|
688
|
+
"anyOf": [
|
|
689
|
+
{
|
|
690
|
+
"type": "string"
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"type": "null"
|
|
694
|
+
}
|
|
695
|
+
]
|
|
689
696
|
},
|
|
690
697
|
"args": {
|
|
691
698
|
"type": "array",
|
|
@@ -694,7 +701,14 @@
|
|
|
694
701
|
}
|
|
695
702
|
},
|
|
696
703
|
"cwd": {
|
|
697
|
-
"
|
|
704
|
+
"anyOf": [
|
|
705
|
+
{
|
|
706
|
+
"type": "string"
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"type": "null"
|
|
710
|
+
}
|
|
711
|
+
]
|
|
698
712
|
},
|
|
699
713
|
"exit_code": {
|
|
700
714
|
"anyOf": [
|