@dynamic-labs/sdk-api 0.0.727 → 0.0.728
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/package.json +1 -1
- package/src/apis/WaasApi.cjs +1 -1
- package/src/apis/WaasApi.js +1 -1
package/package.json
CHANGED
package/src/apis/WaasApi.cjs
CHANGED
|
@@ -140,7 +140,7 @@ class WaasApi extends runtime.BaseAPI {
|
|
|
140
140
|
const headerParameters = {};
|
|
141
141
|
headerParameters['Content-Type'] = 'application/json';
|
|
142
142
|
const response = yield this.request({
|
|
143
|
-
path: `/environments/{environmentId}/waas/delegated/signMessage`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))).replace(`{${"walletId"}}`, encodeURIComponent(String(requestParameters.walletId))),
|
|
143
|
+
path: `/environments/{environmentId}/waas/{walletId}/delegated/signMessage`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))).replace(`{${"walletId"}}`, encodeURIComponent(String(requestParameters.walletId))),
|
|
144
144
|
method: 'POST',
|
|
145
145
|
headers: headerParameters,
|
|
146
146
|
query: queryParameters,
|
package/src/apis/WaasApi.js
CHANGED
|
@@ -136,7 +136,7 @@ class WaasApi extends BaseAPI {
|
|
|
136
136
|
const headerParameters = {};
|
|
137
137
|
headerParameters['Content-Type'] = 'application/json';
|
|
138
138
|
const response = yield this.request({
|
|
139
|
-
path: `/environments/{environmentId}/waas/delegated/signMessage`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))).replace(`{${"walletId"}}`, encodeURIComponent(String(requestParameters.walletId))),
|
|
139
|
+
path: `/environments/{environmentId}/waas/{walletId}/delegated/signMessage`.replace(`{${"environmentId"}}`, encodeURIComponent(String(requestParameters.environmentId))).replace(`{${"walletId"}}`, encodeURIComponent(String(requestParameters.walletId))),
|
|
140
140
|
method: 'POST',
|
|
141
141
|
headers: headerParameters,
|
|
142
142
|
query: queryParameters,
|