@parra/parra-js-sdk 0.3.400 → 0.3.402
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 +12 -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,14 @@ export interface ParraFeedbackFormBoardIntegrationConnectionData {
|
|
|
3593
3593
|
ticket_description?: string | null;
|
|
3594
3594
|
form_id: string;
|
|
3595
3595
|
}
|
|
3596
|
+
export interface UpdateParraFeedItemVideoNotificationIntegrationConnectionData {
|
|
3597
|
+
feed_id: string;
|
|
3598
|
+
notification_template_id: string;
|
|
3599
|
+
}
|
|
3600
|
+
export interface ParraFeedItemVideoNotificationIntegrationConnectionData {
|
|
3601
|
+
feed_id: string;
|
|
3602
|
+
notification_template_id: string;
|
|
3603
|
+
}
|
|
3596
3604
|
export interface UpdateSlackReleaseCollectionIntegrationConnectionData {
|
|
3597
3605
|
connected_app_connection_id: string;
|
|
3598
3606
|
channel: string;
|
|
@@ -3619,14 +3627,6 @@ export interface YoutubeVideoFeedIntegrationConnectionData {
|
|
|
3619
3627
|
connected_app_connection_id: string;
|
|
3620
3628
|
youtube_channel_id: string;
|
|
3621
3629
|
}
|
|
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
3630
|
export interface UpdateXReleaseCollectionIntegrationConnectionData {
|
|
3631
3631
|
connected_app_connection_id: string;
|
|
3632
3632
|
text: string;
|
|
@@ -3635,7 +3635,7 @@ export interface XReleaseCollectionIntegrationConnectionData {
|
|
|
3635
3635
|
connected_app_connection_id: string;
|
|
3636
3636
|
text: string;
|
|
3637
3637
|
}
|
|
3638
|
-
export type IntegrationConnectionData = SlackFeedbackFormIntegrationConnectionData | ParraFeedbackFormBoardIntegrationConnectionData | SlackReleaseCollectionIntegrationConnectionData | SlackCommentReviewIntegrationConnectionData | YoutubeVideoFeedIntegrationConnectionData |
|
|
3638
|
+
export type IntegrationConnectionData = SlackFeedbackFormIntegrationConnectionData | ParraFeedbackFormBoardIntegrationConnectionData | ParraFeedItemVideoNotificationIntegrationConnectionData | SlackReleaseCollectionIntegrationConnectionData | SlackCommentReviewIntegrationConnectionData | YoutubeVideoFeedIntegrationConnectionData | XReleaseCollectionIntegrationConnectionData;
|
|
3639
3639
|
export interface IntegrationConnection {
|
|
3640
3640
|
id: string;
|
|
3641
3641
|
created_at: string;
|
|
@@ -3677,8 +3677,8 @@ export interface TenantIntegration {
|
|
|
3677
3677
|
export interface UpdateIntegrationConnectionRequestBody {
|
|
3678
3678
|
active?: boolean;
|
|
3679
3679
|
}
|
|
3680
|
-
export type UpdateIntegrationConnectionDataRequestBody = UpdateSlackFeedbackFormIntegrationConnectionData | UpdateParraFeedbackFormBoardIntegrationConnectionData | UpdateSlackReleaseCollectionIntegrationConnectionData | UpdateSlackCommentReviewIntegrationConnectionData | UpdateYoutubeVideoFeedIntegrationConnectionData |
|
|
3681
|
-
export type CreateIntegrationConnectionRequestBody = SlackFeedbackFormIntegrationConnectionData | ParraFeedbackFormBoardIntegrationConnectionData | SlackReleaseCollectionIntegrationConnectionData | SlackCommentReviewIntegrationConnectionData | YoutubeVideoFeedIntegrationConnectionData |
|
|
3680
|
+
export type UpdateIntegrationConnectionDataRequestBody = UpdateSlackFeedbackFormIntegrationConnectionData | UpdateParraFeedbackFormBoardIntegrationConnectionData | UpdateParraFeedItemVideoNotificationIntegrationConnectionData | UpdateSlackReleaseCollectionIntegrationConnectionData | UpdateSlackCommentReviewIntegrationConnectionData | UpdateYoutubeVideoFeedIntegrationConnectionData | UpdateXReleaseCollectionIntegrationConnectionData;
|
|
3681
|
+
export type CreateIntegrationConnectionRequestBody = SlackFeedbackFormIntegrationConnectionData | ParraFeedbackFormBoardIntegrationConnectionData | ParraFeedItemVideoNotificationIntegrationConnectionData | SlackReleaseCollectionIntegrationConnectionData | SlackCommentReviewIntegrationConnectionData | YoutubeVideoFeedIntegrationConnectionData | XReleaseCollectionIntegrationConnectionData;
|
|
3682
3682
|
export interface TenantInvitationRequestBody {
|
|
3683
3683
|
name: string;
|
|
3684
3684
|
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;
|