Feat/additional options for org analytics (#35606)
The new analytics functions created by makeAnalyticsFunction were supposed to require an organization object so we can pull out the role information (and potentially more fields later) for all analytics events. However, in some cases we might only have an organization ID or OrganizationSummry which does not have the role information. In those cases, we should still be able to pass an organization ID. To remedy this, I am adding the additional option to support the organization option to analytics events as a string. However, in order to reduce the chances someone accidentally passes in a string when the full organization is available, I am making the organization required for the trackAdvancedAnalyticsEvent function. We can make a specific function just to handle cases where the organization is just an ID.