@hubspot/project-parsing-lib 0.20.0 → 0.21.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubspot/project-parsing-lib",
3
- "version": "0.20.0",
3
+ "version": "0.21.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",
@@ -13,6 +13,7 @@ import { ComponentMeta as ComponentsTopLevel } from './types.js';
13
13
  export declare const APP_KEY = "app";
14
14
  export declare const THEME_KEY = "theme";
15
15
  export declare const CMS_ASSETS_KEY = "cms-assets";
16
+ export declare const API_CLIENT_KEY = "api-client";
16
17
  export declare const APP_EVENTS_KEY = "app-event";
17
18
  export declare const APP_FUNCTIONS_KEY = "app-function";
18
19
  export declare const PAGE_KEY = "page";
@@ -23,6 +24,7 @@ export declare const CALLING_KEY = "calling";
23
24
  export declare const CARDS_KEY = "card";
24
25
  export declare const SCIM_KEY = "scim";
25
26
  export declare const MARKETING_EVENTS_KEY = "marketing-event";
27
+ export declare const MCP_CLIENT_KEY = "mcp-client";
26
28
  export declare const MCP_SERVER_KEY = "mcp-server";
27
29
  export declare const MEDIA_BRIDGE_KEY = "media-bridge";
28
30
  export declare const SETTINGS_KEY = "settings";
@@ -18,6 +18,7 @@ export const APP_KEY = 'app';
18
18
  export const THEME_KEY = 'theme';
19
19
  export const CMS_ASSETS_KEY = 'cms-assets';
20
20
  // Sub-Component types
21
+ export const API_CLIENT_KEY = 'api-client';
21
22
  export const APP_EVENTS_KEY = 'app-event';
22
23
  export const APP_FUNCTIONS_KEY = 'app-function';
23
24
  export const PAGE_KEY = 'page';
@@ -28,6 +29,7 @@ export const CALLING_KEY = 'calling';
28
29
  export const CARDS_KEY = 'card';
29
30
  export const SCIM_KEY = 'scim';
30
31
  export const MARKETING_EVENTS_KEY = 'marketing-event';
32
+ export const MCP_CLIENT_KEY = 'mcp-client';
31
33
  export const MCP_SERVER_KEY = 'mcp-server';
32
34
  export const MEDIA_BRIDGE_KEY = 'media-bridge';
33
35
  export const SETTINGS_KEY = 'settings';
@@ -64,6 +66,13 @@ export const Components = {
64
66
  ...TOP_LEVEL_COMPONENT_FIELDS,
65
67
  singularComponent: true,
66
68
  },
69
+ [API_CLIENT_KEY]: {
70
+ dir: API_CLIENT_KEY,
71
+ parentComponent: APP_KEY,
72
+ userFriendlyName: 'API Client',
73
+ singularComponent: true,
74
+ ...SUB_COMPONENT_FIELDS,
75
+ },
67
76
  [APP_OBJECT_KEY]: {
68
77
  dir: 'app-objects',
69
78
  parentComponent: APP_KEY,
@@ -178,6 +187,13 @@ export const Components = {
178
187
  singularComponent: true,
179
188
  ...SUB_COMPONENT_FIELDS,
180
189
  },
190
+ [MCP_CLIENT_KEY]: {
191
+ dir: MCP_CLIENT_KEY,
192
+ parentComponent: APP_KEY,
193
+ userFriendlyName: 'MCP Client',
194
+ singularComponent: true,
195
+ ...SUB_COMPONENT_FIELDS,
196
+ },
181
197
  [MCP_SERVER_KEY]: {
182
198
  dir: MCP_SERVER_KEY,
183
199
  parentComponent: APP_KEY,