diff --git a/src/index.tsx b/src/index.tsx index 3a14879..4d0f67b 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -128,9 +128,16 @@ export type FilterInput = { export type GetUploadLinkReturn = { __typename?: "GetUploadLinkReturn"; + headers: Array>; uploadUrl: Scalars["String"]["output"]; }; +export type Header = { + __typename?: "Header"; + key: Scalars["String"]["output"]; + value: Scalars["String"]["output"]; +}; + export type IntendedPocketTypeInput = { value: EnumFilter; }; diff --git a/src/schema.gql b/src/schema.gql index c677ba3..5299b68 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -279,4 +279,10 @@ input UploadMetadataInput { type GetUploadLinkReturn { uploadUrl: String! + headers: [Header]! +} + +type Header { + key: String! + value: String! }