Skip to content

Commit

Permalink
feat: drop create sms endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikpolik committed Nov 17, 2023
1 parent 2781410 commit eb0b2b8
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 134 deletions.
8 changes: 0 additions & 8 deletions clerk/clerk.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ const (
RedirectURLsUrl = "redirect_urls"
SAMLConnectionsUrl = "saml_connections"
SessionsUrl = "sessions"
SMSUrl = "sms_messages"
TemplatesUrl = "templates"
UsersUrl = "users"
UsersCountUrl = UsersUrl + "/count"
Expand Down Expand Up @@ -69,7 +68,6 @@ type Client interface {
RedirectURLs() *RedirectURLsService
SAMLConnections() *SAMLConnectionsService
Sessions() *SessionsService
SMS() *SMSService
Templates() *TemplatesService
Users() *UsersService
Webhooks() *WebhooksService
Expand Down Expand Up @@ -105,7 +103,6 @@ type client struct {
redirectURLs *RedirectURLsService
samlConnections *SAMLConnectionsService
sessions *SessionsService
sms *SMSService
templates *TemplatesService
users *UsersService
webhooks *WebhooksService
Expand Down Expand Up @@ -154,7 +151,6 @@ func NewClient(token string, options ...ClerkOption) (Client, error) {
client.redirectURLs = (*RedirectURLsService)(commonService)
client.samlConnections = (*SAMLConnectionsService)(commonService)
client.sessions = (*SessionsService)(commonService)
client.sms = (*SMSService)(commonService)
client.templates = (*TemplatesService)(commonService)
client.users = (*UsersService)(commonService)
client.webhooks = (*WebhooksService)(commonService)
Expand Down Expand Up @@ -331,10 +327,6 @@ func (c *client) Sessions() *SessionsService {
return c.sessions
}

func (c *client) SMS() *SMSService {
return c.sms
}

func (c *client) Templates() *TemplatesService {
return c.templates
}
Expand Down
34 changes: 0 additions & 34 deletions clerk/sms.go

This file was deleted.

57 changes: 0 additions & 57 deletions clerk/sms_test.go

This file was deleted.

35 changes: 0 additions & 35 deletions tests/integration/sms_test.go

This file was deleted.

0 comments on commit eb0b2b8

Please sign in to comment.