@experteam-mx/ngx-services 20.6.0 → 20.7.0-dev1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { InjectionToken, ModuleWithProviders, EnvironmentProviders } from '@angular/core';
3
- import { Observable } from 'rxjs';
3
+ import { Observable, BehaviorSubject } from 'rxjs';
4
4
  import { HttpResponse, HttpRequest, HttpHandlerFn, HttpEvent, HttpParams, HttpHeaders } from '@angular/common/http';
5
5
  import { Channel } from 'pusher-js';
6
6
 
@@ -5145,6 +5145,170 @@ interface Operation extends LaravelModel {
5145
5145
  }[];
5146
5146
  };
5147
5147
  }
5148
+ interface TaxToSignaturePage extends ActiveLessLaravelModel {
5149
+ code: string;
5150
+ percent: number;
5151
+ base_amount: number;
5152
+ amount: number;
5153
+ }
5154
+ interface ExtraChargeTax {
5155
+ code: string;
5156
+ percent: number;
5157
+ base_amount: number;
5158
+ amount: number;
5159
+ }
5160
+ interface ExtraChargeToSignaturePage {
5161
+ global_service_code: string;
5162
+ local_service_code: string;
5163
+ global_service_name: string;
5164
+ local_service_name: string;
5165
+ is_discount: boolean;
5166
+ subtotal: number;
5167
+ tax: number;
5168
+ total: number;
5169
+ taxes: ExtraChargeTax[];
5170
+ }
5171
+ interface AddressToSignaturePage {
5172
+ role_type: CustomerRoleType;
5173
+ identification_type_name: string | null;
5174
+ identification_number: string | null;
5175
+ company_name: string;
5176
+ full_name: string;
5177
+ email: string;
5178
+ phone_code: string;
5179
+ phone_number: string;
5180
+ postal_code: string | null;
5181
+ state_code: string | null;
5182
+ county_name: string | null;
5183
+ city_name: string;
5184
+ address_line_1: string;
5185
+ address_line_2: string | null;
5186
+ address_line_3: string | null;
5187
+ country_name: string;
5188
+ state: string | null;
5189
+ business_party_trader_type_name: string | null;
5190
+ }
5191
+ interface PiecesToSignaturePage {
5192
+ number: number;
5193
+ height: number;
5194
+ length: number;
5195
+ width: number;
5196
+ real_weight: number;
5197
+ volumetric_weight: number;
5198
+ tracking_number: string;
5199
+ shipment_piece_supplies: PieceSupplyToSignaturePage[];
5200
+ }
5201
+ interface PieceSupplyToSignaturePage {
5202
+ quantity: number;
5203
+ subtotal: number;
5204
+ tax_base: number;
5205
+ tax_percent: number;
5206
+ tax: number;
5207
+ total: number;
5208
+ supply_name: string;
5209
+ }
5210
+ interface CommercialInvoiceItemToSignaturePage {
5211
+ description: string;
5212
+ quantity: number;
5213
+ quantity_unit_name: string;
5214
+ subtotal: number;
5215
+ manufacture_country_name: string;
5216
+ real_weight: number;
5217
+ commodity_name: string | null;
5218
+ }
5219
+ interface CommercialInvoiceToSignaturePage {
5220
+ document_type_name: string;
5221
+ trading_transaction_type_name: string | null;
5222
+ number: number | null;
5223
+ remarks: string | null;
5224
+ items: CommercialInvoiceItemToSignaturePage[];
5225
+ }
5226
+ interface BookPickupToSignaturePage {
5227
+ pickup_date: string | null;
5228
+ ready_by_time: string | null;
5229
+ close_time: string | null;
5230
+ confirmation_number: string | null;
5231
+ package_location_name: string | null;
5232
+ remarks: string | null;
5233
+ }
5234
+ interface CustomsAttribute {
5235
+ field: string | null;
5236
+ dhl_code: string | null;
5237
+ input_label: string;
5238
+ values: CustomsAttributeValues;
5239
+ }
5240
+ interface CustomsAttributeValues {
5241
+ shipment?: string;
5242
+ customer?: Record<string, string>;
5243
+ invoiceHeader?: string;
5244
+ invoiceItem?: string[];
5245
+ }
5246
+ interface CustomsRule {
5247
+ level: string;
5248
+ attributes: CustomsAttribute[];
5249
+ }
5250
+ interface ShipmentCustoms {
5251
+ rules: CustomsRule[];
5252
+ }
5253
+ interface ShipmentDataToSignaturePage {
5254
+ currency_code: string;
5255
+ decimal_point: number;
5256
+ decimal_separator: string;
5257
+ thousands_separator: string;
5258
+ tracking_number: string;
5259
+ content_description: string;
5260
+ pieces_number: number;
5261
+ global_product_code: string;
5262
+ global_product_name: string;
5263
+ local_product_code: string;
5264
+ local_product_name: string;
5265
+ delivery_date_time: string;
5266
+ is_document: boolean;
5267
+ is_insured: boolean;
5268
+ declared_value: number | null;
5269
+ insured_value: number | null;
5270
+ declared_currency: string | null;
5271
+ insured_currency: string | null;
5272
+ promotion_code: string | null;
5273
+ export_reason_name: string | null;
5274
+ product_subtotal: number;
5275
+ product_tax: number;
5276
+ product_total: number;
5277
+ subtotal: number;
5278
+ tax: number;
5279
+ total: number;
5280
+ product_taxes: TaxToSignaturePage[];
5281
+ shipment_taxes: TaxToSignaturePage[];
5282
+ extra_charges_mandatory: ExtraChargeToSignaturePage[];
5283
+ extra_charges_optional: ExtraChargeToSignaturePage[];
5284
+ extra_charges_aggregated: ExtraChargeToSignaturePage[];
5285
+ shipment_addresses: AddressToSignaturePage[];
5286
+ shipment_pieces: PiecesToSignaturePage[];
5287
+ commercial_invoice: CommercialInvoiceToSignaturePage | null;
5288
+ shipment_book_pickup: BookPickupToSignaturePage | null;
5289
+ customs: ShipmentCustoms | null;
5290
+ created_at: string;
5291
+ updated_at: string;
5292
+ }
5293
+ interface SignaturePage {
5294
+ terms_and_condition: string;
5295
+ marketing_consent: string | null;
5296
+ marketing_consent_mandatory: boolean;
5297
+ additional_verbiage: string | null;
5298
+ }
5299
+ interface SignaturePageAnswers {
5300
+ terms_and_condition: boolean;
5301
+ marketing_consent: boolean | null;
5302
+ additional_verbiage: boolean | null;
5303
+ }
5304
+ interface SignaturePageConfirmation extends ActiveLessLaravelModel {
5305
+ shipment_id: number;
5306
+ code: string;
5307
+ status: string;
5308
+ shipment_data: ShipmentDataToSignaturePage;
5309
+ signature_page: SignaturePage;
5310
+ expiry: number;
5311
+ }
5148
5312
 
5149
5313
  type DeliveryConfirmationGenerateOut = {
5150
5314
  code: string;
@@ -5180,6 +5344,29 @@ type DeliveryConfirmationIn = {
5180
5344
  type DeliveryConfirmationSearchOut = {
5181
5345
  operation: Operation;
5182
5346
  };
5347
+ type SignaturePageConfirmationGenerateOut = {
5348
+ code: string;
5349
+ };
5350
+ type CustomerRoleType = 'SP' | 'RV' | 'IM' | 'EX' | string;
5351
+ type ConfirmTermsIn = {
5352
+ shipment_id: number;
5353
+ status: 'Processed' | 'Canceled';
5354
+ signature_page_answers: SignaturePageAnswers | null;
5355
+ };
5356
+ type SignaturePageConfirmationOut = {
5357
+ operation: SignaturePageConfirmation;
5358
+ };
5359
+ type ShipmentSignaturePageIn = {
5360
+ shipment_id: number;
5361
+ shipment_data: ShipmentDataToSignaturePage;
5362
+ signature_page: SignaturePage;
5363
+ };
5364
+ type ShipmentSignaturePageConfirmationIn = {
5365
+ shipment_id: number;
5366
+ status: string;
5367
+ signature_page_answers: SignaturePageAnswers | null;
5368
+ otp: string;
5369
+ };
5183
5370
 
5184
5371
  declare class ApiExternalOperationsService {
5185
5372
  private http;
@@ -5196,7 +5383,7 @@ declare class ApiExternalOperationsService {
5196
5383
  * Retrieves delivery confirmation details based on the provided OTP code.
5197
5384
  *
5198
5385
  * @param {string} otpCode - The OTP code used to search for delivery confirmation.
5199
- * @return {Observable<DeliveryConfirmationData>} An observable containing the delivery confirmation data.
5386
+ * @return {Observable<DeliveryConfirmationSearchOut>} An observable containing the delivery confirmation data.
5200
5387
  */
5201
5388
  getDeliveryConfirmation(otpCode: string): Observable<DeliveryConfirmationSearchOut>;
5202
5389
  /**
@@ -5224,6 +5411,29 @@ declare class ApiExternalOperationsService {
5224
5411
  * @return {Observable<Object>} An observable that emits the server's response when the cancellation is processed.
5225
5412
  */
5226
5413
  putDeliveryConfirmation({ otp, ...body }: DeliveryConfirmationIn): Observable<{}>;
5414
+ /**
5415
+ * Retrieves signature page confirmation information associated with an OTP code.
5416
+ *
5417
+ * @param {string} otpCode - OTP code used to search for the signature page confirmation.
5418
+ * @returns {Observable<SignaturePageConfirmationOut>} An observable containing the signature page confirmation details.
5419
+ */
5420
+ getSignaturePageConfirmationSearch(otpCode: string): Observable<SignaturePageConfirmationOut>;
5421
+ /**
5422
+ * Generates a signature page confirmation request for a shipment.
5423
+ *
5424
+ * @param {ShipmentSignaturePageIn} payload - Shipment data required to generate the signature page confirmation.
5425
+ * @returns {Observable<SignaturePageConfirmationGenerateOut>} An observable containing the generated confirmation information.
5426
+ */
5427
+ postSignaturePageConfirmationGenerate(payload: ShipmentSignaturePageIn): Observable<SignaturePageConfirmationGenerateOut>;
5428
+ /**
5429
+ * Confirms a shipment signature page using an OTP code.
5430
+ *
5431
+ * @param {ShipmentSignaturePageConfirmationIn} input - Signature page confirmation data.
5432
+ * @param {string} input.otp - OTP code used to validate the confirmation.
5433
+ * @param {...Object} input.body - Additional confirmation information sent in the request body.
5434
+ * @returns {Observable<{}>} An observable that emits the API response data.
5435
+ */
5436
+ putSignaturePageConfirmation({ otp, ...body }: ShipmentSignaturePageConfirmationIn): Observable<{}>;
5227
5437
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiExternalOperationsService, never>;
5228
5438
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiExternalOperationsService>;
5229
5439
  }
@@ -6007,8 +6217,11 @@ type InvoiceTypeCustomParamsIn = {
6007
6217
  identificationNumber: string;
6008
6218
  identificationTypeid: number;
6009
6219
  };
6220
+ type OperationPrintTicketOut = {
6221
+ ticket: string[];
6222
+ };
6010
6223
  type OperationPrintDocumentOut = {
6011
- document: string;
6224
+ document: string[];
6012
6225
  };
6013
6226
  type CustomerTypesOut = {
6014
6227
  customer_types: CustomerType[];
@@ -6206,6 +6419,26 @@ declare class ApiInvoicesService {
6206
6419
  * @return {string} The API URL for invoices.
6207
6420
  */
6208
6421
  get url(): string;
6422
+ /**
6423
+ * Retrieves the printable ticket payload for a billing operation.
6424
+ *
6425
+ * Sends a GET request to `/operation/print/ticket/{documentId}` and unwraps
6426
+ * the `data` field from the API success envelope.
6427
+ *
6428
+ * @param documentId - Numeric identifier of the document to print.
6429
+ * @returns An Observable that emits the ticket data for the given document.
6430
+ */
6431
+ getOperationPrintTicket(documentId: number): Observable<OperationPrintTicketOut>;
6432
+ /**
6433
+ * Retrieves the printable document payload for a billing operation.
6434
+ *
6435
+ * Sends a GET request to `/operation/print/document/{documentId}` and unwraps
6436
+ * the `data` field from the API success envelope.
6437
+ *
6438
+ * @param documentId - Numeric identifier of the document to print.
6439
+ * @returns An Observable that emits the printable document data for the given document.
6440
+ */
6441
+ getOperationPrintDocument(documentId: number): Observable<OperationPrintDocumentOut>;
6209
6442
  /**
6210
6443
  * Sends an operation document to the server and processes the response.
6211
6444
  *
@@ -6280,13 +6513,6 @@ declare class ApiInvoicesService {
6280
6513
  * @return {Observable<OperationShipmentExternalOut>} An observable that emits the result of the external payment operation for a shipment.
6281
6514
  */
6282
6515
  postOperationShipmentExternalPayment(params: OperationShipmentExternalIn): Observable<OperationShipmentExternalOut>;
6283
- /**
6284
- * Retrieves and returns billing operation print details for a given document ID.
6285
- *
6286
- * @param {number} documentId - The ID of the document for which to fetch the print billing operation details.
6287
- * @return {Observable<OperationPrintDocumentOut>} An observable emitting the print billing operation details for the specified document.
6288
- */
6289
- getOperationPrintDocument(documentId: number): Observable<OperationPrintDocumentOut>;
6290
6516
  /**
6291
6517
  * Fetches all country payment types.
6292
6518
  *
@@ -6981,6 +7207,7 @@ interface ShipmentReports {
6981
7207
  interface ShipmentLandingReport extends ActiveLessLaravelModel {
6982
7208
  authorization_numbers: string[] | null;
6983
7209
  commercial_invoice: boolean | null;
7210
+ has_documents: boolean | null;
6984
7211
  company_country_id: number;
6985
7212
  company_id: number;
6986
7213
  company_name: string;
@@ -7055,6 +7282,7 @@ interface ShipmentLandingReport extends ActiveLessLaravelModel {
7055
7282
  include_indemnity_letter: boolean;
7056
7283
  shipment_content_type_id: number;
7057
7284
  shipment_scope_id: number;
7285
+ include_release_of_liability?: boolean;
7058
7286
  } | null;
7059
7287
  manifest_date_time?: string | null;
7060
7288
  date_time?: string;
@@ -8174,12 +8402,27 @@ interface EmbassyShipment extends SymfonyModel {
8174
8402
  createdAt: string;
8175
8403
  updatedAt: string;
8176
8404
  }
8177
- interface SignaturePageSetting extends SymfonyModel {
8178
- country: Country;
8405
+ interface DocumentConfiguration extends SymfonyModel {
8406
+ documentType: string;
8407
+ country: CountryToDocumentConfig;
8408
+ title: string | null;
8409
+ content: string | null;
8410
+ signaturePageSetting: SignaturePageSetting | null;
8411
+ }
8412
+ interface SignaturePageSetting extends ApiModel {
8179
8413
  isDefault: boolean;
8180
8414
  termsAndCondition: string | null;
8181
8415
  marketingConsent: string | null;
8182
8416
  additionalVerbiage: string | null;
8417
+ marketingConsentMandatory: boolean;
8418
+ }
8419
+ interface CountryToDocumentConfig extends ActiveLessSymfonyModel {
8420
+ code: string;
8421
+ name: string;
8422
+ }
8423
+ interface ShipmentDocument {
8424
+ title: string;
8425
+ content: string;
8183
8426
  }
8184
8427
 
8185
8428
  type ValidateAccountIn = {
@@ -8276,12 +8519,12 @@ type EmbassyShipmentsOut = {
8276
8519
  total: number;
8277
8520
  embassyShipments: EmbassyShipment[];
8278
8521
  };
8279
- type SignaturePageSettingsOut = {
8522
+ type DocumentConfigurationsOut = {
8280
8523
  total: number;
8281
- signaturePageSettings: SignaturePageSetting[];
8524
+ documentConfigurations: DocumentConfiguration[];
8282
8525
  };
8283
- type SignaturePageSettingOut = {
8284
- signaturePageSetting: SignaturePageSetting;
8526
+ type DocumentConfigurationOut = {
8527
+ documentConfiguration: DocumentConfiguration;
8285
8528
  };
8286
8529
  type EmbassyShipmentIn = {
8287
8530
  countryId: number;
@@ -8304,13 +8547,26 @@ type EmbassyShipmentIn = {
8304
8547
  businessPartyTraderTypeId: number | null;
8305
8548
  isActive: boolean;
8306
8549
  };
8307
- type SignaturePageSettingIn = {
8550
+ type DocumentConfigurationIn = {
8308
8551
  countryId: number;
8552
+ documentType: string;
8553
+ title?: string | null;
8554
+ content?: string | null;
8555
+ isActive: boolean;
8556
+ signaturePageSetting?: SignaturePageSettingIn | null;
8557
+ };
8558
+ type SignaturePageSettingIn = {
8309
8559
  isDefault: boolean;
8310
8560
  termsAndCondition: string | null;
8311
8561
  marketingConsent: string | null;
8312
8562
  additionalVerbiage: string | null;
8313
- isActive: boolean;
8563
+ marketingConsentMandatory: boolean;
8564
+ };
8565
+ type DocumentConfigurationsPreviewIn = {
8566
+ html: string;
8567
+ };
8568
+ type DocumentConfigurationsPreviewOut = {
8569
+ preview: string;
8314
8570
  };
8315
8571
  interface EmbassyShipmentOut {
8316
8572
  embassyShipment: EmbassyShipment;
@@ -8318,6 +8574,9 @@ interface EmbassyShipmentOut {
8318
8574
  type ShipmentSignaturePageOut = {
8319
8575
  shipmentSignaturePage: string;
8320
8576
  };
8577
+ type ShipmentDocumentsOut = {
8578
+ shipmentDocuments: ShipmentDocument[];
8579
+ };
8321
8580
 
8322
8581
  declare class ApiShipmentsService {
8323
8582
  private environments;
@@ -8394,31 +8653,47 @@ declare class ApiShipmentsService {
8394
8653
  */
8395
8654
  putEmbassyShipments(id: number, body: EmbassyShipmentIn): Observable<EmbassyShipmentOut>;
8396
8655
  /**
8397
- * Retrieves a paginated list of signature page settings
8398
- * @param {QueryParams} params - Query parameters for filtering and pagination
8399
- * @returns {Observable<SignaturePageSettingsOut>} Observable containing the list of signature page settings and pagination metadata
8656
+ * Retrieves a paginated list of document configurations.
8657
+ *
8658
+ * @param {QueryParams} params - Query parameters used for filtering, sorting, and pagination.
8659
+ * @returns {Observable<DocumentConfigurationsOut>} An observable containing the list of document configurations and pagination metadata.
8400
8660
  */
8401
- getSignaturePageSettings(params: QueryParams): Observable<SignaturePageSettingsOut>;
8661
+ getDocumentConfigurations(params: QueryParams): Observable<DocumentConfigurationsOut>;
8402
8662
  /**
8403
- * Retrieves the details of a signature page setting based on its ID.
8663
+ * Retrieves a document configuration by its identifier.
8404
8664
  *
8405
- * @param {number} id - The identifier of the signature page setting to fetch.
8406
- * @return {Observable<SignaturePageSettingOut>} An observable that emits the signature page setting data.
8665
+ * @param {number} id - The unique identifier of the document configuration.
8666
+ * @returns {Observable<DocumentConfigurationOut>} An observable containing the document configuration details.
8407
8667
  */
8408
- getSignaturePageSetting(id: number): Observable<SignaturePageSettingOut>;
8668
+ getDocumentConfiguration(id: number): Observable<DocumentConfigurationOut>;
8409
8669
  /**
8410
- * Creates a new signature page setting
8411
- * @param {SignaturePageSettingIn} body - The signature page setting data to create
8412
- * @returns {Observable<SignaturePageSettingOut>} Observable containing the created signature page setting with its assigned ID
8670
+ * Creates a new document configuration.
8671
+ *
8672
+ * @param {DocumentConfigurationIn} body - The document configuration data to create.
8673
+ * @returns {Observable<DocumentConfigurationOut>} An observable containing the newly created document configuration.
8413
8674
  */
8414
- postSignaturePageSetting(body: SignaturePageSettingIn): Observable<SignaturePageSettingOut>;
8675
+ postDocumentConfiguration(body: DocumentConfigurationIn): Observable<DocumentConfigurationOut>;
8415
8676
  /**
8416
- * Updates an existing signature page setting
8417
- * @param {number} id - The unique identifier of the signature page setting to update
8418
- * @param {SignaturePageSettingIn} body - The updated signature page setting data
8419
- * @returns {Observable<SignaturePageSettingOut>} Observable containing the updated signature page setting
8677
+ * Updates an existing document configuration.
8678
+ *
8679
+ * @param {number} id - The unique identifier of the document configuration to update.
8680
+ * @param {DocumentConfigurationIn} body - The updated document configuration data.
8681
+ * @returns {Observable<DocumentConfigurationOut>} An observable containing the updated document configuration.
8682
+ */
8683
+ putDocumentConfiguration(id: number, body: DocumentConfigurationIn): Observable<DocumentConfigurationOut>;
8684
+ /**
8685
+ * Generates a preview for a document configuration.
8686
+ *
8687
+ * @param {DocumentConfigurationsPreviewIn} body - The data used to generate the document preview.
8688
+ * @returns {Observable<DocumentConfigurationsPreviewOut>} An observable containing the generated document preview.
8420
8689
  */
8421
- putSignaturePageSetting(id: number, body: SignaturePageSettingIn): Observable<SignaturePageSettingOut>;
8690
+ postDocumentConfigurationPreview(body: DocumentConfigurationsPreviewIn): Observable<DocumentConfigurationsPreviewOut>;
8691
+ /**
8692
+ * Retrieves the shipment documents associated with a document configuration
8693
+ * @param {number} id - The unique identifier of the document configuration
8694
+ * @returns {Observable<ShipmentDocumentsOut>} observable containing the shipment documents
8695
+ * */
8696
+ getDocuments(id: number): Observable<ShipmentDocumentsOut>;
8422
8697
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiShipmentsService, never>;
8423
8698
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiShipmentsService>;
8424
8699
  }
@@ -8768,6 +9043,87 @@ declare class ApiSurveysService {
8768
9043
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiSurveysService>;
8769
9044
  }
8770
9045
 
9046
+ declare enum PrintMode {
9047
+ PRINT = "PRINT",
9048
+ DISPLAY = "DISPLAY",
9049
+ BOTH = "BOTH"
9050
+ }
9051
+ declare enum PrintableFormat {
9052
+ PDF = "pdf",
9053
+ ZPL2 = "zpl2"
9054
+ }
9055
+ declare enum PrintersType {
9056
+ LABEL = "label",
9057
+ RECEIPT = "receipt",
9058
+ OTHERS = "others"
9059
+ }
9060
+
9061
+ interface Printable {
9062
+ content: string;
9063
+ type: PrintersType;
9064
+ format: PrintableFormat;
9065
+ }
9066
+
9067
+ type Printer = {
9068
+ name: PrintersType;
9069
+ configured: boolean;
9070
+ };
9071
+ type SetUpData = {
9072
+ country: Country;
9073
+ printMode: PrintMode;
9074
+ };
9075
+ type AvailablePrintersOut = {
9076
+ printer: {
9077
+ name: string;
9078
+ }[];
9079
+ };
9080
+
9081
+ declare class PrintersService {
9082
+ private environments;
9083
+ private http;
9084
+ availablePrinters$: BehaviorSubject<Printer[]>;
9085
+ private printMode;
9086
+ private printers;
9087
+ /**
9088
+ * Retrieves the print URL from the environments configuration or defaults to 'http://localhost:9100'
9089
+ * if not specified.
9090
+ *
9091
+ * @return {string} The URL to be used for printing.
9092
+ */
9093
+ get url(): string;
9094
+ /**
9095
+ * Prints or displays a document based on the current print mode.
9096
+ * It can handle printing to a physical printer, displaying in the browser,
9097
+ * or both simultaneously.
9098
+ *
9099
+ * @param {Printable} document - The document to be printed or displayed.
9100
+ * @return {Promise<void>} A promise that resolves when the printing or displaying process is complete, or rejects if an error occurs.
9101
+ */
9102
+ print(document: Printable): Promise<void>;
9103
+ /**
9104
+ * Configures and initializes the print settings based on the provided parameters.
9105
+ *
9106
+ * @param {Object} config - The configuration object to set up the print mode and manage printers.
9107
+ * @param {string} config.country - The country code used to determine printer configurations.
9108
+ * @param {PrintMode} config.printMode - The mode of printing, defining whether to use print, digital, or both.
9109
+ * @return {void} This method does not return any value.
9110
+ */
9111
+ setUp({ country, printMode }: SetUpData): void;
9112
+ /**
9113
+ * Resets the printers list and updates the availablePrinters$ observable.
9114
+ * The method clears the current list of printers, emits the updated empty list
9115
+ * through the availablePrinters$ observable, and finalizes the observable stream.
9116
+ *
9117
+ * @return {void} No return value.
9118
+ */
9119
+ setDown(): void;
9120
+ private sendToPrinter;
9121
+ private sendToBrowser;
9122
+ private checkPrinters;
9123
+ static ɵfac: i0.ɵɵFactoryDeclaration<PrintersService, never>;
9124
+ static ɵprov: i0.ɵɵInjectableDeclaration<PrintersService>;
9125
+ }
9126
+
8771
9127
  declare enum PaymentTypeCode {
8772
9128
  CASH = "cash",
8773
9129
  CHECK = "check",
@@ -8908,5 +9264,5 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
8908
9264
  [header: string]: string | string[];
8909
9265
  };
8910
9266
 
8911
- 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 };
8912
- export type { Account, AccountCategoriesOut, AccountCategory, AccountCompanyCountry, AccountCompanyCountryLocation, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountLocation, AccountLocationId, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, AccountWithDefault, AccountWithLocations, AccountsActivesOut, AccountsOut, ActiveLessLaravelModel, ActiveLessSymfonyModel, AdditionalData, AddressPlaceDetail, AddressPlaceDetailIn, AddressPlaceDetailsOut, AddressSuggestion, AddressSuggestionIn, AddressSuggestionsOut, ApiBillingConfigurable, ApiModel, ApiResponse, ApiSuccess, Attribute, AttributeIn, AttributeWithId, Attributes, AuthLoginIn, AuthLoginOut, AuthMeOut, AuthUserLoginIn, Bank, BankAccount, BankAccountType, BankAccountsOut, BillingConfig, BillingConfigIn, BillingConfigOut, BillingConfigsOut, BillingDetailsPayment, BillingDetailsReport, BillingDetailsReportOut, BillingPaCustomer, BillingPaCustomerOut, BoardingProcess, BoardingProcessHistory, BoardingProcessIdIn, BoardingProcessIn, BoardingProcessStatus, BusinessPartyTraderType, BusinessPartyTraderTypesOut, CFDI, CancelPaymentReceiptIn, CancellationReason, CancellationReasonIn, CancellationReasonOut, CancellationReasonsOut, CashValueSummary, CashValueSummaryOut, Catalog, CatalogLess, CatalogsOut, ChangeLanguageIn, Checkpoint, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointsOut, City, Closing, ClosingIn, ClosingOut, ClosingPayment, CoCustomer, CoCustomerIn, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoGetCustomerOut, CoMunicipalitiesOut, CoMunicipality, CoPostCustomerOut, CoPostalCode, CoPostalCodesOut, CoTribute, CoTributesOut, CollectionPayment, CollectionPaymentsOut, CommercialInvoice, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, CountriesOut, Country, CountryAccount, CountryCurrencyRate, CountryDocumentType, CountryDocumentTypesOut, CountryExchange, CountryGroups, CountryGroupsOut, CountryIn, CountryOut, CountryPaymentType, CountryPaymentTypeField, CountryPaymentTypeFieldIn, CountryPaymentTypeFieldOut, CountryPaymentTypeFieldsOut, CountryPaymentTypeIn, CountryPaymentTypeOut, CountryPaymentTypesOut, CountryReference, CountryReferenceCurrenciesOut, CountryReferenceCurrency, CountryReferenceCurrencyIn, CountryReferenceCurrencyOut, CountryReferenceExtraCharge, CountryReferenceExtraChargeIn, CountryReferenceExtraChargeOut, CountryReferenceIn, CountryReferenceOut, CountryReferenceProduct, CountryReferenceProductIn, CountryReferenceProductOut, CountryReferenceProductsOut, CountryReferencesOut, CountryToExportReason, CourierCheckOutPackesOut, Criteria, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerSurvey, CustomerSurveyFinishIn, CustomerSurveyIn, CustomerSurveyOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, Deposit, DepositIn, DepositOut, 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, DocumentTypesOut, 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, ExportReason, ExportReasonIn, ExportReasonOut, ExportReasonTypes, ExportReasonTypesOut, ExportReasonsOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressCancellation, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentCancellationIn, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExternalShipmentsOut, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, HistoriesReportOut, HistoryReport, HistoryReportCheckpoint, Holiday, HolidayIn, HolidayOut, HolidaysOut, IdentificationType, IdentificationTypeComposition, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeNumberValidationIn, IdentificationTypeNumberValidationOut, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, InventoriesReportOut, InventoryReport, InvoiceCancellationIn, InvoiceReport, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, LanguageOut, 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, Opening, OpeningCountryReferenceCurrency, OpeningHistory, OpeningIn, OpeningOut, OpeningPreClosingRequestIn, OpeningStatus, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, OpeningsOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentCustomerIn, OperationDocumentCustomerOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsOut, PackageMissing, PackageReport, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueIn, ParameterValueOut, ParametersByLevelIn, ParametersOut, ParametersValuesIn, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, Pivot, PostalCode, PostalCodeBillings, PostalCodeFormat, PostalCodesOut, PostalLocation, PostalLocationsOut, PriceOverrideApprover, PriceOverrideApproversOut, PriceOverrideReason, PriceOverrideReasonsOut, PrintCollectionReceiptOut, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QuantityUnitsOut, QueryParams, Question, QuestionIn, QuestionOption, QuestionOut, QuestionResponse, QuestionType, QuestionTypesOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, ReEntryOfMissingPackage, ReEntryOfMissingPackageOut, ReEntryOfMissingPackages, ReEntryOfMissingPackagesIn, ReEntryOfMissingPackagesOut, ReceiptFile, ReceiptFileOut, Region, RegionsOut, ReportExternalShipment, ReportExternalShipmentAddress, Role, RoleIn, RoleOut, RoleType, RoleTypesOut, RolesOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, Rules, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, ShipmentAddresses, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentCompanyCountryExtraCharges, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentDescription, ShipmentDescriptionsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsLandingReportOut, ShipmentsReportOut, SignaturePageSetting, SignaturePageSettingIn, SignaturePageSettingOut, SignaturePageSettingsOut, State, Status, StatusesOut, StockUpdatePackagesOut, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, Survey, SurveyIn, SurveyOut, SurveyQuestion, SurveyQuestionIn, SurveyQuestionOut, SurveyQuestionsOut, SurveysOut, SymfonyModel, System, SystemEntitiesIn, SystemEntitiesOut, SystemIn, SystemOut, SystemsOut, TDXAccountSetting, TDXAccountSettingsIn, TDXAccountSettingsOut, TDXAccountsSettingsOut, Tax, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TradingTransactionTypesOut, TransferenceType, TranslateLang, Translations, UniqueFolio, UniqueFolioIn, UniqueFolioOut, UniqueFoliosOut, Unit, UnitsOut, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, Values, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZoneOut, ZonesOut };
9267
+ 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 };
9268
+ export type { Account, AccountCategoriesOut, AccountCategory, AccountCompanyCountry, AccountCompanyCountryLocation, AccountEntitiesIn, AccountEntitiesOut, AccountIn, AccountLocation, AccountLocationId, AccountOut, AccountPayment, AccountResponse, AccountToTDX, AccountType, AccountTypeIn, AccountTypeOut, AccountTypesOut, AccountWithDefault, AccountWithLocations, AccountsActivesOut, AccountsOut, ActiveLessLaravelModel, ActiveLessSymfonyModel, AdditionalData, AddressPlaceDetail, AddressPlaceDetailIn, AddressPlaceDetailsOut, AddressSuggestion, AddressSuggestionIn, AddressSuggestionsOut, AddressToSignaturePage, ApiBillingConfigurable, ApiModel, ApiResponse, ApiSuccess, Attribute, AttributeIn, AttributeWithId, Attributes, AuthLoginIn, AuthLoginOut, AuthMeOut, AuthUserLoginIn, AvailablePrintersOut, Bank, BankAccount, BankAccountType, BankAccountsOut, BillingConfig, BillingConfigIn, BillingConfigOut, BillingConfigsOut, BillingDetailsPayment, BillingDetailsReport, BillingDetailsReportOut, BillingPaCustomer, BillingPaCustomerOut, BoardingProcess, BoardingProcessHistory, BoardingProcessIdIn, BoardingProcessIn, BoardingProcessStatus, BookPickupToSignaturePage, BusinessPartyTraderType, BusinessPartyTraderTypesOut, CFDI, CancelPaymentReceiptIn, CancellationReason, CancellationReasonIn, CancellationReasonOut, CancellationReasonsOut, CashValueSummary, CashValueSummaryOut, Catalog, CatalogLess, CatalogsOut, ChangeLanguageIn, Checkpoint, CheckpointEventReason, CheckpointEventReasonsOut, CheckpointsOut, City, Closing, ClosingIn, ClosingOut, ClosingPayment, CoCustomer, CoCustomerIn, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoGetCustomerOut, CoMunicipalitiesOut, CoMunicipality, CoPostCustomerOut, CoPostalCode, CoPostalCodesOut, CoTribute, CoTributesOut, CollectionPayment, CollectionPaymentsOut, CommercialInvoice, CommercialInvoiceItemToSignaturePage, CommercialInvoiceToSignaturePage, CommercialInvoiceType, CommoditiesOut, Commodity, CompaniesOut, Company, CompanyCountriesOut, CompanyCountry, CompanyCountryIn, CompanyCountryOut, CompanyCountryTax, CompanyCountryTaxesOut, CompanyIn, CompanyOut, CompositionCountryReferencesOut, ConfirmTermsIn, CountriesOut, Country, CountryAccount, CountryCurrencyRate, CountryDocumentType, CountryDocumentTypesOut, CountryExchange, CountryGroups, CountryGroupsOut, CountryIn, CountryOut, CountryPaymentType, CountryPaymentTypeField, CountryPaymentTypeFieldIn, CountryPaymentTypeFieldOut, CountryPaymentTypeFieldsOut, CountryPaymentTypeIn, CountryPaymentTypeOut, CountryPaymentTypesOut, CountryReference, CountryReferenceCurrenciesOut, CountryReferenceCurrency, CountryReferenceCurrencyIn, CountryReferenceCurrencyOut, CountryReferenceExtraCharge, CountryReferenceExtraChargeIn, CountryReferenceExtraChargeOut, CountryReferenceIn, CountryReferenceOut, CountryReferenceProduct, CountryReferenceProductIn, CountryReferenceProductOut, CountryReferenceProductsOut, CountryReferencesOut, CountryToDocumentConfig, CountryToExportReason, CourierCheckOutPackesOut, Criteria, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerRoleType, CustomerSurvey, CustomerSurveyFinishIn, CustomerSurveyIn, CustomerSurveyOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, CustomsAttribute, CustomsAttributeValues, CustomsRule, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentsOut, DependentRules, Deposit, DepositIn, DepositOut, DepositSlipOut, DestinationCountry, DhlCode, DhlCodeLess, Discount, DiscountIn, DiscountOut, DiscountsOut, District, DistrictsOut, Document, DocumentCategory, DocumentCategoryReports, DocumentConfiguration, DocumentConfigurationIn, DocumentConfigurationOut, DocumentConfigurationsOut, DocumentConfigurationsPreviewIn, DocumentConfigurationsPreviewOut, DocumentFunction, DocumentItem, DocumentPayment, DocumentRequests, DocumentStatus, DocumentStatusesOut, DocumentType, DocumentTypeComposition, DocumentTypeRange, DocumentTypeRangeIn, DocumentTypeRangeOut, DocumentTypeRangesOut, DocumentTypeReports, DocumentTypesOut, 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, ExportReason, ExportReasonIn, ExportReasonOut, ExportReasonTypes, ExportReasonTypesOut, ExportReasonsOut, ExportType, ExportTypesOut, ExternalShipmentAddress, ExternalShipmentAddressCancellation, ExternalShipmentAddressesIn, ExternalShipmentAddressesOut, ExternalShipmentCancellationIn, ExternalShipmentFile, ExternalShipmentFileHistory, ExternalShipmentFileOut, ExternalShipmentHistoriesOut, ExternalShipmentHistory, ExternalShipmentStatus, ExternalShipmentStatusOut, ExternalShipmentStatuses, ExternalShipmentsOut, ExtraCharge, ExtraChargeComposition, ExtraChargeEntitiesIn, ExtraChargeEntitiesOut, ExtraChargeEntity, ExtraChargeIn, ExtraChargeOut, ExtraChargeTax, ExtraChargeToSignaturePage, ExtraChargesOut, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, GenericFolio, GenericFolioIn, GenericFolioOut, GenericFoliosOut, GetDocumentsOut, GetPostalLocationsIn, GetUserOut, GetUsersOut, HistoriesReportOut, HistoryReport, HistoryReportCheckpoint, Holiday, HolidayIn, HolidayOut, HolidaysOut, IdentificationType, IdentificationTypeComposition, IdentificationTypeCustomer, IdentificationTypeIn, IdentificationTypeNumberValidationIn, IdentificationTypeNumberValidationOut, IdentificationTypeOut, IdentificationTypesOut, Incident, IncidentIn, IncidentOut, IncidentReason, IncidentReasonComplement, IncidentReasonComplementIn, IncidentReasonComplementOut, IncidentReasonComplementsOut, IncidentReasonIn, IncidentReasonOut, IncidentReasonsOut, IncidentsOut, IncomeType, IncomeTypesOut, Installation, InstallationCountryReferenceCurrenciesOut, InstallationCountryReferenceCurrency, InstallationCountryReferenceCurrencyIn, InstallationCountryReferenceCurrencyOut, InstallationIn, InstallationOut, InstallationsOut, InventoriesReportOut, InventoryReport, InvoiceCancellationIn, InvoiceReport, InvoiceTypeCustomParamsIn, InvoicesOut, Item, Language, LanguageOut, 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, Opening, OpeningCountryReferenceCurrency, OpeningHistory, OpeningIn, OpeningOut, OpeningPreClosingRequestIn, OpeningStatus, OpeningTransference, OpeningTransferenceIn, OpeningTransferenceOut, OpeningsOut, Operation, OperationAccountPaymentIn, OperationAccountPaymentOut, OperationAction, OperationCancelBillingIn, OperationCancelBillingOut, OperationDocumentCustomerIn, OperationDocumentCustomerOut, OperationDocumentIn, OperationDocumentOut, OperationDocumentRequestsOut, OperationEvent, OperationModule, OperationModuleEndIn, OperationModuleOut, OperationModuleStartIn, OperationPrintDocumentOut, OperationPrintTicketOut, OperationPrintXmlOut, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypeInventory, OperationTypesInventoryOut, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, PackageInStockDetailOut, PackageInventory, PackageLocation, PackageLocationsOut, PackageMissing, PackageReport, PackagesInStockIn, PackagesInStockOut, PackagesReportOut, Parameter, ParameterConfig, ParameterConfigIn, ParameterConfigOut, ParameterConfigsOut, ParameterValueIn, ParameterValueOut, ParametersByLevelIn, ParametersOut, ParametersValuesIn, ParametersValuesOut, ParcelReport, ParcelsReportOut, Parish, ParishesOut, PartialWithdrawal, PartialWithdrawalsOut, Payment, PaymentDetail, PaymentOpenItemIn, PaymentOut, PaymentType, PaymentTypeFieldAccount, PaymentTypeFieldAccountIn, PaymentTypeFieldAccountOut, PaymentTypeFieldAccountsOut, PaymentTypeFieldCardType, PaymentTypeFieldCardTypeIn, PaymentTypeFieldCardTypeOut, PaymentTypeFieldCardTypesOut, PaymentTypesOut, Permission, PersonType, PersonTypesOut, PieceSupplyToSignaturePage, PiecesToSignaturePage, Pivot, PostalCode, PostalCodeBillings, PostalCodeFormat, PostalCodesOut, PostalLocation, PostalLocationsOut, PriceOverrideApprover, PriceOverrideApproversOut, PriceOverrideReason, PriceOverrideReasonsOut, PrintCollectionReceiptOut, Printable, Printer, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, QuantityUnitsOut, QueryParams, Question, QuestionIn, QuestionOption, QuestionOut, QuestionResponse, QuestionType, QuestionTypesOut, QuestionsOut, QuoteEvent, QuoteEventIn, QuoteEventOut, QuoteEventType, QuoteEventTypesOut, QuoteEventsOut, ReEntryOfMissingPackage, ReEntryOfMissingPackageOut, ReEntryOfMissingPackages, ReEntryOfMissingPackagesIn, ReEntryOfMissingPackagesOut, ReceiptFile, ReceiptFileOut, Region, RegionsOut, ReportExternalShipment, ReportExternalShipmentAddress, Role, RoleIn, RoleOut, RoleType, RoleTypesOut, RolesOut, Rule, RuleByCriteria, RuleCriteriaIn, RuleIn, RuleOut, Rules, RulesByCriteriaOut, RulesIn, RulesOut, Sales, SalesBookReportOut, ServiceArea, ServiceAreaIn, ServiceAreasOut, Session, SessionIn, SessionOut, SetUpData, ShipmentAddresses, ShipmentBookPickup, ShipmentCancellationIn, ShipmentCancellationOut, ShipmentCompanyCountryExtraCharges, ShipmentComposition, ShipmentContentType, ShipmentContentTypesOut, ShipmentCustoms, ShipmentDataToSignaturePage, ShipmentDescription, ShipmentDescriptionsOut, ShipmentDocument, ShipmentDocumentsOut, ShipmentEmployeeCustomer, ShipmentEmployeeCustomers, ShipmentGroup, ShipmentGroupsOut, ShipmentGsop, ShipmentIncomeType, ShipmentIncomeTypeIn, ShipmentIncomeTypeOut, ShipmentIncomeTypesOut, ShipmentLandingReport, ShipmentOut, ShipmentPieceCompanyCountrySupplies, ShipmentPieces, ShipmentReports, ShipmentScope, ShipmentScopesOut, ShipmentSignaturePageConfirmationIn, ShipmentSignaturePageIn, ShipmentSignaturePageOut, ShipmentStatus, ShipmentStatusesOut, ShipmentTag, ShipmentsLandingReportOut, ShipmentsReportOut, SignaturePage, SignaturePageAnswers, SignaturePageConfirmation, SignaturePageConfirmationGenerateOut, SignaturePageConfirmationOut, SignaturePageSetting, SignaturePageSettingIn, State, Status, StatusesOut, StockUpdatePackagesOut, Suburb, SuppliesOut, Supply, SupplyEntitiesIn, SupplyEntitiesOut, SupplyEntity, SupplyEntityPacking, SupplyEntityType, SupplyIn, SupplyLocation, SupplyLocationIn, SupplyLocationOut, SupplyLocationTransaction, SupplyLocationTransactionIn, SupplyLocationTransactionOut, SupplyLocationsOut, SupplyOut, SupplyPacking, SupplyTransactionType, SupplyTransactionTypesOut, SupplyType, SupplyTypesOut, Survey, SurveyIn, SurveyOut, SurveyQuestion, SurveyQuestionIn, SurveyQuestionOut, SurveyQuestionsOut, SurveysOut, SymfonyModel, System, SystemEntitiesIn, SystemEntitiesOut, SystemIn, SystemOut, SystemsOut, TDXAccountSetting, TDXAccountSettingsIn, TDXAccountSettingsOut, TDXAccountsSettingsOut, Tax, TaxToSignaturePage, TextConfig, Tolerance, ToleranceIn, ToleranceOut, TolerancesOut, TopCustomer, TopCustomersOut, TradingTransactionType, TradingTransactionTypesOut, TransferenceType, TranslateLang, Translations, UniqueFolio, UniqueFolioIn, UniqueFolioOut, UniqueFoliosOut, Unit, UnitsOut, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, Values, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZoneOut, ZonesOut };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experteam-mx/ngx-services",
3
- "version": "20.6.0",
3
+ "version": "20.7.0-dev1.10",
4
4
  "description": "Angular common services for Experteam apps",
5
5
  "author": "Experteam Cía. Ltda.",
6
6
  "keywords": [
@@ -41,8 +41,8 @@
41
41
  "tslib": "^2.8.0"
42
42
  },
43
43
  "peerDependencies": {
44
- "@angular/common": "^20.0.0",
45
- "@angular/core": "^20.0.0",
44
+ "@angular/common": "^20.3.25",
45
+ "@angular/core": "^20.3.25",
46
46
  "ngx-cookie-service": "^20.0.0",
47
47
  "pusher-js": "^7.5.0"
48
48
  },