@experteam-mx/ngx-services 20.1.11 → 20.1.13
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
|
@@ -1505,6 +1505,145 @@ declare class ApiCatalogsService {
|
|
|
1505
1505
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiCatalogsService>;
|
|
1506
1506
|
}
|
|
1507
1507
|
|
|
1508
|
+
type AuthLoginIn = {
|
|
1509
|
+
username: string;
|
|
1510
|
+
password: string;
|
|
1511
|
+
role?: number;
|
|
1512
|
+
system_name?: string;
|
|
1513
|
+
};
|
|
1514
|
+
type AuthLoginOut = {
|
|
1515
|
+
access_token: string;
|
|
1516
|
+
token_type: string;
|
|
1517
|
+
expires_in: number;
|
|
1518
|
+
};
|
|
1519
|
+
type AuthUserLoginIn = {
|
|
1520
|
+
username: string;
|
|
1521
|
+
};
|
|
1522
|
+
type SessionIn = {
|
|
1523
|
+
modelType: string;
|
|
1524
|
+
modelId: number;
|
|
1525
|
+
token?: string;
|
|
1526
|
+
};
|
|
1527
|
+
type SessionOut = {
|
|
1528
|
+
session: Session;
|
|
1529
|
+
};
|
|
1530
|
+
type PutUsersIn = {
|
|
1531
|
+
user: User;
|
|
1532
|
+
};
|
|
1533
|
+
type PutUsersOut = {
|
|
1534
|
+
user: User;
|
|
1535
|
+
};
|
|
1536
|
+
type GetUserOut = {
|
|
1537
|
+
user: User;
|
|
1538
|
+
};
|
|
1539
|
+
type GetUsersOut = {
|
|
1540
|
+
users: User[];
|
|
1541
|
+
total: number;
|
|
1542
|
+
};
|
|
1543
|
+
type AuthMeOut = {
|
|
1544
|
+
user: UserMe;
|
|
1545
|
+
};
|
|
1546
|
+
type ChangeLanguageIn = {
|
|
1547
|
+
languageId: number;
|
|
1548
|
+
};
|
|
1549
|
+
type RolesOut = {
|
|
1550
|
+
roles: Role[];
|
|
1551
|
+
total: number;
|
|
1552
|
+
};
|
|
1553
|
+
type Pivot = {
|
|
1554
|
+
role_id: number;
|
|
1555
|
+
permission_id: number;
|
|
1556
|
+
} | {
|
|
1557
|
+
module_id: string;
|
|
1558
|
+
permission_id: string;
|
|
1559
|
+
};
|
|
1560
|
+
type RoleOut = {
|
|
1561
|
+
role: Role;
|
|
1562
|
+
};
|
|
1563
|
+
type RoleIn = {
|
|
1564
|
+
name: string;
|
|
1565
|
+
role_type_id: number;
|
|
1566
|
+
company_country_id: number;
|
|
1567
|
+
regional_country_id?: number[] | null;
|
|
1568
|
+
is_active: boolean;
|
|
1569
|
+
permissions?: string[];
|
|
1570
|
+
};
|
|
1571
|
+
type RoleTypesOut = {
|
|
1572
|
+
role_types: RoleType[];
|
|
1573
|
+
total: number;
|
|
1574
|
+
};
|
|
1575
|
+
type ModulesOut = {
|
|
1576
|
+
modules: Module[];
|
|
1577
|
+
total: number;
|
|
1578
|
+
};
|
|
1579
|
+
|
|
1580
|
+
interface Session extends LaravelModel {
|
|
1581
|
+
model_type: string;
|
|
1582
|
+
model_id: number;
|
|
1583
|
+
status: string;
|
|
1584
|
+
last_activity: string;
|
|
1585
|
+
user_agent: string;
|
|
1586
|
+
gmt_offset: string;
|
|
1587
|
+
opening_id: number;
|
|
1588
|
+
user_id: number;
|
|
1589
|
+
installation_id: number;
|
|
1590
|
+
locale: string | null;
|
|
1591
|
+
decimal_point: number;
|
|
1592
|
+
country_id: number;
|
|
1593
|
+
company_id: number;
|
|
1594
|
+
company_country_id: number;
|
|
1595
|
+
location_id: number;
|
|
1596
|
+
country_reference_currency_id: number;
|
|
1597
|
+
location_employee_id: number;
|
|
1598
|
+
}
|
|
1599
|
+
interface Role extends LaravelModel {
|
|
1600
|
+
name: string;
|
|
1601
|
+
guard_name: string;
|
|
1602
|
+
company_country_id: number;
|
|
1603
|
+
role_type_id: number;
|
|
1604
|
+
regional_country_id: number | null;
|
|
1605
|
+
role_type: RoleType;
|
|
1606
|
+
permissions?: Permission[];
|
|
1607
|
+
}
|
|
1608
|
+
interface RoleType extends LaravelModel {
|
|
1609
|
+
name: string;
|
|
1610
|
+
level: number;
|
|
1611
|
+
}
|
|
1612
|
+
interface Permission extends LaravelModel {
|
|
1613
|
+
name: string;
|
|
1614
|
+
guard_name: string;
|
|
1615
|
+
description: string;
|
|
1616
|
+
is_default: boolean;
|
|
1617
|
+
pivot: Pivot;
|
|
1618
|
+
}
|
|
1619
|
+
interface User extends LaravelModel {
|
|
1620
|
+
name: string;
|
|
1621
|
+
username: string;
|
|
1622
|
+
model_type: string;
|
|
1623
|
+
model_id: number;
|
|
1624
|
+
auth_type: string;
|
|
1625
|
+
language_id: number;
|
|
1626
|
+
email: string;
|
|
1627
|
+
roles: Role[];
|
|
1628
|
+
}
|
|
1629
|
+
interface UserMe extends Omit<User, 'roles'> {
|
|
1630
|
+
permissions: string[];
|
|
1631
|
+
session: Session | null;
|
|
1632
|
+
role: Role;
|
|
1633
|
+
}
|
|
1634
|
+
interface Module extends LaravelModel {
|
|
1635
|
+
name: string;
|
|
1636
|
+
code: string;
|
|
1637
|
+
module_type_id: number;
|
|
1638
|
+
module_type: ModuleType;
|
|
1639
|
+
permissions: Permission[];
|
|
1640
|
+
require_default_permission?: boolean;
|
|
1641
|
+
}
|
|
1642
|
+
interface ModuleType extends LaravelModel {
|
|
1643
|
+
name: string;
|
|
1644
|
+
description: string;
|
|
1645
|
+
}
|
|
1646
|
+
|
|
1508
1647
|
interface Account extends LaravelModel {
|
|
1509
1648
|
number: string;
|
|
1510
1649
|
description: string | null;
|
|
@@ -1621,18 +1760,20 @@ interface ExtraChargeEntity extends LaravelModel {
|
|
|
1621
1760
|
name: string;
|
|
1622
1761
|
}
|
|
1623
1762
|
interface Employee extends LaravelModel {
|
|
1624
|
-
|
|
1625
|
-
last_name: string;
|
|
1626
|
-
number: string;
|
|
1627
|
-
email: string;
|
|
1628
|
-
username: string;
|
|
1763
|
+
auth_type: string;
|
|
1629
1764
|
company_id: number;
|
|
1765
|
+
company: Company;
|
|
1630
1766
|
country_id: number;
|
|
1767
|
+
email: string;
|
|
1631
1768
|
external: boolean;
|
|
1769
|
+
last_name: string;
|
|
1770
|
+
locations: Location[];
|
|
1771
|
+
name: string;
|
|
1772
|
+
number: string;
|
|
1632
1773
|
phone_code: string;
|
|
1633
1774
|
phone_number: string;
|
|
1634
|
-
|
|
1635
|
-
|
|
1775
|
+
roles: Role[];
|
|
1776
|
+
username: string;
|
|
1636
1777
|
}
|
|
1637
1778
|
interface Exchange extends LaravelModel {
|
|
1638
1779
|
company_country_currency_id: number;
|
|
@@ -2212,6 +2353,10 @@ type WorkflowConfigsOut = {
|
|
|
2212
2353
|
workflow_configs: WorkflowConfig[];
|
|
2213
2354
|
total: number;
|
|
2214
2355
|
};
|
|
2356
|
+
type CompaniesOut = {
|
|
2357
|
+
companies: Company[];
|
|
2358
|
+
total: number;
|
|
2359
|
+
};
|
|
2215
2360
|
type CompanyIn = {
|
|
2216
2361
|
name: string;
|
|
2217
2362
|
contact_name: string;
|
|
@@ -2885,6 +3030,18 @@ declare class ApiCompaniesService {
|
|
|
2885
3030
|
* @return {Observable<WorkflowConfigsOut>} An observable that emits the processed batch of workflow configuration data as a response.
|
|
2886
3031
|
*/
|
|
2887
3032
|
postWorkflowConfigsBatch(body: WorkflowConfigsBatchIn): Observable<WorkflowConfigsOut>;
|
|
3033
|
+
/**
|
|
3034
|
+
* Retrieves a list of companies based on the provided query parameters.
|
|
3035
|
+
* @param params - The query parameters to filter and paginate the companies list
|
|
3036
|
+
* @returns An Observable that emits the companies data
|
|
3037
|
+
*/
|
|
3038
|
+
getCompanies(params: QueryParams): Observable<CompaniesOut>;
|
|
3039
|
+
/**
|
|
3040
|
+
* Retrieves a company by its ID.
|
|
3041
|
+
* @param id - The unique identifier of the company to retrieve.
|
|
3042
|
+
* @returns An Observable that emits the company data.
|
|
3043
|
+
*/
|
|
3044
|
+
getCompany(id: number): Observable<CompanyOut>;
|
|
2888
3045
|
/**
|
|
2889
3046
|
* Sends a POST request to create a new company and returns the created company's details.
|
|
2890
3047
|
*
|
|
@@ -6168,145 +6325,6 @@ interface Sales extends ActiveLessLaravelModel {
|
|
|
6168
6325
|
user_id: number;
|
|
6169
6326
|
}
|
|
6170
6327
|
|
|
6171
|
-
type AuthLoginIn = {
|
|
6172
|
-
username: string;
|
|
6173
|
-
password: string;
|
|
6174
|
-
role?: number;
|
|
6175
|
-
system_name?: string;
|
|
6176
|
-
};
|
|
6177
|
-
type AuthLoginOut = {
|
|
6178
|
-
access_token: string;
|
|
6179
|
-
token_type: string;
|
|
6180
|
-
expires_in: number;
|
|
6181
|
-
};
|
|
6182
|
-
type AuthUserLoginIn = {
|
|
6183
|
-
username: string;
|
|
6184
|
-
};
|
|
6185
|
-
type SessionIn = {
|
|
6186
|
-
modelType: string;
|
|
6187
|
-
modelId: number;
|
|
6188
|
-
token?: string;
|
|
6189
|
-
};
|
|
6190
|
-
type SessionOut = {
|
|
6191
|
-
session: Session;
|
|
6192
|
-
};
|
|
6193
|
-
type PutUsersIn = {
|
|
6194
|
-
user: User;
|
|
6195
|
-
};
|
|
6196
|
-
type PutUsersOut = {
|
|
6197
|
-
user: User;
|
|
6198
|
-
};
|
|
6199
|
-
type GetUserOut = {
|
|
6200
|
-
user: User;
|
|
6201
|
-
};
|
|
6202
|
-
type GetUsersOut = {
|
|
6203
|
-
users: User[];
|
|
6204
|
-
total: number;
|
|
6205
|
-
};
|
|
6206
|
-
type AuthMeOut = {
|
|
6207
|
-
user: UserMe;
|
|
6208
|
-
};
|
|
6209
|
-
type ChangeLanguageIn = {
|
|
6210
|
-
languageId: number;
|
|
6211
|
-
};
|
|
6212
|
-
type RolesOut = {
|
|
6213
|
-
roles: Role[];
|
|
6214
|
-
total: number;
|
|
6215
|
-
};
|
|
6216
|
-
type Pivot = {
|
|
6217
|
-
role_id: number;
|
|
6218
|
-
permission_id: number;
|
|
6219
|
-
} | {
|
|
6220
|
-
module_id: string;
|
|
6221
|
-
permission_id: string;
|
|
6222
|
-
};
|
|
6223
|
-
type RoleOut = {
|
|
6224
|
-
role: Role;
|
|
6225
|
-
};
|
|
6226
|
-
type RoleIn = {
|
|
6227
|
-
name: string;
|
|
6228
|
-
role_type_id: number;
|
|
6229
|
-
company_country_id: number;
|
|
6230
|
-
regional_country_id?: number[] | null;
|
|
6231
|
-
is_active: boolean;
|
|
6232
|
-
permissions?: string[];
|
|
6233
|
-
};
|
|
6234
|
-
type RoleTypesOut = {
|
|
6235
|
-
role_types: RoleType[];
|
|
6236
|
-
total: number;
|
|
6237
|
-
};
|
|
6238
|
-
type ModulesOut = {
|
|
6239
|
-
modules: Module[];
|
|
6240
|
-
total: number;
|
|
6241
|
-
};
|
|
6242
|
-
|
|
6243
|
-
interface Session extends LaravelModel {
|
|
6244
|
-
model_type: string;
|
|
6245
|
-
model_id: number;
|
|
6246
|
-
status: string;
|
|
6247
|
-
last_activity: string;
|
|
6248
|
-
user_agent: string;
|
|
6249
|
-
gmt_offset: string;
|
|
6250
|
-
opening_id: number;
|
|
6251
|
-
user_id: number;
|
|
6252
|
-
installation_id: number;
|
|
6253
|
-
locale: string | null;
|
|
6254
|
-
decimal_point: number;
|
|
6255
|
-
country_id: number;
|
|
6256
|
-
company_id: number;
|
|
6257
|
-
company_country_id: number;
|
|
6258
|
-
location_id: number;
|
|
6259
|
-
country_reference_currency_id: number;
|
|
6260
|
-
location_employee_id: number;
|
|
6261
|
-
}
|
|
6262
|
-
interface Role extends LaravelModel {
|
|
6263
|
-
name: string;
|
|
6264
|
-
guard_name: string;
|
|
6265
|
-
company_country_id: number;
|
|
6266
|
-
role_type_id: number;
|
|
6267
|
-
regional_country_id: number | null;
|
|
6268
|
-
role_type: RoleType;
|
|
6269
|
-
permissions?: Permission[];
|
|
6270
|
-
}
|
|
6271
|
-
interface RoleType extends LaravelModel {
|
|
6272
|
-
name: string;
|
|
6273
|
-
level: number;
|
|
6274
|
-
}
|
|
6275
|
-
interface Permission extends LaravelModel {
|
|
6276
|
-
name: string;
|
|
6277
|
-
guard_name: string;
|
|
6278
|
-
description: string;
|
|
6279
|
-
is_default: boolean;
|
|
6280
|
-
pivot: Pivot;
|
|
6281
|
-
}
|
|
6282
|
-
interface User extends LaravelModel {
|
|
6283
|
-
name: string;
|
|
6284
|
-
username: string;
|
|
6285
|
-
model_type: string;
|
|
6286
|
-
model_id: number;
|
|
6287
|
-
auth_type: string;
|
|
6288
|
-
language_id: number;
|
|
6289
|
-
email: string;
|
|
6290
|
-
roles: Role[];
|
|
6291
|
-
}
|
|
6292
|
-
interface UserMe extends Omit<User, 'roles'> {
|
|
6293
|
-
permissions: string[];
|
|
6294
|
-
session: Session | null;
|
|
6295
|
-
role: Role;
|
|
6296
|
-
}
|
|
6297
|
-
interface Module extends LaravelModel {
|
|
6298
|
-
name: string;
|
|
6299
|
-
code: string;
|
|
6300
|
-
module_type_id: number;
|
|
6301
|
-
module_type: ModuleType;
|
|
6302
|
-
permissions: Permission[];
|
|
6303
|
-
require_default_permission?: boolean;
|
|
6304
|
-
}
|
|
6305
|
-
interface ModuleType extends LaravelModel {
|
|
6306
|
-
name: string;
|
|
6307
|
-
description: string;
|
|
6308
|
-
}
|
|
6309
|
-
|
|
6310
6328
|
type CollectionPaymentsOut = {
|
|
6311
6329
|
collection_payments: CollectionPayment[];
|
|
6312
6330
|
total: number;
|
|
@@ -7594,4 +7612,4 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
|
|
|
7594
7612
|
};
|
|
7595
7613
|
|
|
7596
7614
|
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, NgxServicesModule, OperationModuleStatus, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiKeyInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
7597
|
-
export type { Account, AccountCategoriesOut, AccountCategory, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, 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, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, CountriesOut, Country, 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, Criteria, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, 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, 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, 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, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypesOut, OperationsLoadTopCustomerV2In, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, PackageLocation, PackageLocationsData, PackagesInStockIn, PackagesInStockOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueIn, ParameterValueOut, ParametersByLevelIn, ParametersOut, ParametersValuesIn, ParametersValuesOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, Pivot, PostalCode, PostalCodeBillings, 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, QuestionType, QuestionTypesOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, 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, 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, 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 };
|
|
7615
|
+
export type { Account, AccountCategoriesOut, AccountCategory, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, 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, 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, Criteria, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, 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, 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, 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, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypesOut, OperationsLoadTopCustomerV2In, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, PackageLocation, PackageLocationsData, PackagesInStockIn, PackagesInStockOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueIn, ParameterValueOut, ParametersByLevelIn, ParametersOut, ParametersValuesIn, ParametersValuesOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, Pivot, PostalCode, PostalCodeBillings, 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, QuestionType, QuestionTypesOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, 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, 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, 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 };
|