@restorecommerce/protos 6.11.2 → 6.11.3
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [6.11.3](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.11.2...@restorecommerce/protos@6.11.3) (2025-05-19)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **protos:** add persistent export information ([680ff84](https://github.com/restorecommerce/libs/commit/680ff8499f927812dd906304137b6d7be493e058))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [6.11.2](https://github.com/restorecommerce/libs/compare/@restorecommerce/protos@6.11.1...@restorecommerce/protos@6.11.2) (2025-05-14)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -9,6 +9,7 @@ import "io/restorecommerce/auth.proto";
|
|
|
9
9
|
import "io/restorecommerce/status.proto";
|
|
10
10
|
import "io/restorecommerce/meta.proto";
|
|
11
11
|
import "io/restorecommerce/address.proto";
|
|
12
|
+
import "io/restorecommerce/country.proto";
|
|
12
13
|
import "io/restorecommerce/product.proto";
|
|
13
14
|
import "io/restorecommerce/options.proto";
|
|
14
15
|
import "io/restorecommerce/price.proto";
|
|
@@ -124,8 +125,13 @@ message Item {
|
|
|
124
125
|
optional string product_id = 1;
|
|
125
126
|
optional string variant_id = 2;
|
|
126
127
|
optional int32 quantity = 3;
|
|
127
|
-
optional string
|
|
128
|
-
optional
|
|
128
|
+
optional string name = 4;
|
|
129
|
+
optional string description = 5;
|
|
130
|
+
optional string taric_code = 6;
|
|
131
|
+
optional string hs_code = 7;
|
|
132
|
+
optional string origin_country_id = 8;
|
|
133
|
+
optional io.restorecommerce.amount.Amount value = 9;
|
|
134
|
+
optional io.restorecommerce.product.Package package = 10;
|
|
129
135
|
}
|
|
130
136
|
|
|
131
137
|
message Parcel {
|
|
@@ -140,7 +140,6 @@ message IndividualProduct {
|
|
|
140
140
|
field_name: "origin_country",
|
|
141
141
|
}
|
|
142
142
|
];
|
|
143
|
-
optional string taric_code = 5;
|
|
144
143
|
oneof classification {
|
|
145
144
|
string prototype_id = 6 [
|
|
146
145
|
(io.restorecommerce.options.resolver) = {
|
|
@@ -221,10 +220,13 @@ message PhysicalVariant {
|
|
|
221
220
|
repeated io.restorecommerce.property.Property properties = 10;
|
|
222
221
|
repeated string tax_ids = 11;
|
|
223
222
|
optional bool active = 12;
|
|
224
|
-
optional google.protobuf.Timestamp valid_from = 13;
|
|
223
|
+
optional google.protobuf.Timestamp valid_from = 13; // valid for sale
|
|
225
224
|
optional google.protobuf.Timestamp valid_to = 14;
|
|
226
225
|
repeated io.restorecommerce.attribute.Attribute attibutes = 15;
|
|
227
226
|
optional Package package = 16; // size for shipping
|
|
227
|
+
optional string taric_code = 17;
|
|
228
|
+
optional string hs_code = 18;
|
|
229
|
+
optional string export_description = 19;
|
|
228
230
|
}
|
|
229
231
|
|
|
230
232
|
message ServiceVariant {
|
|
@@ -240,7 +242,7 @@ message ServiceVariant {
|
|
|
240
242
|
repeated io.restorecommerce.property.Property properties = 10;
|
|
241
243
|
repeated string tax_ids = 11;
|
|
242
244
|
optional bool active = 12;
|
|
243
|
-
optional google.protobuf.Timestamp valid_from = 13;
|
|
245
|
+
optional google.protobuf.Timestamp valid_from = 13; // valid for sale
|
|
244
246
|
optional google.protobuf.Timestamp valid_to = 14;
|
|
245
247
|
repeated io.restorecommerce.attribute.Attribute attibutes = 15;
|
|
246
248
|
}
|
|
@@ -384,6 +386,7 @@ message IndividualProductVariant {
|
|
|
384
386
|
optional google.protobuf.Timestamp valid_to = 25;
|
|
385
387
|
repeated io.restorecommerce.attribute.Attribute attributes = 26;
|
|
386
388
|
optional Package package = 27; // size for shipping
|
|
389
|
+
optional string hs_code = 28;
|
|
387
390
|
}
|
|
388
391
|
|
|
389
392
|
message IndividualProductVariantResponse {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@restorecommerce/protos",
|
|
3
|
-
"version": "6.11.
|
|
3
|
+
"version": "6.11.3",
|
|
4
4
|
"description": "Protobuf descriptors for Restorecommerce services",
|
|
5
5
|
"author": "n-fuse GmbH",
|
|
6
6
|
"repository": {
|
|
@@ -15,5 +15,5 @@
|
|
|
15
15
|
"protobufs"
|
|
16
16
|
],
|
|
17
17
|
"scripts": {},
|
|
18
|
-
"gitHead": "
|
|
18
|
+
"gitHead": "c35fee3d7b022c3460597d803e668bc93d2a13fb"
|
|
19
19
|
}
|