123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- export type MemberJson = {
- memberId: string
- rootAccount: string
- controllerAccount: string
- handle: string
- about?: string
- avatarUri?: string
- registeredAtTime: number
- registeredAtBlock: number
- }
- export type StorageSystemJson = {
- id: string
- blacklist: string[]
- storageBucketsPerBagLimit: number
- distributionBucketsPerBagLimit: number
- uploadingBlocked: boolean
- dataObjectFeePerMb: number | string
- storageBucketMaxObjectsCountLimit: number | string
- storageBucketMaxObjectsSizeLimit: number | string
- }
- export type WorkerJson = {
- workerId: string
- metadata?: string
- createdAt: number
- }
- export type WorkingGroupJson = {
- workers: WorkerJson[]
- }
- export type WorkingGroupsJson = {
- [group in 'GATEWAY' | 'STORAGE']?: WorkingGroupJson
- }
- export type VideoCategoryJson = {
- id: string
- name: string
- createdInBlock: number
- createdAt: string
- updatedAt: string
- }
- export type ChannelCategoryJson = {
- id: string
- name: string
- createdInBlock: number
- createdAt: string
- updatedAt: string
- }
|