@victoria-company/agora-client 1.0.202505261321 → 1.0.202505270837
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/models/index.d.ts +4 -0
- package/dist/models/index.js +2 -0
- package/package.json +1 -1
package/dist/models/index.d.ts
CHANGED
@@ -1362,6 +1362,10 @@ export interface CreateDelegateLeadRequest extends Parsable {
|
|
1362
1362
|
* The locality property
|
1363
1363
|
*/
|
1364
1364
|
locality?: string | null;
|
1365
|
+
/**
|
1366
|
+
* The mobileValidationId property
|
1367
|
+
*/
|
1368
|
+
mobileValidationId?: string | null;
|
1365
1369
|
/**
|
1366
1370
|
* The optin property
|
1367
1371
|
*/
|
package/dist/models/index.js
CHANGED
@@ -2807,6 +2807,7 @@ function deserializeIntoCreateDelegateLeadRequest(createDelegateLeadRequest = {}
|
|
2807
2807
|
"lastLinkType": n => { createDelegateLeadRequest.lastLinkType = n.getStringValue(); },
|
2808
2808
|
"lastName": n => { createDelegateLeadRequest.lastName = n.getStringValue(); },
|
2809
2809
|
"locality": n => { createDelegateLeadRequest.locality = n.getStringValue(); },
|
2810
|
+
"mobileValidationId": n => { createDelegateLeadRequest.mobileValidationId = n.getStringValue(); },
|
2810
2811
|
"optin": n => { createDelegateLeadRequest.optin = n.getBooleanValue(); },
|
2811
2812
|
"phone": n => { createDelegateLeadRequest.phone = n.getStringValue(); },
|
2812
2813
|
"professionalActivity": n => { createDelegateLeadRequest.professionalActivity = n.getNumberValue(); },
|
@@ -5959,6 +5960,7 @@ function serializeCreateDelegateLeadRequest(writer, createDelegateLeadRequest =
|
|
5959
5960
|
writer.writeStringValue("lastLinkType", createDelegateLeadRequest.lastLinkType);
|
5960
5961
|
writer.writeStringValue("lastName", createDelegateLeadRequest.lastName);
|
5961
5962
|
writer.writeStringValue("locality", createDelegateLeadRequest.locality);
|
5963
|
+
writer.writeStringValue("mobileValidationId", createDelegateLeadRequest.mobileValidationId);
|
5962
5964
|
writer.writeBooleanValue("optin", createDelegateLeadRequest.optin);
|
5963
5965
|
writer.writeStringValue("phone", createDelegateLeadRequest.phone);
|
5964
5966
|
writer.writeNumberValue("professionalActivity", createDelegateLeadRequest.professionalActivity);
|