@experteam-mx/ngx-services 20.7.3 → 20.8.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/index.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ type Environment = {
|
|
|
34
34
|
apiCompositionUrl?: string;
|
|
35
35
|
apiCustomsUrl?: string;
|
|
36
36
|
apiDiscountsUrl?: string;
|
|
37
|
+
apiDropoffUrl?: string;
|
|
37
38
|
apiEToolsAutoBilling?: string;
|
|
38
39
|
apiEventsUrl?: string;
|
|
39
40
|
apiExternalOperationsUrl?: string;
|
|
@@ -4937,6 +4938,41 @@ declare class ApiDiscountsService {
|
|
|
4937
4938
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiDiscountsService>;
|
|
4938
4939
|
}
|
|
4939
4940
|
|
|
4941
|
+
type ShipmentsBookingIn = {
|
|
4942
|
+
transactionId: string;
|
|
4943
|
+
shipmentTrackingNumbers: string[];
|
|
4944
|
+
};
|
|
4945
|
+
type ShipmentsEReceiptIn = {
|
|
4946
|
+
transactionId: string;
|
|
4947
|
+
shipmentTrackingNumbers: string[];
|
|
4948
|
+
addresses: string[];
|
|
4949
|
+
};
|
|
4950
|
+
|
|
4951
|
+
declare class ApiDropoffsService {
|
|
4952
|
+
private environments;
|
|
4953
|
+
private http;
|
|
4954
|
+
/**
|
|
4955
|
+
* Retrieves the URL for the Inventories API from the environment configurations.
|
|
4956
|
+
*
|
|
4957
|
+
* @return {string} The URL of the Inventories API.
|
|
4958
|
+
*/
|
|
4959
|
+
get url(): string;
|
|
4960
|
+
/**
|
|
4961
|
+
* Send a Courier Request for Shipment.
|
|
4962
|
+
*
|
|
4963
|
+
* @param {ShipmentsBookingIn} body - The courier for shipment data.
|
|
4964
|
+
*/
|
|
4965
|
+
postShipmentsBooking(body: ShipmentsBookingIn): Observable<{}>;
|
|
4966
|
+
/**
|
|
4967
|
+
* Send a EReceipt for Shipment.
|
|
4968
|
+
*
|
|
4969
|
+
* @param {ShipmentsEReceiptIn} body - The EReceipt for Shipment data.
|
|
4970
|
+
*/
|
|
4971
|
+
postShipmentsEReceipt(body: ShipmentsEReceiptIn): Observable<{}>;
|
|
4972
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApiDropoffsService, never>;
|
|
4973
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApiDropoffsService>;
|
|
4974
|
+
}
|
|
4975
|
+
|
|
4940
4976
|
interface ExternalShipmentAddress extends ActiveLessSymfonyModel {
|
|
4941
4977
|
addressLine1: string;
|
|
4942
4978
|
addressLine2: string;
|
|
@@ -5304,6 +5340,32 @@ declare enum Group {
|
|
|
5304
5340
|
expiration = "expiration",
|
|
5305
5341
|
verification = "verification"
|
|
5306
5342
|
}
|
|
5343
|
+
declare enum InventoryActions {
|
|
5344
|
+
INVENTORY_CHECK_OUT = "inventoryCheckOut",
|
|
5345
|
+
INVENTORY_COURIER_PICK_UP = "inventoryCourierPickUp",
|
|
5346
|
+
INVENTORY_LOCATION_BACKROOM = "inventoryLocationBackroom",
|
|
5347
|
+
INVENTORY_MISSING_PIECES = "inventoryMissingPieces",
|
|
5348
|
+
INVENTORY_RE_ENTRY_MISSING_PIECES = "inventoryReEntryMissingPieces",
|
|
5349
|
+
INVENTORY_ODD_NOTIFICATION = "inventoryOddNotifications",
|
|
5350
|
+
INVENTORY_ON_HOLD_MISSED_CONNECTION = "inventoryOnHoldMissed"
|
|
5351
|
+
}
|
|
5352
|
+
declare enum InventoryErrorCodes {
|
|
5353
|
+
CODE_SHP_FORMAT = "INV-E001",
|
|
5354
|
+
CODE_PCKG_FORMAT = "INV-E002",
|
|
5355
|
+
CODE_PACKAGE_NOT_FOUND = "INV-E101",
|
|
5356
|
+
CODE_EXISTS_INVENTORY_DIFFERENT_LOCATION = "INV-E007",
|
|
5357
|
+
CODE_PACKAGE_NOT_IN_STOCK = "INV-E105",
|
|
5358
|
+
CODE_PACKAGE_NOT_MISSING = "INV-E107",
|
|
5359
|
+
CODE_ACTION_NOT_VALID = "INV-E108",
|
|
5360
|
+
CODE_MULTIPLE_PACKAGES = "INV-E109",
|
|
5361
|
+
CODE_PACKAGE_NOT_CHECK_IN = "INV-E110",
|
|
5362
|
+
CODE_PACKAGE_NOT_DROP_OFF = "INV-E111"
|
|
5363
|
+
}
|
|
5364
|
+
declare enum RouteModelType {
|
|
5365
|
+
ROUTE_ID = "RouteId",
|
|
5366
|
+
COURIER = "Courier",
|
|
5367
|
+
COURIER_ROUTE = "CourierRoute"
|
|
5368
|
+
}
|
|
5307
5369
|
|
|
5308
5370
|
interface CheckpointInventory extends ActiveLessSymfonyModel {
|
|
5309
5371
|
code: string;
|
|
@@ -5409,6 +5471,24 @@ interface CourierRoute extends SymfonyModel {
|
|
|
5409
5471
|
name: string;
|
|
5410
5472
|
locationId: number;
|
|
5411
5473
|
}
|
|
5474
|
+
interface Package5 {
|
|
5475
|
+
id: number;
|
|
5476
|
+
shipmentTrackingNumber: string;
|
|
5477
|
+
trackingNumber: string;
|
|
5478
|
+
position: string | null;
|
|
5479
|
+
messageFail: string;
|
|
5480
|
+
lastStatus: Status5;
|
|
5481
|
+
}
|
|
5482
|
+
interface Status5 {
|
|
5483
|
+
code: string;
|
|
5484
|
+
name: string;
|
|
5485
|
+
description: string | null;
|
|
5486
|
+
}
|
|
5487
|
+
interface Package9 {
|
|
5488
|
+
id: number;
|
|
5489
|
+
shipmentTrackingNumber: string;
|
|
5490
|
+
trackingNumber: string;
|
|
5491
|
+
}
|
|
5412
5492
|
|
|
5413
5493
|
type CheckpointsInventoryOut = {
|
|
5414
5494
|
total: number;
|
|
@@ -5477,6 +5557,7 @@ type ReEntryOfMissingPackagesOut = {
|
|
|
5477
5557
|
reEntryOfMissingPackages: ReEntryOfMissingPackages;
|
|
5478
5558
|
};
|
|
5479
5559
|
type ReEntryOfMissingPackagesIn = {
|
|
5560
|
+
transactionId: string;
|
|
5480
5561
|
packagesIds: number[];
|
|
5481
5562
|
};
|
|
5482
5563
|
type CourierCheckOutPackesOut = {
|
|
@@ -5519,6 +5600,68 @@ type CourierRouteIn = {
|
|
|
5519
5600
|
locationId: number;
|
|
5520
5601
|
isActive: boolean;
|
|
5521
5602
|
};
|
|
5603
|
+
type PackageValidationActionIn = {
|
|
5604
|
+
shipmentTrackingNumber?: string;
|
|
5605
|
+
trackingNumber?: string;
|
|
5606
|
+
action: InventoryActions;
|
|
5607
|
+
transactionId?: string;
|
|
5608
|
+
};
|
|
5609
|
+
type PackageValidationActionOut = {
|
|
5610
|
+
packageValidation: {
|
|
5611
|
+
transactionId: string;
|
|
5612
|
+
package: {
|
|
5613
|
+
id: number;
|
|
5614
|
+
shipmentTrackingNumber: string;
|
|
5615
|
+
trackingNumber: string;
|
|
5616
|
+
};
|
|
5617
|
+
};
|
|
5618
|
+
};
|
|
5619
|
+
type ReturnFirstMileIn = {
|
|
5620
|
+
packagesIds: number[];
|
|
5621
|
+
transactionId: string;
|
|
5622
|
+
routeModelId: string | number;
|
|
5623
|
+
routeModelType: RouteModelType;
|
|
5624
|
+
};
|
|
5625
|
+
type ReturnFirstMileOut = {
|
|
5626
|
+
returnFirstMile: {
|
|
5627
|
+
status: boolean;
|
|
5628
|
+
messages: string[];
|
|
5629
|
+
number: string;
|
|
5630
|
+
};
|
|
5631
|
+
};
|
|
5632
|
+
type PackageReassignPositionIn = {
|
|
5633
|
+
packagesIds: number[];
|
|
5634
|
+
transactionId: string;
|
|
5635
|
+
position: string;
|
|
5636
|
+
};
|
|
5637
|
+
type PackageReassignPositionOut = {
|
|
5638
|
+
packageReassignPositions: {
|
|
5639
|
+
number: number;
|
|
5640
|
+
packages: Package5[];
|
|
5641
|
+
};
|
|
5642
|
+
};
|
|
5643
|
+
type MissingPackagesIn = {
|
|
5644
|
+
packagesIds: number[];
|
|
5645
|
+
transactionId: string;
|
|
5646
|
+
};
|
|
5647
|
+
type MissingPackagesOut = {
|
|
5648
|
+
missingPackages: {
|
|
5649
|
+
number: string;
|
|
5650
|
+
operationPackages: {
|
|
5651
|
+
packages: Package9[];
|
|
5652
|
+
};
|
|
5653
|
+
};
|
|
5654
|
+
};
|
|
5655
|
+
type PackageOnHoldIn = {
|
|
5656
|
+
packagesIds: number[];
|
|
5657
|
+
transactionId: string;
|
|
5658
|
+
};
|
|
5659
|
+
type PackageOnHoldOut = {
|
|
5660
|
+
PackagesOnHold: {
|
|
5661
|
+
number: number;
|
|
5662
|
+
packages: Package9[];
|
|
5663
|
+
};
|
|
5664
|
+
};
|
|
5522
5665
|
|
|
5523
5666
|
declare class ApiInventoriesService {
|
|
5524
5667
|
private environments;
|
|
@@ -5740,6 +5883,41 @@ declare class ApiInventoriesService {
|
|
|
5740
5883
|
* @returns {Observable<CourierRouteOut>} An observable that emits the result of the delete courier route.
|
|
5741
5884
|
*/
|
|
5742
5885
|
deleteCourierRoute(id: Number): Observable<CourierRouteOut>;
|
|
5886
|
+
/**
|
|
5887
|
+
* Get a package/shipment enabled to perform an action.
|
|
5888
|
+
*
|
|
5889
|
+
* @param {PackageValidationActionIn} body - package/shipment number to validate.
|
|
5890
|
+
* @returns {Observable<PackageValidationActionOut>} An observable with the package/shipment validated.
|
|
5891
|
+
*/
|
|
5892
|
+
postPackageValidationActions(body: PackageValidationActionIn): Observable<PackageValidationActionOut>;
|
|
5893
|
+
/**
|
|
5894
|
+
* Edit return first mile resource.
|
|
5895
|
+
*
|
|
5896
|
+
* @param {ReturnFirstMileIn} body - The first mile data to be updated.
|
|
5897
|
+
* @returns {Observable<ReturnFirstMileOut>} An observable with the first mile updated.
|
|
5898
|
+
*/
|
|
5899
|
+
putReturnFirstMile(body: ReturnFirstMileIn): Observable<ReturnFirstMileOut>;
|
|
5900
|
+
/**
|
|
5901
|
+
* Replaces a Package Reassign Position resource.
|
|
5902
|
+
*
|
|
5903
|
+
* @param {PackageReassignPositionIn} body - The Package Reassign Position resource data to be updated.
|
|
5904
|
+
* @returns {Observable<PackageReassignPositionOut>} An observable with the Package Reassign Position resource updated.
|
|
5905
|
+
*/
|
|
5906
|
+
putPackageReassignPositions(body: PackageReassignPositionIn): Observable<PackageReassignPositionOut>;
|
|
5907
|
+
/**
|
|
5908
|
+
* Edit missing package resource.
|
|
5909
|
+
*
|
|
5910
|
+
* @param {MissingPackagesIn} body - The missing package resource data to be updated.
|
|
5911
|
+
* @returns {Observable<MissingPackagesOut>} An observable with the missing package resource updated.
|
|
5912
|
+
*/
|
|
5913
|
+
putMissingPackages(body: MissingPackagesIn): Observable<MissingPackagesOut>;
|
|
5914
|
+
/**
|
|
5915
|
+
* Edit package on hold resource..
|
|
5916
|
+
*
|
|
5917
|
+
* @param {PackageOnHoldIn} body - The package on hold resource data to be updated.
|
|
5918
|
+
* @returns {Observable<PackageOnHoldOut>} An observable with the package on hold resource updated.
|
|
5919
|
+
*/
|
|
5920
|
+
putPackageOnHold(body: PackageOnHoldIn): Observable<PackageOnHoldOut>;
|
|
5743
5921
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiInventoriesService, never>;
|
|
5744
5922
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiInventoriesService>;
|
|
5745
5923
|
}
|
|
@@ -7101,6 +7279,7 @@ interface ShipmentReports {
|
|
|
7101
7279
|
interface ShipmentLandingReport extends ActiveLessLaravelModel {
|
|
7102
7280
|
authorization_numbers: string[] | null;
|
|
7103
7281
|
commercial_invoice: boolean | null;
|
|
7282
|
+
has_documents: boolean | null;
|
|
7104
7283
|
company_country_id: number;
|
|
7105
7284
|
company_id: number;
|
|
7106
7285
|
company_name: string;
|
|
@@ -8287,12 +8466,27 @@ interface EmbassyShipment extends SymfonyModel {
|
|
|
8287
8466
|
createdAt: string;
|
|
8288
8467
|
updatedAt: string;
|
|
8289
8468
|
}
|
|
8290
|
-
interface
|
|
8291
|
-
|
|
8469
|
+
interface DocumentConfiguration extends SymfonyModel {
|
|
8470
|
+
documentType: string;
|
|
8471
|
+
country: CountryToDocumentConfig;
|
|
8472
|
+
title: string | null;
|
|
8473
|
+
content: string | null;
|
|
8474
|
+
signaturePageSetting: SignaturePageSetting | null;
|
|
8475
|
+
}
|
|
8476
|
+
interface SignaturePageSetting extends ApiModel {
|
|
8292
8477
|
isDefault: boolean;
|
|
8293
8478
|
termsAndCondition: string | null;
|
|
8294
8479
|
marketingConsent: string | null;
|
|
8295
8480
|
additionalVerbiage: string | null;
|
|
8481
|
+
marketingConsentMandatory: boolean;
|
|
8482
|
+
}
|
|
8483
|
+
interface CountryToDocumentConfig extends ActiveLessSymfonyModel {
|
|
8484
|
+
code: string;
|
|
8485
|
+
name: string;
|
|
8486
|
+
}
|
|
8487
|
+
interface ShipmentDocument {
|
|
8488
|
+
title: string;
|
|
8489
|
+
content: string;
|
|
8296
8490
|
}
|
|
8297
8491
|
|
|
8298
8492
|
type ValidateAccountIn = {
|
|
@@ -8389,12 +8583,12 @@ type EmbassyShipmentsOut = {
|
|
|
8389
8583
|
total: number;
|
|
8390
8584
|
embassyShipments: EmbassyShipment[];
|
|
8391
8585
|
};
|
|
8392
|
-
type
|
|
8586
|
+
type DocumentConfigurationsOut = {
|
|
8393
8587
|
total: number;
|
|
8394
|
-
|
|
8588
|
+
documentConfigurations: DocumentConfiguration[];
|
|
8395
8589
|
};
|
|
8396
|
-
type
|
|
8397
|
-
|
|
8590
|
+
type DocumentConfigurationOut = {
|
|
8591
|
+
documentConfiguration: DocumentConfiguration;
|
|
8398
8592
|
};
|
|
8399
8593
|
type EmbassyShipmentIn = {
|
|
8400
8594
|
countryId: number;
|
|
@@ -8417,13 +8611,26 @@ type EmbassyShipmentIn = {
|
|
|
8417
8611
|
businessPartyTraderTypeId: number | null;
|
|
8418
8612
|
isActive: boolean;
|
|
8419
8613
|
};
|
|
8420
|
-
type
|
|
8614
|
+
type DocumentConfigurationIn = {
|
|
8421
8615
|
countryId: number;
|
|
8616
|
+
documentType: string;
|
|
8617
|
+
title?: string | null;
|
|
8618
|
+
content?: string | null;
|
|
8619
|
+
isActive: boolean;
|
|
8620
|
+
signaturePageSetting?: SignaturePageSettingIn | null;
|
|
8621
|
+
};
|
|
8622
|
+
type SignaturePageSettingIn = {
|
|
8422
8623
|
isDefault: boolean;
|
|
8423
8624
|
termsAndCondition: string | null;
|
|
8424
8625
|
marketingConsent: string | null;
|
|
8425
8626
|
additionalVerbiage: string | null;
|
|
8426
|
-
|
|
8627
|
+
marketingConsentMandatory: boolean;
|
|
8628
|
+
};
|
|
8629
|
+
type DocumentConfigurationsPreviewIn = {
|
|
8630
|
+
html: string;
|
|
8631
|
+
};
|
|
8632
|
+
type DocumentConfigurationsPreviewOut = {
|
|
8633
|
+
preview: string;
|
|
8427
8634
|
};
|
|
8428
8635
|
interface EmbassyShipmentOut {
|
|
8429
8636
|
embassyShipment: EmbassyShipment;
|
|
@@ -8431,6 +8638,9 @@ interface EmbassyShipmentOut {
|
|
|
8431
8638
|
type ShipmentSignaturePageOut = {
|
|
8432
8639
|
shipmentSignaturePage: string;
|
|
8433
8640
|
};
|
|
8641
|
+
type ShipmentDocumentsOut = {
|
|
8642
|
+
shipmentDocuments: ShipmentDocument[];
|
|
8643
|
+
};
|
|
8434
8644
|
|
|
8435
8645
|
declare class ApiShipmentsService {
|
|
8436
8646
|
private environments;
|
|
@@ -8507,31 +8717,47 @@ declare class ApiShipmentsService {
|
|
|
8507
8717
|
*/
|
|
8508
8718
|
putEmbassyShipments(id: number, body: EmbassyShipmentIn): Observable<EmbassyShipmentOut>;
|
|
8509
8719
|
/**
|
|
8510
|
-
* Retrieves a paginated list of
|
|
8511
|
-
*
|
|
8512
|
-
* @
|
|
8720
|
+
* Retrieves a paginated list of document configurations.
|
|
8721
|
+
*
|
|
8722
|
+
* @param {QueryParams} params - Query parameters used for filtering, sorting, and pagination.
|
|
8723
|
+
* @returns {Observable<DocumentConfigurationsOut>} An observable containing the list of document configurations and pagination metadata.
|
|
8513
8724
|
*/
|
|
8514
|
-
|
|
8725
|
+
getDocumentConfigurations(params: QueryParams): Observable<DocumentConfigurationsOut>;
|
|
8515
8726
|
/**
|
|
8516
|
-
* Retrieves
|
|
8727
|
+
* Retrieves a document configuration by its identifier.
|
|
8517
8728
|
*
|
|
8518
|
-
* @param {number} id - The identifier of the
|
|
8519
|
-
* @
|
|
8729
|
+
* @param {number} id - The unique identifier of the document configuration.
|
|
8730
|
+
* @returns {Observable<DocumentConfigurationOut>} An observable containing the document configuration details.
|
|
8520
8731
|
*/
|
|
8521
|
-
|
|
8732
|
+
getDocumentConfiguration(id: number): Observable<DocumentConfigurationOut>;
|
|
8522
8733
|
/**
|
|
8523
|
-
* Creates a new
|
|
8524
|
-
*
|
|
8525
|
-
* @
|
|
8734
|
+
* Creates a new document configuration.
|
|
8735
|
+
*
|
|
8736
|
+
* @param {DocumentConfigurationIn} body - The document configuration data to create.
|
|
8737
|
+
* @returns {Observable<DocumentConfigurationOut>} An observable containing the newly created document configuration.
|
|
8738
|
+
*/
|
|
8739
|
+
postDocumentConfiguration(body: DocumentConfigurationIn): Observable<DocumentConfigurationOut>;
|
|
8740
|
+
/**
|
|
8741
|
+
* Updates an existing document configuration.
|
|
8742
|
+
*
|
|
8743
|
+
* @param {number} id - The unique identifier of the document configuration to update.
|
|
8744
|
+
* @param {DocumentConfigurationIn} body - The updated document configuration data.
|
|
8745
|
+
* @returns {Observable<DocumentConfigurationOut>} An observable containing the updated document configuration.
|
|
8526
8746
|
*/
|
|
8527
|
-
|
|
8747
|
+
putDocumentConfiguration(id: number, body: DocumentConfigurationIn): Observable<DocumentConfigurationOut>;
|
|
8528
8748
|
/**
|
|
8529
|
-
*
|
|
8530
|
-
*
|
|
8531
|
-
* @param {
|
|
8532
|
-
* @returns {Observable<
|
|
8749
|
+
* Generates a preview for a document configuration.
|
|
8750
|
+
*
|
|
8751
|
+
* @param {DocumentConfigurationsPreviewIn} body - The data used to generate the document preview.
|
|
8752
|
+
* @returns {Observable<DocumentConfigurationsPreviewOut>} An observable containing the generated document preview.
|
|
8533
8753
|
*/
|
|
8534
|
-
|
|
8754
|
+
postDocumentConfigurationPreview(body: DocumentConfigurationsPreviewIn): Observable<DocumentConfigurationsPreviewOut>;
|
|
8755
|
+
/**
|
|
8756
|
+
* Retrieves the shipment documents associated with a document configuration
|
|
8757
|
+
* @param {number} id - The unique identifier of the document configuration
|
|
8758
|
+
* @returns {Observable<ShipmentDocumentsOut>} observable containing the shipment documents
|
|
8759
|
+
* */
|
|
8760
|
+
getDocuments(id: number): Observable<ShipmentDocumentsOut>;
|
|
8535
8761
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiShipmentsService, never>;
|
|
8536
8762
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiShipmentsService>;
|
|
8537
8763
|
}
|
|
@@ -9118,5 +9344,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
|
|
|
9118
9344
|
[header: string]: string | string[];
|
|
9119
9345
|
};
|
|
9120
9346
|
|
|
9121
|
-
export { AccountTypeId, AccountTypeName, AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCheckpointsService, 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 };
|
|
9122
|
-
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, 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, 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, EventRegister, EventRegistersOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportReason, ExportReasonIn, ExportReasonOut, ExportReasonTypes, ExportReasonTypesOut, ExportReasonsOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressCancellation, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentCancellationIn, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExternalShipmentsOut, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, HistoriesReportOut, HistoryReport, HistoryReportCheckpoint, Holiday, HolidayIn, HolidayOut, HolidaysOut, IdentificationType, 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, 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, ParameterValueOut, ParametersByModelIn, ParametersOut, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, Pivot, PostalCode, PostalCodeBillings, PostalCodeFormat, PostalCodesOut, PostalLocation, PostalLocationsOut, PriceOverrideApprover, PriceOverrideApproversOut, PriceOverrideReason, PriceOverrideReasonsOut, PrintCollectionReceiptOut, Printable, Printer, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QuantityUnitsOut, QueryParams, Question, QuestionIn, QuestionOption, QuestionOut, QuestionResponse, QuestionType, QuestionTypesOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, ReEntryOfMissingPackage, ReEntryOfMissingPackageOut, ReEntryOfMissingPackages, ReEntryOfMissingPackagesIn, ReEntryOfMissingPackagesOut, ReceiptFile, ReceiptFileOut, Region, RegionsOut, ReportExternalShipment, ReportExternalShipmentAddress, 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, ShipmentsLandingReportOut, ShipmentsReportOut, SignaturePageSetting, SignaturePageSettingIn, SignaturePageSettingOut, SignaturePageSettingsOut, 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, 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 };
|
|
9347
|
+
export { AccountTypeId, AccountTypeName, AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCheckpointsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiDropoffsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, DefaultValueType, DepositTypeCode, DocumentStatusCode, ENVIRONMENT_TOKEN, Event, Group, InventoryActions, InventoryErrorCodes, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, PrintMode, PrintableFormat, PrintersService, PrintersType, RouteModelType, ShipmentIncomeTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
9348
|
+
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, 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, 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, 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, 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, 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, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, HistoriesReportOut, HistoryReport, HistoryReportCheckpoint, Holiday, HolidayIn, HolidayOut, HolidaysOut, IdentificationType, IdentificationTypeComposition, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeNumberValidationIn, IdentificationTypeNumberValidationOut, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, InventoriesReportOut, InventoryReport, InvoiceCancellationIn, InvoiceReport, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, LanguageOut, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, LocationEmployeesOut, LocationIn, LocationOut, LocationType, LocationTypeFields, LocationsOut, LoyaltyPeriod, LoyaltyPeriodIn, LoyaltyPeriodOut, LoyaltyPeriodsOut, LoyaltyRule, LoyaltyRuleIn, LoyaltyRuleOut, LoyaltyRulesOut, ManagementArea, ManagementAreasOut, ManifestMultipleIn, ManifestMultipleOut, ManufactureCountry, MissingPackagesIn, MissingPackagesOut, Module, ModuleType, ModulesOut, MunicipalitiesOut, Municipality, Notification, NotificationConfiguration, NotificationConfigurationIn, NotificationConfigurationOut, NotificationIn, NotificationOut, NotificationStatus, NotificationType, NotificationsOut, NotificationsTypeOut, OpenItem, OpenItemIn, OpenItems, OpenItemsOut, Opening, OpeningCountryReferenceCurrency, OpeningHistory, OpeningIn, OpeningOut, OpeningPreClosingRequestIn, OpeningStatus, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, OpeningsOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentCustomerIn, OperationDocumentCustomerOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintTicketOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, Package5, Package9, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsOut, PackageMissing, PackageOnHoldIn, PackageOnHoldOut, PackageReassignPositionIn, PackageReassignPositionOut, PackageReport, PackageValidationActionIn, PackageValidationActionOut, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueOut, ParametersByModelIn, ParametersOut, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, 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, ShipmentDocument, ShipmentDocumentsOut, 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, 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 };
|