@experteam-mx/ngx-services 20.8.6 → 20.9.0-dev1.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/README.md +8 -2
- package/fesm2022/experteam-mx-ngx-services.mjs +289 -105
- package/fesm2022/experteam-mx-ngx-services.mjs.map +1 -1
- package/index.d.ts +207 -10
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -1,14 +1,24 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { InjectionToken, ModuleWithProviders, EnvironmentProviders } from '@angular/core';
|
|
3
|
-
import { Observable, BehaviorSubject } from 'rxjs';
|
|
4
3
|
import { HttpResponse, HttpRequest, HttpHandlerFn, HttpEvent, HttpParams, HttpHeaders } from '@angular/common/http';
|
|
4
|
+
import { Observable, BehaviorSubject } from 'rxjs';
|
|
5
5
|
import { Channel } from 'pusher-js';
|
|
6
6
|
|
|
7
|
+
/**
|
|
8
|
+
* Opt-in HTTP cache rule. First matching pattern against `req.urlWithParams` wins.
|
|
9
|
+
*/
|
|
10
|
+
type HttpCacheRoute = {
|
|
11
|
+
/** RegExp source matched against `req.urlWithParams` */
|
|
12
|
+
pattern: string;
|
|
13
|
+
/** TTL in milliseconds */
|
|
14
|
+
ttl: number;
|
|
15
|
+
};
|
|
7
16
|
/**
|
|
8
17
|
* Represents the configuration settings for the application's environment.
|
|
9
18
|
* This type includes various API endpoint URLs, authentication details, caching options, and other relevant settings.
|
|
10
19
|
*
|
|
11
20
|
* Properties:
|
|
21
|
+
* - apiAuditsUrl: The URL for the audits API endpoint.
|
|
12
22
|
* - apiCompaniesUrl: The URL for the companies API endpoint.
|
|
13
23
|
* - apiEventsUrl: The URL for the events API endpoint.
|
|
14
24
|
* - apiInvoicesUrl: The URL for the invoices API endpoint.
|
|
@@ -16,11 +26,12 @@ import { Channel } from 'pusher-js';
|
|
|
16
26
|
* - apiSecurityUrl: The URL for the security-related API endpoint.
|
|
17
27
|
* - apiShipmentUrl: The URL for the shipment API endpoint.
|
|
18
28
|
* - authCookie: The name of the authentication cookie used for user sessions.
|
|
19
|
-
* -
|
|
29
|
+
* - cacheRoutes: Optional. Opt-in HTTP cache rules; first matching pattern wins.
|
|
20
30
|
* - printUrl: Optional. The URL used for generating or downloading printable documents.
|
|
21
31
|
* - secretKey: A secret key used for authentication or other secure operations.
|
|
22
32
|
*/
|
|
23
33
|
type Environment = {
|
|
34
|
+
apiAuditsUrl?: string;
|
|
24
35
|
apiBillingCO?: string;
|
|
25
36
|
apiBillingDO?: string;
|
|
26
37
|
apiBillingGT?: string;
|
|
@@ -50,7 +61,7 @@ type Environment = {
|
|
|
50
61
|
apiSuppliesUrl?: string;
|
|
51
62
|
apiSurveysUrl?: string;
|
|
52
63
|
authCookie?: string;
|
|
53
|
-
|
|
64
|
+
cacheRoutes?: HttpCacheRoute[];
|
|
54
65
|
printUrl?: string;
|
|
55
66
|
secretKey?: string;
|
|
56
67
|
sockets?: {
|
|
@@ -133,6 +144,83 @@ interface TranslateLang {
|
|
|
133
144
|
[langCode: string]: string;
|
|
134
145
|
}
|
|
135
146
|
|
|
147
|
+
interface Connection extends ActiveLessLaravelModel {
|
|
148
|
+
api: string;
|
|
149
|
+
connection: string;
|
|
150
|
+
version: string;
|
|
151
|
+
}
|
|
152
|
+
interface TransactionLog extends ActiveLessLaravelModel {
|
|
153
|
+
api: string;
|
|
154
|
+
username: string;
|
|
155
|
+
table: string;
|
|
156
|
+
action: string;
|
|
157
|
+
ID: string;
|
|
158
|
+
last_value: unknown | null;
|
|
159
|
+
new_value: unknown | null;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
type ConnectionsOut = {
|
|
163
|
+
connections: Connection[];
|
|
164
|
+
total: number;
|
|
165
|
+
};
|
|
166
|
+
type TransactionLogsOut = {
|
|
167
|
+
transaction_logs: TransactionLog[];
|
|
168
|
+
total: number;
|
|
169
|
+
};
|
|
170
|
+
type TransactionLogsDownloadOut = {
|
|
171
|
+
transaction_id: string;
|
|
172
|
+
};
|
|
173
|
+
|
|
174
|
+
declare class ApiAuditsService {
|
|
175
|
+
private environments;
|
|
176
|
+
private http;
|
|
177
|
+
/**
|
|
178
|
+
* Retrieves the URL for the audits API from the environment configurations.
|
|
179
|
+
* If the URL is not defined, an empty string is returned.
|
|
180
|
+
*
|
|
181
|
+
* @return {string} The API Audits URL or an empty string if not defined.
|
|
182
|
+
*/
|
|
183
|
+
get url(): string;
|
|
184
|
+
/**
|
|
185
|
+
* Retrieves a list of database connections based on query parameters.
|
|
186
|
+
*
|
|
187
|
+
* @param {QueryParams} params - Query parameters for filtering and pagination.
|
|
188
|
+
* @returns {Observable<ConnectionsOut>} The list of connections.
|
|
189
|
+
*/
|
|
190
|
+
getConnections(params: QueryParams): Observable<ConnectionsOut>;
|
|
191
|
+
/**
|
|
192
|
+
* Retrieves transaction logs based on the provided query parameters.
|
|
193
|
+
*
|
|
194
|
+
* @param {QueryParams} params - Query parameters for filtering, pagination, and order.
|
|
195
|
+
* @returns {Observable<TransactionLogsOut>} The list of transaction logs and total count.
|
|
196
|
+
*/
|
|
197
|
+
getTransactionLogs(params: QueryParams): Observable<TransactionLogsOut>;
|
|
198
|
+
/**
|
|
199
|
+
* Starts an asynchronous Excel generation for all transaction logs matching the filters.
|
|
200
|
+
* Pass filters without page limit/offset. Response includes a transaction_id for progress tracking.
|
|
201
|
+
*
|
|
202
|
+
* @param {QueryParams} params - Filter query parameters (no pagination).
|
|
203
|
+
* @returns {Observable<TransactionLogsDownloadOut>} Observable with the export transaction id.
|
|
204
|
+
*/
|
|
205
|
+
requestTransactionLogsExcel(params: QueryParams): Observable<TransactionLogsDownloadOut>;
|
|
206
|
+
/**
|
|
207
|
+
* Downloads the generated Excel file for the given transaction id.
|
|
208
|
+
*
|
|
209
|
+
* @param {string} transactionId - Export transaction identifier.
|
|
210
|
+
* @returns {Observable<HttpResponse<ArrayBuffer>>} HTTP response with the Excel binary.
|
|
211
|
+
*/
|
|
212
|
+
getDownload(transactionId: string): Observable<HttpResponse<ArrayBuffer>>;
|
|
213
|
+
/**
|
|
214
|
+
* Cancels a pending Excel generation for the given transaction id.
|
|
215
|
+
*
|
|
216
|
+
* @param {string} transactionId - Export transaction identifier.
|
|
217
|
+
* @returns {Observable<{}>} Observable that completes when cancellation is processed.
|
|
218
|
+
*/
|
|
219
|
+
deleteFileCheck(transactionId: string): Observable<{}>;
|
|
220
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApiAuditsService, never>;
|
|
221
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApiAuditsService>;
|
|
222
|
+
}
|
|
223
|
+
|
|
136
224
|
interface CoCustomer {
|
|
137
225
|
identification_number: string;
|
|
138
226
|
identification_type_id: number;
|
|
@@ -1323,6 +1411,26 @@ interface PriceOverrideReason extends SymfonyModel {
|
|
|
1323
1411
|
name: string;
|
|
1324
1412
|
countryId: number;
|
|
1325
1413
|
}
|
|
1414
|
+
interface UpsellingIndicator extends SymfonyModel {
|
|
1415
|
+
name: string;
|
|
1416
|
+
upsellingIndicatorMethod: UpsellingIndicatorMethod;
|
|
1417
|
+
countryIds: UpsellingIndicatorCountry[];
|
|
1418
|
+
productIds: UpsellingIndicatorProduct[];
|
|
1419
|
+
flagName: string;
|
|
1420
|
+
flagColor: string;
|
|
1421
|
+
flagTextColor: string;
|
|
1422
|
+
}
|
|
1423
|
+
interface UpsellingIndicatorCountry extends ApiModel {
|
|
1424
|
+
name: string;
|
|
1425
|
+
}
|
|
1426
|
+
interface UpsellingIndicatorProduct extends ApiModel {
|
|
1427
|
+
globalCode: string;
|
|
1428
|
+
globalName: string;
|
|
1429
|
+
}
|
|
1430
|
+
interface UpsellingIndicatorMethod extends SymfonyModel {
|
|
1431
|
+
code: string;
|
|
1432
|
+
name: string;
|
|
1433
|
+
}
|
|
1326
1434
|
|
|
1327
1435
|
type OperationTypesOut = {
|
|
1328
1436
|
total: number;
|
|
@@ -1468,6 +1576,10 @@ type ProductIn = {
|
|
|
1468
1576
|
localName: string;
|
|
1469
1577
|
isDocument: boolean;
|
|
1470
1578
|
};
|
|
1579
|
+
type ProductsOut = {
|
|
1580
|
+
products: Product[];
|
|
1581
|
+
total: number;
|
|
1582
|
+
};
|
|
1471
1583
|
type ProductOut = {
|
|
1472
1584
|
product: Product;
|
|
1473
1585
|
};
|
|
@@ -1594,6 +1706,30 @@ type ExportReasonTypesOut = {
|
|
|
1594
1706
|
type ExportReasonOut = {
|
|
1595
1707
|
exportReason: ExportReason;
|
|
1596
1708
|
};
|
|
1709
|
+
type UpsellingIndicatorsOut = {
|
|
1710
|
+
total: number;
|
|
1711
|
+
upsellingIndicators: UpsellingIndicator[];
|
|
1712
|
+
};
|
|
1713
|
+
type UpsellingIndicatorOut = {
|
|
1714
|
+
upsellingIndicator: UpsellingIndicator;
|
|
1715
|
+
};
|
|
1716
|
+
type UpsellingIndicatorIn = {
|
|
1717
|
+
name: string;
|
|
1718
|
+
upsellingIndicatorMethod: number;
|
|
1719
|
+
flagName: string;
|
|
1720
|
+
flagTextColor: string;
|
|
1721
|
+
flagColor: string;
|
|
1722
|
+
countryIds: number[];
|
|
1723
|
+
productIds: number[];
|
|
1724
|
+
isActive: boolean;
|
|
1725
|
+
};
|
|
1726
|
+
type UpsellingIndicatorMethodsOut = {
|
|
1727
|
+
total: number;
|
|
1728
|
+
upsellingIndicatorMethods: UpsellingIndicatorMethod[];
|
|
1729
|
+
};
|
|
1730
|
+
type UpsellingIndicatorMethodOut = {
|
|
1731
|
+
upsellingIndicatorMethod: UpsellingIndicatorMethod;
|
|
1732
|
+
};
|
|
1597
1733
|
|
|
1598
1734
|
declare class ApiCatalogsService {
|
|
1599
1735
|
private environments;
|
|
@@ -1859,6 +1995,13 @@ declare class ApiCatalogsService {
|
|
|
1859
1995
|
* @return {Observable<GenericFolioOut>} An observable containing the updated Generic Folio resource.
|
|
1860
1996
|
*/
|
|
1861
1997
|
pathGenericFolio(id: number, body: Partial<GenericFolioIn>): Observable<GenericFolioOut>;
|
|
1998
|
+
/**
|
|
1999
|
+
* Retrieves the list of products.
|
|
2000
|
+
*
|
|
2001
|
+
* @param params Query parameters used to filter or paginate the products.
|
|
2002
|
+
* @returns An observable containing the list of products.
|
|
2003
|
+
*/
|
|
2004
|
+
getProducts(params: QueryParams): Observable<ProductsOut>;
|
|
1862
2005
|
/**
|
|
1863
2006
|
* Retrieves a product by its unique identifier.
|
|
1864
2007
|
*
|
|
@@ -2157,6 +2300,59 @@ declare class ApiCatalogsService {
|
|
|
2157
2300
|
* @returns An Observable that emits the export reason types data
|
|
2158
2301
|
*/
|
|
2159
2302
|
getExportReasonTypes(params: QueryParams): Observable<ExportReasonTypesOut>;
|
|
2303
|
+
/**
|
|
2304
|
+
* Retrieves the list of upselling indicators.
|
|
2305
|
+
* @param params - Query parameters used to filter or paginate the results
|
|
2306
|
+
* @returns An Observable that emits the upselling indicators and total count
|
|
2307
|
+
*/
|
|
2308
|
+
getUpsellingIndicators(params: QueryParams): Observable<UpsellingIndicatorsOut>;
|
|
2309
|
+
/**
|
|
2310
|
+
* Retrieves an upselling indicator by its ID.
|
|
2311
|
+
*
|
|
2312
|
+
* @param id Unique identifier of the upselling indicator.
|
|
2313
|
+
* @returns Observable containing the requested upselling indicator.
|
|
2314
|
+
*/
|
|
2315
|
+
getUpsellingIndicator(id: number): Observable<UpsellingIndicatorOut>;
|
|
2316
|
+
/**
|
|
2317
|
+
* Creates a new upselling indicator.
|
|
2318
|
+
* @param body - Upselling indicator data
|
|
2319
|
+
* @returns An Observable that emits the created upselling indicator
|
|
2320
|
+
*/
|
|
2321
|
+
postUpsellingIndicator(body: UpsellingIndicatorIn): Observable<UpsellingIndicatorOut>;
|
|
2322
|
+
/**
|
|
2323
|
+
* Updates an existing upselling indicator.
|
|
2324
|
+
* @param id - Identifier of the upselling indicator to update
|
|
2325
|
+
* @param body - Updated upselling indicator data
|
|
2326
|
+
* @returns An Observable that emits the updated upselling indicator
|
|
2327
|
+
*/
|
|
2328
|
+
putUpsellingIndicator(id: number, body: UpsellingIndicatorIn): Observable<UpsellingIndicatorOut>;
|
|
2329
|
+
/**
|
|
2330
|
+
* Deletes an upselling indicator by its identifier.
|
|
2331
|
+
* @param id - Identifier of the upselling indicator to delete
|
|
2332
|
+
* @returns An Observable that emits the operation result
|
|
2333
|
+
*/
|
|
2334
|
+
deleteUpsellingIndicator(id: number): Observable<{}>;
|
|
2335
|
+
/**
|
|
2336
|
+
* Updates the active status of an upselling indicator.
|
|
2337
|
+
* @param id - Identifier of the upselling indicator
|
|
2338
|
+
* @param isActive - Indicates whether the upselling indicator should be active or inactive
|
|
2339
|
+
* @returns An Observable that emits the operation result
|
|
2340
|
+
*/
|
|
2341
|
+
patchUpsellingIndicator(id: number, isActive: boolean): Observable<{}>;
|
|
2342
|
+
/**
|
|
2343
|
+
* Retrieves the list of upselling indicator methods.
|
|
2344
|
+
*
|
|
2345
|
+
* @param params Query parameters used to filter, paginate, or sort the methods.
|
|
2346
|
+
* @returns Observable containing the upselling indicator methods.
|
|
2347
|
+
*/
|
|
2348
|
+
getUpsellingIndicatorMethods(params: QueryParams): Observable<UpsellingIndicatorMethodsOut>;
|
|
2349
|
+
/**
|
|
2350
|
+
* Retrieves an upselling indicator method by its ID.
|
|
2351
|
+
*
|
|
2352
|
+
* @param id Unique identifier of the upselling indicator method.
|
|
2353
|
+
* @returns Observable containing the requested upselling indicator method.
|
|
2354
|
+
*/
|
|
2355
|
+
getUpsellingIndicatorMethod(id: number): Observable<UpsellingIndicatorMethodOut>;
|
|
2160
2356
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiCatalogsService, never>;
|
|
2161
2357
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiCatalogsService>;
|
|
2162
2358
|
}
|
|
@@ -9503,15 +9699,16 @@ declare function apiHeadersInterceptor(req: HttpRequest<unknown>, next: HttpHand
|
|
|
9503
9699
|
declare function apiTokenInterceptor(req: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>>;
|
|
9504
9700
|
|
|
9505
9701
|
/**
|
|
9506
|
-
* Interceptor function to handle HTTP caching for GET requests
|
|
9507
|
-
*
|
|
9702
|
+
* Interceptor function to handle opt-in HTTP caching for GET requests that match
|
|
9703
|
+
* a configured `cacheRoutes` pattern. Non-matching GETs pass through uncached.
|
|
9704
|
+
* Concurrent in-flight requests for the same key are deduplicated via `shareReplay`.
|
|
9508
9705
|
*
|
|
9509
|
-
* @param {HttpRequest<
|
|
9706
|
+
* @param {HttpRequest<unknown>} req - The HTTP request object being intercepted.
|
|
9510
9707
|
* @param {HttpHandlerFn} next - The next HTTP handler function in the chain to process the request.
|
|
9511
|
-
* @return {Observable<HttpEvent<
|
|
9708
|
+
* @return {Observable<HttpEvent<unknown>>} An observable that emits the HTTP event, either from cache
|
|
9512
9709
|
* or by invoking the next handler.
|
|
9513
9710
|
*/
|
|
9514
|
-
declare function httpCachingInterceptor(req: HttpRequest<
|
|
9711
|
+
declare function httpCachingInterceptor(req: HttpRequest<unknown>, next: HttpHandlerFn): Observable<HttpEvent<unknown>>;
|
|
9515
9712
|
|
|
9516
9713
|
declare const base64PdfToUrl: (base64: string) => string;
|
|
9517
9714
|
declare const downloadBase64Pdf: (base64: string) => Window | null;
|
|
@@ -9553,5 +9750,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
|
|
|
9553
9750
|
[header: string]: string | string[];
|
|
9554
9751
|
};
|
|
9555
9752
|
|
|
9556
|
-
export { AccountTypeId, AccountTypeName, AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCheckpointsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiDropoffsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, DefaultValueType, DepositTypeCode, DocumentStatusCode, ENVIRONMENT_TOKEN, Event, Group, InventoryActions, InventoryErrorCodes, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, PrintMode, PrintableFormat, PrintersService, PrintersType, RouteModelType, ShipmentIncomeTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
9557
|
-
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, AddressToSignaturePage, 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, 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, CommercialInvoice, CommercialInvoiceItemToSignaturePage, CommercialInvoiceToSignaturePage, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, ConfirmTermsIn, CountriesOut, Country, CountryAccount, CountryCurrencyRate, CountryDocumentType, CountryDocumentTypesOut, CountryExchange, CountryGroups, CountryGroupsOut, CountryIn, CountryOut, CountryPaymentType, CountryPaymentTypeField, CountryPaymentTypeFieldIn, CountryPaymentTypeFieldOut, CountryPaymentTypeFieldsOut, CountryPaymentTypeIn, CountryPaymentTypeOut, CountryPaymentTypesOut, CountryReference, CountryReferenceCurrenciesOut, CountryReferenceCurrency, CountryReferenceCurrencyIn, CountryReferenceCurrencyOut, CountryReferenceExtraCharge, CountryReferenceExtraChargeIn, CountryReferenceExtraChargeOut, CountryReferenceIn, CountryReferenceOut, CountryReferenceProduct, CountryReferenceProductIn, CountryReferenceProductOut, CountryReferenceProductsOut, CountryReferencesOut, CountryToDocumentConfig, CountryToExportReason, CourierCheckOutPackesOut, CourierRoute, CourierRouteIn, CourierRouteOut, CourierRoutesOut, Criteria, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerRoleType, CustomerSurvey, CustomerSurveyFinishIn, CustomerSurveyIn, CustomerSurveyOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, 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, DocumentFunction, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeRangeIn, DocumentTypeRangeOut, DocumentTypeRangesOut, DocumentTypeReports, DocumentTypesOut, DocumentsTypesRangesCurrentStatusOut, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, EmbassyShipment, EmbassyShipmentIn, EmbassyShipmentOut, EmbassyShipmentsOut, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, EventRegister, EventRegistersOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportReason, ExportReasonIn, ExportReasonOut, ExportReasonTypes, ExportReasonTypesOut, ExportReasonsOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressCancellation, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentCancellationIn, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExternalShipmentsOut, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, 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, IdentificationType, IdentificationTypeComposition, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeNumberValidationIn, IdentificationTypeNumberValidationOut, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, InventoriesReportOut, InventoryReport, InvoiceCancellationIn, InvoiceReport, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, LanguageOut, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, LocationEmployeesOut, LocationIn, LocationOut, LocationType, LocationTypeFields, LocationsOut, LoyaltyPeriod, LoyaltyPeriodIn, LoyaltyPeriodOut, LoyaltyPeriodsOut, LoyaltyRule, LoyaltyRuleIn, LoyaltyRuleOut, LoyaltyRulesOut, ManagementArea, ManagementAreasOut, ManifestMultipleIn, ManifestMultipleOut, ManufactureCountry, MissingPackagesIn, MissingPackagesOut, Module, ModuleType, ModulesOut, MunicipalitiesOut, Municipality, Notification, NotificationConfiguration, NotificationConfigurationIn, NotificationConfigurationOut, NotificationIn, NotificationOut, NotificationStatus, NotificationType, NotificationsOut, NotificationsTypeOut, OpenItem, OpenItemIn, OpenItems, OpenItemsOut, Opening, OpeningCountryReferenceCurrency, OpeningHistory, OpeningIn, OpeningOut, OpeningPreClosingRequestIn, OpeningStatus, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, OpeningsOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentCustomerIn, OperationDocumentCustomerOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintTicketOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, Package5, Package9, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsOut, PackageMissing, PackageOnHoldIn, PackageOnHoldOut, PackageReassignPositionIn, PackageReassignPositionOut, PackageReport, PackageValidationActionIn, PackageValidationActionOut, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueOut, ParametersByModelIn, ParametersOut, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, PieceSupplyToSignaturePage, PiecesToSignaturePage, Pivot, PostalCode, PostalCodeBillings, PostalCodeFormat, PostalCodesOut, PostalLocation, PostalLocationsOut, PriceOverrideApprover, PriceOverrideApproversOut, PriceOverrideReason, PriceOverrideReasonsOut, PrintCollectionReceiptOut, Printable, Printer, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QuantityUnitsOut, QueryParams, Question, QuestionIn, QuestionOption, QuestionOut, QuestionResponse, QuestionType, QuestionTypesOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, ReEntryOfMissingPackage, ReEntryOfMissingPackageOut, ReEntryOfMissingPackages, ReEntryOfMissingPackagesIn, ReEntryOfMissingPackagesOut, ReceiptFile, ReceiptFileOut, Region, RegionsOut, ReportExternalShipment, ReportExternalShipmentAddress, ReturnFirstMileIn, ReturnFirstMileOut, Role, RoleIn, RoleOut, RoleType, RoleTypesOut, RolesOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, Rules, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, SetUpData, ShipmentAddresses, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentCompanyCountryExtraCharges, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentCustoms, ShipmentDataToSignaturePage, ShipmentDescription, ShipmentDescriptionsOut, ShipmentDocument, ShipmentDocumentsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageConfirmationIn, ShipmentSignaturePageIn, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsBookingIn, ShipmentsEReceiptIn, ShipmentsLandingReportOut, 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, Tax, TaxToSignaturePage, 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 };
|
|
9753
|
+
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, DefaultValueType, DepositTypeCode, DocumentStatusCode, ENVIRONMENT_TOKEN, Event, Group, InventoryActions, InventoryErrorCodes, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, PrintMode, PrintableFormat, PrintersService, PrintersType, RouteModelType, ShipmentIncomeTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
9754
|
+
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, AddressToSignaturePage, 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, 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, CommercialInvoice, CommercialInvoiceItemToSignaturePage, CommercialInvoiceToSignaturePage, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, ConfirmTermsIn, Connection, ConnectionsOut, CountriesOut, Country, CountryAccount, CountryCurrencyRate, CountryDocumentType, CountryDocumentTypesOut, CountryExchange, CountryGroups, CountryGroupsOut, CountryIn, CountryOut, CountryPaymentType, CountryPaymentTypeField, CountryPaymentTypeFieldIn, CountryPaymentTypeFieldOut, CountryPaymentTypeFieldsOut, CountryPaymentTypeIn, CountryPaymentTypeOut, CountryPaymentTypesOut, CountryReference, CountryReferenceCurrenciesOut, CountryReferenceCurrency, CountryReferenceCurrencyIn, CountryReferenceCurrencyOut, CountryReferenceExtraCharge, CountryReferenceExtraChargeIn, CountryReferenceExtraChargeOut, CountryReferenceIn, CountryReferenceOut, CountryReferenceProduct, CountryReferenceProductIn, CountryReferenceProductOut, CountryReferenceProductsOut, CountryReferencesOut, CountryToDocumentConfig, CountryToExportReason, CourierCheckOutPackesOut, CourierRoute, CourierRouteIn, CourierRouteOut, CourierRoutesOut, Criteria, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerRoleType, CustomerSurvey, CustomerSurveyFinishIn, CustomerSurveyIn, CustomerSurveyOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, 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, DocumentFunction, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeRangeIn, DocumentTypeRangeOut, DocumentTypeRangesOut, DocumentTypeReports, DocumentTypesOut, DocumentsTypesRangesCurrentStatusOut, Dropdown, DropdownConfig, EconomicActivitiesOut, EconomicActivity, EmailErrorIn, EmbassyShipment, EmbassyShipmentIn, EmbassyShipmentOut, EmbassyShipmentsOut, Employee, EmployeeCustomerDhl, EmployeeCustomersIn, EmployeeCustomersOut, EmployeeIn, EmployeeOut, EmployeesCustomersOut, EmployeesOut, Entity, Environment, EstablishmentType, EstablishmentTypesOut, EventRegister, EventRegistersOut, Exchange, ExchangeIn, ExchangeOut, ExchangesOut, ExportReason, ExportReasonIn, ExportReasonOut, ExportReasonTypes, ExportReasonTypesOut, ExportReasonsOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressCancellation, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentCancellationIn, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExternalShipmentsOut, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, 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, IdentificationTypeComposition, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeNumberValidationIn, IdentificationTypeNumberValidationOut, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, InventoriesReportOut, InventoryReport, InvoiceCancellationIn, InvoiceReport, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, LanguageOut, LanguagesOut, LaravelModel, Location, LocationEmployee, LocationEmployeeBatchIn, LocationEmployeeOut, LocationEmployeesOut, LocationIn, LocationOut, LocationType, LocationTypeFields, LocationsOut, LoyaltyPeriod, LoyaltyPeriodIn, LoyaltyPeriodOut, LoyaltyPeriodsOut, LoyaltyRule, LoyaltyRuleIn, LoyaltyRuleOut, LoyaltyRulesOut, ManagementArea, ManagementAreasOut, ManifestMultipleIn, ManifestMultipleOut, ManufactureCountry, MissingPackagesIn, MissingPackagesOut, Module, ModuleType, ModulesOut, MunicipalitiesOut, Municipality, Notification, NotificationConfiguration, NotificationConfigurationIn, NotificationConfigurationOut, NotificationIn, NotificationOut, NotificationStatus, NotificationType, NotificationsOut, NotificationsTypeOut, OpenItem, OpenItemIn, OpenItems, OpenItemsOut, Opening, OpeningCountryReferenceCurrency, OpeningHistory, OpeningIn, OpeningOut, OpeningPreClosingRequestIn, OpeningStatus, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, OpeningsOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentCustomerIn, OperationDocumentCustomerOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintTicketOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, Package5, Package9, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsOut, PackageMissing, PackageOnHoldIn, PackageOnHoldOut, PackageReassignPositionIn, PackageReassignPositionOut, PackageReport, PackageValidationActionIn, PackageValidationActionOut, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueOut, ParametersByModelIn, ParametersOut, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, 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, 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, ShipmentCustoms, ShipmentDataToSignaturePage, ShipmentDescription, ShipmentDescriptionsOut, ShipmentDocument, ShipmentDocumentsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageConfirmationIn, ShipmentSignaturePageIn, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsBookingIn, ShipmentsEReceiptIn, ShipmentsLandingReportOut, 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, Tax, TaxToSignaturePage, 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, 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.9.0-dev1.0",
|
|
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.3.
|
|
45
|
-
"@angular/core": "^20.3.
|
|
44
|
+
"@angular/common": "^20.3.27",
|
|
45
|
+
"@angular/core": "^20.3.27",
|
|
46
46
|
"ngx-cookie-service": "^20.0.0",
|
|
47
47
|
"pusher-js": "^7.5.0"
|
|
48
48
|
},
|