@parra/parra-js-sdk 0.3.57 → 0.3.59
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 +5 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1365,7 +1365,11 @@ export interface TenantConnectedApp {
|
|
|
1365
1365
|
export interface CreateSlackConnectedAppConnectionRequestBody {
|
|
1366
1366
|
code: string;
|
|
1367
1367
|
}
|
|
1368
|
-
export
|
|
1368
|
+
export interface CreateXConnectedAppConnectionRequestBody {
|
|
1369
|
+
code: string;
|
|
1370
|
+
code_verifier: string;
|
|
1371
|
+
}
|
|
1372
|
+
export type CreateConnectedAppConnectionRequestBody = CreateSlackConnectedAppConnectionRequestBody | CreateXConnectedAppConnectionRequestBody;
|
|
1369
1373
|
export interface TenantInvitationRequestBody {
|
|
1370
1374
|
name: string;
|
|
1371
1375
|
email: string;
|