@victoria-company/agora-client 1.0.202507281117 → 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.d.cts CHANGED
@@ -4624,10 +4624,6 @@ interface EngravingConfigurationSearchModel extends Parsable {
4624
4624
  * The packshot property
4625
4625
  */
4626
4626
  packshot?: string | null;
4627
- /**
4628
- * The price property
4629
- */
4630
- price?: number | null;
4631
4627
  /**
4632
4628
  * The zoneHeightInPixels property
4633
4629
  */
@@ -5784,6 +5780,14 @@ interface ProductSearchModel extends Parsable {
5784
5780
  * The description property
5785
5781
  */
5786
5782
  description?: string | null;
5783
+ /**
5784
+ * The engravingFreeFaces property
5785
+ */
5786
+ engravingFreeFaces?: number | null;
5787
+ /**
5788
+ * The engravingPricePerFace property
5789
+ */
5790
+ engravingPricePerFace?: number | null;
5787
5791
  /**
5788
5792
  * The frontEngravingConfiguration property
5789
5793
  */
package/dist/index.d.ts CHANGED
@@ -4624,10 +4624,6 @@ interface EngravingConfigurationSearchModel extends Parsable {
4624
4624
  * The packshot property
4625
4625
  */
4626
4626
  packshot?: string | null;
4627
- /**
4628
- * The price property
4629
- */
4630
- price?: number | null;
4631
4627
  /**
4632
4628
  * The zoneHeightInPixels property
4633
4629
  */
@@ -5784,6 +5780,14 @@ interface ProductSearchModel extends Parsable {
5784
5780
  * The description property
5785
5781
  */
5786
5782
  description?: string | null;
5783
+ /**
5784
+ * The engravingFreeFaces property
5785
+ */
5786
+ engravingFreeFaces?: number | null;
5787
+ /**
5788
+ * The engravingPricePerFace property
5789
+ */
5790
+ engravingPricePerFace?: number | null;
5787
5791
  /**
5788
5792
  * The frontEngravingConfiguration property
5789
5793
  */
package/dist/index.js CHANGED
@@ -2458,9 +2458,6 @@ function deserializeIntoEngravingConfigurationSearchModel(engravingConfiguration
2458
2458
  "packshot": (n) => {
2459
2459
  engravingConfigurationSearchModel.packshot = n.getStringValue();
2460
2460
  },
2461
- "price": (n) => {
2462
- engravingConfigurationSearchModel.price = n.getNumberValue();
2463
- },
2464
2461
  "zoneHeightInPixels": (n) => {
2465
2462
  engravingConfigurationSearchModel.zoneHeightInPixels = n.getNumberValue();
2466
2463
  },
@@ -3506,6 +3503,12 @@ function deserializeIntoProductSearchModel(productSearchModel = {}) {
3506
3503
  "description": (n) => {
3507
3504
  productSearchModel.description = n.getStringValue();
3508
3505
  },
3506
+ "engravingFreeFaces": (n) => {
3507
+ productSearchModel.engravingFreeFaces = n.getNumberValue();
3508
+ },
3509
+ "engravingPricePerFace": (n) => {
3510
+ productSearchModel.engravingPricePerFace = n.getNumberValue();
3511
+ },
3509
3512
  "frontEngravingConfiguration": (n) => {
3510
3513
  productSearchModel.frontEngravingConfiguration = n.getObjectValue(createEngravingConfigurationSearchModelFromDiscriminatorValue);
3511
3514
  },
@@ -5527,7 +5530,6 @@ function serializeDownloadIntranetPaymentSheetRequest_MergePaymentInfo(writer, d
5527
5530
  function serializeEngravingConfigurationSearchModel(writer, engravingConfigurationSearchModel = {}) {
5528
5531
  if (engravingConfigurationSearchModel) {
5529
5532
  writer.writeStringValue("packshot", engravingConfigurationSearchModel.packshot);
5530
- writer.writeNumberValue("price", engravingConfigurationSearchModel.price);
5531
5533
  writer.writeNumberValue("zoneHeightInPixels", engravingConfigurationSearchModel.zoneHeightInPixels);
5532
5534
  writer.writeNumberValue("zoneWidthInPixels", engravingConfigurationSearchModel.zoneWidthInPixels);
5533
5535
  }
@@ -6091,6 +6093,8 @@ function serializeProductSearchModel(writer, productSearchModel = {}) {
6091
6093
  writer.writeObjectValue("color", productSearchModel.color, serializeProductColorSearchModel);
6092
6094
  writer.writeNumberValue("creation_date", productSearchModel.creationDate);
6093
6095
  writer.writeStringValue("description", productSearchModel.description);
6096
+ writer.writeNumberValue("engravingFreeFaces", productSearchModel.engravingFreeFaces);
6097
+ writer.writeNumberValue("engravingPricePerFace", productSearchModel.engravingPricePerFace);
6094
6098
  writer.writeObjectValue("frontEngravingConfiguration", productSearchModel.frontEngravingConfiguration, serializeEngravingConfigurationSearchModel);
6095
6099
  writer.writeObjectValue("gender", productSearchModel.gender, serializeProductGenderSearchModel);
6096
6100
  writer.writeBooleanValue("hasEngraving", productSearchModel.hasEngraving);