@adcp/client 4.16.2 → 4.18.1

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.
Files changed (51) hide show
  1. package/bin/adcp.js +54 -0
  2. package/dist/lib/core/ADCPMultiAgentClient.d.ts +0 -13
  3. package/dist/lib/core/ADCPMultiAgentClient.d.ts.map +1 -1
  4. package/dist/lib/core/ADCPMultiAgentClient.js +0 -16
  5. package/dist/lib/core/ADCPMultiAgentClient.js.map +1 -1
  6. package/dist/lib/core/CreativeAgentClient.d.ts +1 -21
  7. package/dist/lib/core/CreativeAgentClient.d.ts.map +1 -1
  8. package/dist/lib/core/CreativeAgentClient.js +0 -19
  9. package/dist/lib/core/CreativeAgentClient.js.map +1 -1
  10. package/dist/lib/core/SingleAgentClient.d.ts.map +1 -1
  11. package/dist/lib/core/SingleAgentClient.js +1 -1
  12. package/dist/lib/core/SingleAgentClient.js.map +1 -1
  13. package/dist/lib/index.d.ts +1 -1
  14. package/dist/lib/index.d.ts.map +1 -1
  15. package/dist/lib/index.js.map +1 -1
  16. package/dist/lib/testing/client.d.ts.map +1 -1
  17. package/dist/lib/testing/client.js +0 -2
  18. package/dist/lib/testing/client.js.map +1 -1
  19. package/dist/lib/testing/compliance/comply.d.ts +8 -3
  20. package/dist/lib/testing/compliance/comply.d.ts.map +1 -1
  21. package/dist/lib/testing/compliance/comply.js +53 -1
  22. package/dist/lib/testing/compliance/comply.js.map +1 -1
  23. package/dist/lib/testing/compliance/index.d.ts +2 -2
  24. package/dist/lib/testing/compliance/index.d.ts.map +1 -1
  25. package/dist/lib/testing/compliance/index.js +2 -1
  26. package/dist/lib/testing/compliance/index.js.map +1 -1
  27. package/dist/lib/testing/compliance/profiles.d.ts +5 -1
  28. package/dist/lib/testing/compliance/profiles.d.ts.map +1 -1
  29. package/dist/lib/testing/compliance/profiles.js +94 -14
  30. package/dist/lib/testing/compliance/profiles.js.map +1 -1
  31. package/dist/lib/testing/compliance/types.d.ts +22 -1
  32. package/dist/lib/testing/compliance/types.d.ts.map +1 -1
  33. package/dist/lib/testing/index.d.ts +1 -1
  34. package/dist/lib/testing/index.d.ts.map +1 -1
  35. package/dist/lib/testing/index.js.map +1 -1
  36. package/dist/lib/testing/scenarios/creative.d.ts.map +1 -1
  37. package/dist/lib/testing/scenarios/creative.js +7 -18
  38. package/dist/lib/testing/scenarios/creative.js.map +1 -1
  39. package/dist/lib/testing/test-helpers.d.ts +0 -4
  40. package/dist/lib/testing/test-helpers.d.ts.map +1 -1
  41. package/dist/lib/testing/test-helpers.js +0 -4
  42. package/dist/lib/testing/test-helpers.js.map +1 -1
  43. package/dist/lib/testing/types.d.ts +0 -1
  44. package/dist/lib/testing/types.d.ts.map +1 -1
  45. package/dist/lib/types/schemas.generated.d.ts +0 -8
  46. package/dist/lib/types/schemas.generated.d.ts.map +1 -1
  47. package/dist/lib/types/schemas.generated.js +6 -11
  48. package/dist/lib/types/schemas.generated.js.map +1 -1
  49. package/dist/lib/types/tools.generated.d.ts +0 -14
  50. package/dist/lib/types/tools.generated.d.ts.map +1 -1
  51. package/package.json +1 -8
@@ -49,10 +49,6 @@ export type DeliveryType = 'guaranteed' | 'non_guaranteed';
49
49
  * Filter by exclusivity level. Returns products matching the specified exclusivity (e.g., 'exclusive' returns only sole-sponsorship products).
50
50
  */
51
51
  export type Exclusivity = 'none' | 'category' | 'exclusive';
52
- /**
53
- * DEPRECATED: High-level categories for creative formats. These categories are lossy abstractions that don't scale well to emerging ad formats. Use the assets array in Format objects to understand creative requirements instead - it provides precise information about what asset types are needed (video, image, text, etc.).
54
- */
55
- export type FormatCategory = 'audio' | 'video' | 'display' | 'native' | 'dooh' | 'rich_media' | 'universal';
56
52
  /**
57
53
  * Metro classification system
58
54
  */
@@ -345,10 +341,6 @@ export interface ProductFilters {
345
341
  * Filter by pricing availability: true = products offering fixed pricing (at least one option with fixed_price), false = products offering auction pricing (at least one option without fixed_price). Products with both fixed and auction options match both true and false.
346
342
  */
347
343
  is_fixed_price?: boolean;
348
- /**
349
- * Filter by format types
350
- */
351
- format_types?: FormatCategory[];
352
344
  /**
353
345
  * Filter by specific format IDs
354
346
  */
@@ -2111,7 +2103,6 @@ export interface ListCreativeFormatsRequest {
2111
2103
  * Return only these specific format IDs (e.g., from get_products response)
2112
2104
  */
2113
2105
  format_ids?: FormatID[];
2114
- type?: FormatCategory;
2115
2106
  /**
2116
2107
  * Filter to formats that include these asset types. For third-party tags, search for 'html' or 'javascript'. E.g., ['image', 'text'] returns formats with images and text, ['javascript'] returns formats accepting JavaScript tags.
2117
2108
  */
@@ -2227,7 +2218,6 @@ export interface Format {
2227
2218
  * Optional URL to showcase page with examples and interactive demos of this format
2228
2219
  */
2229
2220
  example_url?: string;
2230
- type?: FormatCategory;
2231
2221
  /**
2232
2222
  * List of parameters this format accepts in format_id. Template formats define which parameters (dimensions, duration, etc.) can be specified when instantiating the format. Empty or omitted means this is a concrete format with fixed parameters.
2233
2223
  */
@@ -7139,10 +7129,6 @@ export interface CreativeFilters {
7139
7129
  * Filter creatives by owning accounts. Useful for agencies managing multiple client accounts.
7140
7130
  */
7141
7131
  accounts?: AccountReference[];
7142
- /**
7143
- * Filter by high-level format types (e.g., 'video', 'audio', 'display'). For specific format matching, use format_ids instead.
7144
- */
7145
- format_types?: string[];
7146
7132
  /**
7147
7133
  * Filter by creative approval statuses
7148
7134
  */