Skip to content

Commit 96c640d

Browse files
feat(api): add ai-auto-description field with status options to components schema
1 parent cfce32f commit 96c640d

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 42
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/imagekit-inc%2Fimagekit-d857341f30517b11df568dd6c5a0e9dea3a854930f7f6583718114d311f2d5ee.yml
3-
openapi_spec_hash: db94bfd556220d6244a1b2bbae9d7d00
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/imagekit-inc%2Fimagekit-3d7da4b8ef2ed30aa32c4fb3e98e498e67402e91aaa5fd4c628fc080bfe82ea1.yml
3+
openapi_spec_hash: aaa50fcbccec6f2cf1165f34bc6ac886
44
config_hash: 4ef178e13ecfdb97211f284f13a21e83

src/resources/beta/v2/files.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,8 @@ export namespace FileUploadResponse {
243243
* If no extension was requested, then this parameter is not returned.
244244
*/
245245
export interface ExtensionStatus {
246+
'ai-auto-description'?: 'success' | 'pending' | 'failed';
247+
246248
'aws-auto-tagging'?: 'success' | 'pending' | 'failed';
247249

248250
'google-auto-tagging'?: 'success' | 'pending' | 'failed';

src/resources/files/files.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -826,6 +826,8 @@ export namespace FileUploadResponse {
826826
* If no extension was requested, then this parameter is not returned.
827827
*/
828828
export interface ExtensionStatus {
829+
'ai-auto-description'?: 'success' | 'pending' | 'failed';
830+
829831
'aws-auto-tagging'?: 'success' | 'pending' | 'failed';
830832

831833
'google-auto-tagging'?: 'success' | 'pending' | 'failed';

src/resources/webhooks.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -460,6 +460,8 @@ export namespace UploadPreTransformSuccessEvent {
460460
* If no extension was requested, then this parameter is not returned.
461461
*/
462462
export interface ExtensionStatus {
463+
'ai-auto-description'?: 'success' | 'pending' | 'failed';
464+
463465
'aws-auto-tagging'?: 'success' | 'pending' | 'failed';
464466

465467
'google-auto-tagging'?: 'success' | 'pending' | 'failed';

0 commit comments

Comments
 (0)