btrz-api-client
Advanced tools
Comparing version 1.38.0 to 1.39.0
@@ -55,3 +55,3 @@ "use strict"; | ||
return client({ | ||
url: "/application-settings/" + id, | ||
url: "/application-settings/" + id + "/keys", | ||
method: "post", | ||
@@ -58,0 +58,0 @@ headers: authorizationHeaders({ token: token, jwtToken: jwtToken, internalAuthTokenProvider: internalAuthTokenProvider }) |
{ | ||
"name": "btrz-api-client", | ||
"version": "1.38.0", | ||
"version": "1.39.0", | ||
"description": "Api client for Betterez endpoints", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -30,3 +30,3 @@ const {authorizationHeaders} = require("./../endpoints_helpers"); | ||
return client({ | ||
url: `/application-settings/${id}`, | ||
url: `/application-settings/${id}/keys`, | ||
method: "post", | ||
@@ -33,0 +33,0 @@ headers: authorizationHeaders({token, jwtToken, internalAuthTokenProvider}) |
@@ -43,3 +43,3 @@ const {axiosMock, expectRequest} = require("./../../test-helpers"); | ||
axiosMock.onPost(`/application-settings/${id}`) | ||
axiosMock.onPost(`/application-settings/${id}/keys`) | ||
.reply(expectRequest({statusCode: 200, token, jwtToken})); | ||
@@ -46,0 +46,0 @@ return api.accounts.applicationSettings.regenerateKeys({token, jwtToken, id}); |
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
405739