Skip to content

Commit

Permalink
Merge branch 'main' into fix/ts-composed-types
Browse files Browse the repository at this point in the history
  • Loading branch information
andrueastman authored Nov 4, 2024
2 parents 6d45335 + fc88dcb commit 9787b04
Show file tree
Hide file tree
Showing 6 changed files with 119 additions and 95 deletions.
4 changes: 2 additions & 2 deletions it/python/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ exceptiongroup==1.1.1 ; python_version < '3.11'

flit==3.9.0

flit-core==3.9.0 ; python_version >= '3.6'
flit-core==3.10.1 ; python_version >= '3.6'

idna==3.10

Expand Down Expand Up @@ -72,7 +72,7 @@ aiosignal==1.3.1 ; python_version >= '3.7'

anyio==4.6.2.post1 ; python_version >= '3.7'

async-timeout==4.0.3 ; python_version >= '3.6'
async-timeout==5.0.0 ; python_version >= '3.6'

attrs==24.2.0 ; python_version >= '3.7'

Expand Down
8 changes: 4 additions & 4 deletions it/typescript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion it/typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"devDependencies": {
"@es-exec/esbuild-plugin-start": "^0.0.5",
"@stylistic/eslint-plugin-ts": "^2.10.0",
"@types/node": "^22.8.5",
"@types/node": "^22.8.7",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"esbuild": "^0.24.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public Task<IDictionary<string, SearchResult>> SearchAsync(string term, string?
if (term.Split(termSeparator, StringSplitOptions.RemoveEmptyEntries).Any(Keywords.Contains))
{
return Task.FromResult<IDictionary<string, SearchResult>>(new Dictionary<string, SearchResult> {
{ "petstore", new SearchResult(ApiTitle, ApiDescription, new Uri("https://petstore.swagger.io/v1"), new Uri("https://raw.githubusercontent.com/OAI/OpenAPI-Specification/main/examples/v3.0/petstore.yaml"), new List<string> { "1.0.0" }) }
{ "petstore", new SearchResult(ApiTitle, ApiDescription, new Uri("https://petstore.swagger.io/v1"), new Uri("https://raw.githubusercontent.com/OAI/OpenAPI-Specification/main/tests/v3.0/pass/petstore.yaml"), new List<string> { "1.0.0" }) }
});
}
return Task.FromResult<IDictionary<string, SearchResult>>(new Dictionary<string, SearchResult>());
Expand Down
Loading

0 comments on commit 9787b04

Please sign in to comment.