@parra/parra-js-sdk 0.3.300 → 0.3.302
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 +22 -2
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -354,7 +354,7 @@ export interface PolicyDocumentLinkStub {
|
|
|
354
354
|
export interface AppLegalInfo {
|
|
355
355
|
terms_of_service?: PolicyDocumentLinkStub | null;
|
|
356
356
|
privacy_policy?: PolicyDocumentLinkStub | null;
|
|
357
|
-
|
|
357
|
+
policy_documents: Array<PolicyDocumentLinkStub>;
|
|
358
358
|
}
|
|
359
359
|
export interface CheckAuthorizationRequestBody {
|
|
360
360
|
scope: string;
|
|
@@ -832,7 +832,27 @@ export interface ContentCard {
|
|
|
832
832
|
description?: string | null;
|
|
833
833
|
action?: ContentCardAction | null;
|
|
834
834
|
}
|
|
835
|
-
export
|
|
835
|
+
export interface CreatorUpdateSenderStub {
|
|
836
|
+
id: string;
|
|
837
|
+
name: string;
|
|
838
|
+
avatar?: ImageAssetStub | null;
|
|
839
|
+
verified?: boolean;
|
|
840
|
+
}
|
|
841
|
+
export interface CreatorUpdateAttachmentStub {
|
|
842
|
+
id: string;
|
|
843
|
+
image?: ImageAssetStub | null;
|
|
844
|
+
}
|
|
845
|
+
export interface CreatorUpdateAppStub {
|
|
846
|
+
id: string;
|
|
847
|
+
created_at: string;
|
|
848
|
+
updated_at: string;
|
|
849
|
+
deleted_at?: string | null;
|
|
850
|
+
title: string;
|
|
851
|
+
description?: string;
|
|
852
|
+
sender?: CreatorUpdateSenderStub | null;
|
|
853
|
+
attachments?: Array<CreatorUpdateAttachmentStub>;
|
|
854
|
+
}
|
|
855
|
+
export type FeedItemData = YoutubeVideo | ContentCard | CreatorUpdateAppStub;
|
|
836
856
|
export interface FeedItem {
|
|
837
857
|
id: string;
|
|
838
858
|
created_at: string;
|