@reposit/api-client 6.61.0-concurrent-tenancy-check-1 → 6.61.0-concurrent-tenancy-check-2

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
@@ -1220,6 +1220,26 @@ export declare function completeMyDepositsSetup(organizationId: string, myDeposi
1220
1220
 
1221
1221
  export declare function completeOnboardingIntroduction(configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<UserDTO>;
1222
1222
 
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
+
1223
1243
  export declare interface ConcurrentTenancyCheckResultDTO {
1224
1244
  isBlocked: boolean;
1225
1245
  blockedTenants: Array<BlockedTenantDTO>;
@@ -5619,7 +5639,6 @@ export declare interface SuppliersApiInterface {
5619
5639
  }
5620
5640
 
5621
5641
  export declare class TenanciesApi extends BaseAPI implements TenanciesApiInterface {
5622
- checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): AxiosPromise<ConcurrentTenancyCheckResultDTO>;
5623
5642
  closingRemindersEnabled(id: string, updateClosingRemindersEnabledRequestDTO: UpdateClosingRemindersEnabledRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
5624
5643
  createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
5625
5644
  createTenancyOrder(id: string, createOrderDTO: CreateOrderDTO, options?: any): AxiosPromise<TenancyDTO>;
@@ -5636,7 +5655,6 @@ export declare class TenanciesApi extends BaseAPI implements TenanciesApiInterfa
5636
5655
  }
5637
5656
 
5638
5657
  export declare const TenanciesApiAxiosParamCreator: (configuration?: Configuration) => {
5639
- checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): RequestArgs;
5640
5658
  closingRemindersEnabled(id: string, updateClosingRemindersEnabledRequestDTO: UpdateClosingRemindersEnabledRequestDTO, options?: any): RequestArgs;
5641
5659
  createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, options?: any): RequestArgs;
5642
5660
  createTenancyOrder(id: string, createOrderDTO: CreateOrderDTO, options?: any): RequestArgs;
@@ -5653,7 +5671,6 @@ export declare const TenanciesApiAxiosParamCreator: (configuration?: Configurati
5653
5671
  };
5654
5672
 
5655
5673
  export declare const TenanciesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
5656
- checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): AxiosPromise<ConcurrentTenancyCheckResultDTO>;
5657
5674
  closingRemindersEnabled(id: string, updateClosingRemindersEnabledRequestDTO: UpdateClosingRemindersEnabledRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
5658
5675
  createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
5659
5676
  createTenancyOrder(id: string, createOrderDTO: CreateOrderDTO, options?: any): AxiosPromise<TenancyDTO>;
@@ -5670,7 +5687,6 @@ export declare const TenanciesApiFactory: (configuration?: Configuration, basePa
5670
5687
  };
5671
5688
 
5672
5689
  export declare const TenanciesApiFp: (configuration?: Configuration) => {
5673
- checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConcurrentTenancyCheckResultDTO>;
5674
5690
  closingRemindersEnabled(id: string, updateClosingRemindersEnabledRequestDTO: UpdateClosingRemindersEnabledRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
5675
5691
  createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
5676
5692
  createTenancyOrder(id: string, createOrderDTO: CreateOrderDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenancyDTO>;
@@ -5687,7 +5703,6 @@ export declare const TenanciesApiFp: (configuration?: Configuration) => {
5687
5703
  };
5688
5704
 
5689
5705
  export declare interface TenanciesApiInterface {
5690
- checkConcurrentTenancy(checkConcurrentTenancyRequestDTO: CheckConcurrentTenancyRequestDTO, options?: any): AxiosPromise<ConcurrentTenancyCheckResultDTO>;
5691
5706
  closingRemindersEnabled(id: string, updateClosingRemindersEnabledRequestDTO: UpdateClosingRemindersEnabledRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
5692
5707
  createTenancy(createTenancyRequestDTO: CreateTenancyRequestDTO, options?: any): AxiosPromise<TenancyDTO>;
5693
5708
  createTenancyOrder(id: string, createOrderDTO: CreateOrderDTO, options?: any): AxiosPromise<TenancyDTO>;