@medialane/sdk 0.118.1 → 0.119.0

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
@@ -471,6 +471,9 @@ var ApiClient = class {
471
471
  confirmIntent(id, txHash) {
472
472
  return this.patch(`/v1/intents/${id}/confirm`, { txHash });
473
473
  }
474
+ syncTransaction(txHash) {
475
+ return this.post("/v1/tx/sync", { txHash });
476
+ }
474
477
  createMintIntent(params) {
475
478
  return this.post("/v1/intents/mint", params);
476
479
  }
@@ -480,8 +483,8 @@ var ApiClient = class {
480
483
  createTierIntent(params) {
481
484
  return this.post("/v1/intents/create-tier", params);
482
485
  }
483
- mintCalls(params) {
484
- return this.post("/v1/business/issuance/mint-calls", params);
486
+ emitToRecipients(params) {
487
+ return this.post("/v1/business/issuance/emission", params);
485
488
  }
486
489
  createCoinIntent(params) {
487
490
  return this.post("/v1/intents/create-coin", params);