@opexa/portal-sdk 0.59.68 → 0.59.69

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.cjs CHANGED
@@ -11270,7 +11270,21 @@ var Sdk = class {
11270
11270
  };
11271
11271
  }
11272
11272
  async platformGames(input) {
11273
- const res = await this.walletService.platformGames(input);
11273
+ let variables;
11274
+ if (input) {
11275
+ const { search, ...rest } = input;
11276
+ variables = search === void 0 ? rest : {
11277
+ ...rest,
11278
+ filter: {
11279
+ ...rest.filter,
11280
+ displayName: {
11281
+ ...rest.filter?.displayName,
11282
+ contains: search
11283
+ }
11284
+ }
11285
+ };
11286
+ }
11287
+ const res = await this.walletService.platformGames(variables);
11274
11288
  if (!res.ok) return res;
11275
11289
  return {
11276
11290
  ok: true,
@@ -12039,9 +12053,12 @@ var Sdk = class {
12039
12053
  };
12040
12054
  var NEW_GAME_PROVIDERS = [
12041
12055
  /**/
12056
+ "DG",
12057
+ "E2E",
12042
12058
  "RTG",
12043
12059
  "DARWIN",
12044
12060
  "DRBINGO",
12061
+ "ALIZE",
12045
12062
  "MEGABALL",
12046
12063
  "MEGA2SPIN",
12047
12064
  "EVOLUTION",
@@ -12058,6 +12075,7 @@ var NEW_GAME_PROVIDERS = [
12058
12075
  "TEST",
12059
12076
  "RUBYPLAY",
12060
12077
  "ORTIZ",
12078
+ "ONEAPI_SUPERBULLGAMING",
12061
12079
  "SIMPLEPLAY",
12062
12080
  "SEXYCASINO"
12063
12081
  ];