diff --git a/.claude/skills/meta-compile/scripts/meta-compile.ps1 b/.claude/skills/meta-compile/scripts/meta-compile.ps1 index d4e5c0dd..ce86e364 100644 --- a/.claude/skills/meta-compile/scripts/meta-compile.ps1 +++ b/.claude/skills/meta-compile/scripts/meta-compile.ps1 @@ -1,4 +1,4 @@ -# meta-compile v1.14 — Compile 1C metadata object from JSON +# meta-compile v1.15 — Compile 1C metadata object from JSON # Source: https://github.com/Nikolay-Shirokov/cc-1c-skills param( [Parameter(Mandatory)] @@ -245,7 +245,7 @@ $script:validEnumValues = @{ "Posting" = @("Allow","Deny") "RealTimePosting" = @("Allow","Deny") "EditType" = @("InDialog","InList","BothWays") - "HierarchyType" = @("HierarchyFoldersAndItems","HierarchyItemsOnly") + "HierarchyType" = @("HierarchyFoldersAndItems","HierarchyOfItems") "CodeType" = @("String","Number") "CodeAllowedLength" = @("Variable","Fixed") "NumberType" = @("String","Number") @@ -257,7 +257,7 @@ $script:validEnumValues = @{ "FillChecking" = @("DontCheck","ShowError","ShowWarning") "Indexing" = @("DontIndex","Index","IndexWithAdditionalOrder") "SubordinationUse" = @("ToItems","ToFolders","ToFoldersAndItems") - "CodeSeries" = @("WholeCatalog","WithinSubordination") + "CodeSeries" = @("WholeCatalog","WithinSubordination","WithinOwnerSubordination") "ChoiceMode" = @("BothWays","QuickChoice","FromForm") } diff --git a/.claude/skills/meta-compile/scripts/meta-compile.py b/.claude/skills/meta-compile/scripts/meta-compile.py index bdbabb9f..40b83495 100644 --- a/.claude/skills/meta-compile/scripts/meta-compile.py +++ b/.claude/skills/meta-compile/scripts/meta-compile.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# meta-compile v1.14 — Compile 1C metadata object from JSON +# meta-compile v1.15 — Compile 1C metadata object from JSON # Source: https://github.com/Nikolay-Shirokov/cc-1c-skills import argparse @@ -346,7 +346,7 @@ valid_enum_values = { 'Posting': ['Allow', 'Deny'], 'RealTimePosting': ['Allow', 'Deny'], 'EditType': ['InDialog', 'InList', 'BothWays'], - 'HierarchyType': ['HierarchyFoldersAndItems', 'HierarchyItemsOnly'], + 'HierarchyType': ['HierarchyFoldersAndItems', 'HierarchyOfItems'], 'CodeType': ['String', 'Number'], 'CodeAllowedLength': ['Variable', 'Fixed'], 'NumberType': ['String', 'Number'], @@ -358,7 +358,7 @@ valid_enum_values = { 'FillChecking': ['DontCheck', 'ShowError', 'ShowWarning'], 'Indexing': ['DontIndex', 'Index', 'IndexWithAdditionalOrder'], 'SubordinationUse': ['ToItems', 'ToFolders', 'ToFoldersAndItems'], - 'CodeSeries': ['WholeCatalog', 'WithinSubordination'], + 'CodeSeries': ['WholeCatalog', 'WithinSubordination', 'WithinOwnerSubordination'], 'ChoiceMode': ['BothWays', 'QuickChoice', 'FromForm'], }