contiguity 0.0.2 → 0.0.3

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.
@@ -2,7 +2,7 @@ import { ContiguityRawResponse } from "@/types/response";
2
2
  import { ContiguityAPIError, ContiguityError } from "@/types/error";
3
3
  // year | month | version (monthly)
4
4
  const LATEST_API_VERSION = "v2025.8.20";
5
- const BASE_URL = "http://localhost:8080";
5
+ const BASE_URL = "https://api.contiguity.com"; // "http://localhost:8080";
6
6
  /**
7
7
  * Contiguity API client with request functionality
8
8
  */
package/dist/index.js CHANGED
@@ -11586,7 +11586,7 @@ class ContiguitySDKError extends Error {
11586
11586
 
11587
11587
  // src/client/fetch.ts
11588
11588
  var LATEST_API_VERSION = "v2025.8.20";
11589
- var BASE_URL = "http://localhost:8080";
11589
+ var BASE_URL = "https://api.contiguity.com";
11590
11590
 
11591
11591
  class ContiguityClient {
11592
11592
  token;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "contiguity",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "type": "module",
5
5
  "description": "Contiguity's official TypeScript SDK",
6
6
  "author": "Contiguity",