@parra/parra-js-sdk 0.3.294 → 0.3.296

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.
@@ -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: string;
1519
+ title?: string | null;
1520
1520
  url: string;
1521
1521
  description?: string | null;
1522
1522
  icon_url?: string | null;
@@ -1675,13 +1675,13 @@ export interface Assignment {
1675
1675
  deleted_at?: string | null;
1676
1676
  team_member: TeamMemberStub;
1677
1677
  }
1678
- export interface UpdateLinkRequestBody {
1679
- title?: string;
1678
+ export interface UpdateTicketLinkRequestBody {
1679
+ title?: string | null;
1680
1680
  url: string;
1681
1681
  description?: string | null;
1682
1682
  }
1683
1683
  export interface CreateTicketLinkRequestBody {
1684
- title?: string;
1684
+ title?: string | null;
1685
1685
  url: string;
1686
1686
  description?: string | null;
1687
1687
  }
@@ -3613,7 +3613,7 @@ declare class ParraAPI {
3613
3613
  updateTicketAssignmentById: (tenant_id: string, ticket_id: string, ticket_assignment_id: string, body: UpdateTicketAssignmentRequestBody, options?: Options) => Promise<Assignment>;
3614
3614
  deleteTicketAssignmentById: (tenant_id: string, ticket_id: string, ticket_assignment_id: string, options?: Options) => Promise<Response>;
3615
3615
  deleteAttachmentForTicketById: (tenant_id: string, ticket_id: string, ticket_attachment_id: string, options?: Options) => Promise<Response>;
3616
- updateTicketLinkById: (tenant_id: string, ticket_id: string, ticket_link_id: string, body: UpdateLinkRequestBody, options?: Options) => Promise<TicketLink>;
3616
+ updateTicketLinkById: (tenant_id: string, ticket_id: string, ticket_link_id: string, body: UpdateTicketLinkRequestBody, options?: Options) => Promise<TicketLink>;
3617
3617
  deleteTicketLink: (tenant_id: string, ticket_id: string, ticket_link_id: string, options?: Options) => Promise<Response>;
3618
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>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.294",
3
+ "version": "0.3.296",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",