@erp-galoper/types 1.0.1814 → 1.0.1816

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 +32 -2
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -14729,7 +14729,7 @@ export interface paths {
14729
14729
  * Reset Sales Price List To Draft
14730
14730
  * @description Endpoint for setting the status of a sales price list to draft
14731
14731
  * Responses:
14732
- * - 200: SalesPriceListSchema
14732
+ * - 200: salesPriceListResetToDraft
14733
14733
  *
14734
14734
  * - 403: permissionDenied
14735
14735
  * - noModuleAccess
@@ -35158,6 +35158,21 @@ export interface components {
35158
35158
  };
35159
35159
  /** CustomerSharedSchema */
35160
35160
  CustomerSharedSchema: {
35161
+ /** Phone1 */
35162
+ phone1?: string | null;
35163
+ /** Phone2 */
35164
+ phone2?: string | null;
35165
+ /** Fax */
35166
+ fax?: string | null;
35167
+ /** Country */
35168
+ country: string | null;
35169
+ /** Postalcode */
35170
+ postalCode?: string | null;
35171
+ city: components["schemas"]["CommonCity"] | null;
35172
+ /** Address */
35173
+ address?: string | null;
35174
+ /** Website */
35175
+ website?: string | null;
35161
35176
  /**
35162
35177
  * Id
35163
35178
  * Format: uuid
@@ -39417,6 +39432,21 @@ export interface components {
39417
39432
  };
39418
39433
  /** ChildSupplierSharedSchema */
39419
39434
  ChildSupplierSharedSchema: {
39435
+ /** Phone1 */
39436
+ phone1?: string | null;
39437
+ /** Phone2 */
39438
+ phone2?: string | null;
39439
+ /** Fax */
39440
+ fax?: string | null;
39441
+ /** Country */
39442
+ country: string | null;
39443
+ /** Postalcode */
39444
+ postalCode?: string | null;
39445
+ city: components["schemas"]["CommonCity"] | null;
39446
+ /** Address */
39447
+ address?: string | null;
39448
+ /** Website */
39449
+ website?: string | null;
39420
39450
  /**
39421
39451
  * Id
39422
39452
  * Format: uuid
@@ -91826,7 +91856,7 @@ export interface operations {
91826
91856
  [name: string]: unknown;
91827
91857
  };
91828
91858
  content: {
91829
- "application/json": components["schemas"]["SalesPriceListSchema"];
91859
+ "application/json": components["schemas"]["MessageWithCode"];
91830
91860
  };
91831
91861
  };
91832
91862
  /** @description Bad Request */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1814",
3
+ "version": "1.0.1816",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],