amdapi 0.1.1 → 0.1.2
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/Gemfile.lock +2 -2
- data/README.md +0 -6
- data/amdapi-0.1.0.gem +0 -0
- data/amdapi-0.1.1.gem +0 -0
- data/lib/amdapi/validation.rb +1 -2
- data/lib/amdapi/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d75ac93e718161f90107a3be5e4dea79b1eb6a39e567055c3969adf860f0e80a
|
|
4
|
+
data.tar.gz: 62c70a4ff501d3a4500163d6d221256a135ee366bc18bdcbdd12b252b97aaea0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 90aae677c7286c7f1ece27a7e4125cc566ca592880058a59e3a565469a1479cc2528db2714fe6941250c6c939a916130f83f13d14d1355aaff8e304c5c8b893a
|
|
7
|
+
data.tar.gz: 1fa497f88df5bdb3baa4a72f43461118709488ea8321cf32039631b6e29d76ee87bda47fc8d24f3a5ea0ede5d8912ec2aa5b563915bb34d9b2e654ec50e5a263
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# Amdapi
|
|
2
2
|
|
|
3
|
-
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/amdapi`. To experiment with that code, run `bin/console` for an interactive prompt.
|
|
4
|
-
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
6
|
-
|
|
7
3
|
## Installation
|
|
8
4
|
|
|
9
5
|
Add this line to your application's Gemfile:
|
|
@@ -63,7 +59,6 @@ client.delete(call_uuid)
|
|
|
63
59
|
### Call params
|
|
64
60
|
| key | description | format |
|
|
65
61
|
| --- | ----------- | ------ |
|
|
66
|
-
| **company_name** | The name of your company | string |
|
|
67
62
|
| **call_id** | The ID of the call from your DB | string |
|
|
68
63
|
| **client_id** | The ID of your client. The one that operates the contact center | integer |
|
|
69
64
|
| **agent_id** | The ID of the agent that operates the call. Value from your DB | integer |
|
|
@@ -75,7 +70,6 @@ client.delete(call_uuid)
|
|
|
75
70
|
|
|
76
71
|
```JSON
|
|
77
72
|
{
|
|
78
|
-
"company_name": "your_company_name",
|
|
79
73
|
"call_id": 273,
|
|
80
74
|
"client_id": 412,
|
|
81
75
|
"agent_id": 42,
|
data/amdapi-0.1.0.gem
ADDED
|
Binary file
|
data/amdapi-0.1.1.gem
ADDED
|
Binary file
|
data/lib/amdapi/validation.rb
CHANGED
data/lib/amdapi/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: amdapi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Martfed
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-04-
|
|
11
|
+
date: 2022-04-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: faraday
|
|
@@ -95,6 +95,8 @@ files:
|
|
|
95
95
|
- LICENSE.txt
|
|
96
96
|
- README.md
|
|
97
97
|
- Rakefile
|
|
98
|
+
- amdapi-0.1.0.gem
|
|
99
|
+
- amdapi-0.1.1.gem
|
|
98
100
|
- amdapi.gemspec
|
|
99
101
|
- bin/console
|
|
100
102
|
- bin/setup
|