@adcp/sdk 9.6.2 → 9.7.0
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/bin/adcp-registry.js +26 -9
- package/dist/lib/core/ProtocolResponseParser.d.ts.map +1 -1
- package/dist/lib/core/ProtocolResponseParser.js +54 -14
- package/dist/lib/core/ProtocolResponseParser.js.map +1 -1
- package/dist/lib/core/TaskExecutor.d.ts.map +1 -1
- package/dist/lib/core/TaskExecutor.js +21 -7
- package/dist/lib/core/TaskExecutor.js.map +1 -1
- package/dist/lib/index.d.ts +1 -1
- package/dist/lib/index.d.ts.map +1 -1
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/registry/index.d.ts +14 -2
- package/dist/lib/registry/index.d.ts.map +1 -1
- package/dist/lib/registry/index.js +54 -4
- package/dist/lib/registry/index.js.map +1 -1
- package/dist/lib/registry/types.d.ts +66 -3
- package/dist/lib/registry/types.d.ts.map +1 -1
- package/dist/lib/registry/types.generated.d.ts +266 -0
- package/dist/lib/registry/types.generated.d.ts.map +1 -1
- package/dist/lib/registry/types.generated.js +1 -1
- package/dist/lib/schemas-data/v2.5/_provenance.json +1 -1
- package/dist/lib/version.d.ts +3 -3
- package/dist/lib/version.js +3 -3
- package/package.json +1 -1
- package/skills/adcp/SKILL.md +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// Generated AdCP Registry types from OpenAPI spec
|
|
3
|
-
// Generated at: 2026-07-
|
|
3
|
+
// Generated at: 2026-07-01T14:06:29.296Z
|
|
4
4
|
// Source: https://agenticadvertising.org/openapi/registry.yaml
|
|
5
5
|
//
|
|
6
6
|
// Do not edit this file manually. Run: npm run generate-registry-types
|
|
@@ -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-07-
|
|
7
|
+
"synced_at": "2026-07-01T17:24:12.364Z"
|
|
8
8
|
}
|
package/dist/lib/version.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* AdCP SDK library version
|
|
3
3
|
*/
|
|
4
|
-
export declare const LIBRARY_VERSION = "9.
|
|
4
|
+
export declare const LIBRARY_VERSION = "9.7.0";
|
|
5
5
|
/**
|
|
6
6
|
* AdCP specification version this library is built for
|
|
7
7
|
*/
|
|
@@ -33,10 +33,10 @@ export type AdcpVersion = (typeof COMPATIBLE_ADCP_VERSIONS)[number];
|
|
|
33
33
|
* Full version information
|
|
34
34
|
*/
|
|
35
35
|
export declare const VERSION_INFO: {
|
|
36
|
-
readonly library: "9.
|
|
36
|
+
readonly library: "9.7.0";
|
|
37
37
|
readonly adcp: "3.1.1";
|
|
38
38
|
readonly compatibleVersions: readonly ["v2.5", "v2.6", "v3", "3.0.0-beta.1", "3.0-beta.1", "3.0-beta", "3.0.0-beta.3", "3.0-beta.3", "3.0.0", "3.0", "3.0.1", "3.0.2", "3.0.3", "3.0.4", "3.0.5", "3.0.6", "3.0.7", "3.0.8", "3.0.9", "3.0.10", "3.0.11", "3.0.12", "3.1.0", "3.1", "3.1.1"];
|
|
39
|
-
readonly generatedAt: "2026-07-
|
|
39
|
+
readonly generatedAt: "2026-07-01T17:15:56.501Z";
|
|
40
40
|
};
|
|
41
41
|
/**
|
|
42
42
|
* Get the AdCP specification version this library is built for
|
package/dist/lib/version.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.toReleasePrecisionVersion = toReleasePrecisionVersion;
|
|
|
12
12
|
/**
|
|
13
13
|
* AdCP SDK library version
|
|
14
14
|
*/
|
|
15
|
-
exports.LIBRARY_VERSION = '9.
|
|
15
|
+
exports.LIBRARY_VERSION = '9.7.0';
|
|
16
16
|
/**
|
|
17
17
|
* AdCP specification version this library is built for
|
|
18
18
|
*/
|
|
@@ -61,10 +61,10 @@ exports.COMPATIBLE_ADCP_VERSIONS = [
|
|
|
61
61
|
* Full version information
|
|
62
62
|
*/
|
|
63
63
|
exports.VERSION_INFO = {
|
|
64
|
-
library: '9.
|
|
64
|
+
library: '9.7.0',
|
|
65
65
|
adcp: '3.1.1',
|
|
66
66
|
compatibleVersions: exports.COMPATIBLE_ADCP_VERSIONS,
|
|
67
|
-
generatedAt: '2026-07-
|
|
67
|
+
generatedAt: '2026-07-01T17:15:56.501Z',
|
|
68
68
|
};
|
|
69
69
|
/**
|
|
70
70
|
* Get the AdCP specification version this library is built for
|
package/package.json
CHANGED
package/skills/adcp/SKILL.md
CHANGED
|
@@ -242,7 +242,7 @@ adcp registry stats
|
|
|
242
242
|
### Save operations (requires --auth or ADCP_REGISTRY_API_KEY)
|
|
243
243
|
```bash
|
|
244
244
|
adcp registry save-brand acme.com "Acme Corp" --auth $KEY
|
|
245
|
-
adcp registry save-property example.com
|
|
245
|
+
adcp registry save-property example.com '{"properties":[{"property_type":"website","name":"Example","identifiers":[{"type":"domain","value":"example.com"}],"tags":["news"]}]}' --auth $KEY
|
|
246
246
|
```
|
|
247
247
|
|
|
248
248
|
## Agent management
|