snow-flow 10.0.83 → 10.0.84

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
- "version": "10.0.83",
3
+ "version": "10.0.84",
4
4
  "name": "snow-flow",
5
5
  "description": "Snow-Flow - ServiceNow Multi-Agent Development Framework powered by AI",
6
6
  "license": "Elastic-2.0",
@@ -265,11 +265,11 @@ export function DialogAuth() {
265
265
  },
266
266
  },
267
267
  {
268
- title: "Enterprise Portal",
268
+ title: "Snow-Flow Portal",
269
269
  value: "enterprise-portal",
270
270
  description: isEnterpriseConfigured() ? "Connected" : undefined,
271
- category: "Enterprise",
272
- footer: "Jira, Azure DevOps, Confluence",
271
+ category: "Portal",
272
+ footer: "Individual, Teams & Enterprise",
273
273
  onSelect: () => {
274
274
  dialog.replace(() => <DialogAuthEnterprise />)
275
275
  },
@@ -278,7 +278,7 @@ export function DialogAuth() {
278
278
  title: "Select ServiceNow Instance",
279
279
  value: "select-sn-instance",
280
280
  description: isServiceNowConfigured() ? "Connected" : undefined,
281
- category: "Enterprise",
281
+ category: "Portal",
282
282
  footer: "Switch instance via portal",
283
283
  onSelect: () => {
284
284
  dialog.replace(() => <DialogAuthSelectInstance />)
@@ -1251,7 +1251,7 @@ function DialogAuthEnterprise() {
1251
1251
 
1252
1252
  <Show when={step() === "subdomain"}>
1253
1253
  <box gap={1}>
1254
- <text fg={theme.textMuted}>Enter your organization subdomain (e.g., "acme" for acme.snow-flow.dev)</text>
1254
+ <text fg={theme.textMuted}>Enter your subdomain to connect to the Snow-Flow portal</text>
1255
1255
  <textarea
1256
1256
  ref={(val: TextareaRenderable) => (subdomainInput = val)}
1257
1257
  height={3}
@@ -1266,10 +1266,10 @@ function DialogAuthEnterprise() {
1266
1266
  startDeviceAuth()
1267
1267
  }}
1268
1268
  />
1269
- <text fg={theme.textMuted}>Enterprise features include:</text>
1270
- <text fg={theme.textMuted}> - Jira, Azure DevOps, Confluence integration</text>
1271
- <text fg={theme.textMuted}> - Stakeholder read-only seats</text>
1272
- <text fg={theme.textMuted}> - Custom themes and branding</text>
1269
+ <text fg={theme.primary} attributes={TextAttributes.BOLD}>Individual / Teams</text>
1270
+ <text fg={theme.textMuted}> Enter "portal" portal.snow-flow.dev</text>
1271
+ <text fg={theme.primary} attributes={TextAttributes.BOLD}>Enterprise</text>
1272
+ <text fg={theme.textMuted}> Enter your org name → acme.snow-flow.dev</text>
1273
1273
  <box paddingTop={1} flexDirection="row">
1274
1274
  <text fg={theme.text}>enter </text>
1275
1275
  <text fg={theme.textMuted}>continue</text>