Skip to content
Open
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
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.25.8

require (
firebase.google.com/go/v4 v4.20.0
github.com/android-sms-gateway/client-go v1.13.0
github.com/android-sms-gateway/client-go v1.13.1-0.20260615045907-7da52ca08232
github.com/ansrivas/fiberprometheus/v2 v2.17.0
github.com/capcom6/go-helpers v0.4.0
github.com/capcom6/go-infra-fx v0.5.7
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ github.com/MicahParks/keyfunc v1.9.0 h1:lhKd5xrFHLNOWrDc4Tyb/Q1AJ4LCzQ48GVJyVIID
github.com/MicahParks/keyfunc v1.9.0/go.mod h1:IdnCilugA0O/99dW+/MkvlyrsX8+L8+x95xuVNtM5jw=
github.com/android-sms-gateway/client-go v1.13.0 h1:EvKDi796R2ScCAiaekWYRekVjkjiJGK3d/LZcPKpfQQ=
github.com/android-sms-gateway/client-go v1.13.0/go.mod h1:DQsReciU1xcaVW3T5Z2bqslNdsAwCFCtghawmA6g6L4=
github.com/android-sms-gateway/client-go v1.13.1-0.20260615045907-7da52ca08232 h1:5oXhQOh+utEQmODk6v5VEa1f8y2BqOPZrDKpL9rNNHw=
github.com/android-sms-gateway/client-go v1.13.1-0.20260615045907-7da52ca08232/go.mod h1:DQsReciU1xcaVW3T5Z2bqslNdsAwCFCtghawmA6g6L4=
github.com/andybalholm/brotli v1.2.1 h1:R+f5xP285VArJDRgowrfb9DqL18yVK0gKAW/F+eTWro=
github.com/andybalholm/brotli v1.2.1/go.mod h1:rzTDkvFWvIrjDXZHkuS16NPggd91W3kUSvPlQ1pLaKY=
github.com/ansrivas/fiberprometheus/v2 v2.17.0 h1:p0gqs5LsSCWGoSFF44fCJkyU+XcE6TLRqEMu80b2iCo=
Expand Down
10 changes: 7 additions & 3 deletions internal/sms-gateway/openapi/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -2380,9 +2380,11 @@ const docTemplate = `{
"sms:failed",
"system:ping",
"mms:received",
"mms:downloaded"
"mms:downloaded",
"app:started"
],
"x-enum-comments": {
"WebhookEventAppStarted": "Triggered when the application is started.",
"WebhookEventMmsDownloaded": "Triggered when an MMS is downloaded.",
"WebhookEventMmsReceived": "Triggered when an MMS is received.",
"WebhookEventSmsDataReceived": "Triggered when a data SMS is received.",
Expand All @@ -2400,7 +2402,8 @@ const docTemplate = `{
"Triggered when an SMS processing fails.",
"Triggered when the device pings the server.",
"Triggered when an MMS is received.",
"Triggered when an MMS is downloaded."
"Triggered when an MMS is downloaded.",
"Triggered when the application is started."
],
"x-enum-varnames": [
"WebhookEventSmsReceived",
Expand All @@ -2410,7 +2413,8 @@ const docTemplate = `{
"WebhookEventSmsFailed",
"WebhookEventSystemPing",
"WebhookEventMmsReceived",
"WebhookEventMmsDownloaded"
"WebhookEventMmsDownloaded",
"WebhookEventAppStarted"
]
}
},
Expand Down
Loading