types.ts 506 B

1234567891011121314151617181920
  1. export type MemberJson = {
  2. member_id: string
  3. root_account: string
  4. controller_account: string
  5. handle: string
  6. about?: string
  7. avatar_uri?: string
  8. registered_at_time: number
  9. }
  10. export type StorageSystemJson = {
  11. id: string
  12. blacklist: string[]
  13. storageBucketsPerBagLimit: number
  14. distributionBucketsPerBagLimit: number
  15. uploadingBlocked: boolean
  16. dataObjectFeePerMb: number | string
  17. storageBucketMaxObjectsCountLimit: number | string
  18. storageBucketMaxObjectsSizeLimit: number | string
  19. }