@hubspot/cli 7.7.16-experimental.5 → 7.7.16-experimental.6

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.
@@ -92,11 +92,10 @@ async function handler(args) {
92
92
  await (0, polling_1.poll)(() => (0, developerTestAccounts_1.fetchDeveloperTestAccountGateSyncStatus)(derivedAccountId, testAccountId), {
93
93
  successStates: ['SUCCESS'],
94
94
  errorStates: [],
95
- }, 5000 // 5 seconds
96
- );
95
+ });
97
96
  // HACK: The status endpoint sometimes returns an early success status.
98
- // Sleep for an extra 5 seconds to make sure the status is actually success.
99
- await new Promise(resolve => setTimeout(resolve, 5000));
97
+ // Sleep for an extra 2 seconds to make sure the sync is actually complete.
98
+ await new Promise(resolve => setTimeout(resolve, 2000));
100
99
  SpinniesManager_1.default.succeed('createTestAccount', {
101
100
  text: en_1.commands.testAccount.create.polling.success(testAccountConfig.accountName, testAccountId),
102
101
  });
package/lang/en.d.ts CHANGED
@@ -1499,10 +1499,10 @@ ${string}`;
1499
1499
  readonly describe: "Commands for managing apps.";
1500
1500
  readonly subcommands: {
1501
1501
  readonly install: {
1502
- readonly describe: "Install an app.";
1502
+ readonly describe: "Install an OAuth app into a test account.";
1503
1503
  readonly options: {
1504
1504
  readonly appUid: "The uid of the app to install";
1505
- readonly projectName: "The name of the project to install the app to";
1505
+ readonly projectName: "The name of the project that contains the app";
1506
1506
  };
1507
1507
  readonly positionals: {
1508
1508
  readonly testAccountId: "The id of the test account to install the app into";
package/lang/en.js CHANGED
@@ -1497,10 +1497,10 @@ exports.commands = {
1497
1497
  describe: 'Commands for managing apps.',
1498
1498
  subcommands: {
1499
1499
  install: {
1500
- describe: 'Install an app.',
1500
+ describe: 'Install an OAuth app into a test account.',
1501
1501
  options: {
1502
1502
  appUid: 'The uid of the app to install',
1503
- projectName: 'The name of the project to install the app to',
1503
+ projectName: 'The name of the project that contains the app',
1504
1504
  },
1505
1505
  positionals: {
1506
1506
  testAccountId: 'The id of the test account to install the app into',
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@hubspot/cli",
3
- "version": "7.7.16-experimental.5",
3
+ "version": "7.7.16-experimental.6",
4
4
  "description": "The official CLI for developing on HubSpot",
5
5
  "license": "Apache-2.0",
6
6
  "repository": "https://github.com/HubSpot/hubspot-cli",
7
7
  "dependencies": {
8
- "@hubspot/local-dev-lib": "3.11.0",
8
+ "@hubspot/local-dev-lib": "3.12.0",
9
9
  "@hubspot/project-parsing-lib": "0.5.0",
10
10
  "@hubspot/serverless-dev-runtime": "7.0.6",
11
11
  "@hubspot/theme-preview-dev-server": "0.0.10",