@adcp/sdk 13.0.0-rc.5 → 13.0.0-rc.6
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.
- package/dist/lib/registry/types.generated.d.mts +7 -5
- package/dist/lib/registry/types.generated.d.ts +7 -5
- package/dist/lib/registry/types.generated.d.ts.map +1 -1
- package/dist/lib/registry/types.generated.js.map +1 -1
- package/dist/lib/schemas-data/v2.5/_provenance.json +1 -1
- package/dist/lib/utils/capabilities.d.mts +2 -0
- package/dist/lib/utils/capabilities.d.ts +2 -0
- package/dist/lib/utils/capabilities.d.ts.map +1 -1
- package/dist/lib/utils/capabilities.js +2 -1
- package/dist/lib/utils/capabilities.js.map +1 -1
- package/dist/lib/utils/capabilities.mjs +2 -1
- package/dist/lib/utils/capabilities.mjs.map +1 -1
- package/dist/lib/version.d.mts +3 -3
- package/dist/lib/version.d.ts +3 -3
- package/dist/lib/version.js +3 -3
- package/dist/lib/version.js.map +1 -1
- package/dist/lib/version.mjs +3 -3
- package/dist/lib/version.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2674,6 +2674,8 @@ export interface components {
|
|
|
2674
2674
|
display_name: string;
|
|
2675
2675
|
/** @description Canonical format discriminator, such as `image`, `video_hosted`, `native_in_feed`, or `custom`. */
|
|
2676
2676
|
format_kind: string;
|
|
2677
|
+
/** @description Optional public HTTPS page where a human can inspect a sample render of this catalog format using publisher- or community-mirror-provided example assets. Informational only; this is not a renderer endpoint, buyer-asset preview, validation result, creative approval, proof of publisher acceptance, or live delivery guarantee. */
|
|
2678
|
+
sample_render_url?: string;
|
|
2677
2679
|
/** @description Canonical format params from the publisher's adagents.json declaration. */
|
|
2678
2680
|
params?: {
|
|
2679
2681
|
[key: string]: unknown;
|
|
@@ -3962,7 +3964,7 @@ export interface components {
|
|
|
3962
3964
|
* @description Stable rejection tag. UI maps this to operator-friendly prose.
|
|
3963
3965
|
* @enum {string}
|
|
3964
3966
|
*/
|
|
3965
|
-
code: "invalid_blob_shape" | "missing_field" | "invalid_field_type" | "field_too_long" | "invalid_url" | "invalid_env_reference" | "invalid_auth_method_value";
|
|
3967
|
+
code: "invalid_blob_shape" | "missing_field" | "invalid_field_type" | "field_too_long" | "invalid_url" | "invalid_env_reference" | "invalid_auth_method_value" | "array_too_many" | "array_too_few" | "aggregate_too_long";
|
|
3966
3968
|
/**
|
|
3967
3969
|
* @description Field the UI should scroll to + highlight.
|
|
3968
3970
|
* @enum {string}
|
|
@@ -5306,9 +5308,9 @@ export interface operations {
|
|
|
5306
5308
|
capabilities?: "true";
|
|
5307
5309
|
properties?: "true";
|
|
5308
5310
|
compliance?: "true";
|
|
5309
|
-
/** @description Measurement-vendor filter: exact match on `measurement.metrics[].metric_id`. Repeatable
|
|
5311
|
+
/** @description Measurement-vendor filter: exact match on `measurement.metrics[].metric_id`. Repeatable; multiple values are AND'd (vendor must carry all named metrics). When combined with `accreditation`, a cross-product AND applies — each (metric_id, accreditation) pair must be covered by the same metrics element. Duplicate values are ignored. Maximum 20 unique values; maximum 100 cross-product pairs. Implies `type=measurement`. */
|
|
5310
5312
|
metric_id?: string | string[];
|
|
5311
|
-
/** @description Measurement-vendor filter: exact match on `measurement.metrics[].accreditations[].accrediting_body` (e.g. `MRC`, `JIC`, `ARF`). Repeatable. Implies `type=measurement`. Accreditation claims are vendor-asserted; AAO does not independently verify (`verified_by_aao` is always `false` in the response). */
|
|
5313
|
+
/** @description Measurement-vendor filter: exact match on `measurement.metrics[].accreditations[].accrediting_body` (e.g. `MRC`, `JIC`, `ARF`). Repeatable; multiple values are AND'd. When combined with `metric_id`, a cross-product AND applies — see `metric_id` description. Duplicate values are ignored. Maximum 20 unique values; maximum 100 cross-product pairs. Implies `type=measurement`. Accreditation claims are vendor-asserted; AAO does not independently verify (`verified_by_aao` is always `false` in the response). */
|
|
5312
5314
|
accreditation?: string | string[];
|
|
5313
5315
|
/** @description Measurement-vendor filter: case-insensitive substring match against `measurement.metrics[].metric_id`. v1 scope: metric_id only (description/standard search is a follow-up). Max 64 chars; SQL wildcard characters are escaped. Implies `type=measurement`. */
|
|
5314
5316
|
q?: string;
|
|
@@ -8966,8 +8968,8 @@ export interface operations {
|
|
|
8966
8968
|
client_secret: string;
|
|
8967
8969
|
/** @description Space-separated OAuth scope values. */
|
|
8968
8970
|
scope?: string;
|
|
8969
|
-
/** @description RFC 8707 resource indicator. */
|
|
8970
|
-
resource?: string;
|
|
8971
|
+
/** @description RFC 8707 resource indicator. Accepts a single URI string or an array of 1–8 URI strings for multi-resource authorization servers (Keycloak strict, AWS Cognito multi-RS). */
|
|
8972
|
+
resource?: string | string[];
|
|
8971
8973
|
/** @description Audience parameter for audience-validating authorization servers. */
|
|
8972
8974
|
audience?: string;
|
|
8973
8975
|
/**
|
|
@@ -2674,6 +2674,8 @@ export interface components {
|
|
|
2674
2674
|
display_name: string;
|
|
2675
2675
|
/** @description Canonical format discriminator, such as `image`, `video_hosted`, `native_in_feed`, or `custom`. */
|
|
2676
2676
|
format_kind: string;
|
|
2677
|
+
/** @description Optional public HTTPS page where a human can inspect a sample render of this catalog format using publisher- or community-mirror-provided example assets. Informational only; this is not a renderer endpoint, buyer-asset preview, validation result, creative approval, proof of publisher acceptance, or live delivery guarantee. */
|
|
2678
|
+
sample_render_url?: string;
|
|
2677
2679
|
/** @description Canonical format params from the publisher's adagents.json declaration. */
|
|
2678
2680
|
params?: {
|
|
2679
2681
|
[key: string]: unknown;
|
|
@@ -3962,7 +3964,7 @@ export interface components {
|
|
|
3962
3964
|
* @description Stable rejection tag. UI maps this to operator-friendly prose.
|
|
3963
3965
|
* @enum {string}
|
|
3964
3966
|
*/
|
|
3965
|
-
code: "invalid_blob_shape" | "missing_field" | "invalid_field_type" | "field_too_long" | "invalid_url" | "invalid_env_reference" | "invalid_auth_method_value";
|
|
3967
|
+
code: "invalid_blob_shape" | "missing_field" | "invalid_field_type" | "field_too_long" | "invalid_url" | "invalid_env_reference" | "invalid_auth_method_value" | "array_too_many" | "array_too_few" | "aggregate_too_long";
|
|
3966
3968
|
/**
|
|
3967
3969
|
* @description Field the UI should scroll to + highlight.
|
|
3968
3970
|
* @enum {string}
|
|
@@ -5306,9 +5308,9 @@ export interface operations {
|
|
|
5306
5308
|
capabilities?: "true";
|
|
5307
5309
|
properties?: "true";
|
|
5308
5310
|
compliance?: "true";
|
|
5309
|
-
/** @description Measurement-vendor filter: exact match on `measurement.metrics[].metric_id`. Repeatable
|
|
5311
|
+
/** @description Measurement-vendor filter: exact match on `measurement.metrics[].metric_id`. Repeatable; multiple values are AND'd (vendor must carry all named metrics). When combined with `accreditation`, a cross-product AND applies — each (metric_id, accreditation) pair must be covered by the same metrics element. Duplicate values are ignored. Maximum 20 unique values; maximum 100 cross-product pairs. Implies `type=measurement`. */
|
|
5310
5312
|
metric_id?: string | string[];
|
|
5311
|
-
/** @description Measurement-vendor filter: exact match on `measurement.metrics[].accreditations[].accrediting_body` (e.g. `MRC`, `JIC`, `ARF`). Repeatable. Implies `type=measurement`. Accreditation claims are vendor-asserted; AAO does not independently verify (`verified_by_aao` is always `false` in the response). */
|
|
5313
|
+
/** @description Measurement-vendor filter: exact match on `measurement.metrics[].accreditations[].accrediting_body` (e.g. `MRC`, `JIC`, `ARF`). Repeatable; multiple values are AND'd. When combined with `metric_id`, a cross-product AND applies — see `metric_id` description. Duplicate values are ignored. Maximum 20 unique values; maximum 100 cross-product pairs. Implies `type=measurement`. Accreditation claims are vendor-asserted; AAO does not independently verify (`verified_by_aao` is always `false` in the response). */
|
|
5312
5314
|
accreditation?: string | string[];
|
|
5313
5315
|
/** @description Measurement-vendor filter: case-insensitive substring match against `measurement.metrics[].metric_id`. v1 scope: metric_id only (description/standard search is a follow-up). Max 64 chars; SQL wildcard characters are escaped. Implies `type=measurement`. */
|
|
5314
5316
|
q?: string;
|
|
@@ -8966,8 +8968,8 @@ export interface operations {
|
|
|
8966
8968
|
client_secret: string;
|
|
8967
8969
|
/** @description Space-separated OAuth scope values. */
|
|
8968
8970
|
scope?: string;
|
|
8969
|
-
/** @description RFC 8707 resource indicator. */
|
|
8970
|
-
resource?: string;
|
|
8971
|
+
/** @description RFC 8707 resource indicator. Accepts a single URI string or an array of 1–8 URI strings for multi-resource authorization servers (Keycloak strict, AWS Cognito multi-RS). */
|
|
8972
|
+
resource?: string | string[];
|
|
8971
8973
|
/** @description Audience parameter for audience-validating authorization servers. */
|
|
8972
8974
|
audience?: string;
|
|
8973
8975
|
/**
|