{"version":3,"file":"Reporting.js","sources":["../../../Framework/Enums/Reporting/comparisonType.ts","../../../Framework/Enums/Reporting/fieldFilterSourceType.ts","../../../Framework/Enums/Reporting/filterExpressionType.ts","../../../Framework/Enums/Reporting/metricNumericDataType.ts","../../../Framework/Enums/Reporting/metricValueType.ts","../../../Framework/Enums/Reporting/reportFieldType.ts","../../../Framework/Enums/Reporting/unitType.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/** Reporting Field Comparison Types */\nexport const ComparisonType = {\n    /** Equal */\n    EqualTo: 0x0001,\n\n    /** Not equal */\n    NotEqualTo: 0x0002,\n\n    /** Starts with */\n    StartsWith: 0x0004,\n\n    /** Contains */\n    Contains: 0x0008,\n\n    /** Does not contain */\n    DoesNotContain: 0x0010,\n\n    /** Is blank */\n    IsBlank: 0x0020,\n\n    /** Is not blank */\n    IsNotBlank: 0x0040,\n\n    /** Greater than */\n    GreaterThan: 0x0080,\n\n    /** Greater than or equal */\n    GreaterThanOrEqualTo: 0x0100,\n\n    /** Less than */\n    LessThan: 0x0200,\n\n    /** Less than or equal */\n    LessThanOrEqualTo: 0x0400,\n\n    /** Ends with */\n    EndsWith: 0x0800,\n\n    /** Between */\n    Between: 0x1000,\n\n    /** Regular Expression */\n    RegularExpression: 0x2000\n} as const;\n\n/** Reporting Field Comparison Types */\nexport const ComparisonTypeDescription: Record<number, string> = {\n    1: \"Equal To\",\n\n    2: \"Not Equal To\",\n\n    4: \"Starts With\",\n\n    8: \"Contains\",\n\n    16: \"Does Not Contain\",\n\n    32: \"Is Blank\",\n\n    64: \"Is Not Blank\",\n\n    128: \"Greater Than\",\n\n    256: \"Greater Than Or Equal To\",\n\n    512: \"Less Than\",\n\n    1024: \"Less Than Or Equal To\",\n\n    2048: \"Ends With\",\n\n    4096: \"Between\",\n\n    8192: \"Regular Expression\"\n};\n\n/** Reporting Field Comparison Types */\nexport type ComparisonType = number;\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 sources of current value that can be used when building custom\n * filtering logic.This currently has only Attribute, but would later be\n * expanded to include other sources (such as properties).\n */\nexport const FieldFilterSourceType = {\n    /** The value will be read from an entity attribute value. */\n    Attribute: 0,\n\n    /** The value will be read from an entity property. */\n    Property: 1\n} as const;\n\n/**\n * The sources of current value that can be used when building custom\n * filtering logic.This currently has only Attribute, but would later be\n * expanded to include other sources (such as properties).\n */\nexport const FieldFilterSourceTypeDescription: Record<number, string> = {\n    0: \"Attribute\",\n\n    1: \"Property\"\n};\n\n/**\n * The sources of current value that can be used when building custom\n * filtering logic.This currently has only Attribute, but would later be\n * expanded to include other sources (such as properties).\n */\nexport type FieldFilterSourceType = typeof FieldFilterSourceType[keyof typeof FieldFilterSourceType];\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 Filter entry */\nexport const FilterExpressionType = {\n    /** Expression filter */\n    Filter: 0,\n\n    /** A collection of expressions/conditions that must match and should be \"and'd\" together. */\n    GroupAll: 1,\n\n    /** A collection of expressions/conditions where at least one condition/expression must match.  Expressions are \"or'd\" together. */\n    GroupAny: 2,\n\n    /** A collection of expressions/conditions where all conditions must be false.  Expressions are combined using a logical OR and the group result must be FALSE. */\n    GroupAllFalse: 3,\n\n    /** A collection of expressions/conditions where at least one condition must be false.  Expressions are combined using a logical AND and the group result must be FALSE. */\n    GroupAnyFalse: 4\n} as const;\n\n/** Type of Filter entry */\nexport const FilterExpressionTypeDescription: Record<number, string> = {\n    0: \"Filter\",\n\n    1: \"Group All\",\n\n    2: \"Group Any\",\n\n    3: \"Group All False\",\n\n    4: \"Group Any False\"\n};\n\n/** Type of Filter entry */\nexport type FilterExpressionType = typeof FilterExpressionType[keyof typeof FilterExpressionType];\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 gender of a person */\nexport const MetricNumericDataType = {\n    /** Integer */\n    Integer: 0,\n\n    /** Decimal */\n    Decimal: 1,\n\n    /** Currency */\n    Currency: 2\n} as const;\n\n/** The gender of a person */\nexport const MetricNumericDataTypeDescription: Record<number, string> = {\n    0: \"Integer\",\n\n    1: \"Decimal\",\n\n    2: \"Currency\"\n};\n\n/** The gender of a person */\nexport type MetricNumericDataType = typeof MetricNumericDataType[keyof typeof MetricNumericDataType];\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 type of Metric Value that a Metric Value represents */\nexport const MetricValueType = {\n    /** Metric Value represents something that was measured (for example: Fundraising Total) */\n    Measure: 0,\n\n    /** Metric Value represents a goal (for example: Fundraising Goal) */\n    Goal: 1\n} as const;\n\n/** The type of Metric Value that a Metric Value represents */\nexport const MetricValueTypeDescription: Record<number, string> = {\n    0: \"Measure\",\n\n    1: \"Goal\"\n};\n\n/** The type of Metric Value that a Metric Value represents */\nexport type MetricValueType = typeof MetricValueType[keyof typeof MetricValueType];\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 ReportFieldType = {\n    /** The field is one of the properties of the entity */\n    Property: 0,\n\n    /** The field is one of the attributes of the entity */\n    Attribute: 1,\n\n    /** The field(s) that result from a DataSelectComponent */\n    DataSelectComponent: 2\n} as const;\n\nexport const ReportFieldTypeDescription: Record<number, string> = {\n    0: \"Property\",\n\n    1: \"Attribute\",\n\n    2: \"Data Select Component\"\n};\n\nexport type ReportFieldType = typeof ReportFieldType[keyof typeof ReportFieldType];\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 unit type for a metric */\nexport const UnitType = {\n    /** Numeric */\n    Numeric: 0,\n\n    /** Currency */\n    Currency: 1,\n\n    /** Percentage */\n    Percentage: 2\n} as const;\n\n/** The unit type for a metric */\nexport const UnitTypeDescription: Record<number, string> = {\n    0: \"Numeric\",\n\n    1: \"Currency\",\n\n    2: \"Percentage\"\n};\n\n/** The unit type for a metric */\nexport type UnitType = typeof UnitType[keyof typeof UnitType];\n"],"names":["ComparisonType","EqualTo","NotEqualTo","StartsWith","Contains","DoesNotContain","IsBlank","IsNotBlank","GreaterThan","GreaterThanOrEqualTo","LessThan","LessThanOrEqualTo","EndsWith","Between","RegularExpression","ComparisonTypeDescription","FieldFilterSourceType","Attribute","Property","FieldFilterSourceTypeDescription","FilterExpressionType","Filter","GroupAll","GroupAny","GroupAllFalse","GroupAnyFalse","FilterExpressionTypeDescription","MetricNumericDataType","Integer","Decimal","Currency","MetricNumericDataTypeDescription","MetricValueType","Measure","Goal","MetricValueTypeDescription","ReportFieldType","DataSelectComponent","ReportFieldTypeDescription","UnitType","Numeric","Percentage","UnitTypeDescription"],"mappings":"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"}