@lcdp/api-react-rest-client 3.0.10 → 3.0.11

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.
@@ -31,6 +31,7 @@ export interface GetUsersRequest {
31
31
  roleNeq?: Array<UserRole>;
32
32
  gCo?: number;
33
33
  tagsCo?: Array<string>;
34
+ tagsNco?: Array<string>;
34
35
  hmeEq?: boolean;
35
36
  kyclEq?: KycLevel;
36
37
  orderBy?: GetUsersOrderByEnum;
@@ -515,6 +515,9 @@ var SearchUserApi = /** @class */ (function (_super) {
515
515
  if (requestParameters['tagsCo'] != null) {
516
516
  queryParameters['tags[co]'] = requestParameters['tagsCo'];
517
517
  }
518
+ if (requestParameters['tagsNco'] != null) {
519
+ queryParameters['tags[nco]'] = requestParameters['tagsNco'];
520
+ }
518
521
  if (requestParameters['hmeEq'] != null) {
519
522
  queryParameters['hme[eq]'] = requestParameters['hmeEq'];
520
523
  }