Adds headers to get link return
This commit is contained in:
parent
3bce7ea344
commit
32ec7a2339
@ -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;
|
||||
};
|
||||
|
@ -279,4 +279,10 @@ input UploadMetadataInput {
|
||||
|
||||
type GetUploadLinkReturn {
|
||||
uploadUrl: String!
|
||||
headers: [Header]!
|
||||
}
|
||||
|
||||
type Header {
|
||||
key: String!
|
||||
value: String!
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user