Complete name-first 1C adapter saved-state support
This commit is contained in:
@@ -9,7 +9,13 @@ from .payload import (
|
||||
payload_to_text,
|
||||
try_decompress,
|
||||
)
|
||||
from .dbnames import DBNamesRecord, parse_dbnames_bytes, parse_dbnames_file
|
||||
from .dbnames import (
|
||||
DBNamesRecord,
|
||||
parse_dbnames_bytes,
|
||||
parse_dbnames_file,
|
||||
parse_dbnames_version_bytes,
|
||||
parse_dbnames_version_file,
|
||||
)
|
||||
from .extensions import (
|
||||
ExtensionZippedInfo,
|
||||
ManifestEntry,
|
||||
@@ -20,6 +26,23 @@ from .config_object import MetadataObjectIdentity, find_identity, parse_config_o
|
||||
from .storage import StorageRoute, group_records_by_guid, storage_route, storage_routes
|
||||
from .config_sections import SectionSummary, summarize_section, summarize_sections
|
||||
from .xml_metadata import XmlMetadataItem, extract_xml_metadata_items, group_xml_items
|
||||
from .support_rules import (
|
||||
SupplierSupport,
|
||||
SupportRule,
|
||||
parse_parent_configurations_bytes,
|
||||
parse_parent_configurations_file,
|
||||
)
|
||||
from .common_command import (
|
||||
common_command_group_guid,
|
||||
index_common_command_groups,
|
||||
parse_common_command_tree,
|
||||
)
|
||||
from .scheduled_job import (
|
||||
decode_schedule,
|
||||
rebuild_schedule_tree,
|
||||
schedule_layout,
|
||||
schedule_write_edits,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"BraceNode",
|
||||
@@ -32,6 +55,8 @@ __all__ = [
|
||||
"DBNamesRecord",
|
||||
"parse_dbnames_bytes",
|
||||
"parse_dbnames_file",
|
||||
"parse_dbnames_version_bytes",
|
||||
"parse_dbnames_version_file",
|
||||
"ExtensionZippedInfo",
|
||||
"ManifestEntry",
|
||||
"parse_extension_manifest_bytes",
|
||||
@@ -49,4 +74,15 @@ __all__ = [
|
||||
"XmlMetadataItem",
|
||||
"extract_xml_metadata_items",
|
||||
"group_xml_items",
|
||||
"SupplierSupport",
|
||||
"SupportRule",
|
||||
"parse_parent_configurations_bytes",
|
||||
"parse_parent_configurations_file",
|
||||
"common_command_group_guid",
|
||||
"index_common_command_groups",
|
||||
"parse_common_command_tree",
|
||||
"decode_schedule",
|
||||
"rebuild_schedule_tree",
|
||||
"schedule_layout",
|
||||
"schedule_write_edits",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user