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.
Files changed (2) hide show
  1. package/dist/cli.js +3 -5
  2. 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: 10000,
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: 500000,
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
- ...(accountLimits.runtimeSignalsLimit !== null || accountLimits.runtimeSignalsUsed !== null
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forkit-connect",
3
- "version": "0.1.27",
3
+ "version": "0.1.28",
4
4
  "description": "Forkit Connect Local Engine - The Global AI Governance Fabric",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",