@victoria-company/agora-client 1.0.202509101143 → 1.0.202509110801

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.d.cts CHANGED
@@ -6103,10 +6103,34 @@ interface SearchUsersResponse_UserSearchResult extends Parsable {
6103
6103
  * The assignedDelegateId property
6104
6104
  */
6105
6105
  assignedDelegateId?: string | null;
6106
+ /**
6107
+ * The birthDate property
6108
+ */
6109
+ birthDate?: DateOnly | null;
6110
+ /**
6111
+ * The city property
6112
+ */
6113
+ city?: string | null;
6114
+ /**
6115
+ * The clubStatus property
6116
+ */
6117
+ clubStatus?: ClubStatus | null;
6106
6118
  /**
6107
6119
  * The contextId property
6108
6120
  */
6109
6121
  contextId?: number | null;
6122
+ /**
6123
+ * The countryCode property
6124
+ */
6125
+ countryCode?: string | null;
6126
+ /**
6127
+ * The createdAt property
6128
+ */
6129
+ createdAt?: Date | null;
6130
+ /**
6131
+ * The displayName property
6132
+ */
6133
+ displayName?: string | null;
6110
6134
  /**
6111
6135
  * The email property
6112
6136
  */
@@ -6119,6 +6143,10 @@ interface SearchUsersResponse_UserSearchResult extends Parsable {
6119
6143
  * The firstname property
6120
6144
  */
6121
6145
  firstname?: string | null;
6146
+ /**
6147
+ * The gender property
6148
+ */
6149
+ gender?: Gender | null;
6122
6150
  /**
6123
6151
  * The id property
6124
6152
  */
@@ -6127,10 +6155,30 @@ interface SearchUsersResponse_UserSearchResult extends Parsable {
6127
6155
  * The isActive property
6128
6156
  */
6129
6157
  isActive?: boolean | null;
6158
+ /**
6159
+ * The isAnonymized property
6160
+ */
6161
+ isAnonymized?: boolean | null;
6130
6162
  /**
6131
6163
  * The lastname property
6132
6164
  */
6133
6165
  lastname?: string | null;
6166
+ /**
6167
+ * The locale property
6168
+ */
6169
+ locale?: string | null;
6170
+ /**
6171
+ * The mobile property
6172
+ */
6173
+ mobile?: string | null;
6174
+ /**
6175
+ * The phone property
6176
+ */
6177
+ phone?: string | null;
6178
+ /**
6179
+ * The zipCode property
6180
+ */
6181
+ zipCode?: string | null;
6134
6182
  }
6135
6183
  interface SelectDemoHostessGiftRequest extends Parsable {
6136
6184
  /**
package/dist/index.d.ts CHANGED
@@ -6103,10 +6103,34 @@ interface SearchUsersResponse_UserSearchResult extends Parsable {
6103
6103
  * The assignedDelegateId property
6104
6104
  */
6105
6105
  assignedDelegateId?: string | null;
6106
+ /**
6107
+ * The birthDate property
6108
+ */
6109
+ birthDate?: DateOnly | null;
6110
+ /**
6111
+ * The city property
6112
+ */
6113
+ city?: string | null;
6114
+ /**
6115
+ * The clubStatus property
6116
+ */
6117
+ clubStatus?: ClubStatus | null;
6106
6118
  /**
6107
6119
  * The contextId property
6108
6120
  */
6109
6121
  contextId?: number | null;
6122
+ /**
6123
+ * The countryCode property
6124
+ */
6125
+ countryCode?: string | null;
6126
+ /**
6127
+ * The createdAt property
6128
+ */
6129
+ createdAt?: Date | null;
6130
+ /**
6131
+ * The displayName property
6132
+ */
6133
+ displayName?: string | null;
6110
6134
  /**
6111
6135
  * The email property
6112
6136
  */
@@ -6119,6 +6143,10 @@ interface SearchUsersResponse_UserSearchResult extends Parsable {
6119
6143
  * The firstname property
6120
6144
  */
6121
6145
  firstname?: string | null;
6146
+ /**
6147
+ * The gender property
6148
+ */
6149
+ gender?: Gender | null;
6122
6150
  /**
6123
6151
  * The id property
6124
6152
  */
@@ -6127,10 +6155,30 @@ interface SearchUsersResponse_UserSearchResult extends Parsable {
6127
6155
  * The isActive property
6128
6156
  */
6129
6157
  isActive?: boolean | null;
6158
+ /**
6159
+ * The isAnonymized property
6160
+ */
6161
+ isAnonymized?: boolean | null;
6130
6162
  /**
6131
6163
  * The lastname property
6132
6164
  */
6133
6165
  lastname?: string | null;
6166
+ /**
6167
+ * The locale property
6168
+ */
6169
+ locale?: string | null;
6170
+ /**
6171
+ * The mobile property
6172
+ */
6173
+ mobile?: string | null;
6174
+ /**
6175
+ * The phone property
6176
+ */
6177
+ phone?: string | null;
6178
+ /**
6179
+ * The zipCode property
6180
+ */
6181
+ zipCode?: string | null;
6134
6182
  }
6135
6183
  interface SelectDemoHostessGiftRequest extends Parsable {
6136
6184
  /**
package/dist/index.js CHANGED
@@ -3751,9 +3751,27 @@ function deserializeIntoSearchUsersResponse_UserSearchResult(searchUsersResponse
3751
3751
  "assignedDelegateId": (n) => {
3752
3752
  searchUsersResponse_UserSearchResult.assignedDelegateId = n.getStringValue();
3753
3753
  },
3754
+ "birthDate": (n) => {
3755
+ searchUsersResponse_UserSearchResult.birthDate = n.getDateOnlyValue();
3756
+ },
3757
+ "city": (n) => {
3758
+ searchUsersResponse_UserSearchResult.city = n.getStringValue();
3759
+ },
3760
+ "clubStatus": (n) => {
3761
+ searchUsersResponse_UserSearchResult.clubStatus = n.getEnumValue(ClubStatusObject);
3762
+ },
3754
3763
  "contextId": (n) => {
3755
3764
  searchUsersResponse_UserSearchResult.contextId = n.getNumberValue();
3756
3765
  },
3766
+ "countryCode": (n) => {
3767
+ searchUsersResponse_UserSearchResult.countryCode = n.getStringValue();
3768
+ },
3769
+ "createdAt": (n) => {
3770
+ searchUsersResponse_UserSearchResult.createdAt = n.getDateValue();
3771
+ },
3772
+ "displayName": (n) => {
3773
+ searchUsersResponse_UserSearchResult.displayName = n.getStringValue();
3774
+ },
3757
3775
  "email": (n) => {
3758
3776
  searchUsersResponse_UserSearchResult.email = n.getStringValue();
3759
3777
  },
@@ -3763,14 +3781,32 @@ function deserializeIntoSearchUsersResponse_UserSearchResult(searchUsersResponse
3763
3781
  "firstname": (n) => {
3764
3782
  searchUsersResponse_UserSearchResult.firstname = n.getStringValue();
3765
3783
  },
3784
+ "gender": (n) => {
3785
+ searchUsersResponse_UserSearchResult.gender = n.getEnumValue(GenderObject);
3786
+ },
3766
3787
  "id": (n) => {
3767
3788
  searchUsersResponse_UserSearchResult.id = n.getStringValue();
3768
3789
  },
3769
3790
  "isActive": (n) => {
3770
3791
  searchUsersResponse_UserSearchResult.isActive = n.getBooleanValue();
3771
3792
  },
3793
+ "isAnonymized": (n) => {
3794
+ searchUsersResponse_UserSearchResult.isAnonymized = n.getBooleanValue();
3795
+ },
3772
3796
  "lastname": (n) => {
3773
3797
  searchUsersResponse_UserSearchResult.lastname = n.getStringValue();
3798
+ },
3799
+ "locale": (n) => {
3800
+ searchUsersResponse_UserSearchResult.locale = n.getStringValue();
3801
+ },
3802
+ "mobile": (n) => {
3803
+ searchUsersResponse_UserSearchResult.mobile = n.getStringValue();
3804
+ },
3805
+ "phone": (n) => {
3806
+ searchUsersResponse_UserSearchResult.phone = n.getStringValue();
3807
+ },
3808
+ "zipCode": (n) => {
3809
+ searchUsersResponse_UserSearchResult.zipCode = n.getStringValue();
3774
3810
  }
3775
3811
  };
3776
3812
  }
@@ -6287,13 +6323,25 @@ function serializeSearchUsersResponse_UserSearchResult(writer, searchUsersRespon
6287
6323
  if (searchUsersResponse_UserSearchResult) {
6288
6324
  writer.writeStringValue("assignedDelegateFullname", searchUsersResponse_UserSearchResult.assignedDelegateFullname);
6289
6325
  writer.writeStringValue("assignedDelegateId", searchUsersResponse_UserSearchResult.assignedDelegateId);
6326
+ writer.writeDateOnlyValue("birthDate", searchUsersResponse_UserSearchResult.birthDate);
6327
+ writer.writeStringValue("city", searchUsersResponse_UserSearchResult.city);
6328
+ writer.writeEnumValue("clubStatus", searchUsersResponse_UserSearchResult.clubStatus);
6290
6329
  writer.writeNumberValue("contextId", searchUsersResponse_UserSearchResult.contextId);
6330
+ writer.writeStringValue("countryCode", searchUsersResponse_UserSearchResult.countryCode);
6331
+ writer.writeDateValue("createdAt", searchUsersResponse_UserSearchResult.createdAt);
6332
+ writer.writeStringValue("displayName", searchUsersResponse_UserSearchResult.displayName);
6291
6333
  writer.writeStringValue("email", searchUsersResponse_UserSearchResult.email);
6292
6334
  writer.writeNumberValue("externalId", searchUsersResponse_UserSearchResult.externalId);
6293
6335
  writer.writeStringValue("firstname", searchUsersResponse_UserSearchResult.firstname);
6336
+ writer.writeEnumValue("gender", searchUsersResponse_UserSearchResult.gender);
6294
6337
  writer.writeStringValue("id", searchUsersResponse_UserSearchResult.id);
6295
6338
  writer.writeBooleanValue("isActive", searchUsersResponse_UserSearchResult.isActive);
6339
+ writer.writeBooleanValue("isAnonymized", searchUsersResponse_UserSearchResult.isAnonymized);
6296
6340
  writer.writeStringValue("lastname", searchUsersResponse_UserSearchResult.lastname);
6341
+ writer.writeStringValue("locale", searchUsersResponse_UserSearchResult.locale);
6342
+ writer.writeStringValue("mobile", searchUsersResponse_UserSearchResult.mobile);
6343
+ writer.writeStringValue("phone", searchUsersResponse_UserSearchResult.phone);
6344
+ writer.writeStringValue("zipCode", searchUsersResponse_UserSearchResult.zipCode);
6297
6345
  }
6298
6346
  }
6299
6347
  function serializeSelectDemoHostessGiftRequest(writer, selectDemoHostessGiftRequest = {}) {