@victoria-company/agora-client 1.0.202511121348 → 1.0.202511170908
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 +4 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1638,6 +1638,9 @@ function deserializeIntoBecomingHostessRequest(becomingHostessRequest = {}) {
|
|
|
1638
1638
|
"firstName": (n) => {
|
|
1639
1639
|
becomingHostessRequest.firstName = n.getStringValue();
|
|
1640
1640
|
},
|
|
1641
|
+
"fromWorkshop": (n) => {
|
|
1642
|
+
becomingHostessRequest.fromWorkshop = n.getBooleanValue();
|
|
1643
|
+
},
|
|
1641
1644
|
"interestedInNewsletter": (n) => {
|
|
1642
1645
|
becomingHostessRequest.interestedInNewsletter = n.getBooleanValue();
|
|
1643
1646
|
},
|
|
@@ -5797,6 +5800,7 @@ function serializeBecomingHostessRequest(writer, becomingHostessRequest = {}) {
|
|
|
5797
5800
|
writer.writeStringValue("delegateId", becomingHostessRequest.delegateId);
|
|
5798
5801
|
writer.writeStringValue("email", becomingHostessRequest.email);
|
|
5799
5802
|
writer.writeStringValue("firstName", becomingHostessRequest.firstName);
|
|
5803
|
+
writer.writeBooleanValue("fromWorkshop", becomingHostessRequest.fromWorkshop);
|
|
5800
5804
|
writer.writeBooleanValue("interestedInNewsletter", becomingHostessRequest.interestedInNewsletter);
|
|
5801
5805
|
writer.writeStringValue("languageCode", becomingHostessRequest.languageCode);
|
|
5802
5806
|
writer.writeStringValue("lastName", becomingHostessRequest.lastName);
|