@parra/parra-js-sdk 0.3.65 → 0.3.67
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 +2 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -1427,6 +1427,7 @@ export interface UpdateIntegrationConnectionRequestBody {
|
|
|
1427
1427
|
active?: boolean;
|
|
1428
1428
|
}
|
|
1429
1429
|
export interface CreateSlackFeedbackFormIntegrationConnectionRequestBody {
|
|
1430
|
+
form_id: string;
|
|
1430
1431
|
connected_app_connection_id: string;
|
|
1431
1432
|
channel: string;
|
|
1432
1433
|
message: string;
|
|
@@ -1435,7 +1436,7 @@ export interface CreateParraFeedbackFormBoardIntegrationConnectionRequestBody {
|
|
|
1435
1436
|
form_id: string;
|
|
1436
1437
|
board_id: string;
|
|
1437
1438
|
ticket_title: string;
|
|
1438
|
-
ticket_description?: string;
|
|
1439
|
+
ticket_description?: string | null;
|
|
1439
1440
|
}
|
|
1440
1441
|
export type CreateIntegrationConnectionRequestBody = CreateSlackFeedbackFormIntegrationConnectionRequestBody | CreateParraFeedbackFormBoardIntegrationConnectionRequestBody;
|
|
1441
1442
|
export interface TenantInvitationRequestBody {
|