@coveo/quantic 3.37.10 → 3.38.1
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/force-app/main/default/lwc/quanticFeedback/__tests__/quanticFeedback.test.js +11 -0
- package/force-app/main/default/lwc/quanticFeedback/quanticFeedback.html +6 -4
- package/force-app/main/default/lwc/quanticFeedback/quanticFeedback.js +8 -0
- package/force-app/main/default/lwc/quanticGeneratedAnswer/__tests__/quanticGeneratedAnswer.test.js +32 -3
- package/force-app/main/default/lwc/quanticGeneratedAnswer/quanticGeneratedAnswer.css +1 -8
- package/force-app/main/default/lwc/quanticGeneratedAnswer/quanticGeneratedAnswer.js +6 -28
- package/force-app/main/default/lwc/quanticGeneratedAnswer/templates/generatedAnswer.css +0 -13
- package/force-app/main/default/lwc/quanticGeneratedAnswer/templates/generatedAnswer.html +120 -93
- package/force-app/main/default/lwc/quanticGeneratedAnswer/templates/retryPrompt.html +24 -15
- package/force-app/main/default/lwc/quanticGeneratedAnswerCopyToClipboard/__tests__/quanticGeneratedAnswerCopyToClipboard.test.js +125 -0
- package/force-app/main/default/lwc/quanticGeneratedAnswerCopyToClipboard/quanticGeneratedAnswerCopyToClipboard.html +1 -1
- package/force-app/main/default/lwc/quanticGeneratedAnswerCopyToClipboard/quanticGeneratedAnswerCopyToClipboard.js +20 -1
- package/force-app/main/default/lwc/quanticSort/e2e/pageObject.ts +29 -18
- package/force-app/main/default/lwc/quanticSort/e2e/quanticSort.e2e.ts +6 -8
- package/force-app/main/default/lwc/quanticThreadItem/__tests__/quanticThreadItem.test.js +176 -0
- package/force-app/main/default/lwc/quanticThreadItem/quanticThreadItem.css +64 -0
- package/force-app/main/default/lwc/quanticThreadItem/quanticThreadItem.html +48 -0
- package/force-app/main/default/lwc/quanticThreadItem/quanticThreadItem.js +80 -0
- package/force-app/main/default/lwc/quanticThreadItem/quanticThreadItem.js-meta.xml +5 -0
- package/force-app/main/default/staticresources/coveoheadless/case-assist/headless.js +15 -15
- package/force-app/main/default/staticresources/coveoheadless/definitions/app/case-assist-engine/case-assist-engine-configuration.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/app/insight-engine/insight-engine-configuration.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/app/recommendation-engine/recommendation-engine-configuration.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/app/search-engine/search-engine-configuration.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-assist-configuration/case-assist-configuration-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/case-assist-configuration/case-assist-configuration-state.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/configuration/configuration-actions.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/configuration/configuration-state.d.ts +1 -1
- package/force-app/main/default/staticresources/coveoheadless/definitions/features/generated-answer/generated-answer-request.d.ts +2 -2
- package/force-app/main/default/staticresources/coveoheadless/headless.js +17 -17
- package/force-app/main/default/staticresources/coveoheadless/insight/headless.js +16 -16
- package/force-app/main/default/staticresources/coveoheadless/recommendation/headless.js +14 -14
- package/force-app/main/default/staticresources/dompurify/purify.min.js +2 -2
- package/package.json +4 -4
|
@@ -9,7 +9,7 @@ export interface CaseAssistEngineConfiguration extends EngineConfiguration {
|
|
|
9
9
|
*/
|
|
10
10
|
caseAssistId: string;
|
|
11
11
|
/**
|
|
12
|
-
* The locale of the current user. Must comply with IETF’s [BCP 47](https://www.rfc-editor.org/
|
|
12
|
+
* The locale of the current user. Must comply with IETF’s [BCP 47](https://www.rfc-editor.org/info/bcp47) definition.
|
|
13
13
|
*
|
|
14
14
|
* Notes:
|
|
15
15
|
* Coveo Machine Learning models use this information to provide contextually relevant output.
|
|
@@ -18,7 +18,7 @@ export interface InsightEngineConfiguration extends EngineConfiguration {
|
|
|
18
18
|
*/
|
|
19
19
|
export interface InsightEngineSearchConfigurationOptions {
|
|
20
20
|
/**
|
|
21
|
-
* The locale of the current user. Must comply with IETF’s BCP 47 definition: https://www.rfc-editor.org/
|
|
21
|
+
* The locale of the current user. Must comply with IETF’s BCP 47 definition: https://www.rfc-editor.org/info/bcp47.
|
|
22
22
|
*
|
|
23
23
|
* Notes:
|
|
24
24
|
* Coveo Machine Learning models use this information to provide contextually relevant output.
|
|
@@ -18,7 +18,7 @@ export interface RecommendationEngineConfiguration extends EngineConfiguration {
|
|
|
18
18
|
*/
|
|
19
19
|
searchHub?: string;
|
|
20
20
|
/**
|
|
21
|
-
* The locale of the current user. Must comply with IETF’s BCP 47 definition: https://www.rfc-editor.org/
|
|
21
|
+
* The locale of the current user. Must comply with IETF’s BCP 47 definition: https://www.rfc-editor.org/info/bcp47.
|
|
22
22
|
*
|
|
23
23
|
* Notes:
|
|
24
24
|
* Coveo Machine Learning models use this information to provide contextually relevant output.
|
|
@@ -24,7 +24,7 @@ export interface SearchConfigurationOptions {
|
|
|
24
24
|
*/
|
|
25
25
|
searchHub?: string;
|
|
26
26
|
/**
|
|
27
|
-
* The locale of the current user. Must comply with IETF’s BCP 47 definition: https://www.rfc-editor.org/
|
|
27
|
+
* The locale of the current user. Must comply with IETF’s BCP 47 definition: https://www.rfc-editor.org/info/bcp47.
|
|
28
28
|
*
|
|
29
29
|
* Notes:
|
|
30
30
|
* Coveo Machine Learning models use this information to provide contextually relevant output.
|
|
@@ -4,7 +4,7 @@ interface SetCaseAssistConfigurationActionCreatorPayload {
|
|
|
4
4
|
*/
|
|
5
5
|
caseAssistId: string;
|
|
6
6
|
/**
|
|
7
|
-
* The locale of the current user. Must comply with IETF’s BCP 47 definition: https://www.rfc-editor.org/
|
|
7
|
+
* The locale of the current user. Must comply with IETF’s BCP 47 definition: https://www.rfc-editor.org/info/bcp47.
|
|
8
8
|
*/
|
|
9
9
|
locale?: string;
|
|
10
10
|
/**
|
|
@@ -5,7 +5,7 @@ export interface CaseAssistConfigurationState {
|
|
|
5
5
|
*/
|
|
6
6
|
caseAssistId: string;
|
|
7
7
|
/**
|
|
8
|
-
* The locale of the current user. Must comply with IETF’s BCP 47 definition: https://www.rfc-editor.org/
|
|
8
|
+
* The locale of the current user. Must comply with IETF’s BCP 47 definition: https://www.rfc-editor.org/info/bcp47.
|
|
9
9
|
*/
|
|
10
10
|
locale?: string;
|
|
11
11
|
/**
|
|
@@ -38,7 +38,7 @@ export interface UpdateSearchConfigurationActionCreatorPayload {
|
|
|
38
38
|
*/
|
|
39
39
|
searchHub?: string;
|
|
40
40
|
/**
|
|
41
|
-
* The locale of the current user. Must comply with IETF’s BCP 47 definition: https://www.rfc-editor.org/
|
|
41
|
+
* The locale of the current user. Must comply with IETF’s BCP 47 definition: https://www.rfc-editor.org/info/bcp47.
|
|
42
42
|
*/
|
|
43
43
|
locale?: string;
|
|
44
44
|
/**
|
|
@@ -46,7 +46,7 @@ interface SearchState {
|
|
|
46
46
|
*/
|
|
47
47
|
apiBaseUrl?: string;
|
|
48
48
|
/**
|
|
49
|
-
* The locale of the current user. Must comply with IETF’s BCP 47 definition: https://www.rfc-editor.org/
|
|
49
|
+
* The locale of the current user. Must comply with IETF’s BCP 47 definition: https://www.rfc-editor.org/info/bcp47.
|
|
50
50
|
*/
|
|
51
51
|
locale: string;
|
|
52
52
|
/**
|
|
@@ -2,7 +2,7 @@ import type { GeneratedAnswerStreamRequest } from '../../api/generated-answer/ge
|
|
|
2
2
|
import type { StreamAnswerAPIState } from '../../api/knowledge/stream-answer-api-state.js';
|
|
3
3
|
import type { BaseParam, ContextParam } from '../../api/platform-service-params.js';
|
|
4
4
|
import type { SearchRequest } from '../../api/search/search/search-request.js';
|
|
5
|
-
import type { AnalyticsParam, AuthenticationParam, AutomaticFacetsParams } from '../../api/search/search-api-params.js';
|
|
5
|
+
import type { AdvancedQueryParam, AnalyticsParam, AuthenticationParam, AutomaticFacetsParams, ConstantQueryParam, ReferrerParam, TabParam } from '../../api/search/search-api-params.js';
|
|
6
6
|
import type { CaseContextParam } from '../../api/service/insight/query/query-request.js';
|
|
7
7
|
import type { NavigatorContext } from '../../app/navigator-context-provider.js';
|
|
8
8
|
import type { SearchAppState } from '../../state/search-app-state.js';
|
|
@@ -24,6 +24,6 @@ type HeadAnswerParams = {
|
|
|
24
24
|
pipeline?: string;
|
|
25
25
|
citationsFieldToInclude?: string[];
|
|
26
26
|
locale: string;
|
|
27
|
-
} & ContextParam & AnalyticsParam;
|
|
27
|
+
} & ContextParam & AnalyticsParam & AdvancedQueryParam & ConstantQueryParam & TabParam & ReferrerParam;
|
|
28
28
|
export declare const constructGenerateHeadAnswerParams: (state: StateNeededForHeadAnswerParams, navigatorContext: NavigatorContext) => HeadAnswerParams;
|
|
29
29
|
export {};
|