@hubspot/project-parsing-lib 0.14.0 → 0.14.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubspot/project-parsing-lib",
3
- "version": "0.14.0",
3
+ "version": "0.14.1",
4
4
  "description": "Parsing library for converting projects directory structures to their intermediate representation",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -28,6 +28,7 @@ export declare const VIDEO_CONFERENCING_KEY = "video-conferencing";
28
28
  export declare const WEBHOOKS_KEY = "webhooks";
29
29
  export declare const WEBHOOKS_JOURNAL_KEY = "webhooks-journal";
30
30
  export declare const WORKFLOW_ACTIONS_KEY = "workflow-action";
31
+ export declare const ACTIONS_KEY = "action";
31
32
  export declare const APP_FUNCTIONS_PACKAGE_KEY = "serverless-package";
32
33
  export declare const AUTO_GENERATED_COMPONENT_TYPES: string[];
33
34
  export interface ComponentMetadata {
@@ -32,6 +32,7 @@ export const VIDEO_CONFERENCING_KEY = 'video-conferencing';
32
32
  export const WEBHOOKS_KEY = 'webhooks';
33
33
  export const WEBHOOKS_JOURNAL_KEY = 'webhooks-journal';
34
34
  export const WORKFLOW_ACTIONS_KEY = 'workflow-action';
35
+ export const ACTIONS_KEY = 'action';
35
36
  // Auto-generated component types
36
37
  export const APP_FUNCTIONS_PACKAGE_KEY = 'serverless-package';
37
38
  export const AUTO_GENERATED_COMPONENT_TYPES = [APP_FUNCTIONS_PACKAGE_KEY];
@@ -160,6 +161,12 @@ export const Components = {
160
161
  userFriendlyName: 'Workflow Action',
161
162
  ...SUB_COMPONENT_FIELDS,
162
163
  },
164
+ [ACTIONS_KEY]: {
165
+ dir: 'actions',
166
+ parentComponent: APP_KEY,
167
+ userFriendlyName: 'Action',
168
+ ...SUB_COMPONENT_FIELDS,
169
+ },
163
170
  [TELEMETRY_KEY]: {
164
171
  dir: TELEMETRY_KEY,
165
172
  parentComponent: APP_KEY,