|
@@ -245,6 +245,12 @@ export interface ChannelCurationStatus extends Null {}
|
|
|
/** @name ChannelId */
|
|
|
export interface ChannelId extends u64 {}
|
|
|
|
|
|
+/** @name ChannelMigrationConfig */
|
|
|
+export interface ChannelMigrationConfig extends Struct {
|
|
|
+ readonly current_id: ChannelId;
|
|
|
+ readonly final_id: ChannelId;
|
|
|
+}
|
|
|
+
|
|
|
/** @name ChannelOwner */
|
|
|
export interface ChannelOwner extends Enum {
|
|
|
readonly isMember: boolean;
|
|
@@ -1381,6 +1387,12 @@ export interface VideoCreationParameters extends Struct {
|
|
|
/** @name VideoId */
|
|
|
export interface VideoId extends u64 {}
|
|
|
|
|
|
+/** @name VideoMigrationConfig */
|
|
|
+export interface VideoMigrationConfig extends Struct {
|
|
|
+ readonly current_id: VideoId;
|
|
|
+ readonly final_id: VideoId;
|
|
|
+}
|
|
|
+
|
|
|
/** @name VideoUpdateParameters */
|
|
|
export interface VideoUpdateParameters extends Struct {
|
|
|
readonly assets_to_upload: Option<StorageAssets>;
|