gitlab_support_readiness 1.0.88 → 1.0.89
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c8835592aa238eb94c87735d75b0843b1b818763c5216d5f459760207c223ff
|
4
|
+
data.tar.gz: 53fb22b156d00e5591453c9c3bf1e7810bb26ddf9ed613afcea9a93420014e1e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6171098ac8c59bd806af5b37a062e32f9ad539f43c5ed84a9a21f3d925cfbdf0037297517dd99abdd2c87f31e97b0fe1003edff8aea411419abbb7ae9f70ccd4
|
7
|
+
data.tar.gz: 47e02859ee9f1430b4a9ae8bd60ff3f2e6553cd1f1b3c953ce21c3f46c9ada88f235c77809f477d089f77362cf7b6520fd81a87f09b2007e7305d188bb24f02a
|
@@ -10,7 +10,7 @@ module Readiness
|
|
10
10
|
# @author Jason Colyer
|
11
11
|
# @since 1.0.12
|
12
12
|
class TicketFieldOptions < Readiness::Client
|
13
|
-
attr_accessor :id, :name, :position, :value
|
13
|
+
attr_accessor :id, :name, :position, :raw_name, :value
|
14
14
|
|
15
15
|
##
|
16
16
|
# Creates a new {Readiness::Zendesk::TicketFieldOptions} instance
|
@@ -25,6 +25,7 @@ module Readiness
|
|
25
25
|
@id = object['id']
|
26
26
|
@name = object['name']
|
27
27
|
@position = object['position']
|
28
|
+
@raw_name = object['raw_name']
|
28
29
|
@value = object['value']
|
29
30
|
end
|
30
31
|
|
@@ -10,7 +10,7 @@ module Readiness
|
|
10
10
|
# @author Jason Colyer
|
11
11
|
# @since 1.0.0
|
12
12
|
class TicketFields < Readiness::Client
|
13
|
-
attr_accessor :active, :agent_description, :collapsed_for_agents, :custom_field_options, :description, :editable_in_portal, :id, :key, :position, :regexp_for_validation, :removable, :required, :system_field_options, :tag, :title, :title_in_portal, :type, :visible_in_portal
|
13
|
+
attr_accessor :active, :agent_description, :collapsed_for_agents, :custom_field_options, :description, :editable_in_portal, :id, :key, :position, :raw_title_in_portal, :regexp_for_validation, :removable, :required, :system_field_options, :tag, :title, :title_in_portal, :type, :visible_in_portal
|
14
14
|
|
15
15
|
##
|
16
16
|
# Creates a new {Readiness::Zendesk::TicketFields} instance
|
@@ -37,6 +37,7 @@ module Readiness
|
|
37
37
|
@id = object['id']
|
38
38
|
@key = object['key']
|
39
39
|
@position = object['position']
|
40
|
+
@raw_title_in_portal = object['raw_title_in_portal']
|
40
41
|
@regexp_for_validation = object['regexp_for_validation']
|
41
42
|
@removable = object['removable']
|
42
43
|
@required = object['required']
|
@@ -10,7 +10,7 @@ module Readiness
|
|
10
10
|
# @author Jason Colyer
|
11
11
|
# @since 1.0.0
|
12
12
|
class TicketForms < Readiness::Client
|
13
|
-
attr_accessor :active, :agent_conditions, :default, :display_name, :end_user_conditions, :end_user_visible, :id, :in_all_brands, :name, :position, :restricted_brand_ids, :ticket_field_ids
|
13
|
+
attr_accessor :active, :agent_conditions, :default, :display_name, :end_user_conditions, :end_user_visible, :id, :in_all_brands, :name, :position, :raw_display_name, :restricted_brand_ids, :ticket_field_ids
|
14
14
|
|
15
15
|
##
|
16
16
|
# Creates a new {Readiness::Zendesk::TicketForms} instance
|
@@ -32,6 +32,7 @@ module Readiness
|
|
32
32
|
@in_all_brands = object['in_all_brands']
|
33
33
|
@name = object['name']
|
34
34
|
@position = object['position']
|
35
|
+
@raw_display_name = object['raw_display_name']
|
35
36
|
@restricted_brand_ids = object['restricted_brand_ids']
|
36
37
|
@ticket_field_ids = object['ticket_field_ids']
|
37
38
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitlab_support_readiness
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.89
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jason Colyer
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|