@experteam-mx/ngx-services 20.3.1 → 20.3.3
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
|
@@ -21,6 +21,7 @@ import { Channel } from 'pusher-js';
|
|
|
21
21
|
* - secretKey: A secret key used for authentication or other secure operations.
|
|
22
22
|
*/
|
|
23
23
|
type Environment = {
|
|
24
|
+
apiBillingCO?: string;
|
|
24
25
|
apiBillingDO?: string;
|
|
25
26
|
apiBillingGT?: string;
|
|
26
27
|
apiBillingMX?: string;
|
|
@@ -132,6 +133,209 @@ interface TranslateLang {
|
|
|
132
133
|
[langCode: string]: string;
|
|
133
134
|
}
|
|
134
135
|
|
|
136
|
+
interface CoCustomer {
|
|
137
|
+
identification_number: string;
|
|
138
|
+
identification_type_id: number;
|
|
139
|
+
customer_type_id: number | null;
|
|
140
|
+
company_name: string;
|
|
141
|
+
full_name: string;
|
|
142
|
+
email: string;
|
|
143
|
+
phone_code: string;
|
|
144
|
+
phone_number: string;
|
|
145
|
+
birth_date: string | null;
|
|
146
|
+
postal_code: string;
|
|
147
|
+
state: string;
|
|
148
|
+
county_name: string | null;
|
|
149
|
+
city_name: string | null;
|
|
150
|
+
address_line1: string;
|
|
151
|
+
address_line2: string | null;
|
|
152
|
+
address_line3: string | null;
|
|
153
|
+
company_id: number | null;
|
|
154
|
+
country_id: number | null;
|
|
155
|
+
extra_fields: CoExtraFields;
|
|
156
|
+
}
|
|
157
|
+
interface CoExtraFields {
|
|
158
|
+
social_reason: string;
|
|
159
|
+
comercial_name: string | null;
|
|
160
|
+
mercantile_registration: string | null;
|
|
161
|
+
notification_mail: string;
|
|
162
|
+
fiscal_responsibilities: string[];
|
|
163
|
+
tributes: string[];
|
|
164
|
+
fiscal_regime: string;
|
|
165
|
+
first_name: string;
|
|
166
|
+
other_name: string;
|
|
167
|
+
last_name: string;
|
|
168
|
+
second_last_name: string;
|
|
169
|
+
department: string;
|
|
170
|
+
municipality: string;
|
|
171
|
+
open_id: number;
|
|
172
|
+
[key: string]: string | number | boolean | string[] | null;
|
|
173
|
+
}
|
|
174
|
+
interface CoDepartment extends LaravelModel {
|
|
175
|
+
code: string;
|
|
176
|
+
description: string;
|
|
177
|
+
}
|
|
178
|
+
interface CoMunicipality extends LaravelModel {
|
|
179
|
+
department_id: number;
|
|
180
|
+
code: string;
|
|
181
|
+
description: string;
|
|
182
|
+
}
|
|
183
|
+
interface CoPostalCode extends LaravelModel {
|
|
184
|
+
code: string;
|
|
185
|
+
}
|
|
186
|
+
interface CoFiscalRegime extends LaravelModel {
|
|
187
|
+
code: string;
|
|
188
|
+
description: string;
|
|
189
|
+
}
|
|
190
|
+
interface CoFiscalResponsibility extends LaravelModel {
|
|
191
|
+
code: string;
|
|
192
|
+
description: string;
|
|
193
|
+
applies_to: string;
|
|
194
|
+
}
|
|
195
|
+
interface CoTribute extends LaravelModel {
|
|
196
|
+
code: string;
|
|
197
|
+
name: string;
|
|
198
|
+
type: string;
|
|
199
|
+
description: string;
|
|
200
|
+
applies_tribute: boolean;
|
|
201
|
+
applies_to_tribute: string;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
type CoCustomerOut = {
|
|
205
|
+
customer: CoCustomer;
|
|
206
|
+
};
|
|
207
|
+
type CoDepartmentsOut = {
|
|
208
|
+
departments: CoDepartment[];
|
|
209
|
+
total: number;
|
|
210
|
+
};
|
|
211
|
+
type CoMunicipalitiesOut = {
|
|
212
|
+
municipalities: CoMunicipality[];
|
|
213
|
+
total: number;
|
|
214
|
+
};
|
|
215
|
+
type CoPostalCodesOut = {
|
|
216
|
+
postal_codes: CoPostalCode[];
|
|
217
|
+
total: number;
|
|
218
|
+
};
|
|
219
|
+
type CoFiscalRegimesOut = {
|
|
220
|
+
fiscal_regimes: CoFiscalRegime[];
|
|
221
|
+
total: number;
|
|
222
|
+
};
|
|
223
|
+
type CoFiscalResponsibilitiesOut = {
|
|
224
|
+
fiscal_responsibilities: CoFiscalResponsibility[];
|
|
225
|
+
total: number;
|
|
226
|
+
};
|
|
227
|
+
type CoTributesOut = {
|
|
228
|
+
tributes: CoTribute[];
|
|
229
|
+
total: number;
|
|
230
|
+
};
|
|
231
|
+
type CoCustomerIn = {
|
|
232
|
+
customer: {
|
|
233
|
+
identification_number: string;
|
|
234
|
+
identification_type_id: number;
|
|
235
|
+
company_name: string;
|
|
236
|
+
full_name: string;
|
|
237
|
+
email: string;
|
|
238
|
+
phone_number: string;
|
|
239
|
+
postal_code: string;
|
|
240
|
+
state: string;
|
|
241
|
+
address_line1: string;
|
|
242
|
+
extra_fields: {
|
|
243
|
+
social_reason: string;
|
|
244
|
+
comercial_name: string | null;
|
|
245
|
+
notification_mail: string;
|
|
246
|
+
fiscal_responsibilities: string[];
|
|
247
|
+
tributes: string[];
|
|
248
|
+
fiscal_regime: string | null;
|
|
249
|
+
first_name: string | null;
|
|
250
|
+
other_name: string | null;
|
|
251
|
+
last_name: string | null;
|
|
252
|
+
second_last_name: string | null;
|
|
253
|
+
department: string;
|
|
254
|
+
municipality: string;
|
|
255
|
+
contacts?: [] | null;
|
|
256
|
+
open_id?: number;
|
|
257
|
+
};
|
|
258
|
+
};
|
|
259
|
+
};
|
|
260
|
+
|
|
261
|
+
declare class ApiBillingCOService {
|
|
262
|
+
private environments;
|
|
263
|
+
private http;
|
|
264
|
+
/**
|
|
265
|
+
* Retrieves the URL for the billing API.
|
|
266
|
+
* If the URL is not defined in the environments configuration, returns an empty string.
|
|
267
|
+
*
|
|
268
|
+
* @returns {string} The billing API URL or an empty string if not set.
|
|
269
|
+
*/
|
|
270
|
+
get url(): string;
|
|
271
|
+
/**
|
|
272
|
+
* Retrieves the information of a customer by its identifier.
|
|
273
|
+
*
|
|
274
|
+
* @param {number} id - Unique customer identifier.
|
|
275
|
+
* @returns {Observable<CoCustomerOut>}
|
|
276
|
+
* Observable emitting the customer information.
|
|
277
|
+
*/
|
|
278
|
+
getCustomer(id: number): Observable<CoCustomerOut>;
|
|
279
|
+
/**
|
|
280
|
+
* Creates a new customer.
|
|
281
|
+
*
|
|
282
|
+
* @param {CoCustomerIn} body - Customer data to be created.
|
|
283
|
+
* @returns {Observable<CoCustomerOut>}
|
|
284
|
+
* Observable emitting the created customer information.
|
|
285
|
+
*/
|
|
286
|
+
postCustomer(body: CoCustomerIn): Observable<CoCustomerOut>;
|
|
287
|
+
/**
|
|
288
|
+
* Retrieves the list of departments based on the provided query parameters.
|
|
289
|
+
*
|
|
290
|
+
* @param {QueryParams} params - Query parameters used to filter or paginate the request.
|
|
291
|
+
* @returns {Observable<CoDepartmentsOut>}
|
|
292
|
+
* Observable emitting the departments list.
|
|
293
|
+
*/
|
|
294
|
+
getDepartments(params: QueryParams): Observable<CoDepartmentsOut>;
|
|
295
|
+
/**
|
|
296
|
+
* Retrieves the list of municipalities based on the provided query parameters.
|
|
297
|
+
*
|
|
298
|
+
* @param {QueryParams} params - Query parameters used to filter or paginate the request.
|
|
299
|
+
* @returns {Observable<CoMunicipalitiesOut>}
|
|
300
|
+
* Observable emitting the municipalities list.
|
|
301
|
+
*/
|
|
302
|
+
getMunicipalities(params: QueryParams): Observable<CoMunicipalitiesOut>;
|
|
303
|
+
/**
|
|
304
|
+
* Retrieves the list of postal codes based on the provided query parameters.
|
|
305
|
+
*
|
|
306
|
+
* @param {QueryParams} params - Query parameters used to filter or paginate the request.
|
|
307
|
+
* @returns {Observable<CoPostalCodesOut>}
|
|
308
|
+
* Observable emitting the postal codes list.
|
|
309
|
+
*/
|
|
310
|
+
getPostalCodes(params: QueryParams): Observable<CoPostalCodesOut>;
|
|
311
|
+
/**
|
|
312
|
+
* Retrieves the list of fiscal regimes based on the provided query parameters.
|
|
313
|
+
*
|
|
314
|
+
* @param {QueryParams} params - Query parameters used to filter or paginate the request.
|
|
315
|
+
* @returns {Observable<CoFiscalRegimesOut>}
|
|
316
|
+
* Observable emitting the fiscal regimes list.
|
|
317
|
+
*/
|
|
318
|
+
getFiscalRegimes(params: QueryParams): Observable<CoFiscalRegimesOut>;
|
|
319
|
+
/**
|
|
320
|
+
* Retrieves the list of fiscal responsibilities based on the provided query parameters.
|
|
321
|
+
*
|
|
322
|
+
* @param {QueryParams} params - Query parameters used to filter or paginate the request.
|
|
323
|
+
* @returns {Observable<CoFiscalResponsibilitiesOut>}
|
|
324
|
+
* Observable emitting the fiscal responsibilities list.
|
|
325
|
+
*/
|
|
326
|
+
getFiscalResponsibilities(params: QueryParams): Observable<CoFiscalResponsibilitiesOut>;
|
|
327
|
+
/**
|
|
328
|
+
* Retrieves the list of tributes based on the provided query parameters.
|
|
329
|
+
*
|
|
330
|
+
* @param {QueryParams} params - Query parameters used to filter or paginate the request.
|
|
331
|
+
* @returns {Observable<CoTributesOut>}
|
|
332
|
+
* Observable emitting the tributes list.
|
|
333
|
+
*/
|
|
334
|
+
getTributes(params: QueryParams): Observable<CoTributesOut>;
|
|
335
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApiBillingCOService, never>;
|
|
336
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApiBillingCOService>;
|
|
337
|
+
}
|
|
338
|
+
|
|
135
339
|
interface IncomeType extends LaravelModel {
|
|
136
340
|
code: string;
|
|
137
341
|
name: string;
|
|
@@ -6744,6 +6948,83 @@ interface HistoryReportCheckpoint extends ApiModel {
|
|
|
6744
6948
|
remark: string;
|
|
6745
6949
|
local_created_at: string;
|
|
6746
6950
|
}
|
|
6951
|
+
interface BillingDetailsReport extends ActiveLessLaravelModel {
|
|
6952
|
+
authorization: string;
|
|
6953
|
+
cancellation_reason: string | null;
|
|
6954
|
+
company_country_id: number;
|
|
6955
|
+
company_id: number;
|
|
6956
|
+
country_id: number;
|
|
6957
|
+
customer_company_name: string;
|
|
6958
|
+
customer_identification_number: string;
|
|
6959
|
+
customer_identification_type_name: string;
|
|
6960
|
+
document_category_name_EN: string;
|
|
6961
|
+
document_category_name_ES: string;
|
|
6962
|
+
document_category_name_FR: string;
|
|
6963
|
+
document_category_name_PT: string;
|
|
6964
|
+
document_category_name: string;
|
|
6965
|
+
document_full_number: string;
|
|
6966
|
+
document_id: number;
|
|
6967
|
+
document_sap_full_number: string;
|
|
6968
|
+
document_status_name_EN: string;
|
|
6969
|
+
document_status_name_ES: string;
|
|
6970
|
+
document_status_name_FR: string;
|
|
6971
|
+
document_status_name_PT: string;
|
|
6972
|
+
document_status_name: string;
|
|
6973
|
+
document_status: number;
|
|
6974
|
+
document_type_name_EN: string;
|
|
6975
|
+
document_type_name_ES: string;
|
|
6976
|
+
document_type_name_FR: string;
|
|
6977
|
+
document_type_name_PT: string;
|
|
6978
|
+
document_type_name: string;
|
|
6979
|
+
exchange: number;
|
|
6980
|
+
extracharge_codes: string[];
|
|
6981
|
+
installation_id: number;
|
|
6982
|
+
invoice_bill_state: string;
|
|
6983
|
+
is_expand?: boolean;
|
|
6984
|
+
issue_date: string;
|
|
6985
|
+
local_currency_amount_received: number;
|
|
6986
|
+
location_id: number;
|
|
6987
|
+
payments: BillingDetailsPayment[];
|
|
6988
|
+
shipment_account: string;
|
|
6989
|
+
shipment_destination_service_area_code: string;
|
|
6990
|
+
shipment_discount_amount_usd: number;
|
|
6991
|
+
shipment_discount_amount: number;
|
|
6992
|
+
shipment_freight_amount_usd: number;
|
|
6993
|
+
shipment_freight_amount: number;
|
|
6994
|
+
shipment_fuel_amount_usd: number;
|
|
6995
|
+
shipment_fuel_amount: number;
|
|
6996
|
+
shipment_invoiced_weight: number;
|
|
6997
|
+
shipment_origin_service_area_code: string;
|
|
6998
|
+
shipment_other_services_amount_usd: number;
|
|
6999
|
+
shipment_other_services_amount: number;
|
|
7000
|
+
shipment_packages_count: number;
|
|
7001
|
+
shipment_payer_account?: string;
|
|
7002
|
+
shipment_product_local_code: string;
|
|
7003
|
+
shipment_protection_value_amount_usd: number;
|
|
7004
|
+
shipment_protection_value_amount: number;
|
|
7005
|
+
shipment_real_weight: number;
|
|
7006
|
+
shipment_subtotal_usd: number;
|
|
7007
|
+
shipment_subtotal: number;
|
|
7008
|
+
shipment_total_usd: number;
|
|
7009
|
+
shipment_total: number;
|
|
7010
|
+
shipment_tracking_number: string;
|
|
7011
|
+
shipment_vat_usd: number;
|
|
7012
|
+
shipment_vat: number;
|
|
7013
|
+
user_id: number;
|
|
7014
|
+
user_username: string;
|
|
7015
|
+
validity: string;
|
|
7016
|
+
volumetric_weight: number;
|
|
7017
|
+
}
|
|
7018
|
+
interface BillingDetailsPayment extends ApiModel {
|
|
7019
|
+
country_payment_type_name: string;
|
|
7020
|
+
currency_code: string;
|
|
7021
|
+
amount_received: number;
|
|
7022
|
+
translations?: {
|
|
7023
|
+
name: {
|
|
7024
|
+
[key: string]: string | null;
|
|
7025
|
+
};
|
|
7026
|
+
};
|
|
7027
|
+
}
|
|
6747
7028
|
|
|
6748
7029
|
type CollectionPaymentsOut = {
|
|
6749
7030
|
collection_payments: CollectionPayment[];
|
|
@@ -6826,6 +7107,11 @@ type InventoriesReportOut = {
|
|
|
6826
7107
|
total: number;
|
|
6827
7108
|
transaction_id?: string;
|
|
6828
7109
|
};
|
|
7110
|
+
interface BillingDetailsReportOut {
|
|
7111
|
+
billing_details: BillingDetailsReport[];
|
|
7112
|
+
total: number;
|
|
7113
|
+
transaction_id?: string;
|
|
7114
|
+
}
|
|
6829
7115
|
|
|
6830
7116
|
declare class ApiReportsService {
|
|
6831
7117
|
private environments;
|
|
@@ -6972,6 +7258,13 @@ declare class ApiReportsService {
|
|
|
6972
7258
|
* @returns An observable that emits the list of inventories.
|
|
6973
7259
|
*/
|
|
6974
7260
|
getInventoriesReport(params: QueryParams): Observable<InventoriesReportOut>;
|
|
7261
|
+
/**
|
|
7262
|
+
* Retrieves billing details based on the provided query parameters.
|
|
7263
|
+
*
|
|
7264
|
+
* @param params - The query parameters used to filter the billing details.
|
|
7265
|
+
* @returns An observable that emits the billing details.
|
|
7266
|
+
*/
|
|
7267
|
+
getBillingDetails(params: QueryParams): Observable<BillingDetailsReportOut>;
|
|
6975
7268
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiReportsService, never>;
|
|
6976
7269
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiReportsService>;
|
|
6977
7270
|
}
|
|
@@ -8153,5 +8446,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
|
|
|
8153
8446
|
[header: string]: string | string[];
|
|
8154
8447
|
};
|
|
8155
8448
|
|
|
8156
|
-
export { AlphaNumeric, 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, ENVIRONMENT_TOKEN, Event, Group, NgxServicesModule, OperationModuleStatus, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiKeyInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
8157
|
-
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, BillingConfig, BillingConfigIn, BillingConfigOut, BillingConfigsOut, 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, CollectionPayment, CollectionPaymentsOut, CommercialInvoice, 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, 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, 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, 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, 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, Invoice, InvoiceCancellationIn, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, 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, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, 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, PackageLocationsData, 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, PrintCollectionReceiptOut, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, 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, 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, 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, ZonesOut };
|
|
8449
|
+
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, ENVIRONMENT_TOKEN, Event, Group, NgxServicesModule, OperationModuleStatus, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiKeyInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
8450
|
+
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, 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, CoCustomer, CoCustomerIn, CoCustomerOut, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoMunicipalitiesOut, CoMunicipality, CoPostalCode, CoPostalCodesOut, CoTribute, CoTributesOut, CollectionPayment, CollectionPaymentsOut, CommercialInvoice, 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, 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, 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, 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, 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, Invoice, InvoiceCancellationIn, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, 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, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, 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, PackageLocationsData, 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, PrintCollectionReceiptOut, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, 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, 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, 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, ZonesOut };
|