@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 +5 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/dist/{services-FKBetXcu.d.ts → services-4Z16tkFa.d.ts} +12 -6
- package/dist/{services-B4ygB908.d.cts → services-CkUqZ75g.d.cts} +12 -6
- package/dist/starknet/index.cjs +376 -14
- package/dist/starknet/index.cjs.map +1 -1
- package/dist/starknet/index.d.cts +17 -3
- package/dist/starknet/index.d.ts +17 -3
- package/dist/starknet/index.js +374 -15
- package/dist/starknet/index.js.map +1 -1
- package/package.json +1 -1
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
|
-
|
|
484
|
-
return this.post("/v1/business/issuance/
|
|
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);
|