@go1/go1-embedding-react-sdk 0.0.51 → 0.0.53
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 +3 -2
- package/dist/README.md +3 -2
- package/dist/common/types.d.ts +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -87,10 +87,11 @@ export interface Go1Message {
|
|
|
87
87
|
payload?: any;
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
+
export type Experience = 'manager' | 'learner' | 'context-aware'
|
|
91
|
+
|
|
90
92
|
interface FeatureAttributeCommon {
|
|
91
93
|
shouldSuppressPreview?: boolean;
|
|
92
|
-
experience?:
|
|
93
|
-
shouldShowGo1FeedbackButton?: boolean;
|
|
94
|
+
experience?: Experience;
|
|
94
95
|
contentScope?: 'subscription' | 'library';
|
|
95
96
|
}
|
|
96
97
|
|
package/dist/README.md
CHANGED
|
@@ -87,10 +87,11 @@ export interface Go1Message {
|
|
|
87
87
|
payload?: any;
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
+
export type Experience = 'manager' | 'learner' | 'context-aware'
|
|
91
|
+
|
|
90
92
|
interface FeatureAttributeCommon {
|
|
91
93
|
shouldSuppressPreview?: boolean;
|
|
92
|
-
experience?:
|
|
93
|
-
shouldShowGo1FeedbackButton?: boolean;
|
|
94
|
+
experience?: Experience;
|
|
94
95
|
contentScope?: 'subscription' | 'library';
|
|
95
96
|
}
|
|
96
97
|
|
package/dist/common/types.d.ts
CHANGED
|
@@ -20,10 +20,10 @@ export interface Go1Message {
|
|
|
20
20
|
payload?: any;
|
|
21
21
|
}
|
|
22
22
|
type go1OnlyEnabledFeatures = Array<'ai-chat' | 'library' | 'my-playlists' | 'search'>;
|
|
23
|
+
export type Experience = 'manager' | 'learner' | 'context-aware';
|
|
23
24
|
export interface FeatureAttributeCommon {
|
|
24
25
|
shouldSuppressPreview?: boolean;
|
|
25
|
-
experience?:
|
|
26
|
-
shouldShowGo1FeedbackButton?: boolean;
|
|
26
|
+
experience?: Experience;
|
|
27
27
|
featureName?: string;
|
|
28
28
|
contentScope?: 'subscription' | 'library';
|
|
29
29
|
}
|