@erp-galoper/types 1.0.1269 → 1.0.1271
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 +3 -3
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -48758,7 +48758,7 @@ export interface components {
|
|
|
48758
48758
|
reason: components["schemas"]["PurchaseCreditNoteReasonsSchema"];
|
|
48759
48759
|
/** Attachments */
|
|
48760
48760
|
attachments: string[] | null;
|
|
48761
|
-
department: components["schemas"]["DepartmentCommonSchema"];
|
|
48761
|
+
department: components["schemas"]["DepartmentCommonSchema"] | null;
|
|
48762
48762
|
/** Description */
|
|
48763
48763
|
description: string | null;
|
|
48764
48764
|
/** Notes */
|
|
@@ -48803,7 +48803,7 @@ export interface components {
|
|
|
48803
48803
|
* @description API Endpoints for User Departments Retrieval:
|
|
48804
48804
|
* - Use the API: /auth/users/me/
|
|
48805
48805
|
*/
|
|
48806
|
-
department
|
|
48806
|
+
department?: string;
|
|
48807
48807
|
/**
|
|
48808
48808
|
* Attachments
|
|
48809
48809
|
* @description When upload file the type in payload should be creditnote
|
|
@@ -48896,7 +48896,7 @@ export interface components {
|
|
|
48896
48896
|
reason: components["schemas"]["PurchaseCreditNoteReasonsSchema"];
|
|
48897
48897
|
/** Attachments */
|
|
48898
48898
|
attachments: string[] | null;
|
|
48899
|
-
department: components["schemas"]["DepartmentCommonSchema"];
|
|
48899
|
+
department: components["schemas"]["DepartmentCommonSchema"] | null;
|
|
48900
48900
|
/** Description */
|
|
48901
48901
|
description: string | null;
|
|
48902
48902
|
/** Notes */
|