mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-17 04:46:05 +00:00
added aws lambda adapter + improvements to handle concurrency
This commit is contained in:
@@ -20,10 +20,11 @@ export class SystemApi extends ModuleApi<any> {
|
||||
return this.get<{ version: number } & ModuleConfigs>("config");
|
||||
}
|
||||
|
||||
readSchema(options?: { config?: boolean; secrets?: boolean }) {
|
||||
readSchema(options?: { config?: boolean; secrets?: boolean; fresh?: boolean }) {
|
||||
return this.get<ApiSchemaResponse>("schema", {
|
||||
config: options?.config ? 1 : 0,
|
||||
secrets: options?.secrets ? 1 : 0,
|
||||
fresh: options?.fresh ? 1 : 0,
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user