@favid-inc/api
Advanced tools
Comparing version 4.3.8 to 4.3.9
@@ -30,5 +30,13 @@ import { Artist } from "../model"; | ||
}, Artist>; | ||
export declare type ApplyForAffiliation = Action<{ | ||
export declare type ApplyForAffiliation = ApplyForAffiliationPost | ApplyForAffiliationGet; | ||
export declare type ApplyForAffiliationPost = Action<{ | ||
url: "/ApplyForAffiliation"; | ||
} & { | ||
method: "POST"; | ||
body: { | ||
email: string; | ||
password: string; | ||
}; | ||
}, void>; | ||
export declare type ApplyForAffiliationGet = Action<{ | ||
url: "/ApplyForAffiliation"; | ||
method: "GET"; | ||
@@ -41,8 +49,2 @@ params: { | ||
}; | ||
} & { | ||
method: "POST"; | ||
body: { | ||
email: string; | ||
password: string; | ||
}; | ||
}, Artist>; | ||
}, void>; |
{ | ||
"name": "@favid-inc/api", | ||
"version": "4.3.8", | ||
"version": "4.3.9", | ||
"description": "API for Favid Project", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/favid-inc/api#readme", |
31241
1051