@parra/parra-js-sdk 0.3.69 → 0.3.71
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 +8 -0
- package/package.json +5 -5
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@parra/parra-js-sdk",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.71",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -18,11 +18,11 @@
|
|
|
18
18
|
"author": "Parra",
|
|
19
19
|
"license": "ISC",
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@types/node": "^20.
|
|
22
|
-
"prettier": "^3.
|
|
23
|
-
"typescript": "^5.
|
|
21
|
+
"@types/node": "^20.11.25",
|
|
22
|
+
"prettier": "^3.2.5",
|
|
23
|
+
"typescript": "^5.4.2"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@parra/http-client": "0.5.
|
|
26
|
+
"@parra/http-client": "0.5.6"
|
|
27
27
|
}
|
|
28
28
|
}
|