diff --git a/src/types/rest-types.ts b/src/types/rest-types.ts index e2cd5dc3..a8a12c72 100644 --- a/src/types/rest-types.ts +++ b/src/types/rest-types.ts @@ -35,10 +35,16 @@ export type RestAPIEndpoints = FhirAPIEndpoints & { }; 'GET /v1/features': { - Request: { - project?: string; - tag?: string; - }; + Request: + | { + project: string; + tag?: string; + } + | { + project: 'Mobile'; + tag?: string; + currentVersion: string; + }; Response: { [feature: string]: boolean; };