digicust_types 1.7.480 → 1.7.481
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.
|
@@ -23,15 +23,15 @@ export interface OpenAiGpt extends CacheModel {
|
|
|
23
23
|
export interface AmazonMaps extends CacheModel {
|
|
24
24
|
service?: "amazon-maps";
|
|
25
25
|
query?: string;
|
|
26
|
-
|
|
26
|
+
value?: AddressModel;
|
|
27
27
|
}
|
|
28
28
|
export interface EcEoriValidation extends CacheModel {
|
|
29
29
|
service?: "ec-eori-validation";
|
|
30
30
|
query?: string;
|
|
31
|
-
|
|
31
|
+
value?: EORI;
|
|
32
32
|
}
|
|
33
33
|
export interface EcVatValidation extends CacheModel {
|
|
34
34
|
service?: "ec-vat-validation";
|
|
35
35
|
query?: string;
|
|
36
|
-
|
|
36
|
+
value?: VATNumber;
|
|
37
37
|
}
|