@go1/go1-embedding-react-sdk 0.0.28 → 0.0.31
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 -1
- package/dist/README.md +3 -1
- package/dist/common/types.d.ts +4 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -122,12 +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, FeatureAttributesRetirement {
|
|
126
126
|
libraryEmptyStateDescription?: string;
|
|
127
|
+
shouldShowLibraryTabs?: boolean;
|
|
127
128
|
}
|
|
128
129
|
|
|
129
130
|
export interface FeatureAttributesRetirement extends FeatureAttributeCommon {
|
|
130
131
|
shouldShowAlternativesSearchButton?: boolean;
|
|
132
|
+
shouldShowNotificationEmailRegisterSwitch?: boolean;
|
|
131
133
|
}
|
|
132
134
|
|
|
133
135
|
export interface FeatureAttributesSearch extends FeatureAttributeCommon {}
|
package/dist/README.md
CHANGED
|
@@ -122,12 +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, FeatureAttributesRetirement {
|
|
126
126
|
libraryEmptyStateDescription?: string;
|
|
127
|
+
shouldShowLibraryTabs?: boolean;
|
|
127
128
|
}
|
|
128
129
|
|
|
129
130
|
export interface FeatureAttributesRetirement extends FeatureAttributeCommon {
|
|
130
131
|
shouldShowAlternativesSearchButton?: boolean;
|
|
132
|
+
shouldShowNotificationEmailRegisterSwitch?: boolean;
|
|
131
133
|
}
|
|
132
134
|
|
|
133
135
|
export interface FeatureAttributesSearch extends FeatureAttributeCommon {}
|
package/dist/common/types.d.ts
CHANGED
|
@@ -36,16 +36,19 @@ export interface FeatureAttributesPreview extends FeatureAttributeCommon {
|
|
|
36
36
|
}
|
|
37
37
|
export interface FeatureAttributesWallet extends FeatureAttributeCommon {
|
|
38
38
|
walletMode: 'setup' | 'main';
|
|
39
|
+
deepLink: string;
|
|
39
40
|
}
|
|
40
41
|
export interface FeatureAttributesLearnerSearch extends FeatureAttributeCommon {
|
|
41
42
|
isGo1MobileApp?: boolean;
|
|
42
43
|
experience?: 'learner';
|
|
43
44
|
}
|
|
44
|
-
export interface FeatureAttributesLibrary extends FeatureAttributeCommon {
|
|
45
|
+
export interface FeatureAttributesLibrary extends FeatureAttributeCommon, FeatureAttributesRetirement {
|
|
45
46
|
libraryEmptyStateDescription?: string;
|
|
47
|
+
shouldShowLibraryTabs?: boolean;
|
|
46
48
|
}
|
|
47
49
|
export interface FeatureAttributesRetirement extends FeatureAttributeCommon {
|
|
48
50
|
shouldShowAlternativesSearchButton?: boolean;
|
|
51
|
+
shouldShowNotificationEmailRegisterSwitch?: boolean;
|
|
49
52
|
}
|
|
50
53
|
export interface FeatureAttributesSearch extends FeatureAttributeCommon {
|
|
51
54
|
}
|