@mamindom/contracts 1.0.63 → 1.0.65

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.
@@ -1,6 +1,28 @@
1
1
  import { Observable } from "rxjs";
2
2
  import { DeleteResponse, PaginationMeta, PaginationRequest, SuccessResponse } from "./common";
3
3
  export declare const protobufPackage = "catalog.v1";
4
+ export interface GetAllAttributesWithValuesRequest {
5
+ }
6
+ export interface GetAllAttributesWithValuesResponse {
7
+ items: AttributeWithValuesResponse[];
8
+ }
9
+ export interface AttributeWithValuesResponse {
10
+ id: string;
11
+ groupId?: string | undefined;
12
+ slug: string;
13
+ name: {
14
+ [key: string]: string;
15
+ };
16
+ displayType: string;
17
+ sortOrder: number;
18
+ guid1c?: string | undefined;
19
+ isFilterable: boolean;
20
+ values: AttributeValueResponse[];
21
+ }
22
+ export interface AttributeWithValuesResponse_NameEntry {
23
+ key: string;
24
+ value: string;
25
+ }
4
26
  export interface AttributeGroupResponse {
5
27
  id: string;
6
28
  name: {
@@ -174,6 +196,7 @@ export interface AttributeServiceClient {
174
196
  deleteAttributeValue(request: DeleteAttributeValueRequest): Observable<DeleteResponse>;
175
197
  bindAttributeToCategory(request: BindAttributeRequest): Observable<SuccessResponse>;
176
198
  unbindAttributeFromCategory(request: BindAttributeRequest): Observable<SuccessResponse>;
199
+ getAllAttributesWithValues(request: GetAllAttributesWithValuesRequest): Observable<GetAllAttributesWithValuesResponse>;
177
200
  }
178
201
  export interface AttributeServiceController {
179
202
  getAttributeGroups(request: GetAttributeGroupsRequest): Promise<GetAttributeGroupsResponse> | Observable<GetAttributeGroupsResponse> | GetAttributeGroupsResponse;
@@ -192,6 +215,7 @@ export interface AttributeServiceController {
192
215
  deleteAttributeValue(request: DeleteAttributeValueRequest): Promise<DeleteResponse> | Observable<DeleteResponse> | DeleteResponse;
193
216
  bindAttributeToCategory(request: BindAttributeRequest): Promise<SuccessResponse> | Observable<SuccessResponse> | SuccessResponse;
194
217
  unbindAttributeFromCategory(request: BindAttributeRequest): Promise<SuccessResponse> | Observable<SuccessResponse> | SuccessResponse;
218
+ getAllAttributesWithValues(request: GetAllAttributesWithValuesRequest): Promise<GetAllAttributesWithValuesResponse> | Observable<GetAllAttributesWithValuesResponse> | GetAllAttributesWithValuesResponse;
195
219
  }
196
220
  export declare function AttributeServiceControllerMethods(): (constructor: Function) => void;
197
221
  export declare const ATTRIBUTE_SERVICE_NAME = "AttributeService";
@@ -30,6 +30,7 @@ function AttributeServiceControllerMethods() {
30
30
  "deleteAttributeValue",
31
31
  "bindAttributeToCategory",
32
32
  "unbindAttributeFromCategory",
33
+ "getAllAttributesWithValues",
33
34
  ];
34
35
  for (const method of grpcMethods) {
35
36
  const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
@@ -243,9 +243,9 @@ export interface PublicSlideResponse {
243
243
  mobileImage?: string | undefined;
244
244
  title?: string | undefined;
245
245
  subtitle?: string | undefined;
246
- buttons: BannerSlideButton[];
246
+ buttons: PublicBannerSlideButton[];
247
247
  buttonsPosition?: ElementPosition | undefined;
248
- links: BannerSlideLink[];
248
+ links: PublicBannerSlideLink[];
249
249
  linksPosition?: ElementPosition | undefined;
250
250
  linksLayout?: string | undefined;
251
251
  styling: string;
@@ -279,6 +279,16 @@ export interface BannerSlideLink_TextEntry {
279
279
  key: string;
280
280
  value: string;
281
281
  }
282
+ export interface PublicBannerSlideButton {
283
+ text: string;
284
+ href: string;
285
+ variant?: string | undefined;
286
+ }
287
+ export interface PublicBannerSlideLink {
288
+ text: string;
289
+ href: string;
290
+ categoryId?: string | undefined;
291
+ }
282
292
  export declare const CONTENT_V1_PACKAGE_NAME = "content.v1";
283
293
  export interface BannerServiceClient {
284
294
  getBanners(request: GetBannersRequest): Observable<GetBannersResponse>;
@@ -30,8 +30,27 @@ service AttributeService {
30
30
 
31
31
  rpc BindAttributeToCategory (BindAttributeRequest) returns (SuccessResponse);
32
32
  rpc UnbindAttributeFromCategory (BindAttributeRequest) returns (SuccessResponse);
33
+
34
+ rpc GetAllAttributesWithValues (GetAllAttributesWithValuesRequest) returns (GetAllAttributesWithValuesResponse);
35
+ }
36
+
37
+ message GetAllAttributesWithValuesRequest {}
38
+
39
+ message GetAllAttributesWithValuesResponse {
40
+ repeated AttributeWithValuesResponse items = 1;
33
41
  }
34
42
 
43
+ message AttributeWithValuesResponse {
44
+ string id = 1;
45
+ optional string group_id = 2;
46
+ string slug = 3;
47
+ map<string, string> name = 4;
48
+ string display_type = 5;
49
+ int32 sort_order = 6;
50
+ optional string guid_1c = 7;
51
+ bool is_filterable = 8;
52
+ repeated AttributeValueResponse values = 9;
53
+ }
35
54
 
36
55
  message AttributeGroupResponse {
37
56
  string id = 1;
@@ -224,9 +224,10 @@ message PublicSlideResponse {
224
224
  optional string title = 3;
225
225
  optional string subtitle = 4;
226
226
 
227
- repeated BannerSlideButton buttons = 5;
227
+
228
+ repeated PublicBannerSlideButton buttons = 5;
228
229
  optional ElementPosition buttons_position = 6;
229
- repeated BannerSlideLink links = 7;
230
+ repeated PublicBannerSlideLink links = 7;
230
231
  optional ElementPosition links_position = 8;
231
232
  optional string links_layout = 9;
232
233
 
@@ -252,4 +253,16 @@ message BannerSlideLink {
252
253
  map<string, string> text = 1;
253
254
  string href = 2;
254
255
  optional string category_id = 3;
256
+ }
257
+
258
+ message PublicBannerSlideButton {
259
+ string text = 1;
260
+ string href = 2;
261
+ optional string variant = 3;
262
+ }
263
+
264
+ message PublicBannerSlideLink {
265
+ string text = 1;
266
+ string href = 2;
267
+ optional string category_id = 3;
255
268
  }
package/gen/attribute.ts CHANGED
@@ -11,6 +11,30 @@ import { DeleteResponse, PaginationMeta, PaginationRequest, SuccessResponse } fr
11
11
 
12
12
  export const protobufPackage = "catalog.v1";
13
13
 
14
+ export interface GetAllAttributesWithValuesRequest {
15
+ }
16
+
17
+ export interface GetAllAttributesWithValuesResponse {
18
+ items: AttributeWithValuesResponse[];
19
+ }
20
+
21
+ export interface AttributeWithValuesResponse {
22
+ id: string;
23
+ groupId?: string | undefined;
24
+ slug: string;
25
+ name: { [key: string]: string };
26
+ displayType: string;
27
+ sortOrder: number;
28
+ guid1c?: string | undefined;
29
+ isFilterable: boolean;
30
+ values: AttributeValueResponse[];
31
+ }
32
+
33
+ export interface AttributeWithValuesResponse_NameEntry {
34
+ key: string;
35
+ value: string;
36
+ }
37
+
14
38
  export interface AttributeGroupResponse {
15
39
  id: string;
16
40
  name: { [key: string]: string };
@@ -212,6 +236,10 @@ export interface AttributeServiceClient {
212
236
  bindAttributeToCategory(request: BindAttributeRequest): Observable<SuccessResponse>;
213
237
 
214
238
  unbindAttributeFromCategory(request: BindAttributeRequest): Observable<SuccessResponse>;
239
+
240
+ getAllAttributesWithValues(
241
+ request: GetAllAttributesWithValuesRequest,
242
+ ): Observable<GetAllAttributesWithValuesResponse>;
215
243
  }
216
244
 
217
245
  export interface AttributeServiceController {
@@ -278,6 +306,13 @@ export interface AttributeServiceController {
278
306
  unbindAttributeFromCategory(
279
307
  request: BindAttributeRequest,
280
308
  ): Promise<SuccessResponse> | Observable<SuccessResponse> | SuccessResponse;
309
+
310
+ getAllAttributesWithValues(
311
+ request: GetAllAttributesWithValuesRequest,
312
+ ):
313
+ | Promise<GetAllAttributesWithValuesResponse>
314
+ | Observable<GetAllAttributesWithValuesResponse>
315
+ | GetAllAttributesWithValuesResponse;
281
316
  }
282
317
 
283
318
  export function AttributeServiceControllerMethods() {
@@ -299,6 +334,7 @@ export function AttributeServiceControllerMethods() {
299
334
  "deleteAttributeValue",
300
335
  "bindAttributeToCategory",
301
336
  "unbindAttributeFromCategory",
337
+ "getAllAttributesWithValues",
302
338
  ];
303
339
  for (const method of grpcMethods) {
304
340
  const descriptor: any = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
package/gen/banner.ts CHANGED
@@ -259,9 +259,9 @@ export interface PublicSlideResponse {
259
259
  mobileImage?: string | undefined;
260
260
  title?: string | undefined;
261
261
  subtitle?: string | undefined;
262
- buttons: BannerSlideButton[];
262
+ buttons: PublicBannerSlideButton[];
263
263
  buttonsPosition?: ElementPosition | undefined;
264
- links: BannerSlideLink[];
264
+ links: PublicBannerSlideLink[];
265
265
  linksPosition?: ElementPosition | undefined;
266
266
  linksLayout?: string | undefined;
267
267
  styling: string;
@@ -298,6 +298,18 @@ export interface BannerSlideLink_TextEntry {
298
298
  value: string;
299
299
  }
300
300
 
301
+ export interface PublicBannerSlideButton {
302
+ text: string;
303
+ href: string;
304
+ variant?: string | undefined;
305
+ }
306
+
307
+ export interface PublicBannerSlideLink {
308
+ text: string;
309
+ href: string;
310
+ categoryId?: string | undefined;
311
+ }
312
+
301
313
  export const CONTENT_V1_PACKAGE_NAME = "content.v1";
302
314
 
303
315
  export interface BannerServiceClient {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mamindom/contracts",
3
3
  "description": "proto",
4
- "version": "1.0.63",
4
+ "version": "1.0.65",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
7
7
  "exports": {
@@ -30,8 +30,27 @@ service AttributeService {
30
30
 
31
31
  rpc BindAttributeToCategory (BindAttributeRequest) returns (SuccessResponse);
32
32
  rpc UnbindAttributeFromCategory (BindAttributeRequest) returns (SuccessResponse);
33
+
34
+ rpc GetAllAttributesWithValues (GetAllAttributesWithValuesRequest) returns (GetAllAttributesWithValuesResponse);
35
+ }
36
+
37
+ message GetAllAttributesWithValuesRequest {}
38
+
39
+ message GetAllAttributesWithValuesResponse {
40
+ repeated AttributeWithValuesResponse items = 1;
33
41
  }
34
42
 
43
+ message AttributeWithValuesResponse {
44
+ string id = 1;
45
+ optional string group_id = 2;
46
+ string slug = 3;
47
+ map<string, string> name = 4;
48
+ string display_type = 5;
49
+ int32 sort_order = 6;
50
+ optional string guid_1c = 7;
51
+ bool is_filterable = 8;
52
+ repeated AttributeValueResponse values = 9;
53
+ }
35
54
 
36
55
  message AttributeGroupResponse {
37
56
  string id = 1;
@@ -224,9 +224,10 @@ message PublicSlideResponse {
224
224
  optional string title = 3;
225
225
  optional string subtitle = 4;
226
226
 
227
- repeated BannerSlideButton buttons = 5;
227
+
228
+ repeated PublicBannerSlideButton buttons = 5;
228
229
  optional ElementPosition buttons_position = 6;
229
- repeated BannerSlideLink links = 7;
230
+ repeated PublicBannerSlideLink links = 7;
230
231
  optional ElementPosition links_position = 8;
231
232
  optional string links_layout = 9;
232
233
 
@@ -252,4 +253,16 @@ message BannerSlideLink {
252
253
  map<string, string> text = 1;
253
254
  string href = 2;
254
255
  optional string category_id = 3;
256
+ }
257
+
258
+ message PublicBannerSlideButton {
259
+ string text = 1;
260
+ string href = 2;
261
+ optional string variant = 3;
262
+ }
263
+
264
+ message PublicBannerSlideLink {
265
+ string text = 1;
266
+ string href = 2;
267
+ optional string category_id = 3;
255
268
  }