@pdfvector/util 0.0.14 → 0.0.15

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,7 @@ export interface PlanDefinition {
3
3
  monthlyCredits: number;
4
4
  monthlyPrice: number;
5
5
  annualPrice: number;
6
+ maxInstances: number;
6
7
  }
7
8
  export type PlanKey = "free" | "basic" | "pro";
8
9
  export type AnyPlanKey = string;
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,12 @@
1
1
  # @pdfvector/util
2
2
 
3
+ ## 0.0.15
4
+ ### Patch Changes
5
+
6
+
7
+
8
+ - [#108](https://github.com/phuctm97/pdfvector/pull/108) [`28b850f`](https://github.com/phuctm97/pdfvector/commit/28b850f3d8cdaa7ec8225cb4e1f1ffcd4a1a23bd) Thanks [@khanhduyvt0101](https://github.com/khanhduyvt0101)! - Add JWT
9
+
3
10
  ## 0.0.14
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.14",
3
+ "version": "0.0.15",
4
4
  "type": "module",
5
5
  "main": ".tsc/lib/index.js",
6
6
  "files": [