@erp-galoper/types 1.0.1610 → 1.0.1611

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 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26327,6 +26327,14 @@ export interface components {
26327
26327
  * @default false
26328
26328
  */
26329
26329
  canDelete: boolean;
26330
+ /**
26331
+ * Canconverttotemplate
26332
+ * @description - Indicates whether the item supports adding variants.
26333
+ * - True for existing templates (tracking_stock_by_variant=True) and standalone items with no blocking transactional records.
26334
+ * - False for variant items (children) and standalones tied to transactions.
26335
+ * @default false
26336
+ */
26337
+ canConvertToTemplate: boolean;
26330
26338
  };
26331
26339
  /**
26332
26340
  * ItemType
@@ -26576,6 +26584,14 @@ export interface components {
26576
26584
  * @default false
26577
26585
  */
26578
26586
  canDelete: boolean;
26587
+ /**
26588
+ * Canconverttotemplate
26589
+ * @description - Indicates whether the item supports adding variants.
26590
+ * - True for existing templates (tracking_stock_by_variant=True) and standalone items with no blocking transactional records.
26591
+ * - False for variant items (children) and standalones tied to transactions.
26592
+ * @default false
26593
+ */
26594
+ canConvertToTemplate: boolean;
26579
26595
  /**
26580
26596
  * Children
26581
26597
  * @default []
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1610",
3
+ "version": "1.0.1611",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],