Skip to content

Commit

Permalink
feat(api): OpenAPI spec update via Stainless API (#338)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Apr 15, 2024
1 parent d54ce52 commit 14e5fed
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions src/resources/cache/variants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,67 +111,67 @@ export namespace VariantEditResponse {
* List of strings with the MIME types of all the variants that should be served
* for avif.
*/
avif?: Array<unknown>;
avif?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for bmp.
*/
bmp?: Array<unknown>;
bmp?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for gif.
*/
gif?: Array<unknown>;
gif?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for jp2.
*/
jp2?: Array<unknown>;
jp2?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for jpeg.
*/
jpeg?: Array<unknown>;
jpeg?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for jpg.
*/
jpg?: Array<unknown>;
jpg?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for jpg2.
*/
jpg2?: Array<unknown>;
jpg2?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for png.
*/
png?: Array<unknown>;
png?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for tif.
*/
tif?: Array<unknown>;
tif?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for tiff.
*/
tiff?: Array<unknown>;
tiff?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for webp.
*/
webp?: Array<unknown>;
webp?: Array<string>;
}
}

Expand Down Expand Up @@ -208,67 +208,67 @@ export namespace VariantGetResponse {
* List of strings with the MIME types of all the variants that should be served
* for avif.
*/
avif?: Array<unknown>;
avif?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for bmp.
*/
bmp?: Array<unknown>;
bmp?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for gif.
*/
gif?: Array<unknown>;
gif?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for jp2.
*/
jp2?: Array<unknown>;
jp2?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for jpeg.
*/
jpeg?: Array<unknown>;
jpeg?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for jpg.
*/
jpg?: Array<unknown>;
jpg?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for jpg2.
*/
jpg2?: Array<unknown>;
jpg2?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for png.
*/
png?: Array<unknown>;
png?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for tif.
*/
tif?: Array<unknown>;
tif?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for tiff.
*/
tiff?: Array<unknown>;
tiff?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for webp.
*/
webp?: Array<unknown>;
webp?: Array<string>;
}
}

Expand Down Expand Up @@ -305,67 +305,67 @@ export namespace VariantEditParams {
* List of strings with the MIME types of all the variants that should be served
* for avif.
*/
avif?: Array<unknown>;
avif?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for bmp.
*/
bmp?: Array<unknown>;
bmp?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for gif.
*/
gif?: Array<unknown>;
gif?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for jp2.
*/
jp2?: Array<unknown>;
jp2?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for jpeg.
*/
jpeg?: Array<unknown>;
jpeg?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for jpg.
*/
jpg?: Array<unknown>;
jpg?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for jpg2.
*/
jpg2?: Array<unknown>;
jpg2?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for png.
*/
png?: Array<unknown>;
png?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for tif.
*/
tif?: Array<unknown>;
tif?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for tiff.
*/
tiff?: Array<unknown>;
tiff?: Array<string>;

/**
* List of strings with the MIME types of all the variants that should be served
* for webp.
*/
webp?: Array<unknown>;
webp?: Array<string>;
}
}

Expand Down

0 comments on commit 14e5fed

Please sign in to comment.