@experteam-mx/ngx-services 20.3.1-dev3.0 → 20.3.1-dev3.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/index.d.ts CHANGED
@@ -47,6 +47,7 @@ type Environment = {
47
47
  apiServicesUrl?: string;
48
48
  apiShipmentUrl?: string;
49
49
  apiSuppliesUrl?: string;
50
+ apiSurveysKey?: string;
50
51
  apiSurveysUrl?: string;
51
52
  authCookie?: string;
52
53
  cacheTtl?: number;
@@ -132,7 +133,7 @@ interface TranslateLang {
132
133
  [langCode: string]: string;
133
134
  }
134
135
 
135
- interface CustomerCo {
136
+ interface CoCustomer {
136
137
  identification_number: string;
137
138
  identification_type_id: number;
138
139
  customer_type_id: number | null;
@@ -151,9 +152,9 @@ interface CustomerCo {
151
152
  address_line3: string | null;
152
153
  company_id: number | null;
153
154
  country_id: number | null;
154
- extra_fields: ExtraFields;
155
+ extra_fields: CoExtraFields;
155
156
  }
156
- interface ExtraFields {
157
+ interface CoExtraFields {
157
158
  social_reason: string;
158
159
  comercial_name: string | null;
159
160
  mercantile_registration: string | null;
@@ -170,28 +171,28 @@ interface ExtraFields {
170
171
  open_id: number;
171
172
  [key: string]: string | number | boolean | string[] | null;
172
173
  }
173
- interface DepartmentCO extends LaravelModel {
174
+ interface CoDepartment extends LaravelModel {
174
175
  code: string;
175
176
  description: string;
176
177
  }
177
- interface MunicipalityCO extends LaravelModel {
178
+ interface CoMunicipality extends LaravelModel {
178
179
  department_id: number;
179
180
  code: string;
180
181
  description: string;
181
182
  }
182
- interface PostalCodeCO extends LaravelModel {
183
+ interface CoPostalCode extends LaravelModel {
183
184
  code: string;
184
185
  }
185
- interface FiscalRegimeCO extends LaravelModel {
186
+ interface CoFiscalRegime extends LaravelModel {
186
187
  code: string;
187
188
  description: string;
188
189
  }
189
- interface FiscalResponsibility extends LaravelModel {
190
+ interface CoFiscalResponsibility extends LaravelModel {
190
191
  code: string;
191
192
  description: string;
192
193
  applies_to: string;
193
194
  }
194
- interface TributeCO extends LaravelModel {
195
+ interface CoTribute extends LaravelModel {
195
196
  code: string;
196
197
  name: string;
197
198
  type: string;
@@ -200,58 +201,61 @@ interface TributeCO extends LaravelModel {
200
201
  applies_to_tribute: string;
201
202
  }
202
203
 
203
- type BillingCoCustomerOut = {
204
- customer: CustomerCo;
204
+ type CoCustomerOut = {
205
+ customer: CoCustomer;
205
206
  };
206
- type DepartmentCoOut = {
207
- departments: DepartmentCO[];
208
- };
209
- type MunicipalityCoOut = {
210
- municipalities: MunicipalityCO[];
211
- };
212
- type PostalCodeCoOut = {
213
- postal_codes: PostalCodeCO[];
207
+ type CoDepartmentsOut = {
208
+ departments: CoDepartment[];
214
209
  total: number;
215
210
  };
216
- type FiscalRegimeCoOut = {
217
- fiscal_regimes: FiscalRegimeCO[];
211
+ type CoMunicipalitiesOut = {
212
+ municipalities: CoMunicipality[];
213
+ total: number;
218
214
  };
219
- type FiscalResponsibilityCoOut = {
220
- fiscal_responsibilities: FiscalResponsibility[];
215
+ type CoPostalCodesOut = {
216
+ postal_codes: CoPostalCode[];
217
+ total: number;
221
218
  };
222
- type TributeCoOut = {
223
- tributes: TributeCO[];
219
+ type CoFiscalRegimesOut = {
220
+ fiscal_regimes: CoFiscalRegime[];
221
+ total: number;
224
222
  };
225
- type BillingCOCustomerIn = {
226
- customer: CustomerCoIn;
223
+ type CoFiscalResponsibilitiesOut = {
224
+ fiscal_responsibilities: CoFiscalResponsibility[];
225
+ total: number;
227
226
  };
228
- type CustomerCoIn = {
229
- identification_number: string;
230
- identification_type_id: number;
231
- company_name: string;
232
- full_name: string;
233
- email: string;
234
- phone_number: string;
235
- postal_code: string;
236
- state: string;
237
- address_line1: string;
238
- extra_fields: ExtraFieldsCOIn;
227
+ type CoTributesOut = {
228
+ tributes: CoTribute[];
229
+ total: number;
239
230
  };
240
- type ExtraFieldsCOIn = {
241
- social_reason: string;
242
- comercial_name: string | null;
243
- notification_mail: string;
244
- fiscal_responsibilities: string[];
245
- tributes: string[];
246
- fiscal_regime: string | null;
247
- first_name: string | null;
248
- other_name: string | null;
249
- last_name: string | null;
250
- second_last_name: string | null;
251
- department: string;
252
- municipality: string;
253
- contacts?: [] | null;
254
- open_id?: number;
231
+ type CoCustomerIn = {
232
+ customer: {
233
+ identification_number: string;
234
+ identification_type_id: number;
235
+ company_name: string;
236
+ full_name: string;
237
+ email: string;
238
+ phone_number: string;
239
+ postal_code: string;
240
+ state: string;
241
+ address_line1: string;
242
+ extra_fields: {
243
+ social_reason: string;
244
+ comercial_name: string | null;
245
+ notification_mail: string;
246
+ fiscal_responsibilities: string[];
247
+ tributes: string[];
248
+ fiscal_regime: string | null;
249
+ first_name: string | null;
250
+ other_name: string | null;
251
+ last_name: string | null;
252
+ second_last_name: string | null;
253
+ department: string;
254
+ municipality: string;
255
+ contacts?: [] | null;
256
+ open_id?: number;
257
+ };
258
+ };
255
259
  };
256
260
 
257
261
  declare class ApiBillingCOService {
@@ -268,66 +272,66 @@ declare class ApiBillingCOService {
268
272
  * Retrieves the information of a customer by its identifier.
269
273
  *
270
274
  * @param {number} id - Unique customer identifier.
271
- * @returns {Observable<BillingCoCustomerOut>}
275
+ * @returns {Observable<CoCustomerOut>}
272
276
  * Observable emitting the customer information.
273
277
  */
274
- getCustomer(id: number): Observable<BillingCoCustomerOut>;
278
+ getCustomer(id: number): Observable<CoCustomerOut>;
275
279
  /**
276
280
  * Creates a new customer.
277
281
  *
278
- * @param {BillingCOCustomerIn} body - Customer data to be created.
279
- * @returns {Observable<BillingCoCustomerOut>}
282
+ * @param {CoCustomerIn} body - Customer data to be created.
283
+ * @returns {Observable<CoCustomerOut>}
280
284
  * Observable emitting the created customer information.
281
285
  */
282
- postCustomer(body: BillingCOCustomerIn): Observable<BillingCoCustomerOut>;
286
+ postCustomer(body: CoCustomerIn): Observable<CoCustomerOut>;
283
287
  /**
284
288
  * Retrieves the list of departments based on the provided query parameters.
285
289
  *
286
290
  * @param {QueryParams} params - Query parameters used to filter or paginate the request.
287
- * @returns {Observable<DepartmentCoOut>}
291
+ * @returns {Observable<CoDepartmentsOut>}
288
292
  * Observable emitting the departments list.
289
293
  */
290
- getDepartments(params: QueryParams): Observable<DepartmentCoOut>;
294
+ getDepartments(params: QueryParams): Observable<CoDepartmentsOut>;
291
295
  /**
292
296
  * Retrieves the list of municipalities based on the provided query parameters.
293
297
  *
294
298
  * @param {QueryParams} params - Query parameters used to filter or paginate the request.
295
- * @returns {Observable<MunicipalityCoOut>}
299
+ * @returns {Observable<CoMunicipalitiesOut>}
296
300
  * Observable emitting the municipalities list.
297
301
  */
298
- getMunicipalities(params: QueryParams): Observable<MunicipalityCoOut>;
302
+ getMunicipalities(params: QueryParams): Observable<CoMunicipalitiesOut>;
299
303
  /**
300
304
  * Retrieves the list of postal codes based on the provided query parameters.
301
305
  *
302
306
  * @param {QueryParams} params - Query parameters used to filter or paginate the request.
303
- * @returns {Observable<PostalCodeCoOut>}
307
+ * @returns {Observable<CoPostalCodesOut>}
304
308
  * Observable emitting the postal codes list.
305
309
  */
306
- getPostalCodes(params: QueryParams): Observable<PostalCodeCoOut>;
310
+ getPostalCodes(params: QueryParams): Observable<CoPostalCodesOut>;
307
311
  /**
308
312
  * Retrieves the list of fiscal regimes based on the provided query parameters.
309
313
  *
310
314
  * @param {QueryParams} params - Query parameters used to filter or paginate the request.
311
- * @returns {Observable<FiscalRegimeCoOut>}
315
+ * @returns {Observable<CoFiscalRegimesOut>}
312
316
  * Observable emitting the fiscal regimes list.
313
317
  */
314
- getFiscalRegimes(params: QueryParams): Observable<FiscalRegimeCoOut>;
318
+ getFiscalRegimes(params: QueryParams): Observable<CoFiscalRegimesOut>;
315
319
  /**
316
320
  * Retrieves the list of fiscal responsibilities based on the provided query parameters.
317
321
  *
318
322
  * @param {QueryParams} params - Query parameters used to filter or paginate the request.
319
- * @returns {Observable<FiscalResponsibilityCoOut>}
323
+ * @returns {Observable<CoFiscalResponsibilitiesOut>}
320
324
  * Observable emitting the fiscal responsibilities list.
321
325
  */
322
- getFiscalResponsibilities(params: QueryParams): Observable<FiscalResponsibilityCoOut>;
326
+ getFiscalResponsibilities(params: QueryParams): Observable<CoFiscalResponsibilitiesOut>;
323
327
  /**
324
328
  * Retrieves the list of tributes based on the provided query parameters.
325
329
  *
326
330
  * @param {QueryParams} params - Query parameters used to filter or paginate the request.
327
- * @returns {Observable<TributeCoOut>}
331
+ * @returns {Observable<CoTributesOut>}
328
332
  * Observable emitting the tributes list.
329
333
  */
330
- getTributes(params: QueryParams): Observable<TributeCoOut>;
334
+ getTributes(params: QueryParams): Observable<CoTributesOut>;
331
335
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiBillingCOService, never>;
332
336
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiBillingCOService>;
333
337
  }
@@ -7884,6 +7888,7 @@ interface SurveyQuestion extends LaravelModel {
7884
7888
  question_options: QuestionOption[];
7885
7889
  question_type_id: number;
7886
7890
  question_type_name: string;
7891
+ question_type: QuestionType;
7887
7892
  sequence: number;
7888
7893
  survey_id: number;
7889
7894
  threshold_sequence: number | null;
@@ -7896,10 +7901,32 @@ interface QuestionOption extends LaravelModel {
7896
7901
  }
7897
7902
  interface QuestionType extends LaravelModel {
7898
7903
  allows_feedback: boolean;
7899
- code: string;
7904
+ code: 'MULTIPLE_CHOICE' | 'OPEN_FIELD' | 'SCALE_1_TO_5' | 'YES_OR_NO';
7900
7905
  has_options: boolean;
7901
7906
  name: string;
7902
7907
  }
7908
+ interface CustomerSurvey extends LaravelModel {
7909
+ customer_name: string;
7910
+ customer_email: string;
7911
+ shipment_tracking_number: string;
7912
+ location_code_name: string;
7913
+ user_name: string;
7914
+ installation_id: number;
7915
+ location_id: number;
7916
+ company_country_id: number;
7917
+ uuid: string;
7918
+ survey_ids: number[];
7919
+ answered_at: string;
7920
+ questions: SurveyQuestion[];
7921
+ responses?: QuestionResponse[];
7922
+ }
7923
+ interface QuestionResponse extends LaravelModel {
7924
+ customer_survey_id: number;
7925
+ survey_question_id: number;
7926
+ question: string;
7927
+ answer: string;
7928
+ answer_detail: string[];
7929
+ }
7903
7930
 
7904
7931
  type SurveysOut = {
7905
7932
  surveys: Survey[];
@@ -7941,15 +7968,35 @@ type QuestionTypesOut = {
7941
7968
  question_types: QuestionType[];
7942
7969
  total: number;
7943
7970
  };
7971
+ type CustomerSurveyOut = {
7972
+ customer_survey: CustomerSurvey;
7973
+ };
7974
+ type CustomerSurveyIn = {
7975
+ questions: {
7976
+ feedback?: {
7977
+ title?: string;
7978
+ answer: string;
7979
+ complement?: string;
7980
+ };
7981
+ answer: string | string[] | boolean | number;
7982
+ id: number;
7983
+ }[];
7984
+ };
7985
+ type CustomerSurveyFinishIn = {
7986
+ to_be_contacted_name: string;
7987
+ to_be_contacted_phone: string;
7988
+ };
7944
7989
 
7945
7990
  declare class ApiSurveysService {
7946
7991
  private environments;
7947
7992
  private http;
7993
+ private appKey;
7948
7994
  /**
7949
7995
  * Base URL for surveys API endpoints.
7950
7996
  * @returns The configured surveys API URL or an empty string.
7951
7997
  */
7952
7998
  get url(): string;
7999
+ private appKeyHeader;
7953
8000
  /**
7954
8001
  * Retrieves surveys list based on query parameters.
7955
8002
  * @param params Query parameters used to filter, paginate, or sort surveys.
@@ -8010,6 +8057,26 @@ declare class ApiSurveysService {
8010
8057
  * @returns Observable stream with question types response data.
8011
8058
  */
8012
8059
  getQuestionTypes(params: QueryParams): Observable<QuestionTypesOut>;
8060
+ /**
8061
+ * Retrieves a customer survey by UUID.
8062
+ * @param uuid Customer survey identifier.
8063
+ * @returns Observable stream with customer survey data.
8064
+ */
8065
+ getCustomerSurvey(uuid: string): Observable<CustomerSurveyOut>;
8066
+ /**
8067
+ * Updates an existing customer survey by UUID.
8068
+ * @param uuid Customer survey identifier.
8069
+ * @param body Customer survey payload used to update the resource.
8070
+ * @returns Observable stream with updated customer survey data.
8071
+ */
8072
+ putCustomerSurvey(uuid: string, body: CustomerSurveyIn): Observable<CustomerSurveyOut>;
8073
+ /**
8074
+ * Marks a customer survey as finished by UUID.
8075
+ * @param uuid Customer survey identifier.
8076
+ * @param body Customer survey finish payload.
8077
+ * @returns Observable stream with updated customer survey data.
8078
+ */
8079
+ postCustomerSurveyFinish(uuid: string, body: CustomerSurveyFinishIn): Observable<CustomerSurveyOut>;
8013
8080
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiSurveysService, never>;
8014
8081
  static ɵprov: i0.ɵɵInjectableDeclaration<ApiSurveysService>;
8015
8082
  }
@@ -8180,4 +8247,4 @@ declare const xmlHeaders: (format?: "object" | "http_header") => HttpHeaders | {
8180
8247
  };
8181
8248
 
8182
8249
  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, ENVIRONMENT_TOKEN, Event, NgxServicesModule, OperationModuleStatus, ViewSectionOption, WebSocketsService, apiHeadersInterceptor, apiKeyInterceptor, apiTokenInterceptor, base64PdfToUrl, downloadBase64Pdf, httpCachingInterceptor, httpParams, pdfHeaders, provideNgxServices, queryString, xmlHeaders };
8183
- 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, BillingCOCustomerIn, BillingCoCustomerOut, 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, 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, Criteria, CriteriaCustom, CriteriaIn, CriteriaOut, CriteriaWithTimestamps, CurrenciesOut, Currency, CurrencyOut, Customer, CustomerCo, CustomerCoIn, CustomerComposition, CustomerCountryDocumentType, CustomerDocumentTypesOut, CustomerOpenItem, CustomerOtherInvoice, CustomerRestriction, CustomerRestrictionIn, CustomerRestrictionInV2, CustomerRestrictionOut, CustomerRestrictionsOut, CustomerType, CustomerTypesOut, CustomersOut, Customs, DeliveryConfirmationCompleteIn, DeliveryConfirmationGenerateIn, DeliveryConfirmationGenerateOut, DeliveryConfirmationIn, DeliveryConfirmationSearchOut, Department, DepartmentCO, DepartmentCoOut, 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, ExtraFields, ExtraFieldsCOIn, Facility, Field, FieldLess, FieldsOut, FileCheckOut, FillFrom, FillFromIn, FiscalRegimeCO, FiscalRegimeCoOut, FiscalRegimen, FiscalRegimensAcceptedOut, FiscalRegimensOut, FiscalResponsibility, FiscalResponsibilityCoOut, 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, 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, MunicipalityCO, MunicipalityCoOut, 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, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, PackageLocation, PackageLocationsData, 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, PostalCodeCO, PostalCodeCoOut, PostalCodeFormat, 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, TranslateLang, Translations, TributeCO, TributeCoOut, UniqueFolio, UniqueFolioIn, UniqueFolioOut, UniqueFoliosOut, Unit, UnitsOut, User, UserMe, ValidateAccountIn, ValidateAccountOut, ValidateFacilityIn, ValidateFacilityOut, ValidateIdentificationBRIn, ValidateIdentificationBROut, ValidateNIPIn, ValidateNIPOut, Values, WithdrawalAmount, WorkflowConfig, WorkflowConfigsBatchIn, WorkflowConfigsOut, WorkflowsOut, Zone, ZonesOut };
8250
+ 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, 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, CoCustomer, CoCustomerIn, CoCustomerOut, CoDepartment, CoDepartmentsOut, CoExtraFields, CoFiscalRegime, CoFiscalRegimesOut, CoFiscalResponsibilitiesOut, CoFiscalResponsibility, CoMunicipalitiesOut, CoMunicipality, CoPostalCode, CoPostalCodesOut, CoTribute, CoTributesOut, CollectionPayment, CollectionPaymentsOut, CommercialInvoice, 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, 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, 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, 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, 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, OperationReport, OperationShipmentExternalIn, OperationShipmentExternalOut, OperationType, OperationTypesOut, OperationsLoadTopCustomerV2In, OperationsReportOut, OtherInvoiceIn, OtherInvoiceOut, OtherInvoices, Override, OverridesOut, PackageLocation, PackageLocationsData, 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, PrintCollectionReceiptOut, Product, ProductEntitiesIn, ProductEntitiesOut, ProductEntity, ProductIn, ProductOut, ProductSubtotal, PromotionCodeDiscount, PromotionCodeDiscountsOut, PromotionIn, PromotionOut, Provider, ProvidersOut, Province, ProvincesOut, PutUsersIn, PutUsersOut, QuantityUnit, 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, 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, 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, ZonesOut };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experteam-mx/ngx-services",
3
- "version": "20.3.1-dev3.0",
3
+ "version": "20.3.1-dev3.1",
4
4
  "description": "Angular common services for Experteam apps",
5
5
  "author": "Experteam Cía. Ltda.",
6
6
  "keywords": [