@saritasa/renewaire-frontend-sdk 0.93.0 → 0.95.0

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/index.d.ts CHANGED
@@ -777,7 +777,7 @@ interface ControllerProgramDto {
777
777
  */
778
778
  createdAt: string;
779
779
  /**
780
- * Represents a data transfer object containing an identifier and a name. It is intended to be used in simple dropdown lists or in table views where we need to display a link to the object.
780
+ * Represents a data transfer object containing an identifier and a name. It is intended to be used in simple dropdown lists or in table views where we need to display a link to the object.<br />Required permissions: SystemAdmin | ViewAllUsers
781
781
  */
782
782
  createdByUser: IdNameDto;
783
783
  /**
@@ -2171,7 +2171,7 @@ interface RepTerritoryDto {
2171
2171
  */
2172
2172
  contacts: Array<IdNameDto>;
2173
2173
  /**
2174
- * Sales contacts. This is the default sales contact users assigned to new users.
2174
+ * <br />Required permissions: SystemAdmin | ViewAllUsers
2175
2175
  */
2176
2176
  salesContacts: Array<SalesContactDto>;
2177
2177
  /**
@@ -2529,7 +2529,7 @@ interface RsdRegionDto {
2529
2529
  */
2530
2530
  activeChangedAt: string;
2531
2531
  /**
2532
- * List of RSD users for the region.
2532
+ * <br />Required permissions: SystemAdmin | ViewAllUsers
2533
2533
  */
2534
2534
  rsdUsers: Array<RsdRegionUserDto>;
2535
2535
  /**
@@ -3325,7 +3325,7 @@ interface SearchRepTerritoryDto {
3325
3325
  */
3326
3326
  contacts?: Array<IdNameDto> | null;
3327
3327
  /**
3328
- * Sales contacts. This is the default sales contact users assigned to new users.
3328
+ * <br />Required permissions: SystemAdmin | ViewAllUsers
3329
3329
  */
3330
3330
  salesContacts?: Array<IdNameDto> | null;
3331
3331
  /**
@@ -3538,7 +3538,7 @@ interface SearchRsdRegionDto {
3538
3538
  */
3539
3539
  isActive?: boolean | null;
3540
3540
  /**
3541
- * List of RSD users for the region.
3541
+ * <br />Required permissions: SystemAdmin | ViewAllUsers
3542
3542
  */
3543
3543
  rsdUsers?: Array<IdNameDto> | null;
3544
3544
  /**
@@ -3632,11 +3632,11 @@ interface SearchUserDetailsDto {
3632
3632
  */
3633
3633
  groupPermissionBundleName?: string | null;
3634
3634
  /**
3635
- * Represents a data transfer object containing an identifier and a name. It is intended to be used in simple dropdown lists or in table views where we need to display a link to the object.
3635
+ * Represents a data transfer object containing an identifier and a name. It is intended to be used in simple dropdown lists or in table views where we need to display a link to the object.<br />Required permissions: SystemAdmin | ViewAllGroups
3636
3636
  */
3637
3637
  group?: IdNameDto | null;
3638
3638
  /**
3639
- * Represents a data transfer object containing an identifier and a name. It is intended to be used in simple dropdown lists or in table views where we need to display a link to the object.
3639
+ * Represents a data transfer object containing an identifier and a name. It is intended to be used in simple dropdown lists or in table views where we need to display a link to the object.<br />Required permissions: SystemAdmin | ViewRepTerritories
3640
3640
  */
3641
3641
  repTerritory?: IdNameDto | null;
3642
3642
  /**
@@ -3680,7 +3680,7 @@ interface SearchUserDetailsDto {
3680
3680
  */
3681
3681
  occupation?: string | null;
3682
3682
  /**
3683
- * Company logo URL.
3683
+ * Company logo URL.<br />Required permissions: SystemAdmin | ManageUsers
3684
3684
  */
3685
3685
  companyLogoUrl?: string | null;
3686
3686
  /**
@@ -3688,11 +3688,11 @@ interface SearchUserDetailsDto {
3688
3688
  */
3689
3689
  avatarUrl?: string | null;
3690
3690
  /**
3691
- * Language<br />0 = English<br />1 = Spanish<br />2 = French
3691
+ * Language<br />0 = English<br />1 = Spanish<br />2 = French<br />Required permissions: SystemAdmin | ManageUsers
3692
3692
  */
3693
3693
  preferredLanguage?: Language | null;
3694
3694
  /**
3695
- * UnitSystem<br />0 = Imperial<br />1 = Metric
3695
+ * UnitSystem<br />0 = Imperial<br />1 = Metric<br />Required permissions: SystemAdmin | ManageUsers
3696
3696
  */
3697
3697
  preferredUnit?: UnitSystem | null;
3698
3698
  /**
@@ -3708,7 +3708,7 @@ interface SearchUserDetailsDto {
3708
3708
  */
3709
3709
  salesChannelContactUsers?: Array<IdNameDto> | null;
3710
3710
  /**
3711
- * Related to user permission bundles.
3711
+ * <br />Required permissions: SystemAdmin | ManageUsers
3712
3712
  */
3713
3713
  userPermissions?: Array<IdNameDto> | null;
3714
3714
  }
@@ -4185,7 +4185,7 @@ interface UserDetailsDto {
4185
4185
  */
4186
4186
  occupation: string;
4187
4187
  /**
4188
- * Company logo URL.
4188
+ * Company logo URL.<br />Required permissions: SystemAdmin | ManageUsers
4189
4189
  */
4190
4190
  companyLogoUrl: string;
4191
4191
  /**
@@ -4193,11 +4193,11 @@ interface UserDetailsDto {
4193
4193
  */
4194
4194
  avatarUrl: string;
4195
4195
  /**
4196
- * Languages.<br />Language<br />0 = English<br />1 = Spanish<br />2 = French
4196
+ * Languages.<br />Language<br />0 = English<br />1 = Spanish<br />2 = French<br />Required permissions: SystemAdmin | ManageUsers
4197
4197
  */
4198
4198
  preferredLanguage: Language;
4199
4199
  /**
4200
- * Unit systems.<br />UnitSystem<br />0 = Imperial<br />1 = Metric
4200
+ * Unit systems.<br />UnitSystem<br />0 = Imperial<br />1 = Metric<br />Required permissions: SystemAdmin | ManageUsers
4201
4201
  */
4202
4202
  preferredUnit: UnitSystem;
4203
4203
  /**
@@ -4209,7 +4209,7 @@ interface UserDetailsDto {
4209
4209
  */
4210
4210
  salesChannelContactUsers: Array<IdNameDto>;
4211
4211
  /**
4212
- * Related to user permission bundles.
4212
+ * <br />Required permissions: SystemAdmin | ManageUsers
4213
4213
  */
4214
4214
  userPermissions: Array<IdNameDto>;
4215
4215
  /**
@@ -4217,11 +4217,11 @@ interface UserDetailsDto {
4217
4217
  */
4218
4218
  groupPermissionBundleName?: string | null;
4219
4219
  /**
4220
- * Represents a data transfer object containing an identifier and a name. It is intended to be used in simple dropdown lists or in table views where we need to display a link to the object.
4220
+ * Represents a data transfer object containing an identifier and a name. It is intended to be used in simple dropdown lists or in table views where we need to display a link to the object.<br />Required permissions: SystemAdmin | ViewAllGroups
4221
4221
  */
4222
4222
  group?: IdNameDto | null;
4223
4223
  /**
4224
- * Represents a data transfer object containing an identifier and a name. It is intended to be used in simple dropdown lists or in table views where we need to display a link to the object.
4224
+ * Represents a data transfer object containing an identifier and a name. It is intended to be used in simple dropdown lists or in table views where we need to display a link to the object.<br />Required permissions: SystemAdmin | ViewRepTerritories
4225
4225
  */
4226
4226
  repTerritory?: IdNameDto | null;
4227
4227
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saritasa/renewaire-frontend-sdk",
3
- "version": "0.93.0",
4
- "description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.93.0+2f797c39e9b8b0a1d7b6fbc53cffb8aba39e83e1)",
3
+ "version": "0.95.0",
4
+ "description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.95.0+d325628089267f9fa7f417ddd34e8cc746945f03)",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
7
7
  "type": "git",