refactor(ImageSize): allow other sizes (#1221)

This commit is contained in:
Danial Raza
2025-04-22 01:11:59 +02:00
committed by GitHub
parent 527ac2fe0f
commit ebd9814412
4 changed files with 4 additions and 4 deletions

2
deno/rest/v10/mod.ts generated
View File

@@ -1087,7 +1087,7 @@ Object.freeze(Routes);
export const StickerPackApplicationId = '710982414301790216';
export type ImageSize = 1_024 | 2_048 | 4_096 | 16 | 32 | 64 | 128 | 256 | 512;
export type ImageSize = 1_024 | 2_048 | 4_096 | 16 | 32 | 64 | 128 | 256 | 512 | (number & {});
export enum ImageFormat {
JPEG = 'jpeg',

2
deno/rest/v9/mod.ts generated
View File

@@ -1096,7 +1096,7 @@ Object.freeze(Routes);
export const StickerPackApplicationId = '710982414301790216';
export type ImageSize = 1_024 | 2_048 | 4_096 | 16 | 32 | 64 | 128 | 256 | 512;
export type ImageSize = 1_024 | 2_048 | 4_096 | 16 | 32 | 64 | 128 | 256 | 512 | (number & {});
export enum ImageFormat {
JPEG = 'jpeg',

View File

@@ -1087,7 +1087,7 @@ Object.freeze(Routes);
export const StickerPackApplicationId = '710982414301790216';
export type ImageSize = 1_024 | 2_048 | 4_096 | 16 | 32 | 64 | 128 | 256 | 512;
export type ImageSize = 1_024 | 2_048 | 4_096 | 16 | 32 | 64 | 128 | 256 | 512 | (number & {});
export enum ImageFormat {
JPEG = 'jpeg',

View File

@@ -1096,7 +1096,7 @@ Object.freeze(Routes);
export const StickerPackApplicationId = '710982414301790216';
export type ImageSize = 1_024 | 2_048 | 4_096 | 16 | 32 | 64 | 128 | 256 | 512;
export type ImageSize = 1_024 | 2_048 | 4_096 | 16 | 32 | 64 | 128 | 256 | 512 | (number & {});
export enum ImageFormat {
JPEG = 'jpeg',