@fill-easy/api 1.0.31 → 1.0.32
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 +13 -4
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -1429,7 +1429,7 @@ export interface components {
|
|
|
1429
1429
|
* @example Private Company
|
|
1430
1430
|
* @enum {string}
|
|
1431
1431
|
*/
|
|
1432
|
-
registrationDetail: "Company Limited by Shares" | "Registered Non-Hong Kong Company" | "Company Limited by Guarantee" | "Unlimited Company" | "Registered Society/Organization" | "Open-ended Fund Company" | "Limited Partnership Fund" | "Public Company" | "Private Company" | "Foreign Company" | "Foreign Company Branch" | "Registered Australian Corporation under non-Corporations Law" | "Company Limited by Both Shares and Guarantees" | "No Liability Company" | "Sole Proprietorship/ Partnership" | "Sole Proprietorship" | "Limited Liability Partnership" | "Limited Partnership" | "Unlimited Partnership" | "Local Company" | "Juristic Ordinary Partnership" | "Foreign Juristic Person" | "Joint Venture" | "Chamber of Commerce" | "N/A";
|
|
1432
|
+
registrationDetail: "Company Limited by Shares" | "Registered Non-Hong Kong Company" | "Company Limited by Guarantee" | "Limited Company" | "Unlimited Company" | "Registered Society/Organization" | "Open-ended Fund Company" | "Open-ended Investment Company" | "Limited Partnership Fund" | "Public Company" | "Private Company" | "Foreign Company" | "Foreign Company Branch" | "Registered Overseas Entity" | "Registered Australian Corporation under non-Corporations Law" | "Company Limited by Both Shares and Guarantees" | "No Liability Company" | "Sole Proprietorship/ Partnership" | "Sole Proprietorship" | "Limited Liability Partnership" | "Limited Partnership" | "Unlimited Partnership" | "Local Company" | "Juristic Ordinary Partnership" | "Foreign Juristic Person" | "Joint Venture" | "Chamber of Commerce" | "Private Limited by Guarantee (Section 60 Exemption)" | "Assurance Company" | "European Economic Interest Grouping" | "Royal Charter Body" | "United Kingdom Societas" | "United Kingdom Economic Interest Grouping" | "Charitable Incorporated Organisation" | "Educational Corporation" | "N/A";
|
|
1433
1433
|
};
|
|
1434
1434
|
responses: {
|
|
1435
1435
|
/** @description Unauthorized - Token is missing, invalid, or expired */
|
|
@@ -3727,9 +3727,8 @@ export interface operations {
|
|
|
3727
3727
|
* @description Optional filter by document type. (Country Specific)
|
|
3728
3728
|
* - HK: financialStatement, annualReturn
|
|
3729
3729
|
* - PH: GIS, AFS
|
|
3730
|
-
* @enum {string}
|
|
3731
3730
|
*/
|
|
3732
|
-
documentType?:
|
|
3731
|
+
documentType?: string;
|
|
3733
3732
|
/** @description Optional filter by year */
|
|
3734
3733
|
documentYear?: string;
|
|
3735
3734
|
};
|
|
@@ -3763,7 +3762,7 @@ export interface operations {
|
|
|
3763
3762
|
pages?: string;
|
|
3764
3763
|
/**
|
|
3765
3764
|
* Format: date
|
|
3766
|
-
* @description Filing date (YYYY-MM-DD format)
|
|
3765
|
+
* @description Filing date (YYYY-MM-DD format), can be date of processing or date filed depending on country
|
|
3767
3766
|
*/
|
|
3768
3767
|
filingDate?: string;
|
|
3769
3768
|
/** @description Unique document identifier */
|
|
@@ -3772,6 +3771,16 @@ export interface operations {
|
|
|
3772
3771
|
companyId: string;
|
|
3773
3772
|
/** @description Whether the document has linked files */
|
|
3774
3773
|
hasLinked?: boolean;
|
|
3774
|
+
/**
|
|
3775
|
+
* @description Additional useful info regarding the document
|
|
3776
|
+
* @example {
|
|
3777
|
+
* "made_up_date": "2025-08-26",
|
|
3778
|
+
* "officer_name": "Bob Chan"
|
|
3779
|
+
* }
|
|
3780
|
+
*/
|
|
3781
|
+
description?: {
|
|
3782
|
+
[key: string]: string;
|
|
3783
|
+
};
|
|
3775
3784
|
}[];
|
|
3776
3785
|
};
|
|
3777
3786
|
};
|