Socket
Socket
Sign inDemoInstall

vue-axios-http

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-axios-http - npm Package Compare versions

Comparing version 1.2.5 to 1.3.0

7

CHANGELOG.md

@@ -5,2 +5,9 @@ # Changelog

## [1.3.0](https://github.com/chantouchsek/vue-axios-http/compare/v1.2.5...v1.3.0) (2022-04-09)
### Features
* :tada: added new method putWithoutId to base service ([8a9e0c2](https://github.com/chantouchsek/vue-axios-http/commit/8a9e0c29aed4e2c9e69aa895b21085a7e0adbc04))
### [1.2.5](https://github.com/chantouchsek/vue-axios-http/compare/v1.2.4...v1.2.5) (2022-04-09)

@@ -7,0 +14,0 @@

@@ -67,2 +67,7 @@ /// <reference types="@types/qs" />

/**
* Update record without ID parameter by using PUT method
* @param {Object|string} payload
*/
putWithoutId<T>(payload: any): Promise<T>;
/**
* Alternative of put method

@@ -69,0 +74,0 @@ * @param {string|number} id

@@ -92,2 +92,9 @@ "use strict";

/**
* Update record without ID parameter by using PUT method
* @param {Object|string} payload
*/
putWithoutId(payload) {
return this.submit('put', '', payload);
}
/**
* Alternative of put method

@@ -94,0 +101,0 @@ * @param {string|number} id

2

package.json
{
"name": "vue-axios-http",
"version": "1.2.5",
"version": "1.3.0",
"description": "Elegant and simple way to build requests for REST API",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc