@victoria-company/agora-client 1.0.202508190938 → 1.0.202508191426

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
@@ -33,6 +33,7 @@ __export(index_exports, {
33
33
  ClubActionTypeEnumObject: () => ClubActionTypeEnumObject,
34
34
  ClubStatusObject: () => ClubStatusObject,
35
35
  DelegatePaymentMethodObject: () => DelegatePaymentMethodObject,
36
+ DelegateRoleObject: () => DelegateRoleObject,
36
37
  DeliveryTypeObject: () => DeliveryTypeObject,
37
38
  DemoLifeCycleStatusObject: () => DemoLifeCycleStatusObject,
38
39
  DemoNotificationLevelObject: () => DemoNotificationLevelObject,
@@ -2658,6 +2659,9 @@ function deserializeIntoDelegateResponse(delegateResponse = {}) {
2658
2659
  "profileImage": (n) => {
2659
2660
  delegateResponse.profileImage = n.getStringValue();
2660
2661
  },
2662
+ "role": (n) => {
2663
+ delegateResponse.role = n.getEnumValue(DelegateRoleObject);
2664
+ },
2661
2665
  "zipCode": (n) => {
2662
2666
  delegateResponse.zipCode = n.getStringValue();
2663
2667
  }
@@ -6050,6 +6054,7 @@ function serializeDelegateResponse(writer, delegateResponse = {}) {
6050
6054
  writer.writeStringValue("mobile", delegateResponse.mobile);
6051
6055
  writer.writeEnumValue("myVictoriaCertification", delegateResponse.myVictoriaCertification);
6052
6056
  writer.writeStringValue("profileImage", delegateResponse.profileImage);
6057
+ writer.writeEnumValue("role", delegateResponse.role);
6053
6058
  writer.writeStringValue("zipCode", delegateResponse.zipCode);
6054
6059
  }
6055
6060
  }
@@ -7537,6 +7542,12 @@ var DelegatePaymentMethodObject = {
7537
7542
  Card: "Card",
7538
7543
  Other: "Other"
7539
7544
  };
7545
+ var DelegateRoleObject = {
7546
+ Delegate: "Delegate",
7547
+ GroupLeader: "GroupLeader",
7548
+ SectorManager: "SectorManager",
7549
+ Company: "Company"
7550
+ };
7540
7551
  var DeliveryTypeObject = {
7541
7552
  ToCustomer: "ToCustomer",
7542
7553
  ToDelegate: "ToDelegate"
@@ -11722,6 +11733,7 @@ var AgoraClientNavigationMetadata = {
11722
11733
  ClubActionTypeEnumObject,
11723
11734
  ClubStatusObject,
11724
11735
  DelegatePaymentMethodObject,
11736
+ DelegateRoleObject,
11725
11737
  DeliveryTypeObject,
11726
11738
  DemoLifeCycleStatusObject,
11727
11739
  DemoNotificationLevelObject,