@parra/parra-js-sdk 0.3.454 → 0.3.456
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 +3 -1
- package/dist/ParraAPI.js +2 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -1398,7 +1398,8 @@ export interface UpdateCreatorUpdateSenderRequestBody {
|
|
1398
1398
|
export declare enum CreatorUpdateTopic {
|
1399
1399
|
giveaway = "giveaway",
|
1400
1400
|
live = "live",
|
1401
|
-
general = "general"
|
1401
|
+
general = "general",
|
1402
|
+
qa = "qa"
|
1402
1403
|
}
|
1403
1404
|
export declare enum CreatorUpdateVisibilityType {
|
1404
1405
|
public = "public",
|
@@ -3970,6 +3971,7 @@ export interface CreateXConnectedAppConnectionRequestBody {
|
|
3970
3971
|
export type CreateConnectedAppConnectionRequestBody = CreateAppStoreConnectConnectedAppConnectionRequestBody | CreateApnsConnectedAppConnectionRequestBody | CreateResendConnectedAppConnectionRequestBody | CreateSendgridConnectedAppConnectionRequestBody | CreateSlackConnectedAppConnectionRequestBody | CreateDiscordConnectedAppConnectionRequestBody | CreateYoutubeConnectedAppConnectionRequestBody | CreateTwilioConnectedAppConnectionRequestBody | CreateXConnectedAppConnectionRequestBody;
|
3971
3972
|
export declare enum IntegrationType {
|
3972
3973
|
parraFeedbackFormBoard = "parra-feedback-form-board",
|
3974
|
+
parraFormCreatorUpdate = "parra-form-creator-update",
|
3973
3975
|
parraFeedItemVideoNotification = "parra-feed-item-video-notification",
|
3974
3976
|
discordFeedbackForm = "discord-feedback-form",
|
3975
3977
|
discordPurchaseCollection = "discord-purchase-collection",
|
package/dist/ParraAPI.js
CHANGED
@@ -212,6 +212,7 @@ var CreatorUpdateTopic;
|
|
212
212
|
CreatorUpdateTopic["giveaway"] = "giveaway";
|
213
213
|
CreatorUpdateTopic["live"] = "live";
|
214
214
|
CreatorUpdateTopic["general"] = "general";
|
215
|
+
CreatorUpdateTopic["qa"] = "qa";
|
215
216
|
})(CreatorUpdateTopic || (exports.CreatorUpdateTopic = CreatorUpdateTopic = {}));
|
216
217
|
var CreatorUpdateVisibilityType;
|
217
218
|
(function (CreatorUpdateVisibilityType) {
|
@@ -453,6 +454,7 @@ var ConnectedAppConnectionStatus;
|
|
453
454
|
var IntegrationType;
|
454
455
|
(function (IntegrationType) {
|
455
456
|
IntegrationType["parraFeedbackFormBoard"] = "parra-feedback-form-board";
|
457
|
+
IntegrationType["parraFormCreatorUpdate"] = "parra-form-creator-update";
|
456
458
|
IntegrationType["parraFeedItemVideoNotification"] = "parra-feed-item-video-notification";
|
457
459
|
IntegrationType["discordFeedbackForm"] = "discord-feedback-form";
|
458
460
|
IntegrationType["discordPurchaseCollection"] = "discord-purchase-collection";
|