Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
12 changes: 0 additions & 12 deletions oas_docs/bundle.json
Original file line number Diff line number Diff line change
Expand Up @@ -22619,10 +22619,6 @@
"type": "string"
}
},
"required": [
"name",
"started_at"
],
"type": "object"
},
"latest_install_failed_attempts": {
Expand Down Expand Up @@ -24278,10 +24274,6 @@
"type": "string"
}
},
"required": [
"name",
"started_at"
],
"type": "object"
},
"latest_install_failed_attempts": {
Expand Down Expand Up @@ -25205,10 +25197,6 @@
"type": "string"
}
},
"required": [
"name",
"started_at"
],
"type": "object"
},
"latest_install_failed_attempts": {
Expand Down
12 changes: 0 additions & 12 deletions oas_docs/bundle.serverless.json
Original file line number Diff line number Diff line change
Expand Up @@ -22619,10 +22619,6 @@
"type": "string"
}
},
"required": [
"name",
"started_at"
],
"type": "object"
},
"latest_install_failed_attempts": {
Expand Down Expand Up @@ -24278,10 +24274,6 @@
"type": "string"
}
},
"required": [
"name",
"started_at"
],
"type": "object"
},
"latest_install_failed_attempts": {
Expand Down Expand Up @@ -25205,10 +25197,6 @@
"type": "string"
}
},
"required": [
"name",
"started_at"
],
"type": "object"
},
"latest_install_failed_attempts": {
Expand Down
9 changes: 0 additions & 9 deletions oas_docs/output/kibana.serverless.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22367,9 +22367,6 @@ paths:
type: string
started_at:
type: string
required:
- name
- started_at
latest_install_failed_attempts:
items:
additionalProperties: true
Expand Down Expand Up @@ -23235,9 +23232,6 @@ paths:
type: string
started_at:
type: string
required:
- name
- started_at
latest_install_failed_attempts:
items:
additionalProperties: true
Expand Down Expand Up @@ -23864,9 +23858,6 @@ paths:
type: string
started_at:
type: string
required:
- name
- started_at
latest_install_failed_attempts:
items:
additionalProperties: true
Expand Down
9 changes: 0 additions & 9 deletions oas_docs/output/kibana.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24454,9 +24454,6 @@ paths:
type: string
started_at:
type: string
required:
- name
- started_at
latest_install_failed_attempts:
items:
additionalProperties: true
Expand Down Expand Up @@ -25318,9 +25315,6 @@ paths:
type: string
started_at:
type: string
required:
- name
- started_at
latest_install_failed_attempts:
items:
additionalProperties: true
Expand Down Expand Up @@ -25945,9 +25939,6 @@ paths:
type: string
started_at:
type: string
required:
- name
- started_at
latest_install_failed_attempts:
items:
additionalProperties: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ export const InstallationInfoSchema = schema.object({
),
latest_executed_state: schema.maybe(
schema.object({
name: schema.string(),
started_at: schema.string(),
name: schema.maybe(schema.string()),
started_at: schema.maybe(schema.string()),
error: schema.maybe(schema.string()),
})
),
Expand Down
Loading