phenoml 12.4.0 → 12.5.0
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/dist/cjs/BaseClient.js +2 -2
- package/dist/cjs/api/resources/lang2Fhir/client/requests/CreateMultiRequest.d.ts +9 -0
- package/dist/cjs/api/resources/lang2Fhir/client/requests/CreateMultiRequest.js +6 -0
- package/dist/cjs/api/resources/lang2Fhir/client/requests/DocumentMultiRequest.d.ts +9 -0
- package/dist/cjs/api/resources/lang2Fhir/client/requests/DocumentMultiRequest.js +6 -0
- package/dist/cjs/api/resources/lang2Fhir/types/CreateMultiResponse.d.ts +63 -0
- package/dist/cjs/api/resources/lang2Fhir/types/CreateMultiResponse.js +26 -0
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/BaseClient.mjs +2 -2
- package/dist/esm/api/resources/lang2Fhir/client/requests/CreateMultiRequest.d.mts +9 -0
- package/dist/esm/api/resources/lang2Fhir/client/requests/CreateMultiRequest.mjs +6 -0
- package/dist/esm/api/resources/lang2Fhir/client/requests/DocumentMultiRequest.d.mts +9 -0
- package/dist/esm/api/resources/lang2Fhir/client/requests/DocumentMultiRequest.mjs +6 -0
- package/dist/esm/api/resources/lang2Fhir/types/CreateMultiResponse.d.mts +63 -0
- package/dist/esm/api/resources/lang2Fhir/types/CreateMultiResponse.mjs +25 -1
- package/dist/esm/version.d.mts +1 -1
- package/dist/esm/version.mjs +1 -1
- package/package.json +1 -1
package/dist/cjs/BaseClient.js
CHANGED
|
@@ -43,8 +43,8 @@ function normalizeClientOptions(options) {
|
|
|
43
43
|
const headers = (0, headers_js_1.mergeHeaders)({
|
|
44
44
|
"X-Fern-Language": "JavaScript",
|
|
45
45
|
"X-Fern-SDK-Name": "phenoml",
|
|
46
|
-
"X-Fern-SDK-Version": "12.
|
|
47
|
-
"User-Agent": "phenoml/12.
|
|
46
|
+
"X-Fern-SDK-Version": "12.5.0",
|
|
47
|
+
"User-Agent": "phenoml/12.5.0",
|
|
48
48
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
49
49
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
50
50
|
}, options === null || options === void 0 ? void 0 : options.headers);
|
|
@@ -15,6 +15,8 @@ export interface CreateMultiRequest {
|
|
|
15
15
|
implementation_guide?: string;
|
|
16
16
|
/** Detection effort. 'standard' runs detection once, 'deep' runs detection multiple times for higher recall. */
|
|
17
17
|
detection_effort?: CreateMultiRequest.DetectionEffort;
|
|
18
|
+
/** FHIR validation method to apply to the generated bundle. 'none' skips validation (default). 'check' runs the bundle through a FHIR structure validator and includes the results in the response. 'fix' runs validation and attempts to auto-correct errors using an LLM (up to 3 validation passes). The response includes results from each pass. Warning: 'fix' can significantly increase latency due to multiple LLM and validation round-trips. */
|
|
19
|
+
validation_method?: CreateMultiRequest.ValidationMethod;
|
|
18
20
|
}
|
|
19
21
|
export declare namespace CreateMultiRequest {
|
|
20
22
|
/** Detection effort. 'standard' runs detection once, 'deep' runs detection multiple times for higher recall. */
|
|
@@ -23,4 +25,11 @@ export declare namespace CreateMultiRequest {
|
|
|
23
25
|
readonly Deep: "deep";
|
|
24
26
|
};
|
|
25
27
|
type DetectionEffort = (typeof DetectionEffort)[keyof typeof DetectionEffort];
|
|
28
|
+
/** FHIR validation method to apply to the generated bundle. 'none' skips validation (default). 'check' runs the bundle through a FHIR structure validator and includes the results in the response. 'fix' runs validation and attempts to auto-correct errors using an LLM (up to 3 validation passes). The response includes results from each pass. Warning: 'fix' can significantly increase latency due to multiple LLM and validation round-trips. */
|
|
29
|
+
const ValidationMethod: {
|
|
30
|
+
readonly None: "none";
|
|
31
|
+
readonly Check: "check";
|
|
32
|
+
readonly Fix: "fix";
|
|
33
|
+
};
|
|
34
|
+
type ValidationMethod = (typeof ValidationMethod)[keyof typeof ValidationMethod];
|
|
26
35
|
}
|
|
@@ -9,4 +9,10 @@ var CreateMultiRequest;
|
|
|
9
9
|
Standard: "standard",
|
|
10
10
|
Deep: "deep",
|
|
11
11
|
};
|
|
12
|
+
/** FHIR validation method to apply to the generated bundle. 'none' skips validation (default). 'check' runs the bundle through a FHIR structure validator and includes the results in the response. 'fix' runs validation and attempts to auto-correct errors using an LLM (up to 3 validation passes). The response includes results from each pass. Warning: 'fix' can significantly increase latency due to multiple LLM and validation round-trips. */
|
|
13
|
+
CreateMultiRequest.ValidationMethod = {
|
|
14
|
+
None: "none",
|
|
15
|
+
Check: "check",
|
|
16
|
+
Fix: "fix",
|
|
17
|
+
};
|
|
12
18
|
})(CreateMultiRequest || (exports.CreateMultiRequest = CreateMultiRequest = {}));
|
|
@@ -20,6 +20,8 @@ export interface DocumentMultiRequest {
|
|
|
20
20
|
implementation_guide?: string;
|
|
21
21
|
/** Detection effort. 'standard' runs detection once, 'deep' runs detection multiple times for higher recall. */
|
|
22
22
|
detection_effort?: DocumentMultiRequest.DetectionEffort;
|
|
23
|
+
/** FHIR validation method to apply to the generated bundle. 'none' skips validation (default). 'check' runs the bundle through a FHIR structure validator and includes the results in the response. 'fix' runs validation and attempts to auto-correct errors using an LLM (up to 3 validation passes). The response includes results from each pass. Warning: 'fix' can significantly increase latency due to multiple LLM and validation round-trips. */
|
|
24
|
+
validation_method?: DocumentMultiRequest.ValidationMethod;
|
|
23
25
|
}
|
|
24
26
|
export declare namespace DocumentMultiRequest {
|
|
25
27
|
/** Detection effort. 'standard' runs detection once, 'deep' runs detection multiple times for higher recall. */
|
|
@@ -28,4 +30,11 @@ export declare namespace DocumentMultiRequest {
|
|
|
28
30
|
readonly Deep: "deep";
|
|
29
31
|
};
|
|
30
32
|
type DetectionEffort = (typeof DetectionEffort)[keyof typeof DetectionEffort];
|
|
33
|
+
/** FHIR validation method to apply to the generated bundle. 'none' skips validation (default). 'check' runs the bundle through a FHIR structure validator and includes the results in the response. 'fix' runs validation and attempts to auto-correct errors using an LLM (up to 3 validation passes). The response includes results from each pass. Warning: 'fix' can significantly increase latency due to multiple LLM and validation round-trips. */
|
|
34
|
+
const ValidationMethod: {
|
|
35
|
+
readonly None: "none";
|
|
36
|
+
readonly Check: "check";
|
|
37
|
+
readonly Fix: "fix";
|
|
38
|
+
};
|
|
39
|
+
type ValidationMethod = (typeof ValidationMethod)[keyof typeof ValidationMethod];
|
|
31
40
|
}
|
|
@@ -9,4 +9,10 @@ var DocumentMultiRequest;
|
|
|
9
9
|
Standard: "standard",
|
|
10
10
|
Deep: "deep",
|
|
11
11
|
};
|
|
12
|
+
/** FHIR validation method to apply to the generated bundle. 'none' skips validation (default). 'check' runs the bundle through a FHIR structure validator and includes the results in the response. 'fix' runs validation and attempts to auto-correct errors using an LLM (up to 3 validation passes). The response includes results from each pass. Warning: 'fix' can significantly increase latency due to multiple LLM and validation round-trips. */
|
|
13
|
+
DocumentMultiRequest.ValidationMethod = {
|
|
14
|
+
None: "none",
|
|
15
|
+
Check: "check",
|
|
16
|
+
Fix: "fix",
|
|
17
|
+
};
|
|
12
18
|
})(DocumentMultiRequest || (exports.DocumentMultiRequest = DocumentMultiRequest = {}));
|
|
@@ -7,6 +7,8 @@ export interface CreateMultiResponse {
|
|
|
7
7
|
bundle?: CreateMultiResponse.Bundle | undefined;
|
|
8
8
|
/** Summary of extracted resources */
|
|
9
9
|
resources?: CreateMultiResponse.Resources.Item[] | undefined;
|
|
10
|
+
/** FHIR validation results. Present when validation_method is 'check' or 'fix'. Contains results from each validation pass. For 'check', there is one pass. For 'fix', there may be up to 3 passes as the system attempts auto-correction. */
|
|
11
|
+
validation?: CreateMultiResponse.Validation | undefined;
|
|
10
12
|
}
|
|
11
13
|
export declare namespace CreateMultiResponse {
|
|
12
14
|
/**
|
|
@@ -44,4 +46,65 @@ export declare namespace CreateMultiResponse {
|
|
|
44
46
|
description?: string | undefined;
|
|
45
47
|
}
|
|
46
48
|
}
|
|
49
|
+
/**
|
|
50
|
+
* FHIR validation results. Present when validation_method is 'check' or 'fix'. Contains results from each validation pass. For 'check', there is one pass. For 'fix', there may be up to 3 passes as the system attempts auto-correction.
|
|
51
|
+
*/
|
|
52
|
+
interface Validation {
|
|
53
|
+
/** Results from each validation pass, in chronological order */
|
|
54
|
+
passes?: Validation.Passes.Item[] | undefined;
|
|
55
|
+
/** Whether validation errors were successfully fixed by the LLM. Always false for 'check' mode. For 'fix' mode, true if errors were resolved and the returned bundle is the corrected version. */
|
|
56
|
+
fixed?: boolean | undefined;
|
|
57
|
+
/** Total number of validation passes run (1 for check, 1-3 for fix) */
|
|
58
|
+
attempts?: number | undefined;
|
|
59
|
+
/** Human-readable summary of the validation outcome */
|
|
60
|
+
summary?: string | undefined;
|
|
61
|
+
}
|
|
62
|
+
namespace Validation {
|
|
63
|
+
type Passes = Passes.Item[];
|
|
64
|
+
namespace Passes {
|
|
65
|
+
interface Item {
|
|
66
|
+
/** Validation issues found in this pass */
|
|
67
|
+
issues?: Item.Issues.Item[] | undefined;
|
|
68
|
+
/** Validation statistics for this pass */
|
|
69
|
+
stats?: Item.Stats | undefined;
|
|
70
|
+
}
|
|
71
|
+
namespace Item {
|
|
72
|
+
type Issues = Issues.Item[];
|
|
73
|
+
namespace Issues {
|
|
74
|
+
interface Item {
|
|
75
|
+
/** Issue severity level */
|
|
76
|
+
severity?: Item.Severity | undefined;
|
|
77
|
+
/** Issue type code */
|
|
78
|
+
code?: string | undefined;
|
|
79
|
+
/** Human-readable description of the issue */
|
|
80
|
+
diagnostics?: string | undefined;
|
|
81
|
+
/** FHIRPath expression(s) pointing to the issue location */
|
|
82
|
+
expression?: string[] | undefined;
|
|
83
|
+
/** Validation phase that generated this issue */
|
|
84
|
+
source?: string | undefined;
|
|
85
|
+
}
|
|
86
|
+
namespace Item {
|
|
87
|
+
/** Issue severity level */
|
|
88
|
+
const Severity: {
|
|
89
|
+
readonly Fatal: "fatal";
|
|
90
|
+
readonly Error: "error";
|
|
91
|
+
readonly Warning: "warning";
|
|
92
|
+
readonly Information: "information";
|
|
93
|
+
};
|
|
94
|
+
type Severity = (typeof Severity)[keyof typeof Severity];
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* Validation statistics for this pass
|
|
99
|
+
*/
|
|
100
|
+
interface Stats {
|
|
101
|
+
resource_type?: string | undefined;
|
|
102
|
+
profile_url?: string | undefined;
|
|
103
|
+
is_custom_profile?: boolean | undefined;
|
|
104
|
+
/** Validation duration in milliseconds */
|
|
105
|
+
duration_ms?: number | undefined;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
47
110
|
}
|
|
@@ -1,3 +1,29 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// This file was auto-generated by Fern from our API Definition.
|
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.CreateMultiResponse = void 0;
|
|
5
|
+
var CreateMultiResponse;
|
|
6
|
+
(function (CreateMultiResponse) {
|
|
7
|
+
let Validation;
|
|
8
|
+
(function (Validation) {
|
|
9
|
+
let Passes;
|
|
10
|
+
(function (Passes) {
|
|
11
|
+
let Item;
|
|
12
|
+
(function (Item_1) {
|
|
13
|
+
let Issues;
|
|
14
|
+
(function (Issues) {
|
|
15
|
+
let Item;
|
|
16
|
+
(function (Item) {
|
|
17
|
+
/** Issue severity level */
|
|
18
|
+
Item.Severity = {
|
|
19
|
+
Fatal: "fatal",
|
|
20
|
+
Error: "error",
|
|
21
|
+
Warning: "warning",
|
|
22
|
+
Information: "information",
|
|
23
|
+
};
|
|
24
|
+
})(Item = Issues.Item || (Issues.Item = {}));
|
|
25
|
+
})(Issues = Item_1.Issues || (Item_1.Issues = {}));
|
|
26
|
+
})(Item = Passes.Item || (Passes.Item = {}));
|
|
27
|
+
})(Passes = Validation.Passes || (Validation.Passes = {}));
|
|
28
|
+
})(Validation = CreateMultiResponse.Validation || (CreateMultiResponse.Validation = {}));
|
|
29
|
+
})(CreateMultiResponse || (exports.CreateMultiResponse = CreateMultiResponse = {}));
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "12.
|
|
1
|
+
export declare const SDK_VERSION = "12.5.0";
|
package/dist/cjs/version.js
CHANGED
package/dist/esm/BaseClient.mjs
CHANGED
|
@@ -6,8 +6,8 @@ export function normalizeClientOptions(options) {
|
|
|
6
6
|
const headers = mergeHeaders({
|
|
7
7
|
"X-Fern-Language": "JavaScript",
|
|
8
8
|
"X-Fern-SDK-Name": "phenoml",
|
|
9
|
-
"X-Fern-SDK-Version": "12.
|
|
10
|
-
"User-Agent": "phenoml/12.
|
|
9
|
+
"X-Fern-SDK-Version": "12.5.0",
|
|
10
|
+
"User-Agent": "phenoml/12.5.0",
|
|
11
11
|
"X-Fern-Runtime": core.RUNTIME.type,
|
|
12
12
|
"X-Fern-Runtime-Version": core.RUNTIME.version,
|
|
13
13
|
}, options === null || options === void 0 ? void 0 : options.headers);
|
|
@@ -15,6 +15,8 @@ export interface CreateMultiRequest {
|
|
|
15
15
|
implementation_guide?: string;
|
|
16
16
|
/** Detection effort. 'standard' runs detection once, 'deep' runs detection multiple times for higher recall. */
|
|
17
17
|
detection_effort?: CreateMultiRequest.DetectionEffort;
|
|
18
|
+
/** FHIR validation method to apply to the generated bundle. 'none' skips validation (default). 'check' runs the bundle through a FHIR structure validator and includes the results in the response. 'fix' runs validation and attempts to auto-correct errors using an LLM (up to 3 validation passes). The response includes results from each pass. Warning: 'fix' can significantly increase latency due to multiple LLM and validation round-trips. */
|
|
19
|
+
validation_method?: CreateMultiRequest.ValidationMethod;
|
|
18
20
|
}
|
|
19
21
|
export declare namespace CreateMultiRequest {
|
|
20
22
|
/** Detection effort. 'standard' runs detection once, 'deep' runs detection multiple times for higher recall. */
|
|
@@ -23,4 +25,11 @@ export declare namespace CreateMultiRequest {
|
|
|
23
25
|
readonly Deep: "deep";
|
|
24
26
|
};
|
|
25
27
|
type DetectionEffort = (typeof DetectionEffort)[keyof typeof DetectionEffort];
|
|
28
|
+
/** FHIR validation method to apply to the generated bundle. 'none' skips validation (default). 'check' runs the bundle through a FHIR structure validator and includes the results in the response. 'fix' runs validation and attempts to auto-correct errors using an LLM (up to 3 validation passes). The response includes results from each pass. Warning: 'fix' can significantly increase latency due to multiple LLM and validation round-trips. */
|
|
29
|
+
const ValidationMethod: {
|
|
30
|
+
readonly None: "none";
|
|
31
|
+
readonly Check: "check";
|
|
32
|
+
readonly Fix: "fix";
|
|
33
|
+
};
|
|
34
|
+
type ValidationMethod = (typeof ValidationMethod)[keyof typeof ValidationMethod];
|
|
26
35
|
}
|
|
@@ -6,4 +6,10 @@ export var CreateMultiRequest;
|
|
|
6
6
|
Standard: "standard",
|
|
7
7
|
Deep: "deep",
|
|
8
8
|
};
|
|
9
|
+
/** FHIR validation method to apply to the generated bundle. 'none' skips validation (default). 'check' runs the bundle through a FHIR structure validator and includes the results in the response. 'fix' runs validation and attempts to auto-correct errors using an LLM (up to 3 validation passes). The response includes results from each pass. Warning: 'fix' can significantly increase latency due to multiple LLM and validation round-trips. */
|
|
10
|
+
CreateMultiRequest.ValidationMethod = {
|
|
11
|
+
None: "none",
|
|
12
|
+
Check: "check",
|
|
13
|
+
Fix: "fix",
|
|
14
|
+
};
|
|
9
15
|
})(CreateMultiRequest || (CreateMultiRequest = {}));
|
|
@@ -20,6 +20,8 @@ export interface DocumentMultiRequest {
|
|
|
20
20
|
implementation_guide?: string;
|
|
21
21
|
/** Detection effort. 'standard' runs detection once, 'deep' runs detection multiple times for higher recall. */
|
|
22
22
|
detection_effort?: DocumentMultiRequest.DetectionEffort;
|
|
23
|
+
/** FHIR validation method to apply to the generated bundle. 'none' skips validation (default). 'check' runs the bundle through a FHIR structure validator and includes the results in the response. 'fix' runs validation and attempts to auto-correct errors using an LLM (up to 3 validation passes). The response includes results from each pass. Warning: 'fix' can significantly increase latency due to multiple LLM and validation round-trips. */
|
|
24
|
+
validation_method?: DocumentMultiRequest.ValidationMethod;
|
|
23
25
|
}
|
|
24
26
|
export declare namespace DocumentMultiRequest {
|
|
25
27
|
/** Detection effort. 'standard' runs detection once, 'deep' runs detection multiple times for higher recall. */
|
|
@@ -28,4 +30,11 @@ export declare namespace DocumentMultiRequest {
|
|
|
28
30
|
readonly Deep: "deep";
|
|
29
31
|
};
|
|
30
32
|
type DetectionEffort = (typeof DetectionEffort)[keyof typeof DetectionEffort];
|
|
33
|
+
/** FHIR validation method to apply to the generated bundle. 'none' skips validation (default). 'check' runs the bundle through a FHIR structure validator and includes the results in the response. 'fix' runs validation and attempts to auto-correct errors using an LLM (up to 3 validation passes). The response includes results from each pass. Warning: 'fix' can significantly increase latency due to multiple LLM and validation round-trips. */
|
|
34
|
+
const ValidationMethod: {
|
|
35
|
+
readonly None: "none";
|
|
36
|
+
readonly Check: "check";
|
|
37
|
+
readonly Fix: "fix";
|
|
38
|
+
};
|
|
39
|
+
type ValidationMethod = (typeof ValidationMethod)[keyof typeof ValidationMethod];
|
|
31
40
|
}
|
|
@@ -6,4 +6,10 @@ export var DocumentMultiRequest;
|
|
|
6
6
|
Standard: "standard",
|
|
7
7
|
Deep: "deep",
|
|
8
8
|
};
|
|
9
|
+
/** FHIR validation method to apply to the generated bundle. 'none' skips validation (default). 'check' runs the bundle through a FHIR structure validator and includes the results in the response. 'fix' runs validation and attempts to auto-correct errors using an LLM (up to 3 validation passes). The response includes results from each pass. Warning: 'fix' can significantly increase latency due to multiple LLM and validation round-trips. */
|
|
10
|
+
DocumentMultiRequest.ValidationMethod = {
|
|
11
|
+
None: "none",
|
|
12
|
+
Check: "check",
|
|
13
|
+
Fix: "fix",
|
|
14
|
+
};
|
|
9
15
|
})(DocumentMultiRequest || (DocumentMultiRequest = {}));
|
|
@@ -7,6 +7,8 @@ export interface CreateMultiResponse {
|
|
|
7
7
|
bundle?: CreateMultiResponse.Bundle | undefined;
|
|
8
8
|
/** Summary of extracted resources */
|
|
9
9
|
resources?: CreateMultiResponse.Resources.Item[] | undefined;
|
|
10
|
+
/** FHIR validation results. Present when validation_method is 'check' or 'fix'. Contains results from each validation pass. For 'check', there is one pass. For 'fix', there may be up to 3 passes as the system attempts auto-correction. */
|
|
11
|
+
validation?: CreateMultiResponse.Validation | undefined;
|
|
10
12
|
}
|
|
11
13
|
export declare namespace CreateMultiResponse {
|
|
12
14
|
/**
|
|
@@ -44,4 +46,65 @@ export declare namespace CreateMultiResponse {
|
|
|
44
46
|
description?: string | undefined;
|
|
45
47
|
}
|
|
46
48
|
}
|
|
49
|
+
/**
|
|
50
|
+
* FHIR validation results. Present when validation_method is 'check' or 'fix'. Contains results from each validation pass. For 'check', there is one pass. For 'fix', there may be up to 3 passes as the system attempts auto-correction.
|
|
51
|
+
*/
|
|
52
|
+
interface Validation {
|
|
53
|
+
/** Results from each validation pass, in chronological order */
|
|
54
|
+
passes?: Validation.Passes.Item[] | undefined;
|
|
55
|
+
/** Whether validation errors were successfully fixed by the LLM. Always false for 'check' mode. For 'fix' mode, true if errors were resolved and the returned bundle is the corrected version. */
|
|
56
|
+
fixed?: boolean | undefined;
|
|
57
|
+
/** Total number of validation passes run (1 for check, 1-3 for fix) */
|
|
58
|
+
attempts?: number | undefined;
|
|
59
|
+
/** Human-readable summary of the validation outcome */
|
|
60
|
+
summary?: string | undefined;
|
|
61
|
+
}
|
|
62
|
+
namespace Validation {
|
|
63
|
+
type Passes = Passes.Item[];
|
|
64
|
+
namespace Passes {
|
|
65
|
+
interface Item {
|
|
66
|
+
/** Validation issues found in this pass */
|
|
67
|
+
issues?: Item.Issues.Item[] | undefined;
|
|
68
|
+
/** Validation statistics for this pass */
|
|
69
|
+
stats?: Item.Stats | undefined;
|
|
70
|
+
}
|
|
71
|
+
namespace Item {
|
|
72
|
+
type Issues = Issues.Item[];
|
|
73
|
+
namespace Issues {
|
|
74
|
+
interface Item {
|
|
75
|
+
/** Issue severity level */
|
|
76
|
+
severity?: Item.Severity | undefined;
|
|
77
|
+
/** Issue type code */
|
|
78
|
+
code?: string | undefined;
|
|
79
|
+
/** Human-readable description of the issue */
|
|
80
|
+
diagnostics?: string | undefined;
|
|
81
|
+
/** FHIRPath expression(s) pointing to the issue location */
|
|
82
|
+
expression?: string[] | undefined;
|
|
83
|
+
/** Validation phase that generated this issue */
|
|
84
|
+
source?: string | undefined;
|
|
85
|
+
}
|
|
86
|
+
namespace Item {
|
|
87
|
+
/** Issue severity level */
|
|
88
|
+
const Severity: {
|
|
89
|
+
readonly Fatal: "fatal";
|
|
90
|
+
readonly Error: "error";
|
|
91
|
+
readonly Warning: "warning";
|
|
92
|
+
readonly Information: "information";
|
|
93
|
+
};
|
|
94
|
+
type Severity = (typeof Severity)[keyof typeof Severity];
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* Validation statistics for this pass
|
|
99
|
+
*/
|
|
100
|
+
interface Stats {
|
|
101
|
+
resource_type?: string | undefined;
|
|
102
|
+
profile_url?: string | undefined;
|
|
103
|
+
is_custom_profile?: boolean | undefined;
|
|
104
|
+
/** Validation duration in milliseconds */
|
|
105
|
+
duration_ms?: number | undefined;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
47
110
|
}
|
|
@@ -1,2 +1,26 @@
|
|
|
1
1
|
// This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
export
|
|
2
|
+
export var CreateMultiResponse;
|
|
3
|
+
(function (CreateMultiResponse) {
|
|
4
|
+
let Validation;
|
|
5
|
+
(function (Validation) {
|
|
6
|
+
let Passes;
|
|
7
|
+
(function (Passes) {
|
|
8
|
+
let Item;
|
|
9
|
+
(function (Item_1) {
|
|
10
|
+
let Issues;
|
|
11
|
+
(function (Issues) {
|
|
12
|
+
let Item;
|
|
13
|
+
(function (Item) {
|
|
14
|
+
/** Issue severity level */
|
|
15
|
+
Item.Severity = {
|
|
16
|
+
Fatal: "fatal",
|
|
17
|
+
Error: "error",
|
|
18
|
+
Warning: "warning",
|
|
19
|
+
Information: "information",
|
|
20
|
+
};
|
|
21
|
+
})(Item = Issues.Item || (Issues.Item = {}));
|
|
22
|
+
})(Issues = Item_1.Issues || (Item_1.Issues = {}));
|
|
23
|
+
})(Item = Passes.Item || (Passes.Item = {}));
|
|
24
|
+
})(Passes = Validation.Passes || (Validation.Passes = {}));
|
|
25
|
+
})(Validation = CreateMultiResponse.Validation || (CreateMultiResponse.Validation = {}));
|
|
26
|
+
})(CreateMultiResponse || (CreateMultiResponse = {}));
|
package/dist/esm/version.d.mts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "12.
|
|
1
|
+
export declare const SDK_VERSION = "12.5.0";
|
package/dist/esm/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const SDK_VERSION = "12.
|
|
1
|
+
export const SDK_VERSION = "12.5.0";
|