yonoma 0.1.3 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f213a1270795bdf392b5c098fb8b43f12d167327346956ee41b3c2391aaf70cc
4
- data.tar.gz: 0e3d42910452a6406a8de6dd0472891be626f2541144314ef240278e4138f515
3
+ metadata.gz: 9dd8e1b053dca33524bd1c993f5f3b073262263a5fb4d411fa532fde07316c2b
4
+ data.tar.gz: 33e0ad42bf5167c8681200f171abc4244d3bc89ed527b889b4d83e33d4823460
5
5
  SHA512:
6
- metadata.gz: 31ff76654cd093cb94760f54b013ba5495068cd12096006925cc112a1cb2f197c707f48c7c132028288b359413adedae36480f0aa9532438e4f2451d2758a66e
7
- data.tar.gz: a6e5b1bb38e47bcc8ac260808c9646a5fa81c4968d528a576d1f3f593d29087fa9132cc682544ce58399f0ebb4db38a15b277324ad7c4bbc7618dfca1cc5e0ee
6
+ metadata.gz: 46e1f52c988c21fd617d3f30e2f005b58a30d3c9d6c59085132ab905286571d46128f7d04d155a348e368c52840369bd292dc25232588326275c728a82c25d18
7
+ data.tar.gz: 8032a5b13745cc41dc652b436f2d14e54b2f7221dc3cfcb173392656053d36c2b367f495a058837d61e4841669b1f81f98c58dc96ce9e62c99286cfc5099a545
data/README.md CHANGED
@@ -75,7 +75,7 @@ puts response_contact
75
75
 
76
76
  #### Add a Tag to a Contact
77
77
  ```ruby
78
- response_add_tag = Yonoma::Contacts.add_tag("Contact Id", {
78
+ response_add_tag = Yonoma::Contacts.addTag("Contact Id", {
79
79
  "tag_id" : "Tag Id"
80
80
  })
81
81
  puts response_add_tag
@@ -83,7 +83,7 @@ puts response_add_tag
83
83
 
84
84
  #### Remove a Tag from a Contact
85
85
  ```ruby
86
- response_remove_tag = Yonoma::Contacts.remove_tag("Contact Id", {
86
+ response_remove_tag = Yonoma::Contacts.removeTag("Contact Id", {
87
87
  "tag_id" : "Tag Id"
88
88
  })
89
89
  puts response_remove_tag
@@ -8,11 +8,11 @@ module Yonoma
8
8
  Client.request(:post, "/contacts/#{list_id}/status/#{contact_id}", params)
9
9
  end
10
10
 
11
- def self.add_tag(contact_id,params)
11
+ def self.addTag(contact_id,params)
12
12
  Client.request(:post, "/contacts/tags/#{contact_id}/add", params)
13
13
  end
14
14
 
15
- def self.remove_tag(contact_id,params)
15
+ def self.removeTag(contact_id,params)
16
16
  Client.request(:post, "/contacts/tags/#{contact_id}/remove",params)
17
17
  end
18
18
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Yonoma
4
- VERSION = "0.1.3"
4
+ VERSION = "0.1.4"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yonoma
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - YonomaHQ