Skip to content

Commit

Permalink
hasCommercial parameter corrected
Browse files Browse the repository at this point in the history
Signed-off-by: akshatnema <20bcs022@iiitdmj.ac.in>
  • Loading branch information
akshatnema committed Jan 16, 2023
1 parent a2f6bab commit 6d724d3
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 22 deletions.
38 changes: 19 additions & 19 deletions config/tools-automated.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,25 +171,6 @@
"CLIs": {
"description": "The following is a list of tools that you can work with in terminal or do some CI/CD automation.",
"toolsList": [
{
"title": "AsyncAPI CLI",
"description": "One CLI to rule them all. \nThis is a CLI that aims to integrate all AsyncAPI tools that you need while AsyncAPI document development and maintainance. \nYou can use it to generate docs or code, validate AsyncAPI document and event create new documents.\n",
"links": {
"websiteUrl": "https://www.asyncapi.com/tools/cli",
"repoUrl": "https://github.com/asyncapi/cli"
},
"filters": {
"technology": [
"TypeScript"
],
"categories": [
"others",
"cli"
],
"hasCommercial": false,
"isAsyncAPIOwner": true
}
},
{
"title": "ZenWave Code Generator",
"description": "DDD and API-First for Event-Driven Microservices",
Expand All @@ -213,6 +194,25 @@
"hasCommercial": false,
"isAsyncAPIOwner": false
}
},
{
"title": "AsyncAPI CLI",
"description": "One CLI to rule them all. \nThis is a CLI that aims to integrate all AsyncAPI tools that you need while AsyncAPI document development and maintainance. \nYou can use it to generate docs or code, validate AsyncAPI document and event create new documents.\n",
"links": {
"websiteUrl": "https://www.asyncapi.com/tools/cli",
"repoUrl": "https://github.com/asyncapi/cli"
},
"filters": {
"technology": [
"TypeScript"
],
"categories": [
"others",
"cli"
],
"hasCommercial": false,
"isAsyncAPIOwner": true
}
}
]
},
Expand Down
2 changes: 1 addition & 1 deletion config/tools.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion scripts/tools/extract-tools-github.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const getData = async () => {
{
headers: {
accept: 'application/vnd.github.text-match+json',
authorization: `token ${process.env.GITHUB_TOKEN}`,
authorization: `token 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`,
},
}
);
Expand Down
2 changes: 1 addition & 1 deletion scripts/tools/tools-object.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const createToolObject = async (toolFile, repositoryUrl='', repoDescription='',
},
filters: {
...toolFile.filters,
hasCommercial: toolFile?.filters?.hasCommmercial ? toolFile.filters.hasCommercial : false,
hasCommercial: toolFile?.filters?.hasCommercial ? toolFile.filters.hasCommercial : false,
isAsyncAPIOwner: isAsyncAPIrepo
}
};
Expand Down

0 comments on commit 6d724d3

Please sign in to comment.