@parra/parra-js-sdk 0.3.451 → 0.3.453
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 +6 -2
- package/dist/ParraAPI.js +2 -2
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -3977,10 +3977,10 @@ export declare enum IntegrationType {
|
|
3977
3977
|
discordUserCollection = "discord-user-collection",
|
3978
3978
|
discordCommentReview = "discord-comment-review",
|
3979
3979
|
slackFeedbackForm = "slack-feedback-form",
|
3980
|
-
slackPurchaseCollection = "slack-purchase-collection",
|
3981
3980
|
slackReleaseCollection = "slack-release-collection",
|
3982
|
-
slackUserCollection = "slack-user-collection",
|
3983
3981
|
slackCommentReview = "slack-comment-review",
|
3982
|
+
slackPurchaseCollection = "slack-purchase-collection",
|
3983
|
+
slackUserCollection = "slack-user-collection",
|
3984
3984
|
youtubeVideoFeed = "youtube-video-feed",
|
3985
3985
|
xReleaseCollection = "x-release-collection"
|
3986
3986
|
}
|
@@ -4050,10 +4050,12 @@ export interface SlackUserCollectionIntegrationConnectionData {
|
|
4050
4050
|
export interface UpdateDiscordCommentReviewIntegrationConnectionData {
|
4051
4051
|
connected_app_connection_id: string;
|
4052
4052
|
channel: string;
|
4053
|
+
message: string;
|
4053
4054
|
}
|
4054
4055
|
export interface DiscordCommentReviewIntegrationConnectionData {
|
4055
4056
|
connected_app_connection_id: string;
|
4056
4057
|
channel: string;
|
4058
|
+
message: string;
|
4057
4059
|
}
|
4058
4060
|
export interface UpdateDiscordFeedbackFormIntegrationConnectionData {
|
4059
4061
|
connected_app_connection_id: string;
|
@@ -4098,10 +4100,12 @@ export interface DiscordUserCollectionIntegrationConnectionData {
|
|
4098
4100
|
export interface UpdateSlackCommentReviewIntegrationConnectionData {
|
4099
4101
|
connected_app_connection_id: string;
|
4100
4102
|
channel: string;
|
4103
|
+
message: string;
|
4101
4104
|
}
|
4102
4105
|
export interface SlackCommentReviewIntegrationConnectionData {
|
4103
4106
|
connected_app_connection_id: string;
|
4104
4107
|
channel: string;
|
4108
|
+
message: string;
|
4105
4109
|
}
|
4106
4110
|
export interface UpdateYoutubeVideoFeedIntegrationConnectionData {
|
4107
4111
|
connected_app_connection_id: string;
|
package/dist/ParraAPI.js
CHANGED
@@ -460,10 +460,10 @@ var IntegrationType;
|
|
460
460
|
IntegrationType["discordUserCollection"] = "discord-user-collection";
|
461
461
|
IntegrationType["discordCommentReview"] = "discord-comment-review";
|
462
462
|
IntegrationType["slackFeedbackForm"] = "slack-feedback-form";
|
463
|
-
IntegrationType["slackPurchaseCollection"] = "slack-purchase-collection";
|
464
463
|
IntegrationType["slackReleaseCollection"] = "slack-release-collection";
|
465
|
-
IntegrationType["slackUserCollection"] = "slack-user-collection";
|
466
464
|
IntegrationType["slackCommentReview"] = "slack-comment-review";
|
465
|
+
IntegrationType["slackPurchaseCollection"] = "slack-purchase-collection";
|
466
|
+
IntegrationType["slackUserCollection"] = "slack-user-collection";
|
467
467
|
IntegrationType["youtubeVideoFeed"] = "youtube-video-feed";
|
468
468
|
IntegrationType["xReleaseCollection"] = "x-release-collection";
|
469
469
|
})(IntegrationType || (exports.IntegrationType = IntegrationType = {}));
|