@rockrms/obsidian-framework 17.6.1 → 18.2.4
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/package.json +1 -1
- package/types/Controls/Grid/Columns/booleanColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/buttonColumn.partial.d.ts +25 -0
- package/types/Controls/Grid/Columns/column.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/copyColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/currencyColumn.partial.d.ts +36 -9
- package/types/Controls/Grid/Columns/dateColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/dateTimeColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/deleteColumn.partial.d.ts +29 -0
- package/types/Controls/Grid/Columns/editColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/highlightDetailColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/htmlColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/labelColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/numberBadgeColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/numberColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/personColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/reorderColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/rockFieldColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/securityColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/Columns/selectColumn.partial.d.ts +80 -0
- package/types/Controls/Grid/Columns/textColumn.partial.d.ts +17 -0
- package/types/Controls/Grid/grid.partial.obs.d.ts +43 -1
- package/types/Controls/Grid/virtualDataRows.partial.obs.d.ts +8 -0
- package/types/Controls/Internal/AI/Skills/groupManagerSkill.obs.d.ts +32 -0
- package/types/Controls/Internal/AI/Skills/prayerSkill.obs.d.ts +32 -0
- package/types/Controls/Internal/AI/Skills/skillConfiguration.obs.d.ts +32 -0
- package/types/Controls/Internal/Automation/Events/launchWorkflow.obs.d.ts +40 -0
- package/types/Controls/Internal/Automation/Events/lavaEvent.obs.d.ts +40 -0
- package/types/Controls/Internal/Automation/Events/logMessage.obs.d.ts +40 -0
- package/types/Controls/Internal/Automation/Events/sendFallbackChatNotification.obs.d.ts +41 -0
- package/types/Controls/Internal/Automation/Triggers/ChatMessage/criteria.partial.obs.d.ts +37 -0
- package/types/Controls/Internal/Automation/Triggers/ChatMessage/editRule.partial.obs.d.ts +38 -0
- package/types/Controls/Internal/Automation/Triggers/EntityChange/editSimpleRule.partial.obs.d.ts +38 -0
- package/types/Controls/Internal/Automation/Triggers/EntityChange/simpleCriteria.partial.obs.d.ts +37 -0
- package/types/Controls/Internal/Automation/Triggers/chatMessage.obs.d.ts +32 -0
- package/types/Controls/Internal/Automation/Triggers/entityChange.obs.d.ts +32 -0
- package/types/Controls/Internal/Automation/automationEventHeader.obs.d.ts +54 -0
- package/types/Controls/Internal/CommunicationRecipientActivity/types.partial.d.ts +12 -0
- package/types/Controls/Internal/DevicePreview/utils.partial.d.ts +4 -0
- package/types/Controls/Internal/EmailEditor/api.d.ts +2 -0
- package/types/Controls/Internal/EmailEditor/borderPicker.partial.obs.d.ts +39 -0
- package/types/Controls/Internal/EmailEditor/borderStylePicker.partial.obs.d.ts +37 -0
- package/types/Controls/Internal/EmailEditor/buttonWidthPicker.partial.obs.d.ts +28 -0
- package/types/Controls/Internal/EmailEditor/componentPropertyPanel.partial.obs.d.ts +26 -0
- package/types/Controls/Internal/EmailEditor/contentToggle.partial.obs.d.ts +38 -0
- package/types/Controls/Internal/EmailEditor/emailDesigner.partial.obs.d.ts +17 -3
- package/types/Controls/Internal/EmailEditor/emailEditor.partial.obs.d.ts +11 -18
- package/types/Controls/Internal/EmailEditor/emailIFrame.partial.obs.d.ts +17 -3
- package/types/Controls/Internal/EmailEditor/fontFamilyPicker.partial.obs.d.ts +17 -0
- package/types/Controls/Internal/EmailEditor/hrefPicker.partial.obs.d.ts +26 -0
- package/types/Controls/Internal/EmailEditor/letterCasePicker.partial.obs.d.ts +76 -0
- package/types/Controls/Internal/EmailEditor/lineHeightPicker2.partial.obs.d.ts +75 -0
- package/types/Controls/Internal/EmailEditor/percentRangeSlider.partial.obs.d.ts +55 -0
- package/types/Controls/Internal/EmailEditor/pixelBox.partial.obs.d.ts +75 -0
- package/types/Controls/Internal/EmailEditor/properties/buttonWidthProperty.partial.obs.d.ts +3 -3
- package/types/Controls/Internal/EmailEditor/properties/colorPickerProperty.partial.obs.d.ts +3 -3
- package/types/Controls/Internal/EmailEditor/properties/communicationTemplateProperty.partial.obs.d.ts +8 -0
- package/types/Controls/Internal/EmailEditor/propertyPanels/adaptiveMessageComponentPropertyPanel.partial.obs.d.ts +11 -1
- package/types/Controls/Internal/EmailEditor/propertyPanels/buttonComponentPropertyPanel.partial.obs.d.ts +26 -0
- package/types/Controls/Internal/EmailEditor/propertyPanels/codeComponentPropertyPanel.partial.obs.d.ts +11 -3
- package/types/Controls/Internal/EmailEditor/propertyPanels/componentPropertyPanelBase.partial.obs.d.ts +9 -0
- package/types/Controls/Internal/EmailEditor/propertyPanels/dividerComponentPropertyPanel.partial.obs.d.ts +20 -1
- package/types/Controls/Internal/EmailEditor/propertyPanels/globalPropertyPanel.partial.obs.d.ts +36 -21
- package/types/Controls/Internal/EmailEditor/propertyPanels/imageComponentPropertyPanel.partial.obs.d.ts +11 -1
- package/types/Controls/Internal/EmailEditor/propertyPanels/rowComponentPropertyPanel.partial.obs.d.ts +11 -1
- package/types/Controls/Internal/EmailEditor/propertyPanels/rsvpComponentPropertyPanel.partial.obs.d.ts +11 -1
- package/types/Controls/Internal/EmailEditor/propertyPanels/sectionComponentPropertyPanel.partial.obs.d.ts +9 -0
- package/types/Controls/Internal/EmailEditor/propertyPanels/textComponentPropertyPanel.partial.obs.d.ts +9 -0
- package/types/Controls/Internal/EmailEditor/propertyPanels/titleComponentPropertyPanel.partial.obs.d.ts +11 -1
- package/types/Controls/Internal/EmailEditor/propertyPanels/videoComponentPropertyPanel.partial.obs.d.ts +11 -1
- package/types/Controls/Internal/EmailEditor/providers.partial.d.ts +3 -21
- package/types/Controls/Internal/EmailEditor/shorthandBorderStylePicker.partial.obs.d.ts +37 -0
- package/types/Controls/Internal/EmailEditor/shorthandColorPicker.partial.obs.d.ts +82 -0
- package/types/Controls/Internal/EmailEditor/shorthandDropDownList.partial.obs.d.ts +91 -0
- package/types/Controls/Internal/EmailEditor/shorthandPixelBox.partial.obs.d.ts +82 -0
- package/types/Controls/Internal/EmailEditor/sidePanel.partial.obs.d.ts +37 -16
- package/types/Controls/Internal/EmailEditor/textAlignmentPicker.partial.obs.d.ts +76 -0
- package/types/Controls/Internal/EmailEditor/textFormatPicker2.partial.obs.d.ts +104 -0
- package/types/Controls/Internal/EmailEditor/types.partial.d.ts +507 -5
- package/types/Controls/Internal/EmailEditor/utils.partial.d.ts +73 -122
- package/types/Controls/Internal/LearningActivity/assessmentItemSection.obs.d.ts +5 -4
- package/types/Controls/Internal/LearningActivity/contentArticleItemNote.obs.d.ts +39 -0
- package/types/Controls/Internal/LearningActivity/contentArticleItemText.obs.d.ts +39 -0
- package/types/Controls/Internal/LearningActivity/contentArticleItemVideo.obs.d.ts +39 -0
- package/types/Controls/Internal/LearningActivity/contentArticleLearningActivity.obs.d.ts +53 -0
- package/types/Controls/Internal/LearningActivity/contentArticleLearningActivity.partial.d.ts +22 -0
- package/types/Controls/Internal/MobilePreview/mobileBackground.partial.obs.d.ts +2 -0
- package/types/Controls/Internal/MobilePreview/mobilePreview.partial.obs.d.ts +9 -0
- package/types/Controls/Internal/MobilePreview/types.partial.d.ts +6 -0
- package/types/Controls/Internal/SankeyDiagram/sankeyDiagram.obs.d.ts +9 -2
- package/types/Controls/Internal/communicationRecipientActivity.obs.d.ts +31 -0
- package/types/Controls/Internal/contentSectionNav.obs.d.ts +14 -0
- package/types/Controls/Internal/devicePreview.obs.d.ts +31 -0
- package/types/Controls/Internal/emailPreview.obs.d.ts +23 -0
- package/types/Controls/Internal/pageDebugTimingRow.obs.d.ts +0 -8
- package/types/Controls/Internal/pushNotificationMobilePreview.obs.d.ts +31 -0
- package/types/Controls/Internal/smsMobilePreview.obs.d.ts +40 -0
- package/types/Controls/Internal/universalItemSearchPicker.obs.d.ts +8 -0
- package/types/Controls/addressControl.obs.d.ts +2 -2
- package/types/Controls/barChart.obs.d.ts +464 -0
- package/types/Controls/binaryFilePicker.obs.d.ts +0 -6
- package/types/Controls/blockTemplatePicker.obs.d.ts +4 -4
- package/types/Controls/buttonDropDownList.obs.d.ts +10 -10
- package/types/Controls/campusContextPicker.obs.d.ts +76 -0
- package/types/Controls/campusPicker.obs.d.ts +10 -2
- package/types/Controls/chart.obs.d.ts +43 -7
- package/types/Controls/checkBox.obs.d.ts +3 -9
- package/types/Controls/codeEditor.obs.d.ts +12 -3
- package/types/Controls/componentPicker.obs.d.ts +9 -0
- package/types/Controls/contentChannelItemPicker.obs.d.ts +2 -8
- package/types/Controls/contentDropDownPicker.obs.d.ts +19 -6
- package/types/Controls/contentSection.obs.d.ts +115 -0
- package/types/Controls/contentSectionContainer.obs.d.ts +47 -0
- package/types/Controls/contentStack.obs.d.ts +63 -0
- package/types/Controls/contextSlicer.obs.d.ts +66 -0
- package/types/Controls/copyButton.obs.d.ts +22 -2
- package/types/Controls/datePicker.obs.d.ts +2 -0
- package/types/Controls/displayCard.obs.d.ts +127 -0
- package/types/Controls/displayCardAddButton.obs.d.ts +24 -0
- package/types/Controls/displayCardContainer.obs.d.ts +23 -0
- package/types/Controls/doughnutChart.obs.d.ts +364 -0
- package/types/Controls/dropDownContent.obs.d.ts +9 -0
- package/types/Controls/dynamicComponent.obs.d.ts +70 -0
- package/types/Controls/enhancedProgressBar.obs.d.ts +117 -0
- package/types/Controls/entityTypePicker.obs.d.ts +4 -38
- package/types/Controls/ethnicityPicker.obs.d.ts +6 -8
- package/types/Controls/eventCalendarPicker.obs.d.ts +8 -0
- package/types/Controls/expanderPanel.obs.d.ts +1 -1
- package/types/Controls/fieldFilterContainer.obs.d.ts +7 -0
- package/types/Controls/fieldFilterRuleRow.obs.d.ts +48 -0
- package/types/Controls/fieldTypePicker.obs.d.ts +16 -0
- package/types/Controls/fileUploader.obs.d.ts +27 -0
- package/types/Controls/financialStatementTemplatePicker.obs.d.ts +16 -0
- package/types/Controls/firstNameTextBox.obs.d.ts +0 -2
- package/types/Controls/geoPicker.obs.d.ts +6 -2
- package/types/Controls/gradePicker.obs.d.ts +0 -6
- package/types/Controls/groupAndRolePicker.obs.d.ts +2 -10
- package/types/Controls/groupRolePicker.obs.d.ts +2 -2
- package/types/Controls/groupTypeGroupPicker.obs.d.ts +0 -6
- package/types/Controls/groupTypePicker.obs.d.ts +6 -4
- package/types/Controls/hint.obs.d.ts +16 -0
- package/types/Controls/htmlEditor.obs.d.ts +25 -0
- package/types/Controls/iconPicker.obs.d.ts +91 -0
- package/types/Controls/imageEditor.obs.d.ts +1 -1
- package/types/Controls/inlineCheckBox.obs.d.ts +11 -1
- package/types/Controls/interactionChannelPicker.obs.d.ts +8 -0
- package/types/Controls/kpi.obs.d.ts +12 -5
- package/types/Controls/lavaCommandPicker.obs.d.ts +20 -2
- package/types/Controls/learningClassActivityPicker.obs.d.ts +147 -0
- package/types/Controls/learningClassPicker.obs.d.ts +147 -0
- package/types/Controls/lineChart.obs.d.ts +378 -0
- package/types/Controls/locationAddressPicker.obs.d.ts +2 -6
- package/types/Controls/mediaElementPicker.obs.d.ts +4 -4
- package/types/Controls/modal.obs.d.ts +33 -1
- package/types/Controls/numberBox.obs.d.ts +11 -0
- package/types/Controls/panel.obs.d.ts +94 -6
- package/types/Controls/phoneNumberBox.obs.d.ts +23 -6
- package/types/Controls/pieChart.obs.d.ts +364 -0
- package/types/Controls/progressBar.obs.d.ts +9 -0
- package/types/Controls/racePicker.obs.d.ts +8 -8
- package/types/Controls/registrationInstanceBasePicker.obs.d.ts +4 -10
- package/types/Controls/registrationInstancePicker.obs.d.ts +21 -0
- package/types/Controls/reminderTypePicker.obs.d.ts +8 -6
- package/types/Controls/remoteAuthsPicker.obs.d.ts +16 -0
- package/types/Controls/rockAttributeFilter.obs.d.ts +3 -3
- package/types/Controls/rockFormField.obs.d.ts +10 -10
- package/types/Controls/scheduleBuilder.obs.d.ts +11 -0
- package/types/Controls/slidingDateRangePicker.obs.d.ts +12 -3
- package/types/Controls/stepProgramPicker.obs.d.ts +8 -0
- package/types/Controls/stepProgramStepTypePicker.obs.d.ts +21 -0
- package/types/Controls/stepStatusPicker.obs.d.ts +0 -6
- package/types/Controls/streakTypePicker.obs.d.ts +16 -0
- package/types/Controls/tabbedContent.obs.d.ts +1 -1
- package/types/Controls/textBox.obs.d.ts +9 -0
- package/types/Controls/wordCloud.obs.d.ts +1 -1
- package/types/Controls/workflowBasePicker.obs.d.ts +0 -6
- package/types/Core/Controls/chart.d.ts +221 -0
- package/types/Core/Controls/contentSection.d.ts +62 -0
- package/types/Core/Core/Automation/component.d.ts +15 -0
- package/types/Core/Reporting/comparisonType.d.ts +1 -1
- package/types/Core/Utilities/contextEntity.d.ts +54 -0
- package/types/{Controls/Grid/virtualScroller.partial.d.ts → Core/Utilities/virtualScroll.d.ts} +48 -1
- package/types/Directives/dragDrop.d.ts +1 -1
- package/types/Enums/AI/Agent/agentType.d.ts +14 -0
- package/types/Enums/AI/Agent/audienceType.d.ts +23 -0
- package/types/Enums/AI/Agent/authorRole.d.ts +25 -0
- package/types/Enums/AI/Agent/modelServiceRole.d.ts +22 -0
- package/types/Enums/AI/Agent/parameterSchemaDataType.d.ts +26 -0
- package/types/Enums/AI/Agent/toolStatus.d.ts +13 -0
- package/types/Enums/AI/Agent/toolType.d.ts +13 -0
- package/types/Enums/Blocks/Communication/CommunicationDetail/pushOpenAction.d.ts +15 -0
- package/types/Enums/Blocks/Communication/CommunicationFlowDetail/pushOpenAction.d.ts +15 -0
- package/types/Enums/Blocks/Communication/EmailPreferenceEntry/communicationChannelType.d.ts +11 -0
- package/types/Enums/CheckIn/adultsOrChildrenSelectionMode.d.ts +27 -0
- package/types/Enums/Cms/Personalization/PersonalizationRequestFilters/browserFamily.d.ts +24 -0
- package/types/Enums/Cms/Personalization/PersonalizationRequestFilters/deviceType.d.ts +13 -0
- package/types/Enums/Cms/Personalization/PersonalizationRequestFilters/geolocationLocationComponent.d.ts +14 -0
- package/types/Enums/Cms/Personalization/PersonalizationRequestFilters/previousActivityType.d.ts +11 -0
- package/types/Enums/Cms/blockRole.d.ts +51 -0
- package/types/Enums/Cms/lavaEndpointHttpMethod.d.ts +15 -0
- package/types/Enums/Cms/lavaEndpointSecurityMode.d.ts +15 -0
- package/types/Enums/Communication/Chat/chatMessageEventType.d.ts +11 -0
- package/types/Enums/Communication/Chat/chatViewStyle.d.ts +20 -0
- package/types/Enums/Communication/communicationFlowInstanceRecipientInactiveReason.d.ts +23 -0
- package/types/Enums/Communication/communicationFlowInstanceRecipientStatus.d.ts +11 -0
- package/types/Enums/Communication/communicationFlowInstanceRecipientUnsubscribeScope.d.ts +11 -0
- package/types/Enums/Communication/communicationFlowTriggerType.d.ts +13 -0
- package/types/Enums/Communication/communicationInteractionOperation.d.ts +11 -0
- package/types/Enums/Communication/communicationRecipientActivity.d.ts +25 -0
- package/types/Enums/Communication/communicationTemplateUsageType.d.ts +9 -0
- package/types/Enums/Communication/conversionGoalType.d.ts +19 -0
- package/types/Enums/Communication/exitConditionType.d.ts +15 -0
- package/types/Enums/Communication/inferredCommunicationStatus.d.ts +24 -0
- package/types/Enums/Communication/unsubscribeLevel.d.ts +2 -2
- package/types/Enums/Controls/hintType.d.ts +8 -0
- package/types/Enums/Core/Automation/Triggers/chatMessageCriteriaRuleType.d.ts +15 -0
- package/types/Enums/Core/Automation/Triggers/entityChangeModificationType.d.ts +13 -0
- package/types/Enums/Core/Automation/Triggers/entityChangeSimpleChangeType.d.ts +40 -0
- package/types/Enums/Engagement/completionFlow.d.ts +13 -0
- package/types/Enums/Engagement/engagementType.d.ts +13 -0
- package/types/Enums/Engagement/stepChartMeasure.d.ts +23 -0
- package/types/Enums/Engagement/stepProgramView.d.ts +17 -0
- package/types/Enums/Geography/travelMode.d.ts +13 -0
- package/types/Enums/Group/appliesToPlacementConfiguration.d.ts +13 -0
- package/types/Enums/Group/placementMode.d.ts +15 -0
- package/types/FieldTypes/backgroundCheckField.partial.d.ts +14 -1
- package/types/FieldTypes/badgesField.partial.d.ts +3 -0
- package/types/FieldTypes/badgesFieldComponents.d.ts +30 -0
- package/types/FieldTypes/binaryFileField.partial.d.ts +2 -1
- package/types/FieldTypes/binaryFileFieldComponents.d.ts +19 -9
- package/types/FieldTypes/blockTemplateFieldComponents.d.ts +1 -1
- package/types/FieldTypes/colorSelectorComponents.d.ts +17 -3
- package/types/FieldTypes/communicationFlowField.partial.d.ts +13 -0
- package/types/FieldTypes/communicationFlowFieldComponents.d.ts +61 -0
- package/types/FieldTypes/connectionActivityTypeFieldComponents.d.ts +2 -2
- package/types/FieldTypes/contentChannelItemFieldComponents.d.ts +1 -1
- package/types/FieldTypes/groupTypeGroupField.partial.d.ts +1 -1
- package/types/FieldTypes/universalItemSearchPickerFieldComponents.d.ts +2 -0
- package/types/FieldTypes/urlLinkFieldComponents.d.ts +10 -11
- package/types/FieldTypes/utils.d.ts +1 -1
- package/types/PageState/index.d.ts +1 -0
- package/types/PageState/state.d.ts +0 -1
- package/types/SystemGuids/blockType.d.ts +6 -0
- package/types/SystemGuids/category.d.ts +4 -0
- package/types/SystemGuids/definedType.d.ts +8 -0
- package/types/SystemGuids/definedValue.d.ts +58 -0
- package/types/SystemGuids/entityType.d.ts +38 -2
- package/types/SystemGuids/fieldType.d.ts +4 -0
- package/types/SystemGuids/group.d.ts +2 -0
- package/types/SystemGuids/page.d.ts +13 -0
- package/types/SystemGuids/pageRoute.d.ts +2 -0
- package/types/SystemGuids/serviceJob.d.ts +31 -1
- package/types/SystemGuids/stepProgram.d.ts +5 -0
- package/types/SystemGuids/stepStatus.d.ts +7 -0
- package/types/SystemGuids/stepType.d.ts +11 -0
- package/types/Templates/detailBlock.d.ts +21 -0
- package/types/Templates/rockPage.d.ts +7 -3
- package/types/Types/Controls/dropDownMenu.d.ts +1 -1
- package/types/Types/Controls/grid.d.ts +45 -0
- package/types/Types/Utility/block.d.ts +3 -0
- package/types/Types/Utility/browserBus.d.ts +11 -0
- package/types/Types/Utility/http.d.ts +3 -0
- package/types/Utility/block.d.ts +90 -10
- package/types/Utility/browserBus.d.ts +4 -0
- package/types/Utility/chartUtils.d.ts +139 -0
- package/types/Utility/component.d.ts +28 -14
- package/types/Utility/cssUtils.d.ts +13 -0
- package/types/Utility/dom.d.ts +10 -0
- package/types/Utility/http.d.ts +11 -0
- package/types/Utility/jsonUtils.d.ts +8 -0
- package/types/Utility/lava.d.ts +2 -0
- package/types/Utility/linq.d.ts +323 -67
- package/types/Utility/objectUtils.d.ts +20 -0
- package/types/Utility/rockDateTime.d.ts +19 -1
- package/types/Utility/rockTimeSpan.d.ts +30 -0
- package/types/Utility/stringUtils.d.ts +14 -0
- package/types/Utility/tooltip.d.ts +14 -1
- package/types/Utility/treeItemProviders.d.ts +1 -1
- package/types/Utility/util.d.ts +4 -0
- package/types/ViewModels/Blocks/AI/AIAgentDetail/agentSkillBag.d.ts +51 -0
- package/types/ViewModels/Blocks/AI/AIAgentDetail/aiAgentBag.d.ts +108 -0
- package/types/ViewModels/Blocks/AI/AIAgentDetail/aiAgentDetailOptionsBag.d.ts +36 -0
- package/types/ViewModels/Blocks/AI/AIAgentDetail/editSkillResponseBag.d.ts +41 -0
- package/types/ViewModels/Blocks/AI/AIAgentDetail/getComponentDefinitionResponseBag.d.ts +44 -0
- package/types/ViewModels/Blocks/AI/AIAgentList/aiAgentListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/AI/AIProviderDetail/aiProviderBag.d.ts +55 -0
- package/types/ViewModels/Blocks/AI/AIProviderDetail/aiProviderDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/AI/AIProviderList/aiProviderListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/AI/AISettings/aiSettingsBag.d.ts +28 -0
- package/types/ViewModels/Blocks/AI/AISettings/aiSettingsOptionsBag.d.ts +33 -0
- package/types/ViewModels/Blocks/AI/AISkillDetail/aiSkillBag.d.ts +63 -0
- package/types/ViewModels/Blocks/AI/AISkillDetail/aiSkillDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/AI/AISkillList/aiSkillListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/AI/AISkillToolList/aiSkillToolBag.d.ts +88 -0
- package/types/ViewModels/Blocks/AI/AISkillToolList/aiSkillToolListOptionsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/AI/AISkillToolList/parameterSchemaBag.d.ts +57 -0
- package/types/ViewModels/Blocks/Administration/ExternalApplicationList/externalApplicationListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Administration/PageProperties/pagePropertiesBag.d.ts +4 -0
- package/types/ViewModels/Blocks/Administration/PageProperties/pagePropertiesOptionsBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Administration/SystemConfiguration/generalConfigurationBag.d.ts +12 -0
- package/types/ViewModels/Blocks/Administration/SystemConfiguration/systemConfigurationInitializationBox.d.ts +3 -0
- package/types/ViewModels/Blocks/BulkImport/bulkImportToolBox.d.ts +33 -0
- package/types/ViewModels/Blocks/BulkImport/bulkImportToolOptionsBag.d.ts +28 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/addIndividualOptionsBag.d.ts +40 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/editFamilyResponseBag.d.ts +31 -0
- package/types/ViewModels/Blocks/CheckIn/CheckInKiosk/webKioskBag.d.ts +7 -0
- package/types/ViewModels/Blocks/CheckIn/Config/CheckinTypeDetail/checkInRegistrationSettingsBag.d.ts +3 -0
- package/types/ViewModels/Blocks/CheckIn/Configuration/CheckInLabelDetail/checkInLabelDetailOptionsBag.d.ts +4 -0
- package/types/ViewModels/Blocks/CheckIn/Configuration/LabelDesigner/labelDesignerOptionsBag.d.ts +7 -0
- package/types/ViewModels/Blocks/Cms/AssetManager/assetManagerOptionsBag.d.ts +2 -2
- package/types/ViewModels/Blocks/Cms/EmailForm/emailFormBag.d.ts +52 -0
- package/types/ViewModels/Blocks/Cms/EmailForm/emailFormRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Cms/EmailForm/emailFormResponseBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Cms/LavaApplicationDetail/lavaApplicationBag.d.ts +50 -0
- package/types/ViewModels/Blocks/Cms/LavaApplicationDetail/lavaApplicationDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Cms/LavaApplicationList/lavaApplicationListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Cms/LavaEndpointDetail/lavaEndpointBag.d.ts +75 -0
- package/types/ViewModels/Blocks/Cms/LavaEndpointDetail/lavaEndpointDetailOptionsBag.d.ts +32 -0
- package/types/ViewModels/Blocks/Cms/LavaEndpointList/lavaEndpointListOptionsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Cms/LogSettings/logSettingsBag.d.ts +0 -6
- package/types/ViewModels/Blocks/Cms/MediaFolderDetail/mediaFolderBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Cms/PageShortLinkDetail/pageShortLinkBag.d.ts +6 -3
- package/types/ViewModels/Blocks/Cms/PageShortLinkDetail/pageShortLinkDetailOptionsBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Cms/PageShortLinkList/pageShortLinkListOptionsBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/additionalFilterConfigurationBag.d.ts +64 -0
- package/types/ViewModels/Blocks/{Communication/EmailPreferenceEntry/emailPreferenceEntrySaveRequestBag.d.ts → Cms/RequestFilterDetail/browserRequestFilterBag.d.ts} +11 -14
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/cookieRequestFilterBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/deviceTypeRequestFilterBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/environmentRequestFilterBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/geolocationRequestFilterBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/ipAddressRequestFilterBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/previousActivityRequestFilterBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/queryStringRequestFilterBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/requestFilterBag.d.ts +56 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/requestFilterDetailOptionsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterDetail/timePickerValueBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Cms/RequestFilterList/requestFilterListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Cms/ThemeDetail/themeFieldBag.d.ts +3 -3
- package/types/ViewModels/Blocks/Communication/Chat/ChatConfiguration/chatConfigurationBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Communication/Chat/ChatView/chatPersonDataBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Communication/Chat/ChatView/chatReactionBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Communication/Chat/ChatView/chatViewConfigurationBag.d.ts +9 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationActionResponseBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationActivityFlowBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationAnalyticsRequestBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationAnalyticsResponseBag.d.ts +67 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationDeliveryBreakdownBag.d.ts +60 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationDetailBag.d.ts +59 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationDetailInitializationBox.d.ts +61 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationDetailPermissionsBag.d.ts +46 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationKpisBag.d.ts +61 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationLinkAnalyticsBag.d.ts +46 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationMessagePreviewBag.d.ts +91 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationRecipientGridDataBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationRecipientGridOptionsBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationRecipientGridSettingsBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/communicationRedirectBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Communication/CommunicationDetail/createPersonalTemplateRequestBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardCommunicationBag.d.ts +2 -2
- package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/{communicationEntryWizardGetEmailPreviewHtmlBag.d.ts → communicationEntryWizardGetPreviewBag.d.ts} +11 -4
- package/types/ViewModels/Blocks/Communication/CommunicationEntryWizard/communicationEntryWizardInitializationBox.d.ts +3 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/checkShortLinkTokenBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowBag.d.ts +84 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowCommunicationBag.d.ts +47 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailCommunicationTemplateBag.d.ts +97 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailCompletedFormSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailConversionGoalSettingsBag.d.ts +50 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailEnteredDataViewSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailInitializationBox.d.ts +68 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailJoinedGroupSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailJoinedGroupTypeSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailRegisteredSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowDetail/communicationFlowDetailTookStepSettingsBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowInstanceMessageMetrics/communicationFlowCommunicationBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowInstanceMessageMetrics/communicationFlowInstanceBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowInstanceMessageMetrics/communicationFlowInstanceCommunicationBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowInstanceMessageMetrics/initializationBox.d.ts +43 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowInstanceMessageMetrics/recipientMetricsBag.d.ts +51 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowList/communicationFlowListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/communicationFlowInstanceBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/completedFormSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/conversionGoalSettingsBag.d.ts +50 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/enteredDataViewSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/gridRowBag.d.ts +60 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/initializationBox.d.ts +46 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/joinedGroupSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/joinedGroupTypeSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/messageBag.d.ts +70 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/performanceBag.d.ts +64 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/registeredSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationFlowPerformance/tookStepSettingsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/CommunicationList/communicationListOptionsBag.d.ts +14 -8
- package/types/ViewModels/Blocks/Communication/CommunicationSaturationReport/communicationSaturationReportBlockBox.d.ts +48 -0
- package/types/ViewModels/Blocks/Communication/CommunicationSaturationReport/communicationSaturationReportBlockDataBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Communication/CommunicationSaturationReport/communicationSaturationReportChartDataBag.d.ts +38 -0
- package/types/ViewModels/Blocks/Communication/CommunicationSaturationReport/communicationSaturationReportFiltersBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/communicationChannelBag.d.ts +46 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/deactivateRecordRequestBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/deactivateRecordResponseBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/emailPreferenceEntryInitializationBox.d.ts +93 -37
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/manageChannelSubscriptionRequestBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/manageEmailSubscriptionRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/updateCommunicationPreferenceRequestBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/updateContactInfoRequestBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/updateEmailPreferenceRequestBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Communication/SystemPhoneNumberDetail/systemPhoneNumberBag.d.ts +9 -0
- package/types/ViewModels/Blocks/Core/AutomationTriggerDetail/automationEventBag.d.ts +74 -0
- package/types/ViewModels/Blocks/Core/AutomationTriggerDetail/automationTriggerBag.d.ts +90 -0
- package/types/ViewModels/Blocks/Core/AutomationTriggerDetail/automationTriggerDetailOptionsBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Core/AutomationTriggerDetail/getComponentDefinitionResponseBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Core/AutomationTriggerList/automationTriggerListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Core/CampusDetail/campusBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Core/CampusList/campusListOptionsBag.d.ts +2 -0
- package/types/ViewModels/Blocks/Core/DefinedTypeList/definedTypeListOptionsBag.d.ts +0 -2
- package/types/ViewModels/Blocks/Core/ServiceJobDetail/serviceJobDetailOptionsBag.d.ts +2 -1
- package/types/ViewModels/Blocks/Core/ServiceJobDetail/serviceJobOptionsBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Crm/PersonDuplicateDetail/personDuplicateDetailOptionsBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegisterInitializationBox.d.ts +3 -0
- package/types/ViewModels/Blocks/Engagement/StepProgramDetail/chartDataBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Engagement/StepProgramDetail/seriesBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepProgramBag.d.ts +25 -3
- package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepProgramDetailOptionsBag.d.ts +6 -0
- package/types/ViewModels/Blocks/Engagement/StepProgramDetail/stepStatusBag.d.ts +4 -4
- package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepProgramBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepStatusBag.d.ts +32 -0
- package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepTypeBag.d.ts +34 -8
- package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepTypeDetailOptionsBag.d.ts +12 -1
- package/types/ViewModels/Blocks/{Communication/EmailPreferenceEntry/emailPreferenceEntrySaveResponseBag.d.ts → Engagement/StepTypeDetail/stepTypeDetailsBag.d.ts} +4 -7
- package/types/ViewModels/Blocks/Engagement/StepTypeDetail/stepTypeTransferBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Engagement/Steps/flowNodeDiagramEdgeBag.d.ts +43 -0
- package/types/ViewModels/Blocks/Engagement/Steps/flowNodeDiagramNodeBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Engagement/Steps/flowNodeDiagramSettingsBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Engagement/Steps/stepFlowGetDataBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Event/RegistrationEntry/persistSessionResponseBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Event/RegistrationInstanceList/registrationInstanceListOptionsBag.d.ts +6 -6
- package/types/ViewModels/Blocks/Group/GroupPlacement/addGroupBag.d.ts +64 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/addGroupMembersBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/attributeDataBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/attributeFiltersBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/destinationGroupTypeRoleBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/detachGroupBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/groupMemberBag.d.ts +52 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/groupPlacementInitializationBox.d.ts +75 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/groupPlacementKeysBag.d.ts +57 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/personBag.d.ts +62 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/personFiltersBag.d.ts +56 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/placementBag.d.ts +29 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/placementConfigurationSettingOptionsBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/placementConfigurationSettingsBag.d.ts +70 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/placementGroupBag.d.ts +65 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/placementGroupTypeBag.d.ts +35 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/placementPeopleBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/realTimeConnectionKeysBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/registrantBag.d.ts +49 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/sourceAndDestinationEntityAttributesBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/GroupPlacement/sourceAndDestinationEntityKeysBag.d.ts +45 -0
- package/types/ViewModels/Blocks/Group/GroupRegistration/groupRegistrationBlockBox.d.ts +3 -0
- package/types/ViewModels/Blocks/Lms/LearningActivityComponent/learningActivityParticipantBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Lms/LearningClassDetail/learningClassFacilitatorBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Lms/LearningProgramDetail/learningProgramBag.d.ts +3 -0
- package/types/ViewModels/Blocks/Lms/PublicLearningClassWorkspace/publicLearningClassWorkspaceBox.d.ts +7 -0
- package/types/ViewModels/Blocks/Prayer/PrayerRequestEntry/prayerRequestEntryInitializationBox.d.ts +3 -0
- package/types/ViewModels/Blocks/Reporting/DynamicData/gridResultsBag.d.ts +0 -8
- package/types/ViewModels/Blocks/Reporting/Insights/insightsChartDataBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Reporting/Insights/insightsInitializationBox.d.ts +46 -0
- package/types/ViewModels/Blocks/Reporting/Insights/insightsOptionsBag.d.ts +58 -0
- package/types/ViewModels/Blocks/Reporting/PowerBiAccount/powerBiAccountRegisterBox.d.ts +30 -0
- package/types/ViewModels/Blocks/Reporting/PowerBiAccount/powerBiAccountRegisterOptionsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Reporting/powerBiAccountRegisterBox.d.ts +30 -0
- package/types/ViewModels/Blocks/Reporting/powerBiAccountRegisterOptionsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Security/Oidc/AuthScopeDetail/authScopeBag.d.ts +48 -0
- package/types/ViewModels/Blocks/Security/Oidc/AuthScopeDetail/authScopeDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Workflow/FormBuilder/formBuilderDetailLinkToFormBag.d.ts +36 -0
- package/types/ViewModels/CheckIn/attendanceSessionRequestBag.d.ts +6 -0
- package/types/ViewModels/CheckIn/attendeeBag.d.ts +4 -0
- package/types/ViewModels/CheckIn/kioskBag.d.ts +7 -0
- package/types/ViewModels/CheckIn/proximityAttendanceNotificationBag.d.ts +34 -0
- package/types/ViewModels/Cms/contextEntityItemBag.d.ts +39 -0
- package/types/ViewModels/Cms/obsidianBlockConfigBag.d.ts +7 -0
- package/types/ViewModels/Controls/dynamicComponentDefinitionBag.d.ts +48 -0
- package/types/ViewModels/Controls/iconLibraryBag.d.ts +43 -0
- package/types/ViewModels/Core/Automation/Triggers/chatMessageCriteriaBag.d.ts +33 -0
- package/types/ViewModels/Core/Automation/Triggers/chatMessageCriteriaRuleBag.d.ts +43 -0
- package/types/ViewModels/Core/Automation/Triggers/entityChangeSimpleCriteriaBag.d.ts +42 -0
- package/types/ViewModels/Core/Automation/Triggers/entityChangeSimpleCriteriaRuleBag.d.ts +58 -0
- package/types/ViewModels/Core/Automation/automationValueDefinitionBag.d.ts +48 -0
- package/types/ViewModels/Entities/prayerRequestBag.d.ts +117 -0
- package/types/ViewModels/Entities/scheduleBag.d.ts +103 -0
- package/types/ViewModels/Entities/scheduleCategoryExclusionBag.d.ts +60 -0
- package/types/ViewModels/Event/RegistrationEntry/registrationRegistrantUpdatedMessageBag.d.ts +59 -0
- package/types/ViewModels/Group/GroupMember/groupMemberUpdatedMessageBag.d.ts +61 -0
- package/types/ViewModels/Reporting/BarChart/barSeriesBag.d.ts +43 -0
- package/types/ViewModels/Reporting/LineChart/lineSeriesBag.d.ts +43 -0
- package/types/ViewModels/Reporting/PieChart/pieSeriesBag.d.ts +34 -0
- package/types/ViewModels/Reporting/chartBag.d.ts +37 -0
- package/types/ViewModels/Reporting/chartOptionsBag.d.ts +26 -0
- package/types/ViewModels/Rest/Controls/communicationRecipientActivityBag.d.ts +39 -0
- package/types/ViewModels/Rest/Controls/communicationRecipientGetActivityOptionsBag.d.ts +31 -0
- package/types/ViewModels/Rest/Controls/communicationRecipientGetActivityResultsBag.d.ts +60 -0
- package/types/ViewModels/Rest/Controls/componentPickerGetComponentsOptionsBag.d.ts +3 -0
- package/types/ViewModels/Rest/Controls/dataFilterFormatSelectionOptionsBag.d.ts +47 -0
- package/types/ViewModels/Rest/Controls/emailEditorGetGroupOptionsBag.d.ts +36 -0
- package/types/ViewModels/Rest/Controls/formattedFieldSelectGetSortByPropertiesOptionsBag.d.ts +28 -0
- package/types/ViewModels/Rest/Controls/hasCompletedCourseSelectGetCoursesOptionsBag.d.ts +30 -0
- package/types/ViewModels/Rest/Controls/iconPickerGetIconLibrariesOptionsBag.d.ts +34 -0
- package/types/ViewModels/Rest/Controls/inGroupFilterGetGroupRolesForGroupsOptionsBag.d.ts +54 -0
- package/types/ViewModels/Rest/Controls/inGroupGroupTypeSelectGetRolesOptionsBag.d.ts +30 -0
- package/types/ViewModels/Rest/Controls/interactionCountSelectGetComponentsOptionsBag.d.ts +30 -0
- package/types/ViewModels/Rest/Controls/interactionDateSelectGetComponentsOptionsBag.d.ts +30 -0
- package/types/ViewModels/Rest/Controls/learningClassActivityPickerGetLearningClassActivitiesOptionsBag.d.ts +36 -0
- package/types/ViewModels/Rest/Controls/learningClassPickerGetLearningClassesOptionsBag.d.ts +36 -0
- package/types/ViewModels/Rest/Controls/locationItemPickerGetActiveChildrenOptionsBag.d.ts +9 -0
- package/types/ViewModels/Rest/Controls/memberListSelectGetGroupRolesOptionsBag.d.ts +30 -0
- package/types/ViewModels/Rest/Controls/universalItemSearchPickerOptionsBag.d.ts +7 -0
- package/types/ViewModels/Rest/Utilities/updateContextEntityOptionsBag.d.ts +39 -0
- package/types/Core/Reporting/filterExpressionType.d.ts +0 -28
- package/types/Core/Reporting/filterMode.d.ts +0 -7
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { ListItemBag } from "@Obsidian/ViewModels/Utility/listItemBag";
|
|
2
|
+
import { Guid } from "@Obsidian/Types";
|
|
3
|
+
/**
|
|
4
|
+
* Provides functions for accessing and setting context entities.
|
|
5
|
+
*/
|
|
6
|
+
declare class ContextEntityProvider {
|
|
7
|
+
private bus;
|
|
8
|
+
/**
|
|
9
|
+
* Gets the names of all context entity types, which are the full C# class name.
|
|
10
|
+
*
|
|
11
|
+
* @returns A promise that resolves to an array of context entity type names.
|
|
12
|
+
*/
|
|
13
|
+
getTypeNames(): Promise<string[]>;
|
|
14
|
+
/**
|
|
15
|
+
* Gets the unique identifiers of all context entity types.
|
|
16
|
+
*
|
|
17
|
+
* @returns A promise that resolves to an array of context entity type unique identifiers.
|
|
18
|
+
*/
|
|
19
|
+
getTypeGuids(): Promise<string[]>;
|
|
20
|
+
/**
|
|
21
|
+
* Gets a context entity by its type. This can be either the full class name or
|
|
22
|
+
* the unique identifier.
|
|
23
|
+
*
|
|
24
|
+
* @param entityType The type of the context entity.
|
|
25
|
+
*
|
|
26
|
+
* @returns A promise that resolves to the context entity or undefined if not found.
|
|
27
|
+
*/
|
|
28
|
+
get(entityType: string | Guid): Promise<ListItemBag | undefined>;
|
|
29
|
+
/**
|
|
30
|
+
* Sets a context entity for the current session. If the context is null or
|
|
31
|
+
* undefined, the context entity will be removed.
|
|
32
|
+
*
|
|
33
|
+
* @param entityType The type of the context entity as either the full class name or the unique identifier.
|
|
34
|
+
* @param context The context entity to set. Only the `value` property is required.
|
|
35
|
+
* @param pageSpecific Whether the context entity is page-specific.
|
|
36
|
+
*
|
|
37
|
+
* @returns A promise that resolves when the context entity is set.
|
|
38
|
+
*/
|
|
39
|
+
set(entityType: string | Guid, context: ListItemBag | null | undefined, pageSpecific?: boolean): Promise<void>;
|
|
40
|
+
/**
|
|
41
|
+
* Removes a context entity for the current session.
|
|
42
|
+
*
|
|
43
|
+
* @param entityType The type of the context entity as either the full class name or the unique identifier.
|
|
44
|
+
* @param pageSpecific Whether the context entity is page-specific.
|
|
45
|
+
*/
|
|
46
|
+
remove(entityType: string | Guid, pageSpecific?: boolean): Promise<void>;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Provides functions for accessing and setting context entities.
|
|
50
|
+
*
|
|
51
|
+
* @returns An object with functions for accessing and setting context entities.
|
|
52
|
+
*/
|
|
53
|
+
export declare function useContextEntities(): ContextEntityProvider;
|
|
54
|
+
export {};
|
package/types/{Controls/Grid/virtualScroller.partial.d.ts → Core/Utilities/virtualScroll.d.ts}
RENAMED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Ref } from "vue";
|
|
1
2
|
/**
|
|
2
3
|
* A range of items that should be displayed, including the padding that should
|
|
3
4
|
* be applied before and after the items so everything fits properly.
|
|
@@ -48,7 +49,7 @@ export default class VirtualScroller {
|
|
|
48
49
|
private readonly heights;
|
|
49
50
|
/**
|
|
50
51
|
* When not `undefined` this contains the total height of all known items.
|
|
51
|
-
* It indicates that we need to keep
|
|
52
|
+
* It indicates that we need to keep working to figure out an average height
|
|
52
53
|
* until it becomes `undefined.
|
|
53
54
|
*/
|
|
54
55
|
private firstRangeTotalHeight?;
|
|
@@ -170,3 +171,49 @@ export default class VirtualScroller {
|
|
|
170
171
|
*/
|
|
171
172
|
private getEstimatedItemHeight;
|
|
172
173
|
}
|
|
174
|
+
type VirtualScrollOptions<RowItem> = {
|
|
175
|
+
/** The data for each row in the list */
|
|
176
|
+
items: Ref<RowItem[]>;
|
|
177
|
+
/**
|
|
178
|
+
* The field that contains the unique identifier for each item. This must
|
|
179
|
+
* represent a string field value.
|
|
180
|
+
*/
|
|
181
|
+
itemKey: string;
|
|
182
|
+
/**
|
|
183
|
+
* The HTML element that wraps the list, marking the top and bottom of the
|
|
184
|
+
* list. This is required to determine the scroll container.
|
|
185
|
+
*/
|
|
186
|
+
container: Ref<HTMLElement | null | undefined>;
|
|
187
|
+
/** The estimated height of each item in the list. */
|
|
188
|
+
estimatedItemHeight: number;
|
|
189
|
+
};
|
|
190
|
+
type VirtualScrollReturns<RowItem> = {
|
|
191
|
+
virtualItems: Ref<RowItem[]>;
|
|
192
|
+
beforePadStyle: Ref<{
|
|
193
|
+
height: string;
|
|
194
|
+
}>;
|
|
195
|
+
afterPadStyle: Ref<{
|
|
196
|
+
height: string;
|
|
197
|
+
}>;
|
|
198
|
+
range: Ref<Range>;
|
|
199
|
+
/**
|
|
200
|
+
* Informs the virtual scroller that the height of a single item has
|
|
201
|
+
* changed.
|
|
202
|
+
*
|
|
203
|
+
* @param id The identifier of the item whose height changed.
|
|
204
|
+
* @param height The new height of the item.
|
|
205
|
+
*/
|
|
206
|
+
updateItemHeight(id: string, height: number): void;
|
|
207
|
+
};
|
|
208
|
+
/**
|
|
209
|
+
* A composable function that provides the actual items to render, along with the spacer sizes above and below the items,
|
|
210
|
+
* given the options provided to produce a virtual scroller. This allows you to have a massive list of items, but only
|
|
211
|
+
* render a small subset so there the pure number of DOM elements doesn't bog down the performance of the browser.
|
|
212
|
+
*
|
|
213
|
+
* This implementation only works with fixed height items to simplify the logic, but allows it to be used with a 2D grid
|
|
214
|
+
* by allowing the number of items per row to be specified. This implementation is temporary: we didn't have the time to
|
|
215
|
+
* generalize it to work in additional scenarios, but it is planned to be generalized in the future and merged with the
|
|
216
|
+
* implementation used by the VirtualDataRows component.
|
|
217
|
+
*/
|
|
218
|
+
export declare function useVirtualScroller<RowItem>(options: VirtualScrollOptions<RowItem>): VirtualScrollReturns<RowItem>;
|
|
219
|
+
export {};
|
|
@@ -12,7 +12,7 @@ export interface IDragSourceOptions {
|
|
|
12
12
|
/**
|
|
13
13
|
* Defines the query selector that specifies which elements may act as drag
|
|
14
14
|
* handles. By default all elements are allowed. This value will be ignored
|
|
15
|
-
* if you defined a value for
|
|
15
|
+
* if you defined a value for startDrag.
|
|
16
16
|
*/
|
|
17
17
|
handleSelector?: string;
|
|
18
18
|
/**
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/** The type of functionality the agent is configured to provide. */
|
|
2
|
+
export declare const AgentType: {
|
|
3
|
+
/** The agent will provide chat services through a backend AI provider. */
|
|
4
|
+
readonly Chat: 0;
|
|
5
|
+
/**
|
|
6
|
+
* The agent will act as an MCP server and provide tools to other AI
|
|
7
|
+
* clients.
|
|
8
|
+
*/
|
|
9
|
+
readonly Mcp: 1;
|
|
10
|
+
};
|
|
11
|
+
/** The type of functionality the agent is configured to provide. */
|
|
12
|
+
export declare const AgentTypeDescription: Record<number, string>;
|
|
13
|
+
/** The type of functionality the agent is configured to provide. */
|
|
14
|
+
export type AgentType = typeof AgentType[keyof typeof AgentType];
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The type of audience the agent is configured to serve. This gives a hint
|
|
3
|
+
* to skills and tools about how to behave, such as disabling certain
|
|
4
|
+
* functionality that is not appropriate for the audience.
|
|
5
|
+
*/
|
|
6
|
+
export declare const AudienceType: {
|
|
7
|
+
/** The agent is configured to be used internally by Rock staff. */
|
|
8
|
+
readonly Internal: 0;
|
|
9
|
+
/** The agent is configured to be used by the general public. */
|
|
10
|
+
readonly Public: 1;
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* The type of audience the agent is configured to serve. This gives a hint
|
|
14
|
+
* to skills and tools about how to behave, such as disabling certain
|
|
15
|
+
* functionality that is not appropriate for the audience.
|
|
16
|
+
*/
|
|
17
|
+
export declare const AudienceTypeDescription: Record<number, string>;
|
|
18
|
+
/**
|
|
19
|
+
* The type of audience the agent is configured to serve. This gives a hint
|
|
20
|
+
* to skills and tools about how to behave, such as disabling certain
|
|
21
|
+
* functionality that is not appropriate for the audience.
|
|
22
|
+
*/
|
|
23
|
+
export type AudienceType = typeof AudienceType[keyof typeof AudienceType];
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The role of the author in the AI agent's chat history. Each message in
|
|
3
|
+
* the chat history is associated with an author role to indicate where
|
|
4
|
+
* it came from.
|
|
5
|
+
*/
|
|
6
|
+
export declare const AuthorRole: {
|
|
7
|
+
/** The message is from the individual interacting with the agent. */
|
|
8
|
+
readonly User: 0;
|
|
9
|
+
/** The message is a response from the assistant (the AI agent). */
|
|
10
|
+
readonly Assistant: 1;
|
|
11
|
+
/** The message is a tool result, indicating that a tool was called. */
|
|
12
|
+
readonly Tool: 2;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* The role of the author in the AI agent's chat history. Each message in
|
|
16
|
+
* the chat history is associated with an author role to indicate where
|
|
17
|
+
* it came from.
|
|
18
|
+
*/
|
|
19
|
+
export declare const AuthorRoleDescription: Record<number, string>;
|
|
20
|
+
/**
|
|
21
|
+
* The role of the author in the AI agent's chat history. Each message in
|
|
22
|
+
* the chat history is associated with an author role to indicate where
|
|
23
|
+
* it came from.
|
|
24
|
+
*/
|
|
25
|
+
export type AuthorRole = typeof AuthorRole[keyof typeof AuthorRole];
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The role of the model service in the AI agent's architecture. This is used
|
|
3
|
+
* to determine which AI model to use for different types of tasks.
|
|
4
|
+
*/
|
|
5
|
+
export declare const ModelServiceRole: {
|
|
6
|
+
/** Fast, low-cost, general-purpose model for chat and standard tasks. */
|
|
7
|
+
readonly Default: 0;
|
|
8
|
+
/** Optimized for code generation, structured output, and logic-heavy tasks. */
|
|
9
|
+
readonly Code: 1;
|
|
10
|
+
/** High-quality, reasoning-focused model used for writing, summarization, and complex queries. */
|
|
11
|
+
readonly Research: 2;
|
|
12
|
+
};
|
|
13
|
+
/**
|
|
14
|
+
* The role of the model service in the AI agent's architecture. This is used
|
|
15
|
+
* to determine which AI model to use for different types of tasks.
|
|
16
|
+
*/
|
|
17
|
+
export declare const ModelServiceRoleDescription: Record<number, string>;
|
|
18
|
+
/**
|
|
19
|
+
* The role of the model service in the AI agent's architecture. This is used
|
|
20
|
+
* to determine which AI model to use for different types of tasks.
|
|
21
|
+
*/
|
|
22
|
+
export type ModelServiceRole = typeof ModelServiceRole[keyof typeof ModelServiceRole];
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/** The data type of a parameter to use in a JSON schema. */
|
|
2
|
+
export declare const ParameterSchemaDataType: {
|
|
3
|
+
/** The parameter is defined as a string type. */
|
|
4
|
+
readonly String: 0;
|
|
5
|
+
/**
|
|
6
|
+
* The parameter is defined as a numeric type. This will be represented
|
|
7
|
+
* as a double-precision value in Lava.
|
|
8
|
+
*/
|
|
9
|
+
readonly Number: 1;
|
|
10
|
+
/** The parameter is defined as a boolean type. */
|
|
11
|
+
readonly Boolean: 2;
|
|
12
|
+
/**
|
|
13
|
+
* The parameter is defined as a Date type. This will be represented
|
|
14
|
+
* as a DateTime value in Lava if possible, otherwise as a string.
|
|
15
|
+
*/
|
|
16
|
+
readonly Date: 3;
|
|
17
|
+
/**
|
|
18
|
+
* The parameter is defined as a DateTime type. This will be represented
|
|
19
|
+
* as a DateTime value in Lava if possible, otherwise as a string.
|
|
20
|
+
*/
|
|
21
|
+
readonly DateTime: 4;
|
|
22
|
+
};
|
|
23
|
+
/** The data type of a parameter to use in a JSON schema. */
|
|
24
|
+
export declare const ParameterSchemaDataTypeDescription: Record<number, string>;
|
|
25
|
+
/** The data type of a parameter to use in a JSON schema. */
|
|
26
|
+
export type ParameterSchemaDataType = typeof ParameterSchemaDataType[keyof typeof ParameterSchemaDataType];
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/** Indicates the overall outcome of a tool call. */
|
|
2
|
+
export declare const ToolStatus: {
|
|
3
|
+
/** The lookup executed successfully and returned one or more items. */
|
|
4
|
+
readonly Success: 0;
|
|
5
|
+
/** The lookup executed successfully but returned no items. */
|
|
6
|
+
readonly NoData: 1;
|
|
7
|
+
/** The lookup failed. See the error message on the result for details. */
|
|
8
|
+
readonly Error: 2;
|
|
9
|
+
};
|
|
10
|
+
/** Indicates the overall outcome of a tool call. */
|
|
11
|
+
export declare const ToolStatusDescription: Record<number, string>;
|
|
12
|
+
/** Indicates the overall outcome of a tool call. */
|
|
13
|
+
export type ToolStatus = typeof ToolStatus[keyof typeof ToolStatus];
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/** Defines the type of tool that can be executed by an AI agent. */
|
|
2
|
+
export declare const ToolType: {
|
|
3
|
+
/** The tool is native C# code that will be executed. */
|
|
4
|
+
readonly ExecuteCode: 0;
|
|
5
|
+
/** The tool will use a Lava template to generate content. */
|
|
6
|
+
readonly ExecuteLava: 1;
|
|
7
|
+
/** The tool will use a semantic tool to generate content. */
|
|
8
|
+
readonly AIPrompt: 2;
|
|
9
|
+
};
|
|
10
|
+
/** Defines the type of tool that can be executed by an AI agent. */
|
|
11
|
+
export declare const ToolTypeDescription: Record<number, string>;
|
|
12
|
+
/** Defines the type of tool that can be executed by an AI agent. */
|
|
13
|
+
export type ToolType = typeof ToolType[keyof typeof ToolType];
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/** The Push Open Action used by the Communication Detail block. */
|
|
2
|
+
export declare const PushOpenAction: {
|
|
3
|
+
/** The no action */
|
|
4
|
+
readonly NoAction: 0;
|
|
5
|
+
/** The show details */
|
|
6
|
+
readonly ShowDetails: 1;
|
|
7
|
+
/** The link to mobile page */
|
|
8
|
+
readonly LinkToMobilePage: 2;
|
|
9
|
+
/** The link to URL */
|
|
10
|
+
readonly LinkToUrl: 3;
|
|
11
|
+
};
|
|
12
|
+
/** The Push Open Action used by the Communication Detail block. */
|
|
13
|
+
export declare const PushOpenActionDescription: Record<number, string>;
|
|
14
|
+
/** The Push Open Action used by the Communication Detail block. */
|
|
15
|
+
export type PushOpenAction = typeof PushOpenAction[keyof typeof PushOpenAction];
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/** The Push Open Action used by the Communication Flow Detail block. */
|
|
2
|
+
export declare const PushOpenAction: {
|
|
3
|
+
/** The no action */
|
|
4
|
+
readonly NoAction: 0;
|
|
5
|
+
/** The show details */
|
|
6
|
+
readonly ShowDetails: 1;
|
|
7
|
+
/** The link to mobile page */
|
|
8
|
+
readonly LinkToMobilePage: 2;
|
|
9
|
+
/** The link to URL */
|
|
10
|
+
readonly LinkToUrl: 3;
|
|
11
|
+
};
|
|
12
|
+
/** The Push Open Action used by the Communication Flow Detail block. */
|
|
13
|
+
export declare const PushOpenActionDescription: Record<number, string>;
|
|
14
|
+
/** The Push Open Action used by the Communication Flow Detail block. */
|
|
15
|
+
export type PushOpenAction = typeof PushOpenAction[keyof typeof PushOpenAction];
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/** A communication channel type that can be managed within the Email Preference Entry block. */
|
|
2
|
+
export declare const CommunicationChannelType: {
|
|
3
|
+
/** A subscription to a communication list. */
|
|
4
|
+
readonly List: 0;
|
|
5
|
+
/** A subscription to a communication flow. */
|
|
6
|
+
readonly Flow: 1;
|
|
7
|
+
};
|
|
8
|
+
/** A communication channel type that can be managed within the Email Preference Entry block. */
|
|
9
|
+
export declare const CommunicationChannelTypeDescription: Record<number, string>;
|
|
10
|
+
/** A communication channel type that can be managed within the Email Preference Entry block. */
|
|
11
|
+
export type CommunicationChannelType = typeof CommunicationChannelType[keyof typeof CommunicationChannelType];
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The different ways to select adults or children in check-in. This provides
|
|
3
|
+
* a standard set of options to select all possible combinations of adults
|
|
4
|
+
* and children.
|
|
5
|
+
*/
|
|
6
|
+
export declare const AdultsOrChildrenSelectionMode: {
|
|
7
|
+
/** Neither adults nor children are valid. */
|
|
8
|
+
readonly None: 0;
|
|
9
|
+
/** Both adults and children are valid. */
|
|
10
|
+
readonly AdultsAndChildren: 1;
|
|
11
|
+
/** Only adults are valid. */
|
|
12
|
+
readonly AdultsOnly: 2;
|
|
13
|
+
/** Only children are valid. */
|
|
14
|
+
readonly ChildrenOnly: 3;
|
|
15
|
+
};
|
|
16
|
+
/**
|
|
17
|
+
* The different ways to select adults or children in check-in. This provides
|
|
18
|
+
* a standard set of options to select all possible combinations of adults
|
|
19
|
+
* and children.
|
|
20
|
+
*/
|
|
21
|
+
export declare const AdultsOrChildrenSelectionModeDescription: Record<number, string>;
|
|
22
|
+
/**
|
|
23
|
+
* The different ways to select adults or children in check-in. This provides
|
|
24
|
+
* a standard set of options to select all possible combinations of adults
|
|
25
|
+
* and children.
|
|
26
|
+
*/
|
|
27
|
+
export type AdultsOrChildrenSelectionMode = typeof AdultsOrChildrenSelectionMode[keyof typeof AdultsOrChildrenSelectionMode];
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export declare const BrowserFamily: {
|
|
2
|
+
/** Other Browser */
|
|
3
|
+
readonly Other: 0;
|
|
4
|
+
/** Chrome Browser */
|
|
5
|
+
readonly Chrome: 1;
|
|
6
|
+
/** Chrome Mobile Browser */
|
|
7
|
+
readonly ChromeMobile: 2;
|
|
8
|
+
/** Firefox Browser */
|
|
9
|
+
readonly Firefox: 3;
|
|
10
|
+
/** Firefox Mobile Browser */
|
|
11
|
+
readonly FirefoxMobile: 4;
|
|
12
|
+
/** Safari Browser */
|
|
13
|
+
readonly Safari: 5;
|
|
14
|
+
/** Opera Browser */
|
|
15
|
+
readonly Opera: 6;
|
|
16
|
+
/** Opera Mini Browser */
|
|
17
|
+
readonly OperaMini: 7;
|
|
18
|
+
/** Edge Browser */
|
|
19
|
+
readonly Edge: 8;
|
|
20
|
+
/** Internet Explorer Browser */
|
|
21
|
+
readonly IE: 9;
|
|
22
|
+
};
|
|
23
|
+
export declare const BrowserFamilyDescription: Record<number, string>;
|
|
24
|
+
export type BrowserFamily = typeof BrowserFamily[keyof typeof BrowserFamily];
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/** Enum DeviceType */
|
|
2
|
+
export declare const DeviceType: {
|
|
3
|
+
/** The desktop */
|
|
4
|
+
readonly Desktop: 0;
|
|
5
|
+
/** The tablet */
|
|
6
|
+
readonly Tablet: 1;
|
|
7
|
+
/** The mobile */
|
|
8
|
+
readonly Mobile: 2;
|
|
9
|
+
};
|
|
10
|
+
/** Enum DeviceType */
|
|
11
|
+
export declare const DeviceTypeDescription: Record<number, string>;
|
|
12
|
+
/** Enum DeviceType */
|
|
13
|
+
export type DeviceType = typeof DeviceType[keyof typeof DeviceType];
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare const GeolocationLocationComponent: {
|
|
2
|
+
/** Country Code */
|
|
3
|
+
readonly CountryCode: 0;
|
|
4
|
+
/** Region Code */
|
|
5
|
+
readonly RegionCode: 1;
|
|
6
|
+
/** Region Name */
|
|
7
|
+
readonly RegionName: 2;
|
|
8
|
+
/** City */
|
|
9
|
+
readonly City: 3;
|
|
10
|
+
/** Postal Code */
|
|
11
|
+
readonly PostalCode: 4;
|
|
12
|
+
};
|
|
13
|
+
export declare const GeolocationLocationComponentDescription: Record<number, string>;
|
|
14
|
+
export type GeolocationLocationComponent = typeof GeolocationLocationComponent[keyof typeof GeolocationLocationComponent];
|
package/types/Enums/Cms/Personalization/PersonalizationRequestFilters/previousActivityType.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/** Options on whether filter on New or Returning visitor */
|
|
2
|
+
export declare const PreviousActivityType: {
|
|
3
|
+
/** The new */
|
|
4
|
+
readonly New: 0;
|
|
5
|
+
/** The returning */
|
|
6
|
+
readonly Return: 1;
|
|
7
|
+
};
|
|
8
|
+
/** Options on whether filter on New or Returning visitor */
|
|
9
|
+
export declare const PreviousActivityTypeDescription: Record<number, string>;
|
|
10
|
+
/** Options on whether filter on New or Returning visitor */
|
|
11
|
+
export type PreviousActivityType = typeof PreviousActivityType[keyof typeof PreviousActivityType];
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Specifies the role of a block within a page, defining its purpose and
|
|
3
|
+
* how it contributes to the page's functionality.
|
|
4
|
+
*/
|
|
5
|
+
export declare const BlockRole: {
|
|
6
|
+
/**
|
|
7
|
+
* The block provides core functionality for the system on the page.
|
|
8
|
+
* This is typically used for blocks that are essential for the page's
|
|
9
|
+
* operation, such as the Notifications block or Universal Search
|
|
10
|
+
* block on the internal site.
|
|
11
|
+
*/
|
|
12
|
+
readonly System: 0;
|
|
13
|
+
/**
|
|
14
|
+
* The block provides navigation features for the page. This is
|
|
15
|
+
* typically used for blocks that would cause the individual to
|
|
16
|
+
* navigate away from the current page. But it could also apply to
|
|
17
|
+
* blocks that change the context of the current page in a way that
|
|
18
|
+
* would be considered a navigation action.
|
|
19
|
+
*/
|
|
20
|
+
readonly Navigation: 1;
|
|
21
|
+
/**
|
|
22
|
+
* The block provides content for the page. This is typically used
|
|
23
|
+
* for blocks that display static content on the page, although the
|
|
24
|
+
* content might be dynamic in nature. An example would be a copyright
|
|
25
|
+
* footer that uses Lava to display the current year.
|
|
26
|
+
*/
|
|
27
|
+
readonly Content: 2;
|
|
28
|
+
/**
|
|
29
|
+
* The block provides primary functionality for the page. This is
|
|
30
|
+
* typically used for list and detail blocks that provide the primary
|
|
31
|
+
* interaction for the individual on the page.
|
|
32
|
+
*/
|
|
33
|
+
readonly Primary: 3;
|
|
34
|
+
/**
|
|
35
|
+
* The block provides secondary functionality for the page. This is
|
|
36
|
+
* typically used for blocks that provide additional features or
|
|
37
|
+
* information that is not essential to the primary interaction. These
|
|
38
|
+
* are often hidden when the primary block enters an edit mode.
|
|
39
|
+
*/
|
|
40
|
+
readonly Secondary: 4;
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* Specifies the role of a block within a page, defining its purpose and
|
|
44
|
+
* how it contributes to the page's functionality.
|
|
45
|
+
*/
|
|
46
|
+
export declare const BlockRoleDescription: Record<number, string>;
|
|
47
|
+
/**
|
|
48
|
+
* Specifies the role of a block within a page, defining its purpose and
|
|
49
|
+
* how it contributes to the page's functionality.
|
|
50
|
+
*/
|
|
51
|
+
export type BlockRole = typeof BlockRole[keyof typeof BlockRole];
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/** Represents the Security Mode. */
|
|
2
|
+
export declare const LavaEndpointHttpMethod: {
|
|
3
|
+
/** Get */
|
|
4
|
+
readonly Get: 0;
|
|
5
|
+
/** Post */
|
|
6
|
+
readonly Post: 1;
|
|
7
|
+
/** Put */
|
|
8
|
+
readonly Put: 2;
|
|
9
|
+
/** Delete */
|
|
10
|
+
readonly Delete: 3;
|
|
11
|
+
};
|
|
12
|
+
/** Represents the Security Mode. */
|
|
13
|
+
export declare const LavaEndpointHttpMethodDescription: Record<number, string>;
|
|
14
|
+
/** Represents the Security Mode. */
|
|
15
|
+
export type LavaEndpointHttpMethod = typeof LavaEndpointHttpMethod[keyof typeof LavaEndpointHttpMethod];
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/** Represents the Security Mode. */
|
|
2
|
+
export declare const LavaEndpointSecurityMode: {
|
|
3
|
+
/** Endpoint Execute */
|
|
4
|
+
readonly EndpointExecute: 0;
|
|
5
|
+
/** Application View */
|
|
6
|
+
readonly ApplicationView: 1;
|
|
7
|
+
/** Application Edit */
|
|
8
|
+
readonly ApplicationEdit: 2;
|
|
9
|
+
/** Application Administrate */
|
|
10
|
+
readonly ApplicationAdministrate: 3;
|
|
11
|
+
};
|
|
12
|
+
/** Represents the Security Mode. */
|
|
13
|
+
export declare const LavaEndpointSecurityModeDescription: Record<number, string>;
|
|
14
|
+
/** Represents the Security Mode. */
|
|
15
|
+
export type LavaEndpointSecurityMode = typeof LavaEndpointSecurityMode[keyof typeof LavaEndpointSecurityMode];
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/** The types of chat messages events that can be reported by the external chat system. */
|
|
2
|
+
export declare const ChatMessageEventType: {
|
|
3
|
+
/** A new message was added. */
|
|
4
|
+
readonly New: 0;
|
|
5
|
+
/** An existing message was updated. */
|
|
6
|
+
readonly Update: 1;
|
|
7
|
+
};
|
|
8
|
+
/** The types of chat messages events that can be reported by the external chat system. */
|
|
9
|
+
export declare const ChatMessageEventTypeDescription: Record<number, string>;
|
|
10
|
+
/** The types of chat messages events that can be reported by the external chat system. */
|
|
11
|
+
export type ChatMessageEventType = typeof ChatMessageEventType[keyof typeof ChatMessageEventType];
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/** Represents the visual style of the chat experience. */
|
|
2
|
+
export declare const ChatViewStyle: {
|
|
3
|
+
/**
|
|
4
|
+
* A simple, text-message-style layout.
|
|
5
|
+
* This mode emphasizes linear conversations and is ideal for one-on-one or small group chats.
|
|
6
|
+
* Messages appear in a flowing, bubble-style format similar to traditional SMS or mobile messaging.
|
|
7
|
+
*/
|
|
8
|
+
readonly Conversational: 0;
|
|
9
|
+
/**
|
|
10
|
+
* A more structured layout for larger group communication.
|
|
11
|
+
* This mode supports organized discussions with clear visual separation,
|
|
12
|
+
* making it easier to follow multiple topics or conversations within a group.
|
|
13
|
+
* Best suited for teams, communities, or discussions with multiple participants.
|
|
14
|
+
*/
|
|
15
|
+
readonly Community: 1;
|
|
16
|
+
};
|
|
17
|
+
/** Represents the visual style of the chat experience. */
|
|
18
|
+
export declare const ChatViewStyleDescription: Record<number, string>;
|
|
19
|
+
/** Represents the visual style of the chat experience. */
|
|
20
|
+
export type ChatViewStyle = typeof ChatViewStyle[keyof typeof ChatViewStyle];
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/** The inactive reason of a Communication Flow Instance Recipient. */
|
|
2
|
+
export declare const CommunicationFlowInstanceRecipientInactiveReason: {
|
|
3
|
+
/** The recipient's inactive reason is unknown or not set. */
|
|
4
|
+
readonly Unknown: 0;
|
|
5
|
+
/** The recipient is inactive because they have unsubscribed from the communication. */
|
|
6
|
+
readonly Unsubscribed: 1;
|
|
7
|
+
/** The recipient is inactive because they have met the conversion goal of the communication flow instance. */
|
|
8
|
+
readonly ConversionGoalMet: 2;
|
|
9
|
+
/** The recipient is inactive because they have opened a communication. */
|
|
10
|
+
readonly OpenedCommunication: 3;
|
|
11
|
+
/** The recipient is inactive because they have clicked a communication link. */
|
|
12
|
+
readonly ClickedCommunication: 4;
|
|
13
|
+
/** The recipient is inactive because the last communication of the flow has been sent. */
|
|
14
|
+
readonly LastCommunicationSent: 5;
|
|
15
|
+
/** The recipient is inactive because the person associated with the recipient has been inactivated. */
|
|
16
|
+
readonly PersonInactivated: 6;
|
|
17
|
+
/** The recipient is inactive because they have unsubscribed from the entire flow (not a specific communication). */
|
|
18
|
+
readonly UnsubscribedFromFlow: 7;
|
|
19
|
+
};
|
|
20
|
+
/** The inactive reason of a Communication Flow Instance Recipient. */
|
|
21
|
+
export declare const CommunicationFlowInstanceRecipientInactiveReasonDescription: Record<number, string>;
|
|
22
|
+
/** The inactive reason of a Communication Flow Instance Recipient. */
|
|
23
|
+
export type CommunicationFlowInstanceRecipientInactiveReason = typeof CommunicationFlowInstanceRecipientInactiveReason[keyof typeof CommunicationFlowInstanceRecipientInactiveReason];
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/** The recipient status in a Communication Flow Instance. */
|
|
2
|
+
export declare const CommunicationFlowInstanceRecipientStatus: {
|
|
3
|
+
/** The recipient is still active to receive communications in the communication flow instance. */
|
|
4
|
+
readonly Active: 1;
|
|
5
|
+
/** The recipient is inactive and will no longer receive communications in the communication flow instance. */
|
|
6
|
+
readonly Inactive: 2;
|
|
7
|
+
};
|
|
8
|
+
/** The recipient status in a Communication Flow Instance. */
|
|
9
|
+
export declare const CommunicationFlowInstanceRecipientStatusDescription: Record<number, string>;
|
|
10
|
+
/** The recipient status in a Communication Flow Instance. */
|
|
11
|
+
export type CommunicationFlowInstanceRecipientStatus = typeof CommunicationFlowInstanceRecipientStatus[keyof typeof CommunicationFlowInstanceRecipientStatus];
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/** The unsubscibe scope for a Communication Flow Instance Recipient. */
|
|
2
|
+
export declare const CommunicationFlowInstanceRecipientUnsubscribeScope: {
|
|
3
|
+
/** The recipient unsubscribed from a Communication Flow Instance. They will not receive subsequent communications from this instance. */
|
|
4
|
+
readonly CommunicationFlowInstance: 1;
|
|
5
|
+
/** The recipient has unsubscribed from a Communication Flow. They will not receive any communications from this instance, including any other instances of the flow. */
|
|
6
|
+
readonly CommunicationFlow: 2;
|
|
7
|
+
};
|
|
8
|
+
/** The unsubscibe scope for a Communication Flow Instance Recipient. */
|
|
9
|
+
export declare const CommunicationFlowInstanceRecipientUnsubscribeScopeDescription: Record<number, string>;
|
|
10
|
+
/** The unsubscibe scope for a Communication Flow Instance Recipient. */
|
|
11
|
+
export type CommunicationFlowInstanceRecipientUnsubscribeScope = typeof CommunicationFlowInstanceRecipientUnsubscribeScope[keyof typeof CommunicationFlowInstanceRecipientUnsubscribeScope];
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/** Represents the types of triggers that determine when a Communication Flow is executed. */
|
|
2
|
+
export declare const CommunicationFlowTriggerType: {
|
|
3
|
+
/** The Communication Flow runs on a recurring schedule (e.g., weekly, monthly). */
|
|
4
|
+
readonly Recurring: 1;
|
|
5
|
+
/** The Communication Flow runs on demand, such as by a Workflow or manual event. */
|
|
6
|
+
readonly OnDemand: 2;
|
|
7
|
+
/** The Communication Flow is scheduled to run only once at a specific date and time. */
|
|
8
|
+
readonly OneTime: 3;
|
|
9
|
+
};
|
|
10
|
+
/** Represents the types of triggers that determine when a Communication Flow is executed. */
|
|
11
|
+
export declare const CommunicationFlowTriggerTypeDescription: Record<number, string>;
|
|
12
|
+
/** Represents the types of triggers that determine when a Communication Flow is executed. */
|
|
13
|
+
export type CommunicationFlowTriggerType = typeof CommunicationFlowTriggerType[keyof typeof CommunicationFlowTriggerType];
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/** Enumeration for the type of interaction operation performed on a communication. */
|
|
2
|
+
export declare const CommunicationInteractionOperation: {
|
|
3
|
+
/** Interaction representing a person opening a communication. */
|
|
4
|
+
readonly Opened: 0;
|
|
5
|
+
/** Interaction representing a person clicking a link within a communication. */
|
|
6
|
+
readonly Click: 1;
|
|
7
|
+
};
|
|
8
|
+
/** Enumeration for the type of interaction operation performed on a communication. */
|
|
9
|
+
export declare const CommunicationInteractionOperationDescription: Record<number, string>;
|
|
10
|
+
/** Enumeration for the type of interaction operation performed on a communication. */
|
|
11
|
+
export type CommunicationInteractionOperation = typeof CommunicationInteractionOperation[keyof typeof CommunicationInteractionOperation];
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/** The activity that can occur for a communication recipient. */
|
|
2
|
+
export declare const CommunicationRecipientActivity: {
|
|
3
|
+
/** The communication is pending and has not yet been sent. */
|
|
4
|
+
readonly Pending: 0;
|
|
5
|
+
/** The communication was cancelled prior to sending to the recipient. */
|
|
6
|
+
readonly Cancelled: 1;
|
|
7
|
+
/** The communication was sent to the recipient. */
|
|
8
|
+
readonly Sent: 2;
|
|
9
|
+
/** The communication was delivered to the recipient. */
|
|
10
|
+
readonly Delivered: 3;
|
|
11
|
+
/** The communication failed to be delivered to the recipient. */
|
|
12
|
+
readonly DeliveryFailed: 4;
|
|
13
|
+
/** The recipient opened the communication. */
|
|
14
|
+
readonly Opened: 5;
|
|
15
|
+
/** The recipient clicked on a link within the communication. */
|
|
16
|
+
readonly Clicked: 6;
|
|
17
|
+
/** The recipient marked the communication as spam. */
|
|
18
|
+
readonly MarkedAsSpam: 7;
|
|
19
|
+
/** The recipient unsubscribed from the communication. */
|
|
20
|
+
readonly Unsubscribed: 8;
|
|
21
|
+
};
|
|
22
|
+
/** The activity that can occur for a communication recipient. */
|
|
23
|
+
export declare const CommunicationRecipientActivityDescription: Record<number, string>;
|
|
24
|
+
/** The activity that can occur for a communication recipient. */
|
|
25
|
+
export type CommunicationRecipientActivity = typeof CommunicationRecipientActivity[keyof typeof CommunicationRecipientActivity];
|