stackone_hris_client 1.5.2 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +49 -30
- data/docs/Account.md +3 -1
- data/docs/AccountMeta.md +22 -0
- data/docs/AccountsApi.md +82 -14
- data/docs/CompaniesApi.md +25 -25
- data/docs/ConnectSession.md +1 -1
- data/docs/ConnectSessionCreate.md +1 -1
- data/docs/ConnectSessionToken.md +1 -1
- data/docs/ConnectSessionsApi.md +9 -9
- data/docs/CreateEmployeeResult.md +22 -0
- data/docs/Employee.md +56 -52
- data/docs/EmployeeApiModel.md +80 -0
- data/docs/EmployeeApiModelAvatar.md +20 -0
- data/docs/EmployeeApiModelEmploymentStatus.md +20 -0
- data/docs/EmployeeApiModelEmploymentType.md +20 -0
- data/docs/EmployeeApiModelEthnicity.md +20 -0
- data/docs/EmployeeApiModelGender.md +20 -0
- data/docs/EmployeeApiModelHomeLocation.md +38 -0
- data/docs/EmployeeApiModelMaritalStatus.md +20 -0
- data/docs/EmployeeApiModelWorkLocation.md +38 -0
- data/docs/EmployeeCustomFieldTypeEnum.md +20 -0
- data/docs/EmployeeCustomFields.md +30 -0
- data/docs/EmployeeCustomFieldsType.md +20 -0
- data/docs/EmployeeResult.md +1 -1
- data/docs/EmployeesApi.md +242 -28
- data/docs/EmployeesPaginated.md +1 -1
- data/docs/Employment.md +17 -15
- data/docs/EmploymentEmploymentContractType.md +20 -0
- data/docs/EmploymentEmploymentType.md +20 -0
- data/docs/EmploymentPayFrequency.md +20 -0
- data/docs/EmploymentPayPeriod.md +20 -0
- data/docs/EmploymentScheduleTypeEnum.md +20 -0
- data/docs/EmploymentsApi.md +27 -27
- data/docs/HrisCreateEmployeeRequestDto.md +80 -0
- data/docs/Location.md +20 -20
- data/docs/LocationCountry.md +20 -0
- data/docs/LocationLocationType.md +20 -0
- data/docs/LocationsApi.md +9 -9
- data/gem-config.yml +2 -2
- data/generate_gem.sh +0 -0
- data/lib/stackone_hris_client/api/accounts_api.rb +68 -7
- data/lib/stackone_hris_client/api/companies_api.rb +20 -20
- data/lib/stackone_hris_client/api/connect_sessions_api.rb +5 -5
- data/lib/stackone_hris_client/api/employees_api.rb +251 -20
- data/lib/stackone_hris_client/api/employments_api.rb +20 -20
- data/lib/stackone_hris_client/api/locations_api.rb +5 -5
- data/lib/stackone_hris_client/api_client.rb +1 -1
- data/lib/stackone_hris_client/api_error.rb +1 -1
- data/lib/stackone_hris_client/configuration.rb +2 -2
- data/lib/stackone_hris_client/models/account.rb +16 -7
- data/lib/stackone_hris_client/models/account_meta.rb +284 -0
- data/lib/stackone_hris_client/models/companies_paginated.rb +1 -1
- data/lib/stackone_hris_client/models/company.rb +1 -1
- data/lib/stackone_hris_client/models/company_result.rb +1 -1
- data/lib/stackone_hris_client/models/connect_session.rb +1 -1
- data/lib/stackone_hris_client/models/connect_session_authenticate.rb +1 -1
- data/lib/stackone_hris_client/models/connect_session_create.rb +1 -1
- data/lib/stackone_hris_client/models/connect_session_token.rb +1 -1
- data/lib/stackone_hris_client/models/country_code_enum.rb +1 -7
- data/lib/stackone_hris_client/models/create_employee_result.rb +250 -0
- data/lib/stackone_hris_client/models/employee.rb +117 -124
- data/lib/stackone_hris_client/models/employee_api_model.rb +523 -0
- data/lib/stackone_hris_client/models/employee_api_model_avatar.rb +234 -0
- data/lib/stackone_hris_client/models/employee_api_model_employment_status.rb +272 -0
- data/lib/stackone_hris_client/models/employee_api_model_employment_type.rb +272 -0
- data/lib/stackone_hris_client/models/employee_api_model_ethnicity.rb +272 -0
- data/lib/stackone_hris_client/models/employee_api_model_gender.rb +272 -0
- data/lib/stackone_hris_client/models/employee_api_model_home_location.rb +324 -0
- data/lib/stackone_hris_client/models/employee_api_model_marital_status.rb +272 -0
- data/lib/stackone_hris_client/models/employee_api_model_work_location.rb +324 -0
- data/lib/stackone_hris_client/models/employee_custom_field_type_enum.rb +264 -0
- data/lib/stackone_hris_client/models/employee_custom_fields.rb +279 -0
- data/lib/stackone_hris_client/models/employee_custom_fields_type.rb +272 -0
- data/lib/stackone_hris_client/models/employee_result.rb +1 -1
- data/lib/stackone_hris_client/models/employees_paginated.rb +1 -1
- data/lib/stackone_hris_client/models/employment.rb +22 -7
- data/lib/stackone_hris_client/models/employment_employment_contract_type.rb +272 -0
- data/lib/stackone_hris_client/models/employment_employment_type.rb +272 -0
- data/lib/stackone_hris_client/models/employment_pay_frequency.rb +272 -0
- data/lib/stackone_hris_client/models/employment_pay_period.rb +272 -0
- data/lib/stackone_hris_client/models/employment_result.rb +1 -1
- data/lib/stackone_hris_client/models/employment_schedule_type_enum.rb +264 -0
- data/lib/stackone_hris_client/models/employment_status_enum.rb +1 -7
- data/lib/stackone_hris_client/models/employment_type_enum.rb +1 -7
- data/lib/stackone_hris_client/models/employments_paginated.rb +1 -1
- data/lib/stackone_hris_client/models/ethnicity_enum.rb +1 -7
- data/lib/stackone_hris_client/models/gender_enum.rb +1 -7
- data/lib/stackone_hris_client/models/hris_create_employee_request_dto.rb +523 -0
- data/lib/stackone_hris_client/models/image.rb +1 -1
- data/lib/stackone_hris_client/models/location.rb +12 -8
- data/lib/stackone_hris_client/models/location_country.rb +272 -0
- data/lib/stackone_hris_client/models/location_location_type.rb +272 -0
- data/lib/stackone_hris_client/models/location_result.rb +1 -1
- data/lib/stackone_hris_client/models/location_type_enum.rb +1 -7
- data/lib/stackone_hris_client/models/locations_paginated.rb +1 -1
- data/lib/stackone_hris_client/models/marital_status_enum.rb +1 -7
- data/lib/stackone_hris_client/models/pay_frequency_enum.rb +1 -7
- data/lib/stackone_hris_client/models/pay_period_enum.rb +1 -7
- data/lib/stackone_hris_client/version.rb +2 -2
- data/lib/stackone_hris_client.rb +23 -1
- data/spec/api/accounts_api_spec.rb +30 -8
- data/spec/api/companies_api_spec.rb +13 -13
- data/spec/api/connect_sessions_api_spec.rb +8 -8
- data/spec/api/employees_api_spec.rb +60 -18
- data/spec/api/employments_api_spec.rb +13 -13
- data/spec/api/locations_api_spec.rb +9 -9
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/account_meta_spec.rb +50 -0
- data/spec/models/account_spec.rb +18 -12
- data/spec/models/companies_paginated_spec.rb +4 -4
- data/spec/models/company_result_spec.rb +3 -3
- data/spec/models/company_spec.rb +4 -4
- data/spec/models/connect_session_authenticate_spec.rb +5 -5
- data/spec/models/connect_session_create_spec.rb +17 -11
- data/spec/models/connect_session_spec.rb +14 -14
- data/spec/models/connect_session_token_spec.rb +15 -15
- data/spec/models/country_code_enum_spec.rb +4 -4
- data/spec/models/create_employee_result_spec.rb +46 -0
- data/spec/models/employee.rb +220 -0
- data/spec/models/employee_api_model_avatar_spec.rb +40 -0
- data/spec/models/employee_api_model_employment_status_spec.rb +44 -0
- data/spec/models/employee_api_model_employment_type_spec.rb +44 -0
- data/spec/models/employee_api_model_ethnicity_spec.rb +44 -0
- data/spec/models/employee_api_model_gender_spec.rb +44 -0
- data/spec/models/employee_api_model_home_location_spec.rb +94 -0
- data/spec/models/employee_api_model_marital_status_spec.rb +44 -0
- data/spec/models/employee_api_model_spec.rb +220 -0
- data/spec/models/employee_api_model_work_location_spec.rb +94 -0
- data/spec/models/employee_custom_field_type_enum_spec.rb +44 -0
- data/spec/models/employee_custom_fields_spec.rb +70 -0
- data/spec/models/employee_custom_fields_type_spec.rb +44 -0
- data/spec/models/employee_result_spec.rb +6 -6
- data/spec/models/employees_paginated_spec.rb +7 -7
- data/spec/models/employment_employment_contract_type_spec.rb +44 -0
- data/spec/models/employment_employment_type_spec.rb +44 -0
- data/spec/models/employment_pay_frequency_spec.rb +44 -0
- data/spec/models/employment_pay_period_spec.rb +44 -0
- data/spec/models/employment_result_spec.rb +3 -3
- data/spec/models/employment_schedule_type_enum_spec.rb +44 -0
- data/spec/models/employment_spec.rb +16 -10
- data/spec/models/employment_status_enum_spec.rb +4 -4
- data/spec/models/employment_type_enum_spec.rb +4 -4
- data/spec/models/employments_paginated_spec.rb +4 -4
- data/spec/models/ethnicity_enum_spec.rb +4 -4
- data/spec/models/gender_enum_spec.rb +4 -4
- data/spec/models/hris_create_employee_request_dto_spec.rb +220 -0
- data/spec/models/image_spec.rb +3 -3
- data/spec/models/location_country_spec.rb +44 -0
- data/spec/models/location_location_type_spec.rb +44 -0
- data/spec/models/location_result_spec.rb +3 -3
- data/spec/models/location_spec.rb +12 -12
- data/spec/models/location_type_enum_spec.rb +3 -3
- data/spec/models/locations_paginated_spec.rb +4 -4
- data/spec/models/marital_status_enum_spec.rb +4 -4
- data/spec/models/pay_frequency_enum_spec.rb +4 -4
- data/spec/models/pay_period_enum_spec.rb +3 -3
- data/spec/spec_helper.rb +1 -1
- data/stackone_hris_client.gemspec +1 -1
- metadata +92 -4
- data/spec/models/employee_spec.rb +0 -124
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#StackOne Unified API - HRIS
|
|
3
|
+
|
|
4
|
+
#The documentation for the StackOne Unified API - HRIS
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 6.6.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for StackOneHRIS::EmployeeCustomFieldTypeEnum
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe StackOneHRIS::EmployeeCustomFieldTypeEnum do
|
|
21
|
+
let(:instance) { StackOneHRIS::EmployeeCustomFieldTypeEnum.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of EmployeeCustomFieldTypeEnum' do
|
|
24
|
+
it 'should create an instance of EmployeeCustomFieldTypeEnum' do
|
|
25
|
+
expect(instance).to be_instance_of(StackOneHRIS::EmployeeCustomFieldTypeEnum)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "value"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["date", "float", "integer", "list", "text", "unmapped_value"])
|
|
32
|
+
# validator.allowable_values.each do |value|
|
|
33
|
+
# expect { instance.value = value }.not_to raise_error
|
|
34
|
+
# end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
describe 'test attribute "source_value"' do
|
|
39
|
+
it 'should work' do
|
|
40
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
end
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#StackOne Unified API - HRIS
|
|
3
|
+
|
|
4
|
+
#The documentation for the StackOne Unified API - HRIS
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 6.6.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for StackOneHRIS::EmployeeCustomFields
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe StackOneHRIS::EmployeeCustomFields do
|
|
21
|
+
let(:instance) { StackOneHRIS::EmployeeCustomFields.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of EmployeeCustomFields' do
|
|
24
|
+
it 'should create an instance of EmployeeCustomFields' do
|
|
25
|
+
expect(instance).to be_instance_of(StackOneHRIS::EmployeeCustomFields)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "id"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
describe 'test attribute "name"' do
|
|
35
|
+
it 'should work' do
|
|
36
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
describe 'test attribute "description"' do
|
|
41
|
+
it 'should work' do
|
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
describe 'test attribute "type"' do
|
|
47
|
+
it 'should work' do
|
|
48
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
describe 'test attribute "value"' do
|
|
53
|
+
it 'should work' do
|
|
54
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
describe 'test attribute "value_id"' do
|
|
59
|
+
it 'should work' do
|
|
60
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
describe 'test attribute "options"' do
|
|
65
|
+
it 'should work' do
|
|
66
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
end
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#StackOne Unified API - HRIS
|
|
3
|
+
|
|
4
|
+
#The documentation for the StackOne Unified API - HRIS
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 6.6.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for StackOneHRIS::EmployeeCustomFieldsType
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe StackOneHRIS::EmployeeCustomFieldsType do
|
|
21
|
+
let(:instance) { StackOneHRIS::EmployeeCustomFieldsType.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of EmployeeCustomFieldsType' do
|
|
24
|
+
it 'should create an instance of EmployeeCustomFieldsType' do
|
|
25
|
+
expect(instance).to be_instance_of(StackOneHRIS::EmployeeCustomFieldsType)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "value"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["date", "float", "integer", "list", "text", "unmapped_value"])
|
|
32
|
+
# validator.allowable_values.each do |value|
|
|
33
|
+
# expect { instance.value = value }.not_to raise_error
|
|
34
|
+
# end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
describe 'test attribute "source_value"' do
|
|
39
|
+
it 'should work' do
|
|
40
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
end
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#StackOne Unified API
|
|
2
|
+
#StackOne Unified API - HRIS
|
|
3
3
|
|
|
4
|
-
#The documentation for the StackOne Unified API
|
|
4
|
+
#The documentation for the StackOne Unified API - HRIS
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.0
|
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
|
7
7
|
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
OpenAPI Generator version: 6.
|
|
9
|
+
OpenAPI Generator version: 6.6.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -27,13 +27,13 @@ describe StackOneHRIS::EmployeeResult do
|
|
|
27
27
|
end
|
|
28
28
|
describe 'test attribute "data"' do
|
|
29
29
|
it 'should work' do
|
|
30
|
-
# assertion here. ref: https://
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
31
|
end
|
|
32
32
|
end
|
|
33
33
|
|
|
34
34
|
describe 'test attribute "raw"' do
|
|
35
35
|
it 'should work' do
|
|
36
|
-
# assertion here. ref: https://
|
|
36
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
37
37
|
end
|
|
38
38
|
end
|
|
39
39
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
=begin
|
|
2
|
-
#StackOne Unified API
|
|
2
|
+
#StackOne Unified API - HRIS
|
|
3
3
|
|
|
4
|
-
#The documentation for the StackOne Unified API
|
|
4
|
+
#The documentation for the StackOne Unified API - HRIS
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document: 1.0
|
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
|
7
7
|
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
OpenAPI Generator version: 6.
|
|
9
|
+
OpenAPI Generator version: 6.6.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -27,19 +27,19 @@ describe StackOneHRIS::EmployeesPaginated do
|
|
|
27
27
|
end
|
|
28
28
|
describe 'test attribute "next_page"' do
|
|
29
29
|
it 'should work' do
|
|
30
|
-
# assertion here. ref: https://
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
31
|
end
|
|
32
32
|
end
|
|
33
33
|
|
|
34
34
|
describe 'test attribute "data"' do
|
|
35
35
|
it 'should work' do
|
|
36
|
-
# assertion here. ref: https://
|
|
36
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
37
37
|
end
|
|
38
38
|
end
|
|
39
39
|
|
|
40
40
|
describe 'test attribute "raw"' do
|
|
41
41
|
it 'should work' do
|
|
42
|
-
# assertion here. ref: https://
|
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
43
43
|
end
|
|
44
44
|
end
|
|
45
45
|
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#StackOne Unified API - HRIS
|
|
3
|
+
|
|
4
|
+
#The documentation for the StackOne Unified API - HRIS
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 6.6.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for StackOneHRIS::EmploymentEmploymentContractType
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe StackOneHRIS::EmploymentEmploymentContractType do
|
|
21
|
+
let(:instance) { StackOneHRIS::EmploymentEmploymentContractType.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of EmploymentEmploymentContractType' do
|
|
24
|
+
it 'should create an instance of EmploymentEmploymentContractType' do
|
|
25
|
+
expect(instance).to be_instance_of(StackOneHRIS::EmploymentEmploymentContractType)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "value"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["full_time", "shifts", "part_time", "unmapped_value"])
|
|
32
|
+
# validator.allowable_values.each do |value|
|
|
33
|
+
# expect { instance.value = value }.not_to raise_error
|
|
34
|
+
# end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
describe 'test attribute "source_value"' do
|
|
39
|
+
it 'should work' do
|
|
40
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
end
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#StackOne Unified API - HRIS
|
|
3
|
+
|
|
4
|
+
#The documentation for the StackOne Unified API - HRIS
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 6.6.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for StackOneHRIS::EmploymentEmploymentType
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe StackOneHRIS::EmploymentEmploymentType do
|
|
21
|
+
let(:instance) { StackOneHRIS::EmploymentEmploymentType.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of EmploymentEmploymentType' do
|
|
24
|
+
it 'should create an instance of EmploymentEmploymentType' do
|
|
25
|
+
expect(instance).to be_instance_of(StackOneHRIS::EmploymentEmploymentType)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "value"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["full_time", "part_time", "contractor", "intern", "permanent", "apprentice", "freelance", "terminated", "temporary", "seasonal", "volunteer", "probation", "internal", "external", "employer_of_record", "unmapped_value"])
|
|
32
|
+
# validator.allowable_values.each do |value|
|
|
33
|
+
# expect { instance.value = value }.not_to raise_error
|
|
34
|
+
# end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
describe 'test attribute "source_value"' do
|
|
39
|
+
it 'should work' do
|
|
40
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
end
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#StackOne Unified API - HRIS
|
|
3
|
+
|
|
4
|
+
#The documentation for the StackOne Unified API - HRIS
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 6.6.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for StackOneHRIS::EmploymentPayFrequency
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe StackOneHRIS::EmploymentPayFrequency do
|
|
21
|
+
let(:instance) { StackOneHRIS::EmploymentPayFrequency.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of EmploymentPayFrequency' do
|
|
24
|
+
it 'should create an instance of EmploymentPayFrequency' do
|
|
25
|
+
expect(instance).to be_instance_of(StackOneHRIS::EmploymentPayFrequency)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "value"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["hourly", "weekly", "bi_weekly", "four_weekly", "semi_monthly", "monthly", "bi_monthly", "quarterly", "semi_annually", "yearly", "thirteen_monthly", "pro_rata", "unmapped_value", "half_yearly"])
|
|
32
|
+
# validator.allowable_values.each do |value|
|
|
33
|
+
# expect { instance.value = value }.not_to raise_error
|
|
34
|
+
# end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
describe 'test attribute "source_value"' do
|
|
39
|
+
it 'should work' do
|
|
40
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
end
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#StackOne Unified API - HRIS
|
|
3
|
+
|
|
4
|
+
#The documentation for the StackOne Unified API - HRIS
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 6.6.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for StackOneHRIS::EmploymentPayPeriod
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe StackOneHRIS::EmploymentPayPeriod do
|
|
21
|
+
let(:instance) { StackOneHRIS::EmploymentPayPeriod.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of EmploymentPayPeriod' do
|
|
24
|
+
it 'should create an instance of EmploymentPayPeriod' do
|
|
25
|
+
expect(instance).to be_instance_of(StackOneHRIS::EmploymentPayPeriod)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "value"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["hour", "day", "week", "every_two_weeks", "month", "quarter", "every_six_months", "year", "unmapped_value"])
|
|
32
|
+
# validator.allowable_values.each do |value|
|
|
33
|
+
# expect { instance.value = value }.not_to raise_error
|
|
34
|
+
# end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
describe 'test attribute "source_value"' do
|
|
39
|
+
it 'should work' do
|
|
40
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
end
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
The version of the OpenAPI document: 1.0.0
|
|
7
7
|
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
OpenAPI Generator version: 6.
|
|
9
|
+
OpenAPI Generator version: 6.6.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -27,13 +27,13 @@ describe StackOneHRIS::EmploymentResult do
|
|
|
27
27
|
end
|
|
28
28
|
describe 'test attribute "data"' do
|
|
29
29
|
it 'should work' do
|
|
30
|
-
# assertion here. ref: https://
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
31
|
end
|
|
32
32
|
end
|
|
33
33
|
|
|
34
34
|
describe 'test attribute "raw"' do
|
|
35
35
|
it 'should work' do
|
|
36
|
-
# assertion here. ref: https://
|
|
36
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
37
37
|
end
|
|
38
38
|
end
|
|
39
39
|
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#StackOne Unified API - HRIS
|
|
3
|
+
|
|
4
|
+
#The documentation for the StackOne Unified API - HRIS
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 6.6.0
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for StackOneHRIS::EmploymentScheduleTypeEnum
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe StackOneHRIS::EmploymentScheduleTypeEnum do
|
|
21
|
+
let(:instance) { StackOneHRIS::EmploymentScheduleTypeEnum.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of EmploymentScheduleTypeEnum' do
|
|
24
|
+
it 'should create an instance of EmploymentScheduleTypeEnum' do
|
|
25
|
+
expect(instance).to be_instance_of(StackOneHRIS::EmploymentScheduleTypeEnum)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "value"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["full_time", "shifts", "part_time", "unmapped_value"])
|
|
32
|
+
# validator.allowable_values.each do |value|
|
|
33
|
+
# expect { instance.value = value }.not_to raise_error
|
|
34
|
+
# end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
describe 'test attribute "source_value"' do
|
|
39
|
+
it 'should work' do
|
|
40
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
41
|
+
end
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
end
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
The version of the OpenAPI document: 1.0.0
|
|
7
7
|
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
OpenAPI Generator version: 6.
|
|
9
|
+
OpenAPI Generator version: 6.6.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -27,55 +27,61 @@ describe StackOneHRIS::Employment do
|
|
|
27
27
|
end
|
|
28
28
|
describe 'test attribute "id"' do
|
|
29
29
|
it 'should work' do
|
|
30
|
-
# assertion here. ref: https://
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
31
|
end
|
|
32
32
|
end
|
|
33
33
|
|
|
34
34
|
describe 'test attribute "employee_id"' do
|
|
35
35
|
it 'should work' do
|
|
36
|
-
# assertion here. ref: https://
|
|
36
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
37
37
|
end
|
|
38
38
|
end
|
|
39
39
|
|
|
40
40
|
describe 'test attribute "job_title"' do
|
|
41
41
|
it 'should work' do
|
|
42
|
-
# assertion here. ref: https://
|
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
43
43
|
end
|
|
44
44
|
end
|
|
45
45
|
|
|
46
46
|
describe 'test attribute "pay_rate"' do
|
|
47
47
|
it 'should work' do
|
|
48
|
-
# assertion here. ref: https://
|
|
48
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
49
49
|
end
|
|
50
50
|
end
|
|
51
51
|
|
|
52
52
|
describe 'test attribute "pay_period"' do
|
|
53
53
|
it 'should work' do
|
|
54
|
-
# assertion here. ref: https://
|
|
54
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
55
55
|
end
|
|
56
56
|
end
|
|
57
57
|
|
|
58
58
|
describe 'test attribute "pay_frequency"' do
|
|
59
59
|
it 'should work' do
|
|
60
|
-
# assertion here. ref: https://
|
|
60
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
61
61
|
end
|
|
62
62
|
end
|
|
63
63
|
|
|
64
64
|
describe 'test attribute "pay_currency"' do
|
|
65
65
|
it 'should work' do
|
|
66
|
-
# assertion here. ref: https://
|
|
66
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
67
67
|
end
|
|
68
68
|
end
|
|
69
69
|
|
|
70
70
|
describe 'test attribute "effective_date"' do
|
|
71
71
|
it 'should work' do
|
|
72
|
-
# assertion here. ref: https://
|
|
72
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
73
73
|
end
|
|
74
74
|
end
|
|
75
75
|
|
|
76
76
|
describe 'test attribute "employment_type"' do
|
|
77
77
|
it 'should work' do
|
|
78
|
-
# assertion here. ref: https://
|
|
78
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
describe 'test attribute "employment_contract_type"' do
|
|
83
|
+
it 'should work' do
|
|
84
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
79
85
|
end
|
|
80
86
|
end
|
|
81
87
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
The version of the OpenAPI document: 1.0.0
|
|
7
7
|
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
OpenAPI Generator version: 6.
|
|
9
|
+
OpenAPI Generator version: 6.6.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -27,8 +27,8 @@ describe StackOneHRIS::EmploymentStatusEnum do
|
|
|
27
27
|
end
|
|
28
28
|
describe 'test attribute "value"' do
|
|
29
29
|
it 'should work' do
|
|
30
|
-
# assertion here. ref: https://
|
|
31
|
-
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["active", "pending", "terminated", "unmapped_value"])
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["active", "pending", "terminated", "leave", "unmapped_value"])
|
|
32
32
|
# validator.allowable_values.each do |value|
|
|
33
33
|
# expect { instance.value = value }.not_to raise_error
|
|
34
34
|
# end
|
|
@@ -37,7 +37,7 @@ describe StackOneHRIS::EmploymentStatusEnum do
|
|
|
37
37
|
|
|
38
38
|
describe 'test attribute "source_value"' do
|
|
39
39
|
it 'should work' do
|
|
40
|
-
# assertion here. ref: https://
|
|
40
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
41
41
|
end
|
|
42
42
|
end
|
|
43
43
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
The version of the OpenAPI document: 1.0.0
|
|
7
7
|
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
OpenAPI Generator version: 6.
|
|
9
|
+
OpenAPI Generator version: 6.6.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -27,8 +27,8 @@ describe StackOneHRIS::EmploymentTypeEnum do
|
|
|
27
27
|
end
|
|
28
28
|
describe 'test attribute "value"' do
|
|
29
29
|
it 'should work' do
|
|
30
|
-
# assertion here. ref: https://
|
|
31
|
-
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["full_time", "part_time", "contractor", "intern", "
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["full_time", "part_time", "contractor", "intern", "permanent", "apprentice", "freelance", "terminated", "temporary", "seasonal", "volunteer", "probation", "internal", "external", "employer_of_record", "unmapped_value"])
|
|
32
32
|
# validator.allowable_values.each do |value|
|
|
33
33
|
# expect { instance.value = value }.not_to raise_error
|
|
34
34
|
# end
|
|
@@ -37,7 +37,7 @@ describe StackOneHRIS::EmploymentTypeEnum do
|
|
|
37
37
|
|
|
38
38
|
describe 'test attribute "source_value"' do
|
|
39
39
|
it 'should work' do
|
|
40
|
-
# assertion here. ref: https://
|
|
40
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
41
41
|
end
|
|
42
42
|
end
|
|
43
43
|
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
The version of the OpenAPI document: 1.0.0
|
|
7
7
|
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
|
-
OpenAPI Generator version: 6.
|
|
9
|
+
OpenAPI Generator version: 6.6.0
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
@@ -27,19 +27,19 @@ describe StackOneHRIS::EmploymentsPaginated do
|
|
|
27
27
|
end
|
|
28
28
|
describe 'test attribute "next_page"' do
|
|
29
29
|
it 'should work' do
|
|
30
|
-
# assertion here. ref: https://
|
|
30
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
31
31
|
end
|
|
32
32
|
end
|
|
33
33
|
|
|
34
34
|
describe 'test attribute "data"' do
|
|
35
35
|
it 'should work' do
|
|
36
|
-
# assertion here. ref: https://
|
|
36
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
37
37
|
end
|
|
38
38
|
end
|
|
39
39
|
|
|
40
40
|
describe 'test attribute "raw"' do
|
|
41
41
|
it 'should work' do
|
|
42
|
-
# assertion here. ref: https://
|
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
43
43
|
end
|
|
44
44
|
end
|
|
45
45
|
|