@cemiar/document-analysis 1.0.2 → 1.0.3
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.
|
@@ -7,13 +7,12 @@ export interface RenewalComparisonPayload {
|
|
|
7
7
|
policyNumber: string;
|
|
8
8
|
type: string;
|
|
9
9
|
coverageValidations?: CoverageValidationTableResponse[];
|
|
10
|
-
operationId
|
|
10
|
+
operationId?: string;
|
|
11
11
|
}
|
|
12
12
|
export interface RenewalComparisonClientPayload {
|
|
13
13
|
name: string;
|
|
14
14
|
address: string[];
|
|
15
15
|
language: Language;
|
|
16
|
-
recipe: number;
|
|
17
16
|
}
|
|
18
17
|
export interface RenewalComparisonStatePayload {
|
|
19
18
|
base64: string;
|
|
@@ -52,10 +52,6 @@ exports.RenewalComparisonPayloadSchema = joi_1.default.object({
|
|
|
52
52
|
})
|
|
53
53
|
.label("Client Language")
|
|
54
54
|
.meta({ title: "Client Language" }),
|
|
55
|
-
recipe: joi_1.default.number()
|
|
56
|
-
.required()
|
|
57
|
-
.label("Client Recipe")
|
|
58
|
-
.meta({ title: "Client Recipe" }),
|
|
59
55
|
}).required(),
|
|
60
56
|
policyNumber: joi_1.default.string()
|
|
61
57
|
.required()
|
|
@@ -70,7 +66,6 @@ exports.RenewalComparisonPayloadSchema = joi_1.default.object({
|
|
|
70
66
|
.label("Coverage Validations")
|
|
71
67
|
.meta({ title: "Coverage Validations" }),
|
|
72
68
|
operationId: joi_1.default.string()
|
|
73
|
-
.required()
|
|
74
69
|
.label("Operation ID")
|
|
75
70
|
.meta({ title: "Operation ID" }),
|
|
76
71
|
})
|