diff --git a/packages/_vue3-migration-test/CHANGELOG.md b/packages/_vue3-migration-test/CHANGELOG.md index 30bfcca548..b08b65da83 100644 --- a/packages/_vue3-migration-test/CHANGELOG.md +++ b/packages/_vue3-migration-test/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.0-alpha.53](https://github.com/empathyco/x/compare/vue3-migration-test@1.0.0-alpha.52...vue3-migration-test@1.0.0-alpha.53) (2024-10-28) + +**Note:** Version bump only for package vue3-migration-test + + + + + ## [1.0.0-alpha.52](https://github.com/empathyco/x/compare/vue3-migration-test@1.0.0-alpha.50...vue3-migration-test@1.0.0-alpha.52) (2024-10-24) diff --git a/packages/_vue3-migration-test/package.json b/packages/_vue3-migration-test/package.json index b8ec7fd0e4..256449eec1 100644 --- a/packages/_vue3-migration-test/package.json +++ b/packages/_vue3-migration-test/package.json @@ -1,7 +1,7 @@ { "name": "vue3-migration-test", "private": "true", - "version": "1.0.0-alpha.52", + "version": "1.0.0-alpha.53", "scripts": { "dev": "vite", "preview": "vite preview", @@ -9,9 +9,9 @@ "build": "vue-tsc && vite build" }, "dependencies": { - "@empathyco/x-adapter-platform": "^1.1.0-alpha.3", + "@empathyco/x-adapter-platform": "^1.1.0-alpha.4", "@empathyco/x-bus": "^1.0.3-alpha.1", - "@empathyco/x-types": "^10.1.0-alpha.3", + "@empathyco/x-types": "^10.1.0-alpha.4", "@empathyco/x-utils": "^1.0.3-alpha.1", "@vue/compat": "^3.4.22", "@vueuse/core": "~10.7.1", diff --git a/packages/x-adapter-platform/CHANGELOG.md b/packages/x-adapter-platform/CHANGELOG.md index 89d57357f0..d8cb88fdb3 100644 --- a/packages/x-adapter-platform/CHANGELOG.md +++ b/packages/x-adapter-platform/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.1.0-alpha.4](https://github.com/empathyco/x/compare/@empathyco/x-adapter-platform@1.1.0-alpha.3...@empathyco/x-adapter-platform@1.1.0-alpha.4) (2024-10-28) + + +### Features + +* add types for related prompts (#1640) ([9822c28](https://github.com/empathyco/x/commit/9822c285410f6d308a8a0e43f47e951b052592a2)) + + + ## [1.1.0-alpha.3](https://github.com/empathyco/x/compare/@empathyco/x-adapter-platform@1.1.0-alpha.2...@empathyco/x-adapter-platform@1.1.0-alpha.3) (2024-05-21) diff --git a/packages/x-adapter-platform/package.json b/packages/x-adapter-platform/package.json index dd001a423a..fcd7e163c8 100644 --- a/packages/x-adapter-platform/package.json +++ b/packages/x-adapter-platform/package.json @@ -1,6 +1,6 @@ { "name": "@empathyco/x-adapter-platform", - "version": "1.1.0-alpha.3", + "version": "1.1.0-alpha.4", "description": "A search client for the Empathy Platform API", "author": "Empathy Systems Corporation S.L.", "license": "Apache-2.0", @@ -42,7 +42,7 @@ }, "dependencies": { "@empathyco/x-adapter": "^8.1.0-alpha.0", - "@empathyco/x-types": "^10.1.0-alpha.3", + "@empathyco/x-types": "^10.1.0-alpha.4", "@empathyco/x-utils": "^1.0.3-alpha.1", "tslib": "~2.6.0" }, diff --git a/packages/x-adapter-platform/src/schemas/models/related-prompt.schema.ts b/packages/x-adapter-platform/src/schemas/models/related-prompt.schema.ts index 531b67a66d..1589a2076d 100644 --- a/packages/x-adapter-platform/src/schemas/models/related-prompt.schema.ts +++ b/packages/x-adapter-platform/src/schemas/models/related-prompt.schema.ts @@ -7,7 +7,7 @@ import { PlatformRelatedPrompt } from '../../types/models/related-prompt.model'; */ export const relatedPromptSchema = createMutableSchema({ modelName: () => 'RelatedPrompt', - nextQueries: () => [], + nextQueries: 'nextQueries', suggestionText: 'suggestionText', - type: () => 'SYNTHETIC' + type: 'type' }); diff --git a/packages/x-components/CHANGELOG.md b/packages/x-components/CHANGELOG.md index f07ef74d9c..2133ddb91b 100644 --- a/packages/x-components/CHANGELOG.md +++ b/packages/x-components/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [6.0.0-alpha.6](https://github.com/empathyco/x/compare/@empathyco/x-components@6.0.0-alpha.5...@empathyco/x-components@6.0.0-alpha.6) (2024-10-28) + + +### Features + +* add types for related prompts (#1640) ([9822c28](https://github.com/empathyco/x/commit/9822c285410f6d308a8a0e43f47e951b052592a2)) + + + +## [6.0.0-alpha.5](https://github.com/empathyco/x/compare/@empathyco/x-components@6.0.0-alpha.4...@empathyco/x-components@6.0.0-alpha.5) (2024-10-28) + + +### Build System + +* use vue latest version as peer dependency (#1651) ([1618993](https://github.com/empathyco/x/commit/161899326d325db46f39eead4ca7b57984b58b39)) + + + ## [6.0.0-alpha.4](https://github.com/empathyco/x/compare/@empathyco/x-components@5.0.0-alpha.83...@empathyco/x-components@6.0.0-alpha.4) (2024-10-24) diff --git a/packages/x-components/package.json b/packages/x-components/package.json index 703d7921c7..0df81d50ce 100644 --- a/packages/x-components/package.json +++ b/packages/x-components/package.json @@ -1,6 +1,6 @@ { "name": "@empathyco/x-components", - "version": "6.0.0-alpha.4", + "version": "6.0.0-alpha.6", "description": "Empathy X Components", "author": "Empathy Systems Corporation S.L.", "license": "Apache-2.0", @@ -70,12 +70,12 @@ }, "dependencies": { "@empathyco/x-adapter": "^8.1.0-alpha.0", - "@empathyco/x-adapter-platform": "^1.1.0-alpha.3", + "@empathyco/x-adapter-platform": "^1.1.0-alpha.4", "@empathyco/x-bus": "^1.0.3-alpha.1", "@empathyco/x-deep-merge": "^2.0.3-alpha.1", "@empathyco/x-logger": "^1.2.0-alpha.11", "@empathyco/x-storage-service": "^2.0.3-alpha.0", - "@empathyco/x-types": "^10.1.0-alpha.3", + "@empathyco/x-types": "^10.1.0-alpha.4", "@empathyco/x-utils": "^1.0.3-alpha.1", "@vue/devtools-api": "~6.5.0", "@vueuse/core": "~10.7.1", @@ -85,7 +85,7 @@ "vue-global-events": "~3.0.1" }, "peerDependencies": { - "vue": "~3.4.31", + "vue": "^3.5.12", "vuex": "4.0.2" }, "devDependencies": { diff --git a/packages/x-types/CHANGELOG.md b/packages/x-types/CHANGELOG.md index 15f01a0289..b6d1c85d85 100644 --- a/packages/x-types/CHANGELOG.md +++ b/packages/x-types/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [10.1.0-alpha.4](https://github.com/empathyco/x/compare/@empathyco/x-types@10.1.0-alpha.3...@empathyco/x-types@10.1.0-alpha.4) (2024-10-28) + + +### Features + +* add types for related prompts (#1640) ([9822c28](https://github.com/empathyco/x/commit/9822c285410f6d308a8a0e43f47e951b052592a2)) + + + ## [10.1.0-alpha.3](https://github.com/empathyco/x/compare/@empathyco/x-types@10.1.0-alpha.2...@empathyco/x-types@10.1.0-alpha.3) (2024-05-03) **Note:** Version bump only for package @empathyco/x-types diff --git a/packages/x-types/package.json b/packages/x-types/package.json index 06afd9ef27..e171d92b64 100644 --- a/packages/x-types/package.json +++ b/packages/x-types/package.json @@ -1,6 +1,6 @@ { "name": "@empathyco/x-types", - "version": "10.1.0-alpha.3", + "version": "10.1.0-alpha.4", "description": "Empathy search types", "author": "Empathy Systems Corporation S.L.", "license": "Apache-2.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c542b2d76d..ff886cb088 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -40,13 +40,13 @@ importers: packages/_vue3-migration-test: dependencies: '@empathyco/x-adapter-platform': - specifier: ^1.1.0-alpha.3 + specifier: ^1.1.0-alpha.4 version: link:../x-adapter-platform '@empathyco/x-bus': specifier: ^1.0.3-alpha.1 version: link:../x-bus '@empathyco/x-types': - specifier: ^10.1.0-alpha.3 + specifier: ^10.1.0-alpha.4 version: link:../x-types '@empathyco/x-utils': specifier: ^1.0.3-alpha.1 @@ -305,7 +305,7 @@ importers: specifier: ^8.1.0-alpha.0 version: link:../x-adapter '@empathyco/x-types': - specifier: ^10.1.0-alpha.3 + specifier: ^10.1.0-alpha.4 version: link:../x-types '@empathyco/x-utils': specifier: ^1.0.3-alpha.1 @@ -431,7 +431,7 @@ importers: specifier: ^8.1.0-alpha.0 version: link:../x-adapter '@empathyco/x-adapter-platform': - specifier: ^1.1.0-alpha.3 + specifier: ^1.1.0-alpha.4 version: link:../x-adapter-platform '@empathyco/x-bus': specifier: ^1.0.3-alpha.1 @@ -446,7 +446,7 @@ importers: specifier: ^2.0.3-alpha.0 version: link:../storage-service '@empathyco/x-types': - specifier: ^10.1.0-alpha.3 + specifier: ^10.1.0-alpha.4 version: link:../x-types '@empathyco/x-utils': specifier: ^1.0.3-alpha.1