@parra/parra-js-sdk 0.3.299 → 0.3.301
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 +23 -2
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -348,12 +348,13 @@ export declare enum PolicyDocumentType {
|
|
|
348
348
|
export interface PolicyDocumentLinkStub {
|
|
349
349
|
id: string;
|
|
350
350
|
type: PolicyDocumentType;
|
|
351
|
-
title: string;
|
|
351
|
+
title: string | null;
|
|
352
352
|
url: string;
|
|
353
353
|
}
|
|
354
354
|
export interface AppLegalInfo {
|
|
355
355
|
terms_of_service?: PolicyDocumentLinkStub | null;
|
|
356
356
|
privacy_policy?: PolicyDocumentLinkStub | null;
|
|
357
|
+
policy_documents: Array<PolicyDocumentLinkStub>;
|
|
357
358
|
}
|
|
358
359
|
export interface CheckAuthorizationRequestBody {
|
|
359
360
|
scope: string;
|
|
@@ -831,7 +832,27 @@ export interface ContentCard {
|
|
|
831
832
|
description?: string | null;
|
|
832
833
|
action?: ContentCardAction | null;
|
|
833
834
|
}
|
|
834
|
-
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;
|
|
835
856
|
export interface FeedItem {
|
|
836
857
|
id: string;
|
|
837
858
|
created_at: string;
|