@hubspot/local-dev-lib 5.2.0-beta.0 → 5.2.1-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/enums/build.d.ts CHANGED
@@ -7,6 +7,7 @@ export declare const BUILD_STATUS: {
7
7
  };
8
8
  export declare const SUBBUILD_TYPES: {
9
9
  readonly APP: "APP";
10
+ readonly APPLICATION: "APPLICATION";
10
11
  readonly PRIVATE_APP: "PRIVATE_APP";
11
12
  readonly THEME: "THEME";
12
13
  readonly REACT_THEME: "REACT_THEME";
package/enums/build.js CHANGED
@@ -7,6 +7,7 @@ export const BUILD_STATUS = {
7
7
  };
8
8
  export const SUBBUILD_TYPES = {
9
9
  APP: 'APP',
10
+ APPLICATION: 'APPLICATION',
10
11
  PRIVATE_APP: 'PRIVATE_APP',
11
12
  THEME: 'THEME',
12
13
  REACT_THEME: 'REACT_THEME',
package/package.json CHANGED
@@ -1,8 +1,12 @@
1
1
  {
2
2
  "name": "@hubspot/local-dev-lib",
3
- "version": "5.2.0-beta.0",
3
+ "version": "5.2.1-beta.0",
4
4
  "type": "module",
5
5
  "description": "Provides library functionality for HubSpot local development tooling, including the HubSpot CLI",
6
+ "files": [
7
+ "**/*",
8
+ "!**/__tests__/**"
9
+ ],
6
10
  "repository": {
7
11
  "type": "git",
8
12
  "url": "https://github.com/HubSpot/hubspot-local-dev-lib"
package/types/Apps.d.ts CHANGED
@@ -71,6 +71,8 @@ export type PublicApp = {
71
71
  };
72
72
  allowedExternalUrls: Array<string>;
73
73
  preventProjectMigrations?: boolean;
74
+ authType: string;
75
+ distributionType: string;
74
76
  };
75
77
  export type FetchPublicAppsForPortalResponse = {
76
78
  results: Array<PublicApp>;