@go1/go1-embedding-react-sdk 0.0.48 → 0.0.49
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 +2 -0
- package/dist/README.md +2 -0
- package/dist/common/types.d.ts +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -118,6 +118,8 @@ export interface FeatureAttributesPreview extends FeatureAttributeCommon {
|
|
|
118
118
|
*/
|
|
119
119
|
export interface FeatureAttributesWallet extends FeatureAttributeCommon {
|
|
120
120
|
walletMode: 'setup' | 'main';
|
|
121
|
+
deepLink?: string;
|
|
122
|
+
oneClickBuyUrl?: string;
|
|
121
123
|
}
|
|
122
124
|
|
|
123
125
|
export interface FeatureAttributesLearnerSearch extends FeatureAttributeCommon {
|
package/dist/README.md
CHANGED
|
@@ -118,6 +118,8 @@ export interface FeatureAttributesPreview extends FeatureAttributeCommon {
|
|
|
118
118
|
*/
|
|
119
119
|
export interface FeatureAttributesWallet extends FeatureAttributeCommon {
|
|
120
120
|
walletMode: 'setup' | 'main';
|
|
121
|
+
deepLink?: string;
|
|
122
|
+
oneClickBuyUrl?: string;
|
|
121
123
|
}
|
|
122
124
|
|
|
123
125
|
export interface FeatureAttributesLearnerSearch extends FeatureAttributeCommon {
|
package/dist/common/types.d.ts
CHANGED
|
@@ -46,7 +46,8 @@ export interface FeatureAttributesPreview extends FeatureAttributesPreviewCommon
|
|
|
46
46
|
}
|
|
47
47
|
export interface FeatureAttributesWallet extends FeatureAttributeCommon {
|
|
48
48
|
walletMode: 'setup' | 'main';
|
|
49
|
-
deepLink
|
|
49
|
+
deepLink?: string;
|
|
50
|
+
oneClickBuyUrl?: string;
|
|
50
51
|
}
|
|
51
52
|
export interface FeatureAttributesLearnerSearch extends FeatureAttributeCommon {
|
|
52
53
|
isGo1MobileApp?: boolean;
|