@experteam-mx/ngx-services 20.8.6-dev3.0 → 20.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -2
- package/fesm2022/experteam-mx-ngx-services.mjs +58 -27
- package/fesm2022/experteam-mx-ngx-services.mjs.map +1 -1
- package/index.d.ts +410 -186
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -4,6 +4,15 @@ import { Observable, BehaviorSubject } from 'rxjs';
|
|
|
4
4
|
import { HttpResponse, HttpRequest, HttpHandlerFn, HttpEvent, HttpParams, HttpHeaders } from '@angular/common/http';
|
|
5
5
|
import { Channel } from 'pusher-js';
|
|
6
6
|
|
|
7
|
+
/**
|
|
8
|
+
* Opt-in HTTP cache rule. First matching pattern against `req.urlWithParams` wins.
|
|
9
|
+
*/
|
|
10
|
+
type HttpCacheRoute = {
|
|
11
|
+
/** RegExp source matched against `req.urlWithParams` */
|
|
12
|
+
pattern: string;
|
|
13
|
+
/** TTL in milliseconds */
|
|
14
|
+
ttl: number;
|
|
15
|
+
};
|
|
7
16
|
/**
|
|
8
17
|
* Represents the configuration settings for the application's environment.
|
|
9
18
|
* This type includes various API endpoint URLs, authentication details, caching options, and other relevant settings.
|
|
@@ -16,7 +25,7 @@ import { Channel } from 'pusher-js';
|
|
|
16
25
|
* - apiSecurityUrl: The URL for the security-related API endpoint.
|
|
17
26
|
* - apiShipmentUrl: The URL for the shipment API endpoint.
|
|
18
27
|
* - authCookie: The name of the authentication cookie used for user sessions.
|
|
19
|
-
* -
|
|
28
|
+
* - cacheRoutes: Optional. Opt-in HTTP cache rules; first matching pattern wins.
|
|
20
29
|
* - printUrl: Optional. The URL used for generating or downloading printable documents.
|
|
21
30
|
* - secretKey: A secret key used for authentication or other secure operations.
|
|
22
31
|
*/
|
|
@@ -50,7 +59,7 @@ type Environment = {
|
|
|
50
59
|
apiSuppliesUrl?: string;
|
|
51
60
|
apiSurveysUrl?: string;
|
|
52
61
|
authCookie?: string;
|
|
53
|
-
|
|
62
|
+
cacheRoutes?: HttpCacheRoute[];
|
|
54
63
|
printUrl?: string;
|
|
55
64
|
secretKey?: string;
|
|
56
65
|
sockets?: {
|
|
@@ -2734,15 +2743,30 @@ interface AccountWithDefault extends Account {
|
|
|
2734
2743
|
}
|
|
2735
2744
|
interface AccountWithLocations extends Account {
|
|
2736
2745
|
account_company_countries: AccountCompanyCountryLocation[];
|
|
2737
|
-
country:
|
|
2746
|
+
country: CountryAccount;
|
|
2738
2747
|
}
|
|
2739
2748
|
interface PostalCodeFormat extends SymfonyModel {
|
|
2740
2749
|
format: string;
|
|
2741
2750
|
significantChars: number;
|
|
2742
2751
|
regex: string;
|
|
2743
2752
|
}
|
|
2744
|
-
interface
|
|
2753
|
+
interface CountryAccount {
|
|
2754
|
+
id: number;
|
|
2755
|
+
code: string;
|
|
2756
|
+
name: string;
|
|
2757
|
+
timezone: string;
|
|
2758
|
+
hasImportService: boolean;
|
|
2759
|
+
isActive: boolean;
|
|
2760
|
+
isoCode: string;
|
|
2761
|
+
codePhone: string;
|
|
2762
|
+
phoneDigits: string | null;
|
|
2763
|
+
createdAt: string;
|
|
2764
|
+
updatedAt: string;
|
|
2765
|
+
locationType: LocationType;
|
|
2766
|
+
unit: Unit;
|
|
2767
|
+
locationTypeFields: LocationTypeFields;
|
|
2745
2768
|
postalCodeFormats: PostalCodeFormat[];
|
|
2769
|
+
translations: Translations;
|
|
2746
2770
|
}
|
|
2747
2771
|
|
|
2748
2772
|
type LocationEmployeesOut = {
|
|
@@ -3943,7 +3967,7 @@ declare class ApiCompaniesService {
|
|
|
3943
3967
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiCompaniesService>;
|
|
3944
3968
|
}
|
|
3945
3969
|
|
|
3946
|
-
declare enum
|
|
3970
|
+
declare enum CustomerType$1 {
|
|
3947
3971
|
SHIPPER = "SP",
|
|
3948
3972
|
CONSIGNEE = "RV",
|
|
3949
3973
|
IMPORTER = "IP",
|
|
@@ -3990,180 +4014,138 @@ interface SupplyLocationTransaction extends ActiveLessSymfonyModel {
|
|
|
3990
4014
|
stock: number;
|
|
3991
4015
|
}
|
|
3992
4016
|
|
|
3993
|
-
interface ShipmentComposition extends
|
|
4017
|
+
interface ShipmentComposition extends SymfonyModel {
|
|
4018
|
+
currencyCode: string;
|
|
4019
|
+
extraCharges: ExtraChargeComposition[];
|
|
4020
|
+
globalProductCode: string;
|
|
4021
|
+
globalProductName: string;
|
|
4022
|
+
localProductCode: string;
|
|
4023
|
+
localProductName: string;
|
|
4024
|
+
trackingNumber: string;
|
|
4025
|
+
contentDescription: string;
|
|
4026
|
+
realWeight: number;
|
|
4027
|
+
piecesNumber: number;
|
|
4028
|
+
productSubtotal: number;
|
|
4029
|
+
productTax: number;
|
|
4030
|
+
productTotal: number;
|
|
4031
|
+
declaredValue: number;
|
|
4032
|
+
insuredValue: number;
|
|
3994
4033
|
accountNumber: string;
|
|
3995
|
-
|
|
3996
|
-
|
|
3997
|
-
commercialExchangeRate: number;
|
|
3998
|
-
commercialInvoice: CommercialInvoiceComposition | null;
|
|
4034
|
+
userId: number;
|
|
4035
|
+
installationId: number;
|
|
3999
4036
|
companyCountryId: number;
|
|
4000
|
-
|
|
4037
|
+
productId: number;
|
|
4001
4038
|
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>;
|
|
4039
|
+
commercialExchangeRate: number;
|
|
4019
4040
|
ibsExchangeRate: number;
|
|
4020
|
-
|
|
4021
|
-
|
|
4022
|
-
|
|
4023
|
-
|
|
4024
|
-
|
|
4025
|
-
|
|
4041
|
+
shipmentStatusId: number;
|
|
4042
|
+
shipmentAddresses: ShipmentAddresses[];
|
|
4043
|
+
shipmentPieces: ShipmentPieces[];
|
|
4044
|
+
shipmentCompanyCountryExtraCharges: ShipmentCompanyCountryExtraCharges[];
|
|
4045
|
+
shipmentGsop: ShipmentGsop;
|
|
4046
|
+
additionalData: AdditionalData;
|
|
4047
|
+
transactionId: string;
|
|
4048
|
+
requiresPayment: boolean;
|
|
4049
|
+
originServiceAreaCode: string;
|
|
4050
|
+
originFacilityCode: string;
|
|
4051
|
+
destinationServiceAreaCode: string;
|
|
4052
|
+
destinationFacilityCode: string;
|
|
4053
|
+
productTaxes: string[];
|
|
4026
4054
|
isInspected: boolean;
|
|
4055
|
+
extraFields: {
|
|
4056
|
+
[key: string]: string | number | boolean;
|
|
4057
|
+
};
|
|
4058
|
+
shipmentContentTypeId: number;
|
|
4059
|
+
commercialInvoice: CommercialInvoice;
|
|
4060
|
+
shipmentScopeId: number;
|
|
4061
|
+
shipmentGroupId: number;
|
|
4062
|
+
product: string[];
|
|
4063
|
+
declaredCurrency: string;
|
|
4064
|
+
insuredCurrency: string;
|
|
4065
|
+
deliveryDateTime: string;
|
|
4066
|
+
date: string;
|
|
4067
|
+
promotionCode: string;
|
|
4068
|
+
priceOverrideApproverId: number;
|
|
4069
|
+
priceOverrideReasonId: number;
|
|
4070
|
+
customs: Customs;
|
|
4071
|
+
exportReasonId: number;
|
|
4072
|
+
exportReason: string[];
|
|
4073
|
+
shipmentBookPickup: ShipmentBookPickup;
|
|
4074
|
+
questionId: number;
|
|
4027
4075
|
isInsured: boolean;
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4076
|
+
itnNumber: string;
|
|
4077
|
+
einNumber: string;
|
|
4078
|
+
otherAccountNumber: string;
|
|
4079
|
+
dutiesAndTaxesAccountNumber: string;
|
|
4080
|
+
discountId: string;
|
|
4081
|
+
discountReference: string;
|
|
4082
|
+
totalPublishedValue: number;
|
|
4083
|
+
totalPartnerAccountValue: number;
|
|
4084
|
+
isMarketingConsent: boolean;
|
|
4085
|
+
isTermCondition: boolean;
|
|
4086
|
+
isDocument: boolean;
|
|
4087
|
+
isCash: boolean;
|
|
4031
4088
|
isPriceOverride: boolean;
|
|
4032
4089
|
isProforma: boolean;
|
|
4033
4090
|
isPromotionCode: boolean;
|
|
4034
4091
|
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
|
-
};
|
|
4092
|
+
isOtherOrigin: boolean;
|
|
4093
|
+
isOccurs: boolean;
|
|
4094
|
+
isDutiesAndTaxes: boolean;
|
|
4107
4095
|
}
|
|
4108
|
-
interface ExtraChargeComposition
|
|
4096
|
+
interface ExtraChargeComposition {
|
|
4097
|
+
globalServiceCode: string;
|
|
4098
|
+
localServiceCode: string;
|
|
4099
|
+
globalServiceName: string;
|
|
4100
|
+
localServiceName: string;
|
|
4109
4101
|
subtotal: number;
|
|
4110
4102
|
tax: number;
|
|
4111
4103
|
total: number;
|
|
4112
|
-
|
|
4113
|
-
taxes: TaxComposition[];
|
|
4114
|
-
extraChargeGroup: string;
|
|
4115
|
-
extraChargeCode: string;
|
|
4116
|
-
extraChargeName: string;
|
|
4117
|
-
extraChargeIsDiscount: boolean;
|
|
4104
|
+
taxes: Tax[];
|
|
4118
4105
|
}
|
|
4119
|
-
interface
|
|
4106
|
+
interface Tax {
|
|
4120
4107
|
code: string;
|
|
4121
4108
|
percent: number;
|
|
4122
4109
|
baseAmount: number;
|
|
4123
4110
|
amount: number;
|
|
4124
4111
|
}
|
|
4125
|
-
interface
|
|
4112
|
+
interface ShipmentAddresses extends SymfonyModel {
|
|
4126
4113
|
index: number;
|
|
4127
|
-
identificationTypeId: number
|
|
4128
|
-
identificationNumber: string
|
|
4114
|
+
identificationTypeId: number;
|
|
4115
|
+
identificationNumber: string;
|
|
4129
4116
|
companyName: string;
|
|
4130
4117
|
fullName: string;
|
|
4131
4118
|
email: string;
|
|
4132
4119
|
phoneCode: string;
|
|
4133
4120
|
phoneNumber: string;
|
|
4134
|
-
postalCode: string
|
|
4135
|
-
stateCode: string
|
|
4136
|
-
stateId: number | null;
|
|
4121
|
+
postalCode: string;
|
|
4122
|
+
stateCode: string;
|
|
4137
4123
|
countyName: string;
|
|
4138
4124
|
cityName: string;
|
|
4139
4125
|
addressLine1: string;
|
|
4140
|
-
addressLine2: string
|
|
4141
|
-
addressLine3: string
|
|
4126
|
+
addressLine2: string;
|
|
4127
|
+
addressLine3: string;
|
|
4142
4128
|
countryId: number;
|
|
4143
|
-
|
|
4144
|
-
|
|
4145
|
-
|
|
4146
|
-
|
|
4147
|
-
|
|
4148
|
-
|
|
4149
|
-
|
|
4150
|
-
|
|
4151
|
-
businessPartyTraderType?: BusinessPartyTraderType | null;
|
|
4152
|
-
identificationType?: IdentificationType | null;
|
|
4153
|
-
}
|
|
4154
|
-
interface ShipmentPieceComposition extends ActiveLessSymfonyModel {
|
|
4129
|
+
identificationType: IdentificationTypeComposition;
|
|
4130
|
+
roleType: CustomerType$1;
|
|
4131
|
+
}
|
|
4132
|
+
interface IdentificationTypeComposition extends SymfonyModel {
|
|
4133
|
+
name: string;
|
|
4134
|
+
companyCountryId: number;
|
|
4135
|
+
}
|
|
4136
|
+
interface ShipmentPieces extends ActiveLessSymfonyModel {
|
|
4155
4137
|
number: number;
|
|
4156
4138
|
height: number;
|
|
4157
4139
|
length: number;
|
|
4158
4140
|
width: number;
|
|
4159
4141
|
realWeight: number;
|
|
4160
4142
|
volumetricWeight: number;
|
|
4161
|
-
dataIdentifier: string
|
|
4143
|
+
dataIdentifier: string;
|
|
4162
4144
|
trackingNumber: string;
|
|
4163
|
-
licensePlateBarCode: string
|
|
4164
|
-
|
|
4145
|
+
licensePlateBarCode: string;
|
|
4146
|
+
shipmentPieceCompanyCountrySupplies: ShipmentPieceCompanyCountrySupplies[];
|
|
4165
4147
|
}
|
|
4166
|
-
interface
|
|
4148
|
+
interface ShipmentPieceCompanyCountrySupplies extends ActiveLessSymfonyModel {
|
|
4167
4149
|
supplyId: number;
|
|
4168
4150
|
quantity: number;
|
|
4169
4151
|
subtotal: number;
|
|
@@ -4174,25 +4156,18 @@ interface ShipmentPieceSupplyComposition extends ActiveLessSymfonyModel {
|
|
|
4174
4156
|
description: string;
|
|
4175
4157
|
supply: Supply;
|
|
4176
4158
|
}
|
|
4177
|
-
interface
|
|
4178
|
-
globalCode: string;
|
|
4179
|
-
localCode: string;
|
|
4180
|
-
globalName: string;
|
|
4181
|
-
localName: string;
|
|
4182
|
-
isDocument: boolean;
|
|
4183
|
-
}
|
|
4184
|
-
interface CommercialInvoiceComposition extends ActiveLessSymfonyModel {
|
|
4159
|
+
interface CommercialInvoice extends ActiveLessSymfonyModel {
|
|
4185
4160
|
documentTypeId: number;
|
|
4186
4161
|
tradingTransactionTypeId: number;
|
|
4187
4162
|
documentFunctionId: number;
|
|
4188
4163
|
number: string;
|
|
4189
4164
|
remarks: string;
|
|
4190
|
-
items:
|
|
4165
|
+
items: Item[];
|
|
4191
4166
|
documentType: DocumentTypeComposition;
|
|
4192
4167
|
tradingTransactionType: TradingTransactionType;
|
|
4193
|
-
documentFunction:
|
|
4168
|
+
documentFunction: DocumentFunction;
|
|
4194
4169
|
}
|
|
4195
|
-
interface
|
|
4170
|
+
interface Item extends ActiveLessSymfonyModel {
|
|
4196
4171
|
description: string;
|
|
4197
4172
|
quantity: number;
|
|
4198
4173
|
quantityUnitId: number;
|
|
@@ -4201,31 +4176,32 @@ interface ItemComposition extends ActiveLessSymfonyModel {
|
|
|
4201
4176
|
realWeight: number;
|
|
4202
4177
|
commodityId: number;
|
|
4203
4178
|
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
|
-
};
|
|
4179
|
+
manufactureCountry: ManufactureCountry;
|
|
4217
4180
|
commodity: Commodity;
|
|
4218
4181
|
}
|
|
4182
|
+
interface ManufactureCountry {
|
|
4183
|
+
id: string;
|
|
4184
|
+
code: string;
|
|
4185
|
+
name: string;
|
|
4186
|
+
locationType: string[];
|
|
4187
|
+
unit: string[];
|
|
4188
|
+
timezone: string;
|
|
4189
|
+
hasImportService: boolean;
|
|
4190
|
+
isActive: boolean;
|
|
4191
|
+
regions: string[];
|
|
4192
|
+
zones: string[];
|
|
4193
|
+
isoCode: string;
|
|
4194
|
+
}
|
|
4219
4195
|
interface DocumentTypeComposition extends SymfonyModel {
|
|
4220
4196
|
code: string;
|
|
4221
4197
|
name: string;
|
|
4222
4198
|
description: string;
|
|
4223
4199
|
}
|
|
4224
|
-
interface
|
|
4200
|
+
interface DocumentFunction extends SymfonyModel {
|
|
4225
4201
|
code: string;
|
|
4226
4202
|
name: string;
|
|
4227
4203
|
}
|
|
4228
|
-
interface
|
|
4204
|
+
interface ShipmentGsop extends ActiveLessSymfonyModel {
|
|
4229
4205
|
productContentCode: string;
|
|
4230
4206
|
originServiceAreaCode: string;
|
|
4231
4207
|
destinationServiceAreaCode: string;
|
|
@@ -4233,6 +4209,54 @@ interface ShipmentGsopComposition extends ActiveLessSymfonyModel {
|
|
|
4233
4209
|
awbBarCode: string;
|
|
4234
4210
|
dhlRoutingBarCode: string;
|
|
4235
4211
|
}
|
|
4212
|
+
interface ShipmentCompanyCountryExtraCharges extends ActiveLessSymfonyModel {
|
|
4213
|
+
subtotal: number;
|
|
4214
|
+
tax: number;
|
|
4215
|
+
total: number;
|
|
4216
|
+
extraChargeId: number;
|
|
4217
|
+
extraChargeCode: string;
|
|
4218
|
+
}
|
|
4219
|
+
interface AdditionalData {
|
|
4220
|
+
awbTypeCode: string;
|
|
4221
|
+
countryCode: string;
|
|
4222
|
+
shipmentTypeCode: string;
|
|
4223
|
+
productGlobalCode: string;
|
|
4224
|
+
productLocalCode: string;
|
|
4225
|
+
currencyCode: string;
|
|
4226
|
+
userUsername: string;
|
|
4227
|
+
locationFacilityCode: string;
|
|
4228
|
+
}
|
|
4229
|
+
interface Customs {
|
|
4230
|
+
criteria: Criteria;
|
|
4231
|
+
rules: Rules[];
|
|
4232
|
+
}
|
|
4233
|
+
interface Criteria {
|
|
4234
|
+
origin: string;
|
|
4235
|
+
destination: string;
|
|
4236
|
+
dutiable: boolean;
|
|
4237
|
+
declaredValue: number;
|
|
4238
|
+
}
|
|
4239
|
+
interface Rules {
|
|
4240
|
+
id: number;
|
|
4241
|
+
level: string;
|
|
4242
|
+
attributes: Attributes[];
|
|
4243
|
+
}
|
|
4244
|
+
interface Attributes {
|
|
4245
|
+
id: number;
|
|
4246
|
+
field: string;
|
|
4247
|
+
dhlCode: string;
|
|
4248
|
+
values: Values;
|
|
4249
|
+
}
|
|
4250
|
+
interface Values {
|
|
4251
|
+
shipment: string;
|
|
4252
|
+
customer: CustomerComposition;
|
|
4253
|
+
invoiceHeader: string;
|
|
4254
|
+
invoiceItem: string[];
|
|
4255
|
+
}
|
|
4256
|
+
interface CustomerComposition {
|
|
4257
|
+
SP: string;
|
|
4258
|
+
RV: string;
|
|
4259
|
+
}
|
|
4236
4260
|
interface ShipmentBookPickup extends ActiveLessSymfonyModel {
|
|
4237
4261
|
pickupDate: string;
|
|
4238
4262
|
readyByTime: string;
|
|
@@ -4246,10 +4270,6 @@ interface ShipmentBookPickup extends ActiveLessSymfonyModel {
|
|
|
4246
4270
|
type ShipmentOut = {
|
|
4247
4271
|
shipment: ShipmentComposition;
|
|
4248
4272
|
};
|
|
4249
|
-
type ShipmentsOut = {
|
|
4250
|
-
shipments: ShipmentComposition[];
|
|
4251
|
-
total: number;
|
|
4252
|
-
};
|
|
4253
4273
|
type CompositionCountryReferencesOut = {
|
|
4254
4274
|
country_references: CountryReference[];
|
|
4255
4275
|
total: number;
|
|
@@ -4271,13 +4291,6 @@ declare class ApiCompositionService {
|
|
|
4271
4291
|
* @returns {Observable<ShipmentOut>} An observable that emits the details of the shipment.
|
|
4272
4292
|
*/
|
|
4273
4293
|
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
4294
|
/**
|
|
4282
4295
|
* Fetches the country references data based on the provided query parameters.
|
|
4283
4296
|
*
|
|
@@ -5227,6 +5240,170 @@ interface Operation extends LaravelModel {
|
|
|
5227
5240
|
}[];
|
|
5228
5241
|
};
|
|
5229
5242
|
}
|
|
5243
|
+
interface TaxToSignaturePage extends ActiveLessLaravelModel {
|
|
5244
|
+
code: string;
|
|
5245
|
+
percent: number;
|
|
5246
|
+
base_amount: number;
|
|
5247
|
+
amount: number;
|
|
5248
|
+
}
|
|
5249
|
+
interface ExtraChargeTax {
|
|
5250
|
+
code: string;
|
|
5251
|
+
percent: number;
|
|
5252
|
+
base_amount: number;
|
|
5253
|
+
amount: number;
|
|
5254
|
+
}
|
|
5255
|
+
interface ExtraChargeToSignaturePage {
|
|
5256
|
+
global_service_code: string;
|
|
5257
|
+
local_service_code: string;
|
|
5258
|
+
global_service_name: string;
|
|
5259
|
+
local_service_name: string;
|
|
5260
|
+
is_discount: boolean;
|
|
5261
|
+
subtotal: number;
|
|
5262
|
+
tax: number;
|
|
5263
|
+
total: number;
|
|
5264
|
+
taxes: ExtraChargeTax[];
|
|
5265
|
+
}
|
|
5266
|
+
interface AddressToSignaturePage {
|
|
5267
|
+
role_type: CustomerRoleType;
|
|
5268
|
+
identification_type_name: string | null;
|
|
5269
|
+
identification_number: string | null;
|
|
5270
|
+
company_name: string;
|
|
5271
|
+
full_name: string;
|
|
5272
|
+
email: string;
|
|
5273
|
+
phone_code: string;
|
|
5274
|
+
phone_number: string;
|
|
5275
|
+
postal_code: string | null;
|
|
5276
|
+
state_code: string | null;
|
|
5277
|
+
county_name: string | null;
|
|
5278
|
+
city_name: string;
|
|
5279
|
+
address_line_1: string;
|
|
5280
|
+
address_line_2: string | null;
|
|
5281
|
+
address_line_3: string | null;
|
|
5282
|
+
country_name: string;
|
|
5283
|
+
state: string | null;
|
|
5284
|
+
business_party_trader_type_name: string | null;
|
|
5285
|
+
}
|
|
5286
|
+
interface PiecesToSignaturePage {
|
|
5287
|
+
number: number;
|
|
5288
|
+
height: number;
|
|
5289
|
+
length: number;
|
|
5290
|
+
width: number;
|
|
5291
|
+
real_weight: number;
|
|
5292
|
+
volumetric_weight: number;
|
|
5293
|
+
tracking_number: string;
|
|
5294
|
+
shipment_piece_supplies: PieceSupplyToSignaturePage[];
|
|
5295
|
+
}
|
|
5296
|
+
interface PieceSupplyToSignaturePage {
|
|
5297
|
+
quantity: number;
|
|
5298
|
+
subtotal: number;
|
|
5299
|
+
tax_base: number;
|
|
5300
|
+
tax_percent: number;
|
|
5301
|
+
tax: number;
|
|
5302
|
+
total: number;
|
|
5303
|
+
supply_name: string;
|
|
5304
|
+
}
|
|
5305
|
+
interface CommercialInvoiceItemToSignaturePage {
|
|
5306
|
+
description: string;
|
|
5307
|
+
quantity: number;
|
|
5308
|
+
quantity_unit_name: string;
|
|
5309
|
+
subtotal: number;
|
|
5310
|
+
manufacture_country_name: string;
|
|
5311
|
+
real_weight: number;
|
|
5312
|
+
commodity_name: string | null;
|
|
5313
|
+
}
|
|
5314
|
+
interface CommercialInvoiceToSignaturePage {
|
|
5315
|
+
document_type_name: string;
|
|
5316
|
+
trading_transaction_type_name: string | null;
|
|
5317
|
+
number: number | null;
|
|
5318
|
+
remarks: string | null;
|
|
5319
|
+
items: CommercialInvoiceItemToSignaturePage[];
|
|
5320
|
+
}
|
|
5321
|
+
interface BookPickupToSignaturePage {
|
|
5322
|
+
pickup_date: string | null;
|
|
5323
|
+
ready_by_time: string | null;
|
|
5324
|
+
close_time: string | null;
|
|
5325
|
+
confirmation_number: string | null;
|
|
5326
|
+
package_location_name: string | null;
|
|
5327
|
+
remarks: string | null;
|
|
5328
|
+
}
|
|
5329
|
+
interface CustomsAttribute {
|
|
5330
|
+
field: string | null;
|
|
5331
|
+
dhl_code: string | null;
|
|
5332
|
+
input_label: string;
|
|
5333
|
+
values: CustomsAttributeValues;
|
|
5334
|
+
}
|
|
5335
|
+
interface CustomsAttributeValues {
|
|
5336
|
+
shipment?: string;
|
|
5337
|
+
customer?: Record<string, string>;
|
|
5338
|
+
invoiceHeader?: string;
|
|
5339
|
+
invoiceItem?: string[];
|
|
5340
|
+
}
|
|
5341
|
+
interface CustomsRule {
|
|
5342
|
+
level: string;
|
|
5343
|
+
attributes: CustomsAttribute[];
|
|
5344
|
+
}
|
|
5345
|
+
interface ShipmentCustoms {
|
|
5346
|
+
rules: CustomsRule[];
|
|
5347
|
+
}
|
|
5348
|
+
interface ShipmentDataToSignaturePage {
|
|
5349
|
+
currency_code: string;
|
|
5350
|
+
decimal_point: number;
|
|
5351
|
+
decimal_separator: string;
|
|
5352
|
+
thousands_separator: string;
|
|
5353
|
+
tracking_number: string;
|
|
5354
|
+
content_description: string;
|
|
5355
|
+
pieces_number: number;
|
|
5356
|
+
global_product_code: string;
|
|
5357
|
+
global_product_name: string;
|
|
5358
|
+
local_product_code: string;
|
|
5359
|
+
local_product_name: string;
|
|
5360
|
+
delivery_date_time: string;
|
|
5361
|
+
is_document: boolean;
|
|
5362
|
+
is_insured: boolean;
|
|
5363
|
+
declared_value: number | null;
|
|
5364
|
+
insured_value: number | null;
|
|
5365
|
+
declared_currency: string | null;
|
|
5366
|
+
insured_currency: string | null;
|
|
5367
|
+
promotion_code: string | null;
|
|
5368
|
+
export_reason_name: string | null;
|
|
5369
|
+
product_subtotal: number;
|
|
5370
|
+
product_tax: number;
|
|
5371
|
+
product_total: number;
|
|
5372
|
+
subtotal: number;
|
|
5373
|
+
tax: number;
|
|
5374
|
+
total: number;
|
|
5375
|
+
product_taxes: TaxToSignaturePage[];
|
|
5376
|
+
shipment_taxes: TaxToSignaturePage[];
|
|
5377
|
+
extra_charges_mandatory: ExtraChargeToSignaturePage[];
|
|
5378
|
+
extra_charges_optional: ExtraChargeToSignaturePage[];
|
|
5379
|
+
extra_charges_aggregated: ExtraChargeToSignaturePage[];
|
|
5380
|
+
shipment_addresses: AddressToSignaturePage[];
|
|
5381
|
+
shipment_pieces: PiecesToSignaturePage[];
|
|
5382
|
+
commercial_invoice: CommercialInvoiceToSignaturePage | null;
|
|
5383
|
+
shipment_book_pickup: BookPickupToSignaturePage | null;
|
|
5384
|
+
customs: ShipmentCustoms | null;
|
|
5385
|
+
created_at: string;
|
|
5386
|
+
updated_at: string;
|
|
5387
|
+
}
|
|
5388
|
+
interface SignaturePage {
|
|
5389
|
+
terms_and_condition: string;
|
|
5390
|
+
marketing_consent: string | null;
|
|
5391
|
+
marketing_consent_mandatory: boolean;
|
|
5392
|
+
additional_verbiage: string | null;
|
|
5393
|
+
}
|
|
5394
|
+
interface SignaturePageAnswers {
|
|
5395
|
+
terms_and_condition: boolean;
|
|
5396
|
+
marketing_consent: boolean | null;
|
|
5397
|
+
additional_verbiage: boolean | null;
|
|
5398
|
+
}
|
|
5399
|
+
interface SignaturePageConfirmation extends ActiveLessLaravelModel {
|
|
5400
|
+
shipment_id: number;
|
|
5401
|
+
code: string;
|
|
5402
|
+
status: string;
|
|
5403
|
+
shipment_data: ShipmentDataToSignaturePage;
|
|
5404
|
+
signature_page: SignaturePage;
|
|
5405
|
+
expiry: number;
|
|
5406
|
+
}
|
|
5230
5407
|
|
|
5231
5408
|
type DeliveryConfirmationGenerateOut = {
|
|
5232
5409
|
code: string;
|
|
@@ -5262,6 +5439,29 @@ type DeliveryConfirmationIn = {
|
|
|
5262
5439
|
type DeliveryConfirmationSearchOut = {
|
|
5263
5440
|
operation: Operation;
|
|
5264
5441
|
};
|
|
5442
|
+
type SignaturePageConfirmationGenerateOut = {
|
|
5443
|
+
code: string;
|
|
5444
|
+
};
|
|
5445
|
+
type CustomerRoleType = 'SP' | 'RV' | 'IM' | 'EX' | string;
|
|
5446
|
+
type ConfirmTermsIn = {
|
|
5447
|
+
shipment_id: number;
|
|
5448
|
+
status: 'Processed' | 'Canceled';
|
|
5449
|
+
signature_page_answers: SignaturePageAnswers | null;
|
|
5450
|
+
};
|
|
5451
|
+
type SignaturePageConfirmationOut = {
|
|
5452
|
+
operation: SignaturePageConfirmation;
|
|
5453
|
+
};
|
|
5454
|
+
type ShipmentSignaturePageIn = {
|
|
5455
|
+
shipment_id: number;
|
|
5456
|
+
shipment_data: ShipmentDataToSignaturePage;
|
|
5457
|
+
signature_page: SignaturePage;
|
|
5458
|
+
};
|
|
5459
|
+
type ShipmentSignaturePageConfirmationIn = {
|
|
5460
|
+
shipment_id: number;
|
|
5461
|
+
status: string;
|
|
5462
|
+
signature_page_answers: SignaturePageAnswers | null;
|
|
5463
|
+
otp: string;
|
|
5464
|
+
};
|
|
5265
5465
|
|
|
5266
5466
|
declare class ApiExternalOperationsService {
|
|
5267
5467
|
private http;
|
|
@@ -5278,7 +5478,7 @@ declare class ApiExternalOperationsService {
|
|
|
5278
5478
|
* Retrieves delivery confirmation details based on the provided OTP code.
|
|
5279
5479
|
*
|
|
5280
5480
|
* @param {string} otpCode - The OTP code used to search for delivery confirmation.
|
|
5281
|
-
* @return {Observable<
|
|
5481
|
+
* @return {Observable<DeliveryConfirmationSearchOut>} An observable containing the delivery confirmation data.
|
|
5282
5482
|
*/
|
|
5283
5483
|
getDeliveryConfirmation(otpCode: string): Observable<DeliveryConfirmationSearchOut>;
|
|
5284
5484
|
/**
|
|
@@ -5306,6 +5506,29 @@ declare class ApiExternalOperationsService {
|
|
|
5306
5506
|
* @return {Observable<Object>} An observable that emits the server's response when the cancellation is processed.
|
|
5307
5507
|
*/
|
|
5308
5508
|
putDeliveryConfirmation({ otp, ...body }: DeliveryConfirmationIn): Observable<{}>;
|
|
5509
|
+
/**
|
|
5510
|
+
* Retrieves signature page confirmation information associated with an OTP code.
|
|
5511
|
+
*
|
|
5512
|
+
* @param {string} otpCode - OTP code used to search for the signature page confirmation.
|
|
5513
|
+
* @returns {Observable<SignaturePageConfirmationOut>} An observable containing the signature page confirmation details.
|
|
5514
|
+
*/
|
|
5515
|
+
getSignaturePageConfirmationSearch(otpCode: string): Observable<SignaturePageConfirmationOut>;
|
|
5516
|
+
/**
|
|
5517
|
+
* Generates a signature page confirmation request for a shipment.
|
|
5518
|
+
*
|
|
5519
|
+
* @param {ShipmentSignaturePageIn} payload - Shipment data required to generate the signature page confirmation.
|
|
5520
|
+
* @returns {Observable<SignaturePageConfirmationGenerateOut>} An observable containing the generated confirmation information.
|
|
5521
|
+
*/
|
|
5522
|
+
postSignaturePageConfirmationGenerate(payload: ShipmentSignaturePageIn): Observable<SignaturePageConfirmationGenerateOut>;
|
|
5523
|
+
/**
|
|
5524
|
+
* Confirms a shipment signature page using an OTP code.
|
|
5525
|
+
*
|
|
5526
|
+
* @param {ShipmentSignaturePageConfirmationIn} input - Signature page confirmation data.
|
|
5527
|
+
* @param {string} input.otp - OTP code used to validate the confirmation.
|
|
5528
|
+
* @param {...Object} input.body - Additional confirmation information sent in the request body.
|
|
5529
|
+
* @returns {Observable<{}>} An observable that emits the API response data.
|
|
5530
|
+
*/
|
|
5531
|
+
putSignaturePageConfirmation({ otp, ...body }: ShipmentSignaturePageConfirmationIn): Observable<{}>;
|
|
5309
5532
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiExternalOperationsService, never>;
|
|
5310
5533
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiExternalOperationsService>;
|
|
5311
5534
|
}
|
|
@@ -9289,15 +9512,16 @@ declare function apiHeadersInterceptor(req: HttpRequest<unknown>, next: HttpHand
|
|
|
9289
9512
|
declare function apiTokenInterceptor(req: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>>;
|
|
9290
9513
|
|
|
9291
9514
|
/**
|
|
9292
|
-
* Interceptor function to handle HTTP caching for GET requests
|
|
9293
|
-
*
|
|
9515
|
+
* Interceptor function to handle opt-in HTTP caching for GET requests that match
|
|
9516
|
+
* a configured `cacheRoutes` pattern. Non-matching GETs pass through uncached.
|
|
9517
|
+
* Concurrent in-flight requests for the same key are deduplicated via `shareReplay`.
|
|
9294
9518
|
*
|
|
9295
|
-
* @param {HttpRequest<
|
|
9519
|
+
* @param {HttpRequest<unknown>} req - The HTTP request object being intercepted.
|
|
9296
9520
|
* @param {HttpHandlerFn} next - The next HTTP handler function in the chain to process the request.
|
|
9297
|
-
* @return {Observable<HttpEvent<
|
|
9521
|
+
* @return {Observable<HttpEvent<unknown>>} An observable that emits the HTTP event, either from cache
|
|
9298
9522
|
* or by invoking the next handler.
|
|
9299
9523
|
*/
|
|
9300
|
-
declare function httpCachingInterceptor(req: HttpRequest<
|
|
9524
|
+
declare function httpCachingInterceptor(req: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>>;
|
|
9301
9525
|
|
|
9302
9526
|
declare const base64PdfToUrl: (base64: string) => string;
|
|
9303
9527
|
declare const downloadBase64Pdf: (base64: string) => Window | null;
|
|
@@ -9339,5 +9563,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
|
|
|
9339
9563
|
[header: string]: string | string[];
|
|
9340
9564
|
};
|
|
9341
9565
|
|
|
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 };
|
|
9566
|
+
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 };
|
|
9567
|
+
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, HttpCacheRoute, 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 };
|