Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
0612b51
Health Insights API Version 2
asaflevi-ms Jan 2, 2024
4d34e35
add custom_words
asaflevi-ms Jan 2, 2024
1655036
update radiology insights doc descriptions
asaflevi-ms Jan 16, 2024
1b644ad
misspell
asaflevi-ms Jan 16, 2024
9366183
add java service-name option to emit the service name
asaflevi-ms Jan 16, 2024
222579b
update openAPI spec. misspell
asaflevi-ms Jan 24, 2024
1441e71
Merge branch 'main' into asaflevi/healthinsights-api-v2
asaflevi-ms Jan 24, 2024
8e8031c
model is Element instead of extends element
asaflevi-ms Jan 24, 2024
3fadaf0
Fhir.R4 namespace as PascalCase
asaflevi-ms Jan 24, 2024
a5bbaa7
Fix: workaround - force order resolution
asaflevi-ms Jan 25, 2024
15e7609
fix: suppression to get additionalProperties. DomainResource is Resource
asaflevi-ms Jan 25, 2024
80a8ba9
suppress in patient timeline to get additionalProperties
asaflevi-ms Jan 25, 2024
c9279c7
Merge branch 'main' into asaflevi/healthinsights-api-v2
asaflevi-ms Jan 26, 2024
ddd0683
[Health Insights] Project structure updates (#27545)
catalinaperalta Jan 28, 2024
8e60753
use clientName decorator to decorate Fhir_R4 models
asaflevi-ms Jan 28, 2024
be562d0
Operation types as camelCase
asaflevi-ms Jan 28, 2024
052157e
replace projectedName with clientName
asaflevi-ms Jan 29, 2024
87b3ac5
model extends Element - same as FHIR spec
asaflevi-ms Jan 29, 2024
d3d52ce
move clientName to client.tsp
asaflevi-ms Jan 29, 2024
02b71b5
fix: clientName - typename
asaflevi-ms Jan 29, 2024
0b71a89
fix: token-expected: ';'
asaflevi-ms Jan 29, 2024
ebd3455
remove import, typespec-client-generator-core
asaflevi-ms Jan 29, 2024
34e9852
tsp format
asaflevi-ms Jan 29, 2024
8617dea
fix: LRO response schema to include result
asaflevi-ms Jan 29, 2024
e6d4e5c
add @clientName to all models
asaflevi-ms Jan 29, 2024
4dfb2ef
replace decimal with decimal128, add RI sample
asaflevi-ms Jan 29, 2024
c074001
replace decimal128 with float64
asaflevi-ms Jan 29, 2024
a4993c5
tsp format
asaflevi-ms Jan 29, 2024
e4f5c39
suppress AvoidAnonymousTypes
catalinaperalta Jan 29, 2024
bb11fb7
Merge branch 'main' of https://github.com/Azure/azure-rest-api-specs …
catalinaperalta Jan 30, 2024
73d40cf
comment clientName decorators
asaflevi-ms Jan 30, 2024
a739963
Merge branch 'asaflevi/healthinsights-api-v2' of https://github.com/A…
asaflevi-ms Jan 30, 2024
ce51886
comment clientName decorators
asaflevi-ms Jan 30, 2024
a6506bb
comment clientName decorator for RI client.tsp
asaflevi-ms Jan 30, 2024
47934ed
Add projectedName
asaflevi-ms Jan 30, 2024
f13f11d
Merge branch 'main' into asaflevi/healthinsights-api-v2
asaflevi-ms Jan 30, 2024
5390ee3
move projectedName to client.tsp
asaflevi-ms Jan 30, 2024
bce8324
fix: projectedName on client
asaflevi-ms Jan 30, 2024
da323e9
updat tspconfig.yaml
catalinaperalta Jan 30, 2024
7242cf2
move service.tsp
catalinaperalta Jan 31, 2024
c25d6a3
update ref
catalinaperalta Jan 31, 2024
e734ee1
revert structure changes
catalinaperalta Jan 31, 2024
b0a9a26
move examples
catalinaperalta Jan 31, 2024
9e1bfd7
tspconfig
catalinaperalta Jan 31, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
revert structure changes
  • Loading branch information
catalinaperalta committed Jan 31, 2024
commit e734ee1792a8c5b8a4cd5997b6a9db9ee5f52ee3
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import "./route.oncophenotype.tsp";

import "@typespec/rest";
import "@typespec/http";
import "../HealthInsights.Common/service.tsp";
import "../HealthInsights.OpenAPI/service.tsp";

using Azure.ClientGenerator.Core;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ parameters:
"dependencies":
"additionalDirectories":
- "specification/ai/HealthInsights/HealthInsights.Common/"
- "specification/ai/HealthInsights/HealthInsights.OpenAPI/"
default: ""
"python-sdk-folder":
default: "{project-root}/azure-sdk-for-python/"
Expand Down
11 changes: 11 additions & 0 deletions specification/ai/HealthInsights/HealthInsights.OpenAPI/main.tsp
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import "../HealthInsights.TrialMatcher/route.trialmatcher.tsp";
import "../HealthInsights.OncoPhenotype/route.oncophenotype.tsp";
import "../HealthInsights.RadiologyInsights/route.radiologyinsights.tsp";
import "../HealthInsights.PatientTimeline/route.patienttimeline.tsp";
import "@typespec/rest";
import "@typespec/http";
import "./service.tsp";

// FIXME: This is a workaround. Tracking issue: https://github.com/microsoft/typespec/issues/2826
alias _ForceOrderOfReslutionExtension_ = Fhir.R4.Extension;
alias _ForceOrderOfReslutionCodeableConcept_ = Fhir.R4.CodeableConcept;
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import "./route.patienttimeline.tsp";

import "@typespec/rest";
import "@typespec/http";
import "../HealthInsights.Common/service.tsp";
import "../HealthInsights.OpenAPI/service.tsp";

using Azure.ClientGenerator.Core;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ parameters:
"dependencies":
"additionalDirectories":
- "specification/ai/HealthInsights/HealthInsights.Common/"
- "specification/ai/HealthInsights/HealthInsights.OpenAPI/"
default: ""
"python-sdk-folder":
default: "{project-root}/azure-sdk-for-python/"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import "./route.radiologyinsights.tsp";

import "@typespec/rest";
import "@typespec/http";
import "../HealthInsights.Common/service.tsp";
import "../HealthInsights.OpenAPI/service.tsp";

using Azure.ClientGenerator.Core;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ parameters:
"dependencies":
"additionalDirectories":
- "specification/ai/HealthInsights/HealthInsights.Common/"
- "specification/ai/HealthInsights/HealthInsights.OpenAPI/"
default: ""
"python-sdk-folder":
default: "{project-root}/azure-sdk-for-python/"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import "./route.trialmatcher.tsp";

import "@typespec/rest";
import "@typespec/http";
import "../HealthInsights.Common/service.tsp";
import "../HealthInsights.OpenAPI/service.tsp";

using Azure.ClientGenerator.Core;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ parameters:
"dependencies":
"additionalDirectories":
- "specification/ai/HealthInsights/HealthInsights.Common/"
- "specification/ai/HealthInsights/HealthInsights.OpenAPI/"
default: ""
"python-sdk-folder":
default: "{project-root}/azure-sdk-for-python/"
Expand Down
11 changes: 0 additions & 11 deletions specification/ai/HealthInsights/main.tsp

This file was deleted.