@victoria-company/agora-client 1.0.202502201105 → 1.0.202502210902
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/models/index.d.ts +16 -8
- package/dist/models/index.js +8 -4
- package/package.json +1 -1
package/dist/models/index.d.ts
CHANGED
@@ -5316,10 +5316,18 @@ export interface ProductSearchModel extends Parsable {
|
|
5316
5316
|
* The imageThumbnail property
|
5317
5317
|
*/
|
5318
5318
|
imageThumbnail?: string | null;
|
5319
|
+
/**
|
5320
|
+
* The isArchive property
|
5321
|
+
*/
|
5322
|
+
isArchive?: boolean | null;
|
5319
5323
|
/**
|
5320
5324
|
* The isHostessGift property
|
5321
5325
|
*/
|
5322
5326
|
isHostessGift?: boolean | null;
|
5327
|
+
/**
|
5328
|
+
* The isPresales property
|
5329
|
+
*/
|
5330
|
+
isPresales?: boolean | null;
|
5323
5331
|
/**
|
5324
5332
|
* The isVisibleByCustomer property
|
5325
5333
|
*/
|
@@ -5430,18 +5438,10 @@ export interface ProductVariantSearchModel extends Parsable {
|
|
5430
5438
|
* The id property
|
5431
5439
|
*/
|
5432
5440
|
id?: string | null;
|
5433
|
-
/**
|
5434
|
-
* The isArchive property
|
5435
|
-
*/
|
5436
|
-
isArchive?: boolean | null;
|
5437
5441
|
/**
|
5438
5442
|
* The isLsc property
|
5439
5443
|
*/
|
5440
5444
|
isLsc?: boolean | null;
|
5441
|
-
/**
|
5442
|
-
* The isPresales property
|
5443
|
-
*/
|
5444
|
-
isPresales?: boolean | null;
|
5445
5445
|
/**
|
5446
5446
|
* The isVisibleByCustomer property
|
5447
5447
|
*/
|
@@ -7353,10 +7353,18 @@ export interface UpsertProductRequest extends Parsable {
|
|
7353
7353
|
* The imageThumbnail property
|
7354
7354
|
*/
|
7355
7355
|
imageThumbnail?: string | null;
|
7356
|
+
/**
|
7357
|
+
* The isArchive property
|
7358
|
+
*/
|
7359
|
+
isArchive?: boolean | null;
|
7356
7360
|
/**
|
7357
7361
|
* The isHostessGift property
|
7358
7362
|
*/
|
7359
7363
|
isHostessGift?: boolean | null;
|
7364
|
+
/**
|
7365
|
+
* The isPresales property
|
7366
|
+
*/
|
7367
|
+
isPresales?: boolean | null;
|
7360
7368
|
/**
|
7361
7369
|
* The linkConfiguration property
|
7362
7370
|
*/
|
package/dist/models/index.js
CHANGED
@@ -4294,7 +4294,9 @@ function deserializeIntoProductSearchModel(productSearchModel = {}) {
|
|
4294
4294
|
"id": n => { productSearchModel.id = n.getStringValue(); },
|
4295
4295
|
"imageHover": n => { productSearchModel.imageHover = n.getStringValue(); },
|
4296
4296
|
"imageThumbnail": n => { productSearchModel.imageThumbnail = n.getStringValue(); },
|
4297
|
+
"isArchive": n => { productSearchModel.isArchive = n.getBooleanValue(); },
|
4297
4298
|
"isHostessGift": n => { productSearchModel.isHostessGift = n.getBooleanValue(); },
|
4299
|
+
"isPresales": n => { productSearchModel.isPresales = n.getBooleanValue(); },
|
4298
4300
|
"isVisibleByCustomer": n => { productSearchModel.isVisibleByCustomer = n.getBooleanValue(); },
|
4299
4301
|
"isVisibleByDelegate": n => { productSearchModel.isVisibleByDelegate = n.getBooleanValue(); },
|
4300
4302
|
"linkConfiguration": n => { productSearchModel.linkConfiguration = n.getObjectValue(createProductLinkConfigurationSearchModelFromDiscriminatorValue); },
|
@@ -4351,9 +4353,7 @@ function deserializeIntoProductVariantSearchModel(productVariantSearchModel = {}
|
|
4351
4353
|
"currentPrice": n => { productVariantSearchModel.currentPrice = n.getNumberValue(); },
|
4352
4354
|
"eta": n => { productVariantSearchModel.eta = n.getNumberValue(); },
|
4353
4355
|
"id": n => { productVariantSearchModel.id = n.getStringValue(); },
|
4354
|
-
"isArchive": n => { productVariantSearchModel.isArchive = n.getBooleanValue(); },
|
4355
4356
|
"isLsc": n => { productVariantSearchModel.isLsc = n.getBooleanValue(); },
|
4356
|
-
"isPresales": n => { productVariantSearchModel.isPresales = n.getBooleanValue(); },
|
4357
4357
|
"isVisibleByCustomer": n => { productVariantSearchModel.isVisibleByCustomer = n.getBooleanValue(); },
|
4358
4358
|
"isVisibleByDelegate": n => { productVariantSearchModel.isVisibleByDelegate = n.getBooleanValue(); },
|
4359
4359
|
"normalPrice": n => { productVariantSearchModel.normalPrice = n.getNumberValue(); },
|
@@ -4922,7 +4922,9 @@ function deserializeIntoUpsertProductRequest(upsertProductRequest = {}) {
|
|
4922
4922
|
"genderLocalizations": n => { upsertProductRequest.genderLocalizations = n.getObjectValue(createUpsertProductRequest_genderLocalizationsFromDiscriminatorValue); },
|
4923
4923
|
"imageHover": n => { upsertProductRequest.imageHover = n.getStringValue(); },
|
4924
4924
|
"imageThumbnail": n => { upsertProductRequest.imageThumbnail = n.getStringValue(); },
|
4925
|
+
"isArchive": n => { upsertProductRequest.isArchive = n.getBooleanValue(); },
|
4925
4926
|
"isHostessGift": n => { upsertProductRequest.isHostessGift = n.getBooleanValue(); },
|
4927
|
+
"isPresales": n => { upsertProductRequest.isPresales = n.getBooleanValue(); },
|
4926
4928
|
"linkConfiguration": n => { upsertProductRequest.linkConfiguration = n.getObjectValue(createUpsertProductRequest_LinkConfigurationRequestFromDiscriminatorValue); },
|
4927
4929
|
"localizations": n => { upsertProductRequest.localizations = n.getObjectValue(createUpsertProductRequest_localizationsFromDiscriminatorValue); },
|
4928
4930
|
"themesLocalizations": n => { upsertProductRequest.themesLocalizations = n.getObjectValue(createUpsertProductRequest_themesLocalizationsFromDiscriminatorValue); },
|
@@ -7351,7 +7353,9 @@ function serializeProductSearchModel(writer, productSearchModel = {}) {
|
|
7351
7353
|
writer.writeStringValue("id", productSearchModel.id);
|
7352
7354
|
writer.writeStringValue("imageHover", productSearchModel.imageHover);
|
7353
7355
|
writer.writeStringValue("imageThumbnail", productSearchModel.imageThumbnail);
|
7356
|
+
writer.writeBooleanValue("isArchive", productSearchModel.isArchive);
|
7354
7357
|
writer.writeBooleanValue("isHostessGift", productSearchModel.isHostessGift);
|
7358
|
+
writer.writeBooleanValue("isPresales", productSearchModel.isPresales);
|
7355
7359
|
writer.writeBooleanValue("isVisibleByCustomer", productSearchModel.isVisibleByCustomer);
|
7356
7360
|
writer.writeBooleanValue("isVisibleByDelegate", productSearchModel.isVisibleByDelegate);
|
7357
7361
|
writer.writeObjectValue("linkConfiguration", productSearchModel.linkConfiguration, serializeProductLinkConfigurationSearchModel);
|
@@ -7408,9 +7412,7 @@ function serializeProductVariantSearchModel(writer, productVariantSearchModel =
|
|
7408
7412
|
writer.writeNumberValue("currentPrice", productVariantSearchModel.currentPrice);
|
7409
7413
|
writer.writeNumberValue("eta", productVariantSearchModel.eta);
|
7410
7414
|
writer.writeStringValue("id", productVariantSearchModel.id);
|
7411
|
-
writer.writeBooleanValue("isArchive", productVariantSearchModel.isArchive);
|
7412
7415
|
writer.writeBooleanValue("isLsc", productVariantSearchModel.isLsc);
|
7413
|
-
writer.writeBooleanValue("isPresales", productVariantSearchModel.isPresales);
|
7414
7416
|
writer.writeBooleanValue("isVisibleByCustomer", productVariantSearchModel.isVisibleByCustomer);
|
7415
7417
|
writer.writeBooleanValue("isVisibleByDelegate", productVariantSearchModel.isVisibleByDelegate);
|
7416
7418
|
writer.writeNumberValue("normalPrice", productVariantSearchModel.normalPrice);
|
@@ -7981,7 +7983,9 @@ function serializeUpsertProductRequest(writer, upsertProductRequest = {}) {
|
|
7981
7983
|
writer.writeObjectValue("genderLocalizations", upsertProductRequest.genderLocalizations, serializeUpsertProductRequest_genderLocalizations);
|
7982
7984
|
writer.writeStringValue("imageHover", upsertProductRequest.imageHover);
|
7983
7985
|
writer.writeStringValue("imageThumbnail", upsertProductRequest.imageThumbnail);
|
7986
|
+
writer.writeBooleanValue("isArchive", upsertProductRequest.isArchive);
|
7984
7987
|
writer.writeBooleanValue("isHostessGift", upsertProductRequest.isHostessGift);
|
7988
|
+
writer.writeBooleanValue("isPresales", upsertProductRequest.isPresales);
|
7985
7989
|
writer.writeObjectValue("linkConfiguration", upsertProductRequest.linkConfiguration, serializeUpsertProductRequest_LinkConfigurationRequest);
|
7986
7990
|
writer.writeObjectValue("localizations", upsertProductRequest.localizations, serializeUpsertProductRequest_localizations);
|
7987
7991
|
writer.writeObjectValue("themesLocalizations", upsertProductRequest.themesLocalizations, serializeUpsertProductRequest_themesLocalizations);
|