Skip to content

Commit

Permalink
fix: integration account id in all tables
Browse files Browse the repository at this point in the history
  • Loading branch information
saimanoj committed Jul 27, 2023
1 parent 9484bf0 commit ea78625
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion internal/ticketing/collection.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ type Collection struct {
UpdatedAt *string `json:"updated_at,omitempty"`
CreatedAt *string `json:"created_at,omitempty"`
Raw map[string]interface{} `json:"raw,omitempty"`
IntegrationAccountId *string `json:"integrtion_account_id,omitempty"`
IntegrationAccountId *string `json:"integration_account_id,omitempty"`
CqCreatedAt *time.Time `json:"cq_created_at,omitempty"`
CqUpdatedAt *time.Time `json:"cq_updated_at,omitempty"`
}
Expand Down
2 changes: 1 addition & 1 deletion internal/ticketing/comment.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type Comment struct {
UpdatedAt *time.Time `json:"updated_at,omitempty"`
CreatedAt *time.Time `json:"created_at,omitempty"`
Raw map[string]interface{} `json:"raw,omitempty"`
IntegrationAccountId *string `json:"integrtion_account_id,omitempty"`
IntegrationAccountId *string `json:"integration_account_id,omitempty"`
CqCreatedAt *time.Time `json:"cq_created_at,omitempty"`
CqUpdatedAt *time.Time `json:"cq_updated_at,omitempty"`
}
Expand Down
2 changes: 1 addition & 1 deletion internal/ticketing/tag.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ type Tag struct {
UpdatedAt *time.Time `json:"updated_at,omitempty"`
CreatedAt *time.Time `json:"created_at,omitempty"`
Raw map[string]interface{} `json:"raw,omitempty"`
IntegrationAccountId *string `json:"integrtion_account_id,omitempty"`
IntegrationAccountId *string `json:"integration_account_id,omitempty"`
CqCreatedAt *time.Time `json:"cq_created_at,omitempty"`
CqUpdatedAt *time.Time `json:"cq_updated_at,omitempty"`
}
Expand Down
2 changes: 1 addition & 1 deletion internal/ticketing/team.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type Team struct {
UpdatedAt *time.Time `json:"updated_at,omitempty"`
CreatedAt *time.Time `json:"created_at,omitempty"`
Raw map[string]interface{} `json:"raw,omitempty"`
IntegrationAccountId *string `json:"integrtion_account_id,omitempty"`
IntegrationAccountId *string `json:"integration_account_id,omitempty"`
CqCreatedAt *time.Time `json:"cq_created_at,omitempty"`
CqUpdatedAt *time.Time `json:"cq_updated_at,omitempty"`
}
Expand Down
2 changes: 1 addition & 1 deletion internal/ticketing/ticket.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ type Ticket struct {
CompletedAt *string `json:"completed_at,omitempty"`
Tags []TicketTag `json:"tags,omitempty"`
Raw map[string]interface{} `json:"raw,omitempty"`
IntegrationAccountId *string `json:"integrtion_account_id,omitempty"`
IntegrationAccountId *string `json:"integration_account_id,omitempty"`
CqCreatedAt *time.Time `json:"cq_created_at,omitempty"`
CqUpdatedAt *time.Time `json:"cq_updated_at,omitempty"`
}
Expand Down
2 changes: 1 addition & 1 deletion internal/ticketing/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ type User struct {
UpdatedAt *time.Time `json:"updated_at,omitempty"`
CreatedAt *time.Time `json:"created_at,omitempty"`
Raw map[string]interface{} `json:"raw,omitempty"`
IntegrationAccountId *string `json:"integrtion_account_id,omitempty"`
IntegrationAccountId *string `json:"integration_account_id,omitempty"`
CqCreatedAt *time.Time `json:"cq_created_at,omitempty"`
CqUpdatedAt *time.Time `json:"cq_updated_at,omitempty"`
}
Expand Down

0 comments on commit ea78625

Please sign in to comment.