@medialane/sdk 0.5.2 → 0.5.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/index.cjs CHANGED
@@ -1141,6 +1141,9 @@ var ApiClient = class {
1141
1141
  submitIntentSignature(id, signature) {
1142
1142
  return this.patch(`/v1/intents/${id}/signature`, { signature });
1143
1143
  }
1144
+ confirmIntent(id, txHash) {
1145
+ return this.patch(`/v1/intents/${id}/confirm`, { txHash });
1146
+ }
1144
1147
  createMintIntent(params) {
1145
1148
  return this.post("/v1/intents/mint", params);
1146
1149
  }