rock_rms 8.14.0 → 8.15.0

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: 92beee8a5c17475ed71b6bf688ae9f31dcb32348bb2a9d62ed4ba4702e9d82cc
4
- data.tar.gz: 43634e5e1f99308672c93b2630fedfc0f5a4883dc8b34d83a75edbff17c5b0cc
3
+ metadata.gz: e2c2b021f6f7d904719857a5c0bcd860f73fa605d9eb0ce9f76e854ca5eade36
4
+ data.tar.gz: 83ceae3827a126165801aa660611a753950b12953f6401e9263d191b48deca5e
5
5
  SHA512:
6
- metadata.gz: 64abb56ec232a60dd1c79f76c8a378dd5c2124006d59d2e6e9f7c1936d47f5a66357564b43826f0160b243cd15a47bf0a1cbd7a8f2d48a492008e9052fb201a8
7
- data.tar.gz: 2672b0a568e05a81c6607a74cb0391446ad629bf3c9099512a630e6a87f26049c61dd8ab2ea0ea7c77b80dc5e33d477237d78500ee24d35b4e9628ec9105a036
6
+ metadata.gz: 1ae7a3defb6fda499899e46bf8e96ddd1df7ca66921cd89e20b61a7d082be3ea577b0ea2137419e39c35c6d03c4569a849208efbc42877547631d287dd91245f
7
+ data.tar.gz: 44d69ff3db93e91e6828ed3e4219514105e0d3115bf244922e9ecd4b95984b6ee7011ff23c209b44839796a33606f5f6166c0f1ed6cb832c84da7230c2a60de9
@@ -18,7 +18,10 @@ module RockRMS
18
18
  active:,
19
19
  is_system:,
20
20
  markup:,
21
- parameters:
21
+ enabled_lava_commands:,
22
+ parameters:,
23
+ tag_name:,
24
+ tag_type:
22
25
  )
23
26
  options = {
24
27
  'Name' => name,
@@ -27,7 +30,10 @@ module RockRMS
27
30
  'IsActive' => active,
28
31
  'IsSystem' => is_system,
29
32
  'Markup' => markup,
30
- 'Parameters' => parameters
33
+ 'EnabledLavaCommands' => enabled_lava_commands,
34
+ 'Parameters' => parameters,
35
+ 'TagName' => tag_name,
36
+ 'TagType' => tag_type,
31
37
  }
32
38
 
33
39
  post(lava_shortcodes_path, options)
@@ -41,18 +47,24 @@ module RockRMS
41
47
  active: nil,
42
48
  is_system: nil,
43
49
  markup: nil,
44
- parameters: nil
50
+ enabled_lava_commands: nil,
51
+ parameters: nil,
52
+ tag_name: nil,
53
+ tag_type: nil
45
54
  )
46
55
 
47
56
  options = {}
48
57
 
49
- options['Name'] = name if name
50
- options['Description'] = description if description
58
+ options['Name'] = name if name
59
+ options['Description'] = description if description
51
60
  options['Documentation'] = documentation if documentation
52
- options['IsActive'] = active if active
53
- options['IsSystem'] = is_system if is_system
54
- options['Markup'] = markup if markup
55
- options['Parameters'] = parameters if parameters
61
+ options['IsActive'] = active if active
62
+ options['IsSystem'] = is_system if is_system
63
+ options['Markup'] = markup if markup
64
+ options['Parameters'] = parameters if parameters
65
+ options['TagName'] = tag_name if tag_name
66
+ options['TagType'] = tag_type if tag_type
67
+ options['EnabledLavaCommands'] = enabled_lava_commands if enabled_lava_commands
56
68
 
57
69
  patch(lava_shortcodes_path(id), options)
58
70
  end
@@ -7,7 +7,9 @@ module RockRMS
7
7
  documentation: 'Documentation',
8
8
  active: 'IsActive',
9
9
  is_system: 'IsSystem',
10
+ enabled_lava_commands: 'EnabledLavaCommands',
10
11
  tag_name: 'TagName',
12
+ tag_type: 'TagType',
11
13
  markup: 'Markup',
12
14
  parameters: 'Parameters'
13
15
  }.freeze
@@ -1,3 +1,3 @@
1
1
  module RockRMS
2
- VERSION = '8.14.0'.freeze
2
+ VERSION = '8.15.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rock_rms
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.14.0
4
+ version: 8.15.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taylor Brooks
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-02 00:00:00.000000000 Z
11
+ date: 2023-10-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -202,7 +202,7 @@ files:
202
202
  - lib/rock_rms/resources/group.rb
203
203
  - lib/rock_rms/resources/group_member.rb
204
204
  - lib/rock_rms/resources/history.rb
205
- - lib/rock_rms/resources/lava_shortcodes.rb
205
+ - lib/rock_rms/resources/lava_shortcode.rb
206
206
  - lib/rock_rms/resources/page.rb
207
207
  - lib/rock_rms/resources/payment_detail.rb
208
208
  - lib/rock_rms/resources/person.rb