@fill-easy/api 1.0.27 → 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.
Files changed (2) hide show
  1. package/dist/openapi.d.ts +10 -8
  2. package/package.json +1 -1
package/dist/openapi.d.ts CHANGED
@@ -962,11 +962,11 @@ export interface paths {
962
962
  *
963
963
  * The type of search is dependent on the country:
964
964
  *
965
- * *Substring search*: KY, TH
965
+ * *Substring search*: KY, TH, PH
966
966
  *
967
967
  * *Tokenized search (e.g. searching "PLE" will not result in "APPLE")*: AU, SG
968
968
  *
969
- * *Left partial search*: HK
969
+ * *Left partial search*: HK, BM
970
970
  *
971
971
  * *Partial name search*: US
972
972
  */
@@ -3469,7 +3469,7 @@ export interface operations {
3469
3469
  header?: never;
3470
3470
  path: {
3471
3471
  /** @description [ISO 3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-2) country code in lowercase. */
3472
- countryCode: "hk" | "cn" | "au" | "sg" | "ky" | "th" | "us" | "bm" | "kh";
3472
+ countryCode: "hk" | "cn" | "au" | "sg" | "ky" | "th" | "us" | "bm" | "kh" | "ph";
3473
3473
  };
3474
3474
  cookie?: never;
3475
3475
  };
@@ -3518,7 +3518,7 @@ export interface operations {
3518
3518
  header?: never;
3519
3519
  path: {
3520
3520
  /** @description [ISO 3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-2) country code. */
3521
- countryCode: "hk";
3521
+ countryCode: "hk" | "ph";
3522
3522
  };
3523
3523
  cookie?: never;
3524
3524
  };
@@ -3528,10 +3528,12 @@ export interface operations {
3528
3528
  /** @description Company ID (e.g., BRN for Hong Kong, ACN for Australia) */
3529
3529
  companyId: string;
3530
3530
  /**
3531
- * @description Optional filter by document type
3531
+ * @description Optional filter by document type. (Country Specific)
3532
+ * - HK: financialStatement, annualReturn
3533
+ * - PH: GIS, AFS
3532
3534
  * @enum {string}
3533
3535
  */
3534
- documentType?: "financialStatement" | "annualReturn";
3536
+ documentType?: "financialStatement" | "annualReturn" | "GIS" | "AFS";
3535
3537
  /** @description Optional filter by year */
3536
3538
  documentYear?: number;
3537
3539
  };
@@ -3569,7 +3571,7 @@ export interface operations {
3569
3571
  */
3570
3572
  filingDate?: string;
3571
3573
  /** @description Unique document identifier */
3572
- documentId: string;
3574
+ documentId?: string;
3573
3575
  /** @description Company ID */
3574
3576
  companyId: string;
3575
3577
  /** @description Whether the document has linked files */
@@ -3600,7 +3602,7 @@ export interface operations {
3600
3602
  header?: never;
3601
3603
  path: {
3602
3604
  /** @description [ISO 3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-2) country code. */
3603
- countryCode: "hk" | "au" | "sg" | "th" | "us" | "kh";
3605
+ countryCode: "hk" | "au" | "sg" | "th" | "us" | "kh" | "ph";
3604
3606
  };
3605
3607
  cookie?: never;
3606
3608
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fill-easy/api",
3
- "version": "1.0.27",
3
+ "version": "1.0.28",
4
4
  "type": "module",
5
5
  "description": "Type-safe SDK for Fill Easy API",
6
6
  "main": "dist/index.js",