Adds headers to get link return

This commit is contained in:
Mike Kalange 2024-03-04 17:48:59 -07:00
parent 3bce7ea344
commit 32ec7a2339
2 changed files with 13 additions and 0 deletions

View File

@ -128,9 +128,16 @@ export type FilterInput = {
export type GetUploadLinkReturn = { export type GetUploadLinkReturn = {
__typename?: "GetUploadLinkReturn"; __typename?: "GetUploadLinkReturn";
headers: Array<Maybe<Header>>;
uploadUrl: Scalars["String"]["output"]; uploadUrl: Scalars["String"]["output"];
}; };
export type Header = {
__typename?: "Header";
key: Scalars["String"]["output"];
value: Scalars["String"]["output"];
};
export type IntendedPocketTypeInput = { export type IntendedPocketTypeInput = {
value: EnumFilter; value: EnumFilter;
}; };

View File

@ -279,4 +279,10 @@ input UploadMetadataInput {
type GetUploadLinkReturn { type GetUploadLinkReturn {
uploadUrl: String! uploadUrl: String!
headers: [Header]!
}
type Header {
key: String!
value: String!
} }