@parra/parra-js-sdk 0.3.293 → 0.3.295
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ParraAPI.d.ts +5 -5
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1516,7 +1516,7 @@ export interface TicketLink {
|
|
|
1516
1516
|
updated_at: string;
|
|
1517
1517
|
deleted_at?: string | null;
|
|
1518
1518
|
type?: TicketLinkType | null;
|
|
1519
|
-
title
|
|
1519
|
+
title?: string | null;
|
|
1520
1520
|
url: string;
|
|
1521
1521
|
description?: string | null;
|
|
1522
1522
|
icon_url?: string | null;
|
|
@@ -1676,12 +1676,12 @@ export interface Assignment {
|
|
|
1676
1676
|
team_member: TeamMemberStub;
|
|
1677
1677
|
}
|
|
1678
1678
|
export interface UpdateLinkRequestBody {
|
|
1679
|
-
title
|
|
1679
|
+
title?: string | null;
|
|
1680
1680
|
url: string;
|
|
1681
1681
|
description?: string | null;
|
|
1682
1682
|
}
|
|
1683
|
-
export interface
|
|
1684
|
-
title
|
|
1683
|
+
export interface CreateTicketLinkRequestBody {
|
|
1684
|
+
title?: string | null;
|
|
1685
1685
|
url: string;
|
|
1686
1686
|
description?: string | null;
|
|
1687
1687
|
}
|
|
@@ -3615,7 +3615,7 @@ declare class ParraAPI {
|
|
|
3615
3615
|
deleteAttachmentForTicketById: (tenant_id: string, ticket_id: string, ticket_attachment_id: string, options?: Options) => Promise<Response>;
|
|
3616
3616
|
updateTicketLinkById: (tenant_id: string, ticket_id: string, ticket_link_id: string, body: UpdateLinkRequestBody, options?: Options) => Promise<TicketLink>;
|
|
3617
3617
|
deleteTicketLink: (tenant_id: string, ticket_id: string, ticket_link_id: string, options?: Options) => Promise<Response>;
|
|
3618
|
-
createLinkForTicket: (tenant_id: string, ticket_id: string, body?:
|
|
3618
|
+
createLinkForTicket: (tenant_id: string, ticket_id: string, body?: CreateTicketLinkRequestBody, options?: Options) => Promise<TicketLink>;
|
|
3619
3619
|
createTicketChecklistItem: (tenant_id: string, ticket_id: string, body?: CreateTicketChecklistItemRequestBody, options?: Options) => Promise<TicketChecklistItem>;
|
|
3620
3620
|
bulkUpdateTicketChecklistItems: (tenant_id: string, ticket_id: string, body?: BulkUpdateTicketChecklistItemsRequestBody, options?: Options) => Promise<Array<TicketChecklistItem>>;
|
|
3621
3621
|
listTicketChecklistItems: (tenant_id: string, ticket_id: string, options?: Options) => Promise<Array<TicketChecklistItem>>;
|