@inceptionbg/main 1.0.22 → 1.0.23
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 +64 -58
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -787,82 +787,88 @@ interface IDocumentAny extends Partial<IInvoice>, Partial<IShipment>, Partial<IO
|
|
|
787
787
|
}
|
|
788
788
|
type IDocumentCategory = 'DOCUMENT' | 'INVOICE' | 'ARCHIVE' | 'SHIPMENT';
|
|
789
789
|
interface IDocumentSearch {
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
790
|
+
accountsUuid?: string[];
|
|
791
|
+
approvalProcessEndTimeFrom?: string;
|
|
792
|
+
approvalProcessEndTimeTo?: string;
|
|
793
|
+
approvalStepGroupUuid?: string;
|
|
794
|
+
approvalUuid?: string;
|
|
795
|
+
approvalUuids?: string[];
|
|
796
|
+
archived?: boolean;
|
|
797
797
|
bestPaidBeforeFrom?: string;
|
|
798
798
|
bestPaidBeforeTo?: string;
|
|
799
|
-
|
|
800
|
-
|
|
799
|
+
category?: IDocumentCategory;
|
|
800
|
+
concluded?: boolean;
|
|
801
|
+
contractNumber?: string;
|
|
802
|
+
contractNumberSef?: string;
|
|
803
|
+
contractUuid?: string;
|
|
804
|
+
costCentersUuid?: string;
|
|
805
|
+
createdDateFrom?: string;
|
|
806
|
+
createdDateTo?: string;
|
|
807
|
+
currencyUuid?: string;
|
|
808
|
+
dateFrom?: string;
|
|
809
|
+
dateTo?: string;
|
|
810
|
+
documentApprovalStatus?: string;
|
|
811
|
+
documentNumber?: string;
|
|
812
|
+
documentNumberLike?: string;
|
|
813
|
+
documentSent?: boolean;
|
|
814
|
+
documentTypeUuid?: string;
|
|
815
|
+
documentTypesUuid?: string[];
|
|
816
|
+
documentYearMonth?: string;
|
|
817
|
+
domesticCurrency?: boolean;
|
|
801
818
|
evidenceDateFrom?: string;
|
|
802
819
|
evidenceDateTo?: string;
|
|
803
|
-
|
|
804
|
-
|
|
820
|
+
evidenceNumberLike?: string;
|
|
821
|
+
excludeDocumentUuid?: string;
|
|
822
|
+
excludeSefStatuses?: ISendStatus[];
|
|
823
|
+
factoring?: boolean;
|
|
824
|
+
foreignCurrency?: boolean;
|
|
825
|
+
income?: boolean;
|
|
826
|
+
internalReceiverNotBlank?: boolean;
|
|
827
|
+
internalRoutingNumberLike?: string;
|
|
828
|
+
invoice?: boolean;
|
|
805
829
|
issueDateFrom?: string;
|
|
806
830
|
issueDateTo?: string;
|
|
807
|
-
nameLike?: string;
|
|
808
|
-
issuerUuid?: string;
|
|
809
|
-
receiverUuid?: string;
|
|
810
831
|
issuerOrReceiverUuid?: string;
|
|
811
|
-
|
|
812
|
-
documentNumberLike?: string;
|
|
813
|
-
excludeDocumentUuid?: string;
|
|
814
|
-
invoice?: boolean;
|
|
815
|
-
income?: boolean;
|
|
816
|
-
archived?: boolean;
|
|
817
|
-
documentApprovalStatus?: string;
|
|
818
|
-
sefSendStatus?: ISendStatus;
|
|
819
|
-
receiver?: ISimpleObject;
|
|
820
|
-
issuer?: ISimpleObject;
|
|
821
|
-
documentType?: ISimpleObject;
|
|
822
|
-
sort?: string;
|
|
823
|
-
plannedPaymentDateTo?: string;
|
|
824
|
-
plannedPaymentDateFrom?: string;
|
|
832
|
+
issuerUuid?: string;
|
|
825
833
|
latestDocumentSendStatus?: ISendStatus;
|
|
826
|
-
|
|
834
|
+
latestDocumentSendStatuses?: ISendStatus[];
|
|
835
|
+
nameLike?: string;
|
|
827
836
|
onHold?: boolean;
|
|
828
837
|
onHoldByUserUuid?: string;
|
|
838
|
+
orunUuids?: string[];
|
|
839
|
+
paymentDateFrom?: string;
|
|
840
|
+
paymentDateTo?: string;
|
|
841
|
+
pioInternalCodeBookReportCustomFilter?: boolean;
|
|
842
|
+
plannedPaymentDateFrom?: string;
|
|
843
|
+
plannedPaymentDateTo?: string;
|
|
844
|
+
receiverUuid?: string;
|
|
845
|
+
registerUuid?: string;
|
|
829
846
|
sefDeadlineDaysFrom?: string;
|
|
830
847
|
sefDeadlineDaysTo?: string;
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
orunUuids?: string[];
|
|
835
|
-
oruns?: IOrganizationalUnit[];
|
|
836
|
-
approvals?: ISimpleObject[];
|
|
837
|
-
approvalUuids?: string[];
|
|
838
|
-
internalReceiverNotBlank?: boolean;
|
|
839
|
-
approvalStepGroupUuid?: string;
|
|
840
|
-
contractNumber?: string;
|
|
841
|
-
contractNumberSef?: string;
|
|
842
|
-
costCenters?: ISimpleObjectWithCode;
|
|
843
|
-
costCentersUuid?: string;
|
|
848
|
+
sefInvoice?: boolean;
|
|
849
|
+
sefInvoiceType?: ISefInvoiceType;
|
|
850
|
+
sefSendStatus?: ISendStatus;
|
|
844
851
|
sefStatus?: ISendStatus;
|
|
845
|
-
sefStatuses?: ISendStatus[];
|
|
846
|
-
excludeSefStatuses?: ISendStatus[];
|
|
847
852
|
sefStatusCommentLike?: string;
|
|
853
|
+
sefStatuses?: ISendStatus[];
|
|
848
854
|
signal?: any;
|
|
849
|
-
|
|
850
|
-
sefInvoice?: boolean;
|
|
851
|
-
sefInvoiceType?: ISefInvoiceType;
|
|
852
|
-
register?: ISimpleObject;
|
|
853
|
-
registerUuid?: string;
|
|
854
|
-
internalRoutingNumberLike?: string;
|
|
855
|
-
year?: number;
|
|
856
|
-
factoring?: boolean;
|
|
855
|
+
sort?: string;
|
|
857
856
|
taxCategory?: ITaxCategory;
|
|
858
|
-
currency?: ISimpleObject;
|
|
859
|
-
currencyUuid?: string;
|
|
860
|
-
domesticCurrency?: boolean;
|
|
861
|
-
foreignCurrency?: boolean;
|
|
862
857
|
totalPriceWithVatInCurrency?: number;
|
|
863
|
-
|
|
864
|
-
|
|
858
|
+
trafficDateFrom?: string;
|
|
859
|
+
trafficDateTo?: string;
|
|
865
860
|
vatPercentage?: string;
|
|
861
|
+
year?: number;
|
|
862
|
+
documentTypesObj?: ISelectData[];
|
|
863
|
+
issuerObj?: ISelectData;
|
|
864
|
+
registerObj?: ISelectData;
|
|
865
|
+
receiverObj?: ISelectData;
|
|
866
|
+
approvalObj?: ISelectData;
|
|
867
|
+
accountsObj?: ISelectData[];
|
|
868
|
+
costCentersObj?: ISelectData[];
|
|
869
|
+
concludedObj?: ISelectData;
|
|
870
|
+
currencyObj?: ISelectData;
|
|
871
|
+
approvalStepGroupObj?: ISelectData;
|
|
866
872
|
}
|
|
867
873
|
declare const SefVatEvidenceTypes: readonly ["INVOICE", "CREDIT_NOTE", "DEBIT_NOTE", "PREPAYMENT_INVOICE", "INTERNAL_ACCOUNT_FOR_TURNOVER_OF_FOREIGNER", "OTHER_INTERNAL_STATEMENT"];
|
|
868
874
|
type SefVatEvidenceType = (typeof SefVatEvidenceTypes)[number];
|