@hubspot/local-dev-lib 0.4.0-experimental.1 → 0.4.2-experimental.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.
@@ -17,7 +17,36 @@ export type CreateDeveloperTestAccountResponse = {
17
17
  currentUserHasAccess: boolean;
18
18
  personalAccessKey: string;
19
19
  };
20
+ export type CreateDeveloperTestAccountV3Response = {
21
+ id: number;
22
+ accountName: string;
23
+ };
20
24
  export type FetchDeveloperTestAccountsResponse = {
21
25
  results: DeveloperTestAccount[];
22
26
  maxTestPortals: number;
23
27
  };
28
+ export type AccountLevel = 'FREE' | 'STARTER' | 'PROFESSIONAL' | 'ENTERPRISE';
29
+ export type DeveloperTestAccountConfig = {
30
+ accountName: string;
31
+ description?: string;
32
+ marketingLevel?: AccountLevel;
33
+ opsLevel?: AccountLevel;
34
+ serviceLevel?: AccountLevel;
35
+ salesLevel?: AccountLevel;
36
+ contentLevel?: AccountLevel;
37
+ };
38
+ export type InstallOauthAppIntoDeveloperTestAccountResponse = {
39
+ authCodes: Array<{
40
+ developerQualifiedSymbol: {
41
+ projectName: string;
42
+ developerSymbol: string;
43
+ };
44
+ authCode: string;
45
+ }>;
46
+ };
47
+ export type TestPortalStatusResponse = {
48
+ status: 'IN_PROGRESS' | 'SUCCESS';
49
+ };
50
+ export type GenerateDeveloperTestAccountPersonalAccessKeyResponse = {
51
+ personalAccessKey: string;
52
+ };