Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
MAT-2272 Correct type of code_system_map array
Browse files Browse the repository at this point in the history
  • Loading branch information
Serhii Ilin committed Dec 11, 2020
1 parent f07d61c commit 7be73f5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
8 changes: 3 additions & 5 deletions fhir-typescript-models.iml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/coverage" />
<excludeFolder url="file://$MODULE_DIR$/dist" />
</content>
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
</module>
2 changes: 1 addition & 1 deletion src/models/cqm/classes/CqmMeasure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class CqmMeasure {
// mongoid updated timestamp
public updated_at?: string;

public code_systems_by_name?: Array<string>;
public code_systems_by_name?: Array<Array<string>>;

public static parse(
json: ICqmMeasure,
Expand Down
2 changes: 1 addition & 1 deletion src/models/cqm/interfaces/ICqmMeasure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export interface ICqmMeasure {

updated_at?: string;

code_systems_by_name?: Array<string>;
code_systems_by_name?: Array<Array<string>>;

}

Expand Down

0 comments on commit 7be73f5

Please sign in to comment.