@f1studio/form-spec 5.0.0-alpha.101
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/Designer.d.ts +89 -0
- package/FormSpec.TS/Components/HelloComponent.js +68 -0
- package/FormSpec.TS/Components/HelloComponent.js.map +1 -0
- package/FormSpec.TS/Components/HelloComponent.ts.map +1 -0
- package/FormSpec.TS/Designer.js +526 -0
- package/FormSpec.TS/Designer.js.map +1 -0
- package/FormSpec.TS/Designer.ts.map +1 -0
- package/FormSpec.TS/FormSpec.js +5400 -0
- package/FormSpec.TS/FormSpec.js.map +1 -0
- package/FormSpec.TS/FormSpec.ts.map +1 -0
- package/FormSpec.TS/FormSpecHelpers.js +382 -0
- package/FormSpec.TS/FormSpecHelpers.js.map +1 -0
- package/FormSpec.TS/FormSpecHelpers.ts.map +1 -0
- package/FormSpec.TS/Helpers.js +732 -0
- package/FormSpec.TS/Helpers.js.map +1 -0
- package/FormSpec.TS/Helpers.ts.map +1 -0
- package/FormSpec.TS/Interfaces.js +257 -0
- package/FormSpec.TS/Interfaces.js.map +1 -0
- package/FormSpec.TS/Interfaces.ts.map +1 -0
- package/FormSpec.TS/Interop/FormSpec.Api.Helpers.js +854 -0
- package/FormSpec.TS/Interop/FormSpec.Api.Helpers.js.map +1 -0
- package/FormSpec.TS/Interop/FormSpec.Api.Helpers.ts.map +1 -0
- package/FormSpec.TS/Interop/FormSpec.Api.Option.js +1961 -0
- package/FormSpec.TS/Interop/FormSpec.Api.Option.js.map +1 -0
- package/FormSpec.TS/Interop/FormSpec.Api.Option.ts.map +1 -0
- package/FormSpec.TS/Interop/FormSpec.Values.Api.Option.js +1367 -0
- package/FormSpec.TS/Interop/FormSpec.Values.Api.Option.js.map +1 -0
- package/FormSpec.TS/Interop/FormSpec.Values.Api.Option.ts.map +1 -0
- package/FormSpec.TS/Logging/LogTypes.js +347 -0
- package/FormSpec.TS/Logging/LogTypes.js.map +1 -0
- package/FormSpec.TS/Logging/LogTypes.ts.map +1 -0
- package/FormSpec.TS/Migrator.js +230 -0
- package/FormSpec.TS/Migrator.js.map +1 -0
- package/FormSpec.TS/Migrator.ts.map +1 -0
- package/FormSpec.TS/PathwayDataExtractor.js +361 -0
- package/FormSpec.TS/PathwayDataExtractor.js.map +1 -0
- package/FormSpec.TS/PathwayDataExtractor.ts.map +1 -0
- package/FormSpec.TS/PathwayExecutor.js +1321 -0
- package/FormSpec.TS/PathwayExecutor.js.map +1 -0
- package/FormSpec.TS/PathwayExecutor.ts.map +1 -0
- package/FormSpec.TS/PathwayValidator.js +346 -0
- package/FormSpec.TS/PathwayValidator.js.map +1 -0
- package/FormSpec.TS/PathwayValidator.ts.map +1 -0
- package/FormSpec.TS/PluginInterface.js +171 -0
- package/FormSpec.TS/PluginInterface.js.map +1 -0
- package/FormSpec.TS/PluginInterface.ts.map +1 -0
- package/FormSpec.TS/Prelude.js +59 -0
- package/FormSpec.TS/Prelude.js.map +1 -0
- package/FormSpec.TS/Prelude.ts.map +1 -0
- package/FormSpec.TS/Renderers/FormSpecMarkdownRenderer.js +958 -0
- package/FormSpec.TS/Renderers/FormSpecMarkdownRenderer.js.map +1 -0
- package/FormSpec.TS/Renderers/FormSpecMarkdownRenderer.ts.map +1 -0
- package/FormSpec.TS/Renderers/MermaidRenderer.js +228 -0
- package/FormSpec.TS/Renderers/MermaidRenderer.js.map +1 -0
- package/FormSpec.TS/Renderers/MermaidRenderer.ts.map +1 -0
- package/FormSpec.TS/Renderers/PathwayRenderers.js +190 -0
- package/FormSpec.TS/Renderers/PathwayRenderers.js.map +1 -0
- package/FormSpec.TS/Renderers/PathwayRenderers.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Base.fs +511 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Base.fs.js +437 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Base.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Base.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Error.fs +16 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Error.fs.js +73 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Error.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Error.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Extensions.fs +50 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Extensions.fs.js +72 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Extensions.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Extensions.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Fable.Form.fableproj +28 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Field.fs +24 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Field.fs.js +56 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Field.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.Form.3.0.0/Field.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.Form.Simple.5.0.1/Fable.Form.Simple.fableproj +31 -0
- package/FormSpec.TS/fable_modules/Fable.Form.Simple.5.0.1/Form.fs +178 -0
- package/FormSpec.TS/fable_modules/Fable.Form.Simple.5.0.1/Form.fs.js +464 -0
- package/FormSpec.TS/fable_modules/Fable.Form.Simple.5.0.1/Form.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.Form.Simple.5.0.1/Form.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.Extensions.fs +17 -0
- package/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.Hooks.fs +152 -0
- package/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.Hooks.fs.js +25 -0
- package/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.Hooks.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.Hooks.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.Types.fableproj +28 -0
- package/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.fs +218 -0
- package/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.fs.js +37 -0
- package/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.React.Types.18.3.0/Fable.React.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.ReactDom.Types.18.2.0/Fable.ReactDom.Types.fableproj +27 -0
- package/FormSpec.TS/fable_modules/Fable.ReactDom.Types.18.2.0/Fable.ReactDom.fs +82 -0
- package/FormSpec.TS/fable_modules/Fable.ReactDom.Types.18.2.0/Fable.ReactDom.fs.js +7 -0
- package/FormSpec.TS/fable_modules/Fable.ReactDom.Types.18.2.0/Fable.ReactDom.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Fable.ReactDom.Types.18.2.0/Fable.ReactDom.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/BorderStyle.fs +59 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Colors.fs +154 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Colors.fs.js +32 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Colors.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Colors.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Feliz.fableproj +42 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Fonts.fs +240 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/GridTypes.fs +24 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Html.fs +826 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Interop.fs +83 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Interop.fs.js +292 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Interop.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Interop.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Key.fs +65 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Key.fs.js +229 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Key.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Key.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Length.fs +91 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Locale.fs +876 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Properties.fs +4080 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Properties.fs.js +133 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Properties.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Properties.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/React.fs +656 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/React.fs.js +561 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/React.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/React.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactDOM.fs +25 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactDOM.fs.js +46 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactDOM.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactDOM.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactInterop.js +63 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactInterop.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactTypes.fs +41 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactTypes.fs.js +7 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactTypes.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/ReactTypes.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/StyleTypes.fs +53 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/StyleTypes.fs.js +7 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/StyleTypes.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/StyleTypes.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Styles.fs +5740 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Svg.fs +1455 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Svg.fs.js +39 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Svg.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Svg.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/TextDecorationLine.fs +13 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/TextDecorationStyle.fs +33 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Transform.fs +181 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/TransformOrigin.fs +17 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/TransitionProperty.fs +162 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Types.fs +13 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Types.fs.js +7 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Types.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Feliz.2.7.0/Types.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Decode.fs +1768 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Decode.fs.js +2337 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Decode.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Decode.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Encode.fs +811 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Encode.fs.js +465 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Encode.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Encode.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Extra.fs +47 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Extra.fs.js +18 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Extra.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Extra.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Thoth.Json.fableproj +34 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Types.fs +68 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Types.fs.js +355 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Types.fs.js.map +1 -0
- package/FormSpec.TS/fable_modules/Thoth.Json.10.4.1/Types.fs.ts.map +1 -0
- package/FormSpec.TS/fable_modules/project_cracked.json +1 -0
- package/FormSpec.d.ts +1257 -0
- package/FormSpecHelpers.d.ts +50 -0
- package/Helpers.d.ts +147 -0
- package/Interfaces.d.ts +70 -0
- package/Interop/FormSpec.Api.Helpers.d.ts +247 -0
- package/Interop/FormSpec.Api.Helpers.d.ts.map +1 -0
- package/Interop/FormSpec.Api.Option.d.ts +384 -0
- package/Interop/FormSpec.Api.Option.d.ts.map +1 -0
- package/Interop/FormSpec.Values.Api.Option.d.ts +324 -0
- package/Interop/FormSpec.Values.Api.Option.d.ts.map +1 -0
- package/Migrator.d.ts +59 -0
- package/PathwayDataExtractor.d.ts +19 -0
- package/PathwayExecutor.d.ts +210 -0
- package/PathwayValidator.d.ts +52 -0
- package/PluginInterface.d.ts +36 -0
- package/Prelude.d.ts +11 -0
- package/README.TS.md +622 -0
- package/README.md +85 -0
- package/package.json +39 -0
- package/src/Components/HelloComponent.ts +48 -0
- package/src/Components/HelloComponent.ts.map +1 -0
- package/src/Designer.ts +389 -0
- package/src/Designer.ts.map +1 -0
- package/src/FormSpec.ts +3114 -0
- package/src/FormSpec.ts.map +1 -0
- package/src/FormSpecHelpers.ts +374 -0
- package/src/FormSpecHelpers.ts.map +1 -0
- package/src/Helpers.ts +765 -0
- package/src/Helpers.ts.map +1 -0
- package/src/Interfaces.ts +166 -0
- package/src/Interfaces.ts.map +1 -0
- package/src/Interop/FormSpec.Api.Helpers.ts +872 -0
- package/src/Interop/FormSpec.Api.Helpers.ts.map +1 -0
- package/src/Interop/FormSpec.Api.Option.ts +1618 -0
- package/src/Interop/FormSpec.Api.Option.ts.map +1 -0
- package/src/Interop/FormSpec.Values.Api.Option.ts +1214 -0
- package/src/Interop/FormSpec.Values.Api.Option.ts.map +1 -0
- package/src/Logging/LogTypes.ts +212 -0
- package/src/Logging/LogTypes.ts.map +1 -0
- package/src/Migrator.ts +156 -0
- package/src/Migrator.ts.map +1 -0
- package/src/PathwayDataExtractor.ts +290 -0
- package/src/PathwayDataExtractor.ts.map +1 -0
- package/src/PathwayExecutor.ts +1102 -0
- package/src/PathwayExecutor.ts.map +1 -0
- package/src/PathwayValidator.ts +244 -0
- package/src/PathwayValidator.ts.map +1 -0
- package/src/PluginInterface.ts +79 -0
- package/src/PluginInterface.ts.map +1 -0
- package/src/Prelude.ts +21 -0
- package/src/Prelude.ts.map +1 -0
- package/src/Renderers/FormSpecMarkdownRenderer.ts +874 -0
- package/src/Renderers/FormSpecMarkdownRenderer.ts.map +1 -0
- package/src/Renderers/MermaidRenderer.ts +218 -0
- package/src/Renderers/MermaidRenderer.ts.map +1 -0
- package/src/Renderers/PathwayRenderers.ts +200 -0
- package/src/Renderers/PathwayRenderers.ts.map +1 -0
package/FormSpec.d.ts
ADDED
|
@@ -0,0 +1,1257 @@
|
|
|
1
|
+
import { Record, Union } from "@fable-org/fable-library-js/Types.js";
|
|
2
|
+
import { TypeInfo } from "@fable-org/fable-library-js/Reflection.js";
|
|
3
|
+
import { IComparable, IEquatable } from "@fable-org/fable-library-js/Util.js";
|
|
4
|
+
import { FSharpMap } from "@fable-org/fable-library-js/Map.js";
|
|
5
|
+
import { Option } from "@fable-org/fable-library-js/Option.js";
|
|
6
|
+
import { FSharpSet } from "@fable-org/fable-library-js/Set.js";
|
|
7
|
+
import { FSharpList } from "@fable-org/fable-library-js/List.js";
|
|
8
|
+
import { float64, int32 } from "@fable-org/fable-library-js/Int32.js";
|
|
9
|
+
export declare class Shared_FieldKey extends Union<0, "FieldKey"> {
|
|
10
|
+
constructor(Item: string);
|
|
11
|
+
readonly tag: 0;
|
|
12
|
+
readonly fields: [string];
|
|
13
|
+
cases(): string[];
|
|
14
|
+
}
|
|
15
|
+
export declare function Shared_FieldKey_$reflection(): TypeInfo;
|
|
16
|
+
export declare class Shared_StateKey extends Union<0, "StateKey"> {
|
|
17
|
+
constructor(Item: string);
|
|
18
|
+
readonly tag: 0;
|
|
19
|
+
readonly fields: [string];
|
|
20
|
+
cases(): string[];
|
|
21
|
+
}
|
|
22
|
+
export declare function Shared_StateKey_$reflection(): TypeInfo;
|
|
23
|
+
export declare class Shared_TransitionKey extends Union<0, "TransitionKey"> {
|
|
24
|
+
constructor(Item: string);
|
|
25
|
+
readonly tag: 0;
|
|
26
|
+
readonly fields: [string];
|
|
27
|
+
cases(): string[];
|
|
28
|
+
}
|
|
29
|
+
export declare function Shared_TransitionKey_$reflection(): TypeInfo;
|
|
30
|
+
export declare class Shared_MatrixItemKey extends Union<0, "MatrixItemKey"> {
|
|
31
|
+
constructor(Item: string);
|
|
32
|
+
readonly tag: 0;
|
|
33
|
+
readonly fields: [string];
|
|
34
|
+
cases(): string[];
|
|
35
|
+
}
|
|
36
|
+
export declare function Shared_MatrixItemKey_$reflection(): TypeInfo;
|
|
37
|
+
export declare class Shared_FieldOptionKey extends Union<0, "FieldOptionKey"> {
|
|
38
|
+
constructor(Item: string);
|
|
39
|
+
readonly tag: 0;
|
|
40
|
+
readonly fields: [string];
|
|
41
|
+
cases(): string[];
|
|
42
|
+
}
|
|
43
|
+
export declare function Shared_FieldOptionKey_$reflection(): TypeInfo;
|
|
44
|
+
export declare class Shared_PluginPropertyKey extends Union<0, "PluginPropertyKey"> {
|
|
45
|
+
constructor(Item: string);
|
|
46
|
+
readonly tag: 0;
|
|
47
|
+
readonly fields: [string];
|
|
48
|
+
cases(): string[];
|
|
49
|
+
}
|
|
50
|
+
export declare function Shared_PluginPropertyKey_$reflection(): TypeInfo;
|
|
51
|
+
export declare class Shared_FieldOption extends Record implements IEquatable<Shared_FieldOption>, IComparable<Shared_FieldOption> {
|
|
52
|
+
readonly Description: string;
|
|
53
|
+
readonly Value: string;
|
|
54
|
+
readonly OptionKey: Shared_FieldOptionKey;
|
|
55
|
+
constructor(Description: string, Value: string, OptionKey: Shared_FieldOptionKey);
|
|
56
|
+
}
|
|
57
|
+
export declare function Shared_FieldOption_$reflection(): TypeInfo;
|
|
58
|
+
export declare class Shared_FieldAnswer extends Record implements IEquatable<Shared_FieldAnswer>, IComparable<Shared_FieldAnswer> {
|
|
59
|
+
readonly FieldKey: Shared_FieldKey;
|
|
60
|
+
readonly Description: string;
|
|
61
|
+
readonly Value: string;
|
|
62
|
+
constructor(FieldKey: Shared_FieldKey, Description: string, Value: string);
|
|
63
|
+
}
|
|
64
|
+
export declare function Shared_FieldAnswer_$reflection(): TypeInfo;
|
|
65
|
+
export declare class Shared_MatrixAnswer extends Record implements IEquatable<Shared_MatrixAnswer>, IComparable<Shared_MatrixAnswer> {
|
|
66
|
+
readonly FieldKey: Shared_FieldKey;
|
|
67
|
+
readonly Description: string;
|
|
68
|
+
readonly Values: FSharpMap<Shared_MatrixItemKey, string>;
|
|
69
|
+
constructor(FieldKey: Shared_FieldKey, Description: string, Values: FSharpMap<Shared_MatrixItemKey, string>);
|
|
70
|
+
}
|
|
71
|
+
export declare function Shared_MatrixAnswer_$reflection(): TypeInfo;
|
|
72
|
+
export declare class Shared_PluginDataProperty extends Record implements IEquatable<Shared_PluginDataProperty>, IComparable<Shared_PluginDataProperty> {
|
|
73
|
+
readonly PropertyKey: Shared_PluginPropertyKey;
|
|
74
|
+
readonly Name: string;
|
|
75
|
+
readonly DataType: string;
|
|
76
|
+
readonly Value: string;
|
|
77
|
+
readonly DisplayName: Option<string>;
|
|
78
|
+
readonly Unit: Option<string>;
|
|
79
|
+
readonly Description: Option<string>;
|
|
80
|
+
constructor(PropertyKey: Shared_PluginPropertyKey, Name: string, DataType: string, Value: string, DisplayName: Option<string>, Unit: Option<string>, Description: Option<string>);
|
|
81
|
+
}
|
|
82
|
+
export declare function Shared_PluginDataProperty_$reflection(): TypeInfo;
|
|
83
|
+
export type Shared_FieldValue_$union = Shared_FieldValue<0> | Shared_FieldValue<1> | Shared_FieldValue<2> | Shared_FieldValue<3>;
|
|
84
|
+
export type Shared_FieldValue_$cases = {
|
|
85
|
+
0: ["Single", [Shared_FieldAnswer]];
|
|
86
|
+
1: ["Multiple", [FSharpSet<Shared_FieldAnswer>]];
|
|
87
|
+
2: ["Matrix", [Shared_MatrixAnswer]];
|
|
88
|
+
3: ["PluginData", [FSharpList<Shared_PluginDataProperty>]];
|
|
89
|
+
};
|
|
90
|
+
export declare function Shared_FieldValue_Single(Item: Shared_FieldAnswer): Shared_FieldValue<0>;
|
|
91
|
+
export declare function Shared_FieldValue_Multiple(Item: FSharpSet<Shared_FieldAnswer>): Shared_FieldValue<1>;
|
|
92
|
+
export declare function Shared_FieldValue_Matrix(Item: Shared_MatrixAnswer): Shared_FieldValue<2>;
|
|
93
|
+
export declare function Shared_FieldValue_PluginData(Item: FSharpList<Shared_PluginDataProperty>): Shared_FieldValue<3>;
|
|
94
|
+
export declare class Shared_FieldValue<Tag extends keyof Shared_FieldValue_$cases> extends Union<Tag, Shared_FieldValue_$cases[Tag][0]> {
|
|
95
|
+
readonly tag: Tag;
|
|
96
|
+
readonly fields: Shared_FieldValue_$cases[Tag][1];
|
|
97
|
+
constructor(tag: Tag, fields: Shared_FieldValue_$cases[Tag][1]);
|
|
98
|
+
cases(): string[];
|
|
99
|
+
}
|
|
100
|
+
export declare function Shared_FieldValue_$reflection(): TypeInfo;
|
|
101
|
+
export type Shared_ConditionValue_$union = Shared_ConditionValue<0> | Shared_ConditionValue<1> | Shared_ConditionValue<2> | Shared_ConditionValue<3>;
|
|
102
|
+
export type Shared_ConditionValue_$cases = {
|
|
103
|
+
0: ["Single", [string]];
|
|
104
|
+
1: ["Multiple", [FSharpSet<string>]];
|
|
105
|
+
2: ["Matrix", [FSharpMap<Shared_MatrixItemKey, string>]];
|
|
106
|
+
3: ["PluginData", [Shared_PluginDataProperty]];
|
|
107
|
+
};
|
|
108
|
+
export declare function Shared_ConditionValue_Single(Item: string): Shared_ConditionValue<0>;
|
|
109
|
+
export declare function Shared_ConditionValue_Multiple(Item: FSharpSet<string>): Shared_ConditionValue<1>;
|
|
110
|
+
export declare function Shared_ConditionValue_Matrix(Item: FSharpMap<Shared_MatrixItemKey, string>): Shared_ConditionValue<2>;
|
|
111
|
+
export declare function Shared_ConditionValue_PluginData(Item: Shared_PluginDataProperty): Shared_ConditionValue<3>;
|
|
112
|
+
export declare class Shared_ConditionValue<Tag extends keyof Shared_ConditionValue_$cases> extends Union<Tag, Shared_ConditionValue_$cases[Tag][0]> {
|
|
113
|
+
readonly tag: Tag;
|
|
114
|
+
readonly fields: Shared_ConditionValue_$cases[Tag][1];
|
|
115
|
+
constructor(tag: Tag, fields: Shared_ConditionValue_$cases[Tag][1]);
|
|
116
|
+
cases(): string[];
|
|
117
|
+
}
|
|
118
|
+
export declare function Shared_ConditionValue_$reflection(): TypeInfo;
|
|
119
|
+
export declare class Spec_FieldResult extends Record implements IEquatable<Spec_FieldResult>, IComparable<Spec_FieldResult> {
|
|
120
|
+
readonly Patient: string;
|
|
121
|
+
readonly Order: int32;
|
|
122
|
+
readonly Question: string;
|
|
123
|
+
readonly Answer: string;
|
|
124
|
+
readonly Value: string;
|
|
125
|
+
constructor(Patient: string, Order: int32, Question: string, Answer: string, Value: string);
|
|
126
|
+
}
|
|
127
|
+
export declare function Spec_FieldResult_$reflection(): TypeInfo;
|
|
128
|
+
export declare class Spec_MinimalField extends Record implements IEquatable<Spec_MinimalField>, IComparable<Spec_MinimalField> {
|
|
129
|
+
readonly FieldOrder: int32;
|
|
130
|
+
readonly Options: FSharpList<Shared_FieldOption>;
|
|
131
|
+
constructor(FieldOrder: int32, Options: FSharpList<Shared_FieldOption>);
|
|
132
|
+
}
|
|
133
|
+
export declare function Spec_MinimalField_$reflection(): TypeInfo;
|
|
134
|
+
export type Spec_Evaluator_$union = Spec_Evaluator<0> | Spec_Evaluator<1> | Spec_Evaluator<2> | Spec_Evaluator<3> | Spec_Evaluator<4> | Spec_Evaluator<5> | Spec_Evaluator<6> | Spec_Evaluator<7> | Spec_Evaluator<8>;
|
|
135
|
+
export type Spec_Evaluator_$cases = {
|
|
136
|
+
0: ["Equals", []];
|
|
137
|
+
1: ["NotEquals", []];
|
|
138
|
+
2: ["GreaterThan", []];
|
|
139
|
+
3: ["GreaterThanOrEquals", []];
|
|
140
|
+
4: ["LessThan", []];
|
|
141
|
+
5: ["LessThanOrEquals", []];
|
|
142
|
+
6: ["Exists", []];
|
|
143
|
+
7: ["IsEmpty", []];
|
|
144
|
+
8: ["Contains", []];
|
|
145
|
+
};
|
|
146
|
+
export declare function Spec_Evaluator_Equals(): Spec_Evaluator<0>;
|
|
147
|
+
export declare function Spec_Evaluator_NotEquals(): Spec_Evaluator<1>;
|
|
148
|
+
export declare function Spec_Evaluator_GreaterThan(): Spec_Evaluator<2>;
|
|
149
|
+
export declare function Spec_Evaluator_GreaterThanOrEquals(): Spec_Evaluator<3>;
|
|
150
|
+
export declare function Spec_Evaluator_LessThan(): Spec_Evaluator<4>;
|
|
151
|
+
export declare function Spec_Evaluator_LessThanOrEquals(): Spec_Evaluator<5>;
|
|
152
|
+
export declare function Spec_Evaluator_Exists(): Spec_Evaluator<6>;
|
|
153
|
+
export declare function Spec_Evaluator_IsEmpty(): Spec_Evaluator<7>;
|
|
154
|
+
export declare function Spec_Evaluator_Contains(): Spec_Evaluator<8>;
|
|
155
|
+
export declare class Spec_Evaluator<Tag extends keyof Spec_Evaluator_$cases> extends Union<Tag, Spec_Evaluator_$cases[Tag][0]> {
|
|
156
|
+
readonly tag: Tag;
|
|
157
|
+
readonly fields: Spec_Evaluator_$cases[Tag][1];
|
|
158
|
+
constructor(tag: Tag, fields: Spec_Evaluator_$cases[Tag][1]);
|
|
159
|
+
cases(): string[];
|
|
160
|
+
}
|
|
161
|
+
export declare function Spec_Evaluator_$reflection(): TypeInfo;
|
|
162
|
+
export type Spec_SpecialTextType_$union = Spec_SpecialTextType<0> | Spec_SpecialTextType<1> | Spec_SpecialTextType<2> | Spec_SpecialTextType<3> | Spec_SpecialTextType<4> | Spec_SpecialTextType<5> | Spec_SpecialTextType<6> | Spec_SpecialTextType<7> | Spec_SpecialTextType<8> | Spec_SpecialTextType<9>;
|
|
163
|
+
export type Spec_SpecialTextType_$cases = {
|
|
164
|
+
0: ["BodyTemperatureType", []];
|
|
165
|
+
1: ["BloodPressureType", []];
|
|
166
|
+
2: ["DiastolicBloodPressureType", []];
|
|
167
|
+
3: ["SystolicBloodPressureType", []];
|
|
168
|
+
4: ["HeightType", []];
|
|
169
|
+
5: ["WeightType", []];
|
|
170
|
+
6: ["PulseRateType", []];
|
|
171
|
+
7: ["HeartRateType", []];
|
|
172
|
+
8: ["RespirationRateType", []];
|
|
173
|
+
9: ["OxygenSaturationType", []];
|
|
174
|
+
};
|
|
175
|
+
export declare function Spec_SpecialTextType_BodyTemperatureType(): Spec_SpecialTextType<0>;
|
|
176
|
+
export declare function Spec_SpecialTextType_BloodPressureType(): Spec_SpecialTextType<1>;
|
|
177
|
+
export declare function Spec_SpecialTextType_DiastolicBloodPressureType(): Spec_SpecialTextType<2>;
|
|
178
|
+
export declare function Spec_SpecialTextType_SystolicBloodPressureType(): Spec_SpecialTextType<3>;
|
|
179
|
+
export declare function Spec_SpecialTextType_HeightType(): Spec_SpecialTextType<4>;
|
|
180
|
+
export declare function Spec_SpecialTextType_WeightType(): Spec_SpecialTextType<5>;
|
|
181
|
+
export declare function Spec_SpecialTextType_PulseRateType(): Spec_SpecialTextType<6>;
|
|
182
|
+
export declare function Spec_SpecialTextType_HeartRateType(): Spec_SpecialTextType<7>;
|
|
183
|
+
export declare function Spec_SpecialTextType_RespirationRateType(): Spec_SpecialTextType<8>;
|
|
184
|
+
export declare function Spec_SpecialTextType_OxygenSaturationType(): Spec_SpecialTextType<9>;
|
|
185
|
+
export declare class Spec_SpecialTextType<Tag extends keyof Spec_SpecialTextType_$cases> extends Union<Tag, Spec_SpecialTextType_$cases[Tag][0]> {
|
|
186
|
+
readonly tag: Tag;
|
|
187
|
+
readonly fields: Spec_SpecialTextType_$cases[Tag][1];
|
|
188
|
+
constructor(tag: Tag, fields: Spec_SpecialTextType_$cases[Tag][1]);
|
|
189
|
+
cases(): string[];
|
|
190
|
+
}
|
|
191
|
+
export declare function Spec_SpecialTextType_$reflection(): TypeInfo;
|
|
192
|
+
export declare class Spec_DependsOn extends Record implements IEquatable<Spec_DependsOn>, IComparable<Spec_DependsOn> {
|
|
193
|
+
readonly FieldKey: Shared_FieldKey;
|
|
194
|
+
readonly FieldValue: string;
|
|
195
|
+
readonly Evaluator: Spec_Evaluator_$union;
|
|
196
|
+
constructor(FieldKey: Shared_FieldKey, FieldValue: string, Evaluator: Spec_Evaluator_$union);
|
|
197
|
+
}
|
|
198
|
+
export declare function Spec_DependsOn_$reflection(): TypeInfo;
|
|
199
|
+
export declare class Spec_SpecialTextInfo extends Record implements IEquatable<Spec_SpecialTextInfo>, IComparable<Spec_SpecialTextInfo> {
|
|
200
|
+
readonly SpecialTextType: Spec_SpecialTextType_$union;
|
|
201
|
+
readonly Value: Option<string>;
|
|
202
|
+
constructor(SpecialTextType: Spec_SpecialTextType_$union, Value: Option<string>);
|
|
203
|
+
}
|
|
204
|
+
export declare function Spec_SpecialTextInfo_$reflection(): TypeInfo;
|
|
205
|
+
export declare class Spec_TextInfo extends Record implements IEquatable<Spec_TextInfo>, IComparable<Spec_TextInfo> {
|
|
206
|
+
readonly Value: Option<string>;
|
|
207
|
+
constructor(Value: Option<string>);
|
|
208
|
+
}
|
|
209
|
+
export declare function Spec_TextInfo_$reflection(): TypeInfo;
|
|
210
|
+
export declare class Spec_SingleChoiceInfo extends Record implements IEquatable<Spec_SingleChoiceInfo>, IComparable<Spec_SingleChoiceInfo> {
|
|
211
|
+
readonly Options: FSharpList<Shared_FieldOption>;
|
|
212
|
+
constructor(Options: FSharpList<Shared_FieldOption>);
|
|
213
|
+
}
|
|
214
|
+
export declare function Spec_SingleChoiceInfo_$reflection(): TypeInfo;
|
|
215
|
+
export declare class Spec_MultiChoiceInfo extends Record implements IEquatable<Spec_MultiChoiceInfo>, IComparable<Spec_MultiChoiceInfo> {
|
|
216
|
+
readonly Options: FSharpList<Shared_FieldOption>;
|
|
217
|
+
constructor(Options: FSharpList<Shared_FieldOption>);
|
|
218
|
+
}
|
|
219
|
+
export declare function Spec_MultiChoiceInfo_$reflection(): TypeInfo;
|
|
220
|
+
export declare class Spec_TextToSpeechInfo extends Record implements IEquatable<Spec_TextToSpeechInfo>, IComparable<Spec_TextToSpeechInfo> {
|
|
221
|
+
readonly Value: Option<string>;
|
|
222
|
+
constructor(Value: Option<string>);
|
|
223
|
+
}
|
|
224
|
+
export declare function Spec_TextToSpeechInfo_$reflection(): TypeInfo;
|
|
225
|
+
export declare class Spec_DrugFinderInfo extends Record implements IEquatable<Spec_DrugFinderInfo>, IComparable<Spec_DrugFinderInfo> {
|
|
226
|
+
readonly Value: Option<string>;
|
|
227
|
+
constructor(Value: Option<string>);
|
|
228
|
+
}
|
|
229
|
+
export declare function Spec_DrugFinderInfo_$reflection(): TypeInfo;
|
|
230
|
+
export declare class Spec_DrugFinderWithFrequencyInfo extends Record implements IEquatable<Spec_DrugFinderWithFrequencyInfo>, IComparable<Spec_DrugFinderWithFrequencyInfo> {
|
|
231
|
+
readonly Value: Option<string>;
|
|
232
|
+
constructor(Value: Option<string>);
|
|
233
|
+
}
|
|
234
|
+
export declare function Spec_DrugFinderWithFrequencyInfo_$reflection(): TypeInfo;
|
|
235
|
+
export declare class Spec_AllergyFinderInfo extends Record implements IEquatable<Spec_AllergyFinderInfo>, IComparable<Spec_AllergyFinderInfo> {
|
|
236
|
+
readonly Value: Option<string>;
|
|
237
|
+
constructor(Value: Option<string>);
|
|
238
|
+
}
|
|
239
|
+
export declare function Spec_AllergyFinderInfo_$reflection(): TypeInfo;
|
|
240
|
+
export declare class Spec_ICD10FinderInfo extends Record implements IEquatable<Spec_ICD10FinderInfo>, IComparable<Spec_ICD10FinderInfo> {
|
|
241
|
+
readonly Value: Option<string>;
|
|
242
|
+
constructor(Value: Option<string>);
|
|
243
|
+
}
|
|
244
|
+
export declare function Spec_ICD10FinderInfo_$reflection(): TypeInfo;
|
|
245
|
+
export declare class Spec_CPTFinderInfo extends Record implements IEquatable<Spec_CPTFinderInfo>, IComparable<Spec_CPTFinderInfo> {
|
|
246
|
+
readonly Value: Option<string>;
|
|
247
|
+
constructor(Value: Option<string>);
|
|
248
|
+
}
|
|
249
|
+
export declare function Spec_CPTFinderInfo_$reflection(): TypeInfo;
|
|
250
|
+
export declare class Spec_VaccineFinderInfo extends Record implements IEquatable<Spec_VaccineFinderInfo>, IComparable<Spec_VaccineFinderInfo> {
|
|
251
|
+
readonly Value: Option<string>;
|
|
252
|
+
constructor(Value: Option<string>);
|
|
253
|
+
}
|
|
254
|
+
export declare function Spec_VaccineFinderInfo_$reflection(): TypeInfo;
|
|
255
|
+
export declare class Spec_ProviderSelectorInfo extends Record implements IEquatable<Spec_ProviderSelectorInfo>, IComparable<Spec_ProviderSelectorInfo> {
|
|
256
|
+
readonly Value: Option<string>;
|
|
257
|
+
constructor(Value: Option<string>);
|
|
258
|
+
}
|
|
259
|
+
export declare function Spec_ProviderSelectorInfo_$reflection(): TypeInfo;
|
|
260
|
+
export declare class Spec_BooleanInfo extends Record implements IEquatable<Spec_BooleanInfo>, IComparable<Spec_BooleanInfo> {
|
|
261
|
+
readonly DefaultValue: Option<boolean>;
|
|
262
|
+
readonly Selection: Option<boolean>;
|
|
263
|
+
constructor(DefaultValue: Option<boolean>, Selection$: Option<boolean>);
|
|
264
|
+
}
|
|
265
|
+
export declare function Spec_BooleanInfo_$reflection(): TypeInfo;
|
|
266
|
+
export type Spec_MessageType_$union = Spec_MessageType<0> | Spec_MessageType<1> | Spec_MessageType<2> | Spec_MessageType<3> | Spec_MessageType<4>;
|
|
267
|
+
export type Spec_MessageType_$cases = {
|
|
268
|
+
0: ["Warning", []];
|
|
269
|
+
1: ["Success", []];
|
|
270
|
+
2: ["Error", []];
|
|
271
|
+
3: ["Info", []];
|
|
272
|
+
4: ["Danger", []];
|
|
273
|
+
};
|
|
274
|
+
export declare function Spec_MessageType_Warning(): Spec_MessageType<0>;
|
|
275
|
+
export declare function Spec_MessageType_Success(): Spec_MessageType<1>;
|
|
276
|
+
export declare function Spec_MessageType_Error(): Spec_MessageType<2>;
|
|
277
|
+
export declare function Spec_MessageType_Info(): Spec_MessageType<3>;
|
|
278
|
+
export declare function Spec_MessageType_Danger(): Spec_MessageType<4>;
|
|
279
|
+
export declare class Spec_MessageType<Tag extends keyof Spec_MessageType_$cases> extends Union<Tag, Spec_MessageType_$cases[Tag][0]> {
|
|
280
|
+
readonly tag: Tag;
|
|
281
|
+
readonly fields: Spec_MessageType_$cases[Tag][1];
|
|
282
|
+
constructor(tag: Tag, fields: Spec_MessageType_$cases[Tag][1]);
|
|
283
|
+
cases(): string[];
|
|
284
|
+
}
|
|
285
|
+
export declare function Spec_MessageType_$reflection(): TypeInfo;
|
|
286
|
+
export declare class Spec_MessageInfo extends Record implements IEquatable<Spec_MessageInfo>, IComparable<Spec_MessageInfo> {
|
|
287
|
+
readonly Heading: string;
|
|
288
|
+
readonly MessageType: Spec_MessageType_$union;
|
|
289
|
+
readonly Message: string;
|
|
290
|
+
readonly Footer: Option<string>;
|
|
291
|
+
constructor(Heading: string, MessageType: Spec_MessageType_$union, Message: string, Footer: Option<string>);
|
|
292
|
+
}
|
|
293
|
+
export declare function Spec_MessageInfo_$reflection(): TypeInfo;
|
|
294
|
+
export declare class Spec_ReadOnlyInfo extends Record implements IEquatable<Spec_ReadOnlyInfo>, IComparable<Spec_ReadOnlyInfo> {
|
|
295
|
+
readonly Heading: string;
|
|
296
|
+
readonly Content: string;
|
|
297
|
+
readonly Collapsible: Option<boolean>;
|
|
298
|
+
readonly InitiallyExpanded: Option<boolean>;
|
|
299
|
+
readonly Formatting: Option<string>;
|
|
300
|
+
constructor(Heading: string, Content: string, Collapsible: Option<boolean>, InitiallyExpanded: Option<boolean>, Formatting: Option<string>);
|
|
301
|
+
}
|
|
302
|
+
export declare function Spec_ReadOnlyInfo_$reflection(): TypeInfo;
|
|
303
|
+
export type Spec_DemographicFields_$union = Spec_DemographicFields<0> | Spec_DemographicFields<1> | Spec_DemographicFields<2> | Spec_DemographicFields<3> | Spec_DemographicFields<4> | Spec_DemographicFields<5> | Spec_DemographicFields<6> | Spec_DemographicFields<7> | Spec_DemographicFields<8> | Spec_DemographicFields<9> | Spec_DemographicFields<10> | Spec_DemographicFields<11>;
|
|
304
|
+
export type Spec_DemographicFields_$cases = {
|
|
305
|
+
0: ["FirstName", []];
|
|
306
|
+
1: ["LastName", []];
|
|
307
|
+
2: ["DateOfBirth", []];
|
|
308
|
+
3: ["Gender", []];
|
|
309
|
+
4: ["MRN", []];
|
|
310
|
+
5: ["Address", []];
|
|
311
|
+
6: ["Phone", []];
|
|
312
|
+
7: ["Email", []];
|
|
313
|
+
8: ["EmergencyContact", []];
|
|
314
|
+
9: ["Insurance", []];
|
|
315
|
+
10: ["PreferredLanguage", []];
|
|
316
|
+
11: ["All", []];
|
|
317
|
+
};
|
|
318
|
+
export declare function Spec_DemographicFields_FirstName(): Spec_DemographicFields<0>;
|
|
319
|
+
export declare function Spec_DemographicFields_LastName(): Spec_DemographicFields<1>;
|
|
320
|
+
export declare function Spec_DemographicFields_DateOfBirth(): Spec_DemographicFields<2>;
|
|
321
|
+
export declare function Spec_DemographicFields_Gender(): Spec_DemographicFields<3>;
|
|
322
|
+
export declare function Spec_DemographicFields_MRN(): Spec_DemographicFields<4>;
|
|
323
|
+
export declare function Spec_DemographicFields_Address(): Spec_DemographicFields<5>;
|
|
324
|
+
export declare function Spec_DemographicFields_Phone(): Spec_DemographicFields<6>;
|
|
325
|
+
export declare function Spec_DemographicFields_Email(): Spec_DemographicFields<7>;
|
|
326
|
+
export declare function Spec_DemographicFields_EmergencyContact(): Spec_DemographicFields<8>;
|
|
327
|
+
export declare function Spec_DemographicFields_Insurance(): Spec_DemographicFields<9>;
|
|
328
|
+
export declare function Spec_DemographicFields_PreferredLanguage(): Spec_DemographicFields<10>;
|
|
329
|
+
export declare function Spec_DemographicFields_All(): Spec_DemographicFields<11>;
|
|
330
|
+
export declare class Spec_DemographicFields<Tag extends keyof Spec_DemographicFields_$cases> extends Union<Tag, Spec_DemographicFields_$cases[Tag][0]> {
|
|
331
|
+
readonly tag: Tag;
|
|
332
|
+
readonly fields: Spec_DemographicFields_$cases[Tag][1];
|
|
333
|
+
constructor(tag: Tag, fields: Spec_DemographicFields_$cases[Tag][1]);
|
|
334
|
+
cases(): string[];
|
|
335
|
+
}
|
|
336
|
+
export declare function Spec_DemographicFields_$reflection(): TypeInfo;
|
|
337
|
+
export declare class Spec_PatientDemographicsInfo extends Record implements IEquatable<Spec_PatientDemographicsInfo>, IComparable<Spec_PatientDemographicsInfo> {
|
|
338
|
+
readonly Fields: FSharpList<Spec_DemographicFields_$union>;
|
|
339
|
+
readonly RequiredFields: Option<FSharpList<Spec_DemographicFields_$union>>;
|
|
340
|
+
readonly IncludePhoto: Option<boolean>;
|
|
341
|
+
readonly AutoPopulate: Option<boolean>;
|
|
342
|
+
constructor(Fields: FSharpList<Spec_DemographicFields_$union>, RequiredFields: Option<FSharpList<Spec_DemographicFields_$union>>, IncludePhoto: Option<boolean>, AutoPopulate: Option<boolean>);
|
|
343
|
+
}
|
|
344
|
+
export declare function Spec_PatientDemographicsInfo_$reflection(): TypeInfo;
|
|
345
|
+
export type Spec_StaffRole_$union = Spec_StaffRole<0> | Spec_StaffRole<1> | Spec_StaffRole<2> | Spec_StaffRole<3> | Spec_StaffRole<4> | Spec_StaffRole<5> | Spec_StaffRole<6> | Spec_StaffRole<7>;
|
|
346
|
+
export type Spec_StaffRole_$cases = {
|
|
347
|
+
0: ["Physician", []];
|
|
348
|
+
1: ["Nurse", []];
|
|
349
|
+
2: ["NursePractitioner", []];
|
|
350
|
+
3: ["PhysicianAssistant", []];
|
|
351
|
+
4: ["Therapist", []];
|
|
352
|
+
5: ["Technician", []];
|
|
353
|
+
6: ["MedicalAssistant", []];
|
|
354
|
+
7: ["Other", [string]];
|
|
355
|
+
};
|
|
356
|
+
export declare function Spec_StaffRole_Physician(): Spec_StaffRole<0>;
|
|
357
|
+
export declare function Spec_StaffRole_Nurse(): Spec_StaffRole<1>;
|
|
358
|
+
export declare function Spec_StaffRole_NursePractitioner(): Spec_StaffRole<2>;
|
|
359
|
+
export declare function Spec_StaffRole_PhysicianAssistant(): Spec_StaffRole<3>;
|
|
360
|
+
export declare function Spec_StaffRole_Therapist(): Spec_StaffRole<4>;
|
|
361
|
+
export declare function Spec_StaffRole_Technician(): Spec_StaffRole<5>;
|
|
362
|
+
export declare function Spec_StaffRole_MedicalAssistant(): Spec_StaffRole<6>;
|
|
363
|
+
export declare function Spec_StaffRole_Other(Item: string): Spec_StaffRole<7>;
|
|
364
|
+
export declare class Spec_StaffRole<Tag extends keyof Spec_StaffRole_$cases> extends Union<Tag, Spec_StaffRole_$cases[Tag][0]> {
|
|
365
|
+
readonly tag: Tag;
|
|
366
|
+
readonly fields: Spec_StaffRole_$cases[Tag][1];
|
|
367
|
+
constructor(tag: Tag, fields: Spec_StaffRole_$cases[Tag][1]);
|
|
368
|
+
cases(): string[];
|
|
369
|
+
}
|
|
370
|
+
export declare function Spec_StaffRole_$reflection(): TypeInfo;
|
|
371
|
+
export declare class Spec_ClinicalStaffInfo extends Record implements IEquatable<Spec_ClinicalStaffInfo>, IComparable<Spec_ClinicalStaffInfo> {
|
|
372
|
+
readonly Role: Option<Spec_StaffRole_$union>;
|
|
373
|
+
readonly IncludeName: boolean;
|
|
374
|
+
readonly IncludeCredentials: boolean;
|
|
375
|
+
readonly IncludeLicense: boolean;
|
|
376
|
+
readonly IncludeNPI: boolean;
|
|
377
|
+
readonly IncludeSignature: boolean;
|
|
378
|
+
readonly RequireAuthentication: Option<boolean>;
|
|
379
|
+
readonly TimeStamp: Option<boolean>;
|
|
380
|
+
constructor(Role: Option<Spec_StaffRole_$union>, IncludeName: boolean, IncludeCredentials: boolean, IncludeLicense: boolean, IncludeNPI: boolean, IncludeSignature: boolean, RequireAuthentication: Option<boolean>, TimeStamp: Option<boolean>);
|
|
381
|
+
}
|
|
382
|
+
export declare function Spec_ClinicalStaffInfo_$reflection(): TypeInfo;
|
|
383
|
+
export declare class Spec_MatrixItem extends Record implements IEquatable<Spec_MatrixItem>, IComparable<Spec_MatrixItem> {
|
|
384
|
+
readonly ItemKey: Shared_MatrixItemKey;
|
|
385
|
+
readonly ItemLabel: string;
|
|
386
|
+
constructor(ItemKey: Shared_MatrixItemKey, ItemLabel: string);
|
|
387
|
+
}
|
|
388
|
+
export declare function Spec_MatrixItem_$reflection(): TypeInfo;
|
|
389
|
+
export declare class Spec_MatrixInfo extends Record implements IEquatable<Spec_MatrixInfo>, IComparable<Spec_MatrixInfo> {
|
|
390
|
+
readonly Items: FSharpList<Shared_FieldOption>;
|
|
391
|
+
readonly Options: FSharpList<Shared_FieldOption>;
|
|
392
|
+
constructor(Items: FSharpList<Shared_FieldOption>, Options: FSharpList<Shared_FieldOption>);
|
|
393
|
+
}
|
|
394
|
+
export declare function Spec_MatrixInfo_$reflection(): TypeInfo;
|
|
395
|
+
export declare class Spec_SignatureInfo extends Record implements IEquatable<Spec_SignatureInfo>, IComparable<Spec_SignatureInfo> {
|
|
396
|
+
readonly Value: Option<string>;
|
|
397
|
+
constructor(Value: Option<string>);
|
|
398
|
+
}
|
|
399
|
+
export declare function Spec_SignatureInfo_$reflection(): TypeInfo;
|
|
400
|
+
export declare class Spec_PluginFieldConfig extends Record implements IEquatable<Spec_PluginFieldConfig>, IComparable<Spec_PluginFieldConfig> {
|
|
401
|
+
readonly PluginId: string;
|
|
402
|
+
readonly FieldName: string;
|
|
403
|
+
constructor(PluginId: string, FieldName: string);
|
|
404
|
+
}
|
|
405
|
+
export declare function Spec_PluginFieldConfig_$reflection(): TypeInfo;
|
|
406
|
+
export type Spec_FieldType_$union = Spec_FieldType<0> | Spec_FieldType<1> | Spec_FieldType<2> | Spec_FieldType<3> | Spec_FieldType<4> | Spec_FieldType<5> | Spec_FieldType<6> | Spec_FieldType<7> | Spec_FieldType<8> | Spec_FieldType<9> | Spec_FieldType<10> | Spec_FieldType<11> | Spec_FieldType<12> | Spec_FieldType<13> | Spec_FieldType<14> | Spec_FieldType<15> | Spec_FieldType<16> | Spec_FieldType<17> | Spec_FieldType<18> | Spec_FieldType<19> | Spec_FieldType<20> | Spec_FieldType<21> | Spec_FieldType<22>;
|
|
407
|
+
export type Spec_FieldType_$cases = {
|
|
408
|
+
0: ["Text", [Spec_TextInfo]];
|
|
409
|
+
1: ["TextArea", [Spec_TextInfo]];
|
|
410
|
+
2: ["Email", [Spec_TextInfo]];
|
|
411
|
+
3: ["Password", [Spec_TextInfo]];
|
|
412
|
+
4: ["Search", [Spec_TextInfo]];
|
|
413
|
+
5: ["Color", [Spec_TextInfo]];
|
|
414
|
+
6: ["Number", [Spec_TextInfo]];
|
|
415
|
+
7: ["Tel", [Spec_TextInfo]];
|
|
416
|
+
8: ["Date", [Spec_TextInfo]];
|
|
417
|
+
9: ["DateTimeLocal", [Spec_TextInfo]];
|
|
418
|
+
10: ["Time", [Spec_TextInfo]];
|
|
419
|
+
11: ["Checkbox", [Spec_BooleanInfo]];
|
|
420
|
+
12: ["Radio", [Spec_SingleChoiceInfo]];
|
|
421
|
+
13: ["SingleChoice", [Spec_SingleChoiceInfo]];
|
|
422
|
+
14: ["Dropdown", [Spec_SingleChoiceInfo]];
|
|
423
|
+
15: ["MultiChoice", [Spec_MultiChoiceInfo]];
|
|
424
|
+
16: ["CheckboxList", [Spec_MultiChoiceInfo]];
|
|
425
|
+
17: ["TagList", [Spec_MultiChoiceInfo]];
|
|
426
|
+
18: ["TextAutoComplete", [Spec_SingleChoiceInfo]];
|
|
427
|
+
19: ["Matrix", [Spec_MatrixInfo]];
|
|
428
|
+
20: ["Signature", [Spec_SignatureInfo]];
|
|
429
|
+
21: ["Message", [Spec_MessageInfo]];
|
|
430
|
+
22: ["PluginField", [Spec_PluginFieldConfig]];
|
|
431
|
+
};
|
|
432
|
+
export declare function Spec_FieldType_Text(Item: Spec_TextInfo): Spec_FieldType<0>;
|
|
433
|
+
export declare function Spec_FieldType_TextArea(Item: Spec_TextInfo): Spec_FieldType<1>;
|
|
434
|
+
export declare function Spec_FieldType_Email(Item: Spec_TextInfo): Spec_FieldType<2>;
|
|
435
|
+
export declare function Spec_FieldType_Password(Item: Spec_TextInfo): Spec_FieldType<3>;
|
|
436
|
+
export declare function Spec_FieldType_Search(Item: Spec_TextInfo): Spec_FieldType<4>;
|
|
437
|
+
export declare function Spec_FieldType_Color(Item: Spec_TextInfo): Spec_FieldType<5>;
|
|
438
|
+
export declare function Spec_FieldType_Number(Item: Spec_TextInfo): Spec_FieldType<6>;
|
|
439
|
+
export declare function Spec_FieldType_Tel(Item: Spec_TextInfo): Spec_FieldType<7>;
|
|
440
|
+
export declare function Spec_FieldType_Date(Item: Spec_TextInfo): Spec_FieldType<8>;
|
|
441
|
+
export declare function Spec_FieldType_DateTimeLocal(Item: Spec_TextInfo): Spec_FieldType<9>;
|
|
442
|
+
export declare function Spec_FieldType_Time(Item: Spec_TextInfo): Spec_FieldType<10>;
|
|
443
|
+
export declare function Spec_FieldType_Checkbox(Item: Spec_BooleanInfo): Spec_FieldType<11>;
|
|
444
|
+
export declare function Spec_FieldType_Radio(Item: Spec_SingleChoiceInfo): Spec_FieldType<12>;
|
|
445
|
+
export declare function Spec_FieldType_SingleChoice(Item: Spec_SingleChoiceInfo): Spec_FieldType<13>;
|
|
446
|
+
export declare function Spec_FieldType_Dropdown(Item: Spec_SingleChoiceInfo): Spec_FieldType<14>;
|
|
447
|
+
export declare function Spec_FieldType_MultiChoice(Item: Spec_MultiChoiceInfo): Spec_FieldType<15>;
|
|
448
|
+
export declare function Spec_FieldType_CheckboxList(Item: Spec_MultiChoiceInfo): Spec_FieldType<16>;
|
|
449
|
+
export declare function Spec_FieldType_TagList(Item: Spec_MultiChoiceInfo): Spec_FieldType<17>;
|
|
450
|
+
export declare function Spec_FieldType_TextAutoComplete(Item: Spec_SingleChoiceInfo): Spec_FieldType<18>;
|
|
451
|
+
export declare function Spec_FieldType_Matrix(Item: Spec_MatrixInfo): Spec_FieldType<19>;
|
|
452
|
+
export declare function Spec_FieldType_Signature(Item: Spec_SignatureInfo): Spec_FieldType<20>;
|
|
453
|
+
export declare function Spec_FieldType_Message(Item: Spec_MessageInfo): Spec_FieldType<21>;
|
|
454
|
+
export declare function Spec_FieldType_PluginField(Item: Spec_PluginFieldConfig): Spec_FieldType<22>;
|
|
455
|
+
export declare class Spec_FieldType<Tag extends keyof Spec_FieldType_$cases> extends Union<Tag, Spec_FieldType_$cases[Tag][0]> {
|
|
456
|
+
readonly tag: Tag;
|
|
457
|
+
readonly fields: Spec_FieldType_$cases[Tag][1];
|
|
458
|
+
constructor(tag: Tag, fields: Spec_FieldType_$cases[Tag][1]);
|
|
459
|
+
cases(): string[];
|
|
460
|
+
}
|
|
461
|
+
export declare function Spec_FieldType_$reflection(): TypeInfo;
|
|
462
|
+
export declare class Spec_FieldAnswerFlag extends Record implements IEquatable<Spec_FieldAnswerFlag>, IComparable<Spec_FieldAnswerFlag> {
|
|
463
|
+
readonly OptionKey: string;
|
|
464
|
+
readonly Label: string;
|
|
465
|
+
constructor(OptionKey: string, Label: string);
|
|
466
|
+
}
|
|
467
|
+
export declare function Spec_FieldAnswerFlag_$reflection(): TypeInfo;
|
|
468
|
+
export declare class Spec_FormField$1<FieldType> extends Record implements IEquatable<Spec_FormField$1<FieldType>>, IComparable<Spec_FormField$1<FieldType>> {
|
|
469
|
+
readonly FieldOrder: int32;
|
|
470
|
+
readonly FieldKey: Shared_FieldKey;
|
|
471
|
+
readonly Label: string;
|
|
472
|
+
readonly Notes: Option<string>;
|
|
473
|
+
readonly DependsOn: Option<Spec_DependsOn>;
|
|
474
|
+
readonly IsOptional: boolean;
|
|
475
|
+
readonly IsDeprecated: boolean;
|
|
476
|
+
readonly FieldType: FieldType;
|
|
477
|
+
constructor(FieldOrder: int32, FieldKey: Shared_FieldKey, Label: string, Notes: Option<string>, DependsOn: Option<Spec_DependsOn>, IsOptional: boolean, IsDeprecated: boolean, FieldType: FieldType);
|
|
478
|
+
}
|
|
479
|
+
export declare function Spec_FormField$1_$reflection(gen0: TypeInfo): TypeInfo;
|
|
480
|
+
export declare class Spec_FormStep$1<FieldType> extends Record implements IEquatable<Spec_FormStep$1<FieldType>>, IComparable<Spec_FormStep$1<FieldType>> {
|
|
481
|
+
readonly StepOrder: int32;
|
|
482
|
+
readonly StepLabel: string;
|
|
483
|
+
readonly Fields: FSharpList<Spec_FormField$1<FieldType>>;
|
|
484
|
+
constructor(StepOrder: int32, StepLabel: string, Fields: FSharpList<Spec_FormField$1<FieldType>>);
|
|
485
|
+
}
|
|
486
|
+
export declare function Spec_FormStep$1_$reflection(gen0: TypeInfo): TypeInfo;
|
|
487
|
+
export type Spec_ScoreColor_$union = Spec_ScoreColor<0> | Spec_ScoreColor<1> | Spec_ScoreColor<2> | Spec_ScoreColor<3> | Spec_ScoreColor<4> | Spec_ScoreColor<5> | Spec_ScoreColor<6>;
|
|
488
|
+
export type Spec_ScoreColor_$cases = {
|
|
489
|
+
0: ["Unspecified", []];
|
|
490
|
+
1: ["Primary", []];
|
|
491
|
+
2: ["Link", []];
|
|
492
|
+
3: ["Info", []];
|
|
493
|
+
4: ["Success", []];
|
|
494
|
+
5: ["Warning", []];
|
|
495
|
+
6: ["Danger", []];
|
|
496
|
+
};
|
|
497
|
+
export declare function Spec_ScoreColor_Unspecified(): Spec_ScoreColor<0>;
|
|
498
|
+
export declare function Spec_ScoreColor_Primary(): Spec_ScoreColor<1>;
|
|
499
|
+
export declare function Spec_ScoreColor_Link(): Spec_ScoreColor<2>;
|
|
500
|
+
export declare function Spec_ScoreColor_Info(): Spec_ScoreColor<3>;
|
|
501
|
+
export declare function Spec_ScoreColor_Success(): Spec_ScoreColor<4>;
|
|
502
|
+
export declare function Spec_ScoreColor_Warning(): Spec_ScoreColor<5>;
|
|
503
|
+
export declare function Spec_ScoreColor_Danger(): Spec_ScoreColor<6>;
|
|
504
|
+
export declare class Spec_ScoreColor<Tag extends keyof Spec_ScoreColor_$cases> extends Union<Tag, Spec_ScoreColor_$cases[Tag][0]> {
|
|
505
|
+
readonly tag: Tag;
|
|
506
|
+
readonly fields: Spec_ScoreColor_$cases[Tag][1];
|
|
507
|
+
constructor(tag: Tag, fields: Spec_ScoreColor_$cases[Tag][1]);
|
|
508
|
+
cases(): string[];
|
|
509
|
+
}
|
|
510
|
+
export declare function Spec_ScoreColor_$reflection(): TypeInfo;
|
|
511
|
+
export declare class Spec_ScoreRange extends Record implements IEquatable<Spec_ScoreRange>, IComparable<Spec_ScoreRange> {
|
|
512
|
+
readonly Id: string;
|
|
513
|
+
readonly Min: int32;
|
|
514
|
+
readonly Max: int32;
|
|
515
|
+
readonly Label: string;
|
|
516
|
+
readonly Tag: Spec_ScoreColor_$union;
|
|
517
|
+
constructor(Id: string, Min: int32, Max: int32, Label: string, Tag: Spec_ScoreColor_$union);
|
|
518
|
+
}
|
|
519
|
+
export declare function Spec_ScoreRange_$reflection(): TypeInfo;
|
|
520
|
+
export declare class Spec_Score extends Record implements IEquatable<Spec_Score>, IComparable<Spec_Score> {
|
|
521
|
+
readonly MaxScore: int32;
|
|
522
|
+
readonly ScoreRanges: FSharpList<Spec_ScoreRange>;
|
|
523
|
+
constructor(MaxScore: int32, ScoreRanges: FSharpList<Spec_ScoreRange>);
|
|
524
|
+
}
|
|
525
|
+
export declare function Spec_Score_$reflection(): TypeInfo;
|
|
526
|
+
export declare class Spec_FormSpec$1<FieldType> extends Record implements IEquatable<Spec_FormSpec$1<FieldType>>, IComparable<Spec_FormSpec$1<FieldType>> {
|
|
527
|
+
readonly Id: string;
|
|
528
|
+
readonly Code: Option<string>;
|
|
529
|
+
readonly Title: string;
|
|
530
|
+
readonly Abstract: string;
|
|
531
|
+
readonly Version: string;
|
|
532
|
+
readonly FormSpecVersion: string;
|
|
533
|
+
readonly Steps: FSharpList<Spec_FormStep$1<FieldType>>;
|
|
534
|
+
readonly CategoryTags: FSharpList<string>;
|
|
535
|
+
readonly Score: Option<Spec_Score>;
|
|
536
|
+
readonly AssociatedCodes: FSharpList<string>;
|
|
537
|
+
readonly RequiresReview: boolean;
|
|
538
|
+
readonly RequiresReviewAndApproval: boolean;
|
|
539
|
+
readonly ClinicalPathway: Option<ClinicalPathway_ClinicalPathwaySpec>;
|
|
540
|
+
constructor(Id: string, Code: Option<string>, Title: string, Abstract: string, Version: string, FormSpecVersion: string, Steps: FSharpList<Spec_FormStep$1<FieldType>>, CategoryTags: FSharpList<string>, Score: Option<Spec_Score>, AssociatedCodes: FSharpList<string>, RequiresReview: boolean, RequiresReviewAndApproval: boolean, ClinicalPathway: Option<ClinicalPathway_ClinicalPathwaySpec>);
|
|
541
|
+
}
|
|
542
|
+
export declare function Spec_FormSpec$1_$reflection(gen0: TypeInfo): TypeInfo;
|
|
543
|
+
export declare function Spec_Evaluator__get_Key(x: Spec_Evaluator_$union): string;
|
|
544
|
+
export declare function Spec_tryEvaluationKeyToEvaluation(str: string): Option<Spec_Evaluator_$union>;
|
|
545
|
+
export declare const Spec_evaluators: FSharpList<Spec_Evaluator_$union>;
|
|
546
|
+
export declare function Spec_SpecialTextType__get_Label(x: Spec_SpecialTextType_$union): string;
|
|
547
|
+
export declare const Spec_availableSpecialTextType: FSharpList<Spec_SpecialTextType_$union>;
|
|
548
|
+
export declare function Spec_ScoreColor__get_Value(x: Spec_ScoreColor_$union): int32;
|
|
549
|
+
export declare function Spec_scoreColorFromIndex(index: int32): Spec_ScoreColor_$union;
|
|
550
|
+
export declare class ClinicalPathway_MedicationAction extends Record implements IEquatable<ClinicalPathway_MedicationAction>, IComparable<ClinicalPathway_MedicationAction> {
|
|
551
|
+
readonly Name: string;
|
|
552
|
+
readonly Dose: string;
|
|
553
|
+
readonly Route: string;
|
|
554
|
+
readonly Frequency: string;
|
|
555
|
+
readonly Duration: string;
|
|
556
|
+
readonly AsNeeded: boolean;
|
|
557
|
+
constructor(Name: string, Dose: string, Route: string, Frequency: string, Duration: string, AsNeeded: boolean);
|
|
558
|
+
}
|
|
559
|
+
export declare function ClinicalPathway_MedicationAction_$reflection(): TypeInfo;
|
|
560
|
+
export declare class ClinicalPathway_TestAction extends Record implements IEquatable<ClinicalPathway_TestAction>, IComparable<ClinicalPathway_TestAction> {
|
|
561
|
+
readonly TestName: string;
|
|
562
|
+
readonly TestType: string;
|
|
563
|
+
readonly RequiresResult: boolean;
|
|
564
|
+
readonly CriticalValues: Option<FSharpList<[string, string]>>;
|
|
565
|
+
constructor(TestName: string, TestType: string, RequiresResult: boolean, CriticalValues: Option<FSharpList<[string, string]>>);
|
|
566
|
+
}
|
|
567
|
+
export declare function ClinicalPathway_TestAction_$reflection(): TypeInfo;
|
|
568
|
+
export type ClinicalPathway_ReferralUrgency_$union = ClinicalPathway_ReferralUrgency<0> | ClinicalPathway_ReferralUrgency<1> | ClinicalPathway_ReferralUrgency<2>;
|
|
569
|
+
export type ClinicalPathway_ReferralUrgency_$cases = {
|
|
570
|
+
0: ["Immediate", []];
|
|
571
|
+
1: ["Routine", [int32]];
|
|
572
|
+
2: ["AsNeeded", []];
|
|
573
|
+
};
|
|
574
|
+
export declare function ClinicalPathway_ReferralUrgency_Immediate(): ClinicalPathway_ReferralUrgency<0>;
|
|
575
|
+
export declare function ClinicalPathway_ReferralUrgency_Routine(days: int32): ClinicalPathway_ReferralUrgency<1>;
|
|
576
|
+
export declare function ClinicalPathway_ReferralUrgency_AsNeeded(): ClinicalPathway_ReferralUrgency<2>;
|
|
577
|
+
export declare class ClinicalPathway_ReferralUrgency<Tag extends keyof ClinicalPathway_ReferralUrgency_$cases> extends Union<Tag, ClinicalPathway_ReferralUrgency_$cases[Tag][0]> {
|
|
578
|
+
readonly tag: Tag;
|
|
579
|
+
readonly fields: ClinicalPathway_ReferralUrgency_$cases[Tag][1];
|
|
580
|
+
constructor(tag: Tag, fields: ClinicalPathway_ReferralUrgency_$cases[Tag][1]);
|
|
581
|
+
cases(): string[];
|
|
582
|
+
}
|
|
583
|
+
export declare function ClinicalPathway_ReferralUrgency_$reflection(): TypeInfo;
|
|
584
|
+
export declare class ClinicalPathway_ReferralAction extends Record implements IEquatable<ClinicalPathway_ReferralAction>, IComparable<ClinicalPathway_ReferralAction> {
|
|
585
|
+
readonly Target: string;
|
|
586
|
+
readonly Urgency: ClinicalPathway_ReferralUrgency_$union;
|
|
587
|
+
readonly Reason: string;
|
|
588
|
+
constructor(Target: string, Urgency: ClinicalPathway_ReferralUrgency_$union, Reason: string);
|
|
589
|
+
}
|
|
590
|
+
export declare function ClinicalPathway_ReferralAction_$reflection(): TypeInfo;
|
|
591
|
+
export declare class ClinicalPathway_EducationAction extends Record implements IEquatable<ClinicalPathway_EducationAction>, IComparable<ClinicalPathway_EducationAction> {
|
|
592
|
+
readonly Topics: FSharpList<string>;
|
|
593
|
+
readonly Materials: Option<FSharpList<string>>;
|
|
594
|
+
constructor(Topics: FSharpList<string>, Materials: Option<FSharpList<string>>);
|
|
595
|
+
}
|
|
596
|
+
export declare function ClinicalPathway_EducationAction_$reflection(): TypeInfo;
|
|
597
|
+
export declare class ClinicalPathway_ProcedureAction extends Record implements IEquatable<ClinicalPathway_ProcedureAction>, IComparable<ClinicalPathway_ProcedureAction> {
|
|
598
|
+
readonly Name: string;
|
|
599
|
+
readonly Description: string;
|
|
600
|
+
readonly Duration: Option<string>;
|
|
601
|
+
constructor(Name: string, Description: string, Duration: Option<string>);
|
|
602
|
+
}
|
|
603
|
+
export declare function ClinicalPathway_ProcedureAction_$reflection(): TypeInfo;
|
|
604
|
+
export declare class ClinicalPathway_DocumentationAction extends Record implements IEquatable<ClinicalPathway_DocumentationAction>, IComparable<ClinicalPathway_DocumentationAction> {
|
|
605
|
+
readonly FormName: string;
|
|
606
|
+
readonly Purpose: string;
|
|
607
|
+
readonly Required: boolean;
|
|
608
|
+
constructor(FormName: string, Purpose: string, Required: boolean);
|
|
609
|
+
}
|
|
610
|
+
export declare function ClinicalPathway_DocumentationAction_$reflection(): TypeInfo;
|
|
611
|
+
export type ClinicalPathway_TaskPriority_$union = ClinicalPathway_TaskPriority<0> | ClinicalPathway_TaskPriority<1> | ClinicalPathway_TaskPriority<2>;
|
|
612
|
+
export type ClinicalPathway_TaskPriority_$cases = {
|
|
613
|
+
0: ["High", []];
|
|
614
|
+
1: ["Medium", []];
|
|
615
|
+
2: ["Low", []];
|
|
616
|
+
};
|
|
617
|
+
export declare function ClinicalPathway_TaskPriority_High(): ClinicalPathway_TaskPriority<0>;
|
|
618
|
+
export declare function ClinicalPathway_TaskPriority_Medium(): ClinicalPathway_TaskPriority<1>;
|
|
619
|
+
export declare function ClinicalPathway_TaskPriority_Low(): ClinicalPathway_TaskPriority<2>;
|
|
620
|
+
export declare class ClinicalPathway_TaskPriority<Tag extends keyof ClinicalPathway_TaskPriority_$cases> extends Union<Tag, ClinicalPathway_TaskPriority_$cases[Tag][0]> {
|
|
621
|
+
readonly tag: Tag;
|
|
622
|
+
readonly fields: ClinicalPathway_TaskPriority_$cases[Tag][1];
|
|
623
|
+
constructor(tag: Tag, fields: ClinicalPathway_TaskPriority_$cases[Tag][1]);
|
|
624
|
+
cases(): string[];
|
|
625
|
+
}
|
|
626
|
+
export declare function ClinicalPathway_TaskPriority_$reflection(): TypeInfo;
|
|
627
|
+
export type ClinicalPathway_DueDate_$union = ClinicalPathway_DueDate<0> | ClinicalPathway_DueDate<1> | ClinicalPathway_DueDate<2> | ClinicalPathway_DueDate<3>;
|
|
628
|
+
export type ClinicalPathway_DueDate_$cases = {
|
|
629
|
+
0: ["Today", []];
|
|
630
|
+
1: ["Tomorrow", []];
|
|
631
|
+
2: ["DaysFromNow", [int32]];
|
|
632
|
+
3: ["SpecificDate", [Date]];
|
|
633
|
+
};
|
|
634
|
+
export declare function ClinicalPathway_DueDate_Today(): ClinicalPathway_DueDate<0>;
|
|
635
|
+
export declare function ClinicalPathway_DueDate_Tomorrow(): ClinicalPathway_DueDate<1>;
|
|
636
|
+
export declare function ClinicalPathway_DueDate_DaysFromNow(Item: int32): ClinicalPathway_DueDate<2>;
|
|
637
|
+
export declare function ClinicalPathway_DueDate_SpecificDate(Item: Date): ClinicalPathway_DueDate<3>;
|
|
638
|
+
export declare class ClinicalPathway_DueDate<Tag extends keyof ClinicalPathway_DueDate_$cases> extends Union<Tag, ClinicalPathway_DueDate_$cases[Tag][0]> {
|
|
639
|
+
readonly tag: Tag;
|
|
640
|
+
readonly fields: ClinicalPathway_DueDate_$cases[Tag][1];
|
|
641
|
+
constructor(tag: Tag, fields: ClinicalPathway_DueDate_$cases[Tag][1]);
|
|
642
|
+
cases(): string[];
|
|
643
|
+
}
|
|
644
|
+
export declare function ClinicalPathway_DueDate_$reflection(): TypeInfo;
|
|
645
|
+
export type ClinicalPathway_RecurrenceEnd_$union = ClinicalPathway_RecurrenceEnd<0> | ClinicalPathway_RecurrenceEnd<1> | ClinicalPathway_RecurrenceEnd<2>;
|
|
646
|
+
export type ClinicalPathway_RecurrenceEnd_$cases = {
|
|
647
|
+
0: ["OnDate", [Date]];
|
|
648
|
+
1: ["AfterOccurrences", [int32]];
|
|
649
|
+
2: ["Never", []];
|
|
650
|
+
};
|
|
651
|
+
export declare function ClinicalPathway_RecurrenceEnd_OnDate(Item: Date): ClinicalPathway_RecurrenceEnd<0>;
|
|
652
|
+
export declare function ClinicalPathway_RecurrenceEnd_AfterOccurrences(Item: int32): ClinicalPathway_RecurrenceEnd<1>;
|
|
653
|
+
export declare function ClinicalPathway_RecurrenceEnd_Never(): ClinicalPathway_RecurrenceEnd<2>;
|
|
654
|
+
export declare class ClinicalPathway_RecurrenceEnd<Tag extends keyof ClinicalPathway_RecurrenceEnd_$cases> extends Union<Tag, ClinicalPathway_RecurrenceEnd_$cases[Tag][0]> {
|
|
655
|
+
readonly tag: Tag;
|
|
656
|
+
readonly fields: ClinicalPathway_RecurrenceEnd_$cases[Tag][1];
|
|
657
|
+
constructor(tag: Tag, fields: ClinicalPathway_RecurrenceEnd_$cases[Tag][1]);
|
|
658
|
+
cases(): string[];
|
|
659
|
+
}
|
|
660
|
+
export declare function ClinicalPathway_RecurrenceEnd_$reflection(): TypeInfo;
|
|
661
|
+
export declare class ClinicalPathway_RecurrencePattern extends Record implements IEquatable<ClinicalPathway_RecurrencePattern>, IComparable<ClinicalPathway_RecurrencePattern> {
|
|
662
|
+
readonly Interval: number;
|
|
663
|
+
readonly Until: ClinicalPathway_RecurrenceEnd_$union;
|
|
664
|
+
constructor(Interval: number, Until: ClinicalPathway_RecurrenceEnd_$union);
|
|
665
|
+
}
|
|
666
|
+
export declare function ClinicalPathway_RecurrencePattern_$reflection(): TypeInfo;
|
|
667
|
+
export declare class ClinicalPathway_TaskAction extends Record implements IEquatable<ClinicalPathway_TaskAction>, IComparable<ClinicalPathway_TaskAction> {
|
|
668
|
+
readonly Category: string;
|
|
669
|
+
readonly Description: string;
|
|
670
|
+
readonly Priority: ClinicalPathway_TaskPriority_$union;
|
|
671
|
+
readonly DueDate: ClinicalPathway_DueDate_$union;
|
|
672
|
+
readonly Assignee: string;
|
|
673
|
+
readonly Recurrence: Option<ClinicalPathway_RecurrencePattern>;
|
|
674
|
+
constructor(Category: string, Description: string, Priority: ClinicalPathway_TaskPriority_$union, DueDate: ClinicalPathway_DueDate_$union, Assignee: string, Recurrence: Option<ClinicalPathway_RecurrencePattern>);
|
|
675
|
+
}
|
|
676
|
+
export declare function ClinicalPathway_TaskAction_$reflection(): TypeInfo;
|
|
677
|
+
export type ClinicalPathway_AlertSeverity_$union = ClinicalPathway_AlertSeverity<0> | ClinicalPathway_AlertSeverity<1> | ClinicalPathway_AlertSeverity<2> | ClinicalPathway_AlertSeverity<3>;
|
|
678
|
+
export type ClinicalPathway_AlertSeverity_$cases = {
|
|
679
|
+
0: ["Low", []];
|
|
680
|
+
1: ["Medium", []];
|
|
681
|
+
2: ["High", []];
|
|
682
|
+
3: ["Critical", []];
|
|
683
|
+
};
|
|
684
|
+
export declare function ClinicalPathway_AlertSeverity_Low(): ClinicalPathway_AlertSeverity<0>;
|
|
685
|
+
export declare function ClinicalPathway_AlertSeverity_Medium(): ClinicalPathway_AlertSeverity<1>;
|
|
686
|
+
export declare function ClinicalPathway_AlertSeverity_High(): ClinicalPathway_AlertSeverity<2>;
|
|
687
|
+
export declare function ClinicalPathway_AlertSeverity_Critical(): ClinicalPathway_AlertSeverity<3>;
|
|
688
|
+
export declare class ClinicalPathway_AlertSeverity<Tag extends keyof ClinicalPathway_AlertSeverity_$cases> extends Union<Tag, ClinicalPathway_AlertSeverity_$cases[Tag][0]> {
|
|
689
|
+
readonly tag: Tag;
|
|
690
|
+
readonly fields: ClinicalPathway_AlertSeverity_$cases[Tag][1];
|
|
691
|
+
constructor(tag: Tag, fields: ClinicalPathway_AlertSeverity_$cases[Tag][1]);
|
|
692
|
+
cases(): string[];
|
|
693
|
+
}
|
|
694
|
+
export declare function ClinicalPathway_AlertSeverity_$reflection(): TypeInfo;
|
|
695
|
+
export declare class ClinicalPathway_AlertAction extends Record implements IEquatable<ClinicalPathway_AlertAction>, IComparable<ClinicalPathway_AlertAction> {
|
|
696
|
+
readonly Category: string;
|
|
697
|
+
readonly Message: string;
|
|
698
|
+
readonly Severity: ClinicalPathway_AlertSeverity_$union;
|
|
699
|
+
readonly ExpiresAfter: Option<number>;
|
|
700
|
+
constructor(Category: string, Message: string, Severity: ClinicalPathway_AlertSeverity_$union, ExpiresAfter: Option<number>);
|
|
701
|
+
}
|
|
702
|
+
export declare function ClinicalPathway_AlertAction_$reflection(): TypeInfo;
|
|
703
|
+
export type ClinicalPathway_ProblemStatus_$union = ClinicalPathway_ProblemStatus<0> | ClinicalPathway_ProblemStatus<1> | ClinicalPathway_ProblemStatus<2> | ClinicalPathway_ProblemStatus<3>;
|
|
704
|
+
export type ClinicalPathway_ProblemStatus_$cases = {
|
|
705
|
+
0: ["Active", []];
|
|
706
|
+
1: ["Resolved", []];
|
|
707
|
+
2: ["Chronic", []];
|
|
708
|
+
3: ["Inactive", []];
|
|
709
|
+
};
|
|
710
|
+
export declare function ClinicalPathway_ProblemStatus_Active(): ClinicalPathway_ProblemStatus<0>;
|
|
711
|
+
export declare function ClinicalPathway_ProblemStatus_Resolved(): ClinicalPathway_ProblemStatus<1>;
|
|
712
|
+
export declare function ClinicalPathway_ProblemStatus_Chronic(): ClinicalPathway_ProblemStatus<2>;
|
|
713
|
+
export declare function ClinicalPathway_ProblemStatus_Inactive(): ClinicalPathway_ProblemStatus<3>;
|
|
714
|
+
export declare class ClinicalPathway_ProblemStatus<Tag extends keyof ClinicalPathway_ProblemStatus_$cases> extends Union<Tag, ClinicalPathway_ProblemStatus_$cases[Tag][0]> {
|
|
715
|
+
readonly tag: Tag;
|
|
716
|
+
readonly fields: ClinicalPathway_ProblemStatus_$cases[Tag][1];
|
|
717
|
+
constructor(tag: Tag, fields: ClinicalPathway_ProblemStatus_$cases[Tag][1]);
|
|
718
|
+
cases(): string[];
|
|
719
|
+
}
|
|
720
|
+
export declare function ClinicalPathway_ProblemStatus_$reflection(): TypeInfo;
|
|
721
|
+
export declare class ClinicalPathway_ProblemAction extends Record implements IEquatable<ClinicalPathway_ProblemAction>, IComparable<ClinicalPathway_ProblemAction> {
|
|
722
|
+
readonly ProblemName: string;
|
|
723
|
+
readonly IcdCode: Option<string>;
|
|
724
|
+
readonly Onset: Option<Date>;
|
|
725
|
+
readonly Status: ClinicalPathway_ProblemStatus_$union;
|
|
726
|
+
readonly Notes: Option<string>;
|
|
727
|
+
constructor(ProblemName: string, IcdCode: Option<string>, Onset: Option<Date>, Status: ClinicalPathway_ProblemStatus_$union, Notes: Option<string>);
|
|
728
|
+
}
|
|
729
|
+
export declare function ClinicalPathway_ProblemAction_$reflection(): TypeInfo;
|
|
730
|
+
export declare class ClinicalPathway_PrescriptionAction extends Record implements IEquatable<ClinicalPathway_PrescriptionAction>, IComparable<ClinicalPathway_PrescriptionAction> {
|
|
731
|
+
readonly Medication: string;
|
|
732
|
+
readonly Dose: string;
|
|
733
|
+
readonly Route: string;
|
|
734
|
+
readonly Frequency: string;
|
|
735
|
+
readonly Duration: string;
|
|
736
|
+
readonly Quantity: int32;
|
|
737
|
+
readonly Refills: int32;
|
|
738
|
+
readonly Substitution: boolean;
|
|
739
|
+
readonly Instructions: Option<string>;
|
|
740
|
+
constructor(Medication: string, Dose: string, Route: string, Frequency: string, Duration: string, Quantity: int32, Refills: int32, Substitution: boolean, Instructions: Option<string>);
|
|
741
|
+
}
|
|
742
|
+
export declare function ClinicalPathway_PrescriptionAction_$reflection(): TypeInfo;
|
|
743
|
+
export type ClinicalPathway_FieldValueSource_$union = ClinicalPathway_FieldValueSource<0> | ClinicalPathway_FieldValueSource<1> | ClinicalPathway_FieldValueSource<2>;
|
|
744
|
+
export type ClinicalPathway_FieldValueSource_$cases = {
|
|
745
|
+
0: ["LiteralValue", [string]];
|
|
746
|
+
1: ["FieldReference", [Shared_FieldKey]];
|
|
747
|
+
2: ["OptionKey", [Shared_FieldOptionKey]];
|
|
748
|
+
};
|
|
749
|
+
export declare function ClinicalPathway_FieldValueSource_LiteralValue(Item: string): ClinicalPathway_FieldValueSource<0>;
|
|
750
|
+
export declare function ClinicalPathway_FieldValueSource_FieldReference(Item: Shared_FieldKey): ClinicalPathway_FieldValueSource<1>;
|
|
751
|
+
export declare function ClinicalPathway_FieldValueSource_OptionKey(Item: Shared_FieldOptionKey): ClinicalPathway_FieldValueSource<2>;
|
|
752
|
+
export declare class ClinicalPathway_FieldValueSource<Tag extends keyof ClinicalPathway_FieldValueSource_$cases> extends Union<Tag, ClinicalPathway_FieldValueSource_$cases[Tag][0]> {
|
|
753
|
+
readonly tag: Tag;
|
|
754
|
+
readonly fields: ClinicalPathway_FieldValueSource_$cases[Tag][1];
|
|
755
|
+
constructor(tag: Tag, fields: ClinicalPathway_FieldValueSource_$cases[Tag][1]);
|
|
756
|
+
cases(): string[];
|
|
757
|
+
}
|
|
758
|
+
export declare function ClinicalPathway_FieldValueSource_$reflection(): TypeInfo;
|
|
759
|
+
export declare class ClinicalPathway_SetFieldValueAction extends Record implements IEquatable<ClinicalPathway_SetFieldValueAction>, IComparable<ClinicalPathway_SetFieldValueAction> {
|
|
760
|
+
readonly TargetField: Shared_FieldKey;
|
|
761
|
+
readonly Value: ClinicalPathway_FieldValueSource_$union;
|
|
762
|
+
readonly Condition: Option<ClinicalPathway_TransitionCondition_$union>;
|
|
763
|
+
constructor(TargetField: Shared_FieldKey, Value: ClinicalPathway_FieldValueSource_$union, Condition: Option<ClinicalPathway_TransitionCondition_$union>);
|
|
764
|
+
}
|
|
765
|
+
export declare function ClinicalPathway_SetFieldValueAction_$reflection(): TypeInfo;
|
|
766
|
+
export type ClinicalPathway_NavigationType_$union = ClinicalPathway_NavigationType<0> | ClinicalPathway_NavigationType<1> | ClinicalPathway_NavigationType<2> | ClinicalPathway_NavigationType<3>;
|
|
767
|
+
export type ClinicalPathway_NavigationType_$cases = {
|
|
768
|
+
0: ["OpenInNewTab", []];
|
|
769
|
+
1: ["ReplaceCurrentForm", []];
|
|
770
|
+
2: ["OpenAsModal", []];
|
|
771
|
+
3: ["QueueForLater", []];
|
|
772
|
+
};
|
|
773
|
+
export declare function ClinicalPathway_NavigationType_OpenInNewTab(): ClinicalPathway_NavigationType<0>;
|
|
774
|
+
export declare function ClinicalPathway_NavigationType_ReplaceCurrentForm(): ClinicalPathway_NavigationType<1>;
|
|
775
|
+
export declare function ClinicalPathway_NavigationType_OpenAsModal(): ClinicalPathway_NavigationType<2>;
|
|
776
|
+
export declare function ClinicalPathway_NavigationType_QueueForLater(): ClinicalPathway_NavigationType<3>;
|
|
777
|
+
export declare class ClinicalPathway_NavigationType<Tag extends keyof ClinicalPathway_NavigationType_$cases> extends Union<Tag, ClinicalPathway_NavigationType_$cases[Tag][0]> {
|
|
778
|
+
readonly tag: Tag;
|
|
779
|
+
readonly fields: ClinicalPathway_NavigationType_$cases[Tag][1];
|
|
780
|
+
constructor(tag: Tag, fields: ClinicalPathway_NavigationType_$cases[Tag][1]);
|
|
781
|
+
cases(): string[];
|
|
782
|
+
}
|
|
783
|
+
export declare function ClinicalPathway_NavigationType_$reflection(): TypeInfo;
|
|
784
|
+
export declare class ClinicalPathway_NavigateToFormAction extends Record implements IEquatable<ClinicalPathway_NavigateToFormAction>, IComparable<ClinicalPathway_NavigateToFormAction> {
|
|
785
|
+
readonly FormId: string;
|
|
786
|
+
readonly FormCode: Option<string>;
|
|
787
|
+
readonly NavigationType: ClinicalPathway_NavigationType_$union;
|
|
788
|
+
readonly PreFillMappings: Option<FSharpMap<Shared_FieldKey, Shared_FieldKey>>;
|
|
789
|
+
readonly ReturnOnComplete: boolean;
|
|
790
|
+
readonly Condition: Option<ClinicalPathway_TransitionCondition_$union>;
|
|
791
|
+
constructor(FormId: string, FormCode: Option<string>, NavigationType: ClinicalPathway_NavigationType_$union, PreFillMappings: Option<FSharpMap<Shared_FieldKey, Shared_FieldKey>>, ReturnOnComplete: boolean, Condition: Option<ClinicalPathway_TransitionCondition_$union>);
|
|
792
|
+
}
|
|
793
|
+
export declare function ClinicalPathway_NavigateToFormAction_$reflection(): TypeInfo;
|
|
794
|
+
export type ClinicalPathway_ActionInfo_$union = ClinicalPathway_ActionInfo<0> | ClinicalPathway_ActionInfo<1> | ClinicalPathway_ActionInfo<2> | ClinicalPathway_ActionInfo<3> | ClinicalPathway_ActionInfo<4> | ClinicalPathway_ActionInfo<5> | ClinicalPathway_ActionInfo<6> | ClinicalPathway_ActionInfo<7> | ClinicalPathway_ActionInfo<8> | ClinicalPathway_ActionInfo<9> | ClinicalPathway_ActionInfo<10> | ClinicalPathway_ActionInfo<11>;
|
|
795
|
+
export type ClinicalPathway_ActionInfo_$cases = {
|
|
796
|
+
0: ["Medication", [ClinicalPathway_MedicationAction]];
|
|
797
|
+
1: ["Test", [ClinicalPathway_TestAction]];
|
|
798
|
+
2: ["Referral", [ClinicalPathway_ReferralAction]];
|
|
799
|
+
3: ["Education", [ClinicalPathway_EducationAction]];
|
|
800
|
+
4: ["Procedure", [ClinicalPathway_ProcedureAction]];
|
|
801
|
+
5: ["Documentation", [ClinicalPathway_DocumentationAction]];
|
|
802
|
+
6: ["Task", [ClinicalPathway_TaskAction]];
|
|
803
|
+
7: ["Alert", [ClinicalPathway_AlertAction]];
|
|
804
|
+
8: ["Problem", [ClinicalPathway_ProblemAction]];
|
|
805
|
+
9: ["Prescription", [ClinicalPathway_PrescriptionAction]];
|
|
806
|
+
10: ["SetFieldValue", [ClinicalPathway_SetFieldValueAction]];
|
|
807
|
+
11: ["NavigateToForm", [ClinicalPathway_NavigateToFormAction]];
|
|
808
|
+
};
|
|
809
|
+
export declare function ClinicalPathway_ActionInfo_Medication(Item: ClinicalPathway_MedicationAction): ClinicalPathway_ActionInfo<0>;
|
|
810
|
+
export declare function ClinicalPathway_ActionInfo_Test(Item: ClinicalPathway_TestAction): ClinicalPathway_ActionInfo<1>;
|
|
811
|
+
export declare function ClinicalPathway_ActionInfo_Referral(Item: ClinicalPathway_ReferralAction): ClinicalPathway_ActionInfo<2>;
|
|
812
|
+
export declare function ClinicalPathway_ActionInfo_Education(Item: ClinicalPathway_EducationAction): ClinicalPathway_ActionInfo<3>;
|
|
813
|
+
export declare function ClinicalPathway_ActionInfo_Procedure(Item: ClinicalPathway_ProcedureAction): ClinicalPathway_ActionInfo<4>;
|
|
814
|
+
export declare function ClinicalPathway_ActionInfo_Documentation(Item: ClinicalPathway_DocumentationAction): ClinicalPathway_ActionInfo<5>;
|
|
815
|
+
export declare function ClinicalPathway_ActionInfo_Task(Item: ClinicalPathway_TaskAction): ClinicalPathway_ActionInfo<6>;
|
|
816
|
+
export declare function ClinicalPathway_ActionInfo_Alert(Item: ClinicalPathway_AlertAction): ClinicalPathway_ActionInfo<7>;
|
|
817
|
+
export declare function ClinicalPathway_ActionInfo_Problem(Item: ClinicalPathway_ProblemAction): ClinicalPathway_ActionInfo<8>;
|
|
818
|
+
export declare function ClinicalPathway_ActionInfo_Prescription(Item: ClinicalPathway_PrescriptionAction): ClinicalPathway_ActionInfo<9>;
|
|
819
|
+
export declare function ClinicalPathway_ActionInfo_SetFieldValue(Item: ClinicalPathway_SetFieldValueAction): ClinicalPathway_ActionInfo<10>;
|
|
820
|
+
export declare function ClinicalPathway_ActionInfo_NavigateToForm(Item: ClinicalPathway_NavigateToFormAction): ClinicalPathway_ActionInfo<11>;
|
|
821
|
+
export declare class ClinicalPathway_ActionInfo<Tag extends keyof ClinicalPathway_ActionInfo_$cases> extends Union<Tag, ClinicalPathway_ActionInfo_$cases[Tag][0]> {
|
|
822
|
+
readonly tag: Tag;
|
|
823
|
+
readonly fields: ClinicalPathway_ActionInfo_$cases[Tag][1];
|
|
824
|
+
constructor(tag: Tag, fields: ClinicalPathway_ActionInfo_$cases[Tag][1]);
|
|
825
|
+
cases(): string[];
|
|
826
|
+
}
|
|
827
|
+
export declare function ClinicalPathway_ActionInfo_$reflection(): TypeInfo;
|
|
828
|
+
export declare class ClinicalPathway_EvaluationInfo extends Record implements IEquatable<ClinicalPathway_EvaluationInfo>, IComparable<ClinicalPathway_EvaluationInfo> {
|
|
829
|
+
readonly EvaluationName: string;
|
|
830
|
+
readonly Parameters: FSharpList<[Shared_FieldKey, string, string]>;
|
|
831
|
+
readonly CriticalFindings: Option<FSharpList<string>>;
|
|
832
|
+
constructor(EvaluationName: string, Parameters: FSharpList<[Shared_FieldKey, string, string]>, CriticalFindings: Option<FSharpList<string>>);
|
|
833
|
+
}
|
|
834
|
+
export declare function ClinicalPathway_EvaluationInfo_$reflection(): TypeInfo;
|
|
835
|
+
export declare class ClinicalPathway_DecisionInfo extends Record implements IEquatable<ClinicalPathway_DecisionInfo>, IComparable<ClinicalPathway_DecisionInfo> {
|
|
836
|
+
readonly DecisionKey: string;
|
|
837
|
+
readonly Question: string;
|
|
838
|
+
readonly Options: FSharpList<string>;
|
|
839
|
+
constructor(DecisionKey: string, Question: string, Options: FSharpList<string>);
|
|
840
|
+
}
|
|
841
|
+
export declare function ClinicalPathway_DecisionInfo_$reflection(): TypeInfo;
|
|
842
|
+
export declare class ClinicalPathway_TerminalInfo extends Record implements IEquatable<ClinicalPathway_TerminalInfo>, IComparable<ClinicalPathway_TerminalInfo> {
|
|
843
|
+
readonly TerminalType: string;
|
|
844
|
+
readonly Outcome: string;
|
|
845
|
+
readonly Documentation: Option<string>;
|
|
846
|
+
constructor(TerminalType: string, Outcome: string, Documentation: Option<string>);
|
|
847
|
+
}
|
|
848
|
+
export declare function ClinicalPathway_TerminalInfo_$reflection(): TypeInfo;
|
|
849
|
+
export type ClinicalPathway_StateType_$union = ClinicalPathway_StateType<0> | ClinicalPathway_StateType<1> | ClinicalPathway_StateType<2> | ClinicalPathway_StateType<3> | ClinicalPathway_StateType<4> | ClinicalPathway_StateType<5>;
|
|
850
|
+
export type ClinicalPathway_StateType_$cases = {
|
|
851
|
+
0: ["Evaluation", [ClinicalPathway_EvaluationInfo]];
|
|
852
|
+
1: ["Decision", [ClinicalPathway_DecisionInfo]];
|
|
853
|
+
2: ["Action", [ClinicalPathway_ActionInfo_$union]];
|
|
854
|
+
3: ["CompoundAction", [FSharpList<ClinicalPathway_ActionInfo_$union>]];
|
|
855
|
+
4: ["ConditionalAction", [ClinicalPathway_TransitionCondition_$union, ClinicalPathway_ActionInfo_$union, Option<ClinicalPathway_ActionInfo_$union>]];
|
|
856
|
+
5: ["Terminal", [ClinicalPathway_TerminalInfo]];
|
|
857
|
+
};
|
|
858
|
+
export declare function ClinicalPathway_StateType_Evaluation(Item: ClinicalPathway_EvaluationInfo): ClinicalPathway_StateType<0>;
|
|
859
|
+
export declare function ClinicalPathway_StateType_Decision(Item: ClinicalPathway_DecisionInfo): ClinicalPathway_StateType<1>;
|
|
860
|
+
export declare function ClinicalPathway_StateType_Action(Item: ClinicalPathway_ActionInfo_$union): ClinicalPathway_StateType<2>;
|
|
861
|
+
export declare function ClinicalPathway_StateType_CompoundAction(Item: FSharpList<ClinicalPathway_ActionInfo_$union>): ClinicalPathway_StateType<3>;
|
|
862
|
+
export declare function ClinicalPathway_StateType_ConditionalAction(condition: ClinicalPathway_TransitionCondition_$union, thenAction: ClinicalPathway_ActionInfo_$union, elseAction: Option<ClinicalPathway_ActionInfo_$union>): ClinicalPathway_StateType<4>;
|
|
863
|
+
export declare function ClinicalPathway_StateType_Terminal(Item: ClinicalPathway_TerminalInfo): ClinicalPathway_StateType<5>;
|
|
864
|
+
export declare class ClinicalPathway_StateType<Tag extends keyof ClinicalPathway_StateType_$cases> extends Union<Tag, ClinicalPathway_StateType_$cases[Tag][0]> {
|
|
865
|
+
readonly tag: Tag;
|
|
866
|
+
readonly fields: ClinicalPathway_StateType_$cases[Tag][1];
|
|
867
|
+
constructor(tag: Tag, fields: ClinicalPathway_StateType_$cases[Tag][1]);
|
|
868
|
+
cases(): string[];
|
|
869
|
+
}
|
|
870
|
+
export declare function ClinicalPathway_StateType_$reflection(): TypeInfo;
|
|
871
|
+
export declare class ClinicalPathway_StateDefinition extends Record implements IEquatable<ClinicalPathway_StateDefinition>, IComparable<ClinicalPathway_StateDefinition> {
|
|
872
|
+
readonly StateKey: Shared_StateKey;
|
|
873
|
+
readonly StateLabel: string;
|
|
874
|
+
readonly StateOrder: int32;
|
|
875
|
+
readonly StateType: ClinicalPathway_StateType_$union;
|
|
876
|
+
readonly DependsOn: Option<ClinicalPathway_StateDependency>;
|
|
877
|
+
constructor(StateKey: Shared_StateKey, StateLabel: string, StateOrder: int32, StateType: ClinicalPathway_StateType_$union, DependsOn: Option<ClinicalPathway_StateDependency>);
|
|
878
|
+
}
|
|
879
|
+
export declare function ClinicalPathway_StateDefinition_$reflection(): TypeInfo;
|
|
880
|
+
export declare class ClinicalPathway_StateDependency extends Record implements IEquatable<ClinicalPathway_StateDependency>, IComparable<ClinicalPathway_StateDependency> {
|
|
881
|
+
readonly StateKey: Shared_StateKey;
|
|
882
|
+
readonly DependencyType: string;
|
|
883
|
+
constructor(StateKey: Shared_StateKey, DependencyType: string);
|
|
884
|
+
}
|
|
885
|
+
export declare function ClinicalPathway_StateDependency_$reflection(): TypeInfo;
|
|
886
|
+
export type ClinicalPathway_TransitionCondition_$union = ClinicalPathway_TransitionCondition<0> | ClinicalPathway_TransitionCondition<1> | ClinicalPathway_TransitionCondition<2> | ClinicalPathway_TransitionCondition<3> | ClinicalPathway_TransitionCondition<4> | ClinicalPathway_TransitionCondition<5> | ClinicalPathway_TransitionCondition<6>;
|
|
887
|
+
export type ClinicalPathway_TransitionCondition_$cases = {
|
|
888
|
+
0: ["FieldCondition", [Shared_FieldKey, ClinicalPathway_FieldEvaluator_$union, Shared_ConditionValue_$union]];
|
|
889
|
+
1: ["FieldOptionCondition", [Shared_FieldKey, Option<Shared_MatrixItemKey>, Shared_FieldOptionKey, ClinicalPathway_FieldEvaluator_$union, Shared_ConditionValue_$union]];
|
|
890
|
+
2: ["PluginPropertyCondition", [Shared_FieldKey, Shared_PluginPropertyKey, ClinicalPathway_FieldEvaluator_$union, Shared_ConditionValue_$union]];
|
|
891
|
+
3: ["StateCondition", [Shared_StateKey, ClinicalPathway_StateEvaluator_$union]];
|
|
892
|
+
4: ["CompositeCondition", [ClinicalPathway_LogicalOp_$union, FSharpList<ClinicalPathway_TransitionCondition_$union>]];
|
|
893
|
+
5: ["TestResultCondition", [string, string]];
|
|
894
|
+
6: ["Always", []];
|
|
895
|
+
};
|
|
896
|
+
export declare function ClinicalPathway_TransitionCondition_FieldCondition(fieldKey: Shared_FieldKey, evaluator: ClinicalPathway_FieldEvaluator_$union, value: Shared_ConditionValue_$union): ClinicalPathway_TransitionCondition<0>;
|
|
897
|
+
export declare function ClinicalPathway_TransitionCondition_FieldOptionCondition(fieldKey: Shared_FieldKey, fieldItemKey: Option<Shared_MatrixItemKey>, optionKey: Shared_FieldOptionKey, evaluator: ClinicalPathway_FieldEvaluator_$union, value: Shared_ConditionValue_$union): ClinicalPathway_TransitionCondition<1>;
|
|
898
|
+
export declare function ClinicalPathway_TransitionCondition_PluginPropertyCondition(fieldKey: Shared_FieldKey, propertyKey: Shared_PluginPropertyKey, evaluator: ClinicalPathway_FieldEvaluator_$union, value: Shared_ConditionValue_$union): ClinicalPathway_TransitionCondition<2>;
|
|
899
|
+
export declare function ClinicalPathway_TransitionCondition_StateCondition(stateKey: Shared_StateKey, stateEvaluator: ClinicalPathway_StateEvaluator_$union): ClinicalPathway_TransitionCondition<3>;
|
|
900
|
+
export declare function ClinicalPathway_TransitionCondition_CompositeCondition(logicalOp: ClinicalPathway_LogicalOp_$union, conditions: FSharpList<ClinicalPathway_TransitionCondition_$union>): ClinicalPathway_TransitionCondition<4>;
|
|
901
|
+
export declare function ClinicalPathway_TransitionCondition_TestResultCondition(testName: string, result: string): ClinicalPathway_TransitionCondition<5>;
|
|
902
|
+
export declare function ClinicalPathway_TransitionCondition_Always(): ClinicalPathway_TransitionCondition<6>;
|
|
903
|
+
export declare class ClinicalPathway_TransitionCondition<Tag extends keyof ClinicalPathway_TransitionCondition_$cases> extends Union<Tag, ClinicalPathway_TransitionCondition_$cases[Tag][0]> {
|
|
904
|
+
readonly tag: Tag;
|
|
905
|
+
readonly fields: ClinicalPathway_TransitionCondition_$cases[Tag][1];
|
|
906
|
+
constructor(tag: Tag, fields: ClinicalPathway_TransitionCondition_$cases[Tag][1]);
|
|
907
|
+
cases(): string[];
|
|
908
|
+
}
|
|
909
|
+
export declare function ClinicalPathway_TransitionCondition_$reflection(): TypeInfo;
|
|
910
|
+
export type ClinicalPathway_FieldEvaluator_$union = ClinicalPathway_FieldEvaluator<0> | ClinicalPathway_FieldEvaluator<1> | ClinicalPathway_FieldEvaluator<2> | ClinicalPathway_FieldEvaluator<3> | ClinicalPathway_FieldEvaluator<4> | ClinicalPathway_FieldEvaluator<5> | ClinicalPathway_FieldEvaluator<6> | ClinicalPathway_FieldEvaluator<7> | ClinicalPathway_FieldEvaluator<8> | ClinicalPathway_FieldEvaluator<9> | ClinicalPathway_FieldEvaluator<10> | ClinicalPathway_FieldEvaluator<11> | ClinicalPathway_FieldEvaluator<12> | ClinicalPathway_FieldEvaluator<13>;
|
|
911
|
+
export type ClinicalPathway_FieldEvaluator_$cases = {
|
|
912
|
+
0: ["Equals", []];
|
|
913
|
+
1: ["NotEquals", []];
|
|
914
|
+
2: ["InSet", [FSharpList<string>]];
|
|
915
|
+
3: ["NotInSet", [FSharpList<string>]];
|
|
916
|
+
4: ["ContainsAll", [FSharpList<string>]];
|
|
917
|
+
5: ["GreaterThan", []];
|
|
918
|
+
6: ["GreaterOrEqual", []];
|
|
919
|
+
7: ["LessThan", []];
|
|
920
|
+
8: ["LessOrEqual", []];
|
|
921
|
+
9: ["Contains", []];
|
|
922
|
+
10: ["IsPresent", []];
|
|
923
|
+
11: ["IsAbsent", []];
|
|
924
|
+
12: ["MatchesPattern", [string]];
|
|
925
|
+
13: ["InRange", [int32, int32]];
|
|
926
|
+
};
|
|
927
|
+
export declare function ClinicalPathway_FieldEvaluator_Equals(): ClinicalPathway_FieldEvaluator<0>;
|
|
928
|
+
export declare function ClinicalPathway_FieldEvaluator_NotEquals(): ClinicalPathway_FieldEvaluator<1>;
|
|
929
|
+
export declare function ClinicalPathway_FieldEvaluator_InSet(values: FSharpList<string>): ClinicalPathway_FieldEvaluator<2>;
|
|
930
|
+
export declare function ClinicalPathway_FieldEvaluator_NotInSet(values: FSharpList<string>): ClinicalPathway_FieldEvaluator<3>;
|
|
931
|
+
export declare function ClinicalPathway_FieldEvaluator_ContainsAll(values: FSharpList<string>): ClinicalPathway_FieldEvaluator<4>;
|
|
932
|
+
export declare function ClinicalPathway_FieldEvaluator_GreaterThan(): ClinicalPathway_FieldEvaluator<5>;
|
|
933
|
+
export declare function ClinicalPathway_FieldEvaluator_GreaterOrEqual(): ClinicalPathway_FieldEvaluator<6>;
|
|
934
|
+
export declare function ClinicalPathway_FieldEvaluator_LessThan(): ClinicalPathway_FieldEvaluator<7>;
|
|
935
|
+
export declare function ClinicalPathway_FieldEvaluator_LessOrEqual(): ClinicalPathway_FieldEvaluator<8>;
|
|
936
|
+
export declare function ClinicalPathway_FieldEvaluator_Contains(): ClinicalPathway_FieldEvaluator<9>;
|
|
937
|
+
export declare function ClinicalPathway_FieldEvaluator_IsPresent(): ClinicalPathway_FieldEvaluator<10>;
|
|
938
|
+
export declare function ClinicalPathway_FieldEvaluator_IsAbsent(): ClinicalPathway_FieldEvaluator<11>;
|
|
939
|
+
export declare function ClinicalPathway_FieldEvaluator_MatchesPattern(pattern: string): ClinicalPathway_FieldEvaluator<12>;
|
|
940
|
+
export declare function ClinicalPathway_FieldEvaluator_InRange(min: int32, max: int32): ClinicalPathway_FieldEvaluator<13>;
|
|
941
|
+
export declare class ClinicalPathway_FieldEvaluator<Tag extends keyof ClinicalPathway_FieldEvaluator_$cases> extends Union<Tag, ClinicalPathway_FieldEvaluator_$cases[Tag][0]> {
|
|
942
|
+
readonly tag: Tag;
|
|
943
|
+
readonly fields: ClinicalPathway_FieldEvaluator_$cases[Tag][1];
|
|
944
|
+
constructor(tag: Tag, fields: ClinicalPathway_FieldEvaluator_$cases[Tag][1]);
|
|
945
|
+
cases(): string[];
|
|
946
|
+
}
|
|
947
|
+
export declare function ClinicalPathway_FieldEvaluator_$reflection(): TypeInfo;
|
|
948
|
+
export type ClinicalPathway_StateEvaluator_$union = ClinicalPathway_StateEvaluator<0> | ClinicalPathway_StateEvaluator<1> | ClinicalPathway_StateEvaluator<2> | ClinicalPathway_StateEvaluator<3>;
|
|
949
|
+
export type ClinicalPathway_StateEvaluator_$cases = {
|
|
950
|
+
0: ["Completed", []];
|
|
951
|
+
1: ["HasValue", []];
|
|
952
|
+
2: ["HasError", []];
|
|
953
|
+
3: ["WasSkipped", []];
|
|
954
|
+
};
|
|
955
|
+
export declare function ClinicalPathway_StateEvaluator_Completed(): ClinicalPathway_StateEvaluator<0>;
|
|
956
|
+
export declare function ClinicalPathway_StateEvaluator_HasValue(): ClinicalPathway_StateEvaluator<1>;
|
|
957
|
+
export declare function ClinicalPathway_StateEvaluator_HasError(): ClinicalPathway_StateEvaluator<2>;
|
|
958
|
+
export declare function ClinicalPathway_StateEvaluator_WasSkipped(): ClinicalPathway_StateEvaluator<3>;
|
|
959
|
+
export declare class ClinicalPathway_StateEvaluator<Tag extends keyof ClinicalPathway_StateEvaluator_$cases> extends Union<Tag, ClinicalPathway_StateEvaluator_$cases[Tag][0]> {
|
|
960
|
+
readonly tag: Tag;
|
|
961
|
+
readonly fields: ClinicalPathway_StateEvaluator_$cases[Tag][1];
|
|
962
|
+
constructor(tag: Tag, fields: ClinicalPathway_StateEvaluator_$cases[Tag][1]);
|
|
963
|
+
cases(): string[];
|
|
964
|
+
}
|
|
965
|
+
export declare function ClinicalPathway_StateEvaluator_$reflection(): TypeInfo;
|
|
966
|
+
export type ClinicalPathway_LogicalOp_$union = ClinicalPathway_LogicalOp<0> | ClinicalPathway_LogicalOp<1> | ClinicalPathway_LogicalOp<2>;
|
|
967
|
+
export type ClinicalPathway_LogicalOp_$cases = {
|
|
968
|
+
0: ["And", []];
|
|
969
|
+
1: ["Or", []];
|
|
970
|
+
2: ["Not", []];
|
|
971
|
+
};
|
|
972
|
+
export declare function ClinicalPathway_LogicalOp_And(): ClinicalPathway_LogicalOp<0>;
|
|
973
|
+
export declare function ClinicalPathway_LogicalOp_Or(): ClinicalPathway_LogicalOp<1>;
|
|
974
|
+
export declare function ClinicalPathway_LogicalOp_Not(): ClinicalPathway_LogicalOp<2>;
|
|
975
|
+
export declare class ClinicalPathway_LogicalOp<Tag extends keyof ClinicalPathway_LogicalOp_$cases> extends Union<Tag, ClinicalPathway_LogicalOp_$cases[Tag][0]> {
|
|
976
|
+
readonly tag: Tag;
|
|
977
|
+
readonly fields: ClinicalPathway_LogicalOp_$cases[Tag][1];
|
|
978
|
+
constructor(tag: Tag, fields: ClinicalPathway_LogicalOp_$cases[Tag][1]);
|
|
979
|
+
cases(): string[];
|
|
980
|
+
}
|
|
981
|
+
export declare function ClinicalPathway_LogicalOp_$reflection(): TypeInfo;
|
|
982
|
+
export declare class ClinicalPathway_TransitionDefinition extends Record implements IEquatable<ClinicalPathway_TransitionDefinition>, IComparable<ClinicalPathway_TransitionDefinition> {
|
|
983
|
+
readonly TransitionKey: Shared_TransitionKey;
|
|
984
|
+
readonly FromState: Shared_StateKey;
|
|
985
|
+
readonly ToState: Shared_StateKey;
|
|
986
|
+
readonly Condition: ClinicalPathway_TransitionCondition_$union;
|
|
987
|
+
readonly Priority: Option<int32>;
|
|
988
|
+
constructor(TransitionKey: Shared_TransitionKey, FromState: Shared_StateKey, ToState: Shared_StateKey, Condition: ClinicalPathway_TransitionCondition_$union, Priority: Option<int32>);
|
|
989
|
+
}
|
|
990
|
+
export declare function ClinicalPathway_TransitionDefinition_$reflection(): TypeInfo;
|
|
991
|
+
export type ClinicalPathway_ConstraintType_$union = ClinicalPathway_ConstraintType<0> | ClinicalPathway_ConstraintType<1> | ClinicalPathway_ConstraintType<2> | ClinicalPathway_ConstraintType<3>;
|
|
992
|
+
export type ClinicalPathway_ConstraintType_$cases = {
|
|
993
|
+
0: ["VitalSignThreshold", [string, Option<float64>, Option<float64>]];
|
|
994
|
+
1: ["MedicationContraindication", [string, FSharpList<string>]];
|
|
995
|
+
2: ["TimeConstraint", [number]];
|
|
996
|
+
3: ["RequiredField", [Shared_FieldKey]];
|
|
997
|
+
};
|
|
998
|
+
export declare function ClinicalPathway_ConstraintType_VitalSignThreshold(parameter: string, min: Option<float64>, max: Option<float64>): ClinicalPathway_ConstraintType<0>;
|
|
999
|
+
export declare function ClinicalPathway_ConstraintType_MedicationContraindication(medication: string, conditions: FSharpList<string>): ClinicalPathway_ConstraintType<1>;
|
|
1000
|
+
export declare function ClinicalPathway_ConstraintType_TimeConstraint(maxDuration: number): ClinicalPathway_ConstraintType<2>;
|
|
1001
|
+
export declare function ClinicalPathway_ConstraintType_RequiredField(fieldKey: Shared_FieldKey): ClinicalPathway_ConstraintType<3>;
|
|
1002
|
+
export declare class ClinicalPathway_ConstraintType<Tag extends keyof ClinicalPathway_ConstraintType_$cases> extends Union<Tag, ClinicalPathway_ConstraintType_$cases[Tag][0]> {
|
|
1003
|
+
readonly tag: Tag;
|
|
1004
|
+
readonly fields: ClinicalPathway_ConstraintType_$cases[Tag][1];
|
|
1005
|
+
constructor(tag: Tag, fields: ClinicalPathway_ConstraintType_$cases[Tag][1]);
|
|
1006
|
+
cases(): string[];
|
|
1007
|
+
}
|
|
1008
|
+
export declare function ClinicalPathway_ConstraintType_$reflection(): TypeInfo;
|
|
1009
|
+
export declare class ClinicalPathway_ConstraintDefinition extends Record implements IEquatable<ClinicalPathway_ConstraintDefinition>, IComparable<ClinicalPathway_ConstraintDefinition> {
|
|
1010
|
+
readonly ConstraintKey: string;
|
|
1011
|
+
readonly AppliesTo: FSharpList<Shared_StateKey>;
|
|
1012
|
+
readonly ConstraintType: ClinicalPathway_ConstraintType_$union;
|
|
1013
|
+
readonly Severity: string;
|
|
1014
|
+
constructor(ConstraintKey: string, AppliesTo: FSharpList<Shared_StateKey>, ConstraintType: ClinicalPathway_ConstraintType_$union, Severity: string);
|
|
1015
|
+
}
|
|
1016
|
+
export declare function ClinicalPathway_ConstraintDefinition_$reflection(): TypeInfo;
|
|
1017
|
+
export declare class ClinicalPathway_PathRequirement extends Record implements IEquatable<ClinicalPathway_PathRequirement>, IComparable<ClinicalPathway_PathRequirement> {
|
|
1018
|
+
readonly RequirementKey: string;
|
|
1019
|
+
readonly Description: string;
|
|
1020
|
+
readonly MustVisitStates: FSharpList<Shared_StateKey>;
|
|
1021
|
+
readonly MustAvoidStates: Option<FSharpList<Shared_StateKey>>;
|
|
1022
|
+
readonly ValidationRule: Option<string>;
|
|
1023
|
+
constructor(RequirementKey: string, Description: string, MustVisitStates: FSharpList<Shared_StateKey>, MustAvoidStates: Option<FSharpList<Shared_StateKey>>, ValidationRule: Option<string>);
|
|
1024
|
+
}
|
|
1025
|
+
export declare function ClinicalPathway_PathRequirement_$reflection(): TypeInfo;
|
|
1026
|
+
export type ClinicalPathway_SelectionStrategy_$union = ClinicalPathway_SelectionStrategy<0> | ClinicalPathway_SelectionStrategy<1> | ClinicalPathway_SelectionStrategy<2>;
|
|
1027
|
+
export type ClinicalPathway_SelectionStrategy_$cases = {
|
|
1028
|
+
0: ["HighestPriority", []];
|
|
1029
|
+
1: ["MostSpecific", []];
|
|
1030
|
+
2: ["ClinicalSeverity", []];
|
|
1031
|
+
};
|
|
1032
|
+
export declare function ClinicalPathway_SelectionStrategy_HighestPriority(): ClinicalPathway_SelectionStrategy<0>;
|
|
1033
|
+
export declare function ClinicalPathway_SelectionStrategy_MostSpecific(): ClinicalPathway_SelectionStrategy<1>;
|
|
1034
|
+
export declare function ClinicalPathway_SelectionStrategy_ClinicalSeverity(): ClinicalPathway_SelectionStrategy<2>;
|
|
1035
|
+
export declare class ClinicalPathway_SelectionStrategy<Tag extends keyof ClinicalPathway_SelectionStrategy_$cases> extends Union<Tag, ClinicalPathway_SelectionStrategy_$cases[Tag][0]> {
|
|
1036
|
+
readonly tag: Tag;
|
|
1037
|
+
readonly fields: ClinicalPathway_SelectionStrategy_$cases[Tag][1];
|
|
1038
|
+
constructor(tag: Tag, fields: ClinicalPathway_SelectionStrategy_$cases[Tag][1]);
|
|
1039
|
+
cases(): string[];
|
|
1040
|
+
}
|
|
1041
|
+
export declare function ClinicalPathway_SelectionStrategy_$reflection(): TypeInfo;
|
|
1042
|
+
export type ClinicalPathway_CombinationStrategy_$union = ClinicalPathway_CombinationStrategy<0> | ClinicalPathway_CombinationStrategy<1> | ClinicalPathway_CombinationStrategy<2>;
|
|
1043
|
+
export type ClinicalPathway_CombinationStrategy_$cases = {
|
|
1044
|
+
0: ["AllMatching", []];
|
|
1045
|
+
1: ["NonConflicting", []];
|
|
1046
|
+
2: ["Complementary", []];
|
|
1047
|
+
};
|
|
1048
|
+
export declare function ClinicalPathway_CombinationStrategy_AllMatching(): ClinicalPathway_CombinationStrategy<0>;
|
|
1049
|
+
export declare function ClinicalPathway_CombinationStrategy_NonConflicting(): ClinicalPathway_CombinationStrategy<1>;
|
|
1050
|
+
export declare function ClinicalPathway_CombinationStrategy_Complementary(): ClinicalPathway_CombinationStrategy<2>;
|
|
1051
|
+
export declare class ClinicalPathway_CombinationStrategy<Tag extends keyof ClinicalPathway_CombinationStrategy_$cases> extends Union<Tag, ClinicalPathway_CombinationStrategy_$cases[Tag][0]> {
|
|
1052
|
+
readonly tag: Tag;
|
|
1053
|
+
readonly fields: ClinicalPathway_CombinationStrategy_$cases[Tag][1];
|
|
1054
|
+
constructor(tag: Tag, fields: ClinicalPathway_CombinationStrategy_$cases[Tag][1]);
|
|
1055
|
+
cases(): string[];
|
|
1056
|
+
}
|
|
1057
|
+
export declare function ClinicalPathway_CombinationStrategy_$reflection(): TypeInfo;
|
|
1058
|
+
export type ClinicalPathway_ConflictResolution_$union = ClinicalPathway_ConflictResolution<0> | ClinicalPathway_ConflictResolution<1> | ClinicalPathway_ConflictResolution<2>;
|
|
1059
|
+
export type ClinicalPathway_ConflictResolution_$cases = {
|
|
1060
|
+
0: ["CombineActions", []];
|
|
1061
|
+
1: ["PreferHigherPriority", []];
|
|
1062
|
+
2: ["RequireManualReview", []];
|
|
1063
|
+
};
|
|
1064
|
+
export declare function ClinicalPathway_ConflictResolution_CombineActions(): ClinicalPathway_ConflictResolution<0>;
|
|
1065
|
+
export declare function ClinicalPathway_ConflictResolution_PreferHigherPriority(): ClinicalPathway_ConflictResolution<1>;
|
|
1066
|
+
export declare function ClinicalPathway_ConflictResolution_RequireManualReview(): ClinicalPathway_ConflictResolution<2>;
|
|
1067
|
+
export declare class ClinicalPathway_ConflictResolution<Tag extends keyof ClinicalPathway_ConflictResolution_$cases> extends Union<Tag, ClinicalPathway_ConflictResolution_$cases[Tag][0]> {
|
|
1068
|
+
readonly tag: Tag;
|
|
1069
|
+
readonly fields: ClinicalPathway_ConflictResolution_$cases[Tag][1];
|
|
1070
|
+
constructor(tag: Tag, fields: ClinicalPathway_ConflictResolution_$cases[Tag][1]);
|
|
1071
|
+
cases(): string[];
|
|
1072
|
+
}
|
|
1073
|
+
export declare function ClinicalPathway_ConflictResolution_$reflection(): TypeInfo;
|
|
1074
|
+
export declare class ClinicalPathway_SinglePathwayConfig extends Record implements IEquatable<ClinicalPathway_SinglePathwayConfig>, IComparable<ClinicalPathway_SinglePathwayConfig> {
|
|
1075
|
+
readonly SelectionStrategy: ClinicalPathway_SelectionStrategy_$union;
|
|
1076
|
+
readonly RequiresFullEvaluation: boolean;
|
|
1077
|
+
constructor(SelectionStrategy: ClinicalPathway_SelectionStrategy_$union, RequiresFullEvaluation: boolean);
|
|
1078
|
+
}
|
|
1079
|
+
export declare function ClinicalPathway_SinglePathwayConfig_$reflection(): TypeInfo;
|
|
1080
|
+
export declare class ClinicalPathway_MultiPathwayConfig extends Record implements IEquatable<ClinicalPathway_MultiPathwayConfig>, IComparable<ClinicalPathway_MultiPathwayConfig> {
|
|
1081
|
+
readonly CombinationStrategy: ClinicalPathway_CombinationStrategy_$union;
|
|
1082
|
+
readonly ConflictResolution: ClinicalPathway_ConflictResolution_$union;
|
|
1083
|
+
readonly MaxSelections: Option<int32>;
|
|
1084
|
+
constructor(CombinationStrategy: ClinicalPathway_CombinationStrategy_$union, ConflictResolution: ClinicalPathway_ConflictResolution_$union, MaxSelections: Option<int32>);
|
|
1085
|
+
}
|
|
1086
|
+
export declare function ClinicalPathway_MultiPathwayConfig_$reflection(): TypeInfo;
|
|
1087
|
+
export type ClinicalPathway_PathwayExecutionMode_$union = ClinicalPathway_PathwayExecutionMode<0> | ClinicalPathway_PathwayExecutionMode<1> | ClinicalPathway_PathwayExecutionMode<2>;
|
|
1088
|
+
export type ClinicalPathway_PathwayExecutionMode_$cases = {
|
|
1089
|
+
0: ["SinglePathway", [ClinicalPathway_SinglePathwayConfig]];
|
|
1090
|
+
1: ["MultiPathway", [ClinicalPathway_MultiPathwayConfig]];
|
|
1091
|
+
2: ["TriggerBased", [ClinicalPathway_TriggerBasedConfig]];
|
|
1092
|
+
};
|
|
1093
|
+
export declare function ClinicalPathway_PathwayExecutionMode_SinglePathway(Item: ClinicalPathway_SinglePathwayConfig): ClinicalPathway_PathwayExecutionMode<0>;
|
|
1094
|
+
export declare function ClinicalPathway_PathwayExecutionMode_MultiPathway(Item: ClinicalPathway_MultiPathwayConfig): ClinicalPathway_PathwayExecutionMode<1>;
|
|
1095
|
+
export declare function ClinicalPathway_PathwayExecutionMode_TriggerBased(Item: ClinicalPathway_TriggerBasedConfig): ClinicalPathway_PathwayExecutionMode<2>;
|
|
1096
|
+
export declare class ClinicalPathway_PathwayExecutionMode<Tag extends keyof ClinicalPathway_PathwayExecutionMode_$cases> extends Union<Tag, ClinicalPathway_PathwayExecutionMode_$cases[Tag][0]> {
|
|
1097
|
+
readonly tag: Tag;
|
|
1098
|
+
readonly fields: ClinicalPathway_PathwayExecutionMode_$cases[Tag][1];
|
|
1099
|
+
constructor(tag: Tag, fields: ClinicalPathway_PathwayExecutionMode_$cases[Tag][1]);
|
|
1100
|
+
cases(): string[];
|
|
1101
|
+
}
|
|
1102
|
+
export declare function ClinicalPathway_PathwayExecutionMode_$reflection(): TypeInfo;
|
|
1103
|
+
export type ClinicalPathway_TriggerTiming_$union = ClinicalPathway_TriggerTiming<0> | ClinicalPathway_TriggerTiming<1> | ClinicalPathway_TriggerTiming<2> | ClinicalPathway_TriggerTiming<3>;
|
|
1104
|
+
export type ClinicalPathway_TriggerTiming_$cases = {
|
|
1105
|
+
0: ["OnFormSave", []];
|
|
1106
|
+
1: ["OnFormLoad", []];
|
|
1107
|
+
2: ["OnFormSubmit", []];
|
|
1108
|
+
3: ["OnFieldChange", [Shared_FieldKey]];
|
|
1109
|
+
};
|
|
1110
|
+
export declare function ClinicalPathway_TriggerTiming_OnFormSave(): ClinicalPathway_TriggerTiming<0>;
|
|
1111
|
+
export declare function ClinicalPathway_TriggerTiming_OnFormLoad(): ClinicalPathway_TriggerTiming<1>;
|
|
1112
|
+
export declare function ClinicalPathway_TriggerTiming_OnFormSubmit(): ClinicalPathway_TriggerTiming<2>;
|
|
1113
|
+
export declare function ClinicalPathway_TriggerTiming_OnFieldChange(Item: Shared_FieldKey): ClinicalPathway_TriggerTiming<3>;
|
|
1114
|
+
export declare class ClinicalPathway_TriggerTiming<Tag extends keyof ClinicalPathway_TriggerTiming_$cases> extends Union<Tag, ClinicalPathway_TriggerTiming_$cases[Tag][0]> {
|
|
1115
|
+
readonly tag: Tag;
|
|
1116
|
+
readonly fields: ClinicalPathway_TriggerTiming_$cases[Tag][1];
|
|
1117
|
+
constructor(tag: Tag, fields: ClinicalPathway_TriggerTiming_$cases[Tag][1]);
|
|
1118
|
+
cases(): string[];
|
|
1119
|
+
}
|
|
1120
|
+
export declare function ClinicalPathway_TriggerTiming_$reflection(): TypeInfo;
|
|
1121
|
+
export declare class ClinicalPathway_TriggerBasedConfig extends Record implements IEquatable<ClinicalPathway_TriggerBasedConfig>, IComparable<ClinicalPathway_TriggerBasedConfig> {
|
|
1122
|
+
readonly Timing: ClinicalPathway_TriggerTiming_$union;
|
|
1123
|
+
readonly AutoExecute: boolean;
|
|
1124
|
+
constructor(Timing: ClinicalPathway_TriggerTiming_$union, AutoExecute: boolean);
|
|
1125
|
+
}
|
|
1126
|
+
export declare function ClinicalPathway_TriggerBasedConfig_$reflection(): TypeInfo;
|
|
1127
|
+
export declare class ClinicalPathway_ClinicalPathwaySpec extends Record implements IEquatable<ClinicalPathway_ClinicalPathwaySpec>, IComparable<ClinicalPathway_ClinicalPathwaySpec> {
|
|
1128
|
+
readonly PathwayId: string;
|
|
1129
|
+
readonly PathwayName: string;
|
|
1130
|
+
readonly Version: string;
|
|
1131
|
+
readonly ProtocolSource: string;
|
|
1132
|
+
readonly ExecutionMode: ClinicalPathway_PathwayExecutionMode_$union;
|
|
1133
|
+
readonly InitialState: Option<Shared_StateKey>;
|
|
1134
|
+
readonly States: FSharpList<ClinicalPathway_StateDefinition>;
|
|
1135
|
+
readonly Transitions: FSharpList<ClinicalPathway_TransitionDefinition>;
|
|
1136
|
+
readonly Constraints: FSharpList<ClinicalPathway_ConstraintDefinition>;
|
|
1137
|
+
readonly RequiredPaths: FSharpList<ClinicalPathway_PathRequirement>;
|
|
1138
|
+
readonly CreatedDate: Date;
|
|
1139
|
+
readonly ValidatedBy: Option<string>;
|
|
1140
|
+
readonly ValidationDate: Option<Date>;
|
|
1141
|
+
readonly ConfidenceScore: Option<float64>;
|
|
1142
|
+
constructor(PathwayId: string, PathwayName: string, Version: string, ProtocolSource: string, ExecutionMode: ClinicalPathway_PathwayExecutionMode_$union, InitialState: Option<Shared_StateKey>, States: FSharpList<ClinicalPathway_StateDefinition>, Transitions: FSharpList<ClinicalPathway_TransitionDefinition>, Constraints: FSharpList<ClinicalPathway_ConstraintDefinition>, RequiredPaths: FSharpList<ClinicalPathway_PathRequirement>, CreatedDate: Date, ValidatedBy: Option<string>, ValidationDate: Option<Date>, ConfidenceScore: Option<float64>);
|
|
1143
|
+
}
|
|
1144
|
+
export declare function ClinicalPathway_ClinicalPathwaySpec_$reflection(): TypeInfo;
|
|
1145
|
+
export declare class ClinicalPathway_PathExecutionContext extends Record implements IEquatable<ClinicalPathway_PathExecutionContext> {
|
|
1146
|
+
readonly PathwayId: string;
|
|
1147
|
+
readonly CurrentState: Shared_StateKey;
|
|
1148
|
+
readonly VisitedStates: FSharpList<Shared_StateKey>;
|
|
1149
|
+
readonly CollectedData: FSharpMap<Shared_FieldKey, any>;
|
|
1150
|
+
readonly TestResults: FSharpMap<string, string>;
|
|
1151
|
+
readonly CompletedActions: FSharpList<ClinicalPathway_ActionInfo_$union>;
|
|
1152
|
+
readonly Timestamp: Date;
|
|
1153
|
+
constructor(PathwayId: string, CurrentState: Shared_StateKey, VisitedStates: FSharpList<Shared_StateKey>, CollectedData: FSharpMap<Shared_FieldKey, any>, TestResults: FSharpMap<string, string>, CompletedActions: FSharpList<ClinicalPathway_ActionInfo_$union>, Timestamp: Date);
|
|
1154
|
+
}
|
|
1155
|
+
export declare function ClinicalPathway_PathExecutionContext_$reflection(): TypeInfo;
|
|
1156
|
+
export declare class ClinicalPathway_ValidationIssue extends Record implements IEquatable<ClinicalPathway_ValidationIssue>, IComparable<ClinicalPathway_ValidationIssue> {
|
|
1157
|
+
readonly IssueType: string;
|
|
1158
|
+
readonly Severity: string;
|
|
1159
|
+
readonly Location: string;
|
|
1160
|
+
readonly Description: string;
|
|
1161
|
+
constructor(IssueType: string, Severity: string, Location: string, Description: string);
|
|
1162
|
+
}
|
|
1163
|
+
export declare function ClinicalPathway_ValidationIssue_$reflection(): TypeInfo;
|
|
1164
|
+
export declare class ClinicalPathway_PathwayValidationResult extends Record implements IEquatable<ClinicalPathway_PathwayValidationResult>, IComparable<ClinicalPathway_PathwayValidationResult> {
|
|
1165
|
+
readonly IsValid: boolean;
|
|
1166
|
+
readonly Issues: FSharpList<ClinicalPathway_ValidationIssue>;
|
|
1167
|
+
readonly Coverage: float64;
|
|
1168
|
+
readonly CompileStatus: string;
|
|
1169
|
+
constructor(IsValid: boolean, Issues: FSharpList<ClinicalPathway_ValidationIssue>, Coverage: float64, CompileStatus: string);
|
|
1170
|
+
}
|
|
1171
|
+
export declare function ClinicalPathway_PathwayValidationResult_$reflection(): TypeInfo;
|
|
1172
|
+
export declare class Values_StepOrder extends Union<0, "StepOrder"> {
|
|
1173
|
+
constructor(Item: int32);
|
|
1174
|
+
readonly tag: 0;
|
|
1175
|
+
readonly fields: [int32];
|
|
1176
|
+
cases(): string[];
|
|
1177
|
+
}
|
|
1178
|
+
export declare function Values_StepOrder_$reflection(): TypeInfo;
|
|
1179
|
+
export declare class Values_FieldDetails$1<FieldType> extends Record implements IEquatable<Values_FieldDetails$1<FieldType>>, IComparable<Values_FieldDetails$1<FieldType>> {
|
|
1180
|
+
readonly FieldOrder: int32;
|
|
1181
|
+
readonly Key: Shared_FieldKey;
|
|
1182
|
+
readonly Label: string;
|
|
1183
|
+
readonly FieldValue: Shared_FieldValue_$union;
|
|
1184
|
+
readonly FieldType: FieldType;
|
|
1185
|
+
readonly Options: FSharpList<Shared_FieldOption>;
|
|
1186
|
+
constructor(FieldOrder: int32, Key: Shared_FieldKey, Label: string, FieldValue: Shared_FieldValue_$union, FieldType: FieldType, Options: FSharpList<Shared_FieldOption>);
|
|
1187
|
+
}
|
|
1188
|
+
export declare function Values_FieldDetails$1_$reflection(gen0: TypeInfo): TypeInfo;
|
|
1189
|
+
export type Values_FormStatus_$union = Values_FormStatus<0> | Values_FormStatus<1> | Values_FormStatus<2> | Values_FormStatus<3> | Values_FormStatus<4>;
|
|
1190
|
+
export type Values_FormStatus_$cases = {
|
|
1191
|
+
0: ["Pending", []];
|
|
1192
|
+
1: ["Draft", [string]];
|
|
1193
|
+
2: ["WaitingForReview", []];
|
|
1194
|
+
3: ["WaitingForApproval", []];
|
|
1195
|
+
4: ["Complete", []];
|
|
1196
|
+
};
|
|
1197
|
+
export declare function Values_FormStatus_Pending(): Values_FormStatus<0>;
|
|
1198
|
+
export declare function Values_FormStatus_Draft(Item: string): Values_FormStatus<1>;
|
|
1199
|
+
export declare function Values_FormStatus_WaitingForReview(): Values_FormStatus<2>;
|
|
1200
|
+
export declare function Values_FormStatus_WaitingForApproval(): Values_FormStatus<3>;
|
|
1201
|
+
export declare function Values_FormStatus_Complete(): Values_FormStatus<4>;
|
|
1202
|
+
export declare class Values_FormStatus<Tag extends keyof Values_FormStatus_$cases> extends Union<Tag, Values_FormStatus_$cases[Tag][0]> {
|
|
1203
|
+
readonly tag: Tag;
|
|
1204
|
+
readonly fields: Values_FormStatus_$cases[Tag][1];
|
|
1205
|
+
constructor(tag: Tag, fields: Values_FormStatus_$cases[Tag][1]);
|
|
1206
|
+
cases(): string[];
|
|
1207
|
+
}
|
|
1208
|
+
export declare function Values_FormStatus_$reflection(): TypeInfo;
|
|
1209
|
+
export type Values_SignatureType_$union = Values_SignatureType<0> | Values_SignatureType<1>;
|
|
1210
|
+
export type Values_SignatureType_$cases = {
|
|
1211
|
+
0: ["Review", []];
|
|
1212
|
+
1: ["Approval", []];
|
|
1213
|
+
};
|
|
1214
|
+
export declare function Values_SignatureType_Review(): Values_SignatureType<0>;
|
|
1215
|
+
export declare function Values_SignatureType_Approval(): Values_SignatureType<1>;
|
|
1216
|
+
export declare class Values_SignatureType<Tag extends keyof Values_SignatureType_$cases> extends Union<Tag, Values_SignatureType_$cases[Tag][0]> {
|
|
1217
|
+
readonly tag: Tag;
|
|
1218
|
+
readonly fields: Values_SignatureType_$cases[Tag][1];
|
|
1219
|
+
constructor(tag: Tag, fields: Values_SignatureType_$cases[Tag][1]);
|
|
1220
|
+
cases(): string[];
|
|
1221
|
+
}
|
|
1222
|
+
export declare function Values_SignatureType_$reflection(): TypeInfo;
|
|
1223
|
+
export declare class Values_Signature extends Record implements IEquatable<Values_Signature>, IComparable<Values_Signature> {
|
|
1224
|
+
readonly ApprovedById: string;
|
|
1225
|
+
readonly ApprovedByFullName: string;
|
|
1226
|
+
readonly ApprovedByDate: Date;
|
|
1227
|
+
readonly ApprovalSignature: string;
|
|
1228
|
+
readonly SignatureType: Values_SignatureType_$union;
|
|
1229
|
+
constructor(ApprovedById: string, ApprovedByFullName: string, ApprovedByDate: Date, ApprovalSignature: string, SignatureType: Values_SignatureType_$union);
|
|
1230
|
+
}
|
|
1231
|
+
export declare function Values_Signature_$reflection(): TypeInfo;
|
|
1232
|
+
export declare class Values_DynamicFormSpecDetails extends Record implements IEquatable<Values_DynamicFormSpecDetails>, IComparable<Values_DynamicFormSpecDetails> {
|
|
1233
|
+
readonly FormSpecId: string;
|
|
1234
|
+
readonly FormSpecCode: Option<string>;
|
|
1235
|
+
readonly FormSpecVersion: string;
|
|
1236
|
+
readonly DynamicVersion: string;
|
|
1237
|
+
readonly MaxScore: Option<Spec_Score>;
|
|
1238
|
+
readonly Status: Values_FormStatus_$union;
|
|
1239
|
+
readonly Signatures: FSharpList<Values_Signature>;
|
|
1240
|
+
constructor(FormSpecId: string, FormSpecCode: Option<string>, FormSpecVersion: string, DynamicVersion: string, MaxScore: Option<Spec_Score>, Status: Values_FormStatus_$union, Signatures: FSharpList<Values_Signature>);
|
|
1241
|
+
}
|
|
1242
|
+
export declare function Values_DynamicFormSpecDetails_$reflection(): TypeInfo;
|
|
1243
|
+
export declare class Values_DynamicForm$1<FableFormModel> extends Record implements IEquatable<Values_DynamicForm$1<FableFormModel>>, IComparable<Values_DynamicForm$1<FableFormModel>> {
|
|
1244
|
+
readonly DynamicFormSpecDetails: Values_DynamicFormSpecDetails;
|
|
1245
|
+
readonly Steps: FSharpMap<Values_StepOrder, FableFormModel>;
|
|
1246
|
+
constructor(DynamicFormSpecDetails: Values_DynamicFormSpecDetails, Steps: FSharpMap<Values_StepOrder, FableFormModel>);
|
|
1247
|
+
}
|
|
1248
|
+
export declare function Values_DynamicForm$1_$reflection(gen0: TypeInfo): TypeInfo;
|
|
1249
|
+
export declare class Values_DynamicFormResultData$1<FieldType> extends Record implements IEquatable<Values_DynamicFormResultData$1<FieldType>>, IComparable<Values_DynamicFormResultData$1<FieldType>> {
|
|
1250
|
+
readonly ResultFormSpecDetails: Values_DynamicFormSpecDetails;
|
|
1251
|
+
readonly ResultSteps: FSharpMap<Values_StepOrder, FSharpMap<Shared_FieldKey, Values_FieldDetails$1<FieldType>>>;
|
|
1252
|
+
constructor(ResultFormSpecDetails: Values_DynamicFormSpecDetails, ResultSteps: FSharpMap<Values_StepOrder, FSharpMap<Shared_FieldKey, Values_FieldDetails$1<FieldType>>>);
|
|
1253
|
+
}
|
|
1254
|
+
export declare function Values_DynamicFormResultData$1_$reflection(gen0: TypeInfo): TypeInfo;
|
|
1255
|
+
export declare function Values_FormStatus__get_toString(x: Values_FormStatus_$union): string;
|
|
1256
|
+
export declare function Values_formStatusFromString(formStatusString: string): Values_FormStatus_$union;
|
|
1257
|
+
//# sourceMappingURL=FormSpec.d.ts.map
|