Skip to content
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

[data views] Move data views api from data plugin and into its own #113497

Merged
merged 35 commits into from
Oct 4, 2021
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
c0f91f7
initial pass at moving data views into own plugin
mattkime Sep 30, 2021
a5d2e0d
require expressions plugin, fix META_FIELDS reference
mattkime Sep 30, 2021
10aab14
bundle limits and localization
mattkime Sep 30, 2021
81eae52
fix integration test
mattkime Sep 30, 2021
78c639d
update plugin list and jest config
mattkime Sep 30, 2021
93ec684
type fixes
mattkime Sep 30, 2021
3487531
search fixes
mattkime Sep 30, 2021
457389b
fix localization
mattkime Sep 30, 2021
dd14e3a
fix mocks
mattkime Sep 30, 2021
7e6b177
fix mocks
mattkime Sep 30, 2021
6d27810
fix stub
mattkime Sep 30, 2021
3a23774
type fixes
mattkime Sep 30, 2021
0711f96
fix import on test file
mattkime Sep 30, 2021
8bfff12
path fixes
mattkime Sep 30, 2021
04d0e59
remove shorted dotted from data plugin
mattkime Oct 1, 2021
606383a
more todo removal
mattkime Oct 1, 2021
d675c1c
eslint fixes
mattkime Oct 1, 2021
0d933ce
eslint fix
mattkime Oct 1, 2021
429e23b
simplify data views server plugin
mattkime Oct 1, 2021
115f25c
simplify data views server plugin
mattkime Oct 1, 2021
b405d5c
simplify data views server plugin
mattkime Oct 1, 2021
cef2fd6
fix imports on api routes
mattkime Oct 1, 2021
544b5ce
fix imports on api routes
mattkime Oct 1, 2021
6587c76
update plugin list
mattkime Oct 1, 2021
ee0dad6
ts fixes
mattkime Oct 1, 2021
e2f3671
ts fixes
mattkime Oct 1, 2021
5fe349a
add deprecation notice
mattkime Oct 1, 2021
eb3c090
fix circular dependency and api integration test
mattkime Oct 2, 2021
803e818
fix circular dependency and api integration test
mattkime Oct 2, 2021
6d7d848
rename types for better clarity
mattkime Oct 3, 2021
6faa465
Merge branch 'master' into data_views_to_own_plugin
kibanamachine Oct 3, 2021
9980dbb
path fixes
mattkime Oct 3, 2021
a844127
Merge branch 'master' into data_views_to_own_plugin
kibanamachine Oct 4, 2021
2345897
jest.config and tsconfig cleanup
mattkime Oct 4, 2021
293d7dc
Merge branch 'data_views_to_own_plugin' of github.com:mattkime/kibana…
mattkime Oct 4, 2021
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
Prev Previous commit
Next Next commit
eslint fix
  • Loading branch information
mattkime committed Oct 1, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 0d933cea26864c589253e7d4c46bddd358218789
61 changes: 60 additions & 1 deletion src/plugins/data/common/index.ts
Original file line number Diff line number Diff line change
@@ -11,9 +11,68 @@

export * from './constants';
export * from './es_query';
export * from '../../data_views/common';
export * from './kbn_field_types';
export * from './query';
export * from './search';
export * from './types';
export * from './exports';
export type {
IFieldType,
IIndexPatternFieldList,
FieldFormatMap,
RuntimeType,
RuntimeField,
IIndexPattern,
DataViewAttributes,
IndexPatternAttributes,
FieldAttrs,
FieldAttrSet,
OnNotification,
OnError,
UiSettingsCommon,
SavedObjectsClientCommonFindArgs,
SavedObjectsClientCommon,
GetFieldsOptions,
GetFieldsOptionsTimePattern,
IDataViewsApiClient,
IIndexPatternsApiClient,
SavedObject,
AggregationRestrictions,
TypeMeta,
FieldSpecConflictDescriptions,
FieldSpecExportFmt,
FieldSpec,
DataViewFieldMap,
IndexPatternFieldMap,
DataViewSpec,
IndexPatternSpec,
SourceFilter,
IndexPatternExpressionType,
IndexPatternLoadStartDependencies,
IndexPatternLoadExpressionFunctionDefinition,
} from '../../data_views/common';
export {
RUNTIME_FIELD_TYPES,
FLEET_ASSETS_TO_IGNORE,
META_FIELDS,
DATA_VIEW_SAVED_OBJECT_TYPE,
INDEX_PATTERN_SAVED_OBJECT_TYPE,
isFilterable,
isNestedField,
fieldList,
DataViewField,
IndexPatternField,
DataViewType,
IndexPatternType,
IndexPatternsService,
IndexPatternsContract,
DataViewsService,
DataViewsContract,
IndexPattern,
IndexPatternListItem,
DataView,
DataViewListItem,
DuplicateDataViewError,
DataViewSavedObjectConflictError,
getIndexPatternLoadMeta,
} from '../../data_views/common';