@bit-ui-libs/common
Version:
This library was generated with [Nx](https://nx.dev).
42 lines (38 loc) • 888 B
text/typescript
import { SerializedImage, SerializedStep } from '../../asset';
import { WalletPlatformEnum } from '../../common';
export interface WishlistExtended {
assetId: string;
appName: string;
qrCodeRef?: string | null;
eventIdRef: string;
name: string;
level: string;
isVerifiedByWitness: boolean;
isVerifiedByOfficial: boolean;
platform: WalletPlatformEnum;
isListed: boolean;
orgId: string;
typeId: string;
createdAt: string;
}
export interface Wishlist {
id: string;
userId: string;
assetId: string;
createdAt: string;
}
export interface WishlistItem {
name: string;
assetId: string;
serializedSteps: SerializedStep[];
serializedCategories: string[];
serializedImages: SerializedImage[];
typeName: string;
level: string;
orgId: string;
ownerId: string;
eventIdRef: string;
startDate: string;
endDate: string;
createdAt: string;
}