@reposit/api-client 6.70.0-alpha.0 → 6.70.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
@@ -2042,6 +2042,8 @@ export declare enum CreateOrganizationBankAccountDTOAccountTypeEnum {
2042
2042
 
2043
2043
  export declare interface CreateOrganizationDTO {
2044
2044
  parentId?: string;
2045
+ parentOrganizationGroupId?: string;
2046
+ organizationGroupId?: string;
2045
2047
  integratorId?: string;
2046
2048
  internalSalesOwnerId?: string;
2047
2049
  name: string;
@@ -2936,6 +2938,8 @@ export declare function findReferenceById(id: string, configuration?: Configurat
2936
2938
 
2937
2939
  export declare function findReferenceDocumentById(referenceId: string, documentId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<ReferenceDocumentDTO>;
2938
2940
 
2941
+ export declare function forceDeletePaymentPlanById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
2942
+
2939
2943
  export declare function generateADRForm(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
2940
2944
 
2941
2945
  export declare function generateCashDepositPlaidLinkToken(verifyPostcodeRequestDTO: VerifyPostcodeRequestDTO, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<GeneratePlaidLinkTokenResponseDTO>;
@@ -3026,8 +3030,6 @@ export declare function getOrderCustomerById(orderId: string, customerId: string
3026
3030
 
3027
3031
  export declare function getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrderManualPaymentsWithBankTransfersDTO>;
3028
3032
 
3029
- export declare function getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrderManualPaymentsWithBankTransfersDTO>;
3030
-
3031
3033
  export declare function getOrganizationMetrics(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrganizationMetricsDTO>;
3032
3034
 
3033
3035
  export declare function getOrganizationUsers(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<OrganizationUserDTO>>;
@@ -3880,7 +3882,7 @@ export declare interface OrderManualPaymentBankTransactionDTO {
3880
3882
  type?: string;
3881
3883
  debit?: number;
3882
3884
  credit?: number;
3883
- bulkImportRow: OrderManualPaymentBulkImportRowDTO;
3885
+ bulkImportRow?: OrderManualPaymentBulkImportRowDTO;
3884
3886
  }
3885
3887
 
3886
3888
  export declare interface OrderManualPaymentBulkImportDTO {
@@ -3913,7 +3915,7 @@ export declare interface OrderManualPaymentBulkImportRowDTO {
3913
3915
  error?: string;
3914
3916
  createdAt: Date;
3915
3917
  updatedAt: Date;
3916
- bulkImport: OrderManualPaymentBulkImportDTO;
3918
+ bulkImport?: OrderManualPaymentBulkImportDTO;
3917
3919
  }
3918
3920
 
3919
3921
  export declare enum OrderManualPaymentBulkImportRowDTOStatusEnum {
@@ -3932,27 +3934,22 @@ export declare interface OrderManualPaymentDTO {
3932
3934
 
3933
3935
  export declare class OrderManualPaymentsApi extends BaseAPI implements OrderManualPaymentsApiInterface {
3934
3936
  getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
3935
- getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
3936
3937
  }
3937
3938
 
3938
3939
  export declare const OrderManualPaymentsApiAxiosParamCreator: (configuration?: Configuration) => {
3939
3940
  getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): RequestArgs;
3940
- getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): RequestArgs;
3941
3941
  };
3942
3942
 
3943
3943
  export declare const OrderManualPaymentsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3944
3944
  getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
3945
- getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
3946
3945
  };
3947
3946
 
3948
3947
  export declare const OrderManualPaymentsApiFp: (configuration?: Configuration) => {
3949
3948
  getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
3950
- getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
3951
3949
  };
3952
3950
 
3953
3951
  export declare interface OrderManualPaymentsApiInterface {
3954
3952
  getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
3955
- getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
3956
3953
  }
3957
3954
 
3958
3955
  export declare interface OrderManualPaymentsWithBankTransfersDTO {
@@ -4125,6 +4122,8 @@ export declare interface OrganizationCashDepositSchemeDTO {
4125
4122
  export declare interface OrganizationDTO {
4126
4123
  id: string;
4127
4124
  parentId: string;
4125
+ parentOrganizationGroupId?: string;
4126
+ organizationGroupId?: string;
4128
4127
  name: string;
4129
4128
  attributes?: OrganizationAttributesDTO;
4130
4129
  settings?: OrganizationSettingsDTO;
@@ -4565,6 +4564,8 @@ export declare enum OrganizationVerticalDTOTypeEnum {
4565
4564
  export declare interface OrganizationWithCashDepositDTO {
4566
4565
  id: string;
4567
4566
  parentId: string;
4567
+ parentOrganizationGroupId?: string;
4568
+ organizationGroupId?: string;
4568
4569
  name: string;
4569
4570
  attributes?: OrganizationAttributesDTO;
4570
4571
  settings?: OrganizationSettingsDTO;
@@ -4587,6 +4588,8 @@ export declare enum OrganizationWithCashDepositDTOOrganizationTypeIdEnum {
4587
4588
  export declare interface OrganizationWithRepositsAndRoles {
4588
4589
  id: string;
4589
4590
  parentId: string;
4591
+ parentOrganizationGroupId?: string;
4592
+ organizationGroupId?: string;
4590
4593
  name: string;
4591
4594
  attributes?: OrganizationAttributesDTO;
4592
4595
  settings?: OrganizationSettingsDTO;
@@ -4619,6 +4622,8 @@ export declare enum OrganizationWithRepositsAndRolesRolesEnum {
4619
4622
  export declare interface OrganizationWithRoles {
4620
4623
  id: string;
4621
4624
  parentId: string;
4625
+ parentOrganizationGroupId?: string;
4626
+ organizationGroupId?: string;
4622
4627
  name: string;
4623
4628
  attributes?: OrganizationAttributesDTO;
4624
4629
  settings?: OrganizationSettingsDTO;
@@ -4874,6 +4879,7 @@ export declare class PaymentPlansApi extends BaseAPI implements PaymentPlansApiI
4874
4879
  changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): AxiosPromise<Response>;
4875
4880
  createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): AxiosPromise<PaymentPlanDTO>;
4876
4881
  deletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
4882
+ forceDeletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
4877
4883
  getPaymentPlanById(id: string, options?: any): AxiosPromise<PaymentPlanDTO>;
4878
4884
  getPaymentPlanPropertyAddressById(id: string, options?: any): AxiosPromise<AddressDTO>;
4879
4885
  getSetupIntentSecret(id: string, options?: any): AxiosPromise<SetupIntentSecretDTO>;
@@ -4883,6 +4889,7 @@ export declare const PaymentPlansApiAxiosParamCreator: (configuration?: Configur
4883
4889
  changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): RequestArgs;
4884
4890
  createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): RequestArgs;
4885
4891
  deletePaymentPlanById(id: string, options?: any): RequestArgs;
4892
+ forceDeletePaymentPlanById(id: string, options?: any): RequestArgs;
4886
4893
  getPaymentPlanById(id: string, options?: any): RequestArgs;
4887
4894
  getPaymentPlanPropertyAddressById(id: string, options?: any): RequestArgs;
4888
4895
  getSetupIntentSecret(id: string, options?: any): RequestArgs;
@@ -4892,6 +4899,7 @@ export declare const PaymentPlansApiFactory: (configuration?: Configuration, bas
4892
4899
  changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): AxiosPromise<Response>;
4893
4900
  createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): AxiosPromise<PaymentPlanDTO>;
4894
4901
  deletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
4902
+ forceDeletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
4895
4903
  getPaymentPlanById(id: string, options?: any): AxiosPromise<PaymentPlanDTO>;
4896
4904
  getPaymentPlanPropertyAddressById(id: string, options?: any): AxiosPromise<AddressDTO>;
4897
4905
  getSetupIntentSecret(id: string, options?: any): AxiosPromise<SetupIntentSecretDTO>;
@@ -4901,6 +4909,7 @@ export declare const PaymentPlansApiFp: (configuration?: Configuration) => {
4901
4909
  changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
4902
4910
  createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentPlanDTO>;
4903
4911
  deletePaymentPlanById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
4912
+ forceDeletePaymentPlanById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
4904
4913
  getPaymentPlanById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentPlanDTO>;
4905
4914
  getPaymentPlanPropertyAddressById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressDTO>;
4906
4915
  getSetupIntentSecret(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<SetupIntentSecretDTO>;
@@ -4910,6 +4919,7 @@ export declare interface PaymentPlansApiInterface {
4910
4919
  changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): AxiosPromise<{}>;
4911
4920
  createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): AxiosPromise<PaymentPlanDTO>;
4912
4921
  deletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
4922
+ forceDeletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
4913
4923
  getPaymentPlanById(id: string, options?: any): AxiosPromise<PaymentPlanDTO>;
4914
4924
  getPaymentPlanPropertyAddressById(id: string, options?: any): AxiosPromise<AddressDTO>;
4915
4925
  getSetupIntentSecret(id: string, options?: any): AxiosPromise<SetupIntentSecretDTO>;
@@ -7089,6 +7099,8 @@ export declare function updateOrganization(id: string, updateOrganizationDTO: Up
7089
7099
 
7090
7100
  export declare interface UpdateOrganizationDTO {
7091
7101
  parentId?: string;
7102
+ parentOrganizationGroupId?: string;
7103
+ organizationGroupId?: string;
7092
7104
  name?: string;
7093
7105
  attributes?: OrganizationAttributesDTO;
7094
7106
  settings?: OrganizationSettingsDTO;
@@ -7260,7 +7272,8 @@ export declare enum UserDTOInternalRolesEnum {
7260
7272
  CLAIMUPDATEAUTOCHARGE = "CLAIM_UPDATE_AUTO_CHARGE",
7261
7273
  CLAIMITEMCORRECTIVECHANGE = "CLAIM_ITEM_CORRECTIVE_CHANGE",
7262
7274
  CLAIMDELETE = "CLAIM_DELETE",
7263
- BANKTRANSACTIONIMPORT = "BANK_TRANSACTION_IMPORT"
7275
+ BANKTRANSACTIONIMPORT = "BANK_TRANSACTION_IMPORT",
7276
+ PAYMENTPLANDELETEFORCE = "PAYMENT_PLAN_DELETE_FORCE"
7264
7277
  }
7265
7278
 
7266
7279
  export declare enum UserDTOUserTypeIdEnum {