merge_ticketing_client 1.0.2 → 1.0.4
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 +12 -9
- data/docs/Account.md +9 -10
- data/docs/Attachment.md +13 -14
- data/docs/AttachmentRequest.md +9 -14
- data/docs/Collection.md +11 -12
- data/docs/Comment.md +14 -15
- data/docs/CommentRequest.md +10 -15
- data/docs/Contact.md +12 -13
- data/docs/DataPassthroughRequest.md +10 -11
- data/docs/FieldFormatEnum.md +15 -0
- data/docs/FieldTypeEnum.md +15 -0
- data/docs/Issue.md +10 -11
- data/docs/LinkedAccountCondition.md +8 -9
- data/docs/LinkedAccountConditionRequest.md +5 -6
- data/docs/MetaResponse.md +6 -7
- data/docs/PaginatedRemoteFieldClassList.md +22 -0
- data/docs/PatchedTicketRequest.md +20 -25
- data/docs/Project.md +9 -10
- data/docs/RemoteData.md +4 -5
- data/docs/RemoteField.md +19 -0
- data/docs/RemoteFieldClass.md +38 -0
- data/docs/RemoteFieldClassItemSchema.md +22 -0
- data/docs/RemoteResponse.md +9 -10
- data/docs/SyncStatusApi.md +4 -10
- data/docs/Tag.md +7 -8
- data/docs/Team.md +9 -10
- data/docs/Ticket.md +29 -28
- data/docs/TicketRequest.md +21 -28
- data/docs/TicketsApi.md +88 -0
- data/docs/User.md +12 -13
- data/lib/merge_ticketing_client/api/sync_status_api.rb +2 -2
- data/lib/merge_ticketing_client/api/tickets_api.rb +83 -0
- data/lib/merge_ticketing_client/models/attachment_request.rb +1 -23
- data/lib/merge_ticketing_client/models/categories_enum.rb +2 -1
- data/lib/merge_ticketing_client/models/category_enum.rb +2 -1
- data/lib/merge_ticketing_client/models/comment_request.rb +1 -23
- data/lib/merge_ticketing_client/models/field_format_enum.rb +49 -0
- data/lib/merge_ticketing_client/models/field_type_enum.rb +49 -0
- data/lib/merge_ticketing_client/models/paginated_remote_field_class_list.rb +240 -0
- data/lib/merge_ticketing_client/models/patched_ticket_request.rb +1 -23
- data/lib/merge_ticketing_client/models/remote_data.rb +9 -7
- data/lib/merge_ticketing_client/models/remote_field.rb +231 -0
- data/lib/merge_ticketing_client/models/remote_field_class.rb +318 -0
- data/lib/merge_ticketing_client/models/remote_field_class_item_schema.rb +241 -0
- data/lib/merge_ticketing_client/models/sync_status_status_enum.rb +2 -1
- data/lib/merge_ticketing_client/models/ticket.rb +16 -5
- data/lib/merge_ticketing_client/models/ticket_request.rb +1 -34
- data/lib/merge_ticketing_client/version.rb +1 -1
- data/lib/merge_ticketing_client.rb +6 -0
- data/spec/api/sync_status_api_spec.rb +1 -1
- metadata +102 -90
|
@@ -16,9 +16,6 @@ require 'time'
|
|
|
16
16
|
module MergeTicketingClient
|
|
17
17
|
# # The Ticket Object ### Description The `Ticket` object is used to represent a ticket or a task within a system. ### Usage Example TODO
|
|
18
18
|
class TicketRequest
|
|
19
|
-
# The third-party API ID of the matching object.
|
|
20
|
-
attr_accessor :remote_id
|
|
21
|
-
|
|
22
19
|
# The ticket's name.
|
|
23
20
|
attr_accessor :name
|
|
24
21
|
|
|
@@ -57,12 +54,6 @@ module MergeTicketingClient
|
|
|
57
54
|
|
|
58
55
|
attr_accessor :tags
|
|
59
56
|
|
|
60
|
-
# When the third party's ticket was created.
|
|
61
|
-
attr_accessor :remote_created_at
|
|
62
|
-
|
|
63
|
-
# When the third party's ticket was updated.
|
|
64
|
-
attr_accessor :remote_updated_at
|
|
65
|
-
|
|
66
57
|
# When the ticket was completed.
|
|
67
58
|
attr_accessor :completed_at
|
|
68
59
|
|
|
@@ -79,7 +70,6 @@ module MergeTicketingClient
|
|
|
79
70
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
80
71
|
def self.attribute_map
|
|
81
72
|
{
|
|
82
|
-
:'remote_id' => :'remote_id',
|
|
83
73
|
:'name' => :'name',
|
|
84
74
|
:'assignees' => :'assignees',
|
|
85
75
|
:'creator' => :'creator',
|
|
@@ -94,8 +84,6 @@ module MergeTicketingClient
|
|
|
94
84
|
:'parent_ticket' => :'parent_ticket',
|
|
95
85
|
:'attachments' => :'attachments',
|
|
96
86
|
:'tags' => :'tags',
|
|
97
|
-
:'remote_created_at' => :'remote_created_at',
|
|
98
|
-
:'remote_updated_at' => :'remote_updated_at',
|
|
99
87
|
:'completed_at' => :'completed_at',
|
|
100
88
|
:'ticket_url' => :'ticket_url',
|
|
101
89
|
:'priority' => :'priority',
|
|
@@ -112,7 +100,6 @@ module MergeTicketingClient
|
|
|
112
100
|
# Attribute type mapping.
|
|
113
101
|
def self.openapi_types
|
|
114
102
|
{
|
|
115
|
-
:'remote_id' => :'String',
|
|
116
103
|
:'name' => :'String',
|
|
117
104
|
:'assignees' => :'Array<String>',
|
|
118
105
|
:'creator' => :'String',
|
|
@@ -127,8 +114,6 @@ module MergeTicketingClient
|
|
|
127
114
|
:'parent_ticket' => :'String',
|
|
128
115
|
:'attachments' => :'Array<String>',
|
|
129
116
|
:'tags' => :'Array<String>',
|
|
130
|
-
:'remote_created_at' => :'Time',
|
|
131
|
-
:'remote_updated_at' => :'Time',
|
|
132
117
|
:'completed_at' => :'Time',
|
|
133
118
|
:'ticket_url' => :'String',
|
|
134
119
|
:'priority' => :'PriorityEnum',
|
|
@@ -140,7 +125,6 @@ module MergeTicketingClient
|
|
|
140
125
|
# List of attributes with nullable: true
|
|
141
126
|
def self.openapi_nullable
|
|
142
127
|
Set.new([
|
|
143
|
-
:'remote_id',
|
|
144
128
|
:'name',
|
|
145
129
|
:'creator',
|
|
146
130
|
:'due_date',
|
|
@@ -151,8 +135,6 @@ module MergeTicketingClient
|
|
|
151
135
|
:'account',
|
|
152
136
|
:'contact',
|
|
153
137
|
:'parent_ticket',
|
|
154
|
-
:'remote_created_at',
|
|
155
|
-
:'remote_updated_at',
|
|
156
138
|
:'completed_at',
|
|
157
139
|
:'ticket_url',
|
|
158
140
|
:'priority',
|
|
@@ -176,10 +158,6 @@ module MergeTicketingClient
|
|
|
176
158
|
h[k.to_sym] = v
|
|
177
159
|
}
|
|
178
160
|
|
|
179
|
-
if attributes.key?(:'remote_id')
|
|
180
|
-
self.remote_id = attributes[:'remote_id']
|
|
181
|
-
end
|
|
182
|
-
|
|
183
161
|
if attributes.key?(:'name')
|
|
184
162
|
self.name = attributes[:'name']
|
|
185
163
|
end
|
|
@@ -244,14 +222,6 @@ module MergeTicketingClient
|
|
|
244
222
|
end
|
|
245
223
|
end
|
|
246
224
|
|
|
247
|
-
if attributes.key?(:'remote_created_at')
|
|
248
|
-
self.remote_created_at = attributes[:'remote_created_at']
|
|
249
|
-
end
|
|
250
|
-
|
|
251
|
-
if attributes.key?(:'remote_updated_at')
|
|
252
|
-
self.remote_updated_at = attributes[:'remote_updated_at']
|
|
253
|
-
end
|
|
254
|
-
|
|
255
225
|
if attributes.key?(:'completed_at')
|
|
256
226
|
self.completed_at = attributes[:'completed_at']
|
|
257
227
|
end
|
|
@@ -310,7 +280,6 @@ module MergeTicketingClient
|
|
|
310
280
|
def ==(o)
|
|
311
281
|
return true if self.equal?(o)
|
|
312
282
|
self.class == o.class &&
|
|
313
|
-
remote_id == o.remote_id &&
|
|
314
283
|
name == o.name &&
|
|
315
284
|
assignees == o.assignees &&
|
|
316
285
|
creator == o.creator &&
|
|
@@ -325,8 +294,6 @@ module MergeTicketingClient
|
|
|
325
294
|
parent_ticket == o.parent_ticket &&
|
|
326
295
|
attachments == o.attachments &&
|
|
327
296
|
tags == o.tags &&
|
|
328
|
-
remote_created_at == o.remote_created_at &&
|
|
329
|
-
remote_updated_at == o.remote_updated_at &&
|
|
330
297
|
completed_at == o.completed_at &&
|
|
331
298
|
ticket_url == o.ticket_url &&
|
|
332
299
|
priority == o.priority &&
|
|
@@ -343,7 +310,7 @@ module MergeTicketingClient
|
|
|
343
310
|
# Calculates hash code according to all attributes.
|
|
344
311
|
# @return [Integer] Hash code
|
|
345
312
|
def hash
|
|
346
|
-
[
|
|
313
|
+
[name, assignees, creator, due_date, status, description, project, collections, ticket_type, account, contact, parent_ticket, attachments, tags, completed_at, ticket_url, priority, integration_params, linked_account_params].hash
|
|
347
314
|
end
|
|
348
315
|
|
|
349
316
|
# Builds the object from hash
|
|
@@ -44,6 +44,8 @@ require 'merge_ticketing_client/models/debug_model_log_summary'
|
|
|
44
44
|
require 'merge_ticketing_client/models/encoding_enum'
|
|
45
45
|
require 'merge_ticketing_client/models/end_user_details_request'
|
|
46
46
|
require 'merge_ticketing_client/models/error_validation_problem'
|
|
47
|
+
require 'merge_ticketing_client/models/field_format_enum'
|
|
48
|
+
require 'merge_ticketing_client/models/field_type_enum'
|
|
47
49
|
require 'merge_ticketing_client/models/generate_remote_key_request'
|
|
48
50
|
require 'merge_ticketing_client/models/issue'
|
|
49
51
|
require 'merge_ticketing_client/models/issue_status_enum'
|
|
@@ -68,6 +70,7 @@ require 'merge_ticketing_client/models/paginated_condition_schema_list'
|
|
|
68
70
|
require 'merge_ticketing_client/models/paginated_contact_list'
|
|
69
71
|
require 'merge_ticketing_client/models/paginated_issue_list'
|
|
70
72
|
require 'merge_ticketing_client/models/paginated_project_list'
|
|
73
|
+
require 'merge_ticketing_client/models/paginated_remote_field_class_list'
|
|
71
74
|
require 'merge_ticketing_client/models/paginated_sync_status_list'
|
|
72
75
|
require 'merge_ticketing_client/models/paginated_tag_list'
|
|
73
76
|
require 'merge_ticketing_client/models/paginated_team_list'
|
|
@@ -78,6 +81,9 @@ require 'merge_ticketing_client/models/patched_ticket_request'
|
|
|
78
81
|
require 'merge_ticketing_client/models/priority_enum'
|
|
79
82
|
require 'merge_ticketing_client/models/project'
|
|
80
83
|
require 'merge_ticketing_client/models/remote_data'
|
|
84
|
+
require 'merge_ticketing_client/models/remote_field'
|
|
85
|
+
require 'merge_ticketing_client/models/remote_field_class'
|
|
86
|
+
require 'merge_ticketing_client/models/remote_field_class_item_schema'
|
|
81
87
|
require 'merge_ticketing_client/models/remote_key'
|
|
82
88
|
require 'merge_ticketing_client/models/remote_key_for_regeneration_request'
|
|
83
89
|
require 'merge_ticketing_client/models/remote_response'
|
|
@@ -33,7 +33,7 @@ describe 'SyncStatusApi' do
|
|
|
33
33
|
end
|
|
34
34
|
|
|
35
35
|
# unit tests for sync_status_list
|
|
36
|
-
# Get syncing status. Possible values: `DISABLED`, `DONE`, `FAILED`, `PAUSED`, `SYNCING`
|
|
36
|
+
# Get syncing status. Possible values: `DISABLED`, `DONE`, `FAILED`, `PAUSED`, `SYNCING`, `PARTIALLY_SYNCED`
|
|
37
37
|
# @param x_account_token Token identifying the end user.
|
|
38
38
|
# @param [Hash] opts the optional parameters
|
|
39
39
|
# @option opts [String] :cursor The pagination cursor value.
|
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.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: 2023-
|
|
11
|
+
date: 2023-06-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -98,6 +98,8 @@ files:
|
|
|
98
98
|
- docs/EncodingEnum.md
|
|
99
99
|
- docs/EndUserDetailsRequest.md
|
|
100
100
|
- docs/ErrorValidationProblem.md
|
|
101
|
+
- docs/FieldFormatEnum.md
|
|
102
|
+
- docs/FieldTypeEnum.md
|
|
101
103
|
- docs/ForceResyncApi.md
|
|
102
104
|
- docs/GenerateKeyApi.md
|
|
103
105
|
- docs/GenerateRemoteKeyRequest.md
|
|
@@ -127,6 +129,7 @@ files:
|
|
|
127
129
|
- docs/PaginatedContactList.md
|
|
128
130
|
- docs/PaginatedIssueList.md
|
|
129
131
|
- docs/PaginatedProjectList.md
|
|
132
|
+
- docs/PaginatedRemoteFieldClassList.md
|
|
130
133
|
- docs/PaginatedSyncStatusList.md
|
|
131
134
|
- docs/PaginatedTagList.md
|
|
132
135
|
- docs/PaginatedTeamList.md
|
|
@@ -140,6 +143,9 @@ files:
|
|
|
140
143
|
- docs/ProjectsApi.md
|
|
141
144
|
- docs/RegenerateKeyApi.md
|
|
142
145
|
- docs/RemoteData.md
|
|
146
|
+
- docs/RemoteField.md
|
|
147
|
+
- docs/RemoteFieldClass.md
|
|
148
|
+
- docs/RemoteFieldClassItemSchema.md
|
|
143
149
|
- docs/RemoteKey.md
|
|
144
150
|
- docs/RemoteKeyForRegenerationRequest.md
|
|
145
151
|
- docs/RemoteResponse.md
|
|
@@ -225,6 +231,8 @@ files:
|
|
|
225
231
|
- lib/merge_ticketing_client/models/encoding_enum.rb
|
|
226
232
|
- lib/merge_ticketing_client/models/end_user_details_request.rb
|
|
227
233
|
- lib/merge_ticketing_client/models/error_validation_problem.rb
|
|
234
|
+
- lib/merge_ticketing_client/models/field_format_enum.rb
|
|
235
|
+
- lib/merge_ticketing_client/models/field_type_enum.rb
|
|
228
236
|
- lib/merge_ticketing_client/models/generate_remote_key_request.rb
|
|
229
237
|
- lib/merge_ticketing_client/models/issue.rb
|
|
230
238
|
- lib/merge_ticketing_client/models/issue_status_enum.rb
|
|
@@ -249,6 +257,7 @@ files:
|
|
|
249
257
|
- lib/merge_ticketing_client/models/paginated_contact_list.rb
|
|
250
258
|
- lib/merge_ticketing_client/models/paginated_issue_list.rb
|
|
251
259
|
- lib/merge_ticketing_client/models/paginated_project_list.rb
|
|
260
|
+
- lib/merge_ticketing_client/models/paginated_remote_field_class_list.rb
|
|
252
261
|
- lib/merge_ticketing_client/models/paginated_sync_status_list.rb
|
|
253
262
|
- lib/merge_ticketing_client/models/paginated_tag_list.rb
|
|
254
263
|
- lib/merge_ticketing_client/models/paginated_team_list.rb
|
|
@@ -259,6 +268,9 @@ files:
|
|
|
259
268
|
- lib/merge_ticketing_client/models/priority_enum.rb
|
|
260
269
|
- lib/merge_ticketing_client/models/project.rb
|
|
261
270
|
- lib/merge_ticketing_client/models/remote_data.rb
|
|
271
|
+
- lib/merge_ticketing_client/models/remote_field.rb
|
|
272
|
+
- lib/merge_ticketing_client/models/remote_field_class.rb
|
|
273
|
+
- lib/merge_ticketing_client/models/remote_field_class_item_schema.rb
|
|
262
274
|
- lib/merge_ticketing_client/models/remote_key.rb
|
|
263
275
|
- lib/merge_ticketing_client/models/remote_key_for_regeneration_request.rb
|
|
264
276
|
- lib/merge_ticketing_client/models/remote_response.rb
|
|
@@ -418,113 +430,113 @@ signing_key:
|
|
|
418
430
|
specification_version: 4
|
|
419
431
|
summary: Merge Ticketing API Ruby Gem
|
|
420
432
|
test_files:
|
|
421
|
-
- spec/api/projects_api_spec.rb
|
|
422
|
-
- spec/api/issues_api_spec.rb
|
|
423
|
-
- spec/api/accounts_api_spec.rb
|
|
424
|
-
- spec/api/contacts_api_spec.rb
|
|
425
|
-
- spec/api/regenerate_key_api_spec.rb
|
|
426
|
-
- spec/api/webhook_receivers_api_spec.rb
|
|
427
433
|
- spec/api/tags_api_spec.rb
|
|
434
|
+
- spec/api/regenerate_key_api_spec.rb
|
|
435
|
+
- spec/api/sync_status_api_spec.rb
|
|
436
|
+
- spec/api/teams_api_spec.rb
|
|
437
|
+
- spec/api/comments_api_spec.rb
|
|
438
|
+
- spec/api/collections_api_spec.rb
|
|
439
|
+
- spec/api/tickets_api_spec.rb
|
|
428
440
|
- spec/api/attachments_api_spec.rb
|
|
441
|
+
- spec/api/issues_api_spec.rb
|
|
442
|
+
- spec/api/webhook_receivers_api_spec.rb
|
|
443
|
+
- spec/api/available_actions_api_spec.rb
|
|
444
|
+
- spec/api/projects_api_spec.rb
|
|
429
445
|
- spec/api/account_token_api_spec.rb
|
|
430
446
|
- spec/api/linked_accounts_api_spec.rb
|
|
447
|
+
- spec/api/users_api_spec.rb
|
|
448
|
+
- spec/api/selective_sync_api_spec.rb
|
|
431
449
|
- spec/api/account_details_api_spec.rb
|
|
450
|
+
- spec/api/accounts_api_spec.rb
|
|
451
|
+
- spec/api/generate_key_api_spec.rb
|
|
432
452
|
- spec/api/passthrough_api_spec.rb
|
|
433
|
-
- spec/api/users_api_spec.rb
|
|
434
453
|
- spec/api/force_resync_api_spec.rb
|
|
435
|
-
- spec/api/delete_account_api_spec.rb
|
|
436
|
-
- spec/api/teams_api_spec.rb
|
|
437
|
-
- spec/api/tickets_api_spec.rb
|
|
438
|
-
- spec/api/available_actions_api_spec.rb
|
|
439
|
-
- spec/api/comments_api_spec.rb
|
|
440
454
|
- spec/api/link_token_api_spec.rb
|
|
441
|
-
- spec/api/
|
|
442
|
-
- spec/api/
|
|
443
|
-
- spec/api/generate_key_api_spec.rb
|
|
444
|
-
- spec/api/collections_api_spec.rb
|
|
455
|
+
- spec/api/contacts_api_spec.rb
|
|
456
|
+
- spec/api/delete_account_api_spec.rb
|
|
445
457
|
- spec/api_client_spec.rb
|
|
446
458
|
- spec/configuration_spec.rb
|
|
447
|
-
- spec/models/
|
|
448
|
-
- spec/models/
|
|
449
|
-
- spec/models/account_details_and_actions_status_enum_spec.rb
|
|
450
|
-
- spec/models/collection_spec.rb
|
|
451
|
-
- spec/models/paginated_comment_list_spec.rb
|
|
452
|
-
- spec/models/patched_ticket_request_spec.rb
|
|
453
|
-
- spec/models/paginated_attachment_list_spec.rb
|
|
454
|
-
- spec/models/patched_ticket_endpoint_request_spec.rb
|
|
455
|
-
- spec/models/encoding_enum_spec.rb
|
|
456
|
-
- spec/models/end_user_details_request_spec.rb
|
|
457
|
-
- spec/models/paginated_condition_schema_list_spec.rb
|
|
458
|
-
- spec/models/ticketing_attachment_endpoint_request_spec.rb
|
|
459
|
-
- spec/models/method_enum_spec.rb
|
|
460
|
-
- spec/models/paginated_project_list_spec.rb
|
|
461
|
-
- spec/models/ticketing_attachment_response_spec.rb
|
|
459
|
+
- spec/models/link_token_spec.rb
|
|
460
|
+
- spec/models/ticket_request_spec.rb
|
|
462
461
|
- spec/models/remote_response_spec.rb
|
|
463
|
-
- spec/models/
|
|
464
|
-
- spec/models/
|
|
465
|
-
- spec/models/sync_status_status_enum_spec.rb
|
|
462
|
+
- spec/models/patched_ticket_endpoint_request_spec.rb
|
|
463
|
+
- spec/models/contact_spec.rb
|
|
466
464
|
- spec/models/generate_remote_key_request_spec.rb
|
|
467
|
-
- spec/models/
|
|
468
|
-
- spec/models/
|
|
469
|
-
- spec/models/
|
|
470
|
-
- spec/models/
|
|
471
|
-
- spec/models/
|
|
472
|
-
- spec/models/
|
|
465
|
+
- spec/models/comment_endpoint_request_spec.rb
|
|
466
|
+
- spec/models/paginated_collection_list_spec.rb
|
|
467
|
+
- spec/models/paginated_account_details_and_actions_list_spec.rb
|
|
468
|
+
- spec/models/paginated_condition_schema_list_spec.rb
|
|
469
|
+
- spec/models/sync_status_spec.rb
|
|
470
|
+
- spec/models/linked_account_status_spec.rb
|
|
473
471
|
- spec/models/linked_account_selective_sync_configuration_list_request_spec.rb
|
|
472
|
+
- spec/models/tag_spec.rb
|
|
473
|
+
- spec/models/warning_validation_problem_spec.rb
|
|
474
|
+
- spec/models/ticket_spec.rb
|
|
475
|
+
- spec/models/paginated_ticket_list_spec.rb
|
|
476
|
+
- spec/models/condition_type_enum_spec.rb
|
|
477
|
+
- spec/models/debug_mode_log_spec.rb
|
|
478
|
+
- spec/models/paginated_attachment_list_spec.rb
|
|
479
|
+
- spec/models/error_validation_problem_spec.rb
|
|
480
|
+
- spec/models/sync_status_status_enum_spec.rb
|
|
481
|
+
- spec/models/account_details_and_actions_spec.rb
|
|
482
|
+
- spec/models/ticketing_attachment_response_spec.rb
|
|
483
|
+
- spec/models/end_user_details_request_spec.rb
|
|
484
|
+
- spec/models/collection_spec.rb
|
|
485
|
+
- spec/models/attachment_spec.rb
|
|
474
486
|
- spec/models/selective_sync_configurations_usage_enum_spec.rb
|
|
475
|
-
- spec/models/
|
|
476
|
-
- spec/models/
|
|
477
|
-
- spec/models/
|
|
478
|
-
- spec/models/issue_spec.rb
|
|
487
|
+
- spec/models/attachment_request_spec.rb
|
|
488
|
+
- spec/models/paginated_sync_status_list_spec.rb
|
|
489
|
+
- spec/models/paginated_user_list_spec.rb
|
|
479
490
|
- spec/models/model_operation_spec.rb
|
|
480
|
-
- spec/models/
|
|
481
|
-
- spec/models/
|
|
482
|
-
- spec/models/ticket_endpoint_request_spec.rb
|
|
483
|
-
- spec/models/ticket_response_spec.rb
|
|
484
|
-
- spec/models/comment_request_spec.rb
|
|
485
|
-
- spec/models/webhook_receiver_request_spec.rb
|
|
486
|
-
- spec/models/account_details_spec.rb
|
|
487
|
-
- spec/models/account_token_spec.rb
|
|
488
|
-
- spec/models/paginated_account_details_and_actions_list_spec.rb
|
|
489
|
-
- spec/models/paginated_collection_list_spec.rb
|
|
490
|
-
- spec/models/request_format_enum_spec.rb
|
|
491
|
-
- spec/models/available_actions_spec.rb
|
|
492
|
-
- spec/models/team_spec.rb
|
|
493
|
-
- spec/models/validation_problem_source_spec.rb
|
|
494
|
-
- spec/models/warning_validation_problem_spec.rb
|
|
495
|
-
- spec/models/linked_account_condition_spec.rb
|
|
496
|
-
- spec/models/account_integration_spec.rb
|
|
497
|
-
- spec/models/paginated_account_list_spec.rb
|
|
498
|
-
- spec/models/paginated_team_list_spec.rb
|
|
499
|
-
- spec/models/account_details_and_actions_integration_spec.rb
|
|
500
|
-
- spec/models/link_token_spec.rb
|
|
501
|
-
- spec/models/debug_model_log_summary_spec.rb
|
|
491
|
+
- spec/models/user_spec.rb
|
|
492
|
+
- spec/models/comment_response_spec.rb
|
|
502
493
|
- spec/models/issue_status_enum_spec.rb
|
|
503
|
-
- spec/models/
|
|
504
|
-
- spec/models/
|
|
505
|
-
- spec/models/data_passthrough_request_spec.rb
|
|
506
|
-
- spec/models/ticket_request_spec.rb
|
|
507
|
-
- spec/models/condition_type_enum_spec.rb
|
|
494
|
+
- spec/models/account_spec.rb
|
|
495
|
+
- spec/models/paginated_account_list_spec.rb
|
|
508
496
|
- spec/models/multipart_form_field_request_spec.rb
|
|
509
|
-
- spec/models/
|
|
497
|
+
- spec/models/ticket_endpoint_request_spec.rb
|
|
498
|
+
- spec/models/webhook_receiver_spec.rb
|
|
499
|
+
- spec/models/priority_enum_spec.rb
|
|
510
500
|
- spec/models/categories_enum_spec.rb
|
|
511
|
-
- spec/models/
|
|
512
|
-
- spec/models/
|
|
513
|
-
- spec/models/
|
|
501
|
+
- spec/models/collection_type_enum_spec.rb
|
|
502
|
+
- spec/models/condition_schema_spec.rb
|
|
503
|
+
- spec/models/method_enum_spec.rb
|
|
504
|
+
- spec/models/debug_model_log_summary_spec.rb
|
|
505
|
+
- spec/models/data_passthrough_request_spec.rb
|
|
506
|
+
- spec/models/account_integration_spec.rb
|
|
507
|
+
- spec/models/paginated_project_list_spec.rb
|
|
508
|
+
- spec/models/operator_schema_spec.rb
|
|
509
|
+
- spec/models/validation_problem_source_spec.rb
|
|
510
|
+
- spec/models/available_actions_spec.rb
|
|
511
|
+
- spec/models/linked_account_selective_sync_configuration_spec.rb
|
|
514
512
|
- spec/models/remote_data_spec.rb
|
|
515
|
-
- spec/models/
|
|
516
|
-
- spec/models/
|
|
513
|
+
- spec/models/remote_key_for_regeneration_request_spec.rb
|
|
514
|
+
- spec/models/paginated_team_list_spec.rb
|
|
515
|
+
- spec/models/ticketing_attachment_endpoint_request_spec.rb
|
|
517
516
|
- spec/models/paginated_contact_list_spec.rb
|
|
518
|
-
- spec/models/
|
|
519
|
-
- spec/models/
|
|
520
|
-
- spec/models/
|
|
521
|
-
- spec/models/
|
|
522
|
-
- spec/models/
|
|
523
|
-
- spec/models/
|
|
524
|
-
- spec/models/
|
|
517
|
+
- spec/models/response_type_enum_spec.rb
|
|
518
|
+
- spec/models/account_details_spec.rb
|
|
519
|
+
- spec/models/ticket_status_enum_spec.rb
|
|
520
|
+
- spec/models/encoding_enum_spec.rb
|
|
521
|
+
- spec/models/linked_account_condition_spec.rb
|
|
522
|
+
- spec/models/comment_request_spec.rb
|
|
523
|
+
- spec/models/linked_account_condition_request_spec.rb
|
|
524
|
+
- spec/models/ticket_response_spec.rb
|
|
525
525
|
- spec/models/category_enum_spec.rb
|
|
526
|
-
- spec/models/
|
|
527
|
-
- spec/models/
|
|
528
|
-
- spec/models/
|
|
529
|
-
- spec/models/
|
|
526
|
+
- spec/models/paginated_tag_list_spec.rb
|
|
527
|
+
- spec/models/paginated_issue_list_spec.rb
|
|
528
|
+
- spec/models/request_format_enum_spec.rb
|
|
529
|
+
- spec/models/patched_ticket_request_spec.rb
|
|
530
|
+
- spec/models/issue_spec.rb
|
|
531
|
+
- spec/models/account_details_and_actions_status_enum_spec.rb
|
|
532
|
+
- spec/models/paginated_comment_list_spec.rb
|
|
533
|
+
- spec/models/linked_account_selective_sync_configuration_request_spec.rb
|
|
534
|
+
- spec/models/comment_spec.rb
|
|
535
|
+
- spec/models/account_token_spec.rb
|
|
536
|
+
- spec/models/remote_key_spec.rb
|
|
537
|
+
- spec/models/team_spec.rb
|
|
538
|
+
- spec/models/project_spec.rb
|
|
539
|
+
- spec/models/account_details_and_actions_integration_spec.rb
|
|
540
|
+
- spec/models/meta_response_spec.rb
|
|
541
|
+
- spec/models/webhook_receiver_request_spec.rb
|
|
530
542
|
- spec/spec_helper.rb
|