@parra/parra-js-sdk 0.3.50 → 0.3.52
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 +11 -0
- package/dist/ParraAPI.js +8 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -830,10 +830,17 @@ export declare enum TicketStatus {
|
|
|
830
830
|
closed = "closed",
|
|
831
831
|
archived = "archived"
|
|
832
832
|
}
|
|
833
|
+
export declare enum TicketPriority {
|
|
834
|
+
low = "low",
|
|
835
|
+
medium = "medium",
|
|
836
|
+
high = "high",
|
|
837
|
+
urgent = "urgent"
|
|
838
|
+
}
|
|
833
839
|
export interface CreateTicketRequestBody {
|
|
834
840
|
title: string;
|
|
835
841
|
type: TicketType;
|
|
836
842
|
status: TicketStatus;
|
|
843
|
+
priority?: TicketPriority | null;
|
|
837
844
|
description?: string | null;
|
|
838
845
|
voting_enabled: boolean;
|
|
839
846
|
is_public: boolean;
|
|
@@ -877,6 +884,7 @@ export interface TicketStub {
|
|
|
877
884
|
title: string;
|
|
878
885
|
type: TicketType;
|
|
879
886
|
status: TicketStatus;
|
|
887
|
+
priority?: TicketPriority | null;
|
|
880
888
|
description?: string | null;
|
|
881
889
|
voting_enabled: boolean;
|
|
882
890
|
is_public: boolean;
|
|
@@ -893,6 +901,7 @@ export interface Ticket {
|
|
|
893
901
|
title: string;
|
|
894
902
|
type: TicketType;
|
|
895
903
|
status: TicketStatus;
|
|
904
|
+
priority?: TicketPriority | null;
|
|
896
905
|
description?: string | null;
|
|
897
906
|
voting_enabled: boolean;
|
|
898
907
|
is_public: boolean;
|
|
@@ -952,9 +961,11 @@ export interface LinkUserNoteRequestBody {
|
|
|
952
961
|
ticket_id: string;
|
|
953
962
|
}
|
|
954
963
|
export interface UpdateTicketRequestBody {
|
|
964
|
+
release_id?: string;
|
|
955
965
|
title?: string;
|
|
956
966
|
type?: TicketType;
|
|
957
967
|
status?: TicketStatus;
|
|
968
|
+
priority?: TicketPriority | null;
|
|
958
969
|
description?: string | null;
|
|
959
970
|
voting_enabled?: boolean;
|
|
960
971
|
is_public?: boolean;
|
package/dist/ParraAPI.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ApnsPushType = exports.ApnsEnvironment = exports.ChannelType = exports.ApplicationType = exports.AppVersionStatus = exports.TicketDisplayStatus = exports.UserNoteStatus = exports.ReleaseType = exports.ReleaseStatus = exports.TicketStatus = exports.TicketType = exports.TemplateType = exports.CampaignStatus = exports.CampaignActionDisplayType = exports.CampaignActionType = exports.FormIntegrationType = exports.CardItemDisplayType = exports.CardItemType = exports.QuestionKind = exports.QuestionType = exports.FeedbackFormFieldType = exports.SubscriptionStatus = exports.Currency = exports.Interval = void 0;
|
|
3
|
+
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.FormIntegrationType = 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";
|
|
@@ -102,6 +102,13 @@ var TicketStatus;
|
|
|
102
102
|
TicketStatus["closed"] = "closed";
|
|
103
103
|
TicketStatus["archived"] = "archived";
|
|
104
104
|
})(TicketStatus || (exports.TicketStatus = TicketStatus = {}));
|
|
105
|
+
var TicketPriority;
|
|
106
|
+
(function (TicketPriority) {
|
|
107
|
+
TicketPriority["low"] = "low";
|
|
108
|
+
TicketPriority["medium"] = "medium";
|
|
109
|
+
TicketPriority["high"] = "high";
|
|
110
|
+
TicketPriority["urgent"] = "urgent";
|
|
111
|
+
})(TicketPriority || (exports.TicketPriority = TicketPriority = {}));
|
|
105
112
|
var ReleaseStatus;
|
|
106
113
|
(function (ReleaseStatus) {
|
|
107
114
|
ReleaseStatus["pending"] = "pending";
|