@reposit/api-client 6.70.0-alpha.0 → 6.71.0-alpha.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 +22 -10
- package/dist/index.js +1 -1
- package/dist/index.mjs +869 -863
- package/package.json +1 -1
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;
|
|
@@ -2372,6 +2374,8 @@ export declare function deleteOrganizationRecipient(id: string, organizationId:
|
|
|
2372
2374
|
|
|
2373
2375
|
export declare function deletePaymentPlanById(id: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2374
2376
|
|
|
2377
|
+
export declare function deletePaymentPlanInstalment(id: string, paymentPlanId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<object>;
|
|
2378
|
+
|
|
2375
2379
|
export declare function deletePolicyDocument(policyId: string, documentId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
2376
2380
|
|
|
2377
2381
|
export declare function deletePreTenancyDocument(tenancyId: string, documentId: string, configuration?: Configuration, axios?: AxiosInstance, basePath?: string, options?: any): Promise<void>;
|
|
@@ -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
|
|
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 {
|
|
@@ -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;
|
|
@@ -4842,30 +4847,35 @@ export declare interface PaymentPlanInstalmentPayResponseDTO {
|
|
|
4842
4847
|
|
|
4843
4848
|
export declare class PaymentPlanInstalmentsApi extends BaseAPI implements PaymentPlanInstalmentsApiInterface {
|
|
4844
4849
|
deferPaymentPlanInstalment(id: string, paymentPlanId: string, deferPaymentPlanInstalmentDTO: DeferPaymentPlanInstalmentDTO, options?: any): AxiosPromise<object>;
|
|
4850
|
+
deletePaymentPlanInstalment(id: string, paymentPlanId: string, options?: any): AxiosPromise<object>;
|
|
4845
4851
|
getInstalmentById(id: string, paymentPlanId: string, options?: any): AxiosPromise<PaymentPlanInstalmentDTO>;
|
|
4846
4852
|
getInstalmentPaymentIntentSecret(id: string, paymentPlanId: string, options?: any): AxiosPromise<PaymentPlanInstalmentPayResponseDTO>;
|
|
4847
4853
|
}
|
|
4848
4854
|
|
|
4849
4855
|
export declare const PaymentPlanInstalmentsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
4850
4856
|
deferPaymentPlanInstalment(id: string, paymentPlanId: string, deferPaymentPlanInstalmentDTO: DeferPaymentPlanInstalmentDTO, options?: any): RequestArgs;
|
|
4857
|
+
deletePaymentPlanInstalment(id: string, paymentPlanId: string, options?: any): RequestArgs;
|
|
4851
4858
|
getInstalmentById(id: string, paymentPlanId: string, options?: any): RequestArgs;
|
|
4852
4859
|
getInstalmentPaymentIntentSecret(id: string, paymentPlanId: string, options?: any): RequestArgs;
|
|
4853
4860
|
};
|
|
4854
4861
|
|
|
4855
4862
|
export declare const PaymentPlanInstalmentsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
4856
4863
|
deferPaymentPlanInstalment(id: string, paymentPlanId: string, deferPaymentPlanInstalmentDTO: DeferPaymentPlanInstalmentDTO, options?: any): AxiosPromise<object>;
|
|
4864
|
+
deletePaymentPlanInstalment(id: string, paymentPlanId: string, options?: any): AxiosPromise<object>;
|
|
4857
4865
|
getInstalmentById(id: string, paymentPlanId: string, options?: any): AxiosPromise<PaymentPlanInstalmentDTO>;
|
|
4858
4866
|
getInstalmentPaymentIntentSecret(id: string, paymentPlanId: string, options?: any): AxiosPromise<PaymentPlanInstalmentPayResponseDTO>;
|
|
4859
4867
|
};
|
|
4860
4868
|
|
|
4861
4869
|
export declare const PaymentPlanInstalmentsApiFp: (configuration?: Configuration) => {
|
|
4862
4870
|
deferPaymentPlanInstalment(id: string, paymentPlanId: string, deferPaymentPlanInstalmentDTO: DeferPaymentPlanInstalmentDTO, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
4871
|
+
deletePaymentPlanInstalment(id: string, paymentPlanId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>;
|
|
4863
4872
|
getInstalmentById(id: string, paymentPlanId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentPlanInstalmentDTO>;
|
|
4864
4873
|
getInstalmentPaymentIntentSecret(id: string, paymentPlanId: string, options?: any): (axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentPlanInstalmentPayResponseDTO>;
|
|
4865
4874
|
};
|
|
4866
4875
|
|
|
4867
4876
|
export declare interface PaymentPlanInstalmentsApiInterface {
|
|
4868
4877
|
deferPaymentPlanInstalment(id: string, paymentPlanId: string, deferPaymentPlanInstalmentDTO: DeferPaymentPlanInstalmentDTO, options?: any): AxiosPromise<object>;
|
|
4878
|
+
deletePaymentPlanInstalment(id: string, paymentPlanId: string, options?: any): AxiosPromise<object>;
|
|
4869
4879
|
getInstalmentById(id: string, paymentPlanId: string, options?: any): AxiosPromise<PaymentPlanInstalmentDTO>;
|
|
4870
4880
|
getInstalmentPaymentIntentSecret(id: string, paymentPlanId: string, options?: any): AxiosPromise<PaymentPlanInstalmentPayResponseDTO>;
|
|
4871
4881
|
}
|
|
@@ -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,7 @@ export declare enum UserDTOInternalRolesEnum {
|
|
|
7260
7272
|
CLAIMUPDATEAUTOCHARGE = "CLAIM_UPDATE_AUTO_CHARGE",
|
|
7261
7273
|
CLAIMITEMCORRECTIVECHANGE = "CLAIM_ITEM_CORRECTIVE_CHANGE",
|
|
7262
7274
|
CLAIMDELETE = "CLAIM_DELETE",
|
|
7263
|
-
|
|
7275
|
+
PAYMENTPLANINSTALMENTDELETE = "PAYMENT_PLAN_INSTALMENT_DELETE"
|
|
7264
7276
|
}
|
|
7265
7277
|
|
|
7266
7278
|
export declare enum UserDTOUserTypeIdEnum {
|