@coin-voyage/shared 2.3.3-beta.0 → 2.3.4
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/api/client.js +1 -1
- package/dist/types/api.d.ts +1 -0
- package/package.json +1 -1
package/dist/api/client.js
CHANGED
|
@@ -185,7 +185,7 @@ export class ApiClient {
|
|
|
185
185
|
}
|
|
186
186
|
}
|
|
187
187
|
const path = `/pay-orders/${payOrderId}/refund`;
|
|
188
|
-
const signature = this.generateAuthorizationSignature(apiSecret, "POST",
|
|
188
|
+
const signature = this.generateAuthorizationSignature(apiSecret, "POST", path);
|
|
189
189
|
return this.request({
|
|
190
190
|
path,
|
|
191
191
|
options: {
|
package/dist/types/api.d.ts
CHANGED