itc-components-library20 0.0.7 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -1921,5 +1921,24 @@ declare class ApiEventService {
1921
1921
 
1922
1922
  declare const API_CONFIG: InjectionToken<unknown>;
1923
1923
 
1924
- export { API_CONFIG, ApiAccountDictionaryService, ApiAccountService, ApiAdministrationService, ApiEventService, ApiExamAppointmentService, ApiExamDictionaryService, ApiExamService, ApiGeographyService, ApiKitService, ApiPatientDictionaryService, ApiPatientService, ApiRequestDictionaryService, ApiRequestService, ApiStructureDictionaryService, ApiStructureService, ApiSurveyDictionaryService, ApiSurveyService, BasicTable, Calendar, CalendarView, FormatDate, ItcLibrary20, Message, Minio, PRIMENG_ITALIAN_LOCALE, PrimaryButton, PrimengItalianLocale, SecondaryButton, SortableTable, Survey, SurveyRadio, SurveyText, SurveyValuebox, ThirdButton };
1924
+ interface IReportResponseDto {
1925
+ patientId: string;
1926
+ patientName?: string;
1927
+ from: Date;
1928
+ to: Date;
1929
+ generatedAt: Date;
1930
+ pdf: string;
1931
+ }
1932
+
1933
+ declare class ApiReportService {
1934
+ private gateway;
1935
+ endpoint: string;
1936
+ constructor(gateway: string);
1937
+ http: HttpClient;
1938
+ getPatientReportPdf(patientId: string, from?: string, to?: string): Observable<IReportResponseDto>;
1939
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApiReportService, never>;
1940
+ static ɵprov: i0.ɵɵInjectableDeclaration<ApiReportService>;
1941
+ }
1942
+
1943
+ export { API_CONFIG, ApiAccountDictionaryService, ApiAccountService, ApiAdministrationService, ApiEventService, ApiExamAppointmentService, ApiExamDictionaryService, ApiExamService, ApiGeographyService, ApiKitService, ApiPatientDictionaryService, ApiPatientService, ApiReportService, ApiRequestDictionaryService, ApiRequestService, ApiStructureDictionaryService, ApiStructureService, ApiSurveyDictionaryService, ApiSurveyService, BasicTable, Calendar, CalendarView, FormatDate, ItcLibrary20, Message, Minio, PRIMENG_ITALIAN_LOCALE, PrimaryButton, PrimengItalianLocale, SecondaryButton, SortableTable, Survey, SurveyRadio, SurveyText, SurveyValuebox, ThirdButton };
1925
1944
  export type { IAppointment, IColumn, IMinio, IQuestionAnswer };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "itc-components-library20",
3
- "version": "0.0.7",
3
+ "version": "1.0.0",
4
4
  "description": "Library of Angular components for ITC projects, compatible with Angular 20.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.2.0",