@fill-easy/api 1.0.26 → 1.0.28
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 +18 -11
- 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, PH
|
|
966
|
+
*
|
|
967
|
+
* *Tokenized search (e.g. searching "PLE" will not result in "APPLE")*: AU, SG
|
|
968
|
+
*
|
|
969
|
+
* *Left partial search*: HK, BM
|
|
970
|
+
*
|
|
971
|
+
* *Partial name search*: US
|
|
968
972
|
*/
|
|
969
973
|
post: operations["searchCompanies"];
|
|
970
974
|
delete?: never;
|
|
@@ -3174,7 +3178,7 @@ export interface operations {
|
|
|
3174
3178
|
companyName?: string;
|
|
3175
3179
|
/** @description Company ID (e.g., BRN for Hong Kong, ACN for Australia) */
|
|
3176
3180
|
companyId?: string;
|
|
3177
|
-
/** @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) */
|
|
3178
3182
|
countryCode: components["schemas"]["AutomatedCountry"] | string;
|
|
3179
3183
|
/**
|
|
3180
3184
|
* @description Type of document
|
|
@@ -3465,7 +3469,7 @@ export interface operations {
|
|
|
3465
3469
|
header?: never;
|
|
3466
3470
|
path: {
|
|
3467
3471
|
/** @description [ISO 3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-2) country code in lowercase. */
|
|
3468
|
-
countryCode: "hk" | "cn" | "au" | "sg" | "ky" | "th" | "us" | "bm" | "kh";
|
|
3472
|
+
countryCode: "hk" | "cn" | "au" | "sg" | "ky" | "th" | "us" | "bm" | "kh" | "ph";
|
|
3469
3473
|
};
|
|
3470
3474
|
cookie?: never;
|
|
3471
3475
|
};
|
|
@@ -3514,7 +3518,7 @@ export interface operations {
|
|
|
3514
3518
|
header?: never;
|
|
3515
3519
|
path: {
|
|
3516
3520
|
/** @description [ISO 3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-2) country code. */
|
|
3517
|
-
countryCode: "hk" | "
|
|
3521
|
+
countryCode: "hk" | "ph";
|
|
3518
3522
|
};
|
|
3519
3523
|
cookie?: never;
|
|
3520
3524
|
};
|
|
@@ -3524,10 +3528,12 @@ export interface operations {
|
|
|
3524
3528
|
/** @description Company ID (e.g., BRN for Hong Kong, ACN for Australia) */
|
|
3525
3529
|
companyId: string;
|
|
3526
3530
|
/**
|
|
3527
|
-
* @description Optional filter by document type
|
|
3531
|
+
* @description Optional filter by document type. (Country Specific)
|
|
3532
|
+
* - HK: financialStatement, annualReturn
|
|
3533
|
+
* - PH: GIS, AFS
|
|
3528
3534
|
* @enum {string}
|
|
3529
3535
|
*/
|
|
3530
|
-
documentType?: "financialStatement" | "annualReturn";
|
|
3536
|
+
documentType?: "financialStatement" | "annualReturn" | "GIS" | "AFS";
|
|
3531
3537
|
/** @description Optional filter by year */
|
|
3532
3538
|
documentYear?: number;
|
|
3533
3539
|
};
|
|
@@ -3565,7 +3571,7 @@ export interface operations {
|
|
|
3565
3571
|
*/
|
|
3566
3572
|
filingDate?: string;
|
|
3567
3573
|
/** @description Unique document identifier */
|
|
3568
|
-
documentId
|
|
3574
|
+
documentId?: string;
|
|
3569
3575
|
/** @description Company ID */
|
|
3570
3576
|
companyId: string;
|
|
3571
3577
|
/** @description Whether the document has linked files */
|
|
@@ -3596,7 +3602,7 @@ export interface operations {
|
|
|
3596
3602
|
header?: never;
|
|
3597
3603
|
path: {
|
|
3598
3604
|
/** @description [ISO 3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-2) country code. */
|
|
3599
|
-
countryCode: "hk" | "au" | "sg" | "th" | "us" | "kh";
|
|
3605
|
+
countryCode: "hk" | "au" | "sg" | "th" | "us" | "kh" | "ph";
|
|
3600
3606
|
};
|
|
3601
3607
|
cookie?: never;
|
|
3602
3608
|
};
|
|
@@ -3873,6 +3879,7 @@ export interface operations {
|
|
|
3873
3879
|
"application/json": {
|
|
3874
3880
|
block?: string;
|
|
3875
3881
|
eng_street_name?: string;
|
|
3882
|
+
ch_street_name?: string;
|
|
3876
3883
|
flat?: string;
|
|
3877
3884
|
floor?: string;
|
|
3878
3885
|
free_entry?: string[];
|