@experteam-mx/ngx-services 20.3.6-dev1.2 → 20.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3756,6 +3756,16 @@ class ApiInvoicesService {
|
|
|
3756
3756
|
return this.http.get(`${this.url}/country-document-types`, { params })
|
|
3757
3757
|
.pipe(map(({ data }) => data));
|
|
3758
3758
|
}
|
|
3759
|
+
/**
|
|
3760
|
+
* Updates the customer information for a specific document customer.
|
|
3761
|
+
* @param id - The unique identifier of the document customer
|
|
3762
|
+
* @param data - The customer information to update
|
|
3763
|
+
* @returns An Observable that emits the updated DocumentTypeRangeOut object
|
|
3764
|
+
*/
|
|
3765
|
+
putOperationDocumentCustomer(id, data) {
|
|
3766
|
+
return this.http.put(`${this.url}/operation/document/${id}/customer`, data)
|
|
3767
|
+
.pipe(map(({ data }) => data));
|
|
3768
|
+
}
|
|
3759
3769
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiInvoicesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
3760
3770
|
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.21", ngImport: i0, type: ApiInvoicesService, providedIn: 'root' });
|
|
3761
3771
|
}
|
|
@@ -5047,6 +5057,14 @@ var PaymentTypeCode;
|
|
|
5047
5057
|
PaymentTypeCode["DEPOSIT"] = "deposit";
|
|
5048
5058
|
})(PaymentTypeCode || (PaymentTypeCode = {}));
|
|
5049
5059
|
|
|
5060
|
+
var DocumentStatusCode;
|
|
5061
|
+
(function (DocumentStatusCode) {
|
|
5062
|
+
DocumentStatusCode[DocumentStatusCode["CANCELLED"] = 2] = "CANCELLED";
|
|
5063
|
+
DocumentStatusCode[DocumentStatusCode["COMPLETED"] = 1] = "COMPLETED";
|
|
5064
|
+
DocumentStatusCode[DocumentStatusCode["PROCESSING"] = 0] = "PROCESSING";
|
|
5065
|
+
DocumentStatusCode[DocumentStatusCode["WITH_ERRORS"] = 3] = "WITH_ERRORS";
|
|
5066
|
+
})(DocumentStatusCode || (DocumentStatusCode = {}));
|
|
5067
|
+
|
|
5050
5068
|
class WebSocketsService {
|
|
5051
5069
|
pusher;
|
|
5052
5070
|
environments = inject(ENVIRONMENT_TOKEN);
|
|
@@ -5472,5 +5490,5 @@ const xmlHeaders = (format = 'object') => {
|
|
|
5472
5490
|
* Generated bundle index. Do not edit.
|
|
5473
5491
|
*/
|
|
5474
5492
|
|
|
5475
|
-
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, ENVIRONMENT_TOKEN, Event, Group, NgxServicesModule, OpeningStatusCode, OperationModuleStatus, PaymentTypeCode, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiKeyInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
5493
|
+
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, TransferenceTypeCode, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiKeyInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
|
|
5476
5494
|
//# sourceMappingURL=experteam-mx-ngx-services.mjs.map
|