Skip to content

Commit 72bdec6

Browse files
committed
feat: adding Hyphen AI to the provider ecosystem
1 parent 67ff964 commit 72bdec6

File tree

3 files changed

+88
-0
lines changed

3 files changed

+88
-0
lines changed

src/datasets/providers/hyphen.ts

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
import HyphenNoFillSvg from '@site/static/img/hyphen-no-fill.svg';
2+
import { Provider } from '.';
3+
4+
export const Hyphen: Provider = {
5+
name: 'Hyphen AI',
6+
logo: HyphenNoFillSvg,
7+
technologies: [
8+
{
9+
technology: 'JavaScript',
10+
vendorOfficial: true,
11+
href: 'https://github.com/Hyphen/openfeature-provider-javascript-server',
12+
category: ['Server'],
13+
},
14+
{
15+
technology: 'JavaScript',
16+
vendorOfficial: true,
17+
href: 'https://github.com/Hyphen/openfeature-provider-javascript-server',
18+
category: ['Client'],
19+
},
20+
{
21+
technology: 'Go',
22+
vendorOfficial: false,
23+
href: 'https://github.com/Hyphen/openfeature-provider-go',
24+
category: ['Server'],
25+
},
26+
{
27+
technology: 'Java',
28+
vendorOfficial: true,
29+
href: 'https://github.com/Hyphen/openfeature-provider-java',
30+
category: ['Server'],
31+
},
32+
{
33+
technology: '.NET',
34+
vendorOfficial: true,
35+
href: 'https://github.com/Hyphen/openfeature-provider-dotnet',
36+
category: ['Server'],
37+
},
38+
{
39+
technology: 'Python',
40+
vendorOfficial: true,
41+
href: 'https://github.com/Hyphen/openfeature-provider-python',
42+
category: ['Server'],
43+
},
44+
{
45+
technology: 'Swift',
46+
vendorOfficial: true,
47+
href: 'https://github.com/Hyphen/hyphen-openfeature-swift',
48+
category: ['Client'],
49+
},
50+
],
51+
};

src/datasets/providers/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import { Goff } from './goff';
1414
import { Harness } from './harness';
1515
import { Kameleoon } from './kameleoon';
1616
import { LaunchDarkly } from './launchdarkly';
17+
import { Hyphen } from './hyphen';
1718
import { MDBRules } from './mdb-rules';
1819
import { PostHog } from './posthog';
1920
import { Reflag } from './reflag';
@@ -66,6 +67,7 @@ export const PROVIDERS: Provider[] = [
6667
Hypertune,
6768
Kameleoon,
6869
LaunchDarkly,
70+
Hyphen,
6971
MDBRules,
7072
PostHog,
7173
Reflag,

static/img/hyphen-no-fill.svg

Lines changed: 35 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)