Skip to content

Commit 809c5cf

Browse files
committed
chore: update samples
1 parent e216596 commit 809c5cf

76 files changed

Lines changed: 177 additions & 188 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/generators/fsharp-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
3434
|prependFormOrBodyParameters|Add form or body parameters to the beginning of the parameter list.| |false|
3535
|sortModelPropertiesByRequiredFlag|Sort model properties to place required parameters before optional parameters.| |true|
3636
|sortParamsByRequiredFlag|Sort method arguments to place required parameters before optional parameters.| |true|
37-
|sourceFolder|source folder for generated code| |OpenAPI/src|
37+
|sourceFolder|source folder for generated code| |OpenAPI\src|
3838

3939
## IMPORT MAPPING
4040

docs/generators/fsharp-giraffe-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
3030
|packageVersion|F# package version.| |1.0.0|
3131
|returnICollection|Return ICollection<T> instead of the concrete type.| |false|
3232
|sortParamsByRequiredFlag|Sort method arguments to place required parameters before optional parameters.| |true|
33-
|sourceFolder|source folder for generated code| |OpenAPI/src|
33+
|sourceFolder|source folder for generated code| |OpenAPI\src|
3434
|useCollection|Deserialize array types to Collection<T> instead of List<T>.| |false|
3535
|useDateTimeOffset|Use DateTimeOffset to model date-time properties| |false|
3636
|useSwashbuckle|Uses the Swashbuckle.AspNetCore NuGet package for documentation.| |false|

docs/generators/java-inflector.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
6565
|snapshotVersion|Uses a SNAPSHOT version.|<dl><dt>**true**</dt><dd>Use a SnapShot Version</dd><dt>**false**</dt><dd>Use a Release Version</dd></dl>|null|
6666
|sortModelPropertiesByRequiredFlag|Sort model properties to place required parameters before optional parameters.| |true|
6767
|sortParamsByRequiredFlag|Sort method arguments to place required parameters before optional parameters.| |true|
68-
|sourceFolder|source folder for generated code| |src/gen/java|
68+
|sourceFolder|source folder for generated code| |src\gen\java|
6969
|testOutput|Set output folder for models and APIs tests| |${project.build.directory}/generated-test-sources/openapi|
7070
|useJakartaEe|whether to use Jakarta EE namespace instead of javax| |false|
7171
|useOneOfInterfaces|whether to use a java interface to describe a set of oneOf options, where each option is a class that implements the interface| |false|

docs/generators/jaxrs-cxf-client.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ These options may be applied as additional-properties (cli) or configOptions (pl
6565
|snapshotVersion|Uses a SNAPSHOT version.|<dl><dt>**true**</dt><dd>Use a SnapShot Version</dd><dt>**false**</dt><dd>Use a Release Version</dd></dl>|null|
6666
|sortModelPropertiesByRequiredFlag|Sort model properties to place required parameters before optional parameters.| |true|
6767
|sortParamsByRequiredFlag|Sort method arguments to place required parameters before optional parameters.| |true|
68-
|sourceFolder|source folder for generated code| |src/gen/java|
68+
|sourceFolder|source folder for generated code| |src\gen\java|
6969
|testOutput|Set output folder for models and APIs tests| |${project.build.directory}/generated-test-sources/openapi|
7070
|useAbstractionForFiles|Use alternative types instead of java.io.File to allow passing bytes without a file on disk.| |false|
7171
|useBeanValidation|Use BeanValidation API annotations| |false|

docs/generators/swift5.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,13 @@ These options may be applied as additional-properties (cli) or configOptions (pl
4848
|responseAs|Optionally use libraries to manage response. Currently PromiseKit, RxSwift, Result, Combine, AsyncAwait are available.| |null|
4949
|sortModelPropertiesByRequiredFlag|Sort model properties to place required parameters before optional parameters.| |true|
5050
|sortParamsByRequiredFlag|Sort method arguments to place required parameters before optional parameters.| |true|
51-
|swiftPackagePath|Set a custom source path instead of OpenAPIClient/Classes/OpenAPIs.| |null|
51+
|swiftPackagePath|Set a custom source path instead of OpenAPIClient\Classes\OpenAPIs.| |null|
5252
|swiftUseApiNamespace|Flag to make all the API classes inner-class of {{projectName}}API| |null|
5353
|useBacktickEscapes|Escape reserved words using backticks (default: false)| |false|
5454
|useClasses|Use final classes for models instead of structs (default: false)| |false|
5555
|useCustomDateWithoutTime|Uses a custom type to decode and encode dates without time information to support OpenAPIs date format (default: false)| |false|
5656
|useJsonEncodable|Make models conform to JSONEncodable protocol (default: true)| |true|
57-
|useSPMFileStructure|Use SPM file structure and set the source path to Sources/{{projectName}} (default: false).| |null|
57+
|useSPMFileStructure|Use SPM file structure and set the source path to Sources\{{projectName}} (default: false).| |null|
5858
|validatable|Make validation rules and validator for model properies (default: true)| |true|
5959

6060
## IMPORT MAPPING

samples/client/echo_api/php-nextgen-streaming/.openapi-generator/FILES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ docs/Model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.md
2424
docs/Model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.md
2525
git_push.sh
2626
phpunit.xml.dist
27+
src/ApiException.php
2728
src/Api/AuthApi.php
2829
src/Api/BodyApi.php
2930
src/Api/FormApi.php
3031
src/Api/HeaderApi.php
3132
src/Api/PathApi.php
3233
src/Api/QueryApi.php
33-
src/ApiException.php
3434
src/Configuration.php
3535
src/HeaderSelector.php
3636
src/Model/Bird.php

samples/client/echo_api/php-nextgen-streaming/phpunit.xml.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
33
<coverage processUncoveredFiles="true">
44
<include>
5-
<directory suffix=".php">./src/Api</directory>
6-
<directory suffix=".php">./src/Model</directory>
5+
<directory suffix=".php">./src\/Api</directory>
6+
<directory suffix=".php">./src\/Model</directory>
77
</include>
88
</coverage>
99
<testsuites>

samples/client/echo_api/php-nextgen/.openapi-generator/FILES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ docs/Model/TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter.md
2424
docs/Model/TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter.md
2525
git_push.sh
2626
phpunit.xml.dist
27+
src/ApiException.php
2728
src/Api/AuthApi.php
2829
src/Api/BodyApi.php
2930
src/Api/FormApi.php
3031
src/Api/HeaderApi.php
3132
src/Api/PathApi.php
3233
src/Api/QueryApi.php
33-
src/ApiException.php
3434
src/Configuration.php
3535
src/HeaderSelector.php
3636
src/Model/Bird.php

samples/client/echo_api/php-nextgen/phpunit.xml.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
33
<coverage processUncoveredFiles="true">
44
<include>
5-
<directory suffix=".php">./src/Api</directory>
6-
<directory suffix=".php">./src/Model</directory>
5+
<directory suffix=".php">./src\/Api</directory>
6+
<directory suffix=".php">./src\/Model</directory>
77
</include>
88
</coverage>
99
<testsuites>

samples/client/echo_api/r/.openapi-generator/FILES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
.travis.yml
66
DESCRIPTION
77
NAMESPACE
8+
README.md
89
R/api_client.R
910
R/api_response.R
1011
R/auth_api.R
@@ -25,7 +26,6 @@ R/tag.R
2526
R/test_form_object_multipart_request_marker.R
2627
R/test_query_style_deep_object_explode_true_object_all_of_query_object_parameter.R
2728
R/test_query_style_form_explode_true_array_string_query_object_parameter.R
28-
README.md
2929
docs/AuthApi.md
3030
docs/Bird.md
3131
docs/BodyApi.md

0 commit comments

Comments
 (0)