@openvoy/openvoy-typescriptmodels 0.0.6111 → 0.0.6151
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/core.d.ts +7 -0
- package/package.json +1 -1
package/core.d.ts
CHANGED
|
@@ -135,6 +135,7 @@ export interface ContentDetails {
|
|
|
135
135
|
promotionalText?: string;
|
|
136
136
|
promotionalTitle?: string;
|
|
137
137
|
seoSettings?: SeoSettings;
|
|
138
|
+
serpSettings?: SerpSettings;
|
|
138
139
|
}
|
|
139
140
|
|
|
140
141
|
export interface Country {
|
|
@@ -779,6 +780,12 @@ export interface SeoSettings {
|
|
|
779
780
|
seoTitle?: string;
|
|
780
781
|
}
|
|
781
782
|
|
|
783
|
+
export interface SerpSettings {
|
|
784
|
+
marketingButtonEnabled?: boolean;
|
|
785
|
+
marketingButtonText?: string;
|
|
786
|
+
marketingButtonUrl?: string;
|
|
787
|
+
}
|
|
788
|
+
|
|
782
789
|
export interface SetUserRole extends UserUpdate {
|
|
783
790
|
userRole?: Role;
|
|
784
791
|
}
|
package/package.json
CHANGED