Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/adcp/canonical_formats/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
legacy upgrade.
* :func:`format_is_supported` — stricter product/capability gating comparison
after legacy upgrade.
* :class:`CanonicalReferenceResolver` — hardened fetch/cache helper for
immutable ``format_schema`` and ``platform_extensions`` references.
* :func:`load_default_registry` — loads the AAO-published v1↔v2 mapping
registry from the bundled schema cache.
* :class:`SdkAdvisory` — typed wrapper around the SDK-source ``Error``
Expand Down Expand Up @@ -83,6 +85,15 @@
upgrade_v1_tracker,
upgrade_v1_trackers,
)
from adcp.canonical_formats.references import (
DEFAULT_REFERENCE_BODY_LIMIT_BYTES,
DEFAULT_REFERENCE_TIMEOUT_SECONDS,
CanonicalReference,
CanonicalReferenceResolver,
CanonicalReferenceResult,
CanonicalReferenceStatus,
parse_canonical_reference,
)
from adcp.canonical_formats.registry import (
RegistryLoadError,
glob_match,
Expand Down Expand Up @@ -115,11 +126,17 @@
"SDK_ID",
"SdkAdvisory",
"V1CatalogProjection",
"CanonicalReference",
"CanonicalReferenceResolver",
"CanonicalReferenceResult",
"CanonicalReferenceStatus",
"V1ToV2Projection",
"V1UrlTracker",
"V1_TRANSLATABLE",
"V2ToV1Projection",
"check_narrows",
"DEFAULT_REFERENCE_BODY_LIMIT_BYTES",
"DEFAULT_REFERENCE_TIMEOUT_SECONDS",
"downgrade_pixel_tracker",
"downgrade_pixel_trackers",
"format_is_supported",
Expand All @@ -131,6 +148,7 @@
"load_default_registry",
"make_sdk_advisory",
"narrowing_advisory",
"parse_canonical_reference",
"project_declaration_to_v1",
"project_product_to_v1",
"project_v1_catalog_to_v2",
Expand Down
Loading
Loading