diff --git a/internal/connectors/google_docs/operation_append_text_to_document.go b/internal/connectors/google_docs/operation_append_text_to_document.go index 28065b7..535eb4c 100644 --- a/internal/connectors/google_docs/operation_append_text_to_document.go +++ b/internal/connectors/google_docs/operation_append_text_to_document.go @@ -13,8 +13,8 @@ import ( ) type appendTextToDocumentOperationProps struct { - DocumentID string `JSON:"id"` - Text string `JSON:"text"` + DocumentID string `json:"id"` + Text string `json:"text"` } type AppendTextToDocumentOperation struct { diff --git a/internal/connectors/googlemail/lib.go b/internal/connectors/googlemail/lib.go index c1baea3..3108ee9 100644 --- a/internal/connectors/googlemail/lib.go +++ b/internal/connectors/googlemail/lib.go @@ -25,7 +25,6 @@ func NewConnector() (*sdk.ConnectorPlugin, error) { NewGetMailByIDOperation(), NewSendMailOperation(), NewGetThreadOperation(), - NewSendTemplateMailOperation(), NewListMailsOperation(), }, })