@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.cjs +8 -8
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -8
- package/dist/index.d.ts +8 -8
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
@@ -3184,6 +3184,9 @@ function deserializeIntoDownloadIntranetPaymentSheetRequest_MergePaymentInfo(dow
|
|
3184
3184
|
}
|
3185
3185
|
function deserializeIntoEngravingConfigurationSearchModel(engravingConfigurationSearchModel = {}) {
|
3186
3186
|
return {
|
3187
|
+
"packshot": (n) => {
|
3188
|
+
engravingConfigurationSearchModel.packshot = n.getStringValue();
|
3189
|
+
},
|
3187
3190
|
"zoneHeightInPixels": (n) => {
|
3188
3191
|
engravingConfigurationSearchModel.zoneHeightInPixels = n.getNumberValue();
|
3189
3192
|
},
|
@@ -4191,9 +4194,6 @@ function deserializeIntoProductSearchModel(productSearchModel = {}) {
|
|
4191
4194
|
"description": (n) => {
|
4192
4195
|
productSearchModel.description = n.getStringValue();
|
4193
4196
|
},
|
4194
|
-
"engravingPackshot": (n) => {
|
4195
|
-
productSearchModel.engravingPackshot = n.getStringValue();
|
4196
|
-
},
|
4197
4197
|
"frontEngravingConfiguration": (n) => {
|
4198
4198
|
productSearchModel.frontEngravingConfiguration = n.getObjectValue(createEngravingConfigurationSearchModelFromDiscriminatorValue);
|
4199
4199
|
},
|
@@ -5071,9 +5071,6 @@ function deserializeIntoUpsertProductRequest(upsertProductRequest = {}) {
|
|
5071
5071
|
"creationDate": (n) => {
|
5072
5072
|
upsertProductRequest.creationDate = n.getDateValue();
|
5073
5073
|
},
|
5074
|
-
"engravingPackshot": (n) => {
|
5075
|
-
upsertProductRequest.engravingPackshot = n.getStringValue();
|
5076
|
-
},
|
5077
5074
|
"frontEngravingConfiguration": (n) => {
|
5078
5075
|
upsertProductRequest.frontEngravingConfiguration = n.getObjectValue(createUpsertProductRequest_EngravingConfigurationRequestFromDiscriminatorValue);
|
5079
5076
|
},
|
@@ -5136,6 +5133,9 @@ function deserializeIntoUpsertProductRequest_colorLocalizations(upsertProductReq
|
|
5136
5133
|
}
|
5137
5134
|
function deserializeIntoUpsertProductRequest_EngravingConfigurationRequest(upsertProductRequest_EngravingConfigurationRequest = {}) {
|
5138
5135
|
return {
|
5136
|
+
"packshot": (n) => {
|
5137
|
+
upsertProductRequest_EngravingConfigurationRequest.packshot = n.getStringValue();
|
5138
|
+
},
|
5139
5139
|
"zoneHeightInPixels": (n) => {
|
5140
5140
|
upsertProductRequest_EngravingConfigurationRequest.zoneHeightInPixels = n.getNumberValue();
|
5141
5141
|
},
|
@@ -6212,6 +6212,7 @@ function serializeDownloadIntranetPaymentSheetRequest_MergePaymentInfo(writer, d
|
|
6212
6212
|
}
|
6213
6213
|
function serializeEngravingConfigurationSearchModel(writer, engravingConfigurationSearchModel = {}) {
|
6214
6214
|
if (engravingConfigurationSearchModel) {
|
6215
|
+
writer.writeStringValue("packshot", engravingConfigurationSearchModel.packshot);
|
6215
6216
|
writer.writeNumberValue("zoneHeightInPixels", engravingConfigurationSearchModel.zoneHeightInPixels);
|
6216
6217
|
writer.writeNumberValue("zoneWidthInPixels", engravingConfigurationSearchModel.zoneWidthInPixels);
|
6217
6218
|
}
|
@@ -6765,7 +6766,6 @@ function serializeProductSearchModel(writer, productSearchModel = {}) {
|
|
6765
6766
|
writer.writeObjectValue("color", productSearchModel.color, serializeProductColorSearchModel);
|
6766
6767
|
writer.writeNumberValue("creation_date", productSearchModel.creationDate);
|
6767
6768
|
writer.writeStringValue("description", productSearchModel.description);
|
6768
|
-
writer.writeStringValue("engravingPackshot", productSearchModel.engravingPackshot);
|
6769
6769
|
writer.writeObjectValue("frontEngravingConfiguration", productSearchModel.frontEngravingConfiguration, serializeEngravingConfigurationSearchModel);
|
6770
6770
|
writer.writeObjectValue("gender", productSearchModel.gender, serializeProductGenderSearchModel);
|
6771
6771
|
writer.writeBooleanValue("hasEngraving", productSearchModel.hasEngraving);
|
@@ -7173,7 +7173,6 @@ function serializeUpsertProductRequest(writer, upsertProductRequest = {}) {
|
|
7173
7173
|
writer.writeObjectValue("categoryLocalizations", upsertProductRequest.categoryLocalizations, serializeUpsertProductRequest_categoryLocalizations);
|
7174
7174
|
writer.writeObjectValue("colorLocalizations", upsertProductRequest.colorLocalizations, serializeUpsertProductRequest_colorLocalizations);
|
7175
7175
|
writer.writeDateValue("creationDate", upsertProductRequest.creationDate);
|
7176
|
-
writer.writeStringValue("engravingPackshot", upsertProductRequest.engravingPackshot);
|
7177
7176
|
writer.writeObjectValue("frontEngravingConfiguration", upsertProductRequest.frontEngravingConfiguration, serializeUpsertProductRequest_EngravingConfigurationRequest);
|
7178
7177
|
writer.writeObjectValue("genderLocalizations", upsertProductRequest.genderLocalizations, serializeUpsertProductRequest_genderLocalizations);
|
7179
7178
|
writer.writeStringValue("imageHover", upsertProductRequest.imageHover);
|
@@ -7208,6 +7207,7 @@ function serializeUpsertProductRequest_colorLocalizations(writer, upsertProductR
|
|
7208
7207
|
}
|
7209
7208
|
function serializeUpsertProductRequest_EngravingConfigurationRequest(writer, upsertProductRequest_EngravingConfigurationRequest = {}) {
|
7210
7209
|
if (upsertProductRequest_EngravingConfigurationRequest) {
|
7210
|
+
writer.writeStringValue("packshot", upsertProductRequest_EngravingConfigurationRequest.packshot);
|
7211
7211
|
writer.writeNumberValue("zoneHeightInPixels", upsertProductRequest_EngravingConfigurationRequest.zoneHeightInPixels);
|
7212
7212
|
writer.writeNumberValue("zoneWidthInPixels", upsertProductRequest_EngravingConfigurationRequest.zoneWidthInPixels);
|
7213
7213
|
}
|