@parra/parra-js-sdk 0.3.81 → 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 +7 -1
- 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;
|