@experteam-mx/ngx-services 20.7.0-dev1.7 → 20.7.0-dev2.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/fesm2022/experteam-mx-ngx-services.mjs +174 -77
- package/fesm2022/experteam-mx-ngx-services.mjs.map +1 -1
- package/index.d.ts +242 -268
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ type Environment = {
|
|
|
33
33
|
apiCompositionUrl?: string;
|
|
34
34
|
apiCustomsUrl?: string;
|
|
35
35
|
apiDiscountsUrl?: string;
|
|
36
|
+
apiDropoffUrl?: string;
|
|
36
37
|
apiEToolsAutoBilling?: string;
|
|
37
38
|
apiEventsUrl?: string;
|
|
38
39
|
apiExternalOperationsUrl?: string;
|
|
@@ -4887,6 +4888,41 @@ declare class ApiDiscountsService {
|
|
|
4887
4888
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiDiscountsService>;
|
|
4888
4889
|
}
|
|
4889
4890
|
|
|
4891
|
+
type ShipmentsBookingIn = {
|
|
4892
|
+
transactionId: string;
|
|
4893
|
+
shipmentTrackingNumbers: string[];
|
|
4894
|
+
};
|
|
4895
|
+
type ShipmentsEReceiptIn = {
|
|
4896
|
+
transactionId: string;
|
|
4897
|
+
shipmentTrackingNumbers: string[];
|
|
4898
|
+
addresses: string[];
|
|
4899
|
+
};
|
|
4900
|
+
|
|
4901
|
+
declare class ApiDropoffsService {
|
|
4902
|
+
private environments;
|
|
4903
|
+
private http;
|
|
4904
|
+
/**
|
|
4905
|
+
* Retrieves the URL for the Inventories API from the environment configurations.
|
|
4906
|
+
*
|
|
4907
|
+
* @return {string} The URL of the Inventories API.
|
|
4908
|
+
*/
|
|
4909
|
+
get url(): string;
|
|
4910
|
+
/**
|
|
4911
|
+
* Send a Courier Request for Shipment.
|
|
4912
|
+
*
|
|
4913
|
+
* @param {ShipmentsBookingIn} body - The courier for shipment data.
|
|
4914
|
+
*/
|
|
4915
|
+
postShipmentsBooking(body: ShipmentsBookingIn): Observable<{}>;
|
|
4916
|
+
/**
|
|
4917
|
+
* Send a EReceipt for Shipment.
|
|
4918
|
+
*
|
|
4919
|
+
* @param {ShipmentsEReceiptIn} body - The EReceipt for Shipment data.
|
|
4920
|
+
*/
|
|
4921
|
+
postShipmentsEReceipt(body: ShipmentsEReceiptIn): Observable<{}>;
|
|
4922
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApiDropoffsService, never>;
|
|
4923
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApiDropoffsService>;
|
|
4924
|
+
}
|
|
4925
|
+
|
|
4890
4926
|
interface ExternalShipmentAddress extends ActiveLessSymfonyModel {
|
|
4891
4927
|
addressLine1: string;
|
|
4892
4928
|
addressLine2: string;
|
|
@@ -5145,151 +5181,6 @@ interface Operation extends LaravelModel {
|
|
|
5145
5181
|
}[];
|
|
5146
5182
|
};
|
|
5147
5183
|
}
|
|
5148
|
-
interface TaxToSignaturePage extends ActiveLessLaravelModel {
|
|
5149
|
-
code: string;
|
|
5150
|
-
percent: number;
|
|
5151
|
-
base_amount: number;
|
|
5152
|
-
amount: number;
|
|
5153
|
-
}
|
|
5154
|
-
interface ExtraChargeTax {
|
|
5155
|
-
code: string;
|
|
5156
|
-
percent: number;
|
|
5157
|
-
base_amount: number;
|
|
5158
|
-
amount: number;
|
|
5159
|
-
}
|
|
5160
|
-
interface ExtraChargeToSignaturePage {
|
|
5161
|
-
global_service_code: string;
|
|
5162
|
-
local_service_code: string;
|
|
5163
|
-
global_service_name: string;
|
|
5164
|
-
local_service_name: string;
|
|
5165
|
-
is_discount: boolean;
|
|
5166
|
-
subtotal: number;
|
|
5167
|
-
tax: number;
|
|
5168
|
-
total: number;
|
|
5169
|
-
taxes: ExtraChargeTax[];
|
|
5170
|
-
}
|
|
5171
|
-
interface AddressToSignaturePage {
|
|
5172
|
-
role_type: CustomerRoleType;
|
|
5173
|
-
identification_type_name: string | null;
|
|
5174
|
-
identification_number: string | null;
|
|
5175
|
-
company_name: string;
|
|
5176
|
-
full_name: string;
|
|
5177
|
-
email: string;
|
|
5178
|
-
phone_code: string;
|
|
5179
|
-
phone_number: string;
|
|
5180
|
-
postal_code: string | null;
|
|
5181
|
-
state_code: string | null;
|
|
5182
|
-
county_name: string | null;
|
|
5183
|
-
city_name: string;
|
|
5184
|
-
address_line_1: string;
|
|
5185
|
-
address_line_2: string | null;
|
|
5186
|
-
address_line_3: string | null;
|
|
5187
|
-
country_name: string;
|
|
5188
|
-
state: string | null;
|
|
5189
|
-
business_party_trader_type_name: string | null;
|
|
5190
|
-
}
|
|
5191
|
-
interface PiecesToSignaturePage {
|
|
5192
|
-
number: number;
|
|
5193
|
-
height: number;
|
|
5194
|
-
length: number;
|
|
5195
|
-
width: number;
|
|
5196
|
-
real_weight: number;
|
|
5197
|
-
volumetric_weight: number;
|
|
5198
|
-
tracking_number: string;
|
|
5199
|
-
shipment_piece_supplies: string[];
|
|
5200
|
-
}
|
|
5201
|
-
interface CommercialInvoiceItemToSignaturePage {
|
|
5202
|
-
description: string;
|
|
5203
|
-
quantity: number;
|
|
5204
|
-
quantity_unit_name: string;
|
|
5205
|
-
subtotal: number;
|
|
5206
|
-
manufacture_country_name: string;
|
|
5207
|
-
real_weight: number;
|
|
5208
|
-
commodity_name: string | null;
|
|
5209
|
-
}
|
|
5210
|
-
interface CommercialInvoiceToSignaturePage {
|
|
5211
|
-
document_type_name: string;
|
|
5212
|
-
trading_transaction_type_name: string | null;
|
|
5213
|
-
number: number | null;
|
|
5214
|
-
remarks: string | null;
|
|
5215
|
-
items: CommercialInvoiceItemToSignaturePage[];
|
|
5216
|
-
}
|
|
5217
|
-
interface BookPickupToSignaturePage {
|
|
5218
|
-
pickup_date: string | null;
|
|
5219
|
-
ready_by_time: string | null;
|
|
5220
|
-
close_time: string | null;
|
|
5221
|
-
confirmation_number: string | null;
|
|
5222
|
-
package_location_name: string | null;
|
|
5223
|
-
remarks: string | null;
|
|
5224
|
-
}
|
|
5225
|
-
interface CustomsAttribute {
|
|
5226
|
-
field: string | null;
|
|
5227
|
-
dhl_code: string | null;
|
|
5228
|
-
input_label: string;
|
|
5229
|
-
values: Record<string, string>;
|
|
5230
|
-
}
|
|
5231
|
-
interface CustomsRule {
|
|
5232
|
-
level: string;
|
|
5233
|
-
attributes: CustomsAttribute[];
|
|
5234
|
-
}
|
|
5235
|
-
interface ShipmentCustoms {
|
|
5236
|
-
rules: CustomsRule[];
|
|
5237
|
-
}
|
|
5238
|
-
interface ShipmentDataToSignaturePage {
|
|
5239
|
-
currency_code: string;
|
|
5240
|
-
tracking_number: string;
|
|
5241
|
-
content_description: string;
|
|
5242
|
-
pieces_number: number;
|
|
5243
|
-
global_product_code: string;
|
|
5244
|
-
global_product_name: string;
|
|
5245
|
-
local_product_code: string;
|
|
5246
|
-
local_product_name: string;
|
|
5247
|
-
delivery_date_time: string;
|
|
5248
|
-
is_document: boolean;
|
|
5249
|
-
is_insured: boolean;
|
|
5250
|
-
declared_value: number | null;
|
|
5251
|
-
insured_value: number | null;
|
|
5252
|
-
declared_currency: string | null;
|
|
5253
|
-
insured_currency: string | null;
|
|
5254
|
-
promotion_code: string | null;
|
|
5255
|
-
export_reason_name: string | null;
|
|
5256
|
-
product_subtotal: number;
|
|
5257
|
-
product_tax: number;
|
|
5258
|
-
product_total: number;
|
|
5259
|
-
subtotal: number;
|
|
5260
|
-
tax: number;
|
|
5261
|
-
total: number;
|
|
5262
|
-
product_taxes: TaxToSignaturePage[];
|
|
5263
|
-
shipment_taxes: TaxToSignaturePage[];
|
|
5264
|
-
extra_charges_mandatory: ExtraChargeToSignaturePage[];
|
|
5265
|
-
extra_charges_optional: ExtraChargeToSignaturePage[];
|
|
5266
|
-
extra_charges_aggregated: ExtraChargeToSignaturePage[];
|
|
5267
|
-
shipment_addresses: AddressToSignaturePage[];
|
|
5268
|
-
shipment_pieces: PiecesToSignaturePage[];
|
|
5269
|
-
commercial_invoice: CommercialInvoiceToSignaturePage | null;
|
|
5270
|
-
shipment_book_pickup: BookPickupToSignaturePage | null;
|
|
5271
|
-
customs: ShipmentCustoms | null;
|
|
5272
|
-
created_at: string;
|
|
5273
|
-
updated_at: string;
|
|
5274
|
-
}
|
|
5275
|
-
interface SignaturePage {
|
|
5276
|
-
terms_and_condition: string;
|
|
5277
|
-
marketing_consent: string | null;
|
|
5278
|
-
marketing_consent_mandatory: boolean;
|
|
5279
|
-
additional_verbiage: string | null;
|
|
5280
|
-
}
|
|
5281
|
-
interface SignaturePageAnswers {
|
|
5282
|
-
terms_and_condition: boolean;
|
|
5283
|
-
marketing_consent: boolean | null;
|
|
5284
|
-
additional_verbiage: boolean | null;
|
|
5285
|
-
}
|
|
5286
|
-
interface SignaturePageConfirmation extends ActiveLessLaravelModel {
|
|
5287
|
-
shipment_id: number;
|
|
5288
|
-
code: string;
|
|
5289
|
-
status: string;
|
|
5290
|
-
shipment_data: ShipmentDataToSignaturePage;
|
|
5291
|
-
signature_page: SignaturePage;
|
|
5292
|
-
}
|
|
5293
5184
|
|
|
5294
5185
|
type DeliveryConfirmationGenerateOut = {
|
|
5295
5186
|
code: string;
|
|
@@ -5325,29 +5216,6 @@ type DeliveryConfirmationIn = {
|
|
|
5325
5216
|
type DeliveryConfirmationSearchOut = {
|
|
5326
5217
|
operation: Operation;
|
|
5327
5218
|
};
|
|
5328
|
-
type SignaturePageConfirmationGenerateOut = {
|
|
5329
|
-
code: string;
|
|
5330
|
-
};
|
|
5331
|
-
type CustomerRoleType = 'SP' | 'RV' | 'IM' | 'EX' | string;
|
|
5332
|
-
type ConfirmTermsIn = {
|
|
5333
|
-
shipment_id: number;
|
|
5334
|
-
status: 'Processed' | 'Canceled';
|
|
5335
|
-
signature_page_answers: SignaturePageAnswers | null;
|
|
5336
|
-
};
|
|
5337
|
-
type SignaturePageConfirmationOut = {
|
|
5338
|
-
operation: SignaturePageConfirmation;
|
|
5339
|
-
};
|
|
5340
|
-
type ShipmentSignaturePageIn = {
|
|
5341
|
-
shipment_id: number;
|
|
5342
|
-
shipment_data: ShipmentDataToSignaturePage;
|
|
5343
|
-
signature_page: SignaturePage;
|
|
5344
|
-
};
|
|
5345
|
-
type ShipmentSignaturePageConfirmationIn = {
|
|
5346
|
-
shipment_id: number;
|
|
5347
|
-
status: string;
|
|
5348
|
-
signature_page_answers: SignaturePageAnswers;
|
|
5349
|
-
otp: string;
|
|
5350
|
-
};
|
|
5351
5219
|
|
|
5352
5220
|
declare class ApiExternalOperationsService {
|
|
5353
5221
|
private http;
|
|
@@ -5364,7 +5232,7 @@ declare class ApiExternalOperationsService {
|
|
|
5364
5232
|
* Retrieves delivery confirmation details based on the provided OTP code.
|
|
5365
5233
|
*
|
|
5366
5234
|
* @param {string} otpCode - The OTP code used to search for delivery confirmation.
|
|
5367
|
-
* @return {Observable<
|
|
5235
|
+
* @return {Observable<DeliveryConfirmationData>} An observable containing the delivery confirmation data.
|
|
5368
5236
|
*/
|
|
5369
5237
|
getDeliveryConfirmation(otpCode: string): Observable<DeliveryConfirmationSearchOut>;
|
|
5370
5238
|
/**
|
|
@@ -5392,29 +5260,6 @@ declare class ApiExternalOperationsService {
|
|
|
5392
5260
|
* @return {Observable<Object>} An observable that emits the server's response when the cancellation is processed.
|
|
5393
5261
|
*/
|
|
5394
5262
|
putDeliveryConfirmation({ otp, ...body }: DeliveryConfirmationIn): Observable<{}>;
|
|
5395
|
-
/**
|
|
5396
|
-
* Retrieves signature page confirmation information associated with an OTP code.
|
|
5397
|
-
*
|
|
5398
|
-
* @param {string} otpCode - OTP code used to search for the signature page confirmation.
|
|
5399
|
-
* @returns {Observable<SignaturePageConfirmationOut>} An observable containing the signature page confirmation details.
|
|
5400
|
-
*/
|
|
5401
|
-
getSignaturePageConfirmationSearch(otpCode: string): Observable<SignaturePageConfirmationOut>;
|
|
5402
|
-
/**
|
|
5403
|
-
* Generates a signature page confirmation request for a shipment.
|
|
5404
|
-
*
|
|
5405
|
-
* @param {ShipmentSignaturePageIn} payload - Shipment data required to generate the signature page confirmation.
|
|
5406
|
-
* @returns {Observable<SignaturePageConfirmationGenerateOut>} An observable containing the generated confirmation information.
|
|
5407
|
-
*/
|
|
5408
|
-
postSignaturePageConfirmationGenerate(payload: ShipmentSignaturePageIn): Observable<SignaturePageConfirmationGenerateOut>;
|
|
5409
|
-
/**
|
|
5410
|
-
* Confirms a shipment signature page using an OTP code.
|
|
5411
|
-
*
|
|
5412
|
-
* @param {ShipmentSignaturePageConfirmationIn} input - Signature page confirmation data.
|
|
5413
|
-
* @param {string} input.otp - OTP code used to validate the confirmation.
|
|
5414
|
-
* @param {...Object} input.body - Additional confirmation information sent in the request body.
|
|
5415
|
-
* @returns {Observable<{}>} An observable that emits the API response data.
|
|
5416
|
-
*/
|
|
5417
|
-
putSignaturePageConfirmation({ otp, ...body }: ShipmentSignaturePageConfirmationIn): Observable<{}>;
|
|
5418
5263
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiExternalOperationsService, never>;
|
|
5419
5264
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiExternalOperationsService>;
|
|
5420
5265
|
}
|
|
@@ -5445,6 +5290,31 @@ declare enum Group {
|
|
|
5445
5290
|
expiration = "expiration",
|
|
5446
5291
|
verification = "verification"
|
|
5447
5292
|
}
|
|
5293
|
+
declare enum InventoryActions {
|
|
5294
|
+
INVENTORY_CHECK_OUT = "inventoryCheckOut",
|
|
5295
|
+
INVENTORY_COURIER_PICK_UP = "inventoryCourierPickUp",
|
|
5296
|
+
INVENTORY_LOCATION_BACKROOM = "inventoryLocationBackroom",
|
|
5297
|
+
INVENTORY_MISSING_PIECES = "inventoryMissingPieces",
|
|
5298
|
+
INVENTORY_RE_ENTRY_MISSING_PIECES = "inventoryReEntryMissingPieces",
|
|
5299
|
+
INVENTORY_ODD_NOTIFICATION = "inventoryOddNotifications"
|
|
5300
|
+
}
|
|
5301
|
+
declare enum InventoryErrorCodes {
|
|
5302
|
+
CODE_SHP_FORMAT = "INV-E001",
|
|
5303
|
+
CODE_PCKG_FORMAT = "INV-E002",
|
|
5304
|
+
CODE_PACKAGE_NOT_FOUND = "INV-E101",
|
|
5305
|
+
CODE_EXISTS_INVENTORY_DIFFERENT_LOCATION = "INV-E007",
|
|
5306
|
+
CODE_PACKAGE_NOT_IN_STOCK = "INV-E105",
|
|
5307
|
+
CODE_PACKAGE_NOT_MISSING = "INV-E107",
|
|
5308
|
+
CODE_ACTION_NOT_VALID = "INV-E108",
|
|
5309
|
+
CODE_MULTIPLE_PACKAGES = "INV-E109",
|
|
5310
|
+
CODE_PACKAGE_NOT_CHECK_IN = "INV-E110",
|
|
5311
|
+
CODE_PACKAGE_NOT_DROP_OFF = "INV-E111"
|
|
5312
|
+
}
|
|
5313
|
+
declare enum RouteModelType {
|
|
5314
|
+
ROUTE_ID = "RouteId",
|
|
5315
|
+
COURIER = "Courier",
|
|
5316
|
+
COURIER_ROUTE = "CourierRoute"
|
|
5317
|
+
}
|
|
5448
5318
|
|
|
5449
5319
|
interface Checkpoint extends ActiveLessSymfonyModel {
|
|
5450
5320
|
code: string;
|
|
@@ -5545,6 +5415,29 @@ interface OperationTypeInventory extends SymfonyModel {
|
|
|
5545
5415
|
name: TranslateLang;
|
|
5546
5416
|
};
|
|
5547
5417
|
}
|
|
5418
|
+
interface CourierRoute extends SymfonyModel {
|
|
5419
|
+
number: string;
|
|
5420
|
+
name: string;
|
|
5421
|
+
locationId: number;
|
|
5422
|
+
}
|
|
5423
|
+
interface Package5 {
|
|
5424
|
+
id: number;
|
|
5425
|
+
shipmentTrackingNumber: string;
|
|
5426
|
+
trackingNumber: string;
|
|
5427
|
+
position: string | null;
|
|
5428
|
+
messageFail: string;
|
|
5429
|
+
lastStatus: Status5;
|
|
5430
|
+
}
|
|
5431
|
+
interface Status5 {
|
|
5432
|
+
code: string;
|
|
5433
|
+
name: string;
|
|
5434
|
+
description: string | null;
|
|
5435
|
+
}
|
|
5436
|
+
interface Package9 {
|
|
5437
|
+
id: number;
|
|
5438
|
+
shipmentTrackingNumber: string;
|
|
5439
|
+
trackingNumber: string;
|
|
5440
|
+
}
|
|
5548
5441
|
|
|
5549
5442
|
type CheckpointsOut = {
|
|
5550
5443
|
total: number;
|
|
@@ -5613,6 +5506,7 @@ type ReEntryOfMissingPackagesOut = {
|
|
|
5613
5506
|
reEntryOfMissingPackages: ReEntryOfMissingPackages;
|
|
5614
5507
|
};
|
|
5615
5508
|
type ReEntryOfMissingPackagesIn = {
|
|
5509
|
+
transactionId: string;
|
|
5616
5510
|
packagesIds: number[];
|
|
5617
5511
|
};
|
|
5618
5512
|
type CourierCheckOutPackesOut = {
|
|
@@ -5642,6 +5536,71 @@ type StockUpdatePackagesOut = {
|
|
|
5642
5536
|
totalFirstMilePackages: number;
|
|
5643
5537
|
totalStockUpdatePackages: number;
|
|
5644
5538
|
};
|
|
5539
|
+
type CourierRoutesOut = {
|
|
5540
|
+
courierRoutes: CourierRoute[];
|
|
5541
|
+
total: number;
|
|
5542
|
+
};
|
|
5543
|
+
type CourierRouteOut = {
|
|
5544
|
+
courierRoute: CourierRoute;
|
|
5545
|
+
};
|
|
5546
|
+
type CourierRouteIn = {
|
|
5547
|
+
number: string;
|
|
5548
|
+
name: string;
|
|
5549
|
+
locationId: number;
|
|
5550
|
+
isActive: boolean;
|
|
5551
|
+
};
|
|
5552
|
+
type PackageValidationActionIn = {
|
|
5553
|
+
shipmentTrackingNumber?: string;
|
|
5554
|
+
trackingNumber?: string;
|
|
5555
|
+
action: InventoryActions;
|
|
5556
|
+
transactionId?: string;
|
|
5557
|
+
};
|
|
5558
|
+
type PackageValidationActionOut = {
|
|
5559
|
+
packageValidation: {
|
|
5560
|
+
transactionId: string;
|
|
5561
|
+
package: {
|
|
5562
|
+
id: number;
|
|
5563
|
+
shipmentTrackingNumber: string;
|
|
5564
|
+
trackingNumber: string;
|
|
5565
|
+
};
|
|
5566
|
+
};
|
|
5567
|
+
};
|
|
5568
|
+
type ReturnFirstMileIn = {
|
|
5569
|
+
packagesIds: number[];
|
|
5570
|
+
transactionId: string;
|
|
5571
|
+
routeModelId: string | number;
|
|
5572
|
+
routeModelType: RouteModelType;
|
|
5573
|
+
};
|
|
5574
|
+
type ReturnFirstMileOut = {
|
|
5575
|
+
returnFirstMile: {
|
|
5576
|
+
status: boolean;
|
|
5577
|
+
messages: string[];
|
|
5578
|
+
number: string;
|
|
5579
|
+
};
|
|
5580
|
+
};
|
|
5581
|
+
type PackageReassignPositionIn = {
|
|
5582
|
+
packagesIds: number[];
|
|
5583
|
+
transactionId: string;
|
|
5584
|
+
position: string;
|
|
5585
|
+
};
|
|
5586
|
+
type PackageReassignPositionOut = {
|
|
5587
|
+
packageReassignPositions: {
|
|
5588
|
+
number: number;
|
|
5589
|
+
packages: Package5[];
|
|
5590
|
+
};
|
|
5591
|
+
};
|
|
5592
|
+
type MissingPackagesIn = {
|
|
5593
|
+
packagesIds: number[];
|
|
5594
|
+
transactionId: string;
|
|
5595
|
+
};
|
|
5596
|
+
type MissingPackagesOut = {
|
|
5597
|
+
missingPackages: {
|
|
5598
|
+
number: string;
|
|
5599
|
+
operationPackages: {
|
|
5600
|
+
packages: Package9[];
|
|
5601
|
+
};
|
|
5602
|
+
};
|
|
5603
|
+
};
|
|
5645
5604
|
|
|
5646
5605
|
declare class ApiInventoriesService {
|
|
5647
5606
|
private environments;
|
|
@@ -5827,6 +5786,70 @@ declare class ApiInventoriesService {
|
|
|
5827
5786
|
* @return {Observable<StockUpdatePackagesOut>} An observable that emits the packages data.
|
|
5828
5787
|
*/
|
|
5829
5788
|
getStockUpdatePackages(id: Number): Observable<StockUpdatePackagesOut>;
|
|
5789
|
+
/**
|
|
5790
|
+
* Retrieves a list of courier routes based on query parameters.
|
|
5791
|
+
*
|
|
5792
|
+
* @param {QueryParams} params - Query parameters for filtering the courier routes.
|
|
5793
|
+
* @returns {Observable<CourierRoutesOut>} An observable that emits the list of courier routes.
|
|
5794
|
+
*/
|
|
5795
|
+
getCourierRoutes(params: QueryParams): Observable<CourierRoutesOut>;
|
|
5796
|
+
/**
|
|
5797
|
+
* Fetches the courier route details based on the provided courier route ID.
|
|
5798
|
+
*
|
|
5799
|
+
* @param {number} id - The courier route id
|
|
5800
|
+
* @return {Observable<CourierRouteOut>} An observable that emits the courier route data.
|
|
5801
|
+
*/
|
|
5802
|
+
getCourierRoute(id: Number): Observable<CourierRouteOut>;
|
|
5803
|
+
/**
|
|
5804
|
+
* Creates a new courier route.
|
|
5805
|
+
*
|
|
5806
|
+
* @param {CourierRouteIn} body - The data for the new courier route.
|
|
5807
|
+
* @returns {Observable<CourierRouteOut>} An observable the created courier route detail.
|
|
5808
|
+
*/
|
|
5809
|
+
postCourierRoute(body: CourierRouteIn): Observable<CourierRouteOut>;
|
|
5810
|
+
/**
|
|
5811
|
+
* Update an existing courier route.
|
|
5812
|
+
*
|
|
5813
|
+
* @param {number} id - The identifier of the courier route record to update.
|
|
5814
|
+
* @param {CourierRouteIn} body - The courier route data to be updated.
|
|
5815
|
+
* @returns {Observable<CourierRouteOut>} An observable detail of the updated courier route.
|
|
5816
|
+
*/
|
|
5817
|
+
putCourierRoute(id: Number, body: CourierRouteIn): Observable<CourierRouteOut>;
|
|
5818
|
+
/**
|
|
5819
|
+
* Delete an existing courier route.
|
|
5820
|
+
*
|
|
5821
|
+
* @param {number} id - The unique identifier of the courier route to be deleted.
|
|
5822
|
+
* @returns {Observable<CourierRouteOut>} An observable that emits the result of the delete courier route.
|
|
5823
|
+
*/
|
|
5824
|
+
deleteCourierRoute(id: Number): Observable<CourierRouteOut>;
|
|
5825
|
+
/**
|
|
5826
|
+
* Get a package/shipment enabled to perform an action.
|
|
5827
|
+
*
|
|
5828
|
+
* @param {PackageValidationActionIn} body - package/shipment number to validate.
|
|
5829
|
+
* @returns {Observable<PackageValidationActionOut>} An observable with the package/shipment validated.
|
|
5830
|
+
*/
|
|
5831
|
+
postPackageValidationActions(body: PackageValidationActionIn): Observable<PackageValidationActionOut>;
|
|
5832
|
+
/**
|
|
5833
|
+
* Edit return first mile resource.
|
|
5834
|
+
*
|
|
5835
|
+
* @param {ReturnFirstMileIn} body - The first mile data to be updated.
|
|
5836
|
+
* @returns {Observable<ReturnFirstMileOut>} An observable with the first mile updated.
|
|
5837
|
+
*/
|
|
5838
|
+
putReturnFirstMile(body: ReturnFirstMileIn): Observable<ReturnFirstMileOut>;
|
|
5839
|
+
/**
|
|
5840
|
+
* Replaces a Package Reassign Position resource.
|
|
5841
|
+
*
|
|
5842
|
+
* @param {PackageReassignPositionIn} body - The Package Reassign Position resource data to be updated.
|
|
5843
|
+
* @returns {Observable<PackageReassignPositionOut>} An observable with the Package Reassign Position resource updated.
|
|
5844
|
+
*/
|
|
5845
|
+
putPackageReassignPositions(body: PackageReassignPositionIn): Observable<PackageReassignPositionOut>;
|
|
5846
|
+
/**
|
|
5847
|
+
* Edit missing package resource.
|
|
5848
|
+
*
|
|
5849
|
+
* @param {MissingPackagesIn} body - The missing package resource data to be updated.
|
|
5850
|
+
* @returns {Observable<MissingPackagesOut>} An observable with the missing package resource updated.
|
|
5851
|
+
*/
|
|
5852
|
+
putMissingPackages(body: MissingPackagesIn): Observable<MissingPackagesOut>;
|
|
5830
5853
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiInventoriesService, never>;
|
|
5831
5854
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiInventoriesService>;
|
|
5832
5855
|
}
|
|
@@ -7188,7 +7211,6 @@ interface ShipmentReports {
|
|
|
7188
7211
|
interface ShipmentLandingReport extends ActiveLessLaravelModel {
|
|
7189
7212
|
authorization_numbers: string[] | null;
|
|
7190
7213
|
commercial_invoice: boolean | null;
|
|
7191
|
-
has_documents: boolean | null;
|
|
7192
7214
|
company_country_id: number;
|
|
7193
7215
|
company_id: number;
|
|
7194
7216
|
company_name: string;
|
|
@@ -7263,7 +7285,6 @@ interface ShipmentLandingReport extends ActiveLessLaravelModel {
|
|
|
7263
7285
|
include_indemnity_letter: boolean;
|
|
7264
7286
|
shipment_content_type_id: number;
|
|
7265
7287
|
shipment_scope_id: number;
|
|
7266
|
-
include_release_of_liability?: boolean;
|
|
7267
7288
|
} | null;
|
|
7268
7289
|
manifest_date_time?: string | null;
|
|
7269
7290
|
date_time?: string;
|
|
@@ -8383,27 +8404,12 @@ interface EmbassyShipment extends SymfonyModel {
|
|
|
8383
8404
|
createdAt: string;
|
|
8384
8405
|
updatedAt: string;
|
|
8385
8406
|
}
|
|
8386
|
-
interface
|
|
8387
|
-
|
|
8388
|
-
country: CountryToDocumentConfig;
|
|
8389
|
-
title: string | null;
|
|
8390
|
-
content: string | null;
|
|
8391
|
-
signaturePageSetting: SignaturePageSetting | null;
|
|
8392
|
-
}
|
|
8393
|
-
interface SignaturePageSetting extends ApiModel {
|
|
8407
|
+
interface SignaturePageSetting extends SymfonyModel {
|
|
8408
|
+
country: Country;
|
|
8394
8409
|
isDefault: boolean;
|
|
8395
8410
|
termsAndCondition: string | null;
|
|
8396
8411
|
marketingConsent: string | null;
|
|
8397
8412
|
additionalVerbiage: string | null;
|
|
8398
|
-
marketingConsentMandatory: boolean;
|
|
8399
|
-
}
|
|
8400
|
-
interface CountryToDocumentConfig extends ActiveLessSymfonyModel {
|
|
8401
|
-
code: string;
|
|
8402
|
-
name: string;
|
|
8403
|
-
}
|
|
8404
|
-
interface ShipmentDocument {
|
|
8405
|
-
title: string;
|
|
8406
|
-
content: string;
|
|
8407
8413
|
}
|
|
8408
8414
|
|
|
8409
8415
|
type ValidateAccountIn = {
|
|
@@ -8500,12 +8506,12 @@ type EmbassyShipmentsOut = {
|
|
|
8500
8506
|
total: number;
|
|
8501
8507
|
embassyShipments: EmbassyShipment[];
|
|
8502
8508
|
};
|
|
8503
|
-
type
|
|
8509
|
+
type SignaturePageSettingsOut = {
|
|
8504
8510
|
total: number;
|
|
8505
|
-
|
|
8511
|
+
signaturePageSettings: SignaturePageSetting[];
|
|
8506
8512
|
};
|
|
8507
|
-
type
|
|
8508
|
-
|
|
8513
|
+
type SignaturePageSettingOut = {
|
|
8514
|
+
signaturePageSetting: SignaturePageSetting;
|
|
8509
8515
|
};
|
|
8510
8516
|
type EmbassyShipmentIn = {
|
|
8511
8517
|
countryId: number;
|
|
@@ -8528,26 +8534,13 @@ type EmbassyShipmentIn = {
|
|
|
8528
8534
|
businessPartyTraderTypeId: number | null;
|
|
8529
8535
|
isActive: boolean;
|
|
8530
8536
|
};
|
|
8531
|
-
type DocumentConfigurationIn = {
|
|
8532
|
-
countryId: number;
|
|
8533
|
-
documentType: string;
|
|
8534
|
-
title?: string | null;
|
|
8535
|
-
content?: string | null;
|
|
8536
|
-
isActive: boolean;
|
|
8537
|
-
signaturePageSetting?: SignaturePageSettingIn | null;
|
|
8538
|
-
};
|
|
8539
8537
|
type SignaturePageSettingIn = {
|
|
8538
|
+
countryId: number;
|
|
8540
8539
|
isDefault: boolean;
|
|
8541
8540
|
termsAndCondition: string | null;
|
|
8542
8541
|
marketingConsent: string | null;
|
|
8543
8542
|
additionalVerbiage: string | null;
|
|
8544
|
-
|
|
8545
|
-
};
|
|
8546
|
-
type DocumentConfigurationsPreviewIn = {
|
|
8547
|
-
html: string;
|
|
8548
|
-
};
|
|
8549
|
-
type DocumentConfigurationsPreviewOut = {
|
|
8550
|
-
preview: string;
|
|
8543
|
+
isActive: boolean;
|
|
8551
8544
|
};
|
|
8552
8545
|
interface EmbassyShipmentOut {
|
|
8553
8546
|
embassyShipment: EmbassyShipment;
|
|
@@ -8555,9 +8548,6 @@ interface EmbassyShipmentOut {
|
|
|
8555
8548
|
type ShipmentSignaturePageOut = {
|
|
8556
8549
|
shipmentSignaturePage: string;
|
|
8557
8550
|
};
|
|
8558
|
-
type ShipmentDocumentsOut = {
|
|
8559
|
-
shipmentDocuments: ShipmentDocument[];
|
|
8560
|
-
};
|
|
8561
8551
|
|
|
8562
8552
|
declare class ApiShipmentsService {
|
|
8563
8553
|
private environments;
|
|
@@ -8634,47 +8624,31 @@ declare class ApiShipmentsService {
|
|
|
8634
8624
|
*/
|
|
8635
8625
|
putEmbassyShipments(id: number, body: EmbassyShipmentIn): Observable<EmbassyShipmentOut>;
|
|
8636
8626
|
/**
|
|
8637
|
-
* Retrieves a paginated list of
|
|
8638
|
-
*
|
|
8639
|
-
* @
|
|
8640
|
-
* @returns {Observable<DocumentConfigurationsOut>} An observable containing the list of document configurations and pagination metadata.
|
|
8641
|
-
*/
|
|
8642
|
-
getDocumentConfigurations(params: QueryParams): Observable<DocumentConfigurationsOut>;
|
|
8643
|
-
/**
|
|
8644
|
-
* Retrieves a document configuration by its identifier.
|
|
8645
|
-
*
|
|
8646
|
-
* @param {number} id - The unique identifier of the document configuration.
|
|
8647
|
-
* @returns {Observable<DocumentConfigurationOut>} An observable containing the document configuration details.
|
|
8627
|
+
* Retrieves a paginated list of signature page settings
|
|
8628
|
+
* @param {QueryParams} params - Query parameters for filtering and pagination
|
|
8629
|
+
* @returns {Observable<SignaturePageSettingsOut>} Observable containing the list of signature page settings and pagination metadata
|
|
8648
8630
|
*/
|
|
8649
|
-
|
|
8631
|
+
getSignaturePageSettings(params: QueryParams): Observable<SignaturePageSettingsOut>;
|
|
8650
8632
|
/**
|
|
8651
|
-
*
|
|
8633
|
+
* Retrieves the details of a signature page setting based on its ID.
|
|
8652
8634
|
*
|
|
8653
|
-
* @param {
|
|
8654
|
-
* @
|
|
8635
|
+
* @param {number} id - The identifier of the signature page setting to fetch.
|
|
8636
|
+
* @return {Observable<SignaturePageSettingOut>} An observable that emits the signature page setting data.
|
|
8655
8637
|
*/
|
|
8656
|
-
|
|
8638
|
+
getSignaturePageSetting(id: number): Observable<SignaturePageSettingOut>;
|
|
8657
8639
|
/**
|
|
8658
|
-
*
|
|
8659
|
-
*
|
|
8660
|
-
* @
|
|
8661
|
-
* @param {DocumentConfigurationIn} body - The updated document configuration data.
|
|
8662
|
-
* @returns {Observable<DocumentConfigurationOut>} An observable containing the updated document configuration.
|
|
8640
|
+
* Creates a new signature page setting
|
|
8641
|
+
* @param {SignaturePageSettingIn} body - The signature page setting data to create
|
|
8642
|
+
* @returns {Observable<SignaturePageSettingOut>} Observable containing the created signature page setting with its assigned ID
|
|
8663
8643
|
*/
|
|
8664
|
-
|
|
8644
|
+
postSignaturePageSetting(body: SignaturePageSettingIn): Observable<SignaturePageSettingOut>;
|
|
8665
8645
|
/**
|
|
8666
|
-
*
|
|
8667
|
-
*
|
|
8668
|
-
* @param {
|
|
8669
|
-
* @returns {Observable<
|
|
8646
|
+
* Updates an existing signature page setting
|
|
8647
|
+
* @param {number} id - The unique identifier of the signature page setting to update
|
|
8648
|
+
* @param {SignaturePageSettingIn} body - The updated signature page setting data
|
|
8649
|
+
* @returns {Observable<SignaturePageSettingOut>} Observable containing the updated signature page setting
|
|
8670
8650
|
*/
|
|
8671
|
-
|
|
8672
|
-
/**
|
|
8673
|
-
* Retrieves the shipment documents associated with a document configuration
|
|
8674
|
-
* @param {number} id - The unique identifier of the document configuration
|
|
8675
|
-
* @returns {Observable<ShipmentDocumentsOut>} observable containing the shipment documents
|
|
8676
|
-
* */
|
|
8677
|
-
getDocuments(id: number): Observable<ShipmentDocumentsOut>;
|
|
8651
|
+
putSignaturePageSetting(id: number, body: SignaturePageSettingIn): Observable<SignaturePageSettingOut>;
|
|
8678
8652
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiShipmentsService, never>;
|
|
8679
8653
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiShipmentsService>;
|
|
8680
8654
|
}
|
|
@@ -9245,5 +9219,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
|
|
|
9245
9219
|
[header: string]: string | string[];
|
|
9246
9220
|
};
|
|
9247
9221
|
|
|
9248
|
-
export { AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, DefaultValueType, DepositTypeCode, DocumentStatusCode, ENVIRONMENT_TOKEN, Event, Group, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, PrintMode, PrintableFormat, PrintersService, PrintersType, ShipmentIncomeTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
9249
|
-
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, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointsOut, City, Closing, ClosingIn, ClosingOut, ClosingPayment, CoCustomer, CoCustomerIn, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoGetCustomerOut, CoMunicipalitiesOut, CoMunicipality, CoPostCustomerOut, CoPostalCode, CoPostalCodesOut, CoTribute, CoTributesOut, CollectionPayment, CollectionPaymentsOut, CommercialInvoice, CommercialInvoiceItemToSignaturePage, CommercialInvoiceToSignaturePage, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, ConfirmTermsIn, CountriesOut, Country, CountryAccount, CountryCurrencyRate, CountryDocumentType, CountryDocumentTypesOut, CountryExchange, CountryGroups, CountryGroupsOut, CountryIn, CountryOut, CountryPaymentType, CountryPaymentTypeField, CountryPaymentTypeFieldIn, CountryPaymentTypeFieldOut, CountryPaymentTypeFieldsOut, CountryPaymentTypeIn, CountryPaymentTypeOut, CountryPaymentTypesOut, CountryReference, CountryReferenceCurrenciesOut, CountryReferenceCurrency, CountryReferenceCurrencyIn, CountryReferenceCurrencyOut, CountryReferenceExtraCharge, CountryReferenceExtraChargeIn, CountryReferenceExtraChargeOut, CountryReferenceIn, CountryReferenceOut, CountryReferenceProduct, CountryReferenceProductIn, CountryReferenceProductOut, CountryReferenceProductsOut, CountryReferencesOut, CountryToDocumentConfig, CountryToExportReason, CourierCheckOutPackesOut, 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, 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, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportReason, ExportReasonIn, ExportReasonOut, ExportReasonTypes, ExportReasonTypesOut, ExportReasonsOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressCancellation, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentCancellationIn, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExternalShipmentsOut, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, ExtraChargeTax, ExtraChargeToSignaturePage, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, HistoriesReportOut, HistoryReport, HistoryReportCheckpoint, Holiday, HolidayIn, HolidayOut, HolidaysOut, IdentificationType, IdentificationTypeComposition, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeNumberValidationIn, IdentificationTypeNumberValidationOut, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, InventoriesReportOut, InventoryReport, InvoiceCancellationIn, InvoiceReport, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, LanguageOut, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, LocationEmployeesIn, LocationEmployeesOut, LocationIn, LocationOut, LocationType, LocationTypeFields, LocationsOut, LoyaltyPeriod, LoyaltyPeriodIn, LoyaltyPeriodOut, LoyaltyPeriodsOut, LoyaltyRule, LoyaltyRuleIn, LoyaltyRuleOut, LoyaltyRulesOut, ManagementArea, ManagementAreasOut, ManifestMultipleIn, ManifestMultipleOut, ManufactureCountry, Module, ModuleType, ModulesOut, MunicipalitiesOut, Municipality, Notification, NotificationConfiguration, NotificationConfigurationIn, NotificationConfigurationOut, NotificationIn, NotificationOut, NotificationStatus, NotificationType, NotificationsOut, NotificationsTypeOut, OpenItem, OpenItemIn, OpenItems, OpenItemsOut, Opening, OpeningCountryReferenceCurrency, OpeningHistory, OpeningIn, OpeningOut, OpeningPreClosingRequestIn, OpeningStatus, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, OpeningsOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentCustomerIn, OperationDocumentCustomerOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintTicketOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsOut, PackageMissing, PackageReport, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueIn, ParameterValueOut, ParametersByLevelIn, ParametersOut, ParametersValuesIn, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, 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, 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, ShipmentsLandingReportOut, ShipmentsReportOut, SignaturePage, SignaturePageAnswers, SignaturePageConfirmation, SignaturePageConfirmationGenerateOut, SignaturePageConfirmationOut, SignaturePageSetting, SignaturePageSettingIn, State, Status, StatusesOut, StockUpdatePackagesOut, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, Survey, SurveyIn, SurveyOut, SurveyQuestion, SurveyQuestionIn, SurveyQuestionOut, SurveyQuestionsOut, SurveysOut, SymfonyModel, System, SystemEntitiesIn, SystemEntitiesOut, SystemIn, SystemOut, SystemsOut, TDXAccountSetting, TDXAccountSettingsIn, TDXAccountSettingsOut, TDXAccountsSettingsOut, Tax, TaxToSignaturePage, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TradingTransactionTypesOut, TransferenceType, TranslateLang, Translations, UniqueFolio, UniqueFolioIn, UniqueFolioOut, UniqueFoliosOut, Unit, UnitsOut, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, Values, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZoneOut, ZonesOut };
|
|
9222
|
+
export { AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, 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 };
|
|
9223
|
+
export type { Account, AccountCategoriesOut, AccountCategory, AccountCompanyCountry, AccountCompanyCountryLocation, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountLocation, AccountLocationId, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, AccountWithDefault, AccountWithLocations, AccountsActivesOut, AccountsOut, ActiveLessLaravelModel, ActiveLessSymfonyModel, AdditionalData, AddressPlaceDetail, AddressPlaceDetailIn, AddressPlaceDetailsOut, AddressSuggestion, AddressSuggestionIn, AddressSuggestionsOut, ApiBillingConfigurable, ApiModel, ApiResponse, ApiSuccess, Attribute, AttributeIn, AttributeWithId, Attributes, AuthLoginIn, AuthLoginOut, AuthMeOut, AuthUserLoginIn, AvailablePrintersOut, Bank, BankAccount, BankAccountType, BankAccountsOut, BillingConfig, BillingConfigIn, BillingConfigOut, BillingConfigsOut, BillingDetailsPayment, BillingDetailsReport, BillingDetailsReportOut, BillingPaCustomer, BillingPaCustomerOut, BoardingProcess, BoardingProcessHistory, BoardingProcessIdIn, BoardingProcessIn, BoardingProcessStatus, BusinessPartyTraderType, BusinessPartyTraderTypesOut, CFDI, CancelPaymentReceiptIn, CancellationReason, CancellationReasonIn, CancellationReasonOut, CancellationReasonsOut, CashValueSummary, CashValueSummaryOut, Catalog, CatalogLess, CatalogsOut, ChangeLanguageIn, Checkpoint, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointsOut, City, Closing, ClosingIn, ClosingOut, ClosingPayment, CoCustomer, CoCustomerIn, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoGetCustomerOut, CoMunicipalitiesOut, CoMunicipality, CoPostCustomerOut, CoPostalCode, CoPostalCodesOut, CoTribute, CoTributesOut, CollectionPayment, CollectionPaymentsOut, CommercialInvoice, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, CountriesOut, Country, CountryAccount, CountryCurrencyRate, CountryDocumentType, CountryDocumentTypesOut, CountryExchange, CountryGroups, CountryGroupsOut, CountryIn, CountryOut, CountryPaymentType, CountryPaymentTypeField, CountryPaymentTypeFieldIn, CountryPaymentTypeFieldOut, CountryPaymentTypeFieldsOut, CountryPaymentTypeIn, CountryPaymentTypeOut, CountryPaymentTypesOut, CountryReference, CountryReferenceCurrenciesOut, CountryReferenceCurrency, CountryReferenceCurrencyIn, CountryReferenceCurrencyOut, CountryReferenceExtraCharge, CountryReferenceExtraChargeIn, CountryReferenceExtraChargeOut, CountryReferenceIn, CountryReferenceOut, CountryReferenceProduct, CountryReferenceProductIn, CountryReferenceProductOut, CountryReferenceProductsOut, CountryReferencesOut, CountryToExportReason, CourierCheckOutPackesOut, CourierRoute, CourierRouteIn, CourierRouteOut, CourierRoutesOut, Criteria, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerSurvey, CustomerSurveyFinishIn, CustomerSurveyIn, CustomerSurveyOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, Deposit, DepositIn, DepositOut, DepositSlipOut, DestinationCountry, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentFunction, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeRangeIn, DocumentTypeRangeOut, DocumentTypeRangesOut, DocumentTypeReports, DocumentTypesOut, DocumentsTypesRangesCurrentStatusOut, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, EmbassyShipment, EmbassyShipmentIn, EmbassyShipmentOut, EmbassyShipmentsOut, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportReason, ExportReasonIn, ExportReasonOut, ExportReasonTypes, ExportReasonTypesOut, ExportReasonsOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressCancellation, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentCancellationIn, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExternalShipmentsOut, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, HistoriesReportOut, HistoryReport, HistoryReportCheckpoint, Holiday, HolidayIn, HolidayOut, HolidaysOut, IdentificationType, IdentificationTypeComposition, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeNumberValidationIn, IdentificationTypeNumberValidationOut, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, InventoriesReportOut, InventoryReport, InvoiceCancellationIn, InvoiceReport, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, LanguageOut, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, LocationEmployeesIn, LocationEmployeesOut, LocationIn, LocationOut, LocationType, LocationTypeFields, LocationsOut, LoyaltyPeriod, LoyaltyPeriodIn, LoyaltyPeriodOut, LoyaltyPeriodsOut, LoyaltyRule, LoyaltyRuleIn, LoyaltyRuleOut, LoyaltyRulesOut, ManagementArea, ManagementAreasOut, ManifestMultipleIn, ManifestMultipleOut, ManufactureCountry, 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, PackageReassignPositionIn, PackageReassignPositionOut, PackageReport, PackageValidationActionIn, PackageValidationActionOut, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueIn, ParameterValueOut, ParametersByLevelIn, ParametersOut, ParametersValuesIn, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, Pivot, PostalCode, PostalCodeBillings, PostalCodeFormat, PostalCodesOut, PostalLocation, PostalLocationsOut, PriceOverrideApprover, PriceOverrideApproversOut, PriceOverrideReason, PriceOverrideReasonsOut, PrintCollectionReceiptOut, Printable, Printer, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QuantityUnitsOut, QueryParams, Question, QuestionIn, QuestionOption, QuestionOut, QuestionResponse, QuestionType, QuestionTypesOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, ReEntryOfMissingPackage, ReEntryOfMissingPackageOut, ReEntryOfMissingPackages, ReEntryOfMissingPackagesIn, ReEntryOfMissingPackagesOut, ReceiptFile, ReceiptFileOut, Region, RegionsOut, ReportExternalShipment, ReportExternalShipmentAddress, 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, ShipmentDescription, ShipmentDescriptionsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsBookingIn, ShipmentsEReceiptIn, ShipmentsLandingReportOut, ShipmentsReportOut, SignaturePageSetting, SignaturePageSettingIn, SignaturePageSettingOut, SignaturePageSettingsOut, 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, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TradingTransactionTypesOut, TransferenceType, TranslateLang, Translations, UniqueFolio, UniqueFolioIn, UniqueFolioOut, UniqueFoliosOut, Unit, UnitsOut, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, Values, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZoneOut, ZonesOut };
|