@pdfvector/util 0.0.15 → 0.0.16

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.
@@ -12,6 +12,7 @@ export declare const appPort = 37000;
12
12
  export declare const websiteURL: string;
13
13
  export declare const appURL: string;
14
14
  export declare const gatewayServerURL: string;
15
+ export declare const generalInstanceServerURL: string;
15
16
  export declare const productTitle = "PDF Vector";
16
17
  export interface ErrorService {
17
18
  captureError: (error: unknown) => void;
package/.tsc/lib/index.js CHANGED
@@ -71,6 +71,9 @@ export const appURL = isLocal
71
71
  export const gatewayServerURL = isLocal
72
72
  ? `http://localhost:${gatewayServerPort}`
73
73
  : "https://gateway.pdfvector.com";
74
+ export const generalInstanceServerURL = isLocal
75
+ ? `http://localhost:${instanceServerPort}`
76
+ : "https://global.pdfvector.com";
74
77
  export const productTitle = "PDF Vector";
75
78
  export const errorService = {
76
79
  captureError: (error) => {
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @pdfvector/util
2
2
 
3
+ ## 0.0.16
4
+ ### Patch Changes
5
+
6
+
7
+
8
+ - [#125](https://github.com/phuctm97/pdfvector/pull/125) [`0eac9b7`](https://github.com/phuctm97/pdfvector/commit/0eac9b7afdbe9b8a41933fd1f92e48da51fb4480) Thanks [@khanhduyvt0101](https://github.com/khanhduyvt0101)! - Add free public APIs with IP rate limiting and interactive tool pages
9
+
3
10
  ## 0.0.15
4
11
  ### Patch Changes
5
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdfvector/util",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
4
4
  "type": "module",
5
5
  "main": ".tsc/lib/index.js",
6
6
  "files": [