Skip to content

Commit 29406a4

Browse files
committed
chore: prettier
1 parent 5050307 commit 29406a4

3 files changed

Lines changed: 12 additions & 9 deletions

File tree

lib/entities/component-type.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ import type {
88
} from '../common-types'
99

1010
// Query options for getMany - cursor-based pagination with typed filter fields
11-
export type ComponentTypeQueryOptions = CursorPaginationParams & ExoQueryFilters & {
12-
order?: string
13-
}
11+
export type ComponentTypeQueryOptions = CursorPaginationParams &
12+
ExoQueryFilters & {
13+
order?: string
14+
}
1415

1516
// Viewport definition
1617
export type ComponentTypeViewport = {

lib/entities/experience.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,10 @@ export type ExperienceProps = ExperienceCommonProps & {
6464
}
6565

6666
// Query options for getMany - cursor-based pagination with typed filter fields
67-
export type ExperienceQueryOptions = CursorPaginationParams & ExoQueryFilters & {
68-
order?: string
69-
}
67+
export type ExperienceQueryOptions = CursorPaginationParams &
68+
ExoQueryFilters & {
69+
order?: string
70+
}
7071

7172
// Locale-based publish payload — add or remove specific locales.
7273
// Omit the payload entirely for a full publish (all locales).

lib/entities/template.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,9 @@ export type UpdateTemplateProps = Omit<TemplateProps, 'sys'> & {
6464
}
6565

6666
// Query options for getMany - cursor-based pagination with typed filter fields
67-
export type TemplateQueryOptions = CursorPaginationParams & ExoQueryFilters & {
68-
order?: string
69-
}
67+
export type TemplateQueryOptions = CursorPaginationParams &
68+
ExoQueryFilters & {
69+
order?: string
70+
}
7071

7172
export type TemplateCollection = CursorPaginatedCollectionProp<TemplateProps>

0 commit comments

Comments
 (0)