Skip to content

Commit d7a2cd1

Browse files
committed
feat: add API Response types for Compliance Checklist
1 parent dc563e8 commit d7a2cd1

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/types.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,20 @@ export interface APIProjectDetails {
105105
has_annualDependencyRefresh_policy: boolean | null
106106
}
107107

108+
/**
109+
* Checklist schema
110+
*/
111+
export interface APIChecklistItem {
112+
id: number
113+
author: string
114+
title: string
115+
description: string
116+
code_name: string
117+
url: string
118+
created_at: string
119+
updated_at: string
120+
}
121+
108122
/**
109123
* Error object as defined in the OpenAPI schema
110124
*/

0 commit comments

Comments
 (0)