(params0)
| 10786 | return defaultParam(propfind, { headers: this.authHeaders })(params[0]); |
| 10787 | } |
| 10788 | async createAccount(params0) { |
| 10789 | const { account, headers, loadCollections, loadObjects } = params0; |
| 10790 | return createAccount({ |
| 10791 | account: { serverUrl: this.serverUrl, credentials: this.credentials, ...account }, |
| 10792 | headers: { ...this.authHeaders, ...headers }, |
| 10793 | loadCollections, |
| 10794 | loadObjects, |
| 10795 | }); |
| 10796 | } |
| 10797 | async collectionQuery(...params) { |
| 10798 | return defaultParam(collectionQuery, { headers: this.authHeaders })(params[0]); |
| 10799 | } |
nothing calls this directly
no test coverage detected