From 66dbcb29461c7f03be613ec7edea308a1a8e2715 Mon Sep 17 00:00:00 2001 From: Kilian Panot Date: Wed, 2 Oct 2024 10:16:21 +0900 Subject: [PATCH] fix(sdk-core): rollback api-mock.ts to use deprecate fetch client from core --- .../src/main/resources/typescriptFetch/spec/api-mock.mustache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@ama-sdk/schematics/schematics/typescript/core/openapi-codegen-typescript/src/main/resources/typescriptFetch/spec/api-mock.mustache b/packages/@ama-sdk/schematics/schematics/typescript/core/openapi-codegen-typescript/src/main/resources/typescriptFetch/spec/api-mock.mustache index 79c665aead..0438dc1cc3 100644 --- a/packages/@ama-sdk/schematics/schematics/typescript/core/openapi-codegen-typescript/src/main/resources/typescriptFetch/spec/api-mock.mustache +++ b/packages/@ama-sdk/schematics/schematics/typescript/core/openapi-codegen-typescript/src/main/resources/typescriptFetch/spec/api-mock.mustache @@ -1,6 +1,6 @@ {{#apiInfo}} import { type ApiClient, isApiClient } from '@ama-sdk/core'; -import { ApiFetchClient, type BaseApiFetchClientConstructor } from '@ama-sdk/client-fetch'; +import { ApiFetchClient, type BaseApiFetchClientConstructor } from '@ama-sdk/core'; import * as api from '../api';