@axiom-lattice/client-sdk 2.1.53 → 2.1.55

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.js CHANGED
@@ -3499,7 +3499,10 @@ var WorkspaceClient = class {
3499
3499
  "x-tenant-id": tenantId,
3500
3500
  ...config.headers
3501
3501
  };
3502
- this.resources = new ResourcesClient(this.baseURL, () => ({ ...this.headers }));
3502
+ this.resources = new ResourcesClient(this.baseURL, () => ({
3503
+ ...this.headers,
3504
+ ...Client.getWorkspaceHeaders()
3505
+ }));
3503
3506
  }
3504
3507
  async request(url, options = {}) {
3505
3508
  const fullUrl = `${this.baseURL}${url}`;