@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 CHANGED
@@ -2201,6 +2201,9 @@ function deserializeIntoCreateDelegateLeadRequest(createDelegateLeadRequest = {}
2201
2201
  "firstName": (n) => {
2202
2202
  createDelegateLeadRequest.firstName = n.getStringValue();
2203
2203
  },
2204
+ "gclid": (n) => {
2205
+ createDelegateLeadRequest.gclid = n.getStringValue();
2206
+ },
2204
2207
  "hasACar": (n) => {
2205
2208
  createDelegateLeadRequest.hasACar = n.getBooleanValue();
2206
2209
  },
@@ -5629,6 +5632,7 @@ function serializeCreateDelegateLeadRequest(writer, createDelegateLeadRequest =
5629
5632
  writer.writeStringValue("email", createDelegateLeadRequest.email);
5630
5633
  writer.writeStringValue("eventId", createDelegateLeadRequest.eventId);
5631
5634
  writer.writeStringValue("firstName", createDelegateLeadRequest.firstName);
5635
+ writer.writeStringValue("gclid", createDelegateLeadRequest.gclid);
5632
5636
  writer.writeBooleanValue("hasACar", createDelegateLeadRequest.hasACar);
5633
5637
  writer.writeNumberValue("howDoYouKnowVictoria", createDelegateLeadRequest.howDoYouKnowVictoria);
5634
5638
  writer.writeNumberValue("isAdult", createDelegateLeadRequest.isAdult);