arkaan 1.3.6 → 1.3.7
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/lib/arkaan/campaigns/message.rb +3 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0c0326fc6b0cf91a7a054ba23261a75ae44b4ee
|
|
4
|
+
data.tar.gz: e0e97bb75fd7ad99b263a2deec897a8563770397
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2165db9554b8231e95afdd6d321a9537bddea9a9b5f68645c773fa02ca8fb165cdab69591328701d5f4ac7744760ae9b2f39581150a99d3cd2167c5417bfc079
|
|
7
|
+
data.tar.gz: c77770b7248660348ada336b3398cd57f227d94591770a4e82d93bd9e31a221f182016732a69c62cb362137d63ea1d55c48e299c130e3327c0ad11e200d83b31
|
|
@@ -13,6 +13,9 @@ module Arkaan
|
|
|
13
13
|
# @!attribute [rw] data
|
|
14
14
|
# @return [Hash] the additional data passed to the message (arguments of the command, or content of the text)
|
|
15
15
|
field :data, type: Hash, default: {}
|
|
16
|
+
# @!attribute [rw] deleted
|
|
17
|
+
# @return [Boolean] TRUE if the message has been marked as deleted by its user, FALSE otherwise.
|
|
18
|
+
field :deleted, type: Boolean, default: false
|
|
16
19
|
|
|
17
20
|
# @!attribute [rw] campaign
|
|
18
21
|
# @return [Arkaan::Campaign] the campaign in which the message has been emitted.
|