@fill-easy/api 1.0.26 → 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.
Files changed (2) hide show
  1. package/dist/openapi.d.ts +11 -6
  2. 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
- * Substring search: KY, TH
965
- * Tokenized search (e.g. searching "PLE" will not result in "APPLE"): AU, SG
966
- * Left partial search: HK
967
- * Partial name search: US
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;
@@ -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
@@ -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" | "au" | "sg";
3521
+ countryCode: "hk";
3518
3522
  };
3519
3523
  cookie?: never;
3520
3524
  };
@@ -3873,6 +3877,7 @@ export interface operations {
3873
3877
  "application/json": {
3874
3878
  block?: string;
3875
3879
  eng_street_name?: string;
3880
+ ch_street_name?: string;
3876
3881
  flat?: string;
3877
3882
  floor?: string;
3878
3883
  free_entry?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fill-easy/api",
3
- "version": "1.0.26",
3
+ "version": "1.0.27",
4
4
  "type": "module",
5
5
  "description": "Type-safe SDK for Fill Easy API",
6
6
  "main": "dist/index.js",