@victoria-company/agora-client 1.0.202507281158 → 1.0.202507281546
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/index.cjs +8 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -4
- package/dist/index.d.ts +8 -4
- package/dist/index.js +8 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
@@ -3193,9 +3193,6 @@ function deserializeIntoEngravingConfigurationSearchModel(engravingConfiguration
|
|
3193
3193
|
"packshot": (n) => {
|
3194
3194
|
engravingConfigurationSearchModel.packshot = n.getStringValue();
|
3195
3195
|
},
|
3196
|
-
"price": (n) => {
|
3197
|
-
engravingConfigurationSearchModel.price = n.getNumberValue();
|
3198
|
-
},
|
3199
3196
|
"zoneHeightInPixels": (n) => {
|
3200
3197
|
engravingConfigurationSearchModel.zoneHeightInPixels = n.getNumberValue();
|
3201
3198
|
},
|
@@ -4241,6 +4238,12 @@ function deserializeIntoProductSearchModel(productSearchModel = {}) {
|
|
4241
4238
|
"description": (n) => {
|
4242
4239
|
productSearchModel.description = n.getStringValue();
|
4243
4240
|
},
|
4241
|
+
"engravingFreeFaces": (n) => {
|
4242
|
+
productSearchModel.engravingFreeFaces = n.getNumberValue();
|
4243
|
+
},
|
4244
|
+
"engravingPricePerFace": (n) => {
|
4245
|
+
productSearchModel.engravingPricePerFace = n.getNumberValue();
|
4246
|
+
},
|
4244
4247
|
"frontEngravingConfiguration": (n) => {
|
4245
4248
|
productSearchModel.frontEngravingConfiguration = n.getObjectValue(createEngravingConfigurationSearchModelFromDiscriminatorValue);
|
4246
4249
|
},
|
@@ -6262,7 +6265,6 @@ function serializeDownloadIntranetPaymentSheetRequest_MergePaymentInfo(writer, d
|
|
6262
6265
|
function serializeEngravingConfigurationSearchModel(writer, engravingConfigurationSearchModel = {}) {
|
6263
6266
|
if (engravingConfigurationSearchModel) {
|
6264
6267
|
writer.writeStringValue("packshot", engravingConfigurationSearchModel.packshot);
|
6265
|
-
writer.writeNumberValue("price", engravingConfigurationSearchModel.price);
|
6266
6268
|
writer.writeNumberValue("zoneHeightInPixels", engravingConfigurationSearchModel.zoneHeightInPixels);
|
6267
6269
|
writer.writeNumberValue("zoneWidthInPixels", engravingConfigurationSearchModel.zoneWidthInPixels);
|
6268
6270
|
}
|
@@ -6826,6 +6828,8 @@ function serializeProductSearchModel(writer, productSearchModel = {}) {
|
|
6826
6828
|
writer.writeObjectValue("color", productSearchModel.color, serializeProductColorSearchModel);
|
6827
6829
|
writer.writeNumberValue("creation_date", productSearchModel.creationDate);
|
6828
6830
|
writer.writeStringValue("description", productSearchModel.description);
|
6831
|
+
writer.writeNumberValue("engravingFreeFaces", productSearchModel.engravingFreeFaces);
|
6832
|
+
writer.writeNumberValue("engravingPricePerFace", productSearchModel.engravingPricePerFace);
|
6829
6833
|
writer.writeObjectValue("frontEngravingConfiguration", productSearchModel.frontEngravingConfiguration, serializeEngravingConfigurationSearchModel);
|
6830
6834
|
writer.writeObjectValue("gender", productSearchModel.gender, serializeProductGenderSearchModel);
|
6831
6835
|
writer.writeBooleanValue("hasEngraving", productSearchModel.hasEngraving);
|