crisp-api 1.1.8 → 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: d57f99a52088fb3606d2ffdc16aaad8e73b27987bd045206f2d68c35bea8688c
4
- data.tar.gz: '09f2f37e313441dca7207dce7aa32ff00ef10b58b66b337b2f1adf276d4c7a40'
3
+ metadata.gz: c1492b534936fe90a085a39786b53e1e27455716226b7f7c1cfd5d8aaca42834
4
+ data.tar.gz: 20acf32bb4c32030d7d27d74b38049cc11a2abe66102b3ed229287def0a6836f
5
5
  SHA512:
6
- metadata.gz: af5257d5784154cfdfc851f00560bcf0ed8b57c3597959f58b0f392133cd374511f468deb8bc27c8f32a6bd468e85947b82999224ffb1caab3a44a369943cad1
7
- data.tar.gz: 7bfa82f442e107f25cb6fcf434dd6727d8287a84d570bdc7f03501477df646876653b770155d5f16988503090308cd89157efbd3c1870338b515ae85bf7cdbd0
6
+ metadata.gz: 66a573d5ec60568e00b7ca0b4cab89a3fd060664c0e72945c7dc6ef603855b52cf9dc7eb6bb05cf2f33d15b5d085dfea7b28650ca5355eedc4843dcfe0604967
7
+ data.tar.gz: 676af19bfacedc35d607036aca95086c9a9f8fbac33600bce3ec88f4ddc75aef627dbacc54b2e1704379558163978e76bf9ad7e2ced93cda028ddcec172513f4
File without changes
data/README.md CHANGED
@@ -1,8 +1,10 @@
1
- # ruby-crisp-api
1
+ # Crisp API Wrapper
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) [![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)
2
4
 
3
5
  The Crisp API Ruby wrapper. Authenticate, send messages, fetch conversations, access your agent accounts from your Ruby code.
4
6
 
5
- Copyright 2019 Crisp IM SAS. See LICENSE for copying information.
7
+ Copyright 2023 Crisp IM SAS. See LICENSE for copying information.
6
8
 
7
9
  * **📝 Implements**: [REST API Reference (V1)](https://docs.crisp.chat/references/rest-api/v1/) at revision: 12/31/2017
8
10
  * **😘 Maintainer**: [@valeriansaliou](https://github.com/valeriansaliou), [@eliottvincent](https://github.com/eliottvincent)
@@ -14,7 +16,7 @@ You may follow the [REST API Quickstart](https://docs.crisp.chat/guides/rest-api
14
16
  Add the library to your `Gemfile`:
15
17
 
16
18
  ```bash
17
- gem "crisp-api", "~> 1.1.8"
19
+ gem "crisp-api", "~> 1.1.10"
18
20
  ```
19
21
 
20
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.8"
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.8",
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.8
4
+ version: 1.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Valerian Saliou
@@ -30,7 +30,7 @@ executables: []
30
30
  extensions: []
31
31
  extra_rdoc_files: []
32
32
  files:
33
- - ".github/workflows/publish.yml"
33
+ - ".github/workflows/build.yml"
34
34
  - ".gitignore"
35
35
  - EXAMPLES.md
36
36
  - Gemfile