@nanas-home/hub-common 0.58.1306 → 0.59.1309
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/chunk/{HW5CRR4G.js → KEYIZIIS.js} +58 -5
- package/dist/node-utils/index.d.ts +2 -2
- package/dist/node-utils/index.js +2 -2
- package/dist/{textValidation-DJ7gkLTW.d.ts → textValidation-YmUdzikm.d.ts} +132 -4
- package/dist/web/index.d.ts +24 -3
- package/dist/web/index.js +284 -23
- package/dist/web/index.jsx +300 -81
- package/package.json +1 -1
|
@@ -66,7 +66,7 @@ var CdnAppImage = {
|
|
|
66
66
|
},
|
|
67
67
|
illustration: {
|
|
68
68
|
catInPark: cdnWebUrl("illustration/cat_in_park.svg"),
|
|
69
|
-
emptyBed: cdnWebUrl("illustration/empty_bed.
|
|
69
|
+
emptyBed: cdnWebUrl("illustration/empty_bed.png")
|
|
70
70
|
},
|
|
71
71
|
thirdParty: {
|
|
72
72
|
hubspot: cdnWebUrl("third-party/hubspot.svg"),
|
|
@@ -87,6 +87,17 @@ var CdnAppImage = {
|
|
|
87
87
|
map: {
|
|
88
88
|
pin: cdnWebUrl("map-pin.svg")
|
|
89
89
|
},
|
|
90
|
+
profile: {
|
|
91
|
+
pet: {
|
|
92
|
+
cat: cdnWebUrl("profile/unknownPetCat.png"),
|
|
93
|
+
dog: cdnWebUrl("profile/unknownPetDog.png"),
|
|
94
|
+
unknown: cdnWebUrl("profile/unknownPetDog.png")
|
|
95
|
+
},
|
|
96
|
+
user: {
|
|
97
|
+
house: cdnWebUrl("profile/fallbackProfile1.png"),
|
|
98
|
+
silhouette: cdnWebUrl("profile/fallbackProfile2.png")
|
|
99
|
+
}
|
|
100
|
+
},
|
|
90
101
|
portal: {
|
|
91
102
|
admin: cdnWebUrl("portal/admin.png"),
|
|
92
103
|
cdn: cdnWebUrl("portal/cdn.png"),
|
|
@@ -292,6 +303,18 @@ var apiRoute = {
|
|
|
292
303
|
description: "Endpoints for managing questions that users need to answer in order to complete their profiles"
|
|
293
304
|
}
|
|
294
305
|
},
|
|
306
|
+
sentEmail: {
|
|
307
|
+
prefix: "/admin/sent-email",
|
|
308
|
+
swagger: { name: "SentEmail", description: "Endpoints for managing SentEmails" }
|
|
309
|
+
},
|
|
310
|
+
tempLink: {
|
|
311
|
+
prefix: "/admin/temp-link",
|
|
312
|
+
swagger: { name: "TempLink", description: "Endpoints for managing TempLinks" }
|
|
313
|
+
},
|
|
314
|
+
tempRegistration: {
|
|
315
|
+
prefix: "/admin/temp-registration",
|
|
316
|
+
swagger: { name: "TempRegistration", description: "Endpoints for managing TempRegistrations" }
|
|
317
|
+
},
|
|
295
318
|
upload: {
|
|
296
319
|
prefix: "/admin/upload",
|
|
297
320
|
viewRaw: `/view-raw/${apiRouteParam.uploadUuid}`,
|
|
@@ -591,6 +614,15 @@ var PermissionType = /* @__PURE__ */ ((PermissionType2) => {
|
|
|
591
614
|
PermissionType2[PermissionType2["BugReportView"] = 210] = "BugReportView";
|
|
592
615
|
PermissionType2[PermissionType2["BugReportManage"] = 211] = "BugReportManage";
|
|
593
616
|
PermissionType2[PermissionType2["BugReportDelete"] = 212] = "BugReportDelete";
|
|
617
|
+
PermissionType2[PermissionType2["TempLinkView"] = 220] = "TempLinkView";
|
|
618
|
+
PermissionType2[PermissionType2["TempLinkManage"] = 221] = "TempLinkManage";
|
|
619
|
+
PermissionType2[PermissionType2["TempLinkDelete"] = 222] = "TempLinkDelete";
|
|
620
|
+
PermissionType2[PermissionType2["TempRegistrationView"] = 230] = "TempRegistrationView";
|
|
621
|
+
PermissionType2[PermissionType2["TempRegistrationManage"] = 231] = "TempRegistrationManage";
|
|
622
|
+
PermissionType2[PermissionType2["TempRegistrationDelete"] = 232] = "TempRegistrationDelete";
|
|
623
|
+
PermissionType2[PermissionType2["SentEmailView"] = 240] = "SentEmailView";
|
|
624
|
+
PermissionType2[PermissionType2["SentEmailManage"] = 241] = "SentEmailManage";
|
|
625
|
+
PermissionType2[PermissionType2["SentEmailDelete"] = 242] = "SentEmailDelete";
|
|
594
626
|
return PermissionType2;
|
|
595
627
|
})(PermissionType || {});
|
|
596
628
|
|
|
@@ -658,6 +690,20 @@ var SearchableColumnType = /* @__PURE__ */ ((SearchableColumnType2) => {
|
|
|
658
690
|
return SearchableColumnType2;
|
|
659
691
|
})(SearchableColumnType || {});
|
|
660
692
|
|
|
693
|
+
// src/contracts/generated/enum/sentEmailTypes.ts
|
|
694
|
+
var SentEmailLinkType = /* @__PURE__ */ ((SentEmailLinkType2) => {
|
|
695
|
+
SentEmailLinkType2[SentEmailLinkType2["Unknown"] = 0] = "Unknown";
|
|
696
|
+
SentEmailLinkType2[SentEmailLinkType2["User"] = 1] = "User";
|
|
697
|
+
SentEmailLinkType2[SentEmailLinkType2["Booking"] = 2] = "Booking";
|
|
698
|
+
return SentEmailLinkType2;
|
|
699
|
+
})(SentEmailLinkType || {});
|
|
700
|
+
var SentEmailSentStatus = /* @__PURE__ */ ((SentEmailSentStatus2) => {
|
|
701
|
+
SentEmailSentStatus2[SentEmailSentStatus2["Unknown"] = 0] = "Unknown";
|
|
702
|
+
SentEmailSentStatus2[SentEmailSentStatus2["Success"] = 1] = "Success";
|
|
703
|
+
SentEmailSentStatus2[SentEmailSentStatus2["Failed"] = 2] = "Failed";
|
|
704
|
+
return SentEmailSentStatus2;
|
|
705
|
+
})(SentEmailSentStatus || {});
|
|
706
|
+
|
|
661
707
|
// src/contracts/generated/enum/tempLinkType.ts
|
|
662
708
|
var TempLinkType = /* @__PURE__ */ ((TempLinkType2) => {
|
|
663
709
|
TempLinkType2[TempLinkType2["Unknown"] = 0] = "Unknown";
|
|
@@ -906,6 +952,13 @@ var QuestionRestriction = {
|
|
|
906
952
|
notes: { minLength: 0, maxLength: 1e3 }
|
|
907
953
|
};
|
|
908
954
|
|
|
955
|
+
// src/contracts/generated/restrictions/sentEmailRestriction.ts
|
|
956
|
+
var SentEmailRestriction = {
|
|
957
|
+
templateUsed: { minLength: 3, maxLength: 80 },
|
|
958
|
+
variables: { minLength: 3, maxLength: 2e3 },
|
|
959
|
+
statusMeta: { minLength: 3, maxLength: 1e3 }
|
|
960
|
+
};
|
|
961
|
+
|
|
909
962
|
// src/contracts/generated/restrictions/stripeRestriction.ts
|
|
910
963
|
var StripeRestriction = {
|
|
911
964
|
common: {
|
|
@@ -946,14 +999,14 @@ var UserRestriction = {
|
|
|
946
999
|
// src/contracts/generated/searchColumns.ts
|
|
947
1000
|
var searchColumns = {
|
|
948
1001
|
membership: [{ "property": "monthlyFee", "type": 2 }, { "property": "perNightStay", "type": 2 }, { "property": "additionalPetPerNightStay", "type": 2 }, { "property": "transportFee", "type": 2 }, { "property": "perKm", "type": 2 }, { "property": "matchFee", "type": 2 }, { "property": "freeCancellationWithinDays", "type": 2 }, { "property": "bookingAdvanceDays", "type": 2 }, { "property": "bookingCalenderMonthsOpenInAdvance", "type": 2 }, { "property": "seasonalDiscounts", "type": 2 }],
|
|
949
|
-
address: [{ "property": "name", "type": 2 }, { "property": "street", "type": 2 }, { "property": "city", "type": 2 }, { "property": "postalCode", "type": 2 }],
|
|
950
|
-
pet: [{ "property": "type", "type": 0 }, { "property": "sex", "type": 2 }, { "property": "name", "type": 2 }, { "property": "breed", "type": 2 }, { "property": "status", "type": 0 }, { "property": "neutered", "type": 4 }, { "property": "notes", "type": 2 }],
|
|
1002
|
+
address: [{ "property": "name", "type": 2 }, { "property": "street", "type": 2 }, { "property": "city", "type": 2 }, { "property": "postalCode", "type": 2 }, { "property": "dateCreated", "type": 5 }],
|
|
1003
|
+
pet: [{ "property": "type", "type": 0 }, { "property": "sex", "type": 2 }, { "property": "name", "type": 2 }, { "property": "breed", "type": 2 }, { "property": "status", "type": 0 }, { "property": "neutered", "type": 4 }, { "property": "dateOfBirth", "type": 5 }, { "property": "notes", "type": 2 }],
|
|
951
1004
|
invoice: [{ "property": "userUuid", "type": 2 }, { "property": "bookingUuid", "type": 2 }, { "property": "bookingAddonUuid", "type": 2 }, { "property": "status", "type": 2 }, { "property": "stripeInvoiceId", "type": 2 }, { "property": "dueDate", "type": 5 }, { "property": "notes", "type": 2 }],
|
|
952
1005
|
userMembership: [{ "property": "status", "type": 1 }, { "property": "billingCycle", "type": 0 }, { "property": "stripeSubscriptionId", "type": 2 }, { "property": "membershipUuid", "type": 1 }],
|
|
953
1006
|
user: [{ "property": "types", "type": 1 }, { "property": "firstName", "type": 2 }, { "property": "lastName", "type": 2 }, { "property": "email", "type": 2 }, { "property": "hubspotId", "type": 2 }, { "property": "flags", "type": 1 }, { "property": "dateCreated", "type": 5 }],
|
|
954
1007
|
upload: [{ "property": "linkUuid", "type": 2 }, { "property": "linkType", "type": 2 }, { "property": "type", "type": 2 }, { "property": "fileName", "type": 2 }, { "property": "blobType", "type": 2 }, { "property": "sizeInKb", "type": 2 }, { "property": "dateCreated", "type": 5 }],
|
|
955
1008
|
booking: [{ "property": "code", "type": 3 }, { "property": "startDate", "type": 5 }, { "property": "endDate", "type": 5 }, { "property": "status", "type": 1 }, { "property": "dateCreated", "type": 5 }, { "property": "notes", "type": 2 }],
|
|
956
|
-
bugReport: [{ "property": "status", "type": 0 }, { "property": "comment", "type": 2 }, { "property": "metadata", "type": 2 }, { "property": "logs", "type": 2 }],
|
|
1009
|
+
bugReport: [{ "property": "status", "type": 0 }, { "property": "comment", "type": 2 }, { "property": "metadata", "type": 2 }, { "property": "logs", "type": 2 }, { "property": "dateCreated", "type": 5 }],
|
|
957
1010
|
question: [{ "property": "forTypes", "type": 1 }, { "property": "transKey", "type": 2 }, { "property": "fallback", "type": 2 }, { "property": "category", "type": 2 }, { "property": "type", "type": 0 }, { "property": "sortOrder", "type": 3 }, { "property": "visible", "type": 4 }, { "property": "notes", "type": 2 }]
|
|
958
1011
|
};
|
|
959
1012
|
|
|
@@ -2152,4 +2205,4 @@ var shouldBeYoutubeUrl = (value) => {
|
|
|
2152
2205
|
};
|
|
2153
2206
|
};
|
|
2154
2207
|
|
|
2155
|
-
export { APP_TYPE_TOKEN, ActivityRestriction, ActivityType, AddressLinkType, AddressRestriction, AnswerLinkType, AnswerRestriction, AppType, AuthRegisterRestriction, BOOKING_OVERVIEW_STATUSES, BOT_PATH_TOKEN, BookingAddonRestriction, BookingAddonType, BookingRestriction, BookingStatusType, BugReportRestriction, BugReportStatusType, CdnAppImage, CommentLinkType, CommentRestriction, CommonConfigService, DependencyInjectionContainer, DrivingRouteRestriction, InvoiceRestriction, InvoiceStatusType, LogService, MembershipBillingCycleType, MembershipRestriction, MembershipStatus, MembershipType, MouseButton, NANAS_PALLETTE, NetworkState, OrderDirectionType, PermissionRestriction, PermissionType, PetRestriction, PetSexType, PetStatusType, PetType, QuestionForType, QuestionRestriction, QuestionType, SITE_CONFIG_TOKEN, SearchableColumnType, StripeRestriction, SupportedLanguageArray, TempLinkType, TempRegistrationStatus, UnavailabilityRestriction, UploadLinkType, UploadRestriction, UploadType, UserAccountFlagType, UserRestriction, UserType, UuidRestriction, activityShortCode, addDays, addMinutes, addMonths, addSeconds, addSpacesForEnum, addToParallelTasks, allowedNonNumericalValuesInContactNumber, anyObject, apiRoute, apiRouteParam, arrayContains, arrayOfNLength, capitalizeFirstLetter, changeMonth, colourPalette, commonEmailLinks, computeBookingNightCount, computeBookingStatusCounts, contactNumberCharValid, contactNumberValid, convertToDate, convertToFullDateSelection, createToken, cyrb53, dateDiffInDays, debounceLeading, defaultSiteColour, emailValid, fakePromise, filterBookingsByOverviewStatus, formatBookingCalendarLabel, formatBookingNightsTooltip, formatDate, formatFileSize, formatForBookingDate, formatForDateDropdown, formatForDateLocal, formatForDateLocalDetailed, formatForDateOfBirth, formatForDateWithTime, formatPetTypesLabel, getActiveUserMembership, getAgeInYears, getAllPetQuestionForType, getAppType, getArrFromEnum, getBookingStatusLabelForAdmin, getBotPath, getCalendarDropdownDisplayValue, getCalendarDropdownForDateOfBirthDisplayValue, getCommonConfig, getDayClassObject, getDayElements, getDayHeadingElements, getImageParams, getLog, getMembershipTypeLabel, getMimeTypeFromExtension, getPayloadFromJwt, getPerformanceTimer, getPetAvatarUrl, getPetTypeLabel, getQuestionGroups, getSiteColour, getSiteConfig, getUserAvatarUrl, getUsersName, getWeekNumber, hasRequiredPermissions, hubspotQuestionsExport, isBefore, isDateAfterStart, isDateBeforeEnd, isDateDisabledByDisabledDays, isDateEnabledByEnabledDays, isNumber, isSameDay, isWebApp, lowercaseFirstLetter, makeArrayOrDefault, maxDate, maxItems, maxLength, maxValue, mimeTypeLookup, minDate, minItems, minLength, minUrlLength, minValue, monthTranslationKeyOrder, multiValidation, nameof, nanasFonts, noValidation, notNull, onlyUnique, parseBookingOverviewStatuses, passwordValid, portalGlyphLength, postCodeValid, promiseFromValue, randomIntFromRange, randomItemFromArray, rootContainer, rootDependencyInjectionSetup, searchColumns, selectedItemsExist, selectedOptionIsInEnum, separateValidation, serializeBookingOverviewStatuses, setContainerToken, setContainerTokenLazy, setSiteConfig, shouldBeUrl, shouldBeYoutubeUrl, showSecondCalendar, socialLinks, timeout, tryParseNumber, uploadsThatNeedEncryption, urlAddQueryParam, urlRef, userMustChangePassword, uuidv4, validUuidChars, validateForEach, webAppTypes, weekdayTranslationKeyOrder };
|
|
2208
|
+
export { APP_TYPE_TOKEN, ActivityRestriction, ActivityType, AddressLinkType, AddressRestriction, AnswerLinkType, AnswerRestriction, AppType, AuthRegisterRestriction, BOOKING_OVERVIEW_STATUSES, BOT_PATH_TOKEN, BookingAddonRestriction, BookingAddonType, BookingRestriction, BookingStatusType, BugReportRestriction, BugReportStatusType, CdnAppImage, CommentLinkType, CommentRestriction, CommonConfigService, DependencyInjectionContainer, DrivingRouteRestriction, InvoiceRestriction, InvoiceStatusType, LogService, MembershipBillingCycleType, MembershipRestriction, MembershipStatus, MembershipType, MouseButton, NANAS_PALLETTE, NetworkState, OrderDirectionType, PermissionRestriction, PermissionType, PetRestriction, PetSexType, PetStatusType, PetType, QuestionForType, QuestionRestriction, QuestionType, SITE_CONFIG_TOKEN, SearchableColumnType, SentEmailLinkType, SentEmailRestriction, SentEmailSentStatus, StripeRestriction, SupportedLanguageArray, TempLinkType, TempRegistrationStatus, UnavailabilityRestriction, UploadLinkType, UploadRestriction, UploadType, UserAccountFlagType, UserRestriction, UserType, UuidRestriction, activityShortCode, addDays, addMinutes, addMonths, addSeconds, addSpacesForEnum, addToParallelTasks, allowedNonNumericalValuesInContactNumber, anyObject, apiRoute, apiRouteParam, arrayContains, arrayOfNLength, capitalizeFirstLetter, changeMonth, colourPalette, commonEmailLinks, computeBookingNightCount, computeBookingStatusCounts, contactNumberCharValid, contactNumberValid, convertToDate, convertToFullDateSelection, createToken, cyrb53, dateDiffInDays, debounceLeading, defaultSiteColour, emailValid, fakePromise, filterBookingsByOverviewStatus, formatBookingCalendarLabel, formatBookingNightsTooltip, formatDate, formatFileSize, formatForBookingDate, formatForDateDropdown, formatForDateLocal, formatForDateLocalDetailed, formatForDateOfBirth, formatForDateWithTime, formatPetTypesLabel, getActiveUserMembership, getAgeInYears, getAllPetQuestionForType, getAppType, getArrFromEnum, getBookingStatusLabelForAdmin, getBotPath, getCalendarDropdownDisplayValue, getCalendarDropdownForDateOfBirthDisplayValue, getCommonConfig, getDayClassObject, getDayElements, getDayHeadingElements, getImageParams, getLog, getMembershipTypeLabel, getMimeTypeFromExtension, getPayloadFromJwt, getPerformanceTimer, getPetAvatarUrl, getPetTypeLabel, getQuestionGroups, getSiteColour, getSiteConfig, getUserAvatarUrl, getUsersName, getWeekNumber, hasRequiredPermissions, hubspotQuestionsExport, isBefore, isDateAfterStart, isDateBeforeEnd, isDateDisabledByDisabledDays, isDateEnabledByEnabledDays, isNumber, isSameDay, isWebApp, lowercaseFirstLetter, makeArrayOrDefault, maxDate, maxItems, maxLength, maxValue, mimeTypeLookup, minDate, minItems, minLength, minUrlLength, minValue, monthTranslationKeyOrder, multiValidation, nameof, nanasFonts, noValidation, notNull, onlyUnique, parseBookingOverviewStatuses, passwordValid, portalGlyphLength, postCodeValid, promiseFromValue, randomIntFromRange, randomItemFromArray, rootContainer, rootDependencyInjectionSetup, searchColumns, selectedItemsExist, selectedOptionIsInEnum, separateValidation, serializeBookingOverviewStatuses, setContainerToken, setContainerTokenLazy, setSiteConfig, shouldBeUrl, shouldBeYoutubeUrl, showSecondCalendar, socialLinks, timeout, tryParseNumber, uploadsThatNeedEncryption, urlAddQueryParam, urlRef, userMustChangePassword, uuidv4, validUuidChars, validateForEach, webAppTypes, weekdayTranslationKeyOrder };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { I as ILogger, R as ResultWithValue, a as Result, L as LogService, C as CommonConfigService, b as IDependencyInjectionSetupProps } from '../textValidation-
|
|
2
|
-
export {
|
|
1
|
+
import { I as ILogger, R as ResultWithValue, a as Result, L as LogService, C as CommonConfigService, b as IDependencyInjectionSetupProps } from '../textValidation-YmUdzikm.js';
|
|
2
|
+
export { dB as APP_TYPE_TOKEN, al as ActivityDto, y as ActivityLocationType, bQ as ActivityRestriction, G as ActivityType, am as AddressCreateDto, an as AddressDto, J as AddressLinkType, ao as AddressLookupDto, bR as AddressRestriction, ap as AddressUpdateDto, aq as AnswerCreateDto, ar as AnswerDto, O as AnswerLinkType, bS as AnswerRestriction, A as AppType, as as AuthChangePasswordDto, at as AuthLoginDto, au as AuthPatDto, av as AuthRegisterAddressDto, aw as AuthRegisterDto, ax as AuthRegisterGetQuestionsDto, ay as AuthRegisterGetTempUploadUrlDto, az as AuthRegisterGetTempUploadUrlResponseDto, aA as AuthRegisterPetDto, aB as AuthRegisterQuestionDto, bT as AuthRegisterRestriction, aC as AuthRegisterStoreProgressDto, aD as AuthRegisterUserDto, aE as AuthRequestResetPasswordDto, aF as AuthResetPasswordDto, aG as AuthSuccessDto, cs as BOOKING_OVERVIEW_STATUSES, dz as BOT_PATH_TOKEN, aH as BookingAddonDto, bV as BookingAddonRestriction, P as BookingAddonType, cm as BookingCalendarOverviewItem, aI as BookingCalendarOverviewItemDto, aJ as BookingCreateDto, aK as BookingDto, aL as BookingHostAssignDto, aM as BookingHostCreateDto, aN as BookingHostDto, aO as BookingHostUpdateDto, bU as BookingRestriction, aP as BookingRestrictionsDto, aQ as BookingRestrictionsEnabledDaysDto, aR as BookingRestrictionsPremiumEnabledDaysDto, ct as BookingStatusCounts, Q as BookingStatusType, aS as BookingUpdateDto, aT as BookingWithRelationshipsDto, aU as BugReportCreateDto, aV as BugReportDto, bW as BugReportRestriction, U as BugReportStatusType, aW as BugReportUpdateDto, j as CachedValue, d as CdnAppImage, x as ClickEvent, aX as ClientAnswerSaveDto, aY as CommentCreateDto, aZ as CommentDto, V as CommentLinkType, bX as CommentRestriction, a_ as CommentUpdateDto, dx as DependencyInjectionContainer, o as DependencyInjectionFactory, l as DependencyInjectionIdentifier, D as DependencyInjectionToken, bZ as DrivingRouteRestriction, E as EnvKey, H as HtmlElementEvent, t as HtmlFilesEvent, u as HtmlImageReadEvent, r as HtmlKeyEvent, c9 as ICaptchaResponse, q as IDependencyInjectionSetupWebProps, c_ as IImageParams, cb as ILogMessage, cc as IMediaUpload, dw as ISite, dt as ISiteColour, a$ as InvoiceCreateDto, b0 as InvoiceDto, b_ as InvoiceRestriction, X as InvoiceStatusType, b1 as InvoiceUpdateDto, b2 as InvoiceWithStripeInfoDto, bP as JwtPayloadDto, K as KeyEvent, ca as LogMethod, Y as LogType, Z as MembershipBillingCycleType, b3 as MembershipCreateDto, b4 as MembershipDto, b$ as MembershipRestriction, _ as MembershipStatus, $ as MembershipType, b5 as MembershipUpdateDto, M as MonthTranslationKey, g as MouseButton, N as NANAS_PALLETTE, a0 as NetworkState, ce as NominatimAddressResponse, cd as NominatimResponse, dj as ObjectWithPropsOfValue, a1 as OrderDirectionType, b6 as PaginationRequestDto, b7 as PaginationResponseDto, b8 as PaymentMethodDto, c0 as PermissionRestriction, a2 as PermissionType, b9 as PetCreateDto, ba as PetDto, c1 as PetRestriction, a3 as PetSexType, a4 as PetStatusType, a5 as PetType, bb as PetUpdateDto, dk as Prettify, bc as ProfileDto, bd as ProfileQuestionAndAnswersItemDto, be as ProfileQuestionRequestDto, bf as ProfileUpdateDto, bg as QuestionCreateDto, bh as QuestionDto, a7 as QuestionForType, c2 as QuestionRestriction, a6 as QuestionType, bi as QuestionUpdateDto, cC as RenderCellType, dD as SITE_CONFIG_TOKEN, bj as SearchObjDatePropRequestDto, bk as SearchObjRequestDto, bl as SearchObjTextPropRequestDto, aa as SearchableColumnInfo, a9 as SearchableColumnType, bm as SentEmailCreateDto, bn as SentEmailDto, ab as SentEmailLinkType, c3 as SentEmailRestriction, ac as SentEmailSentStatus, bo as SetupIntentCreateDto, bp as SetupIntentDto, c4 as StripeRestriction, S as SupportedLanguage, e as SupportedLanguageArray, bq as TempLinkCreateDto, br as TempLinkDto, ad as TempLinkType, bs as TempRegistrationDto, bt as TempRegistrationForClientDto, ae as TempRegistrationStatus, T as ThemeType, c5 as UnavailabilityRestriction, bu as UploadCreateDto, bv as UploadDto, bw as UploadImageWithLinkDto, af as UploadLinkType, c6 as UploadRestriction, ag as UploadType, bx as UploadUpdateDto, ai as UserAccountFlagType, by as UserCreateDto, bz as UserDto, bA as UserMembershipChangeResponseDto, bB as UserMembershipCreateDto, bC as UserMembershipDto, bD as UserMembershipSignUpDto, bE as UserMembershipSignUpResponseDto, bF as UserMembershipStatsDto, bG as UserMembershipUpdateDto, bH as UserMembershipWithStripeInfoDto, bI as UserMembershipWithUserNamesDto, ds as UserMigrationReport, dr as UserMigrationReportCounts, bJ as UserMigrationReportCountsDto, bK as UserMigrationReportDto, dq as UserMigrationReportUser, bL as UserMigrationReportUserDto, bM as UserPermissionDto, c7 as UserRestriction, aj as UserType, bN as UserUpdateDto, bY as UuidRestriction, cf as ValidationResult, bO as VersionDto, W as WeekdayTranslationKey, z as activityShortCode, cO as addDays, cN as addMinutes, cP as addMonths, cM as addSeconds, df as addSpacesForEnum, cl as addToParallelTasks, dV as allowedNonNumericalValuesInContactNumber, dh as anyObject, F as apiRoute, B as apiRouteParam, cj as arrayContains, ci as arrayOfNLength, dd as capitalizeFirstLetter, du as colourPalette, f as commonEmailLinks, cw as computeBookingNightCount, cu as computeBookingStatusCounts, dW as contactNumberCharValid, dX as contactNumberValid, k as createToken, cZ as cyrb53, cS as dateDiffInDays, cW as debounceLeading, dv as defaultSiteColour, d_ as emailValid, di as fakePromise, cv as filterBookingsByOverviewStatus, cr as formatBookingCalendarLabel, cx as formatBookingNightsTooltip, cF as formatDate, dg as formatFileSize, cL as formatForBookingDate, cH as formatForDateDropdown, cG as formatForDateLocal, cK as formatForDateLocalDetailed, cI as formatForDateOfBirth, cJ as formatForDateWithTime, cq as formatPetTypesLabel, dp as getActiveUserMembership, cT as getAgeInYears, a8 as getAllPetQuestionForType, dC as getAppType, cX as getArrFromEnum, cn as getBookingStatusLabelForAdmin, dA as getBotPath, dH as getCommonConfig, cA as getDayClassObject, cD as getDayElements, cB as getDayHeadingElements, c$ as getImageParams, dI as getLog, co as getMembershipTypeLabel, d2 as getMimeTypeFromExtension, d0 as getPayloadFromJwt, d4 as getPerformanceTimer, d7 as getPetAvatarUrl, cp as getPetTypeLabel, da as getQuestionGroups, dG as getSiteColour, dF as getSiteConfig, d6 as getUserAvatarUrl, cE as getUsersName, cU as getWeekNumber, d5 as hasRequiredPermissions, ak as hubspotQuestionsExport, cQ as isBefore, d$ as isNumber, cR as isSameDay, i as isWebApp, de as lowercaseFirstLetter, cg as makeArrayOrDefault, dZ as maxDate, dN as maxItems, e5 as maxLength, e1 as maxValue, d1 as mimeTypeLookup, dY as minDate, dM as minItems, e4 as minLength, h as minUrlLength, e0 as minValue, m as monthTranslationKeyOrder, dS as multiValidation, d9 as nameof, n as nanasFonts, dQ as noValidation, dR as notNull, ch as onlyUnique, cz as parseBookingOverviewStatuses, e2 as passwordValid, p as portalGlyphLength, e3 as postCodeValid, d8 as promiseFromValue, db as randomIntFromRange, dc as randomItemFromArray, dy as rootContainer, dJ as rootDependencyInjectionSetup, c8 as searchColumns, dO as selectedItemsExist, dP as selectedOptionIsInEnum, dT as separateValidation, cy as serializeBookingOverviewStatuses, dK as setContainerToken, dL as setContainerTokenLazy, dE as setSiteConfig, e6 as shouldBeUrl, e7 as shouldBeYoutubeUrl, cV as showSecondCalendar, s as socialLinks, ck as timeout, d3 as tryParseNumber, ah as uploadsThatNeedEncryption, dm as urlAddQueryParam, dl as urlRef, dn as userMustChangePassword, cY as uuidv4, v as validUuidChars, dU as validateForEach, w as webAppTypes, c as weekdayTranslationKeyOrder } from '../textValidation-YmUdzikm.js';
|
|
3
3
|
import 'solid-js';
|
|
4
4
|
|
|
5
5
|
/**
|
package/dist/node-utils/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { rootContainer, onlyUnique, getBotPath, getLog, getCommonConfig, formatForDateDropdown, NANAS_PALLETTE, getSiteConfig, getAppType, isWebApp, CdnAppImage, rootDependencyInjectionSetup, setContainerToken } from '../chunk/
|
|
2
|
-
export { APP_TYPE_TOKEN, ActivityRestriction, ActivityType, AddressLinkType, AddressRestriction, AnswerLinkType, AnswerRestriction, AppType, AuthRegisterRestriction, BOOKING_OVERVIEW_STATUSES, BOT_PATH_TOKEN, BookingAddonRestriction, BookingAddonType, BookingRestriction, BookingStatusType, BugReportRestriction, BugReportStatusType, CdnAppImage, CommentLinkType, CommentRestriction, CommonConfigService, DependencyInjectionContainer, DrivingRouteRestriction, InvoiceRestriction, InvoiceStatusType, LogService, MembershipBillingCycleType, MembershipRestriction, MembershipStatus, MembershipType, MouseButton, NANAS_PALLETTE, NetworkState, OrderDirectionType, PermissionRestriction, PermissionType, PetRestriction, PetSexType, PetStatusType, PetType, QuestionForType, QuestionRestriction, QuestionType, SITE_CONFIG_TOKEN, SearchableColumnType, StripeRestriction, SupportedLanguageArray, TempLinkType, TempRegistrationStatus, UnavailabilityRestriction, UploadLinkType, UploadRestriction, UploadType, UserAccountFlagType, UserRestriction, UserType, UuidRestriction, activityShortCode, addDays, addMinutes, addMonths, addSeconds, addSpacesForEnum, addToParallelTasks, allowedNonNumericalValuesInContactNumber, anyObject, apiRoute, apiRouteParam, arrayContains, arrayOfNLength, capitalizeFirstLetter, colourPalette, commonEmailLinks, computeBookingNightCount, computeBookingStatusCounts, contactNumberCharValid, contactNumberValid, createToken, cyrb53, dateDiffInDays, debounceLeading, defaultSiteColour, emailValid, fakePromise, filterBookingsByOverviewStatus, formatBookingCalendarLabel, formatBookingNightsTooltip, formatDate, formatFileSize, formatForBookingDate, formatForDateDropdown, formatForDateLocal, formatForDateLocalDetailed, formatForDateOfBirth, formatForDateWithTime, formatPetTypesLabel, getActiveUserMembership, getAgeInYears, getAllPetQuestionForType, getAppType, getArrFromEnum, getBookingStatusLabelForAdmin, getBotPath, getCommonConfig, getDayClassObject, getDayElements, getDayHeadingElements, getImageParams, getLog, getMembershipTypeLabel, getMimeTypeFromExtension, getPayloadFromJwt, getPerformanceTimer, getPetAvatarUrl, getPetTypeLabel, getQuestionGroups, getSiteColour, getSiteConfig, getUserAvatarUrl, getUsersName, getWeekNumber, hasRequiredPermissions, hubspotQuestionsExport, isBefore, isNumber, isSameDay, isWebApp, lowercaseFirstLetter, makeArrayOrDefault, maxDate, maxItems, maxLength, maxValue, mimeTypeLookup, minDate, minItems, minLength, minUrlLength, minValue, monthTranslationKeyOrder, multiValidation, nameof, nanasFonts, noValidation, notNull, onlyUnique, parseBookingOverviewStatuses, passwordValid, portalGlyphLength, postCodeValid, promiseFromValue, randomIntFromRange, randomItemFromArray, rootContainer, rootDependencyInjectionSetup, searchColumns, selectedItemsExist, selectedOptionIsInEnum, separateValidation, serializeBookingOverviewStatuses, setContainerToken, setContainerTokenLazy, setSiteConfig, shouldBeUrl, shouldBeYoutubeUrl, showSecondCalendar, socialLinks, timeout, tryParseNumber, uploadsThatNeedEncryption, urlAddQueryParam, urlRef, userMustChangePassword, uuidv4, validUuidChars, validateForEach, webAppTypes, weekdayTranslationKeyOrder } from '../chunk/
|
|
1
|
+
import { rootContainer, onlyUnique, getBotPath, getLog, getCommonConfig, formatForDateDropdown, NANAS_PALLETTE, getSiteConfig, getAppType, isWebApp, CdnAppImage, rootDependencyInjectionSetup, setContainerToken } from '../chunk/KEYIZIIS.js';
|
|
2
|
+
export { APP_TYPE_TOKEN, ActivityRestriction, ActivityType, AddressLinkType, AddressRestriction, AnswerLinkType, AnswerRestriction, AppType, AuthRegisterRestriction, BOOKING_OVERVIEW_STATUSES, BOT_PATH_TOKEN, BookingAddonRestriction, BookingAddonType, BookingRestriction, BookingStatusType, BugReportRestriction, BugReportStatusType, CdnAppImage, CommentLinkType, CommentRestriction, CommonConfigService, DependencyInjectionContainer, DrivingRouteRestriction, InvoiceRestriction, InvoiceStatusType, LogService, MembershipBillingCycleType, MembershipRestriction, MembershipStatus, MembershipType, MouseButton, NANAS_PALLETTE, NetworkState, OrderDirectionType, PermissionRestriction, PermissionType, PetRestriction, PetSexType, PetStatusType, PetType, QuestionForType, QuestionRestriction, QuestionType, SITE_CONFIG_TOKEN, SearchableColumnType, SentEmailLinkType, SentEmailRestriction, SentEmailSentStatus, StripeRestriction, SupportedLanguageArray, TempLinkType, TempRegistrationStatus, UnavailabilityRestriction, UploadLinkType, UploadRestriction, UploadType, UserAccountFlagType, UserRestriction, UserType, UuidRestriction, activityShortCode, addDays, addMinutes, addMonths, addSeconds, addSpacesForEnum, addToParallelTasks, allowedNonNumericalValuesInContactNumber, anyObject, apiRoute, apiRouteParam, arrayContains, arrayOfNLength, capitalizeFirstLetter, colourPalette, commonEmailLinks, computeBookingNightCount, computeBookingStatusCounts, contactNumberCharValid, contactNumberValid, createToken, cyrb53, dateDiffInDays, debounceLeading, defaultSiteColour, emailValid, fakePromise, filterBookingsByOverviewStatus, formatBookingCalendarLabel, formatBookingNightsTooltip, formatDate, formatFileSize, formatForBookingDate, formatForDateDropdown, formatForDateLocal, formatForDateLocalDetailed, formatForDateOfBirth, formatForDateWithTime, formatPetTypesLabel, getActiveUserMembership, getAgeInYears, getAllPetQuestionForType, getAppType, getArrFromEnum, getBookingStatusLabelForAdmin, getBotPath, getCommonConfig, getDayClassObject, getDayElements, getDayHeadingElements, getImageParams, getLog, getMembershipTypeLabel, getMimeTypeFromExtension, getPayloadFromJwt, getPerformanceTimer, getPetAvatarUrl, getPetTypeLabel, getQuestionGroups, getSiteColour, getSiteConfig, getUserAvatarUrl, getUsersName, getWeekNumber, hasRequiredPermissions, hubspotQuestionsExport, isBefore, isNumber, isSameDay, isWebApp, lowercaseFirstLetter, makeArrayOrDefault, maxDate, maxItems, maxLength, maxValue, mimeTypeLookup, minDate, minItems, minLength, minUrlLength, minValue, monthTranslationKeyOrder, multiValidation, nameof, nanasFonts, noValidation, notNull, onlyUnique, parseBookingOverviewStatuses, passwordValid, portalGlyphLength, postCodeValid, promiseFromValue, randomIntFromRange, randomItemFromArray, rootContainer, rootDependencyInjectionSetup, searchColumns, selectedItemsExist, selectedOptionIsInEnum, separateValidation, serializeBookingOverviewStatuses, setContainerToken, setContainerTokenLazy, setSiteConfig, shouldBeUrl, shouldBeYoutubeUrl, showSecondCalendar, socialLinks, timeout, tryParseNumber, uploadsThatNeedEncryption, urlAddQueryParam, urlRef, userMustChangePassword, uuidv4, validUuidChars, validateForEach, webAppTypes, weekdayTranslationKeyOrder } from '../chunk/KEYIZIIS.js';
|
|
3
3
|
import fs6, { stat } from 'fs/promises';
|
|
4
4
|
import path12 from 'path';
|
|
5
5
|
import fs2 from 'fs';
|
|
@@ -57,6 +57,17 @@ declare const CdnAppImage: {
|
|
|
57
57
|
readonly map: {
|
|
58
58
|
readonly pin: string;
|
|
59
59
|
};
|
|
60
|
+
readonly profile: {
|
|
61
|
+
readonly pet: {
|
|
62
|
+
readonly cat: string;
|
|
63
|
+
readonly dog: string;
|
|
64
|
+
readonly unknown: string;
|
|
65
|
+
};
|
|
66
|
+
readonly user: {
|
|
67
|
+
readonly house: string;
|
|
68
|
+
readonly silhouette: string;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
60
71
|
readonly portal: {
|
|
61
72
|
readonly admin: string;
|
|
62
73
|
readonly cdn: string;
|
|
@@ -366,6 +377,27 @@ declare const apiRoute: {
|
|
|
366
377
|
readonly description: "Endpoints for managing questions that users need to answer in order to complete their profiles";
|
|
367
378
|
};
|
|
368
379
|
};
|
|
380
|
+
readonly sentEmail: {
|
|
381
|
+
readonly prefix: "/admin/sent-email";
|
|
382
|
+
readonly swagger: {
|
|
383
|
+
readonly name: "SentEmail";
|
|
384
|
+
readonly description: "Endpoints for managing SentEmails";
|
|
385
|
+
};
|
|
386
|
+
};
|
|
387
|
+
readonly tempLink: {
|
|
388
|
+
readonly prefix: "/admin/temp-link";
|
|
389
|
+
readonly swagger: {
|
|
390
|
+
readonly name: "TempLink";
|
|
391
|
+
readonly description: "Endpoints for managing TempLinks";
|
|
392
|
+
};
|
|
393
|
+
};
|
|
394
|
+
readonly tempRegistration: {
|
|
395
|
+
readonly prefix: "/admin/temp-registration";
|
|
396
|
+
readonly swagger: {
|
|
397
|
+
readonly name: "TempRegistration";
|
|
398
|
+
readonly description: "Endpoints for managing TempRegistrations";
|
|
399
|
+
};
|
|
400
|
+
};
|
|
369
401
|
readonly upload: {
|
|
370
402
|
readonly prefix: "/admin/upload";
|
|
371
403
|
readonly viewRaw: "/view-raw/:uploadUuid";
|
|
@@ -688,7 +720,16 @@ declare enum PermissionType {
|
|
|
688
720
|
InvoiceDelete = 202,
|
|
689
721
|
BugReportView = 210,
|
|
690
722
|
BugReportManage = 211,
|
|
691
|
-
BugReportDelete = 212
|
|
723
|
+
BugReportDelete = 212,
|
|
724
|
+
TempLinkView = 220,
|
|
725
|
+
TempLinkManage = 221,
|
|
726
|
+
TempLinkDelete = 222,
|
|
727
|
+
TempRegistrationView = 230,
|
|
728
|
+
TempRegistrationManage = 231,
|
|
729
|
+
TempRegistrationDelete = 232,
|
|
730
|
+
SentEmailView = 240,
|
|
731
|
+
SentEmailManage = 241,
|
|
732
|
+
SentEmailDelete = 242
|
|
692
733
|
}
|
|
693
734
|
|
|
694
735
|
declare enum PetSexType {
|
|
@@ -748,6 +789,17 @@ type SearchableColumnInfo = {
|
|
|
748
789
|
type: SearchableColumnType;
|
|
749
790
|
};
|
|
750
791
|
|
|
792
|
+
declare enum SentEmailLinkType {
|
|
793
|
+
Unknown = 0,
|
|
794
|
+
User = 1,
|
|
795
|
+
Booking = 2
|
|
796
|
+
}
|
|
797
|
+
declare enum SentEmailSentStatus {
|
|
798
|
+
Unknown = 0,
|
|
799
|
+
Success = 1,
|
|
800
|
+
Failed = 2
|
|
801
|
+
}
|
|
802
|
+
|
|
751
803
|
declare enum TempLinkType {
|
|
752
804
|
Unknown = 0,
|
|
753
805
|
PasswordReset = 1,
|
|
@@ -2098,6 +2150,49 @@ interface components {
|
|
|
2098
2150
|
columnName: string;
|
|
2099
2151
|
containsText: (string | null) | null;
|
|
2100
2152
|
};
|
|
2153
|
+
/**
|
|
2154
|
+
* SentEmailCreateDto
|
|
2155
|
+
* @description SentEmail create details
|
|
2156
|
+
*/
|
|
2157
|
+
SentEmailCreateDto: {
|
|
2158
|
+
/**
|
|
2159
|
+
* Format: uuid
|
|
2160
|
+
* @description A Universally Unique Identifier is a 128-bit label used to uniquely identify objects
|
|
2161
|
+
*/
|
|
2162
|
+
linkUuid: string;
|
|
2163
|
+
/** SentEmailLinkType */
|
|
2164
|
+
linkType: 0 | 1 | 2;
|
|
2165
|
+
templateUsed: string;
|
|
2166
|
+
variables: string;
|
|
2167
|
+
/** SentEmailSentStatus */
|
|
2168
|
+
status: 0 | 1 | 2;
|
|
2169
|
+
statusMeta: string;
|
|
2170
|
+
};
|
|
2171
|
+
/**
|
|
2172
|
+
* SentEmailDto
|
|
2173
|
+
* @description SentEmail details
|
|
2174
|
+
*/
|
|
2175
|
+
SentEmailDto: {
|
|
2176
|
+
/**
|
|
2177
|
+
* Format: uuid
|
|
2178
|
+
* @description A Universally Unique Identifier is a 128-bit label used to uniquely identify objects
|
|
2179
|
+
*/
|
|
2180
|
+
uuid: string;
|
|
2181
|
+
/**
|
|
2182
|
+
* Format: uuid
|
|
2183
|
+
* @description A Universally Unique Identifier is a 128-bit label used to uniquely identify objects
|
|
2184
|
+
*/
|
|
2185
|
+
linkUuid: string;
|
|
2186
|
+
/** SentEmailLinkType */
|
|
2187
|
+
linkType: 0 | 1 | 2;
|
|
2188
|
+
templateUsed: string;
|
|
2189
|
+
variables: string;
|
|
2190
|
+
/** SentEmailSentStatus */
|
|
2191
|
+
status: 0 | 1 | 2;
|
|
2192
|
+
statusMeta: string;
|
|
2193
|
+
dateCreated: Record<string, never> | string | number;
|
|
2194
|
+
dateModified: Record<string, never> | string | number;
|
|
2195
|
+
};
|
|
2101
2196
|
/**
|
|
2102
2197
|
* CreateSetupIntentDto
|
|
2103
2198
|
* @description Details required to create a Stripe SetupIntent
|
|
@@ -2154,6 +2249,21 @@ interface components {
|
|
|
2154
2249
|
* @description Temp Registration details
|
|
2155
2250
|
*/
|
|
2156
2251
|
TempRegistrationDto: {
|
|
2252
|
+
/**
|
|
2253
|
+
* Format: uuid
|
|
2254
|
+
* @description A Universally Unique Identifier is a 128-bit label used to uniquely identify objects
|
|
2255
|
+
*/
|
|
2256
|
+
uuid: string;
|
|
2257
|
+
email: string;
|
|
2258
|
+
stepProgress: number;
|
|
2259
|
+
hubspotId: (string | null) | null;
|
|
2260
|
+
referredBy: (string | null) | null;
|
|
2261
|
+
};
|
|
2262
|
+
/**
|
|
2263
|
+
* TempRegistrationForClientDto
|
|
2264
|
+
* @description Temp Registration details
|
|
2265
|
+
*/
|
|
2266
|
+
TempRegistrationForClientDto: {
|
|
2157
2267
|
/**
|
|
2158
2268
|
* Format: uuid
|
|
2159
2269
|
* @description A Universally Unique Identifier is a 128-bit label used to uniquely identify objects
|
|
@@ -2594,7 +2704,7 @@ interface components {
|
|
|
2594
2704
|
*/
|
|
2595
2705
|
userUuid: string;
|
|
2596
2706
|
/** PermissionType */
|
|
2597
|
-
type: 0 | 1 | 2 | 20 | 21 | 22 | 30 | 31 | 32 | 40 | 41 | 42 | 60 | 61 | 62 | 80 | 81 | 82 | 100 | 101 | 102 | 120 | 121 | 122 | 140 | 141 | 142 | 150 | 151 | 152 | 160 | 161 | 162 | 170 | 171 | 172 | 180 | 181 | 182 | 200 | 201 | 202 | 210 | 211 | 212;
|
|
2707
|
+
type: 0 | 1 | 2 | 20 | 21 | 22 | 30 | 31 | 32 | 40 | 41 | 42 | 60 | 61 | 62 | 80 | 81 | 82 | 100 | 101 | 102 | 120 | 121 | 122 | 140 | 141 | 142 | 150 | 151 | 152 | 160 | 161 | 162 | 170 | 171 | 172 | 180 | 181 | 182 | 200 | 201 | 202 | 210 | 211 | 212 | 220 | 221 | 222 | 230 | 231 | 232 | 240 | 241 | 242;
|
|
2598
2708
|
name: string;
|
|
2599
2709
|
};
|
|
2600
2710
|
/**
|
|
@@ -2642,7 +2752,7 @@ interface components {
|
|
|
2642
2752
|
firstName?: string;
|
|
2643
2753
|
lastName?: string;
|
|
2644
2754
|
flags: (0 | 1 | 2 | 3)[];
|
|
2645
|
-
permissions: (0 | 1 | 2 | 20 | 21 | 22 | 30 | 31 | 32 | 40 | 41 | 42 | 60 | 61 | 62 | 80 | 81 | 82 | 100 | 101 | 102 | 120 | 121 | 122 | 140 | 141 | 142 | 150 | 151 | 152 | 160 | 161 | 162 | 170 | 171 | 172 | 180 | 181 | 182 | 200 | 201 | 202 | 210 | 211 | 212)[];
|
|
2755
|
+
permissions: (0 | 1 | 2 | 20 | 21 | 22 | 30 | 31 | 32 | 40 | 41 | 42 | 60 | 61 | 62 | 80 | 81 | 82 | 100 | 101 | 102 | 120 | 121 | 122 | 140 | 141 | 142 | 150 | 151 | 152 | 160 | 161 | 162 | 170 | 171 | 172 | 180 | 181 | 182 | 200 | 201 | 202 | 210 | 211 | 212 | 220 | 221 | 222 | 230 | 231 | 232 | 240 | 241 | 242)[];
|
|
2646
2756
|
};
|
|
2647
2757
|
};
|
|
2648
2758
|
responses: never;
|
|
@@ -2721,11 +2831,14 @@ type QuestionUpdateDto = components['schemas']['QuestionUpdateDto'];
|
|
|
2721
2831
|
type SearchObjDatePropRequestDto = components['schemas']['SearchObjDatePropRequestDto'];
|
|
2722
2832
|
type SearchObjRequestDto = components['schemas']['SearchObjRequestDto'];
|
|
2723
2833
|
type SearchObjTextPropRequestDto = components['schemas']['SearchObjTextPropRequestDto'];
|
|
2834
|
+
type SentEmailCreateDto = components['schemas']['SentEmailCreateDto'];
|
|
2835
|
+
type SentEmailDto = P<Omit<components['schemas']['SentEmailDto'], 'dateCreated' | 'dateModified'> & { dateCreated: Date; dateModified: Date }>;
|
|
2724
2836
|
type SetupIntentCreateDto = components['schemas']['SetupIntentCreateDto'];
|
|
2725
2837
|
type SetupIntentDto = components['schemas']['SetupIntentDto'];
|
|
2726
2838
|
type TempLinkCreateDto = components['schemas']['TempLinkCreateDto'];
|
|
2727
2839
|
type TempLinkDto = P<Omit<components['schemas']['TempLinkDto'], 'dateCreated' | 'dateModified'> & { dateCreated: Date; dateModified: Date }>;
|
|
2728
2840
|
type TempRegistrationDto = components['schemas']['TempRegistrationDto'];
|
|
2841
|
+
type TempRegistrationForClientDto = components['schemas']['TempRegistrationForClientDto'];
|
|
2729
2842
|
type UploadCreateDto = components['schemas']['UploadCreateDto'];
|
|
2730
2843
|
type UploadDto = P<Omit<components['schemas']['UploadDto'], 'dateCreated' | 'dateModified'> & { dateCreated: Date; dateModified: Date }>;
|
|
2731
2844
|
type UploadImageWithLinkDto = components['schemas']['UploadImageWithLinkDto'];
|
|
@@ -2974,6 +3087,21 @@ declare const QuestionRestriction: {
|
|
|
2974
3087
|
};
|
|
2975
3088
|
};
|
|
2976
3089
|
|
|
3090
|
+
declare const SentEmailRestriction: {
|
|
3091
|
+
readonly templateUsed: {
|
|
3092
|
+
readonly minLength: 3;
|
|
3093
|
+
readonly maxLength: 80;
|
|
3094
|
+
};
|
|
3095
|
+
readonly variables: {
|
|
3096
|
+
readonly minLength: 3;
|
|
3097
|
+
readonly maxLength: 2000;
|
|
3098
|
+
};
|
|
3099
|
+
readonly statusMeta: {
|
|
3100
|
+
readonly minLength: 3;
|
|
3101
|
+
readonly maxLength: 1000;
|
|
3102
|
+
};
|
|
3103
|
+
};
|
|
3104
|
+
|
|
2977
3105
|
declare const StripeRestriction: {
|
|
2978
3106
|
readonly common: {
|
|
2979
3107
|
readonly id: {
|
|
@@ -3548,4 +3676,4 @@ declare const maxLength: (maxLengthVal: number) => (value: string) => Validation
|
|
|
3548
3676
|
declare const shouldBeUrl: (value: string) => ValidationResult;
|
|
3549
3677
|
declare const shouldBeYoutubeUrl: (value: string) => ValidationResult;
|
|
3550
3678
|
|
|
3551
|
-
export { MembershipType as $, AppType as A, apiRouteParam as B, CommonConfigService as C, type DependencyInjectionToken as D, type EnvKey as E, apiRoute as F, ActivityType as G, type HtmlElementEvent as H, type ILogger as I, AddressLinkType as J, type KeyEvent as K, LogService as L, type MonthTranslationKey as M, NANAS_PALLETTE as N, AnswerLinkType as O, BookingAddonType as P, BookingStatusType as Q, type ResultWithValue as R, type SupportedLanguage as S, type ThemeType as T, BugReportStatusType as U, CommentLinkType as V, type WeekdayTranslationKey as W, InvoiceStatusType as X, type LogType as Y, MembershipBillingCycleType as Z, MembershipStatus as _, type Result as a, type
|
|
3679
|
+
export { MembershipType as $, AppType as A, apiRouteParam as B, CommonConfigService as C, type DependencyInjectionToken as D, type EnvKey as E, apiRoute as F, ActivityType as G, type HtmlElementEvent as H, type ILogger as I, AddressLinkType as J, type KeyEvent as K, LogService as L, type MonthTranslationKey as M, NANAS_PALLETTE as N, AnswerLinkType as O, BookingAddonType as P, BookingStatusType as Q, type ResultWithValue as R, type SupportedLanguage as S, type ThemeType as T, BugReportStatusType as U, CommentLinkType as V, type WeekdayTranslationKey as W, InvoiceStatusType as X, type LogType as Y, MembershipBillingCycleType as Z, MembershipStatus as _, type Result as a, type InvoiceCreateDto as a$, NetworkState as a0, OrderDirectionType as a1, PermissionType as a2, PetSexType as a3, PetStatusType as a4, PetType as a5, QuestionType as a6, QuestionForType as a7, getAllPetQuestionForType as a8, SearchableColumnType as a9, type AuthRegisterPetDto as aA, type AuthRegisterQuestionDto as aB, type AuthRegisterStoreProgressDto as aC, type AuthRegisterUserDto as aD, type AuthRequestResetPasswordDto as aE, type AuthResetPasswordDto as aF, type AuthSuccessDto as aG, type BookingAddonDto as aH, type BookingCalendarOverviewItemDto as aI, type BookingCreateDto as aJ, type BookingDto as aK, type BookingHostAssignDto as aL, type BookingHostCreateDto as aM, type BookingHostDto as aN, type BookingHostUpdateDto as aO, type BookingRestrictionsDto as aP, type BookingRestrictionsEnabledDaysDto as aQ, type BookingRestrictionsPremiumEnabledDaysDto as aR, type BookingUpdateDto as aS, type BookingWithRelationshipsDto as aT, type BugReportCreateDto as aU, type BugReportDto as aV, type BugReportUpdateDto as aW, type ClientAnswerSaveDto as aX, type CommentCreateDto as aY, type CommentDto as aZ, type CommentUpdateDto as a_, type SearchableColumnInfo as aa, SentEmailLinkType as ab, SentEmailSentStatus as ac, TempLinkType as ad, TempRegistrationStatus as ae, UploadLinkType as af, UploadType as ag, uploadsThatNeedEncryption as ah, UserAccountFlagType as ai, UserType as aj, hubspotQuestionsExport as ak, type ActivityDto as al, type AddressCreateDto as am, type AddressDto as an, type AddressLookupDto as ao, type AddressUpdateDto as ap, type AnswerCreateDto as aq, type AnswerDto as ar, type AuthChangePasswordDto as as, type AuthLoginDto as at, type AuthPatDto as au, type AuthRegisterAddressDto as av, type AuthRegisterDto as aw, type AuthRegisterGetQuestionsDto as ax, type AuthRegisterGetTempUploadUrlDto as ay, type AuthRegisterGetTempUploadUrlResponseDto as az, type IDependencyInjectionSetupProps as b, MembershipRestriction as b$, type InvoiceDto as b0, type InvoiceUpdateDto as b1, type InvoiceWithStripeInfoDto as b2, type MembershipCreateDto as b3, type MembershipDto as b4, type MembershipUpdateDto as b5, type PaginationRequestDto as b6, type PaginationResponseDto as b7, type PaymentMethodDto as b8, type PetCreateDto as b9, type UserMembershipChangeResponseDto as bA, type UserMembershipCreateDto as bB, type UserMembershipDto as bC, type UserMembershipSignUpDto as bD, type UserMembershipSignUpResponseDto as bE, type UserMembershipStatsDto as bF, type UserMembershipUpdateDto as bG, type UserMembershipWithStripeInfoDto as bH, type UserMembershipWithUserNamesDto as bI, type UserMigrationReportCountsDto as bJ, type UserMigrationReportDto as bK, type UserMigrationReportUserDto as bL, type UserPermissionDto as bM, type UserUpdateDto as bN, type VersionDto as bO, type JwtPayloadDto as bP, ActivityRestriction as bQ, AddressRestriction as bR, AnswerRestriction as bS, AuthRegisterRestriction as bT, BookingRestriction as bU, BookingAddonRestriction as bV, BugReportRestriction as bW, CommentRestriction as bX, UuidRestriction as bY, DrivingRouteRestriction as bZ, InvoiceRestriction as b_, type PetDto as ba, type PetUpdateDto as bb, type ProfileDto as bc, type ProfileQuestionAndAnswersItemDto as bd, type ProfileQuestionRequestDto as be, type ProfileUpdateDto as bf, type QuestionCreateDto as bg, type QuestionDto as bh, type QuestionUpdateDto as bi, type SearchObjDatePropRequestDto as bj, type SearchObjRequestDto as bk, type SearchObjTextPropRequestDto as bl, type SentEmailCreateDto as bm, type SentEmailDto as bn, type SetupIntentCreateDto as bo, type SetupIntentDto as bp, type TempLinkCreateDto as bq, type TempLinkDto as br, type TempRegistrationDto as bs, type TempRegistrationForClientDto as bt, type UploadCreateDto as bu, type UploadDto as bv, type UploadImageWithLinkDto as bw, type UploadUpdateDto as bx, type UserCreateDto as by, type UserDto as bz, weekdayTranslationKeyOrder as c, getImageParams as c$, PermissionRestriction as c0, PetRestriction as c1, QuestionRestriction as c2, SentEmailRestriction as c3, StripeRestriction as c4, UnavailabilityRestriction as c5, UploadRestriction as c6, UserRestriction as c7, searchColumns as c8, type ICaptchaResponse as c9, getDayClassObject as cA, getDayHeadingElements as cB, type RenderCellType as cC, getDayElements as cD, getUsersName as cE, formatDate as cF, formatForDateLocal as cG, formatForDateDropdown as cH, formatForDateOfBirth as cI, formatForDateWithTime as cJ, formatForDateLocalDetailed as cK, formatForBookingDate as cL, addSeconds as cM, addMinutes as cN, addDays as cO, addMonths as cP, isBefore as cQ, isSameDay as cR, dateDiffInDays as cS, getAgeInYears as cT, getWeekNumber as cU, showSecondCalendar as cV, debounceLeading as cW, getArrFromEnum as cX, uuidv4 as cY, cyrb53 as cZ, type IImageParams as c_, type LogMethod as ca, type ILogMessage as cb, type IMediaUpload as cc, type NominatimResponse as cd, type NominatimAddressResponse as ce, type ValidationResult as cf, makeArrayOrDefault as cg, onlyUnique as ch, arrayOfNLength as ci, arrayContains as cj, timeout as ck, addToParallelTasks as cl, type BookingCalendarOverviewItem as cm, getBookingStatusLabelForAdmin as cn, getMembershipTypeLabel as co, getPetTypeLabel as cp, formatPetTypesLabel as cq, formatBookingCalendarLabel as cr, BOOKING_OVERVIEW_STATUSES as cs, type BookingStatusCounts as ct, computeBookingStatusCounts as cu, filterBookingsByOverviewStatus as cv, computeBookingNightCount as cw, formatBookingNightsTooltip as cx, serializeBookingOverviewStatuses as cy, parseBookingOverviewStatuses as cz, CdnAppImage as d, isNumber as d$, getPayloadFromJwt as d0, mimeTypeLookup as d1, getMimeTypeFromExtension as d2, tryParseNumber as d3, getPerformanceTimer as d4, hasRequiredPermissions as d5, getUserAvatarUrl as d6, getPetAvatarUrl as d7, promiseFromValue as d8, nameof as d9, getBotPath as dA, APP_TYPE_TOKEN as dB, getAppType as dC, SITE_CONFIG_TOKEN as dD, setSiteConfig as dE, getSiteConfig as dF, getSiteColour as dG, getCommonConfig as dH, getLog as dI, rootDependencyInjectionSetup as dJ, setContainerToken as dK, setContainerTokenLazy as dL, minItems as dM, maxItems as dN, selectedItemsExist as dO, selectedOptionIsInEnum as dP, noValidation as dQ, notNull as dR, multiValidation as dS, separateValidation as dT, validateForEach as dU, allowedNonNumericalValuesInContactNumber as dV, contactNumberCharValid as dW, contactNumberValid as dX, minDate as dY, maxDate as dZ, emailValid as d_, getQuestionGroups as da, randomIntFromRange as db, randomItemFromArray as dc, capitalizeFirstLetter as dd, lowercaseFirstLetter as de, addSpacesForEnum as df, formatFileSize as dg, anyObject as dh, fakePromise as di, type ObjectWithPropsOfValue as dj, type Prettify as dk, urlRef as dl, urlAddQueryParam as dm, userMustChangePassword as dn, getActiveUserMembership as dp, type UserMigrationReportUser as dq, type UserMigrationReportCounts as dr, type UserMigrationReport as ds, type ISiteColour as dt, colourPalette as du, defaultSiteColour as dv, type ISite as dw, DependencyInjectionContainer as dx, rootContainer as dy, BOT_PATH_TOKEN as dz, SupportedLanguageArray as e, minValue as e0, maxValue as e1, passwordValid as e2, postCodeValid as e3, minLength as e4, maxLength as e5, shouldBeUrl as e6, shouldBeYoutubeUrl as e7, type IFormCalendarPickerProps as e8, type FullDateSelectionProps as e9, type FormCalendarPickerMode as ea, type FormCalendarDatePickerRangeProps as eb, type DateSelectionProps as ec, type FormCalendarPickerInnerProps as ed, type FormInputProps as ee, type FormCalendarSpecialRangeDisplayProps as ef, type FormCalendarSpecialRangeProps as eg, type ValidFormTypes as eh, type ValidFormComponentTypes as ei, type PropertyOverrides as ej, commonEmailLinks as f, MouseButton as g, minUrlLength as h, isWebApp as i, type CachedValue as j, createToken as k, type DependencyInjectionIdentifier as l, monthTranslationKeyOrder as m, nanasFonts as n, type DependencyInjectionFactory as o, portalGlyphLength as p, type IDependencyInjectionSetupWebProps as q, type HtmlKeyEvent as r, socialLinks as s, type HtmlFilesEvent as t, type HtmlImageReadEvent as u, validUuidChars as v, webAppTypes as w, type ClickEvent as x, type ActivityLocationType as y, activityShortCode as z };
|
package/dist/web/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as solid_js from 'solid-js';
|
|
2
2
|
import { JSXElement, Component, JSX, Accessor, ComponentProps } from 'solid-js';
|
|
3
|
-
import { G as ActivityType, Q as BookingStatusType, A as AppType, U as BugReportStatusType, x as ClickEvent, $ as MembershipType, _ as MembershipStatus, Z as MembershipBillingCycleType, a4 as PetStatusType,
|
|
4
|
-
export {
|
|
3
|
+
import { G as ActivityType, Q as BookingStatusType, A as AppType, U as BugReportStatusType, x as ClickEvent, $ as MembershipType, _ as MembershipStatus, Z as MembershipBillingCycleType, a4 as PetStatusType, bc as ProfileDto, bh as QuestionDto, ar as AnswerDto, a7 as QuestionForType, a6 as QuestionType, aj as UserType, ai as UserAccountFlagType, R as ResultWithValue, a2 as PermissionType, a0 as NetworkState, e8 as IFormCalendarPickerProps, e9 as FullDateSelectionProps, ea as FormCalendarPickerMode, eb as FormCalendarDatePickerRangeProps, ec as DateSelectionProps, W as WeekdayTranslationKey, M as MonthTranslationKey, ed as FormCalendarPickerInnerProps, ee as FormInputProps, cf as ValidationResult, K as KeyEvent, H as HtmlElementEvent, am as AddressCreateDto, ap as AddressUpdateDto, at as AuthLoginDto, aD as AuthRegisterUserDto, aK as BookingDto, aJ as BookingCreateDto, aS as BookingUpdateDto, aV as BugReportDto, aU as BugReportCreateDto, b3 as MembershipCreateDto, b9 as PetCreateDto, bb as PetUpdateDto, bf as ProfileUpdateDto, bg as QuestionCreateDto, bn as SentEmailDto, br as TempLinkDto, bs as TempRegistrationDto, bu as UploadCreateDto, bw as UploadImageWithLinkDto, bz as UserDto, by as UserCreateDto, bG as UserMembershipUpdateDto, bB as UserMembershipCreateDto, t as HtmlFilesEvent, cb as ILogMessage, I as ILogger, a as Result, b6 as PaginationRequestDto, b7 as PaginationResponseDto, bk as SearchObjRequestDto, C as CommonConfigService, al as ActivityDto, L as LogService, an as AddressDto, J as AddressLinkType, cd as NominatimResponse, bd as ProfileQuestionAndAnswersItemDto, aT as BookingWithRelationshipsDto, cm as BookingCalendarOverviewItem, aW as BugReportUpdateDto, V as CommentLinkType, aZ as CommentDto, aY as CommentCreateDto, b0 as InvoiceDto, a$ as InvoiceCreateDto, b1 as InvoiceUpdateDto, b4 as MembershipDto, b5 as MembershipUpdateDto, ba as PetDto, bm as SentEmailCreateDto, bq as TempLinkCreateDto, bv as UploadDto, bx as UploadUpdateDto, bN as UserUpdateDto, ds as UserMigrationReport, bC as UserMembershipDto, bI as UserMembershipWithUserNamesDto, bF as UserMembershipStatsDto, bM as UserPermissionDto, ao as AddressLookupDto, b2 as InvoiceWithStripeInfoDto, dw as ISite, b8 as PaymentMethodDto, bo as SetupIntentCreateDto, bp as SetupIntentDto, aP as BookingRestrictionsDto, bD as UserMembershipSignUpDto, bE as UserMembershipSignUpResponseDto, bA as UserMembershipChangeResponseDto, aG as AuthSuccessDto, aw as AuthRegisterDto, aC as AuthRegisterStoreProgressDto, ax as AuthRegisterGetQuestionsDto, ay as AuthRegisterGetTempUploadUrlDto, az as AuthRegisterGetTempUploadUrlResponseDto, aE as AuthRequestResetPasswordDto, aF as AuthResetPasswordDto, as as AuthChangePasswordDto, bO as VersionDto, T as ThemeType, dk as Prettify, q as IDependencyInjectionSetupWebProps } from '../textValidation-YmUdzikm.js';
|
|
4
|
+
export { dB as APP_TYPE_TOKEN, y as ActivityLocationType, bQ as ActivityRestriction, bR as AddressRestriction, aq as AnswerCreateDto, O as AnswerLinkType, bS as AnswerRestriction, au as AuthPatDto, av as AuthRegisterAddressDto, aA as AuthRegisterPetDto, aB as AuthRegisterQuestionDto, bT as AuthRegisterRestriction, cs as BOOKING_OVERVIEW_STATUSES, dz as BOT_PATH_TOKEN, aH as BookingAddonDto, bV as BookingAddonRestriction, P as BookingAddonType, aI as BookingCalendarOverviewItemDto, aL as BookingHostAssignDto, aM as BookingHostCreateDto, aN as BookingHostDto, aO as BookingHostUpdateDto, bU as BookingRestriction, aQ as BookingRestrictionsEnabledDaysDto, aR as BookingRestrictionsPremiumEnabledDaysDto, ct as BookingStatusCounts, bW as BugReportRestriction, j as CachedValue, d as CdnAppImage, aX as ClientAnswerSaveDto, bX as CommentRestriction, a_ as CommentUpdateDto, dx as DependencyInjectionContainer, o as DependencyInjectionFactory, l as DependencyInjectionIdentifier, D as DependencyInjectionToken, bZ as DrivingRouteRestriction, E as EnvKey, ef as FormCalendarSpecialRangeDisplayProps, eg as FormCalendarSpecialRangeProps, u as HtmlImageReadEvent, r as HtmlKeyEvent, c9 as ICaptchaResponse, b as IDependencyInjectionSetupProps, c_ as IImageParams, cc as IMediaUpload, dt as ISiteColour, b_ as InvoiceRestriction, X as InvoiceStatusType, bP as JwtPayloadDto, ca as LogMethod, Y as LogType, b$ as MembershipRestriction, g as MouseButton, N as NANAS_PALLETTE, ce as NominatimAddressResponse, dj as ObjectWithPropsOfValue, a1 as OrderDirectionType, c0 as PermissionRestriction, c1 as PetRestriction, a3 as PetSexType, a5 as PetType, be as ProfileQuestionRequestDto, ej as PropertyOverrides, c2 as QuestionRestriction, bi as QuestionUpdateDto, cC as RenderCellType, dD as SITE_CONFIG_TOKEN, bj as SearchObjDatePropRequestDto, bl as SearchObjTextPropRequestDto, aa as SearchableColumnInfo, a9 as SearchableColumnType, ab as SentEmailLinkType, c3 as SentEmailRestriction, ac as SentEmailSentStatus, c4 as StripeRestriction, S as SupportedLanguage, e as SupportedLanguageArray, ad as TempLinkType, bt as TempRegistrationForClientDto, ae as TempRegistrationStatus, c5 as UnavailabilityRestriction, af as UploadLinkType, c6 as UploadRestriction, ag as UploadType, bH as UserMembershipWithStripeInfoDto, dr as UserMigrationReportCounts, bJ as UserMigrationReportCountsDto, bK as UserMigrationReportDto, dq as UserMigrationReportUser, bL as UserMigrationReportUserDto, c7 as UserRestriction, bY as UuidRestriction, ei as ValidFormComponentTypes, eh as ValidFormTypes, z as activityShortCode, cO as addDays, cN as addMinutes, cP as addMonths, cM as addSeconds, df as addSpacesForEnum, cl as addToParallelTasks, dV as allowedNonNumericalValuesInContactNumber, dh as anyObject, F as apiRoute, B as apiRouteParam, cj as arrayContains, ci as arrayOfNLength, dd as capitalizeFirstLetter, du as colourPalette, f as commonEmailLinks, cw as computeBookingNightCount, cu as computeBookingStatusCounts, dW as contactNumberCharValid, dX as contactNumberValid, k as createToken, cZ as cyrb53, cS as dateDiffInDays, cW as debounceLeading, dv as defaultSiteColour, d_ as emailValid, di as fakePromise, cv as filterBookingsByOverviewStatus, cr as formatBookingCalendarLabel, cx as formatBookingNightsTooltip, cF as formatDate, dg as formatFileSize, cL as formatForBookingDate, cH as formatForDateDropdown, cG as formatForDateLocal, cK as formatForDateLocalDetailed, cI as formatForDateOfBirth, cJ as formatForDateWithTime, cq as formatPetTypesLabel, dp as getActiveUserMembership, cT as getAgeInYears, a8 as getAllPetQuestionForType, dC as getAppType, cX as getArrFromEnum, cn as getBookingStatusLabelForAdmin, dA as getBotPath, dH as getCommonConfig, cA as getDayClassObject, cD as getDayElements, cB as getDayHeadingElements, c$ as getImageParams, dI as getLog, co as getMembershipTypeLabel, d2 as getMimeTypeFromExtension, d0 as getPayloadFromJwt, d4 as getPerformanceTimer, d7 as getPetAvatarUrl, cp as getPetTypeLabel, da as getQuestionGroups, dG as getSiteColour, dF as getSiteConfig, d6 as getUserAvatarUrl, cE as getUsersName, cU as getWeekNumber, d5 as hasRequiredPermissions, ak as hubspotQuestionsExport, cQ as isBefore, d$ as isNumber, cR as isSameDay, i as isWebApp, de as lowercaseFirstLetter, cg as makeArrayOrDefault, dZ as maxDate, dN as maxItems, e5 as maxLength, e1 as maxValue, d1 as mimeTypeLookup, dY as minDate, dM as minItems, e4 as minLength, h as minUrlLength, e0 as minValue, m as monthTranslationKeyOrder, dS as multiValidation, d9 as nameof, n as nanasFonts, dQ as noValidation, dR as notNull, ch as onlyUnique, cz as parseBookingOverviewStatuses, e2 as passwordValid, p as portalGlyphLength, e3 as postCodeValid, d8 as promiseFromValue, db as randomIntFromRange, dc as randomItemFromArray, dy as rootContainer, dJ as rootDependencyInjectionSetup, c8 as searchColumns, dO as selectedItemsExist, dP as selectedOptionIsInEnum, dT as separateValidation, cy as serializeBookingOverviewStatuses, dK as setContainerToken, dL as setContainerTokenLazy, dE as setSiteConfig, e6 as shouldBeUrl, e7 as shouldBeYoutubeUrl, cV as showSecondCalendar, s as socialLinks, ck as timeout, d3 as tryParseNumber, ah as uploadsThatNeedEncryption, dm as urlAddQueryParam, dl as urlRef, dn as userMustChangePassword, cY as uuidv4, v as validUuidChars, dU as validateForEach, w as webAppTypes, c as weekdayTranslationKeyOrder } from '../textValidation-YmUdzikm.js';
|
|
5
5
|
import { ToasterProps } from 'solid-toast';
|
|
6
6
|
import { TolgeeInstance, TranslationKey, CombinedOptions, DefaultParamType } from '@tolgee/web';
|
|
7
7
|
|
|
@@ -671,6 +671,12 @@ declare const ProfileUpdateDtoMeta: FormDtoMeta<ProfileUpdateDto>;
|
|
|
671
671
|
|
|
672
672
|
declare const QuestionCreateDtoMeta: FormDtoMeta<QuestionCreateDto>;
|
|
673
673
|
|
|
674
|
+
declare const SentEmailDtoMeta: FormDtoMeta<SentEmailDto>;
|
|
675
|
+
|
|
676
|
+
declare const TempLinkDtoMeta: FormDtoMeta<TempLinkDto>;
|
|
677
|
+
|
|
678
|
+
declare const TempRegistrationDtoMeta: FormDtoMeta<TempRegistrationDto>;
|
|
679
|
+
|
|
674
680
|
declare const UploadCreateDtoMeta: FormDtoMeta<UploadCreateDto>;
|
|
675
681
|
|
|
676
682
|
declare const UploadImageWithLinkDtoMeta: FormDtoMeta<UploadImageWithLinkDto>;
|
|
@@ -856,6 +862,18 @@ declare class AdminQuestionApiService extends BaseCrudService<QuestionDto, Quest
|
|
|
856
862
|
constructor(log: LogService, config: CommonConfigService);
|
|
857
863
|
}
|
|
858
864
|
|
|
865
|
+
declare class AdminSentEmailApiService extends BaseCrudService<SentEmailDto, SentEmailCreateDto> {
|
|
866
|
+
constructor(log: LogService, config: CommonConfigService);
|
|
867
|
+
}
|
|
868
|
+
|
|
869
|
+
declare class AdminTempLinkApiService extends BaseCrudService<TempLinkDto, TempLinkCreateDto> {
|
|
870
|
+
constructor(log: LogService, config: CommonConfigService);
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
declare class AdminTempRegistrationApiService extends BaseCrudService<TempRegistrationDto> {
|
|
874
|
+
constructor(log: LogService, config: CommonConfigService);
|
|
875
|
+
}
|
|
876
|
+
|
|
859
877
|
declare class AdminUploadApiService extends BaseCrudService<UploadDto, UploadCreateDto, UploadUpdateDto> {
|
|
860
878
|
constructor(log: LogService, config: CommonConfigService);
|
|
861
879
|
updateNotImplemented: () => never;
|
|
@@ -1150,6 +1168,9 @@ declare const getAdminCommentApi: () => AdminCommentApiService;
|
|
|
1150
1168
|
declare const getAdminInvoiceApi: () => AdminInvoiceApiService;
|
|
1151
1169
|
declare const getAdminMembershipApi: () => AdminMembershipApiService;
|
|
1152
1170
|
declare const getAdminPetApi: () => AdminPetApiService;
|
|
1171
|
+
declare const getAdminSentEmailApi: () => AdminSentEmailApiService;
|
|
1172
|
+
declare const getAdminTempLinkApi: () => AdminTempLinkApiService;
|
|
1173
|
+
declare const getAdminTempRegistrationApi: () => AdminTempRegistrationApiService;
|
|
1153
1174
|
declare const getAdminQuestionApi: () => AdminQuestionApiService;
|
|
1154
1175
|
declare const getAdminUploadApi: () => AdminUploadApiService;
|
|
1155
1176
|
declare const getAdminUserApi: () => AdminUserApiService;
|
|
@@ -1177,4 +1198,4 @@ type AssistantAppsAppNoticeList = ComponentProps<'div'> & {
|
|
|
1177
1198
|
|
|
1178
1199
|
declare const maxFullDateSelection: (maxDate: Date, type: keyof FormCalendarDatePickerRangeProps) => (value: FormCalendarDatePickerRangeProps) => ValidationResult;
|
|
1179
1200
|
|
|
1180
|
-
export { AboutPageContent, Accordion, ActivityDto, ActivityType, AddIcon, AddressApiService, AddressCreateDto, AddressCreateDtoMeta, AddressDto, AddressLinkType, AddressLookupDto, AddressUpdateDto, AddressUpdateDtoMeta, AdminActivityApiService, AdminAddressApiService, AdminAnswerApiService, AdminBookingApiService, AdminBugReportApiService, AdminCommentApiService, AdminInvoiceApiService, AdminMembershipApiService, AdminPetApiService, AdminQuestionApiService, AdminUploadApiService, AdminUserApiService, AdminUserMembershipApiService, AdminUserPermissionApiService, Alert, AnswerApiService, AnswerDto, AppType, type AssistantAppsAppNoticeList, AsyncComponent, AsyncDetailPageComponent, AuthApiService, AuthChangePasswordDto, AuthGuard, AuthLoginDto, AuthLoginDtoMeta, AuthRegisterDto, AuthRegisterGetQuestionsDto, AuthRegisterGetTempUploadUrlDto, AuthRegisterGetTempUploadUrlResponseDto, AuthRegisterStoreProgressDto, AuthRegisterUserDto, AuthRegisterUserDtoMeta, AuthRequestResetPasswordDto, AuthResetPasswordDto, AuthSuccessDto, Backdrop, BaseApiService, BaseCrudService, BookingApiService, BookingCalendarOverviewItem, BookingCreateDto, BookingCreateDtoMeta, BookingDto, BookingDtoMeta, BookingRestrictionsDto, BookingStatusType, BookingStatusTypeDropdown, BookingUpdateDto, BookingUpdateDtoMeta, BookingWithRelationshipsDto, Breadcrumb, BugReportApiService, BugReportCreateDto, BugReportCreateDtoMeta, BugReportDto, BugReportDtoMeta, BugReportFab, BugReportStatusType, BugReportUpdateDto, CameraIcon, CaptchaWebService, Card, Center, CenterLoading, ChangePasswordPage, type ChangePasswordPageProps, CircularProgress, ClickEvent, type ClientAnswerSaveBody, CommentCreateDto, CommentDto, CommentLinkType, CommonConfigService, CommonStateService, DateSelectionProps, DebugNode, DebugService, DeleteIcon, DocumentMeta, DocumentService, EnumTypeDropdown, ErrorBlock, ErrorBoundary, ErrorDogSvg, ErrorScreen, EyeHideIcon, EyeIcon, FacebookIcon, ForcePasswordChangeGuard, FormCalendarDatePickerRangeProps, FormCalendarPicker, FormCalendarPickerDropdown, FormCalendarPickerInner, FormCalendarPickerInnerProps, FormCalendarPickerMode, FormCheckbox, FormDropdown, type FormDtoMeta, type FormDtoMetaDetails, FormInputErrorMessage, FormInputProps, FormLongInput, FormNetworkStateIndicator, FormPasswordInput, FormPromiseDropdown, FormPromiseSearchDropdown, FormTextArea, FormUserPetDropdown, FullDateSelectionProps, HelpIcon, HelpIconTooltip, HtmlElementEvent, HtmlFilesEvent, type IBaseCrudService, type IBreadcrumbLinkProps, type ICardProps, type ICommonState, IDependencyInjectionSetupWebProps, IFormCalendarPickerProps, type IFormDropdownAdditionalOption, type IFormDropdownOption, type ILoadingSpinnerProps, ILogMessage, ILogger, type IProfilePanelLinkProps$1 as IProfilePanelLinkProps, type ISidebarItemProps, ISite, IllustrationNoItems, InstagramIcon, InvoiceApiService, InvoiceCreateDto, InvoiceDto, InvoiceUpdateDto, InvoiceWithStripeInfoDto, KeyEvent, LazyImage, LinkedInIcon, type LoadItemsSearchFn, LoadingSpinner, LoadingSpinnerBlock, LocalStorageKeys, type LocalStorageKeysType, LocalStorageService, LogService, MembershipApiService, MembershipBillingCycleDropdown, MembershipBillingCycleType, MembershipCreateDto, MembershipCreateDtoMeta, MembershipDto, MembershipIcon, MembershipProfileHeading, MembershipStatus, MembershipStatusDropdown, MembershipType, MembershipTypeDropdown, MembershipUpdateDto, MembershipUuidDropdown, Modal, MonthTranslationKey, NavBar, NetworkState, NominatimResponse, OpenInNewIcon, PaginationRequestDto, PaginationResponseDto, PaymentMethodApiService, PaymentMethodDto, PermissionType, PetApiService, PetCreateDto, PetCreateDtoMeta, PetDto, PetSexTypeDropdown, PetStatusType, PetStatusTypeDropdown, PetTypeDropdown, PetUpdateDto, PetUpdateDtoMeta, Prettify, ProfileApiService, ProfileDto, ProfilePanel, ProfilePanelNavBarDropdown, ProfileQuestionAndAnswersItemDto, ProfileUpdateDto, ProfileUpdateDtoMeta, QuestionCreateDto, QuestionCreateDtoMeta, QuestionDto, QuestionForType, QuestionForTypeDropdown, QuestionType, QuestionTypeDropdown, Result, ResultWithValue, SearchObjRequestDto, SetupIntentCreateDto, SetupIntentDto, Sidebar, T, TempRegistrationDto, ThemeType, ToastService, Tooltip, TranslationService, UploadApiService, UploadCreateDto, UploadCreateDtoMeta, UploadDto, UploadImageWithLinkDto, UploadImageWithLinkDtoMeta, UploadUpdateDto, UserAccountFlagType, UserAccountFlagTypeDropdown, UserCreateDto, UserCreateDtoMeta, UserDto, UserDtoMeta, UserMembershipApiService, UserMembershipChangeResponseDto, UserMembershipCreateDto, UserMembershipCreateDtoMeta, UserMembershipDto, UserMembershipSignUpDto, UserMembershipSignUpResponseDto, UserMembershipStatsDto, UserMembershipUpdateDto, UserMembershipUpdateDtoMeta, UserMembershipWithUserNamesDto, UserMigrationReport, UserPermissionDto, UserType, UserTypeDropdown, UserUpdateDto, ValidationResult, type ValidationWithPropName, VersionApiService, VersionDto, WeekdayTranslationKey, WrapWhen, addAccessTokenToHeaders, changeMonth, convertToDate, convertToFullDateSelection, copyTextToClipboard, dateCreatedMeta, dependencyInjectionWebSetup, displayActivityTypeBadge, displayBookingStatusTypeBadge, displayBugReportTypeBadge, displayMembershipBillingCycleBadge, displayMembershipStatusBadge, displayMembershipTypeBadge, displayPetStatusTypeBadge, displayQuestionForTypeBadge, displayQuestionTypeBadge, displayUserAccountFlagTypeBadge, displayUserTypeBadge, formDataWithAccessTokenHeaders, getAddressApi, getAdminActivityApi, getAdminAddressApi, getAdminAnswerApi, getAdminBookingApi, getAdminBugReportApi, getAdminCommentApi, getAdminInvoiceApi, getAdminMembershipApi, getAdminPetApi, getAdminQuestionApi, getAdminUploadApi, getAdminUserApi, getAdminUserMembershipApi, getAdminUserPermissionApi, getAnswerApi, getAriaInvalid, getAuthApi, getBookingApi, getBookingStatusTypeLocalisationForAdmin, getBookingStatusTypeLocalisationForClient, getBugReportApi, getBugReportStatusBadgeContent, getCalendarDropdownDisplayValue, getCalendarDropdownForDateOfBirthDisplayValue, getCaptchaWebService, getCommonStateService, getDebugService, getDocumentServ, getFormControlAriaInvalid, getInvoiceApi, getLocalStorage, getMembershipApi, getMonthHeading, getNextMonthButton, getPaginationQueryParams, getPaymentMethodApi, getPetApi, getPrevMonthButton, getProfileApi, getToastService, getUploadApi, getUserAccountFlagTypeBadgeContent, getUserMembershipApi, getVersionApi, globalErrorDetails, handleLogMessageError, hasOneOrMoreErrors, isDateAfterStart, isDateBeforeEnd, isDateDisabledByDisabledDays, isDateEnabledByEnabledDays, isFormControlInvalid, isFormNetworkError, isFormNetworkLoading, loggerHasErrors, maxFullDateSelection, monthTranslation, notesMeta, onFormSubmitFacade, onTargetChecked, onTargetFiles, onTargetValue, preventDefault, profileEventSignal, questionAnswerDisplay, setGlobalErrorDetails, setLoggerHasErrors, setProfileEventSignal, stopPropagation, translate, translateComponentToString, usePromise, useValidation, weekdayTranslation2Char, weekdayTranslation3Char, windowOnError, windowOnUnhandledRejection };
|
|
1201
|
+
export { AboutPageContent, Accordion, ActivityDto, ActivityType, AddIcon, AddressApiService, AddressCreateDto, AddressCreateDtoMeta, AddressDto, AddressLinkType, AddressLookupDto, AddressUpdateDto, AddressUpdateDtoMeta, AdminActivityApiService, AdminAddressApiService, AdminAnswerApiService, AdminBookingApiService, AdminBugReportApiService, AdminCommentApiService, AdminInvoiceApiService, AdminMembershipApiService, AdminPetApiService, AdminQuestionApiService, AdminSentEmailApiService, AdminTempLinkApiService, AdminTempRegistrationApiService, AdminUploadApiService, AdminUserApiService, AdminUserMembershipApiService, AdminUserPermissionApiService, Alert, AnswerApiService, AnswerDto, AppType, type AssistantAppsAppNoticeList, AsyncComponent, AsyncDetailPageComponent, AuthApiService, AuthChangePasswordDto, AuthGuard, AuthLoginDto, AuthLoginDtoMeta, AuthRegisterDto, AuthRegisterGetQuestionsDto, AuthRegisterGetTempUploadUrlDto, AuthRegisterGetTempUploadUrlResponseDto, AuthRegisterStoreProgressDto, AuthRegisterUserDto, AuthRegisterUserDtoMeta, AuthRequestResetPasswordDto, AuthResetPasswordDto, AuthSuccessDto, Backdrop, BaseApiService, BaseCrudService, BookingApiService, BookingCalendarOverviewItem, BookingCreateDto, BookingCreateDtoMeta, BookingDto, BookingDtoMeta, BookingRestrictionsDto, BookingStatusType, BookingStatusTypeDropdown, BookingUpdateDto, BookingUpdateDtoMeta, BookingWithRelationshipsDto, Breadcrumb, BugReportApiService, BugReportCreateDto, BugReportCreateDtoMeta, BugReportDto, BugReportDtoMeta, BugReportFab, BugReportStatusType, BugReportUpdateDto, CameraIcon, CaptchaWebService, Card, Center, CenterLoading, ChangePasswordPage, type ChangePasswordPageProps, CircularProgress, ClickEvent, type ClientAnswerSaveBody, CommentCreateDto, CommentDto, CommentLinkType, CommonConfigService, CommonStateService, DateSelectionProps, DebugNode, DebugService, DeleteIcon, DocumentMeta, DocumentService, EnumTypeDropdown, ErrorBlock, ErrorBoundary, ErrorDogSvg, ErrorScreen, EyeHideIcon, EyeIcon, FacebookIcon, ForcePasswordChangeGuard, FormCalendarDatePickerRangeProps, FormCalendarPicker, FormCalendarPickerDropdown, FormCalendarPickerInner, FormCalendarPickerInnerProps, FormCalendarPickerMode, FormCheckbox, FormDropdown, type FormDtoMeta, type FormDtoMetaDetails, FormInputErrorMessage, FormInputProps, FormLongInput, FormNetworkStateIndicator, FormPasswordInput, FormPromiseDropdown, FormPromiseSearchDropdown, FormTextArea, FormUserPetDropdown, FullDateSelectionProps, HelpIcon, HelpIconTooltip, HtmlElementEvent, HtmlFilesEvent, type IBaseCrudService, type IBreadcrumbLinkProps, type ICardProps, type ICommonState, IDependencyInjectionSetupWebProps, IFormCalendarPickerProps, type IFormDropdownAdditionalOption, type IFormDropdownOption, type ILoadingSpinnerProps, ILogMessage, ILogger, type IProfilePanelLinkProps$1 as IProfilePanelLinkProps, type ISidebarItemProps, ISite, IllustrationNoItems, InstagramIcon, InvoiceApiService, InvoiceCreateDto, InvoiceDto, InvoiceUpdateDto, InvoiceWithStripeInfoDto, KeyEvent, LazyImage, LinkedInIcon, type LoadItemsSearchFn, LoadingSpinner, LoadingSpinnerBlock, LocalStorageKeys, type LocalStorageKeysType, LocalStorageService, LogService, MembershipApiService, MembershipBillingCycleDropdown, MembershipBillingCycleType, MembershipCreateDto, MembershipCreateDtoMeta, MembershipDto, MembershipIcon, MembershipProfileHeading, MembershipStatus, MembershipStatusDropdown, MembershipType, MembershipTypeDropdown, MembershipUpdateDto, MembershipUuidDropdown, Modal, MonthTranslationKey, NavBar, NetworkState, NominatimResponse, OpenInNewIcon, PaginationRequestDto, PaginationResponseDto, PaymentMethodApiService, PaymentMethodDto, PermissionType, PetApiService, PetCreateDto, PetCreateDtoMeta, PetDto, PetSexTypeDropdown, PetStatusType, PetStatusTypeDropdown, PetTypeDropdown, PetUpdateDto, PetUpdateDtoMeta, Prettify, ProfileApiService, ProfileDto, ProfilePanel, ProfilePanelNavBarDropdown, ProfileQuestionAndAnswersItemDto, ProfileUpdateDto, ProfileUpdateDtoMeta, QuestionCreateDto, QuestionCreateDtoMeta, QuestionDto, QuestionForType, QuestionForTypeDropdown, QuestionType, QuestionTypeDropdown, Result, ResultWithValue, SearchObjRequestDto, SentEmailCreateDto, SentEmailDto, SentEmailDtoMeta, SetupIntentCreateDto, SetupIntentDto, Sidebar, T, TempLinkCreateDto, TempLinkDto, TempLinkDtoMeta, TempRegistrationDto, TempRegistrationDtoMeta, ThemeType, ToastService, Tooltip, TranslationService, UploadApiService, UploadCreateDto, UploadCreateDtoMeta, UploadDto, UploadImageWithLinkDto, UploadImageWithLinkDtoMeta, UploadUpdateDto, UserAccountFlagType, UserAccountFlagTypeDropdown, UserCreateDto, UserCreateDtoMeta, UserDto, UserDtoMeta, UserMembershipApiService, UserMembershipChangeResponseDto, UserMembershipCreateDto, UserMembershipCreateDtoMeta, UserMembershipDto, UserMembershipSignUpDto, UserMembershipSignUpResponseDto, UserMembershipStatsDto, UserMembershipUpdateDto, UserMembershipUpdateDtoMeta, UserMembershipWithUserNamesDto, UserMigrationReport, UserPermissionDto, UserType, UserTypeDropdown, UserUpdateDto, ValidationResult, type ValidationWithPropName, VersionApiService, VersionDto, WeekdayTranslationKey, WrapWhen, addAccessTokenToHeaders, changeMonth, convertToDate, convertToFullDateSelection, copyTextToClipboard, dateCreatedMeta, dependencyInjectionWebSetup, displayActivityTypeBadge, displayBookingStatusTypeBadge, displayBugReportTypeBadge, displayMembershipBillingCycleBadge, displayMembershipStatusBadge, displayMembershipTypeBadge, displayPetStatusTypeBadge, displayQuestionForTypeBadge, displayQuestionTypeBadge, displayUserAccountFlagTypeBadge, displayUserTypeBadge, formDataWithAccessTokenHeaders, getAddressApi, getAdminActivityApi, getAdminAddressApi, getAdminAnswerApi, getAdminBookingApi, getAdminBugReportApi, getAdminCommentApi, getAdminInvoiceApi, getAdminMembershipApi, getAdminPetApi, getAdminQuestionApi, getAdminSentEmailApi, getAdminTempLinkApi, getAdminTempRegistrationApi, getAdminUploadApi, getAdminUserApi, getAdminUserMembershipApi, getAdminUserPermissionApi, getAnswerApi, getAriaInvalid, getAuthApi, getBookingApi, getBookingStatusTypeLocalisationForAdmin, getBookingStatusTypeLocalisationForClient, getBugReportApi, getBugReportStatusBadgeContent, getCalendarDropdownDisplayValue, getCalendarDropdownForDateOfBirthDisplayValue, getCaptchaWebService, getCommonStateService, getDebugService, getDocumentServ, getFormControlAriaInvalid, getInvoiceApi, getLocalStorage, getMembershipApi, getMonthHeading, getNextMonthButton, getPaginationQueryParams, getPaymentMethodApi, getPetApi, getPrevMonthButton, getProfileApi, getToastService, getUploadApi, getUserAccountFlagTypeBadgeContent, getUserMembershipApi, getVersionApi, globalErrorDetails, handleLogMessageError, hasOneOrMoreErrors, isDateAfterStart, isDateBeforeEnd, isDateDisabledByDisabledDays, isDateEnabledByEnabledDays, isFormControlInvalid, isFormNetworkError, isFormNetworkLoading, loggerHasErrors, maxFullDateSelection, monthTranslation, notesMeta, onFormSubmitFacade, onTargetChecked, onTargetFiles, onTargetValue, preventDefault, profileEventSignal, questionAnswerDisplay, setGlobalErrorDetails, setLoggerHasErrors, setProfileEventSignal, stopPropagation, translate, translateComponentToString, usePromise, useValidation, weekdayTranslation2Char, weekdayTranslation3Char, windowOnError, windowOnUnhandledRejection };
|