@favid-inc/api
Advanced tools
Comparing version 3.3.8 to 3.3.9
@@ -1,2 +0,2 @@ | ||
import { Artist } from "../model"; | ||
import { ArtistModel } from "../model"; | ||
interface Action { | ||
@@ -18,6 +18,6 @@ Request: { | ||
query?: void; | ||
data: Artist; | ||
data: ArtistModel; | ||
}; | ||
Respose?: Artist; | ||
Respose?: ArtistModel; | ||
} | ||
export {}; |
@@ -1,2 +0,2 @@ | ||
import { Artist } from "../model"; | ||
import { ArtistModel } from "../model"; | ||
import { Action } from "./action"; | ||
@@ -9,4 +9,4 @@ export interface FindArtistsGroupingByMainCategory extends Action { | ||
Response: { | ||
[mainCategory: string]: Artist; | ||
[mainCategory: string]: ArtistModel; | ||
}; | ||
} |
import { ArtistCategory } from "./artist-category"; | ||
import { Model } from "./model"; | ||
export declare const ARTIST = "Artist"; | ||
export interface Artist extends Model { | ||
export interface ArtistModel extends Model { | ||
artisticName?: string; | ||
@@ -6,0 +6,0 @@ biography?: string; |
@@ -6,3 +6,3 @@ import { Model } from "../model"; | ||
artistName?: string; | ||
artistPhoto?: string; | ||
artistPhotoUri?: string; | ||
customerUserUid?: string; | ||
@@ -9,0 +9,0 @@ customerName?: string; |
{ | ||
"name": "@favid-inc/api", | ||
"version": "3.3.8", | ||
"version": "3.3.9", | ||
"description": "API for Favid Project", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/favid-inc/api#readme", |
7065