@favid-inc/api
Advanced tools
Comparing version 2.8.0 to 2.9.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"; |
@@ -0,0 +0,0 @@ import { ArtistModel } from "./ArtistModel"; |
@@ -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 }); |
@@ -0,0 +0,0 @@ export declare const ORDER = "order"; |
@@ -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; | ||
@@ -17,2 +19,3 @@ 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.8.0", | ||
"version": "2.9.0", | ||
"description": "API for Favid Project", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/favid-inc/api#readme", |
api |
7799
235