pokeapi_client 1.1.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (120) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +93 -24
  3. data/README.md +5 -5
  4. data/bin/byebug +1 -12
  5. data/bin/coderay +1 -12
  6. data/bin/htmldiff +1 -12
  7. data/bin/ldiff +1 -12
  8. data/bin/pry +1 -12
  9. data/bin/racc +1 -12
  10. data/bin/rake +1 -12
  11. data/bin/rspec +1 -12
  12. data/bin/rubocop +1 -12
  13. data/bin/ruby-parse +1 -12
  14. data/bin/ruby-rewrite +1 -12
  15. data/lib/pokeapi_client/api/ability_api.rb +3 -3
  16. data/lib/pokeapi_client/api/berry_api.rb +3 -3
  17. data/lib/pokeapi_client/api/berry_firmness_api.rb +3 -3
  18. data/lib/pokeapi_client/api/berry_flavor_api.rb +3 -3
  19. data/lib/pokeapi_client/api/characteristic_api.rb +3 -3
  20. data/lib/pokeapi_client/api/contest_effect_api.rb +3 -3
  21. data/lib/pokeapi_client/api/contest_type_api.rb +3 -3
  22. data/lib/pokeapi_client/api/egg_group_api.rb +3 -3
  23. data/lib/pokeapi_client/api/encounter_condition_api.rb +3 -3
  24. data/lib/pokeapi_client/api/encounter_condition_value_api.rb +3 -3
  25. data/lib/pokeapi_client/api/encounter_method_api.rb +3 -3
  26. data/lib/pokeapi_client/api/evolution_chain_api.rb +3 -3
  27. data/lib/pokeapi_client/api/evolution_trigger_api.rb +3 -3
  28. data/lib/pokeapi_client/api/gender_api.rb +3 -3
  29. data/lib/pokeapi_client/api/generation_api.rb +3 -3
  30. data/lib/pokeapi_client/api/growth_rate_api.rb +3 -3
  31. data/lib/pokeapi_client/api/item_api.rb +3 -3
  32. data/lib/pokeapi_client/api/item_attribute_api.rb +3 -3
  33. data/lib/pokeapi_client/api/item_category_api.rb +3 -3
  34. data/lib/pokeapi_client/api/item_fling_effect_api.rb +3 -3
  35. data/lib/pokeapi_client/api/item_pocket_api.rb +3 -3
  36. data/lib/pokeapi_client/api/language_api.rb +3 -3
  37. data/lib/pokeapi_client/api/location_api.rb +3 -3
  38. data/lib/pokeapi_client/api/location_area_api.rb +3 -3
  39. data/lib/pokeapi_client/api/machine_api.rb +3 -3
  40. data/lib/pokeapi_client/api/move_ailment_api.rb +3 -3
  41. data/lib/pokeapi_client/api/move_api.rb +3 -3
  42. data/lib/pokeapi_client/api/move_battle_style_api.rb +3 -3
  43. data/lib/pokeapi_client/api/move_category_api.rb +3 -3
  44. data/lib/pokeapi_client/api/move_damage_class_api.rb +3 -3
  45. data/lib/pokeapi_client/api/move_learn_method_api.rb +3 -3
  46. data/lib/pokeapi_client/api/move_target_api.rb +3 -3
  47. data/lib/pokeapi_client/api/nature_api.rb +3 -3
  48. data/lib/pokeapi_client/api/pal_park_area_api.rb +3 -3
  49. data/lib/pokeapi_client/api/pokeathlon_stat_api.rb +3 -3
  50. data/lib/pokeapi_client/api/pokedex_api.rb +3 -3
  51. data/lib/pokeapi_client/api/pokemon_api.rb +3 -3
  52. data/lib/pokeapi_client/api/pokemon_color_api.rb +3 -3
  53. data/lib/pokeapi_client/api/pokemon_form_api.rb +3 -3
  54. data/lib/pokeapi_client/api/pokemon_habitat_api.rb +3 -3
  55. data/lib/pokeapi_client/api/pokemon_shape_api.rb +3 -3
  56. data/lib/pokeapi_client/api/pokemon_species_api.rb +3 -3
  57. data/lib/pokeapi_client/api/region_api.rb +3 -3
  58. data/lib/pokeapi_client/api/stat_api.rb +3 -3
  59. data/lib/pokeapi_client/api/super_contest_effect_api.rb +3 -3
  60. data/lib/pokeapi_client/api/type_api.rb +3 -3
  61. data/lib/pokeapi_client/api/version_api.rb +3 -3
  62. data/lib/pokeapi_client/api/version_group_api.rb +3 -3
  63. data/lib/pokeapi_client/api_client.rb +14 -11
  64. data/lib/pokeapi_client/api_error.rb +1 -1
  65. data/lib/pokeapi_client/api_model_base.rb +88 -0
  66. data/lib/pokeapi_client/configuration.rb +11 -1
  67. data/lib/pokeapi_client/version.rb +2 -2
  68. data/lib/pokeapi_client.rb +2 -1
  69. data/pokeapi_client.gemspec +1 -1
  70. data/spec/api/ability_api_spec.rb +1 -1
  71. data/spec/api/berry_api_spec.rb +1 -1
  72. data/spec/api/berry_firmness_api_spec.rb +1 -1
  73. data/spec/api/berry_flavor_api_spec.rb +1 -1
  74. data/spec/api/characteristic_api_spec.rb +1 -1
  75. data/spec/api/contest_effect_api_spec.rb +1 -1
  76. data/spec/api/contest_type_api_spec.rb +1 -1
  77. data/spec/api/egg_group_api_spec.rb +1 -1
  78. data/spec/api/encounter_condition_api_spec.rb +1 -1
  79. data/spec/api/encounter_condition_value_api_spec.rb +1 -1
  80. data/spec/api/encounter_method_api_spec.rb +1 -1
  81. data/spec/api/evolution_chain_api_spec.rb +1 -1
  82. data/spec/api/evolution_trigger_api_spec.rb +1 -1
  83. data/spec/api/gender_api_spec.rb +1 -1
  84. data/spec/api/generation_api_spec.rb +1 -1
  85. data/spec/api/growth_rate_api_spec.rb +1 -1
  86. data/spec/api/item_api_spec.rb +1 -1
  87. data/spec/api/item_attribute_api_spec.rb +1 -1
  88. data/spec/api/item_category_api_spec.rb +1 -1
  89. data/spec/api/item_fling_effect_api_spec.rb +1 -1
  90. data/spec/api/item_pocket_api_spec.rb +1 -1
  91. data/spec/api/language_api_spec.rb +1 -1
  92. data/spec/api/location_api_spec.rb +1 -1
  93. data/spec/api/location_area_api_spec.rb +1 -1
  94. data/spec/api/machine_api_spec.rb +1 -1
  95. data/spec/api/move_ailment_api_spec.rb +1 -1
  96. data/spec/api/move_api_spec.rb +1 -1
  97. data/spec/api/move_battle_style_api_spec.rb +1 -1
  98. data/spec/api/move_category_api_spec.rb +1 -1
  99. data/spec/api/move_damage_class_api_spec.rb +1 -1
  100. data/spec/api/move_learn_method_api_spec.rb +1 -1
  101. data/spec/api/move_target_api_spec.rb +1 -1
  102. data/spec/api/nature_api_spec.rb +1 -1
  103. data/spec/api/pal_park_area_api_spec.rb +1 -1
  104. data/spec/api/pokeathlon_stat_api_spec.rb +1 -1
  105. data/spec/api/pokedex_api_spec.rb +1 -1
  106. data/spec/api/pokemon_api_spec.rb +1 -1
  107. data/spec/api/pokemon_color_api_spec.rb +1 -1
  108. data/spec/api/pokemon_form_api_spec.rb +1 -1
  109. data/spec/api/pokemon_habitat_api_spec.rb +1 -1
  110. data/spec/api/pokemon_shape_api_spec.rb +1 -1
  111. data/spec/api/pokemon_species_api_spec.rb +1 -1
  112. data/spec/api/region_api_spec.rb +1 -1
  113. data/spec/api/stat_api_spec.rb +1 -1
  114. data/spec/api/super_contest_effect_api_spec.rb +1 -1
  115. data/spec/api/type_api_spec.rb +1 -1
  116. data/spec/api/version_api_spec.rb +1 -1
  117. data/spec/api/version_group_api_spec.rb +1 -1
  118. data/spec/spec_helper.rb +1 -1
  119. metadata +43 -43
  120. data/bin/bundle +0 -109
@@ -6,10 +6,10 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
13
13
  module PokeApiClient
14
- VERSION = '1.1.0'
14
+ VERSION = '1.2.0'
15
15
  end
@@ -6,13 +6,14 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
13
13
  # Common files
14
14
  require 'pokeapi_client/api_client'
15
15
  require 'pokeapi_client/api_error'
16
+ require 'pokeapi_client/api_model_base'
16
17
  require 'pokeapi_client/version'
17
18
  require 'pokeapi_client/configuration'
18
19
 
@@ -8,7 +8,7 @@
8
8
  The version of the OpenAPI document: 20220523
9
9
  Contact: blah+oapicf@cliffano.com
10
10
  Generated by: https://openapi-generator.tech
11
- Generator version: 7.6.0
11
+ Generator version: 7.18.0
12
12
 
13
13
  =end
14
14
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12
 
data/spec/spec_helper.rb CHANGED
@@ -6,7 +6,7 @@
6
6
  The version of the OpenAPI document: 20220523
7
7
  Contact: blah+oapicf@cliffano.com
8
8
  Generated by: https://openapi-generator.tech
9
- Generator version: 7.6.0
9
+ Generator version: 7.18.0
10
10
 
11
11
  =end
12
12