@victoria-company/agora-client 1.0.202506160810 → 1.0.202506171058
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
@@ -1361,6 +1361,10 @@ interface CreateDelegateLeadRequest extends Parsable {
|
|
1361
1361
|
* The firstName property
|
1362
1362
|
*/
|
1363
1363
|
firstName?: string | null;
|
1364
|
+
/**
|
1365
|
+
* The gclid property
|
1366
|
+
*/
|
1367
|
+
gclid?: string | null;
|
1364
1368
|
/**
|
1365
1369
|
* The hasACar property
|
1366
1370
|
*/
|
package/dist/index.d.ts
CHANGED
@@ -1361,6 +1361,10 @@ interface CreateDelegateLeadRequest extends Parsable {
|
|
1361
1361
|
* The firstName property
|
1362
1362
|
*/
|
1363
1363
|
firstName?: string | null;
|
1364
|
+
/**
|
1365
|
+
* The gclid property
|
1366
|
+
*/
|
1367
|
+
gclid?: string | null;
|
1364
1368
|
/**
|
1365
1369
|
* The hasACar property
|
1366
1370
|
*/
|
package/dist/index.js
CHANGED
@@ -1493,6 +1493,9 @@ function deserializeIntoCreateDelegateLeadRequest(createDelegateLeadRequest = {}
|
|
1493
1493
|
"firstName": (n) => {
|
1494
1494
|
createDelegateLeadRequest.firstName = n.getStringValue();
|
1495
1495
|
},
|
1496
|
+
"gclid": (n) => {
|
1497
|
+
createDelegateLeadRequest.gclid = n.getStringValue();
|
1498
|
+
},
|
1496
1499
|
"hasACar": (n) => {
|
1497
1500
|
createDelegateLeadRequest.hasACar = n.getBooleanValue();
|
1498
1501
|
},
|
@@ -4921,6 +4924,7 @@ function serializeCreateDelegateLeadRequest(writer, createDelegateLeadRequest =
|
|
4921
4924
|
writer.writeStringValue("email", createDelegateLeadRequest.email);
|
4922
4925
|
writer.writeStringValue("eventId", createDelegateLeadRequest.eventId);
|
4923
4926
|
writer.writeStringValue("firstName", createDelegateLeadRequest.firstName);
|
4927
|
+
writer.writeStringValue("gclid", createDelegateLeadRequest.gclid);
|
4924
4928
|
writer.writeBooleanValue("hasACar", createDelegateLeadRequest.hasACar);
|
4925
4929
|
writer.writeNumberValue("howDoYouKnowVictoria", createDelegateLeadRequest.howDoYouKnowVictoria);
|
4926
4930
|
writer.writeNumberValue("isAdult", createDelegateLeadRequest.isAdult);
|