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
@@ -99,6 +99,11 @@ module OryHydraClient
99
99
  invalid_properties.push('invalid value for "method", method cannot be nil.')
100
100
  end
101
101
 
102
+ pattern = Regexp.new(/^password$/)
103
+ if @method !~ pattern
104
+ invalid_properties.push("invalid value for \"method\", must conform to the pattern #{pattern}.")
105
+ end
106
+
102
107
  invalid_properties
103
108
  end
104
109
 
@@ -106,9 +111,25 @@ module OryHydraClient
106
111
  # @return true if the model is valid
107
112
  def valid?
108
113
  return false if @method.nil?
114
+ return false if @method !~ Regexp.new(/^password$/)
109
115
  true
110
116
  end
111
117
 
118
+ # Custom attribute writer method with validation
119
+ # @param [Object] method Value to be assigned
120
+ def method=(method)
121
+ if method.nil?
122
+ fail ArgumentError, 'method cannot be nil'
123
+ end
124
+
125
+ pattern = Regexp.new(/^password$/)
126
+ if method !~ pattern
127
+ fail ArgumentError, "invalid value for \"method\", must conform to the pattern #{pattern}."
128
+ end
129
+
130
+ @method = method
131
+ end
132
+
112
133
  # Checks equality by comparing each attribute.
113
134
  # @param [Object] Object to be compared
114
135
  def ==(o)
@@ -0,0 +1,299 @@
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
+ # SubmitSelfServiceRegistrationFlowWithPasswordMethodBody is used to decode the registration form payload when using the password method.
18
+ class SubmitSelfServiceRegistrationFlowWithPasswordMethodBody
19
+ # The CSRF Token
20
+ attr_accessor :csrf_token
21
+
22
+ # Method to use This field must be set to `password` when using the password method.
23
+ attr_accessor :method
24
+
25
+ # Password to sign the user up with
26
+ attr_accessor :password
27
+
28
+ # The identity's traits
29
+ attr_accessor :traits
30
+
31
+ class EnumAttributeValidator
32
+ attr_reader :datatype
33
+ attr_reader :allowable_values
34
+
35
+ def initialize(datatype, allowable_values)
36
+ @allowable_values = allowable_values.map do |value|
37
+ case datatype.to_s
38
+ when /Integer/i
39
+ value.to_i
40
+ when /Float/i
41
+ value.to_f
42
+ else
43
+ value
44
+ end
45
+ end
46
+ end
47
+
48
+ def valid?(value)
49
+ !value || allowable_values.include?(value)
50
+ end
51
+ end
52
+
53
+ # Attribute mapping from ruby-style variable name to JSON key.
54
+ def self.attribute_map
55
+ {
56
+ :'csrf_token' => :'csrf_token',
57
+ :'method' => :'method',
58
+ :'password' => :'password',
59
+ :'traits' => :'traits'
60
+ }
61
+ end
62
+
63
+ # Returns all the JSON keys this model knows about
64
+ def self.acceptable_attributes
65
+ attribute_map.values
66
+ end
67
+
68
+ # Attribute type mapping.
69
+ def self.openapi_types
70
+ {
71
+ :'csrf_token' => :'String',
72
+ :'method' => :'String',
73
+ :'password' => :'String',
74
+ :'traits' => :'Object'
75
+ }
76
+ end
77
+
78
+ # List of attributes with nullable: true
79
+ def self.openapi_nullable
80
+ Set.new([
81
+ ])
82
+ end
83
+
84
+ # Initializes the object
85
+ # @param [Hash] attributes Model attributes in the form of hash
86
+ def initialize(attributes = {})
87
+ if (!attributes.is_a?(Hash))
88
+ fail ArgumentError, "The input argument (attributes) must be a hash in `OryHydraClient::SubmitSelfServiceRegistrationFlowWithPasswordMethodBody` initialize method"
89
+ end
90
+
91
+ # check to see if the attribute exists and convert string to symbol for hash key
92
+ attributes = attributes.each_with_object({}) { |(k, v), h|
93
+ if (!self.class.attribute_map.key?(k.to_sym))
94
+ fail ArgumentError, "`#{k}` is not a valid attribute in `OryHydraClient::SubmitSelfServiceRegistrationFlowWithPasswordMethodBody`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
95
+ end
96
+ h[k.to_sym] = v
97
+ }
98
+
99
+ if attributes.key?(:'csrf_token')
100
+ self.csrf_token = attributes[:'csrf_token']
101
+ end
102
+
103
+ if attributes.key?(:'method')
104
+ self.method = attributes[:'method']
105
+ end
106
+
107
+ if attributes.key?(:'password')
108
+ self.password = attributes[:'password']
109
+ end
110
+
111
+ if attributes.key?(:'traits')
112
+ self.traits = attributes[:'traits']
113
+ end
114
+ end
115
+
116
+ # Show invalid properties with the reasons. Usually used together with valid?
117
+ # @return Array for valid properties with the reasons
118
+ def list_invalid_properties
119
+ invalid_properties = Array.new
120
+ if @method.nil?
121
+ invalid_properties.push('invalid value for "method", method cannot be nil.')
122
+ end
123
+
124
+ if @password.nil?
125
+ invalid_properties.push('invalid value for "password", password cannot be nil.')
126
+ end
127
+
128
+ if @traits.nil?
129
+ invalid_properties.push('invalid value for "traits", traits cannot be nil.')
130
+ end
131
+
132
+ invalid_properties
133
+ end
134
+
135
+ # Check to see if the all the properties in the model are valid
136
+ # @return true if the model is valid
137
+ def valid?
138
+ return false if @method.nil?
139
+ method_validator = EnumAttributeValidator.new('String', ["password", "oidc"])
140
+ return false unless method_validator.valid?(@method)
141
+ return false if @password.nil?
142
+ return false if @traits.nil?
143
+ true
144
+ end
145
+
146
+ # Custom attribute writer method checking allowed values (enum).
147
+ # @param [Object] method Object to be assigned
148
+ def method=(method)
149
+ validator = EnumAttributeValidator.new('String', ["password", "oidc"])
150
+ unless validator.valid?(method)
151
+ fail ArgumentError, "invalid value for \"method\", must be one of #{validator.allowable_values}."
152
+ end
153
+ @method = method
154
+ end
155
+
156
+ # Checks equality by comparing each attribute.
157
+ # @param [Object] Object to be compared
158
+ def ==(o)
159
+ return true if self.equal?(o)
160
+ self.class == o.class &&
161
+ csrf_token == o.csrf_token &&
162
+ method == o.method &&
163
+ password == o.password &&
164
+ traits == o.traits
165
+ end
166
+
167
+ # @see the `==` method
168
+ # @param [Object] Object to be compared
169
+ def eql?(o)
170
+ self == o
171
+ end
172
+
173
+ # Calculates hash code according to all attributes.
174
+ # @return [Integer] Hash code
175
+ def hash
176
+ [csrf_token, method, password, traits].hash
177
+ end
178
+
179
+ # Builds the object from hash
180
+ # @param [Hash] attributes Model attributes in the form of hash
181
+ # @return [Object] Returns the model itself
182
+ def self.build_from_hash(attributes)
183
+ new.build_from_hash(attributes)
184
+ end
185
+
186
+ # Builds the object from hash
187
+ # @param [Hash] attributes Model attributes in the form of hash
188
+ # @return [Object] Returns the model itself
189
+ def build_from_hash(attributes)
190
+ return nil unless attributes.is_a?(Hash)
191
+ self.class.openapi_types.each_pair do |key, type|
192
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
193
+ self.send("#{key}=", nil)
194
+ elsif type =~ /\AArray<(.*)>/i
195
+ # check to ensure the input is an array given that the attribute
196
+ # is documented as an array but the input is not
197
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
198
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
199
+ end
200
+ elsif !attributes[self.class.attribute_map[key]].nil?
201
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
202
+ end
203
+ end
204
+
205
+ self
206
+ end
207
+
208
+ # Deserializes the data based on type
209
+ # @param string type Data type
210
+ # @param string value Value to be deserialized
211
+ # @return [Object] Deserialized data
212
+ def _deserialize(type, value)
213
+ case type.to_sym
214
+ when :Time
215
+ Time.parse(value)
216
+ when :Date
217
+ Date.parse(value)
218
+ when :String
219
+ value.to_s
220
+ when :Integer
221
+ value.to_i
222
+ when :Float
223
+ value.to_f
224
+ when :Boolean
225
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
226
+ true
227
+ else
228
+ false
229
+ end
230
+ when :Object
231
+ # generic object (usually a Hash), return directly
232
+ value
233
+ when /\AArray<(?<inner_type>.+)>\z/
234
+ inner_type = Regexp.last_match[:inner_type]
235
+ value.map { |v| _deserialize(inner_type, v) }
236
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
237
+ k_type = Regexp.last_match[:k_type]
238
+ v_type = Regexp.last_match[:v_type]
239
+ {}.tap do |hash|
240
+ value.each do |k, v|
241
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
242
+ end
243
+ end
244
+ else # model
245
+ # models (e.g. Pet) or oneOf
246
+ klass = OryHydraClient.const_get(type)
247
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
248
+ end
249
+ end
250
+
251
+ # Returns the string representation of the object
252
+ # @return [String] String presentation of the object
253
+ def to_s
254
+ to_hash.to_s
255
+ end
256
+
257
+ # to_body is an alias to to_hash (backward compatibility)
258
+ # @return [Hash] Returns the object in the form of hash
259
+ def to_body
260
+ to_hash
261
+ end
262
+
263
+ # Returns the object in the form of hash
264
+ # @return [Hash] Returns the object in the form of hash
265
+ def to_hash
266
+ hash = {}
267
+ self.class.attribute_map.each_pair do |attr, param|
268
+ value = self.send(attr)
269
+ if value.nil?
270
+ is_nullable = self.class.openapi_nullable.include?(attr)
271
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
272
+ end
273
+
274
+ hash[param] = _to_hash(value)
275
+ end
276
+ hash
277
+ end
278
+
279
+ # Outputs non-array value in the form of hash
280
+ # For object, use to_hash. Otherwise, just return the value
281
+ # @param [Object] value Any valid value
282
+ # @return [Hash] Returns the value in the form of hash
283
+ def _to_hash(value)
284
+ if value.is_a?(Array)
285
+ value.compact.map { |v| _to_hash(v) }
286
+ elsif value.is_a?(Hash)
287
+ {}.tap do |hash|
288
+ value.each { |k, v| hash[k] = _to_hash(v) }
289
+ end
290
+ elsif value.respond_to? :to_hash
291
+ value.to_hash
292
+ else
293
+ value
294
+ end
295
+ end
296
+
297
+ end
298
+
299
+ end
@@ -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,56 @@
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
+ module SubmitSelfServiceSettingsFlowBody
18
+ class << self
19
+ # List of class defined in oneOf (OpenAPI v3)
20
+ def openapi_one_of
21
+ [
22
+ :'SubmitSelfServiceSettingsFlowWithPasswordMethodBody',
23
+ :'SubmitSelfServiceSettingsFlowWithProfileMethodBody'
24
+ ]
25
+ end
26
+
27
+ # Discriminator's property name (OpenAPI v3)
28
+ def openapi_discriminator_name
29
+ :'method'
30
+ end
31
+
32
+ # Discriminator's mapping (OpenAPI v3)
33
+ def openapi_discriminator_mapping
34
+ {
35
+ :'oidc' => :'SubmitSelfServiceSettingsFlowWithOidcMethodBody',
36
+ :'password' => :'SubmitSelfServiceSettingsFlowWithPasswordMethodBody',
37
+ :'profile' => :'SubmitSelfServiceSettingsFlowWithProfileMethodBody'
38
+ }
39
+ end
40
+
41
+ # Builds the object
42
+ # @param [Mixed] Data to be matched against the list of oneOf items
43
+ # @return [Object] Returns the model or the data itself
44
+ def build(data)
45
+ discriminator_value = data[openapi_discriminator_name]
46
+ return nil unless discriminator_value
47
+
48
+ klass = openapi_discriminator_mapping[discriminator_value.to_sym]
49
+ return nil unless klass
50
+
51
+ OryHydraClient.const_get(klass).build_from_hash(data)
52
+ end
53
+ end
54
+ end
55
+
56
+ end
@@ -0,0 +1,255 @@
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
+ # nolint:deadcode,unused
18
+ class SubmitSelfServiceSettingsFlowWithOidcMethodBody
19
+ # Flow ID is the flow's ID. in: query
20
+ attr_accessor :flow
21
+
22
+ # Link this provider Either this or `unlink` must be set. type: string in: body
23
+ attr_accessor :link
24
+
25
+ # Method Should be set to profile when trying to update a profile.
26
+ attr_accessor :method
27
+
28
+ # Unlink this provider Either this or `link` must be set. type: string in: body
29
+ attr_accessor :unlink
30
+
31
+ # Attribute mapping from ruby-style variable name to JSON key.
32
+ def self.attribute_map
33
+ {
34
+ :'flow' => :'flow',
35
+ :'link' => :'link',
36
+ :'method' => :'method',
37
+ :'unlink' => :'unlink'
38
+ }
39
+ end
40
+
41
+ # Returns all the JSON keys this model knows about
42
+ def self.acceptable_attributes
43
+ attribute_map.values
44
+ end
45
+
46
+ # Attribute type mapping.
47
+ def self.openapi_types
48
+ {
49
+ :'flow' => :'String',
50
+ :'link' => :'String',
51
+ :'method' => :'String',
52
+ :'unlink' => :'String'
53
+ }
54
+ end
55
+
56
+ # List of attributes with nullable: true
57
+ def self.openapi_nullable
58
+ Set.new([
59
+ ])
60
+ end
61
+
62
+ # Initializes the object
63
+ # @param [Hash] attributes Model attributes in the form of hash
64
+ def initialize(attributes = {})
65
+ if (!attributes.is_a?(Hash))
66
+ fail ArgumentError, "The input argument (attributes) must be a hash in `OryHydraClient::SubmitSelfServiceSettingsFlowWithOidcMethodBody` initialize method"
67
+ end
68
+
69
+ # check to see if the attribute exists and convert string to symbol for hash key
70
+ attributes = attributes.each_with_object({}) { |(k, v), h|
71
+ if (!self.class.attribute_map.key?(k.to_sym))
72
+ fail ArgumentError, "`#{k}` is not a valid attribute in `OryHydraClient::SubmitSelfServiceSettingsFlowWithOidcMethodBody`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
73
+ end
74
+ h[k.to_sym] = v
75
+ }
76
+
77
+ if attributes.key?(:'flow')
78
+ self.flow = attributes[:'flow']
79
+ end
80
+
81
+ if attributes.key?(:'link')
82
+ self.link = attributes[:'link']
83
+ end
84
+
85
+ if attributes.key?(:'method')
86
+ self.method = attributes[:'method']
87
+ end
88
+
89
+ if attributes.key?(:'unlink')
90
+ self.unlink = attributes[:'unlink']
91
+ end
92
+ end
93
+
94
+ # Show invalid properties with the reasons. Usually used together with valid?
95
+ # @return Array for valid properties with the reasons
96
+ def list_invalid_properties
97
+ invalid_properties = Array.new
98
+ if @method.nil?
99
+ invalid_properties.push('invalid value for "method", method cannot be nil.')
100
+ end
101
+
102
+ invalid_properties
103
+ end
104
+
105
+ # Check to see if the all the properties in the model are valid
106
+ # @return true if the model is valid
107
+ def valid?
108
+ return false if @method.nil?
109
+ true
110
+ end
111
+
112
+ # Checks equality by comparing each attribute.
113
+ # @param [Object] Object to be compared
114
+ def ==(o)
115
+ return true if self.equal?(o)
116
+ self.class == o.class &&
117
+ flow == o.flow &&
118
+ link == o.link &&
119
+ method == o.method &&
120
+ unlink == o.unlink
121
+ end
122
+
123
+ # @see the `==` method
124
+ # @param [Object] Object to be compared
125
+ def eql?(o)
126
+ self == o
127
+ end
128
+
129
+ # Calculates hash code according to all attributes.
130
+ # @return [Integer] Hash code
131
+ def hash
132
+ [flow, link, method, unlink].hash
133
+ end
134
+
135
+ # Builds the object from hash
136
+ # @param [Hash] attributes Model attributes in the form of hash
137
+ # @return [Object] Returns the model itself
138
+ def self.build_from_hash(attributes)
139
+ new.build_from_hash(attributes)
140
+ end
141
+
142
+ # Builds the object from hash
143
+ # @param [Hash] attributes Model attributes in the form of hash
144
+ # @return [Object] Returns the model itself
145
+ def build_from_hash(attributes)
146
+ return nil unless attributes.is_a?(Hash)
147
+ self.class.openapi_types.each_pair do |key, type|
148
+ if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
149
+ self.send("#{key}=", nil)
150
+ elsif type =~ /\AArray<(.*)>/i
151
+ # check to ensure the input is an array given that the attribute
152
+ # is documented as an array but the input is not
153
+ if attributes[self.class.attribute_map[key]].is_a?(Array)
154
+ self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
155
+ end
156
+ elsif !attributes[self.class.attribute_map[key]].nil?
157
+ self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
158
+ end
159
+ end
160
+
161
+ self
162
+ end
163
+
164
+ # Deserializes the data based on type
165
+ # @param string type Data type
166
+ # @param string value Value to be deserialized
167
+ # @return [Object] Deserialized data
168
+ def _deserialize(type, value)
169
+ case type.to_sym
170
+ when :Time
171
+ Time.parse(value)
172
+ when :Date
173
+ Date.parse(value)
174
+ when :String
175
+ value.to_s
176
+ when :Integer
177
+ value.to_i
178
+ when :Float
179
+ value.to_f
180
+ when :Boolean
181
+ if value.to_s =~ /\A(true|t|yes|y|1)\z/i
182
+ true
183
+ else
184
+ false
185
+ end
186
+ when :Object
187
+ # generic object (usually a Hash), return directly
188
+ value
189
+ when /\AArray<(?<inner_type>.+)>\z/
190
+ inner_type = Regexp.last_match[:inner_type]
191
+ value.map { |v| _deserialize(inner_type, v) }
192
+ when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
193
+ k_type = Regexp.last_match[:k_type]
194
+ v_type = Regexp.last_match[:v_type]
195
+ {}.tap do |hash|
196
+ value.each do |k, v|
197
+ hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
198
+ end
199
+ end
200
+ else # model
201
+ # models (e.g. Pet) or oneOf
202
+ klass = OryHydraClient.const_get(type)
203
+ klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
204
+ end
205
+ end
206
+
207
+ # Returns the string representation of the object
208
+ # @return [String] String presentation of the object
209
+ def to_s
210
+ to_hash.to_s
211
+ end
212
+
213
+ # to_body is an alias to to_hash (backward compatibility)
214
+ # @return [Hash] Returns the object in the form of hash
215
+ def to_body
216
+ to_hash
217
+ end
218
+
219
+ # Returns the object in the form of hash
220
+ # @return [Hash] Returns the object in the form of hash
221
+ def to_hash
222
+ hash = {}
223
+ self.class.attribute_map.each_pair do |attr, param|
224
+ value = self.send(attr)
225
+ if value.nil?
226
+ is_nullable = self.class.openapi_nullable.include?(attr)
227
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
228
+ end
229
+
230
+ hash[param] = _to_hash(value)
231
+ end
232
+ hash
233
+ end
234
+
235
+ # Outputs non-array value in the form of hash
236
+ # For object, use to_hash. Otherwise, just return the value
237
+ # @param [Object] value Any valid value
238
+ # @return [Hash] Returns the value in the form of hash
239
+ def _to_hash(value)
240
+ if value.is_a?(Array)
241
+ value.compact.map { |v| _to_hash(v) }
242
+ elsif value.is_a?(Hash)
243
+ {}.tap do |hash|
244
+ value.each { |k, v| hash[k] = _to_hash(v) }
245
+ end
246
+ elsif value.respond_to? :to_hash
247
+ value.to_hash
248
+ else
249
+ value
250
+ end
251
+ end
252
+
253
+ end
254
+
255
+ end