@victoria-company/agora-client 1.0.202511121348 → 1.0.202511141040
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.d.cts
CHANGED
|
@@ -247,6 +247,10 @@ interface BecomingHostessRequest extends Parsable {
|
|
|
247
247
|
* The firstName property
|
|
248
248
|
*/
|
|
249
249
|
firstName?: string | null;
|
|
250
|
+
/**
|
|
251
|
+
* The fromWorkshop property
|
|
252
|
+
*/
|
|
253
|
+
fromWorkshop?: boolean | null;
|
|
250
254
|
/**
|
|
251
255
|
* The interestedInNewsletter property
|
|
252
256
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -247,6 +247,10 @@ interface BecomingHostessRequest extends Parsable {
|
|
|
247
247
|
* The firstName property
|
|
248
248
|
*/
|
|
249
249
|
firstName?: string | null;
|
|
250
|
+
/**
|
|
251
|
+
* The fromWorkshop property
|
|
252
|
+
*/
|
|
253
|
+
fromWorkshop?: boolean | null;
|
|
250
254
|
/**
|
|
251
255
|
* The interestedInNewsletter property
|
|
252
256
|
*/
|
package/dist/index.js
CHANGED
|
@@ -883,6 +883,9 @@ function deserializeIntoBecomingHostessRequest(becomingHostessRequest = {}) {
|
|
|
883
883
|
"firstName": (n) => {
|
|
884
884
|
becomingHostessRequest.firstName = n.getStringValue();
|
|
885
885
|
},
|
|
886
|
+
"fromWorkshop": (n) => {
|
|
887
|
+
becomingHostessRequest.fromWorkshop = n.getBooleanValue();
|
|
888
|
+
},
|
|
886
889
|
"interestedInNewsletter": (n) => {
|
|
887
890
|
becomingHostessRequest.interestedInNewsletter = n.getBooleanValue();
|
|
888
891
|
},
|
|
@@ -5042,6 +5045,7 @@ function serializeBecomingHostessRequest(writer, becomingHostessRequest = {}) {
|
|
|
5042
5045
|
writer.writeStringValue("delegateId", becomingHostessRequest.delegateId);
|
|
5043
5046
|
writer.writeStringValue("email", becomingHostessRequest.email);
|
|
5044
5047
|
writer.writeStringValue("firstName", becomingHostessRequest.firstName);
|
|
5048
|
+
writer.writeBooleanValue("fromWorkshop", becomingHostessRequest.fromWorkshop);
|
|
5045
5049
|
writer.writeBooleanValue("interestedInNewsletter", becomingHostessRequest.interestedInNewsletter);
|
|
5046
5050
|
writer.writeStringValue("languageCode", becomingHostessRequest.languageCode);
|
|
5047
5051
|
writer.writeStringValue("lastName", becomingHostessRequest.lastName);
|