@parra/parra-js-sdk 0.3.80 → 0.3.82
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 -3
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1319,7 +1319,13 @@ export interface ConnectedAppSlackConnectionData {
|
|
|
1319
1319
|
app_id: string;
|
|
1320
1320
|
user_id: string;
|
|
1321
1321
|
}
|
|
1322
|
-
export
|
|
1322
|
+
export interface ConnectedAppXConnectionData {
|
|
1323
|
+
team_name: string;
|
|
1324
|
+
team_id: string;
|
|
1325
|
+
app_id: string;
|
|
1326
|
+
user_id: string;
|
|
1327
|
+
}
|
|
1328
|
+
export type ConnectedAppConnectionData = ConnectedAppSlackConnectionData | ConnectedAppXConnectionData;
|
|
1323
1329
|
export interface ConnectedAppConnection {
|
|
1324
1330
|
id: string;
|
|
1325
1331
|
created_at: string;
|
|
@@ -1380,6 +1386,16 @@ export declare enum IntegrationConnectionStatus {
|
|
|
1380
1386
|
error = "error",
|
|
1381
1387
|
disabled = "disabled"
|
|
1382
1388
|
}
|
|
1389
|
+
export interface UpdateSlackReleaseCollectionIntegrationConnectionData {
|
|
1390
|
+
connected_app_connection_id: string;
|
|
1391
|
+
channel: string;
|
|
1392
|
+
message: string;
|
|
1393
|
+
}
|
|
1394
|
+
export interface SlackReleaseCollectionIntegrationConnectionData {
|
|
1395
|
+
connected_app_connection_id: string;
|
|
1396
|
+
channel: string;
|
|
1397
|
+
message: string;
|
|
1398
|
+
}
|
|
1383
1399
|
export interface UpdateSlackFeedbackFormIntegrationConnectionData {
|
|
1384
1400
|
connected_app_connection_id: string;
|
|
1385
1401
|
channel: string;
|
|
@@ -1400,7 +1416,7 @@ export interface ParraFeedbackFormBoardIntegrationConnectionData {
|
|
|
1400
1416
|
ticket_description?: string | null;
|
|
1401
1417
|
form_id: string;
|
|
1402
1418
|
}
|
|
1403
|
-
export type IntegrationConnectionData = SlackFeedbackFormIntegrationConnectionData | ParraFeedbackFormBoardIntegrationConnectionData;
|
|
1419
|
+
export type IntegrationConnectionData = SlackReleaseCollectionIntegrationConnectionData | SlackFeedbackFormIntegrationConnectionData | ParraFeedbackFormBoardIntegrationConnectionData;
|
|
1404
1420
|
export interface IntegrationConnection {
|
|
1405
1421
|
id: string;
|
|
1406
1422
|
created_at: string;
|
|
@@ -1442,7 +1458,7 @@ export interface TenantIntegration {
|
|
|
1442
1458
|
export interface UpdateIntegrationConnectionRequestBody {
|
|
1443
1459
|
active?: boolean;
|
|
1444
1460
|
}
|
|
1445
|
-
export type UpdateIntegrationConnectionDataRequestBody = UpdateSlackFeedbackFormIntegrationConnectionData | UpdateParraFeedbackFormBoardIntegrationConnectionData;
|
|
1461
|
+
export type UpdateIntegrationConnectionDataRequestBody = UpdateSlackReleaseCollectionIntegrationConnectionData | UpdateSlackFeedbackFormIntegrationConnectionData | UpdateParraFeedbackFormBoardIntegrationConnectionData;
|
|
1446
1462
|
export interface CreateIntegrationConnectionRequestBody {
|
|
1447
1463
|
}
|
|
1448
1464
|
export interface TenantInvitationRequestBody {
|