@victoria-company/agora-client 1.0.202506300919 → 1.0.202507040838

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
@@ -4612,6 +4612,10 @@ interface DownloadIntranetPaymentSheetRequest_MergePaymentInfo extends Parsable
4612
4612
  }
4613
4613
  type EmailTemplates = (typeof EmailTemplatesObject)[keyof typeof EmailTemplatesObject];
4614
4614
  interface EngravingConfigurationSearchModel extends Parsable {
4615
+ /**
4616
+ * The packshot property
4617
+ */
4618
+ packshot?: string | null;
4615
4619
  /**
4616
4620
  * The zoneHeightInPixels property
4617
4621
  */
@@ -5728,10 +5732,6 @@ interface ProductSearchModel extends Parsable {
5728
5732
  * The description property
5729
5733
  */
5730
5734
  description?: string | null;
5731
- /**
5732
- * The engravingPackshot property
5733
- */
5734
- engravingPackshot?: string | null;
5735
5735
  /**
5736
5736
  * The frontEngravingConfiguration property
5737
5737
  */
@@ -7890,10 +7890,6 @@ interface UpsertProductRequest extends Parsable {
7890
7890
  * The creationDate property
7891
7891
  */
7892
7892
  creationDate?: Date | null;
7893
- /**
7894
- * The engravingPackshot property
7895
- */
7896
- engravingPackshot?: string | null;
7897
7893
  /**
7898
7894
  * The frontEngravingConfiguration property
7899
7895
  */
@@ -7974,6 +7970,10 @@ interface UpsertProductRequest_colorLocalizations extends AdditionalDataHolder,
7974
7970
  additionalData?: Record<string, unknown>;
7975
7971
  }
7976
7972
  interface UpsertProductRequest_EngravingConfigurationRequest extends Parsable {
7973
+ /**
7974
+ * The packshot property
7975
+ */
7976
+ packshot?: string | null;
7977
7977
  /**
7978
7978
  * The zoneHeightInPixels property
7979
7979
  */
package/dist/index.d.ts CHANGED
@@ -4612,6 +4612,10 @@ interface DownloadIntranetPaymentSheetRequest_MergePaymentInfo extends Parsable
4612
4612
  }
4613
4613
  type EmailTemplates = (typeof EmailTemplatesObject)[keyof typeof EmailTemplatesObject];
4614
4614
  interface EngravingConfigurationSearchModel extends Parsable {
4615
+ /**
4616
+ * The packshot property
4617
+ */
4618
+ packshot?: string | null;
4615
4619
  /**
4616
4620
  * The zoneHeightInPixels property
4617
4621
  */
@@ -5728,10 +5732,6 @@ interface ProductSearchModel extends Parsable {
5728
5732
  * The description property
5729
5733
  */
5730
5734
  description?: string | null;
5731
- /**
5732
- * The engravingPackshot property
5733
- */
5734
- engravingPackshot?: string | null;
5735
5735
  /**
5736
5736
  * The frontEngravingConfiguration property
5737
5737
  */
@@ -7890,10 +7890,6 @@ interface UpsertProductRequest extends Parsable {
7890
7890
  * The creationDate property
7891
7891
  */
7892
7892
  creationDate?: Date | null;
7893
- /**
7894
- * The engravingPackshot property
7895
- */
7896
- engravingPackshot?: string | null;
7897
7893
  /**
7898
7894
  * The frontEngravingConfiguration property
7899
7895
  */
@@ -7974,6 +7970,10 @@ interface UpsertProductRequest_colorLocalizations extends AdditionalDataHolder,
7974
7970
  additionalData?: Record<string, unknown>;
7975
7971
  }
7976
7972
  interface UpsertProductRequest_EngravingConfigurationRequest extends Parsable {
7973
+ /**
7974
+ * The packshot property
7975
+ */
7976
+ packshot?: string | null;
7977
7977
  /**
7978
7978
  * The zoneHeightInPixels property
7979
7979
  */
package/dist/index.js CHANGED
@@ -2449,6 +2449,9 @@ function deserializeIntoDownloadIntranetPaymentSheetRequest_MergePaymentInfo(dow
2449
2449
  }
2450
2450
  function deserializeIntoEngravingConfigurationSearchModel(engravingConfigurationSearchModel = {}) {
2451
2451
  return {
2452
+ "packshot": (n) => {
2453
+ engravingConfigurationSearchModel.packshot = n.getStringValue();
2454
+ },
2452
2455
  "zoneHeightInPixels": (n) => {
2453
2456
  engravingConfigurationSearchModel.zoneHeightInPixels = n.getNumberValue();
2454
2457
  },
@@ -3456,9 +3459,6 @@ function deserializeIntoProductSearchModel(productSearchModel = {}) {
3456
3459
  "description": (n) => {
3457
3460
  productSearchModel.description = n.getStringValue();
3458
3461
  },
3459
- "engravingPackshot": (n) => {
3460
- productSearchModel.engravingPackshot = n.getStringValue();
3461
- },
3462
3462
  "frontEngravingConfiguration": (n) => {
3463
3463
  productSearchModel.frontEngravingConfiguration = n.getObjectValue(createEngravingConfigurationSearchModelFromDiscriminatorValue);
3464
3464
  },
@@ -4336,9 +4336,6 @@ function deserializeIntoUpsertProductRequest(upsertProductRequest = {}) {
4336
4336
  "creationDate": (n) => {
4337
4337
  upsertProductRequest.creationDate = n.getDateValue();
4338
4338
  },
4339
- "engravingPackshot": (n) => {
4340
- upsertProductRequest.engravingPackshot = n.getStringValue();
4341
- },
4342
4339
  "frontEngravingConfiguration": (n) => {
4343
4340
  upsertProductRequest.frontEngravingConfiguration = n.getObjectValue(createUpsertProductRequest_EngravingConfigurationRequestFromDiscriminatorValue);
4344
4341
  },
@@ -4401,6 +4398,9 @@ function deserializeIntoUpsertProductRequest_colorLocalizations(upsertProductReq
4401
4398
  }
4402
4399
  function deserializeIntoUpsertProductRequest_EngravingConfigurationRequest(upsertProductRequest_EngravingConfigurationRequest = {}) {
4403
4400
  return {
4401
+ "packshot": (n) => {
4402
+ upsertProductRequest_EngravingConfigurationRequest.packshot = n.getStringValue();
4403
+ },
4404
4404
  "zoneHeightInPixels": (n) => {
4405
4405
  upsertProductRequest_EngravingConfigurationRequest.zoneHeightInPixels = n.getNumberValue();
4406
4406
  },
@@ -5477,6 +5477,7 @@ function serializeDownloadIntranetPaymentSheetRequest_MergePaymentInfo(writer, d
5477
5477
  }
5478
5478
  function serializeEngravingConfigurationSearchModel(writer, engravingConfigurationSearchModel = {}) {
5479
5479
  if (engravingConfigurationSearchModel) {
5480
+ writer.writeStringValue("packshot", engravingConfigurationSearchModel.packshot);
5480
5481
  writer.writeNumberValue("zoneHeightInPixels", engravingConfigurationSearchModel.zoneHeightInPixels);
5481
5482
  writer.writeNumberValue("zoneWidthInPixels", engravingConfigurationSearchModel.zoneWidthInPixels);
5482
5483
  }
@@ -6030,7 +6031,6 @@ function serializeProductSearchModel(writer, productSearchModel = {}) {
6030
6031
  writer.writeObjectValue("color", productSearchModel.color, serializeProductColorSearchModel);
6031
6032
  writer.writeNumberValue("creation_date", productSearchModel.creationDate);
6032
6033
  writer.writeStringValue("description", productSearchModel.description);
6033
- writer.writeStringValue("engravingPackshot", productSearchModel.engravingPackshot);
6034
6034
  writer.writeObjectValue("frontEngravingConfiguration", productSearchModel.frontEngravingConfiguration, serializeEngravingConfigurationSearchModel);
6035
6035
  writer.writeObjectValue("gender", productSearchModel.gender, serializeProductGenderSearchModel);
6036
6036
  writer.writeBooleanValue("hasEngraving", productSearchModel.hasEngraving);
@@ -6438,7 +6438,6 @@ function serializeUpsertProductRequest(writer, upsertProductRequest = {}) {
6438
6438
  writer.writeObjectValue("categoryLocalizations", upsertProductRequest.categoryLocalizations, serializeUpsertProductRequest_categoryLocalizations);
6439
6439
  writer.writeObjectValue("colorLocalizations", upsertProductRequest.colorLocalizations, serializeUpsertProductRequest_colorLocalizations);
6440
6440
  writer.writeDateValue("creationDate", upsertProductRequest.creationDate);
6441
- writer.writeStringValue("engravingPackshot", upsertProductRequest.engravingPackshot);
6442
6441
  writer.writeObjectValue("frontEngravingConfiguration", upsertProductRequest.frontEngravingConfiguration, serializeUpsertProductRequest_EngravingConfigurationRequest);
6443
6442
  writer.writeObjectValue("genderLocalizations", upsertProductRequest.genderLocalizations, serializeUpsertProductRequest_genderLocalizations);
6444
6443
  writer.writeStringValue("imageHover", upsertProductRequest.imageHover);
@@ -6473,6 +6472,7 @@ function serializeUpsertProductRequest_colorLocalizations(writer, upsertProductR
6473
6472
  }
6474
6473
  function serializeUpsertProductRequest_EngravingConfigurationRequest(writer, upsertProductRequest_EngravingConfigurationRequest = {}) {
6475
6474
  if (upsertProductRequest_EngravingConfigurationRequest) {
6475
+ writer.writeStringValue("packshot", upsertProductRequest_EngravingConfigurationRequest.packshot);
6476
6476
  writer.writeNumberValue("zoneHeightInPixels", upsertProductRequest_EngravingConfigurationRequest.zoneHeightInPixels);
6477
6477
  writer.writeNumberValue("zoneWidthInPixels", upsertProductRequest_EngravingConfigurationRequest.zoneWidthInPixels);
6478
6478
  }