@erp-galoper/types 1.0.971 → 1.0.972

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/openapi.ts +7 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -37748,6 +37748,11 @@ export interface components {
37748
37748
  /** Banks */
37749
37749
  banks?: components["schemas"]["CreateBankAccountsSchema"][];
37750
37750
  };
37751
+ /**
37752
+ * EmployeeDocumentTypeEnum
37753
+ * @enum {string}
37754
+ */
37755
+ EmployeeDocumentTypeEnum: "default" | "salesPerson";
37751
37756
  /**
37752
37757
  * EmployeeTypeEnum
37753
37758
  * @enum {string}
@@ -73373,6 +73378,8 @@ export interface operations {
73373
73378
  search?: string;
73374
73379
  /** @description Type of employee to get */
73375
73380
  type?: "default" | "parent" | "children";
73381
+ /** @description Type of document for listing employees */
73382
+ document_type?: "default" | "salesPerson";
73376
73383
  };
73377
73384
  header?: never;
73378
73385
  path?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.971",
3
+ "version": "1.0.972",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],