diff --git a/templates/csharp/README.mustache b/templates/csharp/README.mustache index d4faeff4..76cfbe81 100644 --- a/templates/csharp/README.mustache +++ b/templates/csharp/README.mustache @@ -181,7 +181,7 @@ ApiVideoClient apiVideoClient = new ApiVideoClient("YOUR_API_KEY"); Method | HTTP request | Description ------------- | ------------- | ------------- -{{#operations}}{{#operation}}{{#isDeprecated}}**(deprecated)** {{/isDeprecated}}[**{{operationId}}**](https://github.com/apivideo/{{gitRepoId}}/blob/main/{{apiDocPath}}{{classname}}.md#{{operationId}}) | **{{httpMethod}}** {{path}} | {{#summary}}{{summary}}{{/summary}} +{{#operations}}{{#operation}}{{#isDeprecated}}**(deprecated)** {{/isDeprecated}}[**{{operationId}}**](https://github.com/apivideo/{{gitRepoId}}/blob/main/{{apiDocPath}}{{classname}}.md#{{operationId}}) | **{{httpMethod}}** `{{path}}` | {{#summary}}{{summary}}{{/summary}} {{/operation}}{{/operations}} {{/x-client-hidden}}{{/apis}}{{/apiInfo}} diff --git a/templates/go/README.mustache b/templates/go/README.mustache index 744e7df6..15cf07e2 100644 --- a/templates/go/README.mustache +++ b/templates/go/README.mustache @@ -135,7 +135,7 @@ client := {{packageName}}.ClientBuilder("API_VIDEO_KEY").Build() Method | HTTP request | Description ------------- | ------------- | ------------- -{{#operations}}{{#operation}}{{#isDeprecated}}**(deprecated)** {{/isDeprecated}}[**{{operationId}}**](https://github.com/apivideo/{{gitRepoId}}/blob/main/{{apiDocPath}}{{classname}}.md#{{operationId}}) | **{{httpMethod}}** {{path}} | {{#summary}}{{summary}}{{/summary}} +{{#operations}}{{#operation}}{{#isDeprecated}}**(deprecated)** {{/isDeprecated}}[**{{operationId}}**](https://github.com/apivideo/{{gitRepoId}}/blob/main/{{apiDocPath}}{{classname}}.md#{{operationId}}) | **{{httpMethod}}** `{{path}}` | {{#summary}}{{summary}}{{/summary}} {{/operation}}{{/operations}} {{/x-client-hidden}}{{/apis}}{{/apiInfo}} diff --git a/templates/java/libraries/okhttp-gson/README.mustache b/templates/java/libraries/okhttp-gson/README.mustache index b39c3058..2e540104 100644 --- a/templates/java/libraries/okhttp-gson/README.mustache +++ b/templates/java/libraries/okhttp-gson/README.mustache @@ -250,7 +250,7 @@ val videosApi = VideosApi("YOUR_API_KEY", Environment.PRODUCTION) Method | HTTP request | Description ------------- | ------------- | ------------- -{{#operations}}{{#operation}}{{#isDeprecated}}**(deprecated)** {{/isDeprecated}}[**{{operationId}}**](https://github.com/apivideo/{{gitRepoId}}/blob/main/{{apiDocPath}}{{classname}}.md#{{operationId}}) | **{{httpMethod}}** {{path}} | {{#summary}}{{summary}}{{/summary}} +{{#operations}}{{#operation}}{{#isDeprecated}}**(deprecated)** {{/isDeprecated}}[**{{operationId}}**](https://github.com/apivideo/{{gitRepoId}}/blob/main/{{apiDocPath}}{{classname}}.md#{{operationId}}) | **{{httpMethod}}** `{{path}}` | {{#summary}}{{summary}}{{/summary}} {{/operation}}{{/operations}} {{/x-client-hidden}}{{/apis}}{{/apiInfo}} diff --git a/templates/nodejs/README.md.mustache b/templates/nodejs/README.md.mustache index 897ba90b..8d477ce9 100644 --- a/templates/nodejs/README.md.mustache +++ b/templates/nodejs/README.md.mustache @@ -102,7 +102,7 @@ const ApiVideoClient = require('@api.video/nodejs-client'); Method | Description | HTTP request ------------- | ------------- | ------------- -{{#operations}}{{#operation}}{{#isDeprecated}}**(deprecated)** {{/isDeprecated}}[**{{operationId}}()**](https://github.com/apivideo/{{gitRepoId}}/blob/main/{{apiDocFileFolder}}/{{classname}}.md#{{operationId}}) | {{#summary}}{{summary}}{{/summary}} | **{{httpMethod}}** {{path}} +{{#operations}}{{#operation}}{{#isDeprecated}}**(deprecated)** {{/isDeprecated}}[**{{operationId}}()**](https://github.com/apivideo/{{gitRepoId}}/blob/main/{{apiDocFileFolder}}/{{classname}}.md#{{operationId}}) | {{#summary}}{{summary}}{{/summary}} | **{{httpMethod}}** `{{path}}` {{/operation}}{{/operations}} {{/x-client-hidden}}{{/apis}}{{/apiInfo}} diff --git a/templates/php/api_doc.mustache b/templates/php/api_doc.mustache index 98ea3c9d..2ac12be4 100644 --- a/templates/php/api_doc.mustache +++ b/templates/php/api_doc.mustache @@ -6,7 +6,7 @@ All URIs are relative to {{basePath}}. Method | Description | HTTP request ------------- | ------------- | ------------- -{{#operations}}{{#operation}}[**{{vendorExtensions.x-client-action}}()**]({{classname}}.md#{{vendorExtensions.x-client-action}}) | {{#summary}}{{summary}}{{/summary}} | **{{httpMethod}}** `{{path}}` +{{#operations}}{{#operation}}[**{{vendorExtensions.x-client-action}}()**]({{classname}}.md#{{vendorExtensions.x-client-action}}) | {{#summary}}{{summary}}{{/summary}} | **{{httpMethod}}** {{path}} {{/operation}}{{/operations}}{{#operations}}{{#operation}} ## **`{{vendorExtensions.x-client-action}}()` - {{summary}}** diff --git a/templates/python/README.mustache b/templates/python/README.mustache index b22c1a33..b840ddbe 100644 --- a/templates/python/README.mustache +++ b/templates/python/README.mustache @@ -114,7 +114,7 @@ All URIs are relative to *{{basePath}}* Method | HTTP request | Description ------------- | ------------- | ------------- -{{#operations}}{{#operation}}{{#isDeprecated}}**(deprecated)** {{/isDeprecated}}[**{{operationId}}**]({{packageUrl}}/blob/main/{{apiDocPath}}{{classname}}.md#{{operationId}}) | **{{httpMethod}}** {{path}} | {{#summary}}{{summary}}{{/summary}} +{{#operations}}{{#operation}}{{#isDeprecated}}**(deprecated)** {{/isDeprecated}}[**{{operationId}}**]({{packageUrl}}/blob/main/{{apiDocPath}}{{classname}}.md#{{operationId}}) | **{{httpMethod}}** `{{path}}` | {{#summary}}{{summary}}{{/summary}} {{/operation}}{{/operations}} {{/x-client-hidden}}{{/apis}}{{/apiInfo}} diff --git a/templates/python/README_common.mustache b/templates/python/README_common.mustache index 9999f508..259dc5d0 100644 --- a/templates/python/README_common.mustache +++ b/templates/python/README_common.mustache @@ -42,7 +42,7 @@ All URIs are relative to *{{basePath}}* Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- -{{#apiInfo}}{{#apis}}{{#operations}}{{#operation}}*{{classname}}* | [**{{operationId}}**]({{apiDocPath}}{{classname}}.md#{{operationIdLowerCase}}) | **{{httpMethod}}** {{path}} | {{#summary}}{{summary}}{{/summary}} +{{#apiInfo}}{{#apis}}{{#operations}}{{#operation}}*{{classname}}* | [**{{operationId}}**]({{apiDocPath}}{{classname}}.md#{{operationIdLowerCase}}) | **{{httpMethod}}** `{{path}}` | {{#summary}}{{summary}}{{/summary}} {{/operation}}{{/operations}}{{/apis}}{{/apiInfo}} ## Documentation For Models diff --git a/templates/swift5/README.mustache b/templates/swift5/README.mustache index a03fb1ff..b1d8e952 100644 --- a/templates/swift5/README.mustache +++ b/templates/swift5/README.mustache @@ -111,7 +111,7 @@ All URIs are relative to *{{basePath}}* Method | HTTP request | Description ------------- | ------------- | ------------- -{{#operations}}{{#operation}}{{#isDeprecated}}**(deprecated)** {{/isDeprecated}}[**{{operationId}}**](https://github.com/apivideo/{{gitRepoId}}/blob/main/{{apiDocPath}}{{classname}}.md#{{operationId}}) | **{{httpMethod}}** {{path}} | {{#summary}}{{summary}}{{/summary}} +{{#operations}}{{#operation}}{{#isDeprecated}}**(deprecated)** {{/isDeprecated}}[**{{operationId}}**](https://github.com/apivideo/{{gitRepoId}}/blob/main/{{apiDocPath}}{{classname}}.md#{{operationId}}) | **{{httpMethod}}** `{{path}}` | {{#summary}}{{summary}}{{/summary}} {{/operation}}{{/operations}} {{/x-client-hidden}}{{/apis}}{{/apiInfo}}