{"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":["//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** The age bracket of a person */\r\nexport const AgeBracket = {\r\n /** Unknown Age range */\r\n Unknown: 0,\r\n\r\n /** Age range 0 - 12 */\r\n ZeroToTwelve: 1,\r\n\r\n /** Age range 13 - 17 */\r\n ThirteenToSeventeen: 2,\r\n\r\n /** Age range 18 - 24 */\r\n EighteenToTwentyFour: 3,\r\n\r\n /** Age range 25 - 34 */\r\n TwentyFiveToThirtyFour: 4,\r\n\r\n /** Age range 35 - 44 */\r\n ThirtyFiveToFortyFour: 5,\r\n\r\n /** Age range 45 - 54 */\r\n FortyFiveToFiftyFour: 6,\r\n\r\n /** Age range 55 - 64 */\r\n FiftyFiveToSixtyFour: 7,\r\n\r\n /** Age range 65+ */\r\n SixtyFiveOrOlder: 8\r\n} as const;\r\n\r\n/** The age bracket of a person */\r\nexport const AgeBracketDescription: Record = {\r\n 0: \"Unknown\",\r\n\r\n 1: \"Zero To Twelve\",\r\n\r\n 2: \"Thirteen To Seventeen\",\r\n\r\n 3: \"Eighteen To Twenty Four\",\r\n\r\n 4: \"Twenty Five To Thirty Four\",\r\n\r\n 5: \"Thirty Five To Forty Four\",\r\n\r\n 6: \"Forty Five To Fifty Four\",\r\n\r\n 7: \"Fifty Five To Sixty Four\",\r\n\r\n 8: \"Sixty Five Or Older\"\r\n};\r\n\r\n/** The age bracket of a person */\r\nexport type AgeBracket = typeof AgeBracket[keyof typeof AgeBracket];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** The age classification of a person */\r\nexport const AgeClassification = {\r\n /** Unknown */\r\n Unknown: 0,\r\n\r\n /** Adult */\r\n Adult: 1,\r\n\r\n /** Child */\r\n Child: 2\r\n} as const;\r\n\r\n/** The age classification of a person */\r\nexport const AgeClassificationDescription: Record = {\r\n 0: \"Unknown\",\r\n\r\n 1: \"Adult\",\r\n\r\n 2: \"Child\"\r\n};\r\n\r\n/** The age classification of a person */\r\nexport type AgeClassification = typeof AgeClassification[keyof typeof AgeClassification];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/**\r\n * Gets the status of the Assessment (i.e. Pending, Complete)\r\n * Complete should only be used if the Assessment was actually completed, everything else is pending.\r\n */\r\nexport const AssessmentRequestStatus = {\r\n /** Pending Status, anything that wasn't completed. */\r\n Pending: 0,\r\n\r\n /** Complete Status, only use if assessment was actually completed */\r\n Complete: 1\r\n} as const;\r\n\r\n/**\r\n * Gets the status of the Assessment (i.e. Pending, Complete)\r\n * Complete should only be used if the Assessment was actually completed, everything else is pending.\r\n */\r\nexport const AssessmentRequestStatusDescription: Record = {\r\n 0: \"Pending\",\r\n\r\n 1: \"Complete\"\r\n};\r\n\r\n/**\r\n * Gets the status of the Assessment (i.e. Pending, Complete)\r\n * Complete should only be used if the Assessment was actually completed, everything else is pending.\r\n */\r\nexport type AssessmentRequestStatus = typeof AssessmentRequestStatus[keyof typeof AssessmentRequestStatus];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** Type of authentication service used to authenticate user */\r\nexport const AuthenticationServiceType = {\r\n /** An internal authentication service (i.e. Database, Active Directory) */\r\n Internal: 0,\r\n\r\n /** An external authentication service (i.e. Facebook, Twitter, Google, etc.) */\r\n External: 1\r\n} as const;\r\n\r\n/** Type of authentication service used to authenticate user */\r\nexport const AuthenticationServiceTypeDescription: Record = {\r\n 0: \"Internal\",\r\n\r\n 1: \"External\"\r\n};\r\n\r\n/** Type of authentication service used to authenticate user */\r\nexport type AuthenticationServiceType = typeof AuthenticationServiceType[keyof typeof AuthenticationServiceType];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** The person's email preference */\r\nexport const EmailPreference = {\r\n /** Emails can be sent to person */\r\n EmailAllowed: 0,\r\n\r\n /** No Mass emails should be sent to person */\r\n NoMassEmails: 1,\r\n\r\n /** No emails should be sent to person */\r\n DoNotEmail: 2\r\n} as const;\r\n\r\n/** The person's email preference */\r\nexport const EmailPreferenceDescription: Record = {\r\n 0: \"Email Allowed\",\r\n\r\n 1: \"No Mass Emails\",\r\n\r\n 2: \"Do Not Email\"\r\n};\r\n\r\n/** The person's email preference */\r\nexport type EmailPreference = typeof EmailPreference[keyof typeof EmailPreference];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** The gender of a person */\r\nexport const Gender = {\r\n /** Unknown */\r\n Unknown: 0,\r\n\r\n /** Male */\r\n Male: 1,\r\n\r\n /** Female */\r\n Female: 2\r\n} as const;\r\n\r\n/** The gender of a person */\r\nexport const GenderDescription: Record = {\r\n 0: \"Unknown\",\r\n\r\n 1: \"Male\",\r\n\r\n 2: \"Female\"\r\n};\r\n\r\n/** The gender of a person */\r\nexport type Gender = typeof Gender[keyof typeof Gender];\r\n","//------------------------------------------------------------------------------\r\n// \r\n// This code was generated by the Rock.CodeGeneration project\r\n// Changes to this file will be lost when the code is regenerated.\r\n// \r\n//------------------------------------------------------------------------------\r\n// \r\n// Copyright by the Spark Development Network\r\n//\r\n// Licensed under the Rock Community License (the \"License\");\r\n// you may not use this file except in compliance with the License.\r\n// You may obtain a copy of the License at\r\n//\r\n// http://www.rockrms.com/license\r\n//\r\n// Unless required by applicable law or agreed to in writing, software\r\n// distributed under the License is distributed on an \"AS IS\" BASIS,\r\n// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n// See the License for the specific language governing permissions and\r\n// limitations under the License.\r\n// \r\n//\r\n\r\n/** Represents the personalization type */\r\nexport const PersonalizationType = {\r\n /** Personalization type based on Rock.Model.PersonalizationSegment. */\r\n Segment: 0,\r\n\r\n /** Personalization type based on Rock.Model.RequestFilter. */\r\n RequestFilter: 1\r\n} as const;\r\n\r\n/** Represents the personalization type */\r\nexport const PersonalizationTypeDescription: Record = {\r\n 0: \"Segment\",\r\n\r\n 1: \"Request Filter\"\r\n};\r\n\r\n/** Represents the personalization type */\r\nexport type PersonalizationType = typeof PersonalizationType[keyof typeof PersonalizationType];\r\n"],"names":["AgeBracket","Unknown","ZeroToTwelve","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,YAAY,EAAE,CAAC;YAGfC,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,gBAAgB;YAEnB,EAAA,CAAC,EAAE,uBAAuB;YAE1B,EAAA,CAAC,EAAE,yBAAyB;YAE5B,EAAA,CAAC,EAAE,4BAA4B;YAE/B,EAAA,CAAC,EAAE,2BAA2B;YAE9B,EAAA,CAAC,EAAE,0BAA0B;YAE7B,EAAA,CAAC,EAAE,0BAA0B;YAE7B,EAAA,CAAC,EAAE,qBAAA;YACP,CAAC;;;;;;;;;YChDM,IAAMC,iBAAiB,GAAG;YAE7BV,EAAAA,OAAO,EAAE,CAAC;YAGVW,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;YAElB3B,EAAAA,OAAO,EAAE,CAAC;YAGV4B,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;;;;;;;;;;;;;;;"}