11import { Args , Errors } from '@oclif/core' ;
22
3- import EasCommand from '../../commandUtils/EasCommand' ;
4- import { EasJsonOnlyFlag } from '../../commandUtils/flags' ;
3+ import EasCommand from '../../../ commandUtils/EasCommand' ;
4+ import { EasJsonOnlyFlag } from '../../../ commandUtils/flags' ;
55import {
66 EmbeddedUpdateFragment ,
77 EmbeddedUpdateQuery ,
88 isEmbeddedUpdateNotFoundError ,
9- } from '../../graphql/queries/EmbeddedUpdateQuery' ;
10- import Log from '../../log' ;
11- import formatFields from '../../utils/formatFields' ;
12- import { enableJsonOutput , printJsonOnlyOutput } from '../../utils/json' ;
9+ } from '../../../ graphql/queries/EmbeddedUpdateQuery' ;
10+ import Log from '../../../ log' ;
11+ import formatFields from '../../../ utils/formatFields' ;
12+ import { enableJsonOutput , printJsonOnlyOutput } from '../../../ utils/json' ;
1313
14- export default class UpdateViewEmbedded extends EasCommand {
14+ export default class UpdateEmbeddedView extends EasCommand {
1515 static override description = 'view details of an embedded update registered with EAS Update' ;
1616
1717 static override args = {
@@ -34,12 +34,12 @@ export default class UpdateViewEmbedded extends EasCommand {
3434 const {
3535 args : { id : embeddedUpdateId } ,
3636 flags : { json : jsonFlag } ,
37- } = await this . parse ( UpdateViewEmbedded ) ;
37+ } = await this . parse ( UpdateEmbeddedView ) ;
3838
3939 const {
4040 projectId,
4141 loggedIn : { graphqlClient } ,
42- } = await this . getContextAsync ( UpdateViewEmbedded , { nonInteractive : true } ) ;
42+ } = await this . getContextAsync ( UpdateEmbeddedView , { nonInteractive : true } ) ;
4343
4444 if ( jsonFlag ) {
4545 enableJsonOutput ( ) ;
0 commit comments