@erp-galoper/types 1.0.1715 → 1.0.1717
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 -5
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -747,7 +747,7 @@ export interface paths {
|
|
|
747
747
|
* Delete Item
|
|
748
748
|
* @description Endpoint for deleting a single item
|
|
749
749
|
* - 204: None
|
|
750
|
-
* - 400: {"message": "Item has related records and cannot be deleted", "code": "itemHasRelatedRecords"}
|
|
750
|
+
* - 400: {"message": "Item has related records in: <Model1>, <Model2>, ... and cannot be deleted", "code": "itemHasRelatedRecords"}
|
|
751
751
|
* - 403: {"message": "You do not have permission to perform this action", "code": "permissionDenied"}
|
|
752
752
|
* - 404: {"message": "Item not found", "code": "itemDoesNotExist"}
|
|
753
753
|
* - 500: {"message": "An internal server error has occurred", "code": "serverError"}
|
|
@@ -32787,7 +32787,7 @@ export interface components {
|
|
|
32787
32787
|
/** Fax */
|
|
32788
32788
|
fax?: string | null;
|
|
32789
32789
|
/** Country */
|
|
32790
|
-
country?: string;
|
|
32790
|
+
country?: string | null;
|
|
32791
32791
|
/** Postalcode */
|
|
32792
32792
|
postalCode?: string | null;
|
|
32793
32793
|
/** City */
|
|
@@ -32861,7 +32861,7 @@ export interface components {
|
|
|
32861
32861
|
/** Fax */
|
|
32862
32862
|
fax?: string | null;
|
|
32863
32863
|
/** Country */
|
|
32864
|
-
country?: string;
|
|
32864
|
+
country?: string | null;
|
|
32865
32865
|
/** Postalcode */
|
|
32866
32866
|
postalCode?: string | null;
|
|
32867
32867
|
/** City */
|
|
@@ -33151,7 +33151,7 @@ export interface components {
|
|
|
33151
33151
|
/** Fax */
|
|
33152
33152
|
fax?: string | null;
|
|
33153
33153
|
/** Country */
|
|
33154
|
-
country?: string;
|
|
33154
|
+
country?: string | null;
|
|
33155
33155
|
/** Postalcode */
|
|
33156
33156
|
postalCode?: string | null;
|
|
33157
33157
|
/** City */
|
|
@@ -33176,7 +33176,7 @@ export interface components {
|
|
|
33176
33176
|
/** Note */
|
|
33177
33177
|
note?: string | null;
|
|
33178
33178
|
/** Region */
|
|
33179
|
-
region?: number;
|
|
33179
|
+
region?: number | null;
|
|
33180
33180
|
/** Accountclassification */
|
|
33181
33181
|
accountClassification?: number | null;
|
|
33182
33182
|
/**
|
|
@@ -38241,6 +38241,8 @@ export interface components {
|
|
|
38241
38241
|
};
|
|
38242
38242
|
/** CreateClosingSchema */
|
|
38243
38243
|
CreateClosingSchema: {
|
|
38244
|
+
/** Branches */
|
|
38245
|
+
branches: number[];
|
|
38244
38246
|
/** Year */
|
|
38245
38247
|
year: number;
|
|
38246
38248
|
};
|
|
@@ -72946,6 +72948,7 @@ export interface operations {
|
|
|
72946
72948
|
currencies: (string | number)[];
|
|
72947
72949
|
/** @description filter by account number or name */
|
|
72948
72950
|
filterByAccountNumberOrName?: string;
|
|
72951
|
+
excludeYearEndClosing?: boolean;
|
|
72949
72952
|
};
|
|
72950
72953
|
header?: never;
|
|
72951
72954
|
path?: never;
|