@parra/parra-js-sdk 0.3.68 → 0.3.70

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.
@@ -1330,6 +1330,13 @@ export declare enum ConnectedAppConnectionStatus {
1330
1330
  error = "error",
1331
1331
  disabled = "disabled"
1332
1332
  }
1333
+ export interface ConnectedAppSlackConnectionData {
1334
+ team_name: string;
1335
+ team_id: string;
1336
+ app_id: string;
1337
+ user_id: string;
1338
+ }
1339
+ export type ConnectedAppConnectionData = ConnectedAppSlackConnectionData;
1333
1340
  export interface ConnectedAppConnection {
1334
1341
  id: string;
1335
1342
  created_at: string;
@@ -1339,6 +1346,7 @@ export interface ConnectedAppConnection {
1339
1346
  active: boolean;
1340
1347
  type: ConnectedAppType;
1341
1348
  status: ConnectedAppConnectionStatus;
1349
+ data?: ConnectedAppConnectionData;
1342
1350
  }
1343
1351
  export interface ConnectedAppLink {
1344
1352
  title: string;
@@ -1434,7 +1442,6 @@ export interface CreateSlackFeedbackFormIntegrationConnectionRequestBody {
1434
1442
  }
1435
1443
  export interface CreateParraFeedbackFormBoardIntegrationConnectionRequestBody {
1436
1444
  form_id: string;
1437
- board_id: string;
1438
1445
  ticket_title: string;
1439
1446
  ticket_description?: string | null;
1440
1447
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.68",
3
+ "version": "0.3.70",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",