@reposit/api-client 6.69.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 +33 -15
- package/dist/index.js +1 -1
- package/dist/index.mjs +783 -783
- package/package.json +2 -2
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>;
|
|
@@ -3024,9 +3028,7 @@ export declare function getMySupplier(configuration?: Configuration, axios?: Axi
|
|
|
3024
3028
|
|
|
3025
3029
|
export declare function getOrderCustomerById(orderId: string, customerId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrderCustomerDTO>;
|
|
3026
3030
|
|
|
3027
|
-
export declare function getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<
|
|
3028
|
-
|
|
3029
|
-
export declare function getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<Array<OrderManualPaymentWithBankTransactionDTO>>;
|
|
3031
|
+
export declare function getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrderManualPaymentsWithBankTransfersDTO>;
|
|
3030
3032
|
|
|
3031
3033
|
export declare function getOrganizationMetrics(organizationId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<OrganizationMetricsDTO>;
|
|
3032
3034
|
|
|
@@ -3880,7 +3882,7 @@ export declare interface OrderManualPaymentBankTransactionDTO {
|
|
|
3880
3882
|
type?: string;
|
|
3881
3883
|
debit?: number;
|
|
3882
3884
|
credit?: number;
|
|
3883
|
-
bulkImportRow
|
|
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
|
|
3918
|
+
bulkImport?: OrderManualPaymentBulkImportDTO;
|
|
3917
3919
|
}
|
|
3918
3920
|
|
|
3919
3921
|
export declare enum OrderManualPaymentBulkImportRowDTOStatusEnum {
|
|
@@ -3931,28 +3933,28 @@ export declare interface OrderManualPaymentDTO {
|
|
|
3931
3933
|
}
|
|
3932
3934
|
|
|
3933
3935
|
export declare class OrderManualPaymentsApi extends BaseAPI implements OrderManualPaymentsApiInterface {
|
|
3934
|
-
getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<
|
|
3935
|
-
getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<OrderManualPaymentWithBankTransactionDTO[]>;
|
|
3936
|
+
getOrderManualPaymentsByClaimWithBankTransfers(claimId: 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
|
-
getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<
|
|
3945
|
-
getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): AxiosPromise<OrderManualPaymentWithBankTransactionDTO[]>;
|
|
3944
|
+
getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
|
|
3946
3945
|
};
|
|
3947
3946
|
|
|
3948
3947
|
export declare const OrderManualPaymentsApiFp: (configuration?: Configuration) => {
|
|
3949
|
-
getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3950
|
-
getOrderManualPaymentsByTenancyOrderWithBankTransfers(torId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderManualPaymentWithBankTransactionDTO>>;
|
|
3948
|
+
getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
|
|
3951
3949
|
};
|
|
3952
3950
|
|
|
3953
3951
|
export declare interface OrderManualPaymentsApiInterface {
|
|
3954
|
-
getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<
|
|
3955
|
-
|
|
3952
|
+
getOrderManualPaymentsByClaimWithBankTransfers(claimId: string, options?: any): AxiosPromise<OrderManualPaymentsWithBankTransfersDTO>;
|
|
3953
|
+
}
|
|
3954
|
+
|
|
3955
|
+
export declare interface OrderManualPaymentsWithBankTransfersDTO {
|
|
3956
|
+
manualPayments: Array<OrderManualPaymentWithBankTransactionDTO>;
|
|
3957
|
+
manualPaymentsTotal: number;
|
|
3956
3958
|
}
|
|
3957
3959
|
|
|
3958
3960
|
export declare interface OrderManualPaymentWithBankTransactionDTO {
|
|
@@ -4120,6 +4122,8 @@ export declare interface OrganizationCashDepositSchemeDTO {
|
|
|
4120
4122
|
export declare interface OrganizationDTO {
|
|
4121
4123
|
id: string;
|
|
4122
4124
|
parentId: string;
|
|
4125
|
+
parentOrganizationGroupId?: string;
|
|
4126
|
+
organizationGroupId?: string;
|
|
4123
4127
|
name: string;
|
|
4124
4128
|
attributes?: OrganizationAttributesDTO;
|
|
4125
4129
|
settings?: OrganizationSettingsDTO;
|
|
@@ -4560,6 +4564,8 @@ export declare enum OrganizationVerticalDTOTypeEnum {
|
|
|
4560
4564
|
export declare interface OrganizationWithCashDepositDTO {
|
|
4561
4565
|
id: string;
|
|
4562
4566
|
parentId: string;
|
|
4567
|
+
parentOrganizationGroupId?: string;
|
|
4568
|
+
organizationGroupId?: string;
|
|
4563
4569
|
name: string;
|
|
4564
4570
|
attributes?: OrganizationAttributesDTO;
|
|
4565
4571
|
settings?: OrganizationSettingsDTO;
|
|
@@ -4582,6 +4588,8 @@ export declare enum OrganizationWithCashDepositDTOOrganizationTypeIdEnum {
|
|
|
4582
4588
|
export declare interface OrganizationWithRepositsAndRoles {
|
|
4583
4589
|
id: string;
|
|
4584
4590
|
parentId: string;
|
|
4591
|
+
parentOrganizationGroupId?: string;
|
|
4592
|
+
organizationGroupId?: string;
|
|
4585
4593
|
name: string;
|
|
4586
4594
|
attributes?: OrganizationAttributesDTO;
|
|
4587
4595
|
settings?: OrganizationSettingsDTO;
|
|
@@ -4614,6 +4622,8 @@ export declare enum OrganizationWithRepositsAndRolesRolesEnum {
|
|
|
4614
4622
|
export declare interface OrganizationWithRoles {
|
|
4615
4623
|
id: string;
|
|
4616
4624
|
parentId: string;
|
|
4625
|
+
parentOrganizationGroupId?: string;
|
|
4626
|
+
organizationGroupId?: string;
|
|
4617
4627
|
name: string;
|
|
4618
4628
|
attributes?: OrganizationAttributesDTO;
|
|
4619
4629
|
settings?: OrganizationSettingsDTO;
|
|
@@ -4869,6 +4879,7 @@ export declare class PaymentPlansApi extends BaseAPI implements PaymentPlansApiI
|
|
|
4869
4879
|
changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): AxiosPromise<Response>;
|
|
4870
4880
|
createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): AxiosPromise<PaymentPlanDTO>;
|
|
4871
4881
|
deletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
|
|
4882
|
+
forceDeletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
|
|
4872
4883
|
getPaymentPlanById(id: string, options?: any): AxiosPromise<PaymentPlanDTO>;
|
|
4873
4884
|
getPaymentPlanPropertyAddressById(id: string, options?: any): AxiosPromise<AddressDTO>;
|
|
4874
4885
|
getSetupIntentSecret(id: string, options?: any): AxiosPromise<SetupIntentSecretDTO>;
|
|
@@ -4878,6 +4889,7 @@ export declare const PaymentPlansApiAxiosParamCreator: (configuration?: Configur
|
|
|
4878
4889
|
changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): RequestArgs;
|
|
4879
4890
|
createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): RequestArgs;
|
|
4880
4891
|
deletePaymentPlanById(id: string, options?: any): RequestArgs;
|
|
4892
|
+
forceDeletePaymentPlanById(id: string, options?: any): RequestArgs;
|
|
4881
4893
|
getPaymentPlanById(id: string, options?: any): RequestArgs;
|
|
4882
4894
|
getPaymentPlanPropertyAddressById(id: string, options?: any): RequestArgs;
|
|
4883
4895
|
getSetupIntentSecret(id: string, options?: any): RequestArgs;
|
|
@@ -4887,6 +4899,7 @@ export declare const PaymentPlansApiFactory: (configuration?: Configuration, bas
|
|
|
4887
4899
|
changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): AxiosPromise<Response>;
|
|
4888
4900
|
createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): AxiosPromise<PaymentPlanDTO>;
|
|
4889
4901
|
deletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
|
|
4902
|
+
forceDeletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
|
|
4890
4903
|
getPaymentPlanById(id: string, options?: any): AxiosPromise<PaymentPlanDTO>;
|
|
4891
4904
|
getPaymentPlanPropertyAddressById(id: string, options?: any): AxiosPromise<AddressDTO>;
|
|
4892
4905
|
getSetupIntentSecret(id: string, options?: any): AxiosPromise<SetupIntentSecretDTO>;
|
|
@@ -4896,6 +4909,7 @@ export declare const PaymentPlansApiFp: (configuration?: Configuration) => {
|
|
|
4896
4909
|
changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<Response>;
|
|
4897
4910
|
createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentPlanDTO>;
|
|
4898
4911
|
deletePaymentPlanById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
4912
|
+
forceDeletePaymentPlanById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
4899
4913
|
getPaymentPlanById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentPlanDTO>;
|
|
4900
4914
|
getPaymentPlanPropertyAddressById(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddressDTO>;
|
|
4901
4915
|
getSetupIntentSecret(id: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<SetupIntentSecretDTO>;
|
|
@@ -4905,6 +4919,7 @@ export declare interface PaymentPlansApiInterface {
|
|
|
4905
4919
|
changeInstalmentDates(id: string, changeInstalmentDatesDTO: ChangeInstalmentDatesDTO, options?: any): AxiosPromise<{}>;
|
|
4906
4920
|
createPaymentPlan(createPaymentPlanDTO: CreatePaymentPlanDTO, options?: any): AxiosPromise<PaymentPlanDTO>;
|
|
4907
4921
|
deletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
|
|
4922
|
+
forceDeletePaymentPlanById(id: string, options?: any): AxiosPromise<object>;
|
|
4908
4923
|
getPaymentPlanById(id: string, options?: any): AxiosPromise<PaymentPlanDTO>;
|
|
4909
4924
|
getPaymentPlanPropertyAddressById(id: string, options?: any): AxiosPromise<AddressDTO>;
|
|
4910
4925
|
getSetupIntentSecret(id: string, options?: any): AxiosPromise<SetupIntentSecretDTO>;
|
|
@@ -7084,6 +7099,8 @@ export declare function updateOrganization(id: string, updateOrganizationDTO: Up
|
|
|
7084
7099
|
|
|
7085
7100
|
export declare interface UpdateOrganizationDTO {
|
|
7086
7101
|
parentId?: string;
|
|
7102
|
+
parentOrganizationGroupId?: string;
|
|
7103
|
+
organizationGroupId?: string;
|
|
7087
7104
|
name?: string;
|
|
7088
7105
|
attributes?: OrganizationAttributesDTO;
|
|
7089
7106
|
settings?: OrganizationSettingsDTO;
|
|
@@ -7255,7 +7272,8 @@ export declare enum UserDTOInternalRolesEnum {
|
|
|
7255
7272
|
CLAIMUPDATEAUTOCHARGE = "CLAIM_UPDATE_AUTO_CHARGE",
|
|
7256
7273
|
CLAIMITEMCORRECTIVECHANGE = "CLAIM_ITEM_CORRECTIVE_CHANGE",
|
|
7257
7274
|
CLAIMDELETE = "CLAIM_DELETE",
|
|
7258
|
-
BANKTRANSACTIONIMPORT = "BANK_TRANSACTION_IMPORT"
|
|
7275
|
+
BANKTRANSACTIONIMPORT = "BANK_TRANSACTION_IMPORT",
|
|
7276
|
+
PAYMENTPLANDELETEFORCE = "PAYMENT_PLAN_DELETE_FORCE"
|
|
7259
7277
|
}
|
|
7260
7278
|
|
|
7261
7279
|
export declare enum UserDTOUserTypeIdEnum {
|