@automattic/jetpack-ai-client 0.23.0 → 0.24.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/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.24.0] - 2024-10-29
9
+ ### Added
10
+ - AI Client: export image generator hook constants [#39917]
11
+
8
12
  ## [0.23.0] - 2024-10-28
9
13
  ### Changed
10
14
  - AI Client: Decouple prompt input as component and export it for reusability. [#39864]
@@ -447,6 +451,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
447
451
  - Updated package dependencies. [#31659]
448
452
  - Updated package dependencies. [#31785]
449
453
 
454
+ [0.24.0]: https://github.com/Automattic/jetpack-ai-client/compare/v0.23.0...v0.24.0
450
455
  [0.23.0]: https://github.com/Automattic/jetpack-ai-client/compare/v0.22.0...v0.23.0
451
456
  [0.22.0]: https://github.com/Automattic/jetpack-ai-client/compare/v0.21.0...v0.22.0
452
457
  [0.21.0]: https://github.com/Automattic/jetpack-ai-client/compare/v0.20.1...v0.21.0
@@ -9,6 +9,7 @@ export { default as useAudioTranscription } from './hooks/use-audio-transcriptio
9
9
  export { default as useTranscriptionPostProcessing } from './hooks/use-transcription-post-processing/index.js';
10
10
  export { default as useAudioValidation } from './hooks/use-audio-validation/index.js';
11
11
  export { default as useImageGenerator } from './hooks/use-image-generator/index.js';
12
+ export * from './hooks/use-image-generator/constants.js';
12
13
  export * from './icons/index.js';
13
14
  export * from './components/index.js';
14
15
  export * from './data-flow/index.js';
@@ -15,6 +15,7 @@ export { default as useAudioTranscription } from './hooks/use-audio-transcriptio
15
15
  export { default as useTranscriptionPostProcessing } from './hooks/use-transcription-post-processing/index.js';
16
16
  export { default as useAudioValidation } from './hooks/use-audio-validation/index.js';
17
17
  export { default as useImageGenerator } from './hooks/use-image-generator/index.js';
18
+ export * from './hooks/use-image-generator/constants.js';
18
19
  /*
19
20
  * Components: Icons
20
21
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": false,
3
3
  "name": "@automattic/jetpack-ai-client",
4
- "version": "0.23.0",
4
+ "version": "0.24.0",
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/index.ts CHANGED
@@ -16,6 +16,7 @@ export { default as useAudioTranscription } from './hooks/use-audio-transcriptio
16
16
  export { default as useTranscriptionPostProcessing } from './hooks/use-transcription-post-processing/index.js';
17
17
  export { default as useAudioValidation } from './hooks/use-audio-validation/index.js';
18
18
  export { default as useImageGenerator } from './hooks/use-image-generator/index.js';
19
+ export * from './hooks/use-image-generator/constants.js';
19
20
 
20
21
  /*
21
22
  * Components: Icons