@tradeport/sui-trading-sdk 0.1.42 → 0.1.43

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @tradeport/sui-trading-sdk
2
2
 
3
+ ## 0.1.43
4
+
5
+ ### Patch Changes
6
+
7
+ - a274f06: Added creation of personal kiosk for all claiming methods
8
+
3
9
  ## 0.1.42
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -3056,6 +3056,7 @@ var claimNfts = async ({ nftIds, walletAddress, tx: existingTx }, context, useOl
3056
3056
  tx,
3057
3057
  kioskOwner: txData?.claimer,
3058
3058
  kiosk: txData?.sellerKiosk,
3059
+ shouldConvertToPersonalKiosk: true,
3059
3060
  async runCommands(kioskTx) {
3060
3061
  await addClaimAcceptedBidNftTx({ ...txData, kioskTx });
3061
3062
  }
@@ -3088,6 +3089,7 @@ var claimNfts = async ({ nftIds, walletAddress, tx: existingTx }, context, useOl
3088
3089
  kioskOwner: txData?.claimer,
3089
3090
  kiosk: txData?.sellerKiosk,
3090
3091
  kioskStrategy: "exclude",
3092
+ shouldConvertToPersonalKiosk: true,
3091
3093
  async runCommands(kioskTx) {
3092
3094
  await addClaimTransferredNftTx({ ...txData, kioskTx });
3093
3095
  }
@@ -3098,6 +3100,7 @@ var claimNfts = async ({ nftIds, walletAddress, tx: existingTx }, context, useOl
3098
3100
  kioskOwner: txData?.claimer,
3099
3101
  kiosk: txData?.sellerKiosk,
3100
3102
  kioskStrategy: "exclude",
3103
+ shouldConvertToPersonalKiosk: true,
3101
3104
  async runCommands(kioskTx) {
3102
3105
  await addClaimTransferredNftWithPurchaseCapTx({ ...txData, kioskTx });
3103
3106
  }