@pdfvector/util 0.0.14 → 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.
- package/.tsc/lib/index.d.ts +1 -0
- package/.tsc/lib/index.js +3 -0
- package/.tsc/lib/plan.d.ts +1 -0
- package/.tsc/lib/plan.js +3 -0
- package/CHANGELOG.md +14 -0
- package/package.json +1 -1
package/.tsc/lib/index.d.ts
CHANGED
|
@@ -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/.tsc/lib/plan.d.ts
CHANGED
package/.tsc/lib/plan.js
CHANGED
|
@@ -5,18 +5,21 @@ export const planDefinitions = {
|
|
|
5
5
|
monthlyCredits: freeMonthlyCredits,
|
|
6
6
|
monthlyPrice: 0,
|
|
7
7
|
annualPrice: 0,
|
|
8
|
+
maxInstances: 0,
|
|
8
9
|
},
|
|
9
10
|
basic: {
|
|
10
11
|
label: "Basic",
|
|
11
12
|
monthlyCredits: 3000,
|
|
12
13
|
monthlyPrice: 25,
|
|
13
14
|
annualPrice: 23,
|
|
15
|
+
maxInstances: 0,
|
|
14
16
|
},
|
|
15
17
|
pro: {
|
|
16
18
|
label: "Pro",
|
|
17
19
|
monthlyCredits: 100000,
|
|
18
20
|
monthlyPrice: 97,
|
|
19
21
|
annualPrice: 89,
|
|
22
|
+
maxInstances: 0,
|
|
20
23
|
},
|
|
21
24
|
};
|
|
22
25
|
export const planKeys = Object.keys(planDefinitions);
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
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
|
+
|
|
10
|
+
## 0.0.15
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
- [#108](https://github.com/phuctm97/pdfvector/pull/108) [`28b850f`](https://github.com/phuctm97/pdfvector/commit/28b850f3d8cdaa7ec8225cb4e1f1ffcd4a1a23bd) Thanks [@khanhduyvt0101](https://github.com/khanhduyvt0101)! - Add JWT
|
|
16
|
+
|
|
3
17
|
## 0.0.14
|
|
4
18
|
### Patch Changes
|
|
5
19
|
|