-
Notifications
You must be signed in to change notification settings - Fork 226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Http] expose necessary api for multipart #3676
Merged
timotheeguerin
merged 5 commits into
microsoft:main
from
msyyc:expose-necessary-api-for-httppart
Jul 8, 2024
Merged
[Http] expose necessary api for multipart #3676
timotheeguerin
merged 5 commits into
microsoft:main
from
msyyc:expose-necessary-api-for-httppart
Jul 8, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
msyyc
requested review from
bterlson,
markcowl,
allenjzhang and
timotheeguerin
as code owners
June 27, 2024 10:20
…ose-necessary-api-for-httppart
MaryGao
reviewed
Jun 28, 2024
timotheeguerin
requested changes
Jun 28, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you explain more why this needs to be exposed. There is a reason they are internal, the public info is via the http operation
|
.chronus/changes/expose-necessary-api-for-httppart-2024-5-27-18-23-11.md
Outdated
Show resolved
Hide resolved
timotheeguerin
approved these changes
Jul 1, 2024
…8-23-11.md Co-authored-by: Timothee Guerin <[email protected]>
msyyc
added a commit
to Azure/typespec-azure
that referenced
this pull request
Jul 24, 2024
- fixes part of #960 - Pending on microsoft/typespec#3676 Context: Typespec supports 3 kinds of format to define multipart: 1. common ``` op upload( @Header `content-type`: "multipart/form-data", @Body body: { basic: string, headShots: bytes[], } ): void; ``` 2. advanced model format ``` op upload( @Header `content-type`: "multipart/form-data", @multipartBody body: { fullName: HttpPart<string>, headShots: HttpPart<bytes[]> } ): void; ``` 3. advanced array format ``` op upload( @Header `content-type`: "multipart/form-data", @multipartBody body: [ // single HttpPart<string, #{ name: "fullName" }>, HttpPart<bytes[], #{ name: "headShots" }>, ] ): void; ``` - This PR is implementation for API design #987, mainly for 1 and 2 format. Format 3 will be implemented in another PR.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
TCGC needs these API exposed