@gpt-core/admin 0.1.0-alpha.2 → 0.2.0

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
@@ -904,7 +904,7 @@ var BaseClient = class {
904
904
  }
905
905
  getHeaders() {
906
906
  return {
907
- "x-application-id": this.config.applicationId || "default"
907
+ "x-application-key": this.config.apiKey || ""
908
908
  };
909
909
  }
910
910
  };
package/dist/index.mjs CHANGED
@@ -857,7 +857,7 @@ var BaseClient = class {
857
857
  }
858
858
  getHeaders() {
859
859
  return {
860
- "x-application-id": this.config.applicationId || "default"
860
+ "x-application-key": this.config.apiKey || ""
861
861
  };
862
862
  }
863
863
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gpt-core/admin",
3
- "version": "0.1.0-alpha.2",
3
+ "version": "0.2.0",
4
4
  "description": "TypeScript SDK for GPT Core Admin API - Platform administration and ISV management",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",