Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: drop create sms endpoint #189

Merged
merged 1 commit into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

Loading