@parra/parra-js-sdk 0.3.93 → 0.3.95

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.
@@ -841,6 +841,13 @@ export declare enum TicketPriority {
841
841
  high = "high",
842
842
  urgent = "urgent"
843
843
  }
844
+ export declare enum TicketIconType {
845
+ emoji = "emoji"
846
+ }
847
+ export interface TicketIcon {
848
+ type: TicketIconType;
849
+ value?: string;
850
+ }
844
851
  export interface CreateTicketRequestBody {
845
852
  title: string;
846
853
  short_title?: string | null;
@@ -853,6 +860,7 @@ export interface CreateTicketRequestBody {
853
860
  user_note_id?: string | null;
854
861
  estimated_start_date?: string | null;
855
862
  estimated_completion_date?: string | null;
863
+ icon?: TicketIcon;
856
864
  }
857
865
  export declare enum ReleaseStatus {
858
866
  pending = "pending",
@@ -900,6 +908,7 @@ export interface TicketStub {
900
908
  user_note_id?: string | null;
901
909
  estimated_start_date?: string | null;
902
910
  estimated_completion_date?: string | null;
911
+ icon?: TicketIcon;
903
912
  ticket_number: string;
904
913
  tenant_id: string;
905
914
  vote_count: number;
@@ -921,6 +930,7 @@ export interface Ticket {
921
930
  user_note_id?: string | null;
922
931
  estimated_start_date?: string | null;
923
932
  estimated_completion_date?: string | null;
933
+ icon?: TicketIcon;
924
934
  ticket_number: string;
925
935
  tenant_id: string;
926
936
  vote_count: number;
@@ -993,6 +1003,7 @@ export interface UpdateTicketRequestBody {
993
1003
  is_public?: boolean;
994
1004
  estimated_start_date?: string | null;
995
1005
  estimated_completion_date?: string | null;
1006
+ icon?: TicketIcon;
996
1007
  }
997
1008
  export interface BulkUpdateTicketsRequestBody {
998
1009
  release_id?: string;
@@ -1006,6 +1017,7 @@ export interface BulkUpdateTicketsRequestBody {
1006
1017
  is_public?: boolean;
1007
1018
  estimated_start_date?: string | null;
1008
1019
  estimated_completion_date?: string | null;
1020
+ icon?: TicketIcon;
1009
1021
  ticket_ids?: Array<string>;
1010
1022
  }
1011
1023
  export interface UpdateReleaseForTicketRequestBody {
package/dist/ParraAPI.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.IntegrationScope = exports.IntegrationConnectionStatus = exports.IntegrationType = exports.ConnectedAppConnectionStatus = exports.ConnectedAppType = exports.ApnsPushType = exports.ApnsEnvironment = exports.ChannelType = exports.ApplicationType = exports.AppVersionStatus = exports.TicketDisplayStatus = exports.UserNoteStatus = exports.ReleaseType = exports.ReleaseStatus = exports.TicketPriority = exports.TicketStatus = exports.TicketType = exports.TemplateType = exports.CampaignStatus = exports.CampaignActionDisplayType = exports.CampaignActionType = exports.CardItemDisplayType = exports.CardItemType = exports.QuestionKind = exports.QuestionType = exports.FeedbackFormFieldType = exports.SubscriptionStatus = exports.Currency = exports.Interval = void 0;
3
+ exports.IntegrationScope = exports.IntegrationConnectionStatus = exports.IntegrationType = exports.ConnectedAppConnectionStatus = exports.ConnectedAppType = exports.ApnsPushType = exports.ApnsEnvironment = exports.ChannelType = exports.ApplicationType = exports.AppVersionStatus = exports.TicketDisplayStatus = exports.UserNoteStatus = exports.ReleaseType = exports.ReleaseStatus = exports.TicketIconType = exports.TicketPriority = exports.TicketStatus = exports.TicketType = exports.TemplateType = exports.CampaignStatus = exports.CampaignActionDisplayType = exports.CampaignActionType = exports.CardItemDisplayType = exports.CardItemType = exports.QuestionKind = exports.QuestionType = exports.FeedbackFormFieldType = exports.SubscriptionStatus = exports.Currency = exports.Interval = void 0;
4
4
  var Interval;
5
5
  (function (Interval) {
6
6
  Interval["monthly"] = "monthly";
@@ -105,6 +105,10 @@ var TicketPriority;
105
105
  TicketPriority["high"] = "high";
106
106
  TicketPriority["urgent"] = "urgent";
107
107
  })(TicketPriority || (exports.TicketPriority = TicketPriority = {}));
108
+ var TicketIconType;
109
+ (function (TicketIconType) {
110
+ TicketIconType["emoji"] = "emoji";
111
+ })(TicketIconType || (exports.TicketIconType = TicketIconType = {}));
108
112
  var ReleaseStatus;
109
113
  (function (ReleaseStatus) {
110
114
  ReleaseStatus["pending"] = "pending";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.93",
3
+ "version": "0.3.95",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",