forkit-connect 0.1.27 → 0.1.28
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/dist/cli.js +3 -5
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -57,7 +57,7 @@ const CLI_FALLBACK_PLAN_LIMITS = {
|
|
|
57
57
|
maxWorkspaces: 3,
|
|
58
58
|
maxProjects: 3,
|
|
59
59
|
maxGovernedPassports: 25,
|
|
60
|
-
runtimeSignalsPerMonth:
|
|
60
|
+
runtimeSignalsPerMonth: null,
|
|
61
61
|
},
|
|
62
62
|
protocol: {
|
|
63
63
|
privatePassports: 250,
|
|
@@ -65,7 +65,7 @@ const CLI_FALLBACK_PLAN_LIMITS = {
|
|
|
65
65
|
maxWorkspaces: 10,
|
|
66
66
|
maxProjects: 50,
|
|
67
67
|
maxGovernedPassports: 250,
|
|
68
|
-
runtimeSignalsPerMonth:
|
|
68
|
+
runtimeSignalsPerMonth: null,
|
|
69
69
|
},
|
|
70
70
|
sovereign: {
|
|
71
71
|
privatePassports: null,
|
|
@@ -1125,9 +1125,7 @@ function buildInteractiveOverviewSections(service, sessionState, accountLimits)
|
|
|
1125
1125
|
shellLine('Drafts', formatRemainingLimit(accountLimits.draftLimit, accountLimits.draftsUsed, 'draft')),
|
|
1126
1126
|
shellLine('Workspaces', formatRemainingLimit(accountLimits.workspaceLimit, accountLimits.workspacesUsed, 'workspace')),
|
|
1127
1127
|
shellLine('Projects', formatRemainingLimit(accountLimits.projectLimit, accountLimits.projectsUsed, 'project')),
|
|
1128
|
-
|
|
1129
|
-
? [shellLine('Runtime signals', formatRemainingLimit(accountLimits.runtimeSignalsLimit, accountLimits.runtimeSignalsUsed, 'runtime signal'))]
|
|
1130
|
-
: []),
|
|
1128
|
+
shellLine('Runtime signals', formatRemainingLimit(accountLimits.runtimeSignalsLimit, accountLimits.runtimeSignalsUsed, 'runtime signal')),
|
|
1131
1129
|
],
|
|
1132
1130
|
});
|
|
1133
1131
|
}
|