@experteam-mx/ngx-services 20.9.8 → 20.10.0

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
@@ -17,18 +17,34 @@ type HttpCacheRoute = {
17
17
  * Represents the configuration settings for the application's environment.
18
18
  * This type includes various API endpoint URLs, authentication details, caching options, and other relevant settings.
19
19
  *
20
- * Properties:
21
- * - apiAuditsUrl: The URL for the audits API endpoint.
22
- * - apiCompaniesUrl: The URL for the companies API endpoint.
23
- * - apiEventsUrl: The URL for the events API endpoint.
24
- * - apiInvoicesUrl: The URL for the invoices API endpoint.
25
- * - apiReportsUrl: The URL for the reports API endpoint.
26
- * - apiSecurityUrl: The URL for the security-related API endpoint.
27
- * - apiShipmentUrl: The URL for the shipment API endpoint.
28
- * - authCookie: The name of the authentication cookie used for user sessions.
29
- * - cacheRoutes: Optional. Opt-in HTTP cache rules; first matching pattern wins.
30
- * - printUrl: Optional. The URL used for generating or downloading printable documents.
31
- * - secretKey: A secret key used for authentication or other secure operations.
20
+ * Environment properties:
21
+ * - apiBillingCO, apiBillingDO, apiBillingGT, apiBillingMX, apiBillingPA, apiBillingSV: URLs for region-specific billing APIs.
22
+ * - apiCashOperationsUrl: URL for cash operations API.
23
+ * - apiCatalogsUrl: URL for catalog APIs.
24
+ * - apiCompaniesUrl: URL for the companies API endpoint.
25
+ * - apiCompositionUrl: URL for composition API.
26
+ * - apiCustomsUrl: URL for customs API.
27
+ * - apiDiscountsUrl: URL for discounts API.
28
+ * - apiDropoffUrl: URL for dropoff API endpoint.
29
+ * - apiEToolsAutoBilling: URL for auto billing tools.
30
+ * - apiEventsUrl: URL for the events API endpoint.
31
+ * - apiExternalOperationsUrl: URL for external operations API.
32
+ * - apiInventoriesUrl: URL for inventories API.
33
+ * - apiInvoicesUrl: URL for the invoices API endpoint.
34
+ * - apiNotificationsUrl: URL for notifications API.
35
+ * - apiOpenItemsUrl: URL for open items API.
36
+ * - apiQuotesUrl: URL for quotes API.
37
+ * - apiReportsUrl: URL for the reports API endpoint.
38
+ * - apiSecurityUrl: URL for security-related API endpoint.
39
+ * - apiServicesUrl: URL for services API.
40
+ * - apiShipmentUrl: URL for the shipment API endpoint.
41
+ * - apiSuppliesUrl: URL for supplies API.
42
+ * - apiSurveysUrl: URL for surveys API.
43
+ * - authCookie: Authentication cookie name for sessions.
44
+ * - cacheTtl: (Optional) Time-to-live (TTL) value for cached items.
45
+ * - printUrl: (Optional) URL for generating or downloading printable documents.
46
+ * - secretKey: Secret key for authentication or secure operations.
47
+ * - sockets: (Optional) Realtime socket config: includes app_key, url, port, and optional debug flag.
32
48
  */
33
49
  type Environment = {
34
50
  apiAuditsUrl?: string;
@@ -3605,6 +3621,13 @@ declare class ApiCompaniesService {
3605
3621
  * @return {Observable<{}>} An observable containing the response data after the employee is deleted.
3606
3622
  */
3607
3623
  deleteEmployee(id: number): Observable<{}>;
3624
+ /**
3625
+ * Exports the filtered employees list as a PDF file.
3626
+ *
3627
+ * @param {QueryParams} params - Query parameters used to filter the employees included in the export.
3628
+ * @return {Observable<HttpResponse<ArrayBuffer>>} An observable that emits the HTTP response containing the PDF as an ArrayBuffer.
3629
+ */
3630
+ getEmployeesExportPdf(params: QueryParams): Observable<HttpResponse<ArrayBuffer>>;
3608
3631
  /**
3609
3632
  * Retrieves the list of employees for a specified location based on provided query parameters.
3610
3633
  *
@@ -4657,6 +4680,15 @@ interface Dropdown {
4657
4680
  suffix: string | null;
4658
4681
  _catalogName?: string | null;
4659
4682
  }
4683
+ interface DocumentCustoms extends SymfonyModel {
4684
+ countryId: string;
4685
+ code: string;
4686
+ name: string;
4687
+ description: string;
4688
+ shipmentContentTypes: number[];
4689
+ shipmentScopes: number[];
4690
+ pdf: string;
4691
+ }
4660
4692
 
4661
4693
  type FieldsOut = {
4662
4694
  total: number;
@@ -4747,6 +4779,25 @@ type RulesByCriteriaOut = {
4747
4779
  total: number;
4748
4780
  rules: RuleByCriteria[];
4749
4781
  };
4782
+ type DocumentsByCountryIn = {
4783
+ countryId: number;
4784
+ includeIndemnityLetter: boolean;
4785
+ includePdf: boolean;
4786
+ shipmentContentTypeId: number;
4787
+ shipmentScopeId: number;
4788
+ shipmentId?: number;
4789
+ };
4790
+ type DocumentsByCountryOut = {
4791
+ total: number;
4792
+ documents: DocumentCustoms[];
4793
+ };
4794
+ type DocumentsPrintIn = {
4795
+ countryId: number;
4796
+ code: string;
4797
+ };
4798
+ type DocumentsPrintOut = {
4799
+ pdf: string;
4800
+ };
4750
4801
 
4751
4802
  declare class ApiCustomsService {
4752
4803
  private environments;
@@ -4848,6 +4899,20 @@ declare class ApiCustomsService {
4848
4899
  * @return {Observable<CountryGroupsOut>} An Observable that emits the list of country groups.
4849
4900
  */
4850
4901
  getCountryGroups(params: QueryParams): Observable<CountryGroupsOut>;
4902
+ /**
4903
+ * Retrieves the documents for a specific country.
4904
+ *
4905
+ * @param {DocumentsByCountryIn} body - The body of the request.
4906
+ * @return {Observable<DocumentsByCountryOut>} An Observable that emits the documents.
4907
+ */
4908
+ postDocumentsByCountry(body: DocumentsByCountryIn): Observable<DocumentsByCountryOut>;
4909
+ /**
4910
+ * Prints a document for a specific country and code.
4911
+ *
4912
+ * @param {DocumentsPrintIn} body - The body of the request.
4913
+ * @return {Observable<DocumentsPrintOut>} An Observable that emits the printed document.
4914
+ */
4915
+ postDocumentsPrint(body: DocumentsPrintIn): Observable<DocumentsPrintOut>;
4851
4916
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiCustomsService, never>;
4852
4917
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiCustomsService>;
4853
4918
  }
@@ -4928,6 +4993,47 @@ interface CustomerRestriction extends ActiveLessLaravelModel {
4928
4993
  phone_code?: string;
4929
4994
  phone_country_code?: string;
4930
4995
  }
4996
+ interface RegisteredCustomer extends LaravelModel {
4997
+ identification_type_id: number;
4998
+ identification_number: string;
4999
+ name: string;
5000
+ email: string;
5001
+ phone_number?: string;
5002
+ phone_code?: string;
5003
+ phone_extension?: string;
5004
+ phone_country_code?: string;
5005
+ cellphone_number?: string;
5006
+ cellphone_code?: string;
5007
+ cellphone_country_code?: string;
5008
+ company_country_id: number;
5009
+ date_of_birth: string;
5010
+ }
5011
+ interface RegisteredCustomerShipment extends LaravelModel {
5012
+ registered_customer_id: number;
5013
+ shipment_id: number;
5014
+ shipment_tracking_number: string;
5015
+ shipment_product: string;
5016
+ shipment_total: number;
5017
+ shipment_content_type_id: number;
5018
+ shipment_scope_id: number;
5019
+ shipment_group_id: number;
5020
+ shipment_local_updated_at: string;
5021
+ }
5022
+ interface SearchTopCustomer extends ActiveLessLaravelModel {
5023
+ identification_type_id: number;
5024
+ identification_number: string;
5025
+ contact_name_1: string;
5026
+ contact_name_2: string;
5027
+ contact_name_3: string;
5028
+ email: string;
5029
+ phone_number: string;
5030
+ discount_percentage: number;
5031
+ account: string;
5032
+ shipment_scopes: number[];
5033
+ company_country_id: number;
5034
+ company_name: string;
5035
+ level: string;
5036
+ }
4931
5037
 
4932
5038
  type DiscountIn = {
4933
5039
  code: string;
@@ -5017,6 +5123,47 @@ type CustomerRestrictionInV2 = CustomerRestrictionIn & {
5017
5123
  type CustomerRestrictionOut = {
5018
5124
  customer_restriction: CustomerRestriction;
5019
5125
  };
5126
+ type OperationsSearchCustomerV2In = {
5127
+ identification_type_id?: number;
5128
+ identification_number?: string;
5129
+ phone_code?: string;
5130
+ phone_number?: string;
5131
+ email?: string;
5132
+ };
5133
+ type LoyaltyRuleWithPeriod = LoyaltyRule & {
5134
+ loyalty_period: LoyaltyPeriod;
5135
+ };
5136
+ type OperationsSearchCustomerRegisteredOut = {
5137
+ customer: RegisteredCustomer;
5138
+ shipments: RegisteredCustomerShipment[];
5139
+ loyalty_rule: LoyaltyRuleWithPeriod | null;
5140
+ discount_products: string[];
5141
+ total_shipments: number;
5142
+ customer_restriction: CustomerRestriction | null;
5143
+ };
5144
+ type OperationsSearchCustomerTopOut = {
5145
+ customer: SearchTopCustomer;
5146
+ customer_restriction: CustomerRestriction | null;
5147
+ };
5148
+ type OperationsSearchCustomerV2Out = [] | OperationsSearchCustomerRegisteredOut | OperationsSearchCustomerTopOut;
5149
+ type RegisteredCustomerIn = {
5150
+ identification_type_id: number;
5151
+ identification_number: string;
5152
+ name: string;
5153
+ email: string;
5154
+ phone_number?: string;
5155
+ phone_code?: string;
5156
+ phone_country_code?: string;
5157
+ cellphone_number?: string;
5158
+ cellphone_code?: string;
5159
+ cellphone_country_code?: string;
5160
+ company_country_id: number;
5161
+ date_of_birth: string;
5162
+ is_active: boolean;
5163
+ };
5164
+ type RegisteredCustomerOut = {
5165
+ registered_customer: RegisteredCustomer;
5166
+ };
5020
5167
 
5021
5168
  declare class ApiDiscountsService {
5022
5169
  private environments;
@@ -5034,6 +5181,27 @@ declare class ApiDiscountsService {
5034
5181
  * @return {Observable<DiscountsOut>} An Observable that emits the retrieved discounts data.
5035
5182
  */
5036
5183
  getDiscounts(params: QueryParams): Observable<DiscountsOut>;
5184
+ /**
5185
+ * Retrieves a list of active discounts.
5186
+ *
5187
+ * @param {QueryParams} [params] - Optional query parameters to filter active discounts.
5188
+ * @return {Observable<DiscountsOut>} An Observable that emits the active discounts data.
5189
+ */
5190
+ getDiscountsActives(params?: QueryParams): Observable<DiscountsOut>;
5191
+ /**
5192
+ * Searches for a customer by identification, phone, or email (Version 2).
5193
+ *
5194
+ * @param {OperationsSearchCustomerV2In} body - The search criteria for the customer.
5195
+ * @return {Observable<OperationsSearchCustomerV2Out>} An Observable that emits the search result.
5196
+ */
5197
+ postOperationsSearchCustomerV2(body: OperationsSearchCustomerV2In): Observable<OperationsSearchCustomerV2Out>;
5198
+ /**
5199
+ * Creates a registered customer (Version 2).
5200
+ *
5201
+ * @param {RegisteredCustomerIn} body - The registered customer data to create.
5202
+ * @return {Observable<RegisteredCustomerOut>} An Observable that emits the created registered customer.
5203
+ */
5204
+ postRegisteredCustomersV2(body: RegisteredCustomerIn): Observable<RegisteredCustomerOut>;
5037
5205
  /**
5038
5206
  * Sends a request to create or update discounts on the server.
5039
5207
  *
@@ -5187,6 +5355,14 @@ type ShipmentsEReceiptIn = {
5187
5355
  shipmentTrackingNumbers: string[];
5188
5356
  addresses: string[];
5189
5357
  };
5358
+ type CheckInPrintOut = {
5359
+ printLabel: string;
5360
+ clientPrintID: string;
5361
+ transactionId: string;
5362
+ };
5363
+ type OperationTicketsOut = {
5364
+ ticket: string;
5365
+ };
5190
5366
 
5191
5367
  declare class ApiDropoffsService {
5192
5368
  private environments;
@@ -5209,6 +5385,21 @@ declare class ApiDropoffsService {
5209
5385
  * @param {ShipmentsEReceiptIn} body - The EReceipt for Shipment data.
5210
5386
  */
5211
5387
  postShipmentsEReceipt(body: ShipmentsEReceiptIn): Observable<{}>;
5388
+ /**
5389
+ * Retrieves the check-in print payload for the given operation.
5390
+ *
5391
+ * @param {number} operationId - The unique identifier of the check-in operation to print.
5392
+ * @param {QueryParams} params - The query parameters used to customize the print request.
5393
+ * @return {Observable<CheckInPrintOut>} An observable that emits the check-in print data.
5394
+ */
5395
+ getCheckInPrint(operationId: number, params: QueryParams): Observable<CheckInPrintOut>;
5396
+ /**
5397
+ * Retrieves the printable ticket payload for the given dropoff operation.
5398
+ *
5399
+ * @param {number} operationId - The unique identifier of the operation.
5400
+ * @return {Observable<OperationTicketsOut>} An observable that emits the operation ticket data.
5401
+ */
5402
+ getOperationTickets(operationId: number): Observable<OperationTicketsOut>;
5212
5403
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiDropoffsService, never>;
5213
5404
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiDropoffsService>;
5214
5405
  }
@@ -7024,7 +7215,7 @@ declare class ApiInvoicesService {
7024
7215
  * @param documentId - Numeric identifier of the document to print.
7025
7216
  * @returns An Observable that emits the ticket data for the given document.
7026
7217
  */
7027
- getOperationPrintTicket(documentId: number): Observable<OperationPrintTicketOut>;
7218
+ getOperationPrintTicket(documentId: number, params?: QueryParams): Observable<OperationPrintTicketOut>;
7028
7219
  /**
7029
7220
  * Retrieves the printable document payload for a billing operation.
7030
7221
  *
@@ -7048,7 +7239,7 @@ declare class ApiInvoicesService {
7048
7239
  * @param {number} id - The unique identifier of the collection for which the receipt needs to be retrieved.
7049
7240
  * @return {Observable<PrintCollectionReceiptOut>} An observable containing the collection receipt data.
7050
7241
  */
7051
- getPrintCollectionReceipt(id: number): Observable<PrintCollectionReceiptOut>;
7242
+ getOperationPrintCollectionReceipt(id: number): Observable<PrintCollectionReceiptOut>;
7052
7243
  /**
7053
7244
  * Handles the account payment operation by sending a POST request to the specified endpoint.
7054
7245
  * Processes the response and returns the operation data.
@@ -9273,6 +9464,23 @@ type ShipmentSignaturePageOut = {
9273
9464
  type ShipmentDocumentsOut = {
9274
9465
  shipmentDocuments: ShipmentDocument[];
9275
9466
  };
9467
+ type ShipmentLabelOut = {
9468
+ shipmentLabel: {
9469
+ format: string;
9470
+ base64: string;
9471
+ };
9472
+ transactionId: string;
9473
+ };
9474
+ type CommercialInvoiceLabelIn = {
9475
+ date: string;
9476
+ };
9477
+ type CommercialInvoiceLabelOut = {
9478
+ commercialInvoiceLabel: {
9479
+ format: 'pdf';
9480
+ base64: string;
9481
+ };
9482
+ transactionId: string;
9483
+ };
9276
9484
 
9277
9485
  declare class ApiShipmentsService {
9278
9486
  private environments;
@@ -9390,6 +9598,20 @@ declare class ApiShipmentsService {
9390
9598
  * @returns {Observable<ShipmentDocumentsOut>} observable containing the shipment documents
9391
9599
  * */
9392
9600
  getDocuments(id: number): Observable<ShipmentDocumentsOut>;
9601
+ /**
9602
+ * Retrieves the label for a specific shipment
9603
+ * @param {number} shipmentId - The unique identifier of the shipment to retrieve the label for
9604
+ * @returns {Observable<ShipmentLabelOut>} Observable containing the label for the shipment
9605
+ */
9606
+ getShipmentLabel(shipmentId: number, format?: 'pdf'): Observable<ShipmentLabelOut>;
9607
+ /**
9608
+ * Generates a commercial invoice label for the specified shipment.
9609
+ *
9610
+ * @param {number} shipmentId - The unique identifier of the shipment.
9611
+ * @param {CommercialInvoiceLabelIn} body - Payload containing the invoice label date.
9612
+ * @returns {Observable<CommercialInvoiceLabelOut>} Observable emitting the generated commercial invoice label for the shipment.
9613
+ */
9614
+ postCommercialInvoiceLabel(shipmentId: number, body: CommercialInvoiceLabelIn): Observable<CommercialInvoiceLabelOut>;
9393
9615
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiShipmentsService, never>;
9394
9616
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiShipmentsService>;
9395
9617
  }
@@ -9761,12 +9983,14 @@ interface Printable {
9761
9983
  }
9762
9984
 
9763
9985
  type Printer = {
9764
- name: PrintersType;
9765
9986
  configured: boolean;
9987
+ name: string;
9988
+ type: PrintersType;
9766
9989
  };
9767
9990
  type SetUpData = {
9768
9991
  country: Country;
9769
9992
  printMode: PrintMode;
9993
+ printServiceUrl?: string;
9770
9994
  };
9771
9995
  type AvailablePrintersOut = {
9772
9996
  printer: {
@@ -9775,11 +9999,11 @@ type AvailablePrintersOut = {
9775
9999
  };
9776
10000
 
9777
10001
  declare class PrintersService {
9778
- private environments;
9779
10002
  private http;
9780
10003
  availablePrinters$: BehaviorSubject<Printer[]>;
9781
- private printMode;
9782
10004
  private printers;
10005
+ private printMode;
10006
+ private printServiceUrl;
9783
10007
  /**
9784
10008
  * Retrieves the print URL from the environments configuration or defaults to 'http://localhost:9100'
9785
10009
  * if not specified.
@@ -9787,6 +10011,12 @@ declare class PrintersService {
9787
10011
  * @return {string} The URL to be used for printing.
9788
10012
  */
9789
10013
  get url(): string;
10014
+ /**
10015
+ * Indicates whether any configured printers are available for use.
10016
+ *
10017
+ * @return {boolean} Returns true if at least one printer is configured; otherwise, false.
10018
+ */
10019
+ get usingPrinters(): boolean;
9790
10020
  /**
9791
10021
  * Prints or displays a document based on the current print mode.
9792
10022
  * It can handle printing to a physical printer, displaying in the browser,
@@ -9795,7 +10025,7 @@ declare class PrintersService {
9795
10025
  * @param {Printable} document - The document to be printed or displayed.
9796
10026
  * @return {Promise<void>} A promise that resolves when the printing or displaying process is complete, or rejects if an error occurs.
9797
10027
  */
9798
- print(document: Printable): Promise<void>;
10028
+ print(document: Printable, printMode?: PrintMode): Promise<void>;
9799
10029
  /**
9800
10030
  * Configures and initializes the print settings based on the provided parameters.
9801
10031
  *
@@ -9804,7 +10034,7 @@ declare class PrintersService {
9804
10034
  * @param {PrintMode} config.printMode - The mode of printing, defining whether to use print, digital, or both.
9805
10035
  * @return {void} This method does not return any value.
9806
10036
  */
9807
- setUp({ country, printMode }: SetUpData): void;
10037
+ setUp({ country, printMode, printServiceUrl }: SetUpData): void;
9808
10038
  /**
9809
10039
  * Resets the printers list and updates the availablePrinters$ observable.
9810
10040
  * The method clears the current list of printers, emits the updated empty list
@@ -9978,4 +10208,4 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
9978
10208
  };
9979
10209
 
9980
10210
  export { AccountTypeId, AccountTypeName, AlphaNumeric, ApiAuditsService, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCheckpointsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiDropoffsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, CustomerRoleType, DefaultValueType, DepositTypeCode, DocumentStatusCode, ENVIRONMENT_TOKEN, Event, Group, InventoryActions, InventoryControlType, InventoryErrorCodes, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, PrintMode, PrintableFormat, PrintersService, PrintersType, RouteModelType, ShipmentIncomeTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
9981
- export type { Account, AccountCategoriesOut, AccountCategory, AccountCompanyCountry, AccountCompanyCountryLocation, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountLocation, AccountLocationId, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, AccountWithDefault, AccountWithLocations, AccountsActivesOut, AccountsOut, ActiveLessLaravelModel, ActiveLessSymfonyModel, AddressPlaceDetail, AddressPlaceDetailIn, AddressPlaceDetailsOut, AddressSuggestion, AddressSuggestionIn, AddressSuggestionsOut, AddressToSignaturePage, AdyenAbortIn, AdyenAbortOut, AdyenPaymentIn, AdyenPaymentOut, ApiBillingConfigurable, ApiModel, ApiResponse, ApiSuccess, Attribute, AttributeIn, AttributeWithId, AuthLoginIn, AuthLoginOut, AuthMeOut, AuthUserLoginIn, AvailablePrintersOut, Bank, BankAccount, BankAccountType, BankAccountsOut, BillingConfig, BillingConfigIn, BillingConfigOut, BillingConfigsOut, BillingDetailsPayment, BillingDetailsReport, BillingDetailsReportOut, BillingPaCustomer, BillingPaCustomerOut, BoardingProcess, BoardingProcessHistory, BoardingProcessIdIn, BoardingProcessIn, BoardingProcessStatus, BookPickupToSignaturePage, BusinessPartyTraderType, BusinessPartyTraderTypesOut, CFDI, CancelPaymentReceiptIn, CancellationReason, CancellationReasonIn, CancellationReasonOut, CancellationReasonsOut, CashValueSummary, CashValueSummaryOut, Catalog, CatalogLess, CatalogsOut, ChangeLanguageIn, Checkpoint, CheckpointCode, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointInventory, CheckpointsInventoryOut, CheckpointsOut, City, Closing, ClosingIn, ClosingOut, ClosingPayment, CoCustomer, CoCustomerIn, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoGetCustomerOut, CoMunicipalitiesOut, CoMunicipality, CoPostCustomerOut, CoPostalCode, CoPostalCodesOut, CoTribute, CoTributesOut, CollectionPayment, CollectionPaymentsOut, CommercialInvoiceComposition, CommercialInvoiceItemToSignaturePage, CommercialInvoiceToSignaturePage, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, ConfirmTermsIn, Connection, ConnectionsOut, CountriesOut, Country, CountryCompanies, CountryCurrencyRate, CountryDocumentType, CountryDocumentTypesOut, CountryExchange, CountryGroups, CountryGroupsOut, CountryIn, CountryOut, CountryPaymentType, CountryPaymentTypeField, CountryPaymentTypeFieldIn, CountryPaymentTypeFieldOut, CountryPaymentTypeFieldsOut, CountryPaymentTypeIn, CountryPaymentTypeOut, CountryPaymentTypesOut, CountryReference, CountryReferenceCurrenciesOut, CountryReferenceCurrency, CountryReferenceCurrencyIn, CountryReferenceCurrencyOut, CountryReferenceExtraCharge, CountryReferenceExtraChargeIn, CountryReferenceExtraChargeOut, CountryReferenceIn, CountryReferenceOut, CountryReferenceProduct, CountryReferenceProductIn, CountryReferenceProductOut, CountryReferenceProductsOut, CountryReferencesOut, CountryToDocumentConfig, CountryToExportReason, CourierCheckOutPackesOut, CourierRoute, CourierRouteIn, CourierRouteOut, CourierRoutesOut, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerSurvey, CustomerSurveyFinishIn, CustomerSurveyIn, CustomerSurveyOut, CustomerType, CustomerTypesOut, CustomersOut, CustomsAttribute, CustomsAttributeValues, CustomsRule, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, Deposit, DepositIn, DepositOut, DepositSlipOut, DestinationCountry, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentConfiguration, DocumentConfigurationIn, DocumentConfigurationOut, DocumentConfigurationsOut, DocumentConfigurationsPreviewIn, DocumentConfigurationsPreviewOut, DocumentFunctionComposition, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeRangeIn, DocumentTypeRangeOut, DocumentTypeRangesOut, DocumentTypeReports, DocumentTypesOut, DocumentsTypesRangesCurrentStatusOut, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, EmbassyShipment, EmbassyShipmentIn, EmbassyShipmentOut, EmbassyShipmentsOut, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, EventRegister, EventRegistersOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportReason, ExportReasonIn, ExportReasonOut, ExportReasonTypes, ExportReasonTypesOut, ExportReasonsOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressCancellation, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentCancellationIn, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExternalShipmentsOut, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, ExtraChargeTax, ExtraChargeToSignaturePage, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, HistoriesReportOut, HistoryReport, HistoryReportCheckpoint, Holiday, HolidayIn, HolidayOut, HolidaysOut, HttpCacheRoute, IdentificationType, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeNumberValidationIn, IdentificationTypeNumberValidationOut, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, InventoriesReportOut, InventoryControl, InventoryControlIn, InventoryControlOut, InventoryControlsOut, InventoryLocationCapacityIn, InventoryLocationCapacityOut, InventoryReport, InvoiceCancellationIn, InvoiceReport, InvoiceTypeCustomParamsIn, InvoicesOut, ItemComposition, Language, LanguageOut, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, LocationEmployeesOut, LocationIn, LocationOut, LocationType, LocationTypeFields, LocationsOut, LoyaltyPeriod, LoyaltyPeriodIn, LoyaltyPeriodOut, LoyaltyPeriodsOut, LoyaltyRule, LoyaltyRuleIn, LoyaltyRuleOut, LoyaltyRulesOut, ManagementArea, ManagementAreasOut, ManifestMultipleIn, ManifestMultipleOut, MissingPackagesIn, MissingPackagesOut, Module, ModuleType, ModulesOut, MunicipalitiesOut, Municipality, Notification, NotificationConfiguration, NotificationConfigurationIn, NotificationConfigurationOut, NotificationIn, NotificationOut, NotificationStatus, NotificationType, NotificationsOut, NotificationsTypeOut, OpenItem, OpenItemIn, OpenItems, OpenItemsOut, Opening, OpeningCountryReferenceCurrency, OpeningHistory, OpeningIn, OpeningOut, OpeningPreClosingRequestIn, OpeningStatus, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, OpeningsOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentCustomerIn, OperationDocumentCustomerOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintTicketOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, Package5, Package9, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsOut, PackageMissing, PackageOnHoldIn, PackageOnHoldOut, PackageReassignPositionIn, PackageReassignPositionOut, PackageReport, PackageValidationActionIn, PackageValidationActionOut, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueOut, ParametersByModelIn, ParametersOut, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, PieceSupplyToSignaturePage, PiecesToSignaturePage, Pivot, PostalCode, PostalCodeBillings, PostalCodeFormat, PostalCodesOut, PostalLocation, PostalLocationsOut, PriceOverrideApprover, PriceOverrideApproversOut, PriceOverrideReason, PriceOverrideReasonsOut, PrintCollectionReceiptOut, Printable, Printer, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, ProductsOut, 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, RpaShipmentNotification, RpaShipmentNotificationIn, RpaShipmentNotificationOut, RpaShipmentNotificationsOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, SetUpData, ShipmentAddressComposition, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentCustoms, ShipmentDataToSignaturePage, ShipmentDescription, ShipmentDescriptionsOut, ShipmentDocument, ShipmentDocumentsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsopComposition, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceComposition, ShipmentPieceSupplyComposition, ShipmentProductComposition, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageConfirmationIn, ShipmentSignaturePageIn, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsBookingIn, ShipmentsEReceiptIn, ShipmentsLandingReportOut, ShipmentsOut, ShipmentsReportOut, SignaturePage, SignaturePageAnswers, SignaturePageConfirmation, SignaturePageConfirmationGenerateOut, SignaturePageConfirmationOut, SignaturePageSetting, SignaturePageSettingIn, State, Status, Status5, StatusesOut, StockUpdatePackagesOut, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, Survey, SurveyIn, SurveyOut, SurveyQuestion, SurveyQuestionIn, SurveyQuestionOut, SurveyQuestionsOut, SurveysOut, SymfonyModel, System, SystemEntitiesIn, SystemEntitiesOut, SystemIn, SystemOut, SystemsOut, TDXAccountSetting, TDXAccountSettingsIn, TDXAccountSettingsOut, TDXAccountsSettingsOut, TaxComposition, TaxReport, TaxReportTax, TaxToSignaturePage, TaxesReportOut, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TradingTransactionTypesOut, TransactionLog, TransactionLogsDownloadOut, TransactionLogsOut, TransferenceType, TranslateLang, Translations, UniqueFolio, UniqueFolioIn, UniqueFolioOut, UniqueFoliosOut, Unit, UnitsOut, UpsellingIndicator, UpsellingIndicatorCountry, UpsellingIndicatorIn, UpsellingIndicatorMethod, UpsellingIndicatorMethodOut, UpsellingIndicatorMethodsOut, UpsellingIndicatorOut, UpsellingIndicatorProduct, UpsellingIndicatorsOut, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZoneOut, ZonesOut };
10211
+ export type { Account, AccountCategoriesOut, AccountCategory, AccountCompanyCountry, AccountCompanyCountryLocation, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountLocation, AccountLocationId, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, AccountWithDefault, AccountWithLocations, AccountsActivesOut, AccountsOut, ActiveLessLaravelModel, ActiveLessSymfonyModel, AddressPlaceDetail, AddressPlaceDetailIn, AddressPlaceDetailsOut, AddressSuggestion, AddressSuggestionIn, AddressSuggestionsOut, AddressToSignaturePage, AdyenAbortIn, AdyenAbortOut, AdyenPaymentIn, AdyenPaymentOut, ApiBillingConfigurable, ApiModel, ApiResponse, ApiSuccess, Attribute, AttributeIn, AttributeWithId, AuthLoginIn, AuthLoginOut, AuthMeOut, AuthUserLoginIn, AvailablePrintersOut, Bank, BankAccount, BankAccountType, BankAccountsOut, BillingConfig, BillingConfigIn, BillingConfigOut, BillingConfigsOut, BillingDetailsPayment, BillingDetailsReport, BillingDetailsReportOut, BillingPaCustomer, BillingPaCustomerOut, BoardingProcess, BoardingProcessHistory, BoardingProcessIdIn, BoardingProcessIn, BoardingProcessStatus, BookPickupToSignaturePage, BusinessPartyTraderType, BusinessPartyTraderTypesOut, CFDI, CancelPaymentReceiptIn, CancellationReason, CancellationReasonIn, CancellationReasonOut, CancellationReasonsOut, CashValueSummary, CashValueSummaryOut, Catalog, CatalogLess, CatalogsOut, ChangeLanguageIn, CheckInPrintOut, Checkpoint, CheckpointCode, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointInventory, CheckpointsInventoryOut, CheckpointsOut, City, Closing, ClosingIn, ClosingOut, ClosingPayment, CoCustomer, CoCustomerIn, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoGetCustomerOut, CoMunicipalitiesOut, CoMunicipality, CoPostCustomerOut, CoPostalCode, CoPostalCodesOut, CoTribute, CoTributesOut, CollectionPayment, CollectionPaymentsOut, CommercialInvoiceComposition, CommercialInvoiceItemToSignaturePage, CommercialInvoiceLabelIn, CommercialInvoiceLabelOut, CommercialInvoiceToSignaturePage, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, ConfirmTermsIn, Connection, ConnectionsOut, CountriesOut, Country, CountryCompanies, CountryCurrencyRate, CountryDocumentType, CountryDocumentTypesOut, CountryExchange, CountryGroups, CountryGroupsOut, CountryIn, CountryOut, CountryPaymentType, CountryPaymentTypeField, CountryPaymentTypeFieldIn, CountryPaymentTypeFieldOut, CountryPaymentTypeFieldsOut, CountryPaymentTypeIn, CountryPaymentTypeOut, CountryPaymentTypesOut, CountryReference, CountryReferenceCurrenciesOut, CountryReferenceCurrency, CountryReferenceCurrencyIn, CountryReferenceCurrencyOut, CountryReferenceExtraCharge, CountryReferenceExtraChargeIn, CountryReferenceExtraChargeOut, CountryReferenceIn, CountryReferenceOut, CountryReferenceProduct, CountryReferenceProductIn, CountryReferenceProductOut, CountryReferenceProductsOut, CountryReferencesOut, CountryToDocumentConfig, CountryToExportReason, CourierCheckOutPackesOut, CourierRoute, CourierRouteIn, CourierRouteOut, CourierRoutesOut, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerSurvey, CustomerSurveyFinishIn, CustomerSurveyIn, CustomerSurveyOut, CustomerType, CustomerTypesOut, CustomersOut, CustomsAttribute, CustomsAttributeValues, CustomsRule, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, Deposit, DepositIn, DepositOut, DepositSlipOut, DestinationCountry, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentConfiguration, DocumentConfigurationIn, DocumentConfigurationOut, DocumentConfigurationsOut, DocumentConfigurationsPreviewIn, DocumentConfigurationsPreviewOut, DocumentCustoms, DocumentFunctionComposition, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeRangeIn, DocumentTypeRangeOut, DocumentTypeRangesOut, DocumentTypeReports, DocumentTypesOut, DocumentsByCountryIn, DocumentsByCountryOut, DocumentsPrintIn, DocumentsPrintOut, DocumentsTypesRangesCurrentStatusOut, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, EmbassyShipment, EmbassyShipmentIn, EmbassyShipmentOut, EmbassyShipmentsOut, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, EventRegister, EventRegistersOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportReason, ExportReasonIn, ExportReasonOut, ExportReasonTypes, ExportReasonTypesOut, ExportReasonsOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressCancellation, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentCancellationIn, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExternalShipmentsOut, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, ExtraChargeTax, ExtraChargeToSignaturePage, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, HistoriesReportOut, HistoryReport, HistoryReportCheckpoint, Holiday, HolidayIn, HolidayOut, HolidaysOut, HttpCacheRoute, IdentificationType, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeNumberValidationIn, IdentificationTypeNumberValidationOut, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, InventoriesReportOut, InventoryControl, InventoryControlIn, InventoryControlOut, InventoryControlsOut, InventoryLocationCapacityIn, InventoryLocationCapacityOut, InventoryReport, InvoiceCancellationIn, InvoiceReport, InvoiceTypeCustomParamsIn, InvoicesOut, ItemComposition, Language, LanguageOut, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, LocationEmployeesOut, LocationIn, LocationOut, LocationType, LocationTypeFields, LocationsOut, LoyaltyPeriod, LoyaltyPeriodIn, LoyaltyPeriodOut, LoyaltyPeriodsOut, LoyaltyRule, LoyaltyRuleIn, LoyaltyRuleOut, LoyaltyRuleWithPeriod, LoyaltyRulesOut, ManagementArea, ManagementAreasOut, ManifestMultipleIn, ManifestMultipleOut, MissingPackagesIn, MissingPackagesOut, Module, ModuleType, ModulesOut, MunicipalitiesOut, Municipality, Notification, NotificationConfiguration, NotificationConfigurationIn, NotificationConfigurationOut, NotificationIn, NotificationOut, NotificationStatus, NotificationType, NotificationsOut, NotificationsTypeOut, OpenItem, OpenItemIn, OpenItems, OpenItemsOut, Opening, OpeningCountryReferenceCurrency, OpeningHistory, OpeningIn, OpeningOut, OpeningPreClosingRequestIn, OpeningStatus, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, OpeningsOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentCustomerIn, OperationDocumentCustomerOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintTicketOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationTicketsOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OperationsSearchCustomerRegisteredOut, OperationsSearchCustomerTopOut, OperationsSearchCustomerV2In, OperationsSearchCustomerV2Out, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, Package5, Package9, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsOut, PackageMissing, PackageOnHoldIn, PackageOnHoldOut, PackageReassignPositionIn, PackageReassignPositionOut, PackageReport, PackageValidationActionIn, PackageValidationActionOut, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueOut, ParametersByModelIn, ParametersOut, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, PieceSupplyToSignaturePage, PiecesToSignaturePage, Pivot, PostalCode, PostalCodeBillings, PostalCodeFormat, PostalCodesOut, PostalLocation, PostalLocationsOut, PriceOverrideApprover, PriceOverrideApproversOut, PriceOverrideReason, PriceOverrideReasonsOut, PrintCollectionReceiptOut, Printable, Printer, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, ProductsOut, 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, RegisteredCustomer, RegisteredCustomerIn, RegisteredCustomerOut, RegisteredCustomerShipment, ReportExternalShipment, ReportExternalShipmentAddress, ReturnFirstMileIn, ReturnFirstMileOut, Role, RoleIn, RoleOut, RoleType, RoleTypesOut, RolesOut, RpaShipmentNotification, RpaShipmentNotificationIn, RpaShipmentNotificationOut, RpaShipmentNotificationsOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, SearchTopCustomer, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, SetUpData, ShipmentAddressComposition, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentCustoms, ShipmentDataToSignaturePage, ShipmentDescription, ShipmentDescriptionsOut, ShipmentDocument, ShipmentDocumentsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsopComposition, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLabelOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceComposition, ShipmentPieceSupplyComposition, ShipmentProductComposition, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageConfirmationIn, ShipmentSignaturePageIn, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsBookingIn, ShipmentsEReceiptIn, ShipmentsLandingReportOut, ShipmentsOut, ShipmentsReportOut, SignaturePage, SignaturePageAnswers, SignaturePageConfirmation, SignaturePageConfirmationGenerateOut, SignaturePageConfirmationOut, SignaturePageSetting, SignaturePageSettingIn, State, Status, Status5, StatusesOut, StockUpdatePackagesOut, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, Survey, SurveyIn, SurveyOut, SurveyQuestion, SurveyQuestionIn, SurveyQuestionOut, SurveyQuestionsOut, SurveysOut, SymfonyModel, System, SystemEntitiesIn, SystemEntitiesOut, SystemIn, SystemOut, SystemsOut, TDXAccountSetting, TDXAccountSettingsIn, TDXAccountSettingsOut, TDXAccountsSettingsOut, TaxComposition, TaxReport, TaxReportTax, TaxToSignaturePage, TaxesReportOut, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TradingTransactionTypesOut, TransactionLog, TransactionLogsDownloadOut, TransactionLogsOut, TransferenceType, TranslateLang, Translations, UniqueFolio, UniqueFolioIn, UniqueFolioOut, UniqueFoliosOut, Unit, UnitsOut, UpsellingIndicator, UpsellingIndicatorCountry, UpsellingIndicatorIn, UpsellingIndicatorMethod, UpsellingIndicatorMethodOut, UpsellingIndicatorMethodsOut, UpsellingIndicatorOut, UpsellingIndicatorProduct, UpsellingIndicatorsOut, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZoneOut, ZonesOut };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experteam-mx/ngx-services",
3
- "version": "20.9.8",
3
+ "version": "20.10.0",
4
4
  "description": "Angular common services for Experteam apps",
5
5
  "author": "Experteam Cía. Ltda.",
6
6
  "keywords": [