diff --git a/samples/client/petstore/javascript-closure-angular/.swagger-codegen-ignore b/samples/client/petstore/javascript-closure-angular/.swagger-codegen-ignore new file mode 100644 index 00000000000..c5fa491b4c5 --- /dev/null +++ b/samples/client/petstore/javascript-closure-angular/.swagger-codegen-ignore @@ -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 diff --git a/samples/client/petstore/javascript-closure-angular/API/Client/ApiResponse.js b/samples/client/petstore/javascript-closure-angular/API/Client/ApiResponse.js index 0ec7148bc9a..1571a951f19 100644 --- a/samples/client/petstore/javascript-closure-angular/API/Client/ApiResponse.js +++ b/samples/client/petstore/javascript-closure-angular/API/Client/ApiResponse.js @@ -1,6 +1,7 @@ goog.provide('API.Client.ApiResponse'); /** + * Describes the result of uploading an image resource * @record */ API.Client.ApiResponse = function() {} diff --git a/samples/client/petstore/javascript-closure-angular/API/Client/Category.js b/samples/client/petstore/javascript-closure-angular/API/Client/Category.js index fe9d23c34ff..563fd25b62c 100644 --- a/samples/client/petstore/javascript-closure-angular/API/Client/Category.js +++ b/samples/client/petstore/javascript-closure-angular/API/Client/Category.js @@ -1,6 +1,7 @@ goog.provide('API.Client.Category'); /** + * A category for a pet * @record */ API.Client.Category = function() {} diff --git a/samples/client/petstore/javascript-closure-angular/API/Client/Order.js b/samples/client/petstore/javascript-closure-angular/API/Client/Order.js index c4ec23a066a..1e1e6f8cff8 100644 --- a/samples/client/petstore/javascript-closure-angular/API/Client/Order.js +++ b/samples/client/petstore/javascript-closure-angular/API/Client/Order.js @@ -1,6 +1,7 @@ goog.provide('API.Client.Order'); /** + * An order for a pets from the pet store * @record */ API.Client.Order = function() {} diff --git a/samples/client/petstore/javascript-closure-angular/API/Client/Pet.js b/samples/client/petstore/javascript-closure-angular/API/Client/Pet.js index 2c734557b64..5643c51817b 100644 --- a/samples/client/petstore/javascript-closure-angular/API/Client/Pet.js +++ b/samples/client/petstore/javascript-closure-angular/API/Client/Pet.js @@ -1,6 +1,7 @@ goog.provide('API.Client.Pet'); /** + * A pet for sale in the pet store * @record */ API.Client.Pet = function() {} diff --git a/samples/client/petstore/javascript-closure-angular/API/Client/PetApi.js b/samples/client/petstore/javascript-closure-angular/API/Client/PetApi.js index 06561bb4ab5..3d25f137ff6 100644 --- a/samples/client/petstore/javascript-closure-angular/API/Client/PetApi.js +++ b/samples/client/petstore/javascript-closure-angular/API/Client/PetApi.js @@ -5,7 +5,7 @@ * * This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters. * Version: 1.0.0 - * Generated by: class io.swagger.codegen.languages.JavascriptClosureAngularClientCodegen + * Generated by: io.swagger.codegen.languages.JavascriptClosureAngularClientCodegen */ /** * @license Apache 2.0 diff --git a/samples/client/petstore/javascript-closure-angular/API/Client/StoreApi.js b/samples/client/petstore/javascript-closure-angular/API/Client/StoreApi.js index d997cc15ce3..2b780ca475d 100644 --- a/samples/client/petstore/javascript-closure-angular/API/Client/StoreApi.js +++ b/samples/client/petstore/javascript-closure-angular/API/Client/StoreApi.js @@ -5,7 +5,7 @@ * * This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters. * Version: 1.0.0 - * Generated by: class io.swagger.codegen.languages.JavascriptClosureAngularClientCodegen + * Generated by: io.swagger.codegen.languages.JavascriptClosureAngularClientCodegen */ /** * @license Apache 2.0 diff --git a/samples/client/petstore/javascript-closure-angular/API/Client/Tag.js b/samples/client/petstore/javascript-closure-angular/API/Client/Tag.js index a65ee4658c8..19bb326f21f 100644 --- a/samples/client/petstore/javascript-closure-angular/API/Client/Tag.js +++ b/samples/client/petstore/javascript-closure-angular/API/Client/Tag.js @@ -1,6 +1,7 @@ goog.provide('API.Client.Tag'); /** + * A tag for a pet * @record */ API.Client.Tag = function() {} diff --git a/samples/client/petstore/javascript-closure-angular/API/Client/User.js b/samples/client/petstore/javascript-closure-angular/API/Client/User.js index 332c98a8028..9956225f75d 100644 --- a/samples/client/petstore/javascript-closure-angular/API/Client/User.js +++ b/samples/client/petstore/javascript-closure-angular/API/Client/User.js @@ -1,6 +1,7 @@ goog.provide('API.Client.User'); /** + * A User who is purchasing from the pet store * @record */ API.Client.User = function() {} diff --git a/samples/client/petstore/javascript-closure-angular/API/Client/UserApi.js b/samples/client/petstore/javascript-closure-angular/API/Client/UserApi.js index 5a146fc04d6..0f64823bb97 100644 --- a/samples/client/petstore/javascript-closure-angular/API/Client/UserApi.js +++ b/samples/client/petstore/javascript-closure-angular/API/Client/UserApi.js @@ -5,7 +5,7 @@ * * This is a sample server Petstore server. You can find out more about Swagger at [http://swagger.io](http://swagger.io) or on [irc.freenode.net, #swagger](http://swagger.io/irc/). For this sample, you can use the api key `special-key` to test the authorization filters. * Version: 1.0.0 - * Generated by: class io.swagger.codegen.languages.JavascriptClosureAngularClientCodegen + * Generated by: io.swagger.codegen.languages.JavascriptClosureAngularClientCodegen */ /** * @license Apache 2.0