@reposit/api-client 6.61.0-concurrent-tenancy-check-1 → 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 +0 -36
- package/dist/index.js +1 -1
- package/dist/index.mjs +327 -384
- package/package.json +1 -1
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,12 +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 interface ConcurrentTenancyCheckResultDTO {
|
|
1224
|
-
isBlocked: boolean;
|
|
1225
|
-
blockedTenants: Array<BlockedTenantDTO>;
|
|
1226
|
-
conflictingReposits: Array<ConflictingRepositDTO>;
|
|
1227
|
-
}
|
|
1228
|
-
|
|
1229
1210
|
export declare class Configuration {
|
|
1230
1211
|
apiKey?: string | ((name: string) => string);
|
|
1231
1212
|
username?: string;
|
|
@@ -1258,17 +1239,6 @@ export declare interface ConfirmTenancyDetailsResponseDTO {
|
|
|
1258
1239
|
confirmedAt: Date;
|
|
1259
1240
|
}
|
|
1260
1241
|
|
|
1261
|
-
export declare interface ConflictingRepositDTO {
|
|
1262
|
-
tenancyOrderId: string;
|
|
1263
|
-
tenancyId: string;
|
|
1264
|
-
organizationId: string;
|
|
1265
|
-
organizationName: string;
|
|
1266
|
-
startDate: string;
|
|
1267
|
-
daysApart: number;
|
|
1268
|
-
isSameOrganization: boolean;
|
|
1269
|
-
blockedTenants: Array<BlockedTenantDTO>;
|
|
1270
|
-
}
|
|
1271
|
-
|
|
1272
1242
|
export declare interface CoreAddressDTO {
|
|
1273
1243
|
roomNumber?: string;
|
|
1274
1244
|
flatNumber?: string;
|
|
@@ -3928,7 +3898,6 @@ export declare enum OrganizationSettingsDTOCommissionRuleEnum {
|
|
|
3928
3898
|
FEEPERCENTAGE30 = "FEE_PERCENTAGE_30",
|
|
3929
3899
|
FEEPERCENTAGE25 = "FEE_PERCENTAGE_25",
|
|
3930
3900
|
FEEPERCENTAGE20 = "FEE_PERCENTAGE_20",
|
|
3931
|
-
FEEPERCENTAGE17POINT5 = "FEE_PERCENTAGE_17_POINT_5",
|
|
3932
3901
|
FEEPERCENTAGE15 = "FEE_PERCENTAGE_15",
|
|
3933
3902
|
FEEPERCENTAGE12POINT5 = "FEE_PERCENTAGE_12_POINT_5",
|
|
3934
3903
|
FEEPERCENTAGE10 = "FEE_PERCENTAGE_10",
|
|
@@ -5619,7 +5588,6 @@ export declare interface SuppliersApiInterface {
|
|
|
5619
5588
|
}
|
|
5620
5589
|
|
|
5621
5590
|
export declare class TenanciesApi extends BaseAPI implements TenanciesApiInterface {
|
|
5622
|
-
checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): AxiosPromise<ConcurrentTenancyCheckResultDTO>;
|
|
5623
5591
|
closingRemindersEnabled(id: string, updateClosingRemindersEnabledRequestDTO: UpdateClosingRemindersEnabledRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
5624
5592
|
createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
5625
5593
|
createTenancyOrder(id: string, createOrderDTO: CreateOrderDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -5636,7 +5604,6 @@ export declare class TenanciesApi extends BaseAPI implements TenanciesApiInterfa
|
|
|
5636
5604
|
}
|
|
5637
5605
|
|
|
5638
5606
|
export declare const TenanciesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
5639
|
-
checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): RequestArgs;
|
|
5640
5607
|
closingRemindersEnabled(id: string, updateClosingRemindersEnabledRequestDTO: UpdateClosingRemindersEnabledRequestDTO, options?: any): RequestArgs;
|
|
5641
5608
|
createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, options?: any): RequestArgs;
|
|
5642
5609
|
createTenancyOrder(id: string, createOrderDTO: CreateOrderDTO, options?: any): RequestArgs;
|
|
@@ -5653,7 +5620,6 @@ export declare const TenanciesApiAxiosParamCreator: (configuration?: Configurati
|
|
|
5653
5620
|
};
|
|
5654
5621
|
|
|
5655
5622
|
export declare const TenanciesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
5656
|
-
checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): AxiosPromise<ConcurrentTenancyCheckResultDTO>;
|
|
5657
5623
|
closingRemindersEnabled(id: string, updateClosingRemindersEnabledRequestDTO: UpdateClosingRemindersEnabledRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
5658
5624
|
createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
5659
5625
|
createTenancyOrder(id: string, createOrderDTO: CreateOrderDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
@@ -5670,7 +5636,6 @@ export declare const TenanciesApiFactory: (configuration?: Configuration, basePa
|
|
|
5670
5636
|
};
|
|
5671
5637
|
|
|
5672
5638
|
export declare const TenanciesApiFp: (configuration?: Configuration) => {
|
|
5673
|
-
checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConcurrentTenancyCheckResultDTO>;
|
|
5674
5639
|
closingRemindersEnabled(id: string, updateClosingRemindersEnabledRequestDTO: UpdateClosingRemindersEnabledRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
|
|
5675
5640
|
createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
|
|
5676
5641
|
createTenancyOrder(id: string, createOrderDTO: CreateOrderDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
|
|
@@ -5687,7 +5652,6 @@ export declare const TenanciesApiFp: (configuration?: Configuration) => {
|
|
|
5687
5652
|
};
|
|
5688
5653
|
|
|
5689
5654
|
export declare interface TenanciesApiInterface {
|
|
5690
|
-
checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): AxiosPromise<ConcurrentTenancyCheckResultDTO>;
|
|
5691
5655
|
closingRemindersEnabled(id: string, updateClosingRemindersEnabledRequestDTO: UpdateClosingRemindersEnabledRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
5692
5656
|
createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
|
|
5693
5657
|
createTenancyOrder(id: string, createOrderDTO: CreateOrderDTO, options?: any): AxiosPromise<TenancyDTO>;
|