@mamindom/contracts 1.0.59 → 1.0.60
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/product.d.ts +3 -0
- package/dist/proto/product.proto +3 -0
- package/gen/product.ts +3 -0
- package/package.json +1 -1
- package/proto/product.proto +3 -0
package/dist/gen/product.d.ts
CHANGED
|
@@ -71,6 +71,7 @@ export interface ProductListItemResponse {
|
|
|
71
71
|
sortOrder: number;
|
|
72
72
|
categorySortOrder: number;
|
|
73
73
|
barcode?: string | undefined;
|
|
74
|
+
videoUrl?: string | undefined;
|
|
74
75
|
}
|
|
75
76
|
export interface ProductListItemResponse_NameEntry {
|
|
76
77
|
key: string;
|
|
@@ -294,6 +295,7 @@ export interface CreateProductRequest {
|
|
|
294
295
|
sortOrder?: number | undefined;
|
|
295
296
|
barcode?: string | undefined;
|
|
296
297
|
sizeChartIds: string[];
|
|
298
|
+
videoUrl?: string | undefined;
|
|
297
299
|
}
|
|
298
300
|
export interface CreateProductRequest_NameEntry {
|
|
299
301
|
key: string;
|
|
@@ -346,6 +348,7 @@ export interface UpdateProductRequest {
|
|
|
346
348
|
attributeValueIds: string[];
|
|
347
349
|
sortOrder?: number | undefined;
|
|
348
350
|
barcode?: string | undefined;
|
|
351
|
+
videoUrl?: string | undefined;
|
|
349
352
|
}
|
|
350
353
|
export interface UpdateProductRequest_NameEntry {
|
|
351
354
|
key: string;
|
package/dist/proto/product.proto
CHANGED
|
@@ -116,6 +116,7 @@ message ProductListItemResponse {
|
|
|
116
116
|
int32 sort_order = 12;
|
|
117
117
|
int32 category_sort_order = 13;
|
|
118
118
|
optional string barcode = 14;
|
|
119
|
+
optional string video_url = 15;
|
|
119
120
|
}
|
|
120
121
|
|
|
121
122
|
|
|
@@ -270,6 +271,7 @@ message CreateProductRequest {
|
|
|
270
271
|
optional int32 sort_order = 20;
|
|
271
272
|
optional string barcode = 21;
|
|
272
273
|
repeated string size_chart_ids = 22;
|
|
274
|
+
optional string video_url = 23;
|
|
273
275
|
}
|
|
274
276
|
|
|
275
277
|
message UpdateProductRequest {
|
|
@@ -299,6 +301,7 @@ message UpdateProductRequest {
|
|
|
299
301
|
|
|
300
302
|
optional int32 sort_order = 19;
|
|
301
303
|
optional string barcode = 20;
|
|
304
|
+
optional string video_url = 21;
|
|
302
305
|
}
|
|
303
306
|
|
|
304
307
|
message DeleteProductRequest {
|
package/gen/product.ts
CHANGED
|
@@ -89,6 +89,7 @@ export interface ProductListItemResponse {
|
|
|
89
89
|
sortOrder: number;
|
|
90
90
|
categorySortOrder: number;
|
|
91
91
|
barcode?: string | undefined;
|
|
92
|
+
videoUrl?: string | undefined;
|
|
92
93
|
}
|
|
93
94
|
|
|
94
95
|
export interface ProductListItemResponse_NameEntry {
|
|
@@ -299,6 +300,7 @@ export interface CreateProductRequest {
|
|
|
299
300
|
sortOrder?: number | undefined;
|
|
300
301
|
barcode?: string | undefined;
|
|
301
302
|
sizeChartIds: string[];
|
|
303
|
+
videoUrl?: string | undefined;
|
|
302
304
|
}
|
|
303
305
|
|
|
304
306
|
export interface CreateProductRequest_NameEntry {
|
|
@@ -347,6 +349,7 @@ export interface UpdateProductRequest {
|
|
|
347
349
|
attributeValueIds: string[];
|
|
348
350
|
sortOrder?: number | undefined;
|
|
349
351
|
barcode?: string | undefined;
|
|
352
|
+
videoUrl?: string | undefined;
|
|
350
353
|
}
|
|
351
354
|
|
|
352
355
|
export interface UpdateProductRequest_NameEntry {
|
package/package.json
CHANGED
package/proto/product.proto
CHANGED
|
@@ -116,6 +116,7 @@ message ProductListItemResponse {
|
|
|
116
116
|
int32 sort_order = 12;
|
|
117
117
|
int32 category_sort_order = 13;
|
|
118
118
|
optional string barcode = 14;
|
|
119
|
+
optional string video_url = 15;
|
|
119
120
|
}
|
|
120
121
|
|
|
121
122
|
|
|
@@ -270,6 +271,7 @@ message CreateProductRequest {
|
|
|
270
271
|
optional int32 sort_order = 20;
|
|
271
272
|
optional string barcode = 21;
|
|
272
273
|
repeated string size_chart_ids = 22;
|
|
274
|
+
optional string video_url = 23;
|
|
273
275
|
}
|
|
274
276
|
|
|
275
277
|
message UpdateProductRequest {
|
|
@@ -299,6 +301,7 @@ message UpdateProductRequest {
|
|
|
299
301
|
|
|
300
302
|
optional int32 sort_order = 19;
|
|
301
303
|
optional string barcode = 20;
|
|
304
|
+
optional string video_url = 21;
|
|
302
305
|
}
|
|
303
306
|
|
|
304
307
|
message DeleteProductRequest {
|