@reverbia/sdk 1.0.0-next.20251114165311 → 1.0.0-next.20251117144849

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.
@@ -831,8 +831,14 @@ var createClient = (config = {}) => {
831
831
  };
832
832
  };
833
833
 
834
+ // src/clientConfig.ts
835
+ var createClientConfig = (config) => ({
836
+ ...config,
837
+ baseUrl: "https://ai-portal-dev.zetachain.com"
838
+ });
839
+
834
840
  // src/client/client.gen.ts
835
- var client = createClient(createConfig());
841
+ var client = createClient(createClientConfig(createConfig()));
836
842
 
837
843
  // src/client/sdk.gen.ts
838
844
  var postApiV1ChatCompletions = (options) => {
@@ -803,8 +803,14 @@ var createClient = (config = {}) => {
803
803
  };
804
804
  };
805
805
 
806
+ // src/clientConfig.ts
807
+ var createClientConfig = (config) => ({
808
+ ...config,
809
+ baseUrl: "https://ai-portal-dev.zetachain.com"
810
+ });
811
+
806
812
  // src/client/client.gen.ts
807
- var client = createClient(createConfig());
813
+ var client = createClient(createClientConfig(createConfig()));
808
814
 
809
815
  // src/client/sdk.gen.ts
810
816
  var postApiV1ChatCompletions = (options) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reverbia/sdk",
3
- "version": "1.0.0-next.20251114165311",
3
+ "version": "1.0.0-next.20251117144849",
4
4
  "description": "",
5
5
  "main": "./dist/client/index.cjs",
6
6
  "module": "./dist/client/index.mjs",