@saritasa/renewaire-frontend-sdk 0.116.3 → 0.117.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.
Files changed (3) hide show
  1. package/README.md +2 -2
  2. package/index.d.ts +16 -16
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
- # @@saritasa/renewaire-frontend-sdk@0.116.3
1
+ # @@saritasa/renewaire-frontend-sdk@0.117.0
2
2
 
3
3
  ```bash
4
- npm install @saritasa/renewaire-frontend-sdk@0.116.3 --save
4
+ npm install @saritasa/renewaire-frontend-sdk@0.117.0 --save
5
5
  ```
package/index.d.ts CHANGED
@@ -780,7 +780,7 @@ interface ControllerProgramDto {
780
780
  /**
781
781
  * 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
782
782
  */
783
- createdByUser: IdNameDto;
783
+ createdByUser: IdNameDto | null;
784
784
  /**
785
785
  * Notes.
786
786
  */
@@ -2499,7 +2499,7 @@ interface RepSalesReportDto {
2499
2499
  /**
2500
2500
  * REP territory code.<br />Required permissions: SystemAdmin | ViewRepTerritories
2501
2501
  */
2502
- repTerritoryCode: string;
2502
+ repTerritoryCode: string | null;
2503
2503
  }
2504
2504
 
2505
2505
  /**
@@ -2630,19 +2630,19 @@ interface RepTerritoryDto {
2630
2630
  /**
2631
2631
  * <br />Required permissions: SystemAdmin | ViewStateProvinces
2632
2632
  */
2633
- locations: Array<IdNameDto>;
2633
+ locations: Array<IdNameDto> | null;
2634
2634
  /**
2635
2635
  * <br />Required permissions: SystemAdmin | ViewAllGroups
2636
2636
  */
2637
- groups: Array<IdNameDto>;
2637
+ groups: Array<IdNameDto> | null;
2638
2638
  /**
2639
2639
  * <br />Required permissions: SystemAdmin | ViewRepContacts
2640
2640
  */
2641
- contacts: Array<IdNameDto>;
2641
+ contacts: Array<IdNameDto> | null;
2642
2642
  /**
2643
2643
  * <br />Required permissions: SystemAdmin | ViewAllUsers
2644
2644
  */
2645
- salesContacts: Array<SalesContactDto>;
2645
+ salesContacts: Array<SalesContactDto> | null;
2646
2646
  /**
2647
2647
  * Is active.
2648
2648
  */
@@ -2654,15 +2654,15 @@ interface RepTerritoryDto {
2654
2654
  /**
2655
2655
  * 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 | ViewRsdRegions
2656
2656
  */
2657
- rsdRegion: IdNameDto;
2658
- /**
2659
- * RSD region picture URL.<br />Required permissions: SystemAdmin | ViewRsdRegions
2660
- */
2661
- rsdRegionPictureUrl: string;
2657
+ rsdRegion: IdNameDto | null;
2662
2658
  /**
2663
2659
  * 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
2664
2660
  */
2665
2661
  managerGroup?: IdNameDto | null;
2662
+ /**
2663
+ * RSD region picture URL.<br />Required permissions: SystemAdmin | ViewRsdRegions
2664
+ */
2665
+ rsdRegionPictureUrl?: string | null;
2666
2666
  }
2667
2667
 
2668
2668
  /**
@@ -2690,7 +2690,7 @@ interface RepTerritoryLocationDto {
2690
2690
  /**
2691
2691
  * 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
2692
2692
  */
2693
- repTerritory: IdNameDto;
2693
+ repTerritory: IdNameDto | null;
2694
2694
  /**
2695
2695
  * Is for all counties. Can be applied only for state level.
2696
2696
  */
@@ -2698,7 +2698,7 @@ interface RepTerritoryLocationDto {
2698
2698
  /**
2699
2699
  * 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 | ViewRsdRegions
2700
2700
  */
2701
- rsdRegion: IdNameDto;
2701
+ rsdRegion: IdNameDto | null;
2702
2702
  /**
2703
2703
  * Country.
2704
2704
  */
@@ -2738,7 +2738,7 @@ interface RepTerritoryRepContactDto {
2738
2738
  /**
2739
2739
  * 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
2740
2740
  */
2741
- repTerritory: IdNameDto;
2741
+ repTerritory: IdNameDto | null;
2742
2742
  /**
2743
2743
  * Header label.
2744
2744
  */
@@ -3047,11 +3047,11 @@ interface RsdRegionDto {
3047
3047
  /**
3048
3048
  * <br />Required permissions: SystemAdmin | ViewAllUsers
3049
3049
  */
3050
- rsdUsers: Array<RsdRegionUserDto>;
3050
+ rsdUsers: Array<RsdRegionUserDto> | null;
3051
3051
  /**
3052
3052
  * <br />Required permissions: SystemAdmin | ViewRepTerritories
3053
3053
  */
3054
- repTerritories: Array<RsdRegionRepTerritoryDto>;
3054
+ repTerritories: Array<RsdRegionRepTerritoryDto> | null;
3055
3055
  /**
3056
3056
  * List of the related documents.
3057
3057
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saritasa/renewaire-frontend-sdk",
3
- "version": "0.116.3",
4
- "description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.116.3+87f4b63f1dc9af6f3a16456774ad8542a3096d21)",
3
+ "version": "0.117.0",
4
+ "description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.117.0+40f44def906bee31cd3f166322fcc2c7b3085419)",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
7
7
  "type": "git",