Add typescript-fetch. (#199)
This commit is contained in:
41
openapi/typescript-fetch.xml
Normal file
41
openapi/typescript-fetch.xml
Normal file
@@ -0,0 +1,41 @@
|
||||
<project
|
||||
xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>io.kubernetes</groupId>
|
||||
<artifactId>client-typescript-fetch</artifactId>
|
||||
<version>0.1-SNAPSHOT</version>
|
||||
<name>client-typescript-fetch</name>
|
||||
<url>http://kubernetes.io</url>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.openapitools</groupId>
|
||||
<artifactId>openapi-generator-maven-plugin</artifactId>
|
||||
<version>${openapi-generator-version}</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>generate</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<inputSpec>${generator.spec.path}</inputSpec>
|
||||
<skipValidateSpec>true</skipValidateSpec>
|
||||
<generatorName>typescript-fetch</generatorName>
|
||||
<output>${generator.output.path}</output>
|
||||
<configOptions>
|
||||
<sortParamsByRequiredFlag>true</sortParamsByRequiredFlag>
|
||||
<supportsES6>true</supportsES6>
|
||||
<prefixParameterInterfaces>true</prefixParameterInterfaces>
|
||||
<npmName>kubernetes-client-typescript-fetch</npmName>
|
||||
<npmVersion>${generator.client.version}</npmVersion>
|
||||
<modelPropertyNaming>original</modelPropertyNaming>
|
||||
</configOptions>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
||||
|
||||
Reference in New Issue
Block a user