@erp-galoper/types 1.0.971 → 1.0.973
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/openapi.ts +8 -1
- 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}
|
|
@@ -45514,7 +45519,7 @@ export interface components {
|
|
|
45514
45519
|
CreateUpdateSalesReturnInvoiceSchema: {
|
|
45515
45520
|
/**
|
|
45516
45521
|
* Customer
|
|
45517
|
-
* @description customer
|
|
45522
|
+
* @description customer cant be changed in update, no need to be sent
|
|
45518
45523
|
*/
|
|
45519
45524
|
customer?: number;
|
|
45520
45525
|
/** Password */
|
|
@@ -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;
|