@@ -9,67 +9,70 @@ export type ListProjectsRequestOrderBy =
99
1010/** List projects response. */
1111export interface ListProjectsResponse {
12- /** The total number of projects . */
12+ /** Total number of Projects . */
1313 totalCount : number
14- /** The paginated returned projects . */
14+ /** Paginated returned Projects . */
1515 projects : Project [ ]
1616}
1717
1818/** Project. */
1919export interface Project {
20- /** The ID of the project . */
20+ /** ID of the Project . */
2121 id : string
22- /** The name of the project . */
22+ /** Name of the Project . */
2323 name : string
24- /** The organization ID of the project . */
24+ /** Organization ID of the Project . */
2525 organizationId : string
26- /** The creation date of the project . */
26+ /** Creation date of the Project . */
2727 createdAt ?: Date
28- /** The update date of the project . */
28+ /** Update date of the Project . */
2929 updatedAt ?: Date
30- /** The description of the project . */
30+ /** Description of the Project . */
3131 description : string
3232}
3333
3434export type CreateProjectRequest = {
35- /** The name of the project . */
35+ /** Name of the Project . */
3636 name : string
37- /** The organization ID of the project . */
37+ /** Organization ID of the Project . */
3838 organizationId ?: string
39- /** The description of the project . */
39+ /** Description of the Project . */
4040 description ?: string
4141}
4242
4343export type ListProjectsRequest = {
44- /** The organization ID of the project . */
44+ /** Organization ID of the Project . */
4545 organizationId ?: string
46- /** The name of the project . */
46+ /** Name of the Project . */
4747 name ?: string
48- /** The page number for the returned projects . */
48+ /** Page number for the returned Projects . */
4949 page ?: number
50- /** The maximum number of project per page. */
50+ /** Maximum number of Project per page. */
5151 pageSize ?: number
52- /** The sort order of the returned projects . */
52+ /** Sort order of the returned Projects . */
5353 orderBy ?: ListProjectsRequestOrderBy
54- /** Filter out by a list of project ID. */
54+ /**
55+ * Project IDs to filter for. The results will be limited to any Projects with
56+ * an ID in this array.
57+ */
5558 projectIds ?: string [ ]
5659}
5760
5861export type GetProjectRequest = {
59- /** The project ID of the project . */
62+ /** Project ID of the Project . */
6063 projectId ?: string
6164}
6265
6366export type DeleteProjectRequest = {
64- /** The project ID of the project . */
67+ /** Project ID of the Project . */
6568 projectId ?: string
6669}
6770
6871export type UpdateProjectRequest = {
69- /** The project ID of the project . */
72+ /** Project ID of the Project . */
7073 projectId ?: string
71- /** The name of the project . */
74+ /** Name of the Project . */
7275 name ?: string
73- /** The description of the project . */
76+ /** Description of the Project . */
7477 description ?: string
7578}
0 commit comments