@victoria-company/agora-client 1.0.202512081718 → 1.0.202512091054

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
@@ -7542,6 +7542,10 @@ interface SetCartDeliveryRequest extends Parsable {
7542
7542
  * The deliveryType property
7543
7543
  */
7544
7544
  deliveryType?: DeliveryType | null;
7545
+ /**
7546
+ * The saveAsDefault property
7547
+ */
7548
+ saveAsDefault?: boolean | null;
7545
7549
  }
7546
7550
  interface SetDelegatePaymentMethodRequest extends Parsable {
7547
7551
  /**
package/dist/index.d.ts CHANGED
@@ -7542,6 +7542,10 @@ interface SetCartDeliveryRequest extends Parsable {
7542
7542
  * The deliveryType property
7543
7543
  */
7544
7544
  deliveryType?: DeliveryType | null;
7545
+ /**
7546
+ * The saveAsDefault property
7547
+ */
7548
+ saveAsDefault?: boolean | null;
7545
7549
  }
7546
7550
  interface SetDelegatePaymentMethodRequest extends Parsable {
7547
7551
  /**
package/dist/index.js CHANGED
@@ -3934,6 +3934,9 @@ function deserializeIntoSetCartDeliveryRequest(setCartDeliveryRequest = {}) {
3934
3934
  },
3935
3935
  "deliveryType": (n) => {
3936
3936
  setCartDeliveryRequest.deliveryType = n.getEnumValue(DeliveryTypeObject);
3937
+ },
3938
+ "saveAsDefault": (n) => {
3939
+ setCartDeliveryRequest.saveAsDefault = n.getBooleanValue();
3937
3940
  }
3938
3941
  };
3939
3942
  }
@@ -6607,6 +6610,7 @@ function serializeSetCartDeliveryRequest(writer, setCartDeliveryRequest = {}) {
6607
6610
  if (setCartDeliveryRequest) {
6608
6611
  writer.writeObjectValue("deliveryAddress", setCartDeliveryRequest.deliveryAddress, serializeDeliveryAddress);
6609
6612
  writer.writeEnumValue("deliveryType", setCartDeliveryRequest.deliveryType);
6613
+ writer.writeBooleanValue("saveAsDefault", setCartDeliveryRequest.saveAsDefault);
6610
6614
  }
6611
6615
  }
6612
6616
  function serializeSetDelegatePaymentMethodRequest(writer, setDelegatePaymentMethodRequest = {}) {