@eliasrrosa/tutorhub-public-assets 0.0.15 → 0.0.17

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/dist/index.d.ts CHANGED
@@ -43,9 +43,9 @@ import { IUserRoles } from "./domain/entities/UserRoles.js";
43
43
  import { IUserSharedFileTimestamps } from "./domain/entities/UserSharedFileTimestamps.js";
44
44
  import { IUnavailableTimeRepository } from "./domain/repositories/UnavailableTimeRepository.js";
45
45
  import { GetFixedAvailableTimeResponseBody } from "./infrastructure/restful/responses/GetFixedAvailableTimesResponseBody.js";
46
- import { CreateClassForm } from "./infrastructure/restful/requests/forms/CreateClassForm.js";
46
+ import { ClassCreationForm } from "./infrastructure/restful/requests/forms/ClassCreationForm.js";
47
47
  import { ClassStatus } from "./domain/types/ClassStatus.js";
48
48
  import { ClassCreationRecurrenceRule } from "./domain/types/ClassCreationRecurrenceRule.js";
49
49
  import { IUserUnavailableTime, UserUnavailableTime } from "./domain/entities/UserUnavailableTime.js";
50
50
  import { IFreeDateTimeSlot, FreeDateTimeSlot } from "./domain/entities/FreeTimeSlot.js";
51
- export { AsaasCustomer, Class, IClass, IClassRequest, IContract, ICourse, ICourseToSchoolConnectionRequest, IDate, IDateTimeSlot, IFreeDateTimeSlot, FreeDateTimeSlot, IUserUnavailableTime, UserUnavailableTime, IDateValidator, IFile, IGenericNotification, IGoogleAuth, IGoogleCalendar, IGoogleCalendarEvent, ISO8601Date, IDateTime, ISO8601DateValidator, ISO8601Time, ISO8601TimeValidator, IPasswordRecovery, IPayment, IPaymentRecognitionRequest, IPreApprovedUser, IRescheduleRequest, ISchool, ISchoolConnection, ISchoolConnectionRequest, ISchoolStudent, ISchoolTeacher, ITime, ITimeSlot, ITimeValidator, IUnauthorizedUser, IUserAuth, IUserConnection, IUserConnectionRequest, IUserCredentials, IUserNavigation, IUserPreferences, IUserPremium, IUserProfile, IUserRoles, IUserSharedFileTimestamps, IUnavailableTimeRepository, GetFixedAvailableTimeResponseBody, ISO8601DateTime, CreateClassForm, ClassCreationRecurrenceRule, ClassStatus };
51
+ export { AsaasCustomer, Class, IClass, IClassRequest, IContract, ICourse, ICourseToSchoolConnectionRequest, IDate, IDateTimeSlot, IFreeDateTimeSlot, FreeDateTimeSlot, IUserUnavailableTime, UserUnavailableTime, IDateValidator, IFile, IGenericNotification, IGoogleAuth, IGoogleCalendar, IGoogleCalendarEvent, ISO8601Date, IDateTime, ISO8601DateValidator, ISO8601Time, ISO8601TimeValidator, IPasswordRecovery, IPayment, IPaymentRecognitionRequest, IPreApprovedUser, IRescheduleRequest, ISchool, ISchoolConnection, ISchoolConnectionRequest, ISchoolStudent, ISchoolTeacher, ITime, ITimeSlot, ITimeValidator, IUnauthorizedUser, IUserAuth, IUserConnection, IUserConnectionRequest, IUserCredentials, IUserNavigation, IUserPreferences, IUserPremium, IUserProfile, IUserRoles, IUserSharedFileTimestamps, IUnavailableTimeRepository, GetFixedAvailableTimeResponseBody, ISO8601DateTime, ClassCreationForm, ClassCreationRecurrenceRule, ClassStatus };
@@ -0,0 +1,16 @@
1
+ import { ClassCreationRecurrenceRule } from "../../../../domain/types/ClassCreationRecurrenceRule";
2
+ import { ClassStatus } from "../../../../domain/types/ClassStatus";
3
+ export type ClassCreationForm = {
4
+ title: string;
5
+ date: string;
6
+ time: string;
7
+ endTime: string;
8
+ courseId: string;
9
+ description?: string;
10
+ id?: string;
11
+ status?: ClassStatus;
12
+ recurrenceRule?: ClassCreationRecurrenceRule;
13
+ recurrenceEndDate?: string;
14
+ groupId?: string;
15
+ meetingLink?: string;
16
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eliasrrosa/tutorhub-public-assets",
3
- "version": "0.0.15",
3
+ "version": "0.0.17",
4
4
  "description": "Assets, mainly interfaces, to be shared among different Tutorhub apps.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",