@fill-easy/api 1.0.30 → 1.0.31
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/openapi.d.ts +23 -8
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -1248,6 +1248,13 @@ export interface components {
|
|
|
1248
1248
|
financial: boolean;
|
|
1249
1249
|
};
|
|
1250
1250
|
};
|
|
1251
|
+
CraInvalidCountryError: {
|
|
1252
|
+
/**
|
|
1253
|
+
* @description Error message indicating the country code is invalid or the service is not offered
|
|
1254
|
+
* @example Invalid countryCode / Service not offered for countryCode: XX
|
|
1255
|
+
*/
|
|
1256
|
+
message: string;
|
|
1257
|
+
};
|
|
1251
1258
|
Error: {
|
|
1252
1259
|
/**
|
|
1253
1260
|
* @description Error message
|
|
@@ -3393,12 +3400,14 @@ export interface operations {
|
|
|
3393
3400
|
};
|
|
3394
3401
|
};
|
|
3395
3402
|
};
|
|
3396
|
-
/** @description Bad Request - Invalid
|
|
3403
|
+
/** @description Bad Request - Invalid or unsupported country code */
|
|
3397
3404
|
400: {
|
|
3398
3405
|
headers: {
|
|
3399
3406
|
[name: string]: unknown;
|
|
3400
3407
|
};
|
|
3401
|
-
content
|
|
3408
|
+
content: {
|
|
3409
|
+
"application/json": components["schemas"]["CraInvalidCountryError"];
|
|
3410
|
+
};
|
|
3402
3411
|
};
|
|
3403
3412
|
/** @description Internal server error */
|
|
3404
3413
|
500: {
|
|
@@ -3681,12 +3690,14 @@ export interface operations {
|
|
|
3681
3690
|
};
|
|
3682
3691
|
};
|
|
3683
3692
|
};
|
|
3684
|
-
/** @description Bad Request - Invalid
|
|
3693
|
+
/** @description Bad Request - Invalid or unsupported country code */
|
|
3685
3694
|
400: {
|
|
3686
3695
|
headers: {
|
|
3687
3696
|
[name: string]: unknown;
|
|
3688
3697
|
};
|
|
3689
|
-
content
|
|
3698
|
+
content: {
|
|
3699
|
+
"application/json": components["schemas"]["CraInvalidCountryError"];
|
|
3700
|
+
};
|
|
3690
3701
|
};
|
|
3691
3702
|
/** @description Internal server error */
|
|
3692
3703
|
500: {
|
|
@@ -3765,12 +3776,14 @@ export interface operations {
|
|
|
3765
3776
|
};
|
|
3766
3777
|
};
|
|
3767
3778
|
};
|
|
3768
|
-
/** @description Bad Request - Invalid
|
|
3779
|
+
/** @description Bad Request - Invalid or unsupported country code */
|
|
3769
3780
|
400: {
|
|
3770
3781
|
headers: {
|
|
3771
3782
|
[name: string]: unknown;
|
|
3772
3783
|
};
|
|
3773
|
-
content
|
|
3784
|
+
content: {
|
|
3785
|
+
"application/json": components["schemas"]["CraInvalidCountryError"];
|
|
3786
|
+
};
|
|
3774
3787
|
};
|
|
3775
3788
|
/** @description Internal server error */
|
|
3776
3789
|
500: {
|
|
@@ -3817,12 +3830,14 @@ export interface operations {
|
|
|
3817
3830
|
};
|
|
3818
3831
|
};
|
|
3819
3832
|
};
|
|
3820
|
-
/** @description Bad Request - Invalid
|
|
3833
|
+
/** @description Bad Request - Invalid or unsupported country code */
|
|
3821
3834
|
400: {
|
|
3822
3835
|
headers: {
|
|
3823
3836
|
[name: string]: unknown;
|
|
3824
3837
|
};
|
|
3825
|
-
content
|
|
3838
|
+
content: {
|
|
3839
|
+
"application/json": components["schemas"]["CraInvalidCountryError"];
|
|
3840
|
+
};
|
|
3826
3841
|
};
|
|
3827
3842
|
/** @description Internal server error */
|
|
3828
3843
|
500: {
|