crisp-api 1.1.9 → 1.1.10

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: 59db2e5908afa5ae5c95b38d016832ff57c2e789487a87f32e7ef8c322f993e3
4
- data.tar.gz: cdf9d1ed5d893af3ff760832acfe7c27d4194fd3847956e3fd68477803cc826b
3
+ metadata.gz: c1492b534936fe90a085a39786b53e1e27455716226b7f7c1cfd5d8aaca42834
4
+ data.tar.gz: 20acf32bb4c32030d7d27d74b38049cc11a2abe66102b3ed229287def0a6836f
5
5
  SHA512:
6
- metadata.gz: 3d4a16274e8d5786ffbe46fd0f6ee51094b43cd2f0eb626a303acc51eaaee4f4d3531b75f8f9403d5bf28962289cfe586a13bb68c2937acf49cdbd98e13726c5
7
- data.tar.gz: cfb799018b89104237bbc5b4d04311bc69065563b4d1f72591e32659063b74da3516ba4c2c8a25490b95691a3bda8a78e7ba13919651f8a1edc8aa81559519ff
6
+ metadata.gz: 66a573d5ec60568e00b7ca0b4cab89a3fd060664c0e72945c7dc6ef603855b52cf9dc7eb6bb05cf2f33d15b5d085dfea7b28650ca5355eedc4843dcfe0604967
7
+ data.tar.gz: 676af19bfacedc35d607036aca95086c9a9f8fbac33600bce3ec88f4ddc75aef627dbacc54b2e1704379558163978e76bf9ad7e2ced93cda028ddcec172513f4
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Crisp API Wrapper
2
2
 
3
- [![Build and Release](https://github.com/crisp-im/ruby-crisp-api/workflows/Build%20and%20Release/badge.svg)](https://github.com/crisp-im/ruby-crisp-api/actions?query=workflow%3A%22Build+and+Release%22) [![NPM](https://img.shields.io/gem/v/crisp-api.svg)](https://rubygems.org/gems/crisp-api) [![Downloads](https://img.shields.io/gem/dt/crisp-api.svg)](https://rubygems.org/gems/crisp-api)
3
+ [![Build and Release](https://github.com/crisp-im/ruby-crisp-api/workflows/Build%20and%20Release/badge.svg)](https://github.com/crisp-im/ruby-crisp-api/actions?query=workflow%3A%22Build+and+Release%22) [![RubyGems](https://img.shields.io/gem/v/crisp-api.svg)](https://rubygems.org/gems/crisp-api) [![Downloads](https://img.shields.io/gem/dt/crisp-api.svg)](https://rubygems.org/gems/crisp-api)
4
4
 
5
5
  The Crisp API Ruby wrapper. Authenticate, send messages, fetch conversations, access your agent accounts from your Ruby code.
6
6
 
@@ -16,7 +16,7 @@ You may follow the [REST API Quickstart](https://docs.crisp.chat/guides/rest-api
16
16
  Add the library to your `Gemfile`:
17
17
 
18
18
  ```bash
19
- gem "crisp-api", "~> 1.1.9"
19
+ gem "crisp-api", "~> 1.1.10"
20
20
  ```
21
21
 
22
22
  Then, import it:
data/crisp-api.gemspec CHANGED
@@ -2,7 +2,7 @@ require File.expand_path("../lib/crisp-api", __FILE__)
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "crisp-api"
5
- s.version = "1.1.9"
5
+ s.version = "1.1.10"
6
6
  s.date = Date.today
7
7
  s.summary = "Crisp API Ruby"
8
8
  s.description = "Crisp API Ruby"
data/lib/crisp-api.rb CHANGED
@@ -91,7 +91,7 @@ module Crisp
91
91
  :payload => (data ? data.to_json : nil),
92
92
 
93
93
  :headers => {
94
- :user_agent => "ruby-crisp-api/1.1.9",
94
+ :user_agent => "ruby-crisp-api/1.1.10",
95
95
  :accept => :json,
96
96
  :content_type => :json,
97
97
  "X-Crisp-Tier" => @tier,
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: crisp-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.9
4
+ version: 1.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Valerian Saliou