@experteam-mx/ngx-services 20.6.0-dev2.1 → 20.7.0-dev1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { InjectionToken, makeEnvironmentProviders, NgModule, inject, Injectable } from '@angular/core';
|
|
3
3
|
import { provideHttpClient, HttpClient, HttpHeaders, HttpResponse, HttpParams } from '@angular/common/http';
|
|
4
|
-
import { map, mergeMap, forkJoin, tap, Observable, of } from 'rxjs';
|
|
4
|
+
import { map, mergeMap, forkJoin, tap, BehaviorSubject, merge, firstValueFrom, Observable, of } from 'rxjs';
|
|
5
5
|
import { map as map$1, tap as tap$1, finalize, shareReplay } from 'rxjs/operators';
|
|
6
6
|
import { CookieService } from 'ngx-cookie-service';
|
|
7
7
|
import Pusher from 'pusher-js';
|
|
@@ -3400,56 +3400,6 @@ class ApiInventoriesService {
|
|
|
3400
3400
|
return this.http.get(`${this.url}/stock-update/packages/${id}`)
|
|
3401
3401
|
.pipe(map(({ data }) => data));
|
|
3402
3402
|
}
|
|
3403
|
-
/**
|
|
3404
|
-
* Retrieves a list of courier routes based on query parameters.
|
|
3405
|
-
*
|
|
3406
|
-
* @param {QueryParams} params - Query parameters for filtering the courier routes.
|
|
3407
|
-
* @returns {Observable<CourierRoutesOut>} An observable that emits the list of courier routes.
|
|
3408
|
-
*/
|
|
3409
|
-
getCourierRoutes(params) {
|
|
3410
|
-
return this.http.get(`${this.url}/courier-routes`, {
|
|
3411
|
-
params
|
|
3412
|
-
}).pipe(map(({ data }) => data));
|
|
3413
|
-
}
|
|
3414
|
-
/**
|
|
3415
|
-
* Fetches the courier route details based on the provided courier route ID.
|
|
3416
|
-
*
|
|
3417
|
-
* @param {number} id - The courier route id
|
|
3418
|
-
* @return {Observable<CourierRouteOut>} An observable that emits the courier route data.
|
|
3419
|
-
*/
|
|
3420
|
-
getCourierRoute(id) {
|
|
3421
|
-
return this.http.get(`${this.url}/courier-routes/${id}`)
|
|
3422
|
-
.pipe(map(({ data }) => data));
|
|
3423
|
-
}
|
|
3424
|
-
/**
|
|
3425
|
-
* Creates a new courier route.
|
|
3426
|
-
*
|
|
3427
|
-
* @param {CourierRouteIn} body - The data for the new courier route.
|
|
3428
|
-
* @returns {Observable<CourierRouteOut>} An observable the created courier route detail.
|
|
3429
|
-
*/
|
|
3430
|
-
postCourierRoute(body) {
|
|
3431
|
-
return this.http.post(`${this.url}/courier-routes`, body).pipe(map(({ data }) => data));
|
|
3432
|
-
}
|
|
3433
|
-
/**
|
|
3434
|
-
* Update an existing courier route.
|
|
3435
|
-
*
|
|
3436
|
-
* @param {number} id - The identifier of the courier route record to update.
|
|
3437
|
-
* @param {CourierRouteIn} body - The courier route data to be updated.
|
|
3438
|
-
* @returns {Observable<CourierRouteOut>} An observable detail of the updated courier route.
|
|
3439
|
-
*/
|
|
3440
|
-
putCourierRoute(id, body) {
|
|
3441
|
-
return this.http.put(`${this.url}/courier-routes/${id}`, body).pipe(map(({ data }) => data));
|
|
3442
|
-
}
|
|
3443
|
-
/**
|
|
3444
|
-
* Delete an existing courier route.
|
|
3445
|
-
*
|
|
3446
|
-
* @param {number} id - The unique identifier of the courier route to be deleted.
|
|
3447
|
-
* @returns {Observable<CourierRouteOut>} An observable that emits the result of the delete courier route.
|
|
3448
|
-
*/
|
|
3449
|
-
deleteCourierRoute(id) {
|
|
3450
|
-
return this.http.delete(`${this.url}/courier-routes/${id}`)
|
|
3451
|
-
.pipe(map(({ data }) => data));
|
|
3452
|
-
}
|
|
3453
3403
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: ApiInventoriesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3454
3404
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: ApiInventoriesService, providedIn: 'root' });
|
|
3455
3405
|
}
|
|
@@ -3471,6 +3421,32 @@ class ApiInvoicesService {
|
|
|
3471
3421
|
get url() {
|
|
3472
3422
|
return this.environments.apiInvoicesUrl ?? '';
|
|
3473
3423
|
}
|
|
3424
|
+
/**
|
|
3425
|
+
* Retrieves the printable ticket payload for a billing operation.
|
|
3426
|
+
*
|
|
3427
|
+
* Sends a GET request to `/operation/print/ticket/{documentId}` and unwraps
|
|
3428
|
+
* the `data` field from the API success envelope.
|
|
3429
|
+
*
|
|
3430
|
+
* @param documentId - Numeric identifier of the document to print.
|
|
3431
|
+
* @returns An Observable that emits the ticket data for the given document.
|
|
3432
|
+
*/
|
|
3433
|
+
getOperationPrintTicket(documentId) {
|
|
3434
|
+
return this.http.get(`${this.url}/operation/print/ticket/${documentId}`)
|
|
3435
|
+
.pipe(map(({ data }) => data));
|
|
3436
|
+
}
|
|
3437
|
+
/**
|
|
3438
|
+
* Retrieves the printable document payload for a billing operation.
|
|
3439
|
+
*
|
|
3440
|
+
* Sends a GET request to `/operation/print/document/{documentId}` and unwraps
|
|
3441
|
+
* the `data` field from the API success envelope.
|
|
3442
|
+
*
|
|
3443
|
+
* @param documentId - Numeric identifier of the document to print.
|
|
3444
|
+
* @returns An Observable that emits the printable document data for the given document.
|
|
3445
|
+
*/
|
|
3446
|
+
getOperationPrintDocument(documentId) {
|
|
3447
|
+
return this.http.get(`${this.url}/operation/print/document/${documentId}`)
|
|
3448
|
+
.pipe(map(({ data }) => data));
|
|
3449
|
+
}
|
|
3474
3450
|
/**
|
|
3475
3451
|
* Sends an operation document to the server and processes the response.
|
|
3476
3452
|
*
|
|
@@ -3575,16 +3551,6 @@ class ApiInvoicesService {
|
|
|
3575
3551
|
return this.http.post(`${this.url}/operation/shipment/external/payment`, params)
|
|
3576
3552
|
.pipe(map(({ data }) => data));
|
|
3577
3553
|
}
|
|
3578
|
-
/**
|
|
3579
|
-
* Retrieves and returns billing operation print details for a given document ID.
|
|
3580
|
-
*
|
|
3581
|
-
* @param {number} documentId - The ID of the document for which to fetch the print billing operation details.
|
|
3582
|
-
* @return {Observable<OperationPrintDocumentOut>} An observable emitting the print billing operation details for the specified document.
|
|
3583
|
-
*/
|
|
3584
|
-
getOperationPrintDocument(documentId) {
|
|
3585
|
-
return this.http.get(`${this.url}/operation/print/document/${documentId}`)
|
|
3586
|
-
.pipe(map(({ data }) => data));
|
|
3587
|
-
}
|
|
3588
3554
|
/**
|
|
3589
3555
|
* Fetches all country payment types.
|
|
3590
3556
|
*
|
|
@@ -4812,41 +4778,63 @@ class ApiShipmentsService {
|
|
|
4812
4778
|
.pipe(map(({ data }) => data));
|
|
4813
4779
|
}
|
|
4814
4780
|
/**
|
|
4815
|
-
* Retrieves a paginated list of
|
|
4816
|
-
*
|
|
4817
|
-
* @
|
|
4781
|
+
* Retrieves a paginated list of document configurations.
|
|
4782
|
+
*
|
|
4783
|
+
* @param {QueryParams} params - Query parameters used for filtering, sorting, and pagination.
|
|
4784
|
+
* @returns {Observable<DocumentConfigurationsOut>} An observable containing the list of document configurations and pagination metadata.
|
|
4818
4785
|
*/
|
|
4819
|
-
|
|
4820
|
-
return this.http.get(`${this.url}/
|
|
4786
|
+
getDocumentConfigurations(params) {
|
|
4787
|
+
return this.http.get(`${this.url}/document-configurations`, {
|
|
4821
4788
|
params
|
|
4822
4789
|
}).pipe(map(({ data }) => data));
|
|
4823
4790
|
}
|
|
4824
4791
|
/**
|
|
4825
|
-
* Retrieves
|
|
4792
|
+
* Retrieves a document configuration by its identifier.
|
|
4826
4793
|
*
|
|
4827
|
-
* @param {number} id - The identifier of the
|
|
4828
|
-
* @
|
|
4794
|
+
* @param {number} id - The unique identifier of the document configuration.
|
|
4795
|
+
* @returns {Observable<DocumentConfigurationOut>} An observable containing the document configuration details.
|
|
4829
4796
|
*/
|
|
4830
|
-
|
|
4831
|
-
return this.http.get(`${this.url}/
|
|
4797
|
+
getDocumentConfiguration(id) {
|
|
4798
|
+
return this.http.get(`${this.url}/document-configurations/${id}`).pipe(map(({ data }) => data));
|
|
4832
4799
|
}
|
|
4833
4800
|
/**
|
|
4834
|
-
* Creates a new
|
|
4835
|
-
*
|
|
4836
|
-
* @
|
|
4801
|
+
* Creates a new document configuration.
|
|
4802
|
+
*
|
|
4803
|
+
* @param {DocumentConfigurationIn} body - The document configuration data to create.
|
|
4804
|
+
* @returns {Observable<DocumentConfigurationOut>} An observable containing the newly created document configuration.
|
|
4805
|
+
*/
|
|
4806
|
+
postDocumentConfiguration(body) {
|
|
4807
|
+
return this.http.post(`${this.url}/document-configurations`, body)
|
|
4808
|
+
.pipe(map(({ data }) => data));
|
|
4809
|
+
}
|
|
4810
|
+
/**
|
|
4811
|
+
* Updates an existing document configuration.
|
|
4812
|
+
*
|
|
4813
|
+
* @param {number} id - The unique identifier of the document configuration to update.
|
|
4814
|
+
* @param {DocumentConfigurationIn} body - The updated document configuration data.
|
|
4815
|
+
* @returns {Observable<DocumentConfigurationOut>} An observable containing the updated document configuration.
|
|
4837
4816
|
*/
|
|
4838
|
-
|
|
4839
|
-
return this.http.
|
|
4817
|
+
putDocumentConfiguration(id, body) {
|
|
4818
|
+
return this.http.put(`${this.url}/document-configurations/${id}`, body)
|
|
4840
4819
|
.pipe(map(({ data }) => data));
|
|
4841
4820
|
}
|
|
4842
4821
|
/**
|
|
4843
|
-
*
|
|
4844
|
-
*
|
|
4845
|
-
* @param {
|
|
4846
|
-
* @returns {Observable<
|
|
4822
|
+
* Generates a preview for a document configuration.
|
|
4823
|
+
*
|
|
4824
|
+
* @param {DocumentConfigurationsPreviewIn} body - The data used to generate the document preview.
|
|
4825
|
+
* @returns {Observable<DocumentConfigurationsPreviewOut>} An observable containing the generated document preview.
|
|
4847
4826
|
*/
|
|
4848
|
-
|
|
4849
|
-
return this.http.
|
|
4827
|
+
postDocumentConfigurationPreview(body) {
|
|
4828
|
+
return this.http.post(`${this.url}/document-configurations/preview`, body)
|
|
4829
|
+
.pipe(map(({ data }) => data));
|
|
4830
|
+
}
|
|
4831
|
+
/**
|
|
4832
|
+
* Retrieves the shipment documents associated with a document configuration
|
|
4833
|
+
* @param {number} id - The unique identifier of the document configuration
|
|
4834
|
+
* @returns {Observable<ShipmentDocumentsOut>} observable containing the shipment documents
|
|
4835
|
+
* */
|
|
4836
|
+
getDocuments(id) {
|
|
4837
|
+
return this.http.get(`${this.url}/${id}/documents`)
|
|
4850
4838
|
.pipe(map(({ data }) => data));
|
|
4851
4839
|
}
|
|
4852
4840
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: ApiShipmentsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
@@ -5117,6 +5105,168 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
|
|
|
5117
5105
|
}]
|
|
5118
5106
|
}] });
|
|
5119
5107
|
|
|
5108
|
+
const base64PdfToUrl = (base64) => {
|
|
5109
|
+
const data = new Uint8Array(atob(base64)
|
|
5110
|
+
.split('')
|
|
5111
|
+
.map(char => char.charCodeAt(0)));
|
|
5112
|
+
const blob = new Blob([data], { type: 'application/pdf' });
|
|
5113
|
+
return window.URL.createObjectURL(blob);
|
|
5114
|
+
};
|
|
5115
|
+
const downloadBase64Pdf = (base64) => window.open(base64PdfToUrl(base64));
|
|
5116
|
+
|
|
5117
|
+
var PrintMode;
|
|
5118
|
+
(function (PrintMode) {
|
|
5119
|
+
PrintMode["PRINT"] = "PRINT";
|
|
5120
|
+
PrintMode["DISPLAY"] = "DISPLAY";
|
|
5121
|
+
PrintMode["BOTH"] = "BOTH";
|
|
5122
|
+
})(PrintMode || (PrintMode = {}));
|
|
5123
|
+
var PrintableFormat;
|
|
5124
|
+
(function (PrintableFormat) {
|
|
5125
|
+
PrintableFormat["PDF"] = "pdf";
|
|
5126
|
+
PrintableFormat["ZPL2"] = "zpl2";
|
|
5127
|
+
})(PrintableFormat || (PrintableFormat = {}));
|
|
5128
|
+
var PrintersType;
|
|
5129
|
+
(function (PrintersType) {
|
|
5130
|
+
PrintersType["LABEL"] = "label";
|
|
5131
|
+
PrintersType["RECEIPT"] = "receipt";
|
|
5132
|
+
PrintersType["OTHERS"] = "others";
|
|
5133
|
+
})(PrintersType || (PrintersType = {}));
|
|
5134
|
+
|
|
5135
|
+
class PrintersService {
|
|
5136
|
+
environments = inject(ENVIRONMENT_TOKEN);
|
|
5137
|
+
http = inject(HttpClient);
|
|
5138
|
+
availablePrinters$ = new BehaviorSubject([]);
|
|
5139
|
+
printMode = PrintMode.DISPLAY;
|
|
5140
|
+
printers = [];
|
|
5141
|
+
/**
|
|
5142
|
+
* Retrieves the print URL from the environments configuration or defaults to 'http://localhost:9100'
|
|
5143
|
+
* if not specified.
|
|
5144
|
+
*
|
|
5145
|
+
* @return {string} The URL to be used for printing.
|
|
5146
|
+
*/
|
|
5147
|
+
get url() {
|
|
5148
|
+
return this.environments.printUrl ?? 'http://localhost:9100';
|
|
5149
|
+
}
|
|
5150
|
+
/**
|
|
5151
|
+
* Prints or displays a document based on the current print mode.
|
|
5152
|
+
* It can handle printing to a physical printer, displaying in the browser,
|
|
5153
|
+
* or both simultaneously.
|
|
5154
|
+
*
|
|
5155
|
+
* @param {Printable} document - The document to be printed or displayed.
|
|
5156
|
+
* @return {Promise<void>} A promise that resolves when the printing or displaying process is complete, or rejects if an error occurs.
|
|
5157
|
+
*/
|
|
5158
|
+
print(document) {
|
|
5159
|
+
return new Promise((resolve, reject) => {
|
|
5160
|
+
switch (this.printMode) {
|
|
5161
|
+
case PrintMode.PRINT:
|
|
5162
|
+
this.sendToPrinter(document).then(() => resolve()).catch(reject);
|
|
5163
|
+
break;
|
|
5164
|
+
case PrintMode.DISPLAY:
|
|
5165
|
+
this.sendToBrowser(document).then(resolve).catch(reject);
|
|
5166
|
+
break;
|
|
5167
|
+
case PrintMode.BOTH:
|
|
5168
|
+
merge([
|
|
5169
|
+
this.sendToBrowser(document),
|
|
5170
|
+
this.sendToPrinter(document)
|
|
5171
|
+
]).subscribe({
|
|
5172
|
+
next: () => resolve(),
|
|
5173
|
+
error: reject,
|
|
5174
|
+
});
|
|
5175
|
+
break;
|
|
5176
|
+
}
|
|
5177
|
+
});
|
|
5178
|
+
}
|
|
5179
|
+
/**
|
|
5180
|
+
* Configures and initializes the print settings based on the provided parameters.
|
|
5181
|
+
*
|
|
5182
|
+
* @param {Object} config - The configuration object to set up the print mode and manage printers.
|
|
5183
|
+
* @param {string} config.country - The country code used to determine printer configurations.
|
|
5184
|
+
* @param {PrintMode} config.printMode - The mode of printing, defining whether to use print, digital, or both.
|
|
5185
|
+
* @return {void} This method does not return any value.
|
|
5186
|
+
*/
|
|
5187
|
+
setUp({ country, printMode }) {
|
|
5188
|
+
this.printMode = printMode;
|
|
5189
|
+
if (this.printMode === PrintMode.BOTH || this.printMode === PrintMode.PRINT) {
|
|
5190
|
+
this.checkPrinters(country);
|
|
5191
|
+
}
|
|
5192
|
+
}
|
|
5193
|
+
/**
|
|
5194
|
+
* Resets the printers list and updates the availablePrinters$ observable.
|
|
5195
|
+
* The method clears the current list of printers, emits the updated empty list
|
|
5196
|
+
* through the availablePrinters$ observable, and finalizes the observable stream.
|
|
5197
|
+
*
|
|
5198
|
+
* @return {void} No return value.
|
|
5199
|
+
*/
|
|
5200
|
+
setDown() {
|
|
5201
|
+
this.printers = [];
|
|
5202
|
+
this.availablePrinters$.next(this.printers);
|
|
5203
|
+
this.availablePrinters$.complete();
|
|
5204
|
+
}
|
|
5205
|
+
sendToPrinter({ type, content, format }) {
|
|
5206
|
+
const printer = this.printers.find(({ name }) => name === type);
|
|
5207
|
+
if (!printer) {
|
|
5208
|
+
throw new Error(`Printer ${type} not found.`);
|
|
5209
|
+
}
|
|
5210
|
+
return firstValueFrom(this.http.post(`${this.url}/print`, {
|
|
5211
|
+
base64: content,
|
|
5212
|
+
deviceName: printer.name,
|
|
5213
|
+
format,
|
|
5214
|
+
}).pipe(map(({ data }) => data)));
|
|
5215
|
+
}
|
|
5216
|
+
sendToBrowser({ format, content }) {
|
|
5217
|
+
return new Promise((resolve, reject) => {
|
|
5218
|
+
try {
|
|
5219
|
+
if (format === PrintableFormat.ZPL2) {
|
|
5220
|
+
return;
|
|
5221
|
+
}
|
|
5222
|
+
downloadBase64Pdf(content);
|
|
5223
|
+
resolve();
|
|
5224
|
+
}
|
|
5225
|
+
catch (e) {
|
|
5226
|
+
reject(e);
|
|
5227
|
+
}
|
|
5228
|
+
});
|
|
5229
|
+
}
|
|
5230
|
+
checkPrinters(country) {
|
|
5231
|
+
if (country.label_printer_name) {
|
|
5232
|
+
this.printers.push({
|
|
5233
|
+
name: PrintersType.LABEL,
|
|
5234
|
+
configured: false,
|
|
5235
|
+
});
|
|
5236
|
+
}
|
|
5237
|
+
if (country.receipt_printer_name) {
|
|
5238
|
+
this.printers.push({
|
|
5239
|
+
name: PrintersType.RECEIPT,
|
|
5240
|
+
configured: false,
|
|
5241
|
+
});
|
|
5242
|
+
}
|
|
5243
|
+
if (country.others_printer_name) {
|
|
5244
|
+
this.printers.push({
|
|
5245
|
+
name: PrintersType.OTHERS,
|
|
5246
|
+
configured: false,
|
|
5247
|
+
});
|
|
5248
|
+
}
|
|
5249
|
+
this.http.get(`${this.url}/available`)
|
|
5250
|
+
.subscribe({
|
|
5251
|
+
next: ({ printer }) => {
|
|
5252
|
+
this.printers = this.printers.map((item) => {
|
|
5253
|
+
const available = printer.some(({ name }) => name === item.name);
|
|
5254
|
+
return available ? { ...item, configured: true } : item;
|
|
5255
|
+
});
|
|
5256
|
+
this.availablePrinters$.next(this.printers);
|
|
5257
|
+
}
|
|
5258
|
+
});
|
|
5259
|
+
}
|
|
5260
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: PrintersService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5261
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: PrintersService, providedIn: 'root' });
|
|
5262
|
+
}
|
|
5263
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: PrintersService, decorators: [{
|
|
5264
|
+
type: Injectable,
|
|
5265
|
+
args: [{
|
|
5266
|
+
providedIn: 'root'
|
|
5267
|
+
}]
|
|
5268
|
+
}] });
|
|
5269
|
+
|
|
5120
5270
|
var DepositTypeCode;
|
|
5121
5271
|
(function (DepositTypeCode) {
|
|
5122
5272
|
DepositTypeCode["CASH"] = "CASH";
|
|
@@ -5504,15 +5654,6 @@ function httpCachingInterceptor(req, next) {
|
|
|
5504
5654
|
return sharedRequest;
|
|
5505
5655
|
}
|
|
5506
5656
|
|
|
5507
|
-
const base64PdfToUrl = (base64) => {
|
|
5508
|
-
const data = new Uint8Array(atob(base64)
|
|
5509
|
-
.split('')
|
|
5510
|
-
.map(char => char.charCodeAt(0)));
|
|
5511
|
-
const blob = new Blob([data], { type: 'application/pdf' });
|
|
5512
|
-
return window.URL.createObjectURL(blob);
|
|
5513
|
-
};
|
|
5514
|
-
const downloadBase64Pdf = (base64) => window.open(base64PdfToUrl(base64));
|
|
5515
|
-
|
|
5516
5657
|
/**
|
|
5517
5658
|
* Convert an object of key-value pairs into a URL query string.
|
|
5518
5659
|
*
|
|
@@ -5586,5 +5727,5 @@ const xmlHeaders = (format = 'object') => {
|
|
|
5586
5727
|
* Generated bundle index. Do not edit.
|
|
5587
5728
|
*/
|
|
5588
5729
|
|
|
5589
|
-
export { AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, DefaultValueType, DepositTypeCode, DocumentStatusCode, ENVIRONMENT_TOKEN, Event, Group, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, ShipmentIncomeTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
5730
|
+
export { AlphaNumeric, ApiBillingCOService, ApiBillingDOService, ApiBillingGtService, ApiBillingMxService, ApiBillingPaService, ApiBillingSvService, ApiCashOperationsService, ApiCatalogsService, ApiCompaniesService, ApiCompositionService, ApiCustomsService, ApiDiscountsService, ApiEToolsAutoBillingService, ApiEventsService, ApiExternalOperationsService, ApiInventoriesService, ApiInvoicesService, ApiNotificationsService, ApiOpenItemsService, ApiQuoteService, ApiReportsService, ApiSecurityService, ApiServicesService, ApiShipmentsService, ApiSuppliesService, ApiSurveysService, CryptoService, DefaultValueType, DepositTypeCode, DocumentStatusCode, ENVIRONMENT_TOKEN, Event, Group, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, PrintMode, PrintableFormat, PrintersService, PrintersType, ShipmentIncomeTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
5590
5731
|
//# sourceMappingURL=experteam-mx-ngx-services.mjs.map
|