Skip to content

Commit

Permalink
Fixed miss naming
Browse files Browse the repository at this point in the history
  • Loading branch information
rlajous committed Aug 15, 2023
1 parent bba6cd1 commit bd12692
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/moments/src/client/dtos/fetch/FetchMomentsInput.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { PaginatedInput } from '@poap-xyz/utils';
import { PaginationInput } from '@poap-xyz/utils';
/**
* Interface representing the input needed to fetch moments.
* @interface
Expand All @@ -15,7 +15,7 @@ import { PaginatedInput } from '@poap-xyz/utils';
* @property {number} [token_id] - The token ID to filter moments by (optional).
* @property {number} [drop_id] - The drop ID to filter moments by (optional).
*/
export interface FetchMomentsInput extends PaginatedInput {
export interface FetchMomentsInput extends PaginationInput {
createdOrder?: string;
tokenIdOrder?: string;
dropIdOrder?: string;
Expand Down
4 changes: 2 additions & 2 deletions packages/poaps/src/types/input.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { Order, Chain, PaginatedInput } from '@poap-xyz/utils';
import { Order, Chain, PaginationInput } from '@poap-xyz/utils';

export enum PoapsSortFields {
MintedOn = 'minted_on',
Id = 'id',
}

export interface FetchPoapsInput extends PaginatedInput {
export interface FetchPoapsInput extends PaginationInput {
name?: string;
chain?: Chain;
minted_date_from?: string;
Expand Down

0 comments on commit bd12692

Please sign in to comment.