@@ -8,42 +8,42 @@ export type Changelog = FromSchema<typeof schemas.Changelog>;
8
8
export type CondensedProjectData = FromSchema < typeof schemas . CondensedProjectData > ;
9
9
export type CreateCategoryMetadataParam = FromSchema < typeof schemas . CreateCategory . metadata > ;
10
10
export type CreateCustomPageResponse401 = FromSchema <
11
- typeof schemas . CreateCustomPage . response [ '401' ]
11
+ ( typeof schemas . CreateCustomPage . response ) [ '401' ]
12
12
> ;
13
13
export type CreateCustomPageResponse403 = FromSchema <
14
- typeof schemas . CreateCustomPage . response [ '403' ]
14
+ ( typeof schemas . CreateCustomPage . response ) [ '403' ]
15
15
> ;
16
16
export type CreateDocMetadataParam = FromSchema < typeof schemas . CreateDoc . metadata > ;
17
- export type CreateDocResponse401 = FromSchema < typeof schemas . CreateDoc . response [ '401' ] > ;
18
- export type CreateDocResponse403 = FromSchema < typeof schemas . CreateDoc . response [ '403' ] > ;
19
- export type CreateVersionResponse400 = FromSchema < typeof schemas . CreateVersion . response [ '400' ] > ;
20
- export type CreateVersionResponse401 = FromSchema < typeof schemas . CreateVersion . response [ '401' ] > ;
21
- export type CreateVersionResponse403 = FromSchema < typeof schemas . CreateVersion . response [ '403' ] > ;
17
+ export type CreateDocResponse401 = FromSchema < ( typeof schemas . CreateDoc . response ) [ '401' ] > ;
18
+ export type CreateDocResponse403 = FromSchema < ( typeof schemas . CreateDoc . response ) [ '403' ] > ;
19
+ export type CreateVersionResponse400 = FromSchema < ( typeof schemas . CreateVersion . response ) [ '400' ] > ;
20
+ export type CreateVersionResponse401 = FromSchema < ( typeof schemas . CreateVersion . response ) [ '401' ] > ;
21
+ export type CreateVersionResponse403 = FromSchema < ( typeof schemas . CreateVersion . response ) [ '403' ] > ;
22
22
export type CustomPage = FromSchema < typeof schemas . CustomPage > ;
23
23
export type DeleteApiSpecificationMetadataParam = FromSchema <
24
24
typeof schemas . DeleteApiSpecification . metadata
25
25
> ;
26
26
export type DeleteApiSpecificationResponse401 = FromSchema <
27
- typeof schemas . DeleteApiSpecification . response [ '401' ]
27
+ ( typeof schemas . DeleteApiSpecification . response ) [ '401' ]
28
28
> ;
29
29
export type DeleteApiSpecificationResponse403 = FromSchema <
30
- typeof schemas . DeleteApiSpecification . response [ '403' ]
30
+ ( typeof schemas . DeleteApiSpecification . response ) [ '403' ]
31
31
> ;
32
32
export type DeleteCategoryMetadataParam = FromSchema < typeof schemas . DeleteCategory . metadata > ;
33
33
export type DeleteChangelogMetadataParam = FromSchema < typeof schemas . DeleteChangelog . metadata > ;
34
34
export type DeleteCustomPageMetadataParam = FromSchema < typeof schemas . DeleteCustomPage . metadata > ;
35
35
export type DeleteCustomPageResponse401 = FromSchema <
36
- typeof schemas . DeleteCustomPage . response [ '401' ]
36
+ ( typeof schemas . DeleteCustomPage . response ) [ '401' ]
37
37
> ;
38
38
export type DeleteCustomPageResponse403 = FromSchema <
39
- typeof schemas . DeleteCustomPage . response [ '403' ]
39
+ ( typeof schemas . DeleteCustomPage . response ) [ '403' ]
40
40
> ;
41
41
export type DeleteDocMetadataParam = FromSchema < typeof schemas . DeleteDoc . metadata > ;
42
- export type DeleteDocResponse401 = FromSchema < typeof schemas . DeleteDoc . response [ '401' ] > ;
43
- export type DeleteDocResponse403 = FromSchema < typeof schemas . DeleteDoc . response [ '403' ] > ;
42
+ export type DeleteDocResponse401 = FromSchema < ( typeof schemas . DeleteDoc . response ) [ '401' ] > ;
43
+ export type DeleteDocResponse403 = FromSchema < ( typeof schemas . DeleteDoc . response ) [ '403' ] > ;
44
44
export type DeleteVersionMetadataParam = FromSchema < typeof schemas . DeleteVersion . metadata > ;
45
- export type DeleteVersionResponse401 = FromSchema < typeof schemas . DeleteVersion . response [ '401' ] > ;
46
- export type DeleteVersionResponse403 = FromSchema < typeof schemas . DeleteVersion . response [ '403' ] > ;
45
+ export type DeleteVersionResponse401 = FromSchema < ( typeof schemas . DeleteVersion . response ) [ '401' ] > ;
46
+ export type DeleteVersionResponse403 = FromSchema < ( typeof schemas . DeleteVersion . response ) [ '403' ] > ;
47
47
export type Doc = FromSchema < typeof schemas . Doc > ;
48
48
export type ErrorApikeyEmpty = FromSchema < typeof schemas . ErrorApikeyEmpty > ;
49
49
export type ErrorApikeyMismatch = FromSchema < typeof schemas . ErrorApikeyMismatch > ;
@@ -83,100 +83,100 @@ export type ErrorVersionForkNotfound = FromSchema<typeof schemas.ErrorVersionFor
83
83
export type ErrorVersionInvalid = FromSchema < typeof schemas . ErrorVersionInvalid > ;
84
84
export type ErrorVersionNotfound = FromSchema < typeof schemas . ErrorVersionNotfound > ;
85
85
export type GetApiRegistryMetadataParam = FromSchema < typeof schemas . GetApiRegistry . metadata > ;
86
- export type GetApiRegistryResponse200 = FromSchema < typeof schemas . GetApiRegistry . response [ '200' ] > ;
86
+ export type GetApiRegistryResponse200 = FromSchema < ( typeof schemas . GetApiRegistry . response ) [ '200' ] > ;
87
87
export type GetApiSpecificationMetadataParam = FromSchema <
88
88
typeof schemas . GetApiSpecification . metadata
89
89
> ;
90
90
export type GetApiSpecificationResponse200 = FromSchema <
91
- typeof schemas . GetApiSpecification . response [ '200' ]
91
+ ( typeof schemas . GetApiSpecification . response ) [ '200' ]
92
92
> ;
93
93
export type GetApiSpecificationResponse401 = FromSchema <
94
- typeof schemas . GetApiSpecification . response [ '401' ]
94
+ ( typeof schemas . GetApiSpecification . response ) [ '401' ]
95
95
> ;
96
96
export type GetApiSpecificationResponse403 = FromSchema <
97
- typeof schemas . GetApiSpecification . response [ '403' ]
97
+ ( typeof schemas . GetApiSpecification . response ) [ '403' ]
98
98
> ;
99
99
export type GetCategoriesMetadataParam = FromSchema < typeof schemas . GetCategories . metadata > ;
100
- export type GetCategoriesResponse200 = FromSchema < typeof schemas . GetCategories . response [ '200' ] > ;
100
+ export type GetCategoriesResponse200 = FromSchema < ( typeof schemas . GetCategories . response ) [ '200' ] > ;
101
101
export type GetCategoryDocsMetadataParam = FromSchema < typeof schemas . GetCategoryDocs . metadata > ;
102
102
export type GetCategoryMetadataParam = FromSchema < typeof schemas . GetCategory . metadata > ;
103
103
export type GetChangelogMetadataParam = FromSchema < typeof schemas . GetChangelog . metadata > ;
104
104
export type GetChangelogsMetadataParam = FromSchema < typeof schemas . GetChangelogs . metadata > ;
105
- export type GetChangelogsResponse200 = FromSchema < typeof schemas . GetChangelogs . response [ '200' ] > ;
105
+ export type GetChangelogsResponse200 = FromSchema < ( typeof schemas . GetChangelogs . response ) [ '200' ] > ;
106
106
export type GetCustomPageMetadataParam = FromSchema < typeof schemas . GetCustomPage . metadata > ;
107
- export type GetCustomPageResponse401 = FromSchema < typeof schemas . GetCustomPage . response [ '401' ] > ;
108
- export type GetCustomPageResponse403 = FromSchema < typeof schemas . GetCustomPage . response [ '403' ] > ;
107
+ export type GetCustomPageResponse401 = FromSchema < ( typeof schemas . GetCustomPage . response ) [ '401' ] > ;
108
+ export type GetCustomPageResponse403 = FromSchema < ( typeof schemas . GetCustomPage . response ) [ '403' ] > ;
109
109
export type GetCustomPagesMetadataParam = FromSchema < typeof schemas . GetCustomPages . metadata > ;
110
- export type GetCustomPagesResponse200 = FromSchema < typeof schemas . GetCustomPages . response [ '200' ] > ;
111
- export type GetCustomPagesResponse401 = FromSchema < typeof schemas . GetCustomPages . response [ '401' ] > ;
112
- export type GetCustomPagesResponse403 = FromSchema < typeof schemas . GetCustomPages . response [ '403' ] > ;
110
+ export type GetCustomPagesResponse200 = FromSchema < ( typeof schemas . GetCustomPages . response ) [ '200' ] > ;
111
+ export type GetCustomPagesResponse401 = FromSchema < ( typeof schemas . GetCustomPages . response ) [ '401' ] > ;
112
+ export type GetCustomPagesResponse403 = FromSchema < ( typeof schemas . GetCustomPages . response ) [ '403' ] > ;
113
113
export type GetDocMetadataParam = FromSchema < typeof schemas . GetDoc . metadata > ;
114
- export type GetDocResponse401 = FromSchema < typeof schemas . GetDoc . response [ '401' ] > ;
115
- export type GetDocResponse403 = FromSchema < typeof schemas . GetDoc . response [ '403' ] > ;
116
- export type GetErrorsResponse401 = FromSchema < typeof schemas . GetErrors . response [ '401' ] > ;
117
- export type GetErrorsResponse403 = FromSchema < typeof schemas . GetErrors . response [ '403' ] > ;
118
- export type GetOpenRolesResponse200 = FromSchema < typeof schemas . GetOpenRoles . response [ '200' ] > ;
114
+ export type GetDocResponse401 = FromSchema < ( typeof schemas . GetDoc . response ) [ '401' ] > ;
115
+ export type GetDocResponse403 = FromSchema < ( typeof schemas . GetDoc . response ) [ '403' ] > ;
116
+ export type GetErrorsResponse401 = FromSchema < ( typeof schemas . GetErrors . response ) [ '401' ] > ;
117
+ export type GetErrorsResponse403 = FromSchema < ( typeof schemas . GetErrors . response ) [ '403' ] > ;
118
+ export type GetOpenRolesResponse200 = FromSchema < ( typeof schemas . GetOpenRoles . response ) [ '200' ] > ;
119
119
export type GetProductionDocMetadataParam = FromSchema < typeof schemas . GetProductionDoc . metadata > ;
120
120
export type GetProductionDocResponse401 = FromSchema <
121
- typeof schemas . GetProductionDoc . response [ '401' ]
121
+ ( typeof schemas . GetProductionDoc . response ) [ '401' ]
122
122
> ;
123
123
export type GetProductionDocResponse403 = FromSchema <
124
- typeof schemas . GetProductionDoc . response [ '403' ]
124
+ ( typeof schemas . GetProductionDoc . response ) [ '403' ]
125
125
> ;
126
- export type GetProjectResponse401 = FromSchema < typeof schemas . GetProject . response [ '401' ] > ;
127
- export type GetProjectResponse403 = FromSchema < typeof schemas . GetProject . response [ '403' ] > ;
126
+ export type GetProjectResponse401 = FromSchema < ( typeof schemas . GetProject . response ) [ '401' ] > ;
127
+ export type GetProjectResponse403 = FromSchema < ( typeof schemas . GetProject . response ) [ '403' ] > ;
128
128
export type GetVersionMetadataParam = FromSchema < typeof schemas . GetVersion . metadata > ;
129
- export type GetVersionResponse401 = FromSchema < typeof schemas . GetVersion . response [ '401' ] > ;
130
- export type GetVersionResponse403 = FromSchema < typeof schemas . GetVersion . response [ '403' ] > ;
131
- export type GetVersionsResponse401 = FromSchema < typeof schemas . GetVersions . response [ '401' ] > ;
132
- export type GetVersionsResponse403 = FromSchema < typeof schemas . GetVersions . response [ '403' ] > ;
129
+ export type GetVersionResponse401 = FromSchema < ( typeof schemas . GetVersion . response ) [ '401' ] > ;
130
+ export type GetVersionResponse403 = FromSchema < ( typeof schemas . GetVersion . response ) [ '403' ] > ;
131
+ export type GetVersionsResponse401 = FromSchema < ( typeof schemas . GetVersions . response ) [ '401' ] > ;
132
+ export type GetVersionsResponse403 = FromSchema < ( typeof schemas . GetVersions . response ) [ '403' ] > ;
133
133
export type JobOpening = FromSchema < typeof schemas . JobOpening > ;
134
134
export type SearchDocsMetadataParam = FromSchema < typeof schemas . SearchDocs . metadata > ;
135
- export type SearchDocsResponse401 = FromSchema < typeof schemas . SearchDocs . response [ '401' ] > ;
136
- export type SearchDocsResponse403 = FromSchema < typeof schemas . SearchDocs . response [ '403' ] > ;
135
+ export type SearchDocsResponse401 = FromSchema < ( typeof schemas . SearchDocs . response ) [ '401' ] > ;
136
+ export type SearchDocsResponse403 = FromSchema < ( typeof schemas . SearchDocs . response ) [ '403' ] > ;
137
137
export type UpdateApiSpecificationBodyParam = FromSchema <
138
138
typeof schemas . UpdateApiSpecification . body
139
139
> ;
140
140
export type UpdateApiSpecificationMetadataParam = FromSchema <
141
141
typeof schemas . UpdateApiSpecification . metadata
142
142
> ;
143
143
export type UpdateApiSpecificationResponse400 = FromSchema <
144
- typeof schemas . UpdateApiSpecification . response [ '400' ]
144
+ ( typeof schemas . UpdateApiSpecification . response ) [ '400' ]
145
145
> ;
146
146
export type UpdateApiSpecificationResponse401 = FromSchema <
147
- typeof schemas . UpdateApiSpecification . response [ '401' ]
147
+ ( typeof schemas . UpdateApiSpecification . response ) [ '401' ]
148
148
> ;
149
149
export type UpdateApiSpecificationResponse403 = FromSchema <
150
- typeof schemas . UpdateApiSpecification . response [ '403' ]
150
+ ( typeof schemas . UpdateApiSpecification . response ) [ '403' ]
151
151
> ;
152
152
export type UpdateCategoryMetadataParam = FromSchema < typeof schemas . UpdateCategory . metadata > ;
153
153
export type UpdateChangelogMetadataParam = FromSchema < typeof schemas . UpdateChangelog . metadata > ;
154
154
export type UpdateCustomPageMetadataParam = FromSchema < typeof schemas . UpdateCustomPage . metadata > ;
155
155
export type UpdateCustomPageResponse401 = FromSchema <
156
- typeof schemas . UpdateCustomPage . response [ '401' ]
156
+ ( typeof schemas . UpdateCustomPage . response ) [ '401' ]
157
157
> ;
158
158
export type UpdateCustomPageResponse403 = FromSchema <
159
- typeof schemas . UpdateCustomPage . response [ '403' ]
159
+ ( typeof schemas . UpdateCustomPage . response ) [ '403' ]
160
160
> ;
161
161
export type UpdateDocMetadataParam = FromSchema < typeof schemas . UpdateDoc . metadata > ;
162
- export type UpdateDocResponse401 = FromSchema < typeof schemas . UpdateDoc . response [ '401' ] > ;
163
- export type UpdateDocResponse403 = FromSchema < typeof schemas . UpdateDoc . response [ '403' ] > ;
162
+ export type UpdateDocResponse401 = FromSchema < ( typeof schemas . UpdateDoc . response ) [ '401' ] > ;
163
+ export type UpdateDocResponse403 = FromSchema < ( typeof schemas . UpdateDoc . response ) [ '403' ] > ;
164
164
export type UpdateVersionMetadataParam = FromSchema < typeof schemas . UpdateVersion . metadata > ;
165
- export type UpdateVersionResponse401 = FromSchema < typeof schemas . UpdateVersion . response [ '401' ] > ;
166
- export type UpdateVersionResponse403 = FromSchema < typeof schemas . UpdateVersion . response [ '403' ] > ;
165
+ export type UpdateVersionResponse401 = FromSchema < ( typeof schemas . UpdateVersion . response ) [ '401' ] > ;
166
+ export type UpdateVersionResponse403 = FromSchema < ( typeof schemas . UpdateVersion . response ) [ '403' ] > ;
167
167
export type UploadApiSpecificationBodyParam = FromSchema <
168
168
typeof schemas . UploadApiSpecification . body
169
169
> ;
170
170
export type UploadApiSpecificationMetadataParam = FromSchema <
171
171
typeof schemas . UploadApiSpecification . metadata
172
172
> ;
173
173
export type UploadApiSpecificationResponse400 = FromSchema <
174
- typeof schemas . UploadApiSpecification . response [ '400' ]
174
+ ( typeof schemas . UploadApiSpecification . response ) [ '400' ]
175
175
> ;
176
176
export type UploadApiSpecificationResponse401 = FromSchema <
177
- typeof schemas . UploadApiSpecification . response [ '401' ]
177
+ ( typeof schemas . UploadApiSpecification . response ) [ '401' ]
178
178
> ;
179
179
export type UploadApiSpecificationResponse403 = FromSchema <
180
- typeof schemas . UploadApiSpecification . response [ '403' ]
180
+ ( typeof schemas . UploadApiSpecification . response ) [ '403' ]
181
181
> ;
182
182
export type Version = FromSchema < typeof schemas . Version > ;
0 commit comments