@experteam-mx/ngx-services 20.7.2 → 20.8.0-dev2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts
CHANGED
|
@@ -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;
|
|
@@ -2584,9 +2585,7 @@ interface Parameter extends LaravelModel {
|
|
|
2584
2585
|
type: string;
|
|
2585
2586
|
regex: string;
|
|
2586
2587
|
description: string;
|
|
2587
|
-
value:
|
|
2588
|
-
[key: string]: (string | number | boolean | null)[];
|
|
2589
|
-
};
|
|
2588
|
+
value: unknown;
|
|
2590
2589
|
parameter_type_id: number;
|
|
2591
2590
|
}
|
|
2592
2591
|
interface ParameterConfig {
|
|
@@ -2985,25 +2984,22 @@ type ParametersOut = {
|
|
|
2985
2984
|
parameters: Parameter[];
|
|
2986
2985
|
total: number;
|
|
2987
2986
|
};
|
|
2988
|
-
type ParametersValuesIn = {
|
|
2989
|
-
paramNames: string[];
|
|
2990
|
-
};
|
|
2991
2987
|
type ParametersValuesOut = {
|
|
2992
|
-
parameters:
|
|
2993
|
-
|
|
2988
|
+
parameters: {
|
|
2989
|
+
id: number;
|
|
2990
|
+
name: string;
|
|
2991
|
+
value: Parameter['value'];
|
|
2992
|
+
model_type: string;
|
|
2993
|
+
model_id: number;
|
|
2994
|
+
}[];
|
|
2994
2995
|
};
|
|
2995
|
-
type
|
|
2996
|
+
type ParametersByModelIn = {
|
|
2996
2997
|
name: string;
|
|
2997
2998
|
model_type: string;
|
|
2998
2999
|
model_id: number;
|
|
2999
3000
|
}[];
|
|
3000
|
-
type ParameterValueIn = {
|
|
3001
|
-
paramName: string;
|
|
3002
|
-
};
|
|
3003
3001
|
type ParameterValueOut = {
|
|
3004
|
-
value:
|
|
3005
|
-
[key: string]: (string | boolean | number)[];
|
|
3006
|
-
};
|
|
3002
|
+
value: Parameter['value'];
|
|
3007
3003
|
};
|
|
3008
3004
|
type CountryReferencesOut = {
|
|
3009
3005
|
country_references: CountryReference[];
|
|
@@ -3228,9 +3224,6 @@ type TDXAccountSettingsIn = {
|
|
|
3228
3224
|
product_id: number;
|
|
3229
3225
|
is_active: boolean;
|
|
3230
3226
|
};
|
|
3231
|
-
type LocationEmployeesIn = {
|
|
3232
|
-
token: string;
|
|
3233
|
-
} & QueryParams;
|
|
3234
3227
|
|
|
3235
3228
|
declare class ApiCompaniesService {
|
|
3236
3229
|
private environments;
|
|
@@ -3655,26 +3648,24 @@ declare class ApiCompaniesService {
|
|
|
3655
3648
|
/**
|
|
3656
3649
|
* Retrieves the parameter values based on the provided parameter names.
|
|
3657
3650
|
*
|
|
3658
|
-
* @param {
|
|
3659
|
-
* @param {string[]} params.paramNames - An array of parameter names for which the values need to be fetched.
|
|
3651
|
+
* @param {string[]} names - An array of parameter names for which the values need to be fetched.
|
|
3660
3652
|
* @return {Observable<ParametersValuesOut>} An observable that emits the fetched parameter values.
|
|
3661
3653
|
*/
|
|
3662
|
-
postParametersValues(
|
|
3654
|
+
postParametersValues(names: string[]): Observable<ParametersValuesOut>;
|
|
3663
3655
|
/**
|
|
3664
|
-
* Retrieves parameter values based on the provided
|
|
3656
|
+
* Retrieves parameter values based on the provided model configuration.
|
|
3665
3657
|
*
|
|
3666
|
-
* @param {
|
|
3658
|
+
* @param {ParametersByModelIn} parameters - The input object containing the criteria or model details to retrieve the parameters.
|
|
3667
3659
|
* @return {Observable<ParametersValuesOut>} An observable that emits the parameter values fetched from the server.
|
|
3668
3660
|
*/
|
|
3669
|
-
postParameterValueByModel(parameters:
|
|
3661
|
+
postParameterValueByModel(parameters: ParametersByModelIn): Observable<ParametersValuesOut>;
|
|
3670
3662
|
/**
|
|
3671
3663
|
* Retrieves the value of a specified parameter.
|
|
3672
3664
|
*
|
|
3673
|
-
* @param {
|
|
3674
|
-
* @param {string} input.paramName - The name of the parameter whose value is to be retrieved.
|
|
3665
|
+
* @param {string} name - The name of the parameter whose value is to be retrieved.
|
|
3675
3666
|
* @return {Observable<ParameterValueOut>} An observable emitting the value of the specified parameter.
|
|
3676
3667
|
*/
|
|
3677
|
-
getParameterValue(
|
|
3668
|
+
getParameterValue(name: string): Observable<ParameterValueOut>;
|
|
3678
3669
|
/**
|
|
3679
3670
|
* Retrieves a list of country references based on the given query parameters.
|
|
3680
3671
|
*
|
|
@@ -3963,18 +3954,6 @@ declare class ApiCompaniesService {
|
|
|
3963
3954
|
* @returns {Observable<TDXAccountSettingsOut>} An observable containing the updated TDX account setting.
|
|
3964
3955
|
*/
|
|
3965
3956
|
putTDXAccountSettings(id: number, body: TDXAccountSettingsIn): Observable<TDXAccountSettingsOut>;
|
|
3966
|
-
/**
|
|
3967
|
-
* Retrieves the employees of a specific location using a provided token.
|
|
3968
|
-
*
|
|
3969
|
-
* @param params - Input parameters for the request, defined by the `LocationEmployeesIn` interface.
|
|
3970
|
-
* @returns An `Observable<LocationEmployeesOut>` that emits the employees
|
|
3971
|
-
* associated with the given location.
|
|
3972
|
-
* @returns The response type is `ApiSuccess<LocationEmployeesOut>`, from which the `data` field is extracted.
|
|
3973
|
-
*/
|
|
3974
|
-
getLocationEmployeesByToken(params: {
|
|
3975
|
-
token: string;
|
|
3976
|
-
queryParams: QueryParams;
|
|
3977
|
-
}): Observable<LocationEmployeesOut>;
|
|
3978
3957
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiCompaniesService, never>;
|
|
3979
3958
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiCompaniesService>;
|
|
3980
3959
|
}
|
|
@@ -4959,6 +4938,41 @@ declare class ApiDiscountsService {
|
|
|
4959
4938
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiDiscountsService>;
|
|
4960
4939
|
}
|
|
4961
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
|
+
|
|
4962
4976
|
interface ExternalShipmentAddress extends ActiveLessSymfonyModel {
|
|
4963
4977
|
addressLine1: string;
|
|
4964
4978
|
addressLine2: string;
|
|
@@ -5326,6 +5340,31 @@ declare enum Group {
|
|
|
5326
5340
|
expiration = "expiration",
|
|
5327
5341
|
verification = "verification"
|
|
5328
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
|
+
}
|
|
5351
|
+
declare enum InventoryErrorCodes {
|
|
5352
|
+
CODE_SHP_FORMAT = "INV-E001",
|
|
5353
|
+
CODE_PCKG_FORMAT = "INV-E002",
|
|
5354
|
+
CODE_PACKAGE_NOT_FOUND = "INV-E101",
|
|
5355
|
+
CODE_EXISTS_INVENTORY_DIFFERENT_LOCATION = "INV-E007",
|
|
5356
|
+
CODE_PACKAGE_NOT_IN_STOCK = "INV-E105",
|
|
5357
|
+
CODE_PACKAGE_NOT_MISSING = "INV-E107",
|
|
5358
|
+
CODE_ACTION_NOT_VALID = "INV-E108",
|
|
5359
|
+
CODE_MULTIPLE_PACKAGES = "INV-E109",
|
|
5360
|
+
CODE_PACKAGE_NOT_CHECK_IN = "INV-E110",
|
|
5361
|
+
CODE_PACKAGE_NOT_DROP_OFF = "INV-E111"
|
|
5362
|
+
}
|
|
5363
|
+
declare enum RouteModelType {
|
|
5364
|
+
ROUTE_ID = "RouteId",
|
|
5365
|
+
COURIER = "Courier",
|
|
5366
|
+
COURIER_ROUTE = "CourierRoute"
|
|
5367
|
+
}
|
|
5329
5368
|
|
|
5330
5369
|
interface CheckpointInventory extends ActiveLessSymfonyModel {
|
|
5331
5370
|
code: string;
|
|
@@ -5431,6 +5470,24 @@ interface CourierRoute extends SymfonyModel {
|
|
|
5431
5470
|
name: string;
|
|
5432
5471
|
locationId: number;
|
|
5433
5472
|
}
|
|
5473
|
+
interface Package5 {
|
|
5474
|
+
id: number;
|
|
5475
|
+
shipmentTrackingNumber: string;
|
|
5476
|
+
trackingNumber: string;
|
|
5477
|
+
position: string | null;
|
|
5478
|
+
messageFail: string;
|
|
5479
|
+
lastStatus: Status5;
|
|
5480
|
+
}
|
|
5481
|
+
interface Status5 {
|
|
5482
|
+
code: string;
|
|
5483
|
+
name: string;
|
|
5484
|
+
description: string | null;
|
|
5485
|
+
}
|
|
5486
|
+
interface Package9 {
|
|
5487
|
+
id: number;
|
|
5488
|
+
shipmentTrackingNumber: string;
|
|
5489
|
+
trackingNumber: string;
|
|
5490
|
+
}
|
|
5434
5491
|
|
|
5435
5492
|
type CheckpointsInventoryOut = {
|
|
5436
5493
|
total: number;
|
|
@@ -5499,6 +5556,7 @@ type ReEntryOfMissingPackagesOut = {
|
|
|
5499
5556
|
reEntryOfMissingPackages: ReEntryOfMissingPackages;
|
|
5500
5557
|
};
|
|
5501
5558
|
type ReEntryOfMissingPackagesIn = {
|
|
5559
|
+
transactionId: string;
|
|
5502
5560
|
packagesIds: number[];
|
|
5503
5561
|
};
|
|
5504
5562
|
type CourierCheckOutPackesOut = {
|
|
@@ -5541,6 +5599,58 @@ type CourierRouteIn = {
|
|
|
5541
5599
|
locationId: number;
|
|
5542
5600
|
isActive: boolean;
|
|
5543
5601
|
};
|
|
5602
|
+
type PackageValidationActionIn = {
|
|
5603
|
+
shipmentTrackingNumber?: string;
|
|
5604
|
+
trackingNumber?: string;
|
|
5605
|
+
action: InventoryActions;
|
|
5606
|
+
transactionId?: string;
|
|
5607
|
+
};
|
|
5608
|
+
type PackageValidationActionOut = {
|
|
5609
|
+
packageValidation: {
|
|
5610
|
+
transactionId: string;
|
|
5611
|
+
package: {
|
|
5612
|
+
id: number;
|
|
5613
|
+
shipmentTrackingNumber: string;
|
|
5614
|
+
trackingNumber: string;
|
|
5615
|
+
};
|
|
5616
|
+
};
|
|
5617
|
+
};
|
|
5618
|
+
type ReturnFirstMileIn = {
|
|
5619
|
+
packagesIds: number[];
|
|
5620
|
+
transactionId: string;
|
|
5621
|
+
routeModelId: string | number;
|
|
5622
|
+
routeModelType: RouteModelType;
|
|
5623
|
+
};
|
|
5624
|
+
type ReturnFirstMileOut = {
|
|
5625
|
+
returnFirstMile: {
|
|
5626
|
+
status: boolean;
|
|
5627
|
+
messages: string[];
|
|
5628
|
+
number: string;
|
|
5629
|
+
};
|
|
5630
|
+
};
|
|
5631
|
+
type PackageReassignPositionIn = {
|
|
5632
|
+
packagesIds: number[];
|
|
5633
|
+
transactionId: string;
|
|
5634
|
+
position: string;
|
|
5635
|
+
};
|
|
5636
|
+
type PackageReassignPositionOut = {
|
|
5637
|
+
packageReassignPositions: {
|
|
5638
|
+
number: number;
|
|
5639
|
+
packages: Package5[];
|
|
5640
|
+
};
|
|
5641
|
+
};
|
|
5642
|
+
type MissingPackagesIn = {
|
|
5643
|
+
packagesIds: number[];
|
|
5644
|
+
transactionId: string;
|
|
5645
|
+
};
|
|
5646
|
+
type MissingPackagesOut = {
|
|
5647
|
+
missingPackages: {
|
|
5648
|
+
number: string;
|
|
5649
|
+
operationPackages: {
|
|
5650
|
+
packages: Package9[];
|
|
5651
|
+
};
|
|
5652
|
+
};
|
|
5653
|
+
};
|
|
5544
5654
|
|
|
5545
5655
|
declare class ApiInventoriesService {
|
|
5546
5656
|
private environments;
|
|
@@ -5762,6 +5872,34 @@ declare class ApiInventoriesService {
|
|
|
5762
5872
|
* @returns {Observable<CourierRouteOut>} An observable that emits the result of the delete courier route.
|
|
5763
5873
|
*/
|
|
5764
5874
|
deleteCourierRoute(id: Number): Observable<CourierRouteOut>;
|
|
5875
|
+
/**
|
|
5876
|
+
* Get a package/shipment enabled to perform an action.
|
|
5877
|
+
*
|
|
5878
|
+
* @param {PackageValidationActionIn} body - package/shipment number to validate.
|
|
5879
|
+
* @returns {Observable<PackageValidationActionOut>} An observable with the package/shipment validated.
|
|
5880
|
+
*/
|
|
5881
|
+
postPackageValidationActions(body: PackageValidationActionIn): Observable<PackageValidationActionOut>;
|
|
5882
|
+
/**
|
|
5883
|
+
* Edit return first mile resource.
|
|
5884
|
+
*
|
|
5885
|
+
* @param {ReturnFirstMileIn} body - The first mile data to be updated.
|
|
5886
|
+
* @returns {Observable<ReturnFirstMileOut>} An observable with the first mile updated.
|
|
5887
|
+
*/
|
|
5888
|
+
putReturnFirstMile(body: ReturnFirstMileIn): Observable<ReturnFirstMileOut>;
|
|
5889
|
+
/**
|
|
5890
|
+
* Replaces a Package Reassign Position resource.
|
|
5891
|
+
*
|
|
5892
|
+
* @param {PackageReassignPositionIn} body - The Package Reassign Position resource data to be updated.
|
|
5893
|
+
* @returns {Observable<PackageReassignPositionOut>} An observable with the Package Reassign Position resource updated.
|
|
5894
|
+
*/
|
|
5895
|
+
putPackageReassignPositions(body: PackageReassignPositionIn): Observable<PackageReassignPositionOut>;
|
|
5896
|
+
/**
|
|
5897
|
+
* Edit missing package resource.
|
|
5898
|
+
*
|
|
5899
|
+
* @param {MissingPackagesIn} body - The missing package resource data to be updated.
|
|
5900
|
+
* @returns {Observable<MissingPackagesOut>} An observable with the missing package resource updated.
|
|
5901
|
+
*/
|
|
5902
|
+
putMissingPackages(body: MissingPackagesIn): Observable<MissingPackagesOut>;
|
|
5765
5903
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiInventoriesService, never>;
|
|
5766
5904
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiInventoriesService>;
|
|
5767
5905
|
}
|
|
@@ -7951,13 +8089,6 @@ declare class ApiSecurityService {
|
|
|
7951
8089
|
* @return {Observable<AuthMeOut>} An observable that emits the authenticated user's data.
|
|
7952
8090
|
*/
|
|
7953
8091
|
getAuthMe(): Observable<AuthMeOut>;
|
|
7954
|
-
/**
|
|
7955
|
-
* Fetches the authenticated user's details from the server.
|
|
7956
|
-
*
|
|
7957
|
-
* @param token The JWT token used for authorization.
|
|
7958
|
-
* @return An Observable that emits the user's details encapsulated in a MeOut object.
|
|
7959
|
-
*/
|
|
7960
|
-
getOtherMe(token: string): Observable<AuthMeOut>;
|
|
7961
8092
|
/**
|
|
7962
8093
|
* Fetches a user by their unique ID.
|
|
7963
8094
|
*
|
|
@@ -8991,6 +9122,22 @@ declare class PrintersService {
|
|
|
8991
9122
|
static ɵprov: i0.ɵɵInjectableDeclaration<PrintersService>;
|
|
8992
9123
|
}
|
|
8993
9124
|
|
|
9125
|
+
declare enum AccountTypeId {
|
|
9126
|
+
CASH = 1,
|
|
9127
|
+
COMAT = 2,
|
|
9128
|
+
FOC = 3,
|
|
9129
|
+
EMPLOYEE = 4,
|
|
9130
|
+
RPA = 5,
|
|
9131
|
+
GL = 6,
|
|
9132
|
+
CUS = 7,
|
|
9133
|
+
VENDOR = 8,
|
|
9134
|
+
WPX = 9,
|
|
9135
|
+
DHL = 12
|
|
9136
|
+
}
|
|
9137
|
+
declare enum AccountTypeName {
|
|
9138
|
+
EMBASSY = "EMBASSY"
|
|
9139
|
+
}
|
|
9140
|
+
|
|
8994
9141
|
declare enum PaymentTypeCode {
|
|
8995
9142
|
CASH = "cash",
|
|
8996
9143
|
CHECK = "check",
|
|
@@ -9131,5 +9278,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
|
|
|
9131
9278
|
[header: string]: string | string[];
|
|
9132
9279
|
};
|
|
9133
9280
|
|
|
9134
|
-
export { 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 };
|
|
9135
|
-
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, 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, 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 };
|
|
9281
|
+
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 };
|
|
9282
|
+
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, 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, 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, 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 };
|