@parra/parra-js-sdk 0.3.293 → 0.3.294

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.
@@ -1676,12 +1676,12 @@ export interface Assignment {
1676
1676
  team_member: TeamMemberStub;
1677
1677
  }
1678
1678
  export interface UpdateLinkRequestBody {
1679
- title: string;
1679
+ title?: string;
1680
1680
  url: string;
1681
1681
  description?: string | null;
1682
1682
  }
1683
- export interface CreateLinkRequestBody {
1684
- title: string;
1683
+ export interface CreateTicketLinkRequestBody {
1684
+ title?: string;
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?: CreateLinkRequestBody, options?: Options) => Promise<TicketLink>;
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>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.293",
3
+ "version": "0.3.294",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",