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