Add free transfer limit to filesystem

This commit is contained in:
2024-09-05 17:28:31 +02:00
parent 04efcb6505
commit 51afa2615c
30 changed files with 125 additions and 64 deletions

View File

@@ -11,6 +11,7 @@ export type FSPath = {
base_index: number,
children: Array<FSNode>,
permissions: FSPermissions,
context: FSContext,
}
export type FSNode = {
@@ -42,6 +43,10 @@ export type FSPermissions = {
delete: boolean,
}
export type FSContext = {
premium_transfer: boolean,
}
// API parameters
// ==============