@experteam-mx/ngx-services 20.8.6-dev3.0 → 20.8.6
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
|
@@ -2734,15 +2734,30 @@ interface AccountWithDefault extends Account {
|
|
|
2734
2734
|
}
|
|
2735
2735
|
interface AccountWithLocations extends Account {
|
|
2736
2736
|
account_company_countries: AccountCompanyCountryLocation[];
|
|
2737
|
-
country:
|
|
2737
|
+
country: CountryAccount;
|
|
2738
2738
|
}
|
|
2739
2739
|
interface PostalCodeFormat extends SymfonyModel {
|
|
2740
2740
|
format: string;
|
|
2741
2741
|
significantChars: number;
|
|
2742
2742
|
regex: string;
|
|
2743
2743
|
}
|
|
2744
|
-
interface
|
|
2744
|
+
interface CountryAccount {
|
|
2745
|
+
id: number;
|
|
2746
|
+
code: string;
|
|
2747
|
+
name: string;
|
|
2748
|
+
timezone: string;
|
|
2749
|
+
hasImportService: boolean;
|
|
2750
|
+
isActive: boolean;
|
|
2751
|
+
isoCode: string;
|
|
2752
|
+
codePhone: string;
|
|
2753
|
+
phoneDigits: string | null;
|
|
2754
|
+
createdAt: string;
|
|
2755
|
+
updatedAt: string;
|
|
2756
|
+
locationType: LocationType;
|
|
2757
|
+
unit: Unit;
|
|
2758
|
+
locationTypeFields: LocationTypeFields;
|
|
2745
2759
|
postalCodeFormats: PostalCodeFormat[];
|
|
2760
|
+
translations: Translations;
|
|
2746
2761
|
}
|
|
2747
2762
|
|
|
2748
2763
|
type LocationEmployeesOut = {
|
|
@@ -3943,7 +3958,7 @@ declare class ApiCompaniesService {
|
|
|
3943
3958
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiCompaniesService>;
|
|
3944
3959
|
}
|
|
3945
3960
|
|
|
3946
|
-
declare enum
|
|
3961
|
+
declare enum CustomerType$1 {
|
|
3947
3962
|
SHIPPER = "SP",
|
|
3948
3963
|
CONSIGNEE = "RV",
|
|
3949
3964
|
IMPORTER = "IP",
|
|
@@ -3990,180 +4005,138 @@ interface SupplyLocationTransaction extends ActiveLessSymfonyModel {
|
|
|
3990
4005
|
stock: number;
|
|
3991
4006
|
}
|
|
3992
4007
|
|
|
3993
|
-
interface ShipmentComposition extends
|
|
4008
|
+
interface ShipmentComposition extends SymfonyModel {
|
|
4009
|
+
currencyCode: string;
|
|
4010
|
+
extraCharges: ExtraChargeComposition[];
|
|
4011
|
+
globalProductCode: string;
|
|
4012
|
+
globalProductName: string;
|
|
4013
|
+
localProductCode: string;
|
|
4014
|
+
localProductName: string;
|
|
4015
|
+
trackingNumber: string;
|
|
4016
|
+
contentDescription: string;
|
|
4017
|
+
realWeight: number;
|
|
4018
|
+
piecesNumber: number;
|
|
4019
|
+
productSubtotal: number;
|
|
4020
|
+
productTax: number;
|
|
4021
|
+
productTotal: number;
|
|
4022
|
+
declaredValue: number;
|
|
4023
|
+
insuredValue: number;
|
|
3994
4024
|
accountNumber: string;
|
|
3995
|
-
|
|
3996
|
-
|
|
3997
|
-
commercialExchangeRate: number;
|
|
3998
|
-
commercialInvoice: CommercialInvoiceComposition | null;
|
|
4025
|
+
userId: number;
|
|
4026
|
+
installationId: number;
|
|
3999
4027
|
companyCountryId: number;
|
|
4000
|
-
|
|
4028
|
+
productId: number;
|
|
4001
4029
|
countryReferenceCurrencyId: number;
|
|
4002
|
-
|
|
4003
|
-
declaredCurrency: string | null;
|
|
4004
|
-
declaredValue: number;
|
|
4005
|
-
deliveryDateTime: string;
|
|
4006
|
-
destinationFacilityCode: string;
|
|
4007
|
-
destinationServiceAreaCode: string;
|
|
4008
|
-
discountModelId: number | null;
|
|
4009
|
-
discountModelType: string | null;
|
|
4010
|
-
discountName: string | null;
|
|
4011
|
-
discountPercentage: number | null;
|
|
4012
|
-
discountReference: string | null;
|
|
4013
|
-
discountValue: number | null;
|
|
4014
|
-
dutiesAndTaxesAccountNumber: string | null;
|
|
4015
|
-
einNumber: string | null;
|
|
4016
|
-
exportReason: ExportReason | null;
|
|
4017
|
-
exportReasonId: number | null;
|
|
4018
|
-
extraFields: Record<string, unknown>;
|
|
4030
|
+
commercialExchangeRate: number;
|
|
4019
4031
|
ibsExchangeRate: number;
|
|
4020
|
-
|
|
4021
|
-
|
|
4022
|
-
|
|
4023
|
-
|
|
4024
|
-
|
|
4025
|
-
|
|
4032
|
+
shipmentStatusId: number;
|
|
4033
|
+
shipmentAddresses: ShipmentAddresses[];
|
|
4034
|
+
shipmentPieces: ShipmentPieces[];
|
|
4035
|
+
shipmentCompanyCountryExtraCharges: ShipmentCompanyCountryExtraCharges[];
|
|
4036
|
+
shipmentGsop: ShipmentGsop;
|
|
4037
|
+
additionalData: AdditionalData;
|
|
4038
|
+
transactionId: string;
|
|
4039
|
+
requiresPayment: boolean;
|
|
4040
|
+
originServiceAreaCode: string;
|
|
4041
|
+
originFacilityCode: string;
|
|
4042
|
+
destinationServiceAreaCode: string;
|
|
4043
|
+
destinationFacilityCode: string;
|
|
4044
|
+
productTaxes: string[];
|
|
4026
4045
|
isInspected: boolean;
|
|
4046
|
+
extraFields: {
|
|
4047
|
+
[key: string]: string | number | boolean;
|
|
4048
|
+
};
|
|
4049
|
+
shipmentContentTypeId: number;
|
|
4050
|
+
commercialInvoice: CommercialInvoice;
|
|
4051
|
+
shipmentScopeId: number;
|
|
4052
|
+
shipmentGroupId: number;
|
|
4053
|
+
product: string[];
|
|
4054
|
+
declaredCurrency: string;
|
|
4055
|
+
insuredCurrency: string;
|
|
4056
|
+
deliveryDateTime: string;
|
|
4057
|
+
date: string;
|
|
4058
|
+
promotionCode: string;
|
|
4059
|
+
priceOverrideApproverId: number;
|
|
4060
|
+
priceOverrideReasonId: number;
|
|
4061
|
+
customs: Customs;
|
|
4062
|
+
exportReasonId: number;
|
|
4063
|
+
exportReason: string[];
|
|
4064
|
+
shipmentBookPickup: ShipmentBookPickup;
|
|
4065
|
+
questionId: number;
|
|
4027
4066
|
isInsured: boolean;
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4067
|
+
itnNumber: string;
|
|
4068
|
+
einNumber: string;
|
|
4069
|
+
otherAccountNumber: string;
|
|
4070
|
+
dutiesAndTaxesAccountNumber: string;
|
|
4071
|
+
discountId: string;
|
|
4072
|
+
discountReference: string;
|
|
4073
|
+
totalPublishedValue: number;
|
|
4074
|
+
totalPartnerAccountValue: number;
|
|
4075
|
+
isMarketingConsent: boolean;
|
|
4076
|
+
isTermCondition: boolean;
|
|
4077
|
+
isDocument: boolean;
|
|
4078
|
+
isCash: boolean;
|
|
4031
4079
|
isPriceOverride: boolean;
|
|
4032
4080
|
isProforma: boolean;
|
|
4033
4081
|
isPromotionCode: boolean;
|
|
4034
4082
|
isRetailRate: boolean;
|
|
4035
|
-
|
|
4036
|
-
|
|
4037
|
-
|
|
4038
|
-
originFacilityCode: string;
|
|
4039
|
-
originServiceAreaCode: string;
|
|
4040
|
-
otherAccountNumber: string | null;
|
|
4041
|
-
piecesNumber: number;
|
|
4042
|
-
priceOverrideApproverId: number | null;
|
|
4043
|
-
priceOverrideReasonId: number | null;
|
|
4044
|
-
product: ShipmentProductComposition;
|
|
4045
|
-
productId: number;
|
|
4046
|
-
productSubtotal: number;
|
|
4047
|
-
productTax: number;
|
|
4048
|
-
productTaxes: TaxComposition[];
|
|
4049
|
-
productTotal: number;
|
|
4050
|
-
promotionCode: string | null;
|
|
4051
|
-
realWeight: number;
|
|
4052
|
-
requiresPayment: boolean;
|
|
4053
|
-
shipmentAddresses: ShipmentAddressComposition[];
|
|
4054
|
-
shipmentBookPickup: ShipmentBookPickup | null;
|
|
4055
|
-
shipmentContentTypeId: number;
|
|
4056
|
-
shipmentExtraCharges: ExtraChargeComposition[];
|
|
4057
|
-
shipmentGroupId: number;
|
|
4058
|
-
shipmentGsop: ShipmentGsopComposition | null;
|
|
4059
|
-
shipmentPieces: ShipmentPieceComposition[];
|
|
4060
|
-
shipmentScopeId: number;
|
|
4061
|
-
shipmentStatusId: number;
|
|
4062
|
-
shipmentTaxes: TaxComposition[];
|
|
4063
|
-
shipmentWithholding: unknown | null;
|
|
4064
|
-
subtotal: number;
|
|
4065
|
-
tax: number;
|
|
4066
|
-
total: number;
|
|
4067
|
-
totalPartnerAccountValue: number | null;
|
|
4068
|
-
totalPublishedValue: number | null;
|
|
4069
|
-
trackingNumber: string;
|
|
4070
|
-
transactionId: string;
|
|
4071
|
-
userId: number;
|
|
4072
|
-
customs: {
|
|
4073
|
-
ignoreValidation: boolean;
|
|
4074
|
-
criteria: {
|
|
4075
|
-
origin: string;
|
|
4076
|
-
destination: string;
|
|
4077
|
-
dutiable: boolean;
|
|
4078
|
-
declaredValue: number | null;
|
|
4079
|
-
};
|
|
4080
|
-
rules: {
|
|
4081
|
-
id: number;
|
|
4082
|
-
level: string;
|
|
4083
|
-
attributes: {
|
|
4084
|
-
id: number;
|
|
4085
|
-
field: string;
|
|
4086
|
-
dhlCode: string;
|
|
4087
|
-
values: {
|
|
4088
|
-
shipment: string;
|
|
4089
|
-
customer: CustomerRoleType;
|
|
4090
|
-
invoiceHeader: string;
|
|
4091
|
-
invoiceItem: string[];
|
|
4092
|
-
};
|
|
4093
|
-
}[];
|
|
4094
|
-
}[];
|
|
4095
|
-
};
|
|
4096
|
-
additionalData: {
|
|
4097
|
-
countryCode: string;
|
|
4098
|
-
productGlobalCode: string;
|
|
4099
|
-
productLocalCode: string;
|
|
4100
|
-
currencyCode: string;
|
|
4101
|
-
userUsername: string;
|
|
4102
|
-
locationFacilityCode: string;
|
|
4103
|
-
shipmentStatusCode: string;
|
|
4104
|
-
awbTypeCode?: string;
|
|
4105
|
-
shipmentTypeCode?: string;
|
|
4106
|
-
};
|
|
4083
|
+
isOtherOrigin: boolean;
|
|
4084
|
+
isOccurs: boolean;
|
|
4085
|
+
isDutiesAndTaxes: boolean;
|
|
4107
4086
|
}
|
|
4108
|
-
interface ExtraChargeComposition
|
|
4087
|
+
interface ExtraChargeComposition {
|
|
4088
|
+
globalServiceCode: string;
|
|
4089
|
+
localServiceCode: string;
|
|
4090
|
+
globalServiceName: string;
|
|
4091
|
+
localServiceName: string;
|
|
4109
4092
|
subtotal: number;
|
|
4110
4093
|
tax: number;
|
|
4111
4094
|
total: number;
|
|
4112
|
-
|
|
4113
|
-
taxes: TaxComposition[];
|
|
4114
|
-
extraChargeGroup: string;
|
|
4115
|
-
extraChargeCode: string;
|
|
4116
|
-
extraChargeName: string;
|
|
4117
|
-
extraChargeIsDiscount: boolean;
|
|
4095
|
+
taxes: Tax[];
|
|
4118
4096
|
}
|
|
4119
|
-
interface
|
|
4097
|
+
interface Tax {
|
|
4120
4098
|
code: string;
|
|
4121
4099
|
percent: number;
|
|
4122
4100
|
baseAmount: number;
|
|
4123
4101
|
amount: number;
|
|
4124
4102
|
}
|
|
4125
|
-
interface
|
|
4103
|
+
interface ShipmentAddresses extends SymfonyModel {
|
|
4126
4104
|
index: number;
|
|
4127
|
-
identificationTypeId: number
|
|
4128
|
-
identificationNumber: string
|
|
4105
|
+
identificationTypeId: number;
|
|
4106
|
+
identificationNumber: string;
|
|
4129
4107
|
companyName: string;
|
|
4130
4108
|
fullName: string;
|
|
4131
4109
|
email: string;
|
|
4132
4110
|
phoneCode: string;
|
|
4133
4111
|
phoneNumber: string;
|
|
4134
|
-
postalCode: string
|
|
4135
|
-
stateCode: string
|
|
4136
|
-
stateId: number | null;
|
|
4112
|
+
postalCode: string;
|
|
4113
|
+
stateCode: string;
|
|
4137
4114
|
countyName: string;
|
|
4138
4115
|
cityName: string;
|
|
4139
4116
|
addressLine1: string;
|
|
4140
|
-
addressLine2: string
|
|
4141
|
-
addressLine3: string
|
|
4117
|
+
addressLine2: string;
|
|
4118
|
+
addressLine3: string;
|
|
4142
4119
|
countryId: number;
|
|
4143
|
-
|
|
4144
|
-
|
|
4145
|
-
|
|
4146
|
-
|
|
4147
|
-
|
|
4148
|
-
|
|
4149
|
-
|
|
4150
|
-
|
|
4151
|
-
businessPartyTraderType?: BusinessPartyTraderType | null;
|
|
4152
|
-
identificationType?: IdentificationType | null;
|
|
4153
|
-
}
|
|
4154
|
-
interface ShipmentPieceComposition extends ActiveLessSymfonyModel {
|
|
4120
|
+
identificationType: IdentificationTypeComposition;
|
|
4121
|
+
roleType: CustomerType$1;
|
|
4122
|
+
}
|
|
4123
|
+
interface IdentificationTypeComposition extends SymfonyModel {
|
|
4124
|
+
name: string;
|
|
4125
|
+
companyCountryId: number;
|
|
4126
|
+
}
|
|
4127
|
+
interface ShipmentPieces extends ActiveLessSymfonyModel {
|
|
4155
4128
|
number: number;
|
|
4156
4129
|
height: number;
|
|
4157
4130
|
length: number;
|
|
4158
4131
|
width: number;
|
|
4159
4132
|
realWeight: number;
|
|
4160
4133
|
volumetricWeight: number;
|
|
4161
|
-
dataIdentifier: string
|
|
4134
|
+
dataIdentifier: string;
|
|
4162
4135
|
trackingNumber: string;
|
|
4163
|
-
licensePlateBarCode: string
|
|
4164
|
-
|
|
4136
|
+
licensePlateBarCode: string;
|
|
4137
|
+
shipmentPieceCompanyCountrySupplies: ShipmentPieceCompanyCountrySupplies[];
|
|
4165
4138
|
}
|
|
4166
|
-
interface
|
|
4139
|
+
interface ShipmentPieceCompanyCountrySupplies extends ActiveLessSymfonyModel {
|
|
4167
4140
|
supplyId: number;
|
|
4168
4141
|
quantity: number;
|
|
4169
4142
|
subtotal: number;
|
|
@@ -4174,25 +4147,18 @@ interface ShipmentPieceSupplyComposition extends ActiveLessSymfonyModel {
|
|
|
4174
4147
|
description: string;
|
|
4175
4148
|
supply: Supply;
|
|
4176
4149
|
}
|
|
4177
|
-
interface
|
|
4178
|
-
globalCode: string;
|
|
4179
|
-
localCode: string;
|
|
4180
|
-
globalName: string;
|
|
4181
|
-
localName: string;
|
|
4182
|
-
isDocument: boolean;
|
|
4183
|
-
}
|
|
4184
|
-
interface CommercialInvoiceComposition extends ActiveLessSymfonyModel {
|
|
4150
|
+
interface CommercialInvoice extends ActiveLessSymfonyModel {
|
|
4185
4151
|
documentTypeId: number;
|
|
4186
4152
|
tradingTransactionTypeId: number;
|
|
4187
4153
|
documentFunctionId: number;
|
|
4188
4154
|
number: string;
|
|
4189
4155
|
remarks: string;
|
|
4190
|
-
items:
|
|
4156
|
+
items: Item[];
|
|
4191
4157
|
documentType: DocumentTypeComposition;
|
|
4192
4158
|
tradingTransactionType: TradingTransactionType;
|
|
4193
|
-
documentFunction:
|
|
4159
|
+
documentFunction: DocumentFunction;
|
|
4194
4160
|
}
|
|
4195
|
-
interface
|
|
4161
|
+
interface Item extends ActiveLessSymfonyModel {
|
|
4196
4162
|
description: string;
|
|
4197
4163
|
quantity: number;
|
|
4198
4164
|
quantityUnitId: number;
|
|
@@ -4201,31 +4167,32 @@ interface ItemComposition extends ActiveLessSymfonyModel {
|
|
|
4201
4167
|
realWeight: number;
|
|
4202
4168
|
commodityId: number;
|
|
4203
4169
|
quantityUnit: QuantityUnit;
|
|
4204
|
-
manufactureCountry:
|
|
4205
|
-
id: string;
|
|
4206
|
-
code: string;
|
|
4207
|
-
name: string;
|
|
4208
|
-
locationType: string[];
|
|
4209
|
-
unit: string[];
|
|
4210
|
-
timezone: string;
|
|
4211
|
-
hasImportService: boolean;
|
|
4212
|
-
isActive: boolean;
|
|
4213
|
-
regions: string[];
|
|
4214
|
-
zones: string[];
|
|
4215
|
-
isoCode: string;
|
|
4216
|
-
};
|
|
4170
|
+
manufactureCountry: ManufactureCountry;
|
|
4217
4171
|
commodity: Commodity;
|
|
4218
4172
|
}
|
|
4173
|
+
interface ManufactureCountry {
|
|
4174
|
+
id: string;
|
|
4175
|
+
code: string;
|
|
4176
|
+
name: string;
|
|
4177
|
+
locationType: string[];
|
|
4178
|
+
unit: string[];
|
|
4179
|
+
timezone: string;
|
|
4180
|
+
hasImportService: boolean;
|
|
4181
|
+
isActive: boolean;
|
|
4182
|
+
regions: string[];
|
|
4183
|
+
zones: string[];
|
|
4184
|
+
isoCode: string;
|
|
4185
|
+
}
|
|
4219
4186
|
interface DocumentTypeComposition extends SymfonyModel {
|
|
4220
4187
|
code: string;
|
|
4221
4188
|
name: string;
|
|
4222
4189
|
description: string;
|
|
4223
4190
|
}
|
|
4224
|
-
interface
|
|
4191
|
+
interface DocumentFunction extends SymfonyModel {
|
|
4225
4192
|
code: string;
|
|
4226
4193
|
name: string;
|
|
4227
4194
|
}
|
|
4228
|
-
interface
|
|
4195
|
+
interface ShipmentGsop extends ActiveLessSymfonyModel {
|
|
4229
4196
|
productContentCode: string;
|
|
4230
4197
|
originServiceAreaCode: string;
|
|
4231
4198
|
destinationServiceAreaCode: string;
|
|
@@ -4233,6 +4200,54 @@ interface ShipmentGsopComposition extends ActiveLessSymfonyModel {
|
|
|
4233
4200
|
awbBarCode: string;
|
|
4234
4201
|
dhlRoutingBarCode: string;
|
|
4235
4202
|
}
|
|
4203
|
+
interface ShipmentCompanyCountryExtraCharges extends ActiveLessSymfonyModel {
|
|
4204
|
+
subtotal: number;
|
|
4205
|
+
tax: number;
|
|
4206
|
+
total: number;
|
|
4207
|
+
extraChargeId: number;
|
|
4208
|
+
extraChargeCode: string;
|
|
4209
|
+
}
|
|
4210
|
+
interface AdditionalData {
|
|
4211
|
+
awbTypeCode: string;
|
|
4212
|
+
countryCode: string;
|
|
4213
|
+
shipmentTypeCode: string;
|
|
4214
|
+
productGlobalCode: string;
|
|
4215
|
+
productLocalCode: string;
|
|
4216
|
+
currencyCode: string;
|
|
4217
|
+
userUsername: string;
|
|
4218
|
+
locationFacilityCode: string;
|
|
4219
|
+
}
|
|
4220
|
+
interface Customs {
|
|
4221
|
+
criteria: Criteria;
|
|
4222
|
+
rules: Rules[];
|
|
4223
|
+
}
|
|
4224
|
+
interface Criteria {
|
|
4225
|
+
origin: string;
|
|
4226
|
+
destination: string;
|
|
4227
|
+
dutiable: boolean;
|
|
4228
|
+
declaredValue: number;
|
|
4229
|
+
}
|
|
4230
|
+
interface Rules {
|
|
4231
|
+
id: number;
|
|
4232
|
+
level: string;
|
|
4233
|
+
attributes: Attributes[];
|
|
4234
|
+
}
|
|
4235
|
+
interface Attributes {
|
|
4236
|
+
id: number;
|
|
4237
|
+
field: string;
|
|
4238
|
+
dhlCode: string;
|
|
4239
|
+
values: Values;
|
|
4240
|
+
}
|
|
4241
|
+
interface Values {
|
|
4242
|
+
shipment: string;
|
|
4243
|
+
customer: CustomerComposition;
|
|
4244
|
+
invoiceHeader: string;
|
|
4245
|
+
invoiceItem: string[];
|
|
4246
|
+
}
|
|
4247
|
+
interface CustomerComposition {
|
|
4248
|
+
SP: string;
|
|
4249
|
+
RV: string;
|
|
4250
|
+
}
|
|
4236
4251
|
interface ShipmentBookPickup extends ActiveLessSymfonyModel {
|
|
4237
4252
|
pickupDate: string;
|
|
4238
4253
|
readyByTime: string;
|
|
@@ -4246,10 +4261,6 @@ interface ShipmentBookPickup extends ActiveLessSymfonyModel {
|
|
|
4246
4261
|
type ShipmentOut = {
|
|
4247
4262
|
shipment: ShipmentComposition;
|
|
4248
4263
|
};
|
|
4249
|
-
type ShipmentsOut = {
|
|
4250
|
-
shipments: ShipmentComposition[];
|
|
4251
|
-
total: number;
|
|
4252
|
-
};
|
|
4253
4264
|
type CompositionCountryReferencesOut = {
|
|
4254
4265
|
country_references: CountryReference[];
|
|
4255
4266
|
total: number;
|
|
@@ -4271,13 +4282,6 @@ declare class ApiCompositionService {
|
|
|
4271
4282
|
* @returns {Observable<ShipmentOut>} An observable that emits the details of the shipment.
|
|
4272
4283
|
*/
|
|
4273
4284
|
getShipment(id: number): Observable<ShipmentOut>;
|
|
4274
|
-
/**
|
|
4275
|
-
* Retrieves shipments based on the provided query parameters.
|
|
4276
|
-
*
|
|
4277
|
-
* @param {QueryParams} params - The query parameters for the API request.
|
|
4278
|
-
* @returns {Observable<ShipmentsOut>} An observable that emits the shipments data.
|
|
4279
|
-
*/
|
|
4280
|
-
getShipments(params: QueryParams): Observable<ShipmentsOut>;
|
|
4281
4285
|
/**
|
|
4282
4286
|
* Fetches the country references data based on the provided query parameters.
|
|
4283
4287
|
*
|
|
@@ -5227,6 +5231,170 @@ interface Operation extends LaravelModel {
|
|
|
5227
5231
|
}[];
|
|
5228
5232
|
};
|
|
5229
5233
|
}
|
|
5234
|
+
interface TaxToSignaturePage extends ActiveLessLaravelModel {
|
|
5235
|
+
code: string;
|
|
5236
|
+
percent: number;
|
|
5237
|
+
base_amount: number;
|
|
5238
|
+
amount: number;
|
|
5239
|
+
}
|
|
5240
|
+
interface ExtraChargeTax {
|
|
5241
|
+
code: string;
|
|
5242
|
+
percent: number;
|
|
5243
|
+
base_amount: number;
|
|
5244
|
+
amount: number;
|
|
5245
|
+
}
|
|
5246
|
+
interface ExtraChargeToSignaturePage {
|
|
5247
|
+
global_service_code: string;
|
|
5248
|
+
local_service_code: string;
|
|
5249
|
+
global_service_name: string;
|
|
5250
|
+
local_service_name: string;
|
|
5251
|
+
is_discount: boolean;
|
|
5252
|
+
subtotal: number;
|
|
5253
|
+
tax: number;
|
|
5254
|
+
total: number;
|
|
5255
|
+
taxes: ExtraChargeTax[];
|
|
5256
|
+
}
|
|
5257
|
+
interface AddressToSignaturePage {
|
|
5258
|
+
role_type: CustomerRoleType;
|
|
5259
|
+
identification_type_name: string | null;
|
|
5260
|
+
identification_number: string | null;
|
|
5261
|
+
company_name: string;
|
|
5262
|
+
full_name: string;
|
|
5263
|
+
email: string;
|
|
5264
|
+
phone_code: string;
|
|
5265
|
+
phone_number: string;
|
|
5266
|
+
postal_code: string | null;
|
|
5267
|
+
state_code: string | null;
|
|
5268
|
+
county_name: string | null;
|
|
5269
|
+
city_name: string;
|
|
5270
|
+
address_line_1: string;
|
|
5271
|
+
address_line_2: string | null;
|
|
5272
|
+
address_line_3: string | null;
|
|
5273
|
+
country_name: string;
|
|
5274
|
+
state: string | null;
|
|
5275
|
+
business_party_trader_type_name: string | null;
|
|
5276
|
+
}
|
|
5277
|
+
interface PiecesToSignaturePage {
|
|
5278
|
+
number: number;
|
|
5279
|
+
height: number;
|
|
5280
|
+
length: number;
|
|
5281
|
+
width: number;
|
|
5282
|
+
real_weight: number;
|
|
5283
|
+
volumetric_weight: number;
|
|
5284
|
+
tracking_number: string;
|
|
5285
|
+
shipment_piece_supplies: PieceSupplyToSignaturePage[];
|
|
5286
|
+
}
|
|
5287
|
+
interface PieceSupplyToSignaturePage {
|
|
5288
|
+
quantity: number;
|
|
5289
|
+
subtotal: number;
|
|
5290
|
+
tax_base: number;
|
|
5291
|
+
tax_percent: number;
|
|
5292
|
+
tax: number;
|
|
5293
|
+
total: number;
|
|
5294
|
+
supply_name: string;
|
|
5295
|
+
}
|
|
5296
|
+
interface CommercialInvoiceItemToSignaturePage {
|
|
5297
|
+
description: string;
|
|
5298
|
+
quantity: number;
|
|
5299
|
+
quantity_unit_name: string;
|
|
5300
|
+
subtotal: number;
|
|
5301
|
+
manufacture_country_name: string;
|
|
5302
|
+
real_weight: number;
|
|
5303
|
+
commodity_name: string | null;
|
|
5304
|
+
}
|
|
5305
|
+
interface CommercialInvoiceToSignaturePage {
|
|
5306
|
+
document_type_name: string;
|
|
5307
|
+
trading_transaction_type_name: string | null;
|
|
5308
|
+
number: number | null;
|
|
5309
|
+
remarks: string | null;
|
|
5310
|
+
items: CommercialInvoiceItemToSignaturePage[];
|
|
5311
|
+
}
|
|
5312
|
+
interface BookPickupToSignaturePage {
|
|
5313
|
+
pickup_date: string | null;
|
|
5314
|
+
ready_by_time: string | null;
|
|
5315
|
+
close_time: string | null;
|
|
5316
|
+
confirmation_number: string | null;
|
|
5317
|
+
package_location_name: string | null;
|
|
5318
|
+
remarks: string | null;
|
|
5319
|
+
}
|
|
5320
|
+
interface CustomsAttribute {
|
|
5321
|
+
field: string | null;
|
|
5322
|
+
dhl_code: string | null;
|
|
5323
|
+
input_label: string;
|
|
5324
|
+
values: CustomsAttributeValues;
|
|
5325
|
+
}
|
|
5326
|
+
interface CustomsAttributeValues {
|
|
5327
|
+
shipment?: string;
|
|
5328
|
+
customer?: Record<string, string>;
|
|
5329
|
+
invoiceHeader?: string;
|
|
5330
|
+
invoiceItem?: string[];
|
|
5331
|
+
}
|
|
5332
|
+
interface CustomsRule {
|
|
5333
|
+
level: string;
|
|
5334
|
+
attributes: CustomsAttribute[];
|
|
5335
|
+
}
|
|
5336
|
+
interface ShipmentCustoms {
|
|
5337
|
+
rules: CustomsRule[];
|
|
5338
|
+
}
|
|
5339
|
+
interface ShipmentDataToSignaturePage {
|
|
5340
|
+
currency_code: string;
|
|
5341
|
+
decimal_point: number;
|
|
5342
|
+
decimal_separator: string;
|
|
5343
|
+
thousands_separator: string;
|
|
5344
|
+
tracking_number: string;
|
|
5345
|
+
content_description: string;
|
|
5346
|
+
pieces_number: number;
|
|
5347
|
+
global_product_code: string;
|
|
5348
|
+
global_product_name: string;
|
|
5349
|
+
local_product_code: string;
|
|
5350
|
+
local_product_name: string;
|
|
5351
|
+
delivery_date_time: string;
|
|
5352
|
+
is_document: boolean;
|
|
5353
|
+
is_insured: boolean;
|
|
5354
|
+
declared_value: number | null;
|
|
5355
|
+
insured_value: number | null;
|
|
5356
|
+
declared_currency: string | null;
|
|
5357
|
+
insured_currency: string | null;
|
|
5358
|
+
promotion_code: string | null;
|
|
5359
|
+
export_reason_name: string | null;
|
|
5360
|
+
product_subtotal: number;
|
|
5361
|
+
product_tax: number;
|
|
5362
|
+
product_total: number;
|
|
5363
|
+
subtotal: number;
|
|
5364
|
+
tax: number;
|
|
5365
|
+
total: number;
|
|
5366
|
+
product_taxes: TaxToSignaturePage[];
|
|
5367
|
+
shipment_taxes: TaxToSignaturePage[];
|
|
5368
|
+
extra_charges_mandatory: ExtraChargeToSignaturePage[];
|
|
5369
|
+
extra_charges_optional: ExtraChargeToSignaturePage[];
|
|
5370
|
+
extra_charges_aggregated: ExtraChargeToSignaturePage[];
|
|
5371
|
+
shipment_addresses: AddressToSignaturePage[];
|
|
5372
|
+
shipment_pieces: PiecesToSignaturePage[];
|
|
5373
|
+
commercial_invoice: CommercialInvoiceToSignaturePage | null;
|
|
5374
|
+
shipment_book_pickup: BookPickupToSignaturePage | null;
|
|
5375
|
+
customs: ShipmentCustoms | null;
|
|
5376
|
+
created_at: string;
|
|
5377
|
+
updated_at: string;
|
|
5378
|
+
}
|
|
5379
|
+
interface SignaturePage {
|
|
5380
|
+
terms_and_condition: string;
|
|
5381
|
+
marketing_consent: string | null;
|
|
5382
|
+
marketing_consent_mandatory: boolean;
|
|
5383
|
+
additional_verbiage: string | null;
|
|
5384
|
+
}
|
|
5385
|
+
interface SignaturePageAnswers {
|
|
5386
|
+
terms_and_condition: boolean;
|
|
5387
|
+
marketing_consent: boolean | null;
|
|
5388
|
+
additional_verbiage: boolean | null;
|
|
5389
|
+
}
|
|
5390
|
+
interface SignaturePageConfirmation extends ActiveLessLaravelModel {
|
|
5391
|
+
shipment_id: number;
|
|
5392
|
+
code: string;
|
|
5393
|
+
status: string;
|
|
5394
|
+
shipment_data: ShipmentDataToSignaturePage;
|
|
5395
|
+
signature_page: SignaturePage;
|
|
5396
|
+
expiry: number;
|
|
5397
|
+
}
|
|
5230
5398
|
|
|
5231
5399
|
type DeliveryConfirmationGenerateOut = {
|
|
5232
5400
|
code: string;
|
|
@@ -5262,6 +5430,29 @@ type DeliveryConfirmationIn = {
|
|
|
5262
5430
|
type DeliveryConfirmationSearchOut = {
|
|
5263
5431
|
operation: Operation;
|
|
5264
5432
|
};
|
|
5433
|
+
type SignaturePageConfirmationGenerateOut = {
|
|
5434
|
+
code: string;
|
|
5435
|
+
};
|
|
5436
|
+
type CustomerRoleType = 'SP' | 'RV' | 'IM' | 'EX' | string;
|
|
5437
|
+
type ConfirmTermsIn = {
|
|
5438
|
+
shipment_id: number;
|
|
5439
|
+
status: 'Processed' | 'Canceled';
|
|
5440
|
+
signature_page_answers: SignaturePageAnswers | null;
|
|
5441
|
+
};
|
|
5442
|
+
type SignaturePageConfirmationOut = {
|
|
5443
|
+
operation: SignaturePageConfirmation;
|
|
5444
|
+
};
|
|
5445
|
+
type ShipmentSignaturePageIn = {
|
|
5446
|
+
shipment_id: number;
|
|
5447
|
+
shipment_data: ShipmentDataToSignaturePage;
|
|
5448
|
+
signature_page: SignaturePage;
|
|
5449
|
+
};
|
|
5450
|
+
type ShipmentSignaturePageConfirmationIn = {
|
|
5451
|
+
shipment_id: number;
|
|
5452
|
+
status: string;
|
|
5453
|
+
signature_page_answers: SignaturePageAnswers | null;
|
|
5454
|
+
otp: string;
|
|
5455
|
+
};
|
|
5265
5456
|
|
|
5266
5457
|
declare class ApiExternalOperationsService {
|
|
5267
5458
|
private http;
|
|
@@ -5278,7 +5469,7 @@ declare class ApiExternalOperationsService {
|
|
|
5278
5469
|
* Retrieves delivery confirmation details based on the provided OTP code.
|
|
5279
5470
|
*
|
|
5280
5471
|
* @param {string} otpCode - The OTP code used to search for delivery confirmation.
|
|
5281
|
-
* @return {Observable<
|
|
5472
|
+
* @return {Observable<DeliveryConfirmationSearchOut>} An observable containing the delivery confirmation data.
|
|
5282
5473
|
*/
|
|
5283
5474
|
getDeliveryConfirmation(otpCode: string): Observable<DeliveryConfirmationSearchOut>;
|
|
5284
5475
|
/**
|
|
@@ -5306,6 +5497,29 @@ declare class ApiExternalOperationsService {
|
|
|
5306
5497
|
* @return {Observable<Object>} An observable that emits the server's response when the cancellation is processed.
|
|
5307
5498
|
*/
|
|
5308
5499
|
putDeliveryConfirmation({ otp, ...body }: DeliveryConfirmationIn): Observable<{}>;
|
|
5500
|
+
/**
|
|
5501
|
+
* Retrieves signature page confirmation information associated with an OTP code.
|
|
5502
|
+
*
|
|
5503
|
+
* @param {string} otpCode - OTP code used to search for the signature page confirmation.
|
|
5504
|
+
* @returns {Observable<SignaturePageConfirmationOut>} An observable containing the signature page confirmation details.
|
|
5505
|
+
*/
|
|
5506
|
+
getSignaturePageConfirmationSearch(otpCode: string): Observable<SignaturePageConfirmationOut>;
|
|
5507
|
+
/**
|
|
5508
|
+
* Generates a signature page confirmation request for a shipment.
|
|
5509
|
+
*
|
|
5510
|
+
* @param {ShipmentSignaturePageIn} payload - Shipment data required to generate the signature page confirmation.
|
|
5511
|
+
* @returns {Observable<SignaturePageConfirmationGenerateOut>} An observable containing the generated confirmation information.
|
|
5512
|
+
*/
|
|
5513
|
+
postSignaturePageConfirmationGenerate(payload: ShipmentSignaturePageIn): Observable<SignaturePageConfirmationGenerateOut>;
|
|
5514
|
+
/**
|
|
5515
|
+
* Confirms a shipment signature page using an OTP code.
|
|
5516
|
+
*
|
|
5517
|
+
* @param {ShipmentSignaturePageConfirmationIn} input - Signature page confirmation data.
|
|
5518
|
+
* @param {string} input.otp - OTP code used to validate the confirmation.
|
|
5519
|
+
* @param {...Object} input.body - Additional confirmation information sent in the request body.
|
|
5520
|
+
* @returns {Observable<{}>} An observable that emits the API response data.
|
|
5521
|
+
*/
|
|
5522
|
+
putSignaturePageConfirmation({ otp, ...body }: ShipmentSignaturePageConfirmationIn): Observable<{}>;
|
|
5309
5523
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiExternalOperationsService, never>;
|
|
5310
5524
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiExternalOperationsService>;
|
|
5311
5525
|
}
|
|
@@ -9339,5 +9553,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
|
|
|
9339
9553
|
[header: string]: string | string[];
|
|
9340
9554
|
};
|
|
9341
9555
|
|
|
9342
|
-
export { AccountTypeId, AccountTypeName, AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCheckpointsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiDropoffsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService,
|
|
9343
|
-
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, CheckpointCode, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointInventory, CheckpointsInventoryOut, 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, CountryToDocumentConfig, CountryToExportReason, CourierCheckOutPackesOut, CourierRoute, CourierRouteIn, CourierRouteOut, CourierRoutesOut, 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, DocumentConfiguration, DocumentConfigurationIn, DocumentConfigurationOut, DocumentConfigurationsOut, DocumentConfigurationsPreviewIn, DocumentConfigurationsPreviewOut, 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, EventRegister, EventRegistersOut, 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, LocationEmployeesOut, LocationIn, LocationOut, LocationType, LocationTypeFields, LocationsOut, LoyaltyPeriod, LoyaltyPeriodIn, LoyaltyPeriodOut, LoyaltyPeriodsOut, LoyaltyRule, LoyaltyRuleIn, LoyaltyRuleOut, LoyaltyRulesOut, ManagementArea, ManagementAreasOut, ManifestMultipleIn, ManifestMultipleOut, MissingPackagesIn, MissingPackagesOut, 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, Package5, Package9, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsOut, PackageMissing, PackageOnHoldIn, PackageOnHoldOut, PackageReassignPositionIn, PackageReassignPositionOut, PackageReport, PackageValidationActionIn, PackageValidationActionOut, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueOut, ParametersByModelIn, ParametersOut, 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, ReturnFirstMileIn, ReturnFirstMileOut, 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, ShipmentDocument, ShipmentDocumentsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsopComposition, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceComposition, ShipmentPieceSupplyComposition, ShipmentProductComposition, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsBookingIn, ShipmentsEReceiptIn, ShipmentsLandingReportOut, ShipmentsOut, ShipmentsReportOut, SignaturePageSetting, SignaturePageSettingIn, State, Status, Status5, 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 };
|
|
9556
|
+
export { AccountTypeId, AccountTypeName, AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCheckpointsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiDropoffsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, DefaultValueType, DepositTypeCode, DocumentStatusCode, ENVIRONMENT_TOKEN, Event, Group, InventoryActions, InventoryErrorCodes, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, PrintMode, PrintableFormat, PrintersService, PrintersType, RouteModelType, ShipmentIncomeTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
9557
|
+
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, AddressToSignaturePage, 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, BookPickupToSignaturePage, BusinessPartyTraderType, BusinessPartyTraderTypesOut, CFDI, CancelPaymentReceiptIn, CancellationReason, CancellationReasonIn, CancellationReasonOut, CancellationReasonsOut, CashValueSummary, CashValueSummaryOut, Catalog, CatalogLess, CatalogsOut, ChangeLanguageIn, Checkpoint, CheckpointCode, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointInventory, CheckpointsInventoryOut, 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, CommercialInvoiceItemToSignaturePage, CommercialInvoiceToSignaturePage, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, ConfirmTermsIn, 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, CountryToDocumentConfig, 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, CustomerRoleType, CustomerSurvey, CustomerSurveyFinishIn, CustomerSurveyIn, CustomerSurveyOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, CustomsAttribute, CustomsAttributeValues, CustomsRule, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, Deposit, DepositIn, DepositOut, DepositSlipOut, DestinationCountry, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentConfiguration, DocumentConfigurationIn, DocumentConfigurationOut, DocumentConfigurationsOut, DocumentConfigurationsPreviewIn, DocumentConfigurationsPreviewOut, 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, EventRegister, EventRegistersOut, 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, ExtraChargeTax, ExtraChargeToSignaturePage, 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, LocationEmployeesOut, LocationIn, LocationOut, LocationType, LocationTypeFields, LocationsOut, LoyaltyPeriod, LoyaltyPeriodIn, LoyaltyPeriodOut, LoyaltyPeriodsOut, LoyaltyRule, LoyaltyRuleIn, LoyaltyRuleOut, LoyaltyRulesOut, ManagementArea, ManagementAreasOut, ManifestMultipleIn, ManifestMultipleOut, ManufactureCountry, MissingPackagesIn, MissingPackagesOut, 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, Package5, Package9, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsOut, PackageMissing, PackageOnHoldIn, PackageOnHoldOut, PackageReassignPositionIn, PackageReassignPositionOut, PackageReport, PackageValidationActionIn, PackageValidationActionOut, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueOut, ParametersByModelIn, ParametersOut, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, PieceSupplyToSignaturePage, PiecesToSignaturePage, 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, ReturnFirstMileIn, ReturnFirstMileOut, 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, ShipmentCustoms, ShipmentDataToSignaturePage, ShipmentDescription, ShipmentDescriptionsOut, ShipmentDocument, ShipmentDocumentsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageConfirmationIn, ShipmentSignaturePageIn, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsBookingIn, ShipmentsEReceiptIn, ShipmentsLandingReportOut, ShipmentsReportOut, SignaturePage, SignaturePageAnswers, SignaturePageConfirmation, SignaturePageConfirmationGenerateOut, SignaturePageConfirmationOut, SignaturePageSetting, SignaturePageSettingIn, State, Status, Status5, 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, TaxToSignaturePage, 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 };
|