Skip to content

Commit 0bf6717

Browse files
committed
fix: remove requestbody template
1 parent de75318 commit 0bf6717

File tree

3 files changed

+0
-14
lines changed

3 files changed

+0
-14
lines changed

src/templates/core/custom/getRequestBody.hbs

Lines changed: 0 additions & 12 deletions
This file was deleted.

src/utils/registerHandlebarTemplates.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@ export const registerHandlebarTemplates = (root: {
140140
apiRequestOptions: Handlebars.template(templateCoreApiRequestOptions),
141141
customConfig: Handlebars.template(templateCoreCustomConfig),
142142
customApiError: Handlebars.template(templateCoreCustomApiError),
143-
customApiResult: Handlebars.template(templateCoreCustomApiResult),
144143
apiResult: Handlebars.template(templateCoreApiResult),
145144
cancelablePromise: Handlebars.template(templateCancelablePromise),
146145
request: Handlebars.template(templateCoreRequest),

src/utils/writeClientCore.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ export const writeClientCore = async (
4747
if (httpClient === HttpClientValues.CUSTOM) {
4848
await writeFile(resolve(outputPath, 'CustomConfig.ts'), i(templates.core.customConfig(context), indent));
4949
await writeFile(resolve(outputPath, 'ApiError.ts'), i(templates.core.customApiError(context), indent));
50-
await writeFile(resolve(outputPath, 'ApiResult.ts'), i(templates.core.customApiResult(context), indent));
5150
}
5251
if (isDefined(clientName)) {
5352
await writeFile(resolve(outputPath, 'BaseHttpRequest.ts'), i(templates.core.baseHttpRequest(context), indent));

0 commit comments

Comments
 (0)