@erp-galoper/types 1.0.1714 → 1.0.1716

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 +5 -5
  2. 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
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1714",
3
+ "version": "1.0.1716",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],