quasar-app-extension-api-wrapper
Advanced tools
Comparing version 0.0.8 to 0.0.9
{ | ||
"name": "quasar-app-extension-api-wrapper", | ||
"version": "0.0.8", | ||
"version": "0.0.9", | ||
"description": "A Quasar App Extension designed to wrap up the most common features of an api client implementation", | ||
@@ -23,4 +23,4 @@ "author": "Roberto <roberto.langarica@gmail.com>", | ||
"dependencies": { | ||
"api-client-wrapper": ">= 0.1.0" | ||
"api-client-wrapper": ">= 0.1.2" | ||
} | ||
} |
@@ -5,3 +5,3 @@ ### Quasar App Extension | ||
_An easy to use out of the box API wrapper tha use [axios](https://github.com/axios/axios) in its core_ | ||
_An easy to use out of the box API wrapper that use [axios](https://github.com/axios/axios) in its core_ | ||
@@ -81,10 +81,10 @@ > Note: The extension can be used as an `npm` package, using: [api-client-wrapper](https://www.npmjs.com/package/api-client-wrapper) | ||
```javascript | ||
let result = await bulkGet(['paths' or {configs}], continueWithFailure:Boolean, onProgress) | ||
let result = await bulkPost(['paths' or {configs}], continueWithFailure:Boolean, onProgress) | ||
let result = await bulkPatch(['paths' or {configs}], continueWithFailure:Boolean, onProgress) | ||
let result = await bulkPut(['paths' or {configs}], continueWithFailure:Boolean, onProgress) | ||
let result = await bulkDelete(['paths' or {configs}], continueWithFailure:Boolean, onProgress) | ||
let result = await this.$api.bulkGet(['paths' or {configs}], continueWithFailure:Boolean, onProgress) | ||
let result = await this.$api.bulkPost(['paths' or {configs}], continueWithFailure:Boolean, onProgress) | ||
let result = await this.$api.bulkPatch(['paths' or {configs}], continueWithFailure:Boolean, onProgress) | ||
let result = await this.$api.bulkPut(['paths' or {configs}], continueWithFailure:Boolean, onProgress) | ||
let result = await this.$api.bulkDelete(['paths' or {configs}], continueWithFailure:Boolean, onProgress) | ||
//or the global method that allows bulk calls with different methods | ||
let result = await bulkCall([{configs}], continueWithFailure:Boolean, onProgress) | ||
let result = await this.$api.bulkCall([{configs}], continueWithFailure:Boolean, onProgress) | ||
``` | ||
@@ -91,0 +91,0 @@ #### Params: |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11627
Updatedapi-client-wrapper@>= 0.1.2