Major changes: - Migrate all handlers from Gin to Echo framework - Add new apperrors, echohelpers, and validator packages - Update middleware for Echo compatibility - Add ArchivedHandler to task categorization chain (archived tasks go to cancelled_tasks column) - Add 6 new integration tests: - RecurringTaskLifecycle: NextDueDate advancement for weekly/monthly tasks - MultiUserSharing: Complex sharing with user removal - TaskStateTransitions: All state transitions and kanban column changes - DateBoundaryEdgeCases: Threshold boundary testing - CascadeOperations: Residence deletion cascade effects - MultiUserOperations: Shared residence collaboration - Add single-purpose repository functions for kanban columns (GetOverdueTasks, GetDueSoonTasks, etc.) - Fix RemoveUser route param mismatch (userId -> user_id) - Fix determineExpectedColumn helper to correctly prioritize in_progress over overdue 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
48 lines
2.4 KiB
Go
48 lines
2.4 KiB
Go
package requests
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/shopspring/decimal"
|
|
|
|
"github.com/treytartt/casera-api/internal/models"
|
|
)
|
|
|
|
// CreateDocumentRequest represents the request to create a document
|
|
type CreateDocumentRequest struct {
|
|
ResidenceID uint `json:"residence_id" validate:"required"`
|
|
Title string `json:"title" validate:"required,min=1,max=200"`
|
|
Description string `json:"description"`
|
|
DocumentType models.DocumentType `json:"document_type"`
|
|
FileURL string `json:"file_url" validate:"max=500"`
|
|
FileName string `json:"file_name" validate:"max=255"`
|
|
FileSize *int64 `json:"file_size"`
|
|
MimeType string `json:"mime_type" validate:"max=100"`
|
|
PurchaseDate *time.Time `json:"purchase_date"`
|
|
ExpiryDate *time.Time `json:"expiry_date"`
|
|
PurchasePrice *decimal.Decimal `json:"purchase_price"`
|
|
Vendor string `json:"vendor" validate:"max=200"`
|
|
SerialNumber string `json:"serial_number" validate:"max=100"`
|
|
ModelNumber string `json:"model_number" validate:"max=100"`
|
|
TaskID *uint `json:"task_id"`
|
|
ImageURLs []string `json:"image_urls"` // Multiple image URLs
|
|
}
|
|
|
|
// UpdateDocumentRequest represents the request to update a document
|
|
type UpdateDocumentRequest struct {
|
|
Title *string `json:"title" validate:"omitempty,min=1,max=200"`
|
|
Description *string `json:"description"`
|
|
DocumentType *models.DocumentType `json:"document_type"`
|
|
FileURL *string `json:"file_url" validate:"omitempty,max=500"`
|
|
FileName *string `json:"file_name" validate:"omitempty,max=255"`
|
|
FileSize *int64 `json:"file_size"`
|
|
MimeType *string `json:"mime_type" validate:"omitempty,max=100"`
|
|
PurchaseDate *time.Time `json:"purchase_date"`
|
|
ExpiryDate *time.Time `json:"expiry_date"`
|
|
PurchasePrice *decimal.Decimal `json:"purchase_price"`
|
|
Vendor *string `json:"vendor" validate:"omitempty,max=200"`
|
|
SerialNumber *string `json:"serial_number" validate:"omitempty,max=100"`
|
|
ModelNumber *string `json:"model_number" validate:"omitempty,max=100"`
|
|
TaskID *uint `json:"task_id"`
|
|
}
|