@mamindom/contracts 1.0.107 → 1.0.108
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/dist/gen/banner.d.ts +5 -0
- package/dist/proto/banner.proto +5 -0
- package/gen/banner.ts +5 -0
- package/package.json +1 -1
- package/proto/banner.proto +5 -0
package/dist/gen/banner.d.ts
CHANGED
|
@@ -274,6 +274,9 @@ export interface BannerSlideButton {
|
|
|
274
274
|
fontSizeMobile?: string | undefined;
|
|
275
275
|
paddingXMobile?: string | undefined;
|
|
276
276
|
paddingYMobile?: string | undefined;
|
|
277
|
+
categoryId?: string | undefined;
|
|
278
|
+
textAlign?: string | undefined;
|
|
279
|
+
textAlignMobile?: string | undefined;
|
|
277
280
|
}
|
|
278
281
|
export interface BannerSlideButton_TextEntry {
|
|
279
282
|
key: string;
|
|
@@ -304,6 +307,8 @@ export interface PublicBannerSlideButton {
|
|
|
304
307
|
fontSizeMobile?: string | undefined;
|
|
305
308
|
paddingXMobile?: string | undefined;
|
|
306
309
|
paddingYMobile?: string | undefined;
|
|
310
|
+
textAlign?: string | undefined;
|
|
311
|
+
textAlignMobile?: string | undefined;
|
|
307
312
|
}
|
|
308
313
|
export interface PublicBannerSlideLink {
|
|
309
314
|
text: string;
|
package/dist/proto/banner.proto
CHANGED
|
@@ -258,6 +258,9 @@ message BannerSlideButton {
|
|
|
258
258
|
optional string font_size_mobile = 11;
|
|
259
259
|
optional string padding_x_mobile = 12;
|
|
260
260
|
optional string padding_y_mobile = 13;
|
|
261
|
+
optional string category_id = 14;
|
|
262
|
+
optional string text_align = 15;
|
|
263
|
+
optional string text_align_mobile = 16;
|
|
261
264
|
}
|
|
262
265
|
|
|
263
266
|
message BannerSlideLink {
|
|
@@ -280,6 +283,8 @@ message PublicBannerSlideButton {
|
|
|
280
283
|
optional string font_size_mobile = 11;
|
|
281
284
|
optional string padding_x_mobile = 12;
|
|
282
285
|
optional string padding_y_mobile = 13;
|
|
286
|
+
optional string text_align = 14;
|
|
287
|
+
optional string text_align_mobile = 15;
|
|
283
288
|
}
|
|
284
289
|
|
|
285
290
|
message PublicBannerSlideLink {
|
package/gen/banner.ts
CHANGED
|
@@ -291,6 +291,9 @@ export interface BannerSlideButton {
|
|
|
291
291
|
fontSizeMobile?: string | undefined;
|
|
292
292
|
paddingXMobile?: string | undefined;
|
|
293
293
|
paddingYMobile?: string | undefined;
|
|
294
|
+
categoryId?: string | undefined;
|
|
295
|
+
textAlign?: string | undefined;
|
|
296
|
+
textAlignMobile?: string | undefined;
|
|
294
297
|
}
|
|
295
298
|
|
|
296
299
|
export interface BannerSlideButton_TextEntry {
|
|
@@ -323,6 +326,8 @@ export interface PublicBannerSlideButton {
|
|
|
323
326
|
fontSizeMobile?: string | undefined;
|
|
324
327
|
paddingXMobile?: string | undefined;
|
|
325
328
|
paddingYMobile?: string | undefined;
|
|
329
|
+
textAlign?: string | undefined;
|
|
330
|
+
textAlignMobile?: string | undefined;
|
|
326
331
|
}
|
|
327
332
|
|
|
328
333
|
export interface PublicBannerSlideLink {
|
package/package.json
CHANGED
package/proto/banner.proto
CHANGED
|
@@ -258,6 +258,9 @@ message BannerSlideButton {
|
|
|
258
258
|
optional string font_size_mobile = 11;
|
|
259
259
|
optional string padding_x_mobile = 12;
|
|
260
260
|
optional string padding_y_mobile = 13;
|
|
261
|
+
optional string category_id = 14;
|
|
262
|
+
optional string text_align = 15;
|
|
263
|
+
optional string text_align_mobile = 16;
|
|
261
264
|
}
|
|
262
265
|
|
|
263
266
|
message BannerSlideLink {
|
|
@@ -280,6 +283,8 @@ message PublicBannerSlideButton {
|
|
|
280
283
|
optional string font_size_mobile = 11;
|
|
281
284
|
optional string padding_x_mobile = 12;
|
|
282
285
|
optional string padding_y_mobile = 13;
|
|
286
|
+
optional string text_align = 14;
|
|
287
|
+
optional string text_align_mobile = 15;
|
|
283
288
|
}
|
|
284
289
|
|
|
285
290
|
message PublicBannerSlideLink {
|