protobuf-platform 1.2.280 → 1.2.281
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/cms/cms.proto +9 -0
- package/cms/cms_pb.js +441 -9
- package/package.json +1 -1
- package/user/user.proto +19 -0
- package/user/user_grpc_pb.js +55 -0
- package/user/user_pb.js +874 -0
package/cms/cms.proto
CHANGED
|
@@ -148,6 +148,7 @@ message GetMainPageWidgetRequest {
|
|
|
148
148
|
message MainPageWidgetItem {
|
|
149
149
|
string geo = 1;
|
|
150
150
|
string content = 2;
|
|
151
|
+
optional bool is_enabled = 3;
|
|
151
152
|
}
|
|
152
153
|
message MainPageWidgetResponse {
|
|
153
154
|
repeated MainPageWidgetItem items = 1;
|
|
@@ -161,6 +162,7 @@ message GetBurgerMenuWidgetRequest {
|
|
|
161
162
|
message BurgerMenuWidgetItem {
|
|
162
163
|
string geo = 1;
|
|
163
164
|
string content = 2;
|
|
165
|
+
optional bool is_enabled = 3;
|
|
164
166
|
}
|
|
165
167
|
message GetSignUpFormWidgetRequest {
|
|
166
168
|
optional string geo = 1;
|
|
@@ -169,6 +171,7 @@ message GetSignUpFormWidgetRequest {
|
|
|
169
171
|
message SignUpFormWidgetItem {
|
|
170
172
|
string geo = 1;
|
|
171
173
|
string content = 2;
|
|
174
|
+
optional bool is_enabled = 3;
|
|
172
175
|
}
|
|
173
176
|
message GetPreDepositFormWidgetRequest {
|
|
174
177
|
optional string geo = 1;
|
|
@@ -186,6 +189,7 @@ message GetHeaderWidgetRequest {
|
|
|
186
189
|
message HeaderWidgetItem {
|
|
187
190
|
string geo = 1;
|
|
188
191
|
string content = 2;
|
|
192
|
+
optional bool is_enabled = 3;
|
|
189
193
|
}
|
|
190
194
|
message GetFooterWidgetRequest {
|
|
191
195
|
optional string geo = 1;
|
|
@@ -194,6 +198,7 @@ message GetFooterWidgetRequest {
|
|
|
194
198
|
message FooterWidgetItem {
|
|
195
199
|
string geo = 1;
|
|
196
200
|
string content = 2;
|
|
201
|
+
optional bool is_enabled = 3;
|
|
197
202
|
}
|
|
198
203
|
message FooterBlockItem {
|
|
199
204
|
int32 id = 1;
|
|
@@ -201,6 +206,7 @@ message FooterBlockItem {
|
|
|
201
206
|
string type = 3;
|
|
202
207
|
optional string geo = 4;
|
|
203
208
|
optional int32 is_active = 5;
|
|
209
|
+
optional bool is_enabled = 6;
|
|
204
210
|
}
|
|
205
211
|
message FooterBlocks {
|
|
206
212
|
repeated FooterBlockItem items = 1;
|
|
@@ -213,6 +219,7 @@ message GetGameBarWidgetRequest {
|
|
|
213
219
|
message GameBarWidgetItem {
|
|
214
220
|
string geo = 1;
|
|
215
221
|
string content = 2;
|
|
222
|
+
optional bool is_enabled = 3;
|
|
216
223
|
}
|
|
217
224
|
message GetProfileMenuWidgetRequest {
|
|
218
225
|
optional string geo = 1;
|
|
@@ -221,6 +228,7 @@ message GetProfileMenuWidgetRequest {
|
|
|
221
228
|
message ProfileMenuWidgetItem {
|
|
222
229
|
string geo = 1;
|
|
223
230
|
string content = 2;
|
|
231
|
+
optional bool is_enabled = 3;
|
|
224
232
|
}
|
|
225
233
|
message GetMobileMenuWidgetRequest {
|
|
226
234
|
optional string geo = 1;
|
|
@@ -229,6 +237,7 @@ message GetMobileMenuWidgetRequest {
|
|
|
229
237
|
message MobileMenuWidgetItem {
|
|
230
238
|
string geo = 1;
|
|
231
239
|
string content = 2;
|
|
240
|
+
optional bool is_enabled = 3;
|
|
232
241
|
}
|
|
233
242
|
//Banners CRUD
|
|
234
243
|
message BannerRequest {
|