@riverbankcms/sdk 0.60.9 → 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 +4 -3
- package/dist/_dts/api/src/navigation/linkValue.d.ts +15 -2
- package/dist/_dts/api/src/navigation.d.ts +2 -0
- package/dist/_dts/api/src/siteManagementEndpoints.d.ts +15 -1
- package/dist/_dts/blocks/src/index.d.ts +1 -1
- package/dist/_dts/blocks/src/system/node/fragments/ctaButton.d.ts +2 -2
- package/dist/_dts/blocks/src/system/runtime/nodes/basic.d.ts +2 -1
- package/dist/_dts/blocks/src/system/types/link.d.ts +7 -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/contracts/content.d.ts +7 -1
- package/dist/_dts/sdk/src/public-api/contracts.d.ts +1 -1
- package/dist/_dts/sdk/src/version.d.ts +1 -1
- package/dist/_dts/theme-core/src/buttons/classNames.d.ts +21 -0
- package/dist/_dts/theme-core/src/buttons/index.d.ts +1 -0
- package/dist/_dts/theme-core/src/buttons/types.d.ts +1 -0
- package/dist/cli/index.mjs +188 -9
- package/dist/client/bookings.mjs +808 -149
- package/dist/client/client.mjs +553 -130
- package/dist/client/hooks.mjs +119 -0
- package/dist/client/rendering/client.mjs +412 -113
- package/dist/client/rendering/islands.mjs +4605 -4361
- package/dist/client/rendering.mjs +580 -157
- package/dist/preview-next/before-render.mjs +57 -0
- package/dist/preview-next/client/runtime.mjs +580 -151
- package/dist/preview-next/middleware.mjs +57 -0
- package/dist/server/components.mjs +293 -45
- 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 +300 -52
- package/dist/server/page-converter.mjs +62 -0
- package/dist/server/prebuild.mjs +1 -1
- package/dist/server/rendering/server.mjs +293 -45
- package/dist/server/rendering.mjs +293 -45
- package/dist/server/routing.mjs +159 -29
- package/dist/server/server.mjs +120 -1
- package/package.json +1 -1
- package/dist/_dts/blocks/src/system/runtime/shared/themedButtonClass.d.ts +0 -11
|
@@ -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";
|
|
@@ -57,7 +57,8 @@ export { matchNavigationItems } from "./navigation/matcher";
|
|
|
57
57
|
export type { ItemMatch, MatchResult } from "./navigation/matcher";
|
|
58
58
|
export { extractNavVisibilityConfig, hasNavVisibilityValues, extractSdkDashboardNavVisibilityConfig, mergeNavVisibilityConfig, extractSdkDashboardNavVisibilityConfigForRole, isNavItemVisible, } from "./navigation/visibility";
|
|
59
59
|
export type { NavStage, NavVisibilityMode, NavVisibilityConfig, NavVisibilityContext, } from "./navigation/visibility";
|
|
60
|
-
export { toInternalLinkValue, linkValueToPayload, linkPayloadToValue, } from "./navigation/linkValue";
|
|
60
|
+
export { toInternalLinkValue, linkValueToPayload, linkPayloadToValue, toPersistableNavigationLinkValue, } from "./navigation/linkValue";
|
|
61
|
+
export type { PersistableNavigationLinkError, PersistableNavigationLinkResult, PersistableNavigationLinkValue, } from "./navigation/linkValue";
|
|
61
62
|
export type { NavigationReferenceMaps, PageNavLinkInfo, EntryNavLinkInfo, NavigationItemForMatching, NavigationItemInput, } from "./navigation/types";
|
|
62
63
|
export { listRedirectRules, createRedirectRule, deleteRedirectRule, } from "./redirects";
|
|
63
64
|
export { changePlan } from "./billing";
|
|
@@ -69,13 +70,13 @@ export { getPerformanceOverview } from "./performance";
|
|
|
69
70
|
export { listContentTypes, enableContentType, setupContentType, getContentTemplate, updateContentTemplateBlock, applyContentTemplateAddon, updateContentTemplateBlockBindings, getTransforms, createTemplateBlock, deleteTemplateBlock, reorderTemplateBlocks, } from "./contentTypes";
|
|
70
71
|
export { getAnalyticsReport } from "./analytics";
|
|
71
72
|
export { getSiteMembers, inviteSiteMember, updateSiteMemberRole, removeSiteMember, revokeSiteInvitation, transferSiteOwnership, acceptSiteInvitation, } from "./siteMembers";
|
|
72
|
-
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";
|
|
73
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";
|
|
74
75
|
export { enrollTotpFactor, verifyTotpFactor, activateTotpFactor, deleteMfaFactor, rotateBackupCodes, getBackupCodesOverview, enrollPhoneFactor, challengePhoneFactor, verifyPhoneFactor, acceptAdminInvite, } from "./auth";
|
|
75
76
|
export type { ApiResult, ApiResponse, ApiError, ApiErrorCode, FieldError, ResponseMeta, } from "./common/envelope";
|
|
76
77
|
export type { JsonPrimitive, JsonValue } from "./types";
|
|
77
78
|
export type { PublicEventLoaderParams, PublicEventScheduleScope, PublicEventSurfaceScope, } from "./types";
|
|
78
|
-
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";
|
|
79
80
|
export { SITE_ROLE_PERMISSION_LEVEL, SITE_ROLE_DISPLAY_ORDER } from "./types";
|
|
80
81
|
export type { AIChatMessage, AiBriefTurn, AiDesignerThemePatchOp, AiPatchApplyResponse, AiPatchDryRunResponse, AiPatchOp, AiPatchRequest, ApplyAiDesignerPageOpsRequest, ApplyAiDesignerPageOpsResponse, ApplyAiDesignerThemePatchRequest, ApplyAiDesignerThemePatchResponse, } from "./types";
|
|
81
82
|
export type { CancelFlexibleBalanceBookingDueToNonPaymentRequest, FlexibleBalanceAdminActionPlan, FlexibleBalanceAdminActionResponse, FlexibleBalanceAdminActionSource, FlexibleBalanceAdminActionView, ReopenFlexibleBalanceBookingAfterNonPaymentCancellationRequest, } from "./types";
|
|
@@ -4,8 +4,21 @@
|
|
|
4
4
|
* Bidirectional conversion between block-level LinkValue (used in the editor)
|
|
5
5
|
* and LinkPayload (used in the database and API layer).
|
|
6
6
|
*/
|
|
7
|
-
import { type LinkValue } from '@riverbankcms/blocks';
|
|
7
|
+
import { type CustomLinkValue, type EntryLinkValue, type ExternalLinkValue, type InternalResolvedLinkValue, type LinkValue, type PageLinkValue } from '@riverbankcms/blocks';
|
|
8
8
|
import type { LinkPayload, RoutableContentItem } from './types';
|
|
9
|
+
export type PersistableNavigationLinkValue = InternalResolvedLinkValue | ExternalLinkValue | CustomLinkValue | PageLinkValue | EntryLinkValue;
|
|
10
|
+
export type PersistableNavigationLinkError = {
|
|
11
|
+
type: 'internalLinkNotResolved';
|
|
12
|
+
routeId: string;
|
|
13
|
+
};
|
|
14
|
+
export type PersistableNavigationLinkResult = {
|
|
15
|
+
ok: true;
|
|
16
|
+
value: PersistableNavigationLinkValue;
|
|
17
|
+
} | {
|
|
18
|
+
ok: false;
|
|
19
|
+
error: PersistableNavigationLinkError;
|
|
20
|
+
};
|
|
9
21
|
export declare function toInternalLinkValue(item: RoutableContentItem): LinkValue;
|
|
10
|
-
export declare function
|
|
22
|
+
export declare function toPersistableNavigationLinkValue(value: LinkValue): PersistableNavigationLinkResult;
|
|
23
|
+
export declare function linkValueToPayload(value: PersistableNavigationLinkValue): LinkPayload;
|
|
11
24
|
export declare function linkPayloadToValue(payload: LinkPayload | null | undefined, items?: RoutableContentItem[]): LinkValue | null;
|
|
@@ -3,6 +3,8 @@ import type { ApiClient } from './request';
|
|
|
3
3
|
export { collectCartLinkStats, collectPortalLinkStats, type CartLinkValidationItem, type CartLinkValidationStats, type NavigationMenuValidationItem, type PortalLinkValidationItem, type PortalLinkValidationStats, } from './navigationMenuValidation';
|
|
4
4
|
export { isInternalLink, isPageLink, isEntryLink, resolveNavigationLinkInput, } from './navigation/linkResolver';
|
|
5
5
|
export { toRoutableLinkPayload } from './navigation/routableLink';
|
|
6
|
+
export { linkPayloadToValue, linkValueToPayload, toInternalLinkValue, toPersistableNavigationLinkValue, } from './navigation/linkValue';
|
|
7
|
+
export type { PersistableNavigationLinkError, PersistableNavigationLinkResult, PersistableNavigationLinkValue, } from './navigation/linkValue';
|
|
6
8
|
export type { CartLinkLabelConfig, CartLinkPayload, EntryLinkPayload, InternalLinkRoutablePayload, LinkResolutionOptions, LinkPayload, NavigationLinkInput, NavigationUrlType, PageLinkPayload, PortalLinkPayload, ResolvedNavigationLink, RoutableContentItem, SitemapRouteItem, } from './navigation/types';
|
|
7
9
|
export { matchNavigationItems } from './navigation/matcher';
|
|
8
10
|
export type { ItemMatch, MatchResult } from './navigation/matcher';
|
|
@@ -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;
|
|
@@ -27,7 +27,7 @@ export * from "@riverbankcms/theme-core/runtime/buildThemeRuntimeFromBridge";
|
|
|
27
27
|
export * from "@riverbankcms/theme-core/blocks";
|
|
28
28
|
export * from "./system";
|
|
29
29
|
export { SUPPORTED_LOADER_ENDPOINTS, isSupportedLoaderEndpoint, type SupportedLoaderEndpoint, } from "./system/data";
|
|
30
|
-
export type { LinkValue, InternalLinkValue, InternalResolvedLinkValue, InternalRouteOnlyLinkValue, ExternalLinkValue, CustomLinkValue, PageLinkValue, EntryLinkValue, } from "./system/types/link";
|
|
30
|
+
export type { AuthoredLinkValue, LinkValue, InternalLinkValue, InternalResolvedLinkValue, InternalRouteOnlyLinkValue, ExternalLinkValue, CustomLinkValue, PageLinkValue, EntryLinkValue, } from "./system/types/link";
|
|
31
31
|
export { linkSchema, internalLinkSchema, internalResolvedLinkSchema, internalRouteOnlyLinkSchema, externalLinkSchema, customLinkSchema, pageLinkSchema, entryLinkSchema, isInternalResolvedLinkValue, } from "./system/types/link";
|
|
32
32
|
export { heroManifest } from "./system/blocks/hero";
|
|
33
33
|
export type { HeroContent, HeroMedia } from "./system/blocks/hero";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { NodeDefinition } from "../schema";
|
|
2
|
-
import type {
|
|
2
|
+
import type { ButtonSizeName } from "@riverbankcms/theme-core/buttons";
|
|
3
3
|
export declare function ctaButton(opts?: {
|
|
4
4
|
basePath?: string;
|
|
5
5
|
linkPath?: string;
|
|
@@ -15,5 +15,5 @@ export declare function ctaButton(opts?: {
|
|
|
15
15
|
};
|
|
16
16
|
className?: string;
|
|
17
17
|
variantFallback?: string;
|
|
18
|
-
sizeFallback?:
|
|
18
|
+
sizeFallback?: ButtonSizeName;
|
|
19
19
|
}): NodeDefinition;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { type ButtonSizeName } from '@riverbankcms/theme-core/buttons';
|
|
2
3
|
export type TextNodeProps = {
|
|
3
4
|
value?: React.ReactNode;
|
|
4
5
|
className?: string;
|
|
@@ -35,7 +36,7 @@ export type ButtonNodeProps = {
|
|
|
35
36
|
/** Button variant ID (reads from theme.buttons.variants) */
|
|
36
37
|
variantId?: string;
|
|
37
38
|
/** Button size (reads from theme.buttons.sizes via .btn-{size}) */
|
|
38
|
-
size?:
|
|
39
|
+
size?: ButtonSizeName;
|
|
39
40
|
/** Disabled state */
|
|
40
41
|
disabled?: boolean;
|
|
41
42
|
/** Button type (for form buttons) */
|
|
@@ -41,7 +41,13 @@ export type EntryLinkValue = {
|
|
|
41
41
|
contentType: string;
|
|
42
42
|
identifier: string;
|
|
43
43
|
};
|
|
44
|
-
export type
|
|
44
|
+
export type AuthoredLinkValue = InternalLinkValue | ExternalLinkValue | CustomLinkValue | PageLinkValue | EntryLinkValue;
|
|
45
|
+
/**
|
|
46
|
+
* Broad authored/editor link value accepted by block manifests and link widgets.
|
|
47
|
+
* Route-only internal links are valid here, but must be resolved before any
|
|
48
|
+
* navigation-persistence converter accepts them.
|
|
49
|
+
*/
|
|
50
|
+
export type LinkValue = AuthoredLinkValue;
|
|
45
51
|
export declare const internalRouteOnlyLinkSchema: z.ZodObject<{
|
|
46
52
|
kind: z.ZodLiteral<"internal">;
|
|
47
53
|
routeId: z.ZodString;
|
|
@@ -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;
|