@boltic/sdk 0.0.2 → 0.0.4

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/sdk.mjs CHANGED
@@ -1634,6 +1634,7 @@ class TableResource extends BaseResource {
1634
1634
  const config = client.getConfig();
1635
1635
  this.tablesApiClient = new TablesApiClient(config.apiKey, {
1636
1636
  environment: config.environment,
1637
+ region: config.region,
1637
1638
  timeout: config.timeout,
1638
1639
  debug: config.debug,
1639
1640
  retryAttempts: config.retryAttempts,
@@ -1927,6 +1928,7 @@ class ColumnResource extends BaseResource {
1927
1928
  const config = client.getConfig();
1928
1929
  this.columnsApiClient = new ColumnsApiClient(config.apiKey, {
1929
1930
  environment: config.environment,
1931
+ region: config.region,
1930
1932
  timeout: config.timeout,
1931
1933
  debug: config.debug,
1932
1934
  retryAttempts: config.retryAttempts,
@@ -1935,6 +1937,7 @@ class ColumnResource extends BaseResource {
1935
1937
  });
1936
1938
  this.tablesApiClient = new TablesApiClient(config.apiKey, {
1937
1939
  environment: config.environment,
1940
+ region: config.region,
1938
1941
  timeout: config.timeout,
1939
1942
  debug: config.debug,
1940
1943
  retryAttempts: config.retryAttempts,
@@ -2667,11 +2670,13 @@ class RecordResource {
2667
2670
  this.client = client;
2668
2671
  this.apiClient = new RecordsApiClient(client.getConfig().apiKey, {
2669
2672
  environment: client.getConfig().environment,
2673
+ region: client.getConfig().region,
2670
2674
  timeout: client.getConfig().timeout,
2671
2675
  debug: client.getConfig().debug
2672
2676
  });
2673
2677
  this.tablesApiClient = new TablesApiClient(client.getConfig().apiKey, {
2674
2678
  environment: client.getConfig().environment,
2679
+ region: client.getConfig().region,
2675
2680
  timeout: client.getConfig().timeout,
2676
2681
  debug: client.getConfig().debug
2677
2682
  });