-
Notifications
You must be signed in to change notification settings - Fork 8.5k
[dashboard as code] dashboard client #241393
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
a52c7a3
[dashboard as code] dashboard client
nreese 48feecd
replace UpdateDashboardMetaProps
nreese b40ed69
check titles
nreese 2e91e3e
save
nreese 1ac0628
clean up
nreese b1022ae
add comment
nreese b10711b
clean up
nreese 6b654d2
fix dashboard_listing_page test
nreese 6b379c5
fix dashboard_unsaved_listing.test.tsx
nreese c94574f
fix use_dashboard_listing_table.test.tsx
nreese 8c17403
fix load_dashboard_api.test.ts
nreese c1f7007
tslint
nreese 259eb83
show toast on update
nreese 5ae3b36
Changes from node scripts/eslint_all_files --no-cache --fix
kibanamachine 6c2918b
restore saveDashboard tests
nreese d94fc65
do not return namespaces and spaces in data
nreese 1ee9cec
merge with main
nreese 0bc225f
revert change to get endpoint
nreese e7d3074
clean up
nreese d4dc799
Merge branch 'main' into dashboard_client
elasticmachine f054d60
Merge branch 'main' into dashboard_client
elasticmachine 20c09e1
Merge branch 'main' into dashboard_client
elasticmachine 3d9ec11
Merge branch 'main' into dashboard_client
elasticmachine fd4f866
Merge branch 'main' into dashboard_client
elasticmachine File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think there's anything we need to do here right now, but it's coincidental that the
LATEST_VERSIONused by Content Management and theDASHBOARD_API_VERSIONfor the pubic API are both1. I suspect we'll be removing CM from the Dashboard in the future and theLATEST_VERSIONconst will go away. When the Dashboard API reaches Tech Preview, the const will change to2023-10-31.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why "2023-10-31" What does that date mean?
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's the date-based API versioning scheme that Elastic uses for all public APIs. More info here and restriction implemented here. We just keep it at
"1"for now as the endpoint is still internal only.