Skip to content
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
78b9730
make field mappings for classic streams work
flash1293 Jul 17, 2025
09ebb09
validate whether mapping update will even work
flash1293 Jul 17, 2025
2fc4a14
make things work
flash1293 Jul 17, 2025
215967c
more fixes
flash1293 Jul 17, 2025
d50acf0
[CI] Auto-commit changed files from 'node scripts/capture_oas_snapsho…
kibanamachine Jul 17, 2025
55fb0a4
Merge remote-tracking branch 'upstream/main' into flash1293/classic-f…
flash1293 Jul 18, 2025
de999b2
add tests and fix types
flash1293 Jul 18, 2025
1300a84
Merge branch 'flash1293/classic-fields-impl' of github.com:flash1293/…
flash1293 Jul 18, 2025
9967d49
[CI] Auto-commit changed files from 'make api-docs'
kibanamachine Jul 18, 2025
0e1d70b
remove exclusive test
flash1293 Jul 18, 2025
022f5eb
Merge branch 'flash1293/classic-fields-impl' of github.com:flash1293/…
flash1293 Jul 18, 2025
de102f3
Merge remote-tracking branch 'upstream/main' into flash1293/classic-f…
flash1293 Jul 21, 2025
8026417
make field simulation work for all cases
flash1293 Jul 21, 2025
d538576
Merge remote-tracking branch 'upstream/main' into flash1293/classic-f…
flash1293 Jul 21, 2025
6de08a8
Merge remote-tracking branch 'upstream/main' into flash1293/classic-f…
flash1293 Jul 21, 2025
b542ba4
review comments and make the other field simulation whole
flash1293 Jul 21, 2025
558c65a
commit
flash1293 Jul 21, 2025
bfc6693
revert change for simulation
flash1293 Jul 21, 2025
6b187a8
fix types
flash1293 Jul 22, 2025
1eb957c
Merge remote-tracking branch 'upstream/main' into flash1293/classic-f…
flash1293 Jul 24, 2025
53b821d
Merge branch 'main' into flash1293/classic-fields-impl
flash1293 Jul 25, 2025
4d6989e
Merge remote-tracking branch 'upstream/main' into flash1293/classic-f…
flash1293 Jul 28, 2025
e92f2a9
fix component template building
flash1293 Jul 28, 2025
c7d3a7a
Merge branch 'flash1293/classic-fields-impl' of github.com:flash1293/…
flash1293 Jul 28, 2025
7734267
Merge remote-tracking branch 'upstream/main' into flash1293/classic-f…
flash1293 Jul 30, 2025
5974366
Merge remote-tracking branch 'upstream/main' into flash1293/classic-f…
flash1293 Aug 6, 2025
31ab769
Merge remote-tracking branch 'upstream/main' into flash1293/classic-f…
flash1293 Aug 6, 2025
b071599
Merge remote-tracking branch 'upstream/main' into flash1293/classic-f…
flash1293 Aug 8, 2025
a810252
fix
flash1293 Aug 8, 2025
b7a2484
Merge branch 'main' into flash1293/classic-fields-impl
Kerry350 Aug 13, 2025
1e48087
Amend Scout tests
Kerry350 Aug 14, 2025
8347e13
Merge branch 'main' into flash1293/classic-fields-impl
Kerry350 Aug 15, 2025
68d2253
Merge remote-tracking branch 'upstream/main' into flash1293/classic-f…
Kerry350 Aug 21, 2025
e51ef55
Merge branch 'flash1293/classic-fields-impl' of github.com:flash1293/…
Kerry350 Aug 21, 2025
7282598
Amend imports (merge error)
Kerry350 Aug 21, 2025
7903657
Fix bug with simulation
Kerry350 Aug 21, 2025
92ffccf
Refine simulation fix
Kerry350 Aug 21, 2025
da48023
[CI] Auto-commit changed files from 'node scripts/eslint_all_files --…
kibanamachine Aug 21, 2025
a707e84
Amend tests
Kerry350 Aug 21, 2025
101e56f
Merge branch 'flash1293/classic-fields-impl' of github.com:flash1293/…
Kerry350 Aug 21, 2025
3dc66c0
Merge remote-tracking branch 'upstream/main' into flash1293/classic-f…
Kerry350 Aug 27, 2025
c55380c
Amend test typo
Kerry350 Aug 27, 2025
5129213
Merge branch 'main' into flash1293/classic-fields-impl
Kerry350 Aug 27, 2025
c389a48
Merge remote-tracking branch 'upstream/main' into flash1293/classic-f…
flash1293 Sep 1, 2025
4e71160
review comments
flash1293 Sep 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
218 changes: 216 additions & 2 deletions oas_docs/bundle.json
Original file line number Diff line number Diff line change
Expand Up @@ -52100,7 +52100,114 @@
"properties": {
"unwired": {
"additionalProperties": false,
"properties": {},
"properties": {
"field_overrides": {
"additionalProperties": {
"allOf": [
{
"additionalProperties": {
"anyOf": [
{
"anyOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"enum": [
"null"
],
"nullable": true
},
{
"not": {}
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"enum": [
"null"
],
"nullable": true
},
{
"not": {}
}
]
},
"type": "array"
},
{}
]
},
"type": "object"
},
{
"anyOf": [
{
"additionalProperties": false,
"properties": {
"format": {
"minLength": 1,
"type": "string"
},
"type": {
"enum": [
"keyword",
"match_only_text",
"long",
"double",
"date",
"boolean",
"ip"
],
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"type": {
"enum": [
"system"
],
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
]
}
]
},
"type": "object"
}
},
"type": "object"
}
},
Expand Down Expand Up @@ -58126,7 +58233,114 @@
"properties": {
"unwired": {
"additionalProperties": false,
"properties": {},
"properties": {
"field_overrides": {
"additionalProperties": {
"allOf": [
{
"additionalProperties": {
"anyOf": [
{
"anyOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"enum": [
"null"
],
"nullable": true
},
{
"not": {}
}
]
},
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"enum": [
"null"
],
"nullable": true
},
{
"not": {}
}
]
},
"type": "array"
},
{}
]
},
"type": "object"
},
{
"anyOf": [
{
"additionalProperties": false,
"properties": {
"format": {
"minLength": 1,
"type": "string"
},
"type": {
"enum": [
"keyword",
"match_only_text",
"long",
"double",
"date",
"boolean",
"ip"
],
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
{
"additionalProperties": false,
"properties": {
"type": {
"enum": [
"system"
],
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
]
}
]
},
"type": "object"
}
},
"type": "object"
}
},
Expand Down
Loading