@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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.89",
3
+ "version": "0.3.90",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",