finch-api 0.1.0.pre.alpha.49 → 0.1.0.pre.alpha.51
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 +4 -4
- data/CHANGELOG.md +17 -0
- data/README.md +1 -1
- data/lib/finch_api/models/connect/session_new_params.rb +3 -0
- data/lib/finch_api/models/connect/session_reauthenticate_params.rb +3 -0
- data/lib/finch_api/models/hris/employment_data.rb +36 -1
- data/lib/finch_api/models/hris/individual.rb +30 -1
- data/lib/finch_api/models/sandbox/directory_create_params.rb +65 -1
- data/lib/finch_api/models/sandbox/employment_update_params.rb +36 -1
- data/lib/finch_api/models/sandbox/employment_update_response.rb +36 -1
- data/lib/finch_api/models/sandbox/individual_update_params.rb +28 -1
- data/lib/finch_api/models/sandbox/individual_update_response.rb +30 -1
- data/lib/finch_api/resources/sandbox/employment.rb +9 -1
- data/lib/finch_api/resources/sandbox/individual.rb +3 -1
- data/lib/finch_api/version.rb +1 -1
- data/rbi/finch_api/models/connect/session_new_params.rbi +15 -0
- data/rbi/finch_api/models/connect/session_reauthenticate_params.rbi +15 -0
- data/rbi/finch_api/models/hris/employment_data.rbi +38 -0
- data/rbi/finch_api/models/hris/individual.rbi +78 -0
- data/rbi/finch_api/models/sandbox/directory_create_params.rbi +119 -3
- data/rbi/finch_api/models/sandbox/employment_update_params.rbi +38 -0
- data/rbi/finch_api/models/sandbox/employment_update_response.rbi +41 -3
- data/rbi/finch_api/models/sandbox/individual_update_params.rbi +78 -0
- data/rbi/finch_api/models/sandbox/individual_update_response.rbi +78 -0
- data/rbi/finch_api/resources/sandbox/employment.rbi +15 -0
- data/rbi/finch_api/resources/sandbox/individual.rbi +7 -0
- data/sig/finch_api/models/connect/session_new_params.rbs +6 -0
- data/sig/finch_api/models/connect/session_reauthenticate_params.rbs +6 -0
- data/sig/finch_api/models/hris/employment_data.rbs +20 -0
- data/sig/finch_api/models/hris/individual.rbs +26 -0
- data/sig/finch_api/models/sandbox/directory_create_params.rbs +49 -3
- data/sig/finch_api/models/sandbox/employment_update_params.rbs +21 -1
- data/sig/finch_api/models/sandbox/employment_update_response.rbs +23 -3
- data/sig/finch_api/models/sandbox/individual_update_params.rbs +26 -0
- data/sig/finch_api/models/sandbox/individual_update_response.rbs +26 -0
- data/sig/finch_api/resources/sandbox/employment.rbs +4 -0
- data/sig/finch_api/resources/sandbox/individual.rbs +1 -0
- metadata +2 -2
|
@@ -40,13 +40,16 @@ module FinchAPI
|
|
|
40
40
|
first_name: String?,
|
|
41
41
|
flsa_status: FinchAPI::Models::Sandbox::DirectoryCreateParams::Body::flsa_status?,
|
|
42
42
|
gender: FinchAPI::Models::Sandbox::DirectoryCreateParams::Body::gender?,
|
|
43
|
+
highly_compensated_employee: bool?,
|
|
43
44
|
income: FinchAPI::Income?,
|
|
44
45
|
income_history: ::Array[FinchAPI::Income?]?,
|
|
45
46
|
is_active: bool?,
|
|
47
|
+
key_employee: bool?,
|
|
46
48
|
last_name: String?,
|
|
47
49
|
latest_rehire_date: String?,
|
|
48
50
|
location: FinchAPI::Location?,
|
|
49
51
|
manager: FinchAPI::Sandbox::DirectoryCreateParams::Body::Manager?,
|
|
52
|
+
marital_status: FinchAPI::Models::Sandbox::DirectoryCreateParams::Body::marital_status?,
|
|
50
53
|
middle_name: String?,
|
|
51
54
|
phone_numbers: ::Array[FinchAPI::Sandbox::DirectoryCreateParams::Body::PhoneNumber?]?,
|
|
52
55
|
preferred_name: String?,
|
|
@@ -54,7 +57,9 @@ module FinchAPI
|
|
|
54
57
|
source_id: String?,
|
|
55
58
|
ssn: String?,
|
|
56
59
|
start_date: String?,
|
|
57
|
-
title: String
|
|
60
|
+
title: String?,
|
|
61
|
+
union_code: String?,
|
|
62
|
+
union_local: String?
|
|
58
63
|
}
|
|
59
64
|
|
|
60
65
|
class Body < FinchAPI::Internal::Type::BaseModel
|
|
@@ -84,12 +89,16 @@ module FinchAPI
|
|
|
84
89
|
|
|
85
90
|
attr_accessor gender: FinchAPI::Models::Sandbox::DirectoryCreateParams::Body::gender?
|
|
86
91
|
|
|
92
|
+
attr_accessor highly_compensated_employee: bool?
|
|
93
|
+
|
|
87
94
|
attr_accessor income: FinchAPI::Income?
|
|
88
95
|
|
|
89
96
|
attr_accessor income_history: ::Array[FinchAPI::Income?]?
|
|
90
97
|
|
|
91
98
|
attr_accessor is_active: bool?
|
|
92
99
|
|
|
100
|
+
attr_accessor key_employee: bool?
|
|
101
|
+
|
|
93
102
|
attr_accessor last_name: String?
|
|
94
103
|
|
|
95
104
|
attr_accessor latest_rehire_date: String?
|
|
@@ -98,6 +107,8 @@ module FinchAPI
|
|
|
98
107
|
|
|
99
108
|
attr_accessor manager: FinchAPI::Sandbox::DirectoryCreateParams::Body::Manager?
|
|
100
109
|
|
|
110
|
+
attr_accessor marital_status: FinchAPI::Models::Sandbox::DirectoryCreateParams::Body::marital_status?
|
|
111
|
+
|
|
101
112
|
attr_accessor middle_name: String?
|
|
102
113
|
|
|
103
114
|
attr_accessor phone_numbers: ::Array[FinchAPI::Sandbox::DirectoryCreateParams::Body::PhoneNumber?]?
|
|
@@ -114,6 +125,10 @@ module FinchAPI
|
|
|
114
125
|
|
|
115
126
|
attr_accessor title: String?
|
|
116
127
|
|
|
128
|
+
attr_accessor union_code: String?
|
|
129
|
+
|
|
130
|
+
attr_accessor union_local: String?
|
|
131
|
+
|
|
117
132
|
def initialize: (
|
|
118
133
|
?class_code: String?,
|
|
119
134
|
?custom_fields: ::Array[FinchAPI::Sandbox::DirectoryCreateParams::Body::CustomField]?,
|
|
@@ -128,13 +143,16 @@ module FinchAPI
|
|
|
128
143
|
?first_name: String?,
|
|
129
144
|
?flsa_status: FinchAPI::Models::Sandbox::DirectoryCreateParams::Body::flsa_status?,
|
|
130
145
|
?gender: FinchAPI::Models::Sandbox::DirectoryCreateParams::Body::gender?,
|
|
146
|
+
?highly_compensated_employee: bool?,
|
|
131
147
|
?income: FinchAPI::Income?,
|
|
132
148
|
?income_history: ::Array[FinchAPI::Income?]?,
|
|
133
149
|
?is_active: bool?,
|
|
150
|
+
?key_employee: bool?,
|
|
134
151
|
?last_name: String?,
|
|
135
152
|
?latest_rehire_date: String?,
|
|
136
153
|
?location: FinchAPI::Location?,
|
|
137
154
|
?manager: FinchAPI::Sandbox::DirectoryCreateParams::Body::Manager?,
|
|
155
|
+
?marital_status: FinchAPI::Models::Sandbox::DirectoryCreateParams::Body::marital_status?,
|
|
138
156
|
?middle_name: String?,
|
|
139
157
|
?phone_numbers: ::Array[FinchAPI::Sandbox::DirectoryCreateParams::Body::PhoneNumber?]?,
|
|
140
158
|
?preferred_name: String?,
|
|
@@ -142,7 +160,9 @@ module FinchAPI
|
|
|
142
160
|
?source_id: String?,
|
|
143
161
|
?ssn: String?,
|
|
144
162
|
?start_date: String?,
|
|
145
|
-
?title: String
|
|
163
|
+
?title: String?,
|
|
164
|
+
?union_code: String?,
|
|
165
|
+
?union_local: String?
|
|
146
166
|
) -> void
|
|
147
167
|
|
|
148
168
|
def to_hash: -> {
|
|
@@ -159,13 +179,16 @@ module FinchAPI
|
|
|
159
179
|
first_name: String?,
|
|
160
180
|
flsa_status: FinchAPI::Models::Sandbox::DirectoryCreateParams::Body::flsa_status?,
|
|
161
181
|
gender: FinchAPI::Models::Sandbox::DirectoryCreateParams::Body::gender?,
|
|
182
|
+
highly_compensated_employee: bool?,
|
|
162
183
|
income: FinchAPI::Income?,
|
|
163
184
|
income_history: ::Array[FinchAPI::Income?]?,
|
|
164
185
|
is_active: bool?,
|
|
186
|
+
key_employee: bool?,
|
|
165
187
|
last_name: String?,
|
|
166
188
|
latest_rehire_date: String?,
|
|
167
189
|
location: FinchAPI::Location?,
|
|
168
190
|
manager: FinchAPI::Sandbox::DirectoryCreateParams::Body::Manager?,
|
|
191
|
+
marital_status: FinchAPI::Models::Sandbox::DirectoryCreateParams::Body::marital_status?,
|
|
169
192
|
middle_name: String?,
|
|
170
193
|
phone_numbers: ::Array[FinchAPI::Sandbox::DirectoryCreateParams::Body::PhoneNumber?]?,
|
|
171
194
|
preferred_name: String?,
|
|
@@ -173,7 +196,9 @@ module FinchAPI
|
|
|
173
196
|
source_id: String?,
|
|
174
197
|
ssn: String?,
|
|
175
198
|
start_date: String?,
|
|
176
|
-
title: String
|
|
199
|
+
title: String?,
|
|
200
|
+
union_code: String?,
|
|
201
|
+
union_local: String?
|
|
177
202
|
}
|
|
178
203
|
|
|
179
204
|
type custom_field =
|
|
@@ -392,6 +417,27 @@ module FinchAPI
|
|
|
392
417
|
def to_hash: -> { id: String }
|
|
393
418
|
end
|
|
394
419
|
|
|
420
|
+
type marital_status =
|
|
421
|
+
:single
|
|
422
|
+
| :married
|
|
423
|
+
| :divorced
|
|
424
|
+
| :widowed
|
|
425
|
+
| :domestic_partner
|
|
426
|
+
| :unknown
|
|
427
|
+
|
|
428
|
+
module MaritalStatus
|
|
429
|
+
extend FinchAPI::Internal::Type::Enum
|
|
430
|
+
|
|
431
|
+
SINGLE: :single
|
|
432
|
+
MARRIED: :married
|
|
433
|
+
DIVORCED: :divorced
|
|
434
|
+
WIDOWED: :widowed
|
|
435
|
+
DOMESTIC_PARTNER: :domestic_partner
|
|
436
|
+
UNKNOWN: :unknown
|
|
437
|
+
|
|
438
|
+
def self?.values: -> ::Array[FinchAPI::Models::Sandbox::DirectoryCreateParams::Body::marital_status]
|
|
439
|
+
end
|
|
440
|
+
|
|
395
441
|
type phone_number =
|
|
396
442
|
{
|
|
397
443
|
data: String?,
|
|
@@ -12,9 +12,11 @@ module FinchAPI
|
|
|
12
12
|
end_date: String?,
|
|
13
13
|
first_name: String?,
|
|
14
14
|
flsa_status: FinchAPI::Models::Sandbox::EmploymentUpdateParams::flsa_status?,
|
|
15
|
+
highly_compensated_employee: bool?,
|
|
15
16
|
income: FinchAPI::Income?,
|
|
16
17
|
income_history: ::Array[FinchAPI::Income?]?,
|
|
17
18
|
is_active: bool?,
|
|
19
|
+
key_employee: bool?,
|
|
18
20
|
last_name: String?,
|
|
19
21
|
latest_rehire_date: String?,
|
|
20
22
|
location: FinchAPI::Location?,
|
|
@@ -22,7 +24,9 @@ module FinchAPI
|
|
|
22
24
|
middle_name: String?,
|
|
23
25
|
source_id: String?,
|
|
24
26
|
start_date: String?,
|
|
25
|
-
title: String
|
|
27
|
+
title: String?,
|
|
28
|
+
union_code: String?,
|
|
29
|
+
union_local: String?
|
|
26
30
|
}
|
|
27
31
|
& FinchAPI::Internal::Type::request_parameters
|
|
28
32
|
|
|
@@ -48,12 +52,16 @@ module FinchAPI
|
|
|
48
52
|
|
|
49
53
|
attr_accessor flsa_status: FinchAPI::Models::Sandbox::EmploymentUpdateParams::flsa_status?
|
|
50
54
|
|
|
55
|
+
attr_accessor highly_compensated_employee: bool?
|
|
56
|
+
|
|
51
57
|
attr_accessor income: FinchAPI::Income?
|
|
52
58
|
|
|
53
59
|
attr_accessor income_history: ::Array[FinchAPI::Income?]?
|
|
54
60
|
|
|
55
61
|
attr_accessor is_active: bool?
|
|
56
62
|
|
|
63
|
+
attr_accessor key_employee: bool?
|
|
64
|
+
|
|
57
65
|
attr_accessor last_name: String?
|
|
58
66
|
|
|
59
67
|
attr_accessor latest_rehire_date: String?
|
|
@@ -70,6 +78,10 @@ module FinchAPI
|
|
|
70
78
|
|
|
71
79
|
attr_accessor title: String?
|
|
72
80
|
|
|
81
|
+
attr_accessor union_code: String?
|
|
82
|
+
|
|
83
|
+
attr_accessor union_local: String?
|
|
84
|
+
|
|
73
85
|
def initialize: (
|
|
74
86
|
individual_id: String,
|
|
75
87
|
?class_code: String?,
|
|
@@ -80,9 +92,11 @@ module FinchAPI
|
|
|
80
92
|
?end_date: String?,
|
|
81
93
|
?first_name: String?,
|
|
82
94
|
?flsa_status: FinchAPI::Models::Sandbox::EmploymentUpdateParams::flsa_status?,
|
|
95
|
+
?highly_compensated_employee: bool?,
|
|
83
96
|
?income: FinchAPI::Income?,
|
|
84
97
|
?income_history: ::Array[FinchAPI::Income?]?,
|
|
85
98
|
?is_active: bool?,
|
|
99
|
+
?key_employee: bool?,
|
|
86
100
|
?last_name: String?,
|
|
87
101
|
?latest_rehire_date: String?,
|
|
88
102
|
?location: FinchAPI::Location?,
|
|
@@ -91,6 +105,8 @@ module FinchAPI
|
|
|
91
105
|
?source_id: String?,
|
|
92
106
|
?start_date: String?,
|
|
93
107
|
?title: String?,
|
|
108
|
+
?union_code: String?,
|
|
109
|
+
?union_local: String?,
|
|
94
110
|
?request_options: FinchAPI::request_opts
|
|
95
111
|
) -> void
|
|
96
112
|
|
|
@@ -104,9 +120,11 @@ module FinchAPI
|
|
|
104
120
|
end_date: String?,
|
|
105
121
|
first_name: String?,
|
|
106
122
|
flsa_status: FinchAPI::Models::Sandbox::EmploymentUpdateParams::flsa_status?,
|
|
123
|
+
highly_compensated_employee: bool?,
|
|
107
124
|
income: FinchAPI::Income?,
|
|
108
125
|
income_history: ::Array[FinchAPI::Income?]?,
|
|
109
126
|
is_active: bool?,
|
|
127
|
+
key_employee: bool?,
|
|
110
128
|
last_name: String?,
|
|
111
129
|
latest_rehire_date: String?,
|
|
112
130
|
location: FinchAPI::Location?,
|
|
@@ -115,6 +133,8 @@ module FinchAPI
|
|
|
115
133
|
source_id: String?,
|
|
116
134
|
start_date: String?,
|
|
117
135
|
title: String?,
|
|
136
|
+
union_code: String?,
|
|
137
|
+
union_local: String?,
|
|
118
138
|
request_options: FinchAPI::RequestOptions
|
|
119
139
|
}
|
|
120
140
|
|
|
@@ -12,9 +12,11 @@ module FinchAPI
|
|
|
12
12
|
end_date: String?,
|
|
13
13
|
first_name: String?,
|
|
14
14
|
flsa_status: FinchAPI::Models::Sandbox::EmploymentUpdateResponse::flsa_status?,
|
|
15
|
+
highly_compensated_employee: bool?,
|
|
15
16
|
income: FinchAPI::Income?,
|
|
16
17
|
income_history: ::Array[FinchAPI::Income?]?,
|
|
17
18
|
is_active: bool?,
|
|
19
|
+
key_employee: bool?,
|
|
18
20
|
last_name: String?,
|
|
19
21
|
latest_rehire_date: String?,
|
|
20
22
|
location: FinchAPI::Location?,
|
|
@@ -22,7 +24,9 @@ module FinchAPI
|
|
|
22
24
|
middle_name: String?,
|
|
23
25
|
source_id: String?,
|
|
24
26
|
start_date: String?,
|
|
25
|
-
title: String
|
|
27
|
+
title: String?,
|
|
28
|
+
union_code: String?,
|
|
29
|
+
union_local: String?
|
|
26
30
|
}
|
|
27
31
|
|
|
28
32
|
class EmploymentUpdateResponse < FinchAPI::Internal::Type::BaseModel
|
|
@@ -46,12 +50,16 @@ module FinchAPI
|
|
|
46
50
|
|
|
47
51
|
attr_accessor flsa_status: FinchAPI::Models::Sandbox::EmploymentUpdateResponse::flsa_status?
|
|
48
52
|
|
|
53
|
+
attr_accessor highly_compensated_employee: bool?
|
|
54
|
+
|
|
49
55
|
attr_accessor income: FinchAPI::Income?
|
|
50
56
|
|
|
51
57
|
attr_accessor income_history: ::Array[FinchAPI::Income?]?
|
|
52
58
|
|
|
53
59
|
attr_accessor is_active: bool?
|
|
54
60
|
|
|
61
|
+
attr_accessor key_employee: bool?
|
|
62
|
+
|
|
55
63
|
attr_accessor last_name: String?
|
|
56
64
|
|
|
57
65
|
attr_accessor latest_rehire_date: String?
|
|
@@ -68,6 +76,10 @@ module FinchAPI
|
|
|
68
76
|
|
|
69
77
|
attr_accessor title: String?
|
|
70
78
|
|
|
79
|
+
attr_accessor union_code: String?
|
|
80
|
+
|
|
81
|
+
attr_accessor union_local: String?
|
|
82
|
+
|
|
71
83
|
def initialize: (
|
|
72
84
|
?id: String,
|
|
73
85
|
?class_code: String?,
|
|
@@ -78,9 +90,11 @@ module FinchAPI
|
|
|
78
90
|
?end_date: String?,
|
|
79
91
|
?first_name: String?,
|
|
80
92
|
?flsa_status: FinchAPI::Models::Sandbox::EmploymentUpdateResponse::flsa_status?,
|
|
93
|
+
?highly_compensated_employee: bool?,
|
|
81
94
|
?income: FinchAPI::Income?,
|
|
82
95
|
?income_history: ::Array[FinchAPI::Income?]?,
|
|
83
96
|
?is_active: bool?,
|
|
97
|
+
?key_employee: bool?,
|
|
84
98
|
?last_name: String?,
|
|
85
99
|
?latest_rehire_date: String?,
|
|
86
100
|
?location: FinchAPI::Location?,
|
|
@@ -88,7 +102,9 @@ module FinchAPI
|
|
|
88
102
|
?middle_name: String?,
|
|
89
103
|
?source_id: String?,
|
|
90
104
|
?start_date: String?,
|
|
91
|
-
?title: String
|
|
105
|
+
?title: String?,
|
|
106
|
+
?union_code: String?,
|
|
107
|
+
?union_local: String?
|
|
92
108
|
) -> void
|
|
93
109
|
|
|
94
110
|
def to_hash: -> {
|
|
@@ -101,9 +117,11 @@ module FinchAPI
|
|
|
101
117
|
end_date: String?,
|
|
102
118
|
first_name: String?,
|
|
103
119
|
flsa_status: FinchAPI::Models::Sandbox::EmploymentUpdateResponse::flsa_status?,
|
|
120
|
+
highly_compensated_employee: bool?,
|
|
104
121
|
income: FinchAPI::Income?,
|
|
105
122
|
income_history: ::Array[FinchAPI::Income?]?,
|
|
106
123
|
is_active: bool?,
|
|
124
|
+
key_employee: bool?,
|
|
107
125
|
last_name: String?,
|
|
108
126
|
latest_rehire_date: String?,
|
|
109
127
|
location: FinchAPI::Location?,
|
|
@@ -111,7 +129,9 @@ module FinchAPI
|
|
|
111
129
|
middle_name: String?,
|
|
112
130
|
source_id: String?,
|
|
113
131
|
start_date: String?,
|
|
114
|
-
title: String
|
|
132
|
+
title: String?,
|
|
133
|
+
union_code: String?,
|
|
134
|
+
union_local: String?
|
|
115
135
|
}
|
|
116
136
|
|
|
117
137
|
type custom_field =
|
|
@@ -11,6 +11,7 @@ module FinchAPI
|
|
|
11
11
|
first_name: String?,
|
|
12
12
|
gender: FinchAPI::Models::Sandbox::IndividualUpdateParams::gender?,
|
|
13
13
|
last_name: String?,
|
|
14
|
+
marital_status: FinchAPI::Models::Sandbox::IndividualUpdateParams::marital_status?,
|
|
14
15
|
middle_name: String?,
|
|
15
16
|
phone_numbers: ::Array[FinchAPI::Sandbox::IndividualUpdateParams::PhoneNumber?]?,
|
|
16
17
|
preferred_name: String?,
|
|
@@ -39,6 +40,8 @@ module FinchAPI
|
|
|
39
40
|
|
|
40
41
|
attr_accessor last_name: String?
|
|
41
42
|
|
|
43
|
+
attr_accessor marital_status: FinchAPI::Models::Sandbox::IndividualUpdateParams::marital_status?
|
|
44
|
+
|
|
42
45
|
attr_accessor middle_name: String?
|
|
43
46
|
|
|
44
47
|
attr_accessor phone_numbers: ::Array[FinchAPI::Sandbox::IndividualUpdateParams::PhoneNumber?]?
|
|
@@ -58,6 +61,7 @@ module FinchAPI
|
|
|
58
61
|
?first_name: String?,
|
|
59
62
|
?gender: FinchAPI::Models::Sandbox::IndividualUpdateParams::gender?,
|
|
60
63
|
?last_name: String?,
|
|
64
|
+
?marital_status: FinchAPI::Models::Sandbox::IndividualUpdateParams::marital_status?,
|
|
61
65
|
?middle_name: String?,
|
|
62
66
|
?phone_numbers: ::Array[FinchAPI::Sandbox::IndividualUpdateParams::PhoneNumber?]?,
|
|
63
67
|
?preferred_name: String?,
|
|
@@ -75,6 +79,7 @@ module FinchAPI
|
|
|
75
79
|
first_name: String?,
|
|
76
80
|
gender: FinchAPI::Models::Sandbox::IndividualUpdateParams::gender?,
|
|
77
81
|
last_name: String?,
|
|
82
|
+
marital_status: FinchAPI::Models::Sandbox::IndividualUpdateParams::marital_status?,
|
|
78
83
|
middle_name: String?,
|
|
79
84
|
phone_numbers: ::Array[FinchAPI::Sandbox::IndividualUpdateParams::PhoneNumber?]?,
|
|
80
85
|
preferred_name: String?,
|
|
@@ -156,6 +161,27 @@ module FinchAPI
|
|
|
156
161
|
def self?.values: -> ::Array[FinchAPI::Models::Sandbox::IndividualUpdateParams::gender]
|
|
157
162
|
end
|
|
158
163
|
|
|
164
|
+
type marital_status =
|
|
165
|
+
:single
|
|
166
|
+
| :married
|
|
167
|
+
| :divorced
|
|
168
|
+
| :widowed
|
|
169
|
+
| :domestic_partner
|
|
170
|
+
| :unknown
|
|
171
|
+
|
|
172
|
+
module MaritalStatus
|
|
173
|
+
extend FinchAPI::Internal::Type::Enum
|
|
174
|
+
|
|
175
|
+
SINGLE: :single
|
|
176
|
+
MARRIED: :married
|
|
177
|
+
DIVORCED: :divorced
|
|
178
|
+
WIDOWED: :widowed
|
|
179
|
+
DOMESTIC_PARTNER: :domestic_partner
|
|
180
|
+
UNKNOWN: :unknown
|
|
181
|
+
|
|
182
|
+
def self?.values: -> ::Array[FinchAPI::Models::Sandbox::IndividualUpdateParams::marital_status]
|
|
183
|
+
end
|
|
184
|
+
|
|
159
185
|
type phone_number =
|
|
160
186
|
{
|
|
161
187
|
data: String?,
|
|
@@ -11,6 +11,7 @@ module FinchAPI
|
|
|
11
11
|
first_name: String?,
|
|
12
12
|
gender: FinchAPI::Models::Sandbox::IndividualUpdateResponse::gender?,
|
|
13
13
|
last_name: String?,
|
|
14
|
+
marital_status: FinchAPI::Models::Sandbox::IndividualUpdateResponse::marital_status?,
|
|
14
15
|
middle_name: String?,
|
|
15
16
|
phone_numbers: ::Array[FinchAPI::Models::Sandbox::IndividualUpdateResponse::PhoneNumber?]?,
|
|
16
17
|
preferred_name: String?,
|
|
@@ -37,6 +38,8 @@ module FinchAPI
|
|
|
37
38
|
|
|
38
39
|
attr_accessor last_name: String?
|
|
39
40
|
|
|
41
|
+
attr_accessor marital_status: FinchAPI::Models::Sandbox::IndividualUpdateResponse::marital_status?
|
|
42
|
+
|
|
40
43
|
attr_accessor middle_name: String?
|
|
41
44
|
|
|
42
45
|
attr_accessor phone_numbers: ::Array[FinchAPI::Models::Sandbox::IndividualUpdateResponse::PhoneNumber?]?
|
|
@@ -56,6 +59,7 @@ module FinchAPI
|
|
|
56
59
|
?first_name: String?,
|
|
57
60
|
?gender: FinchAPI::Models::Sandbox::IndividualUpdateResponse::gender?,
|
|
58
61
|
?last_name: String?,
|
|
62
|
+
?marital_status: FinchAPI::Models::Sandbox::IndividualUpdateResponse::marital_status?,
|
|
59
63
|
?middle_name: String?,
|
|
60
64
|
?phone_numbers: ::Array[FinchAPI::Models::Sandbox::IndividualUpdateResponse::PhoneNumber?]?,
|
|
61
65
|
?preferred_name: String?,
|
|
@@ -72,6 +76,7 @@ module FinchAPI
|
|
|
72
76
|
first_name: String?,
|
|
73
77
|
gender: FinchAPI::Models::Sandbox::IndividualUpdateResponse::gender?,
|
|
74
78
|
last_name: String?,
|
|
79
|
+
marital_status: FinchAPI::Models::Sandbox::IndividualUpdateResponse::marital_status?,
|
|
75
80
|
middle_name: String?,
|
|
76
81
|
phone_numbers: ::Array[FinchAPI::Models::Sandbox::IndividualUpdateResponse::PhoneNumber?]?,
|
|
77
82
|
preferred_name: String?,
|
|
@@ -152,6 +157,27 @@ module FinchAPI
|
|
|
152
157
|
def self?.values: -> ::Array[FinchAPI::Models::Sandbox::IndividualUpdateResponse::gender]
|
|
153
158
|
end
|
|
154
159
|
|
|
160
|
+
type marital_status =
|
|
161
|
+
:single
|
|
162
|
+
| :married
|
|
163
|
+
| :divorced
|
|
164
|
+
| :widowed
|
|
165
|
+
| :domestic_partner
|
|
166
|
+
| :unknown
|
|
167
|
+
|
|
168
|
+
module MaritalStatus
|
|
169
|
+
extend FinchAPI::Internal::Type::Enum
|
|
170
|
+
|
|
171
|
+
SINGLE: :single
|
|
172
|
+
MARRIED: :married
|
|
173
|
+
DIVORCED: :divorced
|
|
174
|
+
WIDOWED: :widowed
|
|
175
|
+
DOMESTIC_PARTNER: :domestic_partner
|
|
176
|
+
UNKNOWN: :unknown
|
|
177
|
+
|
|
178
|
+
def self?.values: -> ::Array[FinchAPI::Models::Sandbox::IndividualUpdateResponse::marital_status]
|
|
179
|
+
end
|
|
180
|
+
|
|
155
181
|
type phone_number =
|
|
156
182
|
{
|
|
157
183
|
data: String?,
|
|
@@ -12,9 +12,11 @@ module FinchAPI
|
|
|
12
12
|
?end_date: String?,
|
|
13
13
|
?first_name: String?,
|
|
14
14
|
?flsa_status: FinchAPI::Models::Sandbox::EmploymentUpdateParams::flsa_status?,
|
|
15
|
+
?highly_compensated_employee: bool?,
|
|
15
16
|
?income: FinchAPI::Income?,
|
|
16
17
|
?income_history: ::Array[FinchAPI::Income?]?,
|
|
17
18
|
?is_active: bool?,
|
|
19
|
+
?key_employee: bool?,
|
|
18
20
|
?last_name: String?,
|
|
19
21
|
?latest_rehire_date: String?,
|
|
20
22
|
?location: FinchAPI::Location?,
|
|
@@ -23,6 +25,8 @@ module FinchAPI
|
|
|
23
25
|
?source_id: String?,
|
|
24
26
|
?start_date: String?,
|
|
25
27
|
?title: String?,
|
|
28
|
+
?union_code: String?,
|
|
29
|
+
?union_local: String?,
|
|
26
30
|
?request_options: FinchAPI::request_opts
|
|
27
31
|
) -> FinchAPI::Models::Sandbox::EmploymentUpdateResponse
|
|
28
32
|
|
|
@@ -11,6 +11,7 @@ module FinchAPI
|
|
|
11
11
|
?first_name: String?,
|
|
12
12
|
?gender: FinchAPI::Models::Sandbox::IndividualUpdateParams::gender?,
|
|
13
13
|
?last_name: String?,
|
|
14
|
+
?marital_status: FinchAPI::Models::Sandbox::IndividualUpdateParams::marital_status?,
|
|
14
15
|
?middle_name: String?,
|
|
15
16
|
?phone_numbers: ::Array[FinchAPI::Sandbox::IndividualUpdateParams::PhoneNumber?]?,
|
|
16
17
|
?preferred_name: String?,
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: finch-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.0.pre.alpha.
|
|
4
|
+
version: 0.1.0.pre.alpha.51
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Finch
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-08-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|