-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: update auth table and dependencies #1173
Conversation
package.json
Outdated
@@ -10,8 +10,8 @@ | |||
"@oclif/core": "^4", | |||
"@salesforce/core": "^8.6.2", | |||
"@salesforce/kit": "^3.2.3", | |||
"@salesforce/plugin-info": "^3.4.12", | |||
"@salesforce/sf-plugins-core": "^11.3.10", | |||
"@salesforce/plugin-info": "^3.4.9", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is this dependency going backwards? 12->9?
QA Notes✅ : using new table │ blitz2 │ wruemme… │ 00D5p0000… │ https://e4… │ web │ │
│ cb │ wruemme… │ 00DHp0000… │ https://dx… │ web │ │
└─────────────────┴──────────┴────────────┴─────────────┴─────────────┴───────┘% |
src/commands/org/list/auth.ts
Outdated
{ key: 'instanceUrl', name: 'AUTH METHOD' }, | ||
{ key: 'oauthMethod', name: 'AUTH METHOD' }, | ||
hasErrors ? { key: 'error', name: 'ERROR' } : 'error', | ||
], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add
title: 'authenticated orgs'
and remove this.styledHeader('authenticated orgs')
just above this
src/commands/org/list/auth.ts
Outdated
{ key: 'alias', name: 'ALIAS' }, | ||
{ key: 'username', name: 'USERNAME' }, | ||
{ key: 'orgId', name: 'ORG ID' }, | ||
{ key: 'instanceUrl', name: 'AUTH METHOD' }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be { key: 'instanceUrl', name: 'INSTANCE URL' }
src/commands/org/list/auth.ts
Outdated
{ key: 'orgId', name: 'ORG ID' }, | ||
{ key: 'instanceUrl', name: 'AUTH METHOD' }, | ||
{ key: 'oauthMethod', name: 'AUTH METHOD' }, | ||
hasErrors ? { key: 'error', name: 'ERROR' } : 'error', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
error
shouldn't be in the columns
array if hasErrors
is false
What does this PR do?
update new auth table format
What issues does this PR fix or reference?
@W-16736180@