Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/datasets/ofrep-api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ import { Flagd } from './flagd';
import { ConfigCat } from './configcat';
import { FFlags } from './fflags';
import { Flipswitch } from './flipswitch';
import { UseFlagly } from './useflagly';
export type OFREPElement = Omit<EcosystemElement, 'allTechnologies' | 'technology' | 'category'>;

export const ECOSYSTEM_OFREP_APIS: OFREPElement[] = [ConfigCat, DevCycle, Flagd, FFlags, Flipswitch, Flipt, Goff]
export const ECOSYSTEM_OFREP_APIS: OFREPElement[] = [ConfigCat, DevCycle, Flagd, FFlags, Flipswitch, Flipt, Goff, UseFlagly]
.map(
(api): OFREPElement => ({
vendor: api.name,
Expand Down
10 changes: 10 additions & 0 deletions src/datasets/ofrep-api/useflagly.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import UseFlaglySvg from '@site/static/img/useflagly-no-fill.svg';
import { OFREP_API } from '.';

export const UseFlagly: OFREP_API = {
name: 'UseFlagly',
logo: UseFlaglySvg,
description: 'UseFlagly Remote Evaluation API implementation of the OFREP specification',
href: 'https://www.useflagly.com.br',

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you have a documentation page this can point to?

vendorOfficial: true,
};
4 changes: 3 additions & 1 deletion src/datasets/providers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ import { OctopusDeploy } from './octopus-deploy';
import { Optimizely } from './optimizely';
import { Pendo } from './pendo';
import { Superposition } from './superposition';
import { UseFlagly } from './useflagly';

const childTechnologyMap = SDKS.reduce(
(acc, sdk) => {
Expand Down Expand Up @@ -114,7 +115,8 @@ export const PROVIDERS: Provider[] = [
OctopusDeploy,
Optimizely,
Pendo,
Superposition
Superposition,
UseFlagly,
];

// Map of provider name to technology to child technologies
Expand Down
16 changes: 16 additions & 0 deletions src/datasets/providers/useflagly.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import UseFlaglySvg from '@site/static/img/useflagly-no-fill.svg';

import { Provider } from '.';

export const UseFlagly: Provider = {
name: 'UseFlagly',
logo: UseFlaglySvg,
technologies: [
{
technology: 'JavaScript',
vendorOfficial: true,
href: 'https://www.npmjs.com/package/@useflagly/openfeature-provider',
category: ['Server'],
},
],
};
3 changes: 3 additions & 0 deletions static/img/useflagly-no-fill.svg

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@thiagoozeias The logo SVG doesn't seem to match the UseFlagly mark used on the website, can you update it. See the documentation here: https://github.com/open-feature/openfeature.dev/blob/main/src/components/custom/SvgOrFonticon/index.tsx#L16-L21

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.