@fill-easy/api 1.0.16 → 1.0.18
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 +45 -55
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -1215,29 +1215,51 @@ export interface components {
|
|
|
1215
1215
|
*/
|
|
1216
1216
|
nameType?: "current" | "old";
|
|
1217
1217
|
/**
|
|
1218
|
-
* @description Type of incorporation/registration
|
|
1219
|
-
*
|
|
1220
|
-
*
|
|
1221
|
-
* - "O" - Overseas company registered in Hong Kong
|
|
1222
|
-
* - "G" - Company limited by guarantee
|
|
1223
|
-
* - "U" - Unlimited company
|
|
1224
|
-
*
|
|
1225
|
-
* @example I
|
|
1218
|
+
* @description Type of incorporation/registration based on Companies Ordinance (Cap. 622)
|
|
1219
|
+
* @example Company Limited by Shares
|
|
1220
|
+
* @enum {string}
|
|
1226
1221
|
*/
|
|
1227
|
-
incorporationType?:
|
|
1222
|
+
incorporationType?: "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" | "N/A";
|
|
1228
1223
|
/**
|
|
1229
|
-
* @description
|
|
1230
|
-
*
|
|
1231
|
-
*
|
|
1232
|
-
* - "P" - Public company
|
|
1233
|
-
* - "N" - Non-Hong Kong company
|
|
1234
|
-
*
|
|
1235
|
-
* @example B
|
|
1224
|
+
* @description Private vs Public company classification based on Companies Ordinance (Cap. 622)
|
|
1225
|
+
* @example Private Company
|
|
1226
|
+
* @enum {string}
|
|
1236
1227
|
*/
|
|
1237
|
-
entityCategory?:
|
|
1228
|
+
entityCategory?: "Public Company" | "Private Company" | "N/A";
|
|
1238
1229
|
/** @description Registered address of the company (when available) */
|
|
1239
1230
|
address?: string;
|
|
1240
1231
|
};
|
|
1232
|
+
CompanyBaseData: components["schemas"]["Company"] & {
|
|
1233
|
+
/**
|
|
1234
|
+
* Format: date
|
|
1235
|
+
* @description Date of dissolution (YYYY-MM-DD format, empty string if not dissolved)
|
|
1236
|
+
* @example
|
|
1237
|
+
*/
|
|
1238
|
+
dissolutionDate?: string;
|
|
1239
|
+
/**
|
|
1240
|
+
* Format: date
|
|
1241
|
+
* @description Date of incorporation/registration (YYYY-MM-DD format)
|
|
1242
|
+
* @example 2021-01-21
|
|
1243
|
+
*/
|
|
1244
|
+
incorporationDate?: string;
|
|
1245
|
+
/**
|
|
1246
|
+
* @description Any remarks or notes about the company
|
|
1247
|
+
* @example
|
|
1248
|
+
*/
|
|
1249
|
+
remarks?: string;
|
|
1250
|
+
/** @description Historical company names (previous names the company has used) */
|
|
1251
|
+
nameHistory?: {
|
|
1252
|
+
/** @description English company name */
|
|
1253
|
+
companyName?: string;
|
|
1254
|
+
/** @description Chinese company name (if available) */
|
|
1255
|
+
localName?: string;
|
|
1256
|
+
/**
|
|
1257
|
+
* Format: date
|
|
1258
|
+
* @description Date when this name became effective (YYYY-MM-DD format)
|
|
1259
|
+
*/
|
|
1260
|
+
effectiveDate?: string;
|
|
1261
|
+
}[];
|
|
1262
|
+
};
|
|
1241
1263
|
};
|
|
1242
1264
|
responses: {
|
|
1243
1265
|
/** @description Unauthorized - Token is missing, invalid, or expired */
|
|
@@ -2817,7 +2839,7 @@ export interface operations {
|
|
|
2817
2839
|
header?: never;
|
|
2818
2840
|
path: {
|
|
2819
2841
|
/** @description [ISO 3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-2) country code in lowercase. */
|
|
2820
|
-
countryCode: "hk" | "cn" | "au" | "sg" | "ky" | "th" | "us";
|
|
2842
|
+
countryCode: "hk" | "cn" | "au" | "sg" | "ky" | "th" | "us" | "bm" | "kh";
|
|
2821
2843
|
};
|
|
2822
2844
|
cookie?: never;
|
|
2823
2845
|
};
|
|
@@ -2908,10 +2930,10 @@ export interface operations {
|
|
|
2908
2930
|
/** @description array of documents filed by the company. */
|
|
2909
2931
|
result?: {
|
|
2910
2932
|
/**
|
|
2911
|
-
* @description Document category (e.g., Annual Return,
|
|
2933
|
+
* @description Document category (e.g., Annual Return & Accounts, Directors & Company Secretaries)
|
|
2912
2934
|
* @enum {string}
|
|
2913
2935
|
*/
|
|
2914
|
-
category: "Annual Return" | "
|
|
2936
|
+
category: "Incorporation & Registration" | "Annual Return & Accounts" | "Directors & Company Secretaries" | "Registered Office & Name Changes" | "Share Capital" | "Charges" | "Articles of Association" | "Deregistration & Liquidation" | "Amalgamation" | "Open-Ended Fund Companies" | "Limited Partnership Funds" | "Rectification & Administration" | "Other";
|
|
2915
2937
|
/** @description Accounting year (for annual returns) */
|
|
2916
2938
|
documentYear?: string;
|
|
2917
2939
|
/** @description English name of the document */
|
|
@@ -2962,7 +2984,7 @@ export interface operations {
|
|
|
2962
2984
|
header?: never;
|
|
2963
2985
|
path: {
|
|
2964
2986
|
/** @description [ISO 3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-2) country code. */
|
|
2965
|
-
countryCode: "hk" | "au" | "sg" | "th" | "us";
|
|
2987
|
+
countryCode: "hk" | "au" | "sg" | "th" | "us" | "kh";
|
|
2966
2988
|
};
|
|
2967
2989
|
cookie?: never;
|
|
2968
2990
|
};
|
|
@@ -2987,40 +3009,8 @@ export interface operations {
|
|
|
2987
3009
|
* @enum {string}
|
|
2988
3010
|
*/
|
|
2989
3011
|
message: "success" | "search error";
|
|
2990
|
-
/** @description Company
|
|
2991
|
-
result?: components["schemas"]["
|
|
2992
|
-
/** @description Business Registration Number / Company ID */
|
|
2993
|
-
brn?: string;
|
|
2994
|
-
/** @description English company name */
|
|
2995
|
-
enName?: string;
|
|
2996
|
-
/** @description Chinese company name */
|
|
2997
|
-
cnName?: string;
|
|
2998
|
-
/**
|
|
2999
|
-
* @description Current status of the company
|
|
3000
|
-
* @enum {string}
|
|
3001
|
-
*/
|
|
3002
|
-
status?: "Live" | "Dissolved";
|
|
3003
|
-
/** @description Type of company */
|
|
3004
|
-
type?: string;
|
|
3005
|
-
/** @description Category of entity */
|
|
3006
|
-
category?: string;
|
|
3007
|
-
/**
|
|
3008
|
-
* Format: date
|
|
3009
|
-
* @description Date of dissolution (YYYY-MM-DD format, empty if not dissolved)
|
|
3010
|
-
*/
|
|
3011
|
-
dissolutionDate?: string;
|
|
3012
|
-
/**
|
|
3013
|
-
* Format: date
|
|
3014
|
-
* @description Date of incorporation/registration (YYYY-MM-DD format)
|
|
3015
|
-
*/
|
|
3016
|
-
incorporationDate?: string;
|
|
3017
|
-
/** @description English remarks */
|
|
3018
|
-
enRemarks?: string;
|
|
3019
|
-
/** @description Simplified Chinese remarks */
|
|
3020
|
-
scRemarks?: string;
|
|
3021
|
-
/** @description Traditional Chinese remarks */
|
|
3022
|
-
tcRemarks?: string;
|
|
3023
|
-
};
|
|
3012
|
+
/** @description Company base information object */
|
|
3013
|
+
result?: components["schemas"]["CompanyBaseData"];
|
|
3024
3014
|
};
|
|
3025
3015
|
};
|
|
3026
3016
|
};
|