@parra/parra-js-sdk 0.3.543 → 0.3.544
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 +13 -1
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -2274,11 +2274,20 @@ export interface CreatorUpdateAppStub {
|
|
2274
2274
|
attachments?: Array<CreatorUpdateAttachmentStub>;
|
2275
2275
|
attachment_paywall?: AppPaywallConfiguration | null;
|
2276
2276
|
}
|
2277
|
+
export interface RssEnclosure {
|
2278
|
+
url: string;
|
2279
|
+
type: string;
|
2280
|
+
length?: number;
|
2281
|
+
}
|
2277
2282
|
export interface AppRssItem {
|
2278
2283
|
id: string;
|
2279
2284
|
title: string;
|
2280
2285
|
description: string;
|
2281
2286
|
image_url?: string | null;
|
2287
|
+
link?: string | null;
|
2288
|
+
author?: string | null;
|
2289
|
+
enclosures?: Array<RssEnclosure> | null;
|
2290
|
+
published_at?: string | null;
|
2282
2291
|
}
|
2283
2292
|
export type FeedItemData = AppYoutubeVideo | AppContentCard | CreatorUpdateAppStub | AppRssItem;
|
2284
2293
|
export declare enum ReactionType {
|
@@ -4485,7 +4494,10 @@ export interface ConnectedAppXConnectionData {
|
|
4485
4494
|
handle: string;
|
4486
4495
|
name: string;
|
4487
4496
|
}
|
4488
|
-
export
|
4497
|
+
export interface ConnectedAppYoutubeConnectionData {
|
4498
|
+
channel_id: string;
|
4499
|
+
}
|
4500
|
+
export type ConnectedAppConnectionData = ConnectedAppAppStoreConnectApiConnectionData | ConnectedApnsConnectionData | ConnectedAppResendConnectionData | ConnectedAppSlackConnectionData | ConnectedAppSendgridConnectionData | ConnectedAppTwilioConnectionData | ConnectedAppDiscordConnectionData | ConnectedAppXConnectionData | ConnectedAppYoutubeConnectionData;
|
4489
4501
|
export declare enum ConnectedAppType {
|
4490
4502
|
parra = "parra",
|
4491
4503
|
appStoreConnectApi = "app-store-connect-api",
|