@parra/parra-js-sdk 0.3.85 → 0.3.86
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 +19 -15
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1384,16 +1384,6 @@ export declare enum IntegrationConnectionStatus {
|
|
|
1384
1384
|
error = "error",
|
|
1385
1385
|
disabled = "disabled"
|
|
1386
1386
|
}
|
|
1387
|
-
export interface UpdateSlackReleaseCollectionIntegrationConnectionData {
|
|
1388
|
-
connected_app_connection_id: string;
|
|
1389
|
-
channel: string;
|
|
1390
|
-
message: string;
|
|
1391
|
-
}
|
|
1392
|
-
export interface SlackReleaseCollectionIntegrationConnectionData {
|
|
1393
|
-
connected_app_connection_id: string;
|
|
1394
|
-
channel: string;
|
|
1395
|
-
message: string;
|
|
1396
|
-
}
|
|
1397
1387
|
export interface UpdateSlackFeedbackFormIntegrationConnectionData {
|
|
1398
1388
|
connected_app_connection_id: string;
|
|
1399
1389
|
channel: string;
|
|
@@ -1414,7 +1404,25 @@ export interface ParraFeedbackFormBoardIntegrationConnectionData {
|
|
|
1414
1404
|
ticket_description?: string | null;
|
|
1415
1405
|
form_id: string;
|
|
1416
1406
|
}
|
|
1417
|
-
export
|
|
1407
|
+
export interface UpdateSlackReleaseCollectionIntegrationConnectionData {
|
|
1408
|
+
connected_app_connection_id: string;
|
|
1409
|
+
channel: string;
|
|
1410
|
+
message: string;
|
|
1411
|
+
}
|
|
1412
|
+
export interface SlackReleaseCollectionIntegrationConnectionData {
|
|
1413
|
+
connected_app_connection_id: string;
|
|
1414
|
+
channel: string;
|
|
1415
|
+
message: string;
|
|
1416
|
+
}
|
|
1417
|
+
export interface UpdateXReleaseCollectionIntegrationConnectionData {
|
|
1418
|
+
connected_app_connection_id: string;
|
|
1419
|
+
text: string;
|
|
1420
|
+
}
|
|
1421
|
+
export interface XReleaseCollectionIntegrationConnectionData {
|
|
1422
|
+
connected_app_connection_id: string;
|
|
1423
|
+
text: string;
|
|
1424
|
+
}
|
|
1425
|
+
export type IntegrationConnectionData = SlackFeedbackFormIntegrationConnectionData | ParraFeedbackFormBoardIntegrationConnectionData | SlackReleaseCollectionIntegrationConnectionData | XReleaseCollectionIntegrationConnectionData;
|
|
1418
1426
|
export interface IntegrationConnection {
|
|
1419
1427
|
id: string;
|
|
1420
1428
|
created_at: string;
|
|
@@ -1456,10 +1464,6 @@ export interface TenantIntegration {
|
|
|
1456
1464
|
export interface UpdateIntegrationConnectionRequestBody {
|
|
1457
1465
|
active?: boolean;
|
|
1458
1466
|
}
|
|
1459
|
-
export interface UpdateXReleaseCollectionIntegrationConnectionData {
|
|
1460
|
-
connected_app_connection_id: string;
|
|
1461
|
-
text: string;
|
|
1462
|
-
}
|
|
1463
1467
|
export type UpdateIntegrationConnectionDataRequestBody = UpdateSlackFeedbackFormIntegrationConnectionData | UpdateParraFeedbackFormBoardIntegrationConnectionData | UpdateSlackReleaseCollectionIntegrationConnectionData | UpdateXReleaseCollectionIntegrationConnectionData;
|
|
1464
1468
|
export interface CreateIntegrationConnectionRequestBody {
|
|
1465
1469
|
}
|