Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(types): make typings for meta in responses v4 more specific #359

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 21 additions & 3 deletions src/runtime/types/v4.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,33 @@ export interface Strapi4ResponseData<T> {

export interface Strapi4Response<T> {
data: Strapi4ResponseData<T> | Strapi4ResponseData<T>[],
meta: Record<string, unknown>
meta: Strapi4ResponseMeta
}

export interface Strapi4ResponseSingle<T> {
data: Strapi4ResponseData<T>,
meta: Record<string, unknown>
meta: Strapi4ResponseMeta
}

export interface Strapi4ResponseMany<T> {
data: Strapi4ResponseData<T>[],
meta: Record<string, unknown>
meta: Strapi4ResponseMeta
}

export interface Strapi4ResponseMeta {
pagination: MetaResponsePaginationByPage | MetaResponsePaginationByOffset,
[key: string]: unknown
}

export interface MetaResponsePaginationByPage {
page: number,
pageSize: number,
pageCount: number,
total: number
}

export interface MetaResponsePaginationByOffset {
start: number,
limit: number,
total: number
}