@parra/parra-js-sdk 0.3.80 → 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 +12 -2
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1380,6 +1380,16 @@ export declare enum IntegrationConnectionStatus {
|
|
|
1380
1380
|
error = "error",
|
|
1381
1381
|
disabled = "disabled"
|
|
1382
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
|
+
}
|
|
1383
1393
|
export interface UpdateSlackFeedbackFormIntegrationConnectionData {
|
|
1384
1394
|
connected_app_connection_id: string;
|
|
1385
1395
|
channel: string;
|
|
@@ -1400,7 +1410,7 @@ export interface ParraFeedbackFormBoardIntegrationConnectionData {
|
|
|
1400
1410
|
ticket_description?: string | null;
|
|
1401
1411
|
form_id: string;
|
|
1402
1412
|
}
|
|
1403
|
-
export type IntegrationConnectionData = SlackFeedbackFormIntegrationConnectionData | ParraFeedbackFormBoardIntegrationConnectionData;
|
|
1413
|
+
export type IntegrationConnectionData = SlackReleaseCollectionIntegrationConnectionData | SlackFeedbackFormIntegrationConnectionData | ParraFeedbackFormBoardIntegrationConnectionData;
|
|
1404
1414
|
export interface IntegrationConnection {
|
|
1405
1415
|
id: string;
|
|
1406
1416
|
created_at: string;
|
|
@@ -1442,7 +1452,7 @@ export interface TenantIntegration {
|
|
|
1442
1452
|
export interface UpdateIntegrationConnectionRequestBody {
|
|
1443
1453
|
active?: boolean;
|
|
1444
1454
|
}
|
|
1445
|
-
export type UpdateIntegrationConnectionDataRequestBody = UpdateSlackFeedbackFormIntegrationConnectionData | UpdateParraFeedbackFormBoardIntegrationConnectionData;
|
|
1455
|
+
export type UpdateIntegrationConnectionDataRequestBody = UpdateSlackReleaseCollectionIntegrationConnectionData | UpdateSlackFeedbackFormIntegrationConnectionData | UpdateParraFeedbackFormBoardIntegrationConnectionData;
|
|
1446
1456
|
export interface CreateIntegrationConnectionRequestBody {
|
|
1447
1457
|
}
|
|
1448
1458
|
export interface TenantInvitationRequestBody {
|