{"version":3,"file":"Crm.js","sources":["../../../Framework/Enums/Crm/ageBracket.ts","../../../Framework/Enums/Crm/ageClassification.ts","../../../Framework/Enums/Crm/assessmentRequestStatus.ts","../../../Framework/Enums/Crm/authenticationServiceType.ts","../../../Framework/Enums/Crm/emailPreference.ts","../../../Framework/Enums/Crm/gender.ts","../../../Framework/Enums/Crm/personalizationType.ts"],"sourcesContent":["//------------------------------------------------------------------------------\n// \n// This code was generated by the Rock.CodeGeneration project\n// Changes to this file will be lost when the code is regenerated.\n// \n//------------------------------------------------------------------------------\n// \n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// \n//\n\n/** The age bracket of a person */\nexport const AgeBracket = {\n /** Unknown Age range */\n Unknown: 0,\n\n /** Age range 0 - 5 */\n ZeroToFive: 1,\n\n /** Age range 6 - 12 */\n SixToTwelve: 2,\n\n /** Age range 13 - 17 */\n ThirteenToSeventeen: 3,\n\n /** Age range 18 - 24 */\n EighteenToTwentyFour: 4,\n\n /** Age range 25 - 34 */\n TwentyFiveToThirtyFour: 5,\n\n /** Age range 35 - 44 */\n ThirtyFiveToFortyFour: 6,\n\n /** Age range 45 - 54 */\n FortyFiveToFiftyFour: 7,\n\n /** Age range 55 - 64 */\n FiftyFiveToSixtyFour: 8,\n\n /** Age range 65+ */\n SixtyFiveOrOlder: 9\n} as const;\n\n/** The age bracket of a person */\nexport const AgeBracketDescription: Record = {\n 0: \"Unknown\",\n\n 1: \"0 - 5\",\n\n 2: \"6 - 12\",\n\n 3: \"13 - 17\",\n\n 4: \"18 - 24\",\n\n 5: \"25 - 34\",\n\n 6: \"35 - 44\",\n\n 7: \"45 - 54\",\n\n 8: \"55 - 64\",\n\n 9: \"65+\"\n};\n\n/** The age bracket of a person */\nexport type AgeBracket = typeof AgeBracket[keyof typeof AgeBracket];\n","//------------------------------------------------------------------------------\n// \n// This code was generated by the Rock.CodeGeneration project\n// Changes to this file will be lost when the code is regenerated.\n// \n//------------------------------------------------------------------------------\n// \n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// \n//\n\n/** The age classification of a person */\nexport const AgeClassification = {\n /** Unknown */\n Unknown: 0,\n\n /** Adult */\n Adult: 1,\n\n /** Child */\n Child: 2\n} as const;\n\n/** The age classification of a person */\nexport const AgeClassificationDescription: Record = {\n 0: \"Unknown\",\n\n 1: \"Adult\",\n\n 2: \"Child\"\n};\n\n/** The age classification of a person */\nexport type AgeClassification = typeof AgeClassification[keyof typeof AgeClassification];\n","//------------------------------------------------------------------------------\n// \n// This code was generated by the Rock.CodeGeneration project\n// Changes to this file will be lost when the code is regenerated.\n// \n//------------------------------------------------------------------------------\n// \n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// \n//\n\n/**\n * Gets the status of the Assessment (i.e. Pending, Complete)\n * Complete should only be used if the Assessment was actually completed, everything else is pending.\n */\nexport const AssessmentRequestStatus = {\n /** Pending Status, anything that wasn't completed. */\n Pending: 0,\n\n /** Complete Status, only use if assessment was actually completed */\n Complete: 1\n} as const;\n\n/**\n * Gets the status of the Assessment (i.e. Pending, Complete)\n * Complete should only be used if the Assessment was actually completed, everything else is pending.\n */\nexport const AssessmentRequestStatusDescription: Record = {\n 0: \"Pending\",\n\n 1: \"Complete\"\n};\n\n/**\n * Gets the status of the Assessment (i.e. Pending, Complete)\n * Complete should only be used if the Assessment was actually completed, everything else is pending.\n */\nexport type AssessmentRequestStatus = typeof AssessmentRequestStatus[keyof typeof AssessmentRequestStatus];\n","//------------------------------------------------------------------------------\n// \n// This code was generated by the Rock.CodeGeneration project\n// Changes to this file will be lost when the code is regenerated.\n// \n//------------------------------------------------------------------------------\n// \n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// \n//\n\n/** Type of authentication service used to authenticate user */\nexport const AuthenticationServiceType = {\n /** An internal authentication service (i.e. Database, Active Directory) */\n Internal: 0,\n\n /** An external authentication service (i.e. Facebook, Twitter, Google, etc.) */\n External: 1\n} as const;\n\n/** Type of authentication service used to authenticate user */\nexport const AuthenticationServiceTypeDescription: Record = {\n 0: \"Internal\",\n\n 1: \"External\"\n};\n\n/** Type of authentication service used to authenticate user */\nexport type AuthenticationServiceType = typeof AuthenticationServiceType[keyof typeof AuthenticationServiceType];\n","//------------------------------------------------------------------------------\n// \n// This code was generated by the Rock.CodeGeneration project\n// Changes to this file will be lost when the code is regenerated.\n// \n//------------------------------------------------------------------------------\n// \n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// \n//\n\n/** The person's email preference */\nexport const EmailPreference = {\n /** Emails can be sent to person */\n EmailAllowed: 0,\n\n /** No Mass emails should be sent to person */\n NoMassEmails: 1,\n\n /** No emails should be sent to person */\n DoNotEmail: 2\n} as const;\n\n/** The person's email preference */\nexport const EmailPreferenceDescription: Record = {\n 0: \"Email Allowed\",\n\n 1: \"No Mass Emails\",\n\n 2: \"Do Not Email\"\n};\n\n/** The person's email preference */\nexport type EmailPreference = typeof EmailPreference[keyof typeof EmailPreference];\n","//------------------------------------------------------------------------------\n// \n// This code was generated by the Rock.CodeGeneration project\n// Changes to this file will be lost when the code is regenerated.\n// \n//------------------------------------------------------------------------------\n// \n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// \n//\n\n/** The gender of a person */\nexport const Gender = {\n /** Unknown */\n Unknown: 0,\n\n /** Male */\n Male: 1,\n\n /** Female */\n Female: 2\n} as const;\n\n/** The gender of a person */\nexport const GenderDescription: Record = {\n 0: \"Unknown\",\n\n 1: \"Male\",\n\n 2: \"Female\"\n};\n\n/** The gender of a person */\nexport type Gender = typeof Gender[keyof typeof Gender];\n","//------------------------------------------------------------------------------\n// \n// This code was generated by the Rock.CodeGeneration project\n// Changes to this file will be lost when the code is regenerated.\n// \n//------------------------------------------------------------------------------\n// \n// Copyright by the Spark Development Network\n//\n// Licensed under the Rock Community License (the \"License\");\n// you may not use this file except in compliance with the License.\n// You may obtain a copy of the License at\n//\n// http://www.rockrms.com/license\n//\n// Unless required by applicable law or agreed to in writing, software\n// distributed under the License is distributed on an \"AS IS\" BASIS,\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n// See the License for the specific language governing permissions and\n// limitations under the License.\n// \n//\n\n/** Represents the personalization type */\nexport const PersonalizationType = {\n /** Personalization type based on Rock.Model.PersonalizationSegment. */\n Segment: 0,\n\n /** Personalization type based on Rock.Model.RequestFilter. */\n RequestFilter: 1\n} as const;\n\n/** Represents the personalization type */\nexport const PersonalizationTypeDescription: Record = {\n 0: \"Segment\",\n\n 1: \"Request Filter\"\n};\n\n/** Represents the personalization type */\nexport type PersonalizationType = typeof PersonalizationType[keyof typeof PersonalizationType];\n"],"names":["AgeBracket","Unknown","ZeroToFive","SixToTwelve","ThirteenToSeventeen","EighteenToTwentyFour","TwentyFiveToThirtyFour","ThirtyFiveToFortyFour","FortyFiveToFiftyFour","FiftyFiveToSixtyFour","SixtyFiveOrOlder","AgeBracketDescription","AgeClassification","Adult","Child","AgeClassificationDescription","AssessmentRequestStatus","Pending","Complete","AssessmentRequestStatusDescription","AuthenticationServiceType","Internal","External","AuthenticationServiceTypeDescription","EmailPreference","EmailAllowed","NoMassEmails","DoNotEmail","EmailPreferenceDescription","Gender","Male","Female","GenderDescription","PersonalizationType","Segment","RequestFilter","PersonalizationTypeDescription"],"mappings":";;;;;YAwBO,IAAMA,UAAU,GAAG;YAEtBC,EAAAA,OAAO,EAAE,CAAC;YAGVC,EAAAA,UAAU,EAAE,CAAC;YAGbC,EAAAA,WAAW,EAAE,CAAC;YAGdC,EAAAA,mBAAmB,EAAE,CAAC;YAGtBC,EAAAA,oBAAoB,EAAE,CAAC;YAGvBC,EAAAA,sBAAsB,EAAE,CAAC;YAGzBC,EAAAA,qBAAqB,EAAE,CAAC;YAGxBC,EAAAA,oBAAoB,EAAE,CAAC;YAGvBC,EAAAA,oBAAoB,EAAE,CAAC;YAGvBC,EAAAA,gBAAgB,EAAE,CAAA;YACtB,CAAU,CAAA;YAGH,IAAMC,qBAA6C,GAAG;YACzD,EAAA,CAAC,EAAE,SAAS;YAEZ,EAAA,CAAC,EAAE,OAAO;YAEV,EAAA,CAAC,EAAE,QAAQ;YAEX,EAAA,CAAC,EAAE,SAAS;YAEZ,EAAA,CAAC,EAAE,SAAS;YAEZ,EAAA,CAAC,EAAE,SAAS;YAEZ,EAAA,CAAC,EAAE,SAAS;YAEZ,EAAA,CAAC,EAAE,SAAS;YAEZ,EAAA,CAAC,EAAE,SAAS;YAEZ,EAAA,CAAC,EAAE,KAAA;YACP,CAAC;;;;;;;;;YCrDM,IAAMC,iBAAiB,GAAG;YAE7BX,EAAAA,OAAO,EAAE,CAAC;YAGVY,EAAAA,KAAK,EAAE,CAAC;YAGRC,EAAAA,KAAK,EAAE,CAAA;YACX,CAAU,CAAA;YAGH,IAAMC,4BAAoD,GAAG;YAChE,EAAA,CAAC,EAAE,SAAS;YAEZ,EAAA,CAAC,EAAE,OAAO;YAEV,EAAA,CAAC,EAAE,OAAA;YACP,CAAC;;;;;;;;;YCfM,IAAMC,uBAAuB,GAAG;YAEnCC,EAAAA,OAAO,EAAE,CAAC;YAGVC,EAAAA,QAAQ,EAAE,CAAA;YACd,CAAU,CAAA;YAMH,IAAMC,kCAA0D,GAAG;YACtE,EAAA,CAAC,EAAE,SAAS;YAEZ,EAAA,CAAC,EAAE,UAAA;YACP,CAAC;;;;;;;;;YCnBM,IAAMC,yBAAyB,GAAG;YAErCC,EAAAA,QAAQ,EAAE,CAAC;YAGXC,EAAAA,QAAQ,EAAE,CAAA;YACd,CAAU,CAAA;YAGH,IAAMC,oCAA4D,GAAG;YACxE,EAAA,CAAC,EAAE,UAAU;YAEb,EAAA,CAAC,EAAE,UAAA;YACP,CAAC;;;;;;;;;YCbM,IAAMC,eAAe,GAAG;YAE3BC,EAAAA,YAAY,EAAE,CAAC;YAGfC,EAAAA,YAAY,EAAE,CAAC;YAGfC,EAAAA,UAAU,EAAE,CAAA;YAChB,CAAU,CAAA;YAGH,IAAMC,0BAAkD,GAAG;YAC9D,EAAA,CAAC,EAAE,eAAe;YAElB,EAAA,CAAC,EAAE,gBAAgB;YAEnB,EAAA,CAAC,EAAE,cAAA;YACP,CAAC;;;;;;;;;YClBM,IAAMC,MAAM,GAAG;YAElB5B,EAAAA,OAAO,EAAE,CAAC;YAGV6B,EAAAA,IAAI,EAAE,CAAC;YAGPC,EAAAA,MAAM,EAAE,CAAA;YACZ,CAAU,CAAA;YAGH,IAAMC,iBAAyC,GAAG;YACrD,EAAA,CAAC,EAAE,SAAS;YAEZ,EAAA,CAAC,EAAE,MAAM;YAET,EAAA,CAAC,EAAE,QAAA;YACP,CAAC;;;;;;;;;YClBM,IAAMC,mBAAmB,GAAG;YAE/BC,EAAAA,OAAO,EAAE,CAAC;YAGVC,EAAAA,aAAa,EAAE,CAAA;YACnB,CAAU,CAAA;YAGH,IAAMC,8BAAsD,GAAG;YAClE,EAAA,CAAC,EAAE,SAAS;YAEZ,EAAA,CAAC,EAAE,gBAAA;YACP,CAAC;;;;;;;;;;;;;;;"}