@favid-inc/api
Advanced tools
Comparing version 2.10.0 to 2.11.0
export * from './lib'; |
@@ -0,0 +0,0 @@ 'use strict'; |
export * from "./models"; |
@@ -0,0 +0,0 @@ "use strict"; |
export declare type ArtistCategoryModel = string; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
export declare const ARTIST_CATEGORY = "artist_category"; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.ARTIST_CATEGORY = "artist_category"; |
export * from "./ArtistCategoryModel"; | ||
export * from "./constants"; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { ArtistCategoryModel } from "../artist-category"; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
@@ -0,0 +0,0 @@ import { ArtistModel } from "./ArtistModel"; |
@@ -0,0 +0,0 @@ "use strict"; |
import { ArtistModel } from "./ArtistModel"; | ||
export declare type ArtistSearchByTermArgument = string; | ||
export interface ArtistSearchByTermArgument { | ||
q: string; | ||
} | ||
export interface ArtistSearchByTermResult { | ||
@@ -4,0 +6,0 @@ hits: Hits; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export declare const ARTIST = "artist"; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ export * from "./ArtistModel"; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { Model } from "./Model"; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
@@ -0,0 +0,0 @@ export * from "./artist"; |
@@ -0,0 +0,0 @@ "use strict"; |
export interface Model { | ||
id?: string; | ||
} |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
@@ -1,2 +0,1 @@ | ||
import { OrderModel } from "./OrderModel"; | ||
export declare const ORDER = "order"; | ||
@@ -8,11 +7,2 @@ export declare enum OrderFlow { | ||
} | ||
export interface OrderFlowPlaceOrderArguments { | ||
artistId: string; | ||
isGift: boolean; | ||
theirName: string; | ||
videoInstructions: string; | ||
} | ||
export interface OrderFlowPlaceOrderResponse { | ||
order: OrderModel; | ||
} | ||
export declare enum OrderStatus { | ||
@@ -19,0 +9,0 @@ OPENED = "OP", |
@@ -0,0 +0,0 @@ "use strict"; |
export * from "./OrderModel"; | ||
export * from "./constants"; |
@@ -0,0 +0,0 @@ "use strict"; |
import { Model } from "../Model"; | ||
import { OrderStatus } from "./constants"; | ||
export interface OrderModel extends Model { | ||
customerId?: string; | ||
artistId?: string; | ||
status?: OrderStatus; | ||
myName?: string; | ||
isGift?: boolean; | ||
theirName?: string; | ||
videoInstructions?: string; | ||
customerId?: string; | ||
customerName?: string; | ||
customerPhoto?: string; | ||
artistName?: string; | ||
artistPhoto?: string; | ||
price?: number; | ||
@@ -19,3 +17,2 @@ creationDate?: number; | ||
video?: string; | ||
videoThumb?: string; | ||
} |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
export default interface User { | ||
email?: string; | ||
} |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); |
{ | ||
"name": "@favid-inc/api", | ||
"version": "2.10.0", | ||
"version": "2.11.0", | ||
"description": "API for Favid Project", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/favid-inc/api#readme", |
api |
7447
234