{"version":3,"file":"Event.js","sources":["../../../Framework/Enums/Event/attendanceGraphBy.ts","../../../Framework/Enums/Event/attendanceStatus.ts","../../../Framework/Enums/Event/interactiveExperienceApprovalStatus.ts","../../../Framework/Enums/Event/interactiveExperienceCampusBehavior.ts","../../../Framework/Enums/Event/interactiveExperiencePushNotificationType.ts","../../../Framework/Enums/Event/registrantsSameFamily.ts","../../../Framework/Enums/Event/registrarOption.ts","../../../Framework/Enums/Event/registrationCostSummaryType.ts","../../../Framework/Enums/Event/registrationFeeType.ts","../../../Framework/Enums/Event/registrationFieldSource.ts","../../../Framework/Enums/Event/registrationPersonFieldType.ts","../../../Framework/Enums/Event/rsvp.ts","../../../Framework/Enums/Event/scheduledAttendanceItemMatchesPreference.ts","../../../Framework/Enums/Event/scheduledAttendanceItemStatus.ts","../../../Framework/Enums/Event/schedulerResourceGroupMemberFilterType.ts","../../../Framework/Enums/Event/sessionStatus.ts","../../../Framework/Enums/Event/signatureDocumentAction.ts"],"sourcesContent":["//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** For Attendance Reporting, graph into series partitioned by Total, Group, Campus, or Schedule */\r\nexport const AttendanceGraphBy = {\r\n /** Total (one series) */\r\n Total: 0,\r\n\r\n /** Each selected Check-in Group (which is actually a [Group] under the covers) is a series */\r\n Group: 1,\r\n\r\n /** Each campus (from Attendance.CampusId) is its own series */\r\n Campus: 2,\r\n\r\n /** Each schedule (from Attendance.ScheduleId) is its own series */\r\n Schedule: 3,\r\n\r\n /** Each Location (from Attendance.LocationId) is its own series */\r\n Location: 4\r\n} as const;\r\n\r\n/** For Attendance Reporting, graph into series partitioned by Total, Group, Campus, or Schedule */\r\nexport const AttendanceGraphByDescription: Record = {\r\n 0: \"Total\",\r\n\r\n 1: \"Group\",\r\n\r\n 2: \"Campus\",\r\n\r\n 3: \"Schedule\",\r\n\r\n 4: \"Location\"\r\n};\r\n\r\n/** For Attendance Reporting, graph into series partitioned by Total, Group, Campus, or Schedule */\r\nexport type AttendanceGraphBy = typeof AttendanceGraphBy[keyof typeof AttendanceGraphBy];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** Tracks the attendance status of the individual. */\r\nexport const AttendanceStatus = {\r\n /** The individual did not attend and is not present in the room. */\r\n DidNotAttend: 0,\r\n\r\n /** The individual did attend but may not be present in the room. */\r\n DidAttend: 1,\r\n\r\n /** The individual did attend and is currently present in the room. */\r\n IsPresent: 2\r\n} as const;\r\n\r\n/** Tracks the attendance status of the individual. */\r\nexport const AttendanceStatusDescription: Record = {\r\n 0: \"Did Not Attend\",\r\n\r\n 1: \"Did Attend\",\r\n\r\n 2: \"Is Present\"\r\n};\r\n\r\n/** Tracks the attendance status of the individual. */\r\nexport type AttendanceStatus = typeof AttendanceStatus[keyof typeof AttendanceStatus];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** Represents the approval status for the Interactive Experience system. */\r\nexport const InteractiveExperienceApprovalStatus = {\r\n /** Answer is pending and has not been reviewed by a moderator. */\r\n Pending: 0,\r\n\r\n /** Answer has been approved by a moderator. */\r\n Approved: 1,\r\n\r\n /** Answer has been rejected by a moderator. */\r\n Rejected: 2\r\n} as const;\r\n\r\n/** Represents the approval status for the Interactive Experience system. */\r\nexport const InteractiveExperienceApprovalStatusDescription: Record = {\r\n 0: \"Pending\",\r\n\r\n 1: \"Approved\",\r\n\r\n 2: \"Rejected\"\r\n};\r\n\r\n/** Represents the approval status for the Interactive Experience system. */\r\nexport type InteractiveExperienceApprovalStatus = typeof InteractiveExperienceApprovalStatus[keyof typeof InteractiveExperienceApprovalStatus];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** Determines how campus usage behaves for the interactive experience. */\r\nexport const InteractiveExperienceCampusBehavior = {\r\n /**\r\n * The individual's geolocation is used to determine which campus\r\n * geofence they are within. This will be used to filter the\r\n * schedules and determine which campus to write to the Interaction.\r\n * If a schedule has a campus without a geofence defined then it\r\n * will always be excluded from the list of occurrences.\r\n */\r\n FilterSchedulesByCampusGeofences: 0,\r\n\r\n /**\r\n * The individual's geolocation is only used to determine the campus\r\n * to be written on the Interaction. If no geolocation is available or\r\n * it does not match any campus geofence then null (or the default\r\n * experience campus) will be written on the Interaction.\r\n */\r\n DetermineCampusFromGeofence: 1,\r\n\r\n /**\r\n * The individual's campus associated with their record will be used\r\n * only for determining which campus to write to the Interaction. If\r\n * no campus is associated with the Person record then the default\r\n * experience campus will be used.\r\n */\r\n UseIndividualsCampus: 2\r\n} as const;\r\n\r\n/** Determines how campus usage behaves for the interactive experience. */\r\nexport const InteractiveExperienceCampusBehaviorDescription: Record = {\r\n 0: \"Filter Schedules By Campus Geofences\",\r\n\r\n 1: \"Determine Campus From Geofence\",\r\n\r\n 2: \"Use Individuals Campus\"\r\n};\r\n\r\n/** Determines how campus usage behaves for the interactive experience. */\r\nexport type InteractiveExperienceCampusBehavior = typeof InteractiveExperienceCampusBehavior[keyof typeof InteractiveExperienceCampusBehavior];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/**\r\n * Represents the type of push notification to use for the Interactive\r\n * Experience system when posting questions.\r\n */\r\nexport const InteractiveExperiencePushNotificationType = {\r\n /** A push notification is never sent when a question is posted. */\r\n Never: 0,\r\n\r\n /** A push notification is always sent when a question is posted. */\r\n EveryAction: 1,\r\n\r\n /**\r\n * The moderator decides if the push notification should be sent\r\n * when they post a question.\r\n */\r\n SpecificActions: 2\r\n} as const;\r\n\r\n/**\r\n * Represents the type of push notification to use for the Interactive\r\n * Experience system when posting questions.\r\n */\r\nexport const InteractiveExperiencePushNotificationTypeDescription: Record = {\r\n 0: \"Never\",\r\n\r\n 1: \"Every Action\",\r\n\r\n 2: \"Specific Actions\"\r\n};\r\n\r\n/**\r\n * Represents the type of push notification to use for the Interactive\r\n * Experience system when posting questions.\r\n */\r\nexport type InteractiveExperiencePushNotificationType = typeof InteractiveExperiencePushNotificationType[keyof typeof InteractiveExperiencePushNotificationType];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** Flag indicating if registrants are typically in the same family */\r\nexport const RegistrantsSameFamily = {\r\n /** The no */\r\n No: 0,\r\n\r\n /** The yes */\r\n Yes: 1,\r\n\r\n /** The ask */\r\n Ask: 2\r\n} as const;\r\n\r\n/** Flag indicating if registrants are typically in the same family */\r\nexport const RegistrantsSameFamilyDescription: Record = {\r\n 0: \"No\",\r\n\r\n 1: \"Yes\",\r\n\r\n 2: \"Ask\"\r\n};\r\n\r\n/** Flag indicating if registrants are typically in the same family */\r\nexport type RegistrantsSameFamily = typeof RegistrantsSameFamily[keyof typeof RegistrantsSameFamily];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** How registrar information should be collected. */\r\nexport const RegistrarOption = {\r\n /** Prompt for registrar */\r\n PromptForRegistrar: 0,\r\n\r\n /** Prefill first registrant */\r\n PrefillFirstRegistrant: 1,\r\n\r\n /** Use first registrant */\r\n UseFirstRegistrant: 2,\r\n\r\n /**\r\n * Use the LoggedIn person and keep fields readonly, except for fields that haven't been collected yet\r\n * For example, if EmailAddress wasn't known, Email would be prompted vs readonly.\r\n */\r\n UseLoggedInPerson: 3\r\n} as const;\r\n\r\n/** How registrar information should be collected. */\r\nexport const RegistrarOptionDescription: Record = {\r\n 0: \"Prompt For Registrar\",\r\n\r\n 1: \"Prefill First Registrant\",\r\n\r\n 2: \"Use First Registrant\",\r\n\r\n 3: \"Use Logged In Person\"\r\n};\r\n\r\n/** How registrar information should be collected. */\r\nexport type RegistrarOption = typeof RegistrarOption[keyof typeof RegistrarOption];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\nexport const RegistrationCostSummaryType = {\r\n /** a cost */\r\n Cost: 0,\r\n\r\n /** a fee */\r\n Fee: 1,\r\n\r\n /** The discount */\r\n Discount: 2,\r\n\r\n /** The total */\r\n Total: 3\r\n} as const;\r\n\r\nexport const RegistrationCostSummaryTypeDescription: Record = {\r\n 0: \"Cost\",\r\n\r\n 1: \"Fee\",\r\n\r\n 2: \"Discount\",\r\n\r\n 3: \"Total\"\r\n};\r\n\r\nexport type RegistrationCostSummaryType = typeof RegistrationCostSummaryType[keyof typeof RegistrationCostSummaryType];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** Flag for how fee items should be displayed/required by user */\r\nexport const RegistrationFeeType = {\r\n /** There is one only one option for this fee */\r\n Single: 0,\r\n\r\n /** There are multiple options available for this fee */\r\n Multiple: 1\r\n} as const;\r\n\r\n/** Flag for how fee items should be displayed/required by user */\r\nexport const RegistrationFeeTypeDescription: Record = {\r\n 0: \"Single\",\r\n\r\n 1: \"Multiple\"\r\n};\r\n\r\n/** Flag for how fee items should be displayed/required by user */\r\nexport type RegistrationFeeType = typeof RegistrationFeeType[keyof typeof RegistrationFeeType];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** The entity that attribute applies to */\r\nexport const RegistrationFieldSource = {\r\n /** Person field */\r\n PersonField: 0,\r\n\r\n /** Person attribute */\r\n PersonAttribute: 1,\r\n\r\n /** Group Member attribute */\r\n GroupMemberAttribute: 2,\r\n\r\n /** Registrant attribute */\r\n RegistrantAttribute: 4\r\n} as const;\r\n\r\n/** The entity that attribute applies to */\r\nexport const RegistrationFieldSourceDescription: Record = {\r\n 0: \"Person Field\",\r\n\r\n 1: \"Person Attribute\",\r\n\r\n 2: \"Group Member Attribute\",\r\n\r\n 4: \"Registrant Attribute\"\r\n};\r\n\r\n/** The entity that attribute applies to */\r\nexport type RegistrationFieldSource = typeof RegistrationFieldSource[keyof typeof RegistrationFieldSource];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\nexport const RegistrationPersonFieldType = {\r\n /** The first name */\r\n FirstName: 0,\r\n\r\n /** The last name */\r\n LastName: 1,\r\n\r\n /** The person's campus */\r\n Campus: 2,\r\n\r\n /** The Address */\r\n Address: 3,\r\n\r\n /** The email */\r\n Email: 4,\r\n\r\n /** The birthdate */\r\n Birthdate: 5,\r\n\r\n /** The gender */\r\n Gender: 6,\r\n\r\n /** The marital status */\r\n MaritalStatus: 7,\r\n\r\n /** The mobile phone */\r\n MobilePhone: 8,\r\n\r\n /** The home phone */\r\n HomePhone: 9,\r\n\r\n /** The work phone */\r\n WorkPhone: 10,\r\n\r\n /** The grade */\r\n Grade: 11,\r\n\r\n /** The connection status */\r\n ConnectionStatus: 12,\r\n\r\n /** The middle name */\r\n MiddleName: 13,\r\n\r\n /** The anniversary date */\r\n AnniversaryDate: 14,\r\n\r\n /** The race */\r\n Race: 15,\r\n\r\n /** The ethnicity */\r\n Ethnicity: 16\r\n} as const;\r\n\r\nexport const RegistrationPersonFieldTypeDescription: Record = {\r\n 0: \"First Name\",\r\n\r\n 1: \"Last Name\",\r\n\r\n 2: \"Campus\",\r\n\r\n 3: \"Address\",\r\n\r\n 4: \"Email\",\r\n\r\n 5: \"Birthdate\",\r\n\r\n 6: \"Gender\",\r\n\r\n 7: \"Marital Status\",\r\n\r\n 8: \"Mobile Phone\",\r\n\r\n 9: \"Home Phone\",\r\n\r\n 10: \"Work Phone\",\r\n\r\n 11: \"Grade\",\r\n\r\n 12: \"Connection Status\",\r\n\r\n 13: \"Middle Name\",\r\n\r\n 14: \"Anniversary Date\",\r\n\r\n 15: \"Race\",\r\n\r\n 16: \"Ethnicity\"\r\n};\r\n\r\nexport type RegistrationPersonFieldType = typeof RegistrationPersonFieldType[keyof typeof RegistrationPersonFieldType];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** RSVP Response */\r\nexport const RSVP = {\r\n /** No */\r\n No: 0,\r\n\r\n /** Yes */\r\n Yes: 1,\r\n\r\n /**\r\n * Here's my number, call me Maybe.\r\n * Not used by Group Scheduler.\r\n */\r\n Maybe: 2,\r\n\r\n /** RSVP not answered yet (or doesn't apply) */\r\n Unknown: 3\r\n} as const;\r\n\r\n/** RSVP Response */\r\nexport const RSVPDescription: Record = {\r\n 0: \"No\",\r\n\r\n 1: \"Yes\",\r\n\r\n 2: \"Maybe\",\r\n\r\n 3: \"Unknown\"\r\n};\r\n\r\n/** RSVP Response */\r\nexport type RSVP = typeof RSVP[keyof typeof RSVP];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** The classification of how a scheduled attendance instance matches the preference of the individual. */\r\nexport const ScheduledAttendanceItemMatchesPreference = {\r\n /** Person (group member) has a scheduling preference for the selected schedule and location. */\r\n MatchesPreference: 0,\r\n\r\n /** Person (group member) has a scheduling preference for a different schedule (or the selected schedule but different location). */\r\n NotMatchesPreference: 1,\r\n\r\n /** Person (group member) has no scheduling preferences for the group (or the person isn't a member of the group ). */\r\n NoPreference: 2\r\n} as const;\r\n\r\n/** The classification of how a scheduled attendance instance matches the preference of the individual. */\r\nexport const ScheduledAttendanceItemMatchesPreferenceDescription: Record = {\r\n 0: \"Matches Preference\",\r\n\r\n 1: \"Not Matches Preference\",\r\n\r\n 2: \"No Preference\"\r\n};\r\n\r\n/** The classification of how a scheduled attendance instance matches the preference of the individual. */\r\nexport type ScheduledAttendanceItemMatchesPreference = typeof ScheduledAttendanceItemMatchesPreference[keyof typeof ScheduledAttendanceItemMatchesPreference];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** Tracks the scheduled attendance status of the individual. */\r\nexport const ScheduledAttendanceItemStatus = {\r\n /** Person's attendance status is pending. */\r\n Pending: 0,\r\n\r\n /** Person's attendance status is confirmed. */\r\n Confirmed: 1,\r\n\r\n /** Person's attendance status is declined. */\r\n Declined: 2,\r\n\r\n /** Person isn't scheduled (they will be in the list of unscheduled resources). */\r\n Unscheduled: 3\r\n} as const;\r\n\r\n/** Tracks the scheduled attendance status of the individual. */\r\nexport const ScheduledAttendanceItemStatusDescription: Record = {\r\n 0: \"Pending\",\r\n\r\n 1: \"Confirmed\",\r\n\r\n 2: \"Declined\",\r\n\r\n 3: \"Unscheduled\"\r\n};\r\n\r\n/** Tracks the scheduled attendance status of the individual. */\r\nexport type ScheduledAttendanceItemStatus = typeof ScheduledAttendanceItemStatus[keyof typeof ScheduledAttendanceItemStatus];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** The type of filter that should be applied to group members when sourcing scheduler resources. */\r\nexport const SchedulerResourceGroupMemberFilterType = {\r\n /** Show group members whose scheduling preferences match the schedule and location. */\r\n ShowMatchingPreference: 0,\r\n\r\n /** Show all group members. */\r\n ShowAllGroupMembers: 1\r\n} as const;\r\n\r\n/** The type of filter that should be applied to group members when sourcing scheduler resources. */\r\nexport const SchedulerResourceGroupMemberFilterTypeDescription: Record = {\r\n 0: \"Show Matching Preference\",\r\n\r\n 1: \"Show All Group Members\"\r\n};\r\n\r\n/** The type of filter that should be applied to group members when sourcing scheduler resources. */\r\nexport type SchedulerResourceGroupMemberFilterType = typeof SchedulerResourceGroupMemberFilterType[keyof typeof SchedulerResourceGroupMemberFilterType];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** The status of the RegistrationSession */\r\nexport const SessionStatus = {\r\n /** Transient */\r\n Transient: 0,\r\n\r\n /** Payment Pending */\r\n PaymentPending: 1,\r\n\r\n /** Completed */\r\n Completed: 2\r\n} as const;\r\n\r\n/** The status of the RegistrationSession */\r\nexport const SessionStatusDescription: Record = {\r\n 0: \"Transient\",\r\n\r\n 1: \"Payment Pending\",\r\n\r\n 2: \"Completed\"\r\n};\r\n\r\n/** The status of the RegistrationSession */\r\nexport type SessionStatus = typeof SessionStatus[keyof typeof SessionStatus];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** How signature document should be presented to registrant */\r\nexport const SignatureDocumentAction = {\r\n /** Email document */\r\n Email: 0,\r\n\r\n /** Embed document in registration */\r\n Embed: 1\r\n} as const;\r\n\r\n/** How signature document should be presented to registrant */\r\nexport const SignatureDocumentActionDescription: Record = {\r\n 0: \"Email\",\r\n\r\n 1: \"Embed\"\r\n};\r\n\r\n/** How signature document should be presented to registrant */\r\nexport type SignatureDocumentAction = typeof SignatureDocumentAction[keyof typeof SignatureDocumentAction];\r\n"],"names":["AttendanceGraphBy","Total","Group","Campus","Schedule","Location","AttendanceGraphByDescription","AttendanceStatus","DidNotAttend","DidAttend","IsPresent","AttendanceStatusDescription","InteractiveExperienceApprovalStatus","Pending","Approved","Rejected","InteractiveExperienceApprovalStatusDescription","InteractiveExperienceCampusBehavior","FilterSchedulesByCampusGeofences","DetermineCampusFromGeofence","UseIndividualsCampus","InteractiveExperienceCampusBehaviorDescription","InteractiveExperiencePushNotificationType","Never","EveryAction","SpecificActions","InteractiveExperiencePushNotificationTypeDescription","RegistrantsSameFamily","No","Yes","Ask","RegistrantsSameFamilyDescription","RegistrarOption","PromptForRegistrar","PrefillFirstRegistrant","UseFirstRegistrant","UseLoggedInPerson","RegistrarOptionDescription","RegistrationCostSummaryType","Cost","Fee","Discount","RegistrationCostSummaryTypeDescription","RegistrationFeeType","Single","Multiple","RegistrationFeeTypeDescription","RegistrationFieldSource","PersonField","PersonAttribute","GroupMemberAttribute","RegistrantAttribute","RegistrationFieldSourceDescription","RegistrationPersonFieldType","FirstName","LastName","Address","Email","Birthdate","Gender","MaritalStatus","MobilePhone","HomePhone","WorkPhone","Grade","ConnectionStatus","MiddleName","AnniversaryDate","Race","Ethnicity","RegistrationPersonFieldTypeDescription","RSVP","Maybe","Unknown","RSVPDescription","ScheduledAttendanceItemMatchesPreference","MatchesPreference","NotMatchesPreference","NoPreference","ScheduledAttendanceItemMatchesPreferenceDescription","ScheduledAttendanceItemStatus","Confirmed","Declined","Unscheduled","ScheduledAttendanceItemStatusDescription","SchedulerResourceGroupMemberFilterType","ShowMatchingPreference","ShowAllGroupMembers","SchedulerResourceGroupMemberFilterTypeDescription","SessionStatus","Transient","PaymentPending","Completed","SessionStatusDescription","SignatureDocumentAction","Embed","SignatureDocumentActionDescription"],"mappings":"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"}