@experteam-mx/ngx-services 20.6.0-dev2.1 → 20.7.0-dev1.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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { InjectionToken, ModuleWithProviders, EnvironmentProviders } from '@angular/core';
|
|
3
|
-
import { Observable } from 'rxjs';
|
|
3
|
+
import { Observable, BehaviorSubject } from 'rxjs';
|
|
4
4
|
import { HttpResponse, HttpRequest, HttpHandlerFn, HttpEvent, HttpParams, HttpHeaders } from '@angular/common/http';
|
|
5
5
|
import { Channel } from 'pusher-js';
|
|
6
6
|
|
|
@@ -5354,11 +5354,6 @@ interface OperationTypeInventory extends SymfonyModel {
|
|
|
5354
5354
|
name: TranslateLang;
|
|
5355
5355
|
};
|
|
5356
5356
|
}
|
|
5357
|
-
interface CourierRoute extends SymfonyModel {
|
|
5358
|
-
number: string;
|
|
5359
|
-
name: string;
|
|
5360
|
-
locationId: number;
|
|
5361
|
-
}
|
|
5362
5357
|
|
|
5363
5358
|
type CheckpointsOut = {
|
|
5364
5359
|
total: number;
|
|
@@ -5456,19 +5451,6 @@ type StockUpdatePackagesOut = {
|
|
|
5456
5451
|
totalFirstMilePackages: number;
|
|
5457
5452
|
totalStockUpdatePackages: number;
|
|
5458
5453
|
};
|
|
5459
|
-
type CourierRoutesOut = {
|
|
5460
|
-
courierRoutes: CourierRoute[];
|
|
5461
|
-
total: number;
|
|
5462
|
-
};
|
|
5463
|
-
type CourierRouteOut = {
|
|
5464
|
-
courierRoute: CourierRoute;
|
|
5465
|
-
};
|
|
5466
|
-
type CourierRouteIn = {
|
|
5467
|
-
number: string;
|
|
5468
|
-
name: string;
|
|
5469
|
-
locationId: number;
|
|
5470
|
-
isActive: boolean;
|
|
5471
|
-
};
|
|
5472
5454
|
|
|
5473
5455
|
declare class ApiInventoriesService {
|
|
5474
5456
|
private environments;
|
|
@@ -5654,42 +5636,6 @@ declare class ApiInventoriesService {
|
|
|
5654
5636
|
* @return {Observable<StockUpdatePackagesOut>} An observable that emits the packages data.
|
|
5655
5637
|
*/
|
|
5656
5638
|
getStockUpdatePackages(id: Number): Observable<StockUpdatePackagesOut>;
|
|
5657
|
-
/**
|
|
5658
|
-
* Retrieves a list of courier routes based on query parameters.
|
|
5659
|
-
*
|
|
5660
|
-
* @param {QueryParams} params - Query parameters for filtering the courier routes.
|
|
5661
|
-
* @returns {Observable<CourierRoutesOut>} An observable that emits the list of courier routes.
|
|
5662
|
-
*/
|
|
5663
|
-
getCourierRoutes(params: QueryParams): Observable<CourierRoutesOut>;
|
|
5664
|
-
/**
|
|
5665
|
-
* Fetches the courier route details based on the provided courier route ID.
|
|
5666
|
-
*
|
|
5667
|
-
* @param {number} id - The courier route id
|
|
5668
|
-
* @return {Observable<CourierRouteOut>} An observable that emits the courier route data.
|
|
5669
|
-
*/
|
|
5670
|
-
getCourierRoute(id: Number): Observable<CourierRouteOut>;
|
|
5671
|
-
/**
|
|
5672
|
-
* Creates a new courier route.
|
|
5673
|
-
*
|
|
5674
|
-
* @param {CourierRouteIn} body - The data for the new courier route.
|
|
5675
|
-
* @returns {Observable<CourierRouteOut>} An observable the created courier route detail.
|
|
5676
|
-
*/
|
|
5677
|
-
postCourierRoute(body: CourierRouteIn): Observable<CourierRouteOut>;
|
|
5678
|
-
/**
|
|
5679
|
-
* Update an existing courier route.
|
|
5680
|
-
*
|
|
5681
|
-
* @param {number} id - The identifier of the courier route record to update.
|
|
5682
|
-
* @param {CourierRouteIn} body - The courier route data to be updated.
|
|
5683
|
-
* @returns {Observable<CourierRouteOut>} An observable detail of the updated courier route.
|
|
5684
|
-
*/
|
|
5685
|
-
putCourierRoute(id: Number, body: CourierRouteIn): Observable<CourierRouteOut>;
|
|
5686
|
-
/**
|
|
5687
|
-
* Delete an existing courier route.
|
|
5688
|
-
*
|
|
5689
|
-
* @param {number} id - The unique identifier of the courier route to be deleted.
|
|
5690
|
-
* @returns {Observable<CourierRouteOut>} An observable that emits the result of the delete courier route.
|
|
5691
|
-
*/
|
|
5692
|
-
deleteCourierRoute(id: Number): Observable<CourierRouteOut>;
|
|
5693
5639
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiInventoriesService, never>;
|
|
5694
5640
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiInventoriesService>;
|
|
5695
5641
|
}
|
|
@@ -6061,8 +6007,11 @@ type InvoiceTypeCustomParamsIn = {
|
|
|
6061
6007
|
identificationNumber: string;
|
|
6062
6008
|
identificationTypeid: number;
|
|
6063
6009
|
};
|
|
6010
|
+
type OperationPrintTicketOut = {
|
|
6011
|
+
ticket: string[];
|
|
6012
|
+
};
|
|
6064
6013
|
type OperationPrintDocumentOut = {
|
|
6065
|
-
document: string;
|
|
6014
|
+
document: string[];
|
|
6066
6015
|
};
|
|
6067
6016
|
type CustomerTypesOut = {
|
|
6068
6017
|
customer_types: CustomerType[];
|
|
@@ -6260,6 +6209,26 @@ declare class ApiInvoicesService {
|
|
|
6260
6209
|
* @return {string} The API URL for invoices.
|
|
6261
6210
|
*/
|
|
6262
6211
|
get url(): string;
|
|
6212
|
+
/**
|
|
6213
|
+
* Retrieves the printable ticket payload for a billing operation.
|
|
6214
|
+
*
|
|
6215
|
+
* Sends a GET request to `/operation/print/ticket/{documentId}` and unwraps
|
|
6216
|
+
* the `data` field from the API success envelope.
|
|
6217
|
+
*
|
|
6218
|
+
* @param documentId - Numeric identifier of the document to print.
|
|
6219
|
+
* @returns An Observable that emits the ticket data for the given document.
|
|
6220
|
+
*/
|
|
6221
|
+
getOperationPrintTicket(documentId: number): Observable<OperationPrintTicketOut>;
|
|
6222
|
+
/**
|
|
6223
|
+
* Retrieves the printable document payload for a billing operation.
|
|
6224
|
+
*
|
|
6225
|
+
* Sends a GET request to `/operation/print/document/{documentId}` and unwraps
|
|
6226
|
+
* the `data` field from the API success envelope.
|
|
6227
|
+
*
|
|
6228
|
+
* @param documentId - Numeric identifier of the document to print.
|
|
6229
|
+
* @returns An Observable that emits the printable document data for the given document.
|
|
6230
|
+
*/
|
|
6231
|
+
getOperationPrintDocument(documentId: number): Observable<OperationPrintDocumentOut>;
|
|
6263
6232
|
/**
|
|
6264
6233
|
* Sends an operation document to the server and processes the response.
|
|
6265
6234
|
*
|
|
@@ -6334,13 +6303,6 @@ declare class ApiInvoicesService {
|
|
|
6334
6303
|
* @return {Observable<OperationShipmentExternalOut>} An observable that emits the result of the external payment operation for a shipment.
|
|
6335
6304
|
*/
|
|
6336
6305
|
postOperationShipmentExternalPayment(params: OperationShipmentExternalIn): Observable<OperationShipmentExternalOut>;
|
|
6337
|
-
/**
|
|
6338
|
-
* Retrieves and returns billing operation print details for a given document ID.
|
|
6339
|
-
*
|
|
6340
|
-
* @param {number} documentId - The ID of the document for which to fetch the print billing operation details.
|
|
6341
|
-
* @return {Observable<OperationPrintDocumentOut>} An observable emitting the print billing operation details for the specified document.
|
|
6342
|
-
*/
|
|
6343
|
-
getOperationPrintDocument(documentId: number): Observable<OperationPrintDocumentOut>;
|
|
6344
6306
|
/**
|
|
6345
6307
|
* Fetches all country payment types.
|
|
6346
6308
|
*
|
|
@@ -8228,13 +8190,27 @@ interface EmbassyShipment extends SymfonyModel {
|
|
|
8228
8190
|
createdAt: string;
|
|
8229
8191
|
updatedAt: string;
|
|
8230
8192
|
}
|
|
8231
|
-
interface
|
|
8232
|
-
|
|
8193
|
+
interface DocumentConfiguration extends SymfonyModel {
|
|
8194
|
+
documentType: string;
|
|
8195
|
+
country: CountryToDocumentConfig;
|
|
8196
|
+
title: string | null;
|
|
8197
|
+
content: string | null;
|
|
8198
|
+
signaturePageSetting: SignaturePageSetting | null;
|
|
8199
|
+
}
|
|
8200
|
+
interface SignaturePageSetting extends ApiModel {
|
|
8233
8201
|
isDefault: boolean;
|
|
8234
8202
|
termsAndCondition: string | null;
|
|
8235
8203
|
marketingConsent: string | null;
|
|
8236
8204
|
additionalVerbiage: string | null;
|
|
8237
8205
|
}
|
|
8206
|
+
interface CountryToDocumentConfig extends ActiveLessSymfonyModel {
|
|
8207
|
+
code: string;
|
|
8208
|
+
name: string;
|
|
8209
|
+
}
|
|
8210
|
+
interface ShipmentDocument {
|
|
8211
|
+
title: string;
|
|
8212
|
+
content: string;
|
|
8213
|
+
}
|
|
8238
8214
|
|
|
8239
8215
|
type ValidateAccountIn = {
|
|
8240
8216
|
accountValue: string;
|
|
@@ -8330,12 +8306,12 @@ type EmbassyShipmentsOut = {
|
|
|
8330
8306
|
total: number;
|
|
8331
8307
|
embassyShipments: EmbassyShipment[];
|
|
8332
8308
|
};
|
|
8333
|
-
type
|
|
8309
|
+
type DocumentConfigurationsOut = {
|
|
8334
8310
|
total: number;
|
|
8335
|
-
|
|
8311
|
+
documentConfigurations: DocumentConfiguration[];
|
|
8336
8312
|
};
|
|
8337
|
-
type
|
|
8338
|
-
|
|
8313
|
+
type DocumentConfigurationOut = {
|
|
8314
|
+
documentConfiguration: DocumentConfiguration;
|
|
8339
8315
|
};
|
|
8340
8316
|
type EmbassyShipmentIn = {
|
|
8341
8317
|
countryId: number;
|
|
@@ -8358,13 +8334,25 @@ type EmbassyShipmentIn = {
|
|
|
8358
8334
|
businessPartyTraderTypeId: number | null;
|
|
8359
8335
|
isActive: boolean;
|
|
8360
8336
|
};
|
|
8361
|
-
type
|
|
8337
|
+
type DocumentConfigurationIn = {
|
|
8362
8338
|
countryId: number;
|
|
8339
|
+
documentType: string;
|
|
8340
|
+
title?: string | null;
|
|
8341
|
+
content?: string | null;
|
|
8342
|
+
isActive: boolean;
|
|
8343
|
+
signaturePageSetting?: SignaturePageSettingIn | null;
|
|
8344
|
+
};
|
|
8345
|
+
type SignaturePageSettingIn = {
|
|
8363
8346
|
isDefault: boolean;
|
|
8364
8347
|
termsAndCondition: string | null;
|
|
8365
8348
|
marketingConsent: string | null;
|
|
8366
8349
|
additionalVerbiage: string | null;
|
|
8367
|
-
|
|
8350
|
+
};
|
|
8351
|
+
type DocumentConfigurationsPreviewIn = {
|
|
8352
|
+
html: string;
|
|
8353
|
+
};
|
|
8354
|
+
type DocumentConfigurationsPreviewOut = {
|
|
8355
|
+
preview: string;
|
|
8368
8356
|
};
|
|
8369
8357
|
interface EmbassyShipmentOut {
|
|
8370
8358
|
embassyShipment: EmbassyShipment;
|
|
@@ -8372,6 +8360,9 @@ interface EmbassyShipmentOut {
|
|
|
8372
8360
|
type ShipmentSignaturePageOut = {
|
|
8373
8361
|
shipmentSignaturePage: string;
|
|
8374
8362
|
};
|
|
8363
|
+
type ShipmentDocumentsOut = {
|
|
8364
|
+
shipmentDocuments: ShipmentDocument[];
|
|
8365
|
+
};
|
|
8375
8366
|
|
|
8376
8367
|
declare class ApiShipmentsService {
|
|
8377
8368
|
private environments;
|
|
@@ -8448,31 +8439,47 @@ declare class ApiShipmentsService {
|
|
|
8448
8439
|
*/
|
|
8449
8440
|
putEmbassyShipments(id: number, body: EmbassyShipmentIn): Observable<EmbassyShipmentOut>;
|
|
8450
8441
|
/**
|
|
8451
|
-
* Retrieves a paginated list of
|
|
8452
|
-
*
|
|
8453
|
-
* @
|
|
8442
|
+
* Retrieves a paginated list of document configurations.
|
|
8443
|
+
*
|
|
8444
|
+
* @param {QueryParams} params - Query parameters used for filtering, sorting, and pagination.
|
|
8445
|
+
* @returns {Observable<DocumentConfigurationsOut>} An observable containing the list of document configurations and pagination metadata.
|
|
8454
8446
|
*/
|
|
8455
|
-
|
|
8447
|
+
getDocumentConfigurations(params: QueryParams): Observable<DocumentConfigurationsOut>;
|
|
8456
8448
|
/**
|
|
8457
|
-
* Retrieves
|
|
8449
|
+
* Retrieves a document configuration by its identifier.
|
|
8458
8450
|
*
|
|
8459
|
-
* @param {number} id - The identifier of the
|
|
8460
|
-
* @
|
|
8451
|
+
* @param {number} id - The unique identifier of the document configuration.
|
|
8452
|
+
* @returns {Observable<DocumentConfigurationOut>} An observable containing the document configuration details.
|
|
8461
8453
|
*/
|
|
8462
|
-
|
|
8454
|
+
getDocumentConfiguration(id: number): Observable<DocumentConfigurationOut>;
|
|
8463
8455
|
/**
|
|
8464
|
-
* Creates a new
|
|
8465
|
-
*
|
|
8466
|
-
* @
|
|
8456
|
+
* Creates a new document configuration.
|
|
8457
|
+
*
|
|
8458
|
+
* @param {DocumentConfigurationIn} body - The document configuration data to create.
|
|
8459
|
+
* @returns {Observable<DocumentConfigurationOut>} An observable containing the newly created document configuration.
|
|
8467
8460
|
*/
|
|
8468
|
-
|
|
8461
|
+
postDocumentConfiguration(body: DocumentConfigurationIn): Observable<DocumentConfigurationOut>;
|
|
8469
8462
|
/**
|
|
8470
|
-
* Updates an existing
|
|
8471
|
-
*
|
|
8472
|
-
* @param {
|
|
8473
|
-
* @
|
|
8463
|
+
* Updates an existing document configuration.
|
|
8464
|
+
*
|
|
8465
|
+
* @param {number} id - The unique identifier of the document configuration to update.
|
|
8466
|
+
* @param {DocumentConfigurationIn} body - The updated document configuration data.
|
|
8467
|
+
* @returns {Observable<DocumentConfigurationOut>} An observable containing the updated document configuration.
|
|
8474
8468
|
*/
|
|
8475
|
-
|
|
8469
|
+
putDocumentConfiguration(id: number, body: DocumentConfigurationIn): Observable<DocumentConfigurationOut>;
|
|
8470
|
+
/**
|
|
8471
|
+
* Generates a preview for a document configuration.
|
|
8472
|
+
*
|
|
8473
|
+
* @param {DocumentConfigurationsPreviewIn} body - The data used to generate the document preview.
|
|
8474
|
+
* @returns {Observable<DocumentConfigurationsPreviewOut>} An observable containing the generated document preview.
|
|
8475
|
+
*/
|
|
8476
|
+
postDocumentConfigurationPreview(body: DocumentConfigurationsPreviewIn): Observable<DocumentConfigurationsPreviewOut>;
|
|
8477
|
+
/**
|
|
8478
|
+
* Retrieves the shipment documents associated with a document configuration
|
|
8479
|
+
* @param {number} id - The unique identifier of the document configuration
|
|
8480
|
+
* @returns {Observable<ShipmentDocumentsOut>} observable containing the shipment documents
|
|
8481
|
+
* */
|
|
8482
|
+
getDocuments(id: number): Observable<ShipmentDocumentsOut>;
|
|
8476
8483
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiShipmentsService, never>;
|
|
8477
8484
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiShipmentsService>;
|
|
8478
8485
|
}
|
|
@@ -8822,6 +8829,87 @@ declare class ApiSurveysService {
|
|
|
8822
8829
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiSurveysService>;
|
|
8823
8830
|
}
|
|
8824
8831
|
|
|
8832
|
+
declare enum PrintMode {
|
|
8833
|
+
PRINT = "PRINT",
|
|
8834
|
+
DISPLAY = "DISPLAY",
|
|
8835
|
+
BOTH = "BOTH"
|
|
8836
|
+
}
|
|
8837
|
+
declare enum PrintableFormat {
|
|
8838
|
+
PDF = "pdf",
|
|
8839
|
+
ZPL2 = "zpl2"
|
|
8840
|
+
}
|
|
8841
|
+
declare enum PrintersType {
|
|
8842
|
+
LABEL = "label",
|
|
8843
|
+
RECEIPT = "receipt",
|
|
8844
|
+
OTHERS = "others"
|
|
8845
|
+
}
|
|
8846
|
+
|
|
8847
|
+
interface Printable {
|
|
8848
|
+
content: string;
|
|
8849
|
+
type: PrintersType;
|
|
8850
|
+
format: PrintableFormat;
|
|
8851
|
+
}
|
|
8852
|
+
|
|
8853
|
+
type Printer = {
|
|
8854
|
+
name: PrintersType;
|
|
8855
|
+
configured: boolean;
|
|
8856
|
+
};
|
|
8857
|
+
type SetUpData = {
|
|
8858
|
+
country: Country;
|
|
8859
|
+
printMode: PrintMode;
|
|
8860
|
+
};
|
|
8861
|
+
type AvailablePrintersOut = {
|
|
8862
|
+
printer: {
|
|
8863
|
+
name: string;
|
|
8864
|
+
}[];
|
|
8865
|
+
};
|
|
8866
|
+
|
|
8867
|
+
declare class PrintersService {
|
|
8868
|
+
private environments;
|
|
8869
|
+
private http;
|
|
8870
|
+
availablePrinters$: BehaviorSubject<Printer[]>;
|
|
8871
|
+
private printMode;
|
|
8872
|
+
private printers;
|
|
8873
|
+
/**
|
|
8874
|
+
* Retrieves the print URL from the environments configuration or defaults to 'http://localhost:9100'
|
|
8875
|
+
* if not specified.
|
|
8876
|
+
*
|
|
8877
|
+
* @return {string} The URL to be used for printing.
|
|
8878
|
+
*/
|
|
8879
|
+
get url(): string;
|
|
8880
|
+
/**
|
|
8881
|
+
* Prints or displays a document based on the current print mode.
|
|
8882
|
+
* It can handle printing to a physical printer, displaying in the browser,
|
|
8883
|
+
* or both simultaneously.
|
|
8884
|
+
*
|
|
8885
|
+
* @param {Printable} document - The document to be printed or displayed.
|
|
8886
|
+
* @return {Promise<void>} A promise that resolves when the printing or displaying process is complete, or rejects if an error occurs.
|
|
8887
|
+
*/
|
|
8888
|
+
print(document: Printable): Promise<void>;
|
|
8889
|
+
/**
|
|
8890
|
+
* Configures and initializes the print settings based on the provided parameters.
|
|
8891
|
+
*
|
|
8892
|
+
* @param {Object} config - The configuration object to set up the print mode and manage printers.
|
|
8893
|
+
* @param {string} config.country - The country code used to determine printer configurations.
|
|
8894
|
+
* @param {PrintMode} config.printMode - The mode of printing, defining whether to use print, digital, or both.
|
|
8895
|
+
* @return {void} This method does not return any value.
|
|
8896
|
+
*/
|
|
8897
|
+
setUp({ country, printMode }: SetUpData): void;
|
|
8898
|
+
/**
|
|
8899
|
+
* Resets the printers list and updates the availablePrinters$ observable.
|
|
8900
|
+
* The method clears the current list of printers, emits the updated empty list
|
|
8901
|
+
* through the availablePrinters$ observable, and finalizes the observable stream.
|
|
8902
|
+
*
|
|
8903
|
+
* @return {void} No return value.
|
|
8904
|
+
*/
|
|
8905
|
+
setDown(): void;
|
|
8906
|
+
private sendToPrinter;
|
|
8907
|
+
private sendToBrowser;
|
|
8908
|
+
private checkPrinters;
|
|
8909
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PrintersService, never>;
|
|
8910
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PrintersService>;
|
|
8911
|
+
}
|
|
8912
|
+
|
|
8825
8913
|
declare enum PaymentTypeCode {
|
|
8826
8914
|
CASH = "cash",
|
|
8827
8915
|
CHECK = "check",
|
|
@@ -8962,5 +9050,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
|
|
|
8962
9050
|
[header: string]: string | string[];
|
|
8963
9051
|
};
|
|
8964
9052
|
|
|
8965
|
-
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, ShipmentIncomeTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
8966
|
-
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, 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, 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, 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, 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, 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 };
|
|
9053
|
+
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 };
|
|
9054
|
+
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, CountryToDocumentConfig, CountryToExportReason, CourierCheckOutPackesOut, 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, 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, ShipmentDocument, ShipmentDocumentsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsLandingReportOut, ShipmentsReportOut, 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, 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 };
|