@mstuercke/api-utils 0.0.15 → 0.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { RestPathParams } from './RestPathParams';
|
|
2
|
+
import { RestRequestBody } from './RestRequestBody';
|
|
3
|
+
import { RestResponseBody } from './RestResponseBody';
|
|
4
|
+
import { RestQueryParams } from './RestQueryParams';
|
|
5
|
+
import { RestRequestHeaders } from './RestRequestHeaders';
|
|
6
|
+
import { RestApiRequestHandler } from './RestApiRequestHandler';
|
|
7
|
+
export type RestApiRequestHandlerWithAuthentication<PathParams extends RestPathParams = never, QueryParams extends RestQueryParams = never, RequestHeaders extends RestRequestHeaders = never, RequestBody extends RestRequestBody = never, ResponseBody extends RestResponseBody = never> = RestApiRequestHandler<PathParams, QueryParams, RequestHeaders, RequestBody, ResponseBody, true>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RestApiRequestHandlerWithAuthentication.js","sourceRoot":"","sources":["../../../src/rest/types/RestApiRequestHandlerWithAuthentication.ts"],"names":[],"mappings":""}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { RestApiRequest } from './RestApiRequest';
|
|
2
2
|
export { RestApiRequestHandler } from './RestApiRequestHandler';
|
|
3
|
+
export { RestApiRequestHandlerWithAuthentication } from './RestApiRequestHandlerWithAuthentication';
|
|
3
4
|
export { RestApiResponse } from './RestApiResponse';
|
|
4
5
|
export { RestApiRoute, RestRoutePath, RestHttpMethod } from './RestApiRoute';
|
|
5
6
|
export { RestApiRouteHandler } from './RestApiRouteHandler';
|