@automattic/jetpack-ai-client 0.12.3 → 0.12.4
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/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.12.4] - 2024-04-29
|
|
9
|
+
### Added
|
|
10
|
+
- AI Client: Export ExtensionAIControl. [#37087]
|
|
11
|
+
|
|
8
12
|
## [0.12.3] - 2024-04-25
|
|
9
13
|
### Changed
|
|
10
14
|
- AI Client: Separate AIControl UI from block logic. [#36967]
|
|
@@ -294,6 +298,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
294
298
|
- Updated package dependencies. [#31659]
|
|
295
299
|
- Updated package dependencies. [#31785]
|
|
296
300
|
|
|
301
|
+
[0.12.4]: https://github.com/Automattic/jetpack-ai-client/compare/v0.12.3...v0.12.4
|
|
297
302
|
[0.12.3]: https://github.com/Automattic/jetpack-ai-client/compare/v0.12.2...v0.12.3
|
|
298
303
|
[0.12.2]: https://github.com/Automattic/jetpack-ai-client/compare/v0.12.1...v0.12.2
|
|
299
304
|
[0.12.1]: https://github.com/Automattic/jetpack-ai-client/compare/v0.12.0...v0.12.1
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AIControl, BlockAIControl } from './ai-control/index.js';
|
|
1
|
+
export { AIControl, BlockAIControl, ExtensionAIControl } from './ai-control/index.js';
|
|
2
2
|
export { default as AiStatusIndicator } from './ai-status-indicator/index.js';
|
|
3
3
|
export { default as AudioDurationDisplay } from './audio-duration-display/index.js';
|
|
4
4
|
export { GuidelineMessage, UpgradeMessage, ErrorMessage, default as FooterMessage, } from './message/index.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AIControl, BlockAIControl } from './ai-control/index.js';
|
|
1
|
+
export { AIControl, BlockAIControl, ExtensionAIControl } from './ai-control/index.js';
|
|
2
2
|
export { default as AiStatusIndicator } from './ai-status-indicator/index.js';
|
|
3
3
|
export { default as AudioDurationDisplay } from './audio-duration-display/index.js';
|
|
4
4
|
export { GuidelineMessage, UpgradeMessage, ErrorMessage, default as FooterMessage, } from './message/index.js';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"private": false,
|
|
3
3
|
"name": "@automattic/jetpack-ai-client",
|
|
4
|
-
"version": "0.12.
|
|
4
|
+
"version": "0.12.4",
|
|
5
5
|
"description": "A JS client for consuming Jetpack AI services",
|
|
6
6
|
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/ai-client/#readme",
|
|
7
7
|
"bugs": {
|
package/src/components/index.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { AIControl, BlockAIControl } from './ai-control/index.js';
|
|
1
|
+
export { AIControl, BlockAIControl, ExtensionAIControl } from './ai-control/index.js';
|
|
2
2
|
export { default as AiStatusIndicator } from './ai-status-indicator/index.js';
|
|
3
3
|
export { default as AudioDurationDisplay } from './audio-duration-display/index.js';
|
|
4
4
|
export {
|