merge_hris_client 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/docs/IgnoreCommonModelRequest.md +20 -0
- data/docs/LocationTypeEnum.md +15 -0
- data/docs/ReasonEnum.md +15 -0
- data/lib/merge_hris_client/models/bank_info.rb +1 -1
- data/lib/merge_hris_client/models/benefit.rb +1 -1
- data/lib/merge_hris_client/models/company.rb +1 -1
- data/lib/merge_hris_client/models/deduction.rb +1 -1
- data/lib/merge_hris_client/models/employee.rb +1 -1
- data/lib/merge_hris_client/models/employment.rb +1 -1
- data/lib/merge_hris_client/models/location.rb +1 -1
- data/lib/merge_hris_client/models/pay_group.rb +1 -1
- data/lib/merge_hris_client/models/payroll_run.rb +1 -1
- data/lib/merge_hris_client/models/team.rb +1 -1
- data/lib/merge_hris_client/models/time_off.rb +1 -1
- data/lib/merge_hris_client/models/time_off_balance.rb +1 -1
- data/lib/merge_hris_client/version.rb +1 -1
- data/spec/models/ignore_common_model_request_spec.rb +40 -0
- data/spec/models/location_type_enum_spec.rb +28 -0
- data/spec/models/reason_enum_spec.rb +28 -0
- metadata +11 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14bdffc7f9e8648ce8e552ee66670e62ce5e80de867abe159885cd92013473b5
|
4
|
+
data.tar.gz: 0433437fc2cc2804e6b26ba3d1dc83450e6a9fdb86be65c3857a3426e02fe0bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a20820509d7564932beeaf08e13bfc02b4929ceb9ee8df96cc16767645111535f886f1c381266f4437357c3eb1a63e949870809824fda2e1743cd598db4d3286
|
7
|
+
data.tar.gz: 622694c81f683e6aaf5fe75f536521fe8948375b527e42e9b07703bd906dc26dd2a9dc2c837ef0975de2d2157ccb65aefb8466d6095bbc4f9b9e2bb33b12ef22
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# MergeHRISClient::IgnoreCommonModelRequest
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **reason** | [**ReasonEnum**](ReasonEnum.md) | | |
|
8
|
+
| **message** | **String** | | [optional] |
|
9
|
+
|
10
|
+
## Example
|
11
|
+
|
12
|
+
```ruby
|
13
|
+
require 'merge_hris_client'
|
14
|
+
|
15
|
+
instance = MergeHRISClient::IgnoreCommonModelRequest.new(
|
16
|
+
reason: GENERAL_CUSTOMER_REQUEST,
|
17
|
+
message: deletion request by user id 51903790-7dfe-4053-8d63-5a10cc4ffd39
|
18
|
+
)
|
19
|
+
```
|
20
|
+
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# MergeHRISClient::LocationTypeEnum
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
|
8
|
+
## Example
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
require 'merge_hris_client'
|
12
|
+
|
13
|
+
instance = MergeHRISClient::LocationTypeEnum.new()
|
14
|
+
```
|
15
|
+
|
data/docs/ReasonEnum.md
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
=begin
|
2
|
+
#Merge HRIS API
|
3
|
+
|
4
|
+
#The unified API for building rich integrations with multiple HR Information System platforms.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0
|
7
|
+
Contact: hello@merge.dev
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.1.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for MergeHRISClient::IgnoreCommonModelRequest
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeHRISClient::IgnoreCommonModelRequest do
|
21
|
+
let(:instance) { MergeHRISClient::IgnoreCommonModelRequest.new }
|
22
|
+
|
23
|
+
describe 'test an instance of IgnoreCommonModelRequest' do
|
24
|
+
it 'should create an instance of IgnoreCommonModelRequest' do
|
25
|
+
expect(instance).to be_instance_of(MergeHRISClient::IgnoreCommonModelRequest)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "reason"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "message"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
=begin
|
2
|
+
#Merge HRIS API
|
3
|
+
|
4
|
+
#The unified API for building rich integrations with multiple HR Information System platforms.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0
|
7
|
+
Contact: hello@merge.dev
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.1.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for MergeHRISClient::LocationTypeEnum
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeHRISClient::LocationTypeEnum do
|
21
|
+
let(:instance) { MergeHRISClient::LocationTypeEnum.new }
|
22
|
+
|
23
|
+
describe 'test an instance of LocationTypeEnum' do
|
24
|
+
it 'should create an instance of LocationTypeEnum' do
|
25
|
+
expect(instance).to be_instance_of(MergeHRISClient::LocationTypeEnum)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
=begin
|
2
|
+
#Merge HRIS API
|
3
|
+
|
4
|
+
#The unified API for building rich integrations with multiple HR Information System platforms.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0
|
7
|
+
Contact: hello@merge.dev
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 5.1.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for MergeHRISClient::ReasonEnum
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeHRISClient::ReasonEnum do
|
21
|
+
let(:instance) { MergeHRISClient::ReasonEnum.new }
|
22
|
+
|
23
|
+
describe 'test an instance of ReasonEnum' do
|
24
|
+
it 'should create an instance of ReasonEnum' do
|
25
|
+
expect(instance).to be_instance_of(MergeHRISClient::ReasonEnum)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: merge_hris_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-02-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -104,6 +104,7 @@ files:
|
|
104
104
|
- docs/GenderEnum.md
|
105
105
|
- docs/GenerateKeyApi.md
|
106
106
|
- docs/GenerateRemoteKeyRequest.md
|
107
|
+
- docs/IgnoreCommonModelRequest.md
|
107
108
|
- docs/Issue.md
|
108
109
|
- docs/IssueStatusEnum.md
|
109
110
|
- docs/IssuesApi.md
|
@@ -111,6 +112,7 @@ files:
|
|
111
112
|
- docs/LinkTokenApi.md
|
112
113
|
- docs/LinkedAccountsApi.md
|
113
114
|
- docs/Location.md
|
115
|
+
- docs/LocationTypeEnum.md
|
114
116
|
- docs/LocationsApi.md
|
115
117
|
- docs/MaritalStatusEnum.md
|
116
118
|
- docs/MethodEnum.md
|
@@ -140,6 +142,7 @@ files:
|
|
140
142
|
- docs/PayrollRun.md
|
141
143
|
- docs/PayrollRunsApi.md
|
142
144
|
- docs/PolicyTypeEnum.md
|
145
|
+
- docs/ReasonEnum.md
|
143
146
|
- docs/RegenerateKeyApi.md
|
144
147
|
- docs/RemoteData.md
|
145
148
|
- docs/RemoteDataRequest.md
|
@@ -343,10 +346,12 @@ files:
|
|
343
346
|
- spec/models/flsa_status_enum_spec.rb
|
344
347
|
- spec/models/gender_enum_spec.rb
|
345
348
|
- spec/models/generate_remote_key_request_spec.rb
|
349
|
+
- spec/models/ignore_common_model_request_spec.rb
|
346
350
|
- spec/models/issue_spec.rb
|
347
351
|
- spec/models/issue_status_enum_spec.rb
|
348
352
|
- spec/models/link_token_spec.rb
|
349
353
|
- spec/models/location_spec.rb
|
354
|
+
- spec/models/location_type_enum_spec.rb
|
350
355
|
- spec/models/marital_status_enum_spec.rb
|
351
356
|
- spec/models/method_enum_spec.rb
|
352
357
|
- spec/models/model_operation_spec.rb
|
@@ -372,6 +377,7 @@ files:
|
|
372
377
|
- spec/models/pay_period_enum_spec.rb
|
373
378
|
- spec/models/payroll_run_spec.rb
|
374
379
|
- spec/models/policy_type_enum_spec.rb
|
380
|
+
- spec/models/reason_enum_spec.rb
|
375
381
|
- spec/models/remote_data_request_spec.rb
|
376
382
|
- spec/models/remote_data_spec.rb
|
377
383
|
- spec/models/remote_key_for_regeneration_request_spec.rb
|
@@ -448,6 +454,7 @@ test_files:
|
|
448
454
|
- spec/api/available_actions_api_spec.rb
|
449
455
|
- spec/api_client_spec.rb
|
450
456
|
- spec/configuration_spec.rb
|
457
|
+
- spec/models/ignore_common_model_request_spec.rb
|
451
458
|
- spec/models/employment_type_enum_spec.rb
|
452
459
|
- spec/models/tax_spec.rb
|
453
460
|
- spec/models/marital_status_enum_spec.rb
|
@@ -470,6 +477,7 @@ test_files:
|
|
470
477
|
- spec/models/benefit_plan_type_enum_spec.rb
|
471
478
|
- spec/models/units_enum_spec.rb
|
472
479
|
- spec/models/time_off_balance_spec.rb
|
480
|
+
- spec/models/location_type_enum_spec.rb
|
473
481
|
- spec/models/model_operation_spec.rb
|
474
482
|
- spec/models/paginated_employee_payroll_run_list_spec.rb
|
475
483
|
- spec/models/employment_spec.rb
|
@@ -482,6 +490,7 @@ test_files:
|
|
482
490
|
- spec/models/link_token_spec.rb
|
483
491
|
- spec/models/run_type_enum_spec.rb
|
484
492
|
- spec/models/pay_frequency_enum_spec.rb
|
493
|
+
- spec/models/reason_enum_spec.rb
|
485
494
|
- spec/models/paginated_issue_list_spec.rb
|
486
495
|
- spec/models/paginated_time_off_list_spec.rb
|
487
496
|
- spec/models/account_token_spec.rb
|