type Mutation {
    addReportsToRoyalties(
        input: AddReportsToRoyaltiesInput!
    ): [CollaboratorTransaction!]!
    agreeTermsAndConditions(
        input: CollaboratorsAgreeTermsAndConditionsInput!
    ): CollaboratorsAgreedTermsAndConditions!
    cancelTransferWiseBatchPayment(
        input: CancelTransferWiseBatchPaymentInput!
    ): TransferWiseBatch!
    closeStatementPeriod(
        input: CloseStatementPeriodInput!
    ): CollaboratorsStatementPeriod!
    createCollaborator(input: CollaboratorInput!): Collaborator
    createCollaboratorTransactions(
        input: [CreateCollaboratorTransactionInput!]!
    ): [CollaboratorTransaction!]!
    createCollaboratorsVendorAgreement(
        input: CollaboratorsVendorAgreementInput!
    ): CollaboratorsVendorAgreement
    createDpPaymentTransactions(
        input: CreateDpPaymentTransactionsInput!
    ): Boolean!
    createTransferWisePayment(
        input: TransferWiseBatchPaymentInput!
    ): TransferWiseBatch
    createTransferWiseProfile(
        input: CreateTransferWiseProfileInput
    ): TransferWiseProfile
    createTransferWiseQuote(
        input: TransferWiseBatchQuoteInput
    ): TransferWiseQuoteResponse
    createTransferWiseRecipient(
        input: CreateTransferWiseRecipientInput!
    ): CreateTransferWiseRecipientResponse!
    deleteCollaboratorReports(
        input: DeleteCollaboratorReportsInput!
    ): DeleteCollaboratorReportsResponse
    deleteCollaboratorTransactions(
        transactionIds: [ID!]!
    ): DeleteCollaboratorTransactionsResponse!
    deleteTransferWiseRecipient(
        input: DeleteTransferWiseRecipientInput
    ): DeleteTransferWiseRecipientResponse
    ingestBulkCollaboratorSplits(
        input: IngestBulkCollaboratorSplitsInput!
    ): BulkSplitIngestSummary!
    refreshTransferWiseRecipientRequirements(
        input: CreateTransferWiseRecipientInput!
    ): [TransferWiseAccountRequirement!]!
    replaceCollaboratorSplits(input: ReplaceCollaboratorSplitsInput!): Boolean!
    replaceDpPayments(
        input: ReplaceDpPaymentsInput!
    ): CollaboratorsDpPaymentResults!
    replaceTrackCollaboratorSplits(
        input: ReplaceCollaboratorSplitsInput!
    ): [Track!]!
    submitDpPayments(input: SubmitDpPaymentsInput!): SubmitDpPaymentsResult!
    triggerCollaboratorsAutoReportRun(
        input: TriggerCollaboratorsAutoReportRunInput!
    ): TriggerCollaboratorsAutoReportRunResponse!
    triggerCollaboratorsReportGeneration(
        input: TriggerCollaboratorsReportGenerationInput!
    ): TriggerCollaboratorsReportGenerationResponse!
    updateCollaborator(input: UpdateCollaboratorInput!): Collaborator
    updateDpPayments(
        input: UpdateDpPaymentsInput!
    ): CollaboratorsDpPaymentResults!
}
