@mamindom/contracts 1.0.107 → 1.0.109

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.
@@ -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;
@@ -99,6 +99,7 @@ export interface ProductListItemResponse {
99
99
  colorHex?: string | undefined;
100
100
  rating: number;
101
101
  reviewCount: number;
102
+ stickers: ProductStickerResponse[];
102
103
  }
103
104
  export interface ProductListItemResponse_NameEntry {
104
105
  key: string;
@@ -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 {
@@ -160,6 +160,7 @@ message ProductListItemResponse {
160
160
  optional string color_hex = 19;
161
161
  float rating = 20;
162
162
  int32 review_count = 21;
163
+ repeated ProductStickerResponse stickers = 22;
163
164
  }
164
165
 
165
166
 
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/gen/product.ts CHANGED
@@ -120,6 +120,7 @@ export interface ProductListItemResponse {
120
120
  colorHex?: string | undefined;
121
121
  rating: number;
122
122
  reviewCount: number;
123
+ stickers: ProductStickerResponse[];
123
124
  }
124
125
 
125
126
  export interface ProductListItemResponse_NameEntry {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mamindom/contracts",
3
3
  "description": "proto",
4
- "version": "1.0.107",
4
+ "version": "1.0.109",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
7
7
  "exports": {
@@ -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 {
@@ -160,6 +160,7 @@ message ProductListItemResponse {
160
160
  optional string color_hex = 19;
161
161
  float rating = 20;
162
162
  int32 review_count = 21;
163
+ repeated ProductStickerResponse stickers = 22;
163
164
  }
164
165
 
165
166