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