@nanas-home/hub-common 0.58.1306 → 0.60.1336

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.
@@ -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.svg")
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 };
@@ -2,7 +2,7 @@ export default {
2
2
  meta: {
3
3
  type: 'problem',
4
4
  docs: {
5
- description: 'Ensure draggable attribute is defined on <img> and <a> elements',
5
+ description: 'Ensure draggable attribute is defined on <img>, <a> and <A> elements',
6
6
  },
7
7
  schema: [],
8
8
  messages: {
@@ -20,7 +20,7 @@ export default {
20
20
  const tagName = node.name.name;
21
21
 
22
22
  // Only check <img> and <a>
23
- if (tagName !== 'img' && tagName !== 'a') return;
23
+ if (tagName !== 'img' && tagName.toLowerCase() !== 'a') return;
24
24
 
25
25
  const draggableAttr = node.attributes.find(
26
26
  (attr) => attr.type === 'JSXAttribute' && attr.name && attr.name.name === 'draggable',
@@ -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-DJ7gkLTW.js';
2
- export { dv as APP_TYPE_TOKEN, aj as ActivityDto, y as ActivityLocationType, bL as ActivityRestriction, G as ActivityType, ak as AddressCreateDto, al as AddressDto, J as AddressLinkType, am as AddressLookupDto, bM as AddressRestriction, an as AddressUpdateDto, ao as AnswerCreateDto, ap as AnswerDto, O as AnswerLinkType, bN as AnswerRestriction, A as AppType, aq as AuthChangePasswordDto, ar as AuthLoginDto, as as AuthPatDto, at as AuthRegisterAddressDto, au as AuthRegisterDto, av as AuthRegisterGetQuestionsDto, aw as AuthRegisterGetTempUploadUrlDto, ax as AuthRegisterGetTempUploadUrlResponseDto, ay as AuthRegisterPetDto, az as AuthRegisterQuestionDto, bO as AuthRegisterRestriction, aA as AuthRegisterStoreProgressDto, aB as AuthRegisterUserDto, aC as AuthRequestResetPasswordDto, aD as AuthResetPasswordDto, aE as AuthSuccessDto, cm as BOOKING_OVERVIEW_STATUSES, dt as BOT_PATH_TOKEN, aF as BookingAddonDto, bQ as BookingAddonRestriction, P as BookingAddonType, cg as BookingCalendarOverviewItem, aG as BookingCalendarOverviewItemDto, aH as BookingCreateDto, aI as BookingDto, aJ as BookingHostAssignDto, aK as BookingHostCreateDto, aL as BookingHostDto, aM as BookingHostUpdateDto, bP as BookingRestriction, aN as BookingRestrictionsDto, aO as BookingRestrictionsEnabledDaysDto, aP as BookingRestrictionsPremiumEnabledDaysDto, cn as BookingStatusCounts, Q as BookingStatusType, aQ as BookingUpdateDto, aR as BookingWithRelationshipsDto, aS as BugReportCreateDto, aT as BugReportDto, bR as BugReportRestriction, U as BugReportStatusType, aU as BugReportUpdateDto, j as CachedValue, d as CdnAppImage, x as ClickEvent, aV as ClientAnswerSaveDto, aW as CommentCreateDto, aX as CommentDto, V as CommentLinkType, bS as CommentRestriction, aY as CommentUpdateDto, dr as DependencyInjectionContainer, o as DependencyInjectionFactory, l as DependencyInjectionIdentifier, D as DependencyInjectionToken, bU as DrivingRouteRestriction, E as EnvKey, H as HtmlElementEvent, t as HtmlFilesEvent, u as HtmlImageReadEvent, r as HtmlKeyEvent, c3 as ICaptchaResponse, q as IDependencyInjectionSetupWebProps, cU as IImageParams, c5 as ILogMessage, c6 as IMediaUpload, dq as ISite, dm as ISiteColour, aZ as InvoiceCreateDto, a_ as InvoiceDto, bV as InvoiceRestriction, X as InvoiceStatusType, a$ as InvoiceUpdateDto, b0 as InvoiceWithStripeInfoDto, bK as JwtPayloadDto, K as KeyEvent, c4 as LogMethod, Y as LogType, Z as MembershipBillingCycleType, b1 as MembershipCreateDto, b2 as MembershipDto, bW as MembershipRestriction, _ as MembershipStatus, $ as MembershipType, b3 as MembershipUpdateDto, M as MonthTranslationKey, g as MouseButton, N as NANAS_PALLETTE, a0 as NetworkState, c8 as NominatimAddressResponse, c7 as NominatimResponse, dd as ObjectWithPropsOfValue, a1 as OrderDirectionType, b4 as PaginationRequestDto, b5 as PaginationResponseDto, b6 as PaymentMethodDto, bX as PermissionRestriction, a2 as PermissionType, b7 as PetCreateDto, b8 as PetDto, bY as PetRestriction, a3 as PetSexType, a4 as PetStatusType, a5 as PetType, b9 as PetUpdateDto, de as Prettify, ba as ProfileDto, bb as ProfileQuestionAndAnswersItemDto, bc as ProfileQuestionRequestDto, bd as ProfileUpdateDto, be as QuestionCreateDto, bf as QuestionDto, a7 as QuestionForType, bZ as QuestionRestriction, a6 as QuestionType, bg as QuestionUpdateDto, cw as RenderCellType, dx as SITE_CONFIG_TOKEN, bh as SearchObjDatePropRequestDto, bi as SearchObjRequestDto, bj as SearchObjTextPropRequestDto, aa as SearchableColumnInfo, a9 as SearchableColumnType, bk as SetupIntentCreateDto, bl as SetupIntentDto, b_ as StripeRestriction, S as SupportedLanguage, e as SupportedLanguageArray, bm as TempLinkCreateDto, bn as TempLinkDto, ab as TempLinkType, bo as TempRegistrationDto, ac as TempRegistrationStatus, T as ThemeType, b$ as UnavailabilityRestriction, bp as UploadCreateDto, bq as UploadDto, br as UploadImageWithLinkDto, ad as UploadLinkType, c0 as UploadRestriction, ae as UploadType, bs as UploadUpdateDto, ag as UserAccountFlagType, bt as UserCreateDto, bu as UserDto, bv as UserMembershipChangeResponseDto, bw as UserMembershipCreateDto, bx as UserMembershipDto, by as UserMembershipSignUpDto, bz as UserMembershipSignUpResponseDto, bA as UserMembershipStatsDto, bB as UserMembershipUpdateDto, bC as UserMembershipWithStripeInfoDto, bD as UserMembershipWithUserNamesDto, dl as UserMigrationReport, dk as UserMigrationReportCounts, bE as UserMigrationReportCountsDto, bF as UserMigrationReportDto, dj as UserMigrationReportUser, bG as UserMigrationReportUserDto, bH as UserPermissionDto, c1 as UserRestriction, ah as UserType, bI as UserUpdateDto, bT as UuidRestriction, c9 as ValidationResult, bJ as VersionDto, W as WeekdayTranslationKey, z as activityShortCode, cI as addDays, cH as addMinutes, cJ as addMonths, cG as addSeconds, d9 as addSpacesForEnum, cf as addToParallelTasks, dP as allowedNonNumericalValuesInContactNumber, db as anyObject, F as apiRoute, B as apiRouteParam, cd as arrayContains, cc as arrayOfNLength, d7 as capitalizeFirstLetter, dn as colourPalette, f as commonEmailLinks, cq as computeBookingNightCount, co as computeBookingStatusCounts, dQ as contactNumberCharValid, dR as contactNumberValid, k as createToken, cT as cyrb53, cM as dateDiffInDays, cQ as debounceLeading, dp as defaultSiteColour, dU as emailValid, dc as fakePromise, cp as filterBookingsByOverviewStatus, cl as formatBookingCalendarLabel, cr as formatBookingNightsTooltip, cz as formatDate, da as formatFileSize, cF as formatForBookingDate, cB as formatForDateDropdown, cA as formatForDateLocal, cE as formatForDateLocalDetailed, cC as formatForDateOfBirth, cD as formatForDateWithTime, ck as formatPetTypesLabel, di as getActiveUserMembership, cN as getAgeInYears, a8 as getAllPetQuestionForType, dw as getAppType, cR as getArrFromEnum, ch as getBookingStatusLabelForAdmin, du as getBotPath, dB as getCommonConfig, cu as getDayClassObject, cx as getDayElements, cv as getDayHeadingElements, cV as getImageParams, dC as getLog, ci as getMembershipTypeLabel, cY as getMimeTypeFromExtension, cW as getPayloadFromJwt, c_ as getPerformanceTimer, d1 as getPetAvatarUrl, cj as getPetTypeLabel, d4 as getQuestionGroups, dA as getSiteColour, dz as getSiteConfig, d0 as getUserAvatarUrl, cy as getUsersName, cO as getWeekNumber, c$ as hasRequiredPermissions, ai as hubspotQuestionsExport, cK as isBefore, dV as isNumber, cL as isSameDay, i as isWebApp, d8 as lowercaseFirstLetter, ca as makeArrayOrDefault, dT as maxDate, dH as maxItems, d$ as maxLength, dX as maxValue, cX as mimeTypeLookup, dS as minDate, dG as minItems, d_ as minLength, h as minUrlLength, dW as minValue, m as monthTranslationKeyOrder, dM as multiValidation, d3 as nameof, n as nanasFonts, dK as noValidation, dL as notNull, cb as onlyUnique, ct as parseBookingOverviewStatuses, dY as passwordValid, p as portalGlyphLength, dZ as postCodeValid, d2 as promiseFromValue, d5 as randomIntFromRange, d6 as randomItemFromArray, ds as rootContainer, dD as rootDependencyInjectionSetup, c2 as searchColumns, dI as selectedItemsExist, dJ as selectedOptionIsInEnum, dN as separateValidation, cs as serializeBookingOverviewStatuses, dE as setContainerToken, dF as setContainerTokenLazy, dy as setSiteConfig, e0 as shouldBeUrl, e1 as shouldBeYoutubeUrl, cP as showSecondCalendar, s as socialLinks, ce as timeout, cZ as tryParseNumber, af as uploadsThatNeedEncryption, dg as urlAddQueryParam, df as urlRef, dh as userMustChangePassword, cS as uuidv4, v as validUuidChars, dO as validateForEach, w as webAppTypes, c as weekdayTranslationKeyOrder } from '../textValidation-DJ7gkLTW.js';
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
  /**
@@ -1,5 +1,5 @@
1
- import { rootContainer, onlyUnique, getBotPath, getLog, getCommonConfig, formatForDateDropdown, NANAS_PALLETTE, getSiteConfig, getAppType, isWebApp, CdnAppImage, rootDependencyInjectionSetup, setContainerToken } from '../chunk/HW5CRR4G.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, 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/HW5CRR4G.js';
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 InvoiceUpdateDto 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 AuthRegisterStoreProgressDto as aA, type AuthRegisterUserDto as aB, type AuthRequestResetPasswordDto as aC, type AuthResetPasswordDto as aD, type AuthSuccessDto as aE, type BookingAddonDto as aF, type BookingCalendarOverviewItemDto as aG, type BookingCreateDto as aH, type BookingDto as aI, type BookingHostAssignDto as aJ, type BookingHostCreateDto as aK, type BookingHostDto as aL, type BookingHostUpdateDto as aM, type BookingRestrictionsDto as aN, type BookingRestrictionsEnabledDaysDto as aO, type BookingRestrictionsPremiumEnabledDaysDto as aP, type BookingUpdateDto as aQ, type BookingWithRelationshipsDto as aR, type BugReportCreateDto as aS, type BugReportDto as aT, type BugReportUpdateDto as aU, type ClientAnswerSaveDto as aV, type CommentCreateDto as aW, type CommentDto as aX, type CommentUpdateDto as aY, type InvoiceCreateDto as aZ, type InvoiceDto as a_, type SearchableColumnInfo as aa, TempLinkType as ab, TempRegistrationStatus as ac, UploadLinkType as ad, UploadType as ae, uploadsThatNeedEncryption as af, UserAccountFlagType as ag, UserType as ah, hubspotQuestionsExport as ai, type ActivityDto as aj, type AddressCreateDto as ak, type AddressDto as al, type AddressLookupDto as am, type AddressUpdateDto as an, type AnswerCreateDto as ao, type AnswerDto as ap, type AuthChangePasswordDto as aq, type AuthLoginDto as ar, type AuthPatDto as as, type AuthRegisterAddressDto as at, type AuthRegisterDto as au, type AuthRegisterGetQuestionsDto as av, type AuthRegisterGetTempUploadUrlDto as aw, type AuthRegisterGetTempUploadUrlResponseDto as ax, type AuthRegisterPetDto as ay, type AuthRegisterQuestionDto as az, type IDependencyInjectionSetupProps as b, UnavailabilityRestriction as b$, type InvoiceWithStripeInfoDto as b0, type MembershipCreateDto as b1, type MembershipDto as b2, type MembershipUpdateDto as b3, type PaginationRequestDto as b4, type PaginationResponseDto as b5, type PaymentMethodDto as b6, type PetCreateDto as b7, type PetDto as b8, type PetUpdateDto as b9, type UserMembershipStatsDto as bA, type UserMembershipUpdateDto as bB, type UserMembershipWithStripeInfoDto as bC, type UserMembershipWithUserNamesDto as bD, type UserMigrationReportCountsDto as bE, type UserMigrationReportDto as bF, type UserMigrationReportUserDto as bG, type UserPermissionDto as bH, type UserUpdateDto as bI, type VersionDto as bJ, type JwtPayloadDto as bK, ActivityRestriction as bL, AddressRestriction as bM, AnswerRestriction as bN, AuthRegisterRestriction as bO, BookingRestriction as bP, BookingAddonRestriction as bQ, BugReportRestriction as bR, CommentRestriction as bS, UuidRestriction as bT, DrivingRouteRestriction as bU, InvoiceRestriction as bV, MembershipRestriction as bW, PermissionRestriction as bX, PetRestriction as bY, QuestionRestriction as bZ, StripeRestriction as b_, type ProfileDto as ba, type ProfileQuestionAndAnswersItemDto as bb, type ProfileQuestionRequestDto as bc, type ProfileUpdateDto as bd, type QuestionCreateDto as be, type QuestionDto as bf, type QuestionUpdateDto as bg, type SearchObjDatePropRequestDto as bh, type SearchObjRequestDto as bi, type SearchObjTextPropRequestDto as bj, type SetupIntentCreateDto as bk, type SetupIntentDto as bl, type TempLinkCreateDto as bm, type TempLinkDto as bn, type TempRegistrationDto as bo, type UploadCreateDto as bp, type UploadDto as bq, type UploadImageWithLinkDto as br, type UploadUpdateDto as bs, type UserCreateDto as bt, type UserDto as bu, type UserMembershipChangeResponseDto as bv, type UserMembershipCreateDto as bw, type UserMembershipDto as bx, type UserMembershipSignUpDto as by, type UserMembershipSignUpResponseDto as bz, weekdayTranslationKeyOrder as c, hasRequiredPermissions as c$, UploadRestriction as c0, UserRestriction as c1, searchColumns as c2, type ICaptchaResponse as c3, type LogMethod as c4, type ILogMessage as c5, type IMediaUpload as c6, type NominatimResponse as c7, type NominatimAddressResponse as c8, type ValidationResult as c9, formatForDateLocal as cA, formatForDateDropdown as cB, formatForDateOfBirth as cC, formatForDateWithTime as cD, formatForDateLocalDetailed as cE, formatForBookingDate as cF, addSeconds as cG, addMinutes as cH, addDays as cI, addMonths as cJ, isBefore as cK, isSameDay as cL, dateDiffInDays as cM, getAgeInYears as cN, getWeekNumber as cO, showSecondCalendar as cP, debounceLeading as cQ, getArrFromEnum as cR, uuidv4 as cS, cyrb53 as cT, type IImageParams as cU, getImageParams as cV, getPayloadFromJwt as cW, mimeTypeLookup as cX, getMimeTypeFromExtension as cY, tryParseNumber as cZ, getPerformanceTimer as c_, makeArrayOrDefault as ca, onlyUnique as cb, arrayOfNLength as cc, arrayContains as cd, timeout as ce, addToParallelTasks as cf, type BookingCalendarOverviewItem as cg, getBookingStatusLabelForAdmin as ch, getMembershipTypeLabel as ci, getPetTypeLabel as cj, formatPetTypesLabel as ck, formatBookingCalendarLabel as cl, BOOKING_OVERVIEW_STATUSES as cm, type BookingStatusCounts as cn, computeBookingStatusCounts as co, filterBookingsByOverviewStatus as cp, computeBookingNightCount as cq, formatBookingNightsTooltip as cr, serializeBookingOverviewStatuses as cs, parseBookingOverviewStatuses as ct, getDayClassObject as cu, getDayHeadingElements as cv, type RenderCellType as cw, getDayElements as cx, getUsersName as cy, formatDate as cz, CdnAppImage as d, maxLength as d$, getUserAvatarUrl as d0, getPetAvatarUrl as d1, promiseFromValue as d2, nameof as d3, getQuestionGroups as d4, randomIntFromRange as d5, randomItemFromArray as d6, capitalizeFirstLetter as d7, lowercaseFirstLetter as d8, addSpacesForEnum as d9, getSiteColour as dA, getCommonConfig as dB, getLog as dC, rootDependencyInjectionSetup as dD, setContainerToken as dE, setContainerTokenLazy as dF, minItems as dG, maxItems as dH, selectedItemsExist as dI, selectedOptionIsInEnum as dJ, noValidation as dK, notNull as dL, multiValidation as dM, separateValidation as dN, validateForEach as dO, allowedNonNumericalValuesInContactNumber as dP, contactNumberCharValid as dQ, contactNumberValid as dR, minDate as dS, maxDate as dT, emailValid as dU, isNumber as dV, minValue as dW, maxValue as dX, passwordValid as dY, postCodeValid as dZ, minLength as d_, formatFileSize as da, anyObject as db, fakePromise as dc, type ObjectWithPropsOfValue as dd, type Prettify as de, urlRef as df, urlAddQueryParam as dg, userMustChangePassword as dh, getActiveUserMembership as di, type UserMigrationReportUser as dj, type UserMigrationReportCounts as dk, type UserMigrationReport as dl, type ISiteColour as dm, colourPalette as dn, defaultSiteColour as dp, type ISite as dq, DependencyInjectionContainer as dr, rootContainer as ds, BOT_PATH_TOKEN as dt, getBotPath as du, APP_TYPE_TOKEN as dv, getAppType as dw, SITE_CONFIG_TOKEN as dx, setSiteConfig as dy, getSiteConfig as dz, SupportedLanguageArray as e, shouldBeUrl as e0, shouldBeYoutubeUrl as e1, type IFormCalendarPickerProps as e2, type FullDateSelectionProps as e3, type FormCalendarPickerMode as e4, type FormCalendarDatePickerRangeProps as e5, type DateSelectionProps as e6, type FormCalendarPickerInnerProps as e7, type FormInputProps as e8, type FormCalendarSpecialRangeDisplayProps as e9, type FormCalendarSpecialRangeProps as ea, type ValidFormTypes as eb, type ValidFormComponentTypes as ec, type PropertyOverrides as ed, 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 };
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 };