@parra/parra-js-sdk 0.3.395 → 0.3.397
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/ParraAPI.d.ts +30 -4
- package/dist/ParraAPI.js +3 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -3562,6 +3562,9 @@ export declare enum IntegrationType {
|
|
3562
3562
|
parraFeedbackFormBoard = "parra-feedback-form-board",
|
3563
3563
|
slackFeedbackForm = "slack-feedback-form",
|
3564
3564
|
slackReleaseCollection = "slack-release-collection",
|
3565
|
+
slackCommentReview = "slack-comment-review",
|
3566
|
+
youtubeVideoFeed = "youtube-video-feed",
|
3567
|
+
youtubeVideoFeedItemNotification = "youtube-video-feed-item-notification",
|
3565
3568
|
xReleaseCollection = "x-release-collection"
|
3566
3569
|
}
|
3567
3570
|
export declare enum IntegrationConnectionStatus {
|
@@ -3600,6 +3603,30 @@ export interface SlackReleaseCollectionIntegrationConnectionData {
|
|
3600
3603
|
channel: string;
|
3601
3604
|
message: string;
|
3602
3605
|
}
|
3606
|
+
export interface UpdateSlackCommentReviewIntegrationConnectionData {
|
3607
|
+
connected_app_connection_id: string;
|
3608
|
+
channel: string;
|
3609
|
+
}
|
3610
|
+
export interface SlackCommentReviewIntegrationConnectionData {
|
3611
|
+
connected_app_connection_id: string;
|
3612
|
+
channel: string;
|
3613
|
+
}
|
3614
|
+
export interface UpdateYoutubeVideoFeedIntegrationConnectionData {
|
3615
|
+
connected_app_connection_id: string;
|
3616
|
+
youtube_channel_id: string;
|
3617
|
+
}
|
3618
|
+
export interface YoutubeVideoFeedIntegrationConnectionData {
|
3619
|
+
connected_app_connection_id: string;
|
3620
|
+
youtube_channel_id: string;
|
3621
|
+
}
|
3622
|
+
export interface UpdateYoutubeVideoFeedItemNotificationIntegrationConnectionData {
|
3623
|
+
connected_app_connection_id: string;
|
3624
|
+
feed_id: string;
|
3625
|
+
}
|
3626
|
+
export interface YoutubeVideoFeedItemNotificationIntegrationConnectionData {
|
3627
|
+
connected_app_connection_id: string;
|
3628
|
+
feed_id: string;
|
3629
|
+
}
|
3603
3630
|
export interface UpdateXReleaseCollectionIntegrationConnectionData {
|
3604
3631
|
connected_app_connection_id: string;
|
3605
3632
|
text: string;
|
@@ -3608,7 +3635,7 @@ export interface XReleaseCollectionIntegrationConnectionData {
|
|
3608
3635
|
connected_app_connection_id: string;
|
3609
3636
|
text: string;
|
3610
3637
|
}
|
3611
|
-
export type IntegrationConnectionData = SlackFeedbackFormIntegrationConnectionData | ParraFeedbackFormBoardIntegrationConnectionData | SlackReleaseCollectionIntegrationConnectionData | XReleaseCollectionIntegrationConnectionData;
|
3638
|
+
export type IntegrationConnectionData = SlackFeedbackFormIntegrationConnectionData | ParraFeedbackFormBoardIntegrationConnectionData | SlackReleaseCollectionIntegrationConnectionData | SlackCommentReviewIntegrationConnectionData | YoutubeVideoFeedIntegrationConnectionData | YoutubeVideoFeedItemNotificationIntegrationConnectionData | XReleaseCollectionIntegrationConnectionData;
|
3612
3639
|
export interface IntegrationConnection {
|
3613
3640
|
id: string;
|
3614
3641
|
created_at: string;
|
@@ -3650,9 +3677,8 @@ export interface TenantIntegration {
|
|
3650
3677
|
export interface UpdateIntegrationConnectionRequestBody {
|
3651
3678
|
active?: boolean;
|
3652
3679
|
}
|
3653
|
-
export type UpdateIntegrationConnectionDataRequestBody = UpdateSlackFeedbackFormIntegrationConnectionData | UpdateParraFeedbackFormBoardIntegrationConnectionData | UpdateSlackReleaseCollectionIntegrationConnectionData | UpdateXReleaseCollectionIntegrationConnectionData;
|
3654
|
-
export
|
3655
|
-
}
|
3680
|
+
export type UpdateIntegrationConnectionDataRequestBody = UpdateSlackFeedbackFormIntegrationConnectionData | UpdateParraFeedbackFormBoardIntegrationConnectionData | UpdateSlackReleaseCollectionIntegrationConnectionData | UpdateSlackCommentReviewIntegrationConnectionData | UpdateYoutubeVideoFeedIntegrationConnectionData | UpdateYoutubeVideoFeedItemNotificationIntegrationConnectionData | UpdateXReleaseCollectionIntegrationConnectionData;
|
3681
|
+
export type CreateIntegrationConnectionRequestBody = SlackFeedbackFormIntegrationConnectionData | ParraFeedbackFormBoardIntegrationConnectionData | SlackReleaseCollectionIntegrationConnectionData | SlackCommentReviewIntegrationConnectionData | YoutubeVideoFeedIntegrationConnectionData | YoutubeVideoFeedItemNotificationIntegrationConnectionData | XReleaseCollectionIntegrationConnectionData;
|
3656
3682
|
export interface TenantInvitationRequestBody {
|
3657
3683
|
name: string;
|
3658
3684
|
email: string;
|
package/dist/ParraAPI.js
CHANGED
@@ -359,6 +359,9 @@ var IntegrationType;
|
|
359
359
|
IntegrationType["parraFeedbackFormBoard"] = "parra-feedback-form-board";
|
360
360
|
IntegrationType["slackFeedbackForm"] = "slack-feedback-form";
|
361
361
|
IntegrationType["slackReleaseCollection"] = "slack-release-collection";
|
362
|
+
IntegrationType["slackCommentReview"] = "slack-comment-review";
|
363
|
+
IntegrationType["youtubeVideoFeed"] = "youtube-video-feed";
|
364
|
+
IntegrationType["youtubeVideoFeedItemNotification"] = "youtube-video-feed-item-notification";
|
362
365
|
IntegrationType["xReleaseCollection"] = "x-release-collection";
|
363
366
|
})(IntegrationType || (exports.IntegrationType = IntegrationType = {}));
|
364
367
|
var IntegrationConnectionStatus;
|