Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
62099da
[CLI] Initial implementation for batch generation
jimschubert Aug 28, 2019
473ca5f
Allow for path-relative outputs
jimschubert Sep 7, 2019
d4ea07b
Add batch JSON objects
jimschubert Sep 7, 2019
e374397
write out the output directory in console
jimschubert Sep 7, 2019
68f2d9f
Change outputDir
jimschubert Sep 7, 2019
c6c4d81
Include INFO log about threads used and includes/root
jimschubert Sep 30, 2019
92d7b9f
Merge branch 'master' into batch-generation
jimschubert Sep 30, 2019
d2cd084
[Samples] Regenerate via ensure-up-to-date
jimschubert Sep 30, 2019
b5f16e9
Fixing dart generations
jimschubert Oct 4, 2019
542cc97
Delete stale "swagger" directory
jimschubert Oct 4, 2019
6a0133d
jwt headless in ensure-up-to-date
jimschubert Oct 4, 2019
f32da0e
Rename numberedbin/ci/java generators to match their outputs
jimschubert Oct 4, 2019
777b87c
Include ruby faraday in bin/ci
jimschubert Oct 4, 2019
9a3e954
Regenerate faraday for OAS 2
jimschubert Oct 4, 2019
dbb08af
Ignore csharp test csproj on generate
jimschubert Oct 4, 2019
b71df42
Minor refactoring
jimschubert Oct 5, 2019
28a3c2c
Ensure GlobalSettings.reset()
jimschubert Oct 5, 2019
0b7b5b9
Minor refactoring
jimschubert Oct 5, 2019
5f7b046
Improved thread-safety of ModelUtils
jimschubert Oct 5, 2019
27ada22
Merge branch 'master' into batch-generation
jimschubert Oct 6, 2019
a9ff022
Change dart windows scripts to openapi/openapi-generator
jimschubert Oct 6, 2019
c69726e
Regenerate samples
jimschubert Oct 6, 2019
19bfc69
Regenerate samples
jimschubert Oct 6, 2019
262a413
Include kotlin generation settings from previous contributions from b…
jimschubert Oct 6, 2019
8ecc146
Include kotlin multiplatform in CI samples generation
jimschubert Oct 6, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Regenerate samples
  • Loading branch information
jimschubert committed Oct 6, 2019
commit 19bfc69b9be8fc16537808f9faa5655d669ac3f1
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ package org.openapitools.client.models


import com.squareup.moshi.Json
import java.io.Serializable
/**
* Describes the result of uploading an image resource
* @param code
Expand All @@ -28,6 +29,6 @@ data class ApiResponse (
@Json(name = "message")
val message: kotlin.String? = null
)

: Serializable


Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ package org.openapitools.client.models


import com.squareup.moshi.Json
import java.io.Serializable
/**
* A category for a pet
* @param id
Expand All @@ -25,6 +26,6 @@ data class Category (
@Json(name = "name")
val name: kotlin.String? = null
)

: Serializable


Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ package org.openapitools.client.models


import com.squareup.moshi.Json
import java.io.Serializable
/**
* An order for a pets from the pet store
* @param id
Expand All @@ -38,7 +39,7 @@ data class Order (
@Json(name = "complete")
val complete: kotlin.Boolean? = null
)

: Serializable

{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import org.openapitools.client.models.Category
import org.openapitools.client.models.Tag

import com.squareup.moshi.Json
import java.io.Serializable
/**
* A pet for sale in the pet store
* @param id
Expand All @@ -40,7 +41,7 @@ data class Pet (
@Json(name = "status")
val status: Pet.Status? = null
)

: Serializable

{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ package org.openapitools.client.models


import com.squareup.moshi.Json
import java.io.Serializable
/**
* A tag for a pet
* @param id
Expand All @@ -25,6 +26,6 @@ data class Tag (
@Json(name = "name")
val name: kotlin.String? = null
)

: Serializable


Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ package org.openapitools.client.models


import com.squareup.moshi.Json
import java.io.Serializable
/**
* A User who is purchasing from the pet store
* @param id
Expand Down Expand Up @@ -44,6 +45,6 @@ data class User (
@Json(name = "userStatus")
val userStatus: kotlin.Int? = null
)

: Serializable


Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ package org.openapitools.client.models


import com.squareup.moshi.Json
import java.io.Serializable
/**
* Describes the result of uploading an image resource
* @param code
Expand All @@ -28,6 +29,6 @@ data class ApiResponse (
@Json(name = "message")
val message: kotlin.String? = null
)

: Serializable


Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ package org.openapitools.client.models


import com.squareup.moshi.Json
import java.io.Serializable
/**
* A category for a pet
* @param id
Expand All @@ -25,6 +26,6 @@ data class Category (
@Json(name = "name")
val name: kotlin.String? = null
)

: Serializable


Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ package org.openapitools.client.models


import com.squareup.moshi.Json
import java.io.Serializable
/**
* An order for a pets from the pet store
* @param id
Expand All @@ -38,7 +39,7 @@ data class Order (
@Json(name = "complete")
val complete: kotlin.Boolean? = null
)

: Serializable

{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import org.openapitools.client.models.Category
import org.openapitools.client.models.Tag

import com.squareup.moshi.Json
import java.io.Serializable
/**
* A pet for sale in the pet store
* @param id
Expand All @@ -40,7 +41,7 @@ data class Pet (
@Json(name = "status")
val status: Pet.Status? = null
)

: Serializable

{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ package org.openapitools.client.models


import com.squareup.moshi.Json
import java.io.Serializable
/**
* A tag for a pet
* @param id
Expand All @@ -25,6 +26,6 @@ data class Tag (
@Json(name = "name")
val name: kotlin.String? = null
)

: Serializable


Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ package org.openapitools.client.models


import com.squareup.moshi.Json
import java.io.Serializable
/**
* A User who is purchasing from the pet store
* @param id
Expand Down Expand Up @@ -44,6 +45,6 @@ data class User (
@Json(name = "userStatus")
val userStatus: kotlin.Int? = null
)

: Serializable


Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
package org.openapitools.server.models


import java.io.Serializable
/**
* Describes the result of uploading an image resource
* @param code
Expand All @@ -23,7 +24,7 @@ data class ApiResponse (
val type: kotlin.String? = null,
val message: kotlin.String? = null
)

: Serializable

{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
package org.openapitools.server.models


import java.io.Serializable
/**
* A category for a pet
* @param id
Expand All @@ -21,7 +22,7 @@ data class Category (
val id: kotlin.Long? = null,
val name: kotlin.String? = null
)

: Serializable

{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
package org.openapitools.server.models


import java.io.Serializable
/**
* An order for a pets from the pet store
* @param id
Expand All @@ -30,7 +31,7 @@ data class Order (
val status: Order.Status? = null,
val complete: kotlin.Boolean? = null
)

: Serializable

{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ package org.openapitools.server.models
import org.openapitools.server.models.Category
import org.openapitools.server.models.Tag

import java.io.Serializable
/**
* A pet for sale in the pet store
* @param id
Expand All @@ -32,7 +33,7 @@ data class Pet (
/* pet status in the store */
val status: Pet.Status? = null
)

: Serializable

{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
package org.openapitools.server.models


import java.io.Serializable
/**
* A tag for a pet
* @param id
Expand All @@ -21,7 +22,7 @@ data class Tag (
val id: kotlin.Long? = null,
val name: kotlin.String? = null
)

: Serializable

{

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
package org.openapitools.server.models


import java.io.Serializable
/**
* A User who is purchasing from the pet store
* @param id
Expand All @@ -34,7 +35,7 @@ data class User (
/* User Status */
val userStatus: kotlin.Int? = null
)

: Serializable

{

Expand Down