@victoria-company/agora-client 1.0.202505261321 → 1.0.202505281431

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.
@@ -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
  */
@@ -2008,6 +2012,10 @@ export declare function createMergeCartRequestFromDiscriminatorValue(parseNode:
2008
2012
  */
2009
2013
  export declare function createMergeCartResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
2010
2014
  export interface CreateMobileValidationRequest extends Parsable {
2015
+ /**
2016
+ * The language property
2017
+ */
2018
+ language?: string | null;
2011
2019
  /**
2012
2020
  * The phoneNumber property
2013
2021
  */
@@ -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(); },
@@ -2909,6 +2910,7 @@ exports.deserializeIntoCreateGdprRequest = deserializeIntoCreateGdprRequest;
2909
2910
  // @ts-ignore
2910
2911
  function deserializeIntoCreateMobileValidationRequest(createMobileValidationRequest = {}) {
2911
2912
  return {
2913
+ "language": n => { createMobileValidationRequest.language = n.getStringValue(); },
2912
2914
  "phoneNumber": n => { createMobileValidationRequest.phoneNumber = n.getStringValue(); },
2913
2915
  };
2914
2916
  }
@@ -5959,6 +5961,7 @@ function serializeCreateDelegateLeadRequest(writer, createDelegateLeadRequest =
5959
5961
  writer.writeStringValue("lastLinkType", createDelegateLeadRequest.lastLinkType);
5960
5962
  writer.writeStringValue("lastName", createDelegateLeadRequest.lastName);
5961
5963
  writer.writeStringValue("locality", createDelegateLeadRequest.locality);
5964
+ writer.writeStringValue("mobileValidationId", createDelegateLeadRequest.mobileValidationId);
5962
5965
  writer.writeBooleanValue("optin", createDelegateLeadRequest.optin);
5963
5966
  writer.writeStringValue("phone", createDelegateLeadRequest.phone);
5964
5967
  writer.writeNumberValue("professionalActivity", createDelegateLeadRequest.professionalActivity);
@@ -6061,6 +6064,7 @@ exports.serializeCreateGdprRequest = serializeCreateGdprRequest;
6061
6064
  // @ts-ignore
6062
6065
  function serializeCreateMobileValidationRequest(writer, createMobileValidationRequest = {}) {
6063
6066
  if (createMobileValidationRequest) {
6067
+ writer.writeStringValue("language", createMobileValidationRequest.language);
6064
6068
  writer.writeStringValue("phoneNumber", createMobileValidationRequest.phoneNumber);
6065
6069
  }
6066
6070
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@victoria-company/agora-client",
3
- "version": "1.0.202505261321",
3
+ "version": "1.0.202505281431",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",