@medplum/core 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medplum/core",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Medplum TS/JS Library",
5
5
  "author": "Medplum <hello@medplum.com>",
6
6
  "license": "Apache-2.0",
@@ -1,67 +0,0 @@
1
- import { Atom } from '../fhirlexer';
2
- declare abstract class DefaultFhirMapperAtom implements Atom {
3
- eval(): never;
4
- }
5
- export declare class MappingLanguageAtom extends DefaultFhirMapperAtom {
6
- readonly original: string;
7
- readonly child: Atom;
8
- constructor(original: string, child: Atom);
9
- }
10
- export declare class MapAtom extends DefaultFhirMapperAtom {
11
- readonly url: string;
12
- readonly identifier: string;
13
- constructor(url: string, identifier: string);
14
- }
15
- export declare class UsesAtom extends DefaultFhirMapperAtom {
16
- readonly url: string;
17
- readonly modelMode: string;
18
- constructor(url: string, modelMode: string);
19
- }
20
- export declare class GroupAtom extends DefaultFhirMapperAtom {
21
- readonly identifier: string;
22
- readonly parameters: ParameterAtom[];
23
- readonly rules: RuleAtom[];
24
- constructor(identifier: string, parameters: ParameterAtom[], rules: RuleAtom[]);
25
- }
26
- export declare class ParameterAtom extends DefaultFhirMapperAtom {
27
- readonly inputMode: string;
28
- readonly identifier: string;
29
- readonly type: string;
30
- constructor(inputMode: string, identifier: string, type: string);
31
- }
32
- export declare class RuleAtom extends DefaultFhirMapperAtom {
33
- readonly sources: RuleSourceAtom[];
34
- readonly targets: RuleTargetAtom[] | undefined;
35
- readonly dependent: RuleDependentAtom | undefined;
36
- readonly name: string | undefined;
37
- constructor(sources: RuleSourceAtom[], targets: RuleTargetAtom[] | undefined, dependent: RuleDependentAtom | undefined, name: string | undefined);
38
- }
39
- export declare class RuleSourceAtom extends DefaultFhirMapperAtom {
40
- readonly context: string | undefined;
41
- readonly sourceType: string | undefined;
42
- readonly sourceDefault: Atom | undefined;
43
- readonly sourceListMode: string | undefined;
44
- readonly alias: string | undefined;
45
- readonly whereClause: Atom | undefined;
46
- readonly checkClause: Atom | undefined;
47
- readonly log: Atom | undefined;
48
- constructor(context: string | undefined, sourceType: string | undefined, sourceDefault: Atom | undefined, sourceListMode: string | undefined, alias: string | undefined, whereClause: Atom | undefined, checkClause: Atom | undefined, log: Atom | undefined);
49
- }
50
- export declare class RuleTargetAtom extends DefaultFhirMapperAtom {
51
- readonly context: string;
52
- readonly transform: Atom | undefined;
53
- readonly alias: string | undefined;
54
- readonly targetListMode: string | undefined;
55
- constructor(context: string, transform: Atom | undefined, alias: string | undefined, targetListMode: string | undefined);
56
- }
57
- export declare class RuleInvocationAtom extends DefaultFhirMapperAtom {
58
- readonly identifier: string;
59
- readonly parameters: Atom[];
60
- constructor(identifier: string, parameters: Atom[]);
61
- }
62
- export declare class RuleDependentAtom extends DefaultFhirMapperAtom {
63
- readonly invocation: RuleInvocationAtom;
64
- readonly rules: RuleAtom[];
65
- constructor(invocation: RuleInvocationAtom, rules: RuleAtom[]);
66
- }
67
- export {};
@@ -1,67 +0,0 @@
1
- import { Atom } from '../fhirlexer';
2
- declare abstract class DefaultFhirMapperAtom implements Atom {
3
- eval(): never;
4
- }
5
- export declare class MappingLanguageAtom extends DefaultFhirMapperAtom {
6
- readonly original: string;
7
- readonly child: Atom;
8
- constructor(original: string, child: Atom);
9
- }
10
- export declare class MapAtom extends DefaultFhirMapperAtom {
11
- readonly url: string;
12
- readonly identifier: string;
13
- constructor(url: string, identifier: string);
14
- }
15
- export declare class UsesAtom extends DefaultFhirMapperAtom {
16
- readonly url: string;
17
- readonly modelMode: string;
18
- constructor(url: string, modelMode: string);
19
- }
20
- export declare class GroupAtom extends DefaultFhirMapperAtom {
21
- readonly identifier: string;
22
- readonly parameters: ParameterAtom[];
23
- readonly rules: RuleAtom[];
24
- constructor(identifier: string, parameters: ParameterAtom[], rules: RuleAtom[]);
25
- }
26
- export declare class ParameterAtom extends DefaultFhirMapperAtom {
27
- readonly inputMode: string;
28
- readonly identifier: string;
29
- readonly type: string;
30
- constructor(inputMode: string, identifier: string, type: string);
31
- }
32
- export declare class RuleAtom extends DefaultFhirMapperAtom {
33
- readonly sources: RuleSourceAtom[];
34
- readonly targets: RuleTargetAtom[] | undefined;
35
- readonly dependent: RuleDependentAtom | undefined;
36
- readonly name: string | undefined;
37
- constructor(sources: RuleSourceAtom[], targets: RuleTargetAtom[] | undefined, dependent: RuleDependentAtom | undefined, name: string | undefined);
38
- }
39
- export declare class RuleSourceAtom extends DefaultFhirMapperAtom {
40
- readonly context: string | undefined;
41
- readonly sourceType: string | undefined;
42
- readonly sourceDefault: Atom | undefined;
43
- readonly sourceListMode: string | undefined;
44
- readonly alias: string | undefined;
45
- readonly whereClause: Atom | undefined;
46
- readonly checkClause: Atom | undefined;
47
- readonly log: Atom | undefined;
48
- constructor(context: string | undefined, sourceType: string | undefined, sourceDefault: Atom | undefined, sourceListMode: string | undefined, alias: string | undefined, whereClause: Atom | undefined, checkClause: Atom | undefined, log: Atom | undefined);
49
- }
50
- export declare class RuleTargetAtom extends DefaultFhirMapperAtom {
51
- readonly context: string;
52
- readonly transform: Atom | undefined;
53
- readonly alias: string | undefined;
54
- readonly targetListMode: string | undefined;
55
- constructor(context: string, transform: Atom | undefined, alias: string | undefined, targetListMode: string | undefined);
56
- }
57
- export declare class RuleInvocationAtom extends DefaultFhirMapperAtom {
58
- readonly identifier: string;
59
- readonly parameters: Atom[];
60
- constructor(identifier: string, parameters: Atom[]);
61
- }
62
- export declare class RuleDependentAtom extends DefaultFhirMapperAtom {
63
- readonly invocation: RuleInvocationAtom;
64
- readonly rules: RuleAtom[];
65
- constructor(invocation: RuleInvocationAtom, rules: RuleAtom[]);
66
- }
67
- export {};