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
|
@@ -265,11 +265,11 @@ export function DialogAuth() {
|
|
|
265
265
|
},
|
|
266
266
|
},
|
|
267
267
|
{
|
|
268
|
-
title: "
|
|
268
|
+
title: "Snow-Flow Portal",
|
|
269
269
|
value: "enterprise-portal",
|
|
270
270
|
description: isEnterpriseConfigured() ? "Connected" : undefined,
|
|
271
|
-
category: "
|
|
272
|
-
footer: "
|
|
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: "
|
|
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
|
|
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.
|
|
1270
|
-
<text fg={theme.textMuted}>
|
|
1271
|
-
<text fg={theme.
|
|
1272
|
-
<text fg={theme.textMuted}>
|
|
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>
|