infusion-api 1.0.2 → 1.0.3
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 +8 -8
- data/lib/infusion-api/client.rb +9 -9
- data/lib/infusion-api/client/version.rb +1 -1
- data/lib/infusion-api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YjI3Y2QwNDc1YTI5ZjViZTYzZDJlZjk3MTdlMjExMjViOWFmMzE0Mw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZDVlZjUzZjdmNzUwZWU1MzQ5NzI0OGQxMTk0YmE1YjJiZDNkYTI0NA==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NmFhNTZmYjYzN2YzNTgzMGMzY2I5ZThiYTU5NDE3MWRlMzRmOTU4MGQxNTFi
|
10
|
+
MTlhNTY0YjZhNDQwYjgyNWNmODFhY2RjODUwMzM4ZWQ2OWI2ZmM4Nzg1YzIy
|
11
|
+
ZDdhYzAwZTlhOTU3YjEzN2FlODEzOGY5YjNlZTEwMDU3YTVmNDg=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
OGRkODhmNTQyYjNhYWNhOWExNDNkMzhhNGEzNDQyNjRkMjcyNjliMWFjYTA5
|
14
|
+
NGExZDJiMTU4NTFmODExZDQ3YzEzOTFmNjQ5Njg4YmVhODk0ZDcxNTc2Y2Fm
|
15
|
+
ODI3Mzc5MjQ3NGI3YzQ2YWUyZmU3ZTVkNWNlYzQxOTFjZGNlOGI=
|
data/lib/infusion-api/client.rb
CHANGED
@@ -6,15 +6,15 @@ module Infusionsoft
|
|
6
6
|
# Require client method modules after initializing the Client class in
|
7
7
|
# order to avoid a superclass mismatch error, allowing those modules to be
|
8
8
|
# Client-namespaced.
|
9
|
-
require '
|
10
|
-
require '
|
11
|
-
require '
|
12
|
-
require '
|
13
|
-
require '
|
14
|
-
require '
|
15
|
-
require '
|
16
|
-
require '
|
17
|
-
require '
|
9
|
+
require 'infusion-api/client/contact'
|
10
|
+
require 'infusion-api/client/email'
|
11
|
+
require 'infusion-api/client/invoice'
|
12
|
+
require 'infusion-api/client/data'
|
13
|
+
require 'infusion-api/client/affiliate'
|
14
|
+
require 'infusion-api/client/file'
|
15
|
+
require 'infusion-api/client/ticket' # Deprecated by Infusionsoft
|
16
|
+
require 'infusion-api/client/search'
|
17
|
+
require 'infusion-api/client/credit_card'
|
18
18
|
|
19
19
|
include Infusionsoft::Client::Contact
|
20
20
|
include Infusionsoft::Client::Email
|
data/lib/infusion-api/version.rb
CHANGED