@settlemint/dalp-sdk 2.1.7-main.22912520622 → 2.1.7-main.22916486052
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 +7 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -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.22916486052",
|
|
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