Skip to content

Commit

Permalink
fix(rules): add IFTT
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Oct 13, 2023
1 parent a8cdbed commit 4eb20fd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/rules/__snapshots__/index.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ exports[`all > should match everything 1`] = `
"huggingface",
"hyperdx",
"hypertune",
"iftt",
"influxdb",
"intuit",
"java",
Expand Down
7 changes: 7 additions & 0 deletions src/rules/saas/iftt.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { register } from '../../register.js';

register({
tech: 'iftt',
name: 'iftt',
type: 'saas',
});
1 change: 1 addition & 0 deletions src/rules/saas/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import './hotjar.js';
import './hubspot.js';
import './huggingface.js';
import './hypertune.js';
import './iftt.js';
import './intuit.js';
import './jira.js';
import './klarna.js';
Expand Down
1 change: 1 addition & 0 deletions src/types/techs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ export type AllowedKeys =
| 'huggingface'
| 'hyperdx'
| 'hypertune'
| 'iftt'
| 'influxdb'
| 'intuit'
| 'java'
Expand Down

0 comments on commit 4eb20fd

Please sign in to comment.