@pdfvector/util 0.0.10 → 0.0.11
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/.tsc/lib/index.d.ts +3 -0
- package/.tsc/lib/index.js +7 -0
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
package/.tsc/lib/index.d.ts
CHANGED
|
@@ -4,7 +4,10 @@ export declare const isLive: boolean;
|
|
|
4
4
|
export declare const instanceServerPort = 34000;
|
|
5
5
|
export declare const gatewayServerPort = 35000;
|
|
6
6
|
export declare const websitePort = 36000;
|
|
7
|
+
export declare const appPort = 37000;
|
|
7
8
|
export declare const websiteURL: string;
|
|
9
|
+
export declare const appURL: string;
|
|
10
|
+
export declare const gatewayServerURL: string;
|
|
8
11
|
export declare const productTitle = "PDF Vector";
|
|
9
12
|
export interface ErrorService {
|
|
10
13
|
captureError: (error: unknown) => void;
|
package/.tsc/lib/index.js
CHANGED
|
@@ -57,9 +57,16 @@ export const isLive = !isLocal;
|
|
|
57
57
|
export const instanceServerPort = 34000;
|
|
58
58
|
export const gatewayServerPort = 35000;
|
|
59
59
|
export const websitePort = 36000;
|
|
60
|
+
export const appPort = 37000;
|
|
60
61
|
export const websiteURL = isLocal
|
|
61
62
|
? `http://localhost:${websitePort}`
|
|
62
63
|
: "https://www.pdfvector.com";
|
|
64
|
+
export const appURL = isLocal
|
|
65
|
+
? `http://localhost:${appPort}`
|
|
66
|
+
: "https://app.pdfvector.com";
|
|
67
|
+
export const gatewayServerURL = isLocal
|
|
68
|
+
? `http://localhost:${gatewayServerPort}`
|
|
69
|
+
: "https://gateway.pdfvector.com";
|
|
63
70
|
export const productTitle = "PDF Vector";
|
|
64
71
|
export const errorService = {
|
|
65
72
|
captureError: (error) => {
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @pdfvector/util
|
|
2
2
|
|
|
3
|
+
## 0.0.11
|
|
4
|
+
### Patch Changes
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
- [#68](https://github.com/phuctm97/pdfvector/pull/68) [`df69b5c`](https://github.com/phuctm97/pdfvector/commit/df69b5caf6ba0f619ab18b0416d13ef370cea864) Thanks [@phuctm97](https://github.com/phuctm97)! - Add Better Auth to gateway-server with email/password authentication, email verification, and password reset
|
|
9
|
+
|
|
3
10
|
## 0.0.10
|
|
4
11
|
### Patch Changes
|
|
5
12
|
|