@saritasa/renewaire-frontend-sdk 0.1.0-dev.287 → 0.1.0-dev.323

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
@@ -440,6 +440,48 @@ interface PagedListMetadata {
440
440
  totalPages: number;
441
441
  }
442
442
 
443
+ /**
444
+ * RenewAire CORES API
445
+ *
446
+ * Contact: renewaire@saritasa.com
447
+ *
448
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
449
+ * https://openapi-generator.tech
450
+ * Do not edit the class manually.
451
+ */
452
+ /**
453
+ * Permission<br />0 = SystemAdmin<br />1 = UserAdministration
454
+ */
455
+ declare enum Permission {
456
+ SystemAdmin = "SystemAdmin",
457
+ UserAdministration = "UserAdministration"
458
+ }
459
+
460
+ /**
461
+ * RenewAire CORES API
462
+ *
463
+ * Contact: renewaire@saritasa.com
464
+ *
465
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
466
+ * https://openapi-generator.tech
467
+ * Do not edit the class manually.
468
+ */
469
+
470
+ /**
471
+ * Permission bundle DTO.
472
+ */
473
+ interface PermissionBundleDto {
474
+ id: object;
475
+ name: string;
476
+ description: string;
477
+ isSystem: boolean;
478
+ /**
479
+ * Is active. Not removed permission bundle.
480
+ */
481
+ isActive: boolean;
482
+ permissions: Array<Permission>;
483
+ }
484
+
443
485
  /**
444
486
  * RenewAire CORES API
445
487
  *
@@ -734,6 +776,25 @@ interface RsdRegionDto {
734
776
  documents: Array<RsdRegionDocumentDto>;
735
777
  }
736
778
 
779
+ /**
780
+ * RenewAire CORES API
781
+ *
782
+ * Contact: renewaire@saritasa.com
783
+ *
784
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
785
+ * https://openapi-generator.tech
786
+ * Do not edit the class manually.
787
+ */
788
+
789
+ /**
790
+ * Save permission bundle DTO.
791
+ */
792
+ interface SavePermissionBundleDto {
793
+ name: string;
794
+ description: string;
795
+ permissions: Array<Permission>;
796
+ }
797
+
737
798
  /**
738
799
  * RenewAire CORES API
739
800
  *
@@ -761,6 +822,44 @@ interface SaveRepTerritoryDto {
761
822
  rsdRegionId: object;
762
823
  }
763
824
 
825
+ /**
826
+ * RenewAire CORES API
827
+ *
828
+ * Contact: renewaire@saritasa.com
829
+ *
830
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
831
+ * https://openapi-generator.tech
832
+ * Do not edit the class manually.
833
+ */
834
+ /**
835
+ * Search permission bundle DTO.
836
+ */
837
+ interface SearchPermissionBundleDto {
838
+ id: object;
839
+ name: string;
840
+ description: string;
841
+ isSystem: boolean;
842
+ /**
843
+ * Is active. Not removed permission bundle.
844
+ */
845
+ isActive: boolean;
846
+ }
847
+
848
+ /**
849
+ * RenewAire CORES API
850
+ *
851
+ * Contact: renewaire@saritasa.com
852
+ *
853
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
854
+ * https://openapi-generator.tech
855
+ * Do not edit the class manually.
856
+ */
857
+
858
+ interface SearchPermissionBundleDtoPagedListMetadataDto {
859
+ metadata: PagedListMetadata;
860
+ items: Array<SearchPermissionBundleDto>;
861
+ }
862
+
764
863
  /**
765
864
  * RenewAire CORES API
766
865
  *
@@ -1110,6 +1209,212 @@ declare class AuthApiService extends BaseService implements AuthApiServiceInterf
1110
1209
  static ɵprov: i0.ɵɵInjectableDeclaration<AuthApiService>;
1111
1210
  }
1112
1211
 
1212
+ /**
1213
+ * RenewAire CORES API
1214
+ *
1215
+ * Contact: renewaire@saritasa.com
1216
+ *
1217
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1218
+ * https://openapi-generator.tech
1219
+ * Do not edit the class manually.
1220
+ */
1221
+
1222
+ interface PermissionBundlesCreatePermissionBundleRequestParams {
1223
+ savePermissionBundleDto?: SavePermissionBundleDto;
1224
+ }
1225
+ interface PermissionBundlesGetPermissionBundleRequestParams {
1226
+ permissionBundleId: number;
1227
+ }
1228
+ interface PermissionBundlesRemovePermissionBundleRequestParams {
1229
+ permissionBundleId: number;
1230
+ }
1231
+ interface PermissionBundlesRestorePermissionBundleRequestParams {
1232
+ permissionBundleId: number;
1233
+ }
1234
+ interface PermissionBundlesSearchPermissionBundlesRequestParams {
1235
+ name?: string;
1236
+ orderBy?: string;
1237
+ page?: number;
1238
+ pageSize?: number;
1239
+ }
1240
+ interface PermissionBundlesUpdatePermissionBundleRequestParams {
1241
+ permissionBundleId: number;
1242
+ savePermissionBundleDto?: SavePermissionBundleDto;
1243
+ }
1244
+ interface PermissionBundlesApiServiceInterface {
1245
+ defaultHeaders: HttpHeaders;
1246
+ configuration: Configuration;
1247
+ /**
1248
+ * Create permission bundle.
1249
+ *
1250
+ * @param requestParameters
1251
+ */
1252
+ permissionBundlesCreatePermissionBundle(requestParameters: PermissionBundlesCreatePermissionBundleRequestParams, extraHttpRequestParams?: any): Observable<object>;
1253
+ /**
1254
+ * Get permission bundle.
1255
+ *
1256
+ * @param requestParameters
1257
+ */
1258
+ permissionBundlesGetPermissionBundle(requestParameters: PermissionBundlesGetPermissionBundleRequestParams, extraHttpRequestParams?: any): Observable<PermissionBundleDto>;
1259
+ /**
1260
+ * Remove permission bundle.
1261
+ *
1262
+ * @param requestParameters
1263
+ */
1264
+ permissionBundlesRemovePermissionBundle(requestParameters: PermissionBundlesRemovePermissionBundleRequestParams, extraHttpRequestParams?: any): Observable<{}>;
1265
+ /**
1266
+ * Restore permission bundle.
1267
+ *
1268
+ * @param requestParameters
1269
+ */
1270
+ permissionBundlesRestorePermissionBundle(requestParameters: PermissionBundlesRestorePermissionBundleRequestParams, extraHttpRequestParams?: any): Observable<{}>;
1271
+ /**
1272
+ * Search permission bundles.
1273
+ *
1274
+ * @param requestParameters
1275
+ */
1276
+ permissionBundlesSearchPermissionBundles(requestParameters: PermissionBundlesSearchPermissionBundlesRequestParams, extraHttpRequestParams?: any): Observable<SearchPermissionBundleDtoPagedListMetadataDto>;
1277
+ /**
1278
+ * Update permission bundle.
1279
+ *
1280
+ * @param requestParameters
1281
+ */
1282
+ permissionBundlesUpdatePermissionBundle(requestParameters: PermissionBundlesUpdatePermissionBundleRequestParams, extraHttpRequestParams?: any): Observable<{}>;
1283
+ }
1284
+
1285
+ declare class PermissionBundlesApiService extends BaseService implements PermissionBundlesApiServiceInterface {
1286
+ protected httpClient: HttpClient;
1287
+ constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
1288
+ /**
1289
+ * Create permission bundle.
1290
+ * @param requestParameters
1291
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1292
+ * @param reportProgress flag to report request and response progress.
1293
+ */
1294
+ permissionBundlesCreatePermissionBundle(requestParameters?: PermissionBundlesCreatePermissionBundleRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1295
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1296
+ context?: HttpContext;
1297
+ transferCache?: boolean;
1298
+ }): Observable<object>;
1299
+ permissionBundlesCreatePermissionBundle(requestParameters?: PermissionBundlesCreatePermissionBundleRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1300
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1301
+ context?: HttpContext;
1302
+ transferCache?: boolean;
1303
+ }): Observable<HttpResponse<object>>;
1304
+ permissionBundlesCreatePermissionBundle(requestParameters?: PermissionBundlesCreatePermissionBundleRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1305
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1306
+ context?: HttpContext;
1307
+ transferCache?: boolean;
1308
+ }): Observable<HttpEvent<object>>;
1309
+ /**
1310
+ * Get permission bundle.
1311
+ * @param requestParameters
1312
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1313
+ * @param reportProgress flag to report request and response progress.
1314
+ */
1315
+ permissionBundlesGetPermissionBundle(requestParameters: PermissionBundlesGetPermissionBundleRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1316
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1317
+ context?: HttpContext;
1318
+ transferCache?: boolean;
1319
+ }): Observable<PermissionBundleDto>;
1320
+ permissionBundlesGetPermissionBundle(requestParameters: PermissionBundlesGetPermissionBundleRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1321
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1322
+ context?: HttpContext;
1323
+ transferCache?: boolean;
1324
+ }): Observable<HttpResponse<PermissionBundleDto>>;
1325
+ permissionBundlesGetPermissionBundle(requestParameters: PermissionBundlesGetPermissionBundleRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1326
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1327
+ context?: HttpContext;
1328
+ transferCache?: boolean;
1329
+ }): Observable<HttpEvent<PermissionBundleDto>>;
1330
+ /**
1331
+ * Remove permission bundle.
1332
+ * @param requestParameters
1333
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1334
+ * @param reportProgress flag to report request and response progress.
1335
+ */
1336
+ permissionBundlesRemovePermissionBundle(requestParameters: PermissionBundlesRemovePermissionBundleRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1337
+ httpHeaderAccept?: undefined;
1338
+ context?: HttpContext;
1339
+ transferCache?: boolean;
1340
+ }): Observable<any>;
1341
+ permissionBundlesRemovePermissionBundle(requestParameters: PermissionBundlesRemovePermissionBundleRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1342
+ httpHeaderAccept?: undefined;
1343
+ context?: HttpContext;
1344
+ transferCache?: boolean;
1345
+ }): Observable<HttpResponse<any>>;
1346
+ permissionBundlesRemovePermissionBundle(requestParameters: PermissionBundlesRemovePermissionBundleRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1347
+ httpHeaderAccept?: undefined;
1348
+ context?: HttpContext;
1349
+ transferCache?: boolean;
1350
+ }): Observable<HttpEvent<any>>;
1351
+ /**
1352
+ * Restore permission bundle.
1353
+ * @param requestParameters
1354
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1355
+ * @param reportProgress flag to report request and response progress.
1356
+ */
1357
+ permissionBundlesRestorePermissionBundle(requestParameters: PermissionBundlesRestorePermissionBundleRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1358
+ httpHeaderAccept?: undefined;
1359
+ context?: HttpContext;
1360
+ transferCache?: boolean;
1361
+ }): Observable<any>;
1362
+ permissionBundlesRestorePermissionBundle(requestParameters: PermissionBundlesRestorePermissionBundleRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1363
+ httpHeaderAccept?: undefined;
1364
+ context?: HttpContext;
1365
+ transferCache?: boolean;
1366
+ }): Observable<HttpResponse<any>>;
1367
+ permissionBundlesRestorePermissionBundle(requestParameters: PermissionBundlesRestorePermissionBundleRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1368
+ httpHeaderAccept?: undefined;
1369
+ context?: HttpContext;
1370
+ transferCache?: boolean;
1371
+ }): Observable<HttpEvent<any>>;
1372
+ /**
1373
+ * Search permission bundles.
1374
+ * @param requestParameters
1375
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1376
+ * @param reportProgress flag to report request and response progress.
1377
+ */
1378
+ permissionBundlesSearchPermissionBundles(requestParameters?: PermissionBundlesSearchPermissionBundlesRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1379
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1380
+ context?: HttpContext;
1381
+ transferCache?: boolean;
1382
+ }): Observable<SearchPermissionBundleDtoPagedListMetadataDto>;
1383
+ permissionBundlesSearchPermissionBundles(requestParameters?: PermissionBundlesSearchPermissionBundlesRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1384
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1385
+ context?: HttpContext;
1386
+ transferCache?: boolean;
1387
+ }): Observable<HttpResponse<SearchPermissionBundleDtoPagedListMetadataDto>>;
1388
+ permissionBundlesSearchPermissionBundles(requestParameters?: PermissionBundlesSearchPermissionBundlesRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1389
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1390
+ context?: HttpContext;
1391
+ transferCache?: boolean;
1392
+ }): Observable<HttpEvent<SearchPermissionBundleDtoPagedListMetadataDto>>;
1393
+ /**
1394
+ * Update permission bundle.
1395
+ * @param requestParameters
1396
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1397
+ * @param reportProgress flag to report request and response progress.
1398
+ */
1399
+ permissionBundlesUpdatePermissionBundle(requestParameters: PermissionBundlesUpdatePermissionBundleRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1400
+ httpHeaderAccept?: undefined;
1401
+ context?: HttpContext;
1402
+ transferCache?: boolean;
1403
+ }): Observable<any>;
1404
+ permissionBundlesUpdatePermissionBundle(requestParameters: PermissionBundlesUpdatePermissionBundleRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1405
+ httpHeaderAccept?: undefined;
1406
+ context?: HttpContext;
1407
+ transferCache?: boolean;
1408
+ }): Observable<HttpResponse<any>>;
1409
+ permissionBundlesUpdatePermissionBundle(requestParameters: PermissionBundlesUpdatePermissionBundleRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1410
+ httpHeaderAccept?: undefined;
1411
+ context?: HttpContext;
1412
+ transferCache?: boolean;
1413
+ }): Observable<HttpEvent<any>>;
1414
+ static ɵfac: i0.ɵɵFactoryDeclaration<PermissionBundlesApiService, [null, { optional: true; }, { optional: true; }]>;
1415
+ static ɵprov: i0.ɵɵInjectableDeclaration<PermissionBundlesApiService>;
1416
+ }
1417
+
1113
1418
  /**
1114
1419
  * RenewAire CORES API
1115
1420
  *
@@ -1233,7 +1538,7 @@ interface RepTerritoriesGetRepTerritoryRequestParams {
1233
1538
  interface RepTerritoriesRemoveRepTerritoryRequestParams {
1234
1539
  repTerritoryId: number;
1235
1540
  }
1236
- interface RepTerritoriesSearchRsdTerritoriesRequestParams {
1541
+ interface RepTerritoriesSearchRepTerritoriesRequestParams {
1237
1542
  repName?: string;
1238
1543
  repCode?: string;
1239
1544
  rsdRegionName?: string;
@@ -1271,7 +1576,7 @@ interface RepTerritoriesApiServiceInterface {
1271
1576
  *
1272
1577
  * @param requestParameters
1273
1578
  */
1274
- repTerritoriesSearchRsdTerritories(requestParameters: RepTerritoriesSearchRsdTerritoriesRequestParams, extraHttpRequestParams?: any): Observable<SearchRepTerritoryDtoPagedListMetadataDto>;
1579
+ repTerritoriesSearchRepTerritories(requestParameters: RepTerritoriesSearchRepTerritoriesRequestParams, extraHttpRequestParams?: any): Observable<SearchRepTerritoryDtoPagedListMetadataDto>;
1275
1580
  /**
1276
1581
  * Update REP territory.
1277
1582
  *
@@ -1352,17 +1657,17 @@ declare class RepTerritoriesApiService extends BaseService implements RepTerrito
1352
1657
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1353
1658
  * @param reportProgress flag to report request and response progress.
1354
1659
  */
1355
- repTerritoriesSearchRsdTerritories(requestParameters?: RepTerritoriesSearchRsdTerritoriesRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1660
+ repTerritoriesSearchRepTerritories(requestParameters?: RepTerritoriesSearchRepTerritoriesRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1356
1661
  httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1357
1662
  context?: HttpContext;
1358
1663
  transferCache?: boolean;
1359
1664
  }): Observable<SearchRepTerritoryDtoPagedListMetadataDto>;
1360
- repTerritoriesSearchRsdTerritories(requestParameters?: RepTerritoriesSearchRsdTerritoriesRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1665
+ repTerritoriesSearchRepTerritories(requestParameters?: RepTerritoriesSearchRepTerritoriesRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1361
1666
  httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1362
1667
  context?: HttpContext;
1363
1668
  transferCache?: boolean;
1364
1669
  }): Observable<HttpResponse<SearchRepTerritoryDtoPagedListMetadataDto>>;
1365
- repTerritoriesSearchRsdTerritories(requestParameters?: RepTerritoriesSearchRsdTerritoriesRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1670
+ repTerritoriesSearchRepTerritories(requestParameters?: RepTerritoriesSearchRepTerritoriesRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1366
1671
  httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
1367
1672
  context?: HttpContext;
1368
1673
  transferCache?: boolean;
@@ -1797,7 +2102,7 @@ declare class UsersApiService extends BaseService implements UsersApiServiceInte
1797
2102
  static ɵprov: i0.ɵɵInjectableDeclaration<UsersApiService>;
1798
2103
  }
1799
2104
 
1800
- declare const APIS: (typeof AuthApiService | typeof PermissionsApiService | typeof RegionsApiService | typeof RepTerritoriesApiService | typeof RsdRegionsApiService | typeof UsersApiService)[];
2105
+ declare const APIS: (typeof AuthApiService | typeof PermissionBundlesApiService | typeof PermissionsApiService | typeof RegionsApiService | typeof RepTerritoriesApiService | typeof RsdRegionsApiService | typeof UsersApiService)[];
1801
2106
 
1802
2107
  declare const BASE_PATH: InjectionToken<string>;
1803
2108
  declare const COLLECTION_FORMATS: {
@@ -1817,5 +2122,5 @@ declare class ApiModule {
1817
2122
 
1818
2123
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
1819
2124
 
1820
- export { APIS, AddressCountry, AddressDtoCountryEnum, ApiModule, AuthApiService, BASE_PATH, COLLECTION_FORMATS, Configuration, PermissionsApiService, RegionLevel, RegionsApiService, RepTerritoriesApiService, RsdRegionsApiService, SearchRegionDtoLevelEnum, UsersApiService, provideApi };
1821
- export type { AddressDto, AuthApiServiceInterface, AuthAuthenticateRequestParams, AuthRefreshTokenRequestParams, CompanyInformationDto, ConfigurationParameters, ContactDto, CreateRsdRegionDto, DataFormat, DataType, EmailConfirmationTokenDto, ForgotPasswordCommand, Int32IdDto, LoginUserCommand, OffsetLimitListMetadata, PagedListMetadata, Param, ParamLocation, ParamStyle, PermissionDto, PermissionsApiServiceInterface, PhysicalAddressDto, RefreshTokenCommand, RegionsApiServiceInterface, RegionsSearchRegionsRequestParams, RepTerritoriesApiServiceInterface, RepTerritoriesCreateRepTerritoryRequestParams, RepTerritoriesGetRepTerritoryRequestParams, RepTerritoriesRemoveRepTerritoryRequestParams, RepTerritoriesSearchRsdTerritoriesRequestParams, RepTerritoriesUpdateRepTerritoryRequestParams, RepTerritoryContactsDto, RepTerritoryDto, RepTerritoryRepContactDto, ResetPasswordCommand, RsdRegionDocumentDto, RsdRegionDto, RsdRegionRepTerritoryDto, RsdRegionUserDto, RsdRegionsApiServiceInterface, RsdRegionsCreateRsdRegionRequestParams, RsdRegionsGetRsdRegionRequestParams, RsdRegionsRemoveRsdRegionRequestParams, RsdRegionsSearchRsdRegionsRequestParams, RsdRegionsUpdateRsdRegionRequestParams, SaveRepTerritoryDto, SearchRegionDto, SearchRegionDtoPagedListMetadataDto, SearchRepTerritoryDto, SearchRepTerritoryDtoPagedListMetadataDto, SearchRsdRegionDto, SearchRsdRegionDtoPagedListMetadataDto, StandardDataFormat, StandardDataType, StandardParamStyle, TokenModel, TotalCountListMetadata, UpdateRsdRegionDto, UserEmailDto, UserPreferencesDto, UserProfileDto, UserRegistrationDto, UsersApiServiceInterface, UsersConfirmEmailRequestParams, UsersForgotPasswordRequestParams, UsersGetRepContacts0RequestParams, UsersRegisterUserRequestParams, UsersRequestConfirmEmailRequestParams, UsersResetPasswordRequestParams };
2125
+ export { APIS, AddressCountry, AddressDtoCountryEnum, ApiModule, AuthApiService, BASE_PATH, COLLECTION_FORMATS, Configuration, Permission, PermissionBundlesApiService, PermissionsApiService, RegionLevel, RegionsApiService, RepTerritoriesApiService, RsdRegionsApiService, SearchRegionDtoLevelEnum, UsersApiService, provideApi };
2126
+ 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, RepTerritoriesApiServiceInterface, RepTerritoriesCreateRepTerritoryRequestParams, RepTerritoriesGetRepTerritoryRequestParams, RepTerritoriesRemoveRepTerritoryRequestParams, RepTerritoriesSearchRepTerritoriesRequestParams, RepTerritoriesUpdateRepTerritoryRequestParams, RepTerritoryContactsDto, RepTerritoryDto, RepTerritoryRepContactDto, ResetPasswordCommand, RsdRegionDocumentDto, RsdRegionDto, RsdRegionRepTerritoryDto, RsdRegionUserDto, RsdRegionsApiServiceInterface, RsdRegionsCreateRsdRegionRequestParams, RsdRegionsGetRsdRegionRequestParams, RsdRegionsRemoveRsdRegionRequestParams, RsdRegionsSearchRsdRegionsRequestParams, RsdRegionsUpdateRsdRegionRequestParams, SavePermissionBundleDto, SaveRepTerritoryDto, SearchPermissionBundleDto, SearchPermissionBundleDtoPagedListMetadataDto, SearchRegionDto, SearchRegionDtoPagedListMetadataDto, SearchRepTerritoryDto, SearchRepTerritoryDtoPagedListMetadataDto, SearchRsdRegionDto, SearchRsdRegionDtoPagedListMetadataDto, StandardDataFormat, StandardDataType, StandardParamStyle, TokenModel, TotalCountListMetadata, UpdateRsdRegionDto, UserEmailDto, UserPreferencesDto, UserProfileDto, UserRegistrationDto, UsersApiServiceInterface, UsersConfirmEmailRequestParams, UsersForgotPasswordRequestParams, UsersGetRepContacts0RequestParams, 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.287",
4
- "description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.1.0-dev.287+Branch.develop.Sha.9a383d349c3b1918db5e7486650a5fb6750b6c02.9a383d349c3b1918db5e7486650a5fb6750b6c02)",
3
+ "version": "0.1.0-dev.323",
4
+ "description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.1.0-dev.323+Branch.develop.Sha.a2cc50951b4736561979d4e6ca43c97c19c982db.a2cc50951b4736561979d4e6ca43c97c19c982db)",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
7
7
  "type": "git",