Skip to content

Commit ab65d6f

Browse files
committed
chore: regenerate
- generate-samples.sh - export_docs_generators.sh
1 parent 83fd28a commit ab65d6f

File tree

268 files changed

+29629
-140
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

268 files changed

+29629
-140
lines changed

samples/client/others/typescript-fetch/self-import-issue/.openapi-generator/FILES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
docs/AbstractUserDto.md
2+
docs/BranchDto.md
3+
docs/InternalAuthenticatedUserDto.md
4+
docs/RemoteAuthenticatedUserDto.md
15
index.ts
26
models/AbstractUserDto.ts
37
models/BranchDto.ts
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
2+
# AbstractUserDto
3+
4+
5+
## Properties
6+
7+
Name | Type
8+
------------ | -------------
9+
`username` | string
10+
`branch` | [BranchDto](BranchDto.md)
11+
`type` | string
12+
13+
## Example
14+
15+
```typescript
16+
import type { AbstractUserDto } from ''
17+
18+
// TODO: Update the object below with actual values
19+
const example = {
20+
"username": null,
21+
"branch": null,
22+
"type": null,
23+
} satisfies AbstractUserDto
24+
25+
console.log(example)
26+
27+
// Convert the instance to a JSON string
28+
const exampleJSON: string = JSON.stringify(example)
29+
console.log(exampleJSON)
30+
31+
// Parse the JSON string back to an object
32+
const exampleParsed = JSON.parse(exampleJSON) as AbstractUserDto
33+
console.log(exampleParsed)
34+
```
35+
36+
[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
37+
38+
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
2+
# BranchDto
3+
4+
5+
## Properties
6+
7+
Name | Type
8+
------------ | -------------
9+
`name` | string
10+
11+
## Example
12+
13+
```typescript
14+
import type { BranchDto } from ''
15+
16+
// TODO: Update the object below with actual values
17+
const example = {
18+
"name": null,
19+
} satisfies BranchDto
20+
21+
console.log(example)
22+
23+
// Convert the instance to a JSON string
24+
const exampleJSON: string = JSON.stringify(example)
25+
console.log(exampleJSON)
26+
27+
// Parse the JSON string back to an object
28+
const exampleParsed = JSON.parse(exampleJSON) as BranchDto
29+
console.log(exampleParsed)
30+
```
31+
32+
[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
33+
34+
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
# InternalAuthenticatedUserDto
3+
4+
5+
## Properties
6+
7+
Name | Type
8+
------------ | -------------
9+
10+
## Example
11+
12+
```typescript
13+
import type { InternalAuthenticatedUserDto } from ''
14+
15+
// TODO: Update the object below with actual values
16+
const example = {
17+
} satisfies InternalAuthenticatedUserDto
18+
19+
console.log(example)
20+
21+
// Convert the instance to a JSON string
22+
const exampleJSON: string = JSON.stringify(example)
23+
console.log(exampleJSON)
24+
25+
// Parse the JSON string back to an object
26+
const exampleParsed = JSON.parse(exampleJSON) as InternalAuthenticatedUserDto
27+
console.log(exampleParsed)
28+
```
29+
30+
[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
31+
32+
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
# RemoteAuthenticatedUserDto
3+
4+
5+
## Properties
6+
7+
Name | Type
8+
------------ | -------------
9+
10+
## Example
11+
12+
```typescript
13+
import type { RemoteAuthenticatedUserDto } from ''
14+
15+
// TODO: Update the object below with actual values
16+
const example = {
17+
} satisfies RemoteAuthenticatedUserDto
18+
19+
console.log(example)
20+
21+
// Convert the instance to a JSON string
22+
const exampleJSON: string = JSON.stringify(example)
23+
console.log(exampleJSON)
24+
25+
// Parse the JSON string back to an object
26+
const exampleParsed = JSON.parse(exampleJSON) as RemoteAuthenticatedUserDto
27+
console.log(exampleParsed)
28+
```
29+
30+
[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
31+
32+

samples/client/petstore/typescript-fetch/builds/allOf-nullable/.openapi-generator/FILES

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
apis/DefaultApi.ts
22
apis/index.ts
3+
docs/Club.md
4+
docs/DefaultApi.md
5+
docs/Owner.md
36
index.ts
47
models/Club.ts
58
models/Owner.ts
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
2+
# Club
3+
4+
5+
## Properties
6+
7+
Name | Type
8+
------------ | -------------
9+
`owner` | [Owner](Owner.md)
10+
11+
## Example
12+
13+
```typescript
14+
import type { Club } from ''
15+
16+
// TODO: Update the object below with actual values
17+
const example = {
18+
"owner": null,
19+
} satisfies Club
20+
21+
console.log(example)
22+
23+
// Convert the instance to a JSON string
24+
const exampleJSON: string = JSON.stringify(example)
25+
console.log(exampleJSON)
26+
27+
// Parse the JSON string back to an object
28+
const exampleParsed = JSON.parse(exampleJSON) as Club
29+
console.log(exampleParsed)
30+
```
31+
32+
[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
33+
34+
Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# DefaultApi
2+
3+
All URIs are relative to *http://api.example.xyz/v1*
4+
5+
| Method | HTTP request | Description |
6+
|------------- | ------------- | -------------|
7+
| [**list**](DefaultApi.md#list) | **GET** /person/display/{personId} | |
8+
9+
10+
11+
## list
12+
13+
> Club list(personId)
14+
15+
16+
17+
### Example
18+
19+
```ts
20+
import {
21+
Configuration,
22+
DefaultApi,
23+
} from '';
24+
import type { ListRequest } from '';
25+
26+
async function example() {
27+
console.log("🚀 Testing SDK...");
28+
const api = new DefaultApi();
29+
30+
const body = {
31+
// string | The id of the person to retrieve
32+
personId: personId_example,
33+
} satisfies ListRequest;
34+
35+
try {
36+
const data = await api.list(body);
37+
console.log(data);
38+
} catch (error) {
39+
console.error(error);
40+
}
41+
}
42+
43+
// Run the test
44+
example().catch(console.error);
45+
```
46+
47+
### Parameters
48+
49+
50+
| Name | Type | Description | Notes |
51+
|------------- | ------------- | ------------- | -------------|
52+
| **personId** | `string` | The id of the person to retrieve | [Defaults to `undefined`] |
53+
54+
### Return type
55+
56+
[**Club**](Club.md)
57+
58+
### Authorization
59+
60+
No authorization required
61+
62+
### HTTP request headers
63+
64+
- **Content-Type**: Not defined
65+
- **Accept**: `application/json`
66+
67+
68+
### HTTP response details
69+
| Status code | Description | Response headers |
70+
|-------------|-------------|------------------|
71+
| **200** | OK | - |
72+
73+
[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
74+
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
2+
# Owner
3+
4+
5+
## Properties
6+
7+
Name | Type
8+
------------ | -------------
9+
`name` | string
10+
11+
## Example
12+
13+
```typescript
14+
import type { Owner } from ''
15+
16+
// TODO: Update the object below with actual values
17+
const example = {
18+
"name": null,
19+
} satisfies Owner
20+
21+
console.log(example)
22+
23+
// Convert the instance to a JSON string
24+
const exampleJSON: string = JSON.stringify(example)
25+
console.log(exampleJSON)
26+
27+
// Parse the JSON string back to an object
28+
const exampleParsed = JSON.parse(exampleJSON) as Owner
29+
console.log(exampleParsed)
30+
```
31+
32+
[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
33+
34+

samples/client/petstore/typescript-fetch/builds/allOf-readonly/.openapi-generator/FILES

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
apis/DefaultApi.ts
22
apis/index.ts
3+
docs/Club.md
4+
docs/DefaultApi.md
5+
docs/Owner.md
36
index.ts
47
models/Club.ts
58
models/Owner.ts

0 commit comments

Comments
 (0)