|
33 | 33 | legacy upgrade. |
34 | 34 | * :func:`format_is_supported` — stricter product/capability gating comparison |
35 | 35 | after legacy upgrade. |
| 36 | +* :class:`CanonicalReferenceResolver` — hardened fetch/cache helper for |
| 37 | + immutable ``format_schema`` and ``platform_extensions`` references. |
36 | 38 | * :func:`load_default_registry` — loads the AAO-published v1↔v2 mapping |
37 | 39 | registry from the bundled schema cache. |
38 | 40 | * :class:`SdkAdvisory` — typed wrapper around the SDK-source ``Error`` |
|
83 | 85 | upgrade_v1_tracker, |
84 | 86 | upgrade_v1_trackers, |
85 | 87 | ) |
| 88 | +from adcp.canonical_formats.references import ( |
| 89 | + DEFAULT_REFERENCE_BODY_LIMIT_BYTES, |
| 90 | + DEFAULT_REFERENCE_TIMEOUT_SECONDS, |
| 91 | + CanonicalReference, |
| 92 | + CanonicalReferenceResolver, |
| 93 | + CanonicalReferenceResult, |
| 94 | + CanonicalReferenceStatus, |
| 95 | + parse_canonical_reference, |
| 96 | +) |
86 | 97 | from adcp.canonical_formats.registry import ( |
87 | 98 | RegistryLoadError, |
88 | 99 | glob_match, |
|
115 | 126 | "SDK_ID", |
116 | 127 | "SdkAdvisory", |
117 | 128 | "V1CatalogProjection", |
| 129 | + "CanonicalReference", |
| 130 | + "CanonicalReferenceResolver", |
| 131 | + "CanonicalReferenceResult", |
| 132 | + "CanonicalReferenceStatus", |
118 | 133 | "V1ToV2Projection", |
119 | 134 | "V1UrlTracker", |
120 | 135 | "V1_TRANSLATABLE", |
121 | 136 | "V2ToV1Projection", |
122 | 137 | "check_narrows", |
| 138 | + "DEFAULT_REFERENCE_BODY_LIMIT_BYTES", |
| 139 | + "DEFAULT_REFERENCE_TIMEOUT_SECONDS", |
123 | 140 | "downgrade_pixel_tracker", |
124 | 141 | "downgrade_pixel_trackers", |
125 | 142 | "format_is_supported", |
|
131 | 148 | "load_default_registry", |
132 | 149 | "make_sdk_advisory", |
133 | 150 | "narrowing_advisory", |
| 151 | + "parse_canonical_reference", |
134 | 152 | "project_declaration_to_v1", |
135 | 153 | "project_product_to_v1", |
136 | 154 | "project_v1_catalog_to_v2", |
|
0 commit comments