@experteam-mx/ngx-services 20.7.0-dev3.1 → 20.7.1
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
|
@@ -2663,15 +2663,30 @@ interface AccountWithDefault extends Account {
|
|
|
2663
2663
|
}
|
|
2664
2664
|
interface AccountWithLocations extends Account {
|
|
2665
2665
|
account_company_countries: AccountCompanyCountryLocation[];
|
|
2666
|
-
country:
|
|
2666
|
+
country: CountryAccount;
|
|
2667
2667
|
}
|
|
2668
2668
|
interface PostalCodeFormat extends SymfonyModel {
|
|
2669
2669
|
format: string;
|
|
2670
2670
|
significantChars: number;
|
|
2671
2671
|
regex: string;
|
|
2672
2672
|
}
|
|
2673
|
-
interface
|
|
2673
|
+
interface CountryAccount {
|
|
2674
|
+
id: number;
|
|
2675
|
+
code: string;
|
|
2676
|
+
name: string;
|
|
2677
|
+
timezone: string;
|
|
2678
|
+
hasImportService: boolean;
|
|
2679
|
+
isActive: boolean;
|
|
2680
|
+
isoCode: string;
|
|
2681
|
+
codePhone: string;
|
|
2682
|
+
phoneDigits: string | null;
|
|
2683
|
+
createdAt: string;
|
|
2684
|
+
updatedAt: string;
|
|
2685
|
+
locationType: LocationType;
|
|
2686
|
+
unit: Unit;
|
|
2687
|
+
locationTypeFields: LocationTypeFields;
|
|
2674
2688
|
postalCodeFormats: PostalCodeFormat[];
|
|
2689
|
+
translations: Translations;
|
|
2675
2690
|
}
|
|
2676
2691
|
|
|
2677
2692
|
type LocationEmployeesOut = {
|
|
@@ -3892,7 +3907,7 @@ declare class ApiCompaniesService {
|
|
|
3892
3907
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiCompaniesService>;
|
|
3893
3908
|
}
|
|
3894
3909
|
|
|
3895
|
-
declare enum
|
|
3910
|
+
declare enum CustomerType$1 {
|
|
3896
3911
|
SHIPPER = "SP",
|
|
3897
3912
|
CONSIGNEE = "RV",
|
|
3898
3913
|
IMPORTER = "IP",
|
|
@@ -3939,180 +3954,138 @@ interface SupplyLocationTransaction extends ActiveLessSymfonyModel {
|
|
|
3939
3954
|
stock: number;
|
|
3940
3955
|
}
|
|
3941
3956
|
|
|
3942
|
-
interface ShipmentComposition extends
|
|
3957
|
+
interface ShipmentComposition extends SymfonyModel {
|
|
3958
|
+
currencyCode: string;
|
|
3959
|
+
extraCharges: ExtraChargeComposition[];
|
|
3960
|
+
globalProductCode: string;
|
|
3961
|
+
globalProductName: string;
|
|
3962
|
+
localProductCode: string;
|
|
3963
|
+
localProductName: string;
|
|
3964
|
+
trackingNumber: string;
|
|
3965
|
+
contentDescription: string;
|
|
3966
|
+
realWeight: number;
|
|
3967
|
+
piecesNumber: number;
|
|
3968
|
+
productSubtotal: number;
|
|
3969
|
+
productTax: number;
|
|
3970
|
+
productTotal: number;
|
|
3971
|
+
declaredValue: number;
|
|
3972
|
+
insuredValue: number;
|
|
3943
3973
|
accountNumber: string;
|
|
3944
|
-
|
|
3945
|
-
|
|
3946
|
-
commercialExchangeRate: number;
|
|
3947
|
-
commercialInvoice: CommercialInvoiceComposition | null;
|
|
3974
|
+
userId: number;
|
|
3975
|
+
installationId: number;
|
|
3948
3976
|
companyCountryId: number;
|
|
3949
|
-
|
|
3977
|
+
productId: number;
|
|
3950
3978
|
countryReferenceCurrencyId: number;
|
|
3951
|
-
|
|
3952
|
-
declaredCurrency: string | null;
|
|
3953
|
-
declaredValue: number;
|
|
3954
|
-
deliveryDateTime: string;
|
|
3955
|
-
destinationFacilityCode: string;
|
|
3956
|
-
destinationServiceAreaCode: string;
|
|
3957
|
-
discountModelId: number | null;
|
|
3958
|
-
discountModelType: string | null;
|
|
3959
|
-
discountName: string | null;
|
|
3960
|
-
discountPercentage: number | null;
|
|
3961
|
-
discountReference: string | null;
|
|
3962
|
-
discountValue: number | null;
|
|
3963
|
-
dutiesAndTaxesAccountNumber: string | null;
|
|
3964
|
-
einNumber: string | null;
|
|
3965
|
-
exportReason: ExportReason | null;
|
|
3966
|
-
exportReasonId: number | null;
|
|
3967
|
-
extraFields: Record<string, unknown>;
|
|
3979
|
+
commercialExchangeRate: number;
|
|
3968
3980
|
ibsExchangeRate: number;
|
|
3969
|
-
|
|
3970
|
-
|
|
3971
|
-
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
|
|
3981
|
+
shipmentStatusId: number;
|
|
3982
|
+
shipmentAddresses: ShipmentAddresses[];
|
|
3983
|
+
shipmentPieces: ShipmentPieces[];
|
|
3984
|
+
shipmentCompanyCountryExtraCharges: ShipmentCompanyCountryExtraCharges[];
|
|
3985
|
+
shipmentGsop: ShipmentGsop;
|
|
3986
|
+
additionalData: AdditionalData;
|
|
3987
|
+
transactionId: string;
|
|
3988
|
+
requiresPayment: boolean;
|
|
3989
|
+
originServiceAreaCode: string;
|
|
3990
|
+
originFacilityCode: string;
|
|
3991
|
+
destinationServiceAreaCode: string;
|
|
3992
|
+
destinationFacilityCode: string;
|
|
3993
|
+
productTaxes: string[];
|
|
3975
3994
|
isInspected: boolean;
|
|
3995
|
+
extraFields: {
|
|
3996
|
+
[key: string]: string | number | boolean;
|
|
3997
|
+
};
|
|
3998
|
+
shipmentContentTypeId: number;
|
|
3999
|
+
commercialInvoice: CommercialInvoice;
|
|
4000
|
+
shipmentScopeId: number;
|
|
4001
|
+
shipmentGroupId: number;
|
|
4002
|
+
product: string[];
|
|
4003
|
+
declaredCurrency: string;
|
|
4004
|
+
insuredCurrency: string;
|
|
4005
|
+
deliveryDateTime: string;
|
|
4006
|
+
date: string;
|
|
4007
|
+
promotionCode: string;
|
|
4008
|
+
priceOverrideApproverId: number;
|
|
4009
|
+
priceOverrideReasonId: number;
|
|
4010
|
+
customs: Customs;
|
|
4011
|
+
exportReasonId: number;
|
|
4012
|
+
exportReason: string[];
|
|
4013
|
+
shipmentBookPickup: ShipmentBookPickup;
|
|
4014
|
+
questionId: number;
|
|
3976
4015
|
isInsured: boolean;
|
|
3977
|
-
|
|
3978
|
-
|
|
3979
|
-
|
|
4016
|
+
itnNumber: string;
|
|
4017
|
+
einNumber: string;
|
|
4018
|
+
otherAccountNumber: string;
|
|
4019
|
+
dutiesAndTaxesAccountNumber: string;
|
|
4020
|
+
discountId: string;
|
|
4021
|
+
discountReference: string;
|
|
4022
|
+
totalPublishedValue: number;
|
|
4023
|
+
totalPartnerAccountValue: number;
|
|
4024
|
+
isMarketingConsent: boolean;
|
|
4025
|
+
isTermCondition: boolean;
|
|
4026
|
+
isDocument: boolean;
|
|
4027
|
+
isCash: boolean;
|
|
3980
4028
|
isPriceOverride: boolean;
|
|
3981
4029
|
isProforma: boolean;
|
|
3982
4030
|
isPromotionCode: boolean;
|
|
3983
4031
|
isRetailRate: boolean;
|
|
3984
|
-
|
|
3985
|
-
|
|
3986
|
-
|
|
3987
|
-
originFacilityCode: string;
|
|
3988
|
-
originServiceAreaCode: string;
|
|
3989
|
-
otherAccountNumber: string | null;
|
|
3990
|
-
piecesNumber: number;
|
|
3991
|
-
priceOverrideApproverId: number | null;
|
|
3992
|
-
priceOverrideReasonId: number | null;
|
|
3993
|
-
product: ShipmentProductComposition;
|
|
3994
|
-
productId: number;
|
|
3995
|
-
productSubtotal: number;
|
|
3996
|
-
productTax: number;
|
|
3997
|
-
productTaxes: TaxComposition[];
|
|
3998
|
-
productTotal: number;
|
|
3999
|
-
promotionCode: string | null;
|
|
4000
|
-
realWeight: number;
|
|
4001
|
-
requiresPayment: boolean;
|
|
4002
|
-
shipmentAddresses: ShipmentAddressComposition[];
|
|
4003
|
-
shipmentBookPickup: ShipmentBookPickup | null;
|
|
4004
|
-
shipmentContentTypeId: number;
|
|
4005
|
-
shipmentExtraCharges: ExtraChargeComposition[];
|
|
4006
|
-
shipmentGroupId: number;
|
|
4007
|
-
shipmentGsop: ShipmentGsopComposition | null;
|
|
4008
|
-
shipmentPieces: ShipmentPieceComposition[];
|
|
4009
|
-
shipmentScopeId: number;
|
|
4010
|
-
shipmentStatusId: number;
|
|
4011
|
-
shipmentTaxes: TaxComposition[];
|
|
4012
|
-
shipmentWithholding: unknown | null;
|
|
4013
|
-
subtotal: number;
|
|
4014
|
-
tax: number;
|
|
4015
|
-
total: number;
|
|
4016
|
-
totalPartnerAccountValue: number | null;
|
|
4017
|
-
totalPublishedValue: number | null;
|
|
4018
|
-
trackingNumber: string;
|
|
4019
|
-
transactionId: string;
|
|
4020
|
-
userId: number;
|
|
4021
|
-
customs: {
|
|
4022
|
-
ignoreValidation: boolean;
|
|
4023
|
-
criteria: {
|
|
4024
|
-
origin: string;
|
|
4025
|
-
destination: string;
|
|
4026
|
-
dutiable: boolean;
|
|
4027
|
-
declaredValue: number | null;
|
|
4028
|
-
};
|
|
4029
|
-
rules: {
|
|
4030
|
-
id: number;
|
|
4031
|
-
level: string;
|
|
4032
|
-
attributes: {
|
|
4033
|
-
id: number;
|
|
4034
|
-
field: string;
|
|
4035
|
-
dhlCode: string;
|
|
4036
|
-
values: {
|
|
4037
|
-
shipment: string;
|
|
4038
|
-
customer: CustomerRoleType;
|
|
4039
|
-
invoiceHeader: string;
|
|
4040
|
-
invoiceItem: string[];
|
|
4041
|
-
};
|
|
4042
|
-
}[];
|
|
4043
|
-
}[];
|
|
4044
|
-
};
|
|
4045
|
-
additionalData: {
|
|
4046
|
-
countryCode: string;
|
|
4047
|
-
productGlobalCode: string;
|
|
4048
|
-
productLocalCode: string;
|
|
4049
|
-
currencyCode: string;
|
|
4050
|
-
userUsername: string;
|
|
4051
|
-
locationFacilityCode: string;
|
|
4052
|
-
shipmentStatusCode: string;
|
|
4053
|
-
awbTypeCode?: string;
|
|
4054
|
-
shipmentTypeCode?: string;
|
|
4055
|
-
};
|
|
4032
|
+
isOtherOrigin: boolean;
|
|
4033
|
+
isOccurs: boolean;
|
|
4034
|
+
isDutiesAndTaxes: boolean;
|
|
4056
4035
|
}
|
|
4057
|
-
interface ExtraChargeComposition
|
|
4036
|
+
interface ExtraChargeComposition {
|
|
4037
|
+
globalServiceCode: string;
|
|
4038
|
+
localServiceCode: string;
|
|
4039
|
+
globalServiceName: string;
|
|
4040
|
+
localServiceName: string;
|
|
4058
4041
|
subtotal: number;
|
|
4059
4042
|
tax: number;
|
|
4060
4043
|
total: number;
|
|
4061
|
-
|
|
4062
|
-
taxes: TaxComposition[];
|
|
4063
|
-
extraChargeGroup: string;
|
|
4064
|
-
extraChargeCode: string;
|
|
4065
|
-
extraChargeName: string;
|
|
4066
|
-
extraChargeIsDiscount: boolean;
|
|
4044
|
+
taxes: Tax[];
|
|
4067
4045
|
}
|
|
4068
|
-
interface
|
|
4046
|
+
interface Tax {
|
|
4069
4047
|
code: string;
|
|
4070
4048
|
percent: number;
|
|
4071
4049
|
baseAmount: number;
|
|
4072
4050
|
amount: number;
|
|
4073
4051
|
}
|
|
4074
|
-
interface
|
|
4052
|
+
interface ShipmentAddresses extends SymfonyModel {
|
|
4075
4053
|
index: number;
|
|
4076
|
-
identificationTypeId: number
|
|
4077
|
-
identificationNumber: string
|
|
4054
|
+
identificationTypeId: number;
|
|
4055
|
+
identificationNumber: string;
|
|
4078
4056
|
companyName: string;
|
|
4079
4057
|
fullName: string;
|
|
4080
4058
|
email: string;
|
|
4081
4059
|
phoneCode: string;
|
|
4082
4060
|
phoneNumber: string;
|
|
4083
|
-
postalCode: string
|
|
4084
|
-
stateCode: string
|
|
4085
|
-
stateId: number | null;
|
|
4061
|
+
postalCode: string;
|
|
4062
|
+
stateCode: string;
|
|
4086
4063
|
countyName: string;
|
|
4087
4064
|
cityName: string;
|
|
4088
4065
|
addressLine1: string;
|
|
4089
|
-
addressLine2: string
|
|
4090
|
-
addressLine3: string
|
|
4066
|
+
addressLine2: string;
|
|
4067
|
+
addressLine3: string;
|
|
4091
4068
|
countryId: number;
|
|
4092
|
-
|
|
4093
|
-
|
|
4094
|
-
|
|
4095
|
-
|
|
4096
|
-
|
|
4097
|
-
|
|
4098
|
-
|
|
4099
|
-
|
|
4100
|
-
businessPartyTraderType?: BusinessPartyTraderType | null;
|
|
4101
|
-
identificationType?: IdentificationType | null;
|
|
4102
|
-
}
|
|
4103
|
-
interface ShipmentPieceComposition extends ActiveLessSymfonyModel {
|
|
4069
|
+
identificationType: IdentificationTypeComposition;
|
|
4070
|
+
roleType: CustomerType$1;
|
|
4071
|
+
}
|
|
4072
|
+
interface IdentificationTypeComposition extends SymfonyModel {
|
|
4073
|
+
name: string;
|
|
4074
|
+
companyCountryId: number;
|
|
4075
|
+
}
|
|
4076
|
+
interface ShipmentPieces extends ActiveLessSymfonyModel {
|
|
4104
4077
|
number: number;
|
|
4105
4078
|
height: number;
|
|
4106
4079
|
length: number;
|
|
4107
4080
|
width: number;
|
|
4108
4081
|
realWeight: number;
|
|
4109
4082
|
volumetricWeight: number;
|
|
4110
|
-
dataIdentifier: string
|
|
4083
|
+
dataIdentifier: string;
|
|
4111
4084
|
trackingNumber: string;
|
|
4112
|
-
licensePlateBarCode: string
|
|
4113
|
-
|
|
4085
|
+
licensePlateBarCode: string;
|
|
4086
|
+
shipmentPieceCompanyCountrySupplies: ShipmentPieceCompanyCountrySupplies[];
|
|
4114
4087
|
}
|
|
4115
|
-
interface
|
|
4088
|
+
interface ShipmentPieceCompanyCountrySupplies extends ActiveLessSymfonyModel {
|
|
4116
4089
|
supplyId: number;
|
|
4117
4090
|
quantity: number;
|
|
4118
4091
|
subtotal: number;
|
|
@@ -4123,25 +4096,18 @@ interface ShipmentPieceSupplyComposition extends ActiveLessSymfonyModel {
|
|
|
4123
4096
|
description: string;
|
|
4124
4097
|
supply: Supply;
|
|
4125
4098
|
}
|
|
4126
|
-
interface
|
|
4127
|
-
globalCode: string;
|
|
4128
|
-
localCode: string;
|
|
4129
|
-
globalName: string;
|
|
4130
|
-
localName: string;
|
|
4131
|
-
isDocument: boolean;
|
|
4132
|
-
}
|
|
4133
|
-
interface CommercialInvoiceComposition extends ActiveLessSymfonyModel {
|
|
4099
|
+
interface CommercialInvoice extends ActiveLessSymfonyModel {
|
|
4134
4100
|
documentTypeId: number;
|
|
4135
4101
|
tradingTransactionTypeId: number;
|
|
4136
4102
|
documentFunctionId: number;
|
|
4137
4103
|
number: string;
|
|
4138
4104
|
remarks: string;
|
|
4139
|
-
items:
|
|
4105
|
+
items: Item[];
|
|
4140
4106
|
documentType: DocumentTypeComposition;
|
|
4141
4107
|
tradingTransactionType: TradingTransactionType;
|
|
4142
|
-
documentFunction:
|
|
4108
|
+
documentFunction: DocumentFunction;
|
|
4143
4109
|
}
|
|
4144
|
-
interface
|
|
4110
|
+
interface Item extends ActiveLessSymfonyModel {
|
|
4145
4111
|
description: string;
|
|
4146
4112
|
quantity: number;
|
|
4147
4113
|
quantityUnitId: number;
|
|
@@ -4150,31 +4116,32 @@ interface ItemComposition extends ActiveLessSymfonyModel {
|
|
|
4150
4116
|
realWeight: number;
|
|
4151
4117
|
commodityId: number;
|
|
4152
4118
|
quantityUnit: QuantityUnit;
|
|
4153
|
-
manufactureCountry:
|
|
4154
|
-
id: string;
|
|
4155
|
-
code: string;
|
|
4156
|
-
name: string;
|
|
4157
|
-
locationType: string[];
|
|
4158
|
-
unit: string[];
|
|
4159
|
-
timezone: string;
|
|
4160
|
-
hasImportService: boolean;
|
|
4161
|
-
isActive: boolean;
|
|
4162
|
-
regions: string[];
|
|
4163
|
-
zones: string[];
|
|
4164
|
-
isoCode: string;
|
|
4165
|
-
};
|
|
4119
|
+
manufactureCountry: ManufactureCountry;
|
|
4166
4120
|
commodity: Commodity;
|
|
4167
4121
|
}
|
|
4122
|
+
interface ManufactureCountry {
|
|
4123
|
+
id: string;
|
|
4124
|
+
code: string;
|
|
4125
|
+
name: string;
|
|
4126
|
+
locationType: string[];
|
|
4127
|
+
unit: string[];
|
|
4128
|
+
timezone: string;
|
|
4129
|
+
hasImportService: boolean;
|
|
4130
|
+
isActive: boolean;
|
|
4131
|
+
regions: string[];
|
|
4132
|
+
zones: string[];
|
|
4133
|
+
isoCode: string;
|
|
4134
|
+
}
|
|
4168
4135
|
interface DocumentTypeComposition extends SymfonyModel {
|
|
4169
4136
|
code: string;
|
|
4170
4137
|
name: string;
|
|
4171
4138
|
description: string;
|
|
4172
4139
|
}
|
|
4173
|
-
interface
|
|
4140
|
+
interface DocumentFunction extends SymfonyModel {
|
|
4174
4141
|
code: string;
|
|
4175
4142
|
name: string;
|
|
4176
4143
|
}
|
|
4177
|
-
interface
|
|
4144
|
+
interface ShipmentGsop extends ActiveLessSymfonyModel {
|
|
4178
4145
|
productContentCode: string;
|
|
4179
4146
|
originServiceAreaCode: string;
|
|
4180
4147
|
destinationServiceAreaCode: string;
|
|
@@ -4182,6 +4149,54 @@ interface ShipmentGsopComposition extends ActiveLessSymfonyModel {
|
|
|
4182
4149
|
awbBarCode: string;
|
|
4183
4150
|
dhlRoutingBarCode: string;
|
|
4184
4151
|
}
|
|
4152
|
+
interface ShipmentCompanyCountryExtraCharges extends ActiveLessSymfonyModel {
|
|
4153
|
+
subtotal: number;
|
|
4154
|
+
tax: number;
|
|
4155
|
+
total: number;
|
|
4156
|
+
extraChargeId: number;
|
|
4157
|
+
extraChargeCode: string;
|
|
4158
|
+
}
|
|
4159
|
+
interface AdditionalData {
|
|
4160
|
+
awbTypeCode: string;
|
|
4161
|
+
countryCode: string;
|
|
4162
|
+
shipmentTypeCode: string;
|
|
4163
|
+
productGlobalCode: string;
|
|
4164
|
+
productLocalCode: string;
|
|
4165
|
+
currencyCode: string;
|
|
4166
|
+
userUsername: string;
|
|
4167
|
+
locationFacilityCode: string;
|
|
4168
|
+
}
|
|
4169
|
+
interface Customs {
|
|
4170
|
+
criteria: Criteria;
|
|
4171
|
+
rules: Rules[];
|
|
4172
|
+
}
|
|
4173
|
+
interface Criteria {
|
|
4174
|
+
origin: string;
|
|
4175
|
+
destination: string;
|
|
4176
|
+
dutiable: boolean;
|
|
4177
|
+
declaredValue: number;
|
|
4178
|
+
}
|
|
4179
|
+
interface Rules {
|
|
4180
|
+
id: number;
|
|
4181
|
+
level: string;
|
|
4182
|
+
attributes: Attributes[];
|
|
4183
|
+
}
|
|
4184
|
+
interface Attributes {
|
|
4185
|
+
id: number;
|
|
4186
|
+
field: string;
|
|
4187
|
+
dhlCode: string;
|
|
4188
|
+
values: Values;
|
|
4189
|
+
}
|
|
4190
|
+
interface Values {
|
|
4191
|
+
shipment: string;
|
|
4192
|
+
customer: CustomerComposition;
|
|
4193
|
+
invoiceHeader: string;
|
|
4194
|
+
invoiceItem: string[];
|
|
4195
|
+
}
|
|
4196
|
+
interface CustomerComposition {
|
|
4197
|
+
SP: string;
|
|
4198
|
+
RV: string;
|
|
4199
|
+
}
|
|
4185
4200
|
interface ShipmentBookPickup extends ActiveLessSymfonyModel {
|
|
4186
4201
|
pickupDate: string;
|
|
4187
4202
|
readyByTime: string;
|
|
@@ -4195,10 +4210,6 @@ interface ShipmentBookPickup extends ActiveLessSymfonyModel {
|
|
|
4195
4210
|
type ShipmentOut = {
|
|
4196
4211
|
shipment: ShipmentComposition;
|
|
4197
4212
|
};
|
|
4198
|
-
type ShipmentsOut = {
|
|
4199
|
-
shipments: ShipmentComposition[];
|
|
4200
|
-
total: number;
|
|
4201
|
-
};
|
|
4202
4213
|
type CompositionCountryReferencesOut = {
|
|
4203
4214
|
country_references: CountryReference[];
|
|
4204
4215
|
total: number;
|
|
@@ -4220,13 +4231,6 @@ declare class ApiCompositionService {
|
|
|
4220
4231
|
* @returns {Observable<ShipmentOut>} An observable that emits the details of the shipment.
|
|
4221
4232
|
*/
|
|
4222
4233
|
getShipment(id: number): Observable<ShipmentOut>;
|
|
4223
|
-
/**
|
|
4224
|
-
* Retrieves shipments based on the provided query parameters.
|
|
4225
|
-
*
|
|
4226
|
-
* @param {QueryParams} params - The query parameters for the API request.
|
|
4227
|
-
* @returns {Observable<ShipmentsOut>} An observable that emits the shipments data.
|
|
4228
|
-
*/
|
|
4229
|
-
getShipments(params: QueryParams): Observable<ShipmentsOut>;
|
|
4230
4234
|
/**
|
|
4231
4235
|
* Fetches the country references data based on the provided query parameters.
|
|
4232
4236
|
*
|
|
@@ -5350,6 +5354,11 @@ interface OperationTypeInventory extends SymfonyModel {
|
|
|
5350
5354
|
name: TranslateLang;
|
|
5351
5355
|
};
|
|
5352
5356
|
}
|
|
5357
|
+
interface CourierRoute extends SymfonyModel {
|
|
5358
|
+
number: string;
|
|
5359
|
+
name: string;
|
|
5360
|
+
locationId: number;
|
|
5361
|
+
}
|
|
5353
5362
|
|
|
5354
5363
|
type CheckpointsOut = {
|
|
5355
5364
|
total: number;
|
|
@@ -5447,6 +5456,19 @@ type StockUpdatePackagesOut = {
|
|
|
5447
5456
|
totalFirstMilePackages: number;
|
|
5448
5457
|
totalStockUpdatePackages: number;
|
|
5449
5458
|
};
|
|
5459
|
+
type CourierRoutesOut = {
|
|
5460
|
+
courierRoutes: CourierRoute[];
|
|
5461
|
+
total: number;
|
|
5462
|
+
};
|
|
5463
|
+
type CourierRouteOut = {
|
|
5464
|
+
courierRoute: CourierRoute;
|
|
5465
|
+
};
|
|
5466
|
+
type CourierRouteIn = {
|
|
5467
|
+
number: string;
|
|
5468
|
+
name: string;
|
|
5469
|
+
locationId: number;
|
|
5470
|
+
isActive: boolean;
|
|
5471
|
+
};
|
|
5450
5472
|
|
|
5451
5473
|
declare class ApiInventoriesService {
|
|
5452
5474
|
private environments;
|
|
@@ -5632,6 +5654,42 @@ declare class ApiInventoriesService {
|
|
|
5632
5654
|
* @return {Observable<StockUpdatePackagesOut>} An observable that emits the packages data.
|
|
5633
5655
|
*/
|
|
5634
5656
|
getStockUpdatePackages(id: Number): Observable<StockUpdatePackagesOut>;
|
|
5657
|
+
/**
|
|
5658
|
+
* Retrieves a list of courier routes based on query parameters.
|
|
5659
|
+
*
|
|
5660
|
+
* @param {QueryParams} params - Query parameters for filtering the courier routes.
|
|
5661
|
+
* @returns {Observable<CourierRoutesOut>} An observable that emits the list of courier routes.
|
|
5662
|
+
*/
|
|
5663
|
+
getCourierRoutes(params: QueryParams): Observable<CourierRoutesOut>;
|
|
5664
|
+
/**
|
|
5665
|
+
* Fetches the courier route details based on the provided courier route ID.
|
|
5666
|
+
*
|
|
5667
|
+
* @param {number} id - The courier route id
|
|
5668
|
+
* @return {Observable<CourierRouteOut>} An observable that emits the courier route data.
|
|
5669
|
+
*/
|
|
5670
|
+
getCourierRoute(id: Number): Observable<CourierRouteOut>;
|
|
5671
|
+
/**
|
|
5672
|
+
* Creates a new courier route.
|
|
5673
|
+
*
|
|
5674
|
+
* @param {CourierRouteIn} body - The data for the new courier route.
|
|
5675
|
+
* @returns {Observable<CourierRouteOut>} An observable the created courier route detail.
|
|
5676
|
+
*/
|
|
5677
|
+
postCourierRoute(body: CourierRouteIn): Observable<CourierRouteOut>;
|
|
5678
|
+
/**
|
|
5679
|
+
* Update an existing courier route.
|
|
5680
|
+
*
|
|
5681
|
+
* @param {number} id - The identifier of the courier route record to update.
|
|
5682
|
+
* @param {CourierRouteIn} body - The courier route data to be updated.
|
|
5683
|
+
* @returns {Observable<CourierRouteOut>} An observable detail of the updated courier route.
|
|
5684
|
+
*/
|
|
5685
|
+
putCourierRoute(id: Number, body: CourierRouteIn): Observable<CourierRouteOut>;
|
|
5686
|
+
/**
|
|
5687
|
+
* Delete an existing courier route.
|
|
5688
|
+
*
|
|
5689
|
+
* @param {number} id - The unique identifier of the courier route to be deleted.
|
|
5690
|
+
* @returns {Observable<CourierRouteOut>} An observable that emits the result of the delete courier route.
|
|
5691
|
+
*/
|
|
5692
|
+
deleteCourierRoute(id: Number): Observable<CourierRouteOut>;
|
|
5635
5693
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiInventoriesService, never>;
|
|
5636
5694
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiInventoriesService>;
|
|
5637
5695
|
}
|
|
@@ -9001,5 +9059,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
|
|
|
9001
9059
|
[header: string]: string | string[];
|
|
9002
9060
|
};
|
|
9003
9061
|
|
|
9004
|
-
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,
|
|
9005
|
-
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, AddressPlaceDetail, AddressPlaceDetailIn, AddressPlaceDetailsOut, AddressSuggestion, AddressSuggestionIn, AddressSuggestionsOut, ApiBillingConfigurable, ApiModel, ApiResponse, ApiSuccess, Attribute, AttributeIn, AttributeWithId, AuthLoginIn, AuthLoginOut, AuthMeOut, AuthUserLoginIn, AvailablePrintersOut, 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, CommercialInvoiceComposition, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, CountriesOut, Country, CountryCompanies, 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, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerSurvey, CustomerSurveyFinishIn, CustomerSurveyIn, CustomerSurveyOut, CustomerType, CustomerTypesOut, CustomersOut, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, Deposit, DepositIn, DepositOut, DepositSlipOut, DestinationCountry, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentFunctionComposition, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeRangeIn, DocumentTypeRangeOut, DocumentTypeRangesOut, DocumentTypeReports, DocumentTypesOut, 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, 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, ItemComposition, Language, LanguageOut, 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, 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, OperationDocumentCustomerIn, OperationDocumentCustomerOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintTicketOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsOut, 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, PriceOverrideApprover, PriceOverrideApproversOut, PriceOverrideReason, PriceOverrideReasonsOut, PrintCollectionReceiptOut, Printable, Printer, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QuantityUnitsOut, 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, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, SetUpData, ShipmentAddressComposition, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentDescription, ShipmentDescriptionsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsopComposition, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceComposition, ShipmentPieceSupplyComposition, ShipmentProductComposition, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsLandingReportOut, ShipmentsOut, 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, TaxComposition, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TradingTransactionTypesOut, TransferenceType, TranslateLang, Translations, UniqueFolio, UniqueFolioIn, UniqueFolioOut, UniqueFoliosOut, Unit, UnitsOut, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZoneOut, ZonesOut };
|
|
9062
|
+
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, DocumentStatusCode, ENVIRONMENT_TOKEN, Event, Group, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, PrintMode, PrintableFormat, PrintersService, PrintersType, ShipmentIncomeTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
9063
|
+
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, AvailablePrintersOut, 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, CommercialInvoiceType, CommoditiesOut, 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, CourierRoute, CourierRouteIn, CourierRouteOut, CourierRoutesOut, 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, DocumentTypesOut, 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, InvoiceCancellationIn, InvoiceReport, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, LanguageOut, 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, OperationDocumentCustomerIn, OperationDocumentCustomerOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintTicketOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsOut, 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, PriceOverrideApprover, PriceOverrideApproversOut, PriceOverrideReason, PriceOverrideReasonsOut, PrintCollectionReceiptOut, Printable, Printer, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QuantityUnitsOut, 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, SetUpData, ShipmentAddresses, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentCompanyCountryExtraCharges, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentDescription, ShipmentDescriptionsOut, 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, TradingTransactionTypesOut, 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, ZoneOut, ZonesOut };
|