@hubspot/project-parsing-lib 0.2.2-experimental.1 → 0.2.2-experimental.2
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 +2 -2
- package/src/lib/constants.d.ts +0 -1
- package/src/lib/constants.js +0 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hubspot/project-parsing-lib",
|
|
3
|
-
"version": "0.2.2-experimental.
|
|
3
|
+
"version": "0.2.2-experimental.2",
|
|
4
4
|
"description": "Parsing library for converting projects directory structures to their intermediate representation",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
}
|
|
108
108
|
},
|
|
109
109
|
"devDependencies": {
|
|
110
|
-
"@hubspot/npm-scripts": "0.0
|
|
110
|
+
"@hubspot/npm-scripts": "0.3.0",
|
|
111
111
|
"@inquirer/prompts": "^7.1.0",
|
|
112
112
|
"@types/node": "^24.9.0",
|
|
113
113
|
"@types/npm-packlist": "7.0.3",
|
package/src/lib/constants.d.ts
CHANGED
|
@@ -30,7 +30,6 @@ export declare const WEBHOOKS_KEY = "webhooks";
|
|
|
30
30
|
export declare const WEBHOOKS_JOURNAL_KEY = "webhooks-journal";
|
|
31
31
|
export declare const WORKFLOW_ACTIONS_KEY = "workflow-action";
|
|
32
32
|
export declare const ACTIONS_KEY = "action";
|
|
33
|
-
export declare const BREEZE_TOOL_KEY = "breeze-tool";
|
|
34
33
|
export declare const APP_FUNCTIONS_PACKAGE_KEY = "serverless-package";
|
|
35
34
|
export declare const AUTO_GENERATED_COMPONENT_TYPES: string[];
|
|
36
35
|
export interface ComponentMetadata {
|
package/src/lib/constants.js
CHANGED
|
@@ -34,7 +34,6 @@ export const WEBHOOKS_KEY = 'webhooks';
|
|
|
34
34
|
export const WEBHOOKS_JOURNAL_KEY = 'webhooks-journal';
|
|
35
35
|
export const WORKFLOW_ACTIONS_KEY = 'workflow-action';
|
|
36
36
|
export const ACTIONS_KEY = 'action';
|
|
37
|
-
export const BREEZE_TOOL_KEY = 'breeze-tool';
|
|
38
37
|
// Auto-generated component types
|
|
39
38
|
export const APP_FUNCTIONS_PACKAGE_KEY = 'serverless-package';
|
|
40
39
|
export const AUTO_GENERATED_COMPONENT_TYPES = [APP_FUNCTIONS_PACKAGE_KEY];
|
|
@@ -55,9 +54,6 @@ const PAGE_COMPONENT = {
|
|
|
55
54
|
userFriendlyName: 'Page',
|
|
56
55
|
singularComponent: true,
|
|
57
56
|
};
|
|
58
|
-
// Breeze components share a `breeze/` group directory so future breeze features
|
|
59
|
-
// (e.g. breeze/skills, breeze/subagents) can sit alongside breeze/tools.
|
|
60
|
-
const BREEZE_COMPONENT_DIR = 'breeze';
|
|
61
57
|
export const Components = {
|
|
62
58
|
[APP_KEY]: {
|
|
63
59
|
dir: APP_KEY,
|
|
@@ -186,12 +182,6 @@ export const Components = {
|
|
|
186
182
|
singularComponent: true,
|
|
187
183
|
...SUB_COMPONENT_FIELDS,
|
|
188
184
|
},
|
|
189
|
-
[BREEZE_TOOL_KEY]: {
|
|
190
|
-
dir: `${BREEZE_COMPONENT_DIR}/tools`,
|
|
191
|
-
parentComponent: APP_KEY,
|
|
192
|
-
userFriendlyName: 'Breeze Tool',
|
|
193
|
-
...SUB_COMPONENT_FIELDS,
|
|
194
|
-
},
|
|
195
185
|
};
|
|
196
186
|
export const USER_FACING_TO_INTERNAL_TYPE = {
|
|
197
187
|
[APP_KEY]: 'APPLICATION',
|