Skip to content

Commit 6c1fe55

Browse files
committed
add intellitoggle to ecosystem
Signed-off-by: Michael Beemer <[email protected]>
1 parent 9c08ca0 commit 6c1fe55

File tree

5 files changed

+29
-2
lines changed

5 files changed

+29
-2
lines changed

docs/reference/technologies/server/dart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This content has been automatically generated from dart-server-sdk.
99
Edits should be made here: https://github.com/open-feature/dart-server-sdk
1010
Once a repo has been updated, docs can be generated by running: yarn update:sdk-docs
1111

12-
Last updated at Thu Aug 28 2025 11:00:57 GMT-0400 (Eastern Daylight Time)
12+
Last updated at Thu Aug 28 2025 11:58:36 GMT-0400 (Eastern Daylight Time)
1313
-->
1414

1515
<p align="center" class="github-badges">

src/datasets/integrations/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { ComponentType, SVGProps } from 'react';
22
import { DropwizardOpenfeature } from './dropwizard-openfeature';
33
import { Category, EcosystemElement, Technology } from '../types';
44

5-
export const ECOSYSTEM_INTEGRATONS: EcosystemElement[] = [DropwizardOpenfeature]
5+
export const ECOSYSTEM_INTEGRATIONS: EcosystemElement[] = [DropwizardOpenfeature]
66
.map((integration) => {
77
return integration.technologies.map(({ vendorOfficial, technology, href, category }): EcosystemElement => {
88
return {

src/datasets/providers/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ import { Tggl } from './tggl';
3030
import { OFREP } from './ofrep';
3131
import { VWO } from './vwo';
3232
import { SDKS } from '../sdks';
33+
import { Intellitoggle } from './intellitoggle';
34+
3335
const childTechnologyMap = SDKS.reduce(
3436
(acc, sdk) => {
3537
if (sdk.parentTechnology && !sdk.skipParentTechnologyProviders) {
@@ -74,6 +76,7 @@ export const PROVIDERS: Provider[] = [
7476
Tggl,
7577
OFREP,
7678
VWO,
79+
Intellitoggle,
7780
];
7881

7982
// Map of provider name to technology to child technologies
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import IntellitoggleSvg from '@site/static/img/intellitoggle-no-fill.svg';
2+
import { Provider } from '.';
3+
4+
export const Intellitoggle: Provider = {
5+
name: 'Intellitoggle',
6+
logo: IntellitoggleSvg,
7+
technologies: [
8+
{
9+
technology: 'Dart',
10+
vendorOfficial: true,
11+
href: 'https://github.com/aortem/intellitoggle-openfeature-provider-dart-server',
12+
category: ['Server'],
13+
},
14+
],
15+
};
Lines changed: 9 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)