@riverbankcms/sdk 0.62.4 → 0.67.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -0
- package/dist/_dts/api/src/accessAdmin.d.ts +64 -2
- package/dist/_dts/api/src/aiEndpoints.d.ts +2 -2
- package/dist/_dts/api/src/aiPlayground.d.ts +18 -11
- package/dist/_dts/api/src/apiEndpointTypes.d.ts +12 -0
- package/dist/_dts/api/src/billing.d.ts +46 -10
- package/dist/_dts/api/src/bookingConfig.d.ts +2 -0
- package/dist/_dts/api/src/bookingOperations.d.ts +1 -1
- package/dist/_dts/api/src/bookingRecords.d.ts +26 -0
- package/dist/_dts/api/src/commercePortalEndpoints.d.ts +12 -1
- package/dist/_dts/api/src/contentRuntime.d.ts +1 -0
- package/dist/_dts/api/src/courses.d.ts +3 -0
- package/dist/_dts/api/src/endpoints.d.ts +48 -0
- package/dist/_dts/api/src/index.d.ts +8 -5
- package/dist/_dts/api/src/sdkConfig/contracts.d.ts +29 -40
- package/dist/_dts/api/src/sdkContracts.d.ts +14 -2
- package/dist/_dts/api/src/siteMembers.d.ts +1 -1
- package/dist/_dts/api/src/siteOnboarding.d.ts +4 -0
- package/dist/_dts/api/src/siteOperations.d.ts +11 -1
- package/dist/_dts/api/src/siteRuntimeEndpoints.d.ts +29 -0
- package/dist/_dts/api/src/types.d.ts +2 -1
- package/dist/_dts/billing/src/plans/registry.d.ts +1 -0
- package/dist/_dts/billing/src/plans/types.d.ts +10 -1
- package/dist/_dts/block-form/src/FormRenderer.d.ts +38 -0
- package/dist/_dts/block-form/src/backend/adapter.d.ts +7 -0
- package/dist/_dts/block-form/src/backend/hooks/useRepeaterBackend.d.ts +34 -0
- package/dist/_dts/block-form/src/backend/hooks.d.ts +66 -0
- package/dist/_dts/block-form/src/backend/index.d.ts +12 -0
- package/dist/_dts/block-form/src/backend/rhf-backend.d.ts +34 -0
- package/dist/_dts/block-form/src/backend/store-backend.d.ts +60 -0
- package/dist/_dts/block-form/src/backend/types.d.ts +137 -0
- package/dist/_dts/block-form/src/backend/useBackendWatch.d.ts +22 -0
- package/dist/_dts/block-form/src/backend/utils/getErrorMessage.d.ts +1 -0
- package/dist/_dts/block-form/src/blockDraftSaveability.d.ts +70 -0
- package/dist/_dts/block-form/src/client/blockDraftSaveability.d.ts +1 -0
- package/dist/_dts/block-form/src/client/index.d.ts +30 -0
- package/dist/_dts/block-form/src/context/BlockContext.d.ts +29 -0
- package/dist/_dts/block-form/src/context/DisplayLabelResolverContext.d.ts +33 -0
- package/dist/_dts/block-form/src/context/FieldPreviewResolverContext.d.ts +30 -0
- package/dist/_dts/block-form/src/context/ImageResolveContext.d.ts +1 -0
- package/dist/_dts/block-form/src/context/index.d.ts +4 -0
- package/dist/_dts/block-form/src/fields/props.d.ts +48 -0
- package/dist/_dts/block-form/src/fields/types.d.ts +223 -0
- package/dist/_dts/block-form/src/index.d.ts +22 -0
- package/dist/_dts/block-form/src/manifest/ManifestForm.d.ts +37 -0
- package/dist/_dts/block-form/src/manifest/canonicalValidation.d.ts +5 -0
- package/dist/_dts/block-form/src/manifest/filterSdkTabs.d.ts +44 -0
- package/dist/_dts/block-form/src/manifest/manifestFormAdapter.d.ts +61 -0
- package/dist/_dts/block-form/src/manifest/mergeManifestWithSdkOptions.d.ts +24 -0
- package/dist/_dts/block-form/src/palette/PaletteContext.d.ts +11 -0
- package/dist/_dts/block-form/src/registry/schemas.d.ts +105 -0
- package/dist/_dts/block-form/src/registry/widgets.d.ts +59 -0
- package/dist/_dts/block-form/src/sdk-config/SdkConfigContext.d.ts +110 -0
- package/dist/_dts/block-form/src/sdk-config/hooks.d.ts +21 -0
- package/dist/_dts/block-form/src/sdk-config/index.d.ts +2 -0
- package/dist/_dts/block-form/src/shared/disclosure.d.ts +1 -0
- package/dist/_dts/block-form/src/shared/hooks/index.d.ts +2 -0
- package/dist/_dts/block-form/src/shared/hooks/useCoarsePointer.d.ts +5 -0
- package/dist/_dts/block-form/src/shared/hooks/useContainerWidth.d.ts +6 -0
- package/dist/_dts/block-form/src/utils/VisibilityWrapper.d.ts +25 -0
- package/dist/_dts/block-form/src/utils/computeWatchedPath.d.ts +18 -0
- package/dist/_dts/block-form/src/utils/evaluateVisibility.d.ts +9 -0
- package/dist/_dts/block-form/src/utils/fieldHelpers.d.ts +94 -0
- package/dist/_dts/block-form/src/utils/resolvePromotedFields.d.ts +22 -0
- package/dist/_dts/block-form/src/utils/slug.d.ts +3 -0
- package/dist/_dts/block-form/src/utils/typeGuards.d.ts +3 -0
- package/dist/_dts/block-form/src/widgets/BackgroundColorWidget/BackgroundColorField.d.ts +10 -0
- package/dist/_dts/block-form/src/widgets/BackgroundColorWidget/BackgroundColorWidget.d.ts +23 -0
- package/dist/_dts/block-form/src/widgets/BackgroundColorWidget/index.d.ts +2 -0
- package/dist/_dts/block-form/src/widgets/BackgroundGradientWidget/BackgroundGradientField.d.ts +13 -0
- package/dist/_dts/block-form/src/widgets/BackgroundGradientWidget/BackgroundGradientWidget.d.ts +17 -0
- package/dist/_dts/block-form/src/widgets/BackgroundGradientWidget/index.d.ts +2 -0
- package/dist/_dts/block-form/src/widgets/BooleanField/BooleanField.d.ts +6 -0
- package/dist/_dts/block-form/src/widgets/BooleanField/booleanFieldDefaults.d.ts +6 -0
- package/dist/_dts/block-form/src/widgets/BooleanField/booleanFieldSchema.d.ts +7 -0
- package/dist/_dts/block-form/src/widgets/BooleanField/index.d.ts +3 -0
- package/dist/_dts/block-form/src/widgets/BoxStyleWidget/BoxStyleWidget.d.ts +17 -0
- package/dist/_dts/block-form/src/widgets/BoxStyleWidget/index.d.ts +1 -0
- package/dist/_dts/block-form/src/widgets/ContentTypeSelectField/contentTypeSelectFieldDefaults.d.ts +3 -0
- package/dist/_dts/block-form/src/widgets/ContentTypeSelectField/contentTypeSelectFieldSchema.d.ts +4 -0
- package/dist/_dts/block-form/src/widgets/DateField/DateField.d.ts +23 -0
- package/dist/_dts/block-form/src/widgets/DateField/dateFieldDefaults.d.ts +8 -0
- package/dist/_dts/block-form/src/widgets/DateField/dateFieldSchema.d.ts +9 -0
- package/dist/_dts/block-form/src/widgets/DateField/datePickerPopover.d.ts +32 -0
- package/dist/_dts/block-form/src/widgets/DateField/index.d.ts +4 -0
- package/dist/_dts/block-form/src/widgets/DateTimeField/DateTimeField.d.ts +30 -0
- package/dist/_dts/block-form/src/widgets/DateTimeField/dateTimeFieldDefaults.d.ts +8 -0
- package/dist/_dts/block-form/src/widgets/DateTimeField/dateTimeFieldSchema.d.ts +11 -0
- package/dist/_dts/block-form/src/widgets/DateTimeField/index.d.ts +4 -0
- package/dist/_dts/block-form/src/widgets/DateTimeField/utils/dateTimeUtils.d.ts +22 -0
- package/dist/_dts/block-form/src/widgets/DateTimeField/utils/index.d.ts +1 -0
- package/dist/_dts/block-form/src/widgets/EntryPickerField/entryPickerFieldDefaults.d.ts +3 -0
- package/dist/_dts/block-form/src/widgets/EntryPickerField/entryPickerFieldSchema.d.ts +4 -0
- package/dist/_dts/block-form/src/widgets/Field.d.ts +21 -0
- package/dist/_dts/block-form/src/widgets/FieldFrame.d.ts +32 -0
- package/dist/_dts/block-form/src/widgets/FieldSettingsModal/FieldSettingsModal.d.ts +34 -0
- package/dist/_dts/block-form/src/widgets/FieldSettingsModal/index.d.ts +2 -0
- package/dist/_dts/block-form/src/widgets/GroupField/GroupField.d.ts +23 -0
- package/dist/_dts/block-form/src/widgets/GroupField/groupFieldDefaults.d.ts +9 -0
- package/dist/_dts/block-form/src/widgets/GroupField/groupFieldSchema.d.ts +10 -0
- package/dist/_dts/block-form/src/widgets/GroupField/index.d.ts +3 -0
- package/dist/_dts/block-form/src/widgets/LinkField/linkFieldDefaults.d.ts +10 -0
- package/dist/_dts/block-form/src/widgets/LinkField/linkFieldSchema.d.ts +3 -0
- package/dist/_dts/block-form/src/widgets/MediaField/mediaFieldDefaults.d.ts +6 -0
- package/dist/_dts/block-form/src/widgets/MediaField/mediaFieldSchema.d.ts +6 -0
- package/dist/_dts/block-form/src/widgets/ModalGroupField/ModalGroupField.d.ts +17 -0
- package/dist/_dts/block-form/src/widgets/ModalGroupField/index.d.ts +3 -0
- package/dist/_dts/block-form/src/widgets/ModalGroupField/modalFieldDefaults.d.ts +18 -0
- package/dist/_dts/block-form/src/widgets/ModalGroupField/modalFieldSchema.d.ts +14 -0
- package/dist/_dts/block-form/src/widgets/NumberField/NumberField.d.ts +7 -0
- package/dist/_dts/block-form/src/widgets/NumberField/index.d.ts +3 -0
- package/dist/_dts/block-form/src/widgets/NumberField/numberFieldDefaults.d.ts +6 -0
- package/dist/_dts/block-form/src/widgets/NumberField/numberFieldSchema.d.ts +7 -0
- package/dist/_dts/block-form/src/widgets/PresetOrCustomField/PresetOrCustomField.d.ts +11 -0
- package/dist/_dts/block-form/src/widgets/PresetOrCustomField/index.d.ts +4 -0
- package/dist/_dts/block-form/src/widgets/PresetOrCustomField/presetOrCustomFieldDefaults.d.ts +3 -0
- package/dist/_dts/block-form/src/widgets/PresetOrCustomField/presetOrCustomFieldSchema.d.ts +4 -0
- package/dist/_dts/block-form/src/widgets/PresetOrCustomField/types.d.ts +37 -0
- package/dist/_dts/block-form/src/widgets/ReferenceField/referenceFieldDefaults.d.ts +3 -0
- package/dist/_dts/block-form/src/widgets/ReferenceField/referenceFieldSchema.d.ts +4 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/RepeaterField.d.ts +26 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/components/RepeaterDragHandle.d.ts +8 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/components/RepeaterError.d.ts +11 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/components/RepeaterHeader.d.ts +10 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/components/RepeaterLayoutGrid.d.ts +27 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/components/RepeaterList.d.ts +19 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/components/RepeaterRow.d.ts +23 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/components/RepeaterRowActions.d.ts +16 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/components/RepeaterRowContent.d.ts +19 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/components/RepeaterTabbedEditDialog.d.ts +16 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/components/RepeaterThumbnailCard.d.ts +26 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/components/RepeaterThumbnailGrid.d.ts +20 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/components/index.d.ts +11 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/components/layoutGridDomain.d.ts +34 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/hooks/index.d.ts +6 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/hooks/layoutGridCapacityDecision.d.ts +22 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/hooks/useLayoutGridCapacity.d.ts +20 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/hooks/useLinearRepeaterDnd.d.ts +23 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/hooks/useRepeaterPointerDragCapability.d.ts +10 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/hooks/useRepeaterRowErrors.d.ts +12 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/hooks/useRepeaterVisibility.d.ts +6 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/hooks/useResolvedItemLabel.d.ts +12 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/index.d.ts +3 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/repeaterFieldDefaults.d.ts +7 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/repeaterFieldSchema.d.ts +8 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/utils/buildItemLabel.d.ts +7 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/utils/buildSummary.d.ts +7 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/utils/createDefaultItem.d.ts +6 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/utils/getRepeaterItemFieldGroups.d.ts +8 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/utils/getRepeaterItemFields.d.ts +22 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/utils/index.d.ts +10 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/utils/layoutGridCapacityContext.d.ts +2 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/utils/repeaterDndDomain.d.ts +43 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/utils/repeaterPresentation.d.ts +24 -0
- package/dist/_dts/block-form/src/widgets/RepeaterField/utils/resolveThumbnail.d.ts +12 -0
- package/dist/_dts/block-form/src/widgets/RichTextField/richTextFieldDefaults.d.ts +20 -0
- package/dist/_dts/block-form/src/widgets/RichTextField/richTextFieldSchema.d.ts +16 -0
- package/dist/_dts/block-form/src/widgets/SdkSelectField/SdkSelectField.d.ts +11 -0
- package/dist/_dts/block-form/src/widgets/SdkSelectField/index.d.ts +1 -0
- package/dist/_dts/block-form/src/widgets/SelectField/SelectField.d.ts +7 -0
- package/dist/_dts/block-form/src/widgets/SelectField/index.d.ts +3 -0
- package/dist/_dts/block-form/src/widgets/SelectField/selectFieldDefaults.d.ts +6 -0
- package/dist/_dts/block-form/src/widgets/SelectField/selectFieldSchema.d.ts +7 -0
- package/dist/_dts/block-form/src/widgets/SelectWidget.d.ts +34 -0
- package/dist/_dts/block-form/src/widgets/SettingsModal/SettingsModal.d.ts +17 -0
- package/dist/_dts/block-form/src/widgets/SettingsModal/index.d.ts +2 -0
- package/dist/_dts/block-form/src/widgets/SliderField/SliderField.d.ts +16 -0
- package/dist/_dts/block-form/src/widgets/SliderField/index.d.ts +1 -0
- package/dist/_dts/block-form/src/widgets/SlugField/SlugField.d.ts +39 -0
- package/dist/_dts/block-form/src/widgets/SlugField/hooks/index.d.ts +1 -0
- package/dist/_dts/block-form/src/widgets/SlugField/hooks/useSlugAutoGeneration.d.ts +29 -0
- package/dist/_dts/block-form/src/widgets/SlugField/index.d.ts +5 -0
- package/dist/_dts/block-form/src/widgets/SlugField/slugFieldDefaults.d.ts +8 -0
- package/dist/_dts/block-form/src/widgets/SlugField/slugFieldSchema.d.ts +14 -0
- package/dist/_dts/block-form/src/widgets/SlugField/utils/index.d.ts +2 -0
- package/dist/_dts/block-form/src/widgets/SlugField/utils/pathUtils.d.ts +30 -0
- package/dist/_dts/block-form/src/widgets/SlugField/utils/slugUtils.d.ts +17 -0
- package/dist/_dts/block-form/src/widgets/TabGroupField/TabGroupField.d.ts +13 -0
- package/dist/_dts/block-form/src/widgets/TabGroupField/index.d.ts +3 -0
- package/dist/_dts/block-form/src/widgets/TabGroupField/tabGroupFieldSchema.d.ts +25 -0
- package/dist/_dts/block-form/src/widgets/TabGroupField/types.d.ts +46 -0
- package/dist/_dts/block-form/src/widgets/TextField/TextField.d.ts +7 -0
- package/dist/_dts/block-form/src/widgets/TextField/index.d.ts +3 -0
- package/dist/_dts/block-form/src/widgets/TextField/textFieldDefaults.d.ts +6 -0
- package/dist/_dts/block-form/src/widgets/TextField/textFieldSchema.d.ts +7 -0
- package/dist/_dts/block-form/src/widgets/TextInputWidget.d.ts +20 -0
- package/dist/_dts/block-form/src/widgets/TimeField/TimeField.d.ts +23 -0
- package/dist/_dts/block-form/src/widgets/TimeField/index.d.ts +3 -0
- package/dist/_dts/block-form/src/widgets/TimeField/timeFieldDefaults.d.ts +8 -0
- package/dist/_dts/block-form/src/widgets/TimeField/timeFieldSchema.d.ts +9 -0
- package/dist/_dts/block-form/src/widgets/ToggleWidget.d.ts +16 -0
- package/dist/_dts/block-form/src/widgets/UrlField/UrlField.d.ts +23 -0
- package/dist/_dts/block-form/src/widgets/UrlField/index.d.ts +3 -0
- package/dist/_dts/block-form/src/widgets/UrlField/urlFieldDefaults.d.ts +8 -0
- package/dist/_dts/block-form/src/widgets/UrlField/urlFieldSchema.d.ts +9 -0
- package/dist/_dts/block-form/src/widgets/constants.d.ts +58 -0
- package/dist/_dts/block-form/src/widgets/groupFieldHelpers.d.ts +61 -0
- package/dist/_dts/block-form/src/widgets/index.d.ts +20 -0
- package/dist/_dts/block-form/src/widgets/selectValueMapping.d.ts +9 -0
- package/dist/_dts/block-form/src/widgets/types/modalConfig.d.ts +18 -0
- package/dist/_dts/block-form/src/widgets/utils/readNumericUiConfig.d.ts +10 -0
- package/dist/_dts/blocks/src/bindings/index.d.ts +1 -1
- package/dist/_dts/blocks/src/contracts/non-block-islands.d.ts +4 -0
- package/dist/_dts/blocks/src/contracts/proof-block-islands.d.ts +2 -0
- package/dist/_dts/blocks/src/system/blocks/appointment-booking.d.ts +1 -1
- package/dist/_dts/blocks/src/system/blocks/blog-listing.d.ts +2 -2
- package/dist/_dts/blocks/src/system/blocks/blog-post.d.ts +1 -1
- package/dist/_dts/blocks/src/system/blocks/cart.d.ts +1 -1
- package/dist/_dts/blocks/src/system/blocks/checkout.d.ts +1 -1
- package/dist/_dts/blocks/src/system/blocks/collection.d.ts +2 -2
- package/dist/_dts/blocks/src/system/blocks/columns.d.ts +1 -1
- package/dist/_dts/blocks/src/system/blocks/courses/shared/schemas.d.ts +2 -2
- package/dist/_dts/blocks/src/system/blocks/cta-full.d.ts +1 -1
- package/dist/_dts/blocks/src/system/blocks/event-details.d.ts +25 -0
- package/dist/_dts/blocks/src/system/blocks/events/event-spotlight.d.ts +2 -2
- package/dist/_dts/blocks/src/system/blocks/events/shared/schemas.d.ts +2 -2
- package/dist/_dts/blocks/src/system/blocks/faq.d.ts +1 -1
- package/dist/_dts/blocks/src/system/blocks/file-download.d.ts +1 -1
- package/dist/_dts/blocks/src/system/blocks/gifting.d.ts +1 -1
- package/dist/_dts/blocks/src/system/blocks/image-gallery.d.ts +1 -1
- package/dist/_dts/blocks/src/system/blocks/location-map.d.ts +2 -2
- package/dist/_dts/blocks/src/system/blocks/media-text.d.ts +6 -6
- package/dist/_dts/blocks/src/system/blocks/product-detail.d.ts +1 -1
- package/dist/_dts/blocks/src/system/blocks/product-list.d.ts +2 -2
- package/dist/_dts/blocks/src/system/blocks/products/shared.d.ts +2 -2
- package/dist/_dts/blocks/src/system/blocks/shop.d.ts +1 -1
- package/dist/_dts/blocks/src/system/blocks/team-members.d.ts +2 -2
- package/dist/_dts/blocks/src/system/blocks/testimonials.d.ts +1 -1
- package/dist/_dts/blocks/src/system/blocks/video-grid.d.ts +1 -1
- package/dist/_dts/blocks/src/system/fragments/library/card.d.ts +1 -1
- package/dist/_dts/blocks/src/system/fragments/library/ctaRow.d.ts +1 -1
- package/dist/_dts/blocks/src/system/fragments/library/feedbackCallout.d.ts +1 -1
- package/dist/_dts/blocks/src/system/fragments/library/heroCtaRow.d.ts +1 -1
- package/dist/_dts/blocks/src/system/fragments/library/sectionState.d.ts +1 -1
- package/dist/_dts/blocks/src/system/node/validation-constants.d.ts +1 -1
- package/dist/_dts/blocks/src/system/runtime/components/registry.client.d.ts +1 -0
- package/dist/_dts/blocks/src/system/runtime/nodes/event-details/view.d.ts +4 -1
- package/dist/_dts/blocks/src/system/runtime/nodes/event-details.client.d.ts +4 -1
- package/dist/_dts/blocks/src/system/runtime/nodes/event-details.server.d.ts +4 -1
- package/dist/_dts/blocks/src/system/transforms/registry/formatting.d.ts +1 -0
- package/dist/_dts/blocks/src/system/transforms/typed.d.ts +2 -1
- package/dist/_dts/calendar/src/grid.d.ts +60 -0
- package/dist/_dts/calendar/src/group.d.ts +14 -0
- package/dist/_dts/calendar/src/index.d.ts +6 -0
- package/dist/_dts/calendar/src/lane-packing.d.ts +28 -0
- package/dist/_dts/calendar/src/timetable.d.ts +90 -0
- package/dist/_dts/calendar/src/timezone.d.ts +19 -0
- package/dist/_dts/content-editor/src/index.d.ts +1 -4
- package/dist/_dts/core/src/booking-date-time.d.ts +1 -0
- package/dist/_dts/core/src/branded.d.ts +18 -0
- package/dist/_dts/db/src/generated/supabase/database.types.d.ts +900 -69
- package/dist/_dts/editor-blocks/src/index.d.ts +1 -1
- package/dist/_dts/editor-blocks/src/widgets/index.d.ts +7 -7
- package/dist/_dts/editor-blocks/src/widgets/link/LinkWidget.d.ts +1 -2
- package/dist/_dts/editor-blocks/src/widgets/link/index.d.ts +1 -0
- package/dist/_dts/preview-next/src/client/blocks/pageDesignRuntimePreview.d.ts +7 -3
- package/dist/_dts/preview-next/src/client/blocks/previewProjection/runtimeContentDecoration.d.ts +2 -2
- package/dist/_dts/preview-next/src/client/preview/PreviewEditorSidebar.d.ts +2 -1
- package/dist/_dts/preview-next/src/client/preview/PreviewShell.d.ts +2 -1
- package/dist/_dts/preview-next/src/client/preview/PreviewShellLayout.d.ts +2 -1
- package/dist/_dts/preview-next/src/client/preview/SiteChromeCustomizeButton.d.ts +4 -0
- package/dist/_dts/preview-next/src/client/preview/SiteChromeCustomizeContext.d.ts +49 -0
- package/dist/_dts/preview-next/src/client/preview/SiteChromeEditableSurface.d.ts +6 -0
- package/dist/_dts/preview-next/src/client/preview/StyleConfigurator.d.ts +3 -1
- package/dist/_dts/preview-next/src/client/preview/StyleConfigurator.state.d.ts +1 -0
- package/dist/_dts/preview-next/src/client/preview/styleConfiguratorSnapshot.d.ts +18 -0
- package/dist/_dts/sdk/src/cli/commands/pull.d.ts +5 -0
- package/dist/_dts/sdk/src/cli/commands/push/execute/footer.d.ts +33 -0
- package/dist/_dts/sdk/src/cli/commands/push/options.d.ts +2 -0
- package/dist/_dts/sdk/src/cli/commands/push-execute.d.ts +18 -0
- package/dist/_dts/sdk/src/cli/content/entryPaths.d.ts +6 -0
- package/dist/_dts/sdk/src/cli/content/writer.d.ts +2 -0
- package/dist/_dts/sdk/src/cli/env.d.ts +2 -1
- package/dist/_dts/sdk/src/cli/merge-remote/entryLocal.d.ts +3 -0
- package/dist/_dts/sdk/src/cli/merge-remote/entryMerge.d.ts +77 -0
- package/dist/_dts/sdk/src/cli/merge-remote/entryMergePlan.d.ts +45 -0
- package/dist/_dts/sdk/src/cli/merge-remote/entryMergePush.d.ts +22 -0
- package/dist/_dts/sdk/src/cli/merge-remote/entryMergeReport.d.ts +30 -0
- package/dist/_dts/sdk/src/cli/merge-remote/entryRemote.d.ts +9 -0
- package/dist/_dts/sdk/src/cli/merge-remote/entrySnapshots.d.ts +50 -0
- package/dist/_dts/sdk/src/cli/merge-remote/stableJson.d.ts +3 -0
- package/dist/_dts/sdk/src/cli/site-commands/commandKeys.d.ts +13 -0
- package/dist/_dts/sdk/src/cli/site-commands/commandRuntime.d.ts +114 -0
- package/dist/_dts/sdk/src/cli/site-commands/entryCommands.d.ts +63 -0
- package/dist/_dts/sdk/src/cli/site-commands/footerCommands.d.ts +50 -0
- package/dist/_dts/sdk/src/cli/site-commands/formCommands.d.ts +57 -0
- package/dist/_dts/sdk/src/cli/site-commands/index.d.ts +7 -0
- package/dist/_dts/sdk/src/cli/site-commands/navigationCommands.d.ts +57 -0
- package/dist/_dts/sdk/src/cli/site-commands/pageCommands.d.ts +83 -0
- package/dist/_dts/sdk/src/cli/site-commands/pushExecution.d.ts +83 -0
- package/dist/_dts/sdk/src/cli/sync/executor.d.ts +11 -28
- package/dist/_dts/sdk/src/cli/sync/index.d.ts +1 -1
- package/dist/_dts/sdk/src/config/dashboard-validation.d.ts +0 -48
- package/dist/_dts/sdk/src/config/types.d.ts +1 -1
- package/dist/_dts/sdk/src/public-api/contracts.d.ts +1 -0
- package/dist/_dts/sdk/src/version.d.ts +1 -1
- package/dist/_dts/site-commands/src/adapter.d.ts +23 -0
- package/dist/_dts/site-commands/src/capabilityGaps.d.ts +8 -0
- package/dist/_dts/site-commands/src/commands.d.ts +2341 -0
- package/dist/_dts/site-commands/src/domain.d.ts +104 -0
- package/dist/_dts/site-commands/src/exposure.d.ts +41 -0
- package/dist/_dts/site-commands/src/guards.d.ts +1 -0
- package/dist/_dts/site-commands/src/index.d.ts +10 -0
- package/dist/_dts/site-commands/src/metadata.d.ts +503 -0
- package/dist/_dts/site-commands/src/planner.d.ts +58 -0
- package/dist/_dts/site-commands/src/refContributions.d.ts +10 -0
- package/dist/_dts/site-commands/src/refs.d.ts +87 -0
- package/dist/_dts/site-commands/src/staticExecutionGaps.d.ts +10 -0
- package/dist/_dts/theme-core/src/palette/utils/index.d.ts +1 -0
- package/dist/_dts/theme-core/src/palette/utils/onColor.d.ts +2 -0
- package/dist/_dts/theme-core/src/site-styles/accessibleSurfaces.d.ts +83 -0
- package/dist/_dts/theme-core/src/site-styles/contentTemplateRuntimeCompiler.d.ts +2 -1
- package/dist/_dts/theme-core/src/site-styles/curatedSiteStyles.d.ts +89 -12
- package/dist/_dts/theme-core/src/site-styles/generatedSchemas.d.ts +8 -2
- package/dist/_dts/theme-core/src/site-styles/index.d.ts +1 -0
- package/dist/_dts/theme-core/src/site-styles/previewCompiler.d.ts +3 -2
- package/dist/_dts/theme-core/src/site-styles/runtimeCompiler.d.ts +9 -6
- package/dist/_dts/ui/src/callout.d.ts +1 -1
- package/dist/cli/index.mjs +6446 -1220
- package/dist/cli/init-docs/content/cli-reference.md +18 -0
- package/dist/client/bookings.mjs +25 -25
- package/dist/client/client.mjs +3157 -2858
- package/dist/client/hooks.mjs +2608 -2326
- package/dist/client/rendering/client.mjs +505 -176
- package/dist/client/rendering/islands.mjs +18329 -13012
- package/dist/client/rendering.mjs +1204 -903
- package/dist/preview-next/before-render.mjs +84 -13
- package/dist/preview-next/client/runtime.mjs +3149 -2452
- package/dist/preview-next/middleware.mjs +84 -13
- package/dist/server/components.mjs +936 -631
- package/dist/server/config-validation.mjs +2838 -2556
- package/dist/server/config.mjs +2838 -2556
- package/dist/server/data.mjs +2608 -2326
- package/dist/server/index.mjs +676 -552
- package/dist/server/next.mjs +3043 -2738
- package/dist/server/page-converter.mjs +201 -51
- package/dist/server/prebuild.mjs +1 -1
- package/dist/server/rendering/server.mjs +936 -631
- package/dist/server/rendering.mjs +936 -631
- package/dist/server/routing.mjs +2701 -2426
- package/dist/server/server.mjs +2626 -2344
- package/dist/server/theme-bridge.mjs +169 -52
- package/package.json +2 -1
- package/dist/_dts/content-editor/src/ai/patch/allowed.d.ts +0 -2
- package/dist/_dts/content-editor/src/ai/patch/diff.d.ts +0 -17
- package/dist/_dts/content-editor/src/ai/patch/schema.d.ts +0 -49
- package/dist/_dts/path-utils/src/index.d.ts +0 -8
- package/dist/_dts/path-utils/src/redirectPaths.d.ts +0 -26
- package/dist/_dts/path-utils/src/safeAppPath.d.ts +0 -26
|
@@ -991,6 +991,168 @@ export type Database = {
|
|
|
991
991
|
}
|
|
992
992
|
];
|
|
993
993
|
};
|
|
994
|
+
billing_component_registrar_attempts: {
|
|
995
|
+
Row: {
|
|
996
|
+
billing_component_id: string;
|
|
997
|
+
completed_at: string | null;
|
|
998
|
+
created_at: string;
|
|
999
|
+
domain: string;
|
|
1000
|
+
id: string;
|
|
1001
|
+
idempotency_key: string;
|
|
1002
|
+
last_error: string | null;
|
|
1003
|
+
provider: string;
|
|
1004
|
+
provider_response_code: number | null;
|
|
1005
|
+
registrar_order_id: string | null;
|
|
1006
|
+
site_domain_id: string | null;
|
|
1007
|
+
site_id: string | null;
|
|
1008
|
+
started_at: string;
|
|
1009
|
+
status: Database["public"]["Enums"]["billing_component_registrar_attempt_status"];
|
|
1010
|
+
updated_at: string;
|
|
1011
|
+
user_id: string;
|
|
1012
|
+
};
|
|
1013
|
+
Insert: {
|
|
1014
|
+
billing_component_id: string;
|
|
1015
|
+
completed_at?: string | null;
|
|
1016
|
+
created_at?: string;
|
|
1017
|
+
domain: string;
|
|
1018
|
+
id?: string;
|
|
1019
|
+
idempotency_key: string;
|
|
1020
|
+
last_error?: string | null;
|
|
1021
|
+
provider: string;
|
|
1022
|
+
provider_response_code?: number | null;
|
|
1023
|
+
registrar_order_id?: string | null;
|
|
1024
|
+
site_domain_id?: string | null;
|
|
1025
|
+
site_id?: string | null;
|
|
1026
|
+
started_at?: string;
|
|
1027
|
+
status?: Database["public"]["Enums"]["billing_component_registrar_attempt_status"];
|
|
1028
|
+
updated_at?: string;
|
|
1029
|
+
user_id: string;
|
|
1030
|
+
};
|
|
1031
|
+
Update: {
|
|
1032
|
+
billing_component_id?: string;
|
|
1033
|
+
completed_at?: string | null;
|
|
1034
|
+
created_at?: string;
|
|
1035
|
+
domain?: string;
|
|
1036
|
+
id?: string;
|
|
1037
|
+
idempotency_key?: string;
|
|
1038
|
+
last_error?: string | null;
|
|
1039
|
+
provider?: string;
|
|
1040
|
+
provider_response_code?: number | null;
|
|
1041
|
+
registrar_order_id?: string | null;
|
|
1042
|
+
site_domain_id?: string | null;
|
|
1043
|
+
site_id?: string | null;
|
|
1044
|
+
started_at?: string;
|
|
1045
|
+
status?: Database["public"]["Enums"]["billing_component_registrar_attempt_status"];
|
|
1046
|
+
updated_at?: string;
|
|
1047
|
+
user_id?: string;
|
|
1048
|
+
};
|
|
1049
|
+
Relationships: [
|
|
1050
|
+
{
|
|
1051
|
+
foreignKeyName: "billing_component_registrar_attempts_billing_component_id_fkey";
|
|
1052
|
+
columns: ["billing_component_id"];
|
|
1053
|
+
isOneToOne: false;
|
|
1054
|
+
referencedRelation: "billing_components";
|
|
1055
|
+
referencedColumns: ["id"];
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
foreignKeyName: "billing_component_registrar_attempts_site_domain_id_fkey";
|
|
1059
|
+
columns: ["site_domain_id"];
|
|
1060
|
+
isOneToOne: false;
|
|
1061
|
+
referencedRelation: "site_domains";
|
|
1062
|
+
referencedColumns: ["id"];
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
foreignKeyName: "billing_component_registrar_attempts_site_id_fkey";
|
|
1066
|
+
columns: ["site_id"];
|
|
1067
|
+
isOneToOne: false;
|
|
1068
|
+
referencedRelation: "sites";
|
|
1069
|
+
referencedColumns: ["id"];
|
|
1070
|
+
}
|
|
1071
|
+
];
|
|
1072
|
+
};
|
|
1073
|
+
billing_components: {
|
|
1074
|
+
Row: {
|
|
1075
|
+
accepted_at: string | null;
|
|
1076
|
+
accepted_by: string | null;
|
|
1077
|
+
amount_cents: number;
|
|
1078
|
+
created_at: string;
|
|
1079
|
+
currency: string;
|
|
1080
|
+
ends_at: string | null;
|
|
1081
|
+
id: string;
|
|
1082
|
+
idempotency_key: string;
|
|
1083
|
+
interval: Database["public"]["Enums"]["plan_price_interval"];
|
|
1084
|
+
kind: Database["public"]["Enums"]["billing_component_kind"];
|
|
1085
|
+
last_registrar_error: string | null;
|
|
1086
|
+
last_sync_error: string | null;
|
|
1087
|
+
pending_source_key: string;
|
|
1088
|
+
pricing_snapshot: Json;
|
|
1089
|
+
site_id: string | null;
|
|
1090
|
+
snapshot_hash: string;
|
|
1091
|
+
source_entity_id: string | null;
|
|
1092
|
+
source_entity_type: Database["public"]["Enums"]["billing_component_source_entity_type"];
|
|
1093
|
+
starts_at: string | null;
|
|
1094
|
+
status: Database["public"]["Enums"]["billing_component_status"];
|
|
1095
|
+
updated_at: string;
|
|
1096
|
+
user_id: string;
|
|
1097
|
+
};
|
|
1098
|
+
Insert: {
|
|
1099
|
+
accepted_at?: string | null;
|
|
1100
|
+
accepted_by?: string | null;
|
|
1101
|
+
amount_cents: number;
|
|
1102
|
+
created_at?: string;
|
|
1103
|
+
currency: string;
|
|
1104
|
+
ends_at?: string | null;
|
|
1105
|
+
id?: string;
|
|
1106
|
+
idempotency_key: string;
|
|
1107
|
+
interval: Database["public"]["Enums"]["plan_price_interval"];
|
|
1108
|
+
kind: Database["public"]["Enums"]["billing_component_kind"];
|
|
1109
|
+
last_registrar_error?: string | null;
|
|
1110
|
+
last_sync_error?: string | null;
|
|
1111
|
+
pending_source_key: string;
|
|
1112
|
+
pricing_snapshot?: Json;
|
|
1113
|
+
site_id?: string | null;
|
|
1114
|
+
snapshot_hash: string;
|
|
1115
|
+
source_entity_id?: string | null;
|
|
1116
|
+
source_entity_type: Database["public"]["Enums"]["billing_component_source_entity_type"];
|
|
1117
|
+
starts_at?: string | null;
|
|
1118
|
+
status?: Database["public"]["Enums"]["billing_component_status"];
|
|
1119
|
+
updated_at?: string;
|
|
1120
|
+
user_id: string;
|
|
1121
|
+
};
|
|
1122
|
+
Update: {
|
|
1123
|
+
accepted_at?: string | null;
|
|
1124
|
+
accepted_by?: string | null;
|
|
1125
|
+
amount_cents?: number;
|
|
1126
|
+
created_at?: string;
|
|
1127
|
+
currency?: string;
|
|
1128
|
+
ends_at?: string | null;
|
|
1129
|
+
id?: string;
|
|
1130
|
+
idempotency_key?: string;
|
|
1131
|
+
interval?: Database["public"]["Enums"]["plan_price_interval"];
|
|
1132
|
+
kind?: Database["public"]["Enums"]["billing_component_kind"];
|
|
1133
|
+
last_registrar_error?: string | null;
|
|
1134
|
+
last_sync_error?: string | null;
|
|
1135
|
+
pending_source_key?: string;
|
|
1136
|
+
pricing_snapshot?: Json;
|
|
1137
|
+
site_id?: string | null;
|
|
1138
|
+
snapshot_hash?: string;
|
|
1139
|
+
source_entity_id?: string | null;
|
|
1140
|
+
source_entity_type?: Database["public"]["Enums"]["billing_component_source_entity_type"];
|
|
1141
|
+
starts_at?: string | null;
|
|
1142
|
+
status?: Database["public"]["Enums"]["billing_component_status"];
|
|
1143
|
+
updated_at?: string;
|
|
1144
|
+
user_id?: string;
|
|
1145
|
+
};
|
|
1146
|
+
Relationships: [
|
|
1147
|
+
{
|
|
1148
|
+
foreignKeyName: "billing_components_site_id_fkey";
|
|
1149
|
+
columns: ["site_id"];
|
|
1150
|
+
isOneToOne: false;
|
|
1151
|
+
referencedRelation: "sites";
|
|
1152
|
+
referencedColumns: ["id"];
|
|
1153
|
+
}
|
|
1154
|
+
];
|
|
1155
|
+
};
|
|
994
1156
|
billing_customers: {
|
|
995
1157
|
Row: {
|
|
996
1158
|
created_at: string;
|
|
@@ -4483,11 +4645,338 @@ export type Database = {
|
|
|
4483
4645
|
foreignKeyName: "course_enrollments_pricing_option_id_fkey";
|
|
4484
4646
|
columns: ["pricing_option_id"];
|
|
4485
4647
|
isOneToOne: false;
|
|
4486
|
-
referencedRelation: "booking_pricing_options";
|
|
4648
|
+
referencedRelation: "booking_pricing_options";
|
|
4649
|
+
referencedColumns: ["id"];
|
|
4650
|
+
},
|
|
4651
|
+
{
|
|
4652
|
+
foreignKeyName: "course_enrollments_site_id_fkey";
|
|
4653
|
+
columns: ["site_id"];
|
|
4654
|
+
isOneToOne: false;
|
|
4655
|
+
referencedRelation: "sites";
|
|
4656
|
+
referencedColumns: ["id"];
|
|
4657
|
+
}
|
|
4658
|
+
];
|
|
4659
|
+
};
|
|
4660
|
+
course_programs: {
|
|
4661
|
+
Row: {
|
|
4662
|
+
content_entry_id: string;
|
|
4663
|
+
created_at: string;
|
|
4664
|
+
id: string;
|
|
4665
|
+
site_id: string;
|
|
4666
|
+
title: string;
|
|
4667
|
+
updated_at: string;
|
|
4668
|
+
};
|
|
4669
|
+
Insert: {
|
|
4670
|
+
content_entry_id: string;
|
|
4671
|
+
created_at?: string;
|
|
4672
|
+
id?: string;
|
|
4673
|
+
site_id: string;
|
|
4674
|
+
title: string;
|
|
4675
|
+
updated_at?: string;
|
|
4676
|
+
};
|
|
4677
|
+
Update: {
|
|
4678
|
+
content_entry_id?: string;
|
|
4679
|
+
created_at?: string;
|
|
4680
|
+
id?: string;
|
|
4681
|
+
site_id?: string;
|
|
4682
|
+
title?: string;
|
|
4683
|
+
updated_at?: string;
|
|
4684
|
+
};
|
|
4685
|
+
Relationships: [
|
|
4686
|
+
{
|
|
4687
|
+
foreignKeyName: "course_programs_content_entry_id_fkey";
|
|
4688
|
+
columns: ["content_entry_id"];
|
|
4689
|
+
isOneToOne: false;
|
|
4690
|
+
referencedRelation: "content_entries";
|
|
4691
|
+
referencedColumns: ["id"];
|
|
4692
|
+
},
|
|
4693
|
+
{
|
|
4694
|
+
foreignKeyName: "course_programs_site_id_fkey";
|
|
4695
|
+
columns: ["site_id"];
|
|
4696
|
+
isOneToOne: false;
|
|
4697
|
+
referencedRelation: "sites";
|
|
4698
|
+
referencedColumns: ["id"];
|
|
4699
|
+
}
|
|
4700
|
+
];
|
|
4701
|
+
};
|
|
4702
|
+
courses: {
|
|
4703
|
+
Row: {
|
|
4704
|
+
accepts_memberships: boolean;
|
|
4705
|
+
created_at: string;
|
|
4706
|
+
currency: string;
|
|
4707
|
+
enrollment_capacity: number | null;
|
|
4708
|
+
id: string;
|
|
4709
|
+
price_cents: number | null;
|
|
4710
|
+
program_id: string;
|
|
4711
|
+
series_id: string;
|
|
4712
|
+
site_id: string;
|
|
4713
|
+
status: string;
|
|
4714
|
+
updated_at: string;
|
|
4715
|
+
waitlist_mode: string;
|
|
4716
|
+
};
|
|
4717
|
+
Insert: {
|
|
4718
|
+
accepts_memberships?: boolean;
|
|
4719
|
+
created_at?: string;
|
|
4720
|
+
currency?: string;
|
|
4721
|
+
enrollment_capacity?: number | null;
|
|
4722
|
+
id?: string;
|
|
4723
|
+
price_cents?: number | null;
|
|
4724
|
+
program_id: string;
|
|
4725
|
+
series_id: string;
|
|
4726
|
+
site_id: string;
|
|
4727
|
+
status?: string;
|
|
4728
|
+
updated_at?: string;
|
|
4729
|
+
waitlist_mode?: string;
|
|
4730
|
+
};
|
|
4731
|
+
Update: {
|
|
4732
|
+
accepts_memberships?: boolean;
|
|
4733
|
+
created_at?: string;
|
|
4734
|
+
currency?: string;
|
|
4735
|
+
enrollment_capacity?: number | null;
|
|
4736
|
+
id?: string;
|
|
4737
|
+
price_cents?: number | null;
|
|
4738
|
+
program_id?: string;
|
|
4739
|
+
series_id?: string;
|
|
4740
|
+
site_id?: string;
|
|
4741
|
+
status?: string;
|
|
4742
|
+
updated_at?: string;
|
|
4743
|
+
waitlist_mode?: string;
|
|
4744
|
+
};
|
|
4745
|
+
Relationships: [
|
|
4746
|
+
{
|
|
4747
|
+
foreignKeyName: "courses_program_id_fkey";
|
|
4748
|
+
columns: ["program_id"];
|
|
4749
|
+
isOneToOne: false;
|
|
4750
|
+
referencedRelation: "course_programs";
|
|
4751
|
+
referencedColumns: ["id"];
|
|
4752
|
+
},
|
|
4753
|
+
{
|
|
4754
|
+
foreignKeyName: "courses_series_id_fkey";
|
|
4755
|
+
columns: ["series_id"];
|
|
4756
|
+
isOneToOne: true;
|
|
4757
|
+
referencedRelation: "event_series";
|
|
4758
|
+
referencedColumns: ["id"];
|
|
4759
|
+
},
|
|
4760
|
+
{
|
|
4761
|
+
foreignKeyName: "courses_site_id_fkey";
|
|
4762
|
+
columns: ["site_id"];
|
|
4763
|
+
isOneToOne: false;
|
|
4764
|
+
referencedRelation: "sites";
|
|
4765
|
+
referencedColumns: ["id"];
|
|
4766
|
+
}
|
|
4767
|
+
];
|
|
4768
|
+
};
|
|
4769
|
+
customer_profile_audit_events: {
|
|
4770
|
+
Row: {
|
|
4771
|
+
actor_customer_id: string | null;
|
|
4772
|
+
actor_kind: string;
|
|
4773
|
+
actor_user_id: string | null;
|
|
4774
|
+
changes: Json;
|
|
4775
|
+
created_at: string;
|
|
4776
|
+
customer_id: string;
|
|
4777
|
+
event_type: string;
|
|
4778
|
+
id: string;
|
|
4779
|
+
occurred_at: string;
|
|
4780
|
+
reason: string | null;
|
|
4781
|
+
request_id: string | null;
|
|
4782
|
+
site_id: string;
|
|
4783
|
+
source_context: Json;
|
|
4784
|
+
};
|
|
4785
|
+
Insert: {
|
|
4786
|
+
actor_customer_id?: string | null;
|
|
4787
|
+
actor_kind: string;
|
|
4788
|
+
actor_user_id?: string | null;
|
|
4789
|
+
changes: Json;
|
|
4790
|
+
created_at?: string;
|
|
4791
|
+
customer_id: string;
|
|
4792
|
+
event_type: string;
|
|
4793
|
+
id?: string;
|
|
4794
|
+
occurred_at: string;
|
|
4795
|
+
reason?: string | null;
|
|
4796
|
+
request_id?: string | null;
|
|
4797
|
+
site_id: string;
|
|
4798
|
+
source_context?: Json;
|
|
4799
|
+
};
|
|
4800
|
+
Update: {
|
|
4801
|
+
actor_customer_id?: string | null;
|
|
4802
|
+
actor_kind?: string;
|
|
4803
|
+
actor_user_id?: string | null;
|
|
4804
|
+
changes?: Json;
|
|
4805
|
+
created_at?: string;
|
|
4806
|
+
customer_id?: string;
|
|
4807
|
+
event_type?: string;
|
|
4808
|
+
id?: string;
|
|
4809
|
+
occurred_at?: string;
|
|
4810
|
+
reason?: string | null;
|
|
4811
|
+
request_id?: string | null;
|
|
4812
|
+
site_id?: string;
|
|
4813
|
+
source_context?: Json;
|
|
4814
|
+
};
|
|
4815
|
+
Relationships: [];
|
|
4816
|
+
};
|
|
4817
|
+
demo_blueprint_versions: {
|
|
4818
|
+
Row: {
|
|
4819
|
+
archived_at: string | null;
|
|
4820
|
+
artifact_kind: string;
|
|
4821
|
+
artifact_ref: string;
|
|
4822
|
+
blueprint_id: string;
|
|
4823
|
+
created_at: string;
|
|
4824
|
+
created_by_user_id: string | null;
|
|
4825
|
+
id: string;
|
|
4826
|
+
metadata: Json;
|
|
4827
|
+
published_at: string | null;
|
|
4828
|
+
source_recipe_key: string | null;
|
|
4829
|
+
source_site_id: string | null;
|
|
4830
|
+
version_label: string;
|
|
4831
|
+
};
|
|
4832
|
+
Insert: {
|
|
4833
|
+
archived_at?: string | null;
|
|
4834
|
+
artifact_kind?: string;
|
|
4835
|
+
artifact_ref: string;
|
|
4836
|
+
blueprint_id: string;
|
|
4837
|
+
created_at?: string;
|
|
4838
|
+
created_by_user_id?: string | null;
|
|
4839
|
+
id?: string;
|
|
4840
|
+
metadata?: Json;
|
|
4841
|
+
published_at?: string | null;
|
|
4842
|
+
source_recipe_key?: string | null;
|
|
4843
|
+
source_site_id?: string | null;
|
|
4844
|
+
version_label: string;
|
|
4845
|
+
};
|
|
4846
|
+
Update: {
|
|
4847
|
+
archived_at?: string | null;
|
|
4848
|
+
artifact_kind?: string;
|
|
4849
|
+
artifact_ref?: string;
|
|
4850
|
+
blueprint_id?: string;
|
|
4851
|
+
created_at?: string;
|
|
4852
|
+
created_by_user_id?: string | null;
|
|
4853
|
+
id?: string;
|
|
4854
|
+
metadata?: Json;
|
|
4855
|
+
published_at?: string | null;
|
|
4856
|
+
source_recipe_key?: string | null;
|
|
4857
|
+
source_site_id?: string | null;
|
|
4858
|
+
version_label?: string;
|
|
4859
|
+
};
|
|
4860
|
+
Relationships: [
|
|
4861
|
+
{
|
|
4862
|
+
foreignKeyName: "demo_blueprint_versions_blueprint_id_fkey";
|
|
4863
|
+
columns: ["blueprint_id"];
|
|
4864
|
+
isOneToOne: false;
|
|
4865
|
+
referencedRelation: "demo_blueprints";
|
|
4866
|
+
referencedColumns: ["id"];
|
|
4867
|
+
},
|
|
4868
|
+
{
|
|
4869
|
+
foreignKeyName: "demo_blueprint_versions_source_site_id_fkey";
|
|
4870
|
+
columns: ["source_site_id"];
|
|
4871
|
+
isOneToOne: false;
|
|
4872
|
+
referencedRelation: "sites";
|
|
4873
|
+
referencedColumns: ["id"];
|
|
4874
|
+
}
|
|
4875
|
+
];
|
|
4876
|
+
};
|
|
4877
|
+
demo_blueprints: {
|
|
4878
|
+
Row: {
|
|
4879
|
+
created_at: string;
|
|
4880
|
+
display_name: string;
|
|
4881
|
+
id: string;
|
|
4882
|
+
metadata: Json;
|
|
4883
|
+
notes: string | null;
|
|
4884
|
+
slug: string;
|
|
4885
|
+
source_recipe_key: string | null;
|
|
4886
|
+
source_site_id: string | null;
|
|
4887
|
+
status: string;
|
|
4888
|
+
updated_at: string;
|
|
4889
|
+
};
|
|
4890
|
+
Insert: {
|
|
4891
|
+
created_at?: string;
|
|
4892
|
+
display_name: string;
|
|
4893
|
+
id?: string;
|
|
4894
|
+
metadata?: Json;
|
|
4895
|
+
notes?: string | null;
|
|
4896
|
+
slug: string;
|
|
4897
|
+
source_recipe_key?: string | null;
|
|
4898
|
+
source_site_id?: string | null;
|
|
4899
|
+
status?: string;
|
|
4900
|
+
updated_at?: string;
|
|
4901
|
+
};
|
|
4902
|
+
Update: {
|
|
4903
|
+
created_at?: string;
|
|
4904
|
+
display_name?: string;
|
|
4905
|
+
id?: string;
|
|
4906
|
+
metadata?: Json;
|
|
4907
|
+
notes?: string | null;
|
|
4908
|
+
slug?: string;
|
|
4909
|
+
source_recipe_key?: string | null;
|
|
4910
|
+
source_site_id?: string | null;
|
|
4911
|
+
status?: string;
|
|
4912
|
+
updated_at?: string;
|
|
4913
|
+
};
|
|
4914
|
+
Relationships: [
|
|
4915
|
+
{
|
|
4916
|
+
foreignKeyName: "demo_blueprints_source_site_id_fkey";
|
|
4917
|
+
columns: ["source_site_id"];
|
|
4918
|
+
isOneToOne: false;
|
|
4919
|
+
referencedRelation: "sites";
|
|
4920
|
+
referencedColumns: ["id"];
|
|
4921
|
+
}
|
|
4922
|
+
];
|
|
4923
|
+
};
|
|
4924
|
+
demo_claims: {
|
|
4925
|
+
Row: {
|
|
4926
|
+
claimant_email: string;
|
|
4927
|
+
claimant_user_id: string | null;
|
|
4928
|
+
claimed_at: string;
|
|
4929
|
+
created_at: string;
|
|
4930
|
+
expires_at: string;
|
|
4931
|
+
id: string;
|
|
4932
|
+
instance_id: string;
|
|
4933
|
+
metadata: Json;
|
|
4934
|
+
release_reason: string | null;
|
|
4935
|
+
released_at: string | null;
|
|
4936
|
+
site_id: string;
|
|
4937
|
+
status: string;
|
|
4938
|
+
updated_at: string;
|
|
4939
|
+
};
|
|
4940
|
+
Insert: {
|
|
4941
|
+
claimant_email: string;
|
|
4942
|
+
claimant_user_id?: string | null;
|
|
4943
|
+
claimed_at?: string;
|
|
4944
|
+
created_at?: string;
|
|
4945
|
+
expires_at: string;
|
|
4946
|
+
id?: string;
|
|
4947
|
+
instance_id: string;
|
|
4948
|
+
metadata?: Json;
|
|
4949
|
+
release_reason?: string | null;
|
|
4950
|
+
released_at?: string | null;
|
|
4951
|
+
site_id: string;
|
|
4952
|
+
status?: string;
|
|
4953
|
+
updated_at?: string;
|
|
4954
|
+
};
|
|
4955
|
+
Update: {
|
|
4956
|
+
claimant_email?: string;
|
|
4957
|
+
claimant_user_id?: string | null;
|
|
4958
|
+
claimed_at?: string;
|
|
4959
|
+
created_at?: string;
|
|
4960
|
+
expires_at?: string;
|
|
4961
|
+
id?: string;
|
|
4962
|
+
instance_id?: string;
|
|
4963
|
+
metadata?: Json;
|
|
4964
|
+
release_reason?: string | null;
|
|
4965
|
+
released_at?: string | null;
|
|
4966
|
+
site_id?: string;
|
|
4967
|
+
status?: string;
|
|
4968
|
+
updated_at?: string;
|
|
4969
|
+
};
|
|
4970
|
+
Relationships: [
|
|
4971
|
+
{
|
|
4972
|
+
foreignKeyName: "demo_claims_instance_id_fkey";
|
|
4973
|
+
columns: ["instance_id"];
|
|
4974
|
+
isOneToOne: false;
|
|
4975
|
+
referencedRelation: "demo_instances";
|
|
4487
4976
|
referencedColumns: ["id"];
|
|
4488
4977
|
},
|
|
4489
4978
|
{
|
|
4490
|
-
foreignKeyName: "
|
|
4979
|
+
foreignKeyName: "demo_claims_site_id_fkey";
|
|
4491
4980
|
columns: ["site_id"];
|
|
4492
4981
|
isOneToOne: false;
|
|
4493
4982
|
referencedRelation: "sites";
|
|
@@ -4495,41 +4984,47 @@ export type Database = {
|
|
|
4495
4984
|
}
|
|
4496
4985
|
];
|
|
4497
4986
|
};
|
|
4498
|
-
|
|
4987
|
+
demo_health_checks: {
|
|
4499
4988
|
Row: {
|
|
4500
|
-
|
|
4989
|
+
check_type: string;
|
|
4990
|
+
checked_at: string;
|
|
4501
4991
|
created_at: string;
|
|
4992
|
+
detail: Json;
|
|
4502
4993
|
id: string;
|
|
4503
|
-
|
|
4504
|
-
|
|
4505
|
-
|
|
4994
|
+
instance_id: string | null;
|
|
4995
|
+
site_id: string | null;
|
|
4996
|
+
status: string;
|
|
4506
4997
|
};
|
|
4507
4998
|
Insert: {
|
|
4508
|
-
|
|
4999
|
+
check_type: string;
|
|
5000
|
+
checked_at?: string;
|
|
4509
5001
|
created_at?: string;
|
|
5002
|
+
detail?: Json;
|
|
4510
5003
|
id?: string;
|
|
4511
|
-
|
|
4512
|
-
|
|
4513
|
-
|
|
5004
|
+
instance_id?: string | null;
|
|
5005
|
+
site_id?: string | null;
|
|
5006
|
+
status: string;
|
|
4514
5007
|
};
|
|
4515
5008
|
Update: {
|
|
4516
|
-
|
|
5009
|
+
check_type?: string;
|
|
5010
|
+
checked_at?: string;
|
|
4517
5011
|
created_at?: string;
|
|
5012
|
+
detail?: Json;
|
|
4518
5013
|
id?: string;
|
|
4519
|
-
|
|
4520
|
-
|
|
4521
|
-
|
|
5014
|
+
instance_id?: string | null;
|
|
5015
|
+
site_id?: string | null;
|
|
5016
|
+
status?: string;
|
|
4522
5017
|
};
|
|
4523
5018
|
Relationships: [
|
|
4524
5019
|
{
|
|
4525
|
-
foreignKeyName: "
|
|
4526
|
-
columns: ["
|
|
5020
|
+
foreignKeyName: "demo_health_checks_instance_id_fkey";
|
|
5021
|
+
columns: ["instance_id"];
|
|
4527
5022
|
isOneToOne: false;
|
|
4528
|
-
referencedRelation: "
|
|
5023
|
+
referencedRelation: "demo_instances";
|
|
4529
5024
|
referencedColumns: ["id"];
|
|
4530
5025
|
},
|
|
4531
5026
|
{
|
|
4532
|
-
foreignKeyName: "
|
|
5027
|
+
foreignKeyName: "demo_health_checks_site_id_fkey";
|
|
4533
5028
|
columns: ["site_id"];
|
|
4534
5029
|
isOneToOne: false;
|
|
4535
5030
|
referencedRelation: "sites";
|
|
@@ -4537,66 +5032,81 @@ export type Database = {
|
|
|
4537
5032
|
}
|
|
4538
5033
|
];
|
|
4539
5034
|
};
|
|
4540
|
-
|
|
5035
|
+
demo_instances: {
|
|
4541
5036
|
Row: {
|
|
4542
|
-
|
|
5037
|
+
available_at: string | null;
|
|
5038
|
+
base_domain: string | null;
|
|
5039
|
+
blueprint_id: string;
|
|
5040
|
+
blueprint_version_id: string;
|
|
5041
|
+
claimed_at: string | null;
|
|
4543
5042
|
created_at: string;
|
|
4544
|
-
|
|
4545
|
-
|
|
5043
|
+
expires_at: string | null;
|
|
5044
|
+
failure_context: Json | null;
|
|
5045
|
+
failure_reason: string | null;
|
|
4546
5046
|
id: string;
|
|
4547
|
-
|
|
4548
|
-
|
|
4549
|
-
|
|
5047
|
+
last_recycled_at: string | null;
|
|
5048
|
+
metadata: Json;
|
|
5049
|
+
route_path: string | null;
|
|
5050
|
+
routing_kind: string;
|
|
4550
5051
|
site_id: string;
|
|
4551
5052
|
status: string;
|
|
4552
5053
|
updated_at: string;
|
|
4553
|
-
waitlist_mode: string;
|
|
4554
5054
|
};
|
|
4555
5055
|
Insert: {
|
|
4556
|
-
|
|
5056
|
+
available_at?: string | null;
|
|
5057
|
+
base_domain?: string | null;
|
|
5058
|
+
blueprint_id: string;
|
|
5059
|
+
blueprint_version_id: string;
|
|
5060
|
+
claimed_at?: string | null;
|
|
4557
5061
|
created_at?: string;
|
|
4558
|
-
|
|
4559
|
-
|
|
5062
|
+
expires_at?: string | null;
|
|
5063
|
+
failure_context?: Json | null;
|
|
5064
|
+
failure_reason?: string | null;
|
|
4560
5065
|
id?: string;
|
|
4561
|
-
|
|
4562
|
-
|
|
4563
|
-
|
|
5066
|
+
last_recycled_at?: string | null;
|
|
5067
|
+
metadata?: Json;
|
|
5068
|
+
route_path?: string | null;
|
|
5069
|
+
routing_kind?: string;
|
|
4564
5070
|
site_id: string;
|
|
4565
5071
|
status?: string;
|
|
4566
5072
|
updated_at?: string;
|
|
4567
|
-
waitlist_mode?: string;
|
|
4568
5073
|
};
|
|
4569
5074
|
Update: {
|
|
4570
|
-
|
|
5075
|
+
available_at?: string | null;
|
|
5076
|
+
base_domain?: string | null;
|
|
5077
|
+
blueprint_id?: string;
|
|
5078
|
+
blueprint_version_id?: string;
|
|
5079
|
+
claimed_at?: string | null;
|
|
4571
5080
|
created_at?: string;
|
|
4572
|
-
|
|
4573
|
-
|
|
5081
|
+
expires_at?: string | null;
|
|
5082
|
+
failure_context?: Json | null;
|
|
5083
|
+
failure_reason?: string | null;
|
|
4574
5084
|
id?: string;
|
|
4575
|
-
|
|
4576
|
-
|
|
4577
|
-
|
|
5085
|
+
last_recycled_at?: string | null;
|
|
5086
|
+
metadata?: Json;
|
|
5087
|
+
route_path?: string | null;
|
|
5088
|
+
routing_kind?: string;
|
|
4578
5089
|
site_id?: string;
|
|
4579
5090
|
status?: string;
|
|
4580
5091
|
updated_at?: string;
|
|
4581
|
-
waitlist_mode?: string;
|
|
4582
5092
|
};
|
|
4583
5093
|
Relationships: [
|
|
4584
5094
|
{
|
|
4585
|
-
foreignKeyName: "
|
|
4586
|
-
columns: ["
|
|
5095
|
+
foreignKeyName: "demo_instances_blueprint_id_fkey";
|
|
5096
|
+
columns: ["blueprint_id"];
|
|
4587
5097
|
isOneToOne: false;
|
|
4588
|
-
referencedRelation: "
|
|
5098
|
+
referencedRelation: "demo_blueprints";
|
|
4589
5099
|
referencedColumns: ["id"];
|
|
4590
5100
|
},
|
|
4591
5101
|
{
|
|
4592
|
-
foreignKeyName: "
|
|
4593
|
-
columns: ["
|
|
4594
|
-
isOneToOne:
|
|
4595
|
-
referencedRelation: "
|
|
5102
|
+
foreignKeyName: "demo_instances_blueprint_version_id_fkey";
|
|
5103
|
+
columns: ["blueprint_version_id"];
|
|
5104
|
+
isOneToOne: false;
|
|
5105
|
+
referencedRelation: "demo_blueprint_versions";
|
|
4596
5106
|
referencedColumns: ["id"];
|
|
4597
5107
|
},
|
|
4598
5108
|
{
|
|
4599
|
-
foreignKeyName: "
|
|
5109
|
+
foreignKeyName: "demo_instances_site_id_fkey";
|
|
4600
5110
|
columns: ["site_id"];
|
|
4601
5111
|
isOneToOne: false;
|
|
4602
5112
|
referencedRelation: "sites";
|
|
@@ -4604,54 +5114,209 @@ export type Database = {
|
|
|
4604
5114
|
}
|
|
4605
5115
|
];
|
|
4606
5116
|
};
|
|
4607
|
-
|
|
5117
|
+
demo_lifecycle_audit_events: {
|
|
4608
5118
|
Row: {
|
|
4609
|
-
actor_customer_id: string | null;
|
|
4610
5119
|
actor_kind: string;
|
|
4611
5120
|
actor_user_id: string | null;
|
|
4612
|
-
|
|
5121
|
+
blueprint_id: string | null;
|
|
5122
|
+
blueprint_version_id: string | null;
|
|
5123
|
+
claim_id: string | null;
|
|
4613
5124
|
created_at: string;
|
|
4614
|
-
customer_id: string;
|
|
4615
5125
|
event_type: string;
|
|
4616
5126
|
id: string;
|
|
5127
|
+
instance_id: string | null;
|
|
4617
5128
|
occurred_at: string;
|
|
4618
|
-
reason: string
|
|
5129
|
+
reason: string;
|
|
4619
5130
|
request_id: string | null;
|
|
4620
|
-
|
|
4621
|
-
|
|
5131
|
+
runtime_env: string;
|
|
5132
|
+
site_id: string | null;
|
|
5133
|
+
source_context: Json | null;
|
|
5134
|
+
target_kind: string;
|
|
4622
5135
|
};
|
|
4623
5136
|
Insert: {
|
|
4624
|
-
actor_customer_id?: string | null;
|
|
4625
5137
|
actor_kind: string;
|
|
4626
5138
|
actor_user_id?: string | null;
|
|
4627
|
-
|
|
5139
|
+
blueprint_id?: string | null;
|
|
5140
|
+
blueprint_version_id?: string | null;
|
|
5141
|
+
claim_id?: string | null;
|
|
4628
5142
|
created_at?: string;
|
|
4629
|
-
customer_id: string;
|
|
4630
5143
|
event_type: string;
|
|
4631
5144
|
id?: string;
|
|
4632
|
-
|
|
4633
|
-
|
|
5145
|
+
instance_id?: string | null;
|
|
5146
|
+
occurred_at?: string;
|
|
5147
|
+
reason: string;
|
|
4634
5148
|
request_id?: string | null;
|
|
4635
|
-
|
|
4636
|
-
|
|
5149
|
+
runtime_env: string;
|
|
5150
|
+
site_id?: string | null;
|
|
5151
|
+
source_context?: Json | null;
|
|
5152
|
+
target_kind: string;
|
|
4637
5153
|
};
|
|
4638
5154
|
Update: {
|
|
4639
|
-
actor_customer_id?: string | null;
|
|
4640
5155
|
actor_kind?: string;
|
|
4641
5156
|
actor_user_id?: string | null;
|
|
4642
|
-
|
|
5157
|
+
blueprint_id?: string | null;
|
|
5158
|
+
blueprint_version_id?: string | null;
|
|
5159
|
+
claim_id?: string | null;
|
|
4643
5160
|
created_at?: string;
|
|
4644
|
-
customer_id?: string;
|
|
4645
5161
|
event_type?: string;
|
|
4646
5162
|
id?: string;
|
|
5163
|
+
instance_id?: string | null;
|
|
4647
5164
|
occurred_at?: string;
|
|
4648
|
-
reason?: string
|
|
5165
|
+
reason?: string;
|
|
4649
5166
|
request_id?: string | null;
|
|
4650
|
-
|
|
4651
|
-
|
|
5167
|
+
runtime_env?: string;
|
|
5168
|
+
site_id?: string | null;
|
|
5169
|
+
source_context?: Json | null;
|
|
5170
|
+
target_kind?: string;
|
|
5171
|
+
};
|
|
5172
|
+
Relationships: [
|
|
5173
|
+
{
|
|
5174
|
+
foreignKeyName: "demo_lifecycle_audit_events_blueprint_id_fkey";
|
|
5175
|
+
columns: ["blueprint_id"];
|
|
5176
|
+
isOneToOne: false;
|
|
5177
|
+
referencedRelation: "demo_blueprints";
|
|
5178
|
+
referencedColumns: ["id"];
|
|
5179
|
+
},
|
|
5180
|
+
{
|
|
5181
|
+
foreignKeyName: "demo_lifecycle_audit_events_blueprint_version_id_fkey";
|
|
5182
|
+
columns: ["blueprint_version_id"];
|
|
5183
|
+
isOneToOne: false;
|
|
5184
|
+
referencedRelation: "demo_blueprint_versions";
|
|
5185
|
+
referencedColumns: ["id"];
|
|
5186
|
+
},
|
|
5187
|
+
{
|
|
5188
|
+
foreignKeyName: "demo_lifecycle_audit_events_claim_id_fkey";
|
|
5189
|
+
columns: ["claim_id"];
|
|
5190
|
+
isOneToOne: false;
|
|
5191
|
+
referencedRelation: "demo_claims";
|
|
5192
|
+
referencedColumns: ["id"];
|
|
5193
|
+
},
|
|
5194
|
+
{
|
|
5195
|
+
foreignKeyName: "demo_lifecycle_audit_events_instance_id_fkey";
|
|
5196
|
+
columns: ["instance_id"];
|
|
5197
|
+
isOneToOne: false;
|
|
5198
|
+
referencedRelation: "demo_instances";
|
|
5199
|
+
referencedColumns: ["id"];
|
|
5200
|
+
},
|
|
5201
|
+
{
|
|
5202
|
+
foreignKeyName: "demo_lifecycle_audit_events_site_id_fkey";
|
|
5203
|
+
columns: ["site_id"];
|
|
5204
|
+
isOneToOne: false;
|
|
5205
|
+
referencedRelation: "sites";
|
|
5206
|
+
referencedColumns: ["id"];
|
|
5207
|
+
}
|
|
5208
|
+
];
|
|
5209
|
+
};
|
|
5210
|
+
demo_lifecycle_jobs: {
|
|
5211
|
+
Row: {
|
|
5212
|
+
consecutive_failures: number;
|
|
5213
|
+
created_at: string;
|
|
5214
|
+
job_name: string;
|
|
5215
|
+
last_error: string | null;
|
|
5216
|
+
last_failed_at: string | null;
|
|
5217
|
+
last_started_at: string | null;
|
|
5218
|
+
last_succeeded_at: string | null;
|
|
5219
|
+
last_summary: Json;
|
|
5220
|
+
lease_token: string | null;
|
|
5221
|
+
locked_until: string | null;
|
|
5222
|
+
updated_at: string;
|
|
5223
|
+
};
|
|
5224
|
+
Insert: {
|
|
5225
|
+
consecutive_failures?: number;
|
|
5226
|
+
created_at?: string;
|
|
5227
|
+
job_name: string;
|
|
5228
|
+
last_error?: string | null;
|
|
5229
|
+
last_failed_at?: string | null;
|
|
5230
|
+
last_started_at?: string | null;
|
|
5231
|
+
last_succeeded_at?: string | null;
|
|
5232
|
+
last_summary?: Json;
|
|
5233
|
+
lease_token?: string | null;
|
|
5234
|
+
locked_until?: string | null;
|
|
5235
|
+
updated_at?: string;
|
|
5236
|
+
};
|
|
5237
|
+
Update: {
|
|
5238
|
+
consecutive_failures?: number;
|
|
5239
|
+
created_at?: string;
|
|
5240
|
+
job_name?: string;
|
|
5241
|
+
last_error?: string | null;
|
|
5242
|
+
last_failed_at?: string | null;
|
|
5243
|
+
last_started_at?: string | null;
|
|
5244
|
+
last_succeeded_at?: string | null;
|
|
5245
|
+
last_summary?: Json;
|
|
5246
|
+
lease_token?: string | null;
|
|
5247
|
+
locked_until?: string | null;
|
|
5248
|
+
updated_at?: string;
|
|
4652
5249
|
};
|
|
4653
5250
|
Relationships: [];
|
|
4654
5251
|
};
|
|
5252
|
+
demo_media_uploads: {
|
|
5253
|
+
Row: {
|
|
5254
|
+
bytes: number;
|
|
5255
|
+
claim_id: string | null;
|
|
5256
|
+
created_at: string;
|
|
5257
|
+
id: string;
|
|
5258
|
+
instance_id: string;
|
|
5259
|
+
media_asset_id: string;
|
|
5260
|
+
site_id: string;
|
|
5261
|
+
source: string;
|
|
5262
|
+
updated_at: string;
|
|
5263
|
+
uploaded_by_user_id: string | null;
|
|
5264
|
+
};
|
|
5265
|
+
Insert: {
|
|
5266
|
+
bytes?: number;
|
|
5267
|
+
claim_id?: string | null;
|
|
5268
|
+
created_at?: string;
|
|
5269
|
+
id?: string;
|
|
5270
|
+
instance_id: string;
|
|
5271
|
+
media_asset_id: string;
|
|
5272
|
+
site_id: string;
|
|
5273
|
+
source?: string;
|
|
5274
|
+
updated_at?: string;
|
|
5275
|
+
uploaded_by_user_id?: string | null;
|
|
5276
|
+
};
|
|
5277
|
+
Update: {
|
|
5278
|
+
bytes?: number;
|
|
5279
|
+
claim_id?: string | null;
|
|
5280
|
+
created_at?: string;
|
|
5281
|
+
id?: string;
|
|
5282
|
+
instance_id?: string;
|
|
5283
|
+
media_asset_id?: string;
|
|
5284
|
+
site_id?: string;
|
|
5285
|
+
source?: string;
|
|
5286
|
+
updated_at?: string;
|
|
5287
|
+
uploaded_by_user_id?: string | null;
|
|
5288
|
+
};
|
|
5289
|
+
Relationships: [
|
|
5290
|
+
{
|
|
5291
|
+
foreignKeyName: "demo_media_uploads_claim_id_fkey";
|
|
5292
|
+
columns: ["claim_id"];
|
|
5293
|
+
isOneToOne: false;
|
|
5294
|
+
referencedRelation: "demo_claims";
|
|
5295
|
+
referencedColumns: ["id"];
|
|
5296
|
+
},
|
|
5297
|
+
{
|
|
5298
|
+
foreignKeyName: "demo_media_uploads_instance_id_fkey";
|
|
5299
|
+
columns: ["instance_id"];
|
|
5300
|
+
isOneToOne: false;
|
|
5301
|
+
referencedRelation: "demo_instances";
|
|
5302
|
+
referencedColumns: ["id"];
|
|
5303
|
+
},
|
|
5304
|
+
{
|
|
5305
|
+
foreignKeyName: "demo_media_uploads_media_asset_id_fkey";
|
|
5306
|
+
columns: ["media_asset_id"];
|
|
5307
|
+
isOneToOne: true;
|
|
5308
|
+
referencedRelation: "media_assets";
|
|
5309
|
+
referencedColumns: ["id"];
|
|
5310
|
+
},
|
|
5311
|
+
{
|
|
5312
|
+
foreignKeyName: "demo_media_uploads_site_id_fkey";
|
|
5313
|
+
columns: ["site_id"];
|
|
5314
|
+
isOneToOne: false;
|
|
5315
|
+
referencedRelation: "sites";
|
|
5316
|
+
referencedColumns: ["id"];
|
|
5317
|
+
}
|
|
5318
|
+
];
|
|
5319
|
+
};
|
|
4655
5320
|
digital_product_entitlement_grants: {
|
|
4656
5321
|
Row: {
|
|
4657
5322
|
created_at: string;
|
|
@@ -6449,6 +7114,7 @@ export type Database = {
|
|
|
6449
7114
|
Row: {
|
|
6450
7115
|
created_at: string;
|
|
6451
7116
|
id: string;
|
|
7117
|
+
is_primary: boolean;
|
|
6452
7118
|
occurrence_id: string;
|
|
6453
7119
|
site_id: string;
|
|
6454
7120
|
staff_member_id: string;
|
|
@@ -6456,6 +7122,7 @@ export type Database = {
|
|
|
6456
7122
|
Insert: {
|
|
6457
7123
|
created_at?: string;
|
|
6458
7124
|
id?: string;
|
|
7125
|
+
is_primary?: boolean;
|
|
6459
7126
|
occurrence_id: string;
|
|
6460
7127
|
site_id: string;
|
|
6461
7128
|
staff_member_id: string;
|
|
@@ -6463,6 +7130,7 @@ export type Database = {
|
|
|
6463
7130
|
Update: {
|
|
6464
7131
|
created_at?: string;
|
|
6465
7132
|
id?: string;
|
|
7133
|
+
is_primary?: boolean;
|
|
6466
7134
|
occurrence_id?: string;
|
|
6467
7135
|
site_id?: string;
|
|
6468
7136
|
staff_member_id?: string;
|
|
@@ -6881,6 +7549,7 @@ export type Database = {
|
|
|
6881
7549
|
created_at: string;
|
|
6882
7550
|
event_series_id: string;
|
|
6883
7551
|
id: string;
|
|
7552
|
+
is_primary: boolean;
|
|
6884
7553
|
site_id: string;
|
|
6885
7554
|
staff_member_id: string;
|
|
6886
7555
|
};
|
|
@@ -6888,6 +7557,7 @@ export type Database = {
|
|
|
6888
7557
|
created_at?: string;
|
|
6889
7558
|
event_series_id: string;
|
|
6890
7559
|
id?: string;
|
|
7560
|
+
is_primary?: boolean;
|
|
6891
7561
|
site_id: string;
|
|
6892
7562
|
staff_member_id: string;
|
|
6893
7563
|
};
|
|
@@ -6895,6 +7565,7 @@ export type Database = {
|
|
|
6895
7565
|
created_at?: string;
|
|
6896
7566
|
event_series_id?: string;
|
|
6897
7567
|
id?: string;
|
|
7568
|
+
is_primary?: boolean;
|
|
6898
7569
|
site_id?: string;
|
|
6899
7570
|
staff_member_id?: string;
|
|
6900
7571
|
};
|
|
@@ -6933,6 +7604,7 @@ export type Database = {
|
|
|
6933
7604
|
is_active: boolean;
|
|
6934
7605
|
name: string;
|
|
6935
7606
|
price_amount: number;
|
|
7607
|
+
recipe_identifier: string | null;
|
|
6936
7608
|
sale_ends_at: string | null;
|
|
6937
7609
|
sale_starts_at: string | null;
|
|
6938
7610
|
site_id: string;
|
|
@@ -6949,6 +7621,7 @@ export type Database = {
|
|
|
6949
7621
|
is_active?: boolean;
|
|
6950
7622
|
name: string;
|
|
6951
7623
|
price_amount: number;
|
|
7624
|
+
recipe_identifier?: string | null;
|
|
6952
7625
|
sale_ends_at?: string | null;
|
|
6953
7626
|
sale_starts_at?: string | null;
|
|
6954
7627
|
site_id: string;
|
|
@@ -6965,6 +7638,7 @@ export type Database = {
|
|
|
6965
7638
|
is_active?: boolean;
|
|
6966
7639
|
name?: string;
|
|
6967
7640
|
price_amount?: number;
|
|
7641
|
+
recipe_identifier?: string | null;
|
|
6968
7642
|
sale_ends_at?: string | null;
|
|
6969
7643
|
sale_starts_at?: string | null;
|
|
6970
7644
|
site_id?: string;
|
|
@@ -11823,6 +12497,7 @@ export type Database = {
|
|
|
11823
12497
|
revoked_at: string | null;
|
|
11824
12498
|
role: Database["public"]["Enums"]["site_role"];
|
|
11825
12499
|
site_id: string;
|
|
12500
|
+
staff_capabilities: Database["public"]["Enums"]["staff_operational_capability"][] | null;
|
|
11826
12501
|
token_hash: string;
|
|
11827
12502
|
updated_at: string;
|
|
11828
12503
|
};
|
|
@@ -11839,6 +12514,7 @@ export type Database = {
|
|
|
11839
12514
|
revoked_at?: string | null;
|
|
11840
12515
|
role: Database["public"]["Enums"]["site_role"];
|
|
11841
12516
|
site_id: string;
|
|
12517
|
+
staff_capabilities?: Database["public"]["Enums"]["staff_operational_capability"][] | null;
|
|
11842
12518
|
token_hash: string;
|
|
11843
12519
|
updated_at?: string;
|
|
11844
12520
|
};
|
|
@@ -11855,6 +12531,7 @@ export type Database = {
|
|
|
11855
12531
|
revoked_at?: string | null;
|
|
11856
12532
|
role?: Database["public"]["Enums"]["site_role"];
|
|
11857
12533
|
site_id?: string;
|
|
12534
|
+
staff_capabilities?: Database["public"]["Enums"]["staff_operational_capability"][] | null;
|
|
11858
12535
|
token_hash?: string;
|
|
11859
12536
|
updated_at?: string;
|
|
11860
12537
|
};
|
|
@@ -11939,6 +12616,7 @@ export type Database = {
|
|
|
11939
12616
|
removed_at: string | null;
|
|
11940
12617
|
role: Database["public"]["Enums"]["site_role"];
|
|
11941
12618
|
site_id: string;
|
|
12619
|
+
staff_capabilities: Database["public"]["Enums"]["staff_operational_capability"][] | null;
|
|
11942
12620
|
updated_at: string;
|
|
11943
12621
|
user_id: string;
|
|
11944
12622
|
};
|
|
@@ -11951,6 +12629,7 @@ export type Database = {
|
|
|
11951
12629
|
removed_at?: string | null;
|
|
11952
12630
|
role: Database["public"]["Enums"]["site_role"];
|
|
11953
12631
|
site_id: string;
|
|
12632
|
+
staff_capabilities?: Database["public"]["Enums"]["staff_operational_capability"][] | null;
|
|
11954
12633
|
updated_at?: string;
|
|
11955
12634
|
user_id: string;
|
|
11956
12635
|
};
|
|
@@ -11963,6 +12642,7 @@ export type Database = {
|
|
|
11963
12642
|
removed_at?: string | null;
|
|
11964
12643
|
role?: Database["public"]["Enums"]["site_role"];
|
|
11965
12644
|
site_id?: string;
|
|
12645
|
+
staff_capabilities?: Database["public"]["Enums"]["staff_operational_capability"][] | null;
|
|
11966
12646
|
updated_at?: string;
|
|
11967
12647
|
user_id?: string;
|
|
11968
12648
|
};
|
|
@@ -13199,6 +13879,7 @@ export type Database = {
|
|
|
13199
13879
|
Row: {
|
|
13200
13880
|
content_type: string;
|
|
13201
13881
|
created_at: string;
|
|
13882
|
+
dedupe_key: string | null;
|
|
13202
13883
|
entry_id: string;
|
|
13203
13884
|
error_message: string | null;
|
|
13204
13885
|
external_job_id: string | null;
|
|
@@ -13219,6 +13900,7 @@ export type Database = {
|
|
|
13219
13900
|
Insert: {
|
|
13220
13901
|
content_type: string;
|
|
13221
13902
|
created_at?: string;
|
|
13903
|
+
dedupe_key?: string | null;
|
|
13222
13904
|
entry_id: string;
|
|
13223
13905
|
error_message?: string | null;
|
|
13224
13906
|
external_job_id?: string | null;
|
|
@@ -13239,6 +13921,7 @@ export type Database = {
|
|
|
13239
13921
|
Update: {
|
|
13240
13922
|
content_type?: string;
|
|
13241
13923
|
created_at?: string;
|
|
13924
|
+
dedupe_key?: string | null;
|
|
13242
13925
|
entry_id?: string;
|
|
13243
13926
|
error_message?: string | null;
|
|
13244
13927
|
external_job_id?: string | null;
|
|
@@ -14042,6 +14725,31 @@ export type Database = {
|
|
|
14042
14725
|
};
|
|
14043
14726
|
};
|
|
14044
14727
|
Functions: {
|
|
14728
|
+
_finalize_site_invitation: {
|
|
14729
|
+
Args: {
|
|
14730
|
+
p_invite: Database["public"]["Tables"]["site_invitations"]["Row"];
|
|
14731
|
+
p_user: string;
|
|
14732
|
+
};
|
|
14733
|
+
Returns: {
|
|
14734
|
+
accepted_at: string | null;
|
|
14735
|
+
created_at: string;
|
|
14736
|
+
id: string;
|
|
14737
|
+
invited_by: string | null;
|
|
14738
|
+
linked_staff_member_id: string | null;
|
|
14739
|
+
removed_at: string | null;
|
|
14740
|
+
role: Database["public"]["Enums"]["site_role"];
|
|
14741
|
+
site_id: string;
|
|
14742
|
+
staff_capabilities: Database["public"]["Enums"]["staff_operational_capability"][] | null;
|
|
14743
|
+
updated_at: string;
|
|
14744
|
+
user_id: string;
|
|
14745
|
+
};
|
|
14746
|
+
SetofOptions: {
|
|
14747
|
+
from: "*";
|
|
14748
|
+
to: "site_memberships";
|
|
14749
|
+
isOneToOne: true;
|
|
14750
|
+
isSetofReturn: false;
|
|
14751
|
+
};
|
|
14752
|
+
};
|
|
14045
14753
|
accept_site_invitation: {
|
|
14046
14754
|
Args: {
|
|
14047
14755
|
p_invitation_id: string;
|
|
@@ -14056,6 +14764,7 @@ export type Database = {
|
|
|
14056
14764
|
removed_at: string | null;
|
|
14057
14765
|
role: Database["public"]["Enums"]["site_role"];
|
|
14058
14766
|
site_id: string;
|
|
14767
|
+
staff_capabilities: Database["public"]["Enums"]["staff_operational_capability"][] | null;
|
|
14059
14768
|
updated_at: string;
|
|
14060
14769
|
user_id: string;
|
|
14061
14770
|
};
|
|
@@ -14066,6 +14775,23 @@ export type Database = {
|
|
|
14066
14775
|
isSetofReturn: false;
|
|
14067
14776
|
};
|
|
14068
14777
|
};
|
|
14778
|
+
acquire_demo_lifecycle_job_lease: {
|
|
14779
|
+
Args: {
|
|
14780
|
+
p_job_name: string;
|
|
14781
|
+
p_lease_token: string;
|
|
14782
|
+
p_locked_until: string;
|
|
14783
|
+
p_now: string;
|
|
14784
|
+
};
|
|
14785
|
+
Returns: {
|
|
14786
|
+
consecutive_failures: number;
|
|
14787
|
+
job_name: string;
|
|
14788
|
+
last_failed_at: string;
|
|
14789
|
+
last_started_at: string;
|
|
14790
|
+
last_succeeded_at: string;
|
|
14791
|
+
lease_token: string;
|
|
14792
|
+
locked_until: string;
|
|
14793
|
+
}[];
|
|
14794
|
+
};
|
|
14069
14795
|
adjust_product_inventory: {
|
|
14070
14796
|
Args: {
|
|
14071
14797
|
p_enforce_available?: boolean;
|
|
@@ -14397,6 +15123,32 @@ export type Database = {
|
|
|
14397
15123
|
enrollment_status: string;
|
|
14398
15124
|
}[];
|
|
14399
15125
|
};
|
|
15126
|
+
claim_next_available_demo_instance: {
|
|
15127
|
+
Args: {
|
|
15128
|
+
p_blueprint_id: string;
|
|
15129
|
+
p_claimant_email: string;
|
|
15130
|
+
p_claimant_user_id?: string;
|
|
15131
|
+
p_claimed_at: string;
|
|
15132
|
+
p_expires_at: string;
|
|
15133
|
+
};
|
|
15134
|
+
Returns: {
|
|
15135
|
+
claim_claimant_email: string;
|
|
15136
|
+
claim_claimant_user_id: string;
|
|
15137
|
+
claim_claimed_at: string;
|
|
15138
|
+
claim_expires_at: string;
|
|
15139
|
+
claim_id: string;
|
|
15140
|
+
claim_instance_id: string;
|
|
15141
|
+
claim_site_id: string;
|
|
15142
|
+
claim_status: string;
|
|
15143
|
+
instance_blueprint_id: string;
|
|
15144
|
+
instance_blueprint_version_id: string;
|
|
15145
|
+
instance_claimed_at: string;
|
|
15146
|
+
instance_expires_at: string;
|
|
15147
|
+
instance_id: string;
|
|
15148
|
+
instance_site_id: string;
|
|
15149
|
+
instance_status: string;
|
|
15150
|
+
}[];
|
|
15151
|
+
};
|
|
14400
15152
|
claim_participant_roster_assertion_jobs: {
|
|
14401
15153
|
Args: {
|
|
14402
15154
|
p_job_ids?: string[];
|
|
@@ -14418,6 +15170,27 @@ export type Database = {
|
|
|
14418
15170
|
target_kind: string;
|
|
14419
15171
|
}[];
|
|
14420
15172
|
};
|
|
15173
|
+
complete_demo_lifecycle_job_lease: {
|
|
15174
|
+
Args: {
|
|
15175
|
+
p_error_message?: string;
|
|
15176
|
+
p_finished_at: string;
|
|
15177
|
+
p_job_name: string;
|
|
15178
|
+
p_lease_token: string;
|
|
15179
|
+
p_status: string;
|
|
15180
|
+
p_summary: Json;
|
|
15181
|
+
};
|
|
15182
|
+
Returns: {
|
|
15183
|
+
consecutive_failures: number;
|
|
15184
|
+
job_name: string;
|
|
15185
|
+
last_error: string;
|
|
15186
|
+
last_failed_at: string;
|
|
15187
|
+
last_started_at: string;
|
|
15188
|
+
last_succeeded_at: string;
|
|
15189
|
+
last_summary: Json;
|
|
15190
|
+
lease_token: string;
|
|
15191
|
+
locked_until: string;
|
|
15192
|
+
}[];
|
|
15193
|
+
};
|
|
14421
15194
|
consume_booking_customer_credit_reservation: {
|
|
14422
15195
|
Args: {
|
|
14423
15196
|
p_booking_payment_id?: string;
|
|
@@ -14552,6 +15325,7 @@ export type Database = {
|
|
|
14552
15325
|
p_metadata?: Json;
|
|
14553
15326
|
p_role: string;
|
|
14554
15327
|
p_site_id: string;
|
|
15328
|
+
p_staff_capabilities?: Database["public"]["Enums"]["staff_operational_capability"][];
|
|
14555
15329
|
p_token_hash: string;
|
|
14556
15330
|
};
|
|
14557
15331
|
Returns: {
|
|
@@ -14567,6 +15341,7 @@ export type Database = {
|
|
|
14567
15341
|
revoked_at: string | null;
|
|
14568
15342
|
role: Database["public"]["Enums"]["site_role"];
|
|
14569
15343
|
site_id: string;
|
|
15344
|
+
staff_capabilities: Database["public"]["Enums"]["staff_operational_capability"][] | null;
|
|
14570
15345
|
token_hash: string;
|
|
14571
15346
|
updated_at: string;
|
|
14572
15347
|
};
|
|
@@ -14628,6 +15403,30 @@ export type Database = {
|
|
|
14628
15403
|
};
|
|
14629
15404
|
Returns: string;
|
|
14630
15405
|
};
|
|
15406
|
+
expire_demo_claim_atomic: {
|
|
15407
|
+
Args: {
|
|
15408
|
+
p_claim_id: string;
|
|
15409
|
+
p_expired_at: string;
|
|
15410
|
+
p_instance_id: string;
|
|
15411
|
+
};
|
|
15412
|
+
Returns: {
|
|
15413
|
+
claim_claimant_email: string;
|
|
15414
|
+
claim_claimant_user_id: string;
|
|
15415
|
+
claim_claimed_at: string;
|
|
15416
|
+
claim_expires_at: string;
|
|
15417
|
+
claim_id: string;
|
|
15418
|
+
claim_instance_id: string;
|
|
15419
|
+
claim_site_id: string;
|
|
15420
|
+
claim_status: string;
|
|
15421
|
+
instance_blueprint_id: string;
|
|
15422
|
+
instance_blueprint_version_id: string;
|
|
15423
|
+
instance_claimed_at: string;
|
|
15424
|
+
instance_expires_at: string;
|
|
15425
|
+
instance_id: string;
|
|
15426
|
+
instance_site_id: string;
|
|
15427
|
+
instance_status: string;
|
|
15428
|
+
}[];
|
|
15429
|
+
};
|
|
14631
15430
|
expire_overdue_passes: {
|
|
14632
15431
|
Args: {
|
|
14633
15432
|
p_site_id?: string;
|
|
@@ -14670,6 +15469,19 @@ export type Database = {
|
|
|
14670
15469
|
ticket_type_id: string;
|
|
14671
15470
|
}[];
|
|
14672
15471
|
};
|
|
15472
|
+
get_form_submission_stats: {
|
|
15473
|
+
Args: {
|
|
15474
|
+
p_form_ids: string[];
|
|
15475
|
+
p_recent_since: string;
|
|
15476
|
+
p_site_id: string;
|
|
15477
|
+
};
|
|
15478
|
+
Returns: {
|
|
15479
|
+
form_id: string;
|
|
15480
|
+
latest_submission_at: string;
|
|
15481
|
+
recent_count: number;
|
|
15482
|
+
total_count: number;
|
|
15483
|
+
}[];
|
|
15484
|
+
};
|
|
14673
15485
|
get_public_event_attendee_counts: {
|
|
14674
15486
|
Args: {
|
|
14675
15487
|
instance_ids: string[];
|
|
@@ -14702,6 +15514,14 @@ export type Database = {
|
|
|
14702
15514
|
};
|
|
14703
15515
|
Returns: boolean;
|
|
14704
15516
|
};
|
|
15517
|
+
has_staff_capability: {
|
|
15518
|
+
Args: {
|
|
15519
|
+
p_capability: Database["public"]["Enums"]["staff_operational_capability"];
|
|
15520
|
+
p_site_id: string;
|
|
15521
|
+
p_user_id?: string;
|
|
15522
|
+
};
|
|
15523
|
+
Returns: boolean;
|
|
15524
|
+
};
|
|
14705
15525
|
increment_webhook_failure_count: {
|
|
14706
15526
|
Args: {
|
|
14707
15527
|
endpoint_id: string;
|
|
@@ -15179,6 +15999,7 @@ export type Database = {
|
|
|
15179
15999
|
removed_at: string | null;
|
|
15180
16000
|
role: Database["public"]["Enums"]["site_role"];
|
|
15181
16001
|
site_id: string;
|
|
16002
|
+
staff_capabilities: Database["public"]["Enums"]["staff_operational_capability"][] | null;
|
|
15182
16003
|
updated_at: string;
|
|
15183
16004
|
user_id: string;
|
|
15184
16005
|
};
|
|
@@ -15294,6 +16115,10 @@ export type Database = {
|
|
|
15294
16115
|
Enums: {
|
|
15295
16116
|
admin_role: "viewer" | "editor" | "org_admin" | "superadmin";
|
|
15296
16117
|
api_key_type: "content" | "preview" | "management";
|
|
16118
|
+
billing_component_kind: "extra_site" | "managed_domain_overage";
|
|
16119
|
+
billing_component_registrar_attempt_status: "in_flight" | "provider_succeeded" | "provider_failed" | "provider_unknown" | "provider_succeeded_persist_failed";
|
|
16120
|
+
billing_component_source_entity_type: "site" | "site_domain";
|
|
16121
|
+
billing_component_status: "pending_acceptance" | "accepted" | "sync_failed" | "registrar_failed" | "registrar_succeeded_persist_failed" | "active" | "ending" | "ended" | "failed";
|
|
15297
16122
|
billing_interval: "monthly" | "annual";
|
|
15298
16123
|
cancellation_context_category: "customer_requested" | "schedule_conflict" | "duplicate_or_admin_error" | "non_payment" | "policy_or_eligibility" | "other" | "legacy_client_unspecified";
|
|
15299
16124
|
content_entry_status: "draft" | "scheduled" | "published" | "archived";
|
|
@@ -15311,6 +16136,7 @@ export type Database = {
|
|
|
15311
16136
|
site_deployment_mode: "managed" | "headless_cms" | "headless_full";
|
|
15312
16137
|
site_purpose: "GENERATE_LEADS" | "SHOWCASE_PORTFOLIO" | "SELL_PRODUCTS" | "SELL_TICKETS" | "EVENT_INFO" | "BLOGGING" | "COMMUNITY" | "OTHER";
|
|
15313
16138
|
site_role: "owner" | "administrator" | "editor" | "team_member" | "event_host";
|
|
16139
|
+
staff_operational_capability: "appointments" | "event_ops";
|
|
15314
16140
|
};
|
|
15315
16141
|
CompositeTypes: {
|
|
15316
16142
|
[_ in never]: never;
|
|
@@ -16024,6 +16850,10 @@ export declare const Constants: {
|
|
|
16024
16850
|
readonly Enums: {
|
|
16025
16851
|
readonly admin_role: readonly ["viewer", "editor", "org_admin", "superadmin"];
|
|
16026
16852
|
readonly api_key_type: readonly ["content", "preview", "management"];
|
|
16853
|
+
readonly billing_component_kind: readonly ["extra_site", "managed_domain_overage"];
|
|
16854
|
+
readonly billing_component_registrar_attempt_status: readonly ["in_flight", "provider_succeeded", "provider_failed", "provider_unknown", "provider_succeeded_persist_failed"];
|
|
16855
|
+
readonly billing_component_source_entity_type: readonly ["site", "site_domain"];
|
|
16856
|
+
readonly billing_component_status: readonly ["pending_acceptance", "accepted", "sync_failed", "registrar_failed", "registrar_succeeded_persist_failed", "active", "ending", "ended", "failed"];
|
|
16027
16857
|
readonly billing_interval: readonly ["monthly", "annual"];
|
|
16028
16858
|
readonly cancellation_context_category: readonly ["customer_requested", "schedule_conflict", "duplicate_or_admin_error", "non_payment", "policy_or_eligibility", "other", "legacy_client_unspecified"];
|
|
16029
16859
|
readonly content_entry_status: readonly ["draft", "scheduled", "published", "archived"];
|
|
@@ -16041,6 +16871,7 @@ export declare const Constants: {
|
|
|
16041
16871
|
readonly site_deployment_mode: readonly ["managed", "headless_cms", "headless_full"];
|
|
16042
16872
|
readonly site_purpose: readonly ["GENERATE_LEADS", "SHOWCASE_PORTFOLIO", "SELL_PRODUCTS", "SELL_TICKETS", "EVENT_INFO", "BLOGGING", "COMMUNITY", "OTHER"];
|
|
16043
16873
|
readonly site_role: readonly ["owner", "administrator", "editor", "team_member", "event_host"];
|
|
16874
|
+
readonly staff_operational_capability: readonly ["appointments", "event_ops"];
|
|
16044
16875
|
};
|
|
16045
16876
|
};
|
|
16046
16877
|
readonly storage: {
|