@parra/parra-js-sdk 0.3.79 → 0.3.81
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 +15 -3
- package/dist/ParraAPI.js +2 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1370,7 +1370,9 @@ export interface CreateXConnectedAppConnectionRequestBody {
|
|
|
1370
1370
|
export type CreateConnectedAppConnectionRequestBody = CreateSlackConnectedAppConnectionRequestBody | CreateXConnectedAppConnectionRequestBody;
|
|
1371
1371
|
export declare enum IntegrationType {
|
|
1372
1372
|
parraFeedbackFormBoard = "parra-feedback-form-board",
|
|
1373
|
-
slackFeedbackForm = "slack-feedback-form"
|
|
1373
|
+
slackFeedbackForm = "slack-feedback-form",
|
|
1374
|
+
slackReleaseCollection = "slack-release-collection",
|
|
1375
|
+
xReleaseCollection = "x-release-collection"
|
|
1374
1376
|
}
|
|
1375
1377
|
export declare enum IntegrationConnectionStatus {
|
|
1376
1378
|
pending = "pending",
|
|
@@ -1378,6 +1380,16 @@ export declare enum IntegrationConnectionStatus {
|
|
|
1378
1380
|
error = "error",
|
|
1379
1381
|
disabled = "disabled"
|
|
1380
1382
|
}
|
|
1383
|
+
export interface UpdateSlackReleaseCollectionIntegrationConnectionData {
|
|
1384
|
+
connected_app_connection_id: string;
|
|
1385
|
+
channel: string;
|
|
1386
|
+
message: string;
|
|
1387
|
+
}
|
|
1388
|
+
export interface SlackReleaseCollectionIntegrationConnectionData {
|
|
1389
|
+
connected_app_connection_id: string;
|
|
1390
|
+
channel: string;
|
|
1391
|
+
message: string;
|
|
1392
|
+
}
|
|
1381
1393
|
export interface UpdateSlackFeedbackFormIntegrationConnectionData {
|
|
1382
1394
|
connected_app_connection_id: string;
|
|
1383
1395
|
channel: string;
|
|
@@ -1398,7 +1410,7 @@ export interface ParraFeedbackFormBoardIntegrationConnectionData {
|
|
|
1398
1410
|
ticket_description?: string | null;
|
|
1399
1411
|
form_id: string;
|
|
1400
1412
|
}
|
|
1401
|
-
export type IntegrationConnectionData = SlackFeedbackFormIntegrationConnectionData | ParraFeedbackFormBoardIntegrationConnectionData;
|
|
1413
|
+
export type IntegrationConnectionData = SlackReleaseCollectionIntegrationConnectionData | SlackFeedbackFormIntegrationConnectionData | ParraFeedbackFormBoardIntegrationConnectionData;
|
|
1402
1414
|
export interface IntegrationConnection {
|
|
1403
1415
|
id: string;
|
|
1404
1416
|
created_at: string;
|
|
@@ -1440,7 +1452,7 @@ export interface TenantIntegration {
|
|
|
1440
1452
|
export interface UpdateIntegrationConnectionRequestBody {
|
|
1441
1453
|
active?: boolean;
|
|
1442
1454
|
}
|
|
1443
|
-
export type UpdateIntegrationConnectionDataRequestBody = UpdateSlackFeedbackFormIntegrationConnectionData | UpdateParraFeedbackFormBoardIntegrationConnectionData;
|
|
1455
|
+
export type UpdateIntegrationConnectionDataRequestBody = UpdateSlackReleaseCollectionIntegrationConnectionData | UpdateSlackFeedbackFormIntegrationConnectionData | UpdateParraFeedbackFormBoardIntegrationConnectionData;
|
|
1444
1456
|
export interface CreateIntegrationConnectionRequestBody {
|
|
1445
1457
|
}
|
|
1446
1458
|
export interface TenantInvitationRequestBody {
|
package/dist/ParraAPI.js
CHANGED
|
@@ -182,6 +182,8 @@ var IntegrationType;
|
|
|
182
182
|
(function (IntegrationType) {
|
|
183
183
|
IntegrationType["parraFeedbackFormBoard"] = "parra-feedback-form-board";
|
|
184
184
|
IntegrationType["slackFeedbackForm"] = "slack-feedback-form";
|
|
185
|
+
IntegrationType["slackReleaseCollection"] = "slack-release-collection";
|
|
186
|
+
IntegrationType["xReleaseCollection"] = "x-release-collection";
|
|
185
187
|
})(IntegrationType || (exports.IntegrationType = IntegrationType = {}));
|
|
186
188
|
var IntegrationConnectionStatus;
|
|
187
189
|
(function (IntegrationConnectionStatus) {
|