ory-kratos-client 0.0.3.alpha5 → 0.0.3.alpha15

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ad6ae1f23bbf376d209a90539b5eeaae8606db6157f3be5312bdb2e4ff87cbed
4
- data.tar.gz: 0a8f5fa82306edd210f91f0ecf424cfce38825e15fa9b8644e0f339bc51c6097
3
+ metadata.gz: 9f653543c57c31f6cefcecbb199b6430f598fdbb87082d2627111ba9ebf5556d
4
+ data.tar.gz: e19ec537b7ec933d1b9389e1fc58e82fbe1c749ebe73d91527e10efb26637faf
5
5
  SHA512:
6
- metadata.gz: ccf18b893ba5a4b6f51568423715955c4274322c3c1fa9dc86ee170d8e8be717e0e124030f0ce80af960865f3ab2940911041880faa97e80657c86141c8415f5
7
- data.tar.gz: f4b8ffada628407dba219c2605df25c8bdceb4f83813b3eceb0b2a232640d40b2c1080be8e97fdf7ecc762ccb1caf8866d34f096059333cf94039880430175a9
6
+ metadata.gz: c0d723069f3aa97d32511cb77b673af19f55db22692d5c97830bc7ab6561872a387bf6bfe9d19c134a1f02737623a60a43725154868b6f9bc4abdf1876cf3d33
7
+ data.tar.gz: '01093d0cf80065cb900d38e4d834fef51034b3d7a7a9d86e8782e0fe39ccae05c673cac63bb1eb99a72758586c6f017adbd715f1912e0f16b98027ecc6c14e2c'
data/README.md CHANGED
@@ -7,7 +7,7 @@ Welcome to the ORY Kratos HTTP API documentation!
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: latest
10
- - Package version: v0.0.3-alpha.5
10
+ - Package version: v0.0.3-alpha.15
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
 
13
13
  ## Installation
@@ -23,16 +23,16 @@ gem build ory-kratos-client.gemspec
23
23
  Then either install the gem locally:
24
24
 
25
25
  ```shell
26
- gem install ./ory-kratos-client-v0.0.3-alpha.5.gem
26
+ gem install ./ory-kratos-client-v0.0.3-alpha.15.gem
27
27
  ```
28
28
 
29
- (for development, run `gem install --dev ./ory-kratos-client-v0.0.3-alpha.5.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ory-kratos-client-v0.0.3-alpha.15.gem` to install the development dependencies)
30
30
 
31
31
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
32
32
 
33
33
  Finally add this to the Gemfile:
34
34
 
35
- gem 'ory-kratos-client', '~> v0.0.3-alpha.5'
35
+ gem 'ory-kratos-client', '~> v0.0.3-alpha.15'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -4,8 +4,10 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
+ **disabled** | **String** | Disabled is the equivalent of <input disabled=\"{{.Disabled}}\"> | [optional]
7
8
  **errors** | [**Array<Error>**](Error.md) | Errors contains all validation errors this particular field has caused. | [optional]
8
9
  **name** | **String** | Name is the equivalent of <input name=\"{{.Name}}\"> | [optional]
10
+ **pattern** | **String** | Pattern is the equivalent of <input pattern=\"{{.Pattern}}\"> | [optional]
9
11
  **required** | **Boolean** | Required is the equivalent of <input required=\"{{.Required}}\"> | [optional]
10
12
  **type** | **String** | Type is the equivalent of <input type=\"{{.Type}}\"> | [optional]
11
13
  **value** | [**Object**](.md) | Value is the equivalent of <input value=\"{{.Value}}\"> | [optional]
@@ -15,8 +17,10 @@ Name | Type | Description | Notes
15
17
  ```ruby
16
18
  require 'OryHydraClient'
17
19
 
18
- instance = OryHydraClient::FormField.new(errors: null,
20
+ instance = OryHydraClient::FormField.new(disabled: null,
21
+ errors: null,
19
22
  name: null,
23
+ pattern: null,
20
24
  required: null,
21
25
  type: null,
22
26
  value: null)
@@ -15,12 +15,18 @@ require 'date'
15
15
  module OryHydraClient
16
16
  # Field represents a HTML Form Field
17
17
  class FormField
18
+ # Disabled is the equivalent of <input disabled=\"{{.Disabled}}\">
19
+ attr_accessor :disabled
20
+
18
21
  # Errors contains all validation errors this particular field has caused.
19
22
  attr_accessor :errors
20
23
 
21
24
  # Name is the equivalent of <input name=\"{{.Name}}\">
22
25
  attr_accessor :name
23
26
 
27
+ # Pattern is the equivalent of <input pattern=\"{{.Pattern}}\">
28
+ attr_accessor :pattern
29
+
24
30
  # Required is the equivalent of <input required=\"{{.Required}}\">
25
31
  attr_accessor :required
26
32
 
@@ -33,8 +39,10 @@ module OryHydraClient
33
39
  # Attribute mapping from ruby-style variable name to JSON key.
34
40
  def self.attribute_map
35
41
  {
42
+ :'disabled' => :'disabled',
36
43
  :'errors' => :'errors',
37
44
  :'name' => :'name',
45
+ :'pattern' => :'pattern',
38
46
  :'required' => :'required',
39
47
  :'type' => :'type',
40
48
  :'value' => :'value'
@@ -44,8 +52,10 @@ module OryHydraClient
44
52
  # Attribute type mapping.
45
53
  def self.openapi_types
46
54
  {
55
+ :'disabled' => :'String',
47
56
  :'errors' => :'Array<Error>',
48
57
  :'name' => :'String',
58
+ :'pattern' => :'String',
49
59
  :'required' => :'Boolean',
50
60
  :'type' => :'String',
51
61
  :'value' => :'Object'
@@ -73,6 +83,10 @@ module OryHydraClient
73
83
  h[k.to_sym] = v
74
84
  }
75
85
 
86
+ if attributes.key?(:'disabled')
87
+ self.disabled = attributes[:'disabled']
88
+ end
89
+
76
90
  if attributes.key?(:'errors')
77
91
  if (value = attributes[:'errors']).is_a?(Array)
78
92
  self.errors = value
@@ -83,6 +97,10 @@ module OryHydraClient
83
97
  self.name = attributes[:'name']
84
98
  end
85
99
 
100
+ if attributes.key?(:'pattern')
101
+ self.pattern = attributes[:'pattern']
102
+ end
103
+
86
104
  if attributes.key?(:'required')
87
105
  self.required = attributes[:'required']
88
106
  end
@@ -114,8 +132,10 @@ module OryHydraClient
114
132
  def ==(o)
115
133
  return true if self.equal?(o)
116
134
  self.class == o.class &&
135
+ disabled == o.disabled &&
117
136
  errors == o.errors &&
118
137
  name == o.name &&
138
+ pattern == o.pattern &&
119
139
  required == o.required &&
120
140
  type == o.type &&
121
141
  value == o.value
@@ -130,7 +150,7 @@ module OryHydraClient
130
150
  # Calculates hash code according to all attributes.
131
151
  # @return [Integer] Hash code
132
152
  def hash
133
- [errors, name, required, type, value].hash
153
+ [disabled, errors, name, pattern, required, type, value].hash
134
154
  end
135
155
 
136
156
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.2.2
11
11
  =end
12
12
 
13
13
  module OryHydraClient
14
- VERSION = '0.0.3.alpha5'
14
+ VERSION = '0.0.3.alpha15'
15
15
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ory-kratos-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3.alpha5
4
+ version: 0.0.3.alpha15
5
5
  platform: ruby
6
6
  authors:
7
7
  - ORY GmbH
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-01-30 00:00:00.000000000 Z
11
+ date: 2020-01-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -190,30 +190,30 @@ specification_version: 4
190
190
  summary: Ory Kratos Ruby Gem
191
191
  test_files:
192
192
  - spec/api/admin_api_spec.rb
193
- - spec/api/version_api_spec.rb
194
- - spec/api/common_api_spec.rb
195
193
  - spec/api/public_api_spec.rb
194
+ - spec/api/common_api_spec.rb
195
+ - spec/api/version_api_spec.rb
196
196
  - spec/api/health_api_spec.rb
197
197
  - spec/api_client_spec.rb
198
198
  - spec/configuration_spec.rb
199
- - spec/models/generic_error_spec.rb
200
199
  - spec/models/profile_management_request_spec.rb
201
- - spec/models/generic_error_payload_spec.rb
202
- - spec/models/complete_self_service_browser_profile_management_flow_payload_spec.rb
203
- - spec/models/form_spec.rb
204
- - spec/models/version_spec.rb
205
- - spec/models/registration_request_method_config_spec.rb
206
- - spec/models/login_request_method_spec.rb
207
- - spec/models/registration_request_spec.rb
208
200
  - spec/models/error_spec.rb
209
- - spec/models/identity_spec.rb
210
- - spec/models/health_status_spec.rb
211
- - spec/models/login_request_spec.rb
212
- - spec/models/session_spec.rb
213
- - spec/models/oidc_strategy_credentials_config_spec.rb
201
+ - spec/models/registration_request_spec.rb
202
+ - spec/models/login_request_method_spec.rb
214
203
  - spec/models/login_request_method_config_spec.rb
204
+ - spec/models/generic_error_spec.rb
215
205
  - spec/models/form_field_spec.rb
206
+ - spec/models/login_request_spec.rb
207
+ - spec/models/version_spec.rb
208
+ - spec/models/health_status_spec.rb
209
+ - spec/models/form_spec.rb
216
210
  - spec/models/oidc_strategy_request_method_spec.rb
217
211
  - spec/models/registration_request_method_spec.rb
212
+ - spec/models/registration_request_method_config_spec.rb
218
213
  - spec/models/health_not_ready_status_spec.rb
214
+ - spec/models/session_spec.rb
215
+ - spec/models/oidc_strategy_credentials_config_spec.rb
216
+ - spec/models/identity_spec.rb
217
+ - spec/models/generic_error_payload_spec.rb
218
+ - spec/models/complete_self_service_browser_profile_management_flow_payload_spec.rb
219
219
  - spec/spec_helper.rb