File tree Expand file tree Collapse file tree
ground_control_client/lib/src/protocol Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -861,11 +861,23 @@ class EndpointProjects extends _i1.EndpointRef {
861861
862862 /// Fetches the specified project.
863863 /// Its user roles are included in the response.
864+ @Deprecated ('Use fetchProjectInfo instead' )
864865 _i2.Future <_i3.Project > fetchProject ({required String cloudProjectId}) =>
865866 caller.callServerEndpoint< _i3.Project > ('projects' , 'fetchProject' , {
866867 'cloudProjectId' : cloudProjectId,
867868 });
868869
870+ /// Fetches the specified project.
871+ /// Its user roles are included in the response.
872+ _i2.Future <_i4.ProjectInfo > fetchProjectInfo ({
873+ required String cloudProjectId,
874+ bool ? includeLatestDeployAttemptTime,
875+ }) => caller
876+ .callServerEndpoint< _i4.ProjectInfo > ('projects' , 'fetchProjectInfo' , {
877+ 'cloudProjectId' : cloudProjectId,
878+ 'includeLatestDeployAttemptTime' : includeLatestDeployAttemptTime,
879+ });
880+
869881 /// Fetches the list of projects the current user has access to.
870882 @Deprecated ('Use listProjectsInfo instead' )
871883 _i2.Future <List <_i3.Project >> listProjects () => caller
You can’t perform that action at this time.
0 commit comments