freshchat_whatsapp 0.1.1 → 0.1.2

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: bbec84322724f0f961776d54ab2112de544a16e8beacc581f2e7acc764e75853
4
- data.tar.gz: 6ef161986b49ddf3a9aea877636166c27765cc840da33ceba1f8cfb3bee583ef
3
+ metadata.gz: 4b9358445148af3b6517df994e94b2be0890569c4a1e0da5bbf1713a38d7b35e
4
+ data.tar.gz: 0266f6d8591e0bb329ed04d40c653149cc59d1fb95ee3fcb389bd6909fb94206
5
5
  SHA512:
6
- metadata.gz: 94c6d80a10ae8277425b1b65d199da09bb5d0ec82978a22c96f9d2dfc0a8a65d696f3437f6b8ea5a1ffbb03d9521da8cd463959fc158a4d9c76dc20349ef49d6
7
- data.tar.gz: 6ca2e12de485b64739e780f5ce8a23bd2d2406c5e7b21e2f54b8b55a67ff4bccff7107ee7cb2ede0f361f1b96445cdceb92e86216dc75aaba68d576916326210
6
+ metadata.gz: dc57debcbb509e2dfd8a6f1ae6ced2f4fc07e2e79417812a31da486fd2d7081dd288bc388a17e878ab065e084c83664abdeb9dc73413178007b76a7411bf3de4
7
+ data.tar.gz: b0ae3a5d35485fb2c07f2aaf7d398fefe604a05901e21803b9bf634e87a1988b10db62d91742c5d9bbe6f0671ecff80468dae99560e1966952098a9c94c3cb62
@@ -12,11 +12,6 @@ module FreshchatWhatsapp
12
12
  full_path = "#{base_path}#{path}"
13
13
  conn = Faraday.new(url: full_path, headers: headers)
14
14
  response = conn.post { |request| request.body = body(payload) }
15
-
16
- unless response.success?
17
- raise FreshchatWhatsapp::Errors::RequestError.new('FreshchatWhatsapp API request error.', response.body)
18
- end
19
-
20
15
  JSON.parse(response.body)
21
16
  end
22
17
 
@@ -24,11 +19,6 @@ module FreshchatWhatsapp
24
19
  full_path = "#{base_path}#{path}"
25
20
  conn = Faraday.new(url: full_path, headers: headers)
26
21
  response = conn.get { |request| request.body = body(payload) }
27
-
28
- unless response.success?
29
- raise FreshchatWhatsapp::Errors::RequestError.new('FreshchatWhatsapp API request error.', response.body)
30
- end
31
-
32
22
  JSON.parse(response.body)
33
23
  end
34
24
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FreshchatWhatsapp
4
- VERSION = '0.1.1'
4
+ VERSION = '0.1.2'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: freshchat_whatsapp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arvind Vyas
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-11-20 00:00:00.000000000 Z
11
+ date: 2023-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday