ngx-dsxlibrary 1.0.72 → 1.0.73

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
@@ -248,6 +248,7 @@ interface Sat {
248
248
  }
249
249
  interface Dte {
250
250
  datosEmision: DatosEmision;
251
+ certificacion: Certificacion;
251
252
  id: string;
252
253
  }
253
254
  interface DatosEmision {
@@ -260,6 +261,17 @@ interface DatosEmision {
260
261
  complementos: Complementos;
261
262
  id: string;
262
263
  }
264
+ interface Certificacion {
265
+ nitCertificador: string;
266
+ nombreCertificador: string;
267
+ numeroAutorizacion: NumeroAutorizacion;
268
+ fechaHoraCertificacion: Date;
269
+ }
270
+ interface NumeroAutorizacion {
271
+ numero: number;
272
+ serie: string;
273
+ value: string;
274
+ }
263
275
  interface DatosGenerales {
264
276
  codigoMoneda: string;
265
277
  fechaHoraEmision: string;
@@ -1003,4 +1015,4 @@ declare function nitValidator(control: AbstractControl): ValidationErrors | null
1003
1015
  declare function cuiValidator(control: AbstractControl): ValidationErrors | null;
1004
1016
 
1005
1017
  export { AlertaService, AppMessageErrorComponent, AuthorizeService, CACHE_KEYS, CacheService, DsxAddToolsModule, ENVIRONMENT, EndpointService, INITIAL_PARAMETERS, JsonHighlightPipe, JsonValuesDebujComponent, KpicardComponent, LoadingComponent, NavbarDsxComponent, OnlyRangoPatternDirective, ParameterValuesService, PrimeNgModule, SecurityService, SelectAllOnFocusDirective, TruncatePipe, UtilityAddService, atLeastOneFieldRequiredValidator, createInitialCache, createTypedCacheProvider, cuiValidator, dateMinMaxValidator, dateRangeValidator, httpAuthorizeInterceptor, nitValidator };
1006
- export type { Column, Complemento, Complementos, DatosEmision, DatosGenerales, Direccion, DocumentoFelResponse, Dte, Emisor, EnvironmentConfig, ExportColumn, FechasConversion, FieldConfig, FilterOption, Frase, Frases, Impuesto, Impuestos, InferCacheKeyType, InferCacheOptions, Item, Items, MyParameterValues, NITResponse, ParameterSecurity, ParameterValue, Receptor, ResponseHttpModel, Sat, SeguridadITParameter, T, TipoFechaConversion, TotalImpuesto, Totales, typeModel };
1018
+ export type { Certificacion, Column, Complemento, Complementos, DatosEmision, DatosGenerales, Direccion, DocumentoFelResponse, Dte, Emisor, EnvironmentConfig, ExportColumn, FechasConversion, FieldConfig, FilterOption, Frase, Frases, Impuesto, Impuestos, InferCacheKeyType, InferCacheOptions, Item, Items, MyParameterValues, NITResponse, NumeroAutorizacion, ParameterSecurity, ParameterValue, Receptor, ResponseHttpModel, Sat, SeguridadITParameter, T, TipoFechaConversion, TotalImpuesto, Totales, typeModel };
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ngx-dsxlibrary",
3
- "version": "1.0.72",
3
+ "version": "1.0.73",
4
4
  "description": "Libreria para control de código automatizado.",
5
5
  "author": "DevSoftXela",
6
6
  "dependencies": {
@@ -21,6 +21,10 @@
21
21
  "types": "./src/lib/components/index.d.ts",
22
22
  "default": "./fesm2022/ngx-dsxlibrary-src-lib-components.mjs"
23
23
  },
24
+ "./src/lib/injections": {
25
+ "types": "./src/lib/injections/index.d.ts",
26
+ "default": "./fesm2022/ngx-dsxlibrary-src-lib-injections.mjs"
27
+ },
24
28
  "./src/lib/directives": {
25
29
  "types": "./src/lib/directives/index.d.ts",
26
30
  "default": "./fesm2022/ngx-dsxlibrary-src-lib-directives.mjs"
@@ -29,10 +33,6 @@
29
33
  "types": "./src/lib/interceptors/index.d.ts",
30
34
  "default": "./fesm2022/ngx-dsxlibrary-src-lib-interceptors.mjs"
31
35
  },
32
- "./src/lib/injections": {
33
- "types": "./src/lib/injections/index.d.ts",
34
- "default": "./fesm2022/ngx-dsxlibrary-src-lib-injections.mjs"
35
- },
36
36
  "./src/lib/models": {
37
37
  "types": "./src/lib/models/index.d.ts",
38
38
  "default": "./fesm2022/ngx-dsxlibrary-src-lib-models.mjs"
@@ -58,6 +58,7 @@ interface Sat {
58
58
  }
59
59
  interface Dte {
60
60
  datosEmision: DatosEmision;
61
+ certificacion: Certificacion;
61
62
  id: string;
62
63
  }
63
64
  interface DatosEmision {
@@ -70,6 +71,17 @@ interface DatosEmision {
70
71
  complementos: Complementos;
71
72
  id: string;
72
73
  }
74
+ interface Certificacion {
75
+ nitCertificador: string;
76
+ nombreCertificador: string;
77
+ numeroAutorizacion: NumeroAutorizacion;
78
+ fechaHoraCertificacion: Date;
79
+ }
80
+ interface NumeroAutorizacion {
81
+ numero: number;
82
+ serie: string;
83
+ value: string;
84
+ }
73
85
  interface DatosGenerales {
74
86
  codigoMoneda: string;
75
87
  fechaHoraEmision: string;
@@ -174,4 +186,4 @@ interface NITResponse {
174
186
  }
175
187
 
176
188
  export { createInitialCache };
177
- export type { Column, Complemento, Complementos, DatosEmision, DatosGenerales, Direccion, DocumentoFelResponse, Dte, Emisor, ExportColumn, FechasConversion, FieldConfig, FilterOption, Frase, Frases, Impuesto, Impuestos, InferCacheKeyType, InferCacheOptions, Item, Items, NITResponse, Receptor, ResponseHttpModel, Sat, T, TipoFechaConversion, TotalImpuesto, Totales, typeModel };
189
+ export type { Certificacion, Column, Complemento, Complementos, DatosEmision, DatosGenerales, Direccion, DocumentoFelResponse, Dte, Emisor, ExportColumn, FechasConversion, FieldConfig, FilterOption, Frase, Frases, Impuesto, Impuestos, InferCacheKeyType, InferCacheOptions, Item, Items, NITResponse, NumeroAutorizacion, Receptor, ResponseHttpModel, Sat, T, TipoFechaConversion, TotalImpuesto, Totales, typeModel };
Binary file