@parra/parra-js-sdk 0.3.401 → 0.3.403
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 +11 -12
- package/dist/ParraAPI.js +1 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -3560,11 +3560,11 @@ export interface CreateXConnectedAppConnectionRequestBody {
|
|
|
3560
3560
|
export type CreateConnectedAppConnectionRequestBody = CreateAppStoreConnectConnectedAppConnectionRequestBody | CreateApnsConnectedAppConnectionRequestBody | CreateResendConnectedAppConnectionRequestBody | CreateSendgridConnectedAppConnectionRequestBody | CreateSlackConnectedAppConnectionRequestBody | CreateYoutubeConnectedAppConnectionRequestBody | CreateTwilioConnectedAppConnectionRequestBody | CreateXConnectedAppConnectionRequestBody;
|
|
3561
3561
|
export declare enum IntegrationType {
|
|
3562
3562
|
parraFeedbackFormBoard = "parra-feedback-form-board",
|
|
3563
|
+
parraFeedItemVideoNotification = "parra-feed-item-video-notification",
|
|
3563
3564
|
slackFeedbackForm = "slack-feedback-form",
|
|
3564
3565
|
slackReleaseCollection = "slack-release-collection",
|
|
3565
3566
|
slackCommentReview = "slack-comment-review",
|
|
3566
3567
|
youtubeVideoFeed = "youtube-video-feed",
|
|
3567
|
-
youtubeVideoFeedItemNotification = "youtube-video-feed-item-notification",
|
|
3568
3568
|
xReleaseCollection = "x-release-collection"
|
|
3569
3569
|
}
|
|
3570
3570
|
export declare enum IntegrationConnectionStatus {
|
|
@@ -3593,6 +3593,13 @@ export interface ParraFeedbackFormBoardIntegrationConnectionData {
|
|
|
3593
3593
|
ticket_description?: string | null;
|
|
3594
3594
|
form_id: string;
|
|
3595
3595
|
}
|
|
3596
|
+
export interface UpdateParraFeedItemVideoNotificationIntegrationConnectionData {
|
|
3597
|
+
notification_template_id: string;
|
|
3598
|
+
}
|
|
3599
|
+
export interface ParraFeedItemVideoNotificationIntegrationConnectionData {
|
|
3600
|
+
notification_template_id: string;
|
|
3601
|
+
feed_id: string;
|
|
3602
|
+
}
|
|
3596
3603
|
export interface UpdateSlackReleaseCollectionIntegrationConnectionData {
|
|
3597
3604
|
connected_app_connection_id: string;
|
|
3598
3605
|
channel: string;
|
|
@@ -3619,14 +3626,6 @@ export interface YoutubeVideoFeedIntegrationConnectionData {
|
|
|
3619
3626
|
connected_app_connection_id: string;
|
|
3620
3627
|
youtube_channel_id: string;
|
|
3621
3628
|
}
|
|
3622
|
-
export interface UpdateYoutubeVideoFeedItemNotificationIntegrationConnectionData {
|
|
3623
|
-
feed_id: string;
|
|
3624
|
-
notification_template_id: string;
|
|
3625
|
-
}
|
|
3626
|
-
export interface YoutubeVideoFeedItemNotificationIntegrationConnectionData {
|
|
3627
|
-
feed_id: string;
|
|
3628
|
-
notification_template_id: string;
|
|
3629
|
-
}
|
|
3630
3629
|
export interface UpdateXReleaseCollectionIntegrationConnectionData {
|
|
3631
3630
|
connected_app_connection_id: string;
|
|
3632
3631
|
text: string;
|
|
@@ -3635,7 +3634,7 @@ export interface XReleaseCollectionIntegrationConnectionData {
|
|
|
3635
3634
|
connected_app_connection_id: string;
|
|
3636
3635
|
text: string;
|
|
3637
3636
|
}
|
|
3638
|
-
export type IntegrationConnectionData = SlackFeedbackFormIntegrationConnectionData | ParraFeedbackFormBoardIntegrationConnectionData | SlackReleaseCollectionIntegrationConnectionData | SlackCommentReviewIntegrationConnectionData | YoutubeVideoFeedIntegrationConnectionData |
|
|
3637
|
+
export type IntegrationConnectionData = SlackFeedbackFormIntegrationConnectionData | ParraFeedbackFormBoardIntegrationConnectionData | ParraFeedItemVideoNotificationIntegrationConnectionData | SlackReleaseCollectionIntegrationConnectionData | SlackCommentReviewIntegrationConnectionData | YoutubeVideoFeedIntegrationConnectionData | XReleaseCollectionIntegrationConnectionData;
|
|
3639
3638
|
export interface IntegrationConnection {
|
|
3640
3639
|
id: string;
|
|
3641
3640
|
created_at: string;
|
|
@@ -3677,8 +3676,8 @@ export interface TenantIntegration {
|
|
|
3677
3676
|
export interface UpdateIntegrationConnectionRequestBody {
|
|
3678
3677
|
active?: boolean;
|
|
3679
3678
|
}
|
|
3680
|
-
export type UpdateIntegrationConnectionDataRequestBody = UpdateSlackFeedbackFormIntegrationConnectionData | UpdateParraFeedbackFormBoardIntegrationConnectionData | UpdateSlackReleaseCollectionIntegrationConnectionData | UpdateSlackCommentReviewIntegrationConnectionData | UpdateYoutubeVideoFeedIntegrationConnectionData |
|
|
3681
|
-
export type CreateIntegrationConnectionRequestBody = SlackFeedbackFormIntegrationConnectionData | ParraFeedbackFormBoardIntegrationConnectionData | SlackReleaseCollectionIntegrationConnectionData | SlackCommentReviewIntegrationConnectionData | YoutubeVideoFeedIntegrationConnectionData |
|
|
3679
|
+
export type UpdateIntegrationConnectionDataRequestBody = UpdateSlackFeedbackFormIntegrationConnectionData | UpdateParraFeedbackFormBoardIntegrationConnectionData | UpdateParraFeedItemVideoNotificationIntegrationConnectionData | UpdateSlackReleaseCollectionIntegrationConnectionData | UpdateSlackCommentReviewIntegrationConnectionData | UpdateYoutubeVideoFeedIntegrationConnectionData | UpdateXReleaseCollectionIntegrationConnectionData;
|
|
3680
|
+
export type CreateIntegrationConnectionRequestBody = SlackFeedbackFormIntegrationConnectionData | ParraFeedbackFormBoardIntegrationConnectionData | ParraFeedItemVideoNotificationIntegrationConnectionData | SlackReleaseCollectionIntegrationConnectionData | SlackCommentReviewIntegrationConnectionData | YoutubeVideoFeedIntegrationConnectionData | XReleaseCollectionIntegrationConnectionData;
|
|
3682
3681
|
export interface TenantInvitationRequestBody {
|
|
3683
3682
|
name: string;
|
|
3684
3683
|
email: string;
|
package/dist/ParraAPI.js
CHANGED
|
@@ -357,11 +357,11 @@ var ConnectedAppConnectionStatus;
|
|
|
357
357
|
var IntegrationType;
|
|
358
358
|
(function (IntegrationType) {
|
|
359
359
|
IntegrationType["parraFeedbackFormBoard"] = "parra-feedback-form-board";
|
|
360
|
+
IntegrationType["parraFeedItemVideoNotification"] = "parra-feed-item-video-notification";
|
|
360
361
|
IntegrationType["slackFeedbackForm"] = "slack-feedback-form";
|
|
361
362
|
IntegrationType["slackReleaseCollection"] = "slack-release-collection";
|
|
362
363
|
IntegrationType["slackCommentReview"] = "slack-comment-review";
|
|
363
364
|
IntegrationType["youtubeVideoFeed"] = "youtube-video-feed";
|
|
364
|
-
IntegrationType["youtubeVideoFeedItemNotification"] = "youtube-video-feed-item-notification";
|
|
365
365
|
IntegrationType["xReleaseCollection"] = "x-release-collection";
|
|
366
366
|
})(IntegrationType || (exports.IntegrationType = IntegrationType = {}));
|
|
367
367
|
var IntegrationConnectionStatus;
|