Skip to content

Commit af892fc

Browse files
author
stlc-bot
committed
feat: add description field in custom metadata field api
Stainless-Generated-From: 65b8441
1 parent d5e39fd commit af892fc

34 files changed

Lines changed: 237 additions & 3833 deletions

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
configured_endpoints: 53
1+
configured_endpoints: 48

image-kit-java-core/src/main/kotlin/io/imagekit/client/ImageKitClient.kt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import io.imagekit.services.blocking.CacheService
1111
import io.imagekit.services.blocking.CustomMetadataFieldService
1212
import io.imagekit.services.blocking.FileService
1313
import io.imagekit.services.blocking.FolderService
14-
import io.imagekit.services.blocking.NamedTransformationService
1514
import io.imagekit.services.blocking.SavedExtensionService
1615
import io.imagekit.services.blocking.WebhookService
1716
import java.util.function.Consumer
@@ -58,8 +57,6 @@ interface ImageKitClient {
5857

5958
fun savedExtensions(): SavedExtensionService
6059

61-
fun namedTransformations(): NamedTransformationService
62-
6360
fun assets(): AssetService
6461

6562
fun cache(): CacheService
@@ -103,8 +100,6 @@ interface ImageKitClient {
103100

104101
fun savedExtensions(): SavedExtensionService.WithRawResponse
105102

106-
fun namedTransformations(): NamedTransformationService.WithRawResponse
107-
108103
fun assets(): AssetService.WithRawResponse
109104

110105
fun cache(): CacheService.WithRawResponse

image-kit-java-core/src/main/kotlin/io/imagekit/client/ImageKitClientAsync.kt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import io.imagekit.services.async.CacheServiceAsync
1111
import io.imagekit.services.async.CustomMetadataFieldServiceAsync
1212
import io.imagekit.services.async.FileServiceAsync
1313
import io.imagekit.services.async.FolderServiceAsync
14-
import io.imagekit.services.async.NamedTransformationServiceAsync
1514
import io.imagekit.services.async.SavedExtensionServiceAsync
1615
import io.imagekit.services.async.WebhookServiceAsync
1716
import java.util.function.Consumer
@@ -58,8 +57,6 @@ interface ImageKitClientAsync {
5857

5958
fun savedExtensions(): SavedExtensionServiceAsync
6059

61-
fun namedTransformations(): NamedTransformationServiceAsync
62-
6360
fun assets(): AssetServiceAsync
6461

6562
fun cache(): CacheServiceAsync
@@ -107,8 +104,6 @@ interface ImageKitClientAsync {
107104

108105
fun savedExtensions(): SavedExtensionServiceAsync.WithRawResponse
109106

110-
fun namedTransformations(): NamedTransformationServiceAsync.WithRawResponse
111-
112107
fun assets(): AssetServiceAsync.WithRawResponse
113108

114109
fun cache(): CacheServiceAsync.WithRawResponse

image-kit-java-core/src/main/kotlin/io/imagekit/client/ImageKitClientAsyncImpl.kt

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ import io.imagekit.services.async.FileServiceAsync
2020
import io.imagekit.services.async.FileServiceAsyncImpl
2121
import io.imagekit.services.async.FolderServiceAsync
2222
import io.imagekit.services.async.FolderServiceAsyncImpl
23-
import io.imagekit.services.async.NamedTransformationServiceAsync
24-
import io.imagekit.services.async.NamedTransformationServiceAsyncImpl
2523
import io.imagekit.services.async.SavedExtensionServiceAsync
2624
import io.imagekit.services.async.SavedExtensionServiceAsyncImpl
2725
import 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

image-kit-java-core/src/main/kotlin/io/imagekit/client/ImageKitClientImpl.kt

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ import io.imagekit.services.blocking.FileService
2020
import io.imagekit.services.blocking.FileServiceImpl
2121
import io.imagekit.services.blocking.FolderService
2222
import io.imagekit.services.blocking.FolderServiceImpl
23-
import io.imagekit.services.blocking.NamedTransformationService
24-
import io.imagekit.services.blocking.NamedTransformationServiceImpl
2523
import io.imagekit.services.blocking.SavedExtensionService
2624
import io.imagekit.services.blocking.SavedExtensionServiceImpl
2725
import io.imagekit.services.blocking.WebhookService
@@ -55,10 +53,6 @@ class ImageKitClientImpl(private val clientOptions: ClientOptions) : ImageKitCli
5553
SavedExtensionServiceImpl(clientOptionsWithUserAgent)
5654
}
5755

58-
private val namedTransformations: NamedTransformationService by lazy {
59-
NamedTransformationServiceImpl(clientOptionsWithUserAgent)
60-
}
61-
6256
private val assets: AssetService by lazy { AssetServiceImpl(clientOptionsWithUserAgent) }
6357

6458
private val cache: CacheService by lazy { CacheServiceImpl(clientOptionsWithUserAgent) }
@@ -86,8 +80,6 @@ class ImageKitClientImpl(private val clientOptions: ClientOptions) : ImageKitCli
8680

8781
override fun savedExtensions(): SavedExtensionService = savedExtensions
8882

89-
override fun namedTransformations(): NamedTransformationService = namedTransformations
90-
9183
override fun assets(): AssetService = assets
9284

9385
override fun cache(): CacheService = cache
@@ -119,10 +111,6 @@ class ImageKitClientImpl(private val clientOptions: ClientOptions) : ImageKitCli
119111
SavedExtensionServiceImpl.WithRawResponseImpl(clientOptions)
120112
}
121113

122-
private val namedTransformations: NamedTransformationService.WithRawResponse by lazy {
123-
NamedTransformationServiceImpl.WithRawResponseImpl(clientOptions)
124-
}
125-
126114
private val assets: AssetService.WithRawResponse by lazy {
127115
AssetServiceImpl.WithRawResponseImpl(clientOptions)
128116
}
@@ -161,9 +149,6 @@ class ImageKitClientImpl(private val clientOptions: ClientOptions) : ImageKitCli
161149

162150
override fun savedExtensions(): SavedExtensionService.WithRawResponse = savedExtensions
163151

164-
override fun namedTransformations(): NamedTransformationService.WithRawResponse =
165-
namedTransformations
166-
167152
override fun assets(): AssetService.WithRawResponse = assets
168153

169154
override fun cache(): CacheService.WithRawResponse = cache

0 commit comments

Comments
 (0)