@riverbankcms/sdk 0.60.12 → 0.60.14
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/README.md +10 -7
- package/dist/_dts/api/src/bookingConfig.d.ts +31 -1
- package/dist/_dts/api/src/bookingManagementEndpoints.d.ts +38 -1
- package/dist/_dts/api/src/bookingOperations.d.ts +3 -0
- package/dist/_dts/api/src/bookingRecords.d.ts +45 -0
- package/dist/_dts/api/src/bookingRefundOutcomes.d.ts +4 -4
- package/dist/_dts/api/src/commercePortalEndpoints.d.ts +1 -5
- package/dist/_dts/api/src/communications.d.ts +1 -1
- package/dist/_dts/api/src/contentRuntime.d.ts +1 -1
- package/dist/_dts/api/src/endpoints.d.ts +89 -9
- package/dist/_dts/api/src/index.d.ts +2 -1
- package/dist/_dts/api/src/publicExperienceEndpoints.d.ts +1 -0
- package/dist/_dts/api/src/seoEndpoints.d.ts +2 -0
- package/dist/_dts/api/src/siteAssets.d.ts +0 -10
- package/dist/_dts/api/src/types.d.ts +1 -1
- package/dist/_dts/blocks/src/PageRenderer.d.ts +1 -0
- package/dist/_dts/blocks/src/index.d.ts +1 -0
- package/dist/_dts/blocks/src/portal/types.d.ts +1 -1
- package/dist/_dts/blocks/src/server.d.ts +1 -0
- package/dist/_dts/blocks/src/subroutes/fold.d.ts +40 -0
- package/dist/_dts/blocks/src/subroutes/formatDate.d.ts +12 -0
- package/dist/_dts/blocks/src/subroutes/index.d.ts +3 -0
- package/dist/_dts/blocks/src/subroutes/kinds.d.ts +32 -0
- package/dist/_dts/blocks/src/system/fields/boxStyles.d.ts +3 -1
- package/dist/_dts/blocks/src/system/helpers/resolveBackground.d.ts +2 -0
- package/dist/_dts/blocks/src/system/runtime/nodes/course-registration/types.d.ts +1 -0
- package/dist/_dts/blocks/src/system/runtime/nodes/course-registration.interactive.d.ts +1 -0
- package/dist/_dts/blocks/src/system/spacing.d.ts +2 -1
- package/dist/_dts/blocks/src/system/transforms/registry/layout.d.ts +5 -0
- package/dist/_dts/blocks/src/system/transforms/typed.d.ts +5 -1
- package/dist/_dts/core/src/booking-refunds.d.ts +8 -0
- package/dist/_dts/core/src/participant-identity.d.ts +1 -73
- package/dist/_dts/core/src/participants.d.ts +19 -7
- package/dist/_dts/db/src/generated/supabase/database.types.d.ts +188 -36
- package/dist/_dts/preview-next/src/client/preview/EntryEditorPanel.d.ts +3 -3
- package/dist/_dts/preview-next/src/client/preview/PreviewEditorSidebar.d.ts +3 -3
- package/dist/_dts/preview-next/src/client/preview/PreviewShell.d.ts +3 -3
- package/dist/_dts/preview-next/src/client/preview/PreviewShellLayout.d.ts +3 -3
- package/dist/_dts/preview-next/src/client/preview/SubrouteNoticePanel.d.ts +13 -0
- package/dist/_dts/preview-next/src/client/preview/subrouteNotice.d.ts +26 -0
- package/dist/_dts/sdk/src/contracts/page.d.ts +1 -0
- package/dist/_dts/sdk/src/public-api/contracts.d.ts +1 -0
- package/dist/_dts/sdk/src/rendering/islands/types.d.ts +1 -0
- package/dist/_dts/sdk/src/routing/resolvePageContent.d.ts +4 -5
- package/dist/_dts/sdk/src/version.d.ts +1 -1
- package/dist/_dts/theme-core/src/buttons/personalities/index.d.ts +11 -0
- package/dist/_dts/theme-core/src/buttons/personalities/showtime-pill.d.ts +17 -0
- package/dist/_dts/theme-core/src/buttons/types.d.ts +1 -1
- package/dist/_dts/theme-core/src/generated/containerResponsiveThemeCss.d.ts +1 -1
- package/dist/_dts/theme-core/src/mock-themes/all.d.ts +66 -30
- package/dist/_dts/theme-core/src/palette/variants/brand-led.d.ts +16 -0
- package/dist/_dts/theme-core/src/palette/variants/index.d.ts +15 -0
- package/dist/_dts/theme-core/src/palette/variants/types.d.ts +3 -3
- package/dist/_dts/theme-core/src/schema.d.ts +174 -6
- package/dist/_dts/theme-core/src/site-styles/appearancePresets.d.ts +328 -15
- package/dist/_dts/theme-core/src/site-styles/curatedSiteStyles.d.ts +54 -2
- package/dist/_dts/theme-core/src/site-styles/designState.d.ts +124 -0
- package/dist/_dts/theme-core/src/site-styles/generatedSchemas.d.ts +4 -2
- package/dist/_dts/theme-core/src/site-styles/index.d.ts +1 -0
- package/dist/_dts/theme-core/src/site-styles/lookResolution.d.ts +21 -0
- package/dist/_dts/theme-core/src/site-styles/pageDesignEditorModel.d.ts +2 -1
- package/dist/_dts/theme-core/src/site-styles/previewCompiler.d.ts +1 -1
- package/dist/_dts/theme-core/src/site-styles/types.d.ts +135 -2
- package/dist/_dts/ui/src/badge.d.ts +1 -1
- package/dist/_dts/ui/src/button.d.ts +1 -1
- package/dist/cli/index.mjs +744 -176
- package/dist/client/bookings.mjs +115 -63
- package/dist/client/client.mjs +848 -227
- package/dist/client/hooks.mjs +737 -173
- package/dist/client/rendering/client.mjs +179 -100
- package/dist/client/rendering/islands.mjs +179 -99
- package/dist/client/rendering.mjs +847 -226
- package/dist/preview-next/before-render.mjs +103 -16
- package/dist/preview-next/client/runtime.mjs +1615 -319
- package/dist/preview-next/middleware.mjs +103 -16
- package/dist/server/components.mjs +838 -227
- package/dist/server/config-validation.mjs +737 -173
- package/dist/server/config.mjs +737 -173
- package/dist/server/data.mjs +737 -173
- package/dist/server/index.mjs +106 -79
- package/dist/server/next.mjs +841 -229
- package/dist/server/page-converter.mjs +589 -144
- package/dist/server/prebuild.mjs +1 -1
- package/dist/server/rendering/server.mjs +838 -227
- package/dist/server/rendering.mjs +838 -227
- package/dist/server/routing.mjs +771 -178
- package/dist/server/server.mjs +738 -174
- package/dist/server/theme-bridge.mjs +216 -39
- package/dist/server/theme.mjs +139 -37
- package/dist/styles/index.css +44 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3235,7 +3235,7 @@ export { generateMetadata };
|
|
|
3235
3235
|
This single call replaces ~160 lines of typical boilerplate that handles:
|
|
3236
3236
|
- Path resolution from URL slugs
|
|
3237
3237
|
- Content loading (pages and entries)
|
|
3238
|
-
-
|
|
3238
|
+
- Entry subroute routing (event occurrences at `/events/yoga-class/2025-01-15`, course runs at `/courses/yoga-101/spring-2026`, …)
|
|
3239
3239
|
- Preview mode detection
|
|
3240
3240
|
- Template rendering for entries
|
|
3241
3241
|
- SEO metadata generation
|
|
@@ -3252,16 +3252,19 @@ RIVERBANK_PREVIEW_MODE=true
|
|
|
3252
3252
|
|
|
3253
3253
|
When enabled, `loadContent()` fetches draft/unpublished content instead of published content.
|
|
3254
3254
|
|
|
3255
|
-
###
|
|
3255
|
+
### Entry Subroute Routing
|
|
3256
3256
|
|
|
3257
|
-
For
|
|
3257
|
+
For content types that declare `routing.subroutes` (events, courses, …), `createCatchAllPage` automatically handles "one-extra-segment" URLs under the parent entry. For example, with an event entry at `/events/yoga-class` and a course entry at `/courses/yoga-101`:
|
|
3258
3258
|
|
|
3259
|
-
- `/events/yoga-class/2025-01-15`
|
|
3260
|
-
- `/events/yoga-class/abc123-def4-...`
|
|
3259
|
+
- `/events/yoga-class/2025-01-15` — date-based event occurrence (ISO date)
|
|
3260
|
+
- `/events/yoga-class/abc123-def4-...` — UUID-based event occurrence
|
|
3261
|
+
- `/courses/yoga-101/spring-2026` — slug-based course run
|
|
3261
3262
|
|
|
3262
|
-
The page detects these patterns using local route matching (no extra API calls), fetches the parent
|
|
3263
|
+
The page detects these patterns using local route matching (no extra API calls), fetches the parent entry, and calls the public resolve endpoint to fetch the subroute payload. The result is passed to blocks via `dataContext.entrySubrouteContext`, a discriminated union of `{ kind: 'event-occurrence'; occurrence } | { kind: 'course-run'; run }`. Blocks that need it (event registration, course registration) read the variant they care about.
|
|
3263
3264
|
|
|
3264
|
-
Invalid
|
|
3265
|
+
Invalid subroute segments (e.g., `/events/yoga-class/invalid-date`) return a 404.
|
|
3266
|
+
|
|
3267
|
+
See [`docs/guides/entry-subroutes.md`](../../docs/guides/entry-subroutes.md) for the full data flow and instructions for adding a new subroute kind.
|
|
3265
3268
|
|
|
3266
3269
|
### Escape Hatches
|
|
3267
3270
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { EventOnlineDetails, EventOnlineDetailsInput } from "./bookingRecords";
|
|
2
2
|
import type { SiteVerticalBookingConfig } from "./bookingVerticals";
|
|
3
|
-
import type { EventPricingMode } from "@riverbankcms/core";
|
|
3
|
+
import type { EventPricingMode, StaffMemberId, UserId } from "@riverbankcms/core";
|
|
4
4
|
export type { EventPricingMode } from "@riverbankcms/core";
|
|
5
5
|
/**
|
|
6
6
|
* Booking Configuration Contracts
|
|
@@ -344,6 +344,31 @@ export type BookingNotificationSettings = {
|
|
|
344
344
|
defaultRule: BookingNotificationRule;
|
|
345
345
|
overrides: Partial<Record<BookingNotificationUpdateKind, BookingNotificationRule>>;
|
|
346
346
|
};
|
|
347
|
+
export type AppointmentStaffReminderSettings = {
|
|
348
|
+
kind: "disabled";
|
|
349
|
+
} | {
|
|
350
|
+
kind: "daily_digest";
|
|
351
|
+
/** Site-local HH:mm send time. */
|
|
352
|
+
localSendTime: string;
|
|
353
|
+
};
|
|
354
|
+
export declare const DEFAULT_APPOINTMENT_STAFF_DIGEST_LOCAL_SEND_TIME = "07:00";
|
|
355
|
+
export type AppointmentStaffChangeNotificationSettings = {
|
|
356
|
+
kind: "disabled";
|
|
357
|
+
} | {
|
|
358
|
+
kind: "send_to_assigned_linked_staff";
|
|
359
|
+
};
|
|
360
|
+
export type AppointmentStaffNotificationSetupHealth = {
|
|
361
|
+
sendableStaffCount: number;
|
|
362
|
+
unlinkedStaff: Array<{
|
|
363
|
+
staffMemberId: StaffMemberId;
|
|
364
|
+
displayName: string;
|
|
365
|
+
}>;
|
|
366
|
+
linkedUserMissingEmail: Array<{
|
|
367
|
+
staffMemberId: StaffMemberId;
|
|
368
|
+
displayName: string;
|
|
369
|
+
userId: UserId;
|
|
370
|
+
}>;
|
|
371
|
+
};
|
|
347
372
|
export type PersonRecordMode = "disabled" | "general" | "protected";
|
|
348
373
|
export type BookingVerticalConfig = SiteVerticalBookingConfig;
|
|
349
374
|
export type TeamMemberProfilePagePolicyMode = "disabled" | "selected" | "all";
|
|
@@ -383,6 +408,10 @@ export type BookingSettings = {
|
|
|
383
408
|
eventOrganizerEmail: string | null;
|
|
384
409
|
/** Site-wide internal booking update notifications. */
|
|
385
410
|
notificationSettings: BookingNotificationSettings;
|
|
411
|
+
/** Staff-facing appointment reminders, separate from customer appointment reminders. */
|
|
412
|
+
appointmentStaffReminder: AppointmentStaffReminderSettings;
|
|
413
|
+
/** Immediate staff-facing notifications for appointment booking changes. */
|
|
414
|
+
appointmentStaffChangeNotifications: AppointmentStaffChangeNotificationSettings;
|
|
386
415
|
/** Shared waitlist defaults for events and courses. */
|
|
387
416
|
waitlists: BookingWaitlistSettings;
|
|
388
417
|
/** Enable event ticketing by default for new/updated event series (can be overridden per series). */
|
|
@@ -413,5 +442,6 @@ export type BookingSettingsEditorSnapshot = {
|
|
|
413
442
|
settings: BookingSettings;
|
|
414
443
|
updatedAt: string | null;
|
|
415
444
|
currencyEditState: BookingCurrencyEditState;
|
|
445
|
+
appointmentStaffNotificationSetupHealth: AppointmentStaffNotificationSetupHealth;
|
|
416
446
|
};
|
|
417
447
|
export type BookingSettingsResponse = BookingSettingsEditorSnapshot;
|
|
@@ -5,7 +5,7 @@ import type { BookingRequirementConfigRequest, BookingRequirementConfigResponse,
|
|
|
5
5
|
import type { BookingSettingsResponse, CreateEventSeriesRequest, EventSeriesRecord, UpdateBookingSettingsRequest, UpdateEventSeriesRequest } from "./bookingConfig";
|
|
6
6
|
import type { AdjustCustomerPassDetailsRequest, AdjustCustomerPassDetailsResponse, AssignCustomerMembershipRequest, AssignCustomerMembershipResponse, AssignCustomerPassRequest, AssignCustomerPassResponse, CancelCustomerMembershipAtPeriodEndRequest, CancelCustomerMembershipAtPeriodEndResponse, ConvertCreditRefundToCashRequest, ConvertCreditRefundToCashResponse, ListCustomerMembershipPaymentRefundsResponse, ListCustomerMembershipPaymentsResponse, ListCustomerPassRefundsResponse, RefundCustomerMembershipPaymentRequest, RefundCustomerMembershipPaymentResponse, RefundCustomerPassRequest, RefundCustomerPassResponse } from "./bookingAdjustments";
|
|
7
7
|
import type { AppointmentResourceResponse, AppointmentServiceResponse, BookingAppointmentWithDetails, CreateAppointmentResourceRequest, CreateAppointmentServiceRequest, CreateTeamMemberProfileResponse, DiscardTeamMemberProfileDraftResponse, DeleteServiceResponse, ListAppointmentResourcesResponse, ListAppointmentServicesResponse, ListCourseEnrollmentRefundsResponse, ListEventAttendeeRefundsResponse, ListEventAttendeeTransfersResponse, OpsCancelEventAttendeeRequest, OpsCancelEventAttendeeResponse, OpsEventAttendeeDetailsResponse, OpsListUpcomingEventOccurrencesResponse, OpsOccurrenceAttendeesResponse, OpsRefundEventAttendeeResponse, OpsUpdateEventAttendeeCheckinRequest, OpsUpdateEventAttendeeCheckinResponse, OpsValidateEventTicketRequest, OpsValidateEventTicketResponse, ReferenceOptionsResponse, RemoveAppointmentResourceResponse, RefundCourseEnrollmentRequest, RefundCourseEnrollmentResponse, RefundEventAttendeeRequest, RefundEventAttendeeResponse, TransferEventAttendeeRequest, TransferEventAttendeeResponse, UpdateAppointmentResourceRequest, UpdateAppointmentServiceRequest, PublishTeamMemberProfileRequest, PublishTeamMemberProfileResponse, CancelScheduledTeamMemberProfileResponse, ScheduleTeamMemberProfileRequest, ScheduleTeamMemberProfileResponse, TeamMemberProfileContentResponse, UnpublishTeamMemberProfileResponse, UpdateTeamMemberProfileContentRequest, UpdateTeamMemberProfilePolicyRequest, UpdateTeamMemberProfilePolicyResponse, UpdateTeamMemberProfileRouteMetadataRequest, UpdateTeamMemberProfileRouteMetadataResponse } from "./bookingOperations";
|
|
8
|
-
import type { AddEventOccurrenceAttendeeRequest, AddEventOccurrenceAttendeeResponse, AdjustCustomerCreditRequest, AdjustCustomerCreditResponse, BookingEventSeriesAttendee, BookingMembershipResponse, BookingPassResponse, CheckEventAdminEligibilityRequest, CheckEventAdminEligibilityResponse, CreateBookingCustomerRequest, CreateBookingCustomerResponse, RectifyBookingCustomerProfileRequest, RectifyBookingCustomerProfileResponse, CreateBookingMembershipRequest, CreateBookingPassRequest, CreateDiscountCodeRequest, CreateEventCategoryRequest, CreateOccurrenceRequest, CreateVenueRequest, DeleteDiscountCodeResponse, DeleteVenueResponse, DiscountCodeResponse, EventCategoryResponse, EventOccurrenceListRecord, EventOccurrenceRecord, GeocodeVenueRequest, GeocodeVenueResponse, GetCustomerCreditResponse, GetMoneyReportRequest, GetMoneyReportResponse, ListBookingActivityRequest, ListBookingActivityResponse, ListBookingCustomersRequest, ListBookingCustomersResponse, ListBookingMembershipsRequest, ListBookingMembershipsResponse, ListBookingPassesRequest, ListBookingPassesResponse, ListCustomerAttendancesRequest, ListCustomerAttendancesResponse, ListCustomerMembershipsResponse, ListCustomerPassesResponse, CreatePersonRecordEntryRequest, CreatePersonRecordEntryResponse, ListDiscountCodesResponse, ListDiscountRedemptionsRequest, ListDiscountRedemptionsResponse, ListEventCategoriesResponse, ListMoneyPaymentsRequest, ListMoneyPaymentsResponse, ListSiteCustomerMembershipsRequest, ListSiteCustomerMembershipsResponse, ListSiteCustomerPassesRequest, ListSiteCustomerPassesResponse, UpdateBookingMembershipRequest, UpdateBookingPassRequest, UpdateDiscountCodeRequest, UpdateEventCategoryRequest, UpdateOccurrenceRequest, UpdateVenueRequest, VenueRecord } from "./bookingRecords";
|
|
8
|
+
import type { AddEventOccurrenceAttendeeRequest, AddEventOccurrenceAttendeeResponse, AdjustCustomerCreditRequest, AdjustCustomerCreditResponse, BookingEventSeriesAttendee, BookingMembershipResponse, BookingPassResponse, CheckEventAdminEligibilityRequest, CheckEventAdminEligibilityResponse, CreateBookingCustomerRequest, CreateBookingCustomerResponse, RectifyBookingCustomerProfileRequest, RectifyBookingCustomerProfileResponse, RectifyBookingParticipantIdentityRequest, RectifyBookingParticipantIdentityResponse, CreateBookingMembershipRequest, CreateBookingPassRequest, CreateDiscountCodeRequest, CreateEventCategoryRequest, CreateOccurrenceRequest, CreateVenueRequest, DeleteDiscountCodeResponse, DeleteVenueResponse, DiscountCodeResponse, EventCategoryResponse, EventOccurrenceListRecord, EventOccurrenceRecord, GeocodeVenueRequest, GeocodeVenueResponse, GetCustomerCreditResponse, GetMoneyReportRequest, GetMoneyReportResponse, ListBookingActivityRequest, ListBookingActivityResponse, ListBookingCustomersRequest, ListBookingCustomersResponse, ListBookingMembershipsRequest, ListBookingMembershipsResponse, ListBookingPassesRequest, ListBookingPassesResponse, ListCustomerAttendancesRequest, ListCustomerAttendancesResponse, ListCustomerMembershipsResponse, ListCustomerPassesResponse, CreatePersonRecordEntryRequest, CreatePersonRecordEntryResponse, ListDiscountCodesResponse, ListDiscountRedemptionsRequest, ListDiscountRedemptionsResponse, ListEventCategoriesResponse, ListMoneyPaymentsRequest, ListMoneyPaymentsResponse, ListSiteCustomerMembershipsRequest, ListSiteCustomerMembershipsResponse, ListSiteCustomerPassesRequest, ListSiteCustomerPassesResponse, UpdateBookingMembershipRequest, UpdateBookingPassRequest, UpdateDiscountCodeRequest, UpdateEventCategoryRequest, UpdateOccurrenceRequest, UpdateVenueRequest, VenueRecord } from "./bookingRecords";
|
|
9
9
|
import type { ApplyAppointmentSetupRequest, ApplyAppointmentSetupResponse, AppointmentSetupResponse } from "./appointmentSetup";
|
|
10
10
|
import type { AddCourseEnrollmentRequest, AddCourseEnrollmentResponse, CourseRecord, CreateCourseRequest, CreateCourseResponse, DashboardWaitlistListResponse, DeleteCourseProgramResponse, DeleteCourseResponse, DuplicateCourseRequest, DuplicateCourseResponse, ListCourseEnrollmentsResponse, UpdateCourseEnrollmentRequest, UpdateCourseEnrollmentResponse, UpdateCourseRequest, UpdateCourseResponse, WaitlistDashboardActionResponse } from "./courses";
|
|
11
11
|
import type { GetEmailSettingsResponse, GetEventSeriesEmailTemplatesResponse, GetNewsletterCampaignRecipientsSummaryResponse, GetNewsletterCampaignResponse, GetNewsletterCampaignStatsResponse, GetNewsletterSettingsResponse, GetNewsletterSubscriberResponse, GetNewsletterTemplateResponse, ListNewsletterCampaignsResponse, ListNewsletterListMembersQuery, ListNewsletterListMembersResponse, ListNewsletterListsResponse, ListNewsletterSendJobsQuery, ListNewsletterSendJobsResponse, ListNewsletterSubscribersQuery, ListNewsletterSubscribersResponse, ListNewsletterTagsResponse, ListNewsletterTemplatesResponse, PreviewEmailTemplateRequest, PreviewEmailTemplateResponse, PreviewNewsletterTemplateRequest, PreviewNewsletterTemplateResponse, RectifyNewsletterSubscriberRequest, RectifyNewsletterSubscriberResponse, SendTestEmailRequest, SendTestEmailResponse, UpdateEmailSettingsRequest, UpdateEmailSettingsResponse, UpdateEventSeriesEmailTemplatesRequest, UpdateEventSeriesEmailTemplatesResponse, UpdateNewsletterCampaignRequest, UpdateNewsletterCampaignResponse, UpdateNewsletterListMembershipsRequest, UpdateNewsletterListMembershipsResponse, UpdateNewsletterListRequest, UpdateNewsletterListResponse, UpdateNewsletterSettingsRequest, UpdateNewsletterSettingsResponse, UpdateNewsletterSubscriberRequest, UpdateNewsletterSubscriberResponse, UpdateNewsletterTemplateRequest, UpdateNewsletterTemplateResponse, UpsertNewsletterSubscriberRequest, UpsertNewsletterSubscriberResponse, ImportNewsletterSubscribersCsvResponse, ExportNewsletterSubscribersCsvResponse, DeleteNewsletterSubscriberResponse, AnonymizeNewsletterSubscriberResponse, ExportNewsletterSubscriberDataResponse, CreateNewsletterListRequest, CreateNewsletterListResponse, DeleteNewsletterListResponse, CreateNewsletterTemplateRequest, CreateNewsletterTemplateResponse, DeleteNewsletterTemplateResponse, CreateNewsletterCampaignRequest, CreateNewsletterCampaignResponse, DeleteNewsletterCampaignResponse, SendNewsletterCampaignNowRequest, SendNewsletterCampaignNowResponse, TestSendNewsletterCampaignRequest, TestSendNewsletterCampaignResponse, RetryNewsletterSendJobResponse, CancelNewsletterSendJobResponse } from "./communications";
|
|
@@ -373,6 +373,14 @@ export type BookingManagementAPIEndpoints = {
|
|
|
373
373
|
}, {
|
|
374
374
|
appointments: BookingAppointmentWithDetails[];
|
|
375
375
|
}>;
|
|
376
|
+
exportBookingAppointmentsCsv: APIEndpoint<never, {
|
|
377
|
+
siteId: string;
|
|
378
|
+
status?: string;
|
|
379
|
+
resourceId?: string;
|
|
380
|
+
serviceId?: string;
|
|
381
|
+
startDate?: string;
|
|
382
|
+
endDate?: string;
|
|
383
|
+
}, Blob>;
|
|
376
384
|
createAppointment: APIEndpoint<CreateAppointmentRequest, {
|
|
377
385
|
siteId: string;
|
|
378
386
|
}, CreateAppointmentResponse>;
|
|
@@ -446,6 +454,12 @@ export type BookingManagementAPIEndpoints = {
|
|
|
446
454
|
status?: string;
|
|
447
455
|
excludeCancelled?: string;
|
|
448
456
|
}, ListCourseEnrollmentsResponse>;
|
|
457
|
+
exportCourseEnrollmentsCsv: APIEndpoint<never, {
|
|
458
|
+
siteId: string;
|
|
459
|
+
courseId: string;
|
|
460
|
+
status?: string;
|
|
461
|
+
excludeCancelled?: string;
|
|
462
|
+
}, Blob>;
|
|
449
463
|
listCourseWaitlist: APIEndpoint<never, {
|
|
450
464
|
siteId: string;
|
|
451
465
|
courseId: string;
|
|
@@ -485,6 +499,10 @@ export type BookingManagementAPIEndpoints = {
|
|
|
485
499
|
siteId: string;
|
|
486
500
|
seriesId: string;
|
|
487
501
|
}, BookingEventSeriesAttendee[]>;
|
|
502
|
+
exportEventSeriesAttendeesCsv: APIEndpoint<never, {
|
|
503
|
+
siteId: string;
|
|
504
|
+
seriesId: string;
|
|
505
|
+
}, Blob>;
|
|
488
506
|
listEventSeriesWaitlist: APIEndpoint<never, {
|
|
489
507
|
siteId: string;
|
|
490
508
|
seriesId: string;
|
|
@@ -710,6 +728,9 @@ export type BookingManagementAPIEndpoints = {
|
|
|
710
728
|
listBookingCustomers: APIEndpoint<never, {
|
|
711
729
|
siteId: string;
|
|
712
730
|
} & ListBookingCustomersRequest, ListBookingCustomersResponse>;
|
|
731
|
+
exportBookingCustomersCsv: APIEndpoint<never, {
|
|
732
|
+
siteId: string;
|
|
733
|
+
} & ListBookingCustomersRequest, Blob>;
|
|
713
734
|
createBookingCustomer: APIEndpoint<CreateBookingCustomerRequest, {
|
|
714
735
|
siteId: string;
|
|
715
736
|
}, CreateBookingCustomerResponse>;
|
|
@@ -717,6 +738,10 @@ export type BookingManagementAPIEndpoints = {
|
|
|
717
738
|
siteId: string;
|
|
718
739
|
customerId: string;
|
|
719
740
|
}, RectifyBookingCustomerProfileResponse>;
|
|
741
|
+
rectifyBookingParticipantIdentity: APIEndpoint<RectifyBookingParticipantIdentityRequest, {
|
|
742
|
+
siteId: string;
|
|
743
|
+
participantId: string;
|
|
744
|
+
}, RectifyBookingParticipantIdentityResponse>;
|
|
720
745
|
listCustomerPasses: APIEndpoint<never, {
|
|
721
746
|
siteId: string;
|
|
722
747
|
customerId: string;
|
|
@@ -761,9 +786,21 @@ export type BookingManagementAPIEndpoints = {
|
|
|
761
786
|
listMoneyPayments: APIEndpoint<never, {
|
|
762
787
|
siteId: string;
|
|
763
788
|
} & ListMoneyPaymentsRequest, ListMoneyPaymentsResponse>;
|
|
789
|
+
exportMoneyPaymentsCsv: APIEndpoint<never, {
|
|
790
|
+
siteId: string;
|
|
791
|
+
} & ListMoneyPaymentsRequest, Blob>;
|
|
792
|
+
exportMoneyBreakdownsCsv: APIEndpoint<never, {
|
|
793
|
+
siteId: string;
|
|
794
|
+
} & GetMoneyReportRequest, Blob>;
|
|
795
|
+
exportMoneyTimeSeriesCsv: APIEndpoint<never, {
|
|
796
|
+
siteId: string;
|
|
797
|
+
} & GetMoneyReportRequest, Blob>;
|
|
764
798
|
listBookingActivity: APIEndpoint<never, {
|
|
765
799
|
siteId: string;
|
|
766
800
|
} & ListBookingActivityRequest, ListBookingActivityResponse>;
|
|
801
|
+
exportBookingActivityCsv: APIEndpoint<never, {
|
|
802
|
+
siteId: string;
|
|
803
|
+
} & Omit<ListBookingActivityRequest, "limit" | "cursor">, Blob>;
|
|
767
804
|
listSiteActivityLogs: APIEndpoint<never, {
|
|
768
805
|
siteId: string;
|
|
769
806
|
since?: string;
|
|
@@ -140,15 +140,18 @@ export type BookingRefundAmountRequest = Readonly<{
|
|
|
140
140
|
amountCents: number;
|
|
141
141
|
}>;
|
|
142
142
|
export type BookingRefundProtectedDepositOverride = "respect_policy" | "allow_protected_deposit_override";
|
|
143
|
+
export type BookingRequestedRefundMethod = "original_payment" | "site_credit";
|
|
143
144
|
export type BookingRefundCommandRequest = Readonly<{
|
|
144
145
|
kind: "refund_only";
|
|
145
146
|
amount: BookingRefundAmountRequest;
|
|
147
|
+
requestedRefundMethod: BookingRequestedRefundMethod;
|
|
146
148
|
protectedDepositOverride: BookingRefundProtectedDepositOverride;
|
|
147
149
|
}> | Readonly<{
|
|
148
150
|
kind: "refund_and_revoke";
|
|
149
151
|
amount: Readonly<{
|
|
150
152
|
kind: "full_remaining";
|
|
151
153
|
}>;
|
|
154
|
+
requestedRefundMethod: BookingRequestedRefundMethod;
|
|
152
155
|
protectedDepositOverride: BookingRefundProtectedDepositOverride;
|
|
153
156
|
}>;
|
|
154
157
|
export type RefundEventAttendeeRequest = {
|
|
@@ -12,6 +12,9 @@ export type BookingEventSeriesAttendeeGuest = {
|
|
|
12
12
|
id: string;
|
|
13
13
|
participantId?: string | null;
|
|
14
14
|
participantParticipationId?: string | null;
|
|
15
|
+
participantCustomerId?: string | null;
|
|
16
|
+
participantEmail?: string | null;
|
|
17
|
+
participantUpdatedAt?: string | null;
|
|
15
18
|
name: string;
|
|
16
19
|
phone: string | null;
|
|
17
20
|
guestIndex: number;
|
|
@@ -480,6 +483,47 @@ export type RectifyBookingCustomerProfileResponse = {
|
|
|
480
483
|
customer: BookingCustomerWithCounts;
|
|
481
484
|
changes: [];
|
|
482
485
|
};
|
|
486
|
+
export type BookingParticipantIdentityForRectification = {
|
|
487
|
+
id: string;
|
|
488
|
+
siteId: string;
|
|
489
|
+
customerId: string | null;
|
|
490
|
+
displayName: string | null;
|
|
491
|
+
email: string | null;
|
|
492
|
+
emailNormalized: string | null;
|
|
493
|
+
phone: string | null;
|
|
494
|
+
identityState: "contactable" | "portal_claimed" | "staff_verified";
|
|
495
|
+
updatedAt: string;
|
|
496
|
+
};
|
|
497
|
+
/**
|
|
498
|
+
* Identifies which admin surface initiated a direct participant identity
|
|
499
|
+
* rectification. `event_registration_guest` is the only surface wired in v1
|
|
500
|
+
* (event/retreat guest rows in the attendees tab). `participant_record` is
|
|
501
|
+
* reserved for a future participant-record editor and is accepted by the API
|
|
502
|
+
* so that surface can ship without an additional contract change.
|
|
503
|
+
*/
|
|
504
|
+
export type ParticipantIdentityRectificationSourceSurface = "event_registration_guest" | "participant_record";
|
|
505
|
+
export type ParticipantIdentityRectificationSourceContext = {
|
|
506
|
+
surface: ParticipantIdentityRectificationSourceSurface;
|
|
507
|
+
eventAttendeeId?: string | null;
|
|
508
|
+
eventGuestId?: string | null;
|
|
509
|
+
participantParticipationId?: string | null;
|
|
510
|
+
};
|
|
511
|
+
export type RectifyBookingParticipantIdentityRequest = {
|
|
512
|
+
expectedUpdatedAt: string;
|
|
513
|
+
fields: Partial<Record<CustomerContactField, string | null>>;
|
|
514
|
+
reason: string;
|
|
515
|
+
sourceContext?: ParticipantIdentityRectificationSourceContext | null;
|
|
516
|
+
};
|
|
517
|
+
export type RectifyBookingParticipantIdentityResponse = {
|
|
518
|
+
status: "updated";
|
|
519
|
+
participant: BookingParticipantIdentityForRectification;
|
|
520
|
+
auditEventId: string;
|
|
521
|
+
changes: CustomerContactChange[];
|
|
522
|
+
} | {
|
|
523
|
+
status: "noop";
|
|
524
|
+
participant: BookingParticipantIdentityForRectification;
|
|
525
|
+
changes: [];
|
|
526
|
+
};
|
|
483
527
|
export type CustomerPassRecord = {
|
|
484
528
|
id: string;
|
|
485
529
|
passId: string;
|
|
@@ -779,6 +823,7 @@ export type MoneyDateRange = {
|
|
|
779
823
|
};
|
|
780
824
|
export type MoneyReportSummary = {
|
|
781
825
|
currency: string;
|
|
826
|
+
currencies: readonly string[];
|
|
782
827
|
cashCollectedCents: MoneyComparisonMetric;
|
|
783
828
|
refundsCents: MoneyComparisonMetric;
|
|
784
829
|
netRevenueCents: MoneyComparisonMetric;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type RefundCodeClassification } from './customerMembershipOutcomes';
|
|
2
|
-
export declare const STANDARD_LINE_ITEM_REFUND_INVALID_CODES: readonly ["missing_amount", "amount_exceeds_remaining", "deposit_refund_override_required", "refund_revoke_requires_full_line_refund", "unified_order_link_required"];
|
|
2
|
+
export declare const STANDARD_LINE_ITEM_REFUND_INVALID_CODES: readonly ["missing_amount", "amount_exceeds_remaining", "credit_refunds_disabled", "missing_credit_customer", "deposit_refund_override_required", "refund_revoke_requires_full_line_refund", "unified_order_link_required"];
|
|
3
3
|
export type StandardLineItemRefundInvalidCode = (typeof STANDARD_LINE_ITEM_REFUND_INVALID_CODES)[number];
|
|
4
|
-
export declare const EVENT_ATTENDEE_REFUND_INVALID_CODES: readonly ["manual_booking_not_refundable", "missing_amount", "amount_exceeds_remaining", "deposit_refund_override_required", "refund_revoke_requires_full_line_refund", "unified_order_link_required"];
|
|
4
|
+
export declare const EVENT_ATTENDEE_REFUND_INVALID_CODES: readonly ["manual_booking_not_refundable", "missing_amount", "amount_exceeds_remaining", "credit_refunds_disabled", "missing_credit_customer", "deposit_refund_override_required", "refund_revoke_requires_full_line_refund", "unified_order_link_required"];
|
|
5
5
|
export type EventAttendeeRefundInvalidCode = (typeof EVENT_ATTENDEE_REFUND_INVALID_CODES)[number];
|
|
6
6
|
export declare const CUSTOMER_PASS_REFUND_INVALID_CODES: readonly ["credit_refunds_disabled", "not_refundable", "amount_exceeds_remaining", "pass_revoke_requires_full_refund"];
|
|
7
7
|
export type CustomerPassRefundInvalidCode = (typeof CUSTOMER_PASS_REFUND_INVALID_CODES)[number];
|
|
@@ -10,9 +10,9 @@ export type CustomerPassRefundFailedCode = (typeof CUSTOMER_PASS_REFUND_FAILED_C
|
|
|
10
10
|
export declare const CUSTOMER_PASS_REFUND_SKIPPED_CODES: readonly ["not_refundable"];
|
|
11
11
|
export type CustomerPassRefundSkippedCode = (typeof CUSTOMER_PASS_REFUND_SKIPPED_CODES)[number];
|
|
12
12
|
export type CustomerPassRefundErrorCode = CustomerPassRefundFailedCode | CustomerPassRefundSkippedCode;
|
|
13
|
-
export declare const EVENT_ATTENDEE_REFUND_FAILED_CODES: readonly ["not_found", "refund_not_allowed", "manual_booking_not_refundable", "missing_amount", "amount_exceeds_remaining", "deposit_refund_override_required", "refund_revoke_requires_full_line_refund", "unified_order_link_required", "already_refunded", "idempotency_amount_mismatch", "idempotency_method_mismatch", "refund_in_progress", "amount_exceeds_remaining", "pass_revoke_requires_full_refund", "refund_failed", "payment_intent_not_found", "stripe_error", "stale_pending_missing_context", "non_refundable_deposit_remaining"];
|
|
13
|
+
export declare const EVENT_ATTENDEE_REFUND_FAILED_CODES: readonly ["not_found", "refund_not_allowed", "manual_booking_not_refundable", "missing_amount", "amount_exceeds_remaining", "credit_refunds_disabled", "missing_credit_customer", "deposit_refund_override_required", "refund_revoke_requires_full_line_refund", "unified_order_link_required", "already_refunded", "idempotency_amount_mismatch", "idempotency_method_mismatch", "refund_in_progress", "amount_exceeds_remaining", "pass_revoke_requires_full_refund", "refund_failed", "payment_intent_not_found", "stripe_error", "stale_pending_missing_context", "non_refundable_deposit_remaining"];
|
|
14
14
|
export type EventAttendeeRefundFailedCode = (typeof EVENT_ATTENDEE_REFUND_FAILED_CODES)[number];
|
|
15
|
-
export declare const COURSE_ENROLLMENT_REFUND_FAILED_CODES: readonly ["not_found", "missing_amount", "amount_exceeds_remaining", "deposit_refund_override_required", "refund_revoke_requires_full_line_refund", "unified_order_link_required", "already_refunded", "idempotency_amount_mismatch", "idempotency_method_mismatch", "refund_in_progress", "amount_exceeds_remaining", "pass_revoke_requires_full_refund", "refund_failed", "payment_intent_not_found", "stripe_error", "stale_pending_missing_context", "non_refundable_deposit_remaining"];
|
|
15
|
+
export declare const COURSE_ENROLLMENT_REFUND_FAILED_CODES: readonly ["not_found", "missing_amount", "amount_exceeds_remaining", "credit_refunds_disabled", "missing_credit_customer", "deposit_refund_override_required", "refund_revoke_requires_full_line_refund", "unified_order_link_required", "already_refunded", "idempotency_amount_mismatch", "idempotency_method_mismatch", "refund_in_progress", "amount_exceeds_remaining", "pass_revoke_requires_full_refund", "refund_failed", "payment_intent_not_found", "stripe_error", "stale_pending_missing_context", "non_refundable_deposit_remaining"];
|
|
16
16
|
export type CourseEnrollmentRefundFailedCode = (typeof COURSE_ENROLLMENT_REFUND_FAILED_CODES)[number];
|
|
17
17
|
export declare function isCustomerPassRefundFailedCode(code: string): code is CustomerPassRefundFailedCode;
|
|
18
18
|
export declare function isEventAttendeeRefundFailedCode(code: string): code is EventAttendeeRefundFailedCode;
|
|
@@ -3,7 +3,7 @@ import type { APIEndpoint } from "./apiEndpointTypes";
|
|
|
3
3
|
import type { DeleteAccountRequest, DeleteAccountResponse } from "./accessAdmin";
|
|
4
4
|
import type { AiPlaygroundApplyRequest, AiPlaygroundApplyResponse } from "./aiPlayground";
|
|
5
5
|
import type { BillingCheckoutRequest, BillingCheckoutResponse, BillingStatusResponse, BillingSummaryResponse, SiteBillingCheckoutResponse, SiteBillingCostResponse } from "./billing";
|
|
6
|
-
import type { CreateSiteFontUploadUrlRequest, CreateSiteFontUploadUrlResponse, DeleteSiteFontFileRequest, DeleteSiteFontFileResponse, ExportBackupRequest,
|
|
6
|
+
import type { CreateSiteFontUploadUrlRequest, CreateSiteFontUploadUrlResponse, DeleteSiteFontFileRequest, DeleteSiteFontFileResponse, ExportBackupRequest, FontRecord, GetSiteFontResponse, ListPublicSiteFontsResponse, ListSiteFontsResponse, UpdateSiteFontRequest, UpdateSiteFontResponse, UploadSiteFontRequest, UploadSiteFontResponse } from "./siteAssets";
|
|
7
7
|
import type { AdminSiteCostResponse, AdminUpdateSiteCostRequest, AdminUpdateSiteCostResponse, CancelFlexibleBalanceBookingDueToNonPaymentRequest, CancelShopOrderItemRequest, CancelShopOrderItemResponse, CancelShopOrderRequest, CancelShopOrderResponse, CreateShopOrderPaymentLinkResponse, CreateOrderShipmentRequest, CreateOrderShipmentResponse, EditShopOrderAddressRequest, FlexibleBalanceAdminActionResponse, PortalAppointmentWithDetails, RefundShopOrderResponse, ReopenFlexibleBalanceBookingAfterNonPaymentCancellationRequest, SendShopOrderPaymentReminderResponse, SettleShopOrderPaymentRequest, SettleShopOrderPaymentResponse, ShopOrderDigitalFulfillmentRequest } from "./siteOperations";
|
|
8
8
|
/**
|
|
9
9
|
* Commerce and portal endpoints cover billing/account actions, portal customer flows,
|
|
@@ -57,10 +57,6 @@ export type CommercePortalAPIEndpoints = {
|
|
|
57
57
|
exportSiteBackup: APIEndpoint<ExportBackupRequest, {
|
|
58
58
|
siteId: string;
|
|
59
59
|
}, Blob>;
|
|
60
|
-
exportSeoCsv: APIEndpoint<ExportSeoCsvRequest, {
|
|
61
|
-
siteId: string;
|
|
62
|
-
type: string;
|
|
63
|
-
}, Blob>;
|
|
64
60
|
adminSiteCost: APIEndpoint<never, {
|
|
65
61
|
siteId: string;
|
|
66
62
|
}, AdminSiteCostResponse>;
|
|
@@ -252,7 +252,7 @@ export type ImportNewsletterSubscribersCsvResponse = {
|
|
|
252
252
|
}>;
|
|
253
253
|
};
|
|
254
254
|
};
|
|
255
|
-
export type ExportNewsletterSubscribersCsvResponse =
|
|
255
|
+
export type ExportNewsletterSubscribersCsvResponse = Blob;
|
|
256
256
|
export type ListNewsletterTemplatesResponse = {
|
|
257
257
|
templates: NewsletterTemplateRecord[];
|
|
258
258
|
};
|
|
@@ -92,7 +92,7 @@ export type ExportFormSubmissionsCsvQuery = {
|
|
|
92
92
|
fields?: string;
|
|
93
93
|
limit?: number;
|
|
94
94
|
};
|
|
95
|
-
export type ExportFormSubmissionsCsvResponse =
|
|
95
|
+
export type ExportFormSubmissionsCsvResponse = Blob;
|
|
96
96
|
export type ThemePreferencesRecord = CamelizeKeys<DbRow<"site_theme_preferences">>;
|
|
97
97
|
export type ThemeRow = CamelizeKeys<DbRow<"themes">>;
|
|
98
98
|
export type ThemeGenerationTurn = {
|
|
@@ -518,7 +518,7 @@ export declare const API_ENDPOINTS: {
|
|
|
518
518
|
readonly method: "GET";
|
|
519
519
|
readonly tags: ["riverbank:site:{siteId}", "riverbank:site:{siteId}:newsletter"];
|
|
520
520
|
readonly auth: "user";
|
|
521
|
-
readonly responseKind: "
|
|
521
|
+
readonly responseKind: "blob";
|
|
522
522
|
};
|
|
523
523
|
readonly getNewsletterSubscriber: {
|
|
524
524
|
readonly path: "/sites/{siteId}/newsletter/subscribers/{subscriberId}";
|
|
@@ -999,6 +999,13 @@ export declare const API_ENDPOINTS: {
|
|
|
999
999
|
readonly auth: "user";
|
|
1000
1000
|
readonly responseKind: "json";
|
|
1001
1001
|
};
|
|
1002
|
+
readonly exportBookingAppointmentsCsv: {
|
|
1003
|
+
readonly path: "/sites/{siteId}/bookings/appointments/export.csv";
|
|
1004
|
+
readonly method: "GET";
|
|
1005
|
+
readonly auth: "user";
|
|
1006
|
+
readonly errors: readonly [];
|
|
1007
|
+
readonly responseKind: "blob";
|
|
1008
|
+
};
|
|
1002
1009
|
readonly createAppointment: {
|
|
1003
1010
|
readonly path: "/sites/{siteId}/bookings/appointments";
|
|
1004
1011
|
readonly method: "POST";
|
|
@@ -1085,6 +1092,13 @@ export declare const API_ENDPOINTS: {
|
|
|
1085
1092
|
readonly auth: "user";
|
|
1086
1093
|
readonly responseKind: "json";
|
|
1087
1094
|
};
|
|
1095
|
+
readonly exportCourseEnrollmentsCsv: {
|
|
1096
|
+
readonly path: "/sites/{siteId}/bookings/courses/{courseId}/enrollments/export.csv";
|
|
1097
|
+
readonly method: "GET";
|
|
1098
|
+
readonly auth: "user";
|
|
1099
|
+
readonly errors: readonly [];
|
|
1100
|
+
readonly responseKind: "blob";
|
|
1101
|
+
};
|
|
1088
1102
|
readonly listCourseWaitlist: {
|
|
1089
1103
|
readonly path: "/sites/{siteId}/bookings/courses/{courseId}/waitlist";
|
|
1090
1104
|
readonly method: "GET";
|
|
@@ -2242,6 +2256,14 @@ export declare const API_ENDPOINTS: {
|
|
|
2242
2256
|
readonly auth: "user";
|
|
2243
2257
|
readonly responseKind: "json";
|
|
2244
2258
|
};
|
|
2259
|
+
readonly exportSeoPagesCsv: {
|
|
2260
|
+
readonly path: "/sites/{siteId}/seo/pages";
|
|
2261
|
+
readonly method: "GET";
|
|
2262
|
+
readonly tags: ["site-{siteId}", "seo-pages-{siteId}"];
|
|
2263
|
+
readonly auth: "user";
|
|
2264
|
+
readonly responseKind: "blob";
|
|
2265
|
+
readonly errors: readonly [];
|
|
2266
|
+
};
|
|
2245
2267
|
readonly getSeoQueries: {
|
|
2246
2268
|
readonly path: "/sites/{siteId}/seo/queries";
|
|
2247
2269
|
readonly method: "GET";
|
|
@@ -2250,6 +2272,14 @@ export declare const API_ENDPOINTS: {
|
|
|
2250
2272
|
readonly auth: "user";
|
|
2251
2273
|
readonly responseKind: "json";
|
|
2252
2274
|
};
|
|
2275
|
+
readonly exportSeoQueriesCsv: {
|
|
2276
|
+
readonly path: "/sites/{siteId}/seo/queries";
|
|
2277
|
+
readonly method: "GET";
|
|
2278
|
+
readonly tags: ["site-{siteId}", "seo-queries-{siteId}"];
|
|
2279
|
+
readonly auth: "user";
|
|
2280
|
+
readonly responseKind: "blob";
|
|
2281
|
+
readonly errors: readonly [];
|
|
2282
|
+
};
|
|
2253
2283
|
readonly getPerformanceOverview: {
|
|
2254
2284
|
readonly path: "/sites/{siteId}/performance/overview";
|
|
2255
2285
|
readonly method: "GET";
|
|
@@ -2609,7 +2639,7 @@ export declare const API_ENDPOINTS: {
|
|
|
2609
2639
|
readonly method: "GET";
|
|
2610
2640
|
readonly tags: ["riverbank:site:{siteId}:forms", "riverbank:form-submissions:{slug}"];
|
|
2611
2641
|
readonly auth: "user";
|
|
2612
|
-
readonly responseKind: "
|
|
2642
|
+
readonly responseKind: "blob";
|
|
2613
2643
|
};
|
|
2614
2644
|
readonly submitForm: {
|
|
2615
2645
|
readonly path: "/forms/submit";
|
|
@@ -3394,6 +3424,14 @@ export declare const API_ENDPOINTS: {
|
|
|
3394
3424
|
readonly auth: "user";
|
|
3395
3425
|
readonly responseKind: "json";
|
|
3396
3426
|
};
|
|
3427
|
+
readonly exportEventSeriesAttendeesCsv: {
|
|
3428
|
+
readonly path: "/sites/{siteId}/bookings/event-series/{seriesId}/attendees/export.csv";
|
|
3429
|
+
readonly method: "GET";
|
|
3430
|
+
readonly tags: ["site-{siteId}", "event-series-{seriesId}"];
|
|
3431
|
+
readonly auth: "user";
|
|
3432
|
+
readonly errors: readonly [];
|
|
3433
|
+
readonly responseKind: "blob";
|
|
3434
|
+
};
|
|
3397
3435
|
readonly listEventSeriesWaitlist: {
|
|
3398
3436
|
readonly path: "/sites/{siteId}/bookings/event-series/{seriesId}/waitlist";
|
|
3399
3437
|
readonly method: "GET";
|
|
@@ -3800,6 +3838,14 @@ export declare const API_ENDPOINTS: {
|
|
|
3800
3838
|
readonly auth: "user";
|
|
3801
3839
|
readonly responseKind: "json";
|
|
3802
3840
|
};
|
|
3841
|
+
readonly exportBookingCustomersCsv: {
|
|
3842
|
+
readonly path: "/sites/{siteId}/bookings/customers/export.csv";
|
|
3843
|
+
readonly method: "GET";
|
|
3844
|
+
readonly tags: ["site-{siteId}", "customers-{siteId}"];
|
|
3845
|
+
readonly auth: "user";
|
|
3846
|
+
readonly errors: readonly [];
|
|
3847
|
+
readonly responseKind: "blob";
|
|
3848
|
+
};
|
|
3803
3849
|
readonly createBookingCustomer: {
|
|
3804
3850
|
readonly path: "/sites/{siteId}/bookings/customers";
|
|
3805
3851
|
readonly method: "POST";
|
|
@@ -3816,6 +3862,14 @@ export declare const API_ENDPOINTS: {
|
|
|
3816
3862
|
readonly responseKind: "json";
|
|
3817
3863
|
readonly errors: readonly ["validation:invalid_input", "auth:forbidden", "resource:not_found", "resource:already_exists", "resource:conflict", "server:internal_error"];
|
|
3818
3864
|
};
|
|
3865
|
+
readonly rectifyBookingParticipantIdentity: {
|
|
3866
|
+
readonly path: "/sites/{siteId}/bookings/participants/{participantId}/identity";
|
|
3867
|
+
readonly method: "PATCH";
|
|
3868
|
+
readonly tags: ["site-{siteId}", "customers-{siteId}"];
|
|
3869
|
+
readonly auth: "user";
|
|
3870
|
+
readonly responseKind: "json";
|
|
3871
|
+
readonly errors: readonly ["validation:invalid_input", "auth:forbidden", "resource:not_found", "resource:already_exists", "resource:conflict", "server:internal_error"];
|
|
3872
|
+
};
|
|
3819
3873
|
readonly listCustomerPasses: {
|
|
3820
3874
|
readonly path: "/sites/{siteId}/bookings/customers/{customerId}/passes";
|
|
3821
3875
|
readonly method: "GET";
|
|
@@ -3922,13 +3976,46 @@ export declare const API_ENDPOINTS: {
|
|
|
3922
3976
|
readonly auth: "user";
|
|
3923
3977
|
readonly responseKind: "json";
|
|
3924
3978
|
};
|
|
3979
|
+
readonly exportMoneyPaymentsCsv: {
|
|
3980
|
+
readonly path: "/sites/{siteId}/bookings/money/payments/export.csv";
|
|
3981
|
+
readonly method: "GET";
|
|
3982
|
+
readonly tags: ["site-{siteId}", "bookings", "money-payments-{siteId}"];
|
|
3983
|
+
readonly errors: readonly [];
|
|
3984
|
+
readonly auth: "user";
|
|
3985
|
+
readonly responseKind: "blob";
|
|
3986
|
+
};
|
|
3987
|
+
readonly exportMoneyBreakdownsCsv: {
|
|
3988
|
+
readonly path: "/sites/{siteId}/bookings/money/report/breakdowns/export.csv";
|
|
3989
|
+
readonly method: "GET";
|
|
3990
|
+
readonly tags: ["site-{siteId}", "bookings", "money-report-{siteId}"];
|
|
3991
|
+
readonly errors: readonly [];
|
|
3992
|
+
readonly auth: "user";
|
|
3993
|
+
readonly responseKind: "blob";
|
|
3994
|
+
};
|
|
3995
|
+
readonly exportMoneyTimeSeriesCsv: {
|
|
3996
|
+
readonly path: "/sites/{siteId}/bookings/money/report/time-series/export.csv";
|
|
3997
|
+
readonly method: "GET";
|
|
3998
|
+
readonly tags: ["site-{siteId}", "bookings", "money-report-{siteId}"];
|
|
3999
|
+
readonly errors: readonly [];
|
|
4000
|
+
readonly auth: "user";
|
|
4001
|
+
readonly responseKind: "blob";
|
|
4002
|
+
};
|
|
3925
4003
|
readonly listBookingActivity: {
|
|
3926
4004
|
readonly path: "/sites/{siteId}/bookings/activity";
|
|
3927
4005
|
readonly method: "GET";
|
|
3928
4006
|
readonly tags: ["site-{siteId}", "bookings", "activity-{siteId}"];
|
|
4007
|
+
readonly errors: readonly [];
|
|
3929
4008
|
readonly auth: "user";
|
|
3930
4009
|
readonly responseKind: "json";
|
|
3931
4010
|
};
|
|
4011
|
+
readonly exportBookingActivityCsv: {
|
|
4012
|
+
readonly path: "/sites/{siteId}/bookings/activity/export.csv";
|
|
4013
|
+
readonly method: "GET";
|
|
4014
|
+
readonly tags: ["site-{siteId}", "bookings", "activity-{siteId}"];
|
|
4015
|
+
readonly errors: readonly [];
|
|
4016
|
+
readonly auth: "user";
|
|
4017
|
+
readonly responseKind: "blob";
|
|
4018
|
+
};
|
|
3932
4019
|
readonly listSiteActivityLogs: {
|
|
3933
4020
|
readonly path: "/sites/{siteId}/logs/activity";
|
|
3934
4021
|
readonly method: "GET";
|
|
@@ -4072,13 +4159,6 @@ export declare const API_ENDPOINTS: {
|
|
|
4072
4159
|
readonly auth: "user";
|
|
4073
4160
|
readonly responseKind: "blob";
|
|
4074
4161
|
};
|
|
4075
|
-
readonly exportSeoCsv: {
|
|
4076
|
-
readonly path: "/sites/{siteId}/seo/export";
|
|
4077
|
-
readonly method: "GET";
|
|
4078
|
-
readonly tags: ["site-{siteId}", "seo"];
|
|
4079
|
-
readonly auth: "user";
|
|
4080
|
-
readonly responseKind: "blob";
|
|
4081
|
-
};
|
|
4082
4162
|
readonly adminSiteCost: {
|
|
4083
4163
|
readonly path: "/admin/sites/{siteId}/cost";
|
|
4084
4164
|
readonly method: "GET";
|
|
@@ -41,6 +41,7 @@ export { createPage, deletePage, publishPageDraft, discardPageDraft, getPageDesi
|
|
|
41
41
|
export { updateRouteMetadata } from "./routes";
|
|
42
42
|
export type { RouteMetadataPayload, RouteMetadataResponse } from "./routes";
|
|
43
43
|
export { getBookingSettingsRequest, updateBookingSettingsRequest, createAppointmentRequest, createCourseRequest, updateCourseRequest, deleteCourseRequest, deleteCourseProgramRequest, duplicateCourseRequest, addCourseEnrollmentRequest, addEventOccurrenceAttendeeRequest, updateCourseEnrollmentRequest, } from "./bookings";
|
|
44
|
+
export { DEFAULT_APPOINTMENT_STAFF_DIGEST_LOCAL_SEND_TIME } from "./bookingConfig";
|
|
44
45
|
export { getEmailSettingsRequest, updateEmailSettingsRequest, sendTestEmailRequest, previewEmailTemplateRequest, } from "./emailSettings";
|
|
45
46
|
export { getEventSeriesEmailTemplatesRequest, updateEventSeriesEmailTemplatesRequest, } from "./eventEmailTemplates";
|
|
46
47
|
export { listAppointmentResourcesRequest, createAppointmentResourceRequest, updateAppointmentResourceRequest, removeAppointmentResourceRequest, } from "./resources";
|
|
@@ -76,7 +77,7 @@ export { enrollTotpFactor, verifyTotpFactor, activateTotpFactor, deleteMfaFactor
|
|
|
76
77
|
export type { ApiResult, ApiResponse, ApiError, ApiErrorCode, FieldError, ResponseMeta, } from "./common/envelope";
|
|
77
78
|
export type { JsonPrimitive, JsonValue } from "./types";
|
|
78
79
|
export type { PublicEventLoaderParams, PublicEventScheduleScope, PublicEventSurfaceScope, } from "./types";
|
|
79
|
-
export type { APIEndpoint, APIEndpoints, PageBlockDesignSyncWarning, AiAPIEndpoints, LaunchReadinessAPIEndpoints, SiteMembersAPIEndpoints, SeoAPIEndpoints, RedirectsAPIEndpoints, AvailabilityAPIEndpoints, CalendarAPIEndpoints, ContentTypesAPIEndpoints, MediaAPIEndpoints, RiverbankSiteConfig, RiverbankSiteConfigInput, SdkWorkflowConfig, SdkWorkflowTrigger, SdkWorkflowConfirmation, GetEndpoint, HTTPMethod, APICallParams, APICallParamsStrict, CreateManualSiteRequest, CreateManualSiteResponse, ApiKeyRecord, PageRecord, NavigationMenuRecord, NavigationItemRecord, NavigationMenuWithItems, AccessPolicyContract, EntitledCustomerAccessScopeContract, AccessPolicyTag, CartLinkLabelConfig, CartLinkPayload, LinkPayload, InternalLinkRoutablePayload, NavigationLinkInput, RoutableContentItem, CreateMediaAssetBody, FileKindContract, FileKindTag, FileUseContract, FileUseTag, ImageFileFormat, MediaAssetResponse, MediaClassifyJobResponse, MediaJobSummaryResponse, MediaLabelSummary, MediaSettingsResponse, RenderableFileKindTag, StorageClass, UploadIntentContract, UploadIntentTag, BookingSettings, BookingNotificationRule, BookingNotificationSettings, BookingNotificationUpdateKind, TeamMemberProfilePagePolicyMode, TeamMemberProfilePageSettings, BookingVerticalConfig, BookingCurrencyEditState, BookingSettingsEditorSnapshot, BookingSettingsResponse, BookingWaitlistSettings, BookingModuleToggles, BookingReminderOverrides, BookingDefaultImage, AppointmentFollowUpScopeIds, AppointmentFollowUpScopeMode, AppointmentFollowUpSettings, WaitlistMode, WaitlistOverride, EventBookingPolicyMode, EventBookingPolicy, EventBookingPolicies, UpdateBookingSettingsRequest, RefundEventAttendeeRequest, EventAttendeeRefundResult, RefundEventAttendeeResponse, RefundCourseEnrollmentRequest, CourseEnrollmentRefundResult, RefundCourseEnrollmentResponse, TransferEventAttendeeRequest, EventAttendeeTransferResult, TransferEventAttendeeResponse, DiscardTeamMemberProfileDraftResponse, PublishTeamMemberProfileRequest, PublishTeamMemberProfileResponse, CancelScheduledTeamMemberProfileResponse, ScheduleTeamMemberProfileRequest, ScheduleTeamMemberProfileResponse, TeamMemberProfileContentResponse, UnpublishTeamMemberProfileResponse, UpdateTeamMemberProfileContentRequest, UpdateTeamMemberProfilePolicyRequest, UpdateTeamMemberProfilePolicyResponse, UpdateTeamMemberProfileRouteMetadataRequest, UpdateTeamMemberProfileRouteMetadataResponse, OpsEventOccurrenceSummary, OpsOccurrenceAttendee, OpsListUpcomingEventOccurrencesResponse, OpsOccurrenceAttendeesResponse, OpsValidateEventTicketRequest, OpsValidateEventTicketResponse, OpsEventAttendeeCheckinUpdate, OpsUpdateEventAttendeeCheckinRequest, OpsUpdateEventAttendeeCheckinResponse, OpsEventAttendeeDetailsResponse, OpsCancelEventAttendeeRequest, OpsCancelEventAttendeeResult, OpsCancelEventAttendeeResponse, OpsRefundEventAttendeeResponse, EventAttendeeRefundHistoryItem, ListEventAttendeeRefundsResponse, CourseEnrollmentRefundHistoryItem, ListCourseEnrollmentRefundsResponse, EventAttendeeTransferHistoryItem, ListEventAttendeeTransfersResponse, EmailTemplateType, EmailTemplate, EmailTemplateInput, EventEmailTemplateType, EventEmailTemplate, GetEventSeriesEmailTemplatesResponse, UpdateEventSeriesEmailTemplatesRequest, UpdateEventSeriesEmailTemplatesResponse, GetEmailSettingsResponse, UpdateEmailSettingsRequest, UpdateEmailSettingsResponse, SendTestEmailRequest, SendTestEmailResponse, PreviewEmailTemplateRequest, PreviewEmailTemplateResponse, AvailabilityRule, ListAvailabilityRulesResponse, WeeklyAvailabilityWindowInput, SetWeeklyAvailabilityRequest, SetWeeklyAvailabilityResponse, SetWeeklyAvailabilityIssue, AppointmentBlackout, CreateBlackoutRequest, ListBlackoutsResponse, CreateBlackoutResponse, DeleteBlackoutResponse, TimeSlot, GetAvailableSlotsQuery, GetAvailableSlotsResponse, CreateAppointmentRequest, CreateAppointmentResponse, BookingQuestionFormSummary, BookingQuestionRequirementScope, BookingRequirementConfigRequest, BookingRequirementConfigResponse, BookingRequirementTargetType, BookingQuestionsRequirementConfig, BookingRequirementValidityPolicy, ConsentRequirementConfig, PublicCreateBookingAppointmentRequest, AppointmentRecord, BookingCustomerRecord, BookingSessionUpdateMeRequest, CourseStatus, MutableCourseStatus, CourseSessionInput, CreateCourseRequest, UpdateCourseRequest, DeleteCourseResponse, DeleteCourseProgramResponse, DuplicateCourseRequest, DuplicateCourseResponse, CourseSeriesRecord, CourseRecord, CreateCourseResponse, UpdateCourseResponse, CourseEnrollmentStatus, CourseEnrollmentPaymentMethod, CourseEnrollmentPaymentStatus, CourseEnrollmentRecord, CourseEnrollmentWithCustomer, ListCourseEnrollmentsResponse, AddCourseEnrollmentRequest, AddCourseEnrollmentResponse, UpdateCourseEnrollmentRequest, UpdateCourseEnrollmentResponse, BookingCustomerWithCounts, CustomerSortColumn, CustomerFilter, ListBookingCustomersRequest, ListBookingCustomersResponse, CreateBookingCustomerRequest, CreateBookingCustomerResponse, CustomerProfileRectificationSourceContext, CustomerProfileRectificationSourceSurface, CustomerPassRecord, ListCustomerPassesResponse, SiteCustomerRecord, SiteCustomerPassRecord, ListSiteCustomerPassesRequest, ListSiteCustomerPassesResponse, CustomerPassRefundResult, CustomerPassRefundRecord, AdjustCustomerPassDetailsRequest, AdjustCustomerPassDetailsResponse, RefundCustomerPassRequest, RefundCustomerPassResponse, ListCustomerPassRefundsResponse, CustomerMembershipRecord, ListCustomerMembershipsResponse, SiteCustomerMembershipRecord, ListSiteCustomerMembershipsRequest, ListSiteCustomerMembershipsResponse, BookingPaymentKind, BookingPaymentStatus, BookingPaymentsView, BookingPaymentListItem, ListBookingPaymentsRequest, ListBookingPaymentsResponse, MoneyPeriodPreset, MoneyItemKind, MoneyPaymentsView, MoneyTimeSeriesGranularity, MoneyBreakdownDimension, MoneyNonCashUsageKind, MoneyReportIncompleteReason, MoneyFilterQuery, MoneyComparisonMetric, MoneyDateRange, MoneyReportSummary, MoneyTimeSeriesBucket, MoneyBreakdownRow, MoneyBreakdownSection, MoneyNonCashUsageRow, MoneyNonCashUsageSection, GetMoneyReportRequest, GetMoneyReportResponse, MoneyPaymentListItem, ListMoneyPaymentsRequest, ListMoneyPaymentsResponse, BookingActivityCategory, BookingActivityType, BookingActivityCursor, BookingActivityListItem, ListBookingActivityRequest, ListBookingActivityResponse, DiscountCodeType, DiscountPerEmailLimit, DiscountMembershipDuration, DiscountEventScopeMode, DiscountScopeMode, ProductScopeMode, DiscountCodeRecord, DiscountCodeScopeIds, DiscountCodeDetails, AutoAppliedDiscountPreview, CreateDiscountCodeRequest, UpdateDiscountCodeRequest, ListDiscountCodesResponse, DiscountCodeResponse, DeleteDiscountCodeResponse, DiscountRedemptionStatus, DiscountRedemptionListItem, ListDiscountRedemptionsRequest, ListDiscountRedemptionsResponse, MembershipPaymentForRefund, ListCustomerMembershipPaymentsResponse, CancelCustomerMembershipAtPeriodEndResult, CustomerMembershipPaymentRefundResult, CustomerMembershipPaymentRefundRecord, RefundCustomerMembershipPaymentRequest, RefundCustomerMembershipPaymentResponse, ListCustomerMembershipPaymentRefundsResponse, CustomerAttendanceRecord, CustomerAttendancePayment, CustomerAttendanceLivePayment, CustomerAttendanceArchivedPayment, CustomerAttendancePaymentMethod, CustomerAttendancePaymentStatus, ListCustomerAttendancesRequest, ListCustomerAttendancesResponse, BookingCustomerCreditSummary, BookingCustomerCreditTransactionListItem, GetCustomerCreditResponse, AccountRevokeSessionsBody, AccountRevokeSessionsResponse, AccountUpdatePasswordBody, AccountUpdatePasswordResponse, AuthFieldKey, AuthSubmissionErrorReason, AuthSubmissionSuccess, AuthSubmissionError, AuthSubmissionResult, ReauthSubmissionResult, DomainAvailability, SiteDomainRecord, SiteDomainContactPayload, RegistrarLifecycleState, RegistrarLifecycleMutationOutcome, RegistrarLifecycleMutationOperation, RegistrarLifecycleMutationBase, RegistrarLifecycleMutationResponse, ExposedRegistrarLifecycleMutationResponse, RegistrarLifecycleResponse, RegistrarBooleanMutationRequest, RegistrarRenewalCostEstimate, RegistrarProviderName, RegistrarRenewalRiskReason, RegistrarRenewalManualReviewReason, RegistrarRenewalManualReviewReasonWithoutExpiry, RegistrarRenewalManualReviewReasonWithExpiry, RegistrarRenewalFailedReason, RegistrarRenewalPosture, RegistrarAccountBalance, RegistrarRenewalPostureResponse, LookupSiteDomainRequest, LookupSiteDomainResponse, RegisterSiteDomainRequest, RegisterSiteDomainResponse, AddCustomDomainRequest, AddCustomDomainResponse, SetHomepageRequest, SetHomepageResponse, ContentRouteRecord, SeoOverviewResponse, SeoOverviewQuery, SeoOverviewTimePoint, SeoRangePreset, PerformanceOverviewResponse, PerformanceOverviewQuery, PerformanceRangePreset, SeoSearchPagesQuery, SeoSearchPagesResponse, SeoSearchQueriesQuery, SeoSearchQueriesResponse, SeoSearchSummary, ContentEntryRecord, ContentEntrySummary, FormSummary, ContentEntryDetail, ScheduledContentEntryOrPageResponse, BookingsEventSeriesContentEditorResponse, PublishedContentEntryPreview, PublishedContentEntryPreviewResponse, PublishedPostPreview, PublishedPostPreviewResponse, ContentEntryListStage, ContentEntryListItem, ListPublishedEntriesResponse, ContentTypeTemplateSummary, PublicContentTypeFieldMeta, PublicContentTypeMeta, ListPublishedEntriesMeta, ContentTemplateSummary, ContentTemplateBlockSummary, ContentTemplateAddonSummary, ContentAddonDefinition, ContentTemplateDetailsResponse, UpdateContentTemplateBlockRequest, ApplyContentTemplateAddonRequest, StartImpersonationRequest, StartImpersonationResponse, StopImpersonationRequest, StopImpersonationResponse, UpsertAdminRoleRequest, RevokeAdminRoleRequest, AdminRoleMutationResponse, AdminProfileRole, DTOType, MfaFactorSummary, MfaOverviewPayload, MfaOverviewResponse, MfaTotpActivateRequest, MfaTotpEnrollResponse, MfaTotpVerifyRequest, MfaTotpVerifyResponse, MfaPhoneEnrollRequest, MfaPhoneEnrollResponse, MfaPhoneChallengeRequest, MfaPhoneChallengeResponse, MfaPhoneVerifyRequest, MfaBackupCodeSummary, MfaBackupCodesOverview, MfaBackupCodesOverviewResponse, MfaBackupCodesRotateResponse, CreateAdminInviteRequest, CreateAdminInviteResponse, CreateAdminUserRequest, CreateAdminUserResponse, ListAdminInvitesResponse, RevokeAdminInviteResponse, CreateAllowedDomainRequest, CreateAllowedDomainResponse, ListAllowedDomainsResponse, DeleteAllowedDomainResponse, AcceptAdminInviteRequest, AcceptAdminInviteResponse, AdminInvite, AllowedEmailDomain, AdminChangePlanRequest, AdminChangePlanResponse, ChangePlanRequest, ChangePlanResponse, BillingPriceOverride, AdminGetPriceOverrideQuery, AdminGetPriceOverrideResponse, AdminUpsertPriceOverrideRequest, AdminUpsertPriceOverrideResponse, AdminDeletePriceOverrideRequest, AdminDeletePriceOverrideResponse, DomainSearchResultResponse, AnalyticsPreset, AnalyticsReportQuery, AnalyticsSeriesPoint, AnalyticsTopPage, AnalyticsReferrer, AnalyticsTotals, AnalyticsReportResponse, RegisterDomainRequestPayload, RegisterDomainResponse, DomainConfigResult, SiteRole, SiteMember, SiteMemberProfile, SiteInvitation, SiteAccessSummary, SitePlanSummaryResponse, ListSiteMembersResponse, InviteSiteMemberRequest, InviteSiteMemberResponse, UpdateSiteMemberRoleRequest, UpdateSiteMemberRoleResponse, RemoveSiteMemberResponse, RevokeSiteInvitationResponse, TransferSiteOwnershipRequest, TransferSiteOwnershipResponse, AcceptSiteInvitationRequest, AcceptSiteInvitationResponse, DevToolsImpersonationResponse, DevToolsSeedResponse, DowngradeRole, RoleDowngradeActualRole, SiteRoleDowngradeState, DevToolsGetSiteRoleDowngradeQuery, DevToolsSetSiteRoleDowngradeRequest, SitePagePayload, SiteBySlugResponse, BlockWithContentResponse, ContentDataResponse, BackupAccessImportResult, BackupImportResponse, PreviewKeyRecord, ApiKeyAccessLogRecord, ListSiteApiKeysResponse, CreateSiteApiKeyRequest, CreateSiteApiKeyResponse, RevokeSiteApiKeyResponse, GetSitePreviewKeyResponse, CreateSitePreviewKeyResponse, GetSiteApiKeyAccessLogsResponse, ApiKeyAccessLogsPagination, ManagementKeyRecord, ListManagementKeysResponse, CreateManagementKeyRequest, CreateManagementKeyResponse, RevokeManagementKeyRequest, RevokeManagementKeyResponse, EventPreset, EventOnlineDetails, EventOnlineDetailsInput, StaffAssignmentMode, EventSeriesRecord, CreateEventSeriesRequest, UpdateEventSeriesRequest, EventAttendeeRecord, BookingBeforeYouComeDeliveryIssue, BookingBeforeYouComeReadiness, BookingEventSeriesAttendeeGuest, BookingEventSeriesAttendee, BookingPaymentIssueReason, BookingPaymentAttentionSummary, EventOccurrenceRecord, EventOccurrenceOverrides, EventOccurrenceStatus, EventOccurrenceDeletionEligibility, EventOccurrenceListRecord, UpdateOccurrenceRequest, VenueRecord, VenueLocation, CreateVenueRequest, UpdateVenueRequest, DeleteVenueResponse, GeocodeVenueRequest, GeocodeVenueResponse, AiPlaygroundApplyRequest, AiPlaygroundApplyResponse, BillingStatusResponse, BillingCheckoutRequest, BillingCheckoutResponse, BillingSummaryResponse, SiteBillingCostResponse, SitePurpose, AiBrandGuidelinesExample, SiteAiBrandGuidelinesPayload, SiteAiBrandGuidelinesResponse, SiteAiProfileEntityType, SiteAiProfileLocationMode, SiteAiProfilePayload, SiteAiProfileResponse, SiteBusinessAddressPayload, SiteBusinessAddressResponse, SiteContentSamplingStats, SiteContentSampledItem, AiBrandGuidelinesGenerationContextResponse, AiBrandGuidelinesGenerateRequest, AiBrandGuidelinesGenerateResponse, DeleteAccountRequest, DeleteAccountResponse, FontRecord, ExportBackupRequest, BackupPreviewRequest, BackupPreviewResponse, CreateBackupUploadUrlRequest, CreateBackupUploadUrlResponse, DeleteBackupUploadRequest, DeleteBackupUploadResponse, ImportBackupAsNewSiteRequest, ImportBackupAsNewSiteResponse, AdminSiteCostResponse, AdminUpdateSiteCostRequest, BulkOperationResult, SchedulePreviewRequest, SchedulePreviewResponse, AffectedOccurrence, ModifiedOccurrence, RegenerationSummary, AiGenerateSiteEntityType, AiGenerateSitePrimaryCta, AiGenerateSiteRequest, AiGenerateSiteResponse, AiSiteWizardIntakeTriageRequest, AiSiteWizardIntakeTriageResponse, AiSiteWizardTelemetryEvent, AiSiteWizardTelemetryRequest, AiSiteWizardTelemetryResponse, PublicOnboardingAttempt, PublicOnboardingAttemptPayload, PublicOnboardingLogoUploadRequest, PublicOnboardingLogoUploadResponse, PublicOnboardingLogoUploadUrlRequest, PublicOnboardingLogoUploadUrlResponse, PublicOnboardingAttemptStatus, PublicOnboardingSurfaceId, SiteGenerationScope, SiteGenerationFeatureKey, SiteWizardResumeSnapshot, SiteGenerationIntakePayload, SiteGenerationIntakeResponse, CalendarConnectionStatus, CalendarStatusResponse, DebugArtifact, DebugArtifacts, PageBlock, PageConverterOutput, PageConversionSuccess, PageConversionAttempt, PageConversionFailure, PageConversionResult, PageConvertResponse, PageConvertJobStatus, PageConvertJob, PageConvertJobEventType, PageConvertJobEvent, PageConvertJobsCreateRequest, PageConvertJobsCreateResponse, PageConvertJobsListResponse, PageConvertJobGetResponse, PageConvertJobRunResponse, PageConvertJobEventsResponse, NewsletterSettingsRecord, NewsletterSubscriberRecord, NewsletterListRecord, GetNewsletterSettingsResponse, UpdateNewsletterSettingsRequest, UpdateNewsletterSettingsResponse, ListNewsletterTagsResponse, ListNewsletterSubscribersResponse, UpsertNewsletterSubscriberRequest, UpsertNewsletterSubscriberResponse, ImportNewsletterSubscribersCsvResponse, ExportNewsletterSubscribersCsvResponse, GetNewsletterSubscriberResponse, UpdateNewsletterSubscriberRequest, UpdateNewsletterSubscriberResponse, DeleteNewsletterSubscriberResponse, AnonymizeNewsletterSubscriberResponse, ExportNewsletterSubscriberDataResponse, ListNewsletterListsResponse, CreateNewsletterListRequest, CreateNewsletterListResponse, UpdateNewsletterListRequest, UpdateNewsletterListResponse, DeleteNewsletterListResponse, ListNewsletterListMembersResponse, UpdateNewsletterListMembershipsRequest, UpdateNewsletterListMembershipsResponse, NewsletterTemplateRecord, ListNewsletterTemplatesResponse, CreateNewsletterTemplateRequest, CreateNewsletterTemplateResponse, GetNewsletterTemplateResponse, UpdateNewsletterTemplateRequest, UpdateNewsletterTemplateResponse, DeleteNewsletterTemplateResponse, PreviewNewsletterTemplateRequest, PreviewNewsletterTemplateResponse, NewsletterCampaignRecord, ListNewsletterCampaignsResponse, CreateNewsletterCampaignRequest, CreateNewsletterCampaignResponse, GetNewsletterCampaignResponse, UpdateNewsletterCampaignRequest, UpdateNewsletterCampaignResponse, DeleteNewsletterCampaignResponse, NewsletterCampaignRecipientsSummary, GetNewsletterCampaignRecipientsSummaryResponse, NewsletterCampaignStats, GetNewsletterCampaignStatsResponse, NewsletterSendJobRecord, NewsletterSendJobStatus, ListNewsletterSendJobsQuery, ListNewsletterSendJobsResponse, RetryNewsletterSendJobResponse, CancelNewsletterSendJobResponse, SiteLogActor, SiteContentActivityLogEntry, SiteFormSubmissionActivityLogEntry, SiteActivityLogEntry, ListSiteActivityLogsResponse, SiteEmailLogEntry, ListSiteEmailLogsResponse, SiteEmailEventLogEntry, ListSiteEmailEventLogsResponse, SitePublicErrorLogEntry, ListSitePublicErrorLogsResponse, } from "./types";
|
|
80
|
+
export type { APIEndpoint, APIEndpoints, PageBlockDesignSyncWarning, AiAPIEndpoints, LaunchReadinessAPIEndpoints, SiteMembersAPIEndpoints, SeoAPIEndpoints, RedirectsAPIEndpoints, AvailabilityAPIEndpoints, CalendarAPIEndpoints, ContentTypesAPIEndpoints, MediaAPIEndpoints, RiverbankSiteConfig, RiverbankSiteConfigInput, SdkWorkflowConfig, SdkWorkflowTrigger, SdkWorkflowConfirmation, GetEndpoint, HTTPMethod, APICallParams, APICallParamsStrict, CreateManualSiteRequest, CreateManualSiteResponse, ApiKeyRecord, PageRecord, NavigationMenuRecord, NavigationItemRecord, NavigationMenuWithItems, AccessPolicyContract, EntitledCustomerAccessScopeContract, AccessPolicyTag, CartLinkLabelConfig, CartLinkPayload, LinkPayload, InternalLinkRoutablePayload, NavigationLinkInput, RoutableContentItem, CreateMediaAssetBody, FileKindContract, FileKindTag, FileUseContract, FileUseTag, ImageFileFormat, MediaAssetResponse, MediaClassifyJobResponse, MediaJobSummaryResponse, MediaLabelSummary, MediaSettingsResponse, RenderableFileKindTag, StorageClass, UploadIntentContract, UploadIntentTag, BookingSettings, AppointmentStaffChangeNotificationSettings, AppointmentStaffNotificationSetupHealth, AppointmentStaffReminderSettings, BookingNotificationRule, BookingNotificationSettings, BookingNotificationUpdateKind, TeamMemberProfilePagePolicyMode, TeamMemberProfilePageSettings, BookingVerticalConfig, BookingCurrencyEditState, BookingSettingsEditorSnapshot, BookingSettingsResponse, BookingWaitlistSettings, BookingModuleToggles, BookingReminderOverrides, BookingDefaultImage, AppointmentFollowUpScopeIds, AppointmentFollowUpScopeMode, AppointmentFollowUpSettings, WaitlistMode, WaitlistOverride, EventBookingPolicyMode, EventBookingPolicy, EventBookingPolicies, UpdateBookingSettingsRequest, RefundEventAttendeeRequest, EventAttendeeRefundResult, RefundEventAttendeeResponse, RefundCourseEnrollmentRequest, CourseEnrollmentRefundResult, RefundCourseEnrollmentResponse, TransferEventAttendeeRequest, EventAttendeeTransferResult, TransferEventAttendeeResponse, DiscardTeamMemberProfileDraftResponse, PublishTeamMemberProfileRequest, PublishTeamMemberProfileResponse, CancelScheduledTeamMemberProfileResponse, ScheduleTeamMemberProfileRequest, ScheduleTeamMemberProfileResponse, TeamMemberProfileContentResponse, UnpublishTeamMemberProfileResponse, UpdateTeamMemberProfileContentRequest, UpdateTeamMemberProfilePolicyRequest, UpdateTeamMemberProfilePolicyResponse, UpdateTeamMemberProfileRouteMetadataRequest, UpdateTeamMemberProfileRouteMetadataResponse, OpsEventOccurrenceSummary, OpsOccurrenceAttendee, OpsListUpcomingEventOccurrencesResponse, OpsOccurrenceAttendeesResponse, OpsValidateEventTicketRequest, OpsValidateEventTicketResponse, OpsEventAttendeeCheckinUpdate, OpsUpdateEventAttendeeCheckinRequest, OpsUpdateEventAttendeeCheckinResponse, OpsEventAttendeeDetailsResponse, OpsCancelEventAttendeeRequest, OpsCancelEventAttendeeResult, OpsCancelEventAttendeeResponse, OpsRefundEventAttendeeResponse, EventAttendeeRefundHistoryItem, ListEventAttendeeRefundsResponse, CourseEnrollmentRefundHistoryItem, ListCourseEnrollmentRefundsResponse, EventAttendeeTransferHistoryItem, ListEventAttendeeTransfersResponse, EmailTemplateType, EmailTemplate, EmailTemplateInput, EventEmailTemplateType, EventEmailTemplate, GetEventSeriesEmailTemplatesResponse, UpdateEventSeriesEmailTemplatesRequest, UpdateEventSeriesEmailTemplatesResponse, GetEmailSettingsResponse, UpdateEmailSettingsRequest, UpdateEmailSettingsResponse, SendTestEmailRequest, SendTestEmailResponse, PreviewEmailTemplateRequest, PreviewEmailTemplateResponse, AvailabilityRule, ListAvailabilityRulesResponse, WeeklyAvailabilityWindowInput, SetWeeklyAvailabilityRequest, SetWeeklyAvailabilityResponse, SetWeeklyAvailabilityIssue, AppointmentBlackout, CreateBlackoutRequest, ListBlackoutsResponse, CreateBlackoutResponse, DeleteBlackoutResponse, TimeSlot, GetAvailableSlotsQuery, GetAvailableSlotsResponse, CreateAppointmentRequest, CreateAppointmentResponse, BookingQuestionFormSummary, BookingQuestionRequirementScope, BookingRequirementConfigRequest, BookingRequirementConfigResponse, BookingRequirementTargetType, BookingQuestionsRequirementConfig, BookingRequirementValidityPolicy, ConsentRequirementConfig, PublicCreateBookingAppointmentRequest, AppointmentRecord, BookingCustomerRecord, BookingSessionUpdateMeRequest, CourseStatus, MutableCourseStatus, CourseSessionInput, CreateCourseRequest, UpdateCourseRequest, DeleteCourseResponse, DeleteCourseProgramResponse, DuplicateCourseRequest, DuplicateCourseResponse, CourseSeriesRecord, CourseRecord, CreateCourseResponse, UpdateCourseResponse, CourseEnrollmentStatus, CourseEnrollmentPaymentMethod, CourseEnrollmentPaymentStatus, CourseEnrollmentRecord, CourseEnrollmentWithCustomer, ListCourseEnrollmentsResponse, AddCourseEnrollmentRequest, AddCourseEnrollmentResponse, UpdateCourseEnrollmentRequest, UpdateCourseEnrollmentResponse, BookingCustomerWithCounts, CustomerSortColumn, CustomerFilter, ListBookingCustomersRequest, ListBookingCustomersResponse, CreateBookingCustomerRequest, CreateBookingCustomerResponse, CustomerContactChange, CustomerContactField, CustomerProfileRectificationSourceContext, CustomerProfileRectificationSourceSurface, RectifyBookingCustomerProfileRequest, RectifyBookingCustomerProfileResponse, BookingParticipantIdentityForRectification, ParticipantIdentityRectificationSourceContext, ParticipantIdentityRectificationSourceSurface, RectifyBookingParticipantIdentityRequest, RectifyBookingParticipantIdentityResponse, CustomerPassRecord, ListCustomerPassesResponse, SiteCustomerRecord, SiteCustomerPassRecord, ListSiteCustomerPassesRequest, ListSiteCustomerPassesResponse, CustomerPassRefundResult, CustomerPassRefundRecord, AdjustCustomerPassDetailsRequest, AdjustCustomerPassDetailsResponse, RefundCustomerPassRequest, RefundCustomerPassResponse, ListCustomerPassRefundsResponse, CustomerMembershipRecord, ListCustomerMembershipsResponse, SiteCustomerMembershipRecord, ListSiteCustomerMembershipsRequest, ListSiteCustomerMembershipsResponse, BookingPaymentKind, BookingPaymentStatus, BookingPaymentsView, BookingPaymentListItem, ListBookingPaymentsRequest, ListBookingPaymentsResponse, MoneyPeriodPreset, MoneyItemKind, MoneyPaymentsView, MoneyTimeSeriesGranularity, MoneyBreakdownDimension, MoneyNonCashUsageKind, MoneyReportIncompleteReason, MoneyFilterQuery, MoneyComparisonMetric, MoneyDateRange, MoneyReportSummary, MoneyTimeSeriesBucket, MoneyBreakdownRow, MoneyBreakdownSection, MoneyNonCashUsageRow, MoneyNonCashUsageSection, GetMoneyReportRequest, GetMoneyReportResponse, MoneyPaymentListItem, ListMoneyPaymentsRequest, ListMoneyPaymentsResponse, BookingActivityCategory, BookingActivityType, BookingActivityCursor, BookingActivityListItem, ListBookingActivityRequest, ListBookingActivityResponse, DiscountCodeType, DiscountPerEmailLimit, DiscountMembershipDuration, DiscountEventScopeMode, DiscountScopeMode, ProductScopeMode, DiscountCodeRecord, DiscountCodeScopeIds, DiscountCodeDetails, AutoAppliedDiscountPreview, CreateDiscountCodeRequest, UpdateDiscountCodeRequest, ListDiscountCodesResponse, DiscountCodeResponse, DeleteDiscountCodeResponse, DiscountRedemptionStatus, DiscountRedemptionListItem, ListDiscountRedemptionsRequest, ListDiscountRedemptionsResponse, MembershipPaymentForRefund, ListCustomerMembershipPaymentsResponse, CancelCustomerMembershipAtPeriodEndResult, CustomerMembershipPaymentRefundResult, CustomerMembershipPaymentRefundRecord, RefundCustomerMembershipPaymentRequest, RefundCustomerMembershipPaymentResponse, ListCustomerMembershipPaymentRefundsResponse, CustomerAttendanceRecord, CustomerAttendancePayment, CustomerAttendanceLivePayment, CustomerAttendanceArchivedPayment, CustomerAttendancePaymentMethod, CustomerAttendancePaymentStatus, ListCustomerAttendancesRequest, ListCustomerAttendancesResponse, BookingCustomerCreditSummary, BookingCustomerCreditTransactionListItem, GetCustomerCreditResponse, AccountRevokeSessionsBody, AccountRevokeSessionsResponse, AccountUpdatePasswordBody, AccountUpdatePasswordResponse, AuthFieldKey, AuthSubmissionErrorReason, AuthSubmissionSuccess, AuthSubmissionError, AuthSubmissionResult, ReauthSubmissionResult, DomainAvailability, SiteDomainRecord, SiteDomainContactPayload, RegistrarLifecycleState, RegistrarLifecycleMutationOutcome, RegistrarLifecycleMutationOperation, RegistrarLifecycleMutationBase, RegistrarLifecycleMutationResponse, ExposedRegistrarLifecycleMutationResponse, RegistrarLifecycleResponse, RegistrarBooleanMutationRequest, RegistrarRenewalCostEstimate, RegistrarProviderName, RegistrarRenewalRiskReason, RegistrarRenewalManualReviewReason, RegistrarRenewalManualReviewReasonWithoutExpiry, RegistrarRenewalManualReviewReasonWithExpiry, RegistrarRenewalFailedReason, RegistrarRenewalPosture, RegistrarAccountBalance, RegistrarRenewalPostureResponse, LookupSiteDomainRequest, LookupSiteDomainResponse, RegisterSiteDomainRequest, RegisterSiteDomainResponse, AddCustomDomainRequest, AddCustomDomainResponse, SetHomepageRequest, SetHomepageResponse, ContentRouteRecord, SeoOverviewResponse, SeoOverviewQuery, SeoOverviewTimePoint, SeoRangePreset, PerformanceOverviewResponse, PerformanceOverviewQuery, PerformanceRangePreset, SeoSearchPagesQuery, SeoSearchPagesResponse, SeoSearchQueriesQuery, SeoSearchQueriesResponse, SeoSearchSummary, ContentEntryRecord, ContentEntrySummary, FormSummary, ContentEntryDetail, ScheduledContentEntryOrPageResponse, BookingsEventSeriesContentEditorResponse, PublishedContentEntryPreview, PublishedContentEntryPreviewResponse, PublishedPostPreview, PublishedPostPreviewResponse, ContentEntryListStage, ContentEntryListItem, ListPublishedEntriesResponse, ContentTypeTemplateSummary, PublicContentTypeFieldMeta, PublicContentTypeMeta, ListPublishedEntriesMeta, ContentTemplateSummary, ContentTemplateBlockSummary, ContentTemplateAddonSummary, ContentAddonDefinition, ContentTemplateDetailsResponse, UpdateContentTemplateBlockRequest, ApplyContentTemplateAddonRequest, StartImpersonationRequest, StartImpersonationResponse, StopImpersonationRequest, StopImpersonationResponse, UpsertAdminRoleRequest, RevokeAdminRoleRequest, AdminRoleMutationResponse, AdminProfileRole, DTOType, MfaFactorSummary, MfaOverviewPayload, MfaOverviewResponse, MfaTotpActivateRequest, MfaTotpEnrollResponse, MfaTotpVerifyRequest, MfaTotpVerifyResponse, MfaPhoneEnrollRequest, MfaPhoneEnrollResponse, MfaPhoneChallengeRequest, MfaPhoneChallengeResponse, MfaPhoneVerifyRequest, MfaBackupCodeSummary, MfaBackupCodesOverview, MfaBackupCodesOverviewResponse, MfaBackupCodesRotateResponse, CreateAdminInviteRequest, CreateAdminInviteResponse, CreateAdminUserRequest, CreateAdminUserResponse, ListAdminInvitesResponse, RevokeAdminInviteResponse, CreateAllowedDomainRequest, CreateAllowedDomainResponse, ListAllowedDomainsResponse, DeleteAllowedDomainResponse, AcceptAdminInviteRequest, AcceptAdminInviteResponse, AdminInvite, AllowedEmailDomain, AdminChangePlanRequest, AdminChangePlanResponse, ChangePlanRequest, ChangePlanResponse, BillingPriceOverride, AdminGetPriceOverrideQuery, AdminGetPriceOverrideResponse, AdminUpsertPriceOverrideRequest, AdminUpsertPriceOverrideResponse, AdminDeletePriceOverrideRequest, AdminDeletePriceOverrideResponse, DomainSearchResultResponse, AnalyticsPreset, AnalyticsReportQuery, AnalyticsSeriesPoint, AnalyticsTopPage, AnalyticsReferrer, AnalyticsTotals, AnalyticsReportResponse, RegisterDomainRequestPayload, RegisterDomainResponse, DomainConfigResult, SiteRole, SiteMember, SiteMemberProfile, SiteInvitation, SiteAccessSummary, SitePlanSummaryResponse, ListSiteMembersResponse, InviteSiteMemberRequest, InviteSiteMemberResponse, UpdateSiteMemberRoleRequest, UpdateSiteMemberRoleResponse, RemoveSiteMemberResponse, RevokeSiteInvitationResponse, TransferSiteOwnershipRequest, TransferSiteOwnershipResponse, AcceptSiteInvitationRequest, AcceptSiteInvitationResponse, DevToolsImpersonationResponse, DevToolsSeedResponse, DowngradeRole, RoleDowngradeActualRole, SiteRoleDowngradeState, DevToolsGetSiteRoleDowngradeQuery, DevToolsSetSiteRoleDowngradeRequest, SitePagePayload, SiteBySlugResponse, BlockWithContentResponse, ContentDataResponse, BackupAccessImportResult, BackupImportResponse, PreviewKeyRecord, ApiKeyAccessLogRecord, ListSiteApiKeysResponse, CreateSiteApiKeyRequest, CreateSiteApiKeyResponse, RevokeSiteApiKeyResponse, GetSitePreviewKeyResponse, CreateSitePreviewKeyResponse, GetSiteApiKeyAccessLogsResponse, ApiKeyAccessLogsPagination, ManagementKeyRecord, ListManagementKeysResponse, CreateManagementKeyRequest, CreateManagementKeyResponse, RevokeManagementKeyRequest, RevokeManagementKeyResponse, EventPreset, EventOnlineDetails, EventOnlineDetailsInput, StaffAssignmentMode, EventSeriesRecord, CreateEventSeriesRequest, UpdateEventSeriesRequest, EventAttendeeRecord, BookingBeforeYouComeDeliveryIssue, BookingBeforeYouComeReadiness, BookingEventSeriesAttendeeGuest, BookingEventSeriesAttendee, BookingPaymentIssueReason, BookingPaymentAttentionSummary, EventOccurrenceRecord, EventOccurrenceOverrides, EventOccurrenceStatus, EventOccurrenceDeletionEligibility, EventOccurrenceListRecord, UpdateOccurrenceRequest, VenueRecord, VenueLocation, CreateVenueRequest, UpdateVenueRequest, DeleteVenueResponse, GeocodeVenueRequest, GeocodeVenueResponse, AiPlaygroundApplyRequest, AiPlaygroundApplyResponse, BillingStatusResponse, BillingCheckoutRequest, BillingCheckoutResponse, BillingSummaryResponse, SiteBillingCostResponse, SitePurpose, AiBrandGuidelinesExample, SiteAiBrandGuidelinesPayload, SiteAiBrandGuidelinesResponse, SiteAiProfileEntityType, SiteAiProfileLocationMode, SiteAiProfilePayload, SiteAiProfileResponse, SiteBusinessAddressPayload, SiteBusinessAddressResponse, SiteContentSamplingStats, SiteContentSampledItem, AiBrandGuidelinesGenerationContextResponse, AiBrandGuidelinesGenerateRequest, AiBrandGuidelinesGenerateResponse, DeleteAccountRequest, DeleteAccountResponse, FontRecord, ExportBackupRequest, BackupPreviewRequest, BackupPreviewResponse, CreateBackupUploadUrlRequest, CreateBackupUploadUrlResponse, DeleteBackupUploadRequest, DeleteBackupUploadResponse, ImportBackupAsNewSiteRequest, ImportBackupAsNewSiteResponse, AdminSiteCostResponse, AdminUpdateSiteCostRequest, BulkOperationResult, SchedulePreviewRequest, SchedulePreviewResponse, AffectedOccurrence, ModifiedOccurrence, RegenerationSummary, AiGenerateSiteEntityType, AiGenerateSitePrimaryCta, AiGenerateSiteRequest, AiGenerateSiteResponse, AiSiteWizardIntakeTriageRequest, AiSiteWizardIntakeTriageResponse, AiSiteWizardTelemetryEvent, AiSiteWizardTelemetryRequest, AiSiteWizardTelemetryResponse, PublicOnboardingAttempt, PublicOnboardingAttemptPayload, PublicOnboardingLogoUploadRequest, PublicOnboardingLogoUploadResponse, PublicOnboardingLogoUploadUrlRequest, PublicOnboardingLogoUploadUrlResponse, PublicOnboardingAttemptStatus, PublicOnboardingSurfaceId, SiteGenerationScope, SiteGenerationFeatureKey, SiteWizardResumeSnapshot, SiteGenerationIntakePayload, SiteGenerationIntakeResponse, CalendarConnectionStatus, CalendarStatusResponse, DebugArtifact, DebugArtifacts, PageBlock, PageConverterOutput, PageConversionSuccess, PageConversionAttempt, PageConversionFailure, PageConversionResult, PageConvertResponse, PageConvertJobStatus, PageConvertJob, PageConvertJobEventType, PageConvertJobEvent, PageConvertJobsCreateRequest, PageConvertJobsCreateResponse, PageConvertJobsListResponse, PageConvertJobGetResponse, PageConvertJobRunResponse, PageConvertJobEventsResponse, NewsletterSettingsRecord, NewsletterSubscriberRecord, NewsletterListRecord, GetNewsletterSettingsResponse, UpdateNewsletterSettingsRequest, UpdateNewsletterSettingsResponse, ListNewsletterTagsResponse, ListNewsletterSubscribersResponse, UpsertNewsletterSubscriberRequest, UpsertNewsletterSubscriberResponse, ImportNewsletterSubscribersCsvResponse, ExportNewsletterSubscribersCsvResponse, GetNewsletterSubscriberResponse, UpdateNewsletterSubscriberRequest, UpdateNewsletterSubscriberResponse, DeleteNewsletterSubscriberResponse, AnonymizeNewsletterSubscriberResponse, ExportNewsletterSubscriberDataResponse, ListNewsletterListsResponse, CreateNewsletterListRequest, CreateNewsletterListResponse, UpdateNewsletterListRequest, UpdateNewsletterListResponse, DeleteNewsletterListResponse, ListNewsletterListMembersResponse, UpdateNewsletterListMembershipsRequest, UpdateNewsletterListMembershipsResponse, NewsletterTemplateRecord, ListNewsletterTemplatesResponse, CreateNewsletterTemplateRequest, CreateNewsletterTemplateResponse, GetNewsletterTemplateResponse, UpdateNewsletterTemplateRequest, UpdateNewsletterTemplateResponse, DeleteNewsletterTemplateResponse, PreviewNewsletterTemplateRequest, PreviewNewsletterTemplateResponse, NewsletterCampaignRecord, ListNewsletterCampaignsResponse, CreateNewsletterCampaignRequest, CreateNewsletterCampaignResponse, GetNewsletterCampaignResponse, UpdateNewsletterCampaignRequest, UpdateNewsletterCampaignResponse, DeleteNewsletterCampaignResponse, NewsletterCampaignRecipientsSummary, GetNewsletterCampaignRecipientsSummaryResponse, NewsletterCampaignStats, GetNewsletterCampaignStatsResponse, NewsletterSendJobRecord, NewsletterSendJobStatus, ListNewsletterSendJobsQuery, ListNewsletterSendJobsResponse, RetryNewsletterSendJobResponse, CancelNewsletterSendJobResponse, SiteLogActor, SiteContentActivityLogEntry, SiteFormSubmissionActivityLogEntry, SiteActivityLogEntry, ListSiteActivityLogsResponse, SiteEmailLogEntry, ListSiteEmailLogsResponse, SiteEmailEventLogEntry, ListSiteEmailEventLogsResponse, SitePublicErrorLogEntry, ListSitePublicErrorLogsResponse, } from "./types";
|
|
80
81
|
export { SITE_ROLE_PERMISSION_LEVEL, SITE_ROLE_DISPLAY_ORDER } from "./types";
|
|
81
82
|
export type { AIChatMessage, AiBriefTurn, AiDesignerThemePatchOp, AiPatchApplyResponse, AiPatchDryRunResponse, AiPatchOp, AiPatchRequest, ApplyAiDesignerPageOpsRequest, ApplyAiDesignerPageOpsResponse, ApplyAiDesignerThemePatchRequest, ApplyAiDesignerThemePatchResponse, } from "./types";
|
|
82
83
|
export type { CancelFlexibleBalanceBookingDueToNonPaymentRequest, FlexibleBalanceAdminActionPlan, FlexibleBalanceAdminActionResponse, FlexibleBalanceAdminActionSource, FlexibleBalanceAdminActionView, ReopenFlexibleBalanceBookingAfterNonPaymentCancellationRequest, } from "./types";
|