@experteam-mx/ngx-services 20.9.1-dev3.6 → 20.9.2
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
|
@@ -1155,6 +1155,7 @@ interface Country extends SymfonyModel {
|
|
|
1155
1155
|
hasImportService: boolean;
|
|
1156
1156
|
phoneDigits: number;
|
|
1157
1157
|
locationTypeFields: LocationTypeFields;
|
|
1158
|
+
postalCodeFormats: PostalCodeFormat[];
|
|
1158
1159
|
postalCodeSuffixRegex: string;
|
|
1159
1160
|
decimalPoint: number;
|
|
1160
1161
|
max_quantity_document_piece: number;
|
|
@@ -1172,6 +1173,11 @@ interface Country extends SymfonyModel {
|
|
|
1172
1173
|
use_billing?: boolean;
|
|
1173
1174
|
translations: Translations;
|
|
1174
1175
|
}
|
|
1176
|
+
interface PostalCodeFormat extends SymfonyModel {
|
|
1177
|
+
format: string;
|
|
1178
|
+
significantChars: number;
|
|
1179
|
+
regex: string;
|
|
1180
|
+
}
|
|
1175
1181
|
interface LocationType extends SymfonyModel {
|
|
1176
1182
|
code: string;
|
|
1177
1183
|
name: string;
|
|
@@ -2822,15 +2828,25 @@ interface AccountWithDefault extends Account {
|
|
|
2822
2828
|
}
|
|
2823
2829
|
interface AccountWithLocations extends Account {
|
|
2824
2830
|
account_company_countries: AccountCompanyCountryLocation[];
|
|
2825
|
-
country:
|
|
2826
|
-
}
|
|
2827
|
-
interface PostalCodeFormat extends SymfonyModel {
|
|
2828
|
-
format: string;
|
|
2829
|
-
significantChars: number;
|
|
2830
|
-
regex: string;
|
|
2831
|
+
country: CountryAccount;
|
|
2831
2832
|
}
|
|
2832
|
-
interface
|
|
2833
|
+
interface CountryAccount {
|
|
2834
|
+
id: number;
|
|
2835
|
+
code: string;
|
|
2836
|
+
name: string;
|
|
2837
|
+
timezone: string;
|
|
2838
|
+
hasImportService: boolean;
|
|
2839
|
+
isActive: boolean;
|
|
2840
|
+
isoCode: string;
|
|
2841
|
+
codePhone: string;
|
|
2842
|
+
phoneDigits: string | null;
|
|
2843
|
+
createdAt: string;
|
|
2844
|
+
updatedAt: string;
|
|
2845
|
+
locationType: LocationType;
|
|
2846
|
+
unit: Unit;
|
|
2847
|
+
locationTypeFields: LocationTypeFields;
|
|
2833
2848
|
postalCodeFormats: PostalCodeFormat[];
|
|
2849
|
+
translations: Translations;
|
|
2834
2850
|
}
|
|
2835
2851
|
|
|
2836
2852
|
type LocationEmployeesOut = {
|
|
@@ -3449,13 +3465,6 @@ declare class ApiCompaniesService {
|
|
|
3449
3465
|
* @return {Observable<{}>} An observable containing the response data after the employee is deleted.
|
|
3450
3466
|
*/
|
|
3451
3467
|
deleteEmployee(id: number): Observable<{}>;
|
|
3452
|
-
/**
|
|
3453
|
-
* Exports the filtered employees list as a PDF file.
|
|
3454
|
-
*
|
|
3455
|
-
* @param {QueryParams} params - Query parameters used to filter the employees included in the export.
|
|
3456
|
-
* @return {Observable<HttpResponse<ArrayBuffer>>} An observable that emits the HTTP response containing the PDF as an ArrayBuffer.
|
|
3457
|
-
*/
|
|
3458
|
-
getEmployeesExportPdf(params: QueryParams): Observable<HttpResponse<ArrayBuffer>>;
|
|
3459
3468
|
/**
|
|
3460
3469
|
* Retrieves the list of employees for a specified location based on provided query parameters.
|
|
3461
3470
|
*
|
|
@@ -4038,7 +4047,7 @@ declare class ApiCompaniesService {
|
|
|
4038
4047
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiCompaniesService>;
|
|
4039
4048
|
}
|
|
4040
4049
|
|
|
4041
|
-
declare enum
|
|
4050
|
+
declare enum CustomerType$1 {
|
|
4042
4051
|
SHIPPER = "SP",
|
|
4043
4052
|
CONSIGNEE = "RV",
|
|
4044
4053
|
IMPORTER = "IP",
|
|
@@ -4085,180 +4094,138 @@ interface SupplyLocationTransaction extends ActiveLessSymfonyModel {
|
|
|
4085
4094
|
stock: number;
|
|
4086
4095
|
}
|
|
4087
4096
|
|
|
4088
|
-
interface ShipmentComposition extends
|
|
4097
|
+
interface ShipmentComposition extends SymfonyModel {
|
|
4098
|
+
currencyCode: string;
|
|
4099
|
+
extraCharges: ExtraChargeComposition[];
|
|
4100
|
+
globalProductCode: string;
|
|
4101
|
+
globalProductName: string;
|
|
4102
|
+
localProductCode: string;
|
|
4103
|
+
localProductName: string;
|
|
4104
|
+
trackingNumber: string;
|
|
4105
|
+
contentDescription: string;
|
|
4106
|
+
realWeight: number;
|
|
4107
|
+
piecesNumber: number;
|
|
4108
|
+
productSubtotal: number;
|
|
4109
|
+
productTax: number;
|
|
4110
|
+
productTotal: number;
|
|
4111
|
+
declaredValue: number;
|
|
4112
|
+
insuredValue: number;
|
|
4089
4113
|
accountNumber: string;
|
|
4090
|
-
|
|
4091
|
-
|
|
4092
|
-
commercialExchangeRate: number;
|
|
4093
|
-
commercialInvoice: CommercialInvoiceComposition | null;
|
|
4114
|
+
userId: number;
|
|
4115
|
+
installationId: number;
|
|
4094
4116
|
companyCountryId: number;
|
|
4095
|
-
|
|
4117
|
+
productId: number;
|
|
4096
4118
|
countryReferenceCurrencyId: number;
|
|
4097
|
-
|
|
4098
|
-
declaredCurrency: string | null;
|
|
4099
|
-
declaredValue: number;
|
|
4100
|
-
deliveryDateTime: string;
|
|
4101
|
-
destinationFacilityCode: string;
|
|
4102
|
-
destinationServiceAreaCode: string;
|
|
4103
|
-
discountModelId: number | null;
|
|
4104
|
-
discountModelType: string | null;
|
|
4105
|
-
discountName: string | null;
|
|
4106
|
-
discountPercentage: number | null;
|
|
4107
|
-
discountReference: string | null;
|
|
4108
|
-
discountValue: number | null;
|
|
4109
|
-
dutiesAndTaxesAccountNumber: string | null;
|
|
4110
|
-
einNumber: string | null;
|
|
4111
|
-
exportReason: ExportReason | null;
|
|
4112
|
-
exportReasonId: number | null;
|
|
4113
|
-
extraFields: Record<string, unknown>;
|
|
4119
|
+
commercialExchangeRate: number;
|
|
4114
4120
|
ibsExchangeRate: number;
|
|
4115
|
-
|
|
4116
|
-
|
|
4117
|
-
|
|
4118
|
-
|
|
4119
|
-
|
|
4120
|
-
|
|
4121
|
+
shipmentStatusId: number;
|
|
4122
|
+
shipmentAddresses: ShipmentAddresses[];
|
|
4123
|
+
shipmentPieces: ShipmentPieces[];
|
|
4124
|
+
shipmentCompanyCountryExtraCharges: ShipmentCompanyCountryExtraCharges[];
|
|
4125
|
+
shipmentGsop: ShipmentGsop;
|
|
4126
|
+
additionalData: AdditionalData;
|
|
4127
|
+
transactionId: string;
|
|
4128
|
+
requiresPayment: boolean;
|
|
4129
|
+
originServiceAreaCode: string;
|
|
4130
|
+
originFacilityCode: string;
|
|
4131
|
+
destinationServiceAreaCode: string;
|
|
4132
|
+
destinationFacilityCode: string;
|
|
4133
|
+
productTaxes: string[];
|
|
4121
4134
|
isInspected: boolean;
|
|
4135
|
+
extraFields: {
|
|
4136
|
+
[key: string]: string | number | boolean;
|
|
4137
|
+
};
|
|
4138
|
+
shipmentContentTypeId: number;
|
|
4139
|
+
commercialInvoice: CommercialInvoice;
|
|
4140
|
+
shipmentScopeId: number;
|
|
4141
|
+
shipmentGroupId: number;
|
|
4142
|
+
product: string[];
|
|
4143
|
+
declaredCurrency: string;
|
|
4144
|
+
insuredCurrency: string;
|
|
4145
|
+
deliveryDateTime: string;
|
|
4146
|
+
date: string;
|
|
4147
|
+
promotionCode: string;
|
|
4148
|
+
priceOverrideApproverId: number;
|
|
4149
|
+
priceOverrideReasonId: number;
|
|
4150
|
+
customs: Customs;
|
|
4151
|
+
exportReasonId: number;
|
|
4152
|
+
exportReason: string[];
|
|
4153
|
+
shipmentBookPickup: ShipmentBookPickup;
|
|
4154
|
+
questionId: number;
|
|
4122
4155
|
isInsured: boolean;
|
|
4123
|
-
|
|
4124
|
-
|
|
4125
|
-
|
|
4156
|
+
itnNumber: string;
|
|
4157
|
+
einNumber: string;
|
|
4158
|
+
otherAccountNumber: string;
|
|
4159
|
+
dutiesAndTaxesAccountNumber: string;
|
|
4160
|
+
discountId: string;
|
|
4161
|
+
discountReference: string;
|
|
4162
|
+
totalPublishedValue: number;
|
|
4163
|
+
totalPartnerAccountValue: number;
|
|
4164
|
+
isMarketingConsent: boolean;
|
|
4165
|
+
isTermCondition: boolean;
|
|
4166
|
+
isDocument: boolean;
|
|
4167
|
+
isCash: boolean;
|
|
4126
4168
|
isPriceOverride: boolean;
|
|
4127
4169
|
isProforma: boolean;
|
|
4128
4170
|
isPromotionCode: boolean;
|
|
4129
4171
|
isRetailRate: boolean;
|
|
4130
|
-
|
|
4131
|
-
|
|
4132
|
-
|
|
4133
|
-
originFacilityCode: string;
|
|
4134
|
-
originServiceAreaCode: string;
|
|
4135
|
-
otherAccountNumber: string | null;
|
|
4136
|
-
piecesNumber: number;
|
|
4137
|
-
priceOverrideApproverId: number | null;
|
|
4138
|
-
priceOverrideReasonId: number | null;
|
|
4139
|
-
product: ShipmentProductComposition;
|
|
4140
|
-
productId: number;
|
|
4141
|
-
productSubtotal: number;
|
|
4142
|
-
productTax: number;
|
|
4143
|
-
productTaxes: TaxComposition[];
|
|
4144
|
-
productTotal: number;
|
|
4145
|
-
promotionCode: string | null;
|
|
4146
|
-
realWeight: number;
|
|
4147
|
-
requiresPayment: boolean;
|
|
4148
|
-
shipmentAddresses: ShipmentAddressComposition[];
|
|
4149
|
-
shipmentBookPickup: ShipmentBookPickup | null;
|
|
4150
|
-
shipmentContentTypeId: number;
|
|
4151
|
-
shipmentExtraCharges: ExtraChargeComposition[];
|
|
4152
|
-
shipmentGroupId: number;
|
|
4153
|
-
shipmentGsop: ShipmentGsopComposition | null;
|
|
4154
|
-
shipmentPieces: ShipmentPieceComposition[];
|
|
4155
|
-
shipmentScopeId: number;
|
|
4156
|
-
shipmentStatusId: number;
|
|
4157
|
-
shipmentTaxes: TaxComposition[];
|
|
4158
|
-
shipmentWithholding: unknown | null;
|
|
4159
|
-
subtotal: number;
|
|
4160
|
-
tax: number;
|
|
4161
|
-
total: number;
|
|
4162
|
-
totalPartnerAccountValue: number | null;
|
|
4163
|
-
totalPublishedValue: number | null;
|
|
4164
|
-
trackingNumber: string;
|
|
4165
|
-
transactionId: string;
|
|
4166
|
-
userId: number;
|
|
4167
|
-
customs: {
|
|
4168
|
-
ignoreValidation: boolean;
|
|
4169
|
-
criteria: {
|
|
4170
|
-
origin: string;
|
|
4171
|
-
destination: string;
|
|
4172
|
-
dutiable: boolean;
|
|
4173
|
-
declaredValue: number | null;
|
|
4174
|
-
};
|
|
4175
|
-
rules: {
|
|
4176
|
-
id: number;
|
|
4177
|
-
level: string;
|
|
4178
|
-
attributes: {
|
|
4179
|
-
id: number;
|
|
4180
|
-
field: string;
|
|
4181
|
-
dhlCode: string;
|
|
4182
|
-
values: {
|
|
4183
|
-
shipment: string;
|
|
4184
|
-
customer: CustomerRoleType;
|
|
4185
|
-
invoiceHeader: string;
|
|
4186
|
-
invoiceItem: string[];
|
|
4187
|
-
};
|
|
4188
|
-
}[];
|
|
4189
|
-
}[];
|
|
4190
|
-
};
|
|
4191
|
-
additionalData: {
|
|
4192
|
-
countryCode: string;
|
|
4193
|
-
productGlobalCode: string;
|
|
4194
|
-
productLocalCode: string;
|
|
4195
|
-
currencyCode: string;
|
|
4196
|
-
userUsername: string;
|
|
4197
|
-
locationFacilityCode: string;
|
|
4198
|
-
shipmentStatusCode: string;
|
|
4199
|
-
awbTypeCode?: string;
|
|
4200
|
-
shipmentTypeCode?: string;
|
|
4201
|
-
};
|
|
4172
|
+
isOtherOrigin: boolean;
|
|
4173
|
+
isOccurs: boolean;
|
|
4174
|
+
isDutiesAndTaxes: boolean;
|
|
4202
4175
|
}
|
|
4203
|
-
interface ExtraChargeComposition
|
|
4176
|
+
interface ExtraChargeComposition {
|
|
4177
|
+
globalServiceCode: string;
|
|
4178
|
+
localServiceCode: string;
|
|
4179
|
+
globalServiceName: string;
|
|
4180
|
+
localServiceName: string;
|
|
4204
4181
|
subtotal: number;
|
|
4205
4182
|
tax: number;
|
|
4206
4183
|
total: number;
|
|
4207
|
-
|
|
4208
|
-
taxes: TaxComposition[];
|
|
4209
|
-
extraChargeGroup: string;
|
|
4210
|
-
extraChargeCode: string;
|
|
4211
|
-
extraChargeName: string;
|
|
4212
|
-
extraChargeIsDiscount: boolean;
|
|
4184
|
+
taxes: Tax[];
|
|
4213
4185
|
}
|
|
4214
|
-
interface
|
|
4186
|
+
interface Tax {
|
|
4215
4187
|
code: string;
|
|
4216
4188
|
percent: number;
|
|
4217
4189
|
baseAmount: number;
|
|
4218
4190
|
amount: number;
|
|
4219
4191
|
}
|
|
4220
|
-
interface
|
|
4192
|
+
interface ShipmentAddresses extends SymfonyModel {
|
|
4221
4193
|
index: number;
|
|
4222
|
-
identificationTypeId: number
|
|
4223
|
-
identificationNumber: string
|
|
4194
|
+
identificationTypeId: number;
|
|
4195
|
+
identificationNumber: string;
|
|
4224
4196
|
companyName: string;
|
|
4225
4197
|
fullName: string;
|
|
4226
4198
|
email: string;
|
|
4227
4199
|
phoneCode: string;
|
|
4228
4200
|
phoneNumber: string;
|
|
4229
|
-
postalCode: string
|
|
4230
|
-
stateCode: string
|
|
4231
|
-
stateId: number | null;
|
|
4201
|
+
postalCode: string;
|
|
4202
|
+
stateCode: string;
|
|
4232
4203
|
countyName: string;
|
|
4233
4204
|
cityName: string;
|
|
4234
4205
|
addressLine1: string;
|
|
4235
|
-
addressLine2: string
|
|
4236
|
-
addressLine3: string
|
|
4206
|
+
addressLine2: string;
|
|
4207
|
+
addressLine3: string;
|
|
4237
4208
|
countryId: number;
|
|
4238
|
-
|
|
4239
|
-
|
|
4240
|
-
|
|
4241
|
-
|
|
4242
|
-
|
|
4243
|
-
|
|
4244
|
-
|
|
4245
|
-
|
|
4246
|
-
businessPartyTraderType?: BusinessPartyTraderType | null;
|
|
4247
|
-
identificationType?: IdentificationType | null;
|
|
4248
|
-
}
|
|
4249
|
-
interface ShipmentPieceComposition extends ActiveLessSymfonyModel {
|
|
4209
|
+
identificationType: IdentificationTypeComposition;
|
|
4210
|
+
roleType: CustomerType$1;
|
|
4211
|
+
}
|
|
4212
|
+
interface IdentificationTypeComposition extends SymfonyModel {
|
|
4213
|
+
name: string;
|
|
4214
|
+
companyCountryId: number;
|
|
4215
|
+
}
|
|
4216
|
+
interface ShipmentPieces extends ActiveLessSymfonyModel {
|
|
4250
4217
|
number: number;
|
|
4251
4218
|
height: number;
|
|
4252
4219
|
length: number;
|
|
4253
4220
|
width: number;
|
|
4254
4221
|
realWeight: number;
|
|
4255
4222
|
volumetricWeight: number;
|
|
4256
|
-
dataIdentifier: string
|
|
4223
|
+
dataIdentifier: string;
|
|
4257
4224
|
trackingNumber: string;
|
|
4258
|
-
licensePlateBarCode: string
|
|
4259
|
-
|
|
4225
|
+
licensePlateBarCode: string;
|
|
4226
|
+
shipmentPieceCompanyCountrySupplies: ShipmentPieceCompanyCountrySupplies[];
|
|
4260
4227
|
}
|
|
4261
|
-
interface
|
|
4228
|
+
interface ShipmentPieceCompanyCountrySupplies extends ActiveLessSymfonyModel {
|
|
4262
4229
|
supplyId: number;
|
|
4263
4230
|
quantity: number;
|
|
4264
4231
|
subtotal: number;
|
|
@@ -4269,25 +4236,18 @@ interface ShipmentPieceSupplyComposition extends ActiveLessSymfonyModel {
|
|
|
4269
4236
|
description: string;
|
|
4270
4237
|
supply: Supply;
|
|
4271
4238
|
}
|
|
4272
|
-
interface
|
|
4273
|
-
globalCode: string;
|
|
4274
|
-
localCode: string;
|
|
4275
|
-
globalName: string;
|
|
4276
|
-
localName: string;
|
|
4277
|
-
isDocument: boolean;
|
|
4278
|
-
}
|
|
4279
|
-
interface CommercialInvoiceComposition extends ActiveLessSymfonyModel {
|
|
4239
|
+
interface CommercialInvoice extends ActiveLessSymfonyModel {
|
|
4280
4240
|
documentTypeId: number;
|
|
4281
4241
|
tradingTransactionTypeId: number;
|
|
4282
4242
|
documentFunctionId: number;
|
|
4283
4243
|
number: string;
|
|
4284
4244
|
remarks: string;
|
|
4285
|
-
items:
|
|
4245
|
+
items: Item[];
|
|
4286
4246
|
documentType: DocumentTypeComposition;
|
|
4287
4247
|
tradingTransactionType: TradingTransactionType;
|
|
4288
|
-
documentFunction:
|
|
4248
|
+
documentFunction: DocumentFunction;
|
|
4289
4249
|
}
|
|
4290
|
-
interface
|
|
4250
|
+
interface Item extends ActiveLessSymfonyModel {
|
|
4291
4251
|
description: string;
|
|
4292
4252
|
quantity: number;
|
|
4293
4253
|
quantityUnitId: number;
|
|
@@ -4296,31 +4256,32 @@ interface ItemComposition extends ActiveLessSymfonyModel {
|
|
|
4296
4256
|
realWeight: number;
|
|
4297
4257
|
commodityId: number;
|
|
4298
4258
|
quantityUnit: QuantityUnit;
|
|
4299
|
-
manufactureCountry:
|
|
4300
|
-
id: string;
|
|
4301
|
-
code: string;
|
|
4302
|
-
name: string;
|
|
4303
|
-
locationType: string[];
|
|
4304
|
-
unit: string[];
|
|
4305
|
-
timezone: string;
|
|
4306
|
-
hasImportService: boolean;
|
|
4307
|
-
isActive: boolean;
|
|
4308
|
-
regions: string[];
|
|
4309
|
-
zones: string[];
|
|
4310
|
-
isoCode: string;
|
|
4311
|
-
};
|
|
4259
|
+
manufactureCountry: ManufactureCountry;
|
|
4312
4260
|
commodity: Commodity;
|
|
4313
4261
|
}
|
|
4262
|
+
interface ManufactureCountry {
|
|
4263
|
+
id: string;
|
|
4264
|
+
code: string;
|
|
4265
|
+
name: string;
|
|
4266
|
+
locationType: string[];
|
|
4267
|
+
unit: string[];
|
|
4268
|
+
timezone: string;
|
|
4269
|
+
hasImportService: boolean;
|
|
4270
|
+
isActive: boolean;
|
|
4271
|
+
regions: string[];
|
|
4272
|
+
zones: string[];
|
|
4273
|
+
isoCode: string;
|
|
4274
|
+
}
|
|
4314
4275
|
interface DocumentTypeComposition extends SymfonyModel {
|
|
4315
4276
|
code: string;
|
|
4316
4277
|
name: string;
|
|
4317
4278
|
description: string;
|
|
4318
4279
|
}
|
|
4319
|
-
interface
|
|
4280
|
+
interface DocumentFunction extends SymfonyModel {
|
|
4320
4281
|
code: string;
|
|
4321
4282
|
name: string;
|
|
4322
4283
|
}
|
|
4323
|
-
interface
|
|
4284
|
+
interface ShipmentGsop extends ActiveLessSymfonyModel {
|
|
4324
4285
|
productContentCode: string;
|
|
4325
4286
|
originServiceAreaCode: string;
|
|
4326
4287
|
destinationServiceAreaCode: string;
|
|
@@ -4328,6 +4289,54 @@ interface ShipmentGsopComposition extends ActiveLessSymfonyModel {
|
|
|
4328
4289
|
awbBarCode: string;
|
|
4329
4290
|
dhlRoutingBarCode: string;
|
|
4330
4291
|
}
|
|
4292
|
+
interface ShipmentCompanyCountryExtraCharges extends ActiveLessSymfonyModel {
|
|
4293
|
+
subtotal: number;
|
|
4294
|
+
tax: number;
|
|
4295
|
+
total: number;
|
|
4296
|
+
extraChargeId: number;
|
|
4297
|
+
extraChargeCode: string;
|
|
4298
|
+
}
|
|
4299
|
+
interface AdditionalData {
|
|
4300
|
+
awbTypeCode: string;
|
|
4301
|
+
countryCode: string;
|
|
4302
|
+
shipmentTypeCode: string;
|
|
4303
|
+
productGlobalCode: string;
|
|
4304
|
+
productLocalCode: string;
|
|
4305
|
+
currencyCode: string;
|
|
4306
|
+
userUsername: string;
|
|
4307
|
+
locationFacilityCode: string;
|
|
4308
|
+
}
|
|
4309
|
+
interface Customs {
|
|
4310
|
+
criteria: Criteria;
|
|
4311
|
+
rules: Rules[];
|
|
4312
|
+
}
|
|
4313
|
+
interface Criteria {
|
|
4314
|
+
origin: string;
|
|
4315
|
+
destination: string;
|
|
4316
|
+
dutiable: boolean;
|
|
4317
|
+
declaredValue: number;
|
|
4318
|
+
}
|
|
4319
|
+
interface Rules {
|
|
4320
|
+
id: number;
|
|
4321
|
+
level: string;
|
|
4322
|
+
attributes: Attributes[];
|
|
4323
|
+
}
|
|
4324
|
+
interface Attributes {
|
|
4325
|
+
id: number;
|
|
4326
|
+
field: string;
|
|
4327
|
+
dhlCode: string;
|
|
4328
|
+
values: Values;
|
|
4329
|
+
}
|
|
4330
|
+
interface Values {
|
|
4331
|
+
shipment: string;
|
|
4332
|
+
customer: CustomerComposition;
|
|
4333
|
+
invoiceHeader: string;
|
|
4334
|
+
invoiceItem: string[];
|
|
4335
|
+
}
|
|
4336
|
+
interface CustomerComposition {
|
|
4337
|
+
SP: string;
|
|
4338
|
+
RV: string;
|
|
4339
|
+
}
|
|
4331
4340
|
interface ShipmentBookPickup extends ActiveLessSymfonyModel {
|
|
4332
4341
|
pickupDate: string;
|
|
4333
4342
|
readyByTime: string;
|
|
@@ -4341,10 +4350,6 @@ interface ShipmentBookPickup extends ActiveLessSymfonyModel {
|
|
|
4341
4350
|
type ShipmentOut = {
|
|
4342
4351
|
shipment: ShipmentComposition;
|
|
4343
4352
|
};
|
|
4344
|
-
type ShipmentsOut = {
|
|
4345
|
-
shipments: ShipmentComposition[];
|
|
4346
|
-
total: number;
|
|
4347
|
-
};
|
|
4348
4353
|
type CompositionCountryReferencesOut = {
|
|
4349
4354
|
country_references: CountryReference[];
|
|
4350
4355
|
total: number;
|
|
@@ -4366,13 +4371,6 @@ declare class ApiCompositionService {
|
|
|
4366
4371
|
* @returns {Observable<ShipmentOut>} An observable that emits the details of the shipment.
|
|
4367
4372
|
*/
|
|
4368
4373
|
getShipment(id: number): Observable<ShipmentOut>;
|
|
4369
|
-
/**
|
|
4370
|
-
* Retrieves shipments based on the provided query parameters.
|
|
4371
|
-
*
|
|
4372
|
-
* @param {QueryParams} params - The query parameters for the API request.
|
|
4373
|
-
* @returns {Observable<ShipmentsOut>} An observable that emits the shipments data.
|
|
4374
|
-
*/
|
|
4375
|
-
getShipments(params: QueryParams): Observable<ShipmentsOut>;
|
|
4376
4374
|
/**
|
|
4377
4375
|
* Fetches the country references data based on the provided query parameters.
|
|
4378
4376
|
*
|
|
@@ -5524,6 +5522,7 @@ type DeliveryConfirmationSearchOut = {
|
|
|
5524
5522
|
type SignaturePageConfirmationGenerateOut = {
|
|
5525
5523
|
code: string;
|
|
5526
5524
|
};
|
|
5525
|
+
type CustomerRoleType = 'SP' | 'RV' | 'IM' | 'EX' | string;
|
|
5527
5526
|
type ConfirmTermsIn = {
|
|
5528
5527
|
shipment_id: number;
|
|
5529
5528
|
status: 'Processed' | 'Canceled';
|
|
@@ -8112,65 +8111,6 @@ interface BillingDetailsPayment extends ApiModel {
|
|
|
8112
8111
|
};
|
|
8113
8112
|
};
|
|
8114
8113
|
}
|
|
8115
|
-
interface TaxReportTax {
|
|
8116
|
-
base: number;
|
|
8117
|
-
code: string;
|
|
8118
|
-
percentage: number;
|
|
8119
|
-
total: number;
|
|
8120
|
-
}
|
|
8121
|
-
interface TaxReport extends ActiveLessLaravelModel {
|
|
8122
|
-
company_country_id: number;
|
|
8123
|
-
company_id: number;
|
|
8124
|
-
country_id: number;
|
|
8125
|
-
customer_company_name: string;
|
|
8126
|
-
customer_identification_number: string;
|
|
8127
|
-
document_full_number: string;
|
|
8128
|
-
document_id: number;
|
|
8129
|
-
document_igtf: number;
|
|
8130
|
-
document_igtf_usd: number;
|
|
8131
|
-
document_sap_full_number: string;
|
|
8132
|
-
document_status: number;
|
|
8133
|
-
document_status_name: string;
|
|
8134
|
-
document_status_name_EN: string;
|
|
8135
|
-
document_status_name_ES: string;
|
|
8136
|
-
document_status_name_FR: string;
|
|
8137
|
-
document_status_name_PT: string;
|
|
8138
|
-
document_type_code: string;
|
|
8139
|
-
document_type_name: string;
|
|
8140
|
-
document_type_name_EN: string;
|
|
8141
|
-
document_type_name_ES: string;
|
|
8142
|
-
document_type_name_FR: string;
|
|
8143
|
-
document_type_name_PT: string;
|
|
8144
|
-
exchange: number;
|
|
8145
|
-
installation_id: number;
|
|
8146
|
-
issue_date: string;
|
|
8147
|
-
location_id: number;
|
|
8148
|
-
payments: BillingDetailsPayment[];
|
|
8149
|
-
shipment_discount_amount: number;
|
|
8150
|
-
shipment_discount_amount_usd: number;
|
|
8151
|
-
shipment_freight_amount: number;
|
|
8152
|
-
shipment_freight_amount_usd: number;
|
|
8153
|
-
shipment_fuel_amount: number;
|
|
8154
|
-
shipment_fuel_amount_usd: number;
|
|
8155
|
-
shipment_other_services_amount: number;
|
|
8156
|
-
shipment_other_services_amount_usd: number;
|
|
8157
|
-
shipment_postal_tax: number;
|
|
8158
|
-
shipment_postal_tax_usd: number;
|
|
8159
|
-
shipment_protection_value_amount: number;
|
|
8160
|
-
shipment_protection_value_amount_usd: number;
|
|
8161
|
-
shipment_subtotal: number;
|
|
8162
|
-
shipment_subtotal_exempt: number;
|
|
8163
|
-
shipment_subtotal_exonerated: number;
|
|
8164
|
-
shipment_subtotal_usd: number;
|
|
8165
|
-
shipment_total: number;
|
|
8166
|
-
shipment_total_usd: number;
|
|
8167
|
-
shipment_tracking_number: string;
|
|
8168
|
-
shipment_vat: number;
|
|
8169
|
-
shipment_vat_usd: number;
|
|
8170
|
-
taxes: TaxReportTax[];
|
|
8171
|
-
user_id: number;
|
|
8172
|
-
user_username: string;
|
|
8173
|
-
}
|
|
8174
8114
|
|
|
8175
8115
|
type CollectionPaymentsOut = {
|
|
8176
8116
|
collection_payments: CollectionPayment[];
|
|
@@ -8258,11 +8198,6 @@ interface BillingDetailsReportOut {
|
|
|
8258
8198
|
total: number;
|
|
8259
8199
|
transaction_id?: string;
|
|
8260
8200
|
}
|
|
8261
|
-
type TaxesReportOut = {
|
|
8262
|
-
tax_details: TaxReport[];
|
|
8263
|
-
total: number;
|
|
8264
|
-
transaction_id?: string;
|
|
8265
|
-
};
|
|
8266
8201
|
|
|
8267
8202
|
declare class ApiReportsService {
|
|
8268
8203
|
private environments;
|
|
@@ -8416,13 +8351,6 @@ declare class ApiReportsService {
|
|
|
8416
8351
|
* @returns An observable that emits the billing details.
|
|
8417
8352
|
*/
|
|
8418
8353
|
getBillingDetails(params: QueryParams): Observable<BillingDetailsReportOut>;
|
|
8419
|
-
/**
|
|
8420
|
-
* Retrieves the taxes report based on the provided query parameters.
|
|
8421
|
-
*
|
|
8422
|
-
* @param params - The query parameters used to filter the taxes report.
|
|
8423
|
-
* @returns An observable that emits the taxes report data.
|
|
8424
|
-
*/
|
|
8425
|
-
getTaxesReport(params: QueryParams): Observable<TaxesReportOut>;
|
|
8426
8354
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiReportsService, never>;
|
|
8427
8355
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiReportsService>;
|
|
8428
8356
|
}
|
|
@@ -9715,5 +9643,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
|
|
|
9715
9643
|
[header: string]: string | string[];
|
|
9716
9644
|
};
|
|
9717
9645
|
|
|
9718
|
-
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,
|
|
9719
|
-
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, TaxReport, TaxReportTax, TaxToSignaturePage, TaxesReportOut, 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 };
|
|
9646
|
+
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 };
|
|
9647
|
+
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 };
|