@parra/parra-js-sdk 0.3.562 → 0.3.564
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 +5 -2
- package/dist/ParraAPI.js +3 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -2387,6 +2387,7 @@ export interface AppSampleTab {
|
|
2387
2387
|
export interface AppFeedTab {
|
2388
2388
|
title: string;
|
2389
2389
|
type: string;
|
2390
|
+
content_type?: string | null;
|
2390
2391
|
feed_id?: string;
|
2391
2392
|
tab: AppTabDescriptor;
|
2392
2393
|
empty_state?: AppTabEmptyState | null;
|
@@ -3090,7 +3091,10 @@ export declare enum SocialAccountType {
|
|
3090
3091
|
facebook = "facebook",
|
3091
3092
|
twitch = "twitch",
|
3092
3093
|
linkedin = "linkedin",
|
3093
|
-
shopify = "shopify"
|
3094
|
+
shopify = "shopify",
|
3095
|
+
website = "website",
|
3096
|
+
rss = "rss",
|
3097
|
+
custom = "custom"
|
3094
3098
|
}
|
3095
3099
|
export interface SocialAccountYoutubeData {
|
3096
3100
|
channel_handle: string;
|
@@ -3148,7 +3152,6 @@ export interface SocialAccountRssData {
|
|
3148
3152
|
rss_feed_id: string;
|
3149
3153
|
}
|
3150
3154
|
export interface SocialAccountCustomData {
|
3151
|
-
type: string;
|
3152
3155
|
slug?: string | null;
|
3153
3156
|
handle?: string | null;
|
3154
3157
|
url?: string | null;
|
package/dist/ParraAPI.js
CHANGED
@@ -367,6 +367,9 @@ var SocialAccountType;
|
|
367
367
|
SocialAccountType["twitch"] = "twitch";
|
368
368
|
SocialAccountType["linkedin"] = "linkedin";
|
369
369
|
SocialAccountType["shopify"] = "shopify";
|
370
|
+
SocialAccountType["website"] = "website";
|
371
|
+
SocialAccountType["rss"] = "rss";
|
372
|
+
SocialAccountType["custom"] = "custom";
|
370
373
|
})(SocialAccountType || (exports.SocialAccountType = SocialAccountType = {}));
|
371
374
|
var FeedItemType;
|
372
375
|
(function (FeedItemType) {
|