gitlab_support_readiness 1.0.42 → 1.0.43

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 329d7803aa9435db0939a46d9cc4124bf25c51bb5faed1a6a4d8cd6278fc00a4
4
- data.tar.gz: 4da0de2f1303d5b225f4f91077863059ee482fbd7cbe2274df7bb72a400cdab4
3
+ metadata.gz: 84d60db4cb6453988da1417579de9dd77a4199172f0cd4403aed9c00478e580e
4
+ data.tar.gz: 592cc86adc0f7b7d714b04d632c6ffca6962ab95a30a9a6201333e519b7cc4c7
5
5
  SHA512:
6
- metadata.gz: 11cec2ae870755dee110a441c62bfe2c17c73a70c1ff0368b49e6f0e4beab979cd03d95ab863013673e75e6b0c78b908e9f6885c9d76f9679ae5344425c4bcbe
7
- data.tar.gz: 0e83d7b4973c7b3c288eba1dfc9af1eea6848c8e456b4ee2d94ad576fbbf2cece43f78d67dfe3d609e8efe9cb22a0452183e81c4b2885e6ce9d0eaa611088867
6
+ metadata.gz: ae6d0084f999c7b5eb154a868d967bd4c12c35013ee3c82c619bac3e2b95f66fb50d484622d17d0593067f243814def1d53b86085afb4dea0d22dc97aa87f00b
7
+ data.tar.gz: 1d147771ce89c7debd366af07777915d06b2cfe214c3f926d5b55ff58a9bb02b976defd4db2225e172235565ef72b09d21dbba5bd18a9081605f52a651dc152a
@@ -10,7 +10,7 @@ module Readiness
10
10
  # @author Jason Colyer
11
11
  # @since 1.0.0
12
12
  class Tickets < Readiness::Client
13
- attr_accessor :assignee_id, :additional_tags, :brand_id, :collaborator_ids, :comment, :custom_fields, :custom_status_id, :description, :due_at, :email_cc_ids, :fields, :follower_ids, :followup_ids, :group_id, :has_incidents, :id, :is_public, :organization_id, :priority, :problem_id, :remove_tags, :requester_id, :satisfaction_rating, :status, :subject, :submitter_id, :tags, :ticket_form_id, :type, :via, :via_followup_source_id
13
+ attr_accessor :assignee_id, :additional_tags, :brand_id, :collaborator_ids, :comment, :created_at, :custom_fields, :custom_status_id, :description, :due_at, :email_cc_ids, :fields, :follower_ids, :followup_ids, :group_id, :has_incidents, :id, :is_public, :organization_id, :priority, :problem_id, :remove_tags, :requester_id, :satisfaction_rating, :status, :subject, :submitter_id, :tags, :ticket_form_id, :type, :updated_at, :via, :via_followup_source_id
14
14
 
15
15
  ##
16
16
  # Creates a new {Readiness::Zendesk::Tickets} instance
@@ -27,6 +27,7 @@ module Readiness
27
27
  @brand_id = object['brand_id']
28
28
  @collaborator_ids = object['collaborator_ids']
29
29
  @comment = object['comment']
30
+ @created_at = object['created_at']
30
31
  @custom_fields = object['custom_fields']
31
32
  @custom_status_id = object['custom_status_id']
32
33
  @description = object['description']
@@ -51,6 +52,7 @@ module Readiness
51
52
  @tags = object['tags']
52
53
  @ticket_form_id = object['ticket_form_id']
53
54
  @type = object['type']
55
+ @updated_at = object['updated_at']
54
56
  @via = object['via']
55
57
  @via_followup_source_id = object['via_followup_source_id']
56
58
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitlab_support_readiness
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.42
4
+ version: 1.0.43
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Colyer