@juhuu/sdk-ts 1.2.75 → 1.2.76
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/dist/index.js +6 -3
- package/dist/index.mjs +6 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -2243,9 +2243,12 @@ var BoldLockService = class extends Service {
|
|
2243
2243
|
const queryArray = [];
|
2244
2244
|
return await super.sendRequest(
|
2245
2245
|
{
|
2246
|
-
method: "
|
2247
|
-
url: "boldLock/credentials
|
2248
|
-
body:
|
2246
|
+
method: "POST",
|
2247
|
+
url: "boldLock/credentials",
|
2248
|
+
body: {
|
2249
|
+
userId: BoldLockCredentialsParams.userId,
|
2250
|
+
deviceId: BoldLockCredentialsParams.deviceId
|
2251
|
+
},
|
2249
2252
|
authenticationNotOptional: true
|
2250
2253
|
},
|
2251
2254
|
BoldLockCredentialsOptions
|
package/dist/index.mjs
CHANGED
@@ -2199,9 +2199,12 @@ var BoldLockService = class extends Service {
|
|
2199
2199
|
const queryArray = [];
|
2200
2200
|
return await super.sendRequest(
|
2201
2201
|
{
|
2202
|
-
method: "
|
2203
|
-
url: "boldLock/credentials
|
2204
|
-
body:
|
2202
|
+
method: "POST",
|
2203
|
+
url: "boldLock/credentials",
|
2204
|
+
body: {
|
2205
|
+
userId: BoldLockCredentialsParams.userId,
|
2206
|
+
deviceId: BoldLockCredentialsParams.deviceId
|
2207
|
+
},
|
2205
2208
|
authenticationNotOptional: true
|
2206
2209
|
},
|
2207
2210
|
BoldLockCredentialsOptions
|