@go1/go1-embedding-react-sdk 0.0.73 → 0.0.74
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 +5 -0
- package/dist/README.md +5 -0
- package/dist/common/types.d.ts +5 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -154,6 +154,11 @@ export interface FeatureAttributesMyPlaylists extends FeatureAttributesPreviewCo
|
|
|
154
154
|
|
|
155
155
|
export interface FeatureAttributesMyLearning extends FeatureAttributeCommon {}
|
|
156
156
|
|
|
157
|
+
export interface FeatureAttributesGo1LearnSearch extends FeatureAttributeCommon {
|
|
158
|
+
searchTerm?: string; // If the embedding search feature includes a search term, the app will initialize with the pre-filled search term.
|
|
159
|
+
searchProvider?: string; // If the embedding search feature includes a search provider, the app will initialize with the pre-filled search provider.
|
|
160
|
+
}
|
|
161
|
+
|
|
157
162
|
export type FeatureAttributes =
|
|
158
163
|
| FeatureAttributesAIChat
|
|
159
164
|
| FeatureAttributesPreview
|
package/dist/README.md
CHANGED
|
@@ -154,6 +154,11 @@ export interface FeatureAttributesMyPlaylists extends FeatureAttributesPreviewCo
|
|
|
154
154
|
|
|
155
155
|
export interface FeatureAttributesMyLearning extends FeatureAttributeCommon {}
|
|
156
156
|
|
|
157
|
+
export interface FeatureAttributesGo1LearnSearch extends FeatureAttributeCommon {
|
|
158
|
+
searchTerm?: string; // If the embedding search feature includes a search term, the app will initialize with the pre-filled search term.
|
|
159
|
+
searchProvider?: string; // If the embedding search feature includes a search provider, the app will initialize with the pre-filled search provider.
|
|
160
|
+
}
|
|
161
|
+
|
|
157
162
|
export type FeatureAttributes =
|
|
158
163
|
| FeatureAttributesAIChat
|
|
159
164
|
| FeatureAttributesPreview
|
package/dist/common/types.d.ts
CHANGED
|
@@ -76,7 +76,11 @@ export interface FeatureAttributesMyPlaylists extends FeatureAttributesPreviewCo
|
|
|
76
76
|
export interface FeatureAttributesMyLearning extends FeatureAttributeCommon {
|
|
77
77
|
selectingTab?: 'saved' | 'in-progress' | 'assigned' | 'completed';
|
|
78
78
|
}
|
|
79
|
-
export
|
|
79
|
+
export interface FeatureAttributesGo1LearnSearch extends FeatureAttributeCommon {
|
|
80
|
+
searchTerm?: string;
|
|
81
|
+
searchProvider?: string;
|
|
82
|
+
}
|
|
83
|
+
export type FeatureAttributes = FeatureAttributesAIChat | FeatureAttributesPreview | FeatureAttributesWallet | FeatureAttributesLibrary | FeatureAttributesSearch | FeatureAttributesMyPlaylists | FeatureAttributesMyLearning | FeatureAttributesBulkUpload | FeatureAttributesContentStatus | FeatureAttributesGo1LearnSearch;
|
|
80
84
|
export interface AdditionalUserInfo {
|
|
81
85
|
jobTitle: string;
|
|
82
86
|
}
|