Add mutations and inputs to manage brand logos
Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
@@ -3071,6 +3071,9 @@ type Mutation {
|
||||
deleteTrustCenterNDA(
|
||||
input: DeleteTrustCenterNDAInput!
|
||||
): DeleteTrustCenterNDAPayload!
|
||||
updateTrustCenterBrand(
|
||||
input: UpdateTrustCenterBrandInput!
|
||||
): UpdateTrustCenterBrandPayload!
|
||||
# Trust Center Access CRUD mutations
|
||||
createTrustCenterAccess(
|
||||
input: CreateTrustCenterAccessInput!
|
||||
@@ -3445,6 +3448,12 @@ input DeleteTrustCenterNDAInput {
|
||||
trustCenterId: ID!
|
||||
}
|
||||
|
||||
input UpdateTrustCenterBrandInput {
|
||||
trustCenterId: ID!
|
||||
logoFile: Upload @goField(omittable: true)
|
||||
darkLogoFile: Upload @goField(omittable: true)
|
||||
}
|
||||
|
||||
input CreateTrustCenterAccessInput {
|
||||
trustCenterId: ID!
|
||||
email: EmailAddr!
|
||||
@@ -4308,6 +4317,10 @@ type DeleteTrustCenterNDAPayload {
|
||||
trustCenter: TrustCenter!
|
||||
}
|
||||
|
||||
type UpdateTrustCenterBrandPayload {
|
||||
trustCenter: TrustCenter!
|
||||
}
|
||||
|
||||
type CreateTrustCenterAccessPayload {
|
||||
trustCenterAccessEdge: TrustCenterAccessEdge!
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user