iron_bank 4.1.1 → 4.2.0
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 +1 -1
- data/lib/iron_bank/resources/account.rb +3 -0
- data/lib/iron_bank/resources/communication_profile.rb +16 -0
- data/lib/iron_bank/version.rb +1 -1
- data/lib/iron_bank.rb +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c43b87965a20a054d039009a4da852974532dc4b079b8ceb20d6ec9849a00eb3
|
|
4
|
+
data.tar.gz: a23c602da14f5bcfcf1ed9cc9dcece5a21dc083c7d941c63e444870c3384dfb4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e026432778a617ffebe80df42f2fde537a85be17682d34c8f451b8e3548d0d149c74d35c386d7bc038da6bbde18515688e662d582e82ff9a1249853e3a7136d4
|
|
7
|
+
data.tar.gz: 8b7ec698f0e0ecf5a19db78d246980ce117abdaae68dbc67bf5572fd98d366fe48160be8ae35ad17e9db609cbe1798f58828104e4dfae4a7fda0e677abd87637
|
data/Gemfile.lock
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module IronBank
|
|
4
|
+
module Resources
|
|
5
|
+
# A Zuora communication profile. Controls which notifications (emails and
|
|
6
|
+
# callouts) are sent to a customers and external systems, e.g. provisioning,
|
|
7
|
+
# when events happen for the account, such as invoice posted, subscription
|
|
8
|
+
# created, etc.
|
|
9
|
+
#
|
|
10
|
+
class CommunicationProfile < Resource
|
|
11
|
+
with_schema
|
|
12
|
+
|
|
13
|
+
with_many :accounts
|
|
14
|
+
end
|
|
15
|
+
end
|
|
16
|
+
end
|
data/lib/iron_bank/version.rb
CHANGED
data/lib/iron_bank.rb
CHANGED
|
@@ -101,6 +101,7 @@ require "iron_bank/resource"
|
|
|
101
101
|
require "iron_bank/collection"
|
|
102
102
|
require "iron_bank/resources/account"
|
|
103
103
|
require "iron_bank/resources/amendment"
|
|
104
|
+
require "iron_bank/resources/communication_profile"
|
|
104
105
|
require "iron_bank/resources/contact"
|
|
105
106
|
require "iron_bank/resources/export"
|
|
106
107
|
require "iron_bank/resources/import"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: iron_bank
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mickael Pham
|
|
@@ -309,6 +309,7 @@ files:
|
|
|
309
309
|
- lib/iron_bank/resource.rb
|
|
310
310
|
- lib/iron_bank/resources/account.rb
|
|
311
311
|
- lib/iron_bank/resources/amendment.rb
|
|
312
|
+
- lib/iron_bank/resources/communication_profile.rb
|
|
312
313
|
- lib/iron_bank/resources/contact.rb
|
|
313
314
|
- lib/iron_bank/resources/export.rb
|
|
314
315
|
- lib/iron_bank/resources/import.rb
|
|
@@ -350,7 +351,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
350
351
|
- !ruby/object:Gem::Version
|
|
351
352
|
version: '0'
|
|
352
353
|
requirements: []
|
|
353
|
-
rubygems_version: 3.0.
|
|
354
|
+
rubygems_version: 3.0.6
|
|
354
355
|
signing_key:
|
|
355
356
|
specification_version: 4
|
|
356
357
|
summary: An opinionated Ruby interface to the Zuora API.
|