@hubspot/project-parsing-lib 0.22.1-beta.0 → 0.23.0-beta.0
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/package.json +1 -1
- package/src/lib/constants.d.ts +3 -0
- package/src/lib/constants.js +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hubspot/project-parsing-lib",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.23.0-beta.0",
|
|
4
4
|
"description": "Parsing library for converting projects directory structures to their intermediate representation",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
package/src/lib/constants.d.ts
CHANGED
|
@@ -7,6 +7,9 @@ export declare const PLATFORM_VERSIONS: {
|
|
|
7
7
|
readonly v2026_03_BETA: "2026.03-beta";
|
|
8
8
|
readonly v2026_03: "2026.03";
|
|
9
9
|
readonly v2026_09_BETA: "2026.09-beta";
|
|
10
|
+
readonly v2026_09: "2026.09";
|
|
11
|
+
readonly v2027_03_BETA: "2027.03-beta";
|
|
12
|
+
readonly v2027_03: "2027.03";
|
|
10
13
|
readonly UNSTABLE: "unstable";
|
|
11
14
|
};
|
|
12
15
|
import { ComponentMeta as ComponentsTopLevel } from './types.js';
|
package/src/lib/constants.js
CHANGED
|
@@ -9,6 +9,9 @@ export const PLATFORM_VERSIONS = {
|
|
|
9
9
|
v2026_03_BETA: '2026.03-beta',
|
|
10
10
|
v2026_03: '2026.03',
|
|
11
11
|
v2026_09_BETA: '2026.09-beta',
|
|
12
|
+
v2026_09: '2026.09',
|
|
13
|
+
v2027_03_BETA: '2027.03-beta',
|
|
14
|
+
v2027_03: '2027.03',
|
|
12
15
|
UNSTABLE: 'unstable',
|
|
13
16
|
};
|
|
14
17
|
// Top Level Component types
|