{"version":3,"sources":["../../../src/window/types/legal-age-group-classification.ts"],"names":["LegalAgeGroupClassifications"],"mappings":"AAaY,IAAA,4BAAA,qBAAAA,6BAAL,KAAA;AAIL,EAAAA,8BAAA,OAAQ,CAAA,GAAA,OAAA;AAKR,EAAAA,8BAAA,gCAAiC,CAAA,GAAA,gCAAA;AAKjC,EAAAA,8BAAA,6BAA8B,CAAA,GAAA,6BAAA;AAM9B,EAAAA,8BAAA,0BAA2B,CAAA,GAAA,0BAAA;AAO3B,EAAAA,8BAAA,UAAW,CAAA,GAAA,UAAA;AA3BD,EAAAA,OAAAA,6BAAAA;AAAA,CAAA,EAAA,4BAAA,IAAA,EAAA","file":"legal-age-group-classification.mjs","sourcesContent":["/**\n * https://learn.microsoft.com/en-us/graph/api/resources/user?view=graph-rest-1.0#legalagegroupclassification-values\n */\nexport type LegalAgeGroupClassification =\n  | 'adult'\n  | 'minorNoParentalConsentRequired'\n  | 'minorWithoutParentalConsent'\n  | 'minorWithParentalConsent'\n  | 'nonAdult';\n\n/**\n * https://learn.microsoft.com/en-us/graph/api/resources/user?view=graph-rest-1.0#legalagegroupclassification-values\n */\nexport enum LegalAgeGroupClassifications {\n  /**\n   * The user is considered an adult based on the age-related regulations of their country or region.\n   */\n  Adult = 'adult',\n\n  /**\n   * The user is a minor but is from a country or region that has no age-related regulations.\n   */\n  MinorNoParentalConsentRequired = 'minorNoParentalConsentRequired',\n\n  /**\n   * Reserved for future use\n   */\n  MinorWithoutParentalConsent = 'minorWithoutParentalConsent',\n\n  /**\n   * The user is considered a minor based on the age-related regulations of their country or region, and the administrator\n   * of the account obtained appropriate consent from a parent or guardian.\n   */\n  MinorWithParentalConsent = 'minorWithParentalConsent',\n\n  /**\n   * The user is from a country or region that has additional age-related regulations, such as the United States,\n   * United Kingdom, European Union, or South Korea, and the user's age is between a minor and an adult age\n   * (as stipulated based on country or region). Generally, this means that teenagers are considered as notAdult in regulated countries.\n   */\n  NonAdult = 'nonAdult',\n}\n"]}