@parra/parra-js-sdk 0.3.434 → 0.3.435
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 +7 -0
- package/dist/ParraAPI.js +8 -2
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -1381,9 +1381,15 @@ export interface UpdateCreatorUpdateTemplateRequestBody {
|
|
1381
1381
|
post_visibility?: CreatorUpdateVisibilityType;
|
1382
1382
|
attachment_visibility?: CreatorUpdateVisibilityType;
|
1383
1383
|
}
|
1384
|
+
export declare enum CreatorUpdateTopic {
|
1385
|
+
giveaway = "giveaway",
|
1386
|
+
live = "live",
|
1387
|
+
general = "general"
|
1388
|
+
}
|
1384
1389
|
export interface CreateCreatorUpdateRequestBody {
|
1385
1390
|
publish?: boolean | null;
|
1386
1391
|
template_id?: string | null;
|
1392
|
+
topic?: CreatorUpdateTopic | null;
|
1387
1393
|
title?: string | null;
|
1388
1394
|
body?: string | null;
|
1389
1395
|
attachment_ids?: Array<string> | null;
|
@@ -1458,6 +1464,7 @@ export interface CreatorUpdateCollectionResponse {
|
|
1458
1464
|
export interface UpdateCreatorUpdateRequestBody {
|
1459
1465
|
title?: string;
|
1460
1466
|
body?: string | null;
|
1467
|
+
topic?: CreatorUpdateTopic | null;
|
1461
1468
|
entitlement_id?: string | null;
|
1462
1469
|
post_visibility?: CreatorUpdateVisibilityType;
|
1463
1470
|
attachment_visibility?: CreatorUpdateVisibilityType;
|
package/dist/ParraAPI.js
CHANGED
@@ -11,8 +11,8 @@ var __assign = (this && this.__assign) || function () {
|
|
11
11
|
return __assign.apply(this, arguments);
|
12
12
|
};
|
13
13
|
Object.defineProperty(exports, "__esModule", { value: true });
|
14
|
-
exports.
|
15
|
-
exports.PolicyDocumentVersionStatus = exports.PolicyDocumentStatus = exports.MailTemplateStatus = exports.MailTemplateVersionStatus = exports.MailTemplateType = exports.IntegrationScope = exports.IntegrationConnectionStatus = exports.IntegrationType = exports.ConnectedAppConnectionStatus = exports.ConnectedAppType = exports.TenantOnboardingGoal = exports.DashboardChecklistItemStatus = exports.DashboardChecklistItemType = exports.RefreshTokenRotationType = exports.RefreshTokenExpirationType = exports.JwtAlgorithm = void 0;
|
14
|
+
exports.PasswordlessStrategy = exports.SsoProvider = exports.SettingsItemType = exports.ApnsPushType = exports.ApnsEnvironment = exports.ChannelType = exports.AppVersionStatus = exports.TicketDisplayStatus = exports.UserNoteStatus = exports.TicketLinkType = exports.TemplateType = exports.CampaignStatus = exports.CampaignActionDisplayType = exports.CampaignActionType = exports.CardItemDisplayType = exports.CardItemType = exports.QuestionKind = exports.QuestionType = exports.SubmitCommentReviewStatus = exports.CommentReviewStatus = exports.ReactionType = exports.FeedItemType = exports.CreatorUpdateChannelType = exports.CreatorUpdateStatus = exports.CreatorUpdateTopic = exports.CreatorUpdateVisibilityType = exports.ChannelMemberRole = exports.ChannelMemberType = exports.ChatChannelStatus = exports.ChatChannelType = exports.BillingSourceType = exports.PaywallIapType = exports.AppPaywallType = exports.SubscriptionStatus = exports.Interval = exports.Currency = exports.FeedbackFormFieldType = exports.ContentCardActionType = exports.IdentityType = exports.PolicyDocumentType = exports.AppleSsoScope = exports.DomainStatus = exports.DomainType = exports.ApplicationType = exports.ReleaseType = exports.ReleaseStatus = exports.TicketIconType = exports.TicketPriority = exports.TicketStatus = exports.TicketType = void 0;
|
15
|
+
exports.PolicyDocumentVersionStatus = exports.PolicyDocumentStatus = exports.MailTemplateStatus = exports.MailTemplateVersionStatus = exports.MailTemplateType = exports.IntegrationScope = exports.IntegrationConnectionStatus = exports.IntegrationType = exports.ConnectedAppConnectionStatus = exports.ConnectedAppType = exports.TenantOnboardingGoal = exports.DashboardChecklistItemStatus = exports.DashboardChecklistItemType = exports.RefreshTokenRotationType = exports.RefreshTokenExpirationType = exports.JwtAlgorithm = exports.GrantType = void 0;
|
16
16
|
var TicketType;
|
17
17
|
(function (TicketType) {
|
18
18
|
TicketType["bug"] = "bug";
|
@@ -183,6 +183,12 @@ var CreatorUpdateVisibilityType;
|
|
183
183
|
CreatorUpdateVisibilityType["public"] = "public";
|
184
184
|
CreatorUpdateVisibilityType["private"] = "private";
|
185
185
|
})(CreatorUpdateVisibilityType || (exports.CreatorUpdateVisibilityType = CreatorUpdateVisibilityType = {}));
|
186
|
+
var CreatorUpdateTopic;
|
187
|
+
(function (CreatorUpdateTopic) {
|
188
|
+
CreatorUpdateTopic["giveaway"] = "giveaway";
|
189
|
+
CreatorUpdateTopic["live"] = "live";
|
190
|
+
CreatorUpdateTopic["general"] = "general";
|
191
|
+
})(CreatorUpdateTopic || (exports.CreatorUpdateTopic = CreatorUpdateTopic = {}));
|
186
192
|
var CreatorUpdateStatus;
|
187
193
|
(function (CreatorUpdateStatus) {
|
188
194
|
CreatorUpdateStatus["draft"] = "draft";
|