@fill-easy/api 1.0.25 → 1.0.27
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 +12 -6
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -961,10 +961,14 @@ export interface paths {
|
|
|
961
961
|
* characters and adjust the search parameters accordingly.
|
|
962
962
|
*
|
|
963
963
|
* The type of search is dependent on the country:
|
|
964
|
-
*
|
|
965
|
-
*
|
|
966
|
-
*
|
|
967
|
-
*
|
|
964
|
+
*
|
|
965
|
+
* *Substring search*: KY, TH
|
|
966
|
+
*
|
|
967
|
+
* *Tokenized search (e.g. searching "PLE" will not result in "APPLE")*: AU, SG
|
|
968
|
+
*
|
|
969
|
+
* *Left partial search*: HK
|
|
970
|
+
*
|
|
971
|
+
* *Partial name search*: US
|
|
968
972
|
*/
|
|
969
973
|
post: operations["searchCompanies"];
|
|
970
974
|
delete?: never;
|
|
@@ -1332,6 +1336,7 @@ export interface components {
|
|
|
1332
1336
|
nameType?: "current" | "old";
|
|
1333
1337
|
/** @description Registered address of the company (when available) */
|
|
1334
1338
|
address?: string;
|
|
1339
|
+
/** @description A list of attributes defining the company's legal structure, registration category, or public/private status as defined by the local jurisdiction. */
|
|
1335
1340
|
registrationDetails: components["schemas"]["registrationDetail"][];
|
|
1336
1341
|
/**
|
|
1337
1342
|
* Format: date
|
|
@@ -3173,7 +3178,7 @@ export interface operations {
|
|
|
3173
3178
|
companyName?: string;
|
|
3174
3179
|
/** @description Company ID (e.g., BRN for Hong Kong, ACN for Australia) */
|
|
3175
3180
|
companyId?: string;
|
|
3176
|
-
/** @description [ISO 3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-2) country code
|
|
3181
|
+
/** @description [ISO 3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-2) country code (case insensitive) */
|
|
3177
3182
|
countryCode: components["schemas"]["AutomatedCountry"] | string;
|
|
3178
3183
|
/**
|
|
3179
3184
|
* @description Type of document
|
|
@@ -3513,7 +3518,7 @@ export interface operations {
|
|
|
3513
3518
|
header?: never;
|
|
3514
3519
|
path: {
|
|
3515
3520
|
/** @description [ISO 3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-2) country code. */
|
|
3516
|
-
countryCode: "hk"
|
|
3521
|
+
countryCode: "hk";
|
|
3517
3522
|
};
|
|
3518
3523
|
cookie?: never;
|
|
3519
3524
|
};
|
|
@@ -3872,6 +3877,7 @@ export interface operations {
|
|
|
3872
3877
|
"application/json": {
|
|
3873
3878
|
block?: string;
|
|
3874
3879
|
eng_street_name?: string;
|
|
3880
|
+
ch_street_name?: string;
|
|
3875
3881
|
flat?: string;
|
|
3876
3882
|
floor?: string;
|
|
3877
3883
|
free_entry?: string[];
|