@parra/parra-js-sdk 0.3.434 → 0.3.436

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.
@@ -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;
@@ -1442,6 +1448,7 @@ export interface CreatorUpdate {
1442
1448
  status: CreatorUpdateStatus;
1443
1449
  title: string;
1444
1450
  body?: string;
1451
+ topic?: CreatorUpdateTopic | null;
1445
1452
  sender?: CreatorUpdateSenderStub;
1446
1453
  template?: CreatorUpdateTemplateStub;
1447
1454
  attachments: Array<CreatorUpdateAttachmentStub>;
@@ -1458,6 +1465,7 @@ export interface CreatorUpdateCollectionResponse {
1458
1465
  export interface UpdateCreatorUpdateRequestBody {
1459
1466
  title?: string;
1460
1467
  body?: string | null;
1468
+ topic?: CreatorUpdateTopic | null;
1461
1469
  entitlement_id?: string | null;
1462
1470
  post_visibility?: CreatorUpdateVisibilityType;
1463
1471
  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.GrantType = 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.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 = 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";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.3.434",
3
+ "version": "0.3.436",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",