@go1/go1-embedding-react-sdk 0.0.24 → 0.0.27
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/README.md +8 -1
- package/dist/README.md +8 -1
- package/dist/common/types.d.ts +5 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -122,7 +122,14 @@ export interface FeatureAttributesLearnerSearch extends FeatureAttributeCommon {
|
|
|
122
122
|
experience?: 'learner';
|
|
123
123
|
}
|
|
124
124
|
|
|
125
|
-
export interface FeatureAttributesLibrary extends FeatureAttributeCommon {
|
|
125
|
+
export interface FeatureAttributesLibrary extends FeatureAttributeCommon {
|
|
126
|
+
libraryEmptyStateDescription?: string;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
export interface FeatureAttributesRetirement extends FeatureAttributeCommon {
|
|
130
|
+
shouldShowAlternativesSearchButton?: boolean;
|
|
131
|
+
}
|
|
132
|
+
|
|
126
133
|
export interface FeatureAttributesSearch extends FeatureAttributeCommon {}
|
|
127
134
|
|
|
128
135
|
export type FeatureAttributes =
|
package/dist/README.md
CHANGED
|
@@ -122,7 +122,14 @@ export interface FeatureAttributesLearnerSearch extends FeatureAttributeCommon {
|
|
|
122
122
|
experience?: 'learner';
|
|
123
123
|
}
|
|
124
124
|
|
|
125
|
-
export interface FeatureAttributesLibrary extends FeatureAttributeCommon {
|
|
125
|
+
export interface FeatureAttributesLibrary extends FeatureAttributeCommon {
|
|
126
|
+
libraryEmptyStateDescription?: string;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
export interface FeatureAttributesRetirement extends FeatureAttributeCommon {
|
|
130
|
+
shouldShowAlternativesSearchButton?: boolean;
|
|
131
|
+
}
|
|
132
|
+
|
|
126
133
|
export interface FeatureAttributesSearch extends FeatureAttributeCommon {}
|
|
127
134
|
|
|
128
135
|
export type FeatureAttributes =
|
package/dist/common/types.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export interface AdditionalInfoMessage {
|
|
|
11
11
|
export interface ThemeInformation {
|
|
12
12
|
accent: string;
|
|
13
13
|
}
|
|
14
|
-
export type Go1MessageType = 'preview_start_content' | 'preview_close' | 'preview_add_content_success' | 'preview_add_content_failure' | 'preview_remove_content_success' | 'preview_remove_content_failure' | 'parent_show_preview' | 'set_additional_embedding_data' | 'go1_app_initialised' | 'ott_required' | 'search_result_selected' | 'search_filter_toggle' | 'pass_ott' | 'logout';
|
|
14
|
+
export type Go1MessageType = 'preview_start_content' | 'preview_close' | 'preview_add_content_success' | 'preview_add_content_failure' | 'preview_remove_content_success' | 'preview_remove_content_failure' | 'parent_show_preview' | 'set_additional_embedding_data' | 'go1_app_initialised' | 'ott_required' | 'search_result_selected' | 'search_filter_toggle' | 'search_redirected' | 'pass_ott' | 'logout';
|
|
15
15
|
export interface Go1Message {
|
|
16
16
|
type: Go1MessageType;
|
|
17
17
|
payload?: any;
|
|
@@ -42,6 +42,10 @@ export interface FeatureAttributesLearnerSearch extends FeatureAttributeCommon {
|
|
|
42
42
|
experience?: 'learner';
|
|
43
43
|
}
|
|
44
44
|
export interface FeatureAttributesLibrary extends FeatureAttributeCommon {
|
|
45
|
+
libraryEmptyStateDescription?: string;
|
|
46
|
+
}
|
|
47
|
+
export interface FeatureAttributesRetirement extends FeatureAttributeCommon {
|
|
48
|
+
shouldShowAlternativesSearchButton?: boolean;
|
|
45
49
|
}
|
|
46
50
|
export interface FeatureAttributesSearch extends FeatureAttributeCommon {
|
|
47
51
|
}
|