@parra/parra-js-sdk 0.3.294 → 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 +3 -3
- 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?: string;
|
|
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
|
}
|