@@ -31,10 +31,10 @@ const arazzo = async (params) => {
3131 * Converteer OpenAPI 3.0/3.1
3232 * Zet OpenAPI 3.0 om naar 3.1 of andersom. Body: { oasUrl } of { oasBody } (stringified JSON of YAML).
3333 *
34- * convertOASInput ConvertOASInput (optional)
34+ * oASInput OASInput (optional)
3535 * no response value expected for this operation
3636 */
37- // const convertOAS = async ({ convertOASInput }) => {
37+ // const convertOAS = async ({ oASInput }) => {
3838const convertOAS = async ( params ) => {
3939 try {
4040 const mockResult = await Service . applyMock ( 'ToolsService' , 'convertOAS' , params ) ;
@@ -57,10 +57,10 @@ const convertOAS = async (params) => {
5757 * Maak Bruno-collectie (POST)
5858 * Converteert OpenAPI naar Bruno ZIP. Body: { oasUrl } of { oasBody } (stringified JSON of YAML).
5959 *
60- * createBrunoCollectionInput CreateBrunoCollectionInput (optional)
60+ * oASInput OASInput (optional)
6161 * no response value expected for this operation
6262 */
63- // const createBrunoCollection = async ({ createBrunoCollectionInput }) => {
63+ // const createBrunoCollection = async ({ oASInput }) => {
6464const createBrunoCollection = async ( params ) => {
6565 try {
6666 const mockResult = await Service . applyMock ( 'ToolsService' , 'createBrunoCollection' , params ) ;
@@ -83,10 +83,10 @@ const createBrunoCollection = async (params) => {
8383 * Maak Postman-collectie (POST)
8484 * Converteert OpenAPI naar Postman Collection JSON. Body: { oasUrl } of { oasBody } (stringified JSON of YAML).
8585 *
86- * createPostmanCollectionInput CreatePostmanCollectionInput (optional)
86+ * oASInput OASInput (optional)
8787 * no response value expected for this operation
8888 */
89- // const createPostmanCollection = async ({ createPostmanCollectionInput }) => {
89+ // const createPostmanCollection = async ({ oASInput }) => {
9090const createPostmanCollection = async ( params ) => {
9191 try {
9292 const mockResult = await Service . applyMock ( 'ToolsService' , 'createPostmanCollection' , params ) ;
@@ -109,10 +109,10 @@ const createPostmanCollection = async (params) => {
109109 * Dereference OpenAPI
110110 * Haalt externe $ref verwijzingen op en levert één compleet OpenAPI document terug. Body: { oasUrl } of { oasBody }.
111111 *
112- * dereferenceOASInput DereferenceOASInput (optional)
112+ * oASInput OASInput (optional)
113113 * no response value expected for this operation
114114 */
115- // const dereferenceOAS = async ({ dereferenceOASInput }) => {
115+ // const dereferenceOAS = async ({ oASInput }) => {
116116const dereferenceOAS = async ( params ) => {
117117 try {
118118 const mockResult = await Service . applyMock ( 'ToolsService' , 'dereferenceOAS' , params ) ;
@@ -135,10 +135,10 @@ const dereferenceOAS = async (params) => {
135135 * Generate OpenAPI
136136 * Zet OpenAPI 3.0 om naar 3.1 of andersom. Body: { oasUrl } of { oasBody } (stringified JSON of YAML).
137137 *
138- * generateOASInput GenerateOASInput (optional)
138+ * oASInput OASInput (optional)
139139 * no response value expected for this operation
140140 */
141- // const generateOAS = async ({ generateOASInput }) => {
141+ // const generateOAS = async ({ oASInput }) => {
142142const generateOAS = async ( params ) => {
143143 try {
144144 const mockResult = await Service . applyMock ( 'ToolsService' , 'generateOAS' , params ) ;
@@ -187,10 +187,10 @@ const untrustClient = async (params) => {
187187 * Validate OpenAPI (POST)
188188 * Valideert een OpenAPI specificatie met de DON ADR ruleset. Body: { oasUrl } of { oasBody } (stringified JSON of YAML).
189189 *
190- * validatorOpenAPIPostInput ValidatorOpenAPIPostInput (optional)
190+ * oASInput OASInput (optional)
191191 * returns ModelsLintResult
192192 */
193- // const validatorOpenAPIPost = async ({ validatorOpenAPIPostInput }) => {
193+ // const validatorOpenAPIPost = async ({ oASInput }) => {
194194const validatorOpenAPIPost = async ( params ) => {
195195 try {
196196 const mockResult = await Service . applyMock ( 'ToolsService' , 'validatorOpenAPIPost' , params ) ;
0 commit comments