@victoria-company/agora-client 1.0.202505270837 → 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.
@@ -2012,6 +2012,10 @@ export declare function createMergeCartRequestFromDiscriminatorValue(parseNode:
2012
2012
  */
2013
2013
  export declare function createMergeCartResponseFromDiscriminatorValue(parseNode: ParseNode | undefined): ((instance?: Parsable) => Record<string, (node: ParseNode) => void>);
2014
2014
  export interface CreateMobileValidationRequest extends Parsable {
2015
+ /**
2016
+ * The language property
2017
+ */
2018
+ language?: string | null;
2015
2019
  /**
2016
2020
  * The phoneNumber property
2017
2021
  */
@@ -2910,6 +2910,7 @@ exports.deserializeIntoCreateGdprRequest = deserializeIntoCreateGdprRequest;
2910
2910
  // @ts-ignore
2911
2911
  function deserializeIntoCreateMobileValidationRequest(createMobileValidationRequest = {}) {
2912
2912
  return {
2913
+ "language": n => { createMobileValidationRequest.language = n.getStringValue(); },
2913
2914
  "phoneNumber": n => { createMobileValidationRequest.phoneNumber = n.getStringValue(); },
2914
2915
  };
2915
2916
  }
@@ -6063,6 +6064,7 @@ exports.serializeCreateGdprRequest = serializeCreateGdprRequest;
6063
6064
  // @ts-ignore
6064
6065
  function serializeCreateMobileValidationRequest(writer, createMobileValidationRequest = {}) {
6065
6066
  if (createMobileValidationRequest) {
6067
+ writer.writeStringValue("language", createMobileValidationRequest.language);
6066
6068
  writer.writeStringValue("phoneNumber", createMobileValidationRequest.phoneNumber);
6067
6069
  }
6068
6070
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@victoria-company/agora-client",
3
- "version": "1.0.202505270837",
3
+ "version": "1.0.202505281431",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",