@xoxno/sdk-js 1.0.100 → 1.0.102
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/README.md +6 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/sdk/swagger.d.ts +20 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -734,6 +734,9 @@ sdk.pool.poolId("...").uploadPicture.PUT(...); // StakingPoolDoc
|
|
|
734
734
|
// GET /search
|
|
735
735
|
sdk.search(...); // GlobalSearchResourcesPaginated
|
|
736
736
|
|
|
737
|
+
// GET /stellar/aggregator/quote
|
|
738
|
+
sdk.stellar.aggregator.quote(...); // SoroswapQuoteResponseDto
|
|
739
|
+
|
|
737
740
|
// GET /tokens
|
|
738
741
|
sdk.tokens(...); // TokenDataDocHydrated[]
|
|
739
742
|
|
|
@@ -938,6 +941,9 @@ sdk.user.notifications.clear.DELETE(...); // SuccessDto
|
|
|
938
941
|
// PATCH /user/notifications/read
|
|
939
942
|
sdk.user.notifications.read.PATCH(...); // NotificationDoc|SuccessDto
|
|
940
943
|
|
|
944
|
+
// GET /user/stellar/challenge
|
|
945
|
+
sdk.user.stellar.challenge(...); // StellarChallengeResponseDto
|
|
946
|
+
|
|
941
947
|
// GET /user/native-token
|
|
942
948
|
sdk.user.nativeToken(...); // string
|
|
943
949
|
|