Skip to content

Commit 5e2a025

Browse files
committed
build for 7.1.1
1 parent 09d9bba commit 5e2a025

13 files changed

+595
-1966
lines changed

dist/index.html

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,18 @@
1919
./specs/petstore_anyof.yaml <<< contains complex one-of with inline primitives and recursive objects
2020
./specs/oneof1.yaml <<< nested oneof
2121
22-
22+
-->
2323
<rapi-doc
2424
id = "thedoc"
25-
spec-url = "./specs/basic.json"
25+
spec-url = "https://petstore.swagger.io/v2/swagger.json"
2626
theme = "dark"
27-
render-style = "read"
27+
render-style = "view"
2828
schema-style = 'tree'
29-
api-key-name = "my-key"
30-
api-key-location = "header"
31-
api-key-value = "my-password"
32-
server-url="http://192.168.7.32:8080"
29+
sort-endpoints-by = "method"
30+
response-area-height = "900px"
3331
> </rapi-doc>
34-
-->
3532

36-
<rapi-doc spec-url="./specs/file-upload.yaml" render-style='read' allow-server-selection="false" allow-authentication="false"> </rapi-doc>
33+
3734

3835
<!--
3936
<rapi-doc

dist/index.html.gz

-75 Bytes
Binary file not shown.

dist/rapidoc-min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rapidoc-min.js.gz

503 Bytes
Binary file not shown.

dist/rapidoc-min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rapidoc-min.js.map.gz

-1 Bytes
Binary file not shown.

dist/report.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

docs/rapidoc-min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/specs/temp.yaml

Lines changed: 17 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,81 +1,32 @@
1-
openapi: 3.0.0
1+
openapi: "3.0.2"
22
info:
3-
description: Nested examples
4-
version: 1.0.0
5-
title: Nested examples
6-
tags:
7-
- name: bugreport
3+
title: Recursive
4+
version: 0.0.1
85

96
paths:
10-
"/this/isBroken":
7+
/name:
118
get:
12-
operationId: thisIsBrokenGet
13-
tags:
14-
- bugreport
15-
summary: thisIsBroken example
169
responses:
17-
200:
18-
description: successful operation
10+
'200':
11+
description: OK
1912
content:
2013
application/json:
21-
schema:
22-
$ref: "#/components/schemas/BrokenClass"
23-
"/this/isFine":
24-
get:
25-
operationId: thisIsFineGet
26-
tags:
27-
- bugreport
28-
summary: thisIsFine example
29-
responses:
30-
200:
31-
description: successful operation
32-
content:
33-
application/json:
34-
schema:
35-
$ref: "#/components/schemas/FineClass"
36-
3714
components:
3815
schemas:
39-
BrokenNestedObject:
40-
type: object
41-
properties:
42-
first:
43-
type: integer
44-
format: int32
45-
second:
46-
type: integer
47-
format: int32
48-
required:
49-
- first
50-
- second
51-
example:
52-
first: 123
53-
second: 456
54-
BrokenClass:
16+
Article:
5517
type: object
5618
properties:
57-
brokenNestedObject:
58-
$ref: '#/components/schemas/BrokenNestedObject'
59-
required:
60-
- brokenNestedObject
61-
FineNestedObject:
19+
similar:
20+
anyOf:
21+
- $ref: '#/components/schemas/foo'
22+
- $ref: '#/components/schemas/bar'
23+
foo:
6224
type: object
6325
properties:
64-
first:
65-
type: integer
66-
format: int32
67-
example: 123
68-
second:
69-
type: integer
70-
format: int32
71-
example: 456
72-
required:
73-
- first
74-
- second
75-
FineClass:
26+
name:
27+
type: string
28+
bar:
7629
type: object
7730
properties:
78-
fineNestedObject:
79-
$ref: '#/components/schemas/FineNestedObject'
80-
required:
81-
- fineNestedObject
31+
location:
32+
type: string

docs/specs/temp1.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
properties:
2+
id:
3+
type: number
4+
required:
5+
- id

0 commit comments

Comments
 (0)