@victoria-company/agora-client 1.0.202507291338 → 1.0.202507300944

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 CHANGED
@@ -4022,6 +4022,9 @@ function deserializeIntoOrderResponse(orderResponse = {}) {
4022
4022
  "demoId": (n) => {
4023
4023
  orderResponse.demoId = n.getStringValue();
4024
4024
  },
4025
+ "engravingCosts": (n) => {
4026
+ orderResponse.engravingCosts = n.getNumberValue();
4027
+ },
4025
4028
  "hostessName": (n) => {
4026
4029
  orderResponse.hostessName = n.getStringValue();
4027
4030
  },
@@ -6762,6 +6765,7 @@ function serializeOrderResponse(writer, orderResponse = {}) {
6762
6765
  writer.writeEnumValue("deliveryType", orderResponse.deliveryType);
6763
6766
  writer.writeDateValue("demoDate", orderResponse.demoDate);
6764
6767
  writer.writeStringValue("demoId", orderResponse.demoId);
6768
+ writer.writeNumberValue("engravingCosts", orderResponse.engravingCosts);
6765
6769
  writer.writeStringValue("hostessName", orderResponse.hostessName);
6766
6770
  writer.writeNumberValue("humanOrderId", orderResponse.humanOrderId);
6767
6771
  writer.writeStringValue("id", orderResponse.id);