@atlassianlabs/jira-pi-common-models
Advanced tools
Comparing version 0.1.14 to 0.1.15-links
@@ -190,2 +190,20 @@ import { JiraSiteInfo } from './JiraSiteInfo'; | ||
} | ||
export interface FilterSearchResults { | ||
maxResults: number; | ||
offset: number; | ||
total: number; | ||
isLast: boolean; | ||
filters: FilterSearchResult[]; | ||
} | ||
export interface FilterSearchResult { | ||
id: string; | ||
name: string; | ||
owner: string; | ||
jql: string; | ||
viewUrlPath: string; | ||
favorite: boolean; | ||
} | ||
export interface JQLErrors { | ||
errors: string[]; | ||
} | ||
export declare function readProject(projectJson: any): Project; | ||
@@ -192,0 +210,0 @@ export declare function readWatches(watchesJson: any): Watches; |
{ | ||
"name": "@atlassianlabs/jira-pi-common-models", | ||
"version": "0.1.14", | ||
"version": "0.1.15-links", | ||
"description": "Common Jira models for related jira-pi-clients", | ||
@@ -16,4 +16,4 @@ "repository": { | ||
"sideEffects": false, | ||
"gitHead": "57a0be91795888a72d1139123153d3091721965a", | ||
"gitHead": "e59cb63ec99a531b2c69a1035f76351a2a19dabc", | ||
"typings": "./index.d.ts" | ||
} |
56556
1809