From b8304d1cf634ace94905a70ceb3e99e3ca13bcd0 Mon Sep 17 00:00:00 2001 From: Gianni Ferullo Date: Wed, 29 Nov 2023 11:45:06 -0600 Subject: [PATCH 1/2] remove bottle_data type from IGif --- packages/types/src/gif.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/packages/types/src/gif.ts b/packages/types/src/gif.ts index f9e7683b..fbbae1f3 100644 --- a/packages/types/src/gif.ts +++ b/packages/types/src/gif.ts @@ -2,11 +2,6 @@ import { IImages } from './images' import IUser from './user' import IVideo from './video' -interface IBottleData { - tid?: string - tags?: string[] -} - export type GifID = string | number export default interface IGif { @@ -34,7 +29,6 @@ export default interface IGif { is_scheduled: boolean is_removed: boolean tags: string[] - bottle_data: IBottleData analytics_response_payload: string video?: IVideo emoji_group_id?: number From f479d0243f587575061ebf15abb874803c5e1eae Mon Sep 17 00:00:00 2001 From: Gianni Ferullo Date: Wed, 29 Nov 2023 12:57:48 -0600 Subject: [PATCH 2/2] changeset --- .changeset/many-panthers-warn.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/many-panthers-warn.md diff --git a/.changeset/many-panthers-warn.md b/.changeset/many-panthers-warn.md new file mode 100644 index 00000000..98135de6 --- /dev/null +++ b/.changeset/many-panthers-warn.md @@ -0,0 +1,5 @@ +--- +'@giphy/js-types': major +--- + +remove unused bottle_data interface from IGif. This should only affect internal GIPHY projects