@reposit/api-client 6.61.0-concurrent-tenancy-check-2 → 6.61.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/dist/index.d.ts CHANGED
@@ -399,11 +399,6 @@ export declare interface BeneficiaryDTO {
399
399
  email?: string;
400
400
  }
401
401
 
402
- export declare interface BlockedTenantDTO {
403
- email: string;
404
- fullName?: string;
405
- }
406
-
407
402
  export declare interface CashDepositDetailsDTO {
408
403
  amount: number;
409
404
  PPM: number;
@@ -478,14 +473,6 @@ export declare interface ChangeInstalmentDatesDTO {
478
473
  targetInstalmentDate: number;
479
474
  }
480
475
 
481
- export declare function checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ConcurrentTenancyCheckResultDTO>;
482
-
483
- export declare interface CheckConcurrentTenancyRequestDTO {
484
- organizationId: string;
485
- startDate: string;
486
- tenantEmails: Array<string>;
487
- }
488
-
489
476
  export declare interface CheckDTO {
490
477
  id: string;
491
478
  referenceId: string;
@@ -1220,32 +1207,6 @@ export declare function completeMyDepositsSetup(organizationId: string, myDeposi
1220
1207
 
1221
1208
  export declare function completeOnboardingIntroduction(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<UserDTO>;
1222
1209
 
1223
- export declare class ConcurrentTenancyCheckApi extends BaseAPI implements ConcurrentTenancyCheckApiInterface {
1224
- checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): AxiosPromise<ConcurrentTenancyCheckResultDTO>;
1225
- }
1226
-
1227
- export declare const ConcurrentTenancyCheckApiAxiosParamCreator: (configuration?: Configuration) => {
1228
- checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): RequestArgs;
1229
- };
1230
-
1231
- export declare const ConcurrentTenancyCheckApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1232
- checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): AxiosPromise<ConcurrentTenancyCheckResultDTO>;
1233
- };
1234
-
1235
- export declare const ConcurrentTenancyCheckApiFp: (configuration?: Configuration) => {
1236
- checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConcurrentTenancyCheckResultDTO>;
1237
- };
1238
-
1239
- export declare interface ConcurrentTenancyCheckApiInterface {
1240
- checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): AxiosPromise<ConcurrentTenancyCheckResultDTO>;
1241
- }
1242
-
1243
- export declare interface ConcurrentTenancyCheckResultDTO {
1244
- isBlocked: boolean;
1245
- blockedTenants: Array<BlockedTenantDTO>;
1246
- conflictingReposits: Array<ConflictingRepositDTO>;
1247
- }
1248
-
1249
1210
  export declare class Configuration {
1250
1211
  apiKey?: string | ((name: string) => string);
1251
1212
  username?: string;
@@ -1278,17 +1239,6 @@ export declare interface ConfirmTenancyDetailsResponseDTO {
1278
1239
  confirmedAt: Date;
1279
1240
  }
1280
1241
 
1281
- export declare interface ConflictingRepositDTO {
1282
- tenancyOrderId: string;
1283
- tenancyId: string;
1284
- organizationId: string;
1285
- organizationName: string;
1286
- startDate: string;
1287
- daysApart: number;
1288
- isSameOrganization: boolean;
1289
- blockedTenants: Array<BlockedTenantDTO>;
1290
- }
1291
-
1292
1242
  export declare interface CoreAddressDTO {
1293
1243
  roomNumber?: string;
1294
1244
  flatNumber?: string;
@@ -3948,7 +3898,6 @@ export declare enum OrganizationSettingsDTOCommissionRuleEnum {
3948
3898
  FEEPERCENTAGE30 = "FEE_PERCENTAGE_30",
3949
3899
  FEEPERCENTAGE25 = "FEE_PERCENTAGE_25",
3950
3900
  FEEPERCENTAGE20 = "FEE_PERCENTAGE_20",
3951
- FEEPERCENTAGE17POINT5 = "FEE_PERCENTAGE_17_POINT_5",
3952
3901
  FEEPERCENTAGE15 = "FEE_PERCENTAGE_15",
3953
3902
  FEEPERCENTAGE12POINT5 = "FEE_PERCENTAGE_12_POINT_5",
3954
3903
  FEEPERCENTAGE10 = "FEE_PERCENTAGE_10",