@victoria-company/agora-client 1.0.202505140919 → 1.0.202505141349

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.
@@ -5007,6 +5007,10 @@ export interface OrderItemResponse extends Parsable {
5007
5007
  * The sku property
5008
5008
  */
5009
5009
  sku?: string | null;
5010
+ /**
5011
+ * The thumbImage property
5012
+ */
5013
+ thumbImage?: string | null;
5010
5014
  }
5011
5015
  export interface OrderPaymentResponse extends Parsable {
5012
5016
  /**
@@ -4103,6 +4103,7 @@ function deserializeIntoOrderItemResponse(orderItemResponse = {}) {
4103
4103
  "price": n => { orderItemResponse.price = n.getNumberValue(); },
4104
4104
  "size": n => { orderItemResponse.size = n.getStringValue(); },
4105
4105
  "sku": n => { orderItemResponse.sku = n.getStringValue(); },
4106
+ "thumbImage": n => { orderItemResponse.thumbImage = n.getStringValue(); },
4106
4107
  };
4107
4108
  }
4108
4109
  exports.deserializeIntoOrderItemResponse = deserializeIntoOrderItemResponse;
@@ -7184,6 +7185,7 @@ function serializeOrderItemResponse(writer, orderItemResponse = {}) {
7184
7185
  writer.writeNumberValue("price", orderItemResponse.price);
7185
7186
  writer.writeStringValue("size", orderItemResponse.size);
7186
7187
  writer.writeStringValue("sku", orderItemResponse.sku);
7188
+ writer.writeStringValue("thumbImage", orderItemResponse.thumbImage);
7187
7189
  }
7188
7190
  }
7189
7191
  exports.serializeOrderItemResponse = serializeOrderItemResponse;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@victoria-company/agora-client",
3
- "version": "1.0.202505140919",
3
+ "version": "1.0.202505141349",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",