When calling `getFeatureFlags` on `ConfigurationMapFeatureFlagProvider` the call fails becaus the code call treats array as single object In https://github.com/microsoft/FeatureManagement-JavaScript/blob/8fe0efd0d923f1f24364f53a5b20702c1f923f0f/src/schema/validator.ts#L8 In featureProvider.ts https://github.com/microsoft/FeatureManagement-JavaScript/blob/8fe0efd0d923f1f24364f53a5b20702c1f923f0f/src/featureProvider.ts#L30 The same `validateFeatureFlag` function is called with both a single `FeatureFlag` and array of `FeatureFlag` but the function doesn't handle arrays. 