@rockrms/obsidian-framework 1.16.3-rc.1
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 +13 -0
- package/tsconfig.base.json +7 -0
- package/types/Controls/Grid/Cells/booleanCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/currencyCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/currencySkeletonCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/dateCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/dateSkeletonCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/dateTimeCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/dateTimeSkeletonCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/deleteCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/editCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/labelCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/labelSkeletonCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/numberBadgeCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/numberBadgeSkeletonCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/numberCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/numberSkeletonCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/personCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/personSkeletonCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/reorderCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/securityCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/selectCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/selectHeaderCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Cells/textCell.partial.d.ts +28 -0
- package/types/Controls/Grid/Cells/textSkeletonCell.partial.obs.d.ts +2 -0
- package/types/Controls/Grid/Columns/attributeColumns.partial.d.ts +44 -0
- package/types/Controls/Grid/Columns/booleanColumn.partial.d.ts +164 -0
- package/types/Controls/Grid/Columns/column.partial.d.ts +151 -0
- package/types/Controls/Grid/Columns/currencyColumn.partial.d.ts +165 -0
- package/types/Controls/Grid/Columns/dateColumn.partial.d.ts +177 -0
- package/types/Controls/Grid/Columns/dateTimeColumn.partial.d.ts +177 -0
- package/types/Controls/Grid/Columns/deleteColumn.partial.d.ts +206 -0
- package/types/Controls/Grid/Columns/editColumn.partial.d.ts +170 -0
- package/types/Controls/Grid/Columns/labelColumn.partial.d.ts +225 -0
- package/types/Controls/Grid/Columns/numberBadgeColumn.partial.d.ts +341 -0
- package/types/Controls/Grid/Columns/numberColumn.partial.d.ts +165 -0
- package/types/Controls/Grid/Columns/personColumn.partial.d.ts +185 -0
- package/types/Controls/Grid/Columns/reorderColumn.partial.d.ts +176 -0
- package/types/Controls/Grid/Columns/securityColumn.partial.d.ts +196 -0
- package/types/Controls/Grid/Columns/selectColumn.partial.d.ts +157 -0
- package/types/Controls/Grid/Columns/textColumn.partial.d.ts +217 -0
- package/types/Controls/Grid/Filters/booleanFilter.partial.obs.d.ts +7 -0
- package/types/Controls/Grid/Filters/dateFilter.partial.obs.d.ts +7 -0
- package/types/Controls/Grid/Filters/numberFilter.partial.obs.d.ts +7 -0
- package/types/Controls/Grid/Filters/pickExistingFilter.partial.obs.d.ts +7 -0
- package/types/Controls/Grid/Filters/textFilter.partial.obs.d.ts +6 -0
- package/types/Controls/Grid/actionButton.partial.obs.d.ts +30 -0
- package/types/Controls/Grid/actionGroup.partial.obs.d.ts +32 -0
- package/types/Controls/Grid/columnHeaderCell.partial.obs.d.ts +66 -0
- package/types/Controls/Grid/columnHeaderRow.partial.obs.d.ts +95 -0
- package/types/Controls/Grid/dataCell.partial.obs.d.ts +52 -0
- package/types/Controls/Grid/dataRow.partial.obs.d.ts +95 -0
- package/types/Controls/Grid/dataRows.partial.obs.d.ts +70 -0
- package/types/Controls/Grid/filterHeaderRow.partial.obs.d.ts +76 -0
- package/types/Controls/Grid/grid.partial.obs.d.ts +546 -0
- package/types/Controls/Grid/lightFooterRow.partial.obs.d.ts +34 -0
- package/types/Controls/Grid/pagePicker.partial.obs.d.ts +31 -0
- package/types/Controls/Grid/pageSizePicker.partial.obs.d.ts +41 -0
- package/types/Controls/Grid/pagerRow.partial.obs.d.ts +73 -0
- package/types/Controls/Grid/popupActionButton.partial.obs.d.ts +34 -0
- package/types/Controls/Grid/popupActionGroup.partial.obs.d.ts +28 -0
- package/types/Controls/Grid/skeletonCell.partial.obs.d.ts +26 -0
- package/types/Controls/Grid/skeletonRow.partial.obs.d.ts +46 -0
- package/types/Controls/Grid/skeletonRows.partial.obs.d.ts +44 -0
- package/types/Controls/Grid/virtualDataRows.partial.obs.d.ts +70 -0
- package/types/Controls/Grid/virtualScroller.partial.d.ts +172 -0
- package/types/Controls/Internal/nmiGatewayControl.obs.d.ts +38 -0
- package/types/Controls/Internal/pageDebugTimingRow.obs.d.ts +30 -0
- package/types/Controls/Internal/pageDebugTimings.obs.d.ts +14 -0
- package/types/Controls/Internal/tag.obs.d.ts +30 -0
- package/types/Controls/Internal/testGatewayControl.obs.d.ts +24 -0
- package/types/Controls/Internal/treeListItem.obs.d.ts +80 -0
- package/types/Controls/accountPicker.obs.d.ts +128 -0
- package/types/Controls/achievementTypePicker.obs.d.ts +130 -0
- package/types/Controls/addressControl.obs.d.ts +110 -0
- package/types/Controls/assessmentTypePicker.obs.d.ts +139 -0
- package/types/Controls/assetStorageProviderPicker.obs.d.ts +130 -0
- package/types/Controls/attributeEditor.obs.d.ts +83 -0
- package/types/Controls/attributeValuesContainer.obs.d.ts +142 -0
- package/types/Controls/auditDetail.obs.d.ts +37 -0
- package/types/Controls/badgeComponentPicker.obs.d.ts +139 -0
- package/types/Controls/badgeList.obs.d.ts +41 -0
- package/types/Controls/badgePicker.obs.d.ts +139 -0
- package/types/Controls/baseAsyncPicker.obs.d.ts +178 -0
- package/types/Controls/basicTimePicker.obs.d.ts +38 -0
- package/types/Controls/binaryFilePicker.obs.d.ts +138 -0
- package/types/Controls/binaryFileTypePicker.obs.d.ts +130 -0
- package/types/Controls/birthdayPicker.obs.d.ts +2 -0
- package/types/Controls/blockTemplatePicker.obs.d.ts +93 -0
- package/types/Controls/buttonDropDownList.obs.d.ts +108 -0
- package/types/Controls/buttonGroup.obs.d.ts +114 -0
- package/types/Controls/cacheabilityPicker.obs.d.ts +18 -0
- package/types/Controls/campusAccountAmountPicker.obs.d.ts +257 -0
- package/types/Controls/campusPicker.obs.d.ts +178 -0
- package/types/Controls/captcha.obs.d.ts +82 -0
- package/types/Controls/categorizedValuePicker.obs.d.ts +85 -0
- package/types/Controls/categorizedValuePickerDropDownLevel.obs.d.ts +85 -0
- package/types/Controls/categoryPicker.obs.d.ts +60 -0
- package/types/Controls/checkBox.obs.d.ts +51 -0
- package/types/Controls/checkBoxList.obs.d.ts +88 -0
- package/types/Controls/codeEditor.obs.d.ts +89 -0
- package/types/Controls/colorPicker.obs.d.ts +27 -0
- package/types/Controls/colorSelector.obs.d.ts +110 -0
- package/types/Controls/componentFromUrl.obs.d.ts +13 -0
- package/types/Controls/componentPicker.obs.d.ts +139 -0
- package/types/Controls/connectionRequestPicker.obs.d.ts +36 -0
- package/types/Controls/connectionStatus.obs.d.ts +28 -0
- package/types/Controls/contentChannelItemPicker.obs.d.ts +153 -0
- package/types/Controls/contentDropDownPicker.obs.d.ts +404 -0
- package/types/Controls/copyButton.obs.d.ts +42 -0
- package/types/Controls/countdownTimer.obs.d.ts +19 -0
- package/types/Controls/currencyBox.obs.d.ts +33 -0
- package/types/Controls/dataViewPicker.obs.d.ts +147 -0
- package/types/Controls/datePartsPicker.obs.d.ts +86 -0
- package/types/Controls/datePicker.obs.d.ts +185 -0
- package/types/Controls/datePickerBase.obs.d.ts +148 -0
- package/types/Controls/dateRangePicker.obs.d.ts +30 -0
- package/types/Controls/dateTimePicker.obs.d.ts +58 -0
- package/types/Controls/dayOfWeekPicker.obs.d.ts +28 -0
- package/types/Controls/definedValuePicker.obs.d.ts +158 -0
- package/types/Controls/dialog.obs.d.ts +36 -0
- package/types/Controls/dropDownContent.obs.d.ts +49 -0
- package/types/Controls/dropDownList.obs.d.ts +191 -0
- package/types/Controls/dropDownMenu.obs.d.ts +45 -0
- package/types/Controls/electronicSignature.obs.d.ts +55 -0
- package/types/Controls/emailBox.obs.d.ts +40 -0
- package/types/Controls/entityTypePicker.obs.d.ts +139 -0
- package/types/Controls/ethnicityPicker.obs.d.ts +132 -0
- package/types/Controls/eventCalendarPicker.obs.d.ts +132 -0
- package/types/Controls/eventItemPicker.obs.d.ts +139 -0
- package/types/Controls/fieldFilterContainer.obs.d.ts +19 -0
- package/types/Controls/fieldFilterEditor.obs.d.ts +46 -0
- package/types/Controls/fieldFilterRuleRow.obs.d.ts +30 -0
- package/types/Controls/fieldTypeEditor.obs.d.ts +38 -0
- package/types/Controls/fieldTypePicker.obs.d.ts +130 -0
- package/types/Controls/fileUploader.obs.d.ts +55 -0
- package/types/Controls/financialGatewayPicker.obs.d.ts +148 -0
- package/types/Controls/financialStatementTemplatePicker.obs.d.ts +130 -0
- package/types/Controls/following.obs.d.ts +37 -0
- package/types/Controls/fullscreen.obs.d.ts +47 -0
- package/types/Controls/gatewayControl.obs.d.ts +41 -0
- package/types/Controls/genderDropDownList.obs.d.ts +21 -0
- package/types/Controls/geoPicker.obs.d.ts +149 -0
- package/types/Controls/geoPickerMap.obs.d.ts +105 -0
- package/types/Controls/gradePicker.obs.d.ts +148 -0
- package/types/Controls/grid.d.ts +54 -0
- package/types/Controls/groupAndRolePicker.obs.d.ts +183 -0
- package/types/Controls/groupMemberPicker.obs.d.ts +139 -0
- package/types/Controls/groupPicker.obs.d.ts +72 -0
- package/types/Controls/groupRolePicker.obs.d.ts +157 -0
- package/types/Controls/groupTypeGroupPicker.obs.d.ts +165 -0
- package/types/Controls/groupTypePicker.obs.d.ts +165 -0
- package/types/Controls/helpBlock.obs.d.ts +13 -0
- package/types/Controls/imageEditor.obs.d.ts +145 -0
- package/types/Controls/imageUploader.obs.d.ts +64 -0
- package/types/Controls/inlineCheckBox.obs.d.ts +25 -0
- package/types/Controls/inlineRangeSlider.obs.d.ts +54 -0
- package/types/Controls/inlineSwitch.obs.d.ts +44 -0
- package/types/Controls/inputGroupDropDown.obs.d.ts +29 -0
- package/types/Controls/interactionChannelInteractionComponentPicker.obs.d.ts +39 -0
- package/types/Controls/interactionChannelPicker.obs.d.ts +130 -0
- package/types/Controls/interactionComponentPicker.obs.d.ts +139 -0
- package/types/Controls/intervalPicker.obs.d.ts +87 -0
- package/types/Controls/itemsWithPreAndPostHtml.obs.d.ts +22 -0
- package/types/Controls/javaScriptAnchor.obs.d.ts +9 -0
- package/types/Controls/keyValueList.obs.d.ts +62 -0
- package/types/Controls/kpi.obs.d.ts +85 -0
- package/types/Controls/lavaCommandPicker.obs.d.ts +130 -0
- package/types/Controls/listBox.obs.d.ts +65 -0
- package/types/Controls/listItems.obs.d.ts +29 -0
- package/types/Controls/loading.obs.d.ts +32 -0
- package/types/Controls/loadingIndicator.obs.d.ts +28 -0
- package/types/Controls/locationAddressPicker.obs.d.ts +83 -0
- package/types/Controls/locationItemPicker.obs.d.ts +52 -0
- package/types/Controls/locationList.obs.d.ts +175 -0
- package/types/Controls/locationPicker.obs.d.ts +32 -0
- package/types/Controls/mediaElementPicker.obs.d.ts +217 -0
- package/types/Controls/mediaSelector.obs.d.ts +107 -0
- package/types/Controls/mergeFieldPicker.obs.d.ts +90 -0
- package/types/Controls/mergeTemplatePicker.obs.d.ts +38 -0
- package/types/Controls/metricCategoryPicker.obs.d.ts +37 -0
- package/types/Controls/metricItemPicker.obs.d.ts +46 -0
- package/types/Controls/modal.obs.d.ts +114 -0
- package/types/Controls/modalAlert.obs.d.ts +48 -0
- package/types/Controls/monthDayPicker.obs.d.ts +18 -0
- package/types/Controls/monthYearPicker.obs.d.ts +18 -0
- package/types/Controls/noteTextEditor.obs.d.ts +96 -0
- package/types/Controls/notificationBox.obs.d.ts +49 -0
- package/types/Controls/numberBox.obs.d.ts +89 -0
- package/types/Controls/numberRangeBox.obs.d.ts +43 -0
- package/types/Controls/numberUpDown.obs.d.ts +93 -0
- package/types/Controls/numberUpDownBase.obs.d.ts +45 -0
- package/types/Controls/numberUpDownGroup.obs.d.ts +26 -0
- package/types/Controls/pagePicker.obs.d.ts +134 -0
- package/types/Controls/panel.obs.d.ts +153 -0
- package/types/Controls/personLink.obs.d.ts +60 -0
- package/types/Controls/personPicker.obs.d.ts +76 -0
- package/types/Controls/phoneNumberBox.obs.d.ts +92 -0
- package/types/Controls/phoneNumberBoxWithSms.obs.d.ts +80 -0
- package/types/Controls/popOver.obs.d.ts +85 -0
- package/types/Controls/progressBar.obs.d.ts +13 -0
- package/types/Controls/progressTracker.obs.d.ts +29 -0
- package/types/Controls/progressTrackerSegment.obs.d.ts +46 -0
- package/types/Controls/racePicker.obs.d.ts +132 -0
- package/types/Controls/radioButtonList.obs.d.ts +98 -0
- package/types/Controls/rangeSlider.obs.d.ts +102 -0
- package/types/Controls/rating.obs.d.ts +32 -0
- package/types/Controls/registrationInstanceBasePicker.obs.d.ts +143 -0
- package/types/Controls/registrationInstancePicker.obs.d.ts +39 -0
- package/types/Controls/registrationTemplatePicker.obs.d.ts +28 -0
- package/types/Controls/registryEntry.obs.d.ts +85 -0
- package/types/Controls/reminderTypePicker.obs.d.ts +143 -0
- package/types/Controls/remoteAuthsPicker.obs.d.ts +130 -0
- package/types/Controls/reportPicker.obs.d.ts +52 -0
- package/types/Controls/rockAttributeFilter.obs.d.ts +52 -0
- package/types/Controls/rockButton.obs.d.ts +115 -0
- package/types/Controls/rockField.obs.d.ts +73 -0
- package/types/Controls/rockForm.obs.d.ts +68 -0
- package/types/Controls/rockFormField.obs.d.ts +82 -0
- package/types/Controls/rockFormFieldError.obs.d.ts +21 -0
- package/types/Controls/rockLabel.obs.d.ts +22 -0
- package/types/Controls/rockLiteral.obs.d.ts +31 -0
- package/types/Controls/rockSuspense.obs.d.ts +42 -0
- package/types/Controls/rockValidation.obs.d.ts +16 -0
- package/types/Controls/saveFinancialAccountForm.obs.d.ts +36 -0
- package/types/Controls/scheduleBuilder.obs.d.ts +69 -0
- package/types/Controls/schedulePicker.obs.d.ts +28 -0
- package/types/Controls/sectionContainer.obs.d.ts +54 -0
- package/types/Controls/sectionHeader.obs.d.ts +40 -0
- package/types/Controls/skeleton.obs.d.ts +9 -0
- package/types/Controls/slidingDateRangePicker.obs.d.ts +46 -0
- package/types/Controls/socialSecurityNumberBox.obs.d.ts +23 -0
- package/types/Controls/standardFilterDaysBack.obs.d.ts +66 -0
- package/types/Controls/staticFormControl.obs.d.ts +12 -0
- package/types/Controls/stepProgramPicker.obs.d.ts +130 -0
- package/types/Controls/stepProgramStepStatusPicker.obs.d.ts +50 -0
- package/types/Controls/stepProgramStepTypePicker.obs.d.ts +50 -0
- package/types/Controls/stepStatusPicker.obs.d.ts +139 -0
- package/types/Controls/stepTypePicker.obs.d.ts +139 -0
- package/types/Controls/streakTypePicker.obs.d.ts +130 -0
- package/types/Controls/structuredContentEditor.obs.d.ts +93 -0
- package/types/Controls/switch.obs.d.ts +27 -0
- package/types/Controls/tabbedBar.obs.d.ts +42 -0
- package/types/Controls/tabbedContent.obs.d.ts +22 -0
- package/types/Controls/tagList.obs.d.ts +116 -0
- package/types/Controls/textBox.obs.d.ts +117 -0
- package/types/Controls/timeIntervalPicker.obs.d.ts +67 -0
- package/types/Controls/timePicker.obs.d.ts +78 -0
- package/types/Controls/toggle.obs.d.ts +71 -0
- package/types/Controls/transitionVerticalCollapse.obs.d.ts +22 -0
- package/types/Controls/treeItemPicker.obs.d.ts +132 -0
- package/types/Controls/treeList.obs.d.ts +90 -0
- package/types/Controls/urlLinkBox.obs.d.ts +31 -0
- package/types/Controls/valueDetailList.obs.d.ts +14 -0
- package/types/Controls/valueList.obs.d.ts +56 -0
- package/types/Controls/wordCloud.obs.d.ts +233 -0
- package/types/Controls/workflowActionTypePicker.obs.d.ts +18 -0
- package/types/Controls/workflowBasePicker.obs.d.ts +139 -0
- package/types/Controls/workflowPicker.obs.d.ts +39 -0
- package/types/Controls/workflowTypePicker.obs.d.ts +94 -0
- package/types/Core/Controls/financialGateway.d.ts +16 -0
- package/types/Core/Controls/grid.d.ts +406 -0
- package/types/Core/Controls/valueDetailListItemBuilder.d.ts +30 -0
- package/types/Core/Core/personPreferences.d.ts +92 -0
- package/types/Core/Reporting/comparisonType.d.ts +39 -0
- package/types/Core/Reporting/comparisonTypeOptions.d.ts +14 -0
- package/types/Core/Reporting/filterExpressionType.d.ts +28 -0
- package/types/Core/Reporting/filterMode.d.ts +7 -0
- package/types/Core/Utilities/colorPair.d.ts +25 -0
- package/types/Core/Utilities/rockColor.d.ts +270 -0
- package/types/Directives/dragDrop.d.ts +130 -0
- package/types/Directives/dragScroll.d.ts +28 -0
- package/types/Enums/AI/chatMessageRole.d.ts +13 -0
- package/types/Enums/AI/moderationFlags.d.ts +21 -0
- package/types/Enums/Blocks/Cms/ContentCollectionView/searchOrder.d.ts +20 -0
- package/types/Enums/Blocks/Crm/FamilyPreRegistration/communicationPreference.d.ts +15 -0
- package/types/Enums/Blocks/Crm/familyPreRegistrationCommunicationPreference.d.ts +15 -0
- package/types/Enums/Blocks/Engagement/SignUp/registerMode.d.ts +13 -0
- package/types/Enums/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailDateSelectionMode.d.ts +15 -0
- package/types/Enums/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailLocationSelectionMode.d.ts +13 -0
- package/types/Enums/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailScheduleSelectionMode.d.ts +13 -0
- package/types/Enums/Blocks/Group/Scheduling/resourceListSourceType.d.ts +19 -0
- package/types/Enums/Blocks/Group/Scheduling/toolboxActionType.d.ts +16 -0
- package/types/Enums/Blocks/Group/Scheduling/toolboxScheduleRowActionType.d.ts +15 -0
- package/types/Enums/Blocks/Group/Scheduling/toolboxScheduleRowConfirmationStatus.d.ts +15 -0
- package/types/Enums/Blocks/Group/Scheduling/updateSchedulePreferenceMode.d.ts +19 -0
- package/types/Enums/Blocks/Security/AccountEntry/accountEntryStep.d.ts +19 -0
- package/types/Enums/Blocks/Security/ConfirmAccount/confirmAccountViewType.d.ts +17 -0
- package/types/Enums/Blocks/Security/ForgotUserName/sendInstructionsResultType.d.ts +16 -0
- package/types/Enums/Blocks/Security/Login/loginMethod.d.ts +11 -0
- package/types/Enums/Blocks/Security/Login/passwordlessLoginStep.d.ts +11 -0
- package/types/Enums/Cms/blockLocation.d.ts +15 -0
- package/types/Enums/Cms/botGuardianLevel.d.ts +13 -0
- package/types/Enums/Cms/contentChannelDateType.d.ts +13 -0
- package/types/Enums/Cms/contentChannelItemStatus.d.ts +13 -0
- package/types/Enums/Cms/contentCollectionFilterControl.d.ts +25 -0
- package/types/Enums/Cms/contentControlType.d.ts +11 -0
- package/types/Enums/Cms/contentLibraryItemExperienceLevel.d.ts +13 -0
- package/types/Enums/Cms/displayInNavWhen.d.ts +13 -0
- package/types/Enums/Cms/persistedDatasetDataFormat.d.ts +9 -0
- package/types/Enums/Cms/persistedDatasetScriptType.d.ts +9 -0
- package/types/Enums/Cms/siteType.d.ts +13 -0
- package/types/Enums/Cms/tagType.d.ts +11 -0
- package/types/Enums/Communication/communicationMessageFilter.d.ts +13 -0
- package/types/Enums/Communication/communicationRecipientStatus.d.ts +19 -0
- package/types/Enums/Communication/communicationStatus.d.ts +20 -0
- package/types/Enums/Communication/notificationClassification.d.ts +15 -0
- package/types/Enums/Communication/segmentCriteria.d.ts +11 -0
- package/types/Enums/Connection/connectionRequestViewModelSortProperty.d.ts +41 -0
- package/types/Enums/Connection/connectionTypeViewMode.d.ts +11 -0
- package/types/Enums/Connection/connectionWorkflowTriggerType.d.ts +27 -0
- package/types/Enums/Connection/groupRequirementsFilter.d.ts +13 -0
- package/types/Enums/Controls/alertType.d.ts +12 -0
- package/types/Enums/Controls/btnSize.d.ts +11 -0
- package/types/Enums/Controls/btnType.d.ts +17 -0
- package/types/Enums/Controls/controlLazyMode.d.ts +18 -0
- package/types/Enums/Controls/dayOfWeek.d.ts +21 -0
- package/types/Enums/Controls/detailPanelMode.d.ts +13 -0
- package/types/Enums/Controls/gatewayEmitStrings.d.ts +11 -0
- package/types/Enums/Controls/mediaSelectorMode.d.ts +11 -0
- package/types/Enums/Controls/mergeTemplateOwnership.d.ts +28 -0
- package/types/Enums/Controls/modalAlertType.d.ts +9 -0
- package/types/Enums/Controls/pickerDisplayStyle.d.ts +11 -0
- package/types/Enums/Controls/requirementLevel.d.ts +24 -0
- package/types/Enums/Controls/rockCacheabilityType.d.ts +10 -0
- package/types/Enums/Controls/slidingDateRangeType.d.ts +21 -0
- package/types/Enums/Controls/timeUnitType.d.ts +17 -0
- package/types/Enums/Core/Grid/booleanFilterMethod.d.ts +13 -0
- package/types/Enums/Core/Grid/columnPositionAnchor.d.ts +20 -0
- package/types/Enums/Core/Grid/dateFilterMethod.d.ts +79 -0
- package/types/Enums/Core/Grid/numberFilterMethod.d.ts +30 -0
- package/types/Enums/Core/Grid/pickExistingFilterMethod.d.ts +11 -0
- package/types/Enums/Core/Grid/textFilterMethod.d.ts +19 -0
- package/types/Enums/Core/addressInvalidReason.d.ts +13 -0
- package/types/Enums/Core/auditType.d.ts +13 -0
- package/types/Enums/Core/cameraBarcodeConfiguration.d.ts +15 -0
- package/types/Enums/Core/changeType.d.ts +10 -0
- package/types/Enums/Core/colorDepth.d.ts +19 -0
- package/types/Enums/Core/colorRecipe.d.ts +19 -0
- package/types/Enums/Core/colorScheme.d.ts +11 -0
- package/types/Enums/Core/followingSuggestedStatus.d.ts +13 -0
- package/types/Enums/Core/format.d.ts +25 -0
- package/types/Enums/Core/jobNotificationStatus.d.ts +15 -0
- package/types/Enums/Core/keyboardInputMode.d.ts +21 -0
- package/types/Enums/Core/kioskType.d.ts +13 -0
- package/types/Enums/Core/matchFlag.d.ts +17 -0
- package/types/Enums/Core/moveType.d.ts +15 -0
- package/types/Enums/Core/ncoaType.d.ts +15 -0
- package/types/Enums/Core/noteApprovalStatus.d.ts +15 -0
- package/types/Enums/Core/noteFormatType.d.ts +19 -0
- package/types/Enums/Core/notificationMessageActionType.d.ts +28 -0
- package/types/Enums/Core/printFrom.d.ts +11 -0
- package/types/Enums/Core/printTo.d.ts +13 -0
- package/types/Enums/Core/processed.d.ts +17 -0
- package/types/Enums/Core/resolution.d.ts +17 -0
- package/types/Enums/Core/signatureDocumentStatus.d.ts +17 -0
- package/types/Enums/Core/signatureType.d.ts +11 -0
- package/types/Enums/Core/specialRole.d.ts +15 -0
- package/types/Enums/Core/timeIntervalUnit.d.ts +19 -0
- package/types/Enums/Core/updatedAddressType.d.ts +13 -0
- package/types/Enums/Crm/ageBracket.d.ts +27 -0
- package/types/Enums/Crm/ageClassification.d.ts +13 -0
- package/types/Enums/Crm/assessmentRequestStatus.d.ts +20 -0
- package/types/Enums/Crm/authenticationServiceType.d.ts +11 -0
- package/types/Enums/Crm/emailPreference.d.ts +13 -0
- package/types/Enums/Crm/gender.d.ts +13 -0
- package/types/Enums/Crm/personalizationType.d.ts +11 -0
- package/types/Enums/Engagement/streakOccurrenceFrequency.d.ts +15 -0
- package/types/Enums/Engagement/streakStructureType.d.ts +25 -0
- package/types/Enums/Event/attendanceGraphBy.d.ts +17 -0
- package/types/Enums/Event/attendanceStatus.d.ts +13 -0
- package/types/Enums/Event/checkInStatus.d.ts +24 -0
- package/types/Enums/Event/interactiveExperienceApprovalStatus.d.ts +13 -0
- package/types/Enums/Event/interactiveExperienceCampusBehavior.d.ts +29 -0
- package/types/Enums/Event/interactiveExperiencePushNotificationType.d.ts +25 -0
- package/types/Enums/Event/registrantsSameFamily.d.ts +13 -0
- package/types/Enums/Event/registrarOption.d.ts +18 -0
- package/types/Enums/Event/registrationCostSummaryType.d.ts +12 -0
- package/types/Enums/Event/registrationFeeType.d.ts +11 -0
- package/types/Enums/Event/registrationFieldSource.d.ts +15 -0
- package/types/Enums/Event/registrationPersonFieldType.d.ts +38 -0
- package/types/Enums/Event/rsvp.d.ts +18 -0
- package/types/Enums/Event/scheduledAttendanceItemMatchesPreference.d.ts +13 -0
- package/types/Enums/Event/scheduledAttendanceItemStatus.d.ts +15 -0
- package/types/Enums/Event/schedulerResourceGroupMemberFilterType.d.ts +11 -0
- package/types/Enums/Event/sessionStatus.d.ts +13 -0
- package/types/Enums/Event/signatureDocumentAction.d.ts +11 -0
- package/types/Enums/Finance/alertType.d.ts +11 -0
- package/types/Enums/Finance/batchStatus.d.ts +22 -0
- package/types/Enums/Finance/benevolenceWorkflowTriggerType.d.ts +15 -0
- package/types/Enums/Finance/financialScheduledTransactionStatus.d.ts +19 -0
- package/types/Enums/Finance/mICRStatus.d.ts +14 -0
- package/types/Enums/Finance/transactionGraphBy.d.ts +13 -0
- package/types/Enums/Group/appliesToAgeClassification.d.ts +13 -0
- package/types/Enums/Group/attendanceRecordRequiredForCheckIn.d.ts +13 -0
- package/types/Enums/Group/attendanceRule.d.ts +16 -0
- package/types/Enums/Group/dueDateType.d.ts +15 -0
- package/types/Enums/Group/groupCapacityRule.d.ts +13 -0
- package/types/Enums/Group/groupMemberStatus.d.ts +13 -0
- package/types/Enums/Group/meetsGroupRequirement.d.ts +14 -0
- package/types/Enums/Group/participationType.d.ts +11 -0
- package/types/Enums/Group/requirementCheckType.d.ts +13 -0
- package/types/Enums/Group/scheduleConfirmationLogic.d.ts +11 -0
- package/types/Enums/Net/cookieSameSiteMode.d.ts +36 -0
- package/types/Enums/Net/responseElementLocation.d.ts +20 -0
- package/types/Enums/Reporting/comparisonType.d.ts +40 -0
- package/types/Enums/Reporting/fieldFilterSourceType.d.ts +21 -0
- package/types/Enums/Reporting/filterExpressionType.d.ts +17 -0
- package/types/Enums/Reporting/metricNumericDataType.d.ts +13 -0
- package/types/Enums/Reporting/metricValueType.d.ts +11 -0
- package/types/Enums/Reporting/reportFieldType.d.ts +10 -0
- package/types/Enums/Reporting/unitType.d.ts +13 -0
- package/types/Enums/Workflow/workflowActionFormPersonEntryOption.d.ts +13 -0
- package/types/Enums/Workflow/workflowActionFormShowHideOption.d.ts +11 -0
- package/types/Enums/Workflow/workflowLoggingLevel.d.ts +15 -0
- package/types/Enums/Workflow/workflowTriggerType.d.ts +19 -0
- package/types/Enums/Workflow/workflowTriggerValueChangeType.d.ts +11 -0
- package/types/FieldTypes/addressField.partial.d.ts +19 -0
- package/types/FieldTypes/addressFieldComponents.d.ts +39 -0
- package/types/FieldTypes/backgroundCheckField.partial.d.ts +14 -0
- package/types/FieldTypes/backgroundCheckFieldComponents.d.ts +71 -0
- package/types/FieldTypes/booleanField.partial.d.ts +19 -0
- package/types/FieldTypes/booleanFieldComponents.d.ts +107 -0
- package/types/FieldTypes/campusField.partial.d.ts +29 -0
- package/types/FieldTypes/campusFieldComponents.d.ts +99 -0
- package/types/FieldTypes/campusesField.partial.d.ts +26 -0
- package/types/FieldTypes/campusesFieldComponents.d.ts +72 -0
- package/types/FieldTypes/categoriesField.partial.d.ts +16 -0
- package/types/FieldTypes/categoriesFieldComponents.d.ts +66 -0
- package/types/FieldTypes/categorizedDefinedValueField.partial.d.ts +18 -0
- package/types/FieldTypes/categorizedDefinedValueFieldComponents.d.ts +70 -0
- package/types/FieldTypes/categoryField.partial.d.ts +16 -0
- package/types/FieldTypes/categoryFieldComponents.d.ts +66 -0
- package/types/FieldTypes/checkListField.partial.d.ts +21 -0
- package/types/FieldTypes/checkListFieldComponents.d.ts +93 -0
- package/types/FieldTypes/colorField.partial.d.ts +9 -0
- package/types/FieldTypes/colorFieldComponents.d.ts +69 -0
- package/types/FieldTypes/colorSelectorComponents.d.ts +73 -0
- package/types/FieldTypes/colorSelectorField.partial.d.ts +12 -0
- package/types/FieldTypes/colorSelectorField.types.partial.d.ts +4 -0
- package/types/FieldTypes/colorSelectorField.utils.partial.d.ts +23 -0
- package/types/FieldTypes/communicationPreferenceField.partial.d.ts +15 -0
- package/types/FieldTypes/communicationPreferenceFieldComponents.d.ts +70 -0
- package/types/FieldTypes/connectionTypeField.partial.d.ts +13 -0
- package/types/FieldTypes/connectionTypeFieldComponents.d.ts +35 -0
- package/types/FieldTypes/connectionTypesField.partial.d.ts +13 -0
- package/types/FieldTypes/connectionTypesFieldComponents.d.ts +36 -0
- package/types/FieldTypes/currencyField.partial.d.ts +12 -0
- package/types/FieldTypes/currencyFieldComponents.d.ts +31 -0
- package/types/FieldTypes/dateField.partial.d.ts +49 -0
- package/types/FieldTypes/dateFieldComponents.d.ts +123 -0
- package/types/FieldTypes/dateRangeField.partial.d.ts +11 -0
- package/types/FieldTypes/dateRangeFieldComponents.d.ts +31 -0
- package/types/FieldTypes/dateTimeField.partial.d.ts +38 -0
- package/types/FieldTypes/dateTimeFieldComponents.d.ts +113 -0
- package/types/FieldTypes/dayOfWeekField.partial.d.ts +11 -0
- package/types/FieldTypes/dayOfWeekFieldComponents.d.ts +59 -0
- package/types/FieldTypes/daysOfWeekField.partial.d.ts +12 -0
- package/types/FieldTypes/daysOfWeekFieldComponents.d.ts +34 -0
- package/types/FieldTypes/decimalField.partial.d.ts +12 -0
- package/types/FieldTypes/decimalFieldComponents.d.ts +31 -0
- package/types/FieldTypes/decimalRangeField.partial.d.ts +11 -0
- package/types/FieldTypes/decimalRangeFieldComponents.d.ts +32 -0
- package/types/FieldTypes/definedValueField.partial.d.ts +70 -0
- package/types/FieldTypes/definedValueFieldComponents.d.ts +105 -0
- package/types/FieldTypes/definedValueRangeField.partial.d.ts +25 -0
- package/types/FieldTypes/definedValueRangeFieldComponents.d.ts +36 -0
- package/types/FieldTypes/emailField.partial.d.ts +13 -0
- package/types/FieldTypes/emailFieldComponents.d.ts +61 -0
- package/types/FieldTypes/fieldType.d.ts +25 -0
- package/types/FieldTypes/fileField.partial.d.ts +28 -0
- package/types/FieldTypes/fileFieldComponents.d.ts +62 -0
- package/types/FieldTypes/financialAccountField.partial.d.ts +17 -0
- package/types/FieldTypes/financialAccountFieldComponents.d.ts +62 -0
- package/types/FieldTypes/financialAccountsField.partial.d.ts +17 -0
- package/types/FieldTypes/financialAccountsFieldComponents.d.ts +62 -0
- package/types/FieldTypes/genderField.partial.d.ts +10 -0
- package/types/FieldTypes/genderFieldComponents.d.ts +57 -0
- package/types/FieldTypes/groupAndRoleField.partial.d.ts +21 -0
- package/types/FieldTypes/groupAndRoleFieldComponents.d.ts +72 -0
- package/types/FieldTypes/groupField.partial.d.ts +11 -0
- package/types/FieldTypes/groupFieldComponents.d.ts +35 -0
- package/types/FieldTypes/groupLocationTypeField.partial.d.ts +15 -0
- package/types/FieldTypes/groupLocationTypeFieldComponents.d.ts +65 -0
- package/types/FieldTypes/groupMemberField.partial.d.ts +16 -0
- package/types/FieldTypes/groupMemberFieldComponents.d.ts +64 -0
- package/types/FieldTypes/groupRoleField.partial.d.ts +14 -0
- package/types/FieldTypes/groupRoleFieldComponents.d.ts +64 -0
- package/types/FieldTypes/groupTypeField.partial.d.ts +15 -0
- package/types/FieldTypes/groupTypeFieldComponents.d.ts +59 -0
- package/types/FieldTypes/groupTypesField.partial.d.ts +15 -0
- package/types/FieldTypes/groupTypesFieldComponents.d.ts +55 -0
- package/types/FieldTypes/imageField.partial.d.ts +31 -0
- package/types/FieldTypes/imageFieldComponents.d.ts +63 -0
- package/types/FieldTypes/index.d.ts +1 -0
- package/types/FieldTypes/integerField.partial.d.ts +12 -0
- package/types/FieldTypes/integerFieldComponents.d.ts +31 -0
- package/types/FieldTypes/integerRangeField.partial.d.ts +11 -0
- package/types/FieldTypes/integerRangeFieldComponents.d.ts +32 -0
- package/types/FieldTypes/keyValueListField.partial.d.ts +31 -0
- package/types/FieldTypes/keyValueListFieldComponents.d.ts +72 -0
- package/types/FieldTypes/locationListField.partial.d.ts +26 -0
- package/types/FieldTypes/locationListFieldComponents.d.ts +76 -0
- package/types/FieldTypes/mediaSelectorField.partial.d.ts +14 -0
- package/types/FieldTypes/mediaSelectorFieldComponents.d.ts +70 -0
- package/types/FieldTypes/memoField.partial.d.ts +18 -0
- package/types/FieldTypes/memoFieldComponents.d.ts +91 -0
- package/types/FieldTypes/monthDayField.partial.d.ts +10 -0
- package/types/FieldTypes/monthDayFieldComponents.d.ts +31 -0
- package/types/FieldTypes/multiSelectField.partial.d.ts +24 -0
- package/types/FieldTypes/multiSelectFieldComponents.d.ts +101 -0
- package/types/FieldTypes/noteTypeField.partial.d.ts +17 -0
- package/types/FieldTypes/noteTypeFieldComponents.d.ts +63 -0
- package/types/FieldTypes/noteTypesField.partial.d.ts +18 -0
- package/types/FieldTypes/noteTypesFieldComponents.d.ts +65 -0
- package/types/FieldTypes/personField.partial.d.ts +14 -0
- package/types/FieldTypes/personFieldComponents.d.ts +58 -0
- package/types/FieldTypes/phoneNumberField.partial.d.ts +10 -0
- package/types/FieldTypes/phoneNumberFieldComponents.d.ts +32 -0
- package/types/FieldTypes/rangeSliderField.partial.d.ts +16 -0
- package/types/FieldTypes/rangeSliderFieldComponents.d.ts +59 -0
- package/types/FieldTypes/ratingField.partial.d.ts +21 -0
- package/types/FieldTypes/ratingFieldComponents.d.ts +57 -0
- package/types/FieldTypes/registryEntryField.partial.d.ts +7 -0
- package/types/FieldTypes/registryEntryFieldComponents.d.ts +32 -0
- package/types/FieldTypes/reminderTypeField.partial.d.ts +19 -0
- package/types/FieldTypes/reminderTypeFieldComponents.d.ts +36 -0
- package/types/FieldTypes/reminderTypesField.partial.d.ts +17 -0
- package/types/FieldTypes/reminderTypesFieldComponents.d.ts +57 -0
- package/types/FieldTypes/scheduleField.partial.d.ts +11 -0
- package/types/FieldTypes/scheduleFieldComponents.d.ts +35 -0
- package/types/FieldTypes/schedulesField.partial.d.ts +11 -0
- package/types/FieldTypes/schedulesFieldComponents.d.ts +35 -0
- package/types/FieldTypes/singleSelectField.partial.d.ts +21 -0
- package/types/FieldTypes/singleSelectFieldComponents.d.ts +101 -0
- package/types/FieldTypes/slidingDateRangeField.partial.d.ts +15 -0
- package/types/FieldTypes/slidingDateRangeFieldComponents.d.ts +66 -0
- package/types/FieldTypes/socialMediaAccountField.partial.d.ts +19 -0
- package/types/FieldTypes/socialMediaAccountFieldComponents.d.ts +58 -0
- package/types/FieldTypes/ssnField.partial.d.ts +8 -0
- package/types/FieldTypes/ssnFieldComponents.d.ts +30 -0
- package/types/FieldTypes/structureContentEditorField.partial.d.ts +7 -0
- package/types/FieldTypes/structureContentEditorFieldComponents.d.ts +30 -0
- package/types/FieldTypes/textField.partial.d.ts +15 -0
- package/types/FieldTypes/textFieldComponents.d.ts +66 -0
- package/types/FieldTypes/timeField.partial.d.ts +12 -0
- package/types/FieldTypes/timeFieldComponents.d.ts +34 -0
- package/types/FieldTypes/timeZoneField.partial.d.ts +14 -0
- package/types/FieldTypes/timeZoneFieldComponents.d.ts +32 -0
- package/types/FieldTypes/urlLinkField.partial.d.ts +17 -0
- package/types/FieldTypes/urlLinkFieldComponents.d.ts +59 -0
- package/types/FieldTypes/utils.d.ts +111 -0
- package/types/FieldTypes/valueListField.partial.d.ts +21 -0
- package/types/FieldTypes/valueListFieldComponents.d.ts +67 -0
- package/types/PageState/index.d.ts +19 -0
- package/types/PageState/state.d.ts +14 -0
- package/types/SystemGuids/achievementType.d.ts +6 -0
- package/types/SystemGuids/assessmentType.d.ts +13 -0
- package/types/SystemGuids/attribute.d.ts +382 -0
- package/types/SystemGuids/authScope.d.ts +13 -0
- package/types/SystemGuids/badge.d.ts +33 -0
- package/types/SystemGuids/benevolenceType.d.ts +4 -0
- package/types/SystemGuids/binaryFile.d.ts +4 -0
- package/types/SystemGuids/binaryFiletype.d.ts +31 -0
- package/types/SystemGuids/block.d.ts +63 -0
- package/types/SystemGuids/blockType.d.ts +161 -0
- package/types/SystemGuids/category.d.ts +103 -0
- package/types/SystemGuids/communication.d.ts +7 -0
- package/types/SystemGuids/connectionActivityType.d.ts +13 -0
- package/types/SystemGuids/contentChannelType.d.ts +5 -0
- package/types/SystemGuids/definedType.d.ts +196 -0
- package/types/SystemGuids/definedValue.d.ts +511 -0
- package/types/SystemGuids/entityType.d.ts +739 -0
- package/types/SystemGuids/fieldType.d.ts +287 -0
- package/types/SystemGuids/financialAccount.d.ts +9 -0
- package/types/SystemGuids/financialStatementTemplate.d.ts +4 -0
- package/types/SystemGuids/followingEventType.d.ts +19 -0
- package/types/SystemGuids/group.d.ts +41 -0
- package/types/SystemGuids/groupRole.d.ts +61 -0
- package/types/SystemGuids/groupType.d.ts +39 -0
- package/types/SystemGuids/interactionChannel.d.ts +22 -0
- package/types/SystemGuids/layout.d.ts +17 -0
- package/types/SystemGuids/metric.d.ts +11 -0
- package/types/SystemGuids/noteType.d.ts +27 -0
- package/types/SystemGuids/page.d.ts +1709 -0
- package/types/SystemGuids/pageRoute.d.ts +38 -0
- package/types/SystemGuids/person.d.ts +6 -0
- package/types/SystemGuids/serviceJob.d.ts +141 -0
- package/types/SystemGuids/signatureDocumentTemplate.d.ts +4 -0
- package/types/SystemGuids/site.d.ts +9 -0
- package/types/SystemGuids/snippetType.d.ts +5 -0
- package/types/SystemGuids/streakType.d.ts +4 -0
- package/types/SystemGuids/systemCommunication.d.ts +88 -0
- package/types/SystemGuids/systemEmail.d.ts +43 -0
- package/types/SystemGuids/workflowType.d.ts +9 -0
- package/types/Templates/block.d.ts +14 -0
- package/types/Templates/detailBlock.d.ts +363 -0
- package/types/Templates/rockBlock.partial.d.ts +272 -0
- package/types/Templates/rockPage.d.ts +40 -0
- package/types/Types/Controls/autocomplete.d.ts +29 -0
- package/types/Types/Controls/datePartsPicker.d.ts +5 -0
- package/types/Types/Controls/dateRangePicker.d.ts +4 -0
- package/types/Types/Controls/dropDownMenu.d.ts +33 -0
- package/types/Types/Controls/geo.d.ts +58 -0
- package/types/Types/Controls/grid.d.ts +897 -0
- package/types/Types/Controls/itemsWithPreAndPostHtml.d.ts +5 -0
- package/types/Types/Controls/keyValueItem.d.ts +22 -0
- package/types/Types/Controls/numberRangeBox.d.ts +10 -0
- package/types/Types/Controls/numberUpDownGroup.d.ts +6 -0
- package/types/Types/Controls/panelAction.d.ts +47 -0
- package/types/Types/Controls/progressTracker.d.ts +6 -0
- package/types/Types/Controls/valueDetailListItem.d.ts +32 -0
- package/types/Types/Core/personPreferences.d.ts +101 -0
- package/types/Types/Reporting/comparisonValue.d.ts +28 -0
- package/types/Types/Utility/block.d.ts +42 -0
- package/types/Types/Utility/component.d.ts +29 -0
- package/types/Types/Utility/http.d.ts +40 -0
- package/types/Types/Utility/support.d.ts +26 -0
- package/types/Types/fieldType.d.ts +173 -0
- package/types/Types/index.d.ts +18 -0
- package/types/Types/validationRules.d.ts +44 -0
- package/types/Utility/address.d.ts +6 -0
- package/types/Utility/arrayUtils.d.ts +11 -0
- package/types/Utility/aspDateFormat.d.ts +9 -0
- package/types/Utility/block.d.ts +186 -0
- package/types/Utility/booleanUtils.d.ts +16 -0
- package/types/Utility/bus.d.ts +23 -0
- package/types/Utility/cache.d.ts +32 -0
- package/types/Utility/cancellation.d.ts +58 -0
- package/types/Utility/component.d.ts +199 -0
- package/types/Utility/dateKey.d.ts +41 -0
- package/types/Utility/dialogs.d.ts +38 -0
- package/types/Utility/email.d.ts +5 -0
- package/types/Utility/enumUtils.d.ts +9 -0
- package/types/Utility/fieldTypes.d.ts +20 -0
- package/types/Utility/form.d.ts +33 -0
- package/types/Utility/fullscreen.d.ts +33 -0
- package/types/Utility/geo.d.ts +45 -0
- package/types/Utility/guid.d.ts +39 -0
- package/types/Utility/http.d.ts +94 -0
- package/types/Utility/internetCalendar.d.ts +242 -0
- package/types/Utility/lava.d.ts +1 -0
- package/types/Utility/linq.d.ts +174 -0
- package/types/Utility/listItemBag.d.ts +2 -0
- package/types/Utility/mergeField.d.ts +8 -0
- package/types/Utility/numberUtils.d.ts +54 -0
- package/types/Utility/objectUtils.d.ts +1 -0
- package/types/Utility/page.d.ts +49 -0
- package/types/Utility/phone.d.ts +28 -0
- package/types/Utility/popover.d.ts +16 -0
- package/types/Utility/promiseUtils.d.ts +43 -0
- package/types/Utility/realTime.d.ts +79 -0
- package/types/Utility/rockDateTime.d.ts +316 -0
- package/types/Utility/slidingDateRange.d.ts +82 -0
- package/types/Utility/stringUtils.d.ts +120 -0
- package/types/Utility/structuredContentEditor.d.ts +8 -0
- package/types/Utility/suspense.d.ts +98 -0
- package/types/Utility/tooltip.d.ts +22 -0
- package/types/Utility/treeItemProviders.d.ts +512 -0
- package/types/Utility/url.d.ts +39 -0
- package/types/Utility/util.d.ts +26 -0
- package/types/Utility/validationRules.d.ts +49 -0
- package/types/ValidationRules/index.d.ts +3 -0
- package/types/ViewModels/Blocks/Bus/QueueDetail/queueBag.d.ts +48 -0
- package/types/ViewModels/Blocks/Bus/QueueDetail/queueDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Cms/AdaptiveMessageAdaptationDetail/adaptiveMessageAdaptationBag.d.ts +56 -0
- package/types/ViewModels/Blocks/Cms/AdaptiveMessageAdaptationDetail/adaptiveMessageAdaptationDetailOptionsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Cms/AdaptiveMessageDetail/adaptiveMessageBag.d.ts +69 -0
- package/types/ViewModels/Blocks/Cms/AdaptiveMessageDetail/adaptiveMessageDetailOptionsBag.d.ts +27 -0
- package/types/ViewModels/Blocks/Cms/AdaptiveMessageList/adaptiveMessageListOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Cms/BlockTypeDetail/blockTypeBag.d.ts +66 -0
- package/types/ViewModels/Blocks/Cms/BlockTypeDetail/blockTypeDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/attributeFilterBag.d.ts +62 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/availableContentSourceBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/contentCollectionBag.d.ts +83 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/contentCollectionDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/contentSourceBag.d.ts +83 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/customFieldFilterBag.d.ts +48 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionDetail/filterSettingsBag.d.ts +62 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionView/contentCollectionInitializationBox.d.ts +79 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionView/contentCollectionListItemBag.d.ts +47 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionView/customSettingsBag.d.ts +121 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionView/customSettingsOptionsBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionView/filterOptionsBag.d.ts +41 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionView/searchFilterBag.d.ts +49 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionView/searchQueryBag.d.ts +52 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionView/searchResultBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Cms/ContentCollectionView/searchResultSourceBag.d.ts +54 -0
- package/types/ViewModels/Blocks/Cms/LavaShortcodeDetail/lavaShortcodeBag.d.ts +73 -0
- package/types/ViewModels/Blocks/Cms/LavaShortcodeDetail/lavaShortcodeDetailOptionsBag.d.ts +29 -0
- package/types/ViewModels/Blocks/Cms/LayoutDetail/layoutBag.d.ts +53 -0
- package/types/ViewModels/Blocks/Cms/LayoutDetail/layoutDetailOptionsBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Cms/LibraryViewer/libraryViewerDownloadItemBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Cms/LibraryViewer/libraryViewerInitializationBox.d.ts +61 -0
- package/types/ViewModels/Blocks/Cms/LibraryViewer/libraryViewerItemBag.d.ts +91 -0
- package/types/ViewModels/Blocks/Cms/LibraryViewer/libraryViewerItemFiltersBag.d.ts +49 -0
- package/types/ViewModels/Blocks/Cms/LibraryViewer/libraryViewerValidationResultsBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Cms/MediaAccountDetail/mediaAccountBag.d.ts +55 -0
- package/types/ViewModels/Blocks/Cms/MediaAccountDetail/mediaAccountDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Cms/MediaFolderDetail/mediaFolderBag.d.ts +79 -0
- package/types/ViewModels/Blocks/Cms/MediaFolderDetail/mediaFolderDetailOptionsBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Cms/PageRouteDetail/pageRouteBag.d.ts +55 -0
- package/types/ViewModels/Blocks/Cms/PageRouteDetail/pageRouteDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Cms/PageShortLinkDetail/pageShortLinkBag.d.ts +48 -0
- package/types/ViewModels/Blocks/Cms/PageShortLinkDetail/pageShortLinkDetailOptionsBag.d.ts +29 -0
- package/types/ViewModels/Blocks/Cms/PersistedDatasetDetail/persistedDatasetBag.d.ts +106 -0
- package/types/ViewModels/Blocks/Cms/PersistedDatasetDetail/persistedDatasetDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Cms/PersonalLinkSectionDetail/personalLinkSectionBag.d.ts +48 -0
- package/types/ViewModels/Blocks/Cms/PersonalLinkSectionDetail/personalLinkSectionDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Cms/SiteDetail/siteBag.d.ts +161 -0
- package/types/ViewModels/Blocks/Cms/SiteDetail/siteDetailOptionsBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Cms/SiteList/siteListOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/emailPreferenceEntryInitializationBox.d.ts +90 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/emailPreferenceEntrySaveRequestBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Communication/EmailPreferenceEntry/emailPreferenceEntrySaveResponseBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Communication/SnippetDetail/snippetBag.d.ts +61 -0
- package/types/ViewModels/Blocks/Communication/SnippetDetail/snippetDetailOptionsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Communication/SnippetTypeDetail/snippetTypeBag.d.ts +54 -0
- package/types/ViewModels/Blocks/Communication/SnippetTypeDetail/snippetTypeDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Communication/SystemPhoneNumberDetail/systemPhoneNumberBag.d.ts +87 -0
- package/types/ViewModels/Blocks/Communication/SystemPhoneNumberDetail/systemPhoneNumberDetailOptionsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Core/AssetStorageProviderDetail/assetStorageProviderBag.d.ts +48 -0
- package/types/ViewModels/Blocks/Core/AssetStorageProviderDetail/assetStorageProviderDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Core/BinaryFileDetail/binaryFileBag.d.ts +70 -0
- package/types/ViewModels/Blocks/Core/BinaryFileDetail/binaryFileDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Core/CampusDetail/campusBag.d.ts +83 -0
- package/types/ViewModels/Blocks/Core/CampusDetail/campusDetailOptionsBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Core/CampusDetail/campusScheduleBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Core/CampusList/campusListOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Core/CategoryDetail/categoryBag.d.ts +67 -0
- package/types/ViewModels/Blocks/Core/CategoryDetail/categoryDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Core/CategoryDetail/customSettingsBag.d.ts +46 -0
- package/types/ViewModels/Blocks/Core/CategoryDetail/customSettingsOptionsBag.d.ts +29 -0
- package/types/ViewModels/Blocks/Core/FollowingEventTypeDetail/followingEventTypeBag.d.ts +73 -0
- package/types/ViewModels/Blocks/Core/FollowingEventTypeDetail/followingEventTypeDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Core/InteractionChannelDetail/interactionChannelBag.d.ts +89 -0
- package/types/ViewModels/Blocks/Core/InteractionChannelDetail/interactionChannelDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Core/LocationDetail/addressStandardizationResultBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Core/LocationDetail/locationBag.d.ts +85 -0
- package/types/ViewModels/Blocks/Core/LocationDetail/locationDetailOptionsBag.d.ts +29 -0
- package/types/ViewModels/Blocks/Core/NoteTypeDetail/noteTypeBag.d.ts +82 -0
- package/types/ViewModels/Blocks/Core/NoteTypeDetail/noteTypeDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Core/Notes/deleteNoteRequestBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Core/Notes/editNoteRequestBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Core/Notes/noteBag.d.ts +82 -0
- package/types/ViewModels/Blocks/Core/Notes/noteEditBag.d.ts +52 -0
- package/types/ViewModels/Blocks/Core/Notes/noteTypeBag.d.ts +60 -0
- package/types/ViewModels/Blocks/Core/Notes/notesInitializationBox.d.ts +87 -0
- package/types/ViewModels/Blocks/Core/Notes/saveNoteRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Core/Notes/watchNoteRequestBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Core/NotificationMessageList/getMessageActionRequestBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Core/NotificationMessageList/getMessageActionResponseBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Core/NotificationMessageList/getMessagesRequestBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Core/NotificationMessageList/getMessagesResponseBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Core/NotificationMessageList/markMessageAsReadRequestBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Core/NotificationMessageList/markMessageAsReadResponseBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Core/NotificationMessageList/markMessagesAsReadRequestBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Core/NotificationMessageList/markMessagesAsReadResponseBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Core/NotificationMessageList/notificationMessageBag.d.ts +55 -0
- package/types/ViewModels/Blocks/Core/NotificationMessageList/notificationMessageListInitializationBox.d.ts +37 -0
- package/types/ViewModels/Blocks/Core/ScheduleDetail/scheduleBag.d.ts +87 -0
- package/types/ViewModels/Blocks/Core/ScheduleDetail/scheduleDetailOptionsBag.d.ts +41 -0
- package/types/ViewModels/Blocks/Core/ScheduleDetail/scheduleExclusionBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Core/ServiceJobDetail/serviceJobBag.d.ts +84 -0
- package/types/ViewModels/Blocks/Core/ServiceJobDetail/serviceJobDetailOptionsBag.d.ts +32 -0
- package/types/ViewModels/Blocks/Core/SignatureDocumentTemplateDetail/signatureDocumentTemplateBag.d.ts +81 -0
- package/types/ViewModels/Blocks/Core/SignatureDocumentTemplateDetail/signatureDocumentTemplateDetailOptionsBag.d.ts +32 -0
- package/types/ViewModels/Blocks/Core/SuggestionDetail/suggestionDetailBag.d.ts +63 -0
- package/types/ViewModels/Blocks/Core/SuggestionDetail/suggestionDetailBox.d.ts +54 -0
- package/types/ViewModels/Blocks/Core/TagDetail/tagBag.d.ts +76 -0
- package/types/ViewModels/Blocks/Core/TagDetail/tagDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Crm/AssessmentList/assessmentListBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Crm/AssessmentTypeDetail/assessmentTypeBag.d.ts +69 -0
- package/types/ViewModels/Blocks/Crm/AssessmentTypeDetail/assessmentTypeDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Crm/BadgeDetail/badgeBag.d.ts +57 -0
- package/types/ViewModels/Blocks/Crm/BadgeDetail/badgeDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Crm/DocumentTypeDetail/documentTypeBag.d.ts +75 -0
- package/types/ViewModels/Blocks/Crm/DocumentTypeDetail/documentTypeDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationCreateAccountRequestBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationDateAndTimeFieldBag.d.ts +43 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationDatePickerFieldBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationFieldBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationGetScheduleDatesRequestBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationGetScheduleDatesResponseBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationInitializationBox.d.ts +170 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationPersonBag.d.ts +93 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationSaveRequestBag.d.ts +63 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationSaveResponseBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationScheduleDateBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Crm/FamilyPreRegistration/familyPreRegistrationSmsOptInFieldBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Crm/PersonDetail/Badges/badgesConfigurationBox.d.ts +48 -0
- package/types/ViewModels/Blocks/Crm/PhotoOptOut/photoOptOutBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Engagement/AchievementAttemptDetail/achievementAttemptBag.d.ts +73 -0
- package/types/ViewModels/Blocks/Engagement/AchievementAttemptDetail/achievementAttemptDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpAttendanceDetail/signUpAttendanceBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpAttendanceDetail/signUpAttendanceDetailInitializationBox.d.ts +45 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpAttendanceDetail/signUpAttendeeBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpDetail/signUpDetailInitializationBox.d.ts +40 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderCustomSettingsBag.d.ts +100 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderCustomSettingsOptionsBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderInitializationBox.d.ts +85 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderResultsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpFinder/signUpFinderSelectedFiltersBag.d.ts +57 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegisterInitializationBox.d.ts +66 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegisterRequestBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegisterResponseBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Engagement/SignUp/SignUpRegister/signUpRegistrantBag.d.ts +67 -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 +34 -0
- package/types/ViewModels/Blocks/Engagement/Steps/stepFlowInitializationBox.d.ts +51 -0
- package/types/ViewModels/Blocks/Engagement/StreakDetail/streakBag.d.ts +69 -0
- package/types/ViewModels/Blocks/Engagement/StreakDetail/streakDetailOptionsBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Engagement/StreakTypeDetail/streakTypeBag.d.ts +96 -0
- package/types/ViewModels/Blocks/Engagement/StreakTypeDetail/streakTypeDetailOptionsBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Engagement/StreakTypeExclusionDetail/streakTypeExclusionBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Engagement/StreakTypeExclusionDetail/streakTypeExclusionDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Event/EventCalendarDetail/eventAttributeBag.d.ts +32 -0
- package/types/ViewModels/Blocks/Event/EventCalendarDetail/eventCalendarBag.d.ts +66 -0
- package/types/ViewModels/Blocks/Event/EventCalendarDetail/eventCalendarDetailOptionsBag.d.ts +29 -0
- package/types/ViewModels/Blocks/Event/EventItemDetail/eventCalendarItemAttributeBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Event/EventItemDetail/eventItemBag.d.ts +89 -0
- package/types/ViewModels/Blocks/Event/EventItemDetail/eventItemDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Event/EventItemDetail/eventItemOccurenceAttributeBag.d.ts +32 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/ExperienceManager/experienceManagerInitializationBox.d.ts +72 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/ExperienceManagerOccurrences/experienceManagerOccurrencesInitializationBox.d.ts +48 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/ExperienceVisualizer/experienceVisualizerInitializationBox.d.ts +43 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/ExperienceVisualizer/visualizerOccurrenceBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceActionBag.d.ts +61 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceActionTypeBag.d.ts +67 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceBag.d.ts +155 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceDetailOptionsBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceScheduleBag.d.ts +55 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/InteractiveExperienceDetail/interactiveExperienceVisualizerTypeBag.d.ts +48 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/LiveExperience/liveExperienceInitializationBox.d.ts +57 -0
- package/types/ViewModels/Blocks/Event/InteractiveExperiences/LiveExperienceOccurrences/liveExperienceOccurrencesInitializationBox.d.ts +49 -0
- package/types/ViewModels/Blocks/Event/RegistrationListLavaBox.d.ts +43 -0
- package/types/ViewModels/Blocks/Finance/BusinessDetail/businessDetailBag.d.ts +86 -0
- package/types/ViewModels/Blocks/Finance/BusinessDetail/businessDetailOptionsBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Finance/BusinessDetail/searchKeyBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Finance/FinancialBatchDetail/financialBatchAccountTotalsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Finance/FinancialBatchDetail/financialBatchBag.d.ts +87 -0
- package/types/ViewModels/Blocks/Finance/FinancialBatchDetail/financialBatchCurrencyTotalsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Finance/FinancialBatchDetail/financialBatchDetailOptionsBag.d.ts +58 -0
- package/types/ViewModels/Blocks/Finance/FinancialBatchList/financialBatchListOptionsBag.d.ts +44 -0
- package/types/ViewModels/Blocks/Finance/FinancialBatchList/setBulkBatchStatusRequestBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Finance/FinancialBatchList/setBulkBatchStatusResponseBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Finance/FinancialGatewayDetail/financialGatewayBag.d.ts +63 -0
- package/types/ViewModels/Blocks/Finance/FinancialGatewayDetail/financialGatewayDetailOptionsBag.d.ts +26 -0
- package/types/ViewModels/Blocks/Finance/FinancialPledgeDetail/financialPledgeBag.d.ts +60 -0
- package/types/ViewModels/Blocks/Finance/FinancialPledgeDetail/financialPledgeDetailOptionsBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Finance/FinancialPledgeEntry/financialPledgeEntryBag.d.ts +84 -0
- package/types/ViewModels/Blocks/Finance/FinancialPledgeEntry/financialPledgeEntryOptionsBag.d.ts +57 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailAddPersonRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailAddPersonResponseBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailAttendanceBag.d.ts +51 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailGetAttendanceRequestBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailGetGroupLocationScheduleDatesRequestBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailGetGroupLocationSchedulesRequestBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailGetGroupLocationsRequestBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailGetOrCreateRequestBag.d.ts +55 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailInitializationBox.d.ts +164 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailMarkAttendanceRequestBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailPrintRosterRequestBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailPrintRosterResponseBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailUpdateAttendanceOccurrenceTypeRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailUpdateDidNotOccurRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/GroupAttendanceDetail/groupAttendanceDetailUpdateNotesRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/GroupRegistration/groupRegistrationBag.d.ts +65 -0
- package/types/ViewModels/Blocks/Group/GroupRegistration/groupRegistrationBlockBox.d.ts +77 -0
- package/types/ViewModels/Blocks/Group/GroupSchedulePreference/assignmentScheduleAndLocationBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Group/GroupSchedulePreference/preferencePageContentBag.d.ts +44 -0
- package/types/ViewModels/Blocks/Group/GroupScheduleSignup/personScheduleSignupBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/GroupScheduleSignup/personScheduleSignupDataBag.d.ts +60 -0
- package/types/ViewModels/Blocks/Group/GroupScheduleToolbox/confirmDeclineBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Group/GroupScheduleToolbox/contentBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Group/GroupScheduleUnavailability/contentBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/assignmentOptionsBag.d.ts +50 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/currentScheduleBag.d.ts +47 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/deleteAssignmentRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/getAssignmentOptionsRequestBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/getSchedulePreferencesRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/getSignUpsRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/groupBag.d.ts +39 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/initializationBox.d.ts +92 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/performScheduleRowActionRequestBag.d.ts +45 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/performScheduleRowActionResponseBag.d.ts +52 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveAssignmentRequestBag.d.ts +45 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveAssignmentResponseBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveDeclineReasonRequestBag.d.ts +46 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveSchedulePreferenceRequestBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveSignUpRequestBag.d.ts +45 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveSignUpResponseBag.d.ts +41 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/saveUnavailabilityRequestBag.d.ts +45 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/schedulePreferenceAssignmentBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/schedulePreferenceBag.d.ts +44 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/schedulePreferencesBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/scheduleRowBag.d.ts +62 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/signUpOccurrenceBag.d.ts +61 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/signUpOccurrenceLocationBag.d.ts +48 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduleToolbox/signUpsBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupScheduleOccurrenceBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerAppliedFiltersBag.d.ts +41 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerApplyResourceSettingsBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerCloneSchedulesResponseBag.d.ts +43 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerCloneSettingsBag.d.ts +57 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerFiltersBag.d.ts +51 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerGetPreferencesBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerInitializationBox.d.ts +45 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerLocationsBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerOccurrenceBag.d.ts +79 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerPreferenceBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerPreferencesBag.d.ts +43 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerResourceSettingsBag.d.ts +43 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerSchedulesBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerSendNowResponseBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerUnassignedResourceCountBag.d.ts +48 -0
- package/types/ViewModels/Blocks/Group/Scheduling/GroupScheduler/groupSchedulerUpdatePreferenceBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Group/landingPageContentBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Groups/GroupRegistration/groupRegistrationBag.d.ts +65 -0
- package/types/ViewModels/Blocks/Groups/GroupRegistration/groupRegistrationBlockBox.d.ts +65 -0
- package/types/ViewModels/Blocks/Mobile/Communication/SmsConversation/conversationDetailBag.d.ts +56 -0
- package/types/ViewModels/Blocks/Mobile/Communication/SmsConversationList/phoneNumberBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Prayer/PrayerRequestDetail/prayerRequestBag.d.ts +90 -0
- package/types/ViewModels/Blocks/Prayer/PrayerRequestDetail/prayerRequestDetailAddPersonResponseBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Prayer/PrayerRequestDetail/prayerRequestDetailOptionsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Prayer/PrayerRequestEntry/prayerRequestEntryInitializationBox.d.ts +140 -0
- package/types/ViewModels/Blocks/Prayer/PrayerRequestEntry/prayerRequestEntrySaveRequestBag.d.ts +66 -0
- package/types/ViewModels/Blocks/Prayer/PrayerRequestEntry/prayerRequestEntrySaveResponseBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Reporting/MergeTemplateDetail/mergeTemplateBag.d.ts +70 -0
- package/types/ViewModels/Blocks/Reporting/MergeTemplateDetail/mergeTemplateDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Reporting/MergeTemplateDetail/mergeTemplateFileValidationBag.d.ts +35 -0
- package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryGetMetricsRequestBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryGetMetricsResponseBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryGetServiceTimesRequestBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryGetWeekendDatesRequestBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryInitializationBox.d.ts +60 -0
- package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryMetricCategoryBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntryMetricItemBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Reporting/ServiceMetricsEntry/serviceMetricsEntrySaveRequestBag.d.ts +43 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryAccountInfoBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryCompletedStepBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryConfirmationSentStepBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryDuplicatePersonItemBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryDuplicatePersonSelectionStepBag.d.ts +33 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryExistingAccountStepBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryForgotUsernameRequestBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryInitializationBox.d.ts +107 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryPasswordlessConfirmationSentStepBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryPersonInfoBag.d.ts +61 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryPhoneNumberBag.d.ts +51 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryRegisterRequestBox.d.ts +46 -0
- package/types/ViewModels/Blocks/Security/AccountEntry/accountEntryRegisterResponseBox.d.ts +50 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountAccountConfirmationViewOptionsBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountActionNamesBag.d.ts +40 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountAlertControlBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountAlertViewOptionsBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountChangePasswordRequestBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountChangePasswordViewOptionsBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountConfirmRequestBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountContentViewOptionsBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountDeleteConfirmationViewOptionsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountDeleteRequestBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountInitializationBox.d.ts +46 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountShowChangePasswordViewRequestBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountShowDeleteConfirmationRequestBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Security/ConfirmAccount/confirmAccountViewBox.d.ts +68 -0
- package/types/ViewModels/Blocks/Security/ForgotUserName/changePasswordNotSupportedResultBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Security/ForgotUserName/forgotUserNameCaptionsBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Security/ForgotUserName/forgotUserNameInitializationBox.d.ts +45 -0
- package/types/ViewModels/Blocks/Security/ForgotUserName/forgotUserNameSendInstructionsRequestBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Security/ForgotUserName/forgotUserNameSendInstructionsResultBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Security/Login/credentialLoginMfaBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Security/Login/credentialLoginRequestBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Security/Login/credentialLoginResponseBag.d.ts +45 -0
- package/types/ViewModels/Blocks/Security/Login/externalAuthenticationButtonBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Security/Login/loginInitializationBox.d.ts +114 -0
- package/types/ViewModels/Blocks/Security/Login/passwordlessLoginAutoVerifyOptionsBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Security/Login/passwordlessLoginMfaBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Security/Login/passwordlessLoginOptionsBag.d.ts +46 -0
- package/types/ViewModels/Blocks/Security/Login/passwordlessLoginStartRequestBag.d.ts +46 -0
- package/types/ViewModels/Blocks/Security/Login/passwordlessLoginStartResponseBag.d.ts +34 -0
- package/types/ViewModels/Blocks/Security/Login/passwordlessLoginVerifyOptionsBag.d.ts +42 -0
- package/types/ViewModels/Blocks/Security/Login/passwordlessLoginVerifyRequestBag.d.ts +37 -0
- package/types/ViewModels/Blocks/Security/Login/passwordlessLoginVerifyResponseBag.d.ts +49 -0
- package/types/ViewModels/Blocks/Security/Login/remoteLoginStartRequestBag.d.ts +31 -0
- package/types/ViewModels/Blocks/Security/Login/remoteLoginStartResponseBag.d.ts +28 -0
- package/types/ViewModels/Blocks/Security/RestKeyDetail/restKeyBag.d.ts +51 -0
- package/types/ViewModels/Blocks/Security/RestKeyDetail/restKeyDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Tv/AppleTvAppDetail/appleTvAppBag.d.ts +72 -0
- package/types/ViewModels/Blocks/Tv/AppleTvAppDetail/appleTvAppDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Tv/AppleTvPageDetail/appleTvPageBag.d.ts +57 -0
- package/types/ViewModels/Blocks/Tv/AppleTvPageDetail/appleTvPageDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Tv/AppleTvPageDetail/rockCacheabilityBag.d.ts +35 -0
- package/types/ViewModels/Blocks/Tv/AppleTvPageDetail/timeIntervalBag.d.ts +30 -0
- package/types/ViewModels/Blocks/Utility/RealTimeVisualizer/customSettingsBag.d.ts +49 -0
- package/types/ViewModels/Blocks/Utility/RealTimeVisualizer/customSettingsOptionsBag.d.ts +36 -0
- package/types/ViewModels/Blocks/Utility/RealTimeVisualizer/themeListItemBag.d.ts +43 -0
- package/types/ViewModels/Blocks/Utility/RealTimeVisualizer/topicAndChannelBag.d.ts +31 -0
- package/types/ViewModels/Blocks/WebFarm/WebFarmNodeDetail/webFarmMetricBag.d.ts +31 -0
- package/types/ViewModels/Blocks/WebFarm/WebFarmNodeDetail/webFarmNodeBag.d.ts +69 -0
- package/types/ViewModels/Blocks/WebFarm/WebFarmNodeDetail/webFarmNodeDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/WebFarm/WebFarmSettings/webFarmSettingsBag.d.ts +60 -0
- package/types/ViewModels/Blocks/WebFarm/WebFarmSettings/webFarmSettingsDetailOptionsBag.d.ts +25 -0
- package/types/ViewModels/Blocks/Workflow/WorkflowTriggerDetail/workflowTriggerBag.d.ts +81 -0
- package/types/ViewModels/Blocks/Workflow/WorkflowTriggerDetail/workflowTriggerDetailBox.d.ts +50 -0
- package/types/ViewModels/Blocks/blockActionContextBag.d.ts +37 -0
- package/types/ViewModels/Blocks/blockBox.d.ts +37 -0
- package/types/ViewModels/Blocks/customSettingsBox.d.ts +40 -0
- package/types/ViewModels/Blocks/detailBlockBox.d.ts +56 -0
- package/types/ViewModels/Blocks/listBlockBox.d.ts +59 -0
- package/types/ViewModels/Cms/blockCustomActionBag.d.ts +42 -0
- package/types/ViewModels/Cms/contentCollectionAttributeFilterSettingsBag.d.ts +39 -0
- package/types/ViewModels/Cms/contentCollectionCustomFieldBag.d.ts +44 -0
- package/types/ViewModels/Cms/contentCollectionCustomFieldFilterSettingsBag.d.ts +39 -0
- package/types/ViewModels/Cms/contentCollectionFilterSettingsBag.d.ts +78 -0
- package/types/ViewModels/Cms/contentCollectionSourceAdditionalSettingsBag.d.ts +43 -0
- package/types/ViewModels/Cms/obsidianBlockConfigBag.d.ts +62 -0
- package/types/ViewModels/Cms/obsidianBlockPreferencesBag.d.ts +36 -0
- package/types/ViewModels/Communication/conversationAttachmentBag.d.ts +34 -0
- package/types/ViewModels/Communication/conversationMessageBag.d.ts +95 -0
- package/types/ViewModels/Connection/connectionRequestCountsBag.d.ts +34 -0
- package/types/ViewModels/Controls/addressControlBag.d.ts +46 -0
- package/types/ViewModels/Controls/birthdayPickerBag.d.ts +34 -0
- package/types/ViewModels/Controls/campusPickerItemBag.d.ts +51 -0
- package/types/ViewModels/Controls/electronicSignatureValue.d.ts +31 -0
- package/types/ViewModels/Controls/fieldTypeEditorGetAvailableFieldTypesOptionsBag.d.ts +29 -0
- package/types/ViewModels/Controls/fieldTypeEditorUpdateAttributeConfigurationOptionsBag.d.ts +39 -0
- package/types/ViewModels/Controls/fieldTypeEditorUpdateAttributeConfigurationResultBag.d.ts +46 -0
- package/types/ViewModels/Controls/gatewayControlBag.d.ts +31 -0
- package/types/ViewModels/Controls/monthDayValue.d.ts +27 -0
- package/types/ViewModels/Controls/monthYearValue.d.ts +27 -0
- package/types/ViewModels/Controls/noteMentionItemBag.d.ts +43 -0
- package/types/ViewModels/Controls/phoneNumberBoxWithSmsControlBag.d.ts +34 -0
- package/types/ViewModels/Controls/rockCacheability.d.ts +33 -0
- package/types/ViewModels/Controls/rockCacheabilityBag.d.ts +36 -0
- package/types/ViewModels/Controls/slidingDateRangeBag.d.ts +43 -0
- package/types/ViewModels/Controls/timePickerValue.d.ts +25 -0
- package/types/ViewModels/Core/Grid/attributeFieldDefinitionBag.d.ts +47 -0
- package/types/ViewModels/Core/Grid/customActionBag.d.ts +48 -0
- package/types/ViewModels/Core/Grid/customColumnDefinitionBag.d.ts +48 -0
- package/types/ViewModels/Core/Grid/fieldDefinitionBag.d.ts +31 -0
- package/types/ViewModels/Core/Grid/gridCommunicationBag.d.ts +39 -0
- package/types/ViewModels/Core/Grid/gridDataBag.d.ts +28 -0
- package/types/ViewModels/Core/Grid/gridDefinitionBag.d.ts +76 -0
- package/types/ViewModels/Core/Grid/gridEntitySetBag.d.ts +39 -0
- package/types/ViewModels/Core/Grid/gridEntitySetItemBag.d.ts +40 -0
- package/types/ViewModels/Core/Grid/personFieldBag.d.ts +37 -0
- package/types/ViewModels/Core/notificationMessageActionBag.d.ts +42 -0
- package/types/ViewModels/Core/notificationMessageMetadataBag.d.ts +54 -0
- package/types/ViewModels/Core/personPreferenceValueBag.d.ts +34 -0
- package/types/ViewModels/Crm/currentPersonBag.d.ts +43 -0
- package/types/ViewModels/Crm/renderedBadgeBag.d.ts +31 -0
- package/types/ViewModels/Engagement/achievementCompletedMessageBag.d.ts +63 -0
- package/types/ViewModels/Event/InteractiveExperiences/actionRenderConfigurationBag.d.ts +39 -0
- package/types/ViewModels/Event/InteractiveExperiences/experienceActionStyleBag.d.ts +49 -0
- package/types/ViewModels/Event/InteractiveExperiences/experienceAnswerBag.d.ts +49 -0
- package/types/ViewModels/Event/InteractiveExperiences/experienceOccurrenceStateBag.d.ts +31 -0
- package/types/ViewModels/Event/InteractiveExperiences/experiencePlaceholderStyleBag.d.ts +34 -0
- package/types/ViewModels/Event/InteractiveExperiences/experienceSettingsBag.d.ts +42 -0
- package/types/ViewModels/Event/InteractiveExperiences/experienceStyleBag.d.ts +47 -0
- package/types/ViewModels/Event/InteractiveExperiences/experienceVisualizerStyleBag.d.ts +46 -0
- package/types/ViewModels/Event/InteractiveExperiences/joinExperienceResponseBag.d.ts +47 -0
- package/types/ViewModels/Event/InteractiveExperiences/pingExperienceResponseBag.d.ts +28 -0
- package/types/ViewModels/Event/InteractiveExperiences/visualizerRenderConfigurationBag.d.ts +42 -0
- package/types/ViewModels/Event/attendanceOccurrenceUpdatedMessageBag.d.ts +45 -0
- package/types/ViewModels/Event/attendanceUpdatedMessageBag.d.ts +67 -0
- package/types/ViewModels/Finance/savedFinancialAccountListItemBag.d.ts +49 -0
- package/types/ViewModels/Prayer/PrayerRequestEntry/prayerRequestEntryInitializationBox.d.ts +38 -0
- package/types/ViewModels/Prayer/PrayerRequestEntry/prayerRequestEntrySaveRequestBag.d.ts +48 -0
- package/types/ViewModels/Prayer/PrayerRequestEntry/prayerRequestEntrySaveResponseBag.d.ts +30 -0
- package/types/ViewModels/Reporting/fieldFilterGroupBag.d.ts +40 -0
- package/types/ViewModels/Reporting/fieldFilterRuleBag.d.ts +52 -0
- package/types/ViewModels/Reporting/fieldFilterSourceBag.d.ts +46 -0
- package/types/ViewModels/Rest/Controls/accountPickerGetChildrenOptionsBag.d.ts +42 -0
- package/types/ViewModels/Rest/Controls/accountPickerGetParentGuidsOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/accountPickerGetPreviewItemsOptionsBag.d.ts +36 -0
- package/types/ViewModels/Rest/Controls/accountPickerGetSearchedAccountsOptionsBag.d.ts +37 -0
- package/types/ViewModels/Rest/Controls/achievementTypePickerGetAchievementTypesOptionsBag.d.ts +29 -0
- package/types/ViewModels/Rest/Controls/addressControlConfigurationBag.d.ts +82 -0
- package/types/ViewModels/Rest/Controls/addressControlGetConfigurationOptionsBag.d.ts +34 -0
- package/types/ViewModels/Rest/Controls/addressControlValidateAddressOptionsBag.d.ts +49 -0
- package/types/ViewModels/Rest/Controls/addressControlValidateAddressResultsBag.d.ts +39 -0
- package/types/ViewModels/Rest/Controls/assessmentTypePickerGetAssessmentTypesOptionsBag.d.ts +31 -0
- package/types/ViewModels/Rest/Controls/assetStorageProviderPickerGetAssetStorageProvidersOptionsBag.d.ts +29 -0
- package/types/ViewModels/Rest/Controls/auditDetailGetAuditDetailsOptionsBag.d.ts +45 -0
- package/types/ViewModels/Rest/Controls/badgeComponentPickerGetBadgeComponentsOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/badgeListGetBadgesOptionsBag.d.ts +51 -0
- package/types/ViewModels/Rest/Controls/badgePickerGetBadgesOptionsBag.d.ts +34 -0
- package/types/ViewModels/Rest/Controls/binaryFilePickerGetBinaryFilesOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/binaryFileTypePickerGetBinaryFileTypesOptionsBag.d.ts +29 -0
- package/types/ViewModels/Rest/Controls/blockTemplatePickerGetBlockTemplatesOptionsBag.d.ts +39 -0
- package/types/ViewModels/Rest/Controls/blockTemplatePickerGetBlockTemplatesResultsBag.d.ts +35 -0
- package/types/ViewModels/Rest/Controls/campusAccountAmountPickerGetAccountsOptionsBag.d.ts +48 -0
- package/types/ViewModels/Rest/Controls/campusAccountAmountPickerGetAccountsResultItemBag.d.ts +43 -0
- package/types/ViewModels/Rest/Controls/campusPickerGetCampusesOptionsBag.d.ts +29 -0
- package/types/ViewModels/Rest/Controls/captchaControlConfigurationBag.d.ts +31 -0
- package/types/ViewModels/Rest/Controls/captchaControlTokenValidateTokenResultBag.d.ts +28 -0
- package/types/ViewModels/Rest/Controls/captchaControlValidateTokenOptionsBag.d.ts +27 -0
- package/types/ViewModels/Rest/Controls/categorizedValuePickerGetTreeOptionsBag.d.ts +36 -0
- package/types/ViewModels/Rest/Controls/categorizedValuePickerGetTreeResultsBag.d.ts +36 -0
- package/types/ViewModels/Rest/Controls/categorizedValuePickerNodeBag.d.ts +40 -0
- package/types/ViewModels/Rest/Controls/categoryPickerChildTreeItemsOptionsBag.d.ts +119 -0
- package/types/ViewModels/Rest/Controls/componentPickerGetComponentsOptionsBag.d.ts +31 -0
- package/types/ViewModels/Rest/Controls/connectionRequestPickerGetChildrenOptionsBag.d.ts +42 -0
- package/types/ViewModels/Rest/Controls/contentChannelItemPickerGetAllForContentChannelItemOptionsBag.d.ts +40 -0
- package/types/ViewModels/Rest/Controls/contentChannelItemPickerGetAllForContentChannelItemResultsBag.d.ts +36 -0
- package/types/ViewModels/Rest/Controls/contentChannelItemPickerGetContentChannelItemsOptionsBag.d.ts +40 -0
- package/types/ViewModels/Rest/Controls/dataViewPickerGetDataViewsOptionsBag.d.ts +86 -0
- package/types/ViewModels/Rest/Controls/definedValuePickerGetAttributesOptionsBag.d.ts +39 -0
- package/types/ViewModels/Rest/Controls/definedValuePickerGetDefinedValuesOptionsBag.d.ts +42 -0
- package/types/ViewModels/Rest/Controls/definedValuePickerSaveNewValueOptionsBag.d.ts +45 -0
- package/types/ViewModels/Rest/Controls/entityTagListAddEntityTagOptionsBag.d.ts +48 -0
- package/types/ViewModels/Rest/Controls/entityTagListCreatePersonalTagOptionsBag.d.ts +51 -0
- package/types/ViewModels/Rest/Controls/entityTagListGetAvailableTagsOptionsBag.d.ts +63 -0
- package/types/ViewModels/Rest/Controls/entityTagListGetEntityTagsOptionsBag.d.ts +60 -0
- package/types/ViewModels/Rest/Controls/entityTagListRemoveEntityTagOptionsBag.d.ts +48 -0
- package/types/ViewModels/Rest/Controls/entityTagListSaveTagValuesOptionsBag.d.ts +64 -0
- package/types/ViewModels/Rest/Controls/entityTagListTagBag.d.ts +49 -0
- package/types/ViewModels/Rest/Controls/entityTypePickerGetEntityTypesOptionsBag.d.ts +29 -0
- package/types/ViewModels/Rest/Controls/ethnicityPickerGetEthnicitiesResultsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/eventItemPickerGetEventItemsOptionsBag.d.ts +31 -0
- package/types/ViewModels/Rest/Controls/financialGatewayPickerGetFinancialGatewaysOptionsBag.d.ts +43 -0
- package/types/ViewModels/Rest/Controls/followingGetFollowingOptionsBag.d.ts +45 -0
- package/types/ViewModels/Rest/Controls/followingGetFollowingResponseBag.d.ts +31 -0
- package/types/ViewModels/Rest/Controls/followingSetFollowingOptionsBag.d.ts +48 -0
- package/types/ViewModels/Rest/Controls/geoPickerGetGoogleMapSettingsOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/geoPickerGetSettingsOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/geoPickerGoogleMapSettingsBag.d.ts +43 -0
- package/types/ViewModels/Rest/Controls/geoPickerSettingsBag.d.ts +40 -0
- package/types/ViewModels/Rest/Controls/gradePickerGetGradesOptionsBag.d.ts +34 -0
- package/types/ViewModels/Rest/Controls/groupAndRolePickerGetRolesOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/groupMemberPickerGetGroupMembersOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/groupPickerGetChildrenOptionsBag.d.ts +54 -0
- package/types/ViewModels/Rest/Controls/groupRolePickerGetAllForGroupRoleOptionsBag.d.ts +45 -0
- package/types/ViewModels/Rest/Controls/groupRolePickerGetAllForGroupRoleResultsBag.d.ts +39 -0
- package/types/ViewModels/Rest/Controls/groupRolePickerGetGroupRolesOptionsBag.d.ts +40 -0
- package/types/ViewModels/Rest/Controls/groupTypeGroupPickerGetGroupTypeOfGroupOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/groupTypeGroupPickerGetGroupsOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/groupTypePickerGetGroupTypesOptionsBag.d.ts +39 -0
- package/types/ViewModels/Rest/Controls/interactionChannelInteractionComponentPickerGetChannelFromComponentOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/interactionComponentPickerGetInteractionComponentsOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/locationItemPickerGetActiveChildrenOptionsBag.d.ts +48 -0
- package/types/ViewModels/Rest/Controls/locationListGetLocationsOptionsBag.d.ts +42 -0
- package/types/ViewModels/Rest/Controls/locationListSaveNewLocationOptionsBag.d.ts +52 -0
- package/types/ViewModels/Rest/Controls/mediaElementPickerGetMediaElementsOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/mediaElementPickerGetMediaFoldersOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/mediaElementPickerGetMediaTreeOptionsBag.d.ts +39 -0
- package/types/ViewModels/Rest/Controls/mediaElementPickerGetMediaTreeResultsBag.d.ts +45 -0
- package/types/ViewModels/Rest/Controls/mergeFieldPickerFormatSelectedValueOptionsBag.d.ts +28 -0
- package/types/ViewModels/Rest/Controls/mergeFieldPickerGetChildrenOptionsBag.d.ts +31 -0
- package/types/ViewModels/Rest/Controls/mergeTemplatePickerGetMergeTemplatesOptionsBag.d.ts +52 -0
- package/types/ViewModels/Rest/Controls/metricCategoryPickerGetChildrenOptionsBag.d.ts +48 -0
- package/types/ViewModels/Rest/Controls/metricItemPickerGetChildrenOptionsBag.d.ts +54 -0
- package/types/ViewModels/Rest/Controls/noteEditorMentionSearchOptionsBag.d.ts +37 -0
- package/types/ViewModels/Rest/Controls/noteEditorMentionSearchResultsBag.d.ts +30 -0
- package/types/ViewModels/Rest/Controls/pagePickerGetChildrenOptionsBag.d.ts +57 -0
- package/types/ViewModels/Rest/Controls/pagePickerGetPageNameOptionsBag.d.ts +42 -0
- package/types/ViewModels/Rest/Controls/pagePickerGetPageRoutesOptionsBag.d.ts +42 -0
- package/types/ViewModels/Rest/Controls/pagePickerGetSelectedPageHierarchyOptionsBag.d.ts +42 -0
- package/types/ViewModels/Rest/Controls/pageRouteValueBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/personLinkGetPopupHtmlOptionsBag.d.ts +34 -0
- package/types/ViewModels/Rest/Controls/personPickerSearchOptionsBag.d.ts +49 -0
- package/types/ViewModels/Rest/Controls/phoneNumberBoxGetConfigurationOptionsBag.d.ts +28 -0
- package/types/ViewModels/Rest/Controls/phoneNumberBoxGetConfigurationResultsBag.d.ts +36 -0
- package/types/ViewModels/Rest/Controls/phoneNumberCountryCodeRulesConfigurationBag.d.ts +31 -0
- package/types/ViewModels/Rest/Controls/racePickerGetRacesResultsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/registrationInstancePickerGetRegistrationInstancesOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/registrationInstancePickerGetRegistrationTemplateForInstanceOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/registrationTemplatePickerGetChildrenOptionsBag.d.ts +42 -0
- package/types/ViewModels/Rest/Controls/reminderTypePickerGetReminderTypesOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/reportPickerGetChildrenOptionsBag.d.ts +48 -0
- package/types/ViewModels/Rest/Controls/saveFinancialAccountFormSaveAccountOptionsBag.d.ts +48 -0
- package/types/ViewModels/Rest/Controls/saveFinancialAccountFormSaveAccountResultBag.d.ts +37 -0
- package/types/ViewModels/Rest/Controls/schedulePickerGetChildrenOptionsBag.d.ts +45 -0
- package/types/ViewModels/Rest/Controls/stepStatusPickerGetStepStatusesOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/stepTypePickerGetStepTypesOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/structuredContentEditorConfigurationBag.d.ts +31 -0
- package/types/ViewModels/Rest/Controls/structuredContentEditorGetConfigurationOptionsBag.d.ts +33 -0
- package/types/ViewModels/Rest/Controls/workflowActionTypePickerGetChildrenOptionsBag.d.ts +40 -0
- package/types/ViewModels/Rest/Controls/workflowPickerGetWorkflowTypeForWorkflowOptionsBag.d.ts +36 -0
- package/types/ViewModels/Rest/Controls/workflowPickerGetWorkflowsOptionsBag.d.ts +36 -0
- package/types/ViewModels/Rest/Controls/workflowTypePickerGetWorkflowTypesOptionsBag.d.ts +90 -0
- package/types/ViewModels/Rest/Utilities/updatePersonPreferencesAccessedOptionsBag.d.ts +34 -0
- package/types/ViewModels/Rest/Utilities/updatePersonPreferencesOptionsBag.d.ts +31 -0
- package/types/ViewModels/Utility/debugTiming.d.ts +32 -0
- package/types/ViewModels/Utility/entityAuditBag.d.ts +54 -0
- package/types/ViewModels/Utility/listItemBag.d.ts +37 -0
- package/types/ViewModels/Utility/publicAttributeBag.d.ts +64 -0
- package/types/ViewModels/Utility/publicAttributeCategoryBag.d.ts +40 -0
- package/types/ViewModels/Utility/publicComparisonValueBag.d.ts +31 -0
- package/types/ViewModels/Utility/publicEditableAttributeBag.d.ts +123 -0
- package/types/ViewModels/Utility/taskActivityProgressLogBag.d.ts +31 -0
- package/types/ViewModels/Utility/taskActivityProgressStatusBag.d.ts +52 -0
- package/types/ViewModels/Utility/taskActivityProgressUpdateBag.d.ts +37 -0
- package/types/ViewModels/Utility/timeInterval.d.ts +27 -0
- package/types/ViewModels/Utility/timeIntervalBag.d.ts +31 -0
- package/types/ViewModels/Utility/treeItemBag.d.ts +57 -0
- package/types/ViewModels/Utility/validPropertiesBox.d.ts +31 -0
- package/types/ViewModels/entity.d.ts +24 -0
- package/types/ViewModels/index.d.ts +22 -0
|
@@ -0,0 +1,1709 @@
|
|
|
1
|
+
/** System Pages. NOTE: Some of these are referenced in Migrations to avoid string-typos. */
|
|
2
|
+
export declare const Page: {
|
|
3
|
+
/**
|
|
4
|
+
* Gets the Ability Levels page guid
|
|
5
|
+
* ParentPage: Check-in
|
|
6
|
+
*/
|
|
7
|
+
AbilityLevels: string;
|
|
8
|
+
/**
|
|
9
|
+
* Gets the Ability Select page guid
|
|
10
|
+
* ParentPage: Check-in
|
|
11
|
+
*/
|
|
12
|
+
AbilitySelect: string;
|
|
13
|
+
/**
|
|
14
|
+
* Gets the Account page guid
|
|
15
|
+
* ParentPage: Rock Shop
|
|
16
|
+
*/
|
|
17
|
+
Account: string;
|
|
18
|
+
/**
|
|
19
|
+
* Gets the Account Detail page guid
|
|
20
|
+
* ParentPage: Accounts
|
|
21
|
+
*/
|
|
22
|
+
AccountDetail: string;
|
|
23
|
+
/**
|
|
24
|
+
* Gets the Accounts page guid
|
|
25
|
+
* ParentPage: Administration
|
|
26
|
+
*/
|
|
27
|
+
Accounts: string;
|
|
28
|
+
/**
|
|
29
|
+
* Gets the Achievement Type page guid
|
|
30
|
+
* ParentPage: Rock.SystemGuid.Page.ENGAGEMENT
|
|
31
|
+
*/
|
|
32
|
+
AchievementTypes: string;
|
|
33
|
+
/**
|
|
34
|
+
* Gets the Add Transaction page guid
|
|
35
|
+
* ParentPage: Contributions
|
|
36
|
+
*/
|
|
37
|
+
AddTransaction: string;
|
|
38
|
+
/**
|
|
39
|
+
* Gets the Admin page guid
|
|
40
|
+
* ParentPage: Check-in
|
|
41
|
+
*/
|
|
42
|
+
AdminCheckIn: string;
|
|
43
|
+
/**
|
|
44
|
+
* Gets the Admin Tools page guid
|
|
45
|
+
* ParentPage: Internal Homepage
|
|
46
|
+
*/
|
|
47
|
+
AdminTools: string;
|
|
48
|
+
/**
|
|
49
|
+
* Gets the Administration page guid
|
|
50
|
+
* ParentPage: Finance
|
|
51
|
+
*/
|
|
52
|
+
AdministrationFinance: string;
|
|
53
|
+
/** The apple tv application detail */
|
|
54
|
+
AppleTvApplicationDetail: string;
|
|
55
|
+
/** The apple tv application screen detail */
|
|
56
|
+
AppleTvApplicationScreenDetail: string;
|
|
57
|
+
/** The apple tv apps */
|
|
58
|
+
AppleTvApps: string;
|
|
59
|
+
/**
|
|
60
|
+
* Gets the Application Group Detail page guid
|
|
61
|
+
* ParentPage: Application Groups
|
|
62
|
+
*/
|
|
63
|
+
ApplicationGroupDetail: string;
|
|
64
|
+
/**
|
|
65
|
+
* Gets the Application Groups page guid
|
|
66
|
+
* ParentPage: System Settings
|
|
67
|
+
*/
|
|
68
|
+
ApplicationGroups: string;
|
|
69
|
+
/**
|
|
70
|
+
* Gets the Attendance page guid
|
|
71
|
+
* ParentPage: Group Attendance
|
|
72
|
+
*/
|
|
73
|
+
Attendance: string;
|
|
74
|
+
/**
|
|
75
|
+
* Gets the Attendance Analysis page guid
|
|
76
|
+
* ParentPage: Reporting
|
|
77
|
+
*/
|
|
78
|
+
AttendanceAnalysis: string;
|
|
79
|
+
/**
|
|
80
|
+
* Gets the Attribute Categories page guid
|
|
81
|
+
* ParentPage: General Settings
|
|
82
|
+
*/
|
|
83
|
+
AttributeCategories: string;
|
|
84
|
+
/**
|
|
85
|
+
* Gets the Audit Information page guid
|
|
86
|
+
* ParentPage: Security
|
|
87
|
+
*/
|
|
88
|
+
AuditInformation: string;
|
|
89
|
+
/**
|
|
90
|
+
* Gets the Authentication Services page guid
|
|
91
|
+
* ParentPage: Security
|
|
92
|
+
*/
|
|
93
|
+
AuthenticationServices: string;
|
|
94
|
+
/**
|
|
95
|
+
* Gets the Background Check Providers page guid
|
|
96
|
+
* ParentPage: System Settings
|
|
97
|
+
*/
|
|
98
|
+
BackgroundCheckProviders: string;
|
|
99
|
+
/**
|
|
100
|
+
* Gets the Badge Detail page guid
|
|
101
|
+
* ParentPage: Person Profile Badges
|
|
102
|
+
*/
|
|
103
|
+
BadgeDetail: string;
|
|
104
|
+
/**
|
|
105
|
+
* Gets the Badges page guid
|
|
106
|
+
* ParentPage: General Settings
|
|
107
|
+
*/
|
|
108
|
+
Badges: string;
|
|
109
|
+
/**
|
|
110
|
+
* Gets the Batches page guid
|
|
111
|
+
* ParentPage: Functions
|
|
112
|
+
*/
|
|
113
|
+
Batches: string;
|
|
114
|
+
/**
|
|
115
|
+
* Gets the Benevolence Detail page guid
|
|
116
|
+
* ParentPage: Benevolence
|
|
117
|
+
*/
|
|
118
|
+
BenevolenceDetail: string;
|
|
119
|
+
/**
|
|
120
|
+
* Gets the Benevolence page guid
|
|
121
|
+
* ParentPage: Functions
|
|
122
|
+
*/
|
|
123
|
+
BenevolenceFunctions: string;
|
|
124
|
+
/**
|
|
125
|
+
* Gets the Benevolence page guid
|
|
126
|
+
* ParentPage: Person Pages
|
|
127
|
+
*/
|
|
128
|
+
BenevolencePersonPages: string;
|
|
129
|
+
/**
|
|
130
|
+
* Gets the Benevolence Request Detail page guid
|
|
131
|
+
* ParentPage: Benevolence
|
|
132
|
+
*/
|
|
133
|
+
BenevolenceRequestDetail: string;
|
|
134
|
+
/**
|
|
135
|
+
* Gets the Benevolence Types page guid
|
|
136
|
+
* ParentPage: Benevolence
|
|
137
|
+
*/
|
|
138
|
+
BenevolenceTypes: string;
|
|
139
|
+
/**
|
|
140
|
+
* Gets the Benevolence Types Detail page guid
|
|
141
|
+
* ParentPage: Benevolence
|
|
142
|
+
*/
|
|
143
|
+
BenevolenceTypesDetail: string;
|
|
144
|
+
/**
|
|
145
|
+
* Gets the Block Properties page guid
|
|
146
|
+
* ParentPage: System Dialogs
|
|
147
|
+
*/
|
|
148
|
+
BlockProperties: string;
|
|
149
|
+
/**
|
|
150
|
+
* Gets the Block Type Detail page guid
|
|
151
|
+
* ParentPage: Block Types
|
|
152
|
+
*/
|
|
153
|
+
BlockTypeDetail: string;
|
|
154
|
+
/**
|
|
155
|
+
* Gets the Block Types page guid
|
|
156
|
+
* ParentPage: CMS Configuration
|
|
157
|
+
*/
|
|
158
|
+
BlockTypes: string;
|
|
159
|
+
/**
|
|
160
|
+
* Gets the Blog page guid
|
|
161
|
+
* ParentPage: External Homepage
|
|
162
|
+
*/
|
|
163
|
+
Blog: string;
|
|
164
|
+
/**
|
|
165
|
+
* Gets the Blog Details page guid
|
|
166
|
+
* ParentPage: Blog
|
|
167
|
+
*/
|
|
168
|
+
BlogDetails: string;
|
|
169
|
+
/**
|
|
170
|
+
* Gets the Bulk Update page guid
|
|
171
|
+
* ParentPage: Support Pages
|
|
172
|
+
*/
|
|
173
|
+
BulkUpdate: string;
|
|
174
|
+
/**
|
|
175
|
+
* Gets the bus page guid
|
|
176
|
+
* ParentPage: System Settings
|
|
177
|
+
*/
|
|
178
|
+
Bus: string;
|
|
179
|
+
/**
|
|
180
|
+
* Gets the Transport page guid
|
|
181
|
+
* ParentPage: Bus
|
|
182
|
+
*/
|
|
183
|
+
BusQueue: string;
|
|
184
|
+
/**
|
|
185
|
+
* Gets the Transport page guid
|
|
186
|
+
* ParentPage: Bus
|
|
187
|
+
*/
|
|
188
|
+
BusTransport: string;
|
|
189
|
+
/**
|
|
190
|
+
* Gets the Business Detail page guid
|
|
191
|
+
* ParentPage: Businesses
|
|
192
|
+
*/
|
|
193
|
+
BusinessDetail: string;
|
|
194
|
+
/**
|
|
195
|
+
* Gets the Businesses page guid
|
|
196
|
+
* ParentPage: Administration
|
|
197
|
+
*/
|
|
198
|
+
Businesses: string;
|
|
199
|
+
/**
|
|
200
|
+
* Gets the Calendars page guid
|
|
201
|
+
* ParentPage: Website
|
|
202
|
+
*/
|
|
203
|
+
Calendars: string;
|
|
204
|
+
/**
|
|
205
|
+
* Gets the Campus Detail page guid
|
|
206
|
+
* ParentPage: Campuses
|
|
207
|
+
*/
|
|
208
|
+
CampusDetail: string;
|
|
209
|
+
/**
|
|
210
|
+
* Gets the Campuses page guid
|
|
211
|
+
* ParentPage: General Settings
|
|
212
|
+
*/
|
|
213
|
+
Campuses: string;
|
|
214
|
+
/**
|
|
215
|
+
* Gets the Change Password page guid
|
|
216
|
+
* ParentPage: My Settings
|
|
217
|
+
*/
|
|
218
|
+
ChangePasswordMySettings: string;
|
|
219
|
+
/**
|
|
220
|
+
* Gets the Check-in Configuration page guid
|
|
221
|
+
* ParentPage: Check-in
|
|
222
|
+
*/
|
|
223
|
+
CheckInConfiguration: string;
|
|
224
|
+
/**
|
|
225
|
+
* Gets the Check-in Label page guid
|
|
226
|
+
* ParentPage: Check-in Labels
|
|
227
|
+
*/
|
|
228
|
+
CheckInLabel: string;
|
|
229
|
+
/**
|
|
230
|
+
* Gets the Check-in Labels page guid
|
|
231
|
+
* ParentPage: Check-in
|
|
232
|
+
*/
|
|
233
|
+
CheckInLabels: string;
|
|
234
|
+
/**
|
|
235
|
+
* Gets the Check-in Manager page guid
|
|
236
|
+
* ParentPage: Check-in Type
|
|
237
|
+
*/
|
|
238
|
+
CheckInManager: string;
|
|
239
|
+
/** The check in manager attendance detail */
|
|
240
|
+
CheckInManagerAttendanceDetail: string;
|
|
241
|
+
/** The Check-in Manager En Route page */
|
|
242
|
+
CheckInManagerEnRoute: string;
|
|
243
|
+
/** The Check-in Manager Live Metrics page */
|
|
244
|
+
CheckInManagerLiveMetrics: string;
|
|
245
|
+
/** The Login page under the Check-in Manager page */
|
|
246
|
+
CheckInManagerLogin: string;
|
|
247
|
+
/** The Logout page under the Check-in Manager page */
|
|
248
|
+
CheckInManagerLogout: string;
|
|
249
|
+
/** The check in manager person attendance change history */
|
|
250
|
+
CheckInManagerPersonAttendanceChangeHistory: string;
|
|
251
|
+
/** The check in manager room list page */
|
|
252
|
+
CheckInManagerRoomList: string;
|
|
253
|
+
/** The Check-in Manager room manager page */
|
|
254
|
+
CheckInManagerRoomManager: string;
|
|
255
|
+
/** The Check-in Manager room settings page (Where rooms can be open/closed) */
|
|
256
|
+
CheckInManagerRoomSettings: string;
|
|
257
|
+
/** The Check-in Manager roster page */
|
|
258
|
+
CheckInManagerRoster: string;
|
|
259
|
+
/** The Check-in Manager search page */
|
|
260
|
+
CheckInManagerSearch: string;
|
|
261
|
+
/** The Settings page under the Check-in Manager page (Where Check-in Configuration is selected) */
|
|
262
|
+
CheckInManagerSettings: string;
|
|
263
|
+
/**
|
|
264
|
+
* Gets the Check-in page guid
|
|
265
|
+
* ParentPage: Rock Settings
|
|
266
|
+
*/
|
|
267
|
+
CheckInRockSettings: string;
|
|
268
|
+
/**
|
|
269
|
+
* Gets the Check-in page guid
|
|
270
|
+
* ParentPage:
|
|
271
|
+
*/
|
|
272
|
+
CheckInRoot: string;
|
|
273
|
+
/**
|
|
274
|
+
* Gets the Check-in Type page guid
|
|
275
|
+
* ParentPage:
|
|
276
|
+
*/
|
|
277
|
+
CheckInType: string;
|
|
278
|
+
/**
|
|
279
|
+
* Gets the Ability Select page guid
|
|
280
|
+
* ParentPage: Check-in
|
|
281
|
+
*/
|
|
282
|
+
CheckinAbilitySelect: string;
|
|
283
|
+
/**
|
|
284
|
+
* Gets the Action Select page guid
|
|
285
|
+
* ParentPage: Check-in
|
|
286
|
+
*/
|
|
287
|
+
CheckinActionSelect: string;
|
|
288
|
+
/**
|
|
289
|
+
* Gets the Admin page guid
|
|
290
|
+
* ParentPage: Check-in
|
|
291
|
+
*/
|
|
292
|
+
CheckinAdmin: string;
|
|
293
|
+
/**
|
|
294
|
+
* Gets the Check Out Person Select page guid
|
|
295
|
+
* ParentPage: Check-in
|
|
296
|
+
*/
|
|
297
|
+
CheckinCheckOutPersonSelect: string;
|
|
298
|
+
/**
|
|
299
|
+
* Gets the Check Out Success page guid
|
|
300
|
+
* ParentPage: Check-in
|
|
301
|
+
*/
|
|
302
|
+
CheckinCheckOutSuccess: string;
|
|
303
|
+
/**
|
|
304
|
+
* Gets the Family Select page guid
|
|
305
|
+
* ParentPage: Check-in
|
|
306
|
+
*/
|
|
307
|
+
CheckinFamilySelect: string;
|
|
308
|
+
/**
|
|
309
|
+
* Gets the Group Select page guid
|
|
310
|
+
* ParentPage: Check-in
|
|
311
|
+
*/
|
|
312
|
+
CheckinGroupSelect: string;
|
|
313
|
+
/**
|
|
314
|
+
* Gets the Group Type Select page guid
|
|
315
|
+
* ParentPage: Check-in
|
|
316
|
+
*/
|
|
317
|
+
CheckinGroupTypeSelect: string;
|
|
318
|
+
/**
|
|
319
|
+
* Gets the Location Select page guid
|
|
320
|
+
* ParentPage: Check-in
|
|
321
|
+
*/
|
|
322
|
+
CheckinLocationSelect: string;
|
|
323
|
+
/**
|
|
324
|
+
* Gets the Person Select page guid
|
|
325
|
+
* ParentPage: Check-in
|
|
326
|
+
*/
|
|
327
|
+
CheckinPersonSelect: string;
|
|
328
|
+
/**
|
|
329
|
+
* Gets the Person Select (Family Check-in) page guid
|
|
330
|
+
* ParentPage: Check-in
|
|
331
|
+
*/
|
|
332
|
+
CheckinPersonSelectFamilyCheckIn: string;
|
|
333
|
+
/**
|
|
334
|
+
* Gets the Save Attendance (Family Check-in) page guid
|
|
335
|
+
* ParentPage: Check-in
|
|
336
|
+
*/
|
|
337
|
+
CheckinSaveAttendanceFamilyCheckIn: string;
|
|
338
|
+
/**
|
|
339
|
+
* Gets the Scheduled Locations page guid
|
|
340
|
+
* ParentPage: Check-in
|
|
341
|
+
*/
|
|
342
|
+
CheckinScheduledLocations: string;
|
|
343
|
+
/**
|
|
344
|
+
* Gets the Search page guid
|
|
345
|
+
* ParentPage: Check-in
|
|
346
|
+
*/
|
|
347
|
+
CheckinSearch: string;
|
|
348
|
+
/**
|
|
349
|
+
* Gets the Success page guid
|
|
350
|
+
* ParentPage: Check-in
|
|
351
|
+
*/
|
|
352
|
+
CheckinSuccess: string;
|
|
353
|
+
/**
|
|
354
|
+
* Gets the Time Select page guid
|
|
355
|
+
* ParentPage: Check-in
|
|
356
|
+
*/
|
|
357
|
+
CheckinTimeSelect: string;
|
|
358
|
+
/**
|
|
359
|
+
* Gets the Time Select (Family Check-in) page guid
|
|
360
|
+
* ParentPage: Check-in
|
|
361
|
+
*/
|
|
362
|
+
CheckinTimeSelectFamilyCheckIn: string;
|
|
363
|
+
/**
|
|
364
|
+
* Gets the Welcome page guid
|
|
365
|
+
* ParentPage: Check-in
|
|
366
|
+
*/
|
|
367
|
+
CheckinWelcome: string;
|
|
368
|
+
/**
|
|
369
|
+
* Gets the ChildPages page guid
|
|
370
|
+
* ParentPage: System Dialogs
|
|
371
|
+
*/
|
|
372
|
+
Childpages: string;
|
|
373
|
+
/**
|
|
374
|
+
* Gets the CMS Configuration page guid
|
|
375
|
+
* ParentPage: Rock Settings
|
|
376
|
+
*/
|
|
377
|
+
CmsConfiguration: string;
|
|
378
|
+
/**
|
|
379
|
+
* Gets the Communication page guid (stock external page)
|
|
380
|
+
* ParentPage: Support Pages
|
|
381
|
+
*/
|
|
382
|
+
Communication: string;
|
|
383
|
+
/**
|
|
384
|
+
* Gets the Communication History page guid
|
|
385
|
+
* ParentPage: Communications
|
|
386
|
+
*/
|
|
387
|
+
CommunicationHistory: string;
|
|
388
|
+
/**
|
|
389
|
+
* Gets the Communication Mediums page guid
|
|
390
|
+
* ParentPage: Communications
|
|
391
|
+
*/
|
|
392
|
+
CommunicationMediums: string;
|
|
393
|
+
/**
|
|
394
|
+
* Gets the Communication Templates page guid
|
|
395
|
+
* ParentPage: Communications
|
|
396
|
+
*/
|
|
397
|
+
CommunicationTemplatesCommunications: string;
|
|
398
|
+
/**
|
|
399
|
+
* Gets the Communication Templates page guid
|
|
400
|
+
* ParentPage: My Settings
|
|
401
|
+
*/
|
|
402
|
+
CommunicationTemplatesMySettings: string;
|
|
403
|
+
/**
|
|
404
|
+
* Gets the Communication Transports page guid
|
|
405
|
+
* ParentPage: Communications
|
|
406
|
+
*/
|
|
407
|
+
CommunicationTransports: string;
|
|
408
|
+
/**
|
|
409
|
+
* Gets the Communications page guid
|
|
410
|
+
* ParentPage: People
|
|
411
|
+
*/
|
|
412
|
+
CommunicationsPeople: string;
|
|
413
|
+
/**
|
|
414
|
+
* Gets the Communications page guid
|
|
415
|
+
* ParentPage: Rock Settings
|
|
416
|
+
*/
|
|
417
|
+
CommunicationsRockSettings: string;
|
|
418
|
+
/**
|
|
419
|
+
* Gets the Configuration page guid
|
|
420
|
+
* ParentPage: Check-in Configuration
|
|
421
|
+
*/
|
|
422
|
+
Configuration: string;
|
|
423
|
+
/**
|
|
424
|
+
* Gets the Confirm page guid
|
|
425
|
+
* ParentPage: Security
|
|
426
|
+
*/
|
|
427
|
+
Confirm: string;
|
|
428
|
+
/**
|
|
429
|
+
* Gets the Connections opportunity select page guid.
|
|
430
|
+
* ParentPage: Engagement
|
|
431
|
+
*/
|
|
432
|
+
ConnectionOpportunitySelect: string;
|
|
433
|
+
/** The connection request detail page guid */
|
|
434
|
+
ConnectionRequestDetail: string;
|
|
435
|
+
/** The connection requests bulk update page */
|
|
436
|
+
ConnectionRequestsBulkUpdate: string;
|
|
437
|
+
/**
|
|
438
|
+
* Connection Type Config Page
|
|
439
|
+
* ParentPage: Connections
|
|
440
|
+
*/
|
|
441
|
+
ConnectionTypes: string;
|
|
442
|
+
/**
|
|
443
|
+
* Gets the Connections page guid. This was the original connections root page that was replaced by
|
|
444
|
+
* the connection opportunity select.
|
|
445
|
+
* ParentPage: Connections opportunity select
|
|
446
|
+
*/
|
|
447
|
+
Connections: string;
|
|
448
|
+
/**
|
|
449
|
+
* Gets the Connections board page guid.
|
|
450
|
+
* ParentPage: Connections opportunity select
|
|
451
|
+
*/
|
|
452
|
+
ConnectionsBoard: string;
|
|
453
|
+
/**
|
|
454
|
+
* Gets the Contact Us page guid
|
|
455
|
+
* ParentPage: Connect
|
|
456
|
+
*/
|
|
457
|
+
ContactUs: string;
|
|
458
|
+
/**
|
|
459
|
+
* Gets the Content page guid
|
|
460
|
+
* ParentPage: Website
|
|
461
|
+
*/
|
|
462
|
+
Content: string;
|
|
463
|
+
/**
|
|
464
|
+
* Gets the Content Channel Detail page guid
|
|
465
|
+
* ParentPage: Content Channels
|
|
466
|
+
*/
|
|
467
|
+
ContentChannelDetail: string;
|
|
468
|
+
/**
|
|
469
|
+
* Gets the Content Channel Types page guid
|
|
470
|
+
* ParentPage: CMS Configuration
|
|
471
|
+
*/
|
|
472
|
+
ContentChannelTypes: string;
|
|
473
|
+
/**
|
|
474
|
+
* Gets the Content Channels page guid
|
|
475
|
+
* ParentPage: CMS Configuration
|
|
476
|
+
*/
|
|
477
|
+
ContentChannels: string;
|
|
478
|
+
/**
|
|
479
|
+
* Gets the Content Detail page guid
|
|
480
|
+
* ParentPage: Content
|
|
481
|
+
*/
|
|
482
|
+
ContentDetail: string;
|
|
483
|
+
/**
|
|
484
|
+
* Gets the Content Item Detail page guid
|
|
485
|
+
* ParentPage: Content Channel Detail
|
|
486
|
+
*/
|
|
487
|
+
ContentItemDetail: string;
|
|
488
|
+
/**
|
|
489
|
+
* Gets the Content Type Detail page guid
|
|
490
|
+
* ParentPage: Content Channel Types
|
|
491
|
+
*/
|
|
492
|
+
ContentTypeDetail: string;
|
|
493
|
+
/** The Contribution Statement Page on the stock external site */
|
|
494
|
+
ContributionStatementPage: string;
|
|
495
|
+
/**
|
|
496
|
+
* Gets the Contributions page guid
|
|
497
|
+
* ParentPage: Person Pages
|
|
498
|
+
*/
|
|
499
|
+
Contributions: string;
|
|
500
|
+
/**
|
|
501
|
+
* Gets the Data Filters page guid
|
|
502
|
+
* ParentPage: System Settings
|
|
503
|
+
*/
|
|
504
|
+
DataFilters: string;
|
|
505
|
+
/**
|
|
506
|
+
* Gets the Data Integrity page guid
|
|
507
|
+
* ParentPage: Reporting
|
|
508
|
+
*/
|
|
509
|
+
DataIntegrity: string;
|
|
510
|
+
/**
|
|
511
|
+
* Gets the Data Selects page guid
|
|
512
|
+
* ParentPage: System Settings
|
|
513
|
+
*/
|
|
514
|
+
DataSelects: string;
|
|
515
|
+
/**
|
|
516
|
+
* Gets the Data Transformations page guid
|
|
517
|
+
* ParentPage: System Settings
|
|
518
|
+
*/
|
|
519
|
+
DataTransformations: string;
|
|
520
|
+
/**
|
|
521
|
+
* Gets the Data Views page guid
|
|
522
|
+
* ParentPage: Reporting
|
|
523
|
+
*/
|
|
524
|
+
DataViews: string;
|
|
525
|
+
/** The dataview search results page */
|
|
526
|
+
DataviewSearchResults: string;
|
|
527
|
+
/**
|
|
528
|
+
* Gets the Defined Type Detail page guid
|
|
529
|
+
* ParentPage: Defined Types
|
|
530
|
+
*/
|
|
531
|
+
DefinedTypeDetail: string;
|
|
532
|
+
/**
|
|
533
|
+
* Gets the Defined Types page guid
|
|
534
|
+
* ParentPage: General Settings
|
|
535
|
+
*/
|
|
536
|
+
DefinedTypes: string;
|
|
537
|
+
/**
|
|
538
|
+
* Gets the Devices page guid
|
|
539
|
+
* ParentPage: Check-in
|
|
540
|
+
*/
|
|
541
|
+
DevicesCheckIn: string;
|
|
542
|
+
/**
|
|
543
|
+
* Gets the Devices page guid
|
|
544
|
+
* ParentPage: General Settings
|
|
545
|
+
*/
|
|
546
|
+
DevicesGeneralSettings: string;
|
|
547
|
+
/**
|
|
548
|
+
* Gets the DISC Assessment page guid
|
|
549
|
+
* ParentPage: Support Pages
|
|
550
|
+
*/
|
|
551
|
+
DiscAssessment: string;
|
|
552
|
+
/**
|
|
553
|
+
* Gets the DISC Result page guid
|
|
554
|
+
* ParentPage: Person Profile
|
|
555
|
+
*/
|
|
556
|
+
DiscResult: string;
|
|
557
|
+
/**
|
|
558
|
+
* Gets the Download Payments page guid
|
|
559
|
+
* ParentPage: Administration
|
|
560
|
+
*/
|
|
561
|
+
DownloadPayments: string;
|
|
562
|
+
/**
|
|
563
|
+
* Gets the Duplicate Detail page guid
|
|
564
|
+
* ParentPage: Duplicate Finder
|
|
565
|
+
*/
|
|
566
|
+
DuplicateDetail: string;
|
|
567
|
+
/**
|
|
568
|
+
* Gets the Duplicate Finder page guid
|
|
569
|
+
* ParentPage: Data Integrity
|
|
570
|
+
*/
|
|
571
|
+
DuplicateFinder: string;
|
|
572
|
+
/**
|
|
573
|
+
* Gets the Edit Family page guid
|
|
574
|
+
* ParentPage: Person Profile
|
|
575
|
+
*/
|
|
576
|
+
EditFamily: string;
|
|
577
|
+
/**
|
|
578
|
+
* Gets the Edit My Account page guid
|
|
579
|
+
* ParentPage: My Account
|
|
580
|
+
*/
|
|
581
|
+
EditMyAccount: string;
|
|
582
|
+
/**
|
|
583
|
+
* Gets the Edit Person page guid
|
|
584
|
+
* ParentPage: Person Profile
|
|
585
|
+
*/
|
|
586
|
+
EditPerson: string;
|
|
587
|
+
/**
|
|
588
|
+
* Gets the Edit Scheduled Transaction page guid
|
|
589
|
+
* ParentPage: Contributions
|
|
590
|
+
*/
|
|
591
|
+
EditScheduledTransactionContributions: string;
|
|
592
|
+
/**
|
|
593
|
+
* Gets the Edit Scheduled Transaction page guid
|
|
594
|
+
* ParentPage: Scheduled Transaction
|
|
595
|
+
*/
|
|
596
|
+
EditScheduledTransactionScheduledTransaction: string;
|
|
597
|
+
/** Gets the Email Analytics page guid */
|
|
598
|
+
EmailAnalytics: string;
|
|
599
|
+
/**
|
|
600
|
+
* Gets the Email Preference page guid
|
|
601
|
+
* ParentPage: Support Pages
|
|
602
|
+
*/
|
|
603
|
+
EmailPreference: string;
|
|
604
|
+
/**
|
|
605
|
+
* Gets the Employee Details page guid
|
|
606
|
+
* ParentPage: Org Chart
|
|
607
|
+
*/
|
|
608
|
+
EmployeeDetails: string;
|
|
609
|
+
/**
|
|
610
|
+
* Gets the Engagement page guid
|
|
611
|
+
* ParentPage: People > Manage
|
|
612
|
+
*/
|
|
613
|
+
Engagement: string;
|
|
614
|
+
/**
|
|
615
|
+
* Gets the Entity Administration page guid
|
|
616
|
+
* ParentPage: Security
|
|
617
|
+
*/
|
|
618
|
+
EntityAdministration: string;
|
|
619
|
+
/**
|
|
620
|
+
* Gets the Entity Attributes page guid
|
|
621
|
+
* ParentPage: Security
|
|
622
|
+
*/
|
|
623
|
+
EntityAttributes: string;
|
|
624
|
+
/**
|
|
625
|
+
* Gets the Event Calendar page guid
|
|
626
|
+
* ParentPage: Calendars
|
|
627
|
+
*/
|
|
628
|
+
EventCalendar: string;
|
|
629
|
+
/**
|
|
630
|
+
* Gets the Event Detail page guid
|
|
631
|
+
* ParentPage: Event Calendar
|
|
632
|
+
*/
|
|
633
|
+
EventDetail: string;
|
|
634
|
+
/**
|
|
635
|
+
* Gets the Event Details page guid
|
|
636
|
+
* ParentPage: Calendar
|
|
637
|
+
*/
|
|
638
|
+
EventDetails: string;
|
|
639
|
+
/**
|
|
640
|
+
* Gets the Event Occurrence page guid
|
|
641
|
+
* ParentPage: Event Detail
|
|
642
|
+
*/
|
|
643
|
+
EventOccurrence: string;
|
|
644
|
+
/**
|
|
645
|
+
* Gets the Event Registration page guid
|
|
646
|
+
* ParentPage: Website
|
|
647
|
+
*/
|
|
648
|
+
EventRegistration: string;
|
|
649
|
+
/**
|
|
650
|
+
* Gets the Exception Detail page guid
|
|
651
|
+
* ParentPage: Exception List
|
|
652
|
+
*/
|
|
653
|
+
ExceptionDetail: string;
|
|
654
|
+
/**
|
|
655
|
+
* Gets the Exception List page guid
|
|
656
|
+
* ParentPage: System Settings
|
|
657
|
+
*/
|
|
658
|
+
ExceptionList: string;
|
|
659
|
+
/**
|
|
660
|
+
* Gets the Extended Attributes page guid
|
|
661
|
+
* ParentPage: Person Pages
|
|
662
|
+
*/
|
|
663
|
+
ExtendedAttributes: string;
|
|
664
|
+
/**
|
|
665
|
+
* Gets the External Applications page guid
|
|
666
|
+
* ParentPage: Power Tools
|
|
667
|
+
*/
|
|
668
|
+
ExternalApplications: string;
|
|
669
|
+
/**
|
|
670
|
+
* Gets the External Homepage page guid
|
|
671
|
+
* ParentPage:
|
|
672
|
+
*/
|
|
673
|
+
ExternalHomepage: string;
|
|
674
|
+
/**
|
|
675
|
+
* Gets the external site's Workflow Entry page guid
|
|
676
|
+
* ParentPage: Workflows
|
|
677
|
+
*/
|
|
678
|
+
ExternalWorkflowEntry: string;
|
|
679
|
+
/**
|
|
680
|
+
* Gets the Family Select page guid
|
|
681
|
+
* ParentPage: Check-in
|
|
682
|
+
*/
|
|
683
|
+
FamilySelect: string;
|
|
684
|
+
/**
|
|
685
|
+
* Gets the File Storage Providers page guid
|
|
686
|
+
* ParentPage: System Settings
|
|
687
|
+
*/
|
|
688
|
+
FileStorageProviders: string;
|
|
689
|
+
/**
|
|
690
|
+
* Gets the File Type page guid
|
|
691
|
+
* ParentPage: File Types
|
|
692
|
+
*/
|
|
693
|
+
FileType: string;
|
|
694
|
+
/**
|
|
695
|
+
* Gets the File Types page guid
|
|
696
|
+
* ParentPage: General Settings
|
|
697
|
+
*/
|
|
698
|
+
FileTypes: string;
|
|
699
|
+
/**
|
|
700
|
+
* Gets the Finance page guid
|
|
701
|
+
* ParentPage: Internal Homepage
|
|
702
|
+
*/
|
|
703
|
+
Finance: string;
|
|
704
|
+
/**
|
|
705
|
+
* The financial account search guid
|
|
706
|
+
* ParentPage: Internal Homepage > Finance > Administration
|
|
707
|
+
*/
|
|
708
|
+
FinancialAccountSearch: string;
|
|
709
|
+
/**
|
|
710
|
+
* Gets the Financial Batch Detail page guid
|
|
711
|
+
* ParentPage: Batches
|
|
712
|
+
*/
|
|
713
|
+
FinancialBatchDetail: string;
|
|
714
|
+
/**
|
|
715
|
+
* Gets the Financial Gateways page guid
|
|
716
|
+
* ParentPage: System Settings
|
|
717
|
+
*/
|
|
718
|
+
FinancialGateways: string;
|
|
719
|
+
/** The financial settings menu page on the internal Rock page */
|
|
720
|
+
FinancialSettings: string;
|
|
721
|
+
/**
|
|
722
|
+
* Gets the Following page guid
|
|
723
|
+
* ParentPage: Manage
|
|
724
|
+
*/
|
|
725
|
+
Following: string;
|
|
726
|
+
/**
|
|
727
|
+
* Gets the Forgot User Name page guid
|
|
728
|
+
* ParentPage: Security
|
|
729
|
+
*/
|
|
730
|
+
ForgotUserName: string;
|
|
731
|
+
/**
|
|
732
|
+
* Gets the Functions page guid
|
|
733
|
+
* ParentPage: Finance
|
|
734
|
+
*/
|
|
735
|
+
FunctionsFinance: string;
|
|
736
|
+
/**
|
|
737
|
+
* Gets the Gateway Detail page guid
|
|
738
|
+
* ParentPage: Financial Gateways
|
|
739
|
+
*/
|
|
740
|
+
GatewayDetail: string;
|
|
741
|
+
/**
|
|
742
|
+
* Gets the General Settings page guid
|
|
743
|
+
* ParentPage: Rock Settings
|
|
744
|
+
*/
|
|
745
|
+
GeneralSettings: string;
|
|
746
|
+
/**
|
|
747
|
+
* Gets the Give page guid (give now parent)
|
|
748
|
+
* ParentPage: Give
|
|
749
|
+
*/
|
|
750
|
+
Give: string;
|
|
751
|
+
/**
|
|
752
|
+
* Gets the Give Now page guid
|
|
753
|
+
* ParentPage: Give
|
|
754
|
+
*/
|
|
755
|
+
GiveNow: string;
|
|
756
|
+
/** The giving alerts */
|
|
757
|
+
GivingAlerts: string;
|
|
758
|
+
/**
|
|
759
|
+
* Gets the Global Attributes page guid
|
|
760
|
+
* ParentPage: General Settings
|
|
761
|
+
*/
|
|
762
|
+
GlobalAttributes: string;
|
|
763
|
+
/**
|
|
764
|
+
* Gets the Group Attendance Detail page guid
|
|
765
|
+
* ParentPage: Group Attendance
|
|
766
|
+
*/
|
|
767
|
+
GroupAttendanceDetail: string;
|
|
768
|
+
/**
|
|
769
|
+
* Gets the Group Attendance page guid
|
|
770
|
+
* ParentPage: Group Toolbox
|
|
771
|
+
*/
|
|
772
|
+
GroupAttendanceGroupToolbox: string;
|
|
773
|
+
/**
|
|
774
|
+
* Gets the Group Attendance page guid
|
|
775
|
+
* ParentPage: Group Viewer
|
|
776
|
+
*/
|
|
777
|
+
GroupAttendanceGroupViewer: string;
|
|
778
|
+
/** The group history grid page guid */
|
|
779
|
+
GroupHistoryGrid: string;
|
|
780
|
+
/**
|
|
781
|
+
* Gets the Group Map page guid
|
|
782
|
+
* ParentPage: Group Viewer
|
|
783
|
+
*/
|
|
784
|
+
GroupMap: string;
|
|
785
|
+
/**
|
|
786
|
+
* Gets the Group Member Detail page guid
|
|
787
|
+
* ParentPage: Application Group Detail
|
|
788
|
+
*/
|
|
789
|
+
GroupMemberDetailApplicationGroupDetail: string;
|
|
790
|
+
/**
|
|
791
|
+
* Gets the Group Member Detail page guid
|
|
792
|
+
* ParentPage: Campus Detail
|
|
793
|
+
*/
|
|
794
|
+
GroupMemberDetailCampusDetail: string;
|
|
795
|
+
/**
|
|
796
|
+
* Gets the Group Member Detail page guid
|
|
797
|
+
* ParentPage: Group Viewer
|
|
798
|
+
*/
|
|
799
|
+
GroupMemberDetailGroupViewer: string;
|
|
800
|
+
/**
|
|
801
|
+
* Gets the Group Member Detail page guid
|
|
802
|
+
* ParentPage: Photo Request Application Group
|
|
803
|
+
*/
|
|
804
|
+
GroupMemberDetailPhotoRequestApplicationGroup: string;
|
|
805
|
+
/**
|
|
806
|
+
* Gets the Group Member Detail page guid
|
|
807
|
+
* ParentPage: Security Roles Detail
|
|
808
|
+
*/
|
|
809
|
+
GroupMemberDetailSecurityRolesDetail: string;
|
|
810
|
+
/** The group member history page guid */
|
|
811
|
+
GroupMemberHistory: string;
|
|
812
|
+
/**
|
|
813
|
+
* Gets the Group Registration page guid
|
|
814
|
+
* ParentPage: Small Groups
|
|
815
|
+
*/
|
|
816
|
+
GroupRegistration: string;
|
|
817
|
+
/**
|
|
818
|
+
* Gets the Group RSVP Detail page guid
|
|
819
|
+
* ParentPage: Group RSVP List
|
|
820
|
+
*/
|
|
821
|
+
GroupRsvpDetail: string;
|
|
822
|
+
/**
|
|
823
|
+
* Gets the Group RSVP List page guid
|
|
824
|
+
* ParentPage: Group Viewer
|
|
825
|
+
*/
|
|
826
|
+
GroupRsvpList: string;
|
|
827
|
+
/**
|
|
828
|
+
* Gets the Group RSVP Response page guid
|
|
829
|
+
* ParentPage: Support Pages (External Site)
|
|
830
|
+
*/
|
|
831
|
+
GroupRsvpResponse: string;
|
|
832
|
+
/**
|
|
833
|
+
* Gets the Group Search Results page guid
|
|
834
|
+
* ParentPage: Support Pages
|
|
835
|
+
*/
|
|
836
|
+
GroupSearchResults: string;
|
|
837
|
+
/**
|
|
838
|
+
* Gets the Group Select page guid
|
|
839
|
+
* ParentPage: Check-in
|
|
840
|
+
*/
|
|
841
|
+
GroupSelect: string;
|
|
842
|
+
/**
|
|
843
|
+
* Gets the Group Toolbox page guid
|
|
844
|
+
* ParentPage: My Account
|
|
845
|
+
*/
|
|
846
|
+
GroupToolbox: string;
|
|
847
|
+
/**
|
|
848
|
+
* Gets the Group Type Detail page guid
|
|
849
|
+
* ParentPage: Group Types
|
|
850
|
+
*/
|
|
851
|
+
GroupTypeDetail: string;
|
|
852
|
+
/**
|
|
853
|
+
* Gets the Group Type Select page guid
|
|
854
|
+
* ParentPage: Check-in
|
|
855
|
+
*/
|
|
856
|
+
GroupTypeSelect: string;
|
|
857
|
+
/**
|
|
858
|
+
* Gets the Group Types page guid
|
|
859
|
+
* ParentPage: General Settings
|
|
860
|
+
*/
|
|
861
|
+
GroupTypes: string;
|
|
862
|
+
/**
|
|
863
|
+
* Gets the Group Viewer page guid
|
|
864
|
+
* ParentPage: Manage
|
|
865
|
+
*/
|
|
866
|
+
GroupViewer: string;
|
|
867
|
+
/**
|
|
868
|
+
* Gets the Groups page guid
|
|
869
|
+
* ParentPage: Person Pages
|
|
870
|
+
*/
|
|
871
|
+
Groups: string;
|
|
872
|
+
/**
|
|
873
|
+
* Gets the History page guid
|
|
874
|
+
* ParentPage: Person Pages
|
|
875
|
+
*/
|
|
876
|
+
History: string;
|
|
877
|
+
/**
|
|
878
|
+
* Gets the History Categories page guid
|
|
879
|
+
* ParentPage: System Settings
|
|
880
|
+
*/
|
|
881
|
+
HistoryCategories: string;
|
|
882
|
+
/**
|
|
883
|
+
* Gets the HTML Content Approval page guid
|
|
884
|
+
* ParentPage: Website
|
|
885
|
+
*/
|
|
886
|
+
HtmlContentApproval: string;
|
|
887
|
+
/** Gets the htmleditor RockAssetManager Plugin Frame page guid */
|
|
888
|
+
HtmleditorRockassetmanagerPluginFrame: string;
|
|
889
|
+
/**
|
|
890
|
+
* Gets the HtmlEditor RockFileBrowser Plugin Frame page guid
|
|
891
|
+
* ParentPage: System Dialogs
|
|
892
|
+
*/
|
|
893
|
+
HtmleditorRockfilebrowserPluginFrame: string;
|
|
894
|
+
/**
|
|
895
|
+
* Gets the HtmlEditor RockMergeField Plugin Frame page guid
|
|
896
|
+
* ParentPage: System Dialogs
|
|
897
|
+
*/
|
|
898
|
+
HtmleditorRockmergefieldPluginFrame: string;
|
|
899
|
+
/**
|
|
900
|
+
* Gets the Internal Homepage page guid
|
|
901
|
+
* ParentPage:
|
|
902
|
+
*/
|
|
903
|
+
InternalHomepage: string;
|
|
904
|
+
/**
|
|
905
|
+
* Gets the Item Detail page guid
|
|
906
|
+
* ParentPage: Support Pages
|
|
907
|
+
*/
|
|
908
|
+
ItemDetail: string;
|
|
909
|
+
/**
|
|
910
|
+
* Gets the Jobs Administration page guid
|
|
911
|
+
* ParentPage: System Settings
|
|
912
|
+
*/
|
|
913
|
+
JobsAdministration: string;
|
|
914
|
+
/**
|
|
915
|
+
* Gets the Label Merge Fields page guid
|
|
916
|
+
* ParentPage: Check-in
|
|
917
|
+
*/
|
|
918
|
+
LabelMergeFields: string;
|
|
919
|
+
/**
|
|
920
|
+
* Gets the LaunchWorkflow page guid
|
|
921
|
+
* ParentPage: Workflows
|
|
922
|
+
*/
|
|
923
|
+
Launchworkflow: string;
|
|
924
|
+
/**
|
|
925
|
+
* Gets the Layout Detail page guid
|
|
926
|
+
* ParentPage: Site Detail
|
|
927
|
+
*/
|
|
928
|
+
LayoutDetail: string;
|
|
929
|
+
/** The library viewer page. */
|
|
930
|
+
LibraryViewer: string;
|
|
931
|
+
/**
|
|
932
|
+
* Gets the Link Organization page guid
|
|
933
|
+
* ParentPage: Rock Shop
|
|
934
|
+
*/
|
|
935
|
+
LinkOrganization: string;
|
|
936
|
+
/**
|
|
937
|
+
* Gets the Location Detail page guid
|
|
938
|
+
* ParentPage: Location Editor
|
|
939
|
+
*/
|
|
940
|
+
LocationDetail: string;
|
|
941
|
+
/**
|
|
942
|
+
* Gets the Location Editor page guid
|
|
943
|
+
* ParentPage: Power Tools
|
|
944
|
+
*/
|
|
945
|
+
LocationEditor: string;
|
|
946
|
+
/**
|
|
947
|
+
* Gets the Location Select page guid
|
|
948
|
+
* ParentPage: Check-in
|
|
949
|
+
*/
|
|
950
|
+
LocationSelect: string;
|
|
951
|
+
/**
|
|
952
|
+
* Gets the Location Services page guid
|
|
953
|
+
* ParentPage: System Settings
|
|
954
|
+
*/
|
|
955
|
+
LocationServices: string;
|
|
956
|
+
/**
|
|
957
|
+
* The login viewer
|
|
958
|
+
* ParentPage: System Settings
|
|
959
|
+
*/
|
|
960
|
+
LogViewer: string;
|
|
961
|
+
/**
|
|
962
|
+
* Gets the Login page guid
|
|
963
|
+
* ParentPage: Security
|
|
964
|
+
*/
|
|
965
|
+
LoginSecurity: string;
|
|
966
|
+
/**
|
|
967
|
+
* Gets the Manage page guid
|
|
968
|
+
* ParentPage: People
|
|
969
|
+
*/
|
|
970
|
+
Manage: string;
|
|
971
|
+
/**
|
|
972
|
+
* Gets the Manage Workflows page guid
|
|
973
|
+
* ParentPage: Workflows
|
|
974
|
+
*/
|
|
975
|
+
ManageWorkflows: string;
|
|
976
|
+
/**
|
|
977
|
+
* Gets the Mass Push Notifications page guid
|
|
978
|
+
* ParentPage: Communications
|
|
979
|
+
*/
|
|
980
|
+
MassPushNotifications: string;
|
|
981
|
+
/**
|
|
982
|
+
* Gets the Merge People page guid
|
|
983
|
+
* ParentPage: Manage
|
|
984
|
+
*/
|
|
985
|
+
MergePeople: string;
|
|
986
|
+
/**
|
|
987
|
+
* Gets the Merge Template Detail page guid
|
|
988
|
+
* ParentPage: Merge Templates
|
|
989
|
+
*/
|
|
990
|
+
MergeTemplateDetail: string;
|
|
991
|
+
/**
|
|
992
|
+
* Gets the Merge Template Entry page guid
|
|
993
|
+
* ParentPage: Support Pages
|
|
994
|
+
*/
|
|
995
|
+
MergeTemplateEntry: string;
|
|
996
|
+
/**
|
|
997
|
+
* Gets the Merge Template Types page guid
|
|
998
|
+
* ParentPage: System Settings
|
|
999
|
+
*/
|
|
1000
|
+
MergeTemplateTypes: string;
|
|
1001
|
+
/**
|
|
1002
|
+
* Gets the Merge Templates page guid
|
|
1003
|
+
* ParentPage: General Settings
|
|
1004
|
+
*/
|
|
1005
|
+
MergeTemplatesGeneralSettings: string;
|
|
1006
|
+
/**
|
|
1007
|
+
* Gets the Merge Templates page guid
|
|
1008
|
+
* ParentPage: My Settings
|
|
1009
|
+
*/
|
|
1010
|
+
MergeTemplatesMySettings: string;
|
|
1011
|
+
/**
|
|
1012
|
+
* Gets the Metric Value Detail page guid
|
|
1013
|
+
* ParentPage: Metrics
|
|
1014
|
+
*/
|
|
1015
|
+
MetricValueDetail: string;
|
|
1016
|
+
/**
|
|
1017
|
+
* Gets the Metrics page guid
|
|
1018
|
+
* ParentPage: Reporting
|
|
1019
|
+
*/
|
|
1020
|
+
Metrics: string;
|
|
1021
|
+
/** The mobile site pages */
|
|
1022
|
+
MobileSitePages: string;
|
|
1023
|
+
/**
|
|
1024
|
+
* Gets the My Account page guid
|
|
1025
|
+
* ParentPage: Security
|
|
1026
|
+
*/
|
|
1027
|
+
MyAccountSecurity: string;
|
|
1028
|
+
/**
|
|
1029
|
+
* Gets the My Dashboard page guid
|
|
1030
|
+
* ParentPage: Internal Homepage
|
|
1031
|
+
*/
|
|
1032
|
+
MyDashboard: string;
|
|
1033
|
+
/**
|
|
1034
|
+
* Gets the My Settings page guid
|
|
1035
|
+
* ParentPage: Internal Homepage
|
|
1036
|
+
*/
|
|
1037
|
+
MySettings: string;
|
|
1038
|
+
/**
|
|
1039
|
+
* Gets the My Workflows page guid
|
|
1040
|
+
* ParentPage: Workflow
|
|
1041
|
+
*/
|
|
1042
|
+
MyWorkflows: string;
|
|
1043
|
+
/**
|
|
1044
|
+
* Gets the Named Locations page guid
|
|
1045
|
+
* ParentPage: Check-in
|
|
1046
|
+
*/
|
|
1047
|
+
NamedLocationsCheckIn: string;
|
|
1048
|
+
/**
|
|
1049
|
+
* Gets the Named Locations page guid
|
|
1050
|
+
* ParentPage: General Settings
|
|
1051
|
+
*/
|
|
1052
|
+
NamedLocationsGeneralSettings: string;
|
|
1053
|
+
/**
|
|
1054
|
+
* Gets the New Account page guid
|
|
1055
|
+
* ParentPage: Security
|
|
1056
|
+
*/
|
|
1057
|
+
NewAccount: string;
|
|
1058
|
+
/**
|
|
1059
|
+
* Gets the New Communication page guid
|
|
1060
|
+
* ParentPage: Communications
|
|
1061
|
+
*/
|
|
1062
|
+
NewCommunication: string;
|
|
1063
|
+
/**
|
|
1064
|
+
* Gets the New Family page guid
|
|
1065
|
+
* ParentPage: Manage
|
|
1066
|
+
*/
|
|
1067
|
+
NewFamily: string;
|
|
1068
|
+
/**
|
|
1069
|
+
* Notification List page
|
|
1070
|
+
* ParentPage: My Dashboard
|
|
1071
|
+
*/
|
|
1072
|
+
NotificationList: string;
|
|
1073
|
+
/** The oidc client detail page. */
|
|
1074
|
+
OidcClientDetail: string;
|
|
1075
|
+
/** The oidc clients page. */
|
|
1076
|
+
OidcClientList: string;
|
|
1077
|
+
/** The oidc give permission page. */
|
|
1078
|
+
OidcGivePermission: string;
|
|
1079
|
+
/** The oidc logout page. */
|
|
1080
|
+
OidcLogout: string;
|
|
1081
|
+
/** The oidc scope detail page. */
|
|
1082
|
+
OidcScopeDetail: string;
|
|
1083
|
+
/** The oidc scopes page. */
|
|
1084
|
+
OidcScopeList: string;
|
|
1085
|
+
/**
|
|
1086
|
+
* Gets the Org Chart page guid
|
|
1087
|
+
* ParentPage: Office Information
|
|
1088
|
+
*/
|
|
1089
|
+
OrgChart: string;
|
|
1090
|
+
/**
|
|
1091
|
+
* Gets the Package Detail page guid
|
|
1092
|
+
* ParentPage: Rock Shop
|
|
1093
|
+
*/
|
|
1094
|
+
PackageDetail: string;
|
|
1095
|
+
/**
|
|
1096
|
+
* Gets the Package Install page guid
|
|
1097
|
+
* ParentPage: Rock Shop
|
|
1098
|
+
*/
|
|
1099
|
+
PackageInstall: string;
|
|
1100
|
+
/**
|
|
1101
|
+
* Gets the Packages By Category page guid
|
|
1102
|
+
* ParentPage: Rock Shop
|
|
1103
|
+
*/
|
|
1104
|
+
PackagesByCategory: string;
|
|
1105
|
+
/**
|
|
1106
|
+
* Gets the Page Map page guid
|
|
1107
|
+
* ParentPage: CMS Configuration
|
|
1108
|
+
*/
|
|
1109
|
+
PageMap: string;
|
|
1110
|
+
/**
|
|
1111
|
+
* Gets the Page Properties page guid
|
|
1112
|
+
* ParentPage: System Dialogs
|
|
1113
|
+
*/
|
|
1114
|
+
PageProperties: string;
|
|
1115
|
+
/**
|
|
1116
|
+
* Gets the Page Route Detail page guid
|
|
1117
|
+
* ParentPage: Routes
|
|
1118
|
+
*/
|
|
1119
|
+
PageRouteDetail: string;
|
|
1120
|
+
/**
|
|
1121
|
+
* Gets the Page Map page guid
|
|
1122
|
+
* ParentPage: CMS Configuration
|
|
1123
|
+
*/
|
|
1124
|
+
PageViews: string;
|
|
1125
|
+
/**
|
|
1126
|
+
* Gets the People page guid
|
|
1127
|
+
* ParentPage: Internal Homepage
|
|
1128
|
+
*/
|
|
1129
|
+
People: string;
|
|
1130
|
+
/**
|
|
1131
|
+
* Gets the Person Attributes page guid
|
|
1132
|
+
* ParentPage: General Settings
|
|
1133
|
+
*/
|
|
1134
|
+
PersonAttributes: string;
|
|
1135
|
+
/**
|
|
1136
|
+
* Gets the Person Page Views page guid
|
|
1137
|
+
* ParentPage: Person Profile
|
|
1138
|
+
*/
|
|
1139
|
+
PersonPageViews: string;
|
|
1140
|
+
/**
|
|
1141
|
+
* Gets the Person Pages page guid
|
|
1142
|
+
* ParentPage: Support Pages
|
|
1143
|
+
*/
|
|
1144
|
+
PersonPages: string;
|
|
1145
|
+
/**
|
|
1146
|
+
* Gets the Person Profile page guid that is under Check-in Manager
|
|
1147
|
+
* ParentPage: Check-in Manager
|
|
1148
|
+
*/
|
|
1149
|
+
PersonProfileCheckInManager: string;
|
|
1150
|
+
/**
|
|
1151
|
+
* Gets the Person Profile page guid
|
|
1152
|
+
* ParentPage: Person Pages
|
|
1153
|
+
*/
|
|
1154
|
+
PersonProfilePersonPages: string;
|
|
1155
|
+
/**
|
|
1156
|
+
* Gets the Person Search page guid
|
|
1157
|
+
* ParentPage: Support Pages
|
|
1158
|
+
*/
|
|
1159
|
+
PersonSearch: string;
|
|
1160
|
+
/**
|
|
1161
|
+
* Gets the Person Select page guid
|
|
1162
|
+
* ParentPage: Check-in
|
|
1163
|
+
*/
|
|
1164
|
+
PersonSelect: string;
|
|
1165
|
+
/**
|
|
1166
|
+
* Gets the Person Viewed Detail page guid
|
|
1167
|
+
* ParentPage: Security
|
|
1168
|
+
*/
|
|
1169
|
+
PersonViewedDetail: string;
|
|
1170
|
+
/** The phone number lookup page. */
|
|
1171
|
+
PhoneNumberLookup: string;
|
|
1172
|
+
/**
|
|
1173
|
+
* Gets the Photo Opt-Out page guid
|
|
1174
|
+
* ParentPage: Support Pages
|
|
1175
|
+
*/
|
|
1176
|
+
PhotoOptOut: string;
|
|
1177
|
+
/**
|
|
1178
|
+
* Gets the Photo Request Application Group page guid
|
|
1179
|
+
* ParentPage: Photo Requests
|
|
1180
|
+
*/
|
|
1181
|
+
PhotoRequestApplicationGroup: string;
|
|
1182
|
+
/**
|
|
1183
|
+
* Gets the Photo Requests page guid
|
|
1184
|
+
* ParentPage: Data Integrity
|
|
1185
|
+
*/
|
|
1186
|
+
PhotoRequests: string;
|
|
1187
|
+
/**
|
|
1188
|
+
* Gets the Photo Upload page guid
|
|
1189
|
+
* ParentPage: Support Pages
|
|
1190
|
+
*/
|
|
1191
|
+
PhotoUpload: string;
|
|
1192
|
+
/**
|
|
1193
|
+
* Gets the Pledge Detail page guid
|
|
1194
|
+
* ParentPage: Pledge List
|
|
1195
|
+
*/
|
|
1196
|
+
PledgeDetail: string;
|
|
1197
|
+
/**
|
|
1198
|
+
* Gets the Pledge List page guid
|
|
1199
|
+
* ParentPage: Functions
|
|
1200
|
+
*/
|
|
1201
|
+
PledgeList: string;
|
|
1202
|
+
/**
|
|
1203
|
+
* Gets the Power Tools page guid
|
|
1204
|
+
* ParentPage: Rock Settings
|
|
1205
|
+
*/
|
|
1206
|
+
PowerTools: string;
|
|
1207
|
+
/** The PowerBI Account Registration Page */
|
|
1208
|
+
PowerbiAccountRegistration: string;
|
|
1209
|
+
/**
|
|
1210
|
+
* Gets the Prayer Categories page guid
|
|
1211
|
+
* ParentPage: General Settings
|
|
1212
|
+
*/
|
|
1213
|
+
PrayerCategories: string;
|
|
1214
|
+
/**
|
|
1215
|
+
* Gets the Prayer page guid
|
|
1216
|
+
* ParentPage: Manage
|
|
1217
|
+
*/
|
|
1218
|
+
PrayerManage: string;
|
|
1219
|
+
/**
|
|
1220
|
+
* Gets the Prayer Request Detail page guid
|
|
1221
|
+
* ParentPage: Prayer
|
|
1222
|
+
*/
|
|
1223
|
+
PrayerRequestDetail: string;
|
|
1224
|
+
/**
|
|
1225
|
+
* Gets the (Public) Create Pledge page guid
|
|
1226
|
+
* ParentPage: Pledge List
|
|
1227
|
+
*/
|
|
1228
|
+
PublicCreatePledge: string;
|
|
1229
|
+
/**
|
|
1230
|
+
* Gets the Purchases page guid
|
|
1231
|
+
* ParentPage: Rock Shop
|
|
1232
|
+
*/
|
|
1233
|
+
Purchases: string;
|
|
1234
|
+
/** The registration detail */
|
|
1235
|
+
RegistrationDetail: string;
|
|
1236
|
+
/**
|
|
1237
|
+
* Gets the Registration Instance page guid
|
|
1238
|
+
* ParentPage: Event Registration
|
|
1239
|
+
*/
|
|
1240
|
+
RegistrationInstance: string;
|
|
1241
|
+
/**
|
|
1242
|
+
* Gets the Registration Instance - Discounts page guid
|
|
1243
|
+
* ParentPage: Event Registration
|
|
1244
|
+
*/
|
|
1245
|
+
RegistrationInstanceDiscounts: string;
|
|
1246
|
+
/**
|
|
1247
|
+
* Gets the Registration Instance - Fees page guid
|
|
1248
|
+
* ParentPage: Event Registration
|
|
1249
|
+
*/
|
|
1250
|
+
RegistrationInstanceFees: string;
|
|
1251
|
+
/** The registration instance linkage */
|
|
1252
|
+
RegistrationInstanceLinkage: string;
|
|
1253
|
+
/**
|
|
1254
|
+
* Gets the Registration Instance - Linkages page guid
|
|
1255
|
+
* ParentPage: Event Registration
|
|
1256
|
+
*/
|
|
1257
|
+
RegistrationInstanceLinkages: string;
|
|
1258
|
+
/**
|
|
1259
|
+
* Gets the Registration Instance - Payments page guid
|
|
1260
|
+
* ParentPage: Event Registration
|
|
1261
|
+
*/
|
|
1262
|
+
RegistrationInstancePayments: string;
|
|
1263
|
+
/**
|
|
1264
|
+
* Gets the Registration Instance - Placement Groups page guid
|
|
1265
|
+
* ParentPage: Event Registration
|
|
1266
|
+
*/
|
|
1267
|
+
RegistrationInstancePlacementGroups: string;
|
|
1268
|
+
/**
|
|
1269
|
+
* Gets the Registration Instance - Registrants page guid
|
|
1270
|
+
* ParentPage: Event Registration
|
|
1271
|
+
*/
|
|
1272
|
+
RegistrationInstanceRegistrants: string;
|
|
1273
|
+
/**
|
|
1274
|
+
* Gets the Registration Instance - Registrations page guid
|
|
1275
|
+
* ParentPage: Event Registration
|
|
1276
|
+
*/
|
|
1277
|
+
RegistrationInstanceRegistrations: string;
|
|
1278
|
+
/**
|
|
1279
|
+
* Gets the Registration Instance - Wait List page guid
|
|
1280
|
+
* ParentPage: Event Registration
|
|
1281
|
+
*/
|
|
1282
|
+
RegistrationInstanceWaitList: string;
|
|
1283
|
+
/** The registration send payment reminders */
|
|
1284
|
+
RegistrationSendPaymentReminders: string;
|
|
1285
|
+
/** The Registration Template Placement page guid */
|
|
1286
|
+
RegistrationTemplatePlacement: string;
|
|
1287
|
+
/** The registration wait list confirmation */
|
|
1288
|
+
RegistrationWaitListConfirmation: string;
|
|
1289
|
+
/**
|
|
1290
|
+
* Reminder Edit page.
|
|
1291
|
+
* ParentPage: Reminder List.
|
|
1292
|
+
*/
|
|
1293
|
+
ReminderEdit: string;
|
|
1294
|
+
/**
|
|
1295
|
+
* Reminder List page.
|
|
1296
|
+
* ParentPage: People > Manage.
|
|
1297
|
+
*/
|
|
1298
|
+
ReminderList: string;
|
|
1299
|
+
/**
|
|
1300
|
+
* Reminder List page.
|
|
1301
|
+
* ParentPage: General Settings.
|
|
1302
|
+
*/
|
|
1303
|
+
ReminderTypes: string;
|
|
1304
|
+
/**
|
|
1305
|
+
* Gets the Report Detail page guid
|
|
1306
|
+
* ParentPage: Reports
|
|
1307
|
+
*/
|
|
1308
|
+
ReportDetail: string;
|
|
1309
|
+
/** The report search results page */
|
|
1310
|
+
ReportSearchResults: string;
|
|
1311
|
+
/**
|
|
1312
|
+
* Gets the Reporting page guid
|
|
1313
|
+
* ParentPage: Tools
|
|
1314
|
+
*/
|
|
1315
|
+
Reporting: string;
|
|
1316
|
+
/**
|
|
1317
|
+
* Gets the Reports page guid
|
|
1318
|
+
* ParentPage: Data Integrity
|
|
1319
|
+
*/
|
|
1320
|
+
ReportsDataIntegrity: string;
|
|
1321
|
+
/**
|
|
1322
|
+
* Gets the Reports page guid
|
|
1323
|
+
* ParentPage: Reporting
|
|
1324
|
+
*/
|
|
1325
|
+
ReportsReporting: string;
|
|
1326
|
+
/**
|
|
1327
|
+
* Gets the REST Controller Actions page guid
|
|
1328
|
+
* ParentPage: REST Controllers
|
|
1329
|
+
*/
|
|
1330
|
+
RestControllerActions: string;
|
|
1331
|
+
/**
|
|
1332
|
+
* Gets the REST Controllers page guid
|
|
1333
|
+
* ParentPage: Security
|
|
1334
|
+
*/
|
|
1335
|
+
RestControllers: string;
|
|
1336
|
+
/**
|
|
1337
|
+
* Gets the REST CORS Domains page guid
|
|
1338
|
+
* ParentPage: Security
|
|
1339
|
+
*/
|
|
1340
|
+
RestCorsDomains: string;
|
|
1341
|
+
/**
|
|
1342
|
+
* Gets the REST Key Detail page guid
|
|
1343
|
+
* ParentPage: REST Keys
|
|
1344
|
+
*/
|
|
1345
|
+
RestKeyDetail: string;
|
|
1346
|
+
/**
|
|
1347
|
+
* Gets the REST Keys page guid
|
|
1348
|
+
* ParentPage: Security
|
|
1349
|
+
*/
|
|
1350
|
+
RestKeys: string;
|
|
1351
|
+
/**
|
|
1352
|
+
* Gets the Rock Settings page guid
|
|
1353
|
+
* ParentPage: Admin Tools
|
|
1354
|
+
*/
|
|
1355
|
+
RockSettings: string;
|
|
1356
|
+
/**
|
|
1357
|
+
* Gets the Rock Shop page guid
|
|
1358
|
+
* ParentPage: Rock Settings
|
|
1359
|
+
*/
|
|
1360
|
+
RockShop: string;
|
|
1361
|
+
/**
|
|
1362
|
+
* Gets the Rock Update page guid
|
|
1363
|
+
* ParentPage: General Settings
|
|
1364
|
+
*/
|
|
1365
|
+
RockUpdate: string;
|
|
1366
|
+
/**
|
|
1367
|
+
* Gets the Routes page guid
|
|
1368
|
+
* ParentPage: CMS Configuration
|
|
1369
|
+
*/
|
|
1370
|
+
Routes: string;
|
|
1371
|
+
/**
|
|
1372
|
+
* Gets the Safe Sender Domains page guid
|
|
1373
|
+
* ParentPage: Communications
|
|
1374
|
+
*/
|
|
1375
|
+
SafeSenderDomains: string;
|
|
1376
|
+
/**
|
|
1377
|
+
* Gets the Sample Data page guid
|
|
1378
|
+
* ParentPage: Power Tools
|
|
1379
|
+
*/
|
|
1380
|
+
SampleData: string;
|
|
1381
|
+
/**
|
|
1382
|
+
* Gets the Schedule Builder page guid
|
|
1383
|
+
* ParentPage: Check-in Configuration
|
|
1384
|
+
*/
|
|
1385
|
+
ScheduleBuilder: string;
|
|
1386
|
+
/** The schedule confirmation page guid */
|
|
1387
|
+
ScheduleConfirmation: string;
|
|
1388
|
+
/**
|
|
1389
|
+
* Gets the Scheduled Job Detail page guid
|
|
1390
|
+
* ParentPage: Jobs Administration
|
|
1391
|
+
*/
|
|
1392
|
+
ScheduledJobDetail: string;
|
|
1393
|
+
/**
|
|
1394
|
+
* Gets the Scheduled Transaction page guid
|
|
1395
|
+
* ParentPage: Scheduled Transactions
|
|
1396
|
+
*/
|
|
1397
|
+
ScheduledTransaction: string;
|
|
1398
|
+
/**
|
|
1399
|
+
* Gets the Scheduled Transactions page guid
|
|
1400
|
+
* ParentPage: Functions
|
|
1401
|
+
*/
|
|
1402
|
+
ScheduledTransactions: string;
|
|
1403
|
+
/**
|
|
1404
|
+
* Gets the Schedules page guid
|
|
1405
|
+
* ParentPage: Check-in
|
|
1406
|
+
*/
|
|
1407
|
+
SchedulesCheckIn: string;
|
|
1408
|
+
/**
|
|
1409
|
+
* Gets the Schedules page guid
|
|
1410
|
+
* ParentPage: General Settings
|
|
1411
|
+
*/
|
|
1412
|
+
SchedulesGeneralSettings: string;
|
|
1413
|
+
/**
|
|
1414
|
+
* Gets the Search page guid
|
|
1415
|
+
* ParentPage: Check-in
|
|
1416
|
+
*/
|
|
1417
|
+
Search: string;
|
|
1418
|
+
/**
|
|
1419
|
+
* Gets the Search Services page guid
|
|
1420
|
+
* ParentPage: System Settings
|
|
1421
|
+
*/
|
|
1422
|
+
SearchServices: string;
|
|
1423
|
+
/** Gets the Search Type page guid */
|
|
1424
|
+
SearchType: string;
|
|
1425
|
+
/**
|
|
1426
|
+
* Gets the Security page guid
|
|
1427
|
+
* ParentPage: Admin Tools
|
|
1428
|
+
*/
|
|
1429
|
+
SecurityAdminTools: string;
|
|
1430
|
+
/**
|
|
1431
|
+
* Gets the Security page guid
|
|
1432
|
+
* ParentPage: Person Pages
|
|
1433
|
+
*/
|
|
1434
|
+
SecurityPersonPages: string;
|
|
1435
|
+
/**
|
|
1436
|
+
* Gets the Security page guid
|
|
1437
|
+
* ParentPage: Rock Settings
|
|
1438
|
+
*/
|
|
1439
|
+
SecurityRockSettings: string;
|
|
1440
|
+
/**
|
|
1441
|
+
* Gets the Security Roles page guid
|
|
1442
|
+
* ParentPage: Security
|
|
1443
|
+
*/
|
|
1444
|
+
SecurityRoles: string;
|
|
1445
|
+
/**
|
|
1446
|
+
* Gets the Security Roles Detail page guid
|
|
1447
|
+
* ParentPage: Security Roles
|
|
1448
|
+
*/
|
|
1449
|
+
SecurityRolesDetail: string;
|
|
1450
|
+
/**
|
|
1451
|
+
* Gets the Security page guid
|
|
1452
|
+
* ParentPage: System Dialogs
|
|
1453
|
+
*/
|
|
1454
|
+
SecuritySystemDialogs: string;
|
|
1455
|
+
/**
|
|
1456
|
+
* Gets the Send Photo Requests page guid
|
|
1457
|
+
* ParentPage: Communications
|
|
1458
|
+
*/
|
|
1459
|
+
SendPhotoRequests: string;
|
|
1460
|
+
/**
|
|
1461
|
+
* Gets the short link page GUID
|
|
1462
|
+
* ParentPage: System Dialogs
|
|
1463
|
+
*/
|
|
1464
|
+
ShortLink: string;
|
|
1465
|
+
/**
|
|
1466
|
+
* Gets the Sites page guid
|
|
1467
|
+
* ParentPage: CMS Configuration
|
|
1468
|
+
*/
|
|
1469
|
+
Sites: string;
|
|
1470
|
+
/**
|
|
1471
|
+
* The SMS phone numbers
|
|
1472
|
+
* ParentPage: Communications
|
|
1473
|
+
*/
|
|
1474
|
+
SmsPhoneNumbers: string;
|
|
1475
|
+
/**
|
|
1476
|
+
* Gets the SQL Command page guid
|
|
1477
|
+
* ParentPage: Power Tools
|
|
1478
|
+
*/
|
|
1479
|
+
SqlCommand: string;
|
|
1480
|
+
/**
|
|
1481
|
+
* Gets the Step Flow page guid
|
|
1482
|
+
* ParentPage: Engagement
|
|
1483
|
+
*/
|
|
1484
|
+
StepFlow: string;
|
|
1485
|
+
/**
|
|
1486
|
+
* Gets the Step Program Detail page guid
|
|
1487
|
+
* ParentPage: Step Programs
|
|
1488
|
+
*/
|
|
1489
|
+
StepProgramDetail: string;
|
|
1490
|
+
/**
|
|
1491
|
+
* Gets the Step Programs page guid
|
|
1492
|
+
* ParentPage: Engagement
|
|
1493
|
+
*/
|
|
1494
|
+
StepPrograms: string;
|
|
1495
|
+
/**
|
|
1496
|
+
* Gets the Streak page guid
|
|
1497
|
+
* ParentPage: Streak Type Detail
|
|
1498
|
+
*/
|
|
1499
|
+
Streak: string;
|
|
1500
|
+
/**
|
|
1501
|
+
* Gets the Streak Type Detail page guid
|
|
1502
|
+
* ParentPage: Streak Types
|
|
1503
|
+
*/
|
|
1504
|
+
StreakTypeDetail: string;
|
|
1505
|
+
/**
|
|
1506
|
+
* Gets the Streak Type Detail page guid
|
|
1507
|
+
* ParentPage: Streak Type Detail
|
|
1508
|
+
*/
|
|
1509
|
+
StreakTypeExclusionDetail: string;
|
|
1510
|
+
/**
|
|
1511
|
+
* Gets the Streak Types page guid
|
|
1512
|
+
* ParentPage: Engagement
|
|
1513
|
+
*/
|
|
1514
|
+
StreakTypes: string;
|
|
1515
|
+
/**
|
|
1516
|
+
* Gets the Success page guid
|
|
1517
|
+
* ParentPage: Check-in
|
|
1518
|
+
*/
|
|
1519
|
+
Success: string;
|
|
1520
|
+
/**
|
|
1521
|
+
* Gets the Support Pages page guid (external site)
|
|
1522
|
+
* ParentPage: External Site
|
|
1523
|
+
*/
|
|
1524
|
+
SupportPagesExternalSite: string;
|
|
1525
|
+
/**
|
|
1526
|
+
* Gets the Support Pages page guid (internal site)
|
|
1527
|
+
* ParentPage: Internal Homepage
|
|
1528
|
+
*/
|
|
1529
|
+
SupportPagesInternalHomepage: string;
|
|
1530
|
+
/**
|
|
1531
|
+
* Gets the System Communications page guid
|
|
1532
|
+
* ParentPage: Communications
|
|
1533
|
+
*/
|
|
1534
|
+
SystemCommunicationDetail: string;
|
|
1535
|
+
/**
|
|
1536
|
+
* Gets the System Communications page guid
|
|
1537
|
+
* ParentPage: Communications
|
|
1538
|
+
*/
|
|
1539
|
+
SystemCommunicationList: string;
|
|
1540
|
+
/** The system communication preview internal page. */
|
|
1541
|
+
SystemCommunicationPreview: string;
|
|
1542
|
+
/**
|
|
1543
|
+
* Gets the System Configuration page guid
|
|
1544
|
+
* ParentPage: System Settings
|
|
1545
|
+
*/
|
|
1546
|
+
SystemConfiguration: string;
|
|
1547
|
+
/**
|
|
1548
|
+
* Gets the System Dialogs page guid
|
|
1549
|
+
* ParentPage: Internal Homepage
|
|
1550
|
+
*/
|
|
1551
|
+
SystemDialogs: string;
|
|
1552
|
+
/**
|
|
1553
|
+
* Gets the System Email Categories page guid
|
|
1554
|
+
* ParentPage: Communications
|
|
1555
|
+
*/
|
|
1556
|
+
SystemEmailCategoriesCommunications: string;
|
|
1557
|
+
/**
|
|
1558
|
+
* Gets the System Email Categories page guid
|
|
1559
|
+
* ParentPage: System Emails
|
|
1560
|
+
*/
|
|
1561
|
+
SystemEmailCategoriesSystemEmails: string;
|
|
1562
|
+
/**
|
|
1563
|
+
* Gets the System Email Details page guid
|
|
1564
|
+
* ParentPage: System Emails
|
|
1565
|
+
*/
|
|
1566
|
+
SystemEmailDetails: string;
|
|
1567
|
+
/**
|
|
1568
|
+
* Gets the System Emails page guid
|
|
1569
|
+
* ParentPage: Communications
|
|
1570
|
+
*/
|
|
1571
|
+
SystemEmails: string;
|
|
1572
|
+
/**
|
|
1573
|
+
* Gets the System Information page guid
|
|
1574
|
+
* ParentPage: System Dialogs
|
|
1575
|
+
*/
|
|
1576
|
+
SystemInformation: string;
|
|
1577
|
+
/**
|
|
1578
|
+
* Gets the System Settings page guid
|
|
1579
|
+
* ParentPage: Rock Settings
|
|
1580
|
+
*/
|
|
1581
|
+
SystemSettings: string;
|
|
1582
|
+
/**
|
|
1583
|
+
* Gets the Tag page guid
|
|
1584
|
+
* ParentPage: Tags
|
|
1585
|
+
*/
|
|
1586
|
+
Tag: string;
|
|
1587
|
+
/**
|
|
1588
|
+
* Gets the Tag Details page guid
|
|
1589
|
+
* ParentPage: Tags
|
|
1590
|
+
*/
|
|
1591
|
+
TagDetails: string;
|
|
1592
|
+
/**
|
|
1593
|
+
* Gets the Tags page guid
|
|
1594
|
+
* ParentPage: General Settings
|
|
1595
|
+
*/
|
|
1596
|
+
TagsGeneralSettings: string;
|
|
1597
|
+
/**
|
|
1598
|
+
* Gets the Tags page guid
|
|
1599
|
+
* ParentPage: Manage
|
|
1600
|
+
*/
|
|
1601
|
+
TagsManage: string;
|
|
1602
|
+
/** Gets the Text To Give Setup page guid */
|
|
1603
|
+
TextToGiveSetup: string;
|
|
1604
|
+
/**
|
|
1605
|
+
* Gets the Time Select page guid
|
|
1606
|
+
* ParentPage: Check-in
|
|
1607
|
+
*/
|
|
1608
|
+
TimeSelect: string;
|
|
1609
|
+
/**
|
|
1610
|
+
* Gets the Tools page guid
|
|
1611
|
+
* ParentPage: Internal Homepage
|
|
1612
|
+
*/
|
|
1613
|
+
Tools: string;
|
|
1614
|
+
/**
|
|
1615
|
+
* Gets the Transaction Detail page guid
|
|
1616
|
+
* ParentPage: Financial Batch Detail
|
|
1617
|
+
*/
|
|
1618
|
+
TransactionDetailFinancialBatchDetail: string;
|
|
1619
|
+
/**
|
|
1620
|
+
* Gets the Transaction Detail page guid
|
|
1621
|
+
* ParentPage: Transactions
|
|
1622
|
+
*/
|
|
1623
|
+
TransactionDetailTransactions: string;
|
|
1624
|
+
/**
|
|
1625
|
+
* Gets the Transaction Matching page guid
|
|
1626
|
+
* ParentPage: Financial Batch Detail
|
|
1627
|
+
*/
|
|
1628
|
+
TransactionMatching: string;
|
|
1629
|
+
/**
|
|
1630
|
+
* Gets the Transactions page guid
|
|
1631
|
+
* ParentPage: Functions
|
|
1632
|
+
*/
|
|
1633
|
+
Transactions: string;
|
|
1634
|
+
/**
|
|
1635
|
+
* Gets the User Accounts page guid
|
|
1636
|
+
* ParentPage: Security
|
|
1637
|
+
*/
|
|
1638
|
+
UserAccounts: string;
|
|
1639
|
+
/**
|
|
1640
|
+
* Gets the Verify Photos page guid
|
|
1641
|
+
* ParentPage: Photo Requests
|
|
1642
|
+
*/
|
|
1643
|
+
VerifyPhotos: string;
|
|
1644
|
+
/**
|
|
1645
|
+
* The web farm
|
|
1646
|
+
* Parent page: System settings
|
|
1647
|
+
*/
|
|
1648
|
+
WebFarm: string;
|
|
1649
|
+
/**
|
|
1650
|
+
* The web farm node
|
|
1651
|
+
* Parent page: Web Farm
|
|
1652
|
+
*/
|
|
1653
|
+
WebFarmNode: string;
|
|
1654
|
+
/**
|
|
1655
|
+
* Gets the Website page guid
|
|
1656
|
+
* ParentPage: Tools
|
|
1657
|
+
*/
|
|
1658
|
+
Website: string;
|
|
1659
|
+
/**
|
|
1660
|
+
* Gets the Check-in Welcome page guid
|
|
1661
|
+
* ParentPage: Check-in
|
|
1662
|
+
*/
|
|
1663
|
+
Welcome: string;
|
|
1664
|
+
/**
|
|
1665
|
+
* Gets the Workflow page guid
|
|
1666
|
+
* ParentPage: Tools
|
|
1667
|
+
*/
|
|
1668
|
+
Workflow: string;
|
|
1669
|
+
/**
|
|
1670
|
+
* Gets the Workflow Configuration page guid
|
|
1671
|
+
* ParentPage: General Settings
|
|
1672
|
+
*/
|
|
1673
|
+
WorkflowConfiguration: string;
|
|
1674
|
+
/**
|
|
1675
|
+
* Gets the Workflow Detail page guid
|
|
1676
|
+
* ParentPage: Manage Workflows
|
|
1677
|
+
*/
|
|
1678
|
+
WorkflowDetail: string;
|
|
1679
|
+
/**
|
|
1680
|
+
* Gets the Workflow Entry page guid
|
|
1681
|
+
* ParentPage: Workflows
|
|
1682
|
+
*/
|
|
1683
|
+
WorkflowEntry: string;
|
|
1684
|
+
/**
|
|
1685
|
+
* Gets the Workflow Trigger page guid
|
|
1686
|
+
* ParentPage: Workflow Triggers
|
|
1687
|
+
*/
|
|
1688
|
+
WorkflowTrigger: string;
|
|
1689
|
+
/**
|
|
1690
|
+
* Gets the Workflow Triggers page guid
|
|
1691
|
+
* ParentPage: General Settings
|
|
1692
|
+
*/
|
|
1693
|
+
WorkflowTriggers: string;
|
|
1694
|
+
/**
|
|
1695
|
+
* Gets the Workflows page guid
|
|
1696
|
+
* ParentPage: Data Integrity
|
|
1697
|
+
*/
|
|
1698
|
+
WorkflowsDataIntegrity: string;
|
|
1699
|
+
/**
|
|
1700
|
+
* Gets the Workflows page guid
|
|
1701
|
+
* ParentPage: Workflow
|
|
1702
|
+
*/
|
|
1703
|
+
WorkflowsWorkflow: string;
|
|
1704
|
+
/**
|
|
1705
|
+
* Gets the ZoneBlocks page guid
|
|
1706
|
+
* ParentPage: System Dialogs
|
|
1707
|
+
*/
|
|
1708
|
+
Zoneblocks: string;
|
|
1709
|
+
};
|