committed by
GitHub
25 changed files with 181 additions and 40 deletions
@ -0,0 +1,11 @@ |
|||||
|
/* generated using openapi-typescript-codegen -- do no edit */ |
||||
|
/* istanbul ignore file */ |
||||
|
/* tslint:disable */ |
||||
|
/* eslint-disable */ |
||||
|
|
||||
|
import type { ItemOut } from './ItemOut'; |
||||
|
|
||||
|
export type ItemsOut = { |
||||
|
data: Array<ItemOut>; |
||||
|
count: number; |
||||
|
}; |
@ -0,0 +1,11 @@ |
|||||
|
/* generated using openapi-typescript-codegen -- do no edit */ |
||||
|
/* istanbul ignore file */ |
||||
|
/* tslint:disable */ |
||||
|
/* eslint-disable */ |
||||
|
|
||||
|
import type { UserOut } from './UserOut'; |
||||
|
|
||||
|
export type UsersOut = { |
||||
|
data: Array<UserOut>; |
||||
|
count: number; |
||||
|
}; |
@ -0,0 +1,19 @@ |
|||||
|
/* generated using openapi-typescript-codegen -- do no edit */ |
||||
|
/* istanbul ignore file */ |
||||
|
/* tslint:disable */ |
||||
|
/* eslint-disable */ |
||||
|
export const $ItemsOut = { |
||||
|
properties: { |
||||
|
data: { |
||||
|
type: 'array', |
||||
|
contains: { |
||||
|
type: 'ItemOut', |
||||
|
}, |
||||
|
isRequired: true, |
||||
|
}, |
||||
|
count: { |
||||
|
type: 'number', |
||||
|
isRequired: true, |
||||
|
}, |
||||
|
}, |
||||
|
} as const; |
@ -0,0 +1,19 @@ |
|||||
|
/* generated using openapi-typescript-codegen -- do no edit */ |
||||
|
/* istanbul ignore file */ |
||||
|
/* tslint:disable */ |
||||
|
/* eslint-disable */ |
||||
|
export const $UsersOut = { |
||||
|
properties: { |
||||
|
data: { |
||||
|
type: 'array', |
||||
|
contains: { |
||||
|
type: 'UserOut', |
||||
|
}, |
||||
|
isRequired: true, |
||||
|
}, |
||||
|
count: { |
||||
|
type: 'number', |
||||
|
isRequired: true, |
||||
|
}, |
||||
|
}, |
||||
|
} as const; |
Loading…
Reference in new issue