2
go.mod
2
go.mod
@@ -31,7 +31,7 @@ require (
|
|||||||
go.gearno.de/x/ref v0.0.0-20240502200927-d74926fcb14c
|
go.gearno.de/x/ref v0.0.0-20240502200927-d74926fcb14c
|
||||||
go.opentelemetry.io/otel v1.37.0
|
go.opentelemetry.io/otel v1.37.0
|
||||||
go.opentelemetry.io/otel/trace v1.37.0
|
go.opentelemetry.io/otel/trace v1.37.0
|
||||||
go.probo.inc/mcpgen v0.0.0-20251120125859-04a3b05f0c89
|
go.probo.inc/mcpgen v0.0.0-20251120181856-7af25b57c072
|
||||||
golang.org/x/crypto v0.43.0
|
golang.org/x/crypto v0.43.0
|
||||||
golang.org/x/image v0.27.0
|
golang.org/x/image v0.27.0
|
||||||
golang.org/x/sync v0.17.0
|
golang.org/x/sync v0.17.0
|
||||||
|
|||||||
@@ -27,8 +27,8 @@ func NewPeople(p *coredata.People) *People {
|
|||||||
PrimaryEmailAddress: p.PrimaryEmailAddress,
|
PrimaryEmailAddress: p.PrimaryEmailAddress,
|
||||||
AdditionalEmailAddresses: p.AdditionalEmailAddresses,
|
AdditionalEmailAddresses: p.AdditionalEmailAddresses,
|
||||||
Position: p.Position,
|
Position: p.Position,
|
||||||
// ContractStartDate: p.ContractStartDate,
|
ContractStartDate: p.ContractStartDate,
|
||||||
// ContractEndDate: p.ContractEndDate,
|
ContractEndDate: p.ContractEndDate,
|
||||||
CreatedAt: p.CreatedAt,
|
CreatedAt: p.CreatedAt,
|
||||||
UpdatedAt: p.UpdatedAt,
|
UpdatedAt: p.UpdatedAt,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -113,9 +113,9 @@ type People struct {
|
|||||||
// Additional email addresses
|
// Additional email addresses
|
||||||
AdditionalEmailAddresses []string `json:"additional_email_addresses"`
|
AdditionalEmailAddresses []string `json:"additional_email_addresses"`
|
||||||
// Contract end date
|
// Contract end date
|
||||||
ContractEndDate *string `json:"contract_end_date,omitempty"`
|
ContractEndDate *time.Time `json:"contract_end_date,omitempty"`
|
||||||
// Contract start date
|
// Contract start date
|
||||||
ContractStartDate *string `json:"contract_start_date,omitempty"`
|
ContractStartDate *time.Time `json:"contract_start_date,omitempty"`
|
||||||
// Creation timestamp
|
// Creation timestamp
|
||||||
CreatedAt time.Time `json:"created_at"`
|
CreatedAt time.Time `json:"created_at"`
|
||||||
// Full name
|
// Full name
|
||||||
|
|||||||
Reference in New Issue
Block a user