Commit 9b0ca06 1 parent 3d15864 commit 9b0ca06 Copy full SHA for 9b0ca06
File tree 3 files changed +5
-5
lines changed
modules/openapi-generator/src/main/resources/htmlDocs2
samples/documentation/html2
3 files changed +5
-5
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 507
507
</tr >
508
508
{ {#headers} }
509
509
<tr >
510
- <td >{ {name } }</td >
510
+ <td >{ {baseName } }</td >
511
511
<td >{ {#datatype} }{ {dataType} }{ {/datatype} }</td >
512
512
<td >{ {dataFormat} }</td >
513
513
<td >{ {description} }</td >
Original file line number Diff line number Diff line change @@ -9591,19 +9591,19 @@ <h3 id="examples-User-loginUser-title-200"></h3>
9591
9591
<th>Description</th>
9592
9592
</tr>
9593
9593
<tr>
9594
- <td>SetDashCookie </td>
9594
+ <td>Set-Cookie </td>
9595
9595
<td>String</td>
9596
9596
<td></td>
9597
9597
<td>Cookie authentication key for use with the `api_key` apiKey authentication.</td>
9598
9598
</tr>
9599
9599
<tr>
9600
- <td>XDashRateDashLimit </td>
9600
+ <td>X-Rate-Limit </td>
9601
9601
<td>Integer</td>
9602
9602
<td>int32</td>
9603
9603
<td>calls per hour allowed by the user</td>
9604
9604
</tr>
9605
9605
<tr>
9606
- <td>XDashExpiresDashAfter </td>
9606
+ <td>X-Expires-After </td>
9607
9607
<td>Date</td>
9608
9608
<td>date-time</td>
9609
9609
<td>date in UTC when token expires</td>
@@ -11660,7 +11660,7 @@ <h3 id="examples-User-updateUser-title-404"></h3>
11660
11660
// Determine if a schema is an array
11661
11661
this.isArray = !this.isAny && this.schema && this.schema.type === 'array';
11662
11662
11663
- this.isObject = this.schema && (this.schema.type === 'object' || this.schema.properties || this.schema.anyOf || this.schema.oneof || this.schema.allOf);
11663
+ this.isObject = this.schema && (this.schema.type === 'object' || this.schema.properties || this.schema.anyOf || this.schema.oneOf || this.schema.allOf);
11664
11664
11665
11665
// Determine if a schema is a primitive
11666
11666
this.isPrimitive = !this.isAny && !this.isArray && !this.isObject;
You can’t perform that action at this time.
0 commit comments