ory-kratos-client 0.6.1.alpha1 → 0.7.1.alpha1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (214) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +83 -95
  3. data/docs/AdminApi.md +15 -13
  4. data/docs/AdminCreateIdentityBody.md +20 -0
  5. data/docs/AdminCreateSelfServiceRecoveryLinkBody.md +20 -0
  6. data/docs/AdminUpdateIdentityBody.md +22 -0
  7. data/docs/GenericError.md +14 -2
  8. data/docs/Identity.md +12 -2
  9. data/docs/IdentityCredentials.md +5 -1
  10. data/docs/IdentityState.md +15 -0
  11. data/docs/JsonError.md +18 -0
  12. data/docs/LoginFlow.md +5 -1
  13. data/docs/MetadataApi.md +254 -0
  14. data/docs/PublicApi.md +216 -210
  15. data/docs/RecoveryAddress.md +4 -0
  16. data/docs/SelfServiceError.md +24 -0
  17. data/docs/SelfServiceErrorContainer.md +24 -0
  18. data/docs/SelfServiceLoginFlow.md +36 -0
  19. data/docs/SelfServiceLogoutUrl.md +18 -0
  20. data/docs/SelfServiceRecoveryFlow.md +32 -0
  21. data/docs/SelfServiceRecoveryFlowState.md +15 -0
  22. data/docs/SelfServiceRecoveryLink.md +20 -0
  23. data/docs/SelfServiceRegistrationFlow.md +30 -0
  24. data/docs/SelfServiceSettingsFlow.md +34 -0
  25. data/docs/SelfServiceSettingsFlowState.md +15 -0
  26. data/docs/SelfServiceVerificationFlow.md +32 -0
  27. data/docs/SelfServiceVerificationFlowState.md +15 -0
  28. data/docs/Session.md +4 -4
  29. data/docs/SubmitSelfServiceLoginFlowBody.md +76 -0
  30. data/docs/SubmitSelfServiceLoginFlowWithOidcMethodBody.md +22 -0
  31. data/docs/SubmitSelfServiceLoginFlowWithPasswordMethodBody.md +24 -0
  32. data/docs/SubmitSelfServiceLogoutFlowWithoutBrowserBody.md +18 -0
  33. data/docs/SubmitSelfServiceRecoveryFlowBody.md +75 -0
  34. data/docs/SubmitSelfServiceRecoveryFlowWithLinkMethodBody.md +22 -0
  35. data/docs/SubmitSelfServiceRegistrationFlowBody.md +76 -0
  36. data/docs/SubmitSelfServiceRegistrationFlowWithOidcMethodBody.md +22 -0
  37. data/docs/SubmitSelfServiceRegistrationFlowWithPasswordMethodBody.md +24 -0
  38. data/docs/SubmitSelfServiceSettingsFlowBody.md +79 -0
  39. data/docs/SubmitSelfServiceSettingsFlowWithOidcMethodBody.md +24 -0
  40. data/docs/SubmitSelfServiceSettingsFlowWithPasswordMethodBody.md +22 -0
  41. data/docs/SubmitSelfServiceSettingsFlowWithProfileMethodBody.md +22 -0
  42. data/docs/SubmitSelfServiceVerificationFlowBody.md +75 -0
  43. data/docs/SubmitSelfServiceVerificationFlowWithLinkMethodBody.md +22 -0
  44. data/docs/SuccessfulSelfServiceLoginWithoutBrowser.md +20 -0
  45. data/docs/SuccessfulSelfServiceRegistrationWithoutBrowser.md +22 -0
  46. data/docs/SuccessfulSelfServiceSettingsWithoutBrowser.md +20 -0
  47. data/docs/UiNodeInputAttributes.md +1 -1
  48. data/docs/V0alpha1Api.md +2167 -0
  49. data/docs/VerifiableIdentityAddress.md +32 -0
  50. data/lib/ory-kratos-client.rb +38 -30
  51. data/lib/ory-kratos-client/api/admin_api.rb +7 -4
  52. data/lib/ory-kratos-client/api/metadata_api.rb +248 -0
  53. data/lib/ory-kratos-client/api/public_api.rb +171 -162
  54. data/lib/ory-kratos-client/api/v0alpha1_api.rb +2054 -0
  55. data/lib/ory-kratos-client/api_client.rb +1 -1
  56. data/lib/ory-kratos-client/api_error.rb +1 -1
  57. data/lib/ory-kratos-client/configuration.rb +9 -30
  58. data/lib/ory-kratos-client/models/admin_create_identity_body.rb +239 -0
  59. data/lib/ory-kratos-client/models/admin_create_self_service_recovery_link_body.rb +250 -0
  60. data/lib/ory-kratos-client/models/admin_update_identity_body.rb +248 -0
  61. data/lib/ory-kratos-client/models/authenticate_ok_body.rb +1 -1
  62. data/lib/ory-kratos-client/models/container_change_response_item.rb +1 -1
  63. data/lib/ory-kratos-client/models/container_create_created_body.rb +1 -1
  64. data/lib/ory-kratos-client/models/container_top_ok_body.rb +1 -1
  65. data/lib/ory-kratos-client/models/container_update_ok_body.rb +1 -1
  66. data/lib/ory-kratos-client/models/container_wait_ok_body.rb +1 -1
  67. data/lib/ory-kratos-client/models/container_wait_ok_body_error.rb +1 -1
  68. data/lib/ory-kratos-client/models/create_identity.rb +1 -1
  69. data/lib/ory-kratos-client/models/create_recovery_link.rb +1 -1
  70. data/lib/ory-kratos-client/models/error_container.rb +1 -1
  71. data/lib/ory-kratos-client/models/error_response.rb +1 -1
  72. data/lib/ory-kratos-client/models/generic_error.rb +76 -9
  73. data/lib/ory-kratos-client/models/generic_error_payload.rb +1 -1
  74. data/lib/ory-kratos-client/models/graph_driver_data.rb +1 -1
  75. data/lib/ory-kratos-client/models/health_not_ready_status.rb +1 -1
  76. data/lib/ory-kratos-client/models/health_status.rb +1 -1
  77. data/lib/ory-kratos-client/models/id_response.rb +1 -1
  78. data/lib/ory-kratos-client/models/identity.rb +57 -9
  79. data/lib/ory-kratos-client/models/identity_credentials.rb +25 -5
  80. data/lib/ory-kratos-client/models/identity_state.rb +37 -0
  81. data/lib/ory-kratos-client/models/image_delete_response_item.rb +1 -1
  82. data/lib/ory-kratos-client/models/image_summary.rb +1 -1
  83. data/lib/ory-kratos-client/models/inline_response200.rb +1 -1
  84. data/lib/ory-kratos-client/models/inline_response2001.rb +1 -1
  85. data/lib/ory-kratos-client/models/inline_response503.rb +1 -1
  86. data/lib/ory-kratos-client/models/json_error.rb +224 -0
  87. data/lib/ory-kratos-client/models/login_flow.rb +25 -5
  88. data/lib/ory-kratos-client/models/login_via_api_response.rb +1 -1
  89. data/lib/ory-kratos-client/models/meta.rb +1 -1
  90. data/lib/ory-kratos-client/models/plugin.rb +1 -1
  91. data/lib/ory-kratos-client/models/plugin_config.rb +1 -1
  92. data/lib/ory-kratos-client/models/plugin_config_args.rb +1 -1
  93. data/lib/ory-kratos-client/models/plugin_config_interface.rb +1 -1
  94. data/lib/ory-kratos-client/models/plugin_config_linux.rb +1 -1
  95. data/lib/ory-kratos-client/models/plugin_config_network.rb +1 -1
  96. data/lib/ory-kratos-client/models/plugin_config_rootfs.rb +1 -1
  97. data/lib/ory-kratos-client/models/plugin_config_user.rb +1 -1
  98. data/lib/ory-kratos-client/models/plugin_device.rb +1 -1
  99. data/lib/ory-kratos-client/models/plugin_env.rb +1 -1
  100. data/lib/ory-kratos-client/models/plugin_interface_type.rb +1 -1
  101. data/lib/ory-kratos-client/models/plugin_mount.rb +1 -1
  102. data/lib/ory-kratos-client/models/plugin_settings.rb +1 -1
  103. data/lib/ory-kratos-client/models/port.rb +1 -1
  104. data/lib/ory-kratos-client/models/recovery_address.rb +22 -2
  105. data/lib/ory-kratos-client/models/recovery_flow.rb +1 -1
  106. data/lib/ory-kratos-client/models/recovery_link.rb +1 -1
  107. data/lib/ory-kratos-client/models/registration_flow.rb +1 -1
  108. data/lib/ory-kratos-client/models/registration_via_api_response.rb +1 -1
  109. data/lib/ory-kratos-client/models/revoke_session.rb +1 -1
  110. data/lib/ory-kratos-client/models/self_service_error.rb +252 -0
  111. data/lib/ory-kratos-client/models/self_service_error_container.rb +260 -0
  112. data/lib/ory-kratos-client/models/self_service_login_flow.rb +338 -0
  113. data/lib/ory-kratos-client/models/self_service_logout_url.rb +219 -0
  114. data/lib/ory-kratos-client/models/self_service_recovery_flow.rb +317 -0
  115. data/lib/ory-kratos-client/models/self_service_recovery_flow_state.rb +38 -0
  116. data/lib/ory-kratos-client/models/self_service_recovery_link.rb +234 -0
  117. data/lib/ory-kratos-client/models/self_service_registration_flow.rb +302 -0
  118. data/lib/ory-kratos-client/models/self_service_settings_flow.rb +331 -0
  119. data/lib/ory-kratos-client/models/self_service_settings_flow_state.rb +37 -0
  120. data/lib/ory-kratos-client/models/self_service_verification_flow.rb +307 -0
  121. data/lib/ory-kratos-client/models/self_service_verification_flow_state.rb +38 -0
  122. data/lib/ory-kratos-client/models/service_update_response.rb +1 -1
  123. data/lib/ory-kratos-client/models/session.rb +6 -16
  124. data/lib/ory-kratos-client/models/settings_flow.rb +1 -1
  125. data/lib/ory-kratos-client/models/settings_profile_form_config.rb +1 -1
  126. data/lib/ory-kratos-client/models/settings_via_api_response.rb +1 -1
  127. data/lib/ory-kratos-client/models/submit_self_service_browser_settings_oidc_flow_payload.rb +1 -1
  128. data/lib/ory-kratos-client/models/submit_self_service_login_flow.rb +1 -1
  129. data/lib/ory-kratos-client/models/submit_self_service_login_flow_body.rb +54 -0
  130. data/lib/ory-kratos-client/models/submit_self_service_login_flow_with_oidc_method_body.rb +250 -0
  131. data/lib/ory-kratos-client/models/submit_self_service_login_flow_with_password_method.rb +1 -1
  132. data/lib/ory-kratos-client/models/submit_self_service_login_flow_with_password_method_body.rb +298 -0
  133. data/lib/ory-kratos-client/models/submit_self_service_logout_flow_without_browser_body.rb +225 -0
  134. data/lib/ory-kratos-client/models/submit_self_service_recovery_flow_body.rb +53 -0
  135. data/lib/ory-kratos-client/models/submit_self_service_recovery_flow_with_link_method.rb +1 -1
  136. data/lib/ory-kratos-client/models/submit_self_service_recovery_flow_with_link_method_body.rb +283 -0
  137. data/lib/ory-kratos-client/models/submit_self_service_registration_flow.rb +1 -1
  138. data/lib/ory-kratos-client/models/submit_self_service_registration_flow_body.rb +54 -0
  139. data/lib/ory-kratos-client/models/submit_self_service_registration_flow_with_oidc_method_body.rb +250 -0
  140. data/lib/ory-kratos-client/models/submit_self_service_registration_flow_with_password_method.rb +22 -1
  141. data/lib/ory-kratos-client/models/submit_self_service_registration_flow_with_password_method_body.rb +299 -0
  142. data/lib/ory-kratos-client/models/submit_self_service_settings_flow.rb +1 -1
  143. data/lib/ory-kratos-client/models/submit_self_service_settings_flow_body.rb +56 -0
  144. data/lib/ory-kratos-client/models/submit_self_service_settings_flow_with_oidc_method_body.rb +255 -0
  145. data/lib/ory-kratos-client/models/submit_self_service_settings_flow_with_password_method.rb +1 -1
  146. data/lib/ory-kratos-client/models/submit_self_service_settings_flow_with_password_method_body.rb +283 -0
  147. data/lib/ory-kratos-client/models/submit_self_service_settings_flow_with_profile_method.rb +1 -1
  148. data/lib/ory-kratos-client/models/submit_self_service_settings_flow_with_profile_method_body.rb +250 -0
  149. data/lib/ory-kratos-client/models/submit_self_service_verification_flow_body.rb +54 -0
  150. data/lib/ory-kratos-client/models/submit_self_service_verification_flow_with_link_method.rb +1 -1
  151. data/lib/ory-kratos-client/models/submit_self_service_verification_flow_with_link_method_body.rb +283 -0
  152. data/lib/ory-kratos-client/models/successful_self_service_login_without_browser.rb +234 -0
  153. data/lib/ory-kratos-client/models/successful_self_service_registration_without_browser.rb +243 -0
  154. data/lib/ory-kratos-client/models/successful_self_service_settings_without_browser.rb +238 -0
  155. data/lib/ory-kratos-client/models/ui_container.rb +1 -1
  156. data/lib/ory-kratos-client/models/ui_node.rb +1 -1
  157. data/lib/ory-kratos-client/models/ui_node_anchor_attributes.rb +1 -1
  158. data/lib/ory-kratos-client/models/ui_node_attributes.rb +1 -1
  159. data/lib/ory-kratos-client/models/ui_node_image_attributes.rb +1 -1
  160. data/lib/ory-kratos-client/models/ui_node_input_attributes.rb +4 -2
  161. data/lib/ory-kratos-client/models/ui_node_input_attributes_value.rb +1 -1
  162. data/lib/ory-kratos-client/models/ui_node_text_attributes.rb +1 -1
  163. data/lib/ory-kratos-client/models/ui_text.rb +1 -1
  164. data/lib/ory-kratos-client/models/update_identity.rb +1 -1
  165. data/lib/ory-kratos-client/models/verifiable_address.rb +1 -1
  166. data/lib/ory-kratos-client/models/verifiable_identity_address.rb +313 -0
  167. data/lib/ory-kratos-client/models/verification_flow.rb +1 -1
  168. data/lib/ory-kratos-client/models/version.rb +1 -1
  169. data/lib/ory-kratos-client/models/volume.rb +1 -1
  170. data/lib/ory-kratos-client/models/volume_usage_data.rb +1 -1
  171. data/lib/ory-kratos-client/version.rb +2 -2
  172. data/ory-kratos-client.gemspec +1 -1
  173. data/spec/api/metadata_api_spec.rb +79 -0
  174. data/spec/api/v0alpha1_api_spec.rb +429 -0
  175. data/spec/api_client_spec.rb +1 -1
  176. data/spec/configuration_spec.rb +4 -4
  177. data/spec/models/admin_create_identity_body_spec.rb +40 -0
  178. data/spec/models/admin_create_self_service_recovery_link_body_spec.rb +40 -0
  179. data/spec/models/admin_update_identity_body_spec.rb +46 -0
  180. data/spec/models/identity_state_spec.rb +28 -0
  181. data/spec/models/json_error_spec.rb +34 -0
  182. data/spec/models/self_service_error_container_spec.rb +52 -0
  183. data/spec/models/self_service_error_spec.rb +52 -0
  184. data/spec/models/self_service_login_flow_spec.rb +88 -0
  185. data/spec/models/self_service_logout_url_spec.rb +34 -0
  186. data/spec/models/self_service_recovery_flow_spec.rb +76 -0
  187. data/spec/models/self_service_recovery_flow_state_spec.rb +28 -0
  188. data/spec/models/self_service_recovery_link_spec.rb +40 -0
  189. data/spec/models/self_service_registration_flow_spec.rb +70 -0
  190. data/spec/models/self_service_settings_flow_spec.rb +82 -0
  191. data/spec/models/self_service_settings_flow_state_spec.rb +28 -0
  192. data/spec/models/self_service_verification_flow_spec.rb +76 -0
  193. data/spec/models/self_service_verification_flow_state_spec.rb +28 -0
  194. data/spec/models/submit_self_service_login_flow_body_spec.rb +43 -0
  195. data/spec/models/submit_self_service_login_flow_with_oidc_method_body_spec.rb +46 -0
  196. data/spec/models/submit_self_service_login_flow_with_password_method_body_spec.rb +56 -0
  197. data/spec/models/submit_self_service_logout_flow_without_browser_body_spec.rb +34 -0
  198. data/spec/models/submit_self_service_recovery_flow_body_spec.rb +43 -0
  199. data/spec/models/submit_self_service_recovery_flow_with_link_method_body_spec.rb +50 -0
  200. data/spec/models/submit_self_service_registration_flow_body_spec.rb +43 -0
  201. data/spec/models/submit_self_service_registration_flow_with_oidc_method_body_spec.rb +46 -0
  202. data/spec/models/submit_self_service_registration_flow_with_password_method_body_spec.rb +56 -0
  203. data/spec/models/submit_self_service_settings_flow_body_spec.rb +43 -0
  204. data/spec/models/submit_self_service_settings_flow_with_oidc_method_body_spec.rb +52 -0
  205. data/spec/models/submit_self_service_settings_flow_with_password_method_body_spec.rb +50 -0
  206. data/spec/models/submit_self_service_settings_flow_with_profile_method_body_spec.rb +46 -0
  207. data/spec/models/submit_self_service_verification_flow_body_spec.rb +43 -0
  208. data/spec/models/submit_self_service_verification_flow_with_link_method_body_spec.rb +50 -0
  209. data/spec/models/successful_self_service_login_without_browser_spec.rb +40 -0
  210. data/spec/models/successful_self_service_registration_without_browser_spec.rb +46 -0
  211. data/spec/models/successful_self_service_settings_without_browser_spec.rb +40 -0
  212. data/spec/models/verifiable_identity_address_spec.rb +76 -0
  213. data/spec/spec_helper.rb +1 -1
  214. metadata +155 -3
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.6.3-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -19,6 +19,9 @@ module OryHydraClient
19
19
  # and so on.
20
20
  attr_accessor :active
21
21
 
22
+ # CreatedAt is a helper struct field for gobuffalo.pop.
23
+ attr_accessor :created_at
24
+
22
25
  # ExpiresAt is the time (UTC) when the flow expires. If the user still wishes to log in, a new flow has to be initiated.
23
26
  attr_accessor :expires_at
24
27
 
@@ -38,17 +41,22 @@ module OryHydraClient
38
41
 
39
42
  attr_accessor :ui
40
43
 
44
+ # UpdatedAt is a helper struct field for gobuffalo.pop.
45
+ attr_accessor :updated_at
46
+
41
47
  # Attribute mapping from ruby-style variable name to JSON key.
42
48
  def self.attribute_map
43
49
  {
44
50
  :'active' => :'active',
51
+ :'created_at' => :'created_at',
45
52
  :'expires_at' => :'expires_at',
46
53
  :'forced' => :'forced',
47
54
  :'id' => :'id',
48
55
  :'issued_at' => :'issued_at',
49
56
  :'request_url' => :'request_url',
50
57
  :'type' => :'type',
51
- :'ui' => :'ui'
58
+ :'ui' => :'ui',
59
+ :'updated_at' => :'updated_at'
52
60
  }
53
61
  end
54
62
 
@@ -61,13 +69,15 @@ module OryHydraClient
61
69
  def self.openapi_types
62
70
  {
63
71
  :'active' => :'String',
72
+ :'created_at' => :'Time',
64
73
  :'expires_at' => :'Time',
65
74
  :'forced' => :'Boolean',
66
75
  :'id' => :'String',
67
76
  :'issued_at' => :'Time',
68
77
  :'request_url' => :'String',
69
78
  :'type' => :'String',
70
- :'ui' => :'UiContainer'
79
+ :'ui' => :'UiContainer',
80
+ :'updated_at' => :'Time'
71
81
  }
72
82
  end
73
83
 
@@ -96,6 +106,10 @@ module OryHydraClient
96
106
  self.active = attributes[:'active']
97
107
  end
98
108
 
109
+ if attributes.key?(:'created_at')
110
+ self.created_at = attributes[:'created_at']
111
+ end
112
+
99
113
  if attributes.key?(:'expires_at')
100
114
  self.expires_at = attributes[:'expires_at']
101
115
  end
@@ -123,6 +137,10 @@ module OryHydraClient
123
137
  if attributes.key?(:'ui')
124
138
  self.ui = attributes[:'ui']
125
139
  end
140
+
141
+ if attributes.key?(:'updated_at')
142
+ self.updated_at = attributes[:'updated_at']
143
+ end
126
144
  end
127
145
 
128
146
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -174,13 +192,15 @@ module OryHydraClient
174
192
  return true if self.equal?(o)
175
193
  self.class == o.class &&
176
194
  active == o.active &&
195
+ created_at == o.created_at &&
177
196
  expires_at == o.expires_at &&
178
197
  forced == o.forced &&
179
198
  id == o.id &&
180
199
  issued_at == o.issued_at &&
181
200
  request_url == o.request_url &&
182
201
  type == o.type &&
183
- ui == o.ui
202
+ ui == o.ui &&
203
+ updated_at == o.updated_at
184
204
  end
185
205
 
186
206
  # @see the `==` method
@@ -192,7 +212,7 @@ module OryHydraClient
192
212
  # Calculates hash code according to all attributes.
193
213
  # @return [Integer] Hash code
194
214
  def hash
195
- [active, expires_at, forced, id, issued_at, request_url, type, ui].hash
215
+ [active, created_at, expires_at, forced, id, issued_at, request_url, type, ui, updated_at].hash
196
216
  end
197
217
 
198
218
  # Builds the object from hash
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.6.3-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.7.1-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.7.1-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.7.1-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.7.1-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.7.1-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.7.1-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.7.1-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.7.1-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.7.1-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.7.1-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.7.1-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.7.1-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.7.1-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.7.1-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.7.1-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.7.1-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -15,8 +15,14 @@ require 'time'
15
15
 
16
16
  module OryHydraClient
17
17
  class RecoveryAddress
18
+ # CreatedAt is a helper struct field for gobuffalo.pop.
19
+ attr_accessor :created_at
20
+
18
21
  attr_accessor :id
19
22
 
23
+ # UpdatedAt is a helper struct field for gobuffalo.pop.
24
+ attr_accessor :updated_at
25
+
20
26
  attr_accessor :value
21
27
 
22
28
  attr_accessor :via
@@ -24,7 +30,9 @@ module OryHydraClient
24
30
  # Attribute mapping from ruby-style variable name to JSON key.
25
31
  def self.attribute_map
26
32
  {
33
+ :'created_at' => :'created_at',
27
34
  :'id' => :'id',
35
+ :'updated_at' => :'updated_at',
28
36
  :'value' => :'value',
29
37
  :'via' => :'via'
30
38
  }
@@ -38,7 +46,9 @@ module OryHydraClient
38
46
  # Attribute type mapping.
39
47
  def self.openapi_types
40
48
  {
49
+ :'created_at' => :'Time',
41
50
  :'id' => :'String',
51
+ :'updated_at' => :'Time',
42
52
  :'value' => :'String',
43
53
  :'via' => :'String'
44
54
  }
@@ -65,10 +75,18 @@ module OryHydraClient
65
75
  h[k.to_sym] = v
66
76
  }
67
77
 
78
+ if attributes.key?(:'created_at')
79
+ self.created_at = attributes[:'created_at']
80
+ end
81
+
68
82
  if attributes.key?(:'id')
69
83
  self.id = attributes[:'id']
70
84
  end
71
85
 
86
+ if attributes.key?(:'updated_at')
87
+ self.updated_at = attributes[:'updated_at']
88
+ end
89
+
72
90
  if attributes.key?(:'value')
73
91
  self.value = attributes[:'value']
74
92
  end
@@ -111,7 +129,9 @@ module OryHydraClient
111
129
  def ==(o)
112
130
  return true if self.equal?(o)
113
131
  self.class == o.class &&
132
+ created_at == o.created_at &&
114
133
  id == o.id &&
134
+ updated_at == o.updated_at &&
115
135
  value == o.value &&
116
136
  via == o.via
117
137
  end
@@ -125,7 +145,7 @@ module OryHydraClient
125
145
  # Calculates hash code according to all attributes.
126
146
  # @return [Integer] Hash code
127
147
  def hash
128
- [id, value, via].hash
148
+ [created_at, id, updated_at, value, via].hash
129
149
  end
130
150
 
131
151
  # Builds the object from hash
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.6.3-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.6.3-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.6.3-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.6.3-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -3,7 +3,7 @@
3
3
 
4
4
  #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
5
 
6
- The version of the OpenAPI document: v0.6.1-alpha.1
6
+ The version of the OpenAPI document: v0.6.3-alpha.1
7
7
  Contact: hi@ory.sh
8
8
  Generated by: https://openapi-generator.tech
9
9
  OpenAPI Generator version: 5.1.1
@@ -0,0 +1,252 @@
1
+ =begin
2
+ #Ory Kratos API
3
+
4
+ #Documentation for all public and administrative Ory Kratos APIs. Public and administrative APIs are exposed on different ports. Public APIs can face the public internet without any protection while administrative APIs should never be exposed without prior authorization. To protect the administative API port you should use something like Nginx, Ory Oathkeeper, or any other technology capable of authorizing incoming requests.
5
+
6
+ The version of the OpenAPI document: v0.7.1-alpha.1
7
+ Contact: hi@ory.sh
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.1.1
10
+
11
+ =end
12
+
13
+ require 'date'
14
+ require 'time'
15
+
16
+ module OryHydraClient
17
+ class SelfServiceError
18
+ # CreatedAt is a helper struct field for gobuffalo.pop.
19
+ attr_accessor :created_at
20
+
21
+ attr_accessor :error
22
+
23
+ attr_accessor :id
24
+
25
+ # UpdatedAt is a helper struct field for gobuffalo.pop.
26
+ attr_accessor :updated_at
27
+
28
+ # Attribute mapping from ruby-style variable name to JSON key.
29
+ def self.attribute_map
30
+ {
31
+ :'created_at' => :'created_at',
32
+ :'error' => :'error',
33
+ :'id' => :'id',
34
+ :'updated_at' => :'updated_at'
35
+ }
36
+ end
37
+
38
+ # Returns all the JSON keys this model knows about
39
+ def self.acceptable_attributes
40
+ attribute_map.values
41
+ end
42
+
43
+ # Attribute type mapping.
44
+ def self.openapi_types
45
+ {
46
+ :'created_at' => :'Time',
47
+ :'error' => :'Object',
48
+ :'id' => :'String',
49
+ :'updated_at' => :'Time'
50
+ }
51
+ end
52
+
53
+ # List of attributes with nullable: true
54
+ def self.openapi_nullable
55
+ Set.new([
56
+ ])
57
+ end
58
+
59
+ # Initializes the object
60
+ # @param [Hash] attributes Model attributes in the form of hash
61
+ def initialize(attributes = {})
62
+ if (!attributes.is_a?(Hash))
63
+ fail ArgumentError, "The input argument (attributes) must be a hash in `OryHydraClient::SelfServiceError` initialize method"
64
+ end
65
+
66
+ # check to see if the attribute exists and convert string to symbol for hash key
67
+ attributes = attributes.each_with_object({}) { |(k, v), h|
68
+ if (!self.class.attribute_map.key?(k.to_sym))
69
+ fail ArgumentError, "`#{k}` is not a valid attribute in `OryHydraClient::SelfServiceError`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
70
+ end
71
+ h[k.to_sym] = v
72
+ }
73
+
74
+ if attributes.key?(:'created_at')
75
+ self.created_at = attributes[:'created_at']
76
+ end
77
+
78
+ if attributes.key?(:'error')
79
+ self.error = attributes[:'error']
80
+ end
81
+
82
+ if attributes.key?(:'id')
83
+ self.id = attributes[:'id']
84
+ end
85
+
86
+ if attributes.key?(:'updated_at')
87
+ self.updated_at = attributes[:'updated_at']
88
+ end
89
+ end
90
+
91
+ # Show invalid properties with the reasons. Usually used together with valid?
92
+ # @return Array for valid properties with the reasons
93
+ def list_invalid_properties
94
+ invalid_properties = Array.new
95
+ if @id.nil?
96
+ invalid_properties.push('invalid value for "id", id cannot be nil.')
97
+ end
98
+
99
+ invalid_properties
100
+ end
101
+
102
+ # Check to see if the all the properties in the model are valid
103
+ # @return true if the model is valid
104
+ def valid?
105
+ return false if @id.nil?
106
+ true
107
+ end
108
+
109
+ # Checks equality by comparing each attribute.
110
+ # @param [Object] Object to be compared
111
+ def ==(o)
112
+ return true if self.equal?(o)
113
+ self.class == o.class &&
114
+ created_at == o.created_at &&
115
+ error == o.error &&
116
+ id == o.id &&
117
+ updated_at == o.updated_at
118
+ end
119
+
120
+ # @see the `==` method
121
+ # @param [Object] Object to be compared
122
+ def eql?(o)
123
+ self == o
124
+ end
125
+
126
+ # Calculates hash code according to all attributes.
127
+ # @return [Integer] Hash code
128
+ def hash
129
+ [created_at, error, id, updated_at].hash
130
+ end
131
+
132
+ # Builds the object from hash
133
+ # @param [Hash] attributes Model attributes in the form of hash
134
+ # @return [Object] Returns the model itself
135
+ def self.build_from_hash(attributes)
136
+ new.build_from_hash(attributes)
137
+ end
138
+
139
+ # Builds the object from hash
140
+ # @param [Hash] attributes Model attributes in the form of hash
141
+ # @return [Object] Returns the model itself
142
+ def build_from_hash(attributes)
143
+ return nil unless attributes.is_a?(Hash)
144
+ self.class.openapi_types.each_pair do |key, type|
145
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
146
+ self.send("#{key}=", nil)
147
+ elsif type =~ /\AArray<(.*)>/i
148
+ # check to ensure the input is an array given that the attribute
149
+ # is documented as an array but the input is not
150
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
151
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
152
+ end
153
+ elsif !attributes[self.class.attribute_map[key]].nil?
154
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
155
+ end
156
+ end
157
+
158
+ self
159
+ end
160
+
161
+ # Deserializes the data based on type
162
+ # @param string type Data type
163
+ # @param string value Value to be deserialized
164
+ # @return [Object] Deserialized data
165
+ def _deserialize(type, value)
166
+ case type.to_sym
167
+ when :Time
168
+ Time.parse(value)
169
+ when :Date
170
+ Date.parse(value)
171
+ when :String
172
+ value.to_s
173
+ when :Integer
174
+ value.to_i
175
+ when :Float
176
+ value.to_f
177
+ when :Boolean
178
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
179
+ true
180
+ else
181
+ false
182
+ end
183
+ when :Object
184
+ # generic object (usually a Hash), return directly
185
+ value
186
+ when /\AArray<(?<inner_type>.+)>\z/
187
+ inner_type = Regexp.last_match[:inner_type]
188
+ value.map { |v| _deserialize(inner_type, v) }
189
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
190
+ k_type = Regexp.last_match[:k_type]
191
+ v_type = Regexp.last_match[:v_type]
192
+ {}.tap do |hash|
193
+ value.each do |k, v|
194
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
195
+ end
196
+ end
197
+ else # model
198
+ # models (e.g. Pet) or oneOf
199
+ klass = OryHydraClient.const_get(type)
200
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
201
+ end
202
+ end
203
+
204
+ # Returns the string representation of the object
205
+ # @return [String] String presentation of the object
206
+ def to_s
207
+ to_hash.to_s
208
+ end
209
+
210
+ # to_body is an alias to to_hash (backward compatibility)
211
+ # @return [Hash] Returns the object in the form of hash
212
+ def to_body
213
+ to_hash
214
+ end
215
+
216
+ # Returns the object in the form of hash
217
+ # @return [Hash] Returns the object in the form of hash
218
+ def to_hash
219
+ hash = {}
220
+ self.class.attribute_map.each_pair do |attr, param|
221
+ value = self.send(attr)
222
+ if value.nil?
223
+ is_nullable = self.class.openapi_nullable.include?(attr)
224
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
225
+ end
226
+
227
+ hash[param] = _to_hash(value)
228
+ end
229
+ hash
230
+ end
231
+
232
+ # Outputs non-array value in the form of hash
233
+ # For object, use to_hash. Otherwise, just return the value
234
+ # @param [Object] value Any valid value
235
+ # @return [Hash] Returns the value in the form of hash
236
+ def _to_hash(value)
237
+ if value.is_a?(Array)
238
+ value.compact.map { |v| _to_hash(v) }
239
+ elsif value.is_a?(Hash)
240
+ {}.tap do |hash|
241
+ value.each { |k, v| hash[k] = _to_hash(v) }
242
+ end
243
+ elsif value.respond_to? :to_hash
244
+ value.to_hash
245
+ else
246
+ value
247
+ end
248
+ end
249
+
250
+ end
251
+
252
+ end