Skip to content

Commit

Permalink
fix for CR 2
Browse files Browse the repository at this point in the history
  • Loading branch information
jkralik committed Jul 19, 2024
1 parent 8efbbec commit 4955456
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion grpc-gateway/pb/hubConfiguration.pb.go

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

2 changes: 1 addition & 1 deletion m2m-oauth-server/pb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
| client_secret | [string](#string) | | Client Secret |
| audience | [string](#string) | repeated | Requested token Audience |
| scope | [string](#string) | repeated | Requested token scopes |
| expiration | [int64](#int64) | | Requested token expiration in Unix timestamp seconds |
| expiration | [int64](#int64) | | The requested expiration time in unit timestamp seconds from the client. If not provided, the token will use the maximum allowed by the client, or if it exceeds the maximum allowed, an error will occur. |
| client_assertion_type | [string](#string) | | Client assertion type |
| client_assertion | [string](#string) | | Client assertion |
| token_name | [string](#string) | | Token name |
Expand Down
2 changes: 1 addition & 1 deletion m2m-oauth-server/pb/doc.html
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ <h3 id="m2moauthserver.pb.CreateTokenRequest">CreateTokenRequest</h3>
<td>expiration</td>
<td><a href="#int64">int64</a></td>
<td></td>
<td><p>Requested token expiration in Unix timestamp seconds </p></td>
<td><p>The requested expiration time in unit timestamp seconds from the client. If not provided, the token will use the maximum allowed by the client, or if it exceeds the maximum allowed, an error will occur. </p></td>
</tr>

<tr>
Expand Down
2 changes: 1 addition & 1 deletion m2m-oauth-server/pb/service.pb.go

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

2 changes: 1 addition & 1 deletion m2m-oauth-server/pb/service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ message CreateTokenRequest {
repeated string audience = 3;
// Requested token scopes
repeated string scope = 4;
// Requested token expiration in Unix timestamp seconds
// The requested expiration time in unit timestamp seconds from the client. If not provided, the token will use the maximum allowed by the client, or if it exceeds the maximum allowed, an error will occur.
int64 expiration = 5;
// Client assertion type
string client_assertion_type = 6;
Expand Down
2 changes: 1 addition & 1 deletion m2m-oauth-server/pb/service.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
"expiration": {
"type": "string",
"format": "int64",
"title": "Requested token expiration in Unix timestamp seconds"
"description": "The requested expiration time in unit timestamp seconds from the client. If not provided, the token will use the maximum allowed by the client, or if it exceeds the maximum allowed, an error will occur."
},
"clientAssertionType": {
"type": "string",
Expand Down
2 changes: 1 addition & 1 deletion m2m-oauth-server/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ components:
items:
type: string
expiration:
title: Requested token expiration in Unix timestamp seconds
title: The requested expiration time in unit timestamp seconds from the client. If not provided, the token will use the maximum allowed by the client, or if it exceeds the maximum allowed, an error will occur.
type: string
format: int64
clientAssertionType:
Expand Down
12 changes: 6 additions & 6 deletions snippet-service/pb/service.pb.go

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

0 comments on commit 4955456

Please sign in to comment.