@adcp/sdk 14.0.0-beta.26 → 14.0.0-beta.27

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.
@@ -4,5 +4,5 @@
4
4
  "source_sha": "4e553ad955f83b49c7d221ab5c3ff78237ad02e3",
5
5
  "source_tarball_sha256": "580656d6466ef9f0d1119985e6726c2efea718dc671e2ad30957fcb2fd54af0f",
6
6
  "upstream_adcp_version": "2.5.3",
7
- "synced_at": "2026-09-02T01:12:52.733Z"
7
+ "synced_at": "2026-09-02T01:57:36.898Z"
8
8
  }
@@ -197,7 +197,7 @@ export interface UpstreamTrafficQueryResult {
197
197
  */
198
198
  export declare function runValidations(validations: StoryboardValidation[], context: ValidationContext): ValidationResult[];
199
199
  /** Capability semver emitted in run summaries and used for advisory expiry. */
200
- export declare const RUNNER_CAPABILITY_VERSION = "14.0.0-beta.26";
200
+ export declare const RUNNER_CAPABILITY_VERSION = "14.0.0-beta.27";
201
201
  /** True when a failed validation contributes to the owning step's grade. */
202
202
  export declare function validationFailsStep(result: ValidationResult): boolean;
203
203
  /**
@@ -197,7 +197,7 @@ export interface UpstreamTrafficQueryResult {
197
197
  */
198
198
  export declare function runValidations(validations: StoryboardValidation[], context: ValidationContext): ValidationResult[];
199
199
  /** Capability semver emitted in run summaries and used for advisory expiry. */
200
- export declare const RUNNER_CAPABILITY_VERSION = "14.0.0-beta.26";
200
+ export declare const RUNNER_CAPABILITY_VERSION = "14.0.0-beta.27";
201
201
  /** True when a failed validation contributes to the owning step's grade. */
202
202
  export declare function validationFailsStep(result: ValidationResult): boolean;
203
203
  /**
@@ -7584,21 +7584,6 @@ export interface ExtensionObject {
7584
7584
  */
7585
7585
  export type FeedFormat = 'google_merchant_center' | 'facebook_catalog' | 'shopify' | 'linkedin_jobs' | 'tiktok_shop' | 'pinterest_catalog' | 'openai_product_feed' | 'custom';
7586
7586
 
7587
- /**
7588
- * Bucket-addressed file exchange over a cloud storage protocol. The buyer moves the bytes; direction declares who hosts the bucket.
7589
- */
7590
- export interface FileTransfer {
7591
- pattern: 'file_transfer';
7592
- transport: CloudStorageProtocol;
7593
- /**
7594
- * Supported transfer directions. buyer_to_seller: buyer writes to a seller-hosted bucket. seller_to_buyer: seller reads from a buyer-hosted bucket. Absent means unspecified (resolve during account setup), not neither.
7595
- *
7596
- * @minItems 1
7597
- */
7598
- directions?: ['buyer_to_seller' | 'seller_to_buyer', ...('buyer_to_seller' | 'seller_to_buyer')[]];
7599
- vendor: BrandReference;
7600
- }
7601
-
7602
7587
  export interface Fixed {
7603
7588
  /**
7604
7589
  * Logical render width in pixels — use for fixed-size slots (e.g., a 300×250 IAB MREC). When `pixel_ratios` is absent, the required image asset width is the same value (1x). When `pixel_ratios` is present, an accepted asset's intrinsic width is `width × pixel_ratio`. For multi-size flexible slots, use `sizes[]`; for responsive slots, use the min/max fields. The three size modes are mutually exclusive.
@@ -11562,13 +11547,33 @@ export type ReportingDeliveryConfigurationState = {} & {} & {} & {
11562
11547
  /**
11563
11548
  * Provider-neutral durable reporting delivery method. The caller may request protocol-managed provisioning or reuse an existing seller-issued binding. Transport names are open so new platforms do not require an AdCP enum change. Credentials, bearer profiles, and private keys MUST NOT appear. Sellers implementing this schema MUST advertise media_buy.reporting_delivery in experimental_features.
11564
11549
  */
11565
- export type ReportingDeliveryMethod = FileTransfer | DatasetShare | WarehouseMaterialization;
11550
+ export type ReportingDeliveryMethod = ReportingFileTransfer | DatasetShare | WarehouseMaterialization;
11566
11551
 
11567
11552
  /**
11568
11553
  * Operational use of an independently scheduled and reconciled feed. pacing is the fast snapshot path; billing requires official revisions and consumer reconciliation. Event-level exposure is intentionally deferred until a privacy and authorization contract exists.
11569
11554
  */
11570
11555
  export type ReportingFeedPurpose = 'pacing' | 'analytics' | 'billing';
11571
11556
 
11557
+ export interface ReportingFileTransfer {
11558
+ /**
11559
+ * Immutable file/object publication with a manifest-last commit boundary.
11560
+ */
11561
+ pattern: 'file_transfer';
11562
+ /**
11563
+ * Storage transport such as s3, gcs, azure_blob, or sftp.
11564
+ * @minLength 1
11565
+ * @maxLength 64
11566
+ * @pattern ^[a-z][a-z0-9_.-]*$
11567
+ */
11568
+ transport: string;
11569
+ orchestration: ReportingOrchestration;
11570
+ destination: ReportingWriteDestination;
11571
+ /**
11572
+ * Physical file format.
11573
+ */
11574
+ format: 'jsonl' | 'csv' | 'parquet' | 'avro' | 'orc';
11575
+ }
11576
+
11572
11577
  /**
11573
11578
  * Finality of a reporting revision, aligned with the delivery-revision vocabulary proposed in #6122. Finality is independent of immutable revision identity: both snapshot and official revisions may be superseded by later revisions.
11574
11579
  */
@@ -5083,21 +5083,6 @@ export interface ExtensionObject {
5083
5083
  [k: string]: unknown | undefined;
5084
5084
  }
5085
5085
 
5086
- /**
5087
- * Bucket-addressed file exchange over a cloud storage protocol. The buyer moves the bytes; direction declares who hosts the bucket.
5088
- */
5089
- export interface FileTransfer {
5090
- pattern: 'file_transfer';
5091
- transport: CloudStorageProtocol;
5092
- /**
5093
- * Supported transfer directions. buyer_to_seller: buyer writes to a seller-hosted bucket. seller_to_buyer: seller reads from a buyer-hosted bucket. Absent means unspecified (resolve during account setup), not neither.
5094
- *
5095
- * @minItems 1
5096
- */
5097
- directions?: ['buyer_to_seller' | 'seller_to_buyer', ...('buyer_to_seller' | 'seller_to_buyer')[]];
5098
- vendor: BrandReference;
5099
- }
5100
-
5101
5086
  export interface Fixed {
5102
5087
  /**
5103
5088
  * Logical render width in pixels — use for fixed-size slots (e.g., a 300×250 IAB MREC). When `pixel_ratios` is absent, the required image asset width is the same value (1x). When `pixel_ratios` is present, an accepted asset's intrinsic width is `width × pixel_ratio`. For multi-size flexible slots, use `sizes[]`; for responsive slots, use the min/max fields. The three size modes are mutually exclusive.
@@ -8961,13 +8946,33 @@ export type ReportingDeliveryConfigurationState = {} & {} & {} & {
8961
8946
  /**
8962
8947
  * Provider-neutral durable reporting delivery method. The caller may request protocol-managed provisioning or reuse an existing seller-issued binding. Transport names are open so new platforms do not require an AdCP enum change. Credentials, bearer profiles, and private keys MUST NOT appear. Sellers implementing this schema MUST advertise media_buy.reporting_delivery in experimental_features.
8963
8948
  */
8964
- export type ReportingDeliveryMethod = FileTransfer | DatasetShare | WarehouseMaterialization;
8949
+ export type ReportingDeliveryMethod = ReportingFileTransfer | DatasetShare | WarehouseMaterialization;
8965
8950
 
8966
8951
  /**
8967
8952
  * Operational use of an independently scheduled and reconciled feed. pacing is the fast snapshot path; billing requires official revisions and consumer reconciliation. Event-level exposure is intentionally deferred until a privacy and authorization contract exists.
8968
8953
  */
8969
8954
  export type ReportingFeedPurpose = 'pacing' | 'analytics' | 'billing';
8970
8955
 
8956
+ export interface ReportingFileTransfer {
8957
+ /**
8958
+ * Immutable file/object publication with a manifest-last commit boundary.
8959
+ */
8960
+ pattern: 'file_transfer';
8961
+ /**
8962
+ * Storage transport such as s3, gcs, azure_blob, or sftp.
8963
+ * @minLength 1
8964
+ * @maxLength 64
8965
+ * @pattern ^[a-z][a-z0-9_.-]*$
8966
+ */
8967
+ transport: string;
8968
+ orchestration: ReportingOrchestration;
8969
+ destination: ReportingWriteDestination;
8970
+ /**
8971
+ * Physical file format.
8972
+ */
8973
+ format: 'jsonl' | 'csv' | 'parquet' | 'avro' | 'orc';
8974
+ }
8975
+
8971
8976
  /**
8972
8977
  * Finality of a reporting revision, aligned with the delivery-revision vocabulary proposed in #6122. Finality is independent of immutable revision identity: both snapshot and official revisions may be superseded by later revisions.
8973
8978
  */
@@ -906,21 +906,6 @@ export interface ExtensionObject {
906
906
  [k: string]: unknown | undefined;
907
907
  }
908
908
 
909
- /**
910
- * Bucket-addressed file exchange over a cloud storage protocol. The buyer moves the bytes; direction declares who hosts the bucket.
911
- */
912
- export interface FileTransfer {
913
- pattern: 'file_transfer';
914
- transport: CloudStorageProtocol;
915
- /**
916
- * Supported transfer directions. buyer_to_seller: buyer writes to a seller-hosted bucket. seller_to_buyer: seller reads from a buyer-hosted bucket. Absent means unspecified (resolve during account setup), not neither.
917
- *
918
- * @minItems 1
919
- */
920
- directions?: ['buyer_to_seller' | 'seller_to_buyer', ...('buyer_to_seller' | 'seller_to_buyer')[]];
921
- vendor: BrandReference;
922
- }
923
-
924
909
  /**
925
910
  * Override logo asset.
926
911
  */
@@ -2778,13 +2763,33 @@ export type ReportingDeliveryConfigurationState = {} & {} & {} & {
2778
2763
  /**
2779
2764
  * Provider-neutral durable reporting delivery method. The caller may request protocol-managed provisioning or reuse an existing seller-issued binding. Transport names are open so new platforms do not require an AdCP enum change. Credentials, bearer profiles, and private keys MUST NOT appear. Sellers implementing this schema MUST advertise media_buy.reporting_delivery in experimental_features.
2780
2765
  */
2781
- export type ReportingDeliveryMethod = FileTransfer | DatasetShare | WarehouseMaterialization;
2766
+ export type ReportingDeliveryMethod = ReportingFileTransfer | DatasetShare | WarehouseMaterialization;
2782
2767
 
2783
2768
  /**
2784
2769
  * Operational use of an independently scheduled and reconciled feed. pacing is the fast snapshot path; billing requires official revisions and consumer reconciliation. Event-level exposure is intentionally deferred until a privacy and authorization contract exists.
2785
2770
  */
2786
2771
  export type ReportingFeedPurpose = 'pacing' | 'analytics' | 'billing';
2787
2772
 
2773
+ export interface ReportingFileTransfer {
2774
+ /**
2775
+ * Immutable file/object publication with a manifest-last commit boundary.
2776
+ */
2777
+ pattern: 'file_transfer';
2778
+ /**
2779
+ * Storage transport such as s3, gcs, azure_blob, or sftp.
2780
+ * @minLength 1
2781
+ * @maxLength 64
2782
+ * @pattern ^[a-z][a-z0-9_.-]*$
2783
+ */
2784
+ transport: string;
2785
+ orchestration: ReportingOrchestration;
2786
+ destination: ReportingWriteDestination;
2787
+ /**
2788
+ * Physical file format.
2789
+ */
2790
+ format: 'jsonl' | 'csv' | 'parquet' | 'avro' | 'orc';
2791
+ }
2792
+
2788
2793
  /**
2789
2794
  * Finality of a reporting revision, aligned with the delivery-revision vocabulary proposed in #6122. Finality is independent of immutable revision identity: both snapshot and official revisions may be superseded by later revisions.
2790
2795
  */
@@ -2109,21 +2109,6 @@ export interface ExtensionObject {
2109
2109
  */
2110
2110
  export type FeedFormat = 'google_merchant_center' | 'facebook_catalog' | 'shopify' | 'linkedin_jobs' | 'tiktok_shop' | 'pinterest_catalog' | 'openai_product_feed' | 'custom';
2111
2111
 
2112
- /**
2113
- * Bucket-addressed file exchange over a cloud storage protocol. The buyer moves the bytes; direction declares who hosts the bucket.
2114
- */
2115
- export interface FileTransfer {
2116
- pattern: 'file_transfer';
2117
- transport: CloudStorageProtocol;
2118
- /**
2119
- * Supported transfer directions. buyer_to_seller: buyer writes to a seller-hosted bucket. seller_to_buyer: seller reads from a buyer-hosted bucket. Absent means unspecified (resolve during account setup), not neither.
2120
- *
2121
- * @minItems 1
2122
- */
2123
- directions?: ['buyer_to_seller' | 'seller_to_buyer', ...('buyer_to_seller' | 'seller_to_buyer')[]];
2124
- vendor: BrandReference;
2125
- }
2126
-
2127
2112
  /**
2128
2113
  * Fixed charge per billing period, regardless of impressions or spend. Used for licensed data bundles and audience subscriptions.
2129
2114
  */
@@ -5101,13 +5086,33 @@ export type ReportingDeliveryConfigurationState = {} & {} & {} & {
5101
5086
  /**
5102
5087
  * Provider-neutral durable reporting delivery method. The caller may request protocol-managed provisioning or reuse an existing seller-issued binding. Transport names are open so new platforms do not require an AdCP enum change. Credentials, bearer profiles, and private keys MUST NOT appear. Sellers implementing this schema MUST advertise media_buy.reporting_delivery in experimental_features.
5103
5088
  */
5104
- export type ReportingDeliveryMethod = FileTransfer | DatasetShare | WarehouseMaterialization;
5089
+ export type ReportingDeliveryMethod = ReportingFileTransfer | DatasetShare | WarehouseMaterialization;
5105
5090
 
5106
5091
  /**
5107
5092
  * Operational use of an independently scheduled and reconciled feed. pacing is the fast snapshot path; billing requires official revisions and consumer reconciliation. Event-level exposure is intentionally deferred until a privacy and authorization contract exists.
5108
5093
  */
5109
5094
  export type ReportingFeedPurpose = 'pacing' | 'analytics' | 'billing';
5110
5095
 
5096
+ export interface ReportingFileTransfer {
5097
+ /**
5098
+ * Immutable file/object publication with a manifest-last commit boundary.
5099
+ */
5100
+ pattern: 'file_transfer';
5101
+ /**
5102
+ * Storage transport such as s3, gcs, azure_blob, or sftp.
5103
+ * @minLength 1
5104
+ * @maxLength 64
5105
+ * @pattern ^[a-z][a-z0-9_.-]*$
5106
+ */
5107
+ transport: string;
5108
+ orchestration: ReportingOrchestration;
5109
+ destination: ReportingWriteDestination;
5110
+ /**
5111
+ * Physical file format.
5112
+ */
5113
+ format: 'jsonl' | 'csv' | 'parquet' | 'avro' | 'orc';
5114
+ }
5115
+
5111
5116
  /**
5112
5117
  * Finality of a reporting revision, aligned with the delivery-revision vocabulary proposed in #6122. Finality is independent of immutable revision identity: both snapshot and official revisions may be superseded by later revisions.
5113
5118
  */