@experteam-mx/ngx-services 20.0.31 → 20.1.0-environmentTest.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +80 -24
- package/fesm2022/experteam-mx-ngx-services.mjs +375 -426
- package/fesm2022/experteam-mx-ngx-services.mjs.map +1 -1
- package/index.d.ts +435 -283
- package/package.json +6 -6
package/index.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, ModuleWithProviders } from '@angular/core';
|
|
3
|
-
import { HttpClient, HttpResponse, HttpRequest, HttpHandlerFn, HttpEvent, HttpParams, HttpHeaders } from '@angular/common/http';
|
|
2
|
+
import { InjectionToken, ModuleWithProviders, EnvironmentProviders } from '@angular/core';
|
|
4
3
|
import { Observable } from 'rxjs';
|
|
5
|
-
import {
|
|
4
|
+
import { HttpResponse, HttpRequest, HttpHandlerFn, HttpEvent, HttpParams, HttpHeaders } from '@angular/common/http';
|
|
6
5
|
import { Channel } from 'pusher-js';
|
|
7
6
|
|
|
8
7
|
/**
|
|
@@ -47,6 +46,7 @@ type Environment = {
|
|
|
47
46
|
apiServicesUrl?: string;
|
|
48
47
|
apiShipmentUrl?: string;
|
|
49
48
|
apiSuppliesUrl?: string;
|
|
49
|
+
apiSurveysUrl?: string;
|
|
50
50
|
authCookie?: string;
|
|
51
51
|
cacheTtl?: number;
|
|
52
52
|
printUrl?: string;
|
|
@@ -75,6 +75,9 @@ declare class NgxServicesModule {
|
|
|
75
75
|
* @param {Environment} environment - The environment configuration object.
|
|
76
76
|
*
|
|
77
77
|
* @return {ModuleWithProviders<NgxServicesModule>} The module with providers for the NgxServicesModule.
|
|
78
|
+
*
|
|
79
|
+
* @deprecated Use `provideNgxServices(environment)` in `ApplicationConfig.providers`
|
|
80
|
+
* for standalone applications. This API will be removed in `20.2.0`.
|
|
78
81
|
*/
|
|
79
82
|
static forRoot(environment: Environment): ModuleWithProviders<NgxServicesModule>;
|
|
80
83
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgxServicesModule, never>;
|
|
@@ -82,6 +85,14 @@ declare class NgxServicesModule {
|
|
|
82
85
|
static ɵinj: i0.ɵɵInjectorDeclaration<NgxServicesModule>;
|
|
83
86
|
}
|
|
84
87
|
|
|
88
|
+
/**
|
|
89
|
+
* Provides ngx-services dependencies for standalone Angular applications.
|
|
90
|
+
*
|
|
91
|
+
* Register this provider in `ApplicationConfig.providers` so all services in
|
|
92
|
+
* this library can resolve the environment-based configuration.
|
|
93
|
+
*/
|
|
94
|
+
declare function provideNgxServices(environment: Environment): EnvironmentProviders;
|
|
95
|
+
|
|
85
96
|
interface ApiResponse {
|
|
86
97
|
status: 'success' | 'fail' | 'error';
|
|
87
98
|
}
|
|
@@ -133,17 +144,16 @@ type IncomeTypesOut = {
|
|
|
133
144
|
declare class ApiBillingDOService {
|
|
134
145
|
private environments;
|
|
135
146
|
private http;
|
|
136
|
-
constructor(environments: Environment, http: HttpClient);
|
|
137
147
|
/**
|
|
138
|
-
*
|
|
148
|
+
* Gets the base URL for Billing DO API endpoints.
|
|
139
149
|
*
|
|
140
|
-
* @
|
|
150
|
+
* @returns {string} Billing DO API base URL, or an empty string when it is not configured.
|
|
141
151
|
*/
|
|
142
152
|
get url(): string;
|
|
143
153
|
/**
|
|
144
|
-
* Retrieves
|
|
154
|
+
* Retrieves the list of income types from Billing DO.
|
|
145
155
|
*
|
|
146
|
-
* @
|
|
156
|
+
* @returns {Observable<IncomeTypesOut>} Observable that emits the income types payload.
|
|
147
157
|
*/
|
|
148
158
|
getIncomeTypes(): Observable<IncomeTypesOut>;
|
|
149
159
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiBillingDOService, never>;
|
|
@@ -220,31 +230,30 @@ type BillingConfigOut = {
|
|
|
220
230
|
declare class ApiBillingGtService implements ApiBillingConfigurable {
|
|
221
231
|
private environments;
|
|
222
232
|
private http;
|
|
223
|
-
constructor(environments: Environment, http: HttpClient);
|
|
224
233
|
/**
|
|
225
|
-
*
|
|
234
|
+
* Gets the base URL for Billing GT API endpoints.
|
|
226
235
|
*
|
|
227
|
-
* @
|
|
236
|
+
* @returns {string} Billing GT API base URL, or an empty string when it is not configured.
|
|
228
237
|
*/
|
|
229
238
|
get url(): string;
|
|
230
239
|
/**
|
|
231
|
-
*
|
|
240
|
+
* Retrieves the list of billing configurations by location.
|
|
232
241
|
*
|
|
233
|
-
* @
|
|
242
|
+
* @returns {Observable<BillingConfigsOut>} Observable that emits the billing configurations payload.
|
|
234
243
|
*/
|
|
235
244
|
getConfigs(): Observable<BillingConfigsOut>;
|
|
236
245
|
/**
|
|
237
|
-
* Retrieves
|
|
246
|
+
* Retrieves billing configuration details for a location.
|
|
238
247
|
*
|
|
239
|
-
* @param {number} id -
|
|
240
|
-
* @
|
|
248
|
+
* @param {number} id - Location identifier to fetch.
|
|
249
|
+
* @returns {Observable<BillingConfigOut>} Observable that emits the location billing configuration payload.
|
|
241
250
|
*/
|
|
242
251
|
getConfig(id: number): Observable<BillingConfigOut>;
|
|
243
252
|
/**
|
|
244
|
-
*
|
|
253
|
+
* Creates a billing configuration for a location.
|
|
245
254
|
*
|
|
246
|
-
* @param {BillingConfigIn} body -
|
|
247
|
-
* @
|
|
255
|
+
* @param {BillingConfigIn} body - Billing configuration payload for the location.
|
|
256
|
+
* @returns {Observable<BillingConfigOut>} Observable that emits the created billing configuration payload.
|
|
248
257
|
*/
|
|
249
258
|
postConfigs(body: BillingConfigIn): Observable<BillingConfigOut>;
|
|
250
259
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiBillingGtService, never>;
|
|
@@ -288,31 +297,30 @@ type PostalCodesOut = {
|
|
|
288
297
|
declare class ApiBillingMxService {
|
|
289
298
|
private environments;
|
|
290
299
|
private http;
|
|
291
|
-
constructor(environments: Environment, http: HttpClient);
|
|
292
300
|
/**
|
|
293
|
-
*
|
|
301
|
+
* Gets the base URL for Billing MX API endpoints.
|
|
294
302
|
*
|
|
295
|
-
* @
|
|
303
|
+
* @returns {string} Billing MX API base URL, or an empty string when it is not configured.
|
|
296
304
|
*/
|
|
297
305
|
get url(): string;
|
|
298
306
|
/**
|
|
299
|
-
*
|
|
307
|
+
* Retrieves the list of fiscal regimens from Billing MX.
|
|
300
308
|
*
|
|
301
|
-
* @
|
|
309
|
+
* @returns {Observable<FiscalRegimensOut>} Observable that emits the fiscal regimens payload.
|
|
302
310
|
*/
|
|
303
311
|
getFiscalRegimens(): Observable<FiscalRegimensOut>;
|
|
304
312
|
/**
|
|
305
|
-
*
|
|
313
|
+
* Retrieves the CFDI uses accepted for a fiscal regimen.
|
|
306
314
|
*
|
|
307
|
-
* @param {number} fiscalRegimen
|
|
308
|
-
* @
|
|
315
|
+
* @param {number} fiscalRegimen Fiscal regimen identifier used to filter accepted CFDI uses.
|
|
316
|
+
* @returns {Observable<FiscalRegimensAcceptedOut>} Observable that emits the accepted CFDI uses payload.
|
|
309
317
|
*/
|
|
310
318
|
getFiscalRegimensAccepted(fiscalRegimen: number): Observable<FiscalRegimensAcceptedOut>;
|
|
311
319
|
/**
|
|
312
|
-
*
|
|
320
|
+
* Retrieves postal code information from Billing MX.
|
|
313
321
|
*
|
|
314
|
-
* @param {QueryParams} params
|
|
315
|
-
* @
|
|
322
|
+
* @param {QueryParams} params Query parameters used by the postal codes endpoint.
|
|
323
|
+
* @returns {Observable<PostalCodesOut>} Observable that emits the postal code data payload.
|
|
316
324
|
*/
|
|
317
325
|
getPostalCodes(params: QueryParams): Observable<PostalCodesOut>;
|
|
318
326
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiBillingMxService, never>;
|
|
@@ -322,59 +330,58 @@ declare class ApiBillingMxService {
|
|
|
322
330
|
declare class ApiBillingPaService implements ApiBillingConfigurable {
|
|
323
331
|
private environments;
|
|
324
332
|
private http;
|
|
325
|
-
constructor(environments: Environment, http: HttpClient);
|
|
326
333
|
/**
|
|
327
|
-
*
|
|
334
|
+
* Gets the base URL for Billing PA API endpoints.
|
|
328
335
|
*
|
|
329
|
-
* @
|
|
336
|
+
* @returns {string} Billing PA API base URL, or an empty string when it is not configured.
|
|
330
337
|
*/
|
|
331
338
|
get url(): string;
|
|
332
339
|
/**
|
|
333
|
-
* Retrieves
|
|
340
|
+
* Retrieves the list of districts.
|
|
334
341
|
*
|
|
335
|
-
* @param {QueryParams} params
|
|
336
|
-
* @returns {Observable<DistrictsOut>}
|
|
342
|
+
* @param {QueryParams} params Query parameters used by the districts endpoint.
|
|
343
|
+
* @returns {Observable<DistrictsOut>} Observable that emits the districts payload.
|
|
337
344
|
*/
|
|
338
345
|
getDistricts(params: QueryParams): Observable<DistrictsOut>;
|
|
339
346
|
/**
|
|
340
|
-
|
|
347
|
+
* Retrieves the list of parishes.
|
|
341
348
|
*
|
|
342
|
-
|
|
343
|
-
|
|
349
|
+
* @param {QueryParams} params Query parameters used by the parishes endpoint.
|
|
350
|
+
* @returns {Observable<ParishesOut>} Observable that emits the parishes payload.
|
|
344
351
|
*/
|
|
345
352
|
getParishes(params: QueryParams): Observable<ParishesOut>;
|
|
346
353
|
/**
|
|
347
|
-
|
|
354
|
+
* Retrieves the list of provinces.
|
|
348
355
|
*
|
|
349
|
-
|
|
350
|
-
|
|
356
|
+
* @param {QueryParams} params Query parameters used by the provinces endpoint.
|
|
357
|
+
* @returns {Observable<ProvincesOut>} Observable that emits the provinces payload.
|
|
351
358
|
*/
|
|
352
359
|
getProvinces(params: QueryParams): Observable<ProvincesOut>;
|
|
353
360
|
/**
|
|
354
|
-
|
|
361
|
+
* Validates a customer using Billing PA.
|
|
355
362
|
*
|
|
356
|
-
|
|
357
|
-
|
|
363
|
+
* @param {QueryParams} params Query parameters used by the customer validation endpoint.
|
|
364
|
+
* @returns {Observable<BillingPaCustomerOut>} Observable that emits customer validation data.
|
|
358
365
|
*/
|
|
359
366
|
getValidateCustomer(params: QueryParams): Observable<BillingPaCustomerOut>;
|
|
360
367
|
/**
|
|
361
|
-
|
|
368
|
+
* Retrieves billing configurations by location.
|
|
362
369
|
*
|
|
363
|
-
|
|
370
|
+
* @returns {Observable<BillingConfigsOut>} Observable that emits billing configuration items.
|
|
364
371
|
*/
|
|
365
372
|
getConfigs(): Observable<BillingConfigsOut>;
|
|
366
373
|
/**
|
|
367
|
-
|
|
374
|
+
* Retrieves the billing configuration for a location.
|
|
368
375
|
*
|
|
369
|
-
|
|
370
|
-
|
|
376
|
+
* @param {number} id Location identifier.
|
|
377
|
+
* @returns {Observable<BillingConfigOut>} Observable that emits the location billing configuration payload.
|
|
371
378
|
*/
|
|
372
379
|
getConfig(id: number): Observable<BillingConfigOut>;
|
|
373
380
|
/**
|
|
374
|
-
|
|
381
|
+
* Creates a billing configuration for a location.
|
|
375
382
|
*
|
|
376
|
-
|
|
377
|
-
|
|
383
|
+
* @param {BillingConfigIn} body Billing configuration payload for the new location.
|
|
384
|
+
* @returns {Observable<BillingConfigOut>} Observable that emits the created billing configuration payload.
|
|
378
385
|
*/
|
|
379
386
|
postConfigs(body: BillingConfigIn): Observable<BillingConfigOut>;
|
|
380
387
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiBillingPaService, never>;
|
|
@@ -427,47 +434,46 @@ type MunicipalitiesOut = {
|
|
|
427
434
|
declare class ApiBillingSvService {
|
|
428
435
|
private environments;
|
|
429
436
|
private http;
|
|
430
|
-
constructor(environments: Environment, http: HttpClient);
|
|
431
437
|
/**
|
|
432
438
|
* Retrieves the URL for the billing API.
|
|
433
439
|
* If the URL is not defined in the environments configuration, returns an empty string.
|
|
434
440
|
*
|
|
435
|
-
|
|
441
|
+
* @returns {string} The billing API URL or an empty string if not set.
|
|
436
442
|
*/
|
|
437
443
|
get url(): string;
|
|
438
444
|
/**
|
|
439
445
|
* Fetches the list of economic activities based on the provided query parameters.
|
|
440
446
|
*
|
|
441
447
|
* @param {QueryParams} params - The query parameters used to filter the economic activities.
|
|
442
|
-
|
|
448
|
+
* @returns {Observable<EconomicActivitiesOut>} An observable that emits the list of economic activities.
|
|
443
449
|
*/
|
|
444
450
|
getEconomicActivities(params: QueryParams): Observable<EconomicActivitiesOut>;
|
|
445
451
|
/**
|
|
446
452
|
* Retrieves the list of person types based on given query parameters.
|
|
447
453
|
*
|
|
448
454
|
* @param {QueryParams} params - The query parameters used to filter the person types.
|
|
449
|
-
|
|
455
|
+
* @returns {Observable<PersonTypesOut>} An observable that emits a list of person types.
|
|
450
456
|
*/
|
|
451
457
|
getPersonTypes(params: QueryParams): Observable<PersonTypesOut>;
|
|
452
458
|
/**
|
|
453
459
|
* Fetches the list of establishment types.
|
|
454
460
|
*
|
|
455
461
|
* @param {QueryParams} params The query parameters to be sent with the HTTP request.
|
|
456
|
-
|
|
462
|
+
* @returns {Observable<EstablishmentTypesOut>} An observable that emits the establishment types data.
|
|
457
463
|
*/
|
|
458
464
|
getEstablishmentTypes(params: QueryParams): Observable<EstablishmentTypesOut>;
|
|
459
465
|
/**
|
|
460
466
|
* Fetches the list of departments based on the provided query parameters.
|
|
461
467
|
*
|
|
462
468
|
* @param {QueryParams} params - The query parameters to filter or modify the departments fetch request.
|
|
463
|
-
|
|
469
|
+
* @returns {Observable<DepartmentsOut>} An observable emitting the list of departments.
|
|
464
470
|
*/
|
|
465
471
|
getDepartments(params: QueryParams): Observable<DepartmentsOut>;
|
|
466
472
|
/**
|
|
467
473
|
* Retrieves a list of municipalities based on the provided query parameters.
|
|
468
474
|
*
|
|
469
475
|
* @param {QueryParams} params - The query parameters used to filter the municipalities.
|
|
470
|
-
|
|
476
|
+
* @returns {Observable<MunicipalitiesOut>} An observable that emits the retrieved municipalities data.
|
|
471
477
|
*/
|
|
472
478
|
getMunicipalities(params: QueryParams): Observable<MunicipalitiesOut>;
|
|
473
479
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiBillingSvService, never>;
|
|
@@ -553,11 +559,10 @@ type DepositSlipOut = {
|
|
|
553
559
|
declare class ApiCashOperationsService {
|
|
554
560
|
private environments;
|
|
555
561
|
private http;
|
|
556
|
-
constructor(environments: Environment, http: HttpClient);
|
|
557
562
|
/**
|
|
558
563
|
* Retrieves the URL for the cash operations API from the environment configurations.
|
|
559
564
|
*
|
|
560
|
-
|
|
565
|
+
* @returns {string} The URL of the cash operations API.
|
|
561
566
|
*/
|
|
562
567
|
get url(): string;
|
|
563
568
|
/**
|
|
@@ -706,6 +711,7 @@ interface ExtraCharge extends SymfonyModel {
|
|
|
706
711
|
code: string;
|
|
707
712
|
name: string;
|
|
708
713
|
isDiscount: boolean;
|
|
714
|
+
aggregated: boolean;
|
|
709
715
|
}
|
|
710
716
|
interface Region extends SymfonyModel {
|
|
711
717
|
code: string;
|
|
@@ -931,6 +937,7 @@ type ExtraChargeIn = {
|
|
|
931
937
|
code: string;
|
|
932
938
|
name: string;
|
|
933
939
|
isDiscount: boolean;
|
|
940
|
+
aggregated: boolean;
|
|
934
941
|
};
|
|
935
942
|
type ExtraChargeOut = {
|
|
936
943
|
extraCharge: ExtraCharge;
|
|
@@ -1056,7 +1063,6 @@ type PackageLocationsData = {
|
|
|
1056
1063
|
declare class ApiCatalogsService {
|
|
1057
1064
|
private environments;
|
|
1058
1065
|
private http;
|
|
1059
|
-
constructor(environments: Environment, http: HttpClient);
|
|
1060
1066
|
/**
|
|
1061
1067
|
* Retrieves the URL for the reports API from the environment configurations.
|
|
1062
1068
|
*
|
|
@@ -1511,6 +1517,145 @@ declare class ApiCatalogsService {
|
|
|
1511
1517
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiCatalogsService>;
|
|
1512
1518
|
}
|
|
1513
1519
|
|
|
1520
|
+
type AuthLoginIn = {
|
|
1521
|
+
username: string;
|
|
1522
|
+
password: string;
|
|
1523
|
+
role?: number;
|
|
1524
|
+
system_name?: string;
|
|
1525
|
+
};
|
|
1526
|
+
type AuthLoginOut = {
|
|
1527
|
+
access_token: string;
|
|
1528
|
+
token_type: string;
|
|
1529
|
+
expires_in: number;
|
|
1530
|
+
};
|
|
1531
|
+
type AuthUserLoginIn = {
|
|
1532
|
+
username: string;
|
|
1533
|
+
};
|
|
1534
|
+
type SessionIn = {
|
|
1535
|
+
modelType: string;
|
|
1536
|
+
modelId: number;
|
|
1537
|
+
token?: string;
|
|
1538
|
+
};
|
|
1539
|
+
type SessionOut = {
|
|
1540
|
+
session: Session;
|
|
1541
|
+
};
|
|
1542
|
+
type PutUsersIn = {
|
|
1543
|
+
user: User;
|
|
1544
|
+
};
|
|
1545
|
+
type PutUsersOut = {
|
|
1546
|
+
user: User;
|
|
1547
|
+
};
|
|
1548
|
+
type GetUserOut = {
|
|
1549
|
+
user: User;
|
|
1550
|
+
};
|
|
1551
|
+
type GetUsersOut = {
|
|
1552
|
+
users: User[];
|
|
1553
|
+
total: number;
|
|
1554
|
+
};
|
|
1555
|
+
type AuthMeOut = {
|
|
1556
|
+
user: UserMe;
|
|
1557
|
+
};
|
|
1558
|
+
type ChangeLanguageIn = {
|
|
1559
|
+
languageId: number;
|
|
1560
|
+
};
|
|
1561
|
+
type RolesOut = {
|
|
1562
|
+
roles: Role[];
|
|
1563
|
+
total: number;
|
|
1564
|
+
};
|
|
1565
|
+
type Pivot = {
|
|
1566
|
+
role_id: number;
|
|
1567
|
+
permission_id: number;
|
|
1568
|
+
} | {
|
|
1569
|
+
module_id: string;
|
|
1570
|
+
permission_id: string;
|
|
1571
|
+
};
|
|
1572
|
+
type RoleOut = {
|
|
1573
|
+
role: Role;
|
|
1574
|
+
};
|
|
1575
|
+
type RoleIn = {
|
|
1576
|
+
name: string;
|
|
1577
|
+
role_type_id: number;
|
|
1578
|
+
company_country_id: number;
|
|
1579
|
+
regional_country_id?: number[] | null;
|
|
1580
|
+
is_active: boolean;
|
|
1581
|
+
permissions?: string[];
|
|
1582
|
+
};
|
|
1583
|
+
type RoleTypesOut = {
|
|
1584
|
+
role_types: RoleType[];
|
|
1585
|
+
total: number;
|
|
1586
|
+
};
|
|
1587
|
+
type ModulesOut = {
|
|
1588
|
+
modules: Module[];
|
|
1589
|
+
total: number;
|
|
1590
|
+
};
|
|
1591
|
+
|
|
1592
|
+
interface Session extends LaravelModel {
|
|
1593
|
+
model_type: string;
|
|
1594
|
+
model_id: number;
|
|
1595
|
+
status: string;
|
|
1596
|
+
last_activity: string;
|
|
1597
|
+
user_agent: string;
|
|
1598
|
+
gmt_offset: string;
|
|
1599
|
+
opening_id: number;
|
|
1600
|
+
user_id: number;
|
|
1601
|
+
installation_id: number;
|
|
1602
|
+
locale: string | null;
|
|
1603
|
+
decimal_point: number;
|
|
1604
|
+
country_id: number;
|
|
1605
|
+
company_id: number;
|
|
1606
|
+
company_country_id: number;
|
|
1607
|
+
location_id: number;
|
|
1608
|
+
country_reference_currency_id: number;
|
|
1609
|
+
location_employee_id: number;
|
|
1610
|
+
}
|
|
1611
|
+
interface Role extends LaravelModel {
|
|
1612
|
+
name: string;
|
|
1613
|
+
guard_name: string;
|
|
1614
|
+
company_country_id: number;
|
|
1615
|
+
role_type_id: number;
|
|
1616
|
+
regional_country_id: number | null;
|
|
1617
|
+
role_type: RoleType;
|
|
1618
|
+
permissions?: Permission[];
|
|
1619
|
+
}
|
|
1620
|
+
interface RoleType extends LaravelModel {
|
|
1621
|
+
name: string;
|
|
1622
|
+
level: number;
|
|
1623
|
+
}
|
|
1624
|
+
interface Permission extends LaravelModel {
|
|
1625
|
+
name: string;
|
|
1626
|
+
guard_name: string;
|
|
1627
|
+
description: string;
|
|
1628
|
+
is_default: boolean;
|
|
1629
|
+
pivot: Pivot;
|
|
1630
|
+
}
|
|
1631
|
+
interface User extends LaravelModel {
|
|
1632
|
+
name: string;
|
|
1633
|
+
username: string;
|
|
1634
|
+
model_type: string;
|
|
1635
|
+
model_id: number;
|
|
1636
|
+
auth_type: string;
|
|
1637
|
+
language_id: number;
|
|
1638
|
+
email: string;
|
|
1639
|
+
roles: Role[];
|
|
1640
|
+
}
|
|
1641
|
+
interface UserMe extends Omit<User, 'roles'> {
|
|
1642
|
+
permissions: string[];
|
|
1643
|
+
session: Session | null;
|
|
1644
|
+
role: Role;
|
|
1645
|
+
}
|
|
1646
|
+
interface Module extends LaravelModel {
|
|
1647
|
+
name: string;
|
|
1648
|
+
code: string;
|
|
1649
|
+
module_type_id: number;
|
|
1650
|
+
module_type: ModuleType;
|
|
1651
|
+
permissions: Permission[];
|
|
1652
|
+
require_default_permission?: boolean;
|
|
1653
|
+
}
|
|
1654
|
+
interface ModuleType extends LaravelModel {
|
|
1655
|
+
name: string;
|
|
1656
|
+
description: string;
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1514
1659
|
interface Account extends LaravelModel {
|
|
1515
1660
|
number: string;
|
|
1516
1661
|
description: string | null;
|
|
@@ -1627,18 +1772,20 @@ interface ExtraChargeEntity extends LaravelModel {
|
|
|
1627
1772
|
name: string;
|
|
1628
1773
|
}
|
|
1629
1774
|
interface Employee extends LaravelModel {
|
|
1630
|
-
|
|
1631
|
-
last_name: string;
|
|
1632
|
-
number: string;
|
|
1633
|
-
email: string;
|
|
1634
|
-
username: string;
|
|
1775
|
+
auth_type: string;
|
|
1635
1776
|
company_id: number;
|
|
1777
|
+
company: Company;
|
|
1636
1778
|
country_id: number;
|
|
1779
|
+
email: string;
|
|
1637
1780
|
external: boolean;
|
|
1781
|
+
last_name: string;
|
|
1782
|
+
locations: Location[];
|
|
1783
|
+
name: string;
|
|
1784
|
+
number: string;
|
|
1638
1785
|
phone_code: string;
|
|
1639
1786
|
phone_number: string;
|
|
1640
|
-
|
|
1641
|
-
|
|
1787
|
+
roles: Role[];
|
|
1788
|
+
username: string;
|
|
1642
1789
|
}
|
|
1643
1790
|
interface Exchange extends LaravelModel {
|
|
1644
1791
|
company_country_currency_id: number;
|
|
@@ -2218,6 +2365,10 @@ type WorkflowConfigsOut = {
|
|
|
2218
2365
|
workflow_configs: WorkflowConfig[];
|
|
2219
2366
|
total: number;
|
|
2220
2367
|
};
|
|
2368
|
+
type CompaniesOut = {
|
|
2369
|
+
companies: Company[];
|
|
2370
|
+
total: number;
|
|
2371
|
+
};
|
|
2221
2372
|
type CompanyIn = {
|
|
2222
2373
|
name: string;
|
|
2223
2374
|
contact_name: string;
|
|
@@ -2320,7 +2471,6 @@ type LocationEmployeesIn = {
|
|
|
2320
2471
|
declare class ApiCompaniesService {
|
|
2321
2472
|
private environments;
|
|
2322
2473
|
private http;
|
|
2323
|
-
constructor(environments: Environment, http: HttpClient);
|
|
2324
2474
|
/**
|
|
2325
2475
|
* Retrieves the URL for the companies API from the environment configurations.
|
|
2326
2476
|
*
|
|
@@ -2892,6 +3042,18 @@ declare class ApiCompaniesService {
|
|
|
2892
3042
|
* @return {Observable<WorkflowConfigsOut>} An observable that emits the processed batch of workflow configuration data as a response.
|
|
2893
3043
|
*/
|
|
2894
3044
|
postWorkflowConfigsBatch(body: WorkflowConfigsBatchIn): Observable<WorkflowConfigsOut>;
|
|
3045
|
+
/**
|
|
3046
|
+
* Retrieves a list of companies based on the provided query parameters.
|
|
3047
|
+
* @param params - The query parameters to filter and paginate the companies list
|
|
3048
|
+
* @returns An Observable that emits the companies data
|
|
3049
|
+
*/
|
|
3050
|
+
getCompanies(params: QueryParams): Observable<CompaniesOut>;
|
|
3051
|
+
/**
|
|
3052
|
+
* Retrieves a company by its ID.
|
|
3053
|
+
* @param id - The unique identifier of the company to retrieve.
|
|
3054
|
+
* @returns An Observable that emits the company data.
|
|
3055
|
+
*/
|
|
3056
|
+
getCompany(id: number): Observable<CompanyOut>;
|
|
2895
3057
|
/**
|
|
2896
3058
|
* Sends a POST request to create a new company and returns the created company's details.
|
|
2897
3059
|
*
|
|
@@ -3362,27 +3524,25 @@ type CompositionCountryReferencesOut = {
|
|
|
3362
3524
|
|
|
3363
3525
|
declare class ApiCompositionService {
|
|
3364
3526
|
private environments;
|
|
3365
|
-
private cookie;
|
|
3366
3527
|
private http;
|
|
3367
|
-
constructor(environments: Environment, cookie: CookieService, http: HttpClient);
|
|
3368
3528
|
/**
|
|
3369
3529
|
* Retrieves the API security URL from the environment configuration.
|
|
3370
3530
|
*
|
|
3371
|
-
|
|
3531
|
+
* @returns {string} The API security URL.
|
|
3372
3532
|
*/
|
|
3373
3533
|
get url(): string;
|
|
3374
3534
|
/**
|
|
3375
3535
|
* Retrieves shipment details based on the provided shipment ID.
|
|
3376
3536
|
*
|
|
3377
3537
|
* @param {number} id - The unique identifier of the shipment to retrieve.
|
|
3378
|
-
|
|
3538
|
+
* @returns {Observable<ShipmentOut>} An observable that emits the details of the shipment.
|
|
3379
3539
|
*/
|
|
3380
3540
|
getShipment(id: number): Observable<ShipmentOut>;
|
|
3381
3541
|
/**
|
|
3382
3542
|
* Fetches the country references data based on the provided query parameters.
|
|
3383
3543
|
*
|
|
3384
3544
|
* @param {QueryParams} params - The query parameters for the API request.
|
|
3385
|
-
|
|
3545
|
+
* @returns {Observable<CompositionCountryReferencesOut>} An observable emitting the country references.
|
|
3386
3546
|
*/
|
|
3387
3547
|
getCountryReferences(params: QueryParams): Observable<CompositionCountryReferencesOut>;
|
|
3388
3548
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiCompositionService, never>;
|
|
@@ -3607,7 +3767,6 @@ type RulesByCriteriaOut = {
|
|
|
3607
3767
|
declare class ApiCustomsService {
|
|
3608
3768
|
private environments;
|
|
3609
3769
|
private http;
|
|
3610
|
-
constructor(environments: Environment, http: HttpClient);
|
|
3611
3770
|
/**
|
|
3612
3771
|
* Retrieves the URL for the cash operations API from the environment configurations.
|
|
3613
3772
|
*
|
|
@@ -3878,7 +4037,6 @@ type CustomerRestrictionOut = {
|
|
|
3878
4037
|
declare class ApiDiscountsService {
|
|
3879
4038
|
private environments;
|
|
3880
4039
|
private http;
|
|
3881
|
-
constructor(environments: Environment, http: HttpClient);
|
|
3882
4040
|
/**
|
|
3883
4041
|
* Gets the API endpoint URL for discounts from the environments configuration.
|
|
3884
4042
|
*
|
|
@@ -4145,7 +4303,6 @@ type ExternalShipmentCancellationIn = {
|
|
|
4145
4303
|
declare class ApiEToolsAutoBillingService {
|
|
4146
4304
|
private environments;
|
|
4147
4305
|
private http;
|
|
4148
|
-
constructor(environments: Environment, http: HttpClient);
|
|
4149
4306
|
/**
|
|
4150
4307
|
* Retrieves the URL for the shipments API from the environment configurations.
|
|
4151
4308
|
*
|
|
@@ -4250,18 +4407,17 @@ type OperationModuleOut = {
|
|
|
4250
4407
|
declare class ApiEventsService {
|
|
4251
4408
|
private environments;
|
|
4252
4409
|
private http;
|
|
4253
|
-
constructor(environments: Environment, http: HttpClient);
|
|
4254
4410
|
/**
|
|
4255
4411
|
* Gets the API endpoint URL for Events from the environments configuration.
|
|
4256
4412
|
*
|
|
4257
|
-
|
|
4413
|
+
* @returns {string} The URL for the Events API. Returns an empty string if not defined.
|
|
4258
4414
|
*/
|
|
4259
4415
|
get url(): string;
|
|
4260
4416
|
/**
|
|
4261
4417
|
* Sends a request to start an event
|
|
4262
4418
|
*
|
|
4263
4419
|
* @param {OperationModuleStartIn} body - The event information to be submitted.
|
|
4264
|
-
|
|
4420
|
+
* @returns {Observable<OperationModuleOut>} An Observable emitting the server's response containing the created event details.
|
|
4265
4421
|
*/
|
|
4266
4422
|
postOperationModulesStart(body: OperationModuleStartIn): Observable<OperationModuleOut>;
|
|
4267
4423
|
/**
|
|
@@ -4269,7 +4425,7 @@ declare class ApiEventsService {
|
|
|
4269
4425
|
*
|
|
4270
4426
|
* @param {number} id - The unique identifier of the item whose event is to be updated.
|
|
4271
4427
|
* @param {OperationModuleEndIn} body - The payload containing the updated event details.
|
|
4272
|
-
|
|
4428
|
+
* @returns {Observable<OperationModuleOut>} An observable emitting the updated event details.
|
|
4273
4429
|
*/
|
|
4274
4430
|
putOperationModulesEnd(id: number, body: OperationModuleEndIn): Observable<OperationModuleOut>;
|
|
4275
4431
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiEventsService, never>;
|
|
@@ -4336,7 +4492,6 @@ declare class ApiExternalOperationsService {
|
|
|
4336
4492
|
private http;
|
|
4337
4493
|
private environment;
|
|
4338
4494
|
private appKey;
|
|
4339
|
-
constructor(http: HttpClient, environment: Environment);
|
|
4340
4495
|
/**
|
|
4341
4496
|
* Getter method to retrieve the API's external operations URL.
|
|
4342
4497
|
* Fetches the URL from the `apiExternalOperationsUrl` property of the environment object.
|
|
@@ -4533,7 +4688,6 @@ type ReEntryOfMissingPackagesIn = {
|
|
|
4533
4688
|
declare class ApiInventoriesService {
|
|
4534
4689
|
private environments;
|
|
4535
4690
|
private http;
|
|
4536
|
-
constructor(environments: Environment, http: HttpClient);
|
|
4537
4691
|
/**
|
|
4538
4692
|
* Retrieves the URL for the Inventories API from the environment configurations.
|
|
4539
4693
|
*
|
|
@@ -4868,6 +5022,9 @@ interface CountryPaymentType extends LaravelModel {
|
|
|
4868
5022
|
country_payment_type_fields: CountryPaymentTypeField[];
|
|
4869
5023
|
payment_type: PaymentType;
|
|
4870
5024
|
translations: Translations;
|
|
5025
|
+
accountable_account: string | null;
|
|
5026
|
+
accountable_account_usd: string | null;
|
|
5027
|
+
item_text_code: string | null;
|
|
4871
5028
|
}
|
|
4872
5029
|
interface CountryPaymentTypeField extends LaravelModel {
|
|
4873
5030
|
country_payment_type_id: number;
|
|
@@ -5074,6 +5231,9 @@ type CountryPaymentTypeIn = {
|
|
|
5074
5231
|
billing_payment_code: string;
|
|
5075
5232
|
can_tolerance: boolean;
|
|
5076
5233
|
is_active: boolean;
|
|
5234
|
+
accountable_account: string | null;
|
|
5235
|
+
accountable_account_usd: string | null;
|
|
5236
|
+
item_text_code: string | null;
|
|
5077
5237
|
};
|
|
5078
5238
|
type CountryPaymentTypeFieldsOut = {
|
|
5079
5239
|
country_payment_type_fields: CountryPaymentTypeField[];
|
|
@@ -5180,6 +5340,7 @@ type DocumentTypeRangeIn = {
|
|
|
5180
5340
|
sap_prefix: string;
|
|
5181
5341
|
sap_suffix?: string;
|
|
5182
5342
|
suffix?: string;
|
|
5343
|
+
used_numbers?: number;
|
|
5183
5344
|
valid_since: string;
|
|
5184
5345
|
valid_until: string;
|
|
5185
5346
|
};
|
|
@@ -5206,7 +5367,6 @@ interface DocumentsTypesRangesCurrentStatusOut {
|
|
|
5206
5367
|
declare class ApiInvoicesService {
|
|
5207
5368
|
private environments;
|
|
5208
5369
|
private http;
|
|
5209
|
-
constructor(environments: Environment, http: HttpClient);
|
|
5210
5370
|
/**
|
|
5211
5371
|
* Retrieves the API URL for invoices from the environments configuration.
|
|
5212
5372
|
*
|
|
@@ -5594,7 +5754,6 @@ type NotificationsTypeOut = {
|
|
|
5594
5754
|
declare class ApiNotificationsService {
|
|
5595
5755
|
private environments;
|
|
5596
5756
|
private http;
|
|
5597
|
-
constructor(environments: Environment, http: HttpClient);
|
|
5598
5757
|
/**
|
|
5599
5758
|
* Retrieves the URL for the notifications API from the environment settings.
|
|
5600
5759
|
* If the URL is not defined, an empty string is returned.
|
|
@@ -5656,38 +5815,6 @@ declare class ApiNotificationsService {
|
|
|
5656
5815
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiNotificationsService>;
|
|
5657
5816
|
}
|
|
5658
5817
|
|
|
5659
|
-
interface OpenItem {
|
|
5660
|
-
id: number;
|
|
5661
|
-
invoice_number: string;
|
|
5662
|
-
shipment_tracking_number: string;
|
|
5663
|
-
invoice_issue_datetime: Date | string;
|
|
5664
|
-
invoice_expiration_datetime: Date | string;
|
|
5665
|
-
customer_identification_number: string;
|
|
5666
|
-
customer_company_name: string;
|
|
5667
|
-
account: string;
|
|
5668
|
-
country_reference_currency_id: number;
|
|
5669
|
-
pending_value: number;
|
|
5670
|
-
payed_value: number;
|
|
5671
|
-
is_cash: boolean;
|
|
5672
|
-
status: string;
|
|
5673
|
-
origin: string;
|
|
5674
|
-
user_id: string | null;
|
|
5675
|
-
}
|
|
5676
|
-
interface OpenItemIn {
|
|
5677
|
-
payments: PaymentDetail[];
|
|
5678
|
-
customer: CustomerOpenItem | CustomerOtherInvoice;
|
|
5679
|
-
document_type_range_id: number;
|
|
5680
|
-
document_number: string;
|
|
5681
|
-
observation: string;
|
|
5682
|
-
document_date: Date;
|
|
5683
|
-
}
|
|
5684
|
-
interface PaymentOpenItemIn extends OpenItemIn {
|
|
5685
|
-
open_items: OpenItems[];
|
|
5686
|
-
}
|
|
5687
|
-
interface OtherInvoiceIn extends OpenItemIn {
|
|
5688
|
-
other_invoices: OtherInvoices[];
|
|
5689
|
-
}
|
|
5690
|
-
|
|
5691
5818
|
type CustomerOpenItem = {
|
|
5692
5819
|
company_name: string;
|
|
5693
5820
|
full_name: string;
|
|
@@ -5745,35 +5872,66 @@ type OtherInvoiceOut = {
|
|
|
5745
5872
|
document: Document;
|
|
5746
5873
|
};
|
|
5747
5874
|
|
|
5875
|
+
interface OpenItem {
|
|
5876
|
+
id: number;
|
|
5877
|
+
invoice_number: string;
|
|
5878
|
+
shipment_tracking_number: string;
|
|
5879
|
+
invoice_issue_datetime: Date | string;
|
|
5880
|
+
invoice_expiration_datetime: Date | string;
|
|
5881
|
+
customer_identification_number: string;
|
|
5882
|
+
customer_company_name: string;
|
|
5883
|
+
account: string;
|
|
5884
|
+
country_reference_currency_id: number;
|
|
5885
|
+
pending_value: number;
|
|
5886
|
+
payed_value: number;
|
|
5887
|
+
is_cash: boolean;
|
|
5888
|
+
status: string;
|
|
5889
|
+
origin: string;
|
|
5890
|
+
user_id: string | null;
|
|
5891
|
+
}
|
|
5892
|
+
interface OpenItemIn {
|
|
5893
|
+
payments: PaymentDetail[];
|
|
5894
|
+
customer: CustomerOpenItem | CustomerOtherInvoice;
|
|
5895
|
+
document_type_range_id: number;
|
|
5896
|
+
document_number: string;
|
|
5897
|
+
observation: string;
|
|
5898
|
+
document_date: Date;
|
|
5899
|
+
}
|
|
5900
|
+
interface PaymentOpenItemIn extends OpenItemIn {
|
|
5901
|
+
open_items: OpenItems[];
|
|
5902
|
+
}
|
|
5903
|
+
interface OtherInvoiceIn extends OpenItemIn {
|
|
5904
|
+
other_invoices: OtherInvoices[];
|
|
5905
|
+
}
|
|
5906
|
+
|
|
5748
5907
|
declare class ApiOpenItemsService {
|
|
5749
5908
|
private environments;
|
|
5750
5909
|
private http;
|
|
5751
|
-
constructor(environments: Environment, http: HttpClient);
|
|
5752
5910
|
/**
|
|
5753
5911
|
* Retrieves the API URL for open-items from the environments' configuration.
|
|
5754
5912
|
*
|
|
5755
|
-
|
|
5913
|
+
* @returns {string} The API URL for open-items.
|
|
5756
5914
|
*/
|
|
5757
5915
|
get url(): string;
|
|
5758
5916
|
/**
|
|
5759
5917
|
* Retrieves a list of open-items based on the provided query parameters.
|
|
5760
5918
|
*
|
|
5761
5919
|
* @param {QueryParams} params - The parameters to use for querying open-items.
|
|
5762
|
-
|
|
5920
|
+
* @returns {Observable<OpenItemsOut>} An observable that emits the open-item data.
|
|
5763
5921
|
*/
|
|
5764
5922
|
getOpenItems(params: QueryParams): Observable<OpenItemsOut>;
|
|
5765
5923
|
/**
|
|
5766
5924
|
* Processes a payment for an open item.
|
|
5767
5925
|
*
|
|
5768
5926
|
* @param {PaymentOpenItemIn} body - The payment details for the open item.
|
|
5769
|
-
|
|
5927
|
+
* @returns {Observable<PaymentOut>} An observable that emits the result of the payment processing.
|
|
5770
5928
|
*/
|
|
5771
5929
|
postPayment(body: PaymentOpenItemIn): Observable<PaymentOut>;
|
|
5772
5930
|
/**
|
|
5773
5931
|
* Processes a payment for other invoice.
|
|
5774
5932
|
*
|
|
5775
5933
|
* @param {OtherInvoiceIn} body - The payment details for the other invoice.
|
|
5776
|
-
|
|
5934
|
+
* @returns {Observable<OtherInvoiceOut>} An observable that emits the result of the payment processing.
|
|
5777
5935
|
*/
|
|
5778
5936
|
postOtherInvoice(body: OtherInvoiceIn): Observable<OtherInvoiceOut>;
|
|
5779
5937
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiOpenItemsService, never>;
|
|
@@ -5810,16 +5968,9 @@ interface QuoteEventTypesOut {
|
|
|
5810
5968
|
quoteEventTypes: QuoteEventType[];
|
|
5811
5969
|
}
|
|
5812
5970
|
|
|
5813
|
-
/**
|
|
5814
|
-
* Service to manage quote-related events.
|
|
5815
|
-
*
|
|
5816
|
-
* This service provides methods to retrieve, create, and get event types
|
|
5817
|
-
* related to quote processes.
|
|
5818
|
-
*/
|
|
5819
5971
|
declare class ApiQuoteService {
|
|
5820
5972
|
private environments;
|
|
5821
5973
|
private http;
|
|
5822
|
-
constructor(environments: Environment, http: HttpClient);
|
|
5823
5974
|
/**
|
|
5824
5975
|
* Base URL for the Quotes API.
|
|
5825
5976
|
*/
|
|
@@ -6229,145 +6380,6 @@ interface Sales extends ActiveLessLaravelModel {
|
|
|
6229
6380
|
user_id: number;
|
|
6230
6381
|
}
|
|
6231
6382
|
|
|
6232
|
-
type AuthLoginIn = {
|
|
6233
|
-
username: string;
|
|
6234
|
-
password: string;
|
|
6235
|
-
role?: number;
|
|
6236
|
-
system_name?: string;
|
|
6237
|
-
};
|
|
6238
|
-
type AuthLoginOut = {
|
|
6239
|
-
access_token: string;
|
|
6240
|
-
token_type: string;
|
|
6241
|
-
expires_in: number;
|
|
6242
|
-
};
|
|
6243
|
-
type AuthUserLoginIn = {
|
|
6244
|
-
username: string;
|
|
6245
|
-
};
|
|
6246
|
-
type SessionIn = {
|
|
6247
|
-
modelType: string;
|
|
6248
|
-
modelId: number;
|
|
6249
|
-
token?: string;
|
|
6250
|
-
};
|
|
6251
|
-
type SessionOut = {
|
|
6252
|
-
session: Session;
|
|
6253
|
-
};
|
|
6254
|
-
type PutUsersIn = {
|
|
6255
|
-
user: User;
|
|
6256
|
-
};
|
|
6257
|
-
type PutUsersOut = {
|
|
6258
|
-
user: User;
|
|
6259
|
-
};
|
|
6260
|
-
type GetUserOut = {
|
|
6261
|
-
user: User;
|
|
6262
|
-
};
|
|
6263
|
-
type GetUsersOut = {
|
|
6264
|
-
users: User[];
|
|
6265
|
-
total: number;
|
|
6266
|
-
};
|
|
6267
|
-
type AuthMeOut = {
|
|
6268
|
-
user: UserMe;
|
|
6269
|
-
};
|
|
6270
|
-
type ChangeLanguageIn = {
|
|
6271
|
-
languageId: number;
|
|
6272
|
-
};
|
|
6273
|
-
type RolesOut = {
|
|
6274
|
-
roles: Role[];
|
|
6275
|
-
total: number;
|
|
6276
|
-
};
|
|
6277
|
-
type Pivot = {
|
|
6278
|
-
role_id: number;
|
|
6279
|
-
permission_id: number;
|
|
6280
|
-
} | {
|
|
6281
|
-
module_id: string;
|
|
6282
|
-
permission_id: string;
|
|
6283
|
-
};
|
|
6284
|
-
type RoleOut = {
|
|
6285
|
-
role: Role;
|
|
6286
|
-
};
|
|
6287
|
-
type RoleIn = {
|
|
6288
|
-
name: string;
|
|
6289
|
-
role_type_id: number;
|
|
6290
|
-
company_country_id: number;
|
|
6291
|
-
regional_country_id?: number[] | null;
|
|
6292
|
-
is_active: boolean;
|
|
6293
|
-
permissions?: string[];
|
|
6294
|
-
};
|
|
6295
|
-
type RoleTypesOut = {
|
|
6296
|
-
role_types: RoleType[];
|
|
6297
|
-
total: number;
|
|
6298
|
-
};
|
|
6299
|
-
type ModulesOut = {
|
|
6300
|
-
modules: Module[];
|
|
6301
|
-
total: number;
|
|
6302
|
-
};
|
|
6303
|
-
|
|
6304
|
-
interface Session extends LaravelModel {
|
|
6305
|
-
model_type: string;
|
|
6306
|
-
model_id: number;
|
|
6307
|
-
status: string;
|
|
6308
|
-
last_activity: string;
|
|
6309
|
-
user_agent: string;
|
|
6310
|
-
gmt_offset: string;
|
|
6311
|
-
opening_id: number;
|
|
6312
|
-
user_id: number;
|
|
6313
|
-
installation_id: number;
|
|
6314
|
-
locale: string | null;
|
|
6315
|
-
decimal_point: number;
|
|
6316
|
-
country_id: number;
|
|
6317
|
-
company_id: number;
|
|
6318
|
-
company_country_id: number;
|
|
6319
|
-
location_id: number;
|
|
6320
|
-
country_reference_currency_id: number;
|
|
6321
|
-
location_employee_id: number;
|
|
6322
|
-
}
|
|
6323
|
-
interface Role extends LaravelModel {
|
|
6324
|
-
name: string;
|
|
6325
|
-
guard_name: string;
|
|
6326
|
-
company_country_id: number;
|
|
6327
|
-
role_type_id: number;
|
|
6328
|
-
regional_country_id: number | null;
|
|
6329
|
-
role_type: RoleType;
|
|
6330
|
-
permissions?: Permission[];
|
|
6331
|
-
}
|
|
6332
|
-
interface RoleType extends LaravelModel {
|
|
6333
|
-
name: string;
|
|
6334
|
-
level: number;
|
|
6335
|
-
}
|
|
6336
|
-
interface Permission extends LaravelModel {
|
|
6337
|
-
name: string;
|
|
6338
|
-
guard_name: string;
|
|
6339
|
-
description: string;
|
|
6340
|
-
is_default: boolean;
|
|
6341
|
-
pivot: Pivot;
|
|
6342
|
-
}
|
|
6343
|
-
interface User extends LaravelModel {
|
|
6344
|
-
name: string;
|
|
6345
|
-
username: string;
|
|
6346
|
-
model_type: string;
|
|
6347
|
-
model_id: number;
|
|
6348
|
-
auth_type: string;
|
|
6349
|
-
language_id: number;
|
|
6350
|
-
email: string;
|
|
6351
|
-
roles: Role[];
|
|
6352
|
-
}
|
|
6353
|
-
interface UserMe extends Omit<User, 'roles'> {
|
|
6354
|
-
permissions: string[];
|
|
6355
|
-
session: Session | null;
|
|
6356
|
-
role: Role;
|
|
6357
|
-
}
|
|
6358
|
-
interface Module extends LaravelModel {
|
|
6359
|
-
name: string;
|
|
6360
|
-
code: string;
|
|
6361
|
-
module_type_id: number;
|
|
6362
|
-
module_type: ModuleType;
|
|
6363
|
-
permissions: Permission[];
|
|
6364
|
-
require_default_permission?: boolean;
|
|
6365
|
-
}
|
|
6366
|
-
interface ModuleType extends LaravelModel {
|
|
6367
|
-
name: string;
|
|
6368
|
-
description: string;
|
|
6369
|
-
}
|
|
6370
|
-
|
|
6371
6383
|
type CollectionPaymentsOut = {
|
|
6372
6384
|
collection_payments: CollectionPayment[];
|
|
6373
6385
|
total: number;
|
|
@@ -6428,7 +6440,6 @@ type SalesBookReportOut = {
|
|
|
6428
6440
|
declare class ApiReportsService {
|
|
6429
6441
|
private environments;
|
|
6430
6442
|
private http;
|
|
6431
|
-
constructor(environments: Environment, http: HttpClient);
|
|
6432
6443
|
/**
|
|
6433
6444
|
* Retrieves the URL for the reports API from the environment configurations.
|
|
6434
6445
|
*
|
|
@@ -6541,10 +6552,9 @@ declare class ApiReportsService {
|
|
|
6541
6552
|
}
|
|
6542
6553
|
|
|
6543
6554
|
declare class ApiSecurityService {
|
|
6544
|
-
private environments;
|
|
6545
6555
|
private cookie;
|
|
6546
6556
|
private http;
|
|
6547
|
-
|
|
6557
|
+
private environments;
|
|
6548
6558
|
/**
|
|
6549
6559
|
* Retrieves the API security URL from the environments configuration.
|
|
6550
6560
|
*
|
|
@@ -6847,7 +6857,6 @@ type AddressPlaceDetailsOut = {
|
|
|
6847
6857
|
declare class ApiServicesService {
|
|
6848
6858
|
private environments;
|
|
6849
6859
|
private http;
|
|
6850
|
-
constructor(environments: Environment, http: HttpClient);
|
|
6851
6860
|
/**
|
|
6852
6861
|
* Retrieves the URL for the services API from the environment settings.
|
|
6853
6862
|
* If the URL is not defined, an empty string is returned.
|
|
@@ -7050,8 +7059,7 @@ type ShipmentCancellationIn = {
|
|
|
7050
7059
|
reasonId: number;
|
|
7051
7060
|
};
|
|
7052
7061
|
type ShipmentCancellationOut = {
|
|
7053
|
-
|
|
7054
|
-
creditNoteDocument: Document | null;
|
|
7062
|
+
transactionId: string;
|
|
7055
7063
|
};
|
|
7056
7064
|
type ExportTypesOut = {
|
|
7057
7065
|
exportTypes: ExportType[];
|
|
@@ -7107,7 +7115,6 @@ type ShipmentSignaturePageOut = {
|
|
|
7107
7115
|
declare class ApiShipmentsService {
|
|
7108
7116
|
private environments;
|
|
7109
7117
|
private http;
|
|
7110
|
-
constructor(environments: Environment, http: HttpClient);
|
|
7111
7118
|
/**
|
|
7112
7119
|
* Retrieves the URL for the shipments API from the environment configurations.
|
|
7113
7120
|
*
|
|
@@ -7262,7 +7269,6 @@ type SupplyTransactionTypesOut = {
|
|
|
7262
7269
|
declare class ApiSuppliesService {
|
|
7263
7270
|
private environments;
|
|
7264
7271
|
private http;
|
|
7265
|
-
constructor(environments: Environment, http: HttpClient);
|
|
7266
7272
|
/**
|
|
7267
7273
|
* Retrieves the URL for the API supplies endpoint.
|
|
7268
7274
|
*
|
|
@@ -7347,10 +7353,157 @@ declare class ApiSuppliesService {
|
|
|
7347
7353
|
static ɵprov: i0.ɵɵInjectableDeclaration<ApiSuppliesService>;
|
|
7348
7354
|
}
|
|
7349
7355
|
|
|
7350
|
-
|
|
7356
|
+
interface Survey extends LaravelModel {
|
|
7357
|
+
company_country_id: number;
|
|
7358
|
+
company_name: string;
|
|
7359
|
+
country_id: number;
|
|
7360
|
+
country_name: string;
|
|
7361
|
+
date_from: string;
|
|
7362
|
+
date_to: string;
|
|
7363
|
+
questions_count: number;
|
|
7364
|
+
title: string;
|
|
7365
|
+
}
|
|
7366
|
+
interface SurveyQuestion extends LaravelModel {
|
|
7367
|
+
ask_client_if_contact: boolean;
|
|
7368
|
+
feedback_title: string | null;
|
|
7369
|
+
has_feedback: boolean;
|
|
7370
|
+
question_options: QuestionOption[];
|
|
7371
|
+
question_type_id: number;
|
|
7372
|
+
question_type_name: string;
|
|
7373
|
+
sequence: number;
|
|
7374
|
+
survey_id: number;
|
|
7375
|
+
threshold_sequence: number | null;
|
|
7376
|
+
title: string;
|
|
7377
|
+
}
|
|
7378
|
+
interface QuestionOption extends LaravelModel {
|
|
7379
|
+
is_other: boolean;
|
|
7380
|
+
sequence: number | null;
|
|
7381
|
+
title: string;
|
|
7382
|
+
}
|
|
7383
|
+
interface QuestionType extends LaravelModel {
|
|
7384
|
+
allows_feedback: boolean;
|
|
7385
|
+
code: string;
|
|
7386
|
+
has_options: boolean;
|
|
7387
|
+
name: string;
|
|
7388
|
+
}
|
|
7389
|
+
|
|
7390
|
+
type SurveysOut = {
|
|
7391
|
+
surveys: Survey[];
|
|
7392
|
+
total: number;
|
|
7393
|
+
};
|
|
7394
|
+
type SurveyIn = {
|
|
7395
|
+
company_country_id: number;
|
|
7396
|
+
title: string;
|
|
7397
|
+
date_from: string;
|
|
7398
|
+
date_to: string;
|
|
7399
|
+
is_active: boolean;
|
|
7400
|
+
};
|
|
7401
|
+
type SurveyOut = {
|
|
7402
|
+
survey: Survey;
|
|
7403
|
+
};
|
|
7404
|
+
type SurveyQuestionsOut = {
|
|
7405
|
+
questions: SurveyQuestion[];
|
|
7406
|
+
total: number;
|
|
7407
|
+
};
|
|
7408
|
+
type SurveyQuestionIn = {
|
|
7409
|
+
ask_client_if_contact?: boolean;
|
|
7410
|
+
feedback_title?: string;
|
|
7411
|
+
has_feedback?: boolean;
|
|
7412
|
+
is_active?: boolean;
|
|
7413
|
+
question_type_id: number;
|
|
7414
|
+
sequence: number;
|
|
7415
|
+
threshold_sequence?: number;
|
|
7416
|
+
title: string;
|
|
7417
|
+
question_options?: {
|
|
7418
|
+
is_other: boolean;
|
|
7419
|
+
sequence: number | null;
|
|
7420
|
+
title: string;
|
|
7421
|
+
}[];
|
|
7422
|
+
};
|
|
7423
|
+
type SurveyQuestionOut = {
|
|
7424
|
+
question: SurveyQuestion;
|
|
7425
|
+
};
|
|
7426
|
+
type QuestionTypesOut = {
|
|
7427
|
+
question_types: QuestionType[];
|
|
7428
|
+
total: number;
|
|
7429
|
+
};
|
|
7430
|
+
|
|
7431
|
+
declare class ApiSurveysService {
|
|
7351
7432
|
private environments;
|
|
7433
|
+
private http;
|
|
7434
|
+
/**
|
|
7435
|
+
* Base URL for surveys API endpoints.
|
|
7436
|
+
* @returns The configured surveys API URL or an empty string.
|
|
7437
|
+
*/
|
|
7438
|
+
get url(): string;
|
|
7439
|
+
/**
|
|
7440
|
+
* Retrieves surveys list based on query parameters.
|
|
7441
|
+
* @param params Query parameters used to filter, paginate, or sort surveys.
|
|
7442
|
+
* @returns Observable stream with surveys response data.
|
|
7443
|
+
*/
|
|
7444
|
+
getSurveys(params: QueryParams): Observable<SurveysOut>;
|
|
7445
|
+
/**
|
|
7446
|
+
* Creates a new survey.
|
|
7447
|
+
* @param body Survey payload to create.
|
|
7448
|
+
* @returns Observable stream with created survey data.
|
|
7449
|
+
*/
|
|
7450
|
+
postSurvey(body: SurveyIn): Observable<SurveyOut>;
|
|
7451
|
+
/**
|
|
7452
|
+
* Replaces an existing survey by id.
|
|
7453
|
+
* @param id Survey identifier.
|
|
7454
|
+
* @param body Survey payload used to replace the resource.
|
|
7455
|
+
* @returns Observable stream with updated survey data.
|
|
7456
|
+
*/
|
|
7457
|
+
putSurvey(id: number, body: SurveyIn): Observable<SurveyOut>;
|
|
7458
|
+
/**
|
|
7459
|
+
* Partially updates an existing survey by id.
|
|
7460
|
+
* @param id Survey identifier.
|
|
7461
|
+
* @param body Partial survey payload with fields to update.
|
|
7462
|
+
* @returns Observable stream with updated survey data.
|
|
7463
|
+
*/
|
|
7464
|
+
patchSurvey(id: number, body: Partial<SurveyIn>): Observable<SurveyOut>;
|
|
7465
|
+
/**
|
|
7466
|
+
* Retrieves the questions for a survey.
|
|
7467
|
+
* @param id Survey identifier.
|
|
7468
|
+
* @param params Query parameters used to filter, paginate, or sort questions.
|
|
7469
|
+
* @returns Observable stream with survey questions response data.
|
|
7470
|
+
*/
|
|
7471
|
+
getSurveyQuestions(id: number, params: QueryParams): Observable<SurveyQuestionsOut>;
|
|
7472
|
+
/**
|
|
7473
|
+
* Creates a new question for a survey.
|
|
7474
|
+
* @param surveyId Parent survey identifier.
|
|
7475
|
+
* @param body Survey question payload to create.
|
|
7476
|
+
* @returns Observable stream with created survey question data.
|
|
7477
|
+
*/
|
|
7478
|
+
postSurveyQuestion(surveyId: number, body: SurveyQuestionIn): Observable<SurveyQuestionOut>;
|
|
7479
|
+
/**
|
|
7480
|
+
* Replaces an existing survey question by id.
|
|
7481
|
+
* @param questionId Survey question identifier.
|
|
7482
|
+
* @param body Survey question payload used to replace the resource.
|
|
7483
|
+
* @returns Observable stream with updated survey question data.
|
|
7484
|
+
*/
|
|
7485
|
+
putSurveyQuestion(questionId: number, body: SurveyQuestionIn): Observable<SurveyQuestionOut>;
|
|
7486
|
+
/**
|
|
7487
|
+
* Partially updates an existing survey question by id.
|
|
7488
|
+
* @param questionId Survey question identifier.
|
|
7489
|
+
* @param body Partial survey question payload with fields to update.
|
|
7490
|
+
* @returns Observable stream with updated survey question data.
|
|
7491
|
+
*/
|
|
7492
|
+
patchSurveyQuestion(questionId: number, body: Partial<SurveyQuestionIn>): Observable<SurveyQuestionOut>;
|
|
7493
|
+
/**
|
|
7494
|
+
* Retrieves the available question types.
|
|
7495
|
+
* @param params Query parameters used to filter, paginate, or sort question types.
|
|
7496
|
+
* @returns Observable stream with question types response data.
|
|
7497
|
+
*/
|
|
7498
|
+
getQuestionTypes(params: QueryParams): Observable<QuestionTypesOut>;
|
|
7499
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApiSurveysService, never>;
|
|
7500
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApiSurveysService>;
|
|
7501
|
+
}
|
|
7502
|
+
|
|
7503
|
+
declare class WebSocketsService {
|
|
7352
7504
|
private pusher;
|
|
7353
|
-
|
|
7505
|
+
private environments;
|
|
7506
|
+
constructor();
|
|
7354
7507
|
/**
|
|
7355
7508
|
* Publishes an event to the specified channel with the given data.
|
|
7356
7509
|
*
|
|
@@ -7395,7 +7548,6 @@ declare class WebSocketsService {
|
|
|
7395
7548
|
|
|
7396
7549
|
declare class CryptoService {
|
|
7397
7550
|
private environments;
|
|
7398
|
-
constructor(environments: Environment);
|
|
7399
7551
|
encryptAES(plaintext: string): Promise<string>;
|
|
7400
7552
|
decryptAES(payload: string): Promise<string>;
|
|
7401
7553
|
private loadKey;
|
|
@@ -7513,5 +7665,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
|
|
|
7513
7665
|
[header: string]: string | string[];
|
|
7514
7666
|
};
|
|
7515
7667
|
|
|
7516
|
-
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, CryptoService, DefaultValueType, ENVIRONMENT_TOKEN, Event, NgxServicesModule, OperationModuleStatus, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiKeyInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, queryString, xmlHeaders };
|
|
7517
|
-
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, 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, 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, PackageMissing, 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, QuestionOut, 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, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, 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 };
|
|
7668
|
+
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 };
|
|
7669
|
+
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, 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, 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, PackageMissing, 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, 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, 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 };
|