Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
4ac4134
fix(integrations): validate and harden jira, jsm, ashby, google drive…
waleedlatif1 Apr 29, 2026
b16bd35
fix(ashby): add subblock migrations for removed expand form definitio…
waleedlatif1 Apr 29, 2026
660fc69
fix(slack): restore canvas_id fallback to data.id for backwards compat
waleedlatif1 Apr 29, 2026
02fca0e
fix(jsm): explicit 400 when deprecated `emails` param is sent
waleedlatif1 Apr 29, 2026
e44e841
fix(google_drive): include HTTP status in fallback error messages
waleedlatif1 Apr 29, 2026
68e9fac
fix(ashby): drop stray websiteUrl→website remap for update_candidate
waleedlatif1 Apr 29, 2026
8420066
fix(google_drive): rename canonical params to avoid subBlock ID clash
waleedlatif1 Apr 29, 2026
5ab87a9
fix(ashby): remove filterCandidateId from removed-subblock migrations
waleedlatif1 Apr 29, 2026
3af7dec
fix(ashby): restore documented response fields dropped during refactor
waleedlatif1 Apr 29, 2026
85b36be
correctness
waleedlatif1 Apr 29, 2026
9bb00f4
updated types
waleedlatif1 Apr 29, 2026
3072823
fix(ashby): gate operation-specific param mappings to prevent stale o…
waleedlatif1 Apr 30, 2026
89f6f0e
fix(ashby): gate offerApplicationId mapping by operation
waleedlatif1 Apr 30, 2026
1c25b0f
fix(ashby): include list_locations in includeArchived condition
waleedlatif1 Apr 30, 2026
931186c
fix(jira): forward explicit notifyUsers=true query param on issue update
waleedlatif1 Apr 30, 2026
16111b9
fix(jira): quote project key in JQL to defend against injection
waleedlatif1 Apr 30, 2026
952d1a9
fix(jira): quote project key in bulk_read JQL for defense in depth
waleedlatif1 Apr 30, 2026
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
Prev Previous commit
Next Next commit
updated types
  • Loading branch information
waleedlatif1 committed Apr 29, 2026
commit 9bb00f4d7a5f76ed1c446bb334c4a823ac5edd32
140 changes: 70 additions & 70 deletions apps/sim/tools/jira/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -806,30 +806,30 @@ export interface JiraRetrieveResponse extends ToolResponse {
assignee: {
accountId: string
displayName: string
active?: boolean
emailAddress?: string
avatarUrl?: string
accountType?: string
timeZone?: string
active: boolean | null
emailAddress: string | null
avatarUrl: string | null
accountType: string | null
timeZone: string | null
} | null
assigneeName: string | null
reporter: {
accountId: string
displayName: string
active?: boolean
emailAddress?: string
avatarUrl?: string
accountType?: string
timeZone?: string
active: boolean | null
emailAddress: string | null
avatarUrl: string | null
accountType: string | null
timeZone: string | null
} | null
creator: {
accountId: string
displayName: string
active?: boolean
emailAddress?: string
avatarUrl?: string
accountType?: string
timeZone?: string
active: boolean | null
emailAddress: string | null
avatarUrl: string | null
accountType: string | null
timeZone: string | null
} | null
labels: string[]
components: Array<{ id: string; name: string; description?: string }>
Expand Down Expand Up @@ -869,21 +869,21 @@ export interface JiraRetrieveResponse extends ToolResponse {
author: {
accountId: string
displayName: string
active?: boolean
emailAddress?: string
avatarUrl?: string
accountType?: string
timeZone?: string
active: boolean | null
emailAddress: string | null
avatarUrl: string | null
accountType: string | null
timeZone: string | null
} | null
authorName: string
updateAuthor?: {
accountId: string
displayName: string
active?: boolean
emailAddress?: string
avatarUrl?: string
accountType?: string
timeZone?: string
active: boolean | null
emailAddress: string | null
avatarUrl: string | null
accountType: string | null
timeZone: string | null
} | null
created: string
updated: string
Expand All @@ -894,21 +894,21 @@ export interface JiraRetrieveResponse extends ToolResponse {
author: {
accountId: string
displayName: string
active?: boolean
emailAddress?: string
avatarUrl?: string
accountType?: string
timeZone?: string
active: boolean | null
emailAddress: string | null
avatarUrl: string | null
accountType: string | null
timeZone: string | null
} | null
authorName: string
updateAuthor?: {
accountId: string
displayName: string
active?: boolean
emailAddress?: string
avatarUrl?: string
accountType?: string
timeZone?: string
active: boolean | null
emailAddress: string | null
avatarUrl: string | null
accountType: string | null
timeZone: string | null
} | null
comment?: string | null
started: string
Expand All @@ -927,11 +927,11 @@ export interface JiraRetrieveResponse extends ToolResponse {
author: {
accountId: string
displayName: string
active?: boolean
emailAddress?: string
avatarUrl?: string
accountType?: string
timeZone?: string
active: boolean | null
emailAddress: string | null
avatarUrl: string | null
accountType: string | null
timeZone: string | null
} | null
authorName: string
created: string
Expand Down Expand Up @@ -1149,21 +1149,21 @@ export interface JiraSearchIssuesResponse extends ToolResponse {
assignee: {
accountId: string
displayName: string
active?: boolean
emailAddress?: string
avatarUrl?: string
accountType?: string
timeZone?: string
active: boolean | null
emailAddress: string | null
avatarUrl: string | null
accountType: string | null
timeZone: string | null
} | null
assigneeName: string | null
reporter: {
accountId: string
displayName: string
active?: boolean
emailAddress?: string
avatarUrl?: string
accountType?: string
timeZone?: string
active: boolean | null
emailAddress: string | null
avatarUrl: string | null
accountType: string | null
timeZone: string | null
} | null
labels: string[]
components: Array<{ id: string; name: string; description?: string }>
Expand Down Expand Up @@ -1223,21 +1223,21 @@ export interface JiraGetCommentsResponse extends ToolResponse {
author: {
accountId: string
displayName: string
active?: boolean
emailAddress?: string
avatarUrl?: string
accountType?: string
timeZone?: string
active: boolean | null
emailAddress: string | null
avatarUrl: string | null
accountType: string | null
timeZone: string | null
} | null
authorName: string
updateAuthor: {
accountId: string
displayName: string
active?: boolean
emailAddress?: string
avatarUrl?: string
accountType?: string
timeZone?: string
active: boolean | null
emailAddress: string | null
avatarUrl: string | null
accountType: string | null
timeZone: string | null
} | null
created: string
updated: string
Expand Down Expand Up @@ -1431,20 +1431,20 @@ export interface JiraUpdateWorklogResponse extends ToolResponse {
author: {
accountId: string
displayName: string
active?: boolean
emailAddress?: string
avatarUrl?: string
accountType?: string
timeZone?: string
active: boolean | null
emailAddress: string | null
avatarUrl: string | null
accountType: string | null
timeZone: string | null
} | null
updateAuthor: {
accountId: string
displayName: string
active?: boolean
emailAddress?: string
avatarUrl?: string
accountType?: string
timeZone?: string
active: boolean | null
emailAddress: string | null
avatarUrl: string | null
accountType: string | null
timeZone: string | null
} | null
started: string | null
created: string | null
Expand Down
Loading