-
Notifications
You must be signed in to change notification settings - Fork 6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Kotlin] Fix issues with threetenbp (#7516)
* fix kotlin threetenbp client * fix typo in kotlin sample path
- Loading branch information
Showing
426 changed files
with
5,101 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/bin/sh | ||
|
||
SCRIPT="$0" | ||
|
||
while [ -h "$SCRIPT" ] ; do | ||
ls=$(ls -ld "$SCRIPT") | ||
link=$(expr "$ls" : '.*-> \(.*\)$') | ||
if expr "$link" : '/.*' > /dev/null; then | ||
SCRIPT="$link" | ||
else | ||
SCRIPT=$(dirname "$SCRIPT")/"$link" | ||
fi | ||
done | ||
|
||
if [ ! -d "${APP_DIR}" ]; then | ||
APP_DIR=$(dirname "$SCRIPT")/.. | ||
APP_DIR=$(cd "${APP_DIR}"; pwd) | ||
fi | ||
|
||
executable="./modules/swagger-codegen-cli/target/swagger-codegen-cli.jar" | ||
|
||
if [ ! -f "$executable" ] | ||
then | ||
mvn clean package | ||
fi | ||
|
||
# if you've executed sbt assembly previously it will use that instead. | ||
export JAVA_OPTS="${JAVA_OPTS} -XX:MaxPermSize=256M -Xmx1024M -DloggerPath=conf/log4j.properties" | ||
ags="generate -t modules/swagger-codegen/src/main/resources/kotlin-client -i modules/swagger-codegen/src/test/resources/2_0/petstore.yaml -l kotlin --artifact-id kotlin-petstore-string -D dateLibrary=string -o samples/client/petstore/kotlin-string $@" | ||
|
||
java ${JAVA_OPTS} -jar ${executable} ${ags} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/bin/sh | ||
|
||
SCRIPT="$0" | ||
|
||
while [ -h "$SCRIPT" ] ; do | ||
ls=$(ls -ld "$SCRIPT") | ||
link=$(expr "$ls" : '.*-> \(.*\)$') | ||
if expr "$link" : '/.*' > /dev/null; then | ||
SCRIPT="$link" | ||
else | ||
SCRIPT=$(dirname "$SCRIPT")/"$link" | ||
fi | ||
done | ||
|
||
if [ ! -d "${APP_DIR}" ]; then | ||
APP_DIR=$(dirname "$SCRIPT")/.. | ||
APP_DIR=$(cd "${APP_DIR}"; pwd) | ||
fi | ||
|
||
executable="./modules/swagger-codegen-cli/target/swagger-codegen-cli.jar" | ||
|
||
if [ ! -f "$executable" ] | ||
then | ||
mvn clean package | ||
fi | ||
|
||
# if you've executed sbt assembly previously it will use that instead. | ||
export JAVA_OPTS="${JAVA_OPTS} -XX:MaxPermSize=256M -Xmx1024M -DloggerPath=conf/log4j.properties" | ||
ags="generate -t modules/swagger-codegen/src/main/resources/kotlin-client -i modules/swagger-codegen/src/test/resources/2_0/petstore.yaml -l kotlin --artifact-id kotlin-petstore-threetenbp -D dateLibrary=threetenbp -o samples/client/petstore/kotlin-threetenbp $@" | ||
|
||
java ${JAVA_OPTS} -jar ${executable} ${ags} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
samples/client/petstore/kotlin-string/.swagger-codegen-ignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Swagger Codegen Ignore | ||
# Generated by swagger-codegen https://github.com/swagger-api/swagger-codegen | ||
|
||
# Use this file to prevent files from being overwritten by the generator. | ||
# The patterns follow closely to .gitignore or .dockerignore. | ||
|
||
# As an example, the C# client generator defines ApiClient.cs. | ||
# You can make changes and tell Swagger Codgen to ignore just this file by uncommenting the following line: | ||
#ApiClient.cs | ||
|
||
# You can match any string of characters against a directory, file or extension with a single asterisk (*): | ||
#foo/*/qux | ||
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux | ||
|
||
# You can recursively match patterns against a directory, file or extension with a double asterisk (**): | ||
#foo/**/qux | ||
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux | ||
|
||
# You can also negate patterns with an exclamation (!). | ||
# For example, you can ignore all files in a docs folder with the file extension .md: | ||
#docs/*.md | ||
# Then explicitly reverse the ignore rule for a single file: | ||
#!docs/README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.4.0-SNAPSHOT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# io.swagger.client - Kotlin client library for Swagger Petstore | ||
|
||
## Requires | ||
|
||
* Kotlin 1.1.2 | ||
* Gradle 3.3 | ||
|
||
## Build | ||
|
||
First, create the gradle wrapper script: | ||
|
||
``` | ||
gradle wrapper | ||
``` | ||
|
||
Then, run: | ||
|
||
``` | ||
./gradlew check assemble | ||
``` | ||
|
||
This runs all tests and packages the library. | ||
|
||
## Features/Implementation Notes | ||
|
||
* Supports JSON inputs/outputs, File inputs, and Form inputs. | ||
* Supports collection formats for query parameters: csv, tsv, ssv, pipes. | ||
* Some Kotlin and Java types are fully qualified to avoid conflicts with types defined in Swagger definitions. | ||
* Implementation of ApiClient is intended to reduce method counts, specifically to benefit Android targets. | ||
|
||
<a name="documentation-for-api-endpoints"></a> | ||
## Documentation for API Endpoints | ||
|
||
All URIs are relative to *http://petstore.swagger.io/v2* | ||
|
||
Class | Method | HTTP request | Description | ||
------------ | ------------- | ------------- | ------------- | ||
*PetApi* | [**addPet**](docs/PetApi.md#addpet) | **POST** /pet | Add a new pet to the store | ||
*PetApi* | [**deletePet**](docs/PetApi.md#deletepet) | **DELETE** /pet/{petId} | Deletes a pet | ||
*PetApi* | [**findPetsByStatus**](docs/PetApi.md#findpetsbystatus) | **GET** /pet/findByStatus | Finds Pets by status | ||
*PetApi* | [**findPetsByTags**](docs/PetApi.md#findpetsbytags) | **GET** /pet/findByTags | Finds Pets by tags | ||
*PetApi* | [**getPetById**](docs/PetApi.md#getpetbyid) | **GET** /pet/{petId} | Find pet by ID | ||
*PetApi* | [**updatePet**](docs/PetApi.md#updatepet) | **PUT** /pet | Update an existing pet | ||
*PetApi* | [**updatePetWithForm**](docs/PetApi.md#updatepetwithform) | **POST** /pet/{petId} | Updates a pet in the store with form data | ||
*PetApi* | [**uploadFile**](docs/PetApi.md#uploadfile) | **POST** /pet/{petId}/uploadImage | uploads an image | ||
*StoreApi* | [**deleteOrder**](docs/StoreApi.md#deleteorder) | **DELETE** /store/order/{orderId} | Delete purchase order by ID | ||
*StoreApi* | [**getInventory**](docs/StoreApi.md#getinventory) | **GET** /store/inventory | Returns pet inventories by status | ||
*StoreApi* | [**getOrderById**](docs/StoreApi.md#getorderbyid) | **GET** /store/order/{orderId} | Find purchase order by ID | ||
*StoreApi* | [**placeOrder**](docs/StoreApi.md#placeorder) | **POST** /store/order | Place an order for a pet | ||
*UserApi* | [**createUser**](docs/UserApi.md#createuser) | **POST** /user | Create user | ||
*UserApi* | [**createUsersWithArrayInput**](docs/UserApi.md#createuserswitharrayinput) | **POST** /user/createWithArray | Creates list of users with given input array | ||
*UserApi* | [**createUsersWithListInput**](docs/UserApi.md#createuserswithlistinput) | **POST** /user/createWithList | Creates list of users with given input array | ||
*UserApi* | [**deleteUser**](docs/UserApi.md#deleteuser) | **DELETE** /user/{username} | Delete user | ||
*UserApi* | [**getUserByName**](docs/UserApi.md#getuserbyname) | **GET** /user/{username} | Get user by user name | ||
*UserApi* | [**loginUser**](docs/UserApi.md#loginuser) | **GET** /user/login | Logs user into the system | ||
*UserApi* | [**logoutUser**](docs/UserApi.md#logoutuser) | **GET** /user/logout | Logs out current logged in user session | ||
*UserApi* | [**updateUser**](docs/UserApi.md#updateuser) | **PUT** /user/{username} | Updated user | ||
|
||
|
||
<a name="documentation-for-models"></a> | ||
## Documentation for Models | ||
|
||
- [io.swagger.client.models.ApiResponse](docs/ApiResponse.md) | ||
- [io.swagger.client.models.Category](docs/Category.md) | ||
- [io.swagger.client.models.Order](docs/Order.md) | ||
- [io.swagger.client.models.Pet](docs/Pet.md) | ||
- [io.swagger.client.models.Tag](docs/Tag.md) | ||
- [io.swagger.client.models.User](docs/User.md) | ||
|
||
|
||
<a name="documentation-for-authorization"></a> | ||
## Documentation for Authorization | ||
|
||
<a name="api_key"></a> | ||
### api_key | ||
|
||
- **Type**: API key | ||
- **API key parameter name**: api_key | ||
- **Location**: HTTP header | ||
|
||
<a name="petstore_auth"></a> | ||
### petstore_auth | ||
|
||
- **Type**: OAuth | ||
- **Flow**: implicit | ||
- **Authorization URL**: http://petstore.swagger.io/api/oauth/dialog | ||
- **Scopes**: | ||
- write:pets: modify pets in your account | ||
- read:pets: read your pets | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
group 'io.swagger' | ||
version '1.0.0' | ||
|
||
task wrapper(type: Wrapper) { | ||
gradleVersion = '3.3' | ||
distributionUrl = "https://services.gradle.org/distributions/gradle-$gradleVersion-all.zip" | ||
} | ||
|
||
buildscript { | ||
ext.kotlin_version = '1.1.2' | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
dependencies { | ||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" | ||
} | ||
} | ||
|
||
apply plugin: 'kotlin' | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version" | ||
compile "com.squareup.moshi:moshi-kotlin:1.5.0" | ||
compile "com.squareup.moshi:moshi-adapters:1.5.0" | ||
compile "com.squareup.okhttp3:okhttp:3.8.0" | ||
compile "org.threeten:threetenbp:1.3.6" | ||
testCompile "io.kotlintest:kotlintest:2.0.2" | ||
} |
Binary file added
BIN
+93 Bytes
...store/kotlin-string/build/classes/main/META-INF/kotlin-petstore-string_main.kotlin_module
Binary file not shown.
Binary file added
BIN
+1.4 KB
...etstore/kotlin-string/build/classes/main/io/swagger/client/apis/PetApi$WhenMappings.class
Binary file not shown.
Binary file added
BIN
+55.7 KB
samples/client/petstore/kotlin-string/build/classes/main/io/swagger/client/apis/PetApi.class
Binary file not shown.
Binary file added
BIN
+1016 Bytes
...store/kotlin-string/build/classes/main/io/swagger/client/apis/StoreApi$WhenMappings.class
Binary file not shown.
Binary file added
BIN
+30.7 KB
...es/client/petstore/kotlin-string/build/classes/main/io/swagger/client/apis/StoreApi.class
Binary file not shown.
Binary file added
BIN
+1.4 KB
...tstore/kotlin-string/build/classes/main/io/swagger/client/apis/UserApi$WhenMappings.class
Binary file not shown.
Binary file added
BIN
+53.2 KB
...les/client/petstore/kotlin-string/build/classes/main/io/swagger/client/apis/UserApi.class
Binary file not shown.
Binary file added
BIN
+1.39 KB
...ain/io/swagger/client/infrastructure/ApiAbstractionsKt$defaultMultiValueConverter$1.class
Binary file not shown.
Binary file added
BIN
+4.64 KB
...kotlin-string/build/classes/main/io/swagger/client/infrastructure/ApiAbstractionsKt.class
Binary file not shown.
Binary file added
BIN
+4.72 KB
...tlin-string/build/classes/main/io/swagger/client/infrastructure/ApiClient$Companion.class
Binary file not shown.
Binary file added
BIN
+744 Bytes
...n-string/build/classes/main/io/swagger/client/infrastructure/ApiClient$WhenMappings.class
Binary file not shown.
Binary file added
BIN
+1.98 KB
...-string/build/classes/main/io/swagger/client/infrastructure/ApiClient$requestBody$1.class
Binary file not shown.
Binary file added
BIN
+23 KB
...etstore/kotlin-string/build/classes/main/io/swagger/client/infrastructure/ApiClient.class
Binary file not shown.
Binary file added
BIN
+1.54 KB
...tring/build/classes/main/io/swagger/client/infrastructure/ApiInfrastructureResponse.class
Binary file not shown.
Binary file added
BIN
+3.02 KB
...ng/build/classes/main/io/swagger/client/infrastructure/ApplicationDelegates$SetOnce.class
Binary file not shown.
Binary file added
BIN
+1.66 KB
...lin-string/build/classes/main/io/swagger/client/infrastructure/ApplicationDelegates.class
Binary file not shown.
Binary file added
BIN
+2.71 KB
...store/kotlin-string/build/classes/main/io/swagger/client/infrastructure/ClientError.class
Binary file not shown.
Binary file added
BIN
+926 Bytes
...tring/build/classes/main/io/swagger/client/infrastructure/ClientException$Companion.class
Binary file not shown.
Binary file added
BIN
+1.32 KB
...e/kotlin-string/build/classes/main/io/swagger/client/infrastructure/ClientException.class
Binary file not shown.
Binary file added
BIN
+2.62 KB
...ore/kotlin-string/build/classes/main/io/swagger/client/infrastructure/Informational.class
Binary file not shown.
Binary file added
BIN
+2.36 KB
...store/kotlin-string/build/classes/main/io/swagger/client/infrastructure/Redirection.class
Binary file not shown.
Binary file added
BIN
+5.17 KB
...ore/kotlin-string/build/classes/main/io/swagger/client/infrastructure/RequestConfig.class
Binary file not shown.
Binary file added
BIN
+1.58 KB
...ore/kotlin-string/build/classes/main/io/swagger/client/infrastructure/RequestMethod.class
Binary file not shown.
Binary file added
BIN
+1.32 KB
...lin-string/build/classes/main/io/swagger/client/infrastructure/ResponseExtensionsKt.class
Binary file not shown.
Binary file added
BIN
+1.51 KB
...tore/kotlin-string/build/classes/main/io/swagger/client/infrastructure/ResponseType.class
Binary file not shown.
Binary file added
BIN
+1.78 KB
...tstore/kotlin-string/build/classes/main/io/swagger/client/infrastructure/Serializer.class
Binary file not shown.
Binary file added
BIN
+2.74 KB
...store/kotlin-string/build/classes/main/io/swagger/client/infrastructure/ServerError.class
Binary file not shown.
Binary file added
BIN
+926 Bytes
...tring/build/classes/main/io/swagger/client/infrastructure/ServerException$Companion.class
Binary file not shown.
Binary file added
BIN
+1.32 KB
...e/kotlin-string/build/classes/main/io/swagger/client/infrastructure/ServerException.class
Binary file not shown.
Binary file added
BIN
+2.57 KB
.../petstore/kotlin-string/build/classes/main/io/swagger/client/infrastructure/Success.class
Binary file not shown.
Binary file added
BIN
+3.31 KB
...ient/petstore/kotlin-string/build/classes/main/io/swagger/client/models/ApiResponse.class
Binary file not shown.
Binary file added
BIN
+2.78 KB
.../client/petstore/kotlin-string/build/classes/main/io/swagger/client/models/Category.class
Binary file not shown.
Binary file added
BIN
+1.93 KB
...ent/petstore/kotlin-string/build/classes/main/io/swagger/client/models/Order$Status.class
Binary file not shown.
Binary file added
BIN
+5.19 KB
...les/client/petstore/kotlin-string/build/classes/main/io/swagger/client/models/Order.class
Binary file not shown.
Binary file added
BIN
+1.91 KB
...lient/petstore/kotlin-string/build/classes/main/io/swagger/client/models/Pet$Status.class
Binary file not shown.
Binary file added
BIN
+5.59 KB
samples/client/petstore/kotlin-string/build/classes/main/io/swagger/client/models/Pet.class
Binary file not shown.
Binary file added
BIN
+2.75 KB
samples/client/petstore/kotlin-string/build/classes/main/io/swagger/client/models/Tag.class
Binary file not shown.
Binary file added
BIN
+5.84 KB
samples/client/petstore/kotlin-string/build/classes/main/io/swagger/client/models/User.class
Binary file not shown.
Binary file added
BIN
+64 KB
samples/client/petstore/kotlin-string/build/kotlin-build/caches/artifact-difference.tab
Binary file not shown.
Binary file added
BIN
+4 KB
...client/petstore/kotlin-string/build/kotlin-build/caches/artifact-difference.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
...nt/petstore/kotlin-string/build/kotlin-build/caches/artifact-difference.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
samples/client/petstore/kotlin-string/build/kotlin-build/caches/artifact-difference.tab.len
Binary file not shown.
Binary file added
BIN
+71 Bytes
...client/petstore/kotlin-string/build/kotlin-build/caches/artifact-difference.tab.values.at
Binary file not shown.
Binary file added
BIN
+32 KB
samples/client/petstore/kotlin-string/build/kotlin-build/caches/artifact-difference.tab_i
Binary file not shown.
Binary file added
BIN
+8 Bytes
...les/client/petstore/kotlin-string/build/kotlin-build/caches/artifact-difference.tab_i.len
Binary file not shown.
1 change: 1 addition & 0 deletions
1
samples/client/petstore/kotlin-string/build/kotlin-build/caches/version.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
11001 |
Binary file added
BIN
+93 Bytes
...otlin-string/build/kotlin-classes/main/META-INF/kotlin-petstore-string_main.kotlin_module
Binary file not shown.
Binary file added
BIN
+1.4 KB
.../kotlin-string/build/kotlin-classes/main/io/swagger/client/apis/PetApi$WhenMappings.class
Binary file not shown.
Binary file added
BIN
+55.7 KB
...ient/petstore/kotlin-string/build/kotlin-classes/main/io/swagger/client/apis/PetApi.class
Binary file not shown.
Binary file added
BIN
+1016 Bytes
...otlin-string/build/kotlin-classes/main/io/swagger/client/apis/StoreApi$WhenMappings.class
Binary file not shown.
Binary file added
BIN
+30.7 KB
...nt/petstore/kotlin-string/build/kotlin-classes/main/io/swagger/client/apis/StoreApi.class
Binary file not shown.
Binary file added
BIN
+1.4 KB
...kotlin-string/build/kotlin-classes/main/io/swagger/client/apis/UserApi$WhenMappings.class
Binary file not shown.
Binary file added
BIN
+53.2 KB
...ent/petstore/kotlin-string/build/kotlin-classes/main/io/swagger/client/apis/UserApi.class
Binary file not shown.
Binary file added
BIN
+1.39 KB
...ain/io/swagger/client/infrastructure/ApiAbstractionsKt$defaultMultiValueConverter$1.class
Binary file not shown.
Binary file added
BIN
+4.64 KB
...string/build/kotlin-classes/main/io/swagger/client/infrastructure/ApiAbstractionsKt.class
Binary file not shown.
Binary file added
BIN
+4.72 KB
...ring/build/kotlin-classes/main/io/swagger/client/infrastructure/ApiClient$Companion.class
Binary file not shown.
Binary file added
BIN
+744 Bytes
...g/build/kotlin-classes/main/io/swagger/client/infrastructure/ApiClient$WhenMappings.class
Binary file not shown.
Binary file added
BIN
+1.98 KB
.../build/kotlin-classes/main/io/swagger/client/infrastructure/ApiClient$requestBody$1.class
Binary file not shown.
Binary file added
BIN
+23 KB
.../kotlin-string/build/kotlin-classes/main/io/swagger/client/infrastructure/ApiClient.class
Binary file not shown.
Binary file added
BIN
+1.54 KB
...uild/kotlin-classes/main/io/swagger/client/infrastructure/ApiInfrastructureResponse.class
Binary file not shown.
Binary file added
BIN
+3.02 KB
...d/kotlin-classes/main/io/swagger/client/infrastructure/ApplicationDelegates$SetOnce.class
Binary file not shown.
Binary file added
BIN
+1.66 KB
...ing/build/kotlin-classes/main/io/swagger/client/infrastructure/ApplicationDelegates.class
Binary file not shown.
Binary file added
BIN
+2.71 KB
...otlin-string/build/kotlin-classes/main/io/swagger/client/infrastructure/ClientError.class
Binary file not shown.
Binary file added
BIN
+926 Bytes
...uild/kotlin-classes/main/io/swagger/client/infrastructure/ClientException$Companion.class
Binary file not shown.
Binary file added
BIN
+1.32 KB
...n-string/build/kotlin-classes/main/io/swagger/client/infrastructure/ClientException.class
Binary file not shown.
Binary file added
BIN
+2.62 KB
...lin-string/build/kotlin-classes/main/io/swagger/client/infrastructure/Informational.class
Binary file not shown.
Binary file added
BIN
+2.36 KB
...otlin-string/build/kotlin-classes/main/io/swagger/client/infrastructure/Redirection.class
Binary file not shown.
Binary file added
BIN
+5.17 KB
...lin-string/build/kotlin-classes/main/io/swagger/client/infrastructure/RequestConfig.class
Binary file not shown.
Binary file added
BIN
+1.58 KB
...lin-string/build/kotlin-classes/main/io/swagger/client/infrastructure/RequestMethod.class
Binary file not shown.
Binary file added
BIN
+1.32 KB
...ing/build/kotlin-classes/main/io/swagger/client/infrastructure/ResponseExtensionsKt.class
Binary file not shown.
Binary file added
BIN
+1.51 KB
...tlin-string/build/kotlin-classes/main/io/swagger/client/infrastructure/ResponseType.class
Binary file not shown.
Binary file added
BIN
+1.78 KB
...kotlin-string/build/kotlin-classes/main/io/swagger/client/infrastructure/Serializer.class
Binary file not shown.
Binary file added
BIN
+2.74 KB
...otlin-string/build/kotlin-classes/main/io/swagger/client/infrastructure/ServerError.class
Binary file not shown.
Binary file added
BIN
+926 Bytes
...uild/kotlin-classes/main/io/swagger/client/infrastructure/ServerException$Companion.class
Binary file not shown.
Binary file added
BIN
+1.32 KB
...n-string/build/kotlin-classes/main/io/swagger/client/infrastructure/ServerException.class
Binary file not shown.
Binary file added
BIN
+2.57 KB
...re/kotlin-string/build/kotlin-classes/main/io/swagger/client/infrastructure/Success.class
Binary file not shown.
Binary file added
BIN
+3.31 KB
...tstore/kotlin-string/build/kotlin-classes/main/io/swagger/client/models/ApiResponse.class
Binary file not shown.
Binary file added
BIN
+2.78 KB
.../petstore/kotlin-string/build/kotlin-classes/main/io/swagger/client/models/Category.class
Binary file not shown.
Binary file added
BIN
+1.93 KB
...store/kotlin-string/build/kotlin-classes/main/io/swagger/client/models/Order$Status.class
Binary file not shown.
Binary file added
BIN
+5.19 KB
...ent/petstore/kotlin-string/build/kotlin-classes/main/io/swagger/client/models/Order.class
Binary file not shown.
Binary file added
BIN
+1.91 KB
...etstore/kotlin-string/build/kotlin-classes/main/io/swagger/client/models/Pet$Status.class
Binary file not shown.
Binary file added
BIN
+5.59 KB
...lient/petstore/kotlin-string/build/kotlin-classes/main/io/swagger/client/models/Pet.class
Binary file not shown.
Binary file added
BIN
+2.75 KB
...lient/petstore/kotlin-string/build/kotlin-classes/main/io/swagger/client/models/Tag.class
Binary file not shown.
Binary file added
BIN
+5.84 KB
...ient/petstore/kotlin-string/build/kotlin-classes/main/io/swagger/client/models/User.class
Binary file not shown.
Binary file added
BIN
+64 KB
...leKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/class-fq-name-to-source.tab
Binary file not shown.
Binary file added
BIN
+4 KB
...aches/increCache.kotlin-petstore-string_main/kotlin/class-fq-name-to-source.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
...s/increCache.kotlin-petstore-string_main/kotlin/class-fq-name-to-source.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
...tlin/caches/increCache.kotlin-petstore-string_main/kotlin/class-fq-name-to-source.tab.len
Binary file not shown.
Binary file added
BIN
+3.76 KB
...aches/increCache.kotlin-petstore-string_main/kotlin/class-fq-name-to-source.tab.values.at
Binary file not shown.
Binary file added
BIN
+32 KB
...Kotlin/caches/increCache.kotlin-petstore-string_main/kotlin/class-fq-name-to-source.tab_i
Binary file not shown.
Binary file added
BIN
+8 Bytes
...in/caches/increCache.kotlin-petstore-string_main/kotlin/class-fq-name-to-source.tab_i.len
Binary file not shown.
Binary file added
BIN
+64 KB
...n/compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/inline-functions.tab
Binary file not shown.
Binary file added
BIN
+4 KB
...otlin/caches/increCache.kotlin-petstore-string_main/kotlin/inline-functions.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
...n/caches/increCache.kotlin-petstore-string_main/kotlin/inline-functions.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
...mpileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/inline-functions.tab.len
Binary file not shown.
Binary file added
BIN
+646 Bytes
...otlin/caches/increCache.kotlin-petstore-string_main/kotlin/inline-functions.tab.values.at
Binary file not shown.
Binary file added
BIN
+32 KB
...compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/inline-functions.tab_i
Binary file not shown.
Binary file added
BIN
+8 Bytes
...ileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/inline-functions.tab_i.len
Binary file not shown.
Binary file added
BIN
+64 KB
...leKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/internal-name-to-source.tab
Binary file not shown.
Binary file added
BIN
+4 KB
...aches/increCache.kotlin-petstore-string_main/kotlin/internal-name-to-source.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
...s/increCache.kotlin-petstore-string_main/kotlin/internal-name-to-source.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
...tlin/caches/increCache.kotlin-petstore-string_main/kotlin/internal-name-to-source.tab.len
Binary file not shown.
Binary file added
BIN
+5.15 KB
...aches/increCache.kotlin-petstore-string_main/kotlin/internal-name-to-source.tab.values.at
Binary file not shown.
Binary file added
BIN
+32 KB
...Kotlin/caches/increCache.kotlin-petstore-string_main/kotlin/internal-name-to-source.tab_i
Binary file not shown.
Binary file added
BIN
+8 Bytes
...in/caches/increCache.kotlin-petstore-string_main/kotlin/internal-name-to-source.tab_i.len
Binary file not shown.
Binary file added
BIN
+64 KB
...tlin/compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/package-parts.tab
Binary file not shown.
Binary file added
BIN
+4 KB
...leKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/package-parts.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
...tlin/caches/increCache.kotlin-petstore-string_main/kotlin/package-parts.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
.../compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/package-parts.tab.len
Binary file not shown.
Binary file added
BIN
+55 Bytes
...leKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/package-parts.tab.values.at
Binary file not shown.
Binary file added
BIN
+32 KB
...in/compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/package-parts.tab_i
Binary file not shown.
Binary file added
BIN
+8 Bytes
...ompileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/package-parts.tab_i.len
Binary file not shown.
Binary file added
BIN
+64 KB
...build/kotlin/compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/proto.tab
Binary file not shown.
Binary file added
BIN
+4 KB
...in/compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/proto.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
...ompileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/proto.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
...d/kotlin/compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/proto.tab.len
Binary file not shown.
Binary file added
BIN
+17.4 KB
...in/compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/proto.tab.values.at
Binary file not shown.
Binary file added
BIN
+32 KB
...ild/kotlin/compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/proto.tab_i
Binary file not shown.
Binary file added
BIN
+8 Bytes
...kotlin/compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/proto.tab_i.len
Binary file not shown.
Binary file added
BIN
+64 KB
.../compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/source-to-classes.tab
Binary file not shown.
Binary file added
BIN
+4 KB
...tlin/caches/increCache.kotlin-petstore-string_main/kotlin/source-to-classes.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
.../caches/increCache.kotlin-petstore-string_main/kotlin/source-to-classes.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
...pileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/source-to-classes.tab.len
Binary file not shown.
Binary file added
BIN
+1.92 KB
...tlin/caches/increCache.kotlin-petstore-string_main/kotlin/source-to-classes.tab.values.at
Binary file not shown.
Binary file added
BIN
+32 KB
...ompileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/source-to-classes.tab_i
Binary file not shown.
Binary file added
BIN
+8 Bytes
...leKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/source-to-classes.tab_i.len
Binary file not shown.
Binary file added
BIN
+64 KB
...pileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/sources-to-classfiles.tab
Binary file not shown.
Binary file added
BIN
+4 KB
.../caches/increCache.kotlin-petstore-string_main/kotlin/sources-to-classfiles.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
...hes/increCache.kotlin-petstore-string_main/kotlin/sources-to-classfiles.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
...Kotlin/caches/increCache.kotlin-petstore-string_main/kotlin/sources-to-classfiles.tab.len
Binary file not shown.
Binary file added
BIN
+5.77 KB
.../caches/increCache.kotlin-petstore-string_main/kotlin/sources-to-classfiles.tab.values.at
Binary file not shown.
Binary file added
BIN
+32 KB
...leKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/sources-to-classfiles.tab_i
Binary file not shown.
Binary file added
BIN
+8 Bytes
...tlin/caches/increCache.kotlin-petstore-string_main/kotlin/sources-to-classfiles.tab_i.len
Binary file not shown.
Binary file added
BIN
+64 KB
...ld/kotlin/compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/subtypes.tab
Binary file not shown.
Binary file added
BIN
+4 KB
...compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/subtypes.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
...ileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/subtypes.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
...otlin/compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/subtypes.tab.len
Binary file not shown.
Binary file added
BIN
+703 Bytes
...compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/subtypes.tab.values.at
Binary file not shown.
Binary file added
BIN
+32 KB
.../kotlin/compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/subtypes.tab_i
Binary file not shown.
Binary file added
BIN
+8 Bytes
...lin/compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/subtypes.tab_i.len
Binary file not shown.
Binary file added
BIN
+64 KB
.../kotlin/compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/supertypes.tab
Binary file not shown.
Binary file added
BIN
+4 KB
...mpileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/supertypes.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
...eKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/supertypes.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
...lin/compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/supertypes.tab.len
Binary file not shown.
Binary file added
BIN
+641 Bytes
...mpileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/supertypes.tab.values.at
Binary file not shown.
Binary file added
BIN
+32 KB
...otlin/compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/supertypes.tab_i
Binary file not shown.
Binary file added
BIN
+8 Bytes
...n/compileKotlin/caches/increCache.kotlin-petstore-string_main/kotlin/supertypes.tab_i.len
Binary file not shown.
2 changes: 2 additions & 0 deletions
2
samples/client/petstore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/counters.tab
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
18 | ||
0 |
Binary file added
BIN
+64 KB
...es/client/petstore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/file-to-id.tab
Binary file not shown.
Binary file added
BIN
+4 KB
...petstore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/file-to-id.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
...tore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/file-to-id.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
...lient/petstore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/file-to-id.tab.len
Binary file not shown.
Binary file added
BIN
+157 Bytes
...petstore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/file-to-id.tab.values.at
Binary file not shown.
Binary file added
BIN
+32 KB
.../client/petstore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/file-to-id.tab_i
Binary file not shown.
Binary file added
BIN
+8 Bytes
...ent/petstore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/file-to-id.tab_i.len
Binary file not shown.
Binary file added
BIN
+64 KB
...es/client/petstore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/id-to-file.tab
Binary file not shown.
Binary file added
BIN
+4 KB
...petstore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/id-to-file.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
...tore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/id-to-file.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
...lient/petstore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/id-to-file.tab.len
Binary file not shown.
Binary file added
BIN
+2.31 KB
...petstore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/id-to-file.tab.values.at
Binary file not shown.
Binary file added
BIN
+32 KB
.../client/petstore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/id-to-file.tab_i
Binary file not shown.
Binary file added
BIN
+8 Bytes
...ent/petstore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/id-to-file.tab_i.len
Binary file not shown.
Binary file added
BIN
+64 KB
samples/client/petstore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/lookups.tab
Binary file not shown.
Binary file added
BIN
+32 KB
...nt/petstore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/lookups.tab.keystream
Binary file not shown.
Binary file added
BIN
+8 Bytes
...etstore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/lookups.tab.keystream.len
Binary file not shown.
Binary file added
BIN
+8 Bytes
...s/client/petstore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/lookups.tab.len
Binary file not shown.
Binary file added
BIN
+10 KB
...nt/petstore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/lookups.tab.values.at
Binary file not shown.
Binary file added
BIN
+32 KB
...les/client/petstore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/lookups.tab_i
Binary file not shown.
Binary file added
BIN
+8 Bytes
...client/petstore/kotlin-string/build/kotlin/compileKotlin/caches/lookups/lookups.tab_i.len
Binary file not shown.
1 change: 1 addition & 0 deletions
1
...lient/petstore/kotlin-string/build/kotlin/compileKotlin/data-container-format-version.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2011001 |
1 change: 1 addition & 0 deletions
1
.../client/petstore/kotlin-string/build/kotlin/compileKotlin/experimental-format-version.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
4011001 |
1 change: 1 addition & 0 deletions
1
samples/client/petstore/kotlin-string/build/kotlin/compileKotlin/format-version.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
8011001 |
1 change: 1 addition & 0 deletions
1
samples/client/petstore/kotlin-string/build/kotlin/compileKotlin/gradle-format-version.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3011001 |
Binary file added
BIN
+81 Bytes
samples/client/petstore/kotlin-string/build/kotlin/compileKotlin/last-build.bin
Binary file not shown.
Binary file added
BIN
+2.26 KB
...etstore/kotlin-string/build/kotlin/compileKotlin/sync/kotlin-files-in-java-timestamps.bin
Binary file not shown.
Binary file added
BIN
+10 Bytes
...ore/kotlin-string/build/kotlin/compileTestKotlin/sync/kotlin-files-in-java-timestamps.bin
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
# ApiResponse | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**code** | **kotlin.Int** | | [optional] | ||
**type** | **kotlin.String** | | [optional] | ||
**message** | **kotlin.String** | | [optional] | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
# Category | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**id** | **kotlin.Long** | | [optional] | ||
**name** | **kotlin.String** | | [optional] | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
# Order | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**id** | **kotlin.Long** | | [optional] | ||
**petId** | **kotlin.Long** | | [optional] | ||
**quantity** | **kotlin.Int** | | [optional] | ||
**shipDate** | **kotlin.String** | | [optional] | ||
**status** | [**inline**](#StatusEnum) | Order Status | [optional] | ||
**complete** | **kotlin.Boolean** | | [optional] | ||
|
||
|
||
<a name="StatusEnum"></a> | ||
## Enum: status | ||
Name | Value | ||
---- | ----- | ||
status | placed, approved, delivered | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
# Pet | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**id** | **kotlin.Long** | | [optional] | ||
**category** | [**Category**](Category.md) | | [optional] | ||
**name** | **kotlin.String** | | | ||
**photoUrls** | **kotlin.Array<kotlin.String>** | | | ||
**tags** | [**kotlin.Array<Tag>**](Tag.md) | | [optional] | ||
**status** | [**inline**](#StatusEnum) | pet status in the store | [optional] | ||
|
||
|
||
<a name="StatusEnum"></a> | ||
## Enum: status | ||
Name | Value | ||
---- | ----- | ||
status | available, pending, sold | ||
|
||
|
||
|
Oops, something went wrong.