@fill-easy/api 1.0.23 → 1.0.25

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/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import type { paths } from "./openapi.d.ts";
2
2
  export type { paths };
3
+ export type { components } from "./openapi.d.ts";
3
4
  export interface ApiClientConfig {
4
5
  baseUrl: string;
5
6
  clientId: string;
package/dist/openapi.d.ts CHANGED
@@ -3175,8 +3175,11 @@ export interface operations {
3175
3175
  companyId?: string;
3176
3176
  /** @description [ISO 3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-2) country code. */
3177
3177
  countryCode: components["schemas"]["AutomatedCountry"] | string;
3178
- /** @description Type of document */
3179
- documentType: string;
3178
+ /**
3179
+ * @description Type of document
3180
+ * @default companySearch
3181
+ */
3182
+ documentType?: string;
3180
3183
  /** @description Year of the document */
3181
3184
  documentYear?: string | number;
3182
3185
  /** @description Specific document ID */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fill-easy/api",
3
- "version": "1.0.23",
3
+ "version": "1.0.25",
4
4
  "type": "module",
5
5
  "description": "Type-safe SDK for Fill Easy API",
6
6
  "main": "dist/index.js",