@pdfvector/util 0.0.9 → 0.0.10

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.
@@ -3,6 +3,8 @@ export declare const isLocal: boolean;
3
3
  export declare const isLive: boolean;
4
4
  export declare const instanceServerPort = 34000;
5
5
  export declare const gatewayServerPort = 35000;
6
+ export declare const websitePort = 36000;
7
+ export declare const websiteURL: string;
6
8
  export declare const productTitle = "PDF Vector";
7
9
  export interface ErrorService {
8
10
  captureError: (error: unknown) => void;
package/.tsc/lib/index.js CHANGED
@@ -56,6 +56,10 @@ export const isLocal = envLocal === "1" || envLocal === "true";
56
56
  export const isLive = !isLocal;
57
57
  export const instanceServerPort = 34000;
58
58
  export const gatewayServerPort = 35000;
59
+ export const websitePort = 36000;
60
+ export const websiteURL = isLocal
61
+ ? `http://localhost:${websitePort}`
62
+ : "https://www.pdfvector.com";
59
63
  export const productTitle = "PDF Vector";
60
64
  export const errorService = {
61
65
  captureError: (error) => {
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @pdfvector/util
2
2
 
3
+ ## 0.0.10
4
+ ### Patch Changes
5
+
6
+
7
+
8
+ - [#66](https://github.com/phuctm97/pdfvector/pull/66) [`b610666`](https://github.com/phuctm97/pdfvector/commit/b610666e124e4f8f94d318dbb5498d1818840599) Thanks [@phuctm97](https://github.com/phuctm97)! - Add React Email and Nodemailer email sending support with verification and password reset templates
9
+
3
10
  ## 0.0.9
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.9",
3
+ "version": "0.0.10",
4
4
  "type": "module",
5
5
  "main": ".tsc/lib/index.js",
6
6
  "files": [