@riverbankcms/sdk 0.60.11 → 0.60.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_dts/api/src/accessAdmin.d.ts +102 -0
- package/dist/_dts/api/src/common/envelope.d.ts +1 -1
- package/dist/_dts/api/src/domains.d.ts +14 -13
- package/dist/_dts/api/src/endpoints.d.ts +32 -0
- package/dist/_dts/api/src/index.d.ts +2 -2
- package/dist/_dts/api/src/siteManagementEndpoints.d.ts +15 -1
- package/dist/_dts/core/src/participant-identity.d.ts +72 -0
- package/dist/_dts/db/src/generated/supabase/database.types.d.ts +96 -60
- package/dist/_dts/db/src/schemas/forms.d.ts +135 -24
- package/dist/_dts/sdk/src/public-api/contracts.d.ts +1 -1
- package/dist/_dts/sdk/src/version.d.ts +1 -1
- package/dist/cli/index.mjs +119 -1
- package/dist/client/bookings.mjs +62 -0
- package/dist/client/client.mjs +119 -1
- package/dist/client/hooks.mjs +119 -0
- package/dist/client/rendering/client.mjs +61 -0
- package/dist/client/rendering/islands.mjs +61 -0
- package/dist/client/rendering.mjs +118 -0
- package/dist/preview-next/before-render.mjs +57 -0
- package/dist/preview-next/client/runtime.mjs +120 -2
- package/dist/preview-next/middleware.mjs +57 -0
- package/dist/server/components.mjs +119 -0
- package/dist/server/config-validation.mjs +119 -0
- package/dist/server/config.mjs +119 -0
- package/dist/server/data.mjs +119 -0
- package/dist/server/index.mjs +120 -1
- package/dist/server/next.mjs +120 -1
- package/dist/server/page-converter.mjs +62 -0
- package/dist/server/prebuild.mjs +1 -1
- package/dist/server/rendering/server.mjs +119 -0
- package/dist/server/rendering.mjs +119 -0
- package/dist/server/routing.mjs +118 -0
- package/dist/server/server.mjs +120 -1
- package/package.json +1 -1
|
@@ -160,6 +160,9 @@ export type RegisterDomainRequestPayload = {
|
|
|
160
160
|
siteId: string;
|
|
161
161
|
domain: string;
|
|
162
162
|
years?: number;
|
|
163
|
+
quotedPrice?: number;
|
|
164
|
+
quotedCurrency?: string;
|
|
165
|
+
quotedPremium?: boolean;
|
|
163
166
|
useProfileContact?: boolean;
|
|
164
167
|
contact?: RegisterDomainContactInput;
|
|
165
168
|
saveContactToProfile?: boolean;
|
|
@@ -178,6 +181,105 @@ export type RegisterDomainResponse = {
|
|
|
178
181
|
};
|
|
179
182
|
configResult: DomainConfigResult;
|
|
180
183
|
};
|
|
184
|
+
export type RegistrarLifecycleState = "registered" | "configuring" | "awaiting_registrant_verification" | "ready" | "renewal_at_risk" | "renewal_failed" | "transfer_out_requested" | "expired" | "redemption" | "suspended";
|
|
185
|
+
export type RegistrarLifecycleMutationOutcome = "succeeded" | "pending" | "repaired";
|
|
186
|
+
export type RegistrarLifecycleMutationOperation = "update_contact" | "enable_privacy" | "disable_privacy" | "enable_auto_renew" | "disable_auto_renew" | "unlock" | "retrieve_epp";
|
|
187
|
+
export type RegistrarLifecycleMutationBase<TOperation extends RegistrarLifecycleMutationOperation> = {
|
|
188
|
+
operation: TOperation;
|
|
189
|
+
outcome: RegistrarLifecycleMutationOutcome;
|
|
190
|
+
lifecycleState?: RegistrarLifecycleState;
|
|
191
|
+
responseCode?: number;
|
|
192
|
+
providerDetail?: string;
|
|
193
|
+
};
|
|
194
|
+
export type RegistrarLifecycleMutationResponse = RegistrarLifecycleMutationBase<"update_contact"> | (RegistrarLifecycleMutationBase<"enable_privacy" | "disable_privacy"> & {
|
|
195
|
+
privacyEnabled: boolean;
|
|
196
|
+
}) | (RegistrarLifecycleMutationBase<"enable_auto_renew" | "disable_auto_renew"> & {
|
|
197
|
+
autoRenew: boolean;
|
|
198
|
+
}) | (RegistrarLifecycleMutationBase<"unlock"> & {
|
|
199
|
+
lifecycleState: "transfer_out_requested";
|
|
200
|
+
}) | (RegistrarLifecycleMutationBase<"retrieve_epp"> & {
|
|
201
|
+
lifecycleState: "transfer_out_requested";
|
|
202
|
+
} & ({
|
|
203
|
+
eppCodeDelivery: "provider_delivered";
|
|
204
|
+
} | {
|
|
205
|
+
eppCodeDelivery: "returned";
|
|
206
|
+
eppCode: string;
|
|
207
|
+
}));
|
|
208
|
+
export type ExposedRegistrarLifecycleMutationResponse = Extract<RegistrarLifecycleMutationResponse, {
|
|
209
|
+
operation: "update_contact" | "enable_privacy" | "disable_privacy" | "enable_auto_renew" | "disable_auto_renew";
|
|
210
|
+
}>;
|
|
211
|
+
export type RegistrarLifecycleResponse = {
|
|
212
|
+
domain: SiteDomainRecord;
|
|
213
|
+
mutation: ExposedRegistrarLifecycleMutationResponse;
|
|
214
|
+
};
|
|
215
|
+
export type RegistrarBooleanMutationRequest = {
|
|
216
|
+
enabled: boolean;
|
|
217
|
+
};
|
|
218
|
+
export type RegistrarRenewalCostEstimate = {
|
|
219
|
+
amount: number;
|
|
220
|
+
currency?: string;
|
|
221
|
+
source: "provider_quote" | "manual" | "last_registration";
|
|
222
|
+
};
|
|
223
|
+
export type RegistrarProviderName = "namesilo";
|
|
224
|
+
export type RegistrarRenewalRiskReason = "auto_renew_disabled" | "insufficient_registrar_funds";
|
|
225
|
+
export type RegistrarRenewalManualReviewReason = "not_managed_by_registrar" | "registered_domain_missing_registrar" | "missing_expiry" | "invalid_expiry" | "invalid_registrar_balance" | "invalid_renewal_cost_estimate" | "missing_renewal_cost_estimate" | "registrar_balance_unavailable" | "registrar_balance_unsupported" | "currency_mismatch";
|
|
226
|
+
export type RegistrarRenewalManualReviewReasonWithoutExpiry = "not_managed_by_registrar" | "registered_domain_missing_registrar" | "missing_expiry" | "invalid_expiry";
|
|
227
|
+
export type RegistrarRenewalManualReviewReasonWithExpiry = Exclude<RegistrarRenewalManualReviewReason, RegistrarRenewalManualReviewReasonWithoutExpiry>;
|
|
228
|
+
export type RegistrarRenewalFailedReason = "past_expiry" | "renewal_failed_lifecycle" | "expired_lifecycle" | "redemption_lifecycle" | "suspended_lifecycle";
|
|
229
|
+
export type RegistrarRenewalPosture = {
|
|
230
|
+
kind: "funded";
|
|
231
|
+
domain: string;
|
|
232
|
+
provider: RegistrarProviderName;
|
|
233
|
+
expiresAt: string;
|
|
234
|
+
daysUntilExpiry: number;
|
|
235
|
+
availableBalance: number;
|
|
236
|
+
renewalCost: RegistrarRenewalCostEstimate;
|
|
237
|
+
} | {
|
|
238
|
+
kind: "at_risk";
|
|
239
|
+
domain: string;
|
|
240
|
+
provider: RegistrarProviderName;
|
|
241
|
+
expiresAt: string;
|
|
242
|
+
daysUntilExpiry: number;
|
|
243
|
+
reasons: readonly [RegistrarRenewalRiskReason, ...RegistrarRenewalRiskReason[]];
|
|
244
|
+
availableBalance?: number;
|
|
245
|
+
renewalCost?: RegistrarRenewalCostEstimate;
|
|
246
|
+
} | {
|
|
247
|
+
kind: "failed";
|
|
248
|
+
domain: string;
|
|
249
|
+
provider: RegistrarProviderName | null;
|
|
250
|
+
reason: RegistrarRenewalFailedReason;
|
|
251
|
+
expiresAt: string;
|
|
252
|
+
} | {
|
|
253
|
+
kind: "manual_review";
|
|
254
|
+
domain: string;
|
|
255
|
+
provider: RegistrarProviderName | null;
|
|
256
|
+
reason: RegistrarRenewalManualReviewReasonWithoutExpiry;
|
|
257
|
+
} | {
|
|
258
|
+
kind: "manual_review";
|
|
259
|
+
domain: string;
|
|
260
|
+
provider: RegistrarProviderName;
|
|
261
|
+
reason: RegistrarRenewalManualReviewReasonWithExpiry;
|
|
262
|
+
expiresAt: string;
|
|
263
|
+
};
|
|
264
|
+
export type RegistrarAccountBalance = {
|
|
265
|
+
success: true;
|
|
266
|
+
provider: RegistrarProviderName;
|
|
267
|
+
availableBalance: number;
|
|
268
|
+
currency?: string;
|
|
269
|
+
rawBalance: string;
|
|
270
|
+
} | {
|
|
271
|
+
success: false;
|
|
272
|
+
provider: RegistrarProviderName;
|
|
273
|
+
reason: "unsupported" | "provider_error";
|
|
274
|
+
error: string;
|
|
275
|
+
};
|
|
276
|
+
export type RegistrarRenewalPostureResponse = {
|
|
277
|
+
domain: SiteDomainRecord;
|
|
278
|
+
posture: RegistrarRenewalPosture;
|
|
279
|
+
checkedAt: string;
|
|
280
|
+
renewalCost?: RegistrarRenewalCostEstimate;
|
|
281
|
+
accountBalance?: RegistrarAccountBalance;
|
|
282
|
+
};
|
|
181
283
|
export type SetHomepageRequest = {
|
|
182
284
|
pageId: string;
|
|
183
285
|
};
|
|
@@ -24,7 +24,7 @@ export interface ApiResponse<TData> {
|
|
|
24
24
|
data: TData;
|
|
25
25
|
meta: ResponseMeta;
|
|
26
26
|
}
|
|
27
|
-
export type ApiErrorCode = 'auth:unauthenticated' | 'auth:token_expired' | 'auth:token_invalid' | 'auth:forbidden' | 'auth:mfa_required' | 'auth:sudo_required' | 'auth:insufficient_permissions' | 'auth:impersonation_restricted' | 'validation:invalid_input' | 'validation:missing_field' | 'validation:invalid_format' | 'validation:payload_too_large' | 'resource:not_found' | 'resource:already_exists' | 'resource:conflict' | 'resource:gone' | 'rate_limit:exceeded' | 'billing:payment_required' | 'billing:plan_limit_exceeded' | 'billing:pass_redemption_failed' | 'server:internal_error' | 'server:unavailable' | 'external:service_error' | 'network:connection_error' | 'network:timeout' | 'network:dns_error';
|
|
27
|
+
export type ApiErrorCode = 'auth:unauthenticated' | 'auth:token_expired' | 'auth:token_invalid' | 'auth:forbidden' | 'auth:mfa_required' | 'auth:sudo_required' | 'auth:insufficient_permissions' | 'auth:impersonation_restricted' | 'validation:invalid_input' | 'validation:missing_field' | 'validation:invalid_format' | 'validation:payload_too_large' | 'resource:not_found' | 'resource:already_exists' | 'resource:conflict' | 'resource:gone' | 'rate_limit:exceeded' | 'billing:payment_required' | 'billing:plan_limit_exceeded' | 'billing:pass_redemption_failed' | 'server:internal_error' | 'server:unavailable' | 'external:service_error' | 'external:registrar_orphaned_contact_profile' | 'network:connection_error' | 'network:timeout' | 'network:dns_error';
|
|
28
28
|
export interface FieldError {
|
|
29
29
|
field: string;
|
|
30
30
|
code: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { APIEndpoints, SiteDomainRecord, DomainConfigResult } from './types';
|
|
2
|
-
import type { DomainSearchResultResponse, RegisterDomainRequestPayload, RegisterDomainResponse } from './types';
|
|
2
|
+
import type { DomainSearchResultResponse, RegisterDomainRequestPayload, RegisterDomainResponse, RegistrarBooleanMutationRequest, RegistrarLifecycleResponse, RegistrarRenewalPostureResponse, SiteDomainContactPayload } from './types';
|
|
3
3
|
import type { ApiClient } from './request';
|
|
4
4
|
type RemoveDomainResponse = NonNullable<APIEndpoints['removeDomain']['response']>;
|
|
5
5
|
type GetDomainDnsResponse = NonNullable<APIEndpoints['getDomainDns']['response']>;
|
|
@@ -37,16 +37,17 @@ export declare function verifyDomainDnsRequest(apiClient: ApiClient, { domainId,
|
|
|
37
37
|
type RetryNameserversResponse = NonNullable<APIEndpoints['retryDomainNameservers']['response']>;
|
|
38
38
|
type RetryVercelResponse = NonNullable<APIEndpoints['retryDomainVercel']['response']>;
|
|
39
39
|
type RetryResendResponse = NonNullable<APIEndpoints['retryDomainResend']['response']>;
|
|
40
|
-
|
|
41
|
-
domainId: string;
|
|
42
|
-
options?: RequestInit;
|
|
43
|
-
}
|
|
44
|
-
export declare function
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
}): Promise<
|
|
48
|
-
export declare function
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
}): Promise<
|
|
40
|
+
type DomainIdRequest = {
|
|
41
|
+
domainId: string;
|
|
42
|
+
options?: RequestInit;
|
|
43
|
+
};
|
|
44
|
+
export declare function retryNameserversRequest(apiClient: ApiClient, { domainId, options }: DomainIdRequest): Promise<RetryNameserversResponse>;
|
|
45
|
+
export declare function updateRegisteredDomainContactRequest(apiClient: ApiClient, { domainId, contact, options }: DomainIdRequest & {
|
|
46
|
+
contact: SiteDomainContactPayload;
|
|
47
|
+
}): Promise<RegistrarLifecycleResponse>;
|
|
48
|
+
export declare function setRegisteredDomainPrivacyRequest(apiClient: ApiClient, { domainId, enabled, options }: DomainIdRequest & RegistrarBooleanMutationRequest): Promise<RegistrarLifecycleResponse>;
|
|
49
|
+
export declare function setRegisteredDomainAutoRenewRequest(apiClient: ApiClient, { domainId, enabled, options }: DomainIdRequest & RegistrarBooleanMutationRequest): Promise<RegistrarLifecycleResponse>;
|
|
50
|
+
export declare function getRegisteredDomainRenewalPostureRequest(apiClient: ApiClient, { domainId, options }: DomainIdRequest): Promise<RegistrarRenewalPostureResponse>;
|
|
51
|
+
export declare function retryVercelRequest(apiClient: ApiClient, { domainId, options }: DomainIdRequest): Promise<RetryVercelResponse>;
|
|
52
|
+
export declare function retryResendRequest(apiClient: ApiClient, { domainId, options }: DomainIdRequest): Promise<RetryResendResponse>;
|
|
52
53
|
export {};
|
|
@@ -1713,6 +1713,38 @@ export declare const API_ENDPOINTS: {
|
|
|
1713
1713
|
readonly auth: "user";
|
|
1714
1714
|
readonly responseKind: "json";
|
|
1715
1715
|
};
|
|
1716
|
+
readonly updateRegisteredDomainContact: {
|
|
1717
|
+
readonly path: "/domains/{domainId}/registrar/contact";
|
|
1718
|
+
readonly method: "POST";
|
|
1719
|
+
readonly errors: readonly ["validation:invalid_input", "resource:not_found", "auth:forbidden", "external:service_error", "external:registrar_orphaned_contact_profile", "server:internal_error"];
|
|
1720
|
+
readonly tags: ["domains", "domain-{domainId}", "domain-registrar"];
|
|
1721
|
+
readonly auth: "user";
|
|
1722
|
+
readonly responseKind: "json";
|
|
1723
|
+
};
|
|
1724
|
+
readonly setRegisteredDomainPrivacy: {
|
|
1725
|
+
readonly path: "/domains/{domainId}/registrar/privacy";
|
|
1726
|
+
readonly method: "POST";
|
|
1727
|
+
readonly errors: readonly ["validation:invalid_input", "resource:not_found", "auth:forbidden", "external:service_error", "server:internal_error"];
|
|
1728
|
+
readonly tags: ["domains", "domain-{domainId}", "domain-registrar"];
|
|
1729
|
+
readonly auth: "user";
|
|
1730
|
+
readonly responseKind: "json";
|
|
1731
|
+
};
|
|
1732
|
+
readonly setRegisteredDomainAutoRenew: {
|
|
1733
|
+
readonly path: "/domains/{domainId}/registrar/auto-renew";
|
|
1734
|
+
readonly method: "POST";
|
|
1735
|
+
readonly errors: readonly ["validation:invalid_input", "resource:not_found", "auth:forbidden", "external:service_error", "server:internal_error"];
|
|
1736
|
+
readonly tags: ["domains", "domain-{domainId}", "domain-registrar"];
|
|
1737
|
+
readonly auth: "user";
|
|
1738
|
+
readonly responseKind: "json";
|
|
1739
|
+
};
|
|
1740
|
+
readonly getRegisteredDomainRenewalPosture: {
|
|
1741
|
+
readonly path: "/domains/{domainId}/registrar/renewal";
|
|
1742
|
+
readonly method: "GET";
|
|
1743
|
+
readonly errors: readonly ["validation:invalid_input", "resource:not_found", "auth:forbidden", "external:service_error", "server:internal_error"];
|
|
1744
|
+
readonly tags: ["domains", "domain-{domainId}", "domain-registrar"];
|
|
1745
|
+
readonly auth: "user";
|
|
1746
|
+
readonly responseKind: "json";
|
|
1747
|
+
};
|
|
1716
1748
|
readonly retryDomainVercel: {
|
|
1717
1749
|
readonly path: "/domains/{domainId}/vercel";
|
|
1718
1750
|
readonly method: "POST";
|
|
@@ -70,13 +70,13 @@ export { getPerformanceOverview } from "./performance";
|
|
|
70
70
|
export { listContentTypes, enableContentType, setupContentType, getContentTemplate, updateContentTemplateBlock, applyContentTemplateAddon, updateContentTemplateBlockBindings, getTransforms, createTemplateBlock, deleteTemplateBlock, reorderTemplateBlocks, } from "./contentTypes";
|
|
71
71
|
export { getAnalyticsReport } from "./analytics";
|
|
72
72
|
export { getSiteMembers, inviteSiteMember, updateSiteMemberRole, removeSiteMember, revokeSiteInvitation, transferSiteOwnership, acceptSiteInvitation, } from "./siteMembers";
|
|
73
|
-
export { listAccountDomains, searchDomainsRequest, registerDomainRequest, assignDomainToSiteRequest, removeDomainRequest, retryDomainConfigRequest, getDomainDnsRequest, verifyDomainDnsRequest, retryNameserversRequest, retryVercelRequest, retryResendRequest, } from "./domains";
|
|
73
|
+
export { listAccountDomains, searchDomainsRequest, registerDomainRequest, assignDomainToSiteRequest, removeDomainRequest, retryDomainConfigRequest, getDomainDnsRequest, verifyDomainDnsRequest, retryNameserversRequest, updateRegisteredDomainContactRequest, setRegisteredDomainPrivacyRequest, setRegisteredDomainAutoRenewRequest, retryVercelRequest, retryResendRequest, } from "./domains";
|
|
74
74
|
export { startImpersonation, stopImpersonation, assignAdminRole, revokeAdminRole, adminChangePlan, listAdminInvites, createAdminInvite, revokeAdminInvite, createAdminUser, adminDeleteSite, adminDeleteUser, listAllowedDomains, addAllowedDomain, deleteAllowedDomain, listGscPropertiesAdmin, setGscPersistEnabled, startGscVerification, confirmGscVerification, runGscIngestionForSite, getPriceOverride, upsertPriceOverride, deletePriceOverride, } from "./admin";
|
|
75
75
|
export { enrollTotpFactor, verifyTotpFactor, activateTotpFactor, deleteMfaFactor, rotateBackupCodes, getBackupCodesOverview, enrollPhoneFactor, challengePhoneFactor, verifyPhoneFactor, acceptAdminInvite, } from "./auth";
|
|
76
76
|
export type { ApiResult, ApiResponse, ApiError, ApiErrorCode, FieldError, ResponseMeta, } from "./common/envelope";
|
|
77
77
|
export type { JsonPrimitive, JsonValue } from "./types";
|
|
78
78
|
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, 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";
|
|
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
80
|
export { SITE_ROLE_PERMISSION_LEVEL, SITE_ROLE_DISPLAY_ORDER } from "./types";
|
|
81
81
|
export type { AIChatMessage, AiBriefTurn, AiDesignerThemePatchOp, AiPatchApplyResponse, AiPatchDryRunResponse, AiPatchOp, AiPatchRequest, ApplyAiDesignerPageOpsRequest, ApplyAiDesignerPageOpsResponse, ApplyAiDesignerThemePatchRequest, ApplyAiDesignerThemePatchResponse, } from "./types";
|
|
82
82
|
export type { CancelFlexibleBalanceBookingDueToNonPaymentRequest, FlexibleBalanceAdminActionPlan, FlexibleBalanceAdminActionResponse, FlexibleBalanceAdminActionSource, FlexibleBalanceAdminActionView, ReopenFlexibleBalanceBookingAfterNonPaymentCancellationRequest, } from "./types";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { RectificationHistoryPropagationPlan, RectificationIdentityBoundary, RectificationIssueUrl, RectificationSurface } from "@riverbankcms/core";
|
|
2
2
|
import type { CamelizeKeys, DbRow, DbJson } from "@riverbankcms/db";
|
|
3
3
|
import type { APIEndpoint } from "./apiEndpointTypes";
|
|
4
|
-
import type { AcceptAdminInviteRequest, AcceptAdminInviteResponse, AcceptSiteInvitationRequest, AcceptSiteInvitationResponse, AddCustomDomainRequest, AddCustomDomainResponse, AdminChangePlanRequest, AdminChangePlanResponse, AdminDeleteUserResponse, AuthInviteContinueRequest, AuthInviteContinueResponse, AuthInviteRegisterRequest, AuthInviteRegisterResponse, AuthResetCompleteRequest, AuthResetCompleteResponse, AuthSubmissionResult, BulkOperationResult, ChangePlanRequest, ChangePlanResponse, CreateAdminInviteRequest, CreateAdminInviteResponse, CreateAdminUserRequest, CreateAdminUserResponse, CreateAllowedDomainRequest, CreateAllowedDomainResponse, DeleteAllowedDomainResponse, DomainConfigResult, DomainSearchResultResponse, InviteSiteMemberRequest, InviteSiteMemberResponse, ListAdminInvitesResponse, ListAllowedDomainsResponse, ListSiteMembersResponse, LookupSiteDomainRequest, LookupSiteDomainResponse, MfaBackupCodesOverviewResponse, MfaBackupCodesRotateResponse, MfaOverviewResponse, MfaPhoneChallengeRequest, MfaPhoneChallengeResponse, MfaPhoneEnrollRequest, MfaPhoneEnrollResponse, MfaPhoneVerifyRequest, MfaTotpActivateRequest, MfaTotpEnrollResponse, MfaTotpVerifyRequest, MfaTotpVerifyResponse, ReauthSubmissionResult, RegisterDomainRequestPayload, RegisterDomainResponse, RegisterSiteDomainRequest, RegisterSiteDomainResponse, RemoveSiteMemberResponse, RevokeAdminInviteResponse, RevokeSiteInvitationResponse, SetHomepageRequest, SetHomepageResponse, SiteDomainRecord, TransferSiteOwnershipRequest, TransferSiteOwnershipResponse, UpdateSiteMemberRoleRequest, UpdateSiteMemberRoleResponse } from "./accessAdmin";
|
|
4
|
+
import type { AcceptAdminInviteRequest, AcceptAdminInviteResponse, AcceptSiteInvitationRequest, AcceptSiteInvitationResponse, AddCustomDomainRequest, AddCustomDomainResponse, AdminChangePlanRequest, AdminChangePlanResponse, AdminDeleteUserResponse, AuthInviteContinueRequest, AuthInviteContinueResponse, AuthInviteRegisterRequest, AuthInviteRegisterResponse, AuthResetCompleteRequest, AuthResetCompleteResponse, AuthSubmissionResult, BulkOperationResult, ChangePlanRequest, ChangePlanResponse, CreateAdminInviteRequest, CreateAdminInviteResponse, CreateAdminUserRequest, CreateAdminUserResponse, CreateAllowedDomainRequest, CreateAllowedDomainResponse, DeleteAllowedDomainResponse, DomainConfigResult, DomainSearchResultResponse, InviteSiteMemberRequest, InviteSiteMemberResponse, ListAdminInvitesResponse, ListAllowedDomainsResponse, ListSiteMembersResponse, LookupSiteDomainRequest, LookupSiteDomainResponse, MfaBackupCodesOverviewResponse, MfaBackupCodesRotateResponse, MfaOverviewResponse, MfaPhoneChallengeRequest, MfaPhoneChallengeResponse, MfaPhoneEnrollRequest, MfaPhoneEnrollResponse, MfaPhoneVerifyRequest, MfaTotpActivateRequest, MfaTotpEnrollResponse, MfaTotpVerifyRequest, MfaTotpVerifyResponse, ReauthSubmissionResult, RegisterDomainRequestPayload, RegisterDomainResponse, RegistrarBooleanMutationRequest, RegistrarLifecycleResponse, RegistrarRenewalPostureResponse, RegisterSiteDomainRequest, RegisterSiteDomainResponse, RemoveSiteMemberResponse, RevokeAdminInviteResponse, RevokeSiteInvitationResponse, SetHomepageRequest, SetHomepageResponse, SiteDomainContactPayload, SiteDomainRecord, TransferSiteOwnershipRequest, TransferSiteOwnershipResponse, UpdateSiteMemberRoleRequest, UpdateSiteMemberRoleResponse } from "./accessAdmin";
|
|
5
5
|
import type { AdminRoleMutationResponse, RevokeAdminRoleRequest, StartImpersonationRequest, StartImpersonationResponse, StopImpersonationRequest, StopImpersonationResponse, UpsertAdminRoleRequest } from "./admin/types";
|
|
6
6
|
import type { AccountRevokeSessionsBody, AccountRevokeSessionsResponse, AccountUpdatePasswordBody, AccountUpdatePasswordResponse, CreateManualSiteRequest, CreateManualSiteResponse } from "./siteOperations";
|
|
7
7
|
import type { BookingSessionCancelAppointmentRequest, BookingSessionCancelAppointmentResponse, BookingSessionCreateAppointmentRequest, BookingSessionCreateAppointmentResponse, BookingSessionGetAppointmentResponse, BookingSessionListEligibleAppointmentPackagesResponse, BookingSessionGetEventResponse, BookingSessionListAppointmentsResponse, BookingSessionListEventsResponse, BookingSessionListMembershipsResponse, BookingSessionListPassesResponse, BookingSessionMeResponse, BookingSessionUpdateMeRequest, BookingSessionUpdateMeResponse, PublicBookingAppointmentStatusResponse, PublicBookingAvailabilityQuery, PublicBookingAvailableDatesResponse, PublicBookingAvailableSlotsResponse, PublicBookingService, PublicCreateBookingAppointmentRequest, PublicCreateBookingAppointmentResponse, ReferenceOptionsResponse } from "./bookingOperations";
|
|
@@ -379,6 +379,18 @@ export type SiteManagementAPIEndpoints = {
|
|
|
379
379
|
success: boolean;
|
|
380
380
|
nameservers: string[];
|
|
381
381
|
}>;
|
|
382
|
+
updateRegisteredDomainContact: APIEndpoint<SiteDomainContactPayload, {
|
|
383
|
+
domainId: string;
|
|
384
|
+
}, RegistrarLifecycleResponse>;
|
|
385
|
+
setRegisteredDomainPrivacy: APIEndpoint<RegistrarBooleanMutationRequest, {
|
|
386
|
+
domainId: string;
|
|
387
|
+
}, RegistrarLifecycleResponse>;
|
|
388
|
+
setRegisteredDomainAutoRenew: APIEndpoint<RegistrarBooleanMutationRequest, {
|
|
389
|
+
domainId: string;
|
|
390
|
+
}, RegistrarLifecycleResponse>;
|
|
391
|
+
getRegisteredDomainRenewalPosture: APIEndpoint<never, {
|
|
392
|
+
domainId: string;
|
|
393
|
+
}, RegistrarRenewalPostureResponse>;
|
|
382
394
|
retryDomainVercel: APIEndpoint<never, {
|
|
383
395
|
domainId: string;
|
|
384
396
|
}, {
|
|
@@ -815,6 +827,7 @@ export type SiteManagementAPIEndpoints = {
|
|
|
815
827
|
slug: string;
|
|
816
828
|
schema: DbJson;
|
|
817
829
|
settings?: DbJson;
|
|
830
|
+
presentation?: DbJson;
|
|
818
831
|
}, {
|
|
819
832
|
siteId: string;
|
|
820
833
|
}, {
|
|
@@ -824,6 +837,7 @@ export type SiteManagementAPIEndpoints = {
|
|
|
824
837
|
name?: string;
|
|
825
838
|
schema?: DbJson;
|
|
826
839
|
settings?: DbJson;
|
|
840
|
+
presentation?: DbJson;
|
|
827
841
|
}, {
|
|
828
842
|
siteId: string;
|
|
829
843
|
slug: string;
|
|
@@ -133,3 +133,75 @@ export type CleanupReadiness = Readonly<{
|
|
|
133
133
|
blockers: readonly CleanupReadinessBlocker[];
|
|
134
134
|
}>;
|
|
135
135
|
export declare function planCleanupReadiness(evidence: CleanupEvidence): CleanupReadiness;
|
|
136
|
+
export type ParticipantParticipationIdentityField = 'participant_id' | 'display_name' | 'email' | 'email_normalized' | 'phone' | 'identity_state' | 'event_attendee_guest_id';
|
|
137
|
+
export type ParticipantParticipationIdentityFieldRole = 'canonical_link' | 'contextual_snapshot' | 'compatibility_projection' | 'materialization_state';
|
|
138
|
+
export type ParticipantParticipationIdentityFieldContractAction = 'tighten_in_839' | 'retain_as_snapshot' | 'retain_as_projection' | 'review_for_later_contract_cleanup';
|
|
139
|
+
export type ParticipantParticipationIdentityFieldClassification = Readonly<{
|
|
140
|
+
field: ParticipantParticipationIdentityField;
|
|
141
|
+
role: ParticipantParticipationIdentityFieldRole;
|
|
142
|
+
canonicalSource: string;
|
|
143
|
+
contractAction: ParticipantParticipationIdentityFieldContractAction;
|
|
144
|
+
notes: string;
|
|
145
|
+
}>;
|
|
146
|
+
export declare const PARTICIPANT_PARTICIPATION_IDENTITY_FIELD_CLASSIFICATIONS: readonly [Readonly<{
|
|
147
|
+
field: ParticipantParticipationIdentityField;
|
|
148
|
+
role: ParticipantParticipationIdentityFieldRole;
|
|
149
|
+
canonicalSource: string;
|
|
150
|
+
contractAction: ParticipantParticipationIdentityFieldContractAction;
|
|
151
|
+
notes: string;
|
|
152
|
+
}>, Readonly<{
|
|
153
|
+
field: ParticipantParticipationIdentityField;
|
|
154
|
+
role: ParticipantParticipationIdentityFieldRole;
|
|
155
|
+
canonicalSource: string;
|
|
156
|
+
contractAction: ParticipantParticipationIdentityFieldContractAction;
|
|
157
|
+
notes: string;
|
|
158
|
+
}>, Readonly<{
|
|
159
|
+
field: ParticipantParticipationIdentityField;
|
|
160
|
+
role: ParticipantParticipationIdentityFieldRole;
|
|
161
|
+
canonicalSource: string;
|
|
162
|
+
contractAction: ParticipantParticipationIdentityFieldContractAction;
|
|
163
|
+
notes: string;
|
|
164
|
+
}>, Readonly<{
|
|
165
|
+
field: ParticipantParticipationIdentityField;
|
|
166
|
+
role: ParticipantParticipationIdentityFieldRole;
|
|
167
|
+
canonicalSource: string;
|
|
168
|
+
contractAction: ParticipantParticipationIdentityFieldContractAction;
|
|
169
|
+
notes: string;
|
|
170
|
+
}>, Readonly<{
|
|
171
|
+
field: ParticipantParticipationIdentityField;
|
|
172
|
+
role: ParticipantParticipationIdentityFieldRole;
|
|
173
|
+
canonicalSource: string;
|
|
174
|
+
contractAction: ParticipantParticipationIdentityFieldContractAction;
|
|
175
|
+
notes: string;
|
|
176
|
+
}>, Readonly<{
|
|
177
|
+
field: ParticipantParticipationIdentityField;
|
|
178
|
+
role: ParticipantParticipationIdentityFieldRole;
|
|
179
|
+
canonicalSource: string;
|
|
180
|
+
contractAction: ParticipantParticipationIdentityFieldContractAction;
|
|
181
|
+
notes: string;
|
|
182
|
+
}>, Readonly<{
|
|
183
|
+
field: ParticipantParticipationIdentityField;
|
|
184
|
+
role: ParticipantParticipationIdentityFieldRole;
|
|
185
|
+
canonicalSource: string;
|
|
186
|
+
contractAction: ParticipantParticipationIdentityFieldContractAction;
|
|
187
|
+
notes: string;
|
|
188
|
+
}>];
|
|
189
|
+
export declare function getParticipantParticipationIdentityFieldClassification(field: ParticipantParticipationIdentityField): ParticipantParticipationIdentityFieldClassification;
|
|
190
|
+
export type ParticipantIdentityContractReadinessEvidence = Readonly<{
|
|
191
|
+
subjectlessParticipationCount: number;
|
|
192
|
+
unresolvedHealthRowCount: number;
|
|
193
|
+
legacyCustomerEmailCallSiteCount: number;
|
|
194
|
+
unclassifiedParticipationIdentityReferenceCount: number;
|
|
195
|
+
contractCandidateCount: number;
|
|
196
|
+
}>;
|
|
197
|
+
export type ParticipantIdentityContractReadinessBlocker = 'subjectless_participations_remaining' | 'unresolved_health_rows_remaining' | 'legacy_customer_email_call_sites_remaining' | 'unclassified_participation_identity_references_remaining';
|
|
198
|
+
export type ParticipantIdentityContractReadiness = Readonly<{
|
|
199
|
+
version: 1;
|
|
200
|
+
status: 'ready' | 'blocked';
|
|
201
|
+
blockers: readonly ParticipantIdentityContractReadinessBlocker[];
|
|
202
|
+
evidence: ParticipantIdentityContractReadinessEvidence;
|
|
203
|
+
}>;
|
|
204
|
+
export declare function countParticipantIdentityContractCandidateFields(classifications?: readonly ParticipantParticipationIdentityFieldClassification[]): number;
|
|
205
|
+
export declare function planParticipantIdentityContractReadiness(input: Readonly<{
|
|
206
|
+
evidence: ParticipantIdentityContractReadinessEvidence;
|
|
207
|
+
}>): ParticipantIdentityContractReadiness;
|
|
@@ -720,66 +720,6 @@ export type Database = {
|
|
|
720
720
|
}
|
|
721
721
|
];
|
|
722
722
|
};
|
|
723
|
-
appointment_resources: {
|
|
724
|
-
Row: {
|
|
725
|
-
archived_at: string | null;
|
|
726
|
-
avatar_asset_id: string | null;
|
|
727
|
-
bio: string | null;
|
|
728
|
-
calendar_sync_enabled: boolean;
|
|
729
|
-
color_hex: string | null;
|
|
730
|
-
created_at: string;
|
|
731
|
-
display_name: string;
|
|
732
|
-
id: string;
|
|
733
|
-
site_id: string;
|
|
734
|
-
timezone: string;
|
|
735
|
-
updated_at: string;
|
|
736
|
-
user_id: string | null;
|
|
737
|
-
};
|
|
738
|
-
Insert: {
|
|
739
|
-
archived_at?: string | null;
|
|
740
|
-
avatar_asset_id?: string | null;
|
|
741
|
-
bio?: string | null;
|
|
742
|
-
calendar_sync_enabled?: boolean;
|
|
743
|
-
color_hex?: string | null;
|
|
744
|
-
created_at?: string;
|
|
745
|
-
display_name: string;
|
|
746
|
-
id?: string;
|
|
747
|
-
site_id: string;
|
|
748
|
-
timezone?: string;
|
|
749
|
-
updated_at?: string;
|
|
750
|
-
user_id?: string | null;
|
|
751
|
-
};
|
|
752
|
-
Update: {
|
|
753
|
-
archived_at?: string | null;
|
|
754
|
-
avatar_asset_id?: string | null;
|
|
755
|
-
bio?: string | null;
|
|
756
|
-
calendar_sync_enabled?: boolean;
|
|
757
|
-
color_hex?: string | null;
|
|
758
|
-
created_at?: string;
|
|
759
|
-
display_name?: string;
|
|
760
|
-
id?: string;
|
|
761
|
-
site_id?: string;
|
|
762
|
-
timezone?: string;
|
|
763
|
-
updated_at?: string;
|
|
764
|
-
user_id?: string | null;
|
|
765
|
-
};
|
|
766
|
-
Relationships: [
|
|
767
|
-
{
|
|
768
|
-
foreignKeyName: "appointment_resources_avatar_asset_id_fkey";
|
|
769
|
-
columns: ["avatar_asset_id"];
|
|
770
|
-
isOneToOne: false;
|
|
771
|
-
referencedRelation: "media_assets";
|
|
772
|
-
referencedColumns: ["id"];
|
|
773
|
-
},
|
|
774
|
-
{
|
|
775
|
-
foreignKeyName: "appointment_resources_site_id_fkey";
|
|
776
|
-
columns: ["site_id"];
|
|
777
|
-
isOneToOne: false;
|
|
778
|
-
referencedRelation: "sites";
|
|
779
|
-
referencedColumns: ["id"];
|
|
780
|
-
}
|
|
781
|
-
];
|
|
782
|
-
};
|
|
783
723
|
appointment_services: {
|
|
784
724
|
Row: {
|
|
785
725
|
cleanup_minutes: number;
|
|
@@ -5382,6 +5322,66 @@ export type Database = {
|
|
|
5382
5322
|
}
|
|
5383
5323
|
];
|
|
5384
5324
|
};
|
|
5325
|
+
domain_registrar_events: {
|
|
5326
|
+
Row: {
|
|
5327
|
+
actor_user_id: string | null;
|
|
5328
|
+
created_at: string;
|
|
5329
|
+
domain: string;
|
|
5330
|
+
id: string;
|
|
5331
|
+
metadata: Json;
|
|
5332
|
+
operation: string;
|
|
5333
|
+
outcome: string;
|
|
5334
|
+
provider: string;
|
|
5335
|
+
provider_detail: string | null;
|
|
5336
|
+
provider_response_code: number | null;
|
|
5337
|
+
site_domain_id: string | null;
|
|
5338
|
+
site_id: string;
|
|
5339
|
+
};
|
|
5340
|
+
Insert: {
|
|
5341
|
+
actor_user_id?: string | null;
|
|
5342
|
+
created_at?: string;
|
|
5343
|
+
domain: string;
|
|
5344
|
+
id?: string;
|
|
5345
|
+
metadata?: Json;
|
|
5346
|
+
operation: string;
|
|
5347
|
+
outcome: string;
|
|
5348
|
+
provider: string;
|
|
5349
|
+
provider_detail?: string | null;
|
|
5350
|
+
provider_response_code?: number | null;
|
|
5351
|
+
site_domain_id?: string | null;
|
|
5352
|
+
site_id: string;
|
|
5353
|
+
};
|
|
5354
|
+
Update: {
|
|
5355
|
+
actor_user_id?: string | null;
|
|
5356
|
+
created_at?: string;
|
|
5357
|
+
domain?: string;
|
|
5358
|
+
id?: string;
|
|
5359
|
+
metadata?: Json;
|
|
5360
|
+
operation?: string;
|
|
5361
|
+
outcome?: string;
|
|
5362
|
+
provider?: string;
|
|
5363
|
+
provider_detail?: string | null;
|
|
5364
|
+
provider_response_code?: number | null;
|
|
5365
|
+
site_domain_id?: string | null;
|
|
5366
|
+
site_id?: string;
|
|
5367
|
+
};
|
|
5368
|
+
Relationships: [
|
|
5369
|
+
{
|
|
5370
|
+
foreignKeyName: "domain_registrar_events_site_domain_id_fkey";
|
|
5371
|
+
columns: ["site_domain_id"];
|
|
5372
|
+
isOneToOne: false;
|
|
5373
|
+
referencedRelation: "site_domains";
|
|
5374
|
+
referencedColumns: ["id"];
|
|
5375
|
+
},
|
|
5376
|
+
{
|
|
5377
|
+
foreignKeyName: "domain_registrar_events_site_id_fkey";
|
|
5378
|
+
columns: ["site_id"];
|
|
5379
|
+
isOneToOne: false;
|
|
5380
|
+
referencedRelation: "sites";
|
|
5381
|
+
referencedColumns: ["id"];
|
|
5382
|
+
}
|
|
5383
|
+
];
|
|
5384
|
+
};
|
|
5385
5385
|
dsar_run_summaries: {
|
|
5386
5386
|
Row: {
|
|
5387
5387
|
counts: Json;
|
|
@@ -6898,6 +6898,7 @@ export type Database = {
|
|
|
6898
6898
|
created_at: string;
|
|
6899
6899
|
id: string;
|
|
6900
6900
|
name: string;
|
|
6901
|
+
presentation_json: Json;
|
|
6901
6902
|
schema_json: Json;
|
|
6902
6903
|
settings_json: Json;
|
|
6903
6904
|
site_id: string;
|
|
@@ -6909,6 +6910,7 @@ export type Database = {
|
|
|
6909
6910
|
created_at?: string;
|
|
6910
6911
|
id?: string;
|
|
6911
6912
|
name: string;
|
|
6913
|
+
presentation_json?: Json;
|
|
6912
6914
|
schema_json: Json;
|
|
6913
6915
|
settings_json?: Json;
|
|
6914
6916
|
site_id: string;
|
|
@@ -6920,6 +6922,7 @@ export type Database = {
|
|
|
6920
6922
|
created_at?: string;
|
|
6921
6923
|
id?: string;
|
|
6922
6924
|
name?: string;
|
|
6925
|
+
presentation_json?: Json;
|
|
6923
6926
|
schema_json?: Json;
|
|
6924
6927
|
settings_json?: Json;
|
|
6925
6928
|
site_id?: string;
|
|
@@ -11028,7 +11031,18 @@ export type Database = {
|
|
|
11028
11031
|
domain: string;
|
|
11029
11032
|
domain_type: string;
|
|
11030
11033
|
id: string;
|
|
11034
|
+
registrar_auto_renew: boolean | null;
|
|
11035
|
+
registrar_email_verification_required: boolean | null;
|
|
11036
|
+
registrar_expires_at: string | null;
|
|
11037
|
+
registrar_last_response_code: number | null;
|
|
11038
|
+
registrar_last_synced_at: string | null;
|
|
11039
|
+
registrar_lifecycle_state: string | null;
|
|
11040
|
+
registrar_metadata: Json;
|
|
11031
11041
|
registrar_order_id: string | null;
|
|
11042
|
+
registrar_privacy_enabled: boolean | null;
|
|
11043
|
+
registrar_provider: string | null;
|
|
11044
|
+
registrar_registered_at: string | null;
|
|
11045
|
+
registrar_renewal_checked_at: string | null;
|
|
11032
11046
|
resend_domain_id: string | null;
|
|
11033
11047
|
site_id: string;
|
|
11034
11048
|
status: string;
|
|
@@ -11057,7 +11071,18 @@ export type Database = {
|
|
|
11057
11071
|
domain: string;
|
|
11058
11072
|
domain_type?: string;
|
|
11059
11073
|
id?: string;
|
|
11074
|
+
registrar_auto_renew?: boolean | null;
|
|
11075
|
+
registrar_email_verification_required?: boolean | null;
|
|
11076
|
+
registrar_expires_at?: string | null;
|
|
11077
|
+
registrar_last_response_code?: number | null;
|
|
11078
|
+
registrar_last_synced_at?: string | null;
|
|
11079
|
+
registrar_lifecycle_state?: string | null;
|
|
11080
|
+
registrar_metadata?: Json;
|
|
11060
11081
|
registrar_order_id?: string | null;
|
|
11082
|
+
registrar_privacy_enabled?: boolean | null;
|
|
11083
|
+
registrar_provider?: string | null;
|
|
11084
|
+
registrar_registered_at?: string | null;
|
|
11085
|
+
registrar_renewal_checked_at?: string | null;
|
|
11061
11086
|
resend_domain_id?: string | null;
|
|
11062
11087
|
site_id: string;
|
|
11063
11088
|
status?: string;
|
|
@@ -11086,7 +11111,18 @@ export type Database = {
|
|
|
11086
11111
|
domain?: string;
|
|
11087
11112
|
domain_type?: string;
|
|
11088
11113
|
id?: string;
|
|
11114
|
+
registrar_auto_renew?: boolean | null;
|
|
11115
|
+
registrar_email_verification_required?: boolean | null;
|
|
11116
|
+
registrar_expires_at?: string | null;
|
|
11117
|
+
registrar_last_response_code?: number | null;
|
|
11118
|
+
registrar_last_synced_at?: string | null;
|
|
11119
|
+
registrar_lifecycle_state?: string | null;
|
|
11120
|
+
registrar_metadata?: Json;
|
|
11089
11121
|
registrar_order_id?: string | null;
|
|
11122
|
+
registrar_privacy_enabled?: boolean | null;
|
|
11123
|
+
registrar_provider?: string | null;
|
|
11124
|
+
registrar_registered_at?: string | null;
|
|
11125
|
+
registrar_renewal_checked_at?: string | null;
|
|
11090
11126
|
resend_domain_id?: string | null;
|
|
11091
11127
|
site_id?: string;
|
|
11092
11128
|
status?: string;
|