fix(config): add missing parameters to configuration schema

Signed-off-by: Gabriel Dugny <gabriel.dugny@believe.com>
This commit is contained in:
Gabriel Dugny
2024-12-24 12:58:42 +01:00
parent aae9523c00
commit 29a4aa8956
3 changed files with 45 additions and 0 deletions
+5
View File
@@ -263,6 +263,11 @@ export interface Config {
* the credentials belongs to a different project to the bucket.
*/
projectId?: string;
/**
* (Optional) Location in storage bucket to save files
* If not set, the default location will be the root of the storage bucket
*/
bucketRootPath?: string;
};
};