feat: add email template schema

This commit is contained in:
Lakhan Samani
2022-07-15 10:12:24 +05:30
parent fed092bb65
commit 14c74f6566
13 changed files with 756 additions and 0 deletions

View File

@@ -354,6 +354,19 @@ type TestEndpointResponse {
response: Map
}
type EmailTemplate {
id: ID!
event_name: String!
template: String!
created_at: Int64
updated_at: Int64
}
type EmailTemplates {
pagination: Pagination!
EmailTemplates: [EmailTemplate!]!
}
input ListWebhookLogRequest {
pagination: PaginationInput
webhook_id: String