@erp-galoper/types 1.0.592 → 1.0.594

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 +16 -9
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -19054,7 +19054,7 @@ export interface components {
19054
19054
  * BasePermissionsSchema_Inventory_StockadjustmentEnum
19055
19055
  * @enum {string}
19056
19056
  */
19057
- BasePermissionsSchema_Inventory_StockadjustmentEnum: "add" | "approve" | "change" | "delete" | "view";
19057
+ BasePermissionsSchema_Inventory_StockadjustmentEnum: "add" | "approve" | "change" | "delete" | "resettodraft" | "view";
19058
19058
  /**
19059
19059
  * BasePermissionsSchema_Inventory_WarehouseEnum
19060
19060
  * @enum {string}
@@ -25997,7 +25997,7 @@ export interface components {
25997
25997
  /** Postalcode */
25998
25998
  postalCode?: string | null;
25999
25999
  /** Address */
26000
- address: string;
26000
+ address?: string;
26001
26001
  /** Region */
26002
26002
  region: number;
26003
26003
  /**
@@ -27522,7 +27522,7 @@ export interface components {
27522
27522
  /**
27523
27523
  * Id
27524
27524
  * Format: uuid
27525
- * @example 44360eab-dda1-4fde-9973-f4c3afc75803
27525
+ * @example 6bb1c275-2990-45d5-9897-a7edd1d91520
27526
27526
  */
27527
27527
  id: string;
27528
27528
  /**
@@ -38876,15 +38876,22 @@ export interface components {
38876
38876
  */
38877
38877
  returnable: boolean;
38878
38878
  /**
38879
- * Depositcharge
38880
- * @description it is required when the package returnable package paid is enabled in settings
38879
+ * Deposit Charge
38880
+ * @description
38881
+ * - visible when returnable is true
38882
+ * - required when field isReturnablePackagePaid is enabled in sales settings
38883
+ *
38881
38884
  */
38882
- depositCharge?: number;
38885
+ deposit_charge?: number;
38883
38886
  /**
38884
- * Depositchargecurrency
38885
- * @description Currency of the deposit charge, only company currency or USD
38887
+ * Deposit Charge Currency
38888
+ * @description
38889
+ * - Currency of the deposit charge, only company currency or USD
38890
+ * - visible when returnable is true
38891
+ * - required when field isReturnablePackagePaid is enabled in sales settings
38892
+ *
38886
38893
  */
38887
- depositChargeCurrency?: number;
38894
+ deposit_charge_currency?: number;
38888
38895
  /**
38889
38896
  * Length
38890
38897
  * @description Length of the package
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.592",
3
+ "version": "1.0.594",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],