@experteam-mx/ngx-services 20.9.1-dev3.5 → 20.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts
CHANGED
|
@@ -149,8 +149,7 @@ interface Connection extends ActiveLessLaravelModel {
|
|
|
149
149
|
connection: string;
|
|
150
150
|
version: string;
|
|
151
151
|
}
|
|
152
|
-
interface TransactionLog {
|
|
153
|
-
id: string;
|
|
152
|
+
interface TransactionLog extends ActiveLessLaravelModel {
|
|
154
153
|
api: string;
|
|
155
154
|
username: string;
|
|
156
155
|
table: string;
|
|
@@ -158,8 +157,6 @@ interface TransactionLog {
|
|
|
158
157
|
ID: string;
|
|
159
158
|
last_value: unknown | null;
|
|
160
159
|
new_value: unknown | null;
|
|
161
|
-
created_at: string;
|
|
162
|
-
updated_at: string;
|
|
163
160
|
}
|
|
164
161
|
|
|
165
162
|
type ConnectionsOut = {
|
|
@@ -2825,15 +2822,30 @@ interface AccountWithDefault extends Account {
|
|
|
2825
2822
|
}
|
|
2826
2823
|
interface AccountWithLocations extends Account {
|
|
2827
2824
|
account_company_countries: AccountCompanyCountryLocation[];
|
|
2828
|
-
country:
|
|
2825
|
+
country: CountryAccount;
|
|
2829
2826
|
}
|
|
2830
2827
|
interface PostalCodeFormat extends SymfonyModel {
|
|
2831
2828
|
format: string;
|
|
2832
2829
|
significantChars: number;
|
|
2833
2830
|
regex: string;
|
|
2834
2831
|
}
|
|
2835
|
-
interface
|
|
2832
|
+
interface CountryAccount {
|
|
2833
|
+
id: number;
|
|
2834
|
+
code: string;
|
|
2835
|
+
name: string;
|
|
2836
|
+
timezone: string;
|
|
2837
|
+
hasImportService: boolean;
|
|
2838
|
+
isActive: boolean;
|
|
2839
|
+
isoCode: string;
|
|
2840
|
+
codePhone: string;
|
|
2841
|
+
phoneDigits: string | null;
|
|
2842
|
+
createdAt: string;
|
|
2843
|
+
updatedAt: string;
|
|
2844
|
+
locationType: LocationType;
|
|
2845
|
+
unit: Unit;
|
|
2846
|
+
locationTypeFields: LocationTypeFields;
|
|
2836
2847
|
postalCodeFormats: PostalCodeFormat[];
|
|
2848
|
+
translations: Translations;
|
|
2837
2849
|
}
|
|
2838
2850
|
|
|
2839
2851
|
type LocationEmployeesOut = {
|
|
@@ -3452,13 +3464,6 @@ declare class ApiCompaniesService {
|
|
|
3452
3464
|
* @return {Observable<{}>} An observable containing the response data after the employee is deleted.
|
|
3453
3465
|
*/
|
|
3454
3466
|
deleteEmployee(id: number): Observable<{}>;
|
|
3455
|
-
/**
|
|
3456
|
-
* Exports the filtered employees list as a PDF file.
|
|
3457
|
-
*
|
|
3458
|
-
* @param {QueryParams} params - Query parameters used to filter the employees included in the export.
|
|
3459
|
-
* @return {Observable<HttpResponse<ArrayBuffer>>} An observable that emits the HTTP response containing the PDF as an ArrayBuffer.
|
|
3460
|
-
*/
|
|
3461
|
-
getEmployeesExportPdf(params: QueryParams): Observable<HttpResponse<ArrayBuffer>>;
|
|
3462
3467
|
/**
|
|
3463
3468
|
* Retrieves the list of employees for a specified location based on provided query parameters.
|
|
3464
3469
|
*
|
|
@@ -4041,7 +4046,7 @@ declare class ApiCompaniesService {
|
|
|
4041
4046
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiCompaniesService>;
|
|
4042
4047
|
}
|
|
4043
4048
|
|
|
4044
|
-
declare enum
|
|
4049
|
+
declare enum CustomerType$1 {
|
|
4045
4050
|
SHIPPER = "SP",
|
|
4046
4051
|
CONSIGNEE = "RV",
|
|
4047
4052
|
IMPORTER = "IP",
|
|
@@ -4088,180 +4093,138 @@ interface SupplyLocationTransaction extends ActiveLessSymfonyModel {
|
|
|
4088
4093
|
stock: number;
|
|
4089
4094
|
}
|
|
4090
4095
|
|
|
4091
|
-
interface ShipmentComposition extends
|
|
4096
|
+
interface ShipmentComposition extends SymfonyModel {
|
|
4097
|
+
currencyCode: string;
|
|
4098
|
+
extraCharges: ExtraChargeComposition[];
|
|
4099
|
+
globalProductCode: string;
|
|
4100
|
+
globalProductName: string;
|
|
4101
|
+
localProductCode: string;
|
|
4102
|
+
localProductName: string;
|
|
4103
|
+
trackingNumber: string;
|
|
4104
|
+
contentDescription: string;
|
|
4105
|
+
realWeight: number;
|
|
4106
|
+
piecesNumber: number;
|
|
4107
|
+
productSubtotal: number;
|
|
4108
|
+
productTax: number;
|
|
4109
|
+
productTotal: number;
|
|
4110
|
+
declaredValue: number;
|
|
4111
|
+
insuredValue: number;
|
|
4092
4112
|
accountNumber: string;
|
|
4093
|
-
|
|
4094
|
-
|
|
4095
|
-
commercialExchangeRate: number;
|
|
4096
|
-
commercialInvoice: CommercialInvoiceComposition | null;
|
|
4113
|
+
userId: number;
|
|
4114
|
+
installationId: number;
|
|
4097
4115
|
companyCountryId: number;
|
|
4098
|
-
|
|
4116
|
+
productId: number;
|
|
4099
4117
|
countryReferenceCurrencyId: number;
|
|
4100
|
-
|
|
4101
|
-
declaredCurrency: string | null;
|
|
4102
|
-
declaredValue: number;
|
|
4103
|
-
deliveryDateTime: string;
|
|
4104
|
-
destinationFacilityCode: string;
|
|
4105
|
-
destinationServiceAreaCode: string;
|
|
4106
|
-
discountModelId: number | null;
|
|
4107
|
-
discountModelType: string | null;
|
|
4108
|
-
discountName: string | null;
|
|
4109
|
-
discountPercentage: number | null;
|
|
4110
|
-
discountReference: string | null;
|
|
4111
|
-
discountValue: number | null;
|
|
4112
|
-
dutiesAndTaxesAccountNumber: string | null;
|
|
4113
|
-
einNumber: string | null;
|
|
4114
|
-
exportReason: ExportReason | null;
|
|
4115
|
-
exportReasonId: number | null;
|
|
4116
|
-
extraFields: Record<string, unknown>;
|
|
4118
|
+
commercialExchangeRate: number;
|
|
4117
4119
|
ibsExchangeRate: number;
|
|
4118
|
-
|
|
4119
|
-
|
|
4120
|
-
|
|
4121
|
-
|
|
4122
|
-
|
|
4123
|
-
|
|
4120
|
+
shipmentStatusId: number;
|
|
4121
|
+
shipmentAddresses: ShipmentAddresses[];
|
|
4122
|
+
shipmentPieces: ShipmentPieces[];
|
|
4123
|
+
shipmentCompanyCountryExtraCharges: ShipmentCompanyCountryExtraCharges[];
|
|
4124
|
+
shipmentGsop: ShipmentGsop;
|
|
4125
|
+
additionalData: AdditionalData;
|
|
4126
|
+
transactionId: string;
|
|
4127
|
+
requiresPayment: boolean;
|
|
4128
|
+
originServiceAreaCode: string;
|
|
4129
|
+
originFacilityCode: string;
|
|
4130
|
+
destinationServiceAreaCode: string;
|
|
4131
|
+
destinationFacilityCode: string;
|
|
4132
|
+
productTaxes: string[];
|
|
4124
4133
|
isInspected: boolean;
|
|
4134
|
+
extraFields: {
|
|
4135
|
+
[key: string]: string | number | boolean;
|
|
4136
|
+
};
|
|
4137
|
+
shipmentContentTypeId: number;
|
|
4138
|
+
commercialInvoice: CommercialInvoice;
|
|
4139
|
+
shipmentScopeId: number;
|
|
4140
|
+
shipmentGroupId: number;
|
|
4141
|
+
product: string[];
|
|
4142
|
+
declaredCurrency: string;
|
|
4143
|
+
insuredCurrency: string;
|
|
4144
|
+
deliveryDateTime: string;
|
|
4145
|
+
date: string;
|
|
4146
|
+
promotionCode: string;
|
|
4147
|
+
priceOverrideApproverId: number;
|
|
4148
|
+
priceOverrideReasonId: number;
|
|
4149
|
+
customs: Customs;
|
|
4150
|
+
exportReasonId: number;
|
|
4151
|
+
exportReason: string[];
|
|
4152
|
+
shipmentBookPickup: ShipmentBookPickup;
|
|
4153
|
+
questionId: number;
|
|
4125
4154
|
isInsured: boolean;
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4155
|
+
itnNumber: string;
|
|
4156
|
+
einNumber: string;
|
|
4157
|
+
otherAccountNumber: string;
|
|
4158
|
+
dutiesAndTaxesAccountNumber: string;
|
|
4159
|
+
discountId: string;
|
|
4160
|
+
discountReference: string;
|
|
4161
|
+
totalPublishedValue: number;
|
|
4162
|
+
totalPartnerAccountValue: number;
|
|
4163
|
+
isMarketingConsent: boolean;
|
|
4164
|
+
isTermCondition: boolean;
|
|
4165
|
+
isDocument: boolean;
|
|
4166
|
+
isCash: boolean;
|
|
4129
4167
|
isPriceOverride: boolean;
|
|
4130
4168
|
isProforma: boolean;
|
|
4131
4169
|
isPromotionCode: boolean;
|
|
4132
4170
|
isRetailRate: boolean;
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
originFacilityCode: string;
|
|
4137
|
-
originServiceAreaCode: string;
|
|
4138
|
-
otherAccountNumber: string | null;
|
|
4139
|
-
piecesNumber: number;
|
|
4140
|
-
priceOverrideApproverId: number | null;
|
|
4141
|
-
priceOverrideReasonId: number | null;
|
|
4142
|
-
product: ShipmentProductComposition;
|
|
4143
|
-
productId: number;
|
|
4144
|
-
productSubtotal: number;
|
|
4145
|
-
productTax: number;
|
|
4146
|
-
productTaxes: TaxComposition[];
|
|
4147
|
-
productTotal: number;
|
|
4148
|
-
promotionCode: string | null;
|
|
4149
|
-
realWeight: number;
|
|
4150
|
-
requiresPayment: boolean;
|
|
4151
|
-
shipmentAddresses: ShipmentAddressComposition[];
|
|
4152
|
-
shipmentBookPickup: ShipmentBookPickup | null;
|
|
4153
|
-
shipmentContentTypeId: number;
|
|
4154
|
-
shipmentExtraCharges: ExtraChargeComposition[];
|
|
4155
|
-
shipmentGroupId: number;
|
|
4156
|
-
shipmentGsop: ShipmentGsopComposition | null;
|
|
4157
|
-
shipmentPieces: ShipmentPieceComposition[];
|
|
4158
|
-
shipmentScopeId: number;
|
|
4159
|
-
shipmentStatusId: number;
|
|
4160
|
-
shipmentTaxes: TaxComposition[];
|
|
4161
|
-
shipmentWithholding: unknown | null;
|
|
4162
|
-
subtotal: number;
|
|
4163
|
-
tax: number;
|
|
4164
|
-
total: number;
|
|
4165
|
-
totalPartnerAccountValue: number | null;
|
|
4166
|
-
totalPublishedValue: number | null;
|
|
4167
|
-
trackingNumber: string;
|
|
4168
|
-
transactionId: string;
|
|
4169
|
-
userId: number;
|
|
4170
|
-
customs: {
|
|
4171
|
-
ignoreValidation: boolean;
|
|
4172
|
-
criteria: {
|
|
4173
|
-
origin: string;
|
|
4174
|
-
destination: string;
|
|
4175
|
-
dutiable: boolean;
|
|
4176
|
-
declaredValue: number | null;
|
|
4177
|
-
};
|
|
4178
|
-
rules: {
|
|
4179
|
-
id: number;
|
|
4180
|
-
level: string;
|
|
4181
|
-
attributes: {
|
|
4182
|
-
id: number;
|
|
4183
|
-
field: string;
|
|
4184
|
-
dhlCode: string;
|
|
4185
|
-
values: {
|
|
4186
|
-
shipment: string;
|
|
4187
|
-
customer: CustomerRoleType;
|
|
4188
|
-
invoiceHeader: string;
|
|
4189
|
-
invoiceItem: string[];
|
|
4190
|
-
};
|
|
4191
|
-
}[];
|
|
4192
|
-
}[];
|
|
4193
|
-
};
|
|
4194
|
-
additionalData: {
|
|
4195
|
-
countryCode: string;
|
|
4196
|
-
productGlobalCode: string;
|
|
4197
|
-
productLocalCode: string;
|
|
4198
|
-
currencyCode: string;
|
|
4199
|
-
userUsername: string;
|
|
4200
|
-
locationFacilityCode: string;
|
|
4201
|
-
shipmentStatusCode: string;
|
|
4202
|
-
awbTypeCode?: string;
|
|
4203
|
-
shipmentTypeCode?: string;
|
|
4204
|
-
};
|
|
4171
|
+
isOtherOrigin: boolean;
|
|
4172
|
+
isOccurs: boolean;
|
|
4173
|
+
isDutiesAndTaxes: boolean;
|
|
4205
4174
|
}
|
|
4206
|
-
interface ExtraChargeComposition
|
|
4175
|
+
interface ExtraChargeComposition {
|
|
4176
|
+
globalServiceCode: string;
|
|
4177
|
+
localServiceCode: string;
|
|
4178
|
+
globalServiceName: string;
|
|
4179
|
+
localServiceName: string;
|
|
4207
4180
|
subtotal: number;
|
|
4208
4181
|
tax: number;
|
|
4209
4182
|
total: number;
|
|
4210
|
-
|
|
4211
|
-
taxes: TaxComposition[];
|
|
4212
|
-
extraChargeGroup: string;
|
|
4213
|
-
extraChargeCode: string;
|
|
4214
|
-
extraChargeName: string;
|
|
4215
|
-
extraChargeIsDiscount: boolean;
|
|
4183
|
+
taxes: Tax[];
|
|
4216
4184
|
}
|
|
4217
|
-
interface
|
|
4185
|
+
interface Tax {
|
|
4218
4186
|
code: string;
|
|
4219
4187
|
percent: number;
|
|
4220
4188
|
baseAmount: number;
|
|
4221
4189
|
amount: number;
|
|
4222
4190
|
}
|
|
4223
|
-
interface
|
|
4191
|
+
interface ShipmentAddresses extends SymfonyModel {
|
|
4224
4192
|
index: number;
|
|
4225
|
-
identificationTypeId: number
|
|
4226
|
-
identificationNumber: string
|
|
4193
|
+
identificationTypeId: number;
|
|
4194
|
+
identificationNumber: string;
|
|
4227
4195
|
companyName: string;
|
|
4228
4196
|
fullName: string;
|
|
4229
4197
|
email: string;
|
|
4230
4198
|
phoneCode: string;
|
|
4231
4199
|
phoneNumber: string;
|
|
4232
|
-
postalCode: string
|
|
4233
|
-
stateCode: string
|
|
4234
|
-
stateId: number | null;
|
|
4200
|
+
postalCode: string;
|
|
4201
|
+
stateCode: string;
|
|
4235
4202
|
countyName: string;
|
|
4236
4203
|
cityName: string;
|
|
4237
4204
|
addressLine1: string;
|
|
4238
|
-
addressLine2: string
|
|
4239
|
-
addressLine3: string
|
|
4205
|
+
addressLine2: string;
|
|
4206
|
+
addressLine3: string;
|
|
4240
4207
|
countryId: number;
|
|
4241
|
-
|
|
4242
|
-
|
|
4243
|
-
|
|
4244
|
-
|
|
4245
|
-
|
|
4246
|
-
|
|
4247
|
-
|
|
4248
|
-
|
|
4249
|
-
businessPartyTraderType?: BusinessPartyTraderType | null;
|
|
4250
|
-
identificationType?: IdentificationType | null;
|
|
4251
|
-
}
|
|
4252
|
-
interface ShipmentPieceComposition extends ActiveLessSymfonyModel {
|
|
4208
|
+
identificationType: IdentificationTypeComposition;
|
|
4209
|
+
roleType: CustomerType$1;
|
|
4210
|
+
}
|
|
4211
|
+
interface IdentificationTypeComposition extends SymfonyModel {
|
|
4212
|
+
name: string;
|
|
4213
|
+
companyCountryId: number;
|
|
4214
|
+
}
|
|
4215
|
+
interface ShipmentPieces extends ActiveLessSymfonyModel {
|
|
4253
4216
|
number: number;
|
|
4254
4217
|
height: number;
|
|
4255
4218
|
length: number;
|
|
4256
4219
|
width: number;
|
|
4257
4220
|
realWeight: number;
|
|
4258
4221
|
volumetricWeight: number;
|
|
4259
|
-
dataIdentifier: string
|
|
4222
|
+
dataIdentifier: string;
|
|
4260
4223
|
trackingNumber: string;
|
|
4261
|
-
licensePlateBarCode: string
|
|
4262
|
-
|
|
4224
|
+
licensePlateBarCode: string;
|
|
4225
|
+
shipmentPieceCompanyCountrySupplies: ShipmentPieceCompanyCountrySupplies[];
|
|
4263
4226
|
}
|
|
4264
|
-
interface
|
|
4227
|
+
interface ShipmentPieceCompanyCountrySupplies extends ActiveLessSymfonyModel {
|
|
4265
4228
|
supplyId: number;
|
|
4266
4229
|
quantity: number;
|
|
4267
4230
|
subtotal: number;
|
|
@@ -4272,25 +4235,18 @@ interface ShipmentPieceSupplyComposition extends ActiveLessSymfonyModel {
|
|
|
4272
4235
|
description: string;
|
|
4273
4236
|
supply: Supply;
|
|
4274
4237
|
}
|
|
4275
|
-
interface
|
|
4276
|
-
globalCode: string;
|
|
4277
|
-
localCode: string;
|
|
4278
|
-
globalName: string;
|
|
4279
|
-
localName: string;
|
|
4280
|
-
isDocument: boolean;
|
|
4281
|
-
}
|
|
4282
|
-
interface CommercialInvoiceComposition extends ActiveLessSymfonyModel {
|
|
4238
|
+
interface CommercialInvoice extends ActiveLessSymfonyModel {
|
|
4283
4239
|
documentTypeId: number;
|
|
4284
4240
|
tradingTransactionTypeId: number;
|
|
4285
4241
|
documentFunctionId: number;
|
|
4286
4242
|
number: string;
|
|
4287
4243
|
remarks: string;
|
|
4288
|
-
items:
|
|
4244
|
+
items: Item[];
|
|
4289
4245
|
documentType: DocumentTypeComposition;
|
|
4290
4246
|
tradingTransactionType: TradingTransactionType;
|
|
4291
|
-
documentFunction:
|
|
4247
|
+
documentFunction: DocumentFunction;
|
|
4292
4248
|
}
|
|
4293
|
-
interface
|
|
4249
|
+
interface Item extends ActiveLessSymfonyModel {
|
|
4294
4250
|
description: string;
|
|
4295
4251
|
quantity: number;
|
|
4296
4252
|
quantityUnitId: number;
|
|
@@ -4299,31 +4255,32 @@ interface ItemComposition extends ActiveLessSymfonyModel {
|
|
|
4299
4255
|
realWeight: number;
|
|
4300
4256
|
commodityId: number;
|
|
4301
4257
|
quantityUnit: QuantityUnit;
|
|
4302
|
-
manufactureCountry:
|
|
4303
|
-
id: string;
|
|
4304
|
-
code: string;
|
|
4305
|
-
name: string;
|
|
4306
|
-
locationType: string[];
|
|
4307
|
-
unit: string[];
|
|
4308
|
-
timezone: string;
|
|
4309
|
-
hasImportService: boolean;
|
|
4310
|
-
isActive: boolean;
|
|
4311
|
-
regions: string[];
|
|
4312
|
-
zones: string[];
|
|
4313
|
-
isoCode: string;
|
|
4314
|
-
};
|
|
4258
|
+
manufactureCountry: ManufactureCountry;
|
|
4315
4259
|
commodity: Commodity;
|
|
4316
4260
|
}
|
|
4261
|
+
interface ManufactureCountry {
|
|
4262
|
+
id: string;
|
|
4263
|
+
code: string;
|
|
4264
|
+
name: string;
|
|
4265
|
+
locationType: string[];
|
|
4266
|
+
unit: string[];
|
|
4267
|
+
timezone: string;
|
|
4268
|
+
hasImportService: boolean;
|
|
4269
|
+
isActive: boolean;
|
|
4270
|
+
regions: string[];
|
|
4271
|
+
zones: string[];
|
|
4272
|
+
isoCode: string;
|
|
4273
|
+
}
|
|
4317
4274
|
interface DocumentTypeComposition extends SymfonyModel {
|
|
4318
4275
|
code: string;
|
|
4319
4276
|
name: string;
|
|
4320
4277
|
description: string;
|
|
4321
4278
|
}
|
|
4322
|
-
interface
|
|
4279
|
+
interface DocumentFunction extends SymfonyModel {
|
|
4323
4280
|
code: string;
|
|
4324
4281
|
name: string;
|
|
4325
4282
|
}
|
|
4326
|
-
interface
|
|
4283
|
+
interface ShipmentGsop extends ActiveLessSymfonyModel {
|
|
4327
4284
|
productContentCode: string;
|
|
4328
4285
|
originServiceAreaCode: string;
|
|
4329
4286
|
destinationServiceAreaCode: string;
|
|
@@ -4331,6 +4288,54 @@ interface ShipmentGsopComposition extends ActiveLessSymfonyModel {
|
|
|
4331
4288
|
awbBarCode: string;
|
|
4332
4289
|
dhlRoutingBarCode: string;
|
|
4333
4290
|
}
|
|
4291
|
+
interface ShipmentCompanyCountryExtraCharges extends ActiveLessSymfonyModel {
|
|
4292
|
+
subtotal: number;
|
|
4293
|
+
tax: number;
|
|
4294
|
+
total: number;
|
|
4295
|
+
extraChargeId: number;
|
|
4296
|
+
extraChargeCode: string;
|
|
4297
|
+
}
|
|
4298
|
+
interface AdditionalData {
|
|
4299
|
+
awbTypeCode: string;
|
|
4300
|
+
countryCode: string;
|
|
4301
|
+
shipmentTypeCode: string;
|
|
4302
|
+
productGlobalCode: string;
|
|
4303
|
+
productLocalCode: string;
|
|
4304
|
+
currencyCode: string;
|
|
4305
|
+
userUsername: string;
|
|
4306
|
+
locationFacilityCode: string;
|
|
4307
|
+
}
|
|
4308
|
+
interface Customs {
|
|
4309
|
+
criteria: Criteria;
|
|
4310
|
+
rules: Rules[];
|
|
4311
|
+
}
|
|
4312
|
+
interface Criteria {
|
|
4313
|
+
origin: string;
|
|
4314
|
+
destination: string;
|
|
4315
|
+
dutiable: boolean;
|
|
4316
|
+
declaredValue: number;
|
|
4317
|
+
}
|
|
4318
|
+
interface Rules {
|
|
4319
|
+
id: number;
|
|
4320
|
+
level: string;
|
|
4321
|
+
attributes: Attributes[];
|
|
4322
|
+
}
|
|
4323
|
+
interface Attributes {
|
|
4324
|
+
id: number;
|
|
4325
|
+
field: string;
|
|
4326
|
+
dhlCode: string;
|
|
4327
|
+
values: Values;
|
|
4328
|
+
}
|
|
4329
|
+
interface Values {
|
|
4330
|
+
shipment: string;
|
|
4331
|
+
customer: CustomerComposition;
|
|
4332
|
+
invoiceHeader: string;
|
|
4333
|
+
invoiceItem: string[];
|
|
4334
|
+
}
|
|
4335
|
+
interface CustomerComposition {
|
|
4336
|
+
SP: string;
|
|
4337
|
+
RV: string;
|
|
4338
|
+
}
|
|
4334
4339
|
interface ShipmentBookPickup extends ActiveLessSymfonyModel {
|
|
4335
4340
|
pickupDate: string;
|
|
4336
4341
|
readyByTime: string;
|
|
@@ -4344,10 +4349,6 @@ interface ShipmentBookPickup extends ActiveLessSymfonyModel {
|
|
|
4344
4349
|
type ShipmentOut = {
|
|
4345
4350
|
shipment: ShipmentComposition;
|
|
4346
4351
|
};
|
|
4347
|
-
type ShipmentsOut = {
|
|
4348
|
-
shipments: ShipmentComposition[];
|
|
4349
|
-
total: number;
|
|
4350
|
-
};
|
|
4351
4352
|
type CompositionCountryReferencesOut = {
|
|
4352
4353
|
country_references: CountryReference[];
|
|
4353
4354
|
total: number;
|
|
@@ -4369,13 +4370,6 @@ declare class ApiCompositionService {
|
|
|
4369
4370
|
* @returns {Observable<ShipmentOut>} An observable that emits the details of the shipment.
|
|
4370
4371
|
*/
|
|
4371
4372
|
getShipment(id: number): Observable<ShipmentOut>;
|
|
4372
|
-
/**
|
|
4373
|
-
* Retrieves shipments based on the provided query parameters.
|
|
4374
|
-
*
|
|
4375
|
-
* @param {QueryParams} params - The query parameters for the API request.
|
|
4376
|
-
* @returns {Observable<ShipmentsOut>} An observable that emits the shipments data.
|
|
4377
|
-
*/
|
|
4378
|
-
getShipments(params: QueryParams): Observable<ShipmentsOut>;
|
|
4379
4373
|
/**
|
|
4380
4374
|
* Fetches the country references data based on the provided query parameters.
|
|
4381
4375
|
*
|
|
@@ -5527,6 +5521,7 @@ type DeliveryConfirmationSearchOut = {
|
|
|
5527
5521
|
type SignaturePageConfirmationGenerateOut = {
|
|
5528
5522
|
code: string;
|
|
5529
5523
|
};
|
|
5524
|
+
type CustomerRoleType = 'SP' | 'RV' | 'IM' | 'EX' | string;
|
|
5530
5525
|
type ConfirmTermsIn = {
|
|
5531
5526
|
shipment_id: number;
|
|
5532
5527
|
status: 'Processed' | 'Canceled';
|
|
@@ -9647,5 +9642,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
|
|
|
9647
9642
|
[header: string]: string | string[];
|
|
9648
9643
|
};
|
|
9649
9644
|
|
|
9650
|
-
export { AccountTypeId, AccountTypeName, AlphaNumeric, ApiAuditsService, 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,
|
|
9651
|
-
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, AddressToSignaturePage, 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, 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, CommercialInvoiceComposition, CommercialInvoiceItemToSignaturePage, CommercialInvoiceToSignaturePage, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, ConfirmTermsIn, Connection, ConnectionsOut, 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, 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, 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, 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, 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, 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, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, SetUpData, ShipmentAddressComposition, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentCustoms, ShipmentDataToSignaturePage, ShipmentDescription, ShipmentDescriptionsOut, ShipmentDocument, ShipmentDocumentsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsopComposition, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceComposition, ShipmentPieceSupplyComposition, ShipmentProductComposition, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageConfirmationIn, ShipmentSignaturePageIn, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsBookingIn, ShipmentsEReceiptIn, ShipmentsLandingReportOut, ShipmentsOut, 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, TaxComposition, TaxToSignaturePage, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TradingTransactionTypesOut, TransactionLog, TransactionLogsDownloadOut, TransactionLogsOut, 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 };
|
|
9645
|
+
export { AccountTypeId, AccountTypeName, AlphaNumeric, ApiAuditsService, 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 };
|
|
9646
|
+
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, Connection, ConnectionsOut, 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, TransactionLog, TransactionLogsDownloadOut, TransactionLogsOut, 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 };
|