@go1/go1-embedding-react-sdk 0.0.31 → 0.0.32
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 +1 -3
- package/dist/README.md +1 -3
- package/dist/common/types.d.ts +2 -2
- package/dist/common/types.js +0 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -139,8 +139,7 @@ export type FeatureAttributes =
|
|
|
139
139
|
| FeatureAttributesPreview
|
|
140
140
|
| FeatureAttributesWallet
|
|
141
141
|
| FeatureAttributesLibrary
|
|
142
|
-
| FeatureAttributesSearch
|
|
143
|
-
| FeatureAttributesLearnerSearch;
|
|
142
|
+
| FeatureAttributesSearch;
|
|
144
143
|
|
|
145
144
|
export interface AdditionalUserInfo {
|
|
146
145
|
jobTitle: string;
|
|
@@ -153,7 +152,6 @@ export type FeatureType =
|
|
|
153
152
|
| 'library'
|
|
154
153
|
| 'search'
|
|
155
154
|
| 'wallet'
|
|
156
|
-
| 'learner-search'
|
|
157
155
|
| 'content-retirement';
|
|
158
156
|
|
|
159
157
|
export interface InitOptions {
|
package/dist/README.md
CHANGED
|
@@ -139,8 +139,7 @@ export type FeatureAttributes =
|
|
|
139
139
|
| FeatureAttributesPreview
|
|
140
140
|
| FeatureAttributesWallet
|
|
141
141
|
| FeatureAttributesLibrary
|
|
142
|
-
| FeatureAttributesSearch
|
|
143
|
-
| FeatureAttributesLearnerSearch;
|
|
142
|
+
| FeatureAttributesSearch;
|
|
144
143
|
|
|
145
144
|
export interface AdditionalUserInfo {
|
|
146
145
|
jobTitle: string;
|
|
@@ -153,7 +152,6 @@ export type FeatureType =
|
|
|
153
152
|
| 'library'
|
|
154
153
|
| 'search'
|
|
155
154
|
| 'wallet'
|
|
156
|
-
| 'learner-search'
|
|
157
155
|
| 'content-retirement';
|
|
158
156
|
|
|
159
157
|
export interface InitOptions {
|
package/dist/common/types.d.ts
CHANGED
|
@@ -52,11 +52,11 @@ export interface FeatureAttributesRetirement extends FeatureAttributeCommon {
|
|
|
52
52
|
}
|
|
53
53
|
export interface FeatureAttributesSearch extends FeatureAttributeCommon {
|
|
54
54
|
}
|
|
55
|
-
export type FeatureAttributes = FeatureAttributesAIChat | FeatureAttributesPreview | FeatureAttributesWallet | FeatureAttributesLibrary | FeatureAttributesSearch
|
|
55
|
+
export type FeatureAttributes = FeatureAttributesAIChat | FeatureAttributesPreview | FeatureAttributesWallet | FeatureAttributesLibrary | FeatureAttributesSearch;
|
|
56
56
|
export interface AdditionalUserInfo {
|
|
57
57
|
jobTitle: string;
|
|
58
58
|
}
|
|
59
|
-
export declare const features: readonly ["ai-chat", "content-hub", "preview", "library", "search", "wallet", "
|
|
59
|
+
export declare const features: readonly ["ai-chat", "content-hub", "preview", "library", "search", "wallet", "content-retirement"];
|
|
60
60
|
export type FeatureType = (typeof features)[number];
|
|
61
61
|
export interface InitOptions {
|
|
62
62
|
feature: FeatureType;
|
package/dist/common/types.js
CHANGED