@saritasa/renewaire-frontend-sdk 0.1.0-dev.341 → 0.1.0-dev.367
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
|
@@ -561,6 +561,33 @@ interface RefreshTokenCommand {
|
|
|
561
561
|
token: string;
|
|
562
562
|
}
|
|
563
563
|
|
|
564
|
+
/**
|
|
565
|
+
* RenewAire CORES API
|
|
566
|
+
*
|
|
567
|
+
* Contact: renewaire@saritasa.com
|
|
568
|
+
*
|
|
569
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
570
|
+
* https://openapi-generator.tech
|
|
571
|
+
* Do not edit the class manually.
|
|
572
|
+
*/
|
|
573
|
+
/**
|
|
574
|
+
* DTO for RenewAire.Cores.Domain.Region.
|
|
575
|
+
*/
|
|
576
|
+
interface RegionDto {
|
|
577
|
+
id: object;
|
|
578
|
+
/**
|
|
579
|
+
* RegionLevel<br />0 = Country<br />1 = State<br />2 = County
|
|
580
|
+
*/
|
|
581
|
+
level: RegionDtoLevelEnum;
|
|
582
|
+
name: string;
|
|
583
|
+
code: string;
|
|
584
|
+
}
|
|
585
|
+
declare enum RegionDtoLevelEnum {
|
|
586
|
+
Country = "Country",
|
|
587
|
+
State = "State",
|
|
588
|
+
County = "County"
|
|
589
|
+
}
|
|
590
|
+
|
|
564
591
|
/**
|
|
565
592
|
* RenewAire CORES API
|
|
566
593
|
*
|
|
@@ -665,6 +692,28 @@ interface RepTerritoryDto {
|
|
|
665
692
|
salesContacts: Array<ContactDto>;
|
|
666
693
|
}
|
|
667
694
|
|
|
695
|
+
/**
|
|
696
|
+
* RenewAire CORES API
|
|
697
|
+
*
|
|
698
|
+
* Contact: renewaire@saritasa.com
|
|
699
|
+
*
|
|
700
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
701
|
+
* https://openapi-generator.tech
|
|
702
|
+
* Do not edit the class manually.
|
|
703
|
+
*/
|
|
704
|
+
|
|
705
|
+
/**
|
|
706
|
+
* REP territory location DTO.
|
|
707
|
+
*/
|
|
708
|
+
interface RepTerritoryLocationDto {
|
|
709
|
+
id: object;
|
|
710
|
+
name: string;
|
|
711
|
+
repTerritoryId: object;
|
|
712
|
+
repTerritoryName: string;
|
|
713
|
+
allCounties: boolean;
|
|
714
|
+
regions: Array<RegionDto>;
|
|
715
|
+
}
|
|
716
|
+
|
|
668
717
|
/**
|
|
669
718
|
* RenewAire CORES API
|
|
670
719
|
*
|
|
@@ -823,6 +872,24 @@ interface SaveRepTerritoryDto {
|
|
|
823
872
|
rsdRegionId: object;
|
|
824
873
|
}
|
|
825
874
|
|
|
875
|
+
/**
|
|
876
|
+
* RenewAire CORES API
|
|
877
|
+
*
|
|
878
|
+
* Contact: renewaire@saritasa.com
|
|
879
|
+
*
|
|
880
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
881
|
+
* https://openapi-generator.tech
|
|
882
|
+
* Do not edit the class manually.
|
|
883
|
+
*/
|
|
884
|
+
/**
|
|
885
|
+
* Save REP territory location DTO.
|
|
886
|
+
*/
|
|
887
|
+
interface SaveRepTerritoryLocationDto {
|
|
888
|
+
name: string;
|
|
889
|
+
allCounties: boolean;
|
|
890
|
+
regions: Array<object>;
|
|
891
|
+
}
|
|
892
|
+
|
|
826
893
|
/**
|
|
827
894
|
* RenewAire CORES API
|
|
828
895
|
*
|
|
@@ -974,6 +1041,43 @@ interface SearchRepTerritoryDtoPagedListMetadataDto {
|
|
|
974
1041
|
items: Array<SearchRepTerritoryDto>;
|
|
975
1042
|
}
|
|
976
1043
|
|
|
1044
|
+
/**
|
|
1045
|
+
* RenewAire CORES API
|
|
1046
|
+
*
|
|
1047
|
+
* Contact: renewaire@saritasa.com
|
|
1048
|
+
*
|
|
1049
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1050
|
+
* https://openapi-generator.tech
|
|
1051
|
+
* Do not edit the class manually.
|
|
1052
|
+
*/
|
|
1053
|
+
|
|
1054
|
+
/**
|
|
1055
|
+
* Search REP territory location DTO.
|
|
1056
|
+
*/
|
|
1057
|
+
interface SearchRepTerritoryLocationDto {
|
|
1058
|
+
id: object;
|
|
1059
|
+
name: string;
|
|
1060
|
+
repTerritoryId: object;
|
|
1061
|
+
repTerritoryName: string;
|
|
1062
|
+
allCounties: boolean;
|
|
1063
|
+
regions: Array<RegionDto>;
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
/**
|
|
1067
|
+
* RenewAire CORES API
|
|
1068
|
+
*
|
|
1069
|
+
* Contact: renewaire@saritasa.com
|
|
1070
|
+
*
|
|
1071
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1072
|
+
* https://openapi-generator.tech
|
|
1073
|
+
* Do not edit the class manually.
|
|
1074
|
+
*/
|
|
1075
|
+
|
|
1076
|
+
interface SearchRepTerritoryLocationDtoPagedListMetadataDto {
|
|
1077
|
+
metadata: PagedListMetadata;
|
|
1078
|
+
items: Array<SearchRepTerritoryLocationDto>;
|
|
1079
|
+
}
|
|
1080
|
+
|
|
977
1081
|
/**
|
|
978
1082
|
* RenewAire CORES API
|
|
979
1083
|
*
|
|
@@ -1673,6 +1777,10 @@ declare class RepContactsApiService extends BaseService implements RepContactsAp
|
|
|
1673
1777
|
interface RepTerritoriesCreateRepTerritoryRequestParams {
|
|
1674
1778
|
saveRepTerritoryDto?: SaveRepTerritoryDto;
|
|
1675
1779
|
}
|
|
1780
|
+
interface RepTerritoriesCreateRepTerritoryLocationRequestParams {
|
|
1781
|
+
repTerritoryId: number;
|
|
1782
|
+
saveRepTerritoryLocationDto?: SaveRepTerritoryLocationDto;
|
|
1783
|
+
}
|
|
1676
1784
|
interface RepTerritoriesCreateRepTerritoryRepContactRequestParams {
|
|
1677
1785
|
repTerritoryId: number;
|
|
1678
1786
|
saveRepTerritoryRepContactDto?: SaveRepTerritoryRepContactDto;
|
|
@@ -1704,6 +1812,12 @@ interface RepTerritoriesApiServiceInterface {
|
|
|
1704
1812
|
* @param requestParameters
|
|
1705
1813
|
*/
|
|
1706
1814
|
repTerritoriesCreateRepTerritory(requestParameters: RepTerritoriesCreateRepTerritoryRequestParams, extraHttpRequestParams?: any): Observable<object>;
|
|
1815
|
+
/**
|
|
1816
|
+
* Create REP territory location.
|
|
1817
|
+
*
|
|
1818
|
+
* @param requestParameters
|
|
1819
|
+
*/
|
|
1820
|
+
repTerritoriesCreateRepTerritoryLocation(requestParameters: RepTerritoriesCreateRepTerritoryLocationRequestParams, extraHttpRequestParams?: any): Observable<object>;
|
|
1707
1821
|
/**
|
|
1708
1822
|
* Create REP territory REP contact.
|
|
1709
1823
|
*
|
|
@@ -1760,6 +1874,27 @@ declare class RepTerritoriesApiService extends BaseService implements RepTerrito
|
|
|
1760
1874
|
context?: HttpContext;
|
|
1761
1875
|
transferCache?: boolean;
|
|
1762
1876
|
}): Observable<HttpEvent<object>>;
|
|
1877
|
+
/**
|
|
1878
|
+
* Create REP territory location.
|
|
1879
|
+
* @param requestParameters
|
|
1880
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1881
|
+
* @param reportProgress flag to report request and response progress.
|
|
1882
|
+
*/
|
|
1883
|
+
repTerritoriesCreateRepTerritoryLocation(requestParameters: RepTerritoriesCreateRepTerritoryLocationRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
1884
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
1885
|
+
context?: HttpContext;
|
|
1886
|
+
transferCache?: boolean;
|
|
1887
|
+
}): Observable<object>;
|
|
1888
|
+
repTerritoriesCreateRepTerritoryLocation(requestParameters: RepTerritoriesCreateRepTerritoryLocationRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
1889
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
1890
|
+
context?: HttpContext;
|
|
1891
|
+
transferCache?: boolean;
|
|
1892
|
+
}): Observable<HttpResponse<object>>;
|
|
1893
|
+
repTerritoriesCreateRepTerritoryLocation(requestParameters: RepTerritoriesCreateRepTerritoryLocationRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
1894
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
1895
|
+
context?: HttpContext;
|
|
1896
|
+
transferCache?: boolean;
|
|
1897
|
+
}): Observable<HttpEvent<object>>;
|
|
1763
1898
|
/**
|
|
1764
1899
|
* Create REP territory REP contact.
|
|
1765
1900
|
* @param requestParameters
|
|
@@ -1869,6 +2004,155 @@ declare class RepTerritoriesApiService extends BaseService implements RepTerrito
|
|
|
1869
2004
|
static ɵprov: i0.ɵɵInjectableDeclaration<RepTerritoriesApiService>;
|
|
1870
2005
|
}
|
|
1871
2006
|
|
|
2007
|
+
/**
|
|
2008
|
+
* RenewAire CORES API
|
|
2009
|
+
*
|
|
2010
|
+
* Contact: renewaire@saritasa.com
|
|
2011
|
+
*
|
|
2012
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2013
|
+
* https://openapi-generator.tech
|
|
2014
|
+
* Do not edit the class manually.
|
|
2015
|
+
*/
|
|
2016
|
+
|
|
2017
|
+
interface RepTerritoryLocationsGetRepTerritoryLocationRequestParams {
|
|
2018
|
+
repTerritoryLocationId: number;
|
|
2019
|
+
}
|
|
2020
|
+
interface RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams {
|
|
2021
|
+
repTerritoryLocationId: number;
|
|
2022
|
+
}
|
|
2023
|
+
interface RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams {
|
|
2024
|
+
name?: string;
|
|
2025
|
+
repTerritoryId?: object | null;
|
|
2026
|
+
repName?: string;
|
|
2027
|
+
allCounties?: boolean;
|
|
2028
|
+
orderBy?: string;
|
|
2029
|
+
page?: number;
|
|
2030
|
+
pageSize?: number;
|
|
2031
|
+
}
|
|
2032
|
+
interface RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams {
|
|
2033
|
+
repTerritoryLocationId: number;
|
|
2034
|
+
saveRepTerritoryLocationDto?: SaveRepTerritoryLocationDto;
|
|
2035
|
+
}
|
|
2036
|
+
interface RepTerritoryLocationsApiServiceInterface {
|
|
2037
|
+
defaultHeaders: HttpHeaders;
|
|
2038
|
+
configuration: Configuration;
|
|
2039
|
+
/**
|
|
2040
|
+
* Get REP territory location.
|
|
2041
|
+
*
|
|
2042
|
+
* @param requestParameters
|
|
2043
|
+
*/
|
|
2044
|
+
repTerritoryLocationsGetRepTerritoryLocation(requestParameters: RepTerritoryLocationsGetRepTerritoryLocationRequestParams, extraHttpRequestParams?: any): Observable<RepTerritoryLocationDto>;
|
|
2045
|
+
/**
|
|
2046
|
+
* Remove REP territory location.
|
|
2047
|
+
*
|
|
2048
|
+
* @param requestParameters
|
|
2049
|
+
*/
|
|
2050
|
+
repTerritoryLocationsRemoveRepTerritoryLocation(requestParameters: RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
2051
|
+
/**
|
|
2052
|
+
* Search REP territory locations.
|
|
2053
|
+
*
|
|
2054
|
+
* @param requestParameters
|
|
2055
|
+
*/
|
|
2056
|
+
repTerritoryLocationsSearchRepTerritoryLocations(requestParameters: RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams, extraHttpRequestParams?: any): Observable<SearchRepTerritoryLocationDtoPagedListMetadataDto>;
|
|
2057
|
+
/**
|
|
2058
|
+
* Update REP territory location.
|
|
2059
|
+
*
|
|
2060
|
+
* @param requestParameters
|
|
2061
|
+
*/
|
|
2062
|
+
repTerritoryLocationsUpdateRepTerritoryLocation(requestParameters: RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams, extraHttpRequestParams?: any): Observable<{}>;
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
declare class RepTerritoryLocationsApiService extends BaseService implements RepTerritoryLocationsApiServiceInterface {
|
|
2066
|
+
protected httpClient: HttpClient;
|
|
2067
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
2068
|
+
/**
|
|
2069
|
+
* Get REP territory location.
|
|
2070
|
+
* @param requestParameters
|
|
2071
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2072
|
+
* @param reportProgress flag to report request and response progress.
|
|
2073
|
+
*/
|
|
2074
|
+
repTerritoryLocationsGetRepTerritoryLocation(requestParameters: RepTerritoryLocationsGetRepTerritoryLocationRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2075
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2076
|
+
context?: HttpContext;
|
|
2077
|
+
transferCache?: boolean;
|
|
2078
|
+
}): Observable<RepTerritoryLocationDto>;
|
|
2079
|
+
repTerritoryLocationsGetRepTerritoryLocation(requestParameters: RepTerritoryLocationsGetRepTerritoryLocationRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2080
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2081
|
+
context?: HttpContext;
|
|
2082
|
+
transferCache?: boolean;
|
|
2083
|
+
}): Observable<HttpResponse<RepTerritoryLocationDto>>;
|
|
2084
|
+
repTerritoryLocationsGetRepTerritoryLocation(requestParameters: RepTerritoryLocationsGetRepTerritoryLocationRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2085
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2086
|
+
context?: HttpContext;
|
|
2087
|
+
transferCache?: boolean;
|
|
2088
|
+
}): Observable<HttpEvent<RepTerritoryLocationDto>>;
|
|
2089
|
+
/**
|
|
2090
|
+
* Remove REP territory location.
|
|
2091
|
+
* @param requestParameters
|
|
2092
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2093
|
+
* @param reportProgress flag to report request and response progress.
|
|
2094
|
+
*/
|
|
2095
|
+
repTerritoryLocationsRemoveRepTerritoryLocation(requestParameters: RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2096
|
+
httpHeaderAccept?: undefined;
|
|
2097
|
+
context?: HttpContext;
|
|
2098
|
+
transferCache?: boolean;
|
|
2099
|
+
}): Observable<any>;
|
|
2100
|
+
repTerritoryLocationsRemoveRepTerritoryLocation(requestParameters: RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2101
|
+
httpHeaderAccept?: undefined;
|
|
2102
|
+
context?: HttpContext;
|
|
2103
|
+
transferCache?: boolean;
|
|
2104
|
+
}): Observable<HttpResponse<any>>;
|
|
2105
|
+
repTerritoryLocationsRemoveRepTerritoryLocation(requestParameters: RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2106
|
+
httpHeaderAccept?: undefined;
|
|
2107
|
+
context?: HttpContext;
|
|
2108
|
+
transferCache?: boolean;
|
|
2109
|
+
}): Observable<HttpEvent<any>>;
|
|
2110
|
+
/**
|
|
2111
|
+
* Search REP territory locations.
|
|
2112
|
+
* @param requestParameters
|
|
2113
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2114
|
+
* @param reportProgress flag to report request and response progress.
|
|
2115
|
+
*/
|
|
2116
|
+
repTerritoryLocationsSearchRepTerritoryLocations(requestParameters?: RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2117
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2118
|
+
context?: HttpContext;
|
|
2119
|
+
transferCache?: boolean;
|
|
2120
|
+
}): Observable<SearchRepTerritoryLocationDtoPagedListMetadataDto>;
|
|
2121
|
+
repTerritoryLocationsSearchRepTerritoryLocations(requestParameters?: RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2122
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2123
|
+
context?: HttpContext;
|
|
2124
|
+
transferCache?: boolean;
|
|
2125
|
+
}): Observable<HttpResponse<SearchRepTerritoryLocationDtoPagedListMetadataDto>>;
|
|
2126
|
+
repTerritoryLocationsSearchRepTerritoryLocations(requestParameters?: RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2127
|
+
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2128
|
+
context?: HttpContext;
|
|
2129
|
+
transferCache?: boolean;
|
|
2130
|
+
}): Observable<HttpEvent<SearchRepTerritoryLocationDtoPagedListMetadataDto>>;
|
|
2131
|
+
/**
|
|
2132
|
+
* Update REP territory location.
|
|
2133
|
+
* @param requestParameters
|
|
2134
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2135
|
+
* @param reportProgress flag to report request and response progress.
|
|
2136
|
+
*/
|
|
2137
|
+
repTerritoryLocationsUpdateRepTerritoryLocation(requestParameters: RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2138
|
+
httpHeaderAccept?: undefined;
|
|
2139
|
+
context?: HttpContext;
|
|
2140
|
+
transferCache?: boolean;
|
|
2141
|
+
}): Observable<any>;
|
|
2142
|
+
repTerritoryLocationsUpdateRepTerritoryLocation(requestParameters: RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2143
|
+
httpHeaderAccept?: undefined;
|
|
2144
|
+
context?: HttpContext;
|
|
2145
|
+
transferCache?: boolean;
|
|
2146
|
+
}): Observable<HttpResponse<any>>;
|
|
2147
|
+
repTerritoryLocationsUpdateRepTerritoryLocation(requestParameters: RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2148
|
+
httpHeaderAccept?: undefined;
|
|
2149
|
+
context?: HttpContext;
|
|
2150
|
+
transferCache?: boolean;
|
|
2151
|
+
}): Observable<HttpEvent<any>>;
|
|
2152
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RepTerritoryLocationsApiService, [null, { optional: true; }, { optional: true; }]>;
|
|
2153
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RepTerritoryLocationsApiService>;
|
|
2154
|
+
}
|
|
2155
|
+
|
|
1872
2156
|
/**
|
|
1873
2157
|
* RenewAire CORES API
|
|
1874
2158
|
*
|
|
@@ -2063,7 +2347,7 @@ interface UsersConfirmEmailRequestParams {
|
|
|
2063
2347
|
interface UsersForgotPasswordRequestParams {
|
|
2064
2348
|
forgotPasswordCommand?: ForgotPasswordCommand;
|
|
2065
2349
|
}
|
|
2066
|
-
interface
|
|
2350
|
+
interface UsersGetRepContactsRequestParams {
|
|
2067
2351
|
userId: number;
|
|
2068
2352
|
}
|
|
2069
2353
|
interface UsersRegisterUserRequestParams {
|
|
@@ -2094,13 +2378,13 @@ interface UsersApiServiceInterface {
|
|
|
2094
2378
|
* Get current user REP contacts.
|
|
2095
2379
|
*
|
|
2096
2380
|
*/
|
|
2097
|
-
|
|
2381
|
+
usersGetCurrentRepContacts(extraHttpRequestParams?: any): Observable<RepTerritoryContactsDto>;
|
|
2098
2382
|
/**
|
|
2099
2383
|
* Get user REP contacts.
|
|
2100
2384
|
*
|
|
2101
2385
|
* @param requestParameters
|
|
2102
2386
|
*/
|
|
2103
|
-
|
|
2387
|
+
usersGetRepContacts(requestParameters: UsersGetRepContactsRequestParams, extraHttpRequestParams?: any): Observable<RepTerritoryContactsDto>;
|
|
2104
2388
|
/**
|
|
2105
2389
|
* Register user.
|
|
2106
2390
|
*
|
|
@@ -2171,17 +2455,17 @@ declare class UsersApiService extends BaseService implements UsersApiServiceInte
|
|
|
2171
2455
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2172
2456
|
* @param reportProgress flag to report request and response progress.
|
|
2173
2457
|
*/
|
|
2174
|
-
|
|
2458
|
+
usersGetCurrentRepContacts(observe?: "body", reportProgress?: boolean, options?: {
|
|
2175
2459
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2176
2460
|
context?: HttpContext;
|
|
2177
2461
|
transferCache?: boolean;
|
|
2178
2462
|
}): Observable<RepTerritoryContactsDto>;
|
|
2179
|
-
|
|
2463
|
+
usersGetCurrentRepContacts(observe?: "response", reportProgress?: boolean, options?: {
|
|
2180
2464
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2181
2465
|
context?: HttpContext;
|
|
2182
2466
|
transferCache?: boolean;
|
|
2183
2467
|
}): Observable<HttpResponse<RepTerritoryContactsDto>>;
|
|
2184
|
-
|
|
2468
|
+
usersGetCurrentRepContacts(observe?: "events", reportProgress?: boolean, options?: {
|
|
2185
2469
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2186
2470
|
context?: HttpContext;
|
|
2187
2471
|
transferCache?: boolean;
|
|
@@ -2192,17 +2476,17 @@ declare class UsersApiService extends BaseService implements UsersApiServiceInte
|
|
|
2192
2476
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2193
2477
|
* @param reportProgress flag to report request and response progress.
|
|
2194
2478
|
*/
|
|
2195
|
-
|
|
2479
|
+
usersGetRepContacts(requestParameters: UsersGetRepContactsRequestParams, observe?: "body", reportProgress?: boolean, options?: {
|
|
2196
2480
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2197
2481
|
context?: HttpContext;
|
|
2198
2482
|
transferCache?: boolean;
|
|
2199
2483
|
}): Observable<RepTerritoryContactsDto>;
|
|
2200
|
-
|
|
2484
|
+
usersGetRepContacts(requestParameters: UsersGetRepContactsRequestParams, observe?: "response", reportProgress?: boolean, options?: {
|
|
2201
2485
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2202
2486
|
context?: HttpContext;
|
|
2203
2487
|
transferCache?: boolean;
|
|
2204
2488
|
}): Observable<HttpResponse<RepTerritoryContactsDto>>;
|
|
2205
|
-
|
|
2489
|
+
usersGetRepContacts(requestParameters: UsersGetRepContactsRequestParams, observe?: "events", reportProgress?: boolean, options?: {
|
|
2206
2490
|
httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
|
|
2207
2491
|
context?: HttpContext;
|
|
2208
2492
|
transferCache?: boolean;
|
|
@@ -2274,7 +2558,7 @@ declare class UsersApiService extends BaseService implements UsersApiServiceInte
|
|
|
2274
2558
|
static ɵprov: i0.ɵɵInjectableDeclaration<UsersApiService>;
|
|
2275
2559
|
}
|
|
2276
2560
|
|
|
2277
|
-
declare const APIS: (typeof AuthApiService | typeof PermissionBundlesApiService | typeof PermissionsApiService | typeof RegionsApiService | typeof RepContactsApiService | typeof RepTerritoriesApiService | typeof RsdRegionsApiService | typeof UsersApiService)[];
|
|
2561
|
+
declare const APIS: (typeof AuthApiService | typeof PermissionBundlesApiService | typeof PermissionsApiService | typeof RegionsApiService | typeof RepContactsApiService | typeof RepTerritoriesApiService | typeof RepTerritoryLocationsApiService | typeof RsdRegionsApiService | typeof UsersApiService)[];
|
|
2278
2562
|
|
|
2279
2563
|
declare const BASE_PATH: InjectionToken<string>;
|
|
2280
2564
|
declare const COLLECTION_FORMATS: {
|
|
@@ -2294,5 +2578,5 @@ declare class ApiModule {
|
|
|
2294
2578
|
|
|
2295
2579
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
2296
2580
|
|
|
2297
|
-
export { APIS, AddressCountry, AddressDtoCountryEnum, ApiModule, AuthApiService, BASE_PATH, COLLECTION_FORMATS, Configuration, Permission, PermissionBundlesApiService, PermissionsApiService, RegionLevel, RegionsApiService, RepContactsApiService, RepTerritoriesApiService, RsdRegionsApiService, SearchRegionDtoLevelEnum, UsersApiService, provideApi };
|
|
2298
|
-
export type { AddressDto, AuthApiServiceInterface, AuthAuthenticateRequestParams, AuthRefreshTokenRequestParams, CompanyInformationDto, ConfigurationParameters, ContactDto, CreateRsdRegionDto, DataFormat, DataType, EmailConfirmationTokenDto, ForgotPasswordCommand, Int32IdDto, LoginUserCommand, OffsetLimitListMetadata, PagedListMetadata, Param, ParamLocation, ParamStyle, PermissionBundleDto, PermissionBundlesApiServiceInterface, PermissionBundlesCreatePermissionBundleRequestParams, PermissionBundlesGetPermissionBundleRequestParams, PermissionBundlesRemovePermissionBundleRequestParams, PermissionBundlesRestorePermissionBundleRequestParams, PermissionBundlesSearchPermissionBundlesRequestParams, PermissionBundlesUpdatePermissionBundleRequestParams, PermissionDto, PermissionsApiServiceInterface, PhysicalAddressDto, RefreshTokenCommand, RegionsApiServiceInterface, RegionsSearchRegionsRequestParams, RepContactsApiServiceInterface, RepContactsGetRepTerritoryRepContactRequestParams, RepContactsRemoveRepTerritoryRepContactRequestParams, RepContactsUpdateRepTerritoryRepContactRequestParams, RepTerritoriesApiServiceInterface, RepTerritoriesCreateRepTerritoryRepContactRequestParams, RepTerritoriesCreateRepTerritoryRequestParams, RepTerritoriesGetRepTerritoryRequestParams, RepTerritoriesRemoveRepTerritoryRequestParams, RepTerritoriesSearchRepTerritoriesRequestParams, RepTerritoriesUpdateRepTerritoryRequestParams, RepTerritoryContactsDto, RepTerritoryDto, RepTerritoryRepContactDto, ResetPasswordCommand, RsdRegionDocumentDto, RsdRegionDto, RsdRegionRepTerritoryDto, RsdRegionUserDto, RsdRegionsApiServiceInterface, RsdRegionsCreateRsdRegionRequestParams, RsdRegionsGetRsdRegionRequestParams, RsdRegionsRemoveRsdRegionRequestParams, RsdRegionsSearchRsdRegionsRequestParams, RsdRegionsUpdateRsdRegionRequestParams, SavePermissionBundleDto, SaveRepTerritoryDto, SaveRepTerritoryRepContactDto, SearchPermissionBundleDto, SearchPermissionBundleDtoPagedListMetadataDto, SearchRegionDto, SearchRegionDtoPagedListMetadataDto, SearchRepTerritoryDto, SearchRepTerritoryDtoPagedListMetadataDto, SearchRsdRegionDto, SearchRsdRegionDtoPagedListMetadataDto, StandardDataFormat, StandardDataType, StandardParamStyle, TokenModel, TotalCountListMetadata, UpdateRsdRegionDto, UserEmailDto, UserPreferencesDto, UserProfileDto, UserRegistrationDto, UsersApiServiceInterface, UsersConfirmEmailRequestParams, UsersForgotPasswordRequestParams,
|
|
2581
|
+
export { APIS, AddressCountry, AddressDtoCountryEnum, ApiModule, AuthApiService, BASE_PATH, COLLECTION_FORMATS, Configuration, Permission, PermissionBundlesApiService, PermissionsApiService, RegionDtoLevelEnum, RegionLevel, RegionsApiService, RepContactsApiService, RepTerritoriesApiService, RepTerritoryLocationsApiService, RsdRegionsApiService, SearchRegionDtoLevelEnum, UsersApiService, provideApi };
|
|
2582
|
+
export type { AddressDto, AuthApiServiceInterface, AuthAuthenticateRequestParams, AuthRefreshTokenRequestParams, CompanyInformationDto, ConfigurationParameters, ContactDto, CreateRsdRegionDto, DataFormat, DataType, EmailConfirmationTokenDto, ForgotPasswordCommand, Int32IdDto, LoginUserCommand, OffsetLimitListMetadata, PagedListMetadata, Param, ParamLocation, ParamStyle, PermissionBundleDto, PermissionBundlesApiServiceInterface, PermissionBundlesCreatePermissionBundleRequestParams, PermissionBundlesGetPermissionBundleRequestParams, PermissionBundlesRemovePermissionBundleRequestParams, PermissionBundlesRestorePermissionBundleRequestParams, PermissionBundlesSearchPermissionBundlesRequestParams, PermissionBundlesUpdatePermissionBundleRequestParams, PermissionDto, PermissionsApiServiceInterface, PhysicalAddressDto, RefreshTokenCommand, RegionDto, RegionsApiServiceInterface, RegionsSearchRegionsRequestParams, RepContactsApiServiceInterface, RepContactsGetRepTerritoryRepContactRequestParams, RepContactsRemoveRepTerritoryRepContactRequestParams, RepContactsUpdateRepTerritoryRepContactRequestParams, RepTerritoriesApiServiceInterface, RepTerritoriesCreateRepTerritoryLocationRequestParams, RepTerritoriesCreateRepTerritoryRepContactRequestParams, RepTerritoriesCreateRepTerritoryRequestParams, RepTerritoriesGetRepTerritoryRequestParams, RepTerritoriesRemoveRepTerritoryRequestParams, RepTerritoriesSearchRepTerritoriesRequestParams, RepTerritoriesUpdateRepTerritoryRequestParams, RepTerritoryContactsDto, RepTerritoryDto, RepTerritoryLocationDto, RepTerritoryLocationsApiServiceInterface, RepTerritoryLocationsGetRepTerritoryLocationRequestParams, RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams, RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams, RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams, RepTerritoryRepContactDto, ResetPasswordCommand, RsdRegionDocumentDto, RsdRegionDto, RsdRegionRepTerritoryDto, RsdRegionUserDto, RsdRegionsApiServiceInterface, RsdRegionsCreateRsdRegionRequestParams, RsdRegionsGetRsdRegionRequestParams, RsdRegionsRemoveRsdRegionRequestParams, RsdRegionsSearchRsdRegionsRequestParams, RsdRegionsUpdateRsdRegionRequestParams, SavePermissionBundleDto, SaveRepTerritoryDto, SaveRepTerritoryLocationDto, SaveRepTerritoryRepContactDto, SearchPermissionBundleDto, SearchPermissionBundleDtoPagedListMetadataDto, SearchRegionDto, SearchRegionDtoPagedListMetadataDto, SearchRepTerritoryDto, SearchRepTerritoryDtoPagedListMetadataDto, SearchRepTerritoryLocationDto, SearchRepTerritoryLocationDtoPagedListMetadataDto, SearchRsdRegionDto, SearchRsdRegionDtoPagedListMetadataDto, StandardDataFormat, StandardDataType, StandardParamStyle, TokenModel, TotalCountListMetadata, UpdateRsdRegionDto, UserEmailDto, UserPreferencesDto, UserProfileDto, UserRegistrationDto, UsersApiServiceInterface, UsersConfirmEmailRequestParams, UsersForgotPasswordRequestParams, UsersGetRepContactsRequestParams, UsersRegisterUserRequestParams, UsersRequestConfirmEmailRequestParams, UsersResetPasswordRequestParams };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saritasa/renewaire-frontend-sdk",
|
|
3
|
-
"version": "0.1.0-dev.
|
|
4
|
-
"description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.1.0-dev.
|
|
3
|
+
"version": "0.1.0-dev.367",
|
|
4
|
+
"description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.1.0-dev.367+Branch.develop.Sha.45636e58c23cdf6676fbc8c90e06823cf800d8a3.45636e58c23cdf6676fbc8c90e06823cf800d8a3)",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|