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.
- package/dist/client/fetch.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/client/fetch.js
CHANGED
|
@@ -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 = "
|
|
11589
|
+
var BASE_URL = "https://api.contiguity.com";
|
|
11590
11590
|
|
|
11591
11591
|
class ContiguityClient {
|
|
11592
11592
|
token;
|