@favid-inc/api
Advanced tools
Comparing version 3.3.9 to 3.3.11
@@ -1,22 +0,2 @@ | ||
import { ArtistModel } from "../model"; | ||
interface Action { | ||
Request: { | ||
url: string; | ||
method: "POST" | "GET" | "PUT" | "DELETE"; | ||
query?: any; | ||
data?: any; | ||
}; | ||
Response: { | ||
data: any; | ||
}; | ||
} | ||
export interface UpdateProfile extends Action { | ||
Request: { | ||
url: "/UpdateProfile"; | ||
method: "PUT"; | ||
query?: void; | ||
data: ArtistModel; | ||
}; | ||
Respose?: ArtistModel; | ||
} | ||
export {}; | ||
export * from "./artist"; | ||
export * from "./order"; |
export interface Action { | ||
Request: { | ||
url: string; | ||
method: "POST" | "GET" | "PUT" | "DELETE"; | ||
method: "POST" | "GET" | "PUT" | "PATCH" | "DELETE"; | ||
query?: any; | ||
@@ -6,0 +6,0 @@ data?: any; |
@@ -1,2 +0,2 @@ | ||
import { ArtistModel } from "../model"; | ||
import { Artist } from "../model"; | ||
import { Action } from "./action"; | ||
@@ -9,4 +9,4 @@ export interface FindArtistsGroupingByMainCategory extends Action { | ||
Response: { | ||
[mainCategory: string]: ArtistModel; | ||
[mainCategory: string]: Artist; | ||
}; | ||
} |
import { ArtistCategory } from "./artist-category"; | ||
import { Model } from "./model"; | ||
export declare const ARTIST = "Artist"; | ||
export interface ArtistModel extends Model { | ||
export interface Artist extends Model { | ||
artisticName?: string; | ||
@@ -6,0 +6,0 @@ biography?: string; |
{ | ||
"name": "@favid-inc/api", | ||
"version": "3.3.9", | ||
"version": "3.3.11", | ||
"description": "API for Favid Project", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/favid-inc/api#readme", |
7971
32
255