Skip to content

Commit

Permalink
Merge f934d0b into 5d20231
Browse files Browse the repository at this point in the history
  • Loading branch information
jkdowdle committed Jan 8, 2024
2 parents 5d20231 + f934d0b commit da1cc20
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions src/types/rest-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down

0 comments on commit da1cc20

Please sign in to comment.