merge_ticketing_client 1.0.0 → 1.0.1
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 +11 -5
- data/docs/PatchedTicketEndpointRequest.md +18 -0
- data/docs/PatchedTicketRequest.md +48 -0
- data/docs/PriorityEnum.md +15 -0
- data/docs/RemoteResponse.md +3 -1
- data/docs/ResponseTypeEnum.md +15 -0
- data/docs/SyncStatus.md +2 -2
- data/docs/Ticket.md +7 -1
- data/docs/TicketRequest.md +7 -1
- data/docs/TicketsApi.md +154 -0
- data/docs/User.md +2 -0
- data/lib/merge_ticketing_client/api/tickets_api.rb +148 -0
- data/lib/merge_ticketing_client/models/data_passthrough_request.rb +1 -1
- data/lib/merge_ticketing_client/models/issue.rb +1 -1
- data/lib/merge_ticketing_client/models/meta_response.rb +1 -1
- data/lib/merge_ticketing_client/models/patched_ticket_endpoint_request.rb +223 -0
- data/lib/merge_ticketing_client/models/patched_ticket_request.rb +397 -0
- data/lib/merge_ticketing_client/models/priority_enum.rb +47 -0
- data/lib/merge_ticketing_client/models/remote_response.rb +14 -11
- data/lib/merge_ticketing_client/models/response_type_enum.rb +45 -0
- data/lib/merge_ticketing_client/models/sync_status.rb +0 -10
- data/lib/merge_ticketing_client/models/ticket.rb +52 -4
- data/lib/merge_ticketing_client/models/ticket_request.rb +53 -5
- data/lib/merge_ticketing_client/models/ticket_status_enum.rb +3 -1
- data/lib/merge_ticketing_client/models/user.rb +12 -1
- data/lib/merge_ticketing_client/version.rb +1 -1
- data/lib/merge_ticketing_client.rb +4 -0
- data/spec/api/tickets_api_spec.rb +26 -0
- data/spec/models/patched_ticket_endpoint_request_spec.rb +34 -0
- data/spec/models/patched_ticket_request_spec.rb +124 -0
- data/spec/models/priority_enum_spec.rb +28 -0
- data/spec/models/remote_response_spec.rb +6 -0
- data/spec/models/response_type_enum_spec.rb +28 -0
- data/spec/models/ticket_request_spec.rb +18 -0
- data/spec/models/ticket_spec.rb +18 -0
- data/spec/models/user_spec.rb +6 -0
- metadata +82 -66
@@ -0,0 +1,124 @@
|
|
1
|
+
=begin
|
2
|
+
#Merge Ticketing API
|
3
|
+
|
4
|
+
#The unified API for building rich integrations with multiple Ticketing 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 MergeTicketingClient::PatchedTicketRequest
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeTicketingClient::PatchedTicketRequest do
|
21
|
+
let(:instance) { MergeTicketingClient::PatchedTicketRequest.new }
|
22
|
+
|
23
|
+
describe 'test an instance of PatchedTicketRequest' do
|
24
|
+
it 'should create an instance of PatchedTicketRequest' do
|
25
|
+
expect(instance).to be_instance_of(MergeTicketingClient::PatchedTicketRequest)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
describe 'test attribute "name"' 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 "assignees"' 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 "due_date"' 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 "status"' 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 "description"' 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 "project"' 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 "ticket_type"' 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
|
+
describe 'test attribute "account"' do
|
71
|
+
it 'should work' do
|
72
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
describe 'test attribute "contact"' do
|
77
|
+
it 'should work' do
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
describe 'test attribute "parent_ticket"' do
|
83
|
+
it 'should work' do
|
84
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
describe 'test attribute "tags"' do
|
89
|
+
it 'should work' do
|
90
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
describe 'test attribute "remote_created_at"' do
|
95
|
+
it 'should work' do
|
96
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
describe 'test attribute "remote_updated_at"' do
|
101
|
+
it 'should work' do
|
102
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
describe 'test attribute "completed_at"' do
|
107
|
+
it 'should work' do
|
108
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
describe 'test attribute "ticket_url"' do
|
113
|
+
it 'should work' do
|
114
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
describe 'test attribute "priority"' do
|
119
|
+
it 'should work' do
|
120
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
=begin
|
2
|
+
#Merge Ticketing API
|
3
|
+
|
4
|
+
#The unified API for building rich integrations with multiple Ticketing 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 MergeTicketingClient::PriorityEnum
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeTicketingClient::PriorityEnum do
|
21
|
+
let(:instance) { MergeTicketingClient::PriorityEnum.new }
|
22
|
+
|
23
|
+
describe 'test an instance of PriorityEnum' do
|
24
|
+
it 'should create an instance of PriorityEnum' do
|
25
|
+
expect(instance).to be_instance_of(MergeTicketingClient::PriorityEnum)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -55,6 +55,12 @@ describe MergeTicketingClient::RemoteResponse do
|
|
55
55
|
end
|
56
56
|
end
|
57
57
|
|
58
|
+
describe 'test attribute "response_type"' 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
|
+
|
58
64
|
describe 'test attribute "headers"' do
|
59
65
|
it 'should work' do
|
60
66
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -0,0 +1,28 @@
|
|
1
|
+
=begin
|
2
|
+
#Merge Ticketing API
|
3
|
+
|
4
|
+
#The unified API for building rich integrations with multiple Ticketing 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 MergeTicketingClient::ResponseTypeEnum
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe MergeTicketingClient::ResponseTypeEnum do
|
21
|
+
let(:instance) { MergeTicketingClient::ResponseTypeEnum.new }
|
22
|
+
|
23
|
+
describe 'test an instance of ResponseTypeEnum' do
|
24
|
+
it 'should create an instance of ResponseTypeEnum' do
|
25
|
+
expect(instance).to be_instance_of(MergeTicketingClient::ResponseTypeEnum)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -115,4 +115,22 @@ describe MergeTicketingClient::TicketRequest do
|
|
115
115
|
end
|
116
116
|
end
|
117
117
|
|
118
|
+
describe 'test attribute "completed_at"' do
|
119
|
+
it 'should work' do
|
120
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
describe 'test attribute "ticket_url"' do
|
125
|
+
it 'should work' do
|
126
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
127
|
+
end
|
128
|
+
end
|
129
|
+
|
130
|
+
describe 'test attribute "priority"' do
|
131
|
+
it 'should work' do
|
132
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
118
136
|
end
|
data/spec/models/ticket_spec.rb
CHANGED
@@ -121,6 +121,12 @@ describe MergeTicketingClient::Ticket do
|
|
121
121
|
end
|
122
122
|
end
|
123
123
|
|
124
|
+
describe 'test attribute "completed_at"' do
|
125
|
+
it 'should work' do
|
126
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
127
|
+
end
|
128
|
+
end
|
129
|
+
|
124
130
|
describe 'test attribute "remote_data"' do
|
125
131
|
it 'should work' do
|
126
132
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -133,4 +139,16 @@ describe MergeTicketingClient::Ticket do
|
|
133
139
|
end
|
134
140
|
end
|
135
141
|
|
142
|
+
describe 'test attribute "ticket_url"' do
|
143
|
+
it 'should work' do
|
144
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
145
|
+
end
|
146
|
+
end
|
147
|
+
|
148
|
+
describe 'test attribute "priority"' do
|
149
|
+
it 'should work' do
|
150
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
151
|
+
end
|
152
|
+
end
|
153
|
+
|
136
154
|
end
|
data/spec/models/user_spec.rb
CHANGED
@@ -61,6 +61,12 @@ describe MergeTicketingClient::User do
|
|
61
61
|
end
|
62
62
|
end
|
63
63
|
|
64
|
+
describe 'test attribute "avatar"' 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
|
+
|
64
70
|
describe 'test attribute "remote_data"' do
|
65
71
|
it 'should work' do
|
66
72
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: merge_ticketing_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
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-09-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -120,6 +120,9 @@ files:
|
|
120
120
|
- docs/PaginatedTicketList.md
|
121
121
|
- docs/PaginatedUserList.md
|
122
122
|
- docs/PassthroughApi.md
|
123
|
+
- docs/PatchedTicketEndpointRequest.md
|
124
|
+
- docs/PatchedTicketRequest.md
|
125
|
+
- docs/PriorityEnum.md
|
123
126
|
- docs/Project.md
|
124
127
|
- docs/ProjectsApi.md
|
125
128
|
- docs/RegenerateKeyApi.md
|
@@ -128,6 +131,7 @@ files:
|
|
128
131
|
- docs/RemoteKeyForRegenerationRequest.md
|
129
132
|
- docs/RemoteResponse.md
|
130
133
|
- docs/RequestFormatEnum.md
|
134
|
+
- docs/ResponseTypeEnum.md
|
131
135
|
- docs/SyncStatus.md
|
132
136
|
- docs/SyncStatusApi.md
|
133
137
|
- docs/SyncStatusStatusEnum.md
|
@@ -221,12 +225,16 @@ files:
|
|
221
225
|
- lib/merge_ticketing_client/models/paginated_team_list.rb
|
222
226
|
- lib/merge_ticketing_client/models/paginated_ticket_list.rb
|
223
227
|
- lib/merge_ticketing_client/models/paginated_user_list.rb
|
228
|
+
- lib/merge_ticketing_client/models/patched_ticket_endpoint_request.rb
|
229
|
+
- lib/merge_ticketing_client/models/patched_ticket_request.rb
|
230
|
+
- lib/merge_ticketing_client/models/priority_enum.rb
|
224
231
|
- lib/merge_ticketing_client/models/project.rb
|
225
232
|
- lib/merge_ticketing_client/models/remote_data.rb
|
226
233
|
- lib/merge_ticketing_client/models/remote_key.rb
|
227
234
|
- lib/merge_ticketing_client/models/remote_key_for_regeneration_request.rb
|
228
235
|
- lib/merge_ticketing_client/models/remote_response.rb
|
229
236
|
- lib/merge_ticketing_client/models/request_format_enum.rb
|
237
|
+
- lib/merge_ticketing_client/models/response_type_enum.rb
|
230
238
|
- lib/merge_ticketing_client/models/sync_status.rb
|
231
239
|
- lib/merge_ticketing_client/models/sync_status_status_enum.rb
|
232
240
|
- lib/merge_ticketing_client/models/tag.rb
|
@@ -314,12 +322,16 @@ files:
|
|
314
322
|
- spec/models/paginated_team_list_spec.rb
|
315
323
|
- spec/models/paginated_ticket_list_spec.rb
|
316
324
|
- spec/models/paginated_user_list_spec.rb
|
325
|
+
- spec/models/patched_ticket_endpoint_request_spec.rb
|
326
|
+
- spec/models/patched_ticket_request_spec.rb
|
327
|
+
- spec/models/priority_enum_spec.rb
|
317
328
|
- spec/models/project_spec.rb
|
318
329
|
- spec/models/remote_data_spec.rb
|
319
330
|
- spec/models/remote_key_for_regeneration_request_spec.rb
|
320
331
|
- spec/models/remote_key_spec.rb
|
321
332
|
- spec/models/remote_response_spec.rb
|
322
333
|
- spec/models/request_format_enum_spec.rb
|
334
|
+
- spec/models/response_type_enum_spec.rb
|
323
335
|
- spec/models/sync_status_spec.rb
|
324
336
|
- spec/models/sync_status_status_enum_spec.rb
|
325
337
|
- spec/models/tag_spec.rb
|
@@ -362,93 +374,97 @@ specification_version: 4
|
|
362
374
|
summary: Merge Ticketing API Ruby Gem
|
363
375
|
test_files:
|
364
376
|
- spec/api/account_token_api_spec.rb
|
365
|
-
- spec/api/issues_api_spec.rb
|
366
|
-
- spec/api/account_details_api_spec.rb
|
367
|
-
- spec/api/generate_key_api_spec.rb
|
368
|
-
- spec/api/tags_api_spec.rb
|
369
|
-
- spec/api/projects_api_spec.rb
|
370
|
-
- spec/api/sync_status_api_spec.rb
|
371
|
-
- spec/api/accounts_api_spec.rb
|
372
|
-
- spec/api/link_token_api_spec.rb
|
373
377
|
- spec/api/regenerate_key_api_spec.rb
|
378
|
+
- spec/api/projects_api_spec.rb
|
379
|
+
- spec/api/delete_account_api_spec.rb
|
374
380
|
- spec/api/attachments_api_spec.rb
|
375
|
-
- spec/api/
|
381
|
+
- spec/api/account_details_api_spec.rb
|
382
|
+
- spec/api/force_resync_api_spec.rb
|
383
|
+
- spec/api/webhook_receivers_api_spec.rb
|
384
|
+
- spec/api/available_actions_api_spec.rb
|
376
385
|
- spec/api/teams_api_spec.rb
|
377
|
-
- spec/api/linked_accounts_api_spec.rb
|
378
386
|
- spec/api/passthrough_api_spec.rb
|
387
|
+
- spec/api/linked_accounts_api_spec.rb
|
388
|
+
- spec/api/users_api_spec.rb
|
379
389
|
- spec/api/tickets_api_spec.rb
|
380
|
-
- spec/api/
|
381
|
-
- spec/api/webhook_receivers_api_spec.rb
|
382
|
-
- spec/api/delete_account_api_spec.rb
|
390
|
+
- spec/api/sync_status_api_spec.rb
|
383
391
|
- spec/api/contacts_api_spec.rb
|
384
|
-
- spec/api/
|
385
|
-
- spec/api/
|
392
|
+
- spec/api/generate_key_api_spec.rb
|
393
|
+
- spec/api/accounts_api_spec.rb
|
394
|
+
- spec/api/issues_api_spec.rb
|
395
|
+
- spec/api/comments_api_spec.rb
|
396
|
+
- spec/api/link_token_api_spec.rb
|
397
|
+
- spec/api/tags_api_spec.rb
|
386
398
|
- spec/api_client_spec.rb
|
387
399
|
- spec/configuration_spec.rb
|
388
|
-
- spec/models/
|
389
|
-
- spec/models/
|
390
|
-
- spec/models/
|
391
|
-
- spec/models/
|
392
|
-
- spec/models/
|
393
|
-
- spec/models/
|
394
|
-
- spec/models/
|
395
|
-
- spec/models/
|
396
|
-
- spec/models/paginated_contact_list_spec.rb
|
397
|
-
- spec/models/multipart_form_field_request_spec.rb
|
398
|
-
- spec/models/ticket_endpoint_request_spec.rb
|
399
|
-
- spec/models/project_spec.rb
|
400
|
-
- spec/models/request_format_enum_spec.rb
|
400
|
+
- spec/models/comment_endpoint_request_spec.rb
|
401
|
+
- spec/models/available_actions_spec.rb
|
402
|
+
- spec/models/comment_spec.rb
|
403
|
+
- spec/models/paginated_sync_status_list_spec.rb
|
404
|
+
- spec/models/account_details_spec.rb
|
405
|
+
- spec/models/paginated_team_list_spec.rb
|
406
|
+
- spec/models/contact_spec.rb
|
407
|
+
- spec/models/meta_response_spec.rb
|
401
408
|
- spec/models/paginated_comment_list_spec.rb
|
409
|
+
- spec/models/paginated_contact_list_spec.rb
|
410
|
+
- spec/models/account_integration_spec.rb
|
411
|
+
- spec/models/tag_spec.rb
|
412
|
+
- spec/models/webhook_receiver_spec.rb
|
413
|
+
- spec/models/patched_ticket_endpoint_request_spec.rb
|
414
|
+
- spec/models/issue_spec.rb
|
402
415
|
- spec/models/paginated_ticket_list_spec.rb
|
403
416
|
- spec/models/debug_mode_log_spec.rb
|
404
|
-
- spec/models/
|
405
|
-
- spec/models/
|
406
|
-
- spec/models/
|
407
|
-
- spec/models/
|
408
|
-
- spec/models/issue_spec.rb
|
409
|
-
- spec/models/paginated_account_details_and_actions_list_spec.rb
|
410
|
-
- spec/models/paginated_project_list_spec.rb
|
417
|
+
- spec/models/paginated_tag_list_spec.rb
|
418
|
+
- spec/models/encoding_enum_spec.rb
|
419
|
+
- spec/models/link_token_spec.rb
|
420
|
+
- spec/models/issue_status_enum_spec.rb
|
411
421
|
- spec/models/remote_response_spec.rb
|
412
|
-
- spec/models/
|
422
|
+
- spec/models/remote_key_spec.rb
|
423
|
+
- spec/models/paginated_attachment_list_spec.rb
|
413
424
|
- spec/models/ticket_spec.rb
|
414
|
-
- spec/models/issue_status_enum_spec.rb
|
415
425
|
- spec/models/warning_validation_problem_spec.rb
|
416
|
-
- spec/models/remote_key_for_regeneration_request_spec.rb
|
417
|
-
- spec/models/contact_spec.rb
|
418
|
-
- spec/models/remote_key_spec.rb
|
419
|
-
- spec/models/ticket_request_spec.rb
|
420
|
-
- spec/models/comment_request_spec.rb
|
421
|
-
- spec/models/comment_endpoint_request_spec.rb
|
422
426
|
- spec/models/model_operation_spec.rb
|
427
|
+
- spec/models/paginated_account_list_spec.rb
|
428
|
+
- spec/models/remote_key_for_regeneration_request_spec.rb
|
429
|
+
- spec/models/team_spec.rb
|
430
|
+
- spec/models/paginated_user_list_spec.rb
|
423
431
|
- spec/models/debug_model_log_summary_spec.rb
|
432
|
+
- spec/models/attachment_request_spec.rb
|
424
433
|
- spec/models/generate_remote_key_request_spec.rb
|
425
|
-
- spec/models/paginated_sync_status_list_spec.rb
|
426
|
-
- spec/models/attachment_spec.rb
|
427
|
-
- spec/models/account_details_spec.rb
|
428
|
-
- spec/models/categories_enum_spec.rb
|
429
|
-
- spec/models/comment_response_spec.rb
|
430
|
-
- spec/models/link_token_spec.rb
|
431
|
-
- spec/models/user_spec.rb
|
432
|
-
- spec/models/ticket_status_enum_spec.rb
|
433
434
|
- spec/models/end_user_details_request_spec.rb
|
434
|
-
- spec/models/
|
435
|
-
- spec/models/linked_account_status_spec.rb
|
436
|
-
- spec/models/sync_status_status_enum_spec.rb
|
437
|
-
- spec/models/paginated_team_list_spec.rb
|
438
|
-
- spec/models/paginated_account_list_spec.rb
|
435
|
+
- spec/models/data_passthrough_request_spec.rb
|
439
436
|
- spec/models/ticketing_attachment_endpoint_request_spec.rb
|
440
|
-
- spec/models/attachment_request_spec.rb
|
441
437
|
- spec/models/account_details_and_actions_integration_spec.rb
|
438
|
+
- spec/models/ticket_status_enum_spec.rb
|
439
|
+
- spec/models/comment_request_spec.rb
|
442
440
|
- spec/models/method_enum_spec.rb
|
443
|
-
- spec/models/
|
444
|
-
- spec/models/
|
445
|
-
- spec/models/
|
441
|
+
- spec/models/remote_data_spec.rb
|
442
|
+
- spec/models/patched_ticket_request_spec.rb
|
443
|
+
- spec/models/sync_status_status_enum_spec.rb
|
444
|
+
- spec/models/comment_response_spec.rb
|
445
|
+
- spec/models/project_spec.rb
|
446
|
+
- spec/models/priority_enum_spec.rb
|
447
|
+
- spec/models/attachment_spec.rb
|
448
|
+
- spec/models/request_format_enum_spec.rb
|
449
|
+
- spec/models/paginated_account_details_and_actions_list_spec.rb
|
450
|
+
- spec/models/categories_enum_spec.rb
|
451
|
+
- spec/models/response_type_enum_spec.rb
|
452
|
+
- spec/models/account_details_and_actions_status_enum_spec.rb
|
453
|
+
- spec/models/ticket_response_spec.rb
|
446
454
|
- spec/models/webhook_receiver_request_spec.rb
|
447
|
-
- spec/models/
|
448
|
-
- spec/models/
|
449
|
-
- spec/models/
|
455
|
+
- spec/models/ticketing_attachment_response_spec.rb
|
456
|
+
- spec/models/category_enum_spec.rb
|
457
|
+
- spec/models/account_spec.rb
|
458
|
+
- spec/models/paginated_project_list_spec.rb
|
450
459
|
- spec/models/sync_status_spec.rb
|
451
|
-
- spec/models/
|
460
|
+
- spec/models/validation_problem_source_spec.rb
|
461
|
+
- spec/models/ticket_endpoint_request_spec.rb
|
462
|
+
- spec/models/user_spec.rb
|
452
463
|
- spec/models/paginated_issue_list_spec.rb
|
464
|
+
- spec/models/account_token_spec.rb
|
465
|
+
- spec/models/ticket_request_spec.rb
|
466
|
+
- spec/models/account_details_and_actions_spec.rb
|
467
|
+
- spec/models/multipart_form_field_request_spec.rb
|
468
|
+
- spec/models/linked_account_status_spec.rb
|
453
469
|
- spec/models/error_validation_problem_spec.rb
|
454
470
|
- spec/spec_helper.rb
|