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