@@ -20,8 +20,6 @@ import io.imagekit.services.async.FileServiceAsync
2020import io.imagekit.services.async.FileServiceAsyncImpl
2121import io.imagekit.services.async.FolderServiceAsync
2222import io.imagekit.services.async.FolderServiceAsyncImpl
23- import io.imagekit.services.async.NamedTransformationServiceAsync
24- import io.imagekit.services.async.NamedTransformationServiceAsyncImpl
2523import io.imagekit.services.async.SavedExtensionServiceAsync
2624import io.imagekit.services.async.SavedExtensionServiceAsyncImpl
2725import io.imagekit.services.async.WebhookServiceAsync
@@ -55,10 +53,6 @@ class ImageKitClientAsyncImpl(private val clientOptions: ClientOptions) : ImageK
5553 SavedExtensionServiceAsyncImpl (clientOptionsWithUserAgent)
5654 }
5755
58- private val namedTransformations: NamedTransformationServiceAsync by lazy {
59- NamedTransformationServiceAsyncImpl (clientOptionsWithUserAgent)
60- }
61-
6256 private val assets: AssetServiceAsync by lazy {
6357 AssetServiceAsyncImpl (clientOptionsWithUserAgent)
6458 }
@@ -96,8 +90,6 @@ class ImageKitClientAsyncImpl(private val clientOptions: ClientOptions) : ImageK
9690
9791 override fun savedExtensions (): SavedExtensionServiceAsync = savedExtensions
9892
99- override fun namedTransformations (): NamedTransformationServiceAsync = namedTransformations
100-
10193 override fun assets (): AssetServiceAsync = assets
10294
10395 override fun cache (): CacheServiceAsync = cache
@@ -129,10 +121,6 @@ class ImageKitClientAsyncImpl(private val clientOptions: ClientOptions) : ImageK
129121 SavedExtensionServiceAsyncImpl .WithRawResponseImpl (clientOptions)
130122 }
131123
132- private val namedTransformations: NamedTransformationServiceAsync .WithRawResponse by lazy {
133- NamedTransformationServiceAsyncImpl .WithRawResponseImpl (clientOptions)
134- }
135-
136124 private val assets: AssetServiceAsync .WithRawResponse by lazy {
137125 AssetServiceAsyncImpl .WithRawResponseImpl (clientOptions)
138126 }
@@ -171,9 +159,6 @@ class ImageKitClientAsyncImpl(private val clientOptions: ClientOptions) : ImageK
171159
172160 override fun savedExtensions (): SavedExtensionServiceAsync .WithRawResponse = savedExtensions
173161
174- override fun namedTransformations (): NamedTransformationServiceAsync .WithRawResponse =
175- namedTransformations
176-
177162 override fun assets (): AssetServiceAsync .WithRawResponse = assets
178163
179164 override fun cache (): CacheServiceAsync .WithRawResponse = cache
0 commit comments