@parra/parra-js-sdk 0.3.89 → 0.3.90
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 +2 -2
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -954,7 +954,7 @@ export interface LinkUserNoteRequestBody {
|
|
|
954
954
|
export interface UpdateTicketRequestBody {
|
|
955
955
|
release_id?: string;
|
|
956
956
|
title?: string;
|
|
957
|
-
short_title?: string;
|
|
957
|
+
short_title?: string | null;
|
|
958
958
|
type?: TicketType;
|
|
959
959
|
status?: TicketStatus;
|
|
960
960
|
priority?: TicketPriority | null;
|
|
@@ -966,7 +966,7 @@ export interface UpdateTicketRequestBody {
|
|
|
966
966
|
export interface BulkUpdateTicketsRequestBody {
|
|
967
967
|
release_id?: string;
|
|
968
968
|
title?: string;
|
|
969
|
-
short_title?: string;
|
|
969
|
+
short_title?: string | null;
|
|
970
970
|
type?: TicketType;
|
|
971
971
|
status?: TicketStatus;
|
|
972
972
|
priority?: TicketPriority | null;
|