@mamindom/contracts 1.0.101 → 1.0.102
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 +8 -5
- package/gen/product.ts +3 -0
- package/package.json +1 -1
- package/proto/product.proto +8 -5
package/dist/gen/product.d.ts
CHANGED
package/dist/proto/product.proto
CHANGED
|
@@ -694,11 +694,14 @@ enum IdentifierType {
|
|
|
694
694
|
}
|
|
695
695
|
|
|
696
696
|
message ProductLookupResult {
|
|
697
|
-
string identifier
|
|
698
|
-
string product_id
|
|
699
|
-
string sku
|
|
700
|
-
string name_uk
|
|
701
|
-
bool found
|
|
697
|
+
string identifier = 1;
|
|
698
|
+
string product_id = 2;
|
|
699
|
+
string sku = 3;
|
|
700
|
+
string name_uk = 4;
|
|
701
|
+
bool found = 5;
|
|
702
|
+
string main_image = 6;
|
|
703
|
+
double price = 7;
|
|
704
|
+
int32 stock = 8;
|
|
702
705
|
}
|
|
703
706
|
|
|
704
707
|
message BulkLookupProductsRequest {
|
package/gen/product.ts
CHANGED
package/package.json
CHANGED
package/proto/product.proto
CHANGED
|
@@ -694,11 +694,14 @@ enum IdentifierType {
|
|
|
694
694
|
}
|
|
695
695
|
|
|
696
696
|
message ProductLookupResult {
|
|
697
|
-
string identifier
|
|
698
|
-
string product_id
|
|
699
|
-
string sku
|
|
700
|
-
string name_uk
|
|
701
|
-
bool found
|
|
697
|
+
string identifier = 1;
|
|
698
|
+
string product_id = 2;
|
|
699
|
+
string sku = 3;
|
|
700
|
+
string name_uk = 4;
|
|
701
|
+
bool found = 5;
|
|
702
|
+
string main_image = 6;
|
|
703
|
+
double price = 7;
|
|
704
|
+
int32 stock = 8;
|
|
702
705
|
}
|
|
703
706
|
|
|
704
707
|
message BulkLookupProductsRequest {
|