Skip to content

Commit 8f83eea

Browse files
feat: add ABTasty nodeJS provider (#1048)
## This PR - adds ABTasty nodeJS provider ### Related Issues - #1047 --------- Signed-off-by: OpenFeature Bot <[email protected]> Signed-off-by: Chadi LAOULAOU <[email protected]> Co-authored-by: OpenFeature Bot <[email protected]>
1 parent d0316f6 commit 8f83eea

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

src/datasets/providers/abtasty.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import ABTastySvg from '@site/static/img/abtasty-no-fill.svg';
2+
import { Provider } from '.';
3+
4+
export const ABTasty: Provider = {
5+
name: 'AB Tasty',
6+
logo: ABTastySvg,
7+
technologies: [
8+
{
9+
technology: 'JavaScript',
10+
vendorOfficial: true,
11+
href: 'https://github.com/flagship-io/openfeature-provider-js',
12+
category: ['Server'],
13+
},
14+
],
15+
};

src/datasets/providers/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import type { ComponentType, SVGProps } from 'react';
22
import { Category, EcosystemElement, Technology } from '../types';
3+
import { ABTasty } from './abtasty';
34
import { Bucket } from './bucket';
45
import { Bucketeer } from './bucketeer';
56
import { CloudBees } from './cloudbees';
@@ -43,6 +44,7 @@ const childTechnologyMap = SDKS.reduce(
4344
);
4445

4546
export const PROVIDERS: Provider[] = [
47+
ABTasty,
4648
Bucket,
4749
Bucketeer,
4850
CloudBees,

static/img/abtasty-no-fill.svg

Lines changed: 6 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)