@victoria-company/agora-client 1.0.202501080851 → 1.0.202501080929

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.
@@ -2328,6 +2328,10 @@ export interface DelegateLookupResponse extends Parsable {
2328
2328
  * The countryCode property
2329
2329
  */
2330
2330
  countryCode?: string | null;
2331
+ /**
2332
+ * The delegateCode property
2333
+ */
2334
+ delegateCode?: string | null;
2331
2335
  /**
2332
2336
  * The delegateId property
2333
2337
  */
@@ -2690,6 +2690,7 @@ function deserializeIntoDelegateLookupResponse(delegateLookupResponse = {}) {
2690
2690
  "affiliateStatus": n => { delegateLookupResponse.affiliateStatus = n.getNumberValue(); },
2691
2691
  "city": n => { delegateLookupResponse.city = n.getStringValue(); },
2692
2692
  "countryCode": n => { delegateLookupResponse.countryCode = n.getStringValue(); },
2693
+ "delegateCode": n => { delegateLookupResponse.delegateCode = n.getStringValue(); },
2693
2694
  "delegateId": n => { delegateLookupResponse.delegateId = n.getStringValue(); },
2694
2695
  "displayName": n => { delegateLookupResponse.displayName = n.getStringValue(); },
2695
2696
  "email": n => { delegateLookupResponse.email = n.getStringValue(); },
@@ -5419,6 +5420,7 @@ function serializeDelegateLookupResponse(writer, delegateLookupResponse = {}) {
5419
5420
  writer.writeNumberValue("affiliateStatus", delegateLookupResponse.affiliateStatus);
5420
5421
  writer.writeStringValue("city", delegateLookupResponse.city);
5421
5422
  writer.writeStringValue("countryCode", delegateLookupResponse.countryCode);
5423
+ writer.writeStringValue("delegateCode", delegateLookupResponse.delegateCode);
5422
5424
  writer.writeStringValue("delegateId", delegateLookupResponse.delegateId);
5423
5425
  writer.writeStringValue("displayName", delegateLookupResponse.displayName);
5424
5426
  writer.writeStringValue("email", delegateLookupResponse.email);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@victoria-company/agora-client",
3
- "version": "1.0.202501080851",
3
+ "version": "1.0.202501080929",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",