@favid-inc/api
Advanced tools
Comparing version 3.10.5 to 3.10.6
@@ -34,16 +34,16 @@ import { CreateSubAccount } from "../iugu"; | ||
export interface ArtistRate extends Model { | ||
artistId: number; | ||
customerEmail: string; | ||
customerName: string; | ||
customerUserUid: string; | ||
date: number; | ||
message: string; | ||
value: 0 | 1 | 2 | 3 | 4 | 5; | ||
artistId?: number; | ||
customerEmail?: string; | ||
customerName?: string; | ||
customerUserUid?: string; | ||
date?: number; | ||
message?: string; | ||
value?: 0 | 1 | 2 | 3 | 4 | 5; | ||
} | ||
export interface ArtistFollower extends Model { | ||
artistId: number; | ||
customerEmail: string; | ||
customerName: string; | ||
customerUserUid: string; | ||
date: number; | ||
artistId?: number; | ||
customerEmail?: string; | ||
customerName?: string; | ||
customerUserUid?: string; | ||
date?: number; | ||
} |
@@ -45,7 +45,7 @@ import { DirectCharge, InvoiceStatusChanged } from "../iugu"; | ||
export interface OrderLike extends Model { | ||
customerEmail: string; | ||
customerName: string; | ||
customerUserUid: string; | ||
date: number; | ||
orderId: number; | ||
customerEmail?: string; | ||
customerName?: string; | ||
customerUserUid?: string; | ||
date?: number; | ||
orderId?: number; | ||
} |
{ | ||
"name": "@favid-inc/api", | ||
"version": "3.10.5", | ||
"version": "3.10.6", | ||
"description": "API for Favid Project", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/favid-inc/api#readme", |
27387