@eliasrrosa/tutorhub-public-assets 0.9.15 → 0.9.16
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.cjs +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -41,7 +41,6 @@ var __async = (__this, __arguments, generator) => {
|
|
|
41
41
|
var index_exports = {};
|
|
42
42
|
__export(index_exports, {
|
|
43
43
|
ClassCreationRecurrenceRuleSchema: () => ClassCreationRecurrenceRuleSchema,
|
|
44
|
-
ClassSchedulingFormSchema: () => ScheduleClassFormSchema,
|
|
45
44
|
ClassStatusSchema: () => ClassStatusSchema,
|
|
46
45
|
FreeDateTimeSlot: () => FreeDateTimeSlot,
|
|
47
46
|
ISO8601Date: () => ISO8601Date,
|
|
@@ -49,6 +48,7 @@ __export(index_exports, {
|
|
|
49
48
|
ISO8601DateValidator: () => ISO8601DateValidator,
|
|
50
49
|
ISO8601Time: () => ISO8601Time,
|
|
51
50
|
ISO8601TimeValidator: () => ISO8601TimeValidator,
|
|
51
|
+
ScheduleClassFormSchema: () => ScheduleClassFormSchema,
|
|
52
52
|
filterAsync: () => filterAsync,
|
|
53
53
|
tryCatch: () => tryCatch,
|
|
54
54
|
tryCatchAsync: () => tryCatchAsync
|
|
@@ -667,7 +667,6 @@ function filterAsync(arr, predicate) {
|
|
|
667
667
|
// Annotate the CommonJS export names for ESM import in node:
|
|
668
668
|
0 && (module.exports = {
|
|
669
669
|
ClassCreationRecurrenceRuleSchema,
|
|
670
|
-
ClassSchedulingFormSchema,
|
|
671
670
|
ClassStatusSchema,
|
|
672
671
|
FreeDateTimeSlot,
|
|
673
672
|
ISO8601Date,
|
|
@@ -675,6 +674,7 @@ function filterAsync(arr, predicate) {
|
|
|
675
674
|
ISO8601DateValidator,
|
|
676
675
|
ISO8601Time,
|
|
677
676
|
ISO8601TimeValidator,
|
|
677
|
+
ScheduleClassFormSchema,
|
|
678
678
|
filterAsync,
|
|
679
679
|
tryCatch,
|
|
680
680
|
tryCatchAsync
|
package/dist/index.d.ts
CHANGED
|
@@ -24,4 +24,4 @@ import { GetReceivedStudentToTeacherConnectionConfirmationResponseBody } from ".
|
|
|
24
24
|
import { PutStudentToTeacherConnectionConfirmationRequestUrlQueryParams } from "./infrastructure/restful/requests/queryParams/PutStudentToTeacherConnectionConfirmationExpressRequestUrlQueryParams.js";
|
|
25
25
|
import { GetReceivedStudentToTeacherConnectionConfirmationsQueryParams } from "./infrastructure/restful/requests/queryParams/GetReceivedStudentToTeacherConnectionConfirmationsQueryParams.js";
|
|
26
26
|
import { RescheduleClassForm } from "./infrastructure/restful/requests/forms/RescheduleClassForm.js";
|
|
27
|
-
export { filterAsync, tryCatchAsync, tryCatch, ClassStatus, IDate, IDateTimeSlot, IFreeDateTimeSlot, FreeDateTimeSlot, IDateValidator, ISO8601Date, IDateTime, ISO8601DateValidator, ISO8601Time, ISO8601TimeValidator, ITime, ITimeSlot, ITimeValidator, GetFixedAvailableTimeResponseBody, ISO8601DateTime, ScheduleClassForm
|
|
27
|
+
export { filterAsync, tryCatchAsync, tryCatch, ClassStatus, IDate, IDateTimeSlot, IFreeDateTimeSlot, FreeDateTimeSlot, IDateValidator, ISO8601Date, IDateTime, ISO8601DateValidator, ISO8601Time, ISO8601TimeValidator, ITime, ITimeSlot, ITimeValidator, GetFixedAvailableTimeResponseBody, ISO8601DateTime, ScheduleClassForm, ClassCreationRecurrenceRule, ScheduleClassFormSchema, ClassCreationRecurrenceRuleSchema, ClassStatusSchema, PublicTeacherDTO, GetPublicTeachersResponseBody, ConnectStudentToTeacherQueryParams, StudentToTeacherConnectionConfirmationDTO, GetReceivedStudentToTeacherConnectionConfirmationResponseBody, PutStudentToTeacherConnectionConfirmationRequestUrlQueryParams, GetReceivedStudentToTeacherConnectionConfirmationsQueryParams, RescheduleClassForm, };
|
package/dist/index.js
CHANGED
|
@@ -630,7 +630,6 @@ function filterAsync(arr, predicate) {
|
|
|
630
630
|
}
|
|
631
631
|
export {
|
|
632
632
|
ClassCreationRecurrenceRuleSchema,
|
|
633
|
-
ScheduleClassFormSchema as ClassSchedulingFormSchema,
|
|
634
633
|
ClassStatusSchema,
|
|
635
634
|
FreeDateTimeSlot,
|
|
636
635
|
ISO8601Date,
|
|
@@ -638,6 +637,7 @@ export {
|
|
|
638
637
|
ISO8601DateValidator,
|
|
639
638
|
ISO8601Time,
|
|
640
639
|
ISO8601TimeValidator,
|
|
640
|
+
ScheduleClassFormSchema,
|
|
641
641
|
filterAsync,
|
|
642
642
|
tryCatch,
|
|
643
643
|
tryCatchAsync
|
package/package.json
CHANGED