@victoria-company/agora-client 1.0.202504111020 → 1.0.202504161149

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.
@@ -5324,6 +5324,10 @@ export interface ProductSearchModel extends Parsable {
5324
5324
  * The color property
5325
5325
  */
5326
5326
  color?: ProductColorSearchModel | null;
5327
+ /**
5328
+ * The creation_date property
5329
+ */
5330
+ creationDate?: number | null;
5327
5331
  /**
5328
5332
  * The description property
5329
5333
  */
@@ -7388,6 +7392,10 @@ export interface UpsertProductRequest extends Parsable {
7388
7392
  * The colorLocalizations property
7389
7393
  */
7390
7394
  colorLocalizations?: UpsertProductRequest_colorLocalizations | null;
7395
+ /**
7396
+ * The creationDate property
7397
+ */
7398
+ creationDate?: Date | null;
7391
7399
  /**
7392
7400
  * The genderLocalizations property
7393
7401
  */
@@ -4305,6 +4305,7 @@ function deserializeIntoProductSearchModel(productSearchModel = {}) {
4305
4305
  "assets": n => { productSearchModel.assets = n.getCollectionOfObjectValues(createProductAssetSearchModelFromDiscriminatorValue); },
4306
4306
  "category": n => { productSearchModel.category = n.getObjectValue(createProductCategorySearchModelFromDiscriminatorValue); },
4307
4307
  "color": n => { productSearchModel.color = n.getObjectValue(createProductColorSearchModelFromDiscriminatorValue); },
4308
+ "creation_date": n => { productSearchModel.creationDate = n.getNumberValue(); },
4308
4309
  "description": n => { productSearchModel.description = n.getStringValue(); },
4309
4310
  "gender": n => { productSearchModel.gender = n.getObjectValue(createProductGenderSearchModelFromDiscriminatorValue); },
4310
4311
  "id": n => { productSearchModel.id = n.getStringValue(); },
@@ -4948,6 +4949,7 @@ function deserializeIntoUpsertProductRequest(upsertProductRequest = {}) {
4948
4949
  "assets": n => { upsertProductRequest.assets = n.getCollectionOfObjectValues(createUpsertProductRequest_AssetFromDiscriminatorValue); },
4949
4950
  "categoryLocalizations": n => { upsertProductRequest.categoryLocalizations = n.getObjectValue(createUpsertProductRequest_categoryLocalizationsFromDiscriminatorValue); },
4950
4951
  "colorLocalizations": n => { upsertProductRequest.colorLocalizations = n.getObjectValue(createUpsertProductRequest_colorLocalizationsFromDiscriminatorValue); },
4952
+ "creationDate": n => { upsertProductRequest.creationDate = n.getDateValue(); },
4951
4953
  "genderLocalizations": n => { upsertProductRequest.genderLocalizations = n.getObjectValue(createUpsertProductRequest_genderLocalizationsFromDiscriminatorValue); },
4952
4954
  "imageHover": n => { upsertProductRequest.imageHover = n.getStringValue(); },
4953
4955
  "imageThumbnail": n => { upsertProductRequest.imageThumbnail = n.getStringValue(); },
@@ -7382,6 +7384,7 @@ function serializeProductSearchModel(writer, productSearchModel = {}) {
7382
7384
  writer.writeCollectionOfObjectValues("assets", productSearchModel.assets, serializeProductAssetSearchModel);
7383
7385
  writer.writeObjectValue("category", productSearchModel.category, serializeProductCategorySearchModel);
7384
7386
  writer.writeObjectValue("color", productSearchModel.color, serializeProductColorSearchModel);
7387
+ writer.writeNumberValue("creation_date", productSearchModel.creationDate);
7385
7388
  writer.writeStringValue("description", productSearchModel.description);
7386
7389
  writer.writeObjectValue("gender", productSearchModel.gender, serializeProductGenderSearchModel);
7387
7390
  writer.writeStringValue("id", productSearchModel.id);
@@ -8027,6 +8030,7 @@ function serializeUpsertProductRequest(writer, upsertProductRequest = {}) {
8027
8030
  writer.writeCollectionOfObjectValues("assets", upsertProductRequest.assets, serializeUpsertProductRequest_Asset);
8028
8031
  writer.writeObjectValue("categoryLocalizations", upsertProductRequest.categoryLocalizations, serializeUpsertProductRequest_categoryLocalizations);
8029
8032
  writer.writeObjectValue("colorLocalizations", upsertProductRequest.colorLocalizations, serializeUpsertProductRequest_colorLocalizations);
8033
+ writer.writeDateValue("creationDate", upsertProductRequest.creationDate);
8030
8034
  writer.writeObjectValue("genderLocalizations", upsertProductRequest.genderLocalizations, serializeUpsertProductRequest_genderLocalizations);
8031
8035
  writer.writeStringValue("imageHover", upsertProductRequest.imageHover);
8032
8036
  writer.writeStringValue("imageThumbnail", upsertProductRequest.imageThumbnail);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@victoria-company/agora-client",
3
- "version": "1.0.202504111020",
3
+ "version": "1.0.202504161149",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",