@trustware/sdk-staging 1.1.3-staging.20 → 1.1.3-staging.31

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/wallet.cjs CHANGED
@@ -249,7 +249,7 @@ var import_web3 = require("@solana/web3.js");
249
249
 
250
250
  // src/constants.ts
251
251
  var SDK_NAME = "@trustware/sdk";
252
- var SDK_VERSION = "1.1.3-staging.20";
252
+ var SDK_VERSION = "1.1.3-staging.31";
253
253
  var API_ROOT = "https://bv-staging-api.trustware.io";
254
254
  var API_PREFIX = "/api";
255
255
  var ASSETS_BASE_URL = "https://app.trustware.io";
@@ -280,7 +280,8 @@ var DEFAULT_RETRY_CONFIG = {
280
280
  };
281
281
  var DEFAULT_FEATURE_FLAGS = {
282
282
  tokensPagination: false,
283
- balanceStreaming: false
283
+ balanceStreaming: false,
284
+ shouldAllowGA4: true
284
285
  };
285
286
 
286
287
  // src/config/merge.ts
@@ -368,7 +369,8 @@ function resolveConfig(input) {
368
369
  const walletConnect = resolveWalletConnectConfig(input.walletConnect);
369
370
  const features = {
370
371
  tokensPagination: input.features?.tokensPagination ?? DEFAULT_FEATURE_FLAGS.tokensPagination,
371
- balanceStreaming: input.features?.balanceStreaming ?? DEFAULT_FEATURE_FLAGS.balanceStreaming
372
+ balanceStreaming: input.features?.balanceStreaming ?? DEFAULT_FEATURE_FLAGS.balanceStreaming,
373
+ shouldAllowGA4: input.features?.shouldAllowGA4 ?? DEFAULT_FEATURE_FLAGS.shouldAllowGA4
372
374
  };
373
375
  return {
374
376
  apiKey: input.apiKey,