@frontegg/rest-api 3.0.106 → 3.0.107
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/account-settings/index.js +1 -1
- package/index.js +1 -1
- package/node/account-settings/index.js +1 -1
- package/node/index.js +1 -1
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@ export async function updateSettings(body, options) {
|
|
|
6
6
|
});
|
|
7
7
|
}
|
|
8
8
|
export async function getSettings(options) {
|
|
9
|
-
return Get(urls.tenants.accountSettings.v1, {
|
|
9
|
+
return Get(urls.tenants.accountSettings.v1, undefined, {
|
|
10
10
|
headers: extractHeadersFromOptions(options)
|
|
11
11
|
});
|
|
12
12
|
}
|
package/index.js
CHANGED
|
@@ -18,7 +18,7 @@ async function updateSettings(body, options) {
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
async function getSettings(options) {
|
|
21
|
-
return (0, _fetch.Get)(_constants.urls.tenants.accountSettings.v1, {
|
|
21
|
+
return (0, _fetch.Get)(_constants.urls.tenants.accountSettings.v1, undefined, {
|
|
22
22
|
headers: (0, _fetch.extractHeadersFromOptions)(options)
|
|
23
23
|
});
|
|
24
24
|
}
|
package/node/index.js
CHANGED