2a21b6936b
* point change email button to faq arcticle until we add that functionality * hide claims if they are blocked * fix: sorting on 'library' page * add @reach/tooltip * cleanup and add tags to publish page * fix: button color * fix: PublishPrice props * fix: claim list sorting * update lbry-redux * respond to PR comments
52 lines
1,017 B
JavaScript
52 lines
1,017 B
JavaScript
// @flow
|
|
|
|
declare type UpdatePublishFormData = {
|
|
filePath?: string,
|
|
contentIsFree?: boolean,
|
|
fee?: {
|
|
amount: string,
|
|
currency: string,
|
|
},
|
|
title?: string,
|
|
thumbnail_url?: string,
|
|
uploadThumbnailStatus?: string,
|
|
thumbnailPath?: string,
|
|
description?: string,
|
|
language?: string,
|
|
channel?: string,
|
|
channelId?: string,
|
|
name?: string,
|
|
nameError?: string,
|
|
bid?: number,
|
|
bidError?: string,
|
|
otherLicenseDescription?: string,
|
|
licenseUrl?: string,
|
|
licenseType?: string,
|
|
uri?: string,
|
|
nsfw: boolean,
|
|
};
|
|
|
|
declare type PublishParams = {
|
|
name: ?string,
|
|
bid: ?number,
|
|
filePath?: string,
|
|
description: ?string,
|
|
language: string,
|
|
publishingLicense?: string,
|
|
publishingLicenseUrl?: string,
|
|
thumbnail: ?string,
|
|
channel: string,
|
|
channelId?: string,
|
|
title: string,
|
|
contentIsFree: boolean,
|
|
uri?: string,
|
|
license: ?string,
|
|
licenseUrl: ?string,
|
|
fee?: {
|
|
amount: string,
|
|
currency: string,
|
|
},
|
|
claim: StreamClaim,
|
|
nsfw: boolean,
|
|
tags: Array<Tag>,
|
|
};
|