@settlemint/dalp-sdk 2.1.7-main.22912953211 → 2.1.7-main.22919170075
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.js +11 -11
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -12671,28 +12671,28 @@ var create7 = v2Contract.route({
|
|
|
12671
12671
|
description: "Create a new fixed yield schedule contract",
|
|
12672
12672
|
successDescription: "Fixed yield schedule created",
|
|
12673
12673
|
tags: [...TAGS20]
|
|
12674
|
-
}).input(v2Input.body(FixedYieldScheduleCreateInputSchema)).output(
|
|
12674
|
+
}).input(v2Input.body(FixedYieldScheduleCreateInputSchema)).output(createAsyncBlockchainMutationResponse(FixedYieldScheduleSchema2));
|
|
12675
12675
|
var topUp = v2Contract.route({
|
|
12676
12676
|
method: "POST",
|
|
12677
12677
|
path: "/addons/fixed-yield/{scheduleAddress}/top-up",
|
|
12678
12678
|
description: "Top up the denomination asset in a fixed yield schedule",
|
|
12679
12679
|
successDescription: "Fixed yield schedule topped up",
|
|
12680
12680
|
tags: [...TAGS20]
|
|
12681
|
-
}).input(v2Input.paramsBody(z295.object({ scheduleAddress: FixedYieldScheduleTopUpInputSchema.shape.scheduleAddress }), FixedYieldScheduleTopUpInputSchema.omit({ scheduleAddress: true }))).output(
|
|
12681
|
+
}).input(v2Input.paramsBody(z295.object({ scheduleAddress: FixedYieldScheduleTopUpInputSchema.shape.scheduleAddress }), FixedYieldScheduleTopUpInputSchema.omit({ scheduleAddress: true }))).output(createAsyncBlockchainMutationResponse(FixedYieldScheduleTopUpOutputSchema));
|
|
12682
12682
|
var withdraw = v2Contract.route({
|
|
12683
12683
|
method: "POST",
|
|
12684
12684
|
path: "/addons/fixed-yield/{scheduleAddress}/withdraw",
|
|
12685
12685
|
description: "Withdraw the denomination asset from a fixed yield schedule",
|
|
12686
12686
|
successDescription: "Fixed yield schedule withdrawal completed",
|
|
12687
12687
|
tags: [...TAGS20]
|
|
12688
|
-
}).input(v2Input.paramsBody(z295.object({ scheduleAddress: FixedYieldScheduleWithdrawInputSchema.shape.scheduleAddress }), FixedYieldScheduleWithdrawInputSchema.omit({ scheduleAddress: true }))).output(
|
|
12688
|
+
}).input(v2Input.paramsBody(z295.object({ scheduleAddress: FixedYieldScheduleWithdrawInputSchema.shape.scheduleAddress }), FixedYieldScheduleWithdrawInputSchema.omit({ scheduleAddress: true }))).output(createAsyncBlockchainMutationResponse(FixedYieldScheduleWithdrawOutputSchema));
|
|
12689
12689
|
var claim = v2Contract.route({
|
|
12690
12690
|
method: "POST",
|
|
12691
12691
|
path: "/addons/fixed-yield/{scheduleAddress}/claim",
|
|
12692
12692
|
description: "Claim yield from a fixed yield schedule contract",
|
|
12693
12693
|
successDescription: "Fixed yield schedule claim completed",
|
|
12694
12694
|
tags: [...TAGS20]
|
|
12695
|
-
}).input(v2Input.paramsBody(z295.object({ scheduleAddress: FixedYieldScheduleClaimInputSchema.shape.scheduleAddress }), FixedYieldScheduleClaimInputSchema.omit({ scheduleAddress: true }))).output(
|
|
12695
|
+
}).input(v2Input.paramsBody(z295.object({ scheduleAddress: FixedYieldScheduleClaimInputSchema.shape.scheduleAddress }), FixedYieldScheduleClaimInputSchema.omit({ scheduleAddress: true }))).output(createAsyncBlockchainMutationResponse(FixedYieldScheduleClaimOutputSchema));
|
|
12696
12696
|
var fixedYieldV2Contract = {
|
|
12697
12697
|
read: read10,
|
|
12698
12698
|
create: create7,
|
|
@@ -14473,21 +14473,21 @@ var registerExternal2 = v2Contract.route({
|
|
|
14473
14473
|
successDescription: "Feed registered successfully",
|
|
14474
14474
|
successStatus: 201,
|
|
14475
14475
|
tags: [...TAGS24]
|
|
14476
|
-
}).input(v2Input.body(FeedRegisterExternalInputSchema)).output(
|
|
14476
|
+
}).input(v2Input.body(FeedRegisterExternalInputSchema)).output(createAsyncBlockchainMutationResponse(FeedRegisterExternalOutputSchema));
|
|
14477
14477
|
var replace2 = v2Contract.route({
|
|
14478
14478
|
method: "PUT",
|
|
14479
14479
|
path: "/system/feeds/replace",
|
|
14480
14480
|
description: "Replace the feed registered for a (subject, topic) pair with a new feed address",
|
|
14481
14481
|
successDescription: "Feed replaced successfully",
|
|
14482
14482
|
tags: [...TAGS24]
|
|
14483
|
-
}).input(v2Input.body(FeedReplaceInputSchema)).output(
|
|
14483
|
+
}).input(v2Input.body(FeedReplaceInputSchema)).output(createAsyncBlockchainMutationResponse(FeedReplaceOutputSchema));
|
|
14484
14484
|
var remove3 = v2Contract.route({
|
|
14485
14485
|
method: "DELETE",
|
|
14486
14486
|
path: "/system/feeds/remove",
|
|
14487
14487
|
description: "Remove the feed registered for a (subject, topic) pair from the directory",
|
|
14488
14488
|
successDescription: "Feed removed successfully",
|
|
14489
14489
|
tags: [...TAGS24]
|
|
14490
|
-
}).input(v2Input.body(FeedRemoveInputSchema)).output(
|
|
14490
|
+
}).input(v2Input.body(FeedRemoveInputSchema)).output(createAsyncBlockchainMutationResponse(FeedRemoveOutputSchema));
|
|
14491
14491
|
var latest2 = v2Contract.route({
|
|
14492
14492
|
method: "GET",
|
|
14493
14493
|
path: "/system/feeds/{feedAddress}/latest",
|
|
@@ -14529,7 +14529,7 @@ var submit2 = v2Contract.route({
|
|
|
14529
14529
|
description: "Sign and submit a feed update using the backend-managed signer (EIP-712)",
|
|
14530
14530
|
successDescription: "Feed update submitted",
|
|
14531
14531
|
tags: [...TAGS24]
|
|
14532
|
-
}).input(v2Input.paramsBody(z345.object({ feedAddress: FeedSubmitInputSchema.shape.feedAddress }), z345.object(FeedSubmitInputSchema.shape).omit({ feedAddress: true }))).output(
|
|
14532
|
+
}).input(v2Input.paramsBody(z345.object({ feedAddress: FeedSubmitInputSchema.shape.feedAddress }), z345.object(FeedSubmitInputSchema.shape).omit({ feedAddress: true }))).output(createAsyncBlockchainMutationResponse(FeedSubmitOutputSchema));
|
|
14533
14533
|
var issuerSignedCreate2 = v2Contract.route({
|
|
14534
14534
|
method: "POST",
|
|
14535
14535
|
path: "/system/feeds/issuer-signed/create",
|
|
@@ -14537,7 +14537,7 @@ var issuerSignedCreate2 = v2Contract.route({
|
|
|
14537
14537
|
successDescription: "Feed created and registered",
|
|
14538
14538
|
successStatus: 201,
|
|
14539
14539
|
tags: [...TAGS24]
|
|
14540
|
-
}).input(v2Input.body(IssuerSignedCreateInputSchema)).output(
|
|
14540
|
+
}).input(v2Input.body(IssuerSignedCreateInputSchema)).output(createAsyncBlockchainMutationResponse(IssuerSignedCreateOutputSchema));
|
|
14541
14541
|
var issuerSignedList2 = v2Contract.route({
|
|
14542
14542
|
method: "GET",
|
|
14543
14543
|
path: "/system/feeds/issuer-signed",
|
|
@@ -14552,7 +14552,7 @@ var adapterCreate2 = v2Contract.route({
|
|
|
14552
14552
|
successDescription: "Adapter created",
|
|
14553
14553
|
successStatus: 201,
|
|
14554
14554
|
tags: [...TAGS24]
|
|
14555
|
-
}).input(v2Input.body(AdapterCreateInputSchema)).output(
|
|
14555
|
+
}).input(v2Input.body(AdapterCreateInputSchema)).output(createAsyncBlockchainMutationResponse(AdapterCreateOutputSchema));
|
|
14556
14556
|
var adapterList2 = v2Contract.route({
|
|
14557
14557
|
method: "GET",
|
|
14558
14558
|
path: "/system/feeds/adapters",
|
|
@@ -16832,7 +16832,7 @@ var dalpSerializers = [
|
|
|
16832
16832
|
// package.json
|
|
16833
16833
|
var package_default = {
|
|
16834
16834
|
name: "@settlemint/dalp-sdk",
|
|
16835
|
-
version: "2.1.7-main.
|
|
16835
|
+
version: "2.1.7-main.22919170075",
|
|
16836
16836
|
private: false,
|
|
16837
16837
|
description: "Fully typed SDK for the DALP tokenization platform API",
|
|
16838
16838
|
homepage: "https://settlemint.com",
|
package/package.json
CHANGED