protobuf-platform 1.2.279 → 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 +11 -0
- package/cms/cms_pb.js +539 -11
- 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
|
@@ -138,6 +138,7 @@ message CommonWidgetRequest {
|
|
|
138
138
|
string geo = 1;
|
|
139
139
|
string content = 2;
|
|
140
140
|
string type = 3;
|
|
141
|
+
optional bool is_enabled = 4;
|
|
141
142
|
}
|
|
142
143
|
message GetMainPageWidgetRequest {
|
|
143
144
|
optional string geo = 1;
|
|
@@ -147,6 +148,7 @@ message GetMainPageWidgetRequest {
|
|
|
147
148
|
message MainPageWidgetItem {
|
|
148
149
|
string geo = 1;
|
|
149
150
|
string content = 2;
|
|
151
|
+
optional bool is_enabled = 3;
|
|
150
152
|
}
|
|
151
153
|
message MainPageWidgetResponse {
|
|
152
154
|
repeated MainPageWidgetItem items = 1;
|
|
@@ -160,6 +162,7 @@ message GetBurgerMenuWidgetRequest {
|
|
|
160
162
|
message BurgerMenuWidgetItem {
|
|
161
163
|
string geo = 1;
|
|
162
164
|
string content = 2;
|
|
165
|
+
optional bool is_enabled = 3;
|
|
163
166
|
}
|
|
164
167
|
message GetSignUpFormWidgetRequest {
|
|
165
168
|
optional string geo = 1;
|
|
@@ -168,6 +171,7 @@ message GetSignUpFormWidgetRequest {
|
|
|
168
171
|
message SignUpFormWidgetItem {
|
|
169
172
|
string geo = 1;
|
|
170
173
|
string content = 2;
|
|
174
|
+
optional bool is_enabled = 3;
|
|
171
175
|
}
|
|
172
176
|
message GetPreDepositFormWidgetRequest {
|
|
173
177
|
optional string geo = 1;
|
|
@@ -176,6 +180,7 @@ message GetPreDepositFormWidgetRequest {
|
|
|
176
180
|
message PreDepositFormWidgetItem {
|
|
177
181
|
string geo = 1;
|
|
178
182
|
string content = 2;
|
|
183
|
+
optional bool is_enabled = 3;
|
|
179
184
|
}
|
|
180
185
|
message GetHeaderWidgetRequest {
|
|
181
186
|
optional string geo = 1;
|
|
@@ -184,6 +189,7 @@ message GetHeaderWidgetRequest {
|
|
|
184
189
|
message HeaderWidgetItem {
|
|
185
190
|
string geo = 1;
|
|
186
191
|
string content = 2;
|
|
192
|
+
optional bool is_enabled = 3;
|
|
187
193
|
}
|
|
188
194
|
message GetFooterWidgetRequest {
|
|
189
195
|
optional string geo = 1;
|
|
@@ -192,6 +198,7 @@ message GetFooterWidgetRequest {
|
|
|
192
198
|
message FooterWidgetItem {
|
|
193
199
|
string geo = 1;
|
|
194
200
|
string content = 2;
|
|
201
|
+
optional bool is_enabled = 3;
|
|
195
202
|
}
|
|
196
203
|
message FooterBlockItem {
|
|
197
204
|
int32 id = 1;
|
|
@@ -199,6 +206,7 @@ message FooterBlockItem {
|
|
|
199
206
|
string type = 3;
|
|
200
207
|
optional string geo = 4;
|
|
201
208
|
optional int32 is_active = 5;
|
|
209
|
+
optional bool is_enabled = 6;
|
|
202
210
|
}
|
|
203
211
|
message FooterBlocks {
|
|
204
212
|
repeated FooterBlockItem items = 1;
|
|
@@ -211,6 +219,7 @@ message GetGameBarWidgetRequest {
|
|
|
211
219
|
message GameBarWidgetItem {
|
|
212
220
|
string geo = 1;
|
|
213
221
|
string content = 2;
|
|
222
|
+
optional bool is_enabled = 3;
|
|
214
223
|
}
|
|
215
224
|
message GetProfileMenuWidgetRequest {
|
|
216
225
|
optional string geo = 1;
|
|
@@ -219,6 +228,7 @@ message GetProfileMenuWidgetRequest {
|
|
|
219
228
|
message ProfileMenuWidgetItem {
|
|
220
229
|
string geo = 1;
|
|
221
230
|
string content = 2;
|
|
231
|
+
optional bool is_enabled = 3;
|
|
222
232
|
}
|
|
223
233
|
message GetMobileMenuWidgetRequest {
|
|
224
234
|
optional string geo = 1;
|
|
@@ -227,6 +237,7 @@ message GetMobileMenuWidgetRequest {
|
|
|
227
237
|
message MobileMenuWidgetItem {
|
|
228
238
|
string geo = 1;
|
|
229
239
|
string content = 2;
|
|
240
|
+
optional bool is_enabled = 3;
|
|
230
241
|
}
|
|
231
242
|
//Banners CRUD
|
|
232
243
|
message BannerRequest {
|