@automattic/jetpack-ai-client 0.1.8 → 0.1.9

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.1.9] - 2023-09-25
9
+ ### Added
10
+ - Export GuidelineMessage for use in other blocks. [#33180]
11
+
8
12
  ## [0.1.8] - 2023-09-19
9
13
  ### Added
10
14
  - AI Client: Add support for the jetpack-ai role on the prompt messages. [#33052]
@@ -128,6 +132,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
128
132
  - Updated package dependencies. [#31659]
129
133
  - Updated package dependencies. [#31785]
130
134
 
135
+ [0.1.9]: https://github.com/Automattic/jetpack-ai-client/compare/v0.1.8...v0.1.9
131
136
  [0.1.8]: https://github.com/Automattic/jetpack-ai-client/compare/v0.1.7...v0.1.8
132
137
  [0.1.7]: https://github.com/Automattic/jetpack-ai-client/compare/v0.1.6...v0.1.7
133
138
  [0.1.6]: https://github.com/Automattic/jetpack-ai-client/compare/v0.1.5...v0.1.6
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": false,
3
3
  "name": "@automattic/jetpack-ai-client",
4
- "version": "0.1.8",
4
+ "version": "0.1.9",
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": {
@@ -33,7 +33,7 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@automattic/jetpack-base-styles": "^0.6.9",
36
- "@automattic/jetpack-connection": "^0.29.10",
36
+ "@automattic/jetpack-connection": "^0.30.0",
37
37
  "@automattic/jetpack-shared-extension-utils": "^0.12.0",
38
38
  "@microsoft/fetch-event-source": "2.0.1",
39
39
  "@wordpress/api-fetch": "6.38.0",
@@ -1,3 +1,4 @@
1
1
  export { default as AIControl } from './ai-control';
2
2
  export { default as AiStatusIndicator } from './ai-status-indicator';
3
3
  export { default as AudioDurationDisplay } from './audio-duration-display';
4
+ export { GuidelineMessage } from './ai-control/message';