-
Notifications
You must be signed in to change notification settings - Fork 960
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Daniel Won <dwon@lyft.com>
- Loading branch information
Daniel Won
committed
Jun 2, 2021
1 parent
5a4297d
commit dc59a5e
Showing
4 changed files
with
167 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import { FeatureMetadata, FeatureSummary } from 'interfaces/Feature'; | ||
|
||
export const featureSummary: FeatureSummary = { | ||
key: 'test key', | ||
name: 'test feature name', | ||
version: '1.02.0', | ||
availability: ['source 1', 'source 2'], | ||
entity: ['entity 1', 'entity 2'], | ||
description: 'test feature description', | ||
}; | ||
|
||
export const featureMetadata: FeatureMetadata = { | ||
key: 'test key', | ||
name: 'test feature name', | ||
version: '1.02.0', | ||
status: 'status', | ||
feature_group: 'feature group', | ||
entity: ['entity 1', 'entity 2'], | ||
data_type: 'string', | ||
availability: ['source 1', 'source 2'], | ||
description: 'test feature description', | ||
owners: [ | ||
{ | ||
display_name: 'test', | ||
email: 'test@email.com', | ||
profile_url: 'profile_url', | ||
user_id: 'user_id', | ||
}, | ||
], | ||
badges: [], | ||
owner_tags: [], | ||
tags: [], | ||
programmatic_descriptions: [], | ||
watermarks: [], | ||
stats: [], | ||
last_updated_timestamp: 0, | ||
created_timestamp: 0, | ||
}; |
This file contains 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 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 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