@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.mjs CHANGED
@@ -3475,7 +3475,10 @@ var WorkspaceClient = class {
3475
3475
  "x-tenant-id": tenantId,
3476
3476
  ...config.headers
3477
3477
  };
3478
- this.resources = new ResourcesClient(this.baseURL, () => ({ ...this.headers }));
3478
+ this.resources = new ResourcesClient(this.baseURL, () => ({
3479
+ ...this.headers,
3480
+ ...Client.getWorkspaceHeaders()
3481
+ }));
3479
3482
  }
3480
3483
  async request(url, options = {}) {
3481
3484
  const fullUrl = `${this.baseURL}${url}`;