Skip to content

Commit

Permalink
fix(rules): add Zuora
Browse files Browse the repository at this point in the history
  • Loading branch information
bodinsamuel committed Sep 2, 2023
1 parent 4cea447 commit 44a7a59
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
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 @@ -155,5 +155,6 @@ exports[`all > should match everything 1`] = `
"webpack",
"zendesk",
"zookeeper",
"zuora",
]
`;
1 change: 1 addition & 0 deletions src/rules/saas/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ import './slack.js';
import './snyk.js';
import './sqreen.js';
import './zendesk.js';
import './zuora.js';
7 changes: 7 additions & 0 deletions src/rules/saas/zuora.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { register } from '../../register.js';

register({
tech: 'zuora',
name: 'Zuora',
type: 'saas',
});
3 changes: 2 additions & 1 deletion src/types/techs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,8 @@ export type AllowedKeys =
| 'zapier'
| 'zendesk'
| 'zookeeper'
| 'zoom';
| 'zoom'
| 'zuora';

export interface TechItem {
key: AllowedKeys;
Expand Down

0 comments on commit 44a7a59

Please sign in to comment.