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 = {
__typename?: "GetUploadLinkReturn";
headers: Array<Maybe<Header>>;
uploadUrl: Scalars["String"]["output"];
};
export type Header = {
__typename?: "Header";
key: Scalars["String"]["output"];
value: Scalars["String"]["output"];
};
export type IntendedPocketTypeInput = {
value: EnumFilter;
};

View File

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