merge_ats_client 1.0.1 → 1.0.2
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/README.md +13 -3
- data/docs/AccountToken.md +3 -1
- data/docs/ApplicationsApi.md +0 -82
- data/docs/Attachment.md +2 -0
- data/docs/AttachmentRequest.md +26 -0
- data/docs/AttachmentTypeEnum.md +15 -0
- data/docs/AttachmentsApi.md +80 -0
- data/docs/AvailableActions.md +1 -1
- data/docs/Candidate.md +2 -2
- data/docs/CandidateRequest.md +5 -1
- data/docs/InterviewsApi.md +80 -0
- data/docs/JobsApi.md +3 -1
- data/docs/ModelOperation.md +3 -1
- data/docs/PaginatedSyncStatusList.md +22 -0
- data/docs/RemoteUserRequest.md +30 -0
- data/docs/ScheduledInterviewRequest.md +38 -0
- data/docs/ScorecardRequest.md +30 -0
- data/docs/ScorecardsApi.md +80 -0
- data/docs/SyncStatus.md +1 -1
- data/docs/SyncStatusApi.md +89 -11
- data/docs/SyncStatusStatusEnum.md +15 -0
- data/docs/UsersApi.md +81 -0
- data/lib/merge_ats_client/api/applications_api.rb +0 -82
- data/lib/merge_ats_client/api/attachments_api.rb +76 -0
- data/lib/merge_ats_client/api/interviews_api.rb +76 -0
- data/lib/merge_ats_client/api/jobs_api.rb +7 -0
- data/lib/merge_ats_client/api/scorecards_api.rb +76 -0
- data/lib/merge_ats_client/api/sync_status_api.rb +78 -10
- data/lib/merge_ats_client/api/users_api.rb +79 -0
- data/lib/merge_ats_client/api_client.rb +1 -1
- data/lib/merge_ats_client/models/account_token.rb +18 -4
- data/lib/merge_ats_client/models/activity.rb +1 -1
- data/lib/merge_ats_client/models/application.rb +1 -1
- data/lib/merge_ats_client/models/attachment.rb +13 -2
- data/lib/merge_ats_client/models/attachment_request.rb +279 -0
- data/lib/merge_ats_client/models/attachment_type_enum.rb +39 -0
- data/lib/merge_ats_client/models/candidate.rb +1 -1
- data/lib/merge_ats_client/models/candidate_request.rb +26 -4
- data/lib/merge_ats_client/models/data_passthrough_request.rb +1 -0
- data/lib/merge_ats_client/models/eeoc.rb +1 -1
- data/lib/merge_ats_client/models/end_user_details_request.rb +1 -5
- data/lib/merge_ats_client/models/job.rb +1 -1
- data/lib/merge_ats_client/models/job_interview_stage.rb +1 -1
- data/lib/merge_ats_client/models/model_operation.rb +20 -4
- data/lib/merge_ats_client/models/offer.rb +1 -1
- data/lib/merge_ats_client/models/paginated_sync_status_list.rb +240 -0
- data/lib/merge_ats_client/models/remote_user_request.rb +302 -0
- data/lib/merge_ats_client/models/scheduled_interview.rb +1 -1
- data/lib/merge_ats_client/models/scheduled_interview_request.rb +331 -0
- data/lib/merge_ats_client/models/scorecard.rb +1 -1
- data/lib/merge_ats_client/models/scorecard_request.rb +287 -0
- data/lib/merge_ats_client/models/sync_status.rb +1 -1
- data/lib/merge_ats_client/models/sync_status_status_enum.rb +37 -0
- data/lib/merge_ats_client/version.rb +2 -2
- data/lib/merge_ats_client.rb +7 -3
- data/spec/api/delete_account_api_spec.rb +46 -0
- data/spec/api/generate_key_api_spec.rb +46 -0
- data/spec/api/issues_api_spec.rb +65 -0
- data/spec/models/attachment_request_spec.rb +58 -0
- data/spec/models/attachment_type_enum_spec.rb +28 -0
- data/spec/models/generate_remote_key_request_spec.rb +1 -1
- data/spec/models/issue_spec.rb +70 -0
- data/spec/models/issue_status_enum_spec.rb +28 -0
- data/spec/models/paginated_issue_list_spec.rb +46 -0
- data/spec/models/paginated_sync_status_list_spec.rb +46 -0
- data/spec/models/remote_data_request_spec.rb +40 -0
- data/spec/models/remote_user_request_spec.rb +70 -0
- data/spec/models/scheduled_interview_request_spec.rb +94 -0
- data/spec/models/scorecard_request_spec.rb +70 -0
- data/spec/models/sync_status_status_enum_spec.rb +28 -0
- data/test_ats.rb +13 -13
- data/test_signature.rb +2 -2
- metadata +44 -3
- data/merge_ats_client-1.0.0.gem +0 -0
data/lib/merge_ats_client.rb
CHANGED
@@ -25,9 +25,10 @@ require 'merge_ats_client/models/activity_type_enum'
|
|
25
25
|
require 'merge_ats_client/models/application'
|
26
26
|
require 'merge_ats_client/models/application_request'
|
27
27
|
require 'merge_ats_client/models/attachment'
|
28
|
+
require 'merge_ats_client/models/attachment_request'
|
29
|
+
require 'merge_ats_client/models/attachment_type_enum'
|
28
30
|
require 'merge_ats_client/models/available_actions'
|
29
31
|
require 'merge_ats_client/models/candidate'
|
30
|
-
require 'merge_ats_client/models/data_passthrough'
|
31
32
|
require 'merge_ats_client/models/candidate_request'
|
32
33
|
require 'merge_ats_client/models/data_passthrough_request'
|
33
34
|
require 'merge_ats_client/models/department'
|
@@ -36,7 +37,6 @@ require 'merge_ats_client/models/eeoc'
|
|
36
37
|
require 'merge_ats_client/models/email_address'
|
37
38
|
require 'merge_ats_client/models/email_address_request'
|
38
39
|
require 'merge_ats_client/models/email_address_type_enum'
|
39
|
-
require 'merge_ats_client/models/end_user_details'
|
40
40
|
require 'merge_ats_client/models/end_user_details_request'
|
41
41
|
require 'merge_ats_client/models/gender_enum'
|
42
42
|
require 'merge_ats_client/models/generate_remote_key_request'
|
@@ -64,8 +64,8 @@ require 'merge_ats_client/models/paginated_reject_reason_list'
|
|
64
64
|
require 'merge_ats_client/models/paginated_remote_user_list'
|
65
65
|
require 'merge_ats_client/models/paginated_scheduled_interview_list'
|
66
66
|
require 'merge_ats_client/models/paginated_scorecard_list'
|
67
|
+
require 'merge_ats_client/models/paginated_sync_status_list'
|
67
68
|
require 'merge_ats_client/models/paginated_tag_list'
|
68
|
-
require 'merge_ats_client/models/patched_application_request'
|
69
69
|
require 'merge_ats_client/models/phone_number'
|
70
70
|
require 'merge_ats_client/models/phone_number_request'
|
71
71
|
require 'merge_ats_client/models/phone_number_type_enum'
|
@@ -77,10 +77,14 @@ require 'merge_ats_client/models/remote_key'
|
|
77
77
|
require 'merge_ats_client/models/remote_key_for_regeneration_request'
|
78
78
|
require 'merge_ats_client/models/remote_response'
|
79
79
|
require 'merge_ats_client/models/remote_user'
|
80
|
+
require 'merge_ats_client/models/remote_user_request'
|
80
81
|
require 'merge_ats_client/models/scheduled_interview'
|
82
|
+
require 'merge_ats_client/models/scheduled_interview_request'
|
81
83
|
require 'merge_ats_client/models/scheduled_interview_status_enum'
|
82
84
|
require 'merge_ats_client/models/scorecard'
|
85
|
+
require 'merge_ats_client/models/scorecard_request'
|
83
86
|
require 'merge_ats_client/models/sync_status'
|
87
|
+
require 'merge_ats_client/models/sync_status_status_enum'
|
84
88
|
require 'merge_ats_client/models/tag'
|
85
89
|
require 'merge_ats_client/models/url'
|
86
90
|
require 'merge_ats_client/models/url_request'
|
@@ -0,0 +1,46 @@
|
|
1
|
+
=begin
|
2
|
+
#Merge ATS API
|
3
|
+
|
4
|
+
#The unified API for building rich integrations with multiple Applicant Tracking 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
|
+
|
16
|
+
# Unit tests for MergeATSClient::DeleteAccountApi
|
17
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
18
|
+
# Please update as you see appropriate
|
19
|
+
describe 'DeleteAccountApi' do
|
20
|
+
before do
|
21
|
+
# run before each test
|
22
|
+
@api_instance = MergeATSClient::DeleteAccountApi.new
|
23
|
+
end
|
24
|
+
|
25
|
+
after do
|
26
|
+
# run after each test
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test an instance of DeleteAccountApi' do
|
30
|
+
it 'should create an instance of DeleteAccountApi' do
|
31
|
+
expect(@api_instance).to be_instance_of(MergeATSClient::DeleteAccountApi)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
# unit tests for delete_account_create
|
36
|
+
# Delete a linked account.
|
37
|
+
# @param x_account_token Token identifying the end user.
|
38
|
+
# @param [Hash] opts the optional parameters
|
39
|
+
# @return [nil]
|
40
|
+
describe 'delete_account_create test' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
=begin
|
2
|
+
#Merge ATS API
|
3
|
+
|
4
|
+
#The unified API for building rich integrations with multiple Applicant Tracking 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
|
+
|
16
|
+
# Unit tests for MergeATSClient::GenerateKeyApi
|
17
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
18
|
+
# Please update as you see appropriate
|
19
|
+
describe 'GenerateKeyApi' do
|
20
|
+
before do
|
21
|
+
# run before each test
|
22
|
+
@api_instance = MergeATSClient::GenerateKeyApi.new
|
23
|
+
end
|
24
|
+
|
25
|
+
after do
|
26
|
+
# run after each test
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test an instance of GenerateKeyApi' do
|
30
|
+
it 'should create an instance of GenerateKeyApi' do
|
31
|
+
expect(@api_instance).to be_instance_of(MergeATSClient::GenerateKeyApi)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
# unit tests for generate_key_create
|
36
|
+
# Create a remote key.
|
37
|
+
# @param generate_remote_key_request
|
38
|
+
# @param [Hash] opts the optional parameters
|
39
|
+
# @return [RemoteKey]
|
40
|
+
describe 'generate_key_create test' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
@@ -0,0 +1,65 @@
|
|
1
|
+
=begin
|
2
|
+
#Merge ATS API
|
3
|
+
|
4
|
+
#The unified API for building rich integrations with multiple Applicant Tracking 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
|
+
|
16
|
+
# Unit tests for MergeATSClient::IssuesApi
|
17
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
18
|
+
# Please update as you see appropriate
|
19
|
+
describe 'IssuesApi' do
|
20
|
+
before do
|
21
|
+
# run before each test
|
22
|
+
@api_instance = MergeATSClient::IssuesApi.new
|
23
|
+
end
|
24
|
+
|
25
|
+
after do
|
26
|
+
# run after each test
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test an instance of IssuesApi' do
|
30
|
+
it 'should create an instance of IssuesApi' do
|
31
|
+
expect(@api_instance).to be_instance_of(MergeATSClient::IssuesApi)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
# unit tests for issues_list
|
36
|
+
# Gets issues.
|
37
|
+
# @param [Hash] opts the optional parameters
|
38
|
+
# @option opts [String] :account_token account_token
|
39
|
+
# @option opts [Integer] :cursor The pagination cursor value.
|
40
|
+
# @option opts [String] :end_date If included, will only include issues whose most recent action occurred before this time
|
41
|
+
# @option opts [String] :end_user_organization_name end_user_organization_name
|
42
|
+
# @option opts [String] :include_muted If True, will include muted issues
|
43
|
+
# @option opts [String] :integration_name integration_name
|
44
|
+
# @option opts [Integer] :page_size Number of results to return per page.
|
45
|
+
# @option opts [String] :start_date If included, will only include issues whose most recent action occurred after this time
|
46
|
+
# @option opts [String] :status status
|
47
|
+
# @return [PaginatedIssueList]
|
48
|
+
describe 'issues_list test' do
|
49
|
+
it 'should work' do
|
50
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
# unit tests for issues_retrieve
|
55
|
+
# Get a specific issue.
|
56
|
+
# @param id
|
57
|
+
# @param [Hash] opts the optional parameters
|
58
|
+
# @return [Issue]
|
59
|
+
describe 'issues_retrieve test' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
=begin
|
2
|
+
#Merge ATS API
|
3
|
+
|
4
|
+
#The unified API for building rich integrations with multiple Applicant Tracking 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 MergeATSClient::AttachmentRequest
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeATSClient::AttachmentRequest do
|
21
|
+
let(:instance) { MergeATSClient::AttachmentRequest.new }
|
22
|
+
|
23
|
+
describe 'test an instance of AttachmentRequest' do
|
24
|
+
it 'should create an instance of AttachmentRequest' do
|
25
|
+
expect(instance).to be_instance_of(MergeATSClient::AttachmentRequest)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "remote_id"' 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 "file_name"' 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
|
+
describe 'test attribute "file_url"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "candidate"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe 'test attribute "attachment_type"' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
=begin
|
2
|
+
#Merge ATS API
|
3
|
+
|
4
|
+
#The unified API for building rich integrations with multiple Applicant Tracking 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 MergeATSClient::AttachmentTypeEnum
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeATSClient::AttachmentTypeEnum do
|
21
|
+
let(:instance) { MergeATSClient::AttachmentTypeEnum.new }
|
22
|
+
|
23
|
+
describe 'test an instance of AttachmentTypeEnum' do
|
24
|
+
it 'should create an instance of AttachmentTypeEnum' do
|
25
|
+
expect(instance).to be_instance_of(MergeATSClient::AttachmentTypeEnum)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,70 @@
|
|
1
|
+
=begin
|
2
|
+
#Merge ATS API
|
3
|
+
|
4
|
+
#The unified API for building rich integrations with multiple Applicant Tracking 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 MergeATSClient::Issue
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeATSClient::Issue do
|
21
|
+
let(:instance) { MergeATSClient::Issue.new }
|
22
|
+
|
23
|
+
describe 'test an instance of Issue' do
|
24
|
+
it 'should create an instance of Issue' do
|
25
|
+
expect(instance).to be_instance_of(MergeATSClient::Issue)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "id"' 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 "status"' 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
|
+
describe 'test attribute "error_description"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "end_user"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe 'test attribute "first_incident_time"' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
describe 'test attribute "last_incident_time"' do
|
59
|
+
it 'should work' do
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe 'test attribute "is_muted"' do
|
65
|
+
it 'should work' do
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
=begin
|
2
|
+
#Merge ATS API
|
3
|
+
|
4
|
+
#The unified API for building rich integrations with multiple Applicant Tracking 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 MergeATSClient::IssueStatusEnum
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeATSClient::IssueStatusEnum do
|
21
|
+
let(:instance) { MergeATSClient::IssueStatusEnum.new }
|
22
|
+
|
23
|
+
describe 'test an instance of IssueStatusEnum' do
|
24
|
+
it 'should create an instance of IssueStatusEnum' do
|
25
|
+
expect(instance).to be_instance_of(MergeATSClient::IssueStatusEnum)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
=begin
|
2
|
+
#Merge ATS API
|
3
|
+
|
4
|
+
#The unified API for building rich integrations with multiple Applicant Tracking 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 MergeATSClient::PaginatedIssueList
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeATSClient::PaginatedIssueList do
|
21
|
+
let(:instance) { MergeATSClient::PaginatedIssueList.new }
|
22
|
+
|
23
|
+
describe 'test an instance of PaginatedIssueList' do
|
24
|
+
it 'should create an instance of PaginatedIssueList' do
|
25
|
+
expect(instance).to be_instance_of(MergeATSClient::PaginatedIssueList)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "_next"' 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 "previous"' 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
|
+
describe 'test attribute "results"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
=begin
|
2
|
+
#Merge ATS API
|
3
|
+
|
4
|
+
#The unified API for building rich integrations with multiple Applicant Tracking 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 MergeATSClient::PaginatedSyncStatusList
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeATSClient::PaginatedSyncStatusList do
|
21
|
+
let(:instance) { MergeATSClient::PaginatedSyncStatusList.new }
|
22
|
+
|
23
|
+
describe 'test an instance of PaginatedSyncStatusList' do
|
24
|
+
it 'should create an instance of PaginatedSyncStatusList' do
|
25
|
+
expect(instance).to be_instance_of(MergeATSClient::PaginatedSyncStatusList)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "_next"' 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 "previous"' 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
|
+
describe 'test attribute "results"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
=begin
|
2
|
+
#Merge ATS API
|
3
|
+
|
4
|
+
#The unified API for building rich integrations with multiple Applicant Tracking 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 MergeATSClient::RemoteDataRequest
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeATSClient::RemoteDataRequest do
|
21
|
+
let(:instance) { MergeATSClient::RemoteDataRequest.new }
|
22
|
+
|
23
|
+
describe 'test an instance of RemoteDataRequest' do
|
24
|
+
it 'should create an instance of RemoteDataRequest' do
|
25
|
+
expect(instance).to be_instance_of(MergeATSClient::RemoteDataRequest)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "path"' 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 "data"' 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,70 @@
|
|
1
|
+
=begin
|
2
|
+
#Merge ATS API
|
3
|
+
|
4
|
+
#The unified API for building rich integrations with multiple Applicant Tracking 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 MergeATSClient::RemoteUserRequest
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeATSClient::RemoteUserRequest do
|
21
|
+
let(:instance) { MergeATSClient::RemoteUserRequest.new }
|
22
|
+
|
23
|
+
describe 'test an instance of RemoteUserRequest' do
|
24
|
+
it 'should create an instance of RemoteUserRequest' do
|
25
|
+
expect(instance).to be_instance_of(MergeATSClient::RemoteUserRequest)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "remote_id"' 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 "first_name"' 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
|
+
describe 'test attribute "last_name"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "email"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe 'test attribute "disabled"' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
describe 'test attribute "remote_created_at"' do
|
59
|
+
it 'should work' do
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe 'test attribute "access_role"' do
|
65
|
+
it 'should work' do
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
end
|