@reactway/api-builder
Advanced tools
Comparing version 1.0.0-alpha.4 to 1.0.0-alpha.5
@@ -12,7 +12,7 @@ import { ApiConfiguration, BaseApiRequest } from "./contracts"; | ||
protected makeRequest(): Promise<void>; | ||
get(requestDto: BaseApiRequest<never>): Promise<Response>; | ||
post<TBody = {}>(requestDto: BaseApiRequest<TBody>): Promise<Response>; | ||
put<TBody = {}>(requestDto: BaseApiRequest<TBody>): Promise<Response>; | ||
patch<TBody = {}>(requestDto: BaseApiRequest<TBody>): Promise<Response>; | ||
delete<TBody = {}>(requestDto: BaseApiRequest<TBody>): Promise<Response>; | ||
protected get(requestDto: BaseApiRequest<never>): Promise<Response>; | ||
protected post<TBody = {}>(requestDto: BaseApiRequest<TBody>): Promise<Response>; | ||
protected put<TBody = {}>(requestDto: BaseApiRequest<TBody>): Promise<Response>; | ||
protected patch<TBody = {}>(requestDto: BaseApiRequest<TBody>): Promise<Response>; | ||
protected delete<TBody = {}>(requestDto: BaseApiRequest<TBody>): Promise<Response>; | ||
} |
{ | ||
"name": "@reactway/api-builder", | ||
"version": "1.0.0-alpha.4", | ||
"version": "1.0.0-alpha.5", | ||
"description": "An easy api client builder for applications with identity.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
41601