@parra/parra-js-sdk 0.3.451 → 0.3.452
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 +4 -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
|
}
|
@@ -4098,10 +4098,12 @@ export interface DiscordUserCollectionIntegrationConnectionData {
|
|
4098
4098
|
export interface UpdateSlackCommentReviewIntegrationConnectionData {
|
4099
4099
|
connected_app_connection_id: string;
|
4100
4100
|
channel: string;
|
4101
|
+
message: string;
|
4101
4102
|
}
|
4102
4103
|
export interface SlackCommentReviewIntegrationConnectionData {
|
4103
4104
|
connected_app_connection_id: string;
|
4104
4105
|
channel: string;
|
4106
|
+
message: string;
|
4105
4107
|
}
|
4106
4108
|
export interface UpdateYoutubeVideoFeedIntegrationConnectionData {
|
4107
4109
|
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 = {}));
|