{"version":3,"file":"Core.js","sources":["../../../Framework/Enums/Core/addressInvalidReason.ts","../../../Framework/Enums/Core/auditType.ts","../../../Framework/Enums/Core/benchmarkRepititionMode.ts","../../../Framework/Enums/Core/cameraBarcodeConfiguration.ts","../../../Framework/Enums/Core/changeType.ts","../../../Framework/Enums/Core/colorDepth.ts","../../../Framework/Enums/Core/colorRecipe.ts","../../../Framework/Enums/Core/colorScheme.ts","../../../Framework/Enums/Core/followingSuggestedStatus.ts","../../../Framework/Enums/Core/format.ts","../../../Framework/Enums/Core/Grid/booleanFilterMethod.ts","../../../Framework/Enums/Core/Grid/columnPositionAnchor.ts","../../../Framework/Enums/Core/Grid/dateFilterMethod.ts","../../../Framework/Enums/Core/Grid/numberFilterMethod.ts","../../../Framework/Enums/Core/Grid/pickExistingFilterMethod.ts","../../../Framework/Enums/Core/Grid/textFilterMethod.ts","../../../Framework/Enums/Core/jobNotificationStatus.ts","../../../Framework/Enums/Core/keyboardInputMode.ts","../../../Framework/Enums/Core/kioskType.ts","../../../Framework/Enums/Core/matchFlag.ts","../../../Framework/Enums/Core/moveType.ts","../../../Framework/Enums/Core/ncoaType.ts","../../../Framework/Enums/Core/noteApprovalStatus.ts","../../../Framework/Enums/Core/noteFormatType.ts","../../../Framework/Enums/Core/notificationMessageActionType.ts","../../../Framework/Enums/Core/printFrom.ts","../../../Framework/Enums/Core/printTo.ts","../../../Framework/Enums/Core/processed.ts","../../../Framework/Enums/Core/resolution.ts","../../../Framework/Enums/Core/signatureDocumentStatus.ts","../../../Framework/Enums/Core/signatureType.ts","../../../Framework/Enums/Core/specialRole.ts","../../../Framework/Enums/Core/timeIntervalUnit.ts","../../../Framework/Enums/Core/updatedAddressType.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/** Represents the Invalid Reason for address. */\r\nexport const AddressInvalidReason = {\r\n /** None */\r\n None: 0,\r\n\r\n /** Not Found */\r\n NotFound: 1,\r\n\r\n /** Vacant */\r\n Vacant: 2\r\n} as const;\r\n\r\n/** Represents the Invalid Reason for address. */\r\nexport const AddressInvalidReasonDescription: Record = {\r\n 0: \"None\",\r\n\r\n 1: \"Not Found\",\r\n\r\n 2: \"Vacant\"\r\n};\r\n\r\n/** Represents the Invalid Reason for address. */\r\nexport type AddressInvalidReason = typeof AddressInvalidReason[keyof typeof AddressInvalidReason];\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/** Type of audit done to an entity */\r\nexport const AuditType = {\r\n /** Add */\r\n Add: 0,\r\n\r\n /** Modify */\r\n Modify: 1,\r\n\r\n /** Delete */\r\n Delete: 2\r\n} as const;\r\n\r\n/** Type of audit done to an entity */\r\nexport const AuditTypeDescription: Record = {\r\n 0: \"Add\",\r\n\r\n 1: \"Modify\",\r\n\r\n 2: \"Delete\"\r\n};\r\n\r\n/** Type of audit done to an entity */\r\nexport type AuditType = typeof AuditType[keyof typeof AuditType];\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 * Provides a general mode to the number of repititions to run during\r\n * a benchmark.\r\n */\r\nexport const BenchmarkRepititionMode = {\r\n /** A normal run. This takes 30-60 seconds. */\r\n Normal: 0,\r\n\r\n /** A fast run, less accurate. This takes 15-30 seconds. */\r\n Fast: 1,\r\n\r\n /** An extended run, slightly more accurate. This takes 60-90 seconds. */\r\n Extended: 2\r\n} as const;\r\n\r\n/**\r\n * Provides a general mode to the number of repititions to run during\r\n * a benchmark.\r\n */\r\nexport const BenchmarkRepititionModeDescription: Record = {\r\n 0: \"Normal\",\r\n\r\n 1: \"Fast\",\r\n\r\n 2: \"Extended\"\r\n};\r\n\r\n/**\r\n * Provides a general mode to the number of repititions to run during\r\n * a benchmark.\r\n */\r\nexport type BenchmarkRepititionMode = typeof BenchmarkRepititionMode[keyof typeof BenchmarkRepititionMode];\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 Camera barcode configuration values. */\r\nexport const CameraBarcodeConfiguration = {\r\n /** Off */\r\n Off: 0,\r\n\r\n /** Available */\r\n Available: 1,\r\n\r\n /** Always on */\r\n AlwaysOn: 2,\r\n\r\n /** Passive */\r\n Passive: 3\r\n} as const;\r\n\r\n/** The Camera barcode configuration values. */\r\nexport const CameraBarcodeConfigurationDescription: Record = {\r\n 0: \"Off\",\r\n\r\n 1: \"Available\",\r\n\r\n 2: \"Always On\",\r\n\r\n 3: \"Passive\"\r\n};\r\n\r\n/** The Camera barcode configuration values. */\r\nexport type CameraBarcodeConfiguration = typeof CameraBarcodeConfiguration[keyof typeof CameraBarcodeConfiguration];\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 ChangeType = {\r\n /** Add */\r\n Add: 0,\r\n\r\n /** Modify */\r\n Modify: 1,\r\n\r\n /** Delete */\r\n Delete: 2\r\n} as const;\r\n\r\nexport const ChangeTypeDescription: Record = {\r\n 0: \"Add\",\r\n\r\n 1: \"Modify\",\r\n\r\n 2: \"Delete\"\r\n};\r\n\r\nexport type ChangeType = typeof ChangeType[keyof typeof ChangeType];\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 preferred color depth of the binary file type. */\r\nexport const ColorDepth = {\r\n /** An undefined color depth. */\r\n Undefined: -1,\r\n\r\n /** A preferred color depth of Black and White. */\r\n BlackWhite: 0,\r\n\r\n /** A preferred color depth of 8-bit Grayscale. */\r\n Grayscale8bit: 1,\r\n\r\n /** A preferred color depth of 24-bit Grayscale. */\r\n Grayscale24bit: 2,\r\n\r\n /** A preferred color depth of 8-bit Color. */\r\n Color8bit: 3,\r\n\r\n /** A preferred color depth of 24-bit Color. */\r\n Color24bit: 4\r\n} as const;\r\n\r\n/** Represents the preferred color depth of the binary file type. */\r\nexport const ColorDepthDescription: Record = {\r\n [-1]: \"Undefined\",\r\n\r\n 0: \"Black White\",\r\n\r\n 1: \"Grayscale 8bit\",\r\n\r\n 2: \"Grayscale 2 4bit\",\r\n\r\n 3: \"Color 8bit\",\r\n\r\n 4: \"Color 2 4bit\"\r\n};\r\n\r\n/** Represents the preferred color depth of the binary file type. */\r\nexport type ColorDepth = typeof ColorDepth[keyof typeof ColorDepth];\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 color recipe lightly based off of Practical UI. */\r\nexport const ColorRecipe = {\r\n /** Lightest color */\r\n Primary: 0,\r\n\r\n /** Darkest color */\r\n Darkest: 1,\r\n\r\n /** Dark color */\r\n Dark: 2,\r\n\r\n /** Medium color */\r\n Medium: 3,\r\n\r\n /** Light color */\r\n Light: 4,\r\n\r\n /** Lightest color */\r\n Lightest: 5\r\n} as const;\r\n\r\n/** Represents the color recipe lightly based off of Practical UI. */\r\nexport const ColorRecipeDescription: Record = {\r\n 0: \"Primary\",\r\n\r\n 1: \"Darkest\",\r\n\r\n 2: \"Dark\",\r\n\r\n 3: \"Medium\",\r\n\r\n 4: \"Light\",\r\n\r\n 5: \"Lightest\"\r\n};\r\n\r\n/** Represents the color recipe lightly based off of Practical UI. */\r\nexport type ColorRecipe = typeof ColorRecipe[keyof typeof ColorRecipe];\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 color scheme (light or dark mode). */\r\nexport const ColorScheme = {\r\n /** Light mode */\r\n Light: 0,\r\n\r\n /** Dark mode */\r\n Dark: 1\r\n} as const;\r\n\r\n/** Represents the color scheme (light or dark mode). */\r\nexport const ColorSchemeDescription: Record = {\r\n 0: \"Light\",\r\n\r\n 1: \"Dark\"\r\n};\r\n\r\n/** Represents the color scheme (light or dark mode). */\r\nexport type ColorScheme = typeof ColorScheme[keyof typeof ColorScheme];\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 Following Suggested Status */\r\nexport const FollowingSuggestedStatus = {\r\n /** Pending Notification */\r\n PendingNotification: 0,\r\n\r\n /** Suggested */\r\n Suggested: 1,\r\n\r\n /** Ignored */\r\n Ignored: 2\r\n} as const;\r\n\r\n/** The Following Suggested Status */\r\nexport const FollowingSuggestedStatusDescription: Record = {\r\n 0: \"Pending Notification\",\r\n\r\n 1: \"Suggested\",\r\n\r\n 2: \"Ignored\"\r\n};\r\n\r\n/** The Following Suggested Status */\r\nexport type FollowingSuggestedStatus = typeof FollowingSuggestedStatus[keyof typeof FollowingSuggestedStatus];\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 preferred format of the binary file type. */\r\nexport const Format = {\r\n /** The undefined. */\r\n Undefined: -1,\r\n\r\n /** The preferred format is as a .JPG file. */\r\n JPG: 0,\r\n\r\n /** The preferred format is as a .GIF file. */\r\n GIF: 1,\r\n\r\n /** The preferred format is as a .PNG file. */\r\n PNG: 2,\r\n\r\n /** The preferred format is as a .PDF file. */\r\n PDF: 3,\r\n\r\n /** The preferred format is as a Word document. */\r\n Word: 4,\r\n\r\n /** The preferred format is as an Excel document. */\r\n Excel: 5,\r\n\r\n /** The preferred format is as a text file. */\r\n Text: 6,\r\n\r\n /** The preferred format is as an HTML document. */\r\n HTML: 7\r\n} as const;\r\n\r\n/** Represents the preferred format of the binary file type. */\r\nexport const FormatDescription: Record = {\r\n [-1]: \"Undefined\",\r\n\r\n 0: \"JPG\",\r\n\r\n 1: \"GIF\",\r\n\r\n 2: \"PNG\",\r\n\r\n 3: \"PDF\",\r\n\r\n 4: \"Word\",\r\n\r\n 5: \"Excel\",\r\n\r\n 6: \"Text\",\r\n\r\n 7: \"HTML\"\r\n};\r\n\r\n/** Represents the preferred format of the binary file type. */\r\nexport type Format = typeof Format[keyof typeof Format];\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 filtering method to use for a boolean filter column filter. */\r\nexport const BooleanFilterMethod = {\r\n /** All values will be shown. */\r\n All: 0,\r\n\r\n /** The value of the cell must be false. */\r\n No: 1,\r\n\r\n /** The value of the cell must be true. */\r\n Yes: 2\r\n} as const;\r\n\r\n/** The filtering method to use for a boolean filter column filter. */\r\nexport const BooleanFilterMethodDescription: Record = {\r\n 0: \"All\",\r\n\r\n 1: \"No\",\r\n\r\n 2: \"Yes\"\r\n};\r\n\r\n/** The filtering method to use for a boolean filter column filter. */\r\nexport type BooleanFilterMethod = typeof BooleanFilterMethod[keyof typeof BooleanFilterMethod];\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 * The options available when picking a relative position for a custom\r\n * grid column.\r\n */\r\nexport const ColumnPositionAnchor = {\r\n /** The position is relative to the first column. */\r\n FirstColumn: 0,\r\n\r\n /** The position is relative to the last column. */\r\n LastColumn: 1\r\n} as const;\r\n\r\n/**\r\n * The options available when picking a relative position for a custom\r\n * grid column.\r\n */\r\nexport const ColumnPositionAnchorDescription: Record = {\r\n 0: \"First Column\",\r\n\r\n 1: \"Last Column\"\r\n};\r\n\r\n/**\r\n * The options available when picking a relative position for a custom\r\n * grid column.\r\n */\r\nexport type ColumnPositionAnchor = typeof ColumnPositionAnchor[keyof typeof ColumnPositionAnchor];\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 filtering method used for a date filter column filter. */\r\nexport const DateFilterMethod = {\r\n /** The date portion of the cell value must match the filter value. */\r\n Equals: 0,\r\n\r\n /** The date portion of the cell value must not match the filter value. */\r\n DoesNotEqual: 1,\r\n\r\n /** The date portion of the cell value must be less than the filter value. */\r\n Before: 2,\r\n\r\n /** The date portion of the cell value must be greater than the filter value. */\r\n After: 3,\r\n\r\n /**\r\n * The date portion of the cell value must be greater than or equal to\r\n * the lower filter value and less than or equal to the upper filter value.\r\n */\r\n Between: 4,\r\n\r\n /**\r\n * The date portion of the cell value must be greater than or equal to\r\n * the first day of this week and less than or equal to the last day of\r\n * this week.\r\n */\r\n ThisWeek: 5,\r\n\r\n /**\r\n * The date portion of the cell value must be greater than or equal to\r\n * the first day of the previous week and less than or equal to the last\r\n * day of the previous week.\r\n */\r\n LastWeek: 6,\r\n\r\n /**\r\n * The date portion of the cell value must be greater than or equal to\r\n * the first day of the next week and less than or equal to the last\r\n * day of the next week.\r\n */\r\n NextWeek: 7,\r\n\r\n /**\r\n * The date portion of the cell value must be greater than or equal to\r\n * the first day of this month and less than or equal to the last day of\r\n * this month.\r\n */\r\n ThisMonth: 8,\r\n\r\n /**\r\n * The date portion of the cell value must be greater than or equal to\r\n * the first day of the previous month and less than or equal to the last\r\n * day of the previous month.\r\n */\r\n LastMonth: 9,\r\n\r\n /**\r\n * The date portion of the cell value must be greater than or equal to\r\n * the first day of the next month and less than or equal to the last\r\n * day of the next month.\r\n */\r\n NextMonth: 10,\r\n\r\n /**\r\n * The date portion of the cell value must be greater than or equal to\r\n * the first day of this year and less than or equal to the last day of\r\n * this year.\r\n */\r\n ThisYear: 11,\r\n\r\n /**\r\n * The date portion of the cell value must be greater than or equal to\r\n * the first day of the previous year and less than or equal to the last\r\n * day of the previous year.\r\n */\r\n LastYear: 12,\r\n\r\n /**\r\n * The date portion of the cell value must be greater than or equal to\r\n * the first day of the next year and less than or equal to the last\r\n * day of the next year.\r\n */\r\n NextYear: 13,\r\n\r\n /**\r\n * The date portion of the cell value must be greater than or equal to\r\n * the first day of this year and less than or equal to today.\r\n */\r\n YearToDate: 14\r\n} as const;\r\n\r\n/** The filtering method used for a date filter column filter. */\r\nexport const DateFilterMethodDescription: Record = {\r\n 0: \"Equals\",\r\n\r\n 1: \"Does Not Equal\",\r\n\r\n 2: \"Before\",\r\n\r\n 3: \"After\",\r\n\r\n 4: \"Between\",\r\n\r\n 5: \"This Week\",\r\n\r\n 6: \"Last Week\",\r\n\r\n 7: \"Next Week\",\r\n\r\n 8: \"This Month\",\r\n\r\n 9: \"Last Month\",\r\n\r\n 10: \"Next Month\",\r\n\r\n 11: \"This Year\",\r\n\r\n 12: \"Last Year\",\r\n\r\n 13: \"Next Year\",\r\n\r\n 14: \"Year To Date\"\r\n};\r\n\r\n/** The filtering method used for a date filter column filter. */\r\nexport type DateFilterMethod = typeof DateFilterMethod[keyof typeof DateFilterMethod];\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 filtering method used for a number column filter. */\r\nexport const NumberFilterMethod = {\r\n /** The cell value must exactly match the filter value. */\r\n Equals: 0,\r\n\r\n /** The cell value must not match the filter value. */\r\n DoesNotEqual: 1,\r\n\r\n /** The cell value must be greater than the filter value. */\r\n GreaterThan: 2,\r\n\r\n /** The cell value must be greater than or equal to the filter value. */\r\n GreaterThanOrEqual: 3,\r\n\r\n /** The cell value must be less than the filter value. */\r\n LessThan: 4,\r\n\r\n /** The cell value must be less than or equal to the filter value. */\r\n LessThanOrEqual: 5,\r\n\r\n /**\r\n * The cell value must be greater than or equal to the lower filter\r\n * value and less than or equal to the upper filter value.\r\n */\r\n Between: 6,\r\n\r\n /** The cell value must be in the top N values. */\r\n TopN: 7,\r\n\r\n /** The cell value must be above the calculated average value. */\r\n AboveAverage: 8,\r\n\r\n /** The cell value must be below the calculate average value. */\r\n BelowAverage: 9\r\n} as const;\r\n\r\n/** The filtering method used for a number column filter. */\r\nexport const NumberFilterMethodDescription: Record = {\r\n 0: \"Equals\",\r\n\r\n 1: \"Does Not Equal\",\r\n\r\n 2: \"Greater Than\",\r\n\r\n 3: \"Greater Than Or Equal\",\r\n\r\n 4: \"Less Than\",\r\n\r\n 5: \"Less Than Or Equal\",\r\n\r\n 6: \"Between\",\r\n\r\n 7: \"Top N\",\r\n\r\n 8: \"Above Average\",\r\n\r\n 9: \"Below Average\"\r\n};\r\n\r\n/** The filtering method used for a number column filter. */\r\nexport type NumberFilterMethod = typeof NumberFilterMethod[keyof typeof NumberFilterMethod];\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 filtering method used by the pick existing filter. */\r\nexport const PickExistingFilterMethod = {\r\n /** The cell value must match any of the selected filter values. */\r\n Any: 0,\r\n\r\n /** The cell value must not match any of the selected filter values. */\r\n Exclude: 1\r\n} as const;\r\n\r\n/** The filtering method used by the pick existing filter. */\r\nexport const PickExistingFilterMethodDescription: Record = {\r\n 0: \"Any\",\r\n\r\n 1: \"Exclude\"\r\n};\r\n\r\n/** The filtering method used by the pick existing filter. */\r\nexport type PickExistingFilterMethod = typeof PickExistingFilterMethod[keyof typeof PickExistingFilterMethod];\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 filtering method used for a text column filter. */\r\nexport const TextFilterMethod = {\r\n /** The case-insensitive cell value must start with the filter value. */\r\n StartsWith: 0,\r\n\r\n /** The case-insensitive cell value must contain the filter value. */\r\n Contains: 1,\r\n\r\n /** The case-insensitive cell value must not contain the filter value. */\r\n DoesNotContain: 2,\r\n\r\n /** The case-insensitive cell value must end with the filter value. */\r\n EndsWith: 3,\r\n\r\n /** The case-insensitive cell value must equal the filter value. */\r\n Equals: 4,\r\n\r\n /** The case-insensitive cell value must not equal the filter value. */\r\n DoesNotEqual: 5\r\n} as const;\r\n\r\n/** The filtering method used for a text column filter. */\r\nexport const TextFilterMethodDescription: Record = {\r\n 0: \"Starts With\",\r\n\r\n 1: \"Contains\",\r\n\r\n 2: \"Does Not Contain\",\r\n\r\n 3: \"Ends With\",\r\n\r\n 4: \"Equals\",\r\n\r\n 5: \"Does Not Equal\"\r\n};\r\n\r\n/** The filtering method used for a text column filter. */\r\nexport type TextFilterMethod = typeof TextFilterMethod[keyof typeof TextFilterMethod];\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/** An enum that represents when a Job notification status should be sent. */\r\nexport const JobNotificationStatus = {\r\n /** Notifications should be sent when a job completes with any notification status. */\r\n All: 1,\r\n\r\n /** Notification should be sent when the job has completed successfully. */\r\n Success: 2,\r\n\r\n /** Notification should be sent when the job has completed with an error status. */\r\n Error: 3,\r\n\r\n /** Notifications should not be sent when this job completes with any status. */\r\n None: 4\r\n} as const;\r\n\r\n/** An enum that represents when a Job notification status should be sent. */\r\nexport const JobNotificationStatusDescription: Record = {\r\n 1: \"All\",\r\n\r\n 2: \"Success\",\r\n\r\n 3: \"Error\",\r\n\r\n 4: \"None\"\r\n};\r\n\r\n/** An enum that represents when a Job notification status should be sent. */\r\nexport type JobNotificationStatus = typeof JobNotificationStatus[keyof typeof JobNotificationStatus];\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/** Specifies a keyboard mode for an input field. */\r\nexport const KeyboardInputMode = {\r\n /** The default keyboard mode. */\r\n Default: 0,\r\n\r\n /** The email keyboard mode. */\r\n Email: 1,\r\n\r\n /** The numeric keyboard mode. */\r\n Numeric: 2,\r\n\r\n /** The decimal keyboard mode. */\r\n Decimal: 3,\r\n\r\n /** The telephone keyboard mode. */\r\n Telephone: 4,\r\n\r\n /** The text keyboard mode. */\r\n Text: 5,\r\n\r\n /** The url keyboard mode. */\r\n Url: 6\r\n} as const;\r\n\r\n/** Specifies a keyboard mode for an input field. */\r\nexport const KeyboardInputModeDescription: Record = {\r\n 0: \"Default\",\r\n\r\n 1: \"Email\",\r\n\r\n 2: \"Numeric\",\r\n\r\n 3: \"Decimal\",\r\n\r\n 4: \"Telephone\",\r\n\r\n 5: \"Text\",\r\n\r\n 6: \"Url\"\r\n};\r\n\r\n/** Specifies a keyboard mode for an input field. */\r\nexport type KeyboardInputMode = typeof KeyboardInputMode[keyof typeof KeyboardInputMode];\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 various types of checkin clients that a Check-in Kiosk could be using. */\r\nexport const KioskType = {\r\n /** The Kiosk is using IPad iOS Checkin Client app. */\r\n IPad: 0,\r\n\r\n /** The Kiosk is using Windows Checkin Client. */\r\n WindowsApp: 1,\r\n\r\n /** This kiosk is using a browser */\r\n Browser: 2\r\n} as const;\r\n\r\n/** The various types of checkin clients that a Check-in Kiosk could be using. */\r\nexport const KioskTypeDescription: Record = {\r\n 0: \"iPad\",\r\n\r\n 1: \"Windows App\",\r\n\r\n 2: \"Browser\"\r\n};\r\n\r\n/** The various types of checkin clients that a Check-in Kiosk could be using. */\r\nexport type KioskType = typeof KioskType[keyof typeof KioskType];\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 matching flag. */\r\nexport const MatchFlag = {\r\n /** None */\r\n None: 0,\r\n\r\n /** Moved */\r\n Moved: 1,\r\n\r\n /** PO Box Closed */\r\n POBoxClosed: 2,\r\n\r\n /** Moved left no forwarding */\r\n MovedNoForwarding: 3,\r\n\r\n /** Moved to foreign country */\r\n MovedToForeignCountry: 4\r\n} as const;\r\n\r\n/** Represents the matching flag. */\r\nexport const MatchFlagDescription: Record = {\r\n 0: \"None\",\r\n\r\n 1: \"Moved\",\r\n\r\n 2: \"PO Box Closed\",\r\n\r\n 3: \"Moved No Forwarding\",\r\n\r\n 4: \"Moved To Foreign Country\"\r\n};\r\n\r\n/** Represents the matching flag. */\r\nexport type MatchFlag = typeof MatchFlag[keyof typeof MatchFlag];\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 move type for NCOA. */\r\nexport const MoveType = {\r\n /** None */\r\n None: 0,\r\n\r\n /** Family */\r\n Family: 1,\r\n\r\n /** Individual */\r\n Individual: 2,\r\n\r\n /** Business */\r\n Business: 3\r\n} as const;\r\n\r\n/** Represents the move type for NCOA. */\r\nexport const MoveTypeDescription: Record = {\r\n 0: \"None\",\r\n\r\n 1: \"Family\",\r\n\r\n 2: \"Individual\",\r\n\r\n 3: \"Business\"\r\n};\r\n\r\n/** Represents the move type for NCOA. */\r\nexport type MoveType = typeof MoveType[keyof typeof MoveType];\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 NCOA type. */\r\nexport const NcoaType = {\r\n /** None */\r\n None: 0,\r\n\r\n /** No Move */\r\n NoMove: 1,\r\n\r\n /** 48 Month Move */\r\n Month48Move: 2,\r\n\r\n /** Move */\r\n Move: 3\r\n} as const;\r\n\r\n/** Represents the NCOA type. */\r\nexport const NcoaTypeDescription: Record = {\r\n 0: \"None\",\r\n\r\n 1: \"No Move\",\r\n\r\n 2: \"Month 48 Move\",\r\n\r\n 3: \"Move\"\r\n};\r\n\r\n/** Represents the NCOA type. */\r\nexport type NcoaType = typeof NcoaType[keyof typeof NcoaType];\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 of a note */\r\n/** @deprecated This enum is no longer used and will be removed in the future. */\r\nexport const NoteApprovalStatus = {\r\n /** The Note is pending approval. */\r\n PendingApproval: 0,\r\n\r\n /** The Note has been approved. */\r\n Approved: 1,\r\n\r\n /** The Note was denied. */\r\n Denied: 2\r\n} as const;\r\n\r\n/** Represents the approval status of a note */\r\n/** @deprecated This enum is no longer used and will be removed in the future. */\r\nexport const NoteApprovalStatusDescription: Record = {\r\n 0: \"Pending Approval\",\r\n\r\n 1: \"Approved\",\r\n\r\n 2: \"Denied\"\r\n};\r\n\r\n/** Represents the approval status of a note */\r\nexport type NoteApprovalStatus = typeof NoteApprovalStatus[keyof typeof NoteApprovalStatus];\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/** Specifies the format of notes that belong to the NoteType. */\r\nexport const NoteFormatType = {\r\n /** The format of the notes is unknown, but assumed to be structured. */\r\n Unknown: 0,\r\n\r\n /**\r\n * The format of the notes is unstructured data and not compatible\r\n * with some of the more advanced features of notes.\r\n */\r\n Unstructured: 1,\r\n\r\n /**\r\n * The format of the notes is a structured format. Only Rock components\r\n * should set the note text value.\r\n */\r\n Structured: 2\r\n} as const;\r\n\r\n/** Specifies the format of notes that belong to the NoteType. */\r\nexport const NoteFormatTypeDescription: Record = {\r\n 0: \"Unknown\",\r\n\r\n 1: \"Unstructured\",\r\n\r\n 2: \"Structured\"\r\n};\r\n\r\n/** Specifies the format of notes that belong to the NoteType. */\r\nexport type NoteFormatType = typeof NoteFormatType[keyof typeof NoteFormatType];\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 * The type of action to be performed in response to interacting with\r\n * a notification message.\r\n */\r\nexport const NotificationMessageActionType = {\r\n /**\r\n * No action can be performed. Either the notification is no longer\r\n * valid or it is not valid in this context.\r\n */\r\n Invalid: 0,\r\n\r\n /** Show a simple text message. */\r\n ShowMessage: 1,\r\n\r\n /**\r\n * Link to a page. The URL will be encoded for the type of site\r\n * that is requesting the action.\r\n */\r\n LinkToPage: 2\r\n} as const;\r\n\r\n/**\r\n * The type of action to be performed in response to interacting with\r\n * a notification message.\r\n */\r\nexport const NotificationMessageActionTypeDescription: Record = {\r\n 0: \"Invalid\",\r\n\r\n 1: \"Show Message\",\r\n\r\n 2: \"Link To Page\"\r\n};\r\n\r\n/**\r\n * The type of action to be performed in response to interacting with\r\n * a notification message.\r\n */\r\nexport type NotificationMessageActionType = typeof NotificationMessageActionType[keyof typeof NotificationMessageActionType];\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 application responsible for printing a label */\r\nexport const PrintFrom = {\r\n /** The label will be printed by the kiosk */\r\n Client: 0,\r\n\r\n /** The label will be printed by the server. */\r\n Server: 1\r\n} as const;\r\n\r\n/** The application responsible for printing a label */\r\nexport const PrintFromDescription: Record = {\r\n 0: \"Client\",\r\n\r\n 1: \"Server\"\r\n};\r\n\r\n/** The application responsible for printing a label */\r\nexport type PrintFrom = typeof PrintFrom[keyof typeof PrintFrom];\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/** Where a label should be printed */\r\nexport const PrintTo = {\r\n /** Print to the default printer */\r\n Default: 0,\r\n\r\n /** Print to the printer associated with the selected kiosk */\r\n Kiosk: 1,\r\n\r\n /** Print to the printer associated with the selected location */\r\n Location: 2\r\n} as const;\r\n\r\n/** Where a label should be printed */\r\nexport const PrintToDescription: Record = {\r\n 0: \"Default\",\r\n\r\n 1: \"Kiosk\",\r\n\r\n 2: \"Location\"\r\n};\r\n\r\n/** Where a label should be printed */\r\nexport type PrintTo = typeof PrintTo[keyof typeof PrintTo];\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 state of NCOA */\r\nexport const Processed = {\r\n /** NotProcessed */\r\n NotProcessed: 0,\r\n\r\n /** Complete */\r\n Complete: 1,\r\n\r\n /** Manual Update Required */\r\n ManualUpdateRequired: 2,\r\n\r\n /** Manual update required or not processed */\r\n ManualUpdateRequiredOrNotProcessed: 3,\r\n\r\n /** All records */\r\n All: 4\r\n} as const;\r\n\r\n/** Represents the state of NCOA */\r\nexport const ProcessedDescription: Record = {\r\n 0: \"Not Processed\",\r\n\r\n 1: \"Complete\",\r\n\r\n 2: \"Manual Update Required\",\r\n\r\n 3: \"Manual Update Required Or Not Processed\",\r\n\r\n 4: \"All\"\r\n};\r\n\r\n/** Represents the state of NCOA */\r\nexport type Processed = typeof Processed[keyof typeof Processed];\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 preferred resolution of the binary file type. */\r\nexport const Resolution = {\r\n /** The undefined. */\r\n Undefined: -1,\r\n\r\n /** A preferred resolution of 72 DPI. */\r\n DPI72: 0,\r\n\r\n /** A preferred resolution of 150 DPI. */\r\n DPI150: 1,\r\n\r\n /** A preferred resolution of 300 DPI. */\r\n DPI300: 2,\r\n\r\n /** A preferred resolution of 600 DPI. */\r\n DPI600: 3\r\n} as const;\r\n\r\n/** Represents the preferred resolution of the binary file type. */\r\nexport const ResolutionDescription: Record = {\r\n [-1]: \"Undefined\",\r\n\r\n 0: \"DPI72\",\r\n\r\n 1: \"DPI150\",\r\n\r\n 2: \"DPI300\",\r\n\r\n 3: \"DPI600\"\r\n};\r\n\r\n/** Represents the preferred resolution of the binary file type. */\r\nexport type Resolution = typeof Resolution[keyof typeof Resolution];\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 a signature document */\r\nexport const SignatureDocumentStatus = {\r\n /** Document has not yet been sent */\r\n None: 0,\r\n\r\n /** Document has been sent but not yet signed */\r\n Sent: 1,\r\n\r\n /** Document has been signed */\r\n Signed: 2,\r\n\r\n /** Document was cancelled */\r\n Cancelled: 3,\r\n\r\n /** Document Invite had expired */\r\n Expired: 4\r\n} as const;\r\n\r\n/** The status of a signature document */\r\nexport const SignatureDocumentStatusDescription: Record = {\r\n 0: \"None\",\r\n\r\n 1: \"Sent\",\r\n\r\n 2: \"Signed\",\r\n\r\n 3: \"Cancelled\",\r\n\r\n 4: \"Expired\"\r\n};\r\n\r\n/** The status of a signature document */\r\nexport type SignatureDocumentStatus = typeof SignatureDocumentStatus[keyof typeof SignatureDocumentStatus];\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 type of signature. Either Drawn or Typed */\r\nexport const SignatureType = {\r\n /** Typed */\r\n Typed: 0,\r\n\r\n /** Drawn */\r\n Drawn: 1\r\n} as const;\r\n\r\n/** Represents the type of signature. Either Drawn or Typed */\r\nexport const SignatureTypeDescription: Record = {\r\n 0: \"Typed\",\r\n\r\n 1: \"Drawn\"\r\n};\r\n\r\n/** Represents the type of signature. Either Drawn or Typed */\r\nexport type SignatureType = typeof SignatureType[keyof typeof SignatureType];\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/** Authorization for a special group of users not defined by a specific role or person */\r\nexport const SpecialRole = {\r\n /** No special role */\r\n None: 0,\r\n\r\n /** Authorize all users */\r\n AllUsers: 1,\r\n\r\n /** Authorize all authenticated users */\r\n AllAuthenticatedUsers: 2,\r\n\r\n /** Authorize all un-authenticated users */\r\n AllUnAuthenticatedUsers: 3\r\n} as const;\r\n\r\n/** Authorization for a special group of users not defined by a specific role or person */\r\nexport const SpecialRoleDescription: Record = {\r\n 0: \"None\",\r\n\r\n 1: \"All Users\",\r\n\r\n 2: \"All Authenticated Users\",\r\n\r\n 3: \"All Un Authenticated Users\"\r\n};\r\n\r\n/** Authorization for a special group of users not defined by a specific role or person */\r\nexport type SpecialRole = typeof SpecialRole[keyof typeof SpecialRole];\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/** Time Interval Units */\r\nexport const TimeIntervalUnit = {\r\n /** The seconds */\r\n Seconds: 0,\r\n\r\n /** The minutes */\r\n Minutes: 1,\r\n\r\n /** The hours */\r\n Hours: 2,\r\n\r\n /** The days */\r\n Days: 3,\r\n\r\n /** The months */\r\n Months: 4,\r\n\r\n /** The years */\r\n Years: 5\r\n} as const;\r\n\r\n/** Time Interval Units */\r\nexport const TimeIntervalUnitDescription: Record = {\r\n 0: \"Seconds\",\r\n\r\n 1: \"Minutes\",\r\n\r\n 2: \"Hours\",\r\n\r\n 3: \"Days\",\r\n\r\n 4: \"Months\",\r\n\r\n 5: \"Years\"\r\n};\r\n\r\n/** Time Interval Units */\r\nexport type TimeIntervalUnit = typeof TimeIntervalUnit[keyof typeof TimeIntervalUnit];\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 type for Updated Address. */\r\nexport const UpdatedAddressType = {\r\n /** None */\r\n None: 0,\r\n\r\n /** Not Found */\r\n Residential: 1,\r\n\r\n /** Vacant */\r\n Business: 2\r\n} as const;\r\n\r\n/** Represents the type for Updated Address. */\r\nexport const UpdatedAddressTypeDescription: Record = {\r\n 0: \"None\",\r\n\r\n 1: \"Residential\",\r\n\r\n 2: \"Business\"\r\n};\r\n\r\n/** Represents the type for Updated Address. */\r\nexport type UpdatedAddressType = typeof UpdatedAddressType[keyof typeof UpdatedAddressType];\r\n"],"names":["AddressInvalidReason","None","NotFound","Vacant","AddressInvalidReasonDescription","AuditType","Add","Modify","Delete","AuditTypeDescription","BenchmarkRepititionMode","Normal","Fast","Extended","BenchmarkRepititionModeDescription","CameraBarcodeConfiguration","Off","Available","AlwaysOn","Passive","CameraBarcodeConfigurationDescription","ChangeType","ChangeTypeDescription","ColorDepth","Undefined","BlackWhite","Grayscale8bit","Grayscale24bit","Color8bit","Color24bit","ColorDepthDescription","ColorRecipe","Primary","Darkest","Dark","Medium","Light","Lightest","ColorRecipeDescription","ColorScheme","ColorSchemeDescription","FollowingSuggestedStatus","PendingNotification","Suggested","Ignored","FollowingSuggestedStatusDescription","Format","JPG","GIF","PNG","PDF","Word","Excel","Text","HTML","FormatDescription","BooleanFilterMethod","All","No","Yes","BooleanFilterMethodDescription","ColumnPositionAnchor","FirstColumn","LastColumn","ColumnPositionAnchorDescription","DateFilterMethod","Equals","DoesNotEqual","Before","After","Between","ThisWeek","LastWeek","NextWeek","ThisMonth","LastMonth","NextMonth","ThisYear","LastYear","NextYear","YearToDate","DateFilterMethodDescription","NumberFilterMethod","GreaterThan","GreaterThanOrEqual","LessThan","LessThanOrEqual","TopN","AboveAverage","BelowAverage","NumberFilterMethodDescription","PickExistingFilterMethod","Any","Exclude","PickExistingFilterMethodDescription","TextFilterMethod","StartsWith","Contains","DoesNotContain","EndsWith","TextFilterMethodDescription","JobNotificationStatus","Success","Error","JobNotificationStatusDescription","KeyboardInputMode","Default","Email","Numeric","Decimal","Telephone","Url","KeyboardInputModeDescription","KioskType","IPad","WindowsApp","Browser","KioskTypeDescription","MatchFlag","Moved","POBoxClosed","MovedNoForwarding","MovedToForeignCountry","MatchFlagDescription","MoveType","Family","Individual","Business","MoveTypeDescription","NcoaType","NoMove","Month48Move","Move","NcoaTypeDescription","NoteApprovalStatus","PendingApproval","Approved","Denied","NoteApprovalStatusDescription","NoteFormatType","Unknown","Unstructured","Structured","NoteFormatTypeDescription","NotificationMessageActionType","Invalid","ShowMessage","LinkToPage","NotificationMessageActionTypeDescription","PrintFrom","Client","Server","PrintFromDescription","PrintTo","Kiosk","Location","PrintToDescription","Processed","NotProcessed","Complete","ManualUpdateRequired","ManualUpdateRequiredOrNotProcessed","ProcessedDescription","Resolution","DPI72","DPI150","DPI300","DPI600","ResolutionDescription","SignatureDocumentStatus","Sent","Signed","Cancelled","Expired","SignatureDocumentStatusDescription","SignatureType","Typed","Drawn","SignatureTypeDescription","SpecialRole","AllUsers","AllAuthenticatedUsers","AllUnAuthenticatedUsers","SpecialRoleDescription","TimeIntervalUnit","Seconds","Minutes","Hours","Days","Months","Years","TimeIntervalUnitDescription","UpdatedAddressType","Residential","UpdatedAddressTypeDescription"],"mappings":"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"}