Skip to content

Commit ef103f2

Browse files
committed
fix(ISSUE-810): tests additional and immutable
1 parent 888e8a5 commit ef103f2

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/**
2+
* This file was auto-generated by openapi-typescript.
3+
* Do not make direct changes to the file.
4+
*/
5+
6+
export interface paths {
7+
"/test": {
8+
get: {
9+
responses: {
10+
/** A list of types. */
11+
200: unknown;
12+
};
13+
};
14+
};
15+
}
16+
17+
export interface components {
18+
schemas: {
19+
/** @description Enum with null and nullable */
20+
Example: {
21+
emptyAllOf?: { [key: string]: unknown };
22+
emptyOneOf?: undefined & { [key: string]: unknown };
23+
emptyAnyOf?: { [key: string]: unknown };
24+
} & { [key: string]: unknown };
25+
};
26+
}
27+
28+
export interface operations {}
29+
30+
export interface external {}
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/**
2+
* This file was auto-generated by openapi-typescript.
3+
* Do not make direct changes to the file.
4+
*/
5+
6+
export interface paths {
7+
readonly "/test": {
8+
readonly get: {
9+
readonly responses: {
10+
/** A list of types. */
11+
readonly 200: unknown;
12+
};
13+
};
14+
};
15+
}
16+
17+
export interface components {
18+
readonly schemas: {
19+
/** @description Enum with null and nullable */
20+
readonly Example: {
21+
readonly emptyAllOf?: undefined;
22+
readonly emptyOneOf?: undefined;
23+
readonly emptyAnyOf?: undefined;
24+
};
25+
};
26+
}
27+
28+
export interface operations {}
29+
30+
export interface external {}

0 commit comments

Comments
 (0)