active_zuora 1.4.18 → 1.4.19

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
  SHA1:
3
- metadata.gz: b584f52a239d7efc70c0a051487edce97d414682
4
- data.tar.gz: 6dbbb54fb9464718e069440c331112a5aaf5f501
3
+ metadata.gz: 22a3cd736b36206dc0f58ef35e61ba541b3c87a7
4
+ data.tar.gz: d61c5bc7c66b1b4c0f983dd17931cf9d63c38649
5
5
  SHA512:
6
- metadata.gz: 1caeebaf36a6758dfa3f804338176b2e8b8c6b3df891fdfa6e95286ef4c0f2294eeac735a4bac226eec1d8dd73d85d16edcb9d3880a338c7004a55055d072fe5
7
- data.tar.gz: 7ead9bbd777e44cb4ae962e0cee2be19d133b03cbf8ff74e695842c991581551e40943060ebaa78164b639f512659e98bdecd185b72d9fa06e20e8141ecb5fbb
6
+ metadata.gz: 2df593cce295759e1a9dbc0ae063ff2e8fce233d36183bef245e77eb8ec5d4af18b01d19ec318c7c9ba3af99f72069ceaa009c771431a9850497b6dcfddc0df4
7
+ data.tar.gz: b400495082b4fcd7e832aa5fc829dedb546ce07dcfc87b86a0fb66a30cf36584ab5700b009f6202089ba4065e6f37f32838524d0865f50d8e3ec8ea22e515fb1
@@ -6,7 +6,7 @@
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "active_zuora"
9
- s.version = "1.4.18"
9
+ s.version = "1.4.19"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
@@ -926,8 +926,9 @@ class Subscription < ZObject
926
926
  attr_accessor :termEndDate
927
927
  attr_accessor :termType
928
928
  attr_accessor :version
929
+ attr_accessor :isInvoiceSeparate
929
930
 
930
- def initialize(fieldsToNull = [], id = nil, accountId = nil, autoRenew = nil, cancelledDate = nil, createdDate = nil, contractAcceptanceDate = nil, contractEffectiveDate = nil, initialTerm = nil, name = nil, notes = nil, originalId = nil, previousSubscriptionId = nil, renewalTerm = nil, serviceActivationDate = nil, subscriptionEndDate = nil, status = nil, termStartDate = nil, termEndDate = nil, termType = nil, version = nil)
931
+ def initialize(fieldsToNull = [], id = nil, accountId = nil, autoRenew = nil, cancelledDate = nil, createdDate = nil, contractAcceptanceDate = nil, contractEffectiveDate = nil, initialTerm = nil, name = nil, notes = nil, originalId = nil, previousSubscriptionId = nil, renewalTerm = nil, serviceActivationDate = nil, subscriptionEndDate = nil, status = nil, termStartDate = nil, termEndDate = nil, termType = nil, version = nil, isInvoiceSeparate = nil)
931
932
  @fieldsToNull = fieldsToNull
932
933
  @id = id
933
934
  @accountId = accountId
@@ -949,6 +950,7 @@ class Subscription < ZObject
949
950
  @termEndDate = termEndDate
950
951
  @termType = termType
951
952
  @version = version
953
+ @isInvoiceSeparate = isInvoiceSeparate
952
954
  end
953
955
  end
954
956
 
@@ -1151,7 +1153,7 @@ class AmendOptions
1151
1153
  attr_accessor :generateInvoice, :invoiceProcessingOptions, :processPayments
1152
1154
 
1153
1155
  def initialize(generateInvoice = nil, invoiceProcessingOptions = nil, processPayments = nil)
1154
- @generateInvoice, @invoiceProcessingOptions, @processPayments =
1156
+ @generateInvoice, @invoiceProcessingOptions, @processPayments =
1155
1157
  generateInvoice, invoiceProcessingOptions, processPayments
1156
1158
  end
1157
1159
  end
@@ -453,7 +453,8 @@ module DefaultMappingRegistry
453
453
  ["status", ["SOAP::SOAPString", XSD::QName.new(NsObjectApiZuoraCom, "Status")], [0, 1]],
454
454
  ["termStartDate", ["SOAP::SOAPDateTime", XSD::QName.new(NsObjectApiZuoraCom, "TermStartDate")], [0, 1]],
455
455
  ["termEndDate", ["SOAP::SOAPDateTime", XSD::QName.new(NsObjectApiZuoraCom, "TermEndDate")], [0, 1]],
456
- ["version", ["SOAP::SOAPInt", XSD::QName.new(NsObjectApiZuoraCom, "Version")], [0, 1]]
456
+ ["version", ["SOAP::SOAPInt", XSD::QName.new(NsObjectApiZuoraCom, "Version")], [0, 1]],
457
+ ["isInvoiceSeparate", ["SOAP::SOAPBoolean", XSD::QName.new(NsObjectApiZuoraCom, "IsInvoiceSeparate")], [0, 1]]
457
458
  ]
458
459
  )
459
460
 
@@ -1182,7 +1183,8 @@ module DefaultMappingRegistry
1182
1183
  ["termStartDate", ["SOAP::SOAPDateTime", XSD::QName.new(NsObjectApiZuoraCom, "TermStartDate")], [0, 1]],
1183
1184
  ["termEndDate", ["SOAP::SOAPDateTime", XSD::QName.new(NsObjectApiZuoraCom, "TermEndDate")], [0, 1]],
1184
1185
  ["termType", ["SOAP::SOAPString", XSD::QName.new(NsObjectApiZuoraCom, "TermType")], [0, 1]],
1185
- ["version", ["SOAP::SOAPInt", XSD::QName.new(NsObjectApiZuoraCom, "Version")], [0, 1]]
1186
+ ["version", ["SOAP::SOAPInt", XSD::QName.new(NsObjectApiZuoraCom, "Version")], [0, 1]],
1187
+ ["isInvoiceSeparate", ["SOAP::SOAPBoolean", XSD::QName.new(NsObjectApiZuoraCom, "IsInvoiceSeparate")], [0, 1]]
1186
1188
  ]
1187
1189
  )
1188
1190
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_zuora
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.18
4
+ version: 1.4.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andy Fleener