@experteam-mx/ngx-services 20.3.5-dev3.1 → 20.3.6-dev1.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/index.d.ts
CHANGED
|
@@ -694,6 +694,24 @@ declare class ApiBillingSvService {
|
|
|
694
694
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiBillingSvService>;
|
|
695
695
|
}
|
|
696
696
|
|
|
697
|
+
declare enum DepositTypeCode {
|
|
698
|
+
CASH = "CASH",
|
|
699
|
+
CHECK = "CHECK"
|
|
700
|
+
}
|
|
701
|
+
declare enum OpeningStatusCode {
|
|
702
|
+
OPEN = "ABT",
|
|
703
|
+
UPDATING_INVENTORY = "AIV",
|
|
704
|
+
FINISH_INVENTORY_UPDATE = "FIV",
|
|
705
|
+
PRE_CLOSING_REQUEST = "SPR",
|
|
706
|
+
PRE_CLOSING_DENIED = "PRD",
|
|
707
|
+
PRE_CLOSING_APPROVED = "PRA",
|
|
708
|
+
PRE_CLOSING = "PRE",
|
|
709
|
+
CLOSED = "CER"
|
|
710
|
+
}
|
|
711
|
+
declare enum TransferenceTypeCode {
|
|
712
|
+
RETC = "RETC"
|
|
713
|
+
}
|
|
714
|
+
|
|
697
715
|
interface InstallationCountryReferenceCurrency extends ActiveLessSymfonyModel {
|
|
698
716
|
installationId?: number;
|
|
699
717
|
countryReferenceCurrencyId: number;
|
|
@@ -733,6 +751,86 @@ interface TransferenceType extends SymfonyModel {
|
|
|
733
751
|
code: string;
|
|
734
752
|
name: string;
|
|
735
753
|
}
|
|
754
|
+
interface Opening extends SymfonyModel {
|
|
755
|
+
openingId: number;
|
|
756
|
+
installationId: number;
|
|
757
|
+
userId: number;
|
|
758
|
+
roleId: number;
|
|
759
|
+
openingStatus: OpeningStatus;
|
|
760
|
+
closing: Closing | null;
|
|
761
|
+
openingCountryReferenceCurrencies: OpeningCountryReferenceCurrency[] | null;
|
|
762
|
+
openingHistories: OpeningHistory[];
|
|
763
|
+
locationId: number;
|
|
764
|
+
openingTransferences: OpeningTransference[];
|
|
765
|
+
userName: number;
|
|
766
|
+
userUsername: string;
|
|
767
|
+
locationName: string;
|
|
768
|
+
locationCode: string;
|
|
769
|
+
installationNumber: number;
|
|
770
|
+
closingPending?: boolean;
|
|
771
|
+
firstOfTheDay: boolean;
|
|
772
|
+
maxCashExceeded?: boolean;
|
|
773
|
+
}
|
|
774
|
+
interface OpeningStatus extends SymfonyModel {
|
|
775
|
+
code: OpeningStatusCode;
|
|
776
|
+
name: string;
|
|
777
|
+
isActive: boolean;
|
|
778
|
+
}
|
|
779
|
+
interface Closing extends SymfonyModel {
|
|
780
|
+
locationId: number;
|
|
781
|
+
userId: number;
|
|
782
|
+
closingPayments: ClosingPayment[];
|
|
783
|
+
deposits: Deposit[];
|
|
784
|
+
}
|
|
785
|
+
interface ClosingPayment extends SymfonyModel {
|
|
786
|
+
countryReferenceCurrencyId: number;
|
|
787
|
+
amount: number;
|
|
788
|
+
locationId: number;
|
|
789
|
+
paymentId: number;
|
|
790
|
+
}
|
|
791
|
+
interface Deposit extends SymfonyModel {
|
|
792
|
+
locationId: number;
|
|
793
|
+
userId: number;
|
|
794
|
+
countryReferenceCurrencyId: number;
|
|
795
|
+
countryPaymentTypeId: number;
|
|
796
|
+
countryPaymentTypeName: string;
|
|
797
|
+
amount: number;
|
|
798
|
+
number: string;
|
|
799
|
+
currencyCode: string;
|
|
800
|
+
bankAccount: BankAccount;
|
|
801
|
+
}
|
|
802
|
+
interface BankAccount extends SymfonyModel {
|
|
803
|
+
number: string;
|
|
804
|
+
name: string;
|
|
805
|
+
bank: Bank;
|
|
806
|
+
bankAccountType: BankAccountType;
|
|
807
|
+
countryReferenceCurrencyId: number;
|
|
808
|
+
sapNumber: string;
|
|
809
|
+
operationTypeId: number;
|
|
810
|
+
depositTypeCode: DepositTypeCode[];
|
|
811
|
+
isDefault: boolean;
|
|
812
|
+
label: string;
|
|
813
|
+
}
|
|
814
|
+
interface Bank extends SymfonyModel {
|
|
815
|
+
name: string;
|
|
816
|
+
companyCountryId: number;
|
|
817
|
+
}
|
|
818
|
+
interface BankAccountType extends SymfonyModel {
|
|
819
|
+
code: string;
|
|
820
|
+
name: string;
|
|
821
|
+
}
|
|
822
|
+
interface OpeningHistory extends SymfonyModel {
|
|
823
|
+
userId: number;
|
|
824
|
+
openingStatus: OpeningStatus;
|
|
825
|
+
description: string;
|
|
826
|
+
}
|
|
827
|
+
interface OpeningCountryReferenceCurrency extends SymfonyModel {
|
|
828
|
+
countryReferenceCurrencyId: number;
|
|
829
|
+
balanceInitial: number;
|
|
830
|
+
balanceFinal: number;
|
|
831
|
+
currencyCode: string;
|
|
832
|
+
installationCountryReferenceCurrency: InstallationCountryReferenceCurrency | null;
|
|
833
|
+
}
|
|
736
834
|
|
|
737
835
|
type InstallationCountryReferenceCurrenciesOut = {
|
|
738
836
|
total: number;
|
|
@@ -769,6 +867,45 @@ type DepositSlipOut = {
|
|
|
769
867
|
base64: string;
|
|
770
868
|
};
|
|
771
869
|
};
|
|
870
|
+
type OpeningsOut = {
|
|
871
|
+
openings: Opening[];
|
|
872
|
+
total: number;
|
|
873
|
+
};
|
|
874
|
+
type OpeningIn = {
|
|
875
|
+
roleId: number;
|
|
876
|
+
installationId: number;
|
|
877
|
+
};
|
|
878
|
+
type OpeningOut = {
|
|
879
|
+
opening: Opening;
|
|
880
|
+
};
|
|
881
|
+
type BankAccountsOut = {
|
|
882
|
+
bankAccounts: BankAccount[];
|
|
883
|
+
total: number;
|
|
884
|
+
};
|
|
885
|
+
type OpeningPreClosingRequestIn = {
|
|
886
|
+
approved: boolean;
|
|
887
|
+
};
|
|
888
|
+
type ClosingIn = {
|
|
889
|
+
deposits: {
|
|
890
|
+
countryReferenceCurrencyId: number;
|
|
891
|
+
cash: {
|
|
892
|
+
deposit: boolean;
|
|
893
|
+
bankAccountId: number | null;
|
|
894
|
+
partialDeposit: boolean;
|
|
895
|
+
depositAmount: number | null;
|
|
896
|
+
};
|
|
897
|
+
checkingBankAccountId: number | null;
|
|
898
|
+
}[];
|
|
899
|
+
};
|
|
900
|
+
type ClosingOut = {
|
|
901
|
+
closing: Closing;
|
|
902
|
+
};
|
|
903
|
+
type DepositIn = {
|
|
904
|
+
number: string;
|
|
905
|
+
};
|
|
906
|
+
type DepositOut = {
|
|
907
|
+
deposit: Deposit;
|
|
908
|
+
};
|
|
772
909
|
|
|
773
910
|
declare class ApiCashOperationsService {
|
|
774
911
|
private environments;
|
|
@@ -828,6 +965,76 @@ declare class ApiCashOperationsService {
|
|
|
828
965
|
* @returns An Observable that emits the deposit slip data
|
|
829
966
|
*/
|
|
830
967
|
getDepositSlip(id: number): Observable<DepositSlipOut>;
|
|
968
|
+
/**
|
|
969
|
+
* Creates a batch deposit slip for the provided deposit IDs.
|
|
970
|
+
*
|
|
971
|
+
* @param {number[]} ids - The deposit IDs to include in the batch slip.
|
|
972
|
+
* @returns {Observable<DepositSlipOut>} The generated deposit slip.
|
|
973
|
+
*/
|
|
974
|
+
postDepositsBatchSlip(ids: number[]): Observable<DepositSlipOut>;
|
|
975
|
+
/**
|
|
976
|
+
* Creates a new opening.
|
|
977
|
+
*
|
|
978
|
+
* @param {OpeningIn} body - The data to create the new opening.
|
|
979
|
+
* @returns {Observable<OpeningOut>} An observable that emits the newly created opening.
|
|
980
|
+
*/
|
|
981
|
+
postOpening(body: OpeningIn): Observable<OpeningOut>;
|
|
982
|
+
/**
|
|
983
|
+
* Retrieves a specific opening by its ID.
|
|
984
|
+
*
|
|
985
|
+
* @param {number} id - The ID of the opening to retrieve.
|
|
986
|
+
* @returns {Observable<OpeningOut>} The requested opening.
|
|
987
|
+
*/
|
|
988
|
+
getOpening(id: number): Observable<OpeningOut>;
|
|
989
|
+
/**
|
|
990
|
+
* Retrieves openings using the provided query parameters.
|
|
991
|
+
*
|
|
992
|
+
* @param {QueryParams} params - Query parameters for filtering openings.
|
|
993
|
+
* @returns {Observable<OpeningsOut>} The list of openings.
|
|
994
|
+
*/
|
|
995
|
+
getOpenings(params: QueryParams): Observable<OpeningsOut>;
|
|
996
|
+
/**
|
|
997
|
+
* Retrieves bank accounts using the provided query parameters.
|
|
998
|
+
*
|
|
999
|
+
* @param {QueryParams} params - Query parameters for filtering bank accounts.
|
|
1000
|
+
* @returns {Observable<BankAccountsOut>} The list of bank accounts.
|
|
1001
|
+
*/
|
|
1002
|
+
getBankAccounts(params: QueryParams): Observable<BankAccountsOut>;
|
|
1003
|
+
/**
|
|
1004
|
+
* Creates a pre-closing request for the current opening.
|
|
1005
|
+
*
|
|
1006
|
+
* @returns {Observable<{}>} The pre-closing request response.
|
|
1007
|
+
*/
|
|
1008
|
+
postOpeningPreClosingRequest(): Observable<{}>;
|
|
1009
|
+
/**
|
|
1010
|
+
* Updates a pre-closing request for the specified opening.
|
|
1011
|
+
*
|
|
1012
|
+
* @param {number} id - The ID of the opening to update.
|
|
1013
|
+
* @param {OpeningPreClosingRequestIn} body - The updated pre-closing request data.
|
|
1014
|
+
* @returns {Observable<OpeningOut>} The updated opening.
|
|
1015
|
+
*/
|
|
1016
|
+
patchOpeningPreClosingRequest(id: number, body: OpeningPreClosingRequestIn): Observable<OpeningOut>;
|
|
1017
|
+
/**
|
|
1018
|
+
* Creates a pre-closing for the current opening.
|
|
1019
|
+
*
|
|
1020
|
+
* @returns {Observable<{}>} The pre-closing response.
|
|
1021
|
+
*/
|
|
1022
|
+
postOpeningPreClosing(): Observable<{}>;
|
|
1023
|
+
/**
|
|
1024
|
+
* Creates a closing record.
|
|
1025
|
+
*
|
|
1026
|
+
* @param {ClosingIn} body - The closing data to submit.
|
|
1027
|
+
* @returns {Observable<ClosingOut>} The created closing record.
|
|
1028
|
+
*/
|
|
1029
|
+
postClosing(body: ClosingIn): Observable<ClosingOut>;
|
|
1030
|
+
/**
|
|
1031
|
+
* Updates an existing deposit.
|
|
1032
|
+
*
|
|
1033
|
+
* @param {number} id - The ID of the deposit to update.
|
|
1034
|
+
* @param {DepositIn} body - The updated deposit data.
|
|
1035
|
+
* @returns {Observable<DepositOut>} The updated deposit.
|
|
1036
|
+
*/
|
|
1037
|
+
patchDeposit(id: number, body: DepositIn): Observable<DepositOut>;
|
|
831
1038
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiCashOperationsService, never>;
|
|
832
1039
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiCashOperationsService>;
|
|
833
1040
|
}
|
|
@@ -1053,6 +1260,19 @@ interface BusinessPartyTraderType extends SymfonyModel {
|
|
|
1053
1260
|
interface PackageLocation extends SymfonyModel {
|
|
1054
1261
|
name: string;
|
|
1055
1262
|
}
|
|
1263
|
+
interface CountryToExportReason extends ApiModel {
|
|
1264
|
+
name: string;
|
|
1265
|
+
}
|
|
1266
|
+
interface ExportReason extends SymfonyModel {
|
|
1267
|
+
code: string;
|
|
1268
|
+
name: string;
|
|
1269
|
+
exportReasonType: ExportReasonTypes;
|
|
1270
|
+
countryIds: CountryToExportReason[];
|
|
1271
|
+
}
|
|
1272
|
+
interface ExportReasonTypes extends SymfonyModel {
|
|
1273
|
+
code: string;
|
|
1274
|
+
name: string;
|
|
1275
|
+
}
|
|
1056
1276
|
|
|
1057
1277
|
type OperationTypesOut = {
|
|
1058
1278
|
total: number;
|
|
@@ -1273,6 +1493,23 @@ type PackageLocationsData = {
|
|
|
1273
1493
|
total: number;
|
|
1274
1494
|
packageLocations: PackageLocation[];
|
|
1275
1495
|
};
|
|
1496
|
+
type ExportReasonsOut = {
|
|
1497
|
+
exportReasons: ExportReason[];
|
|
1498
|
+
total: number;
|
|
1499
|
+
};
|
|
1500
|
+
type ExportReasonIn = {
|
|
1501
|
+
countryIds: number[];
|
|
1502
|
+
name: string;
|
|
1503
|
+
exportReasonType: number | null;
|
|
1504
|
+
isActive: boolean;
|
|
1505
|
+
};
|
|
1506
|
+
type ExportReasonTypesOut = {
|
|
1507
|
+
exportReasonTypes: ExportReasonTypes[];
|
|
1508
|
+
total: number;
|
|
1509
|
+
};
|
|
1510
|
+
type ExportReasonOut = {
|
|
1511
|
+
exportReason: ExportReason;
|
|
1512
|
+
};
|
|
1276
1513
|
|
|
1277
1514
|
declare class ApiCatalogsService {
|
|
1278
1515
|
private environments;
|
|
@@ -1727,6 +1964,44 @@ declare class ApiCatalogsService {
|
|
|
1727
1964
|
* @returns An Observable that emits the package locations data
|
|
1728
1965
|
*/
|
|
1729
1966
|
getPackageLocations(params: QueryParams): Observable<PackageLocationsData>;
|
|
1967
|
+
/**
|
|
1968
|
+
* Retrieves export reasons based on the provided query parameters.
|
|
1969
|
+
* @param params - Query parameters to filter, sort, or paginate export reasons
|
|
1970
|
+
* @returns An Observable that emits the export reasons data
|
|
1971
|
+
*/
|
|
1972
|
+
getExportReasons(params: QueryParams): Observable<ExportReasonsOut>;
|
|
1973
|
+
/**
|
|
1974
|
+
* Creates a new export reason.
|
|
1975
|
+
* @param body - Export reason data to create
|
|
1976
|
+
* @returns An Observable that emits the created export reason
|
|
1977
|
+
*/
|
|
1978
|
+
postExportReason(body: ExportReasonIn): Observable<ExportReasonOut>;
|
|
1979
|
+
/**
|
|
1980
|
+
* Updates an existing export reason.
|
|
1981
|
+
* @param id - Identifier of the export reason to update
|
|
1982
|
+
* @param body - Updated export reason data
|
|
1983
|
+
* @returns An Observable that emits the updated export reason
|
|
1984
|
+
*/
|
|
1985
|
+
putExportReason(id: number, body: ExportReasonIn): Observable<ExportReasonOut>;
|
|
1986
|
+
/**
|
|
1987
|
+
* Deletes an export reason by its identifier.
|
|
1988
|
+
* @param id - Identifier of the export reason to delete
|
|
1989
|
+
* @returns An Observable that emits the operation result
|
|
1990
|
+
*/
|
|
1991
|
+
deleteExportReason(id: number): Observable<{}>;
|
|
1992
|
+
/**
|
|
1993
|
+
* Updates the active status of an export reason.
|
|
1994
|
+
* @param id - Identifier of the export reason
|
|
1995
|
+
* @param isActive - Indicates whether the export reason should be active or inactive
|
|
1996
|
+
* @returns An Observable that emits the operation result
|
|
1997
|
+
*/
|
|
1998
|
+
patchExportReason(id: number, isActive: boolean): Observable<{}>;
|
|
1999
|
+
/**
|
|
2000
|
+
* Retrieves export reason types based on the provided query parameters.
|
|
2001
|
+
* @param params - Query parameters to filter, sort, or paginate export reason types
|
|
2002
|
+
* @returns An Observable that emits the export reason types data
|
|
2003
|
+
*/
|
|
2004
|
+
getExportReasonTypes(params: QueryParams): Observable<ExportReasonTypesOut>;
|
|
1730
2005
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiCatalogsService, never>;
|
|
1731
2006
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiCatalogsService>;
|
|
1732
2007
|
}
|
|
@@ -5483,7 +5758,7 @@ interface DocumentCategory extends LaravelModel {
|
|
|
5483
5758
|
}
|
|
5484
5759
|
interface DocumentRequests extends ActiveLessLaravelModel {
|
|
5485
5760
|
document_id: string;
|
|
5486
|
-
document_status_code:
|
|
5761
|
+
document_status_code: string;
|
|
5487
5762
|
service: string;
|
|
5488
5763
|
times: string[];
|
|
5489
5764
|
observation: string;
|
|
@@ -5492,12 +5767,6 @@ interface DocumentStatus extends LaravelModel {
|
|
|
5492
5767
|
name: string;
|
|
5493
5768
|
code: number;
|
|
5494
5769
|
}
|
|
5495
|
-
declare enum DocumentStatusCode {
|
|
5496
|
-
CANCELLED = 2,
|
|
5497
|
-
COMPLETED = 1,
|
|
5498
|
-
PROCESSING = 0,
|
|
5499
|
-
WITH_ERRORS = 3
|
|
5500
|
-
}
|
|
5501
5770
|
interface Provider extends LaravelModel {
|
|
5502
5771
|
model_type: string;
|
|
5503
5772
|
model_id: number;
|
|
@@ -5735,6 +6004,7 @@ type DocumentTypeRangeIn = {
|
|
|
5735
6004
|
sap_prefix: string;
|
|
5736
6005
|
sap_suffix?: string;
|
|
5737
6006
|
suffix?: string;
|
|
6007
|
+
used_numbers?: number;
|
|
5738
6008
|
valid_since: string;
|
|
5739
6009
|
valid_until: string;
|
|
5740
6010
|
};
|
|
@@ -5757,32 +6027,6 @@ interface DocumentsTypesRangesCurrentStatusOut {
|
|
|
5757
6027
|
}[];
|
|
5758
6028
|
collections: boolean;
|
|
5759
6029
|
}
|
|
5760
|
-
type OperationDocumentCustomerIn = {
|
|
5761
|
-
customer: {
|
|
5762
|
-
customer_type_id: number;
|
|
5763
|
-
company_name: string;
|
|
5764
|
-
full_name: string;
|
|
5765
|
-
email: string;
|
|
5766
|
-
phone_code: string | null;
|
|
5767
|
-
phone_number: string | null;
|
|
5768
|
-
address_line1: string | null;
|
|
5769
|
-
address_line2: string | null;
|
|
5770
|
-
address_line3: string | null;
|
|
5771
|
-
identification_number: string;
|
|
5772
|
-
identification_type_id: number;
|
|
5773
|
-
postal_code: string | null;
|
|
5774
|
-
state: string | null;
|
|
5775
|
-
county_name: string | null;
|
|
5776
|
-
city_name: string | null;
|
|
5777
|
-
country_id: number;
|
|
5778
|
-
extra_fields: {
|
|
5779
|
-
[key: string]: string | number | boolean;
|
|
5780
|
-
} | null;
|
|
5781
|
-
};
|
|
5782
|
-
};
|
|
5783
|
-
type OperationDocumentCustomerOut = {
|
|
5784
|
-
document: Document;
|
|
5785
|
-
};
|
|
5786
6030
|
|
|
5787
6031
|
declare class ApiInvoicesService {
|
|
5788
6032
|
private environments;
|
|
@@ -6097,13 +6341,6 @@ declare class ApiInvoicesService {
|
|
|
6097
6341
|
* @returns Observable containing the country document types data
|
|
6098
6342
|
*/
|
|
6099
6343
|
getCountryDocumentsTypes(params: QueryParams): Observable<CountryDocumentTypesOut>;
|
|
6100
|
-
/**
|
|
6101
|
-
* Updates the customer information for a specific document customer.
|
|
6102
|
-
* @param id - The unique identifier of the document customer
|
|
6103
|
-
* @param data - The customer information to update
|
|
6104
|
-
* @returns An Observable that emits the updated DocumentTypeRangeOut object
|
|
6105
|
-
*/
|
|
6106
|
-
putOperationDocumentCustomer(id: number, data: OperationDocumentCustomerIn): Observable<OperationDocumentCustomerOut>;
|
|
6107
6344
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiInvoicesService, never>;
|
|
6108
6345
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiInvoicesService>;
|
|
6109
6346
|
}
|
|
@@ -6746,67 +6983,37 @@ interface PartialWithdrawal extends ActiveLessLaravelModel {
|
|
|
6746
6983
|
receipt_number: string;
|
|
6747
6984
|
amounts: WithdrawalAmount[];
|
|
6748
6985
|
}
|
|
6749
|
-
interface
|
|
6750
|
-
account_number: string;
|
|
6751
|
-
company_country_id: number;
|
|
6752
|
-
company_id: number;
|
|
6753
|
-
company_name: string;
|
|
6986
|
+
interface Invoice extends ActiveLessLaravelModel {
|
|
6754
6987
|
complete_document_number: string;
|
|
6755
|
-
|
|
6756
|
-
|
|
6757
|
-
|
|
6758
|
-
|
|
6988
|
+
tracking_numbers: string[];
|
|
6989
|
+
local_currency_total_amount: number;
|
|
6990
|
+
identification_type_name: string;
|
|
6991
|
+
identification_number: string;
|
|
6992
|
+
customer_full_name: string;
|
|
6759
6993
|
customer_address: string;
|
|
6760
|
-
customer_city_name: string;
|
|
6761
|
-
customer_company_name: string;
|
|
6762
|
-
customer_county_name: string | null;
|
|
6763
6994
|
customer_email: string;
|
|
6764
|
-
|
|
6765
|
-
|
|
6766
|
-
|
|
6767
|
-
|
|
6768
|
-
|
|
6769
|
-
|
|
6770
|
-
|
|
6771
|
-
document_category_name_ES: string;
|
|
6995
|
+
customer_extra_fields: {
|
|
6996
|
+
field: string;
|
|
6997
|
+
value: string;
|
|
6998
|
+
}[];
|
|
6999
|
+
document_type_name: string;
|
|
7000
|
+
document_type_name_ES: string;
|
|
7001
|
+
document_type_name_EN: string;
|
|
6772
7002
|
document_category_name: string;
|
|
6773
|
-
|
|
6774
|
-
|
|
6775
|
-
|
|
6776
|
-
document_status_code_number: DocumentStatusCode;
|
|
7003
|
+
document_category_name_ES: string;
|
|
7004
|
+
document_category_name_EN: string;
|
|
7005
|
+
document_status_id: number;
|
|
6777
7006
|
document_status_code: string;
|
|
6778
|
-
|
|
6779
|
-
document_suffix: string | null;
|
|
6780
|
-
document_type_id: number;
|
|
6781
|
-
document_type_name_EN: string;
|
|
6782
|
-
document_type_name_ES: string;
|
|
6783
|
-
document_type_name: string;
|
|
6784
|
-
gmt_offset: string;
|
|
6785
|
-
identification_number: string;
|
|
6786
|
-
identification_type_id: number;
|
|
6787
|
-
identification_type_name: string;
|
|
7007
|
+
transaction_type: string;
|
|
6788
7008
|
installation_id: number;
|
|
6789
|
-
installation_number: number;
|
|
6790
|
-
is_credit_note: boolean;
|
|
6791
|
-
local_currency_total_amount: number;
|
|
6792
|
-
location_facility_code: string;
|
|
6793
7009
|
location_id: number;
|
|
6794
|
-
|
|
6795
|
-
|
|
6796
|
-
|
|
7010
|
+
company_country_id: number;
|
|
7011
|
+
country_id: number;
|
|
7012
|
+
customer_phone_code: string;
|
|
7013
|
+
customer_phone_number: string;
|
|
7014
|
+
customer_city_name: string;
|
|
7015
|
+
customer_county_name: string;
|
|
6797
7016
|
shipment_id: number;
|
|
6798
|
-
tracking_numbers: string[];
|
|
6799
|
-
transaction_type: string;
|
|
6800
|
-
user_id: number;
|
|
6801
|
-
user_username: string;
|
|
6802
|
-
billing_extra_fields: {
|
|
6803
|
-
field: string;
|
|
6804
|
-
value: string;
|
|
6805
|
-
}[];
|
|
6806
|
-
customer_extra_fields: {
|
|
6807
|
-
field: string;
|
|
6808
|
-
value: string;
|
|
6809
|
-
}[] | null;
|
|
6810
7017
|
}
|
|
6811
7018
|
interface Sales extends ActiveLessLaravelModel {
|
|
6812
7019
|
company_country_id: number;
|
|
@@ -7150,7 +7357,7 @@ type PartialWithdrawalsOut = {
|
|
|
7150
7357
|
total: number;
|
|
7151
7358
|
};
|
|
7152
7359
|
type InvoicesOut = {
|
|
7153
|
-
invoices:
|
|
7360
|
+
invoices: Invoice[];
|
|
7154
7361
|
total: number;
|
|
7155
7362
|
};
|
|
7156
7363
|
type SalesBookReportOut = {
|
|
@@ -8357,6 +8564,15 @@ declare class ApiSurveysService {
|
|
|
8357
8564
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiSurveysService>;
|
|
8358
8565
|
}
|
|
8359
8566
|
|
|
8567
|
+
declare enum PaymentTypeCode {
|
|
8568
|
+
CASH = "cash",
|
|
8569
|
+
CHECK = "check",
|
|
8570
|
+
CREDIT_CARD = "credit_card",
|
|
8571
|
+
DEBIT_CARD = "debit_card",
|
|
8572
|
+
ELECTRONIC_TRANSFER = "electronic_transfer",
|
|
8573
|
+
DEPOSIT = "deposit"
|
|
8574
|
+
}
|
|
8575
|
+
|
|
8360
8576
|
declare class WebSocketsService {
|
|
8361
8577
|
private pusher;
|
|
8362
8578
|
private environments;
|
|
@@ -8522,5 +8738,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
|
|
|
8522
8738
|
[header: string]: string | string[];
|
|
8523
8739
|
};
|
|
8524
8740
|
|
|
8525
|
-
export { AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, DefaultValueType,
|
|
8526
|
-
export type { Account, AccountCategoriesOut, AccountCategory, AccountCompanyCountry, AccountCompanyCountryLocation, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountLocation, AccountLocationId, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, AccountWithDefault, AccountWithLocations, AccountsActivesOut, AccountsOut, ActiveLessLaravelModel, ActiveLessSymfonyModel, AdditionalData, AddressPlaceDetail, AddressPlaceDetailIn, AddressPlaceDetailsOut, AddressSuggestion, AddressSuggestionIn, AddressSuggestionsOut, ApiBillingConfigurable, ApiModel, ApiResponse, ApiSuccess, Attribute, AttributeIn, AttributeWithId, Attributes, AuthLoginIn, AuthLoginOut, AuthMeOut, AuthUserLoginIn, BillingConfig, BillingConfigIn, BillingConfigOut, BillingConfigsOut, BillingDetailsPayment, BillingDetailsReport, BillingDetailsReportOut, BillingPaCustomer, BillingPaCustomerOut, BoardingProcess, BoardingProcessHistory, BoardingProcessIdIn, BoardingProcessIn, BoardingProcessStatus, BusinessPartyTraderType, BusinessPartyTraderTypesOut, CFDI, CancelPaymentReceiptIn, CancellationReason, CancellationReasonIn, CancellationReasonOut, CancellationReasonsOut, CashValueSummary, CashValueSummaryOut, Catalog, CatalogLess, CatalogsOut, ChangeLanguageIn, Checkpoint, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointsOut, City, CoCustomer, CoCustomerIn, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoGetCustomerOut, CoMunicipalitiesOut, CoMunicipality, CoPostCustomerOut, CoPostalCode, CoPostalCodesOut, CoTribute, CoTributesOut, CollectionPayment, CollectionPaymentsOut, CommercialInvoice, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, CountriesOut, Country, CountryAccount, CountryCurrencyRate, CountryDocumentType, CountryDocumentTypesOut, CountryExchange, CountryGroups, CountryGroupsOut, CountryIn, CountryOut, CountryPaymentType, CountryPaymentTypeField, CountryPaymentTypeFieldIn, CountryPaymentTypeFieldOut, CountryPaymentTypeFieldsOut, CountryPaymentTypeIn, CountryPaymentTypeOut, CountryPaymentTypesOut, CountryReference, CountryReferenceCurrenciesOut, CountryReferenceCurrency, CountryReferenceCurrencyIn, CountryReferenceCurrencyOut, CountryReferenceExtraCharge, CountryReferenceExtraChargeIn, CountryReferenceExtraChargeOut, CountryReferenceIn, CountryReferenceOut, CountryReferenceProduct, CountryReferenceProductIn, CountryReferenceProductOut, CountryReferenceProductsOut, CountryReferencesOut, CourierCheckOutPackesOut, Criteria, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerSurvey, CustomerSurveyFinishIn, CustomerSurveyIn, CustomerSurveyOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, DepositSlipOut, DestinationCountry, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentFunction, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeRangeIn, DocumentTypeRangeOut, DocumentTypeRangesOut, DocumentTypeReports, DocumentsTypesRangesCurrentStatusOut, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, EmbassyShipment, EmbassyShipmentIn, EmbassyShipmentOut, EmbassyShipmentsOut, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressCancellation, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentCancellationIn, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExternalShipmentsOut, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, HistoriesReportOut, HistoryReport, HistoryReportCheckpoint, Holiday, HolidayIn, HolidayOut, HolidaysOut, IdentificationType, IdentificationTypeComposition, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeNumberValidationIn, IdentificationTypeNumberValidationOut, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, InventoriesReportOut, InventoryReport, InvoiceCancellationIn, InvoiceReport, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, LocationEmployeesIn, LocationEmployeesOut, LocationIn, LocationOut, LocationType, LocationTypeFields, LocationsOut, LoyaltyPeriod, LoyaltyPeriodIn, LoyaltyPeriodOut, LoyaltyPeriodsOut, LoyaltyRule, LoyaltyRuleIn, LoyaltyRuleOut, LoyaltyRulesOut, ManagementArea, ManagementAreasOut, ManifestMultipleIn, ManifestMultipleOut, ManufactureCountry, Module, ModuleType, ModulesOut, MunicipalitiesOut, Municipality, Notification, NotificationConfiguration, NotificationConfigurationIn, NotificationConfigurationOut, NotificationIn, NotificationOut, NotificationStatus, NotificationType, NotificationsOut, NotificationsTypeOut, OpenItem, OpenItemIn, OpenItems, OpenItemsOut, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentCustomerIn, OperationDocumentCustomerOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsData, PackageMissing, PackageReport, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueIn, ParameterValueOut, ParametersByLevelIn, ParametersOut, ParametersValuesIn, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, Pivot, PostalCode, PostalCodeBillings, PostalCodeFormat, PostalCodesOut, PostalLocation, PostalLocationsOut, PrintCollectionReceiptOut, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QueryParams, Question, QuestionIn, QuestionOption, QuestionOut, QuestionResponse, QuestionType, QuestionTypesOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, ReEntryOfMissingPackage, ReEntryOfMissingPackageOut, ReEntryOfMissingPackages, ReEntryOfMissingPackagesIn, ReEntryOfMissingPackagesOut, ReceiptFile, ReceiptFileOut, Region, RegionsOut, ReportExternalShipment, ReportExternalShipmentAddress, Role, RoleIn, RoleOut, RoleType, RoleTypesOut, RolesOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, Rules, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, ShipmentAddresses, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentCompanyCountryExtraCharges, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsLandingReportOut, ShipmentsReportOut, SignaturePageSetting, SignaturePageSettingIn, SignaturePageSettingOut, SignaturePageSettingsOut, State, Status, StatusesOut, StockUpdatePackagesOut, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, Survey, SurveyIn, SurveyOut, SurveyQuestion, SurveyQuestionIn, SurveyQuestionOut, SurveyQuestionsOut, SurveysOut, SymfonyModel, System, SystemEntitiesIn, SystemEntitiesOut, SystemIn, SystemOut, SystemsOut, TDXAccountSetting, TDXAccountSettingsIn, TDXAccountSettingsOut, TDXAccountsSettingsOut, Tax, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TransferenceType, TranslateLang, Translations, UniqueFolio, UniqueFolioIn, UniqueFolioOut, UniqueFoliosOut, Unit, UnitsOut, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, Values, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZonesOut };
|
|
8741
|
+
export { AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, DefaultValueType, DepositTypeCode, ENVIRONMENT_TOKEN, Event, Group, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiKeyInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
8742
|
+
export type { Account, AccountCategoriesOut, AccountCategory, AccountCompanyCountry, AccountCompanyCountryLocation, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountLocation, AccountLocationId, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, AccountWithDefault, AccountWithLocations, AccountsActivesOut, AccountsOut, ActiveLessLaravelModel, ActiveLessSymfonyModel, AdditionalData, AddressPlaceDetail, AddressPlaceDetailIn, AddressPlaceDetailsOut, AddressSuggestion, AddressSuggestionIn, AddressSuggestionsOut, ApiBillingConfigurable, ApiModel, ApiResponse, ApiSuccess, Attribute, AttributeIn, AttributeWithId, Attributes, AuthLoginIn, AuthLoginOut, AuthMeOut, AuthUserLoginIn, Bank, BankAccount, BankAccountType, BankAccountsOut, BillingConfig, BillingConfigIn, BillingConfigOut, BillingConfigsOut, BillingDetailsPayment, BillingDetailsReport, BillingDetailsReportOut, BillingPaCustomer, BillingPaCustomerOut, BoardingProcess, BoardingProcessHistory, BoardingProcessIdIn, BoardingProcessIn, BoardingProcessStatus, BusinessPartyTraderType, BusinessPartyTraderTypesOut, CFDI, CancelPaymentReceiptIn, CancellationReason, CancellationReasonIn, CancellationReasonOut, CancellationReasonsOut, CashValueSummary, CashValueSummaryOut, Catalog, CatalogLess, CatalogsOut, ChangeLanguageIn, Checkpoint, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointsOut, City, Closing, ClosingIn, ClosingOut, ClosingPayment, CoCustomer, CoCustomerIn, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoGetCustomerOut, CoMunicipalitiesOut, CoMunicipality, CoPostCustomerOut, CoPostalCode, CoPostalCodesOut, CoTribute, CoTributesOut, CollectionPayment, CollectionPaymentsOut, CommercialInvoice, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, CountriesOut, Country, CountryAccount, CountryCurrencyRate, CountryDocumentType, CountryDocumentTypesOut, CountryExchange, CountryGroups, CountryGroupsOut, CountryIn, CountryOut, CountryPaymentType, CountryPaymentTypeField, CountryPaymentTypeFieldIn, CountryPaymentTypeFieldOut, CountryPaymentTypeFieldsOut, CountryPaymentTypeIn, CountryPaymentTypeOut, CountryPaymentTypesOut, CountryReference, CountryReferenceCurrenciesOut, CountryReferenceCurrency, CountryReferenceCurrencyIn, CountryReferenceCurrencyOut, CountryReferenceExtraCharge, CountryReferenceExtraChargeIn, CountryReferenceExtraChargeOut, CountryReferenceIn, CountryReferenceOut, CountryReferenceProduct, CountryReferenceProductIn, CountryReferenceProductOut, CountryReferenceProductsOut, CountryReferencesOut, CountryToExportReason, CourierCheckOutPackesOut, Criteria, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerSurvey, CustomerSurveyFinishIn, CustomerSurveyIn, CustomerSurveyOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, Deposit, DepositIn, DepositOut, DepositSlipOut, DestinationCountry, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentFunction, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeRangeIn, DocumentTypeRangeOut, DocumentTypeRangesOut, DocumentTypeReports, DocumentsTypesRangesCurrentStatusOut, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, EmbassyShipment, EmbassyShipmentIn, EmbassyShipmentOut, EmbassyShipmentsOut, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportReason, ExportReasonIn, ExportReasonOut, ExportReasonTypes, ExportReasonTypesOut, ExportReasonsOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressCancellation, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentCancellationIn, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExternalShipmentsOut, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, HistoriesReportOut, HistoryReport, HistoryReportCheckpoint, Holiday, HolidayIn, HolidayOut, HolidaysOut, IdentificationType, IdentificationTypeComposition, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeNumberValidationIn, IdentificationTypeNumberValidationOut, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, InventoriesReportOut, InventoryReport, Invoice, InvoiceCancellationIn, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, LocationEmployeesIn, LocationEmployeesOut, LocationIn, LocationOut, LocationType, LocationTypeFields, LocationsOut, LoyaltyPeriod, LoyaltyPeriodIn, LoyaltyPeriodOut, LoyaltyPeriodsOut, LoyaltyRule, LoyaltyRuleIn, LoyaltyRuleOut, LoyaltyRulesOut, ManagementArea, ManagementAreasOut, ManifestMultipleIn, ManifestMultipleOut, ManufactureCountry, Module, ModuleType, ModulesOut, MunicipalitiesOut, Municipality, Notification, NotificationConfiguration, NotificationConfigurationIn, NotificationConfigurationOut, NotificationIn, NotificationOut, NotificationStatus, NotificationType, NotificationsOut, NotificationsTypeOut, OpenItem, OpenItemIn, OpenItems, OpenItemsOut, Opening, OpeningCountryReferenceCurrency, OpeningHistory, OpeningIn, OpeningOut, OpeningPreClosingRequestIn, OpeningStatus, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, OpeningsOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsData, PackageMissing, PackageReport, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueIn, ParameterValueOut, ParametersByLevelIn, ParametersOut, ParametersValuesIn, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, Pivot, PostalCode, PostalCodeBillings, PostalCodeFormat, PostalCodesOut, PostalLocation, PostalLocationsOut, PrintCollectionReceiptOut, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QueryParams, Question, QuestionIn, QuestionOption, QuestionOut, QuestionResponse, QuestionType, QuestionTypesOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, ReEntryOfMissingPackage, ReEntryOfMissingPackageOut, ReEntryOfMissingPackages, ReEntryOfMissingPackagesIn, ReEntryOfMissingPackagesOut, ReceiptFile, ReceiptFileOut, Region, RegionsOut, ReportExternalShipment, ReportExternalShipmentAddress, Role, RoleIn, RoleOut, RoleType, RoleTypesOut, RolesOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, Rules, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, ShipmentAddresses, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentCompanyCountryExtraCharges, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsLandingReportOut, ShipmentsReportOut, SignaturePageSetting, SignaturePageSettingIn, SignaturePageSettingOut, SignaturePageSettingsOut, State, Status, StatusesOut, StockUpdatePackagesOut, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, Survey, SurveyIn, SurveyOut, SurveyQuestion, SurveyQuestionIn, SurveyQuestionOut, SurveyQuestionsOut, SurveysOut, SymfonyModel, System, SystemEntitiesIn, SystemEntitiesOut, SystemIn, SystemOut, SystemsOut, TDXAccountSetting, TDXAccountSettingsIn, TDXAccountSettingsOut, TDXAccountsSettingsOut, Tax, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TransferenceType, TranslateLang, Translations, UniqueFolio, UniqueFolioIn, UniqueFolioOut, UniqueFoliosOut, Unit, UnitsOut, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, Values, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZonesOut };
|