@experteam-mx/ngx-services 20.6.0 → 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/fesm2022/experteam-mx-ngx-services.mjs +321 -130
- package/fesm2022/experteam-mx-ngx-services.mjs.map +1 -1
- package/index.d.ts +178 -36
- package/package.json +3 -3
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
|
|
|
@@ -6007,8 +6007,11 @@ type InvoiceTypeCustomParamsIn = {
|
|
|
6007
6007
|
identificationNumber: string;
|
|
6008
6008
|
identificationTypeid: number;
|
|
6009
6009
|
};
|
|
6010
|
+
type OperationPrintTicketOut = {
|
|
6011
|
+
ticket: string[];
|
|
6012
|
+
};
|
|
6010
6013
|
type OperationPrintDocumentOut = {
|
|
6011
|
-
document: string;
|
|
6014
|
+
document: string[];
|
|
6012
6015
|
};
|
|
6013
6016
|
type CustomerTypesOut = {
|
|
6014
6017
|
customer_types: CustomerType[];
|
|
@@ -6206,6 +6209,26 @@ declare class ApiInvoicesService {
|
|
|
6206
6209
|
* @return {string} The API URL for invoices.
|
|
6207
6210
|
*/
|
|
6208
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>;
|
|
6209
6232
|
/**
|
|
6210
6233
|
* Sends an operation document to the server and processes the response.
|
|
6211
6234
|
*
|
|
@@ -6280,13 +6303,6 @@ declare class ApiInvoicesService {
|
|
|
6280
6303
|
* @return {Observable<OperationShipmentExternalOut>} An observable that emits the result of the external payment operation for a shipment.
|
|
6281
6304
|
*/
|
|
6282
6305
|
postOperationShipmentExternalPayment(params: OperationShipmentExternalIn): Observable<OperationShipmentExternalOut>;
|
|
6283
|
-
/**
|
|
6284
|
-
* Retrieves and returns billing operation print details for a given document ID.
|
|
6285
|
-
*
|
|
6286
|
-
* @param {number} documentId - The ID of the document for which to fetch the print billing operation details.
|
|
6287
|
-
* @return {Observable<OperationPrintDocumentOut>} An observable emitting the print billing operation details for the specified document.
|
|
6288
|
-
*/
|
|
6289
|
-
getOperationPrintDocument(documentId: number): Observable<OperationPrintDocumentOut>;
|
|
6290
6306
|
/**
|
|
6291
6307
|
* Fetches all country payment types.
|
|
6292
6308
|
*
|
|
@@ -8174,13 +8190,27 @@ interface EmbassyShipment extends SymfonyModel {
|
|
|
8174
8190
|
createdAt: string;
|
|
8175
8191
|
updatedAt: string;
|
|
8176
8192
|
}
|
|
8177
|
-
interface
|
|
8178
|
-
|
|
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 {
|
|
8179
8201
|
isDefault: boolean;
|
|
8180
8202
|
termsAndCondition: string | null;
|
|
8181
8203
|
marketingConsent: string | null;
|
|
8182
8204
|
additionalVerbiage: string | null;
|
|
8183
8205
|
}
|
|
8206
|
+
interface CountryToDocumentConfig extends ActiveLessSymfonyModel {
|
|
8207
|
+
code: string;
|
|
8208
|
+
name: string;
|
|
8209
|
+
}
|
|
8210
|
+
interface ShipmentDocument {
|
|
8211
|
+
title: string;
|
|
8212
|
+
content: string;
|
|
8213
|
+
}
|
|
8184
8214
|
|
|
8185
8215
|
type ValidateAccountIn = {
|
|
8186
8216
|
accountValue: string;
|
|
@@ -8276,12 +8306,12 @@ type EmbassyShipmentsOut = {
|
|
|
8276
8306
|
total: number;
|
|
8277
8307
|
embassyShipments: EmbassyShipment[];
|
|
8278
8308
|
};
|
|
8279
|
-
type
|
|
8309
|
+
type DocumentConfigurationsOut = {
|
|
8280
8310
|
total: number;
|
|
8281
|
-
|
|
8311
|
+
documentConfigurations: DocumentConfiguration[];
|
|
8282
8312
|
};
|
|
8283
|
-
type
|
|
8284
|
-
|
|
8313
|
+
type DocumentConfigurationOut = {
|
|
8314
|
+
documentConfiguration: DocumentConfiguration;
|
|
8285
8315
|
};
|
|
8286
8316
|
type EmbassyShipmentIn = {
|
|
8287
8317
|
countryId: number;
|
|
@@ -8304,13 +8334,25 @@ type EmbassyShipmentIn = {
|
|
|
8304
8334
|
businessPartyTraderTypeId: number | null;
|
|
8305
8335
|
isActive: boolean;
|
|
8306
8336
|
};
|
|
8307
|
-
type
|
|
8337
|
+
type DocumentConfigurationIn = {
|
|
8308
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 = {
|
|
8309
8346
|
isDefault: boolean;
|
|
8310
8347
|
termsAndCondition: string | null;
|
|
8311
8348
|
marketingConsent: string | null;
|
|
8312
8349
|
additionalVerbiage: string | null;
|
|
8313
|
-
|
|
8350
|
+
};
|
|
8351
|
+
type DocumentConfigurationsPreviewIn = {
|
|
8352
|
+
html: string;
|
|
8353
|
+
};
|
|
8354
|
+
type DocumentConfigurationsPreviewOut = {
|
|
8355
|
+
preview: string;
|
|
8314
8356
|
};
|
|
8315
8357
|
interface EmbassyShipmentOut {
|
|
8316
8358
|
embassyShipment: EmbassyShipment;
|
|
@@ -8318,6 +8360,9 @@ interface EmbassyShipmentOut {
|
|
|
8318
8360
|
type ShipmentSignaturePageOut = {
|
|
8319
8361
|
shipmentSignaturePage: string;
|
|
8320
8362
|
};
|
|
8363
|
+
type ShipmentDocumentsOut = {
|
|
8364
|
+
shipmentDocuments: ShipmentDocument[];
|
|
8365
|
+
};
|
|
8321
8366
|
|
|
8322
8367
|
declare class ApiShipmentsService {
|
|
8323
8368
|
private environments;
|
|
@@ -8394,31 +8439,47 @@ declare class ApiShipmentsService {
|
|
|
8394
8439
|
*/
|
|
8395
8440
|
putEmbassyShipments(id: number, body: EmbassyShipmentIn): Observable<EmbassyShipmentOut>;
|
|
8396
8441
|
/**
|
|
8397
|
-
* Retrieves a paginated list of
|
|
8398
|
-
*
|
|
8399
|
-
* @
|
|
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.
|
|
8446
|
+
*/
|
|
8447
|
+
getDocumentConfigurations(params: QueryParams): Observable<DocumentConfigurationsOut>;
|
|
8448
|
+
/**
|
|
8449
|
+
* Retrieves a document configuration by its identifier.
|
|
8450
|
+
*
|
|
8451
|
+
* @param {number} id - The unique identifier of the document configuration.
|
|
8452
|
+
* @returns {Observable<DocumentConfigurationOut>} An observable containing the document configuration details.
|
|
8400
8453
|
*/
|
|
8401
|
-
|
|
8454
|
+
getDocumentConfiguration(id: number): Observable<DocumentConfigurationOut>;
|
|
8402
8455
|
/**
|
|
8403
|
-
*
|
|
8456
|
+
* Creates a new document configuration.
|
|
8404
8457
|
*
|
|
8405
|
-
* @param {
|
|
8406
|
-
* @
|
|
8458
|
+
* @param {DocumentConfigurationIn} body - The document configuration data to create.
|
|
8459
|
+
* @returns {Observable<DocumentConfigurationOut>} An observable containing the newly created document configuration.
|
|
8407
8460
|
*/
|
|
8408
|
-
|
|
8461
|
+
postDocumentConfiguration(body: DocumentConfigurationIn): Observable<DocumentConfigurationOut>;
|
|
8409
8462
|
/**
|
|
8410
|
-
*
|
|
8411
|
-
*
|
|
8412
|
-
* @
|
|
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.
|
|
8413
8468
|
*/
|
|
8414
|
-
|
|
8469
|
+
putDocumentConfiguration(id: number, body: DocumentConfigurationIn): Observable<DocumentConfigurationOut>;
|
|
8415
8470
|
/**
|
|
8416
|
-
*
|
|
8417
|
-
*
|
|
8418
|
-
* @param {
|
|
8419
|
-
* @returns {Observable<
|
|
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.
|
|
8420
8475
|
*/
|
|
8421
|
-
|
|
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>;
|
|
8422
8483
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiShipmentsService, never>;
|
|
8423
8484
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiShipmentsService>;
|
|
8424
8485
|
}
|
|
@@ -8768,6 +8829,87 @@ declare class ApiSurveysService {
|
|
|
8768
8829
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiSurveysService>;
|
|
8769
8830
|
}
|
|
8770
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
|
+
|
|
8771
8913
|
declare enum PaymentTypeCode {
|
|
8772
8914
|
CASH = "cash",
|
|
8773
8915
|
CHECK = "check",
|
|
@@ -8908,5 +9050,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
|
|
|
8908
9050
|
[header: string]: string | string[];
|
|
8909
9051
|
};
|
|
8910
9052
|
|
|
8911
|
-
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 };
|
|
8912
|
-
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, 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 };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@experteam-mx/ngx-services",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.7.0-dev1.1",
|
|
4
4
|
"description": "Angular common services for Experteam apps",
|
|
5
5
|
"author": "Experteam Cía. Ltda.",
|
|
6
6
|
"keywords": [
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"tslib": "^2.8.0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"@angular/common": "^20.
|
|
45
|
-
"@angular/core": "^20.
|
|
44
|
+
"@angular/common": "^20.3.25",
|
|
45
|
+
"@angular/core": "^20.3.25",
|
|
46
46
|
"ngx-cookie-service": "^20.0.0",
|
|
47
47
|
"pusher-js": "^7.5.0"
|
|
48
48
|
},
|