Compare commits

...
Author SHA1 Message Date
phoenix ec371ec86b Breaking changes (#30)
Reviewed-on: phoenix/textsender-models#30
2026-01-01 20:33:38 +00:00
phoenixandphoenix f4e2336771 tsk-39: Rename RecipientId in scheduling.ScheduledMessageEvent (#40)
Closes #39

Reviewed-on: phoenix/textsender-models#40
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
2025-12-31 23:24:02 +00:00
phoenixandphoenix 6f9e112b72 tsk-37: Add last login to service user (#38)
Closes #37

Reviewed-on: phoenix/textsender-models#38
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
2025-12-31 22:38:39 +00:00
phoenixandphoenix 7c21f243ed tsk-33: Put TwilioConfig in its own package (#36)
Closes #33

Reviewed-on: phoenix/textsender-models#36
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
2025-12-31 22:27:57 +00:00
phoenixandphoenix 7db9914bc4 tsk-29: Change type of Response from MessageEventResponse (#35)
Closes #29

Reviewed-on: phoenix/textsender-models#35
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
2025-12-31 22:22:46 +00:00
phoenixandphoenix 564a3936e3 tsk-26: Put MessageEventResponse statuses in their own file (#34)
Closes #26

Reviewed-on: phoenix/textsender-models#34
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
2025-12-31 22:15:32 +00:00
8 changed files with 32 additions and 31 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
run: |
echo "Creating version"
VERSION="0.1.1"
VERSION="0.1.6"
PROJECT_COMMIT_HASH=$(git rev-parse HEAD | cut -c 1-10)
BRANCH_REF="${{ gitea.ref }}"
BRANCH_NAME=$(echo "$BRANCH_REF" | cut -d '/' -f 3)
@@ -1,4 +1,4 @@
package config
package auxiliary
import (
"fmt"
+18
View File
@@ -0,0 +1,18 @@
package event
import (
"time"
"github.com/google/uuid"
)
type MessageEventResponse struct {
Id uuid.UUID `json:"id,omitempty"`
ScheduledMessageEventId uuid.UUID `json:"scheduled_message_event_id,omitempty"`
Response map[string]any `json:"response"`
UserId uuid.UUID `json:"user_id,omitempty"`
ContactId *uuid.UUID `json:"contact_id,omitempty"`
MessageId *uuid.UUID `json:"message_id,omitempty"`
Status string `json:"status"`
Sent time.Time `json:"sent"`
}
+6
View File
@@ -0,0 +1,6 @@
package event
const (
Message_Event_Response_Status_Instant = "INSTANT"
Message_Event_Response_Status_Scheduled = "SCHEDULED"
)
-25
View File
@@ -1,25 +0,0 @@
package message
import (
"time"
"github.com/google/uuid"
"git.kundeng.us/phoenix/textsender-models/tx0/types"
)
type MessageEventResponse struct {
Id uuid.UUID `json:"id,omitempty"`
ScheduledMessageEventId uuid.UUID `json:"scheduled_message_event_id,omitempty"`
Response types.JSONB `json:"response"`
UserId uuid.UUID `json:"user_id,omitempty"`
ContactId *uuid.UUID `json:"contact_id,omitempty"`
MessageId *uuid.UUID `json:"message_id,omitempty"`
Status string `json:"status"`
Sent time.Time `json:"sent"`
}
const (
Message_Event_Response_Status_Instant = "INSTANT"
Message_Event_Response_Status_Scheduled = "SCHEDULED"
)
+1 -1
View File
@@ -8,7 +8,7 @@ import (
type ScheduledMessageEvent struct {
Id uuid.UUID `json:"id"`
RecipientId uuid.UUID `json:"recipient_id"`
ContactId uuid.UUID `json:"contact_id"`
MessageId uuid.UUID `json:"message_id"`
ScheduledMessageId uuid.UUID `json:"scheduled_message_id"`
Created time.Time `json:"created"`
+1
View File
@@ -6,6 +6,7 @@ import (
"fmt"
)
// NOTE: Might end up removing this
type JSONB json.RawMessage
// Scan implements sql.Scanner
+4 -3
View File
@@ -9,7 +9,8 @@ import (
type ServiceUser struct {
Id uuid.UUID `json:"id"`
// TODO: Remove the omitempty tags at a later point
Username string `json:"username,omitempty"`
Passphrase string `json:"passphrase,omitempty"`
Created time.Time `json:"created"`
Username string `json:"username,omitempty"`
Passphrase string `json:"passphrase,omitempty"`
Created time.Time `json:"created"`
LastLogin *time.Time `json:"last_login,omitempty"`
}