recurly 4.39.0 → 4.40.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.bumpversion.cfg +1 -1
- data/CHANGELOG.md +3 -2
- data/GETTING_STARTED.md +1 -1
- data/lib/recurly/requests/invoice_create.rb +5 -1
- data/lib/recurly/requests/purchase_create.rb +5 -1
- data/lib/recurly/requests/subscription_change_create.rb +5 -1
- data/lib/recurly/requests/subscription_create.rb +5 -1
- data/lib/recurly/requests/subscription_update.rb +5 -1
- data/lib/recurly/resources/invoice.rb +5 -1
- data/lib/recurly/resources/invoice_mini.rb +4 -0
- data/lib/recurly/resources/subscription.rb +5 -1
- data/lib/recurly/resources/subscription_ramp_interval_response.rb +8 -0
- data/lib/recurly/version.rb +1 -1
- data/openapi/api.yaml +134 -37
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 516898930f6b60b8f1a395185faef9f1202df9b635708656ffa68cd83dd1fb1e
|
4
|
+
data.tar.gz: 2c8e9afc6c23e0998b38911c4c46845a9d0d10c008cbc65e666889dc3ada67d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 56f7cbbc66edb19a6a3702dd2402c93acea4d42a18862c4c97dc475f6f21cdc06bbdc12d3147b1338e49c6b10a334d83688a00de069bfeb576f6ab58ad017244
|
7
|
+
data.tar.gz: d414f601498ca69ccd18e703e36426d52bcfc427ce14f6fee1b2efc41f9f6ef63b34ed526e0960d339e6bd61980b82aee3a0d7e69b2c1768ba29f2ecb4c49d3f
|
data/.bumpversion.cfg
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
-
## [4.
|
3
|
+
## [4.40.0](https://github.com/recurly/recurly-client-ruby/tree/4.40.0) (2023-07-27)
|
4
4
|
|
5
|
-
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.38.0...4.
|
5
|
+
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.38.0...4.40.0)
|
6
6
|
|
7
7
|
|
8
8
|
**Merged Pull Requests**
|
9
9
|
|
10
|
+
- Generated Latest Changes for v2021-02-25 (Ramp Dates, Net Terms, Invoice Business Entity) [#860](https://github.com/recurly/recurly-client-ruby/pull/860) ([recurly-integrations](https://github.com/recurly-integrations))
|
10
11
|
- Generated Latest Changes for v2021-02-25 (App Management - External Subscriptions) [#859](https://github.com/recurly/recurly-client-ruby/pull/859) ([recurly-integrations](https://github.com/recurly-integrations))
|
11
12
|
|
12
13
|
|
data/GETTING_STARTED.md
CHANGED
@@ -5,7 +5,7 @@ This repository houses the official ruby client for Recurly's V3 API.
|
|
5
5
|
In your Gemfile, add `recurly` as a dependency.
|
6
6
|
|
7
7
|
```ruby
|
8
|
-
gem 'recurly', '~> 4.
|
8
|
+
gem 'recurly', '~> 4.40'
|
9
9
|
```
|
10
10
|
|
11
11
|
> *Note*: We try to follow [semantic versioning](https://semver.org/) and will only apply breaking changes to major versions.
|
@@ -23,9 +23,13 @@ module Recurly
|
|
23
23
|
define_attribute :currency, String
|
24
24
|
|
25
25
|
# @!attribute net_terms
|
26
|
-
# @return [Integer] Integer representing the number of days after
|
26
|
+
# @return [Integer] Integer paired with `Net Terms Type` and representing the number of days past the current date (for `net` Net Terms Type) or days after the last day of the current month (for `eom` Net Terms Type) that the invoice will become past due. For any value, an additional 24 hours is added to ensure the customer has the entire last day to make payment before becoming past due. For example: If an invoice is due `net 0`, it is due 'On Receipt' and will become past due 24 hours after it's created. If an invoice is due `net 30`, it will become past due at 31 days exactly. If an invoice is due `eom 30`, it will become past due 31 days from the last day of the current month. When `eom` Net Terms Type is passed, the value for `Net Terms` is restricted to `0, 15, 30, 45, 60, or 90`. For more information please visit our docs page (https://docs.recurly.com/docs/manual-payments#section-collection-terms)
|
27
27
|
define_attribute :net_terms, Integer
|
28
28
|
|
29
|
+
# @!attribute net_terms_type
|
30
|
+
# @return [String] Optionally supplied string that may be either `net` or `eom` (end-of-month). When `net`, an invoice becomes past due the specified number of `Net Terms` days from the current date. When `eom` an invoice becomes past due the specified number of `Net Terms` days from the last day of the current month. This field is only available when the EOM Net Terms feature is enabled.
|
31
|
+
define_attribute :net_terms_type, String
|
32
|
+
|
29
33
|
# @!attribute po_number
|
30
34
|
# @return [String] For manual invoicing, this identifies the PO number associated with the subscription.
|
31
35
|
define_attribute :po_number, String
|
@@ -47,9 +47,13 @@ module Recurly
|
|
47
47
|
define_attribute :line_items, Array, { :item_type => :LineItemCreate }
|
48
48
|
|
49
49
|
# @!attribute net_terms
|
50
|
-
# @return [Integer] Integer representing the number of days after
|
50
|
+
# @return [Integer] Integer paired with `Net Terms Type` and representing the number of days past the current date (for `net` Net Terms Type) or days after the last day of the current month (for `eom` Net Terms Type) that the invoice will become past due. For any value, an additional 24 hours is added to ensure the customer has the entire last day to make payment before becoming past due. For example: If an invoice is due `net 0`, it is due 'On Receipt' and will become past due 24 hours after it's created. If an invoice is due `net 30`, it will become past due at 31 days exactly. If an invoice is due `eom 30`, it will become past due 31 days from the last day of the current month. When `eom` Net Terms Type is passed, the value for `Net Terms` is restricted to `0, 15, 30, 45, 60, or 90`. For more information please visit our docs page (https://docs.recurly.com/docs/manual-payments#section-collection-terms)
|
51
51
|
define_attribute :net_terms, Integer
|
52
52
|
|
53
|
+
# @!attribute net_terms_type
|
54
|
+
# @return [String] Optionally supplied string that may be either `net` or `eom` (end-of-month). When `net`, an invoice becomes past due the specified number of `Net Terms` days from the current date. When `eom` an invoice becomes past due the specified number of `Net Terms` days from the last day of the current month. This field is only available when the EOM Net Terms feature is enabled.
|
55
|
+
define_attribute :net_terms_type, String
|
56
|
+
|
53
57
|
# @!attribute po_number
|
54
58
|
# @return [String] For manual invoicing, this identifies the PO number associated with the subscription.
|
55
59
|
define_attribute :po_number, String
|
@@ -27,9 +27,13 @@ module Recurly
|
|
27
27
|
define_attribute :custom_fields, Array, { :item_type => :CustomField }
|
28
28
|
|
29
29
|
# @!attribute net_terms
|
30
|
-
# @return [Integer] Integer representing the number of days
|
30
|
+
# @return [Integer] Integer normally paired with `Net Terms Type` and representing the number of days past the current date (for `net` Net Terms Type) or days after the last day of the current month (for `eom` Net Terms Type) that the invoice will become past due. During a subscription change, it's not necessary to provide both the `Net Terms Type` and `Net Terms` parameters. For more information please visit our docs page (https://docs.recurly.com/docs/manual-payments#section-collection-terms)
|
31
31
|
define_attribute :net_terms, Integer
|
32
32
|
|
33
|
+
# @!attribute net_terms_type
|
34
|
+
# @return [String] Optionally supplied string that may be either `net` or `eom` (end-of-month). When `net`, an invoice becomes past due the specified number of `Net Terms` days from the current date. When `eom` an invoice becomes past due the specified number of `Net Terms` days from the last day of the current month. This field is only available when the EOM Net Terms feature is enabled.
|
35
|
+
define_attribute :net_terms_type, String
|
36
|
+
|
33
37
|
# @!attribute plan_code
|
34
38
|
# @return [String] If you want to change to a new plan, you can provide the plan's code or id. If both are provided the `plan_id` will be used.
|
35
39
|
define_attribute :plan_code, String
|
@@ -51,9 +51,13 @@ module Recurly
|
|
51
51
|
define_attribute :gift_card_redemption_code, String
|
52
52
|
|
53
53
|
# @!attribute net_terms
|
54
|
-
# @return [Integer] Integer representing the number of days after
|
54
|
+
# @return [Integer] Integer paired with `Net Terms Type` and representing the number of days past the current date (for `net` Net Terms Type) or days after the last day of the current month (for `eom` Net Terms Type) that the invoice will become past due. For any value, an additional 24 hours is added to ensure the customer has the entire last day to make payment before becoming past due. For example: If an invoice is due `net 0`, it is due 'On Receipt' and will become past due 24 hours after it's created. If an invoice is due `net 30`, it will become past due at 31 days exactly. If an invoice is due `eom 30`, it will become past due 31 days from the last day of the current month. When `eom` Net Terms Type is passed, the value for `Net Terms` is restricted to `0, 15, 30, 45, 60, or 90`. For more information please visit our docs page (https://docs.recurly.com/docs/manual-payments#section-collection-terms)
|
55
55
|
define_attribute :net_terms, Integer
|
56
56
|
|
57
|
+
# @!attribute net_terms_type
|
58
|
+
# @return [String] Optionally supplied string that may be either `net` or `eom` (end-of-month). When `net`, an invoice becomes past due the specified number of `Net Terms` days from the current date. When `eom` an invoice becomes past due the specified number of `Net Terms` days from the last day of the current month. This field is only available when the EOM Net Terms feature is enabled.
|
59
|
+
define_attribute :net_terms_type, String
|
60
|
+
|
57
61
|
# @!attribute next_bill_date
|
58
62
|
# @return [DateTime] If present, this sets the date the subscription's next billing period will start (`current_period_ends_at`). This can be used to align the subscription’s billing to a specific day of the month. The initial invoice will be prorated for the period between the subscription's activation date and the billing period end date. Subsequent periods will be based off the plan interval. For a subscription with a trial period, this will change when the trial expires.
|
59
63
|
define_attribute :next_bill_date, DateTime
|
@@ -31,9 +31,13 @@ module Recurly
|
|
31
31
|
define_attribute :gateway_code, String
|
32
32
|
|
33
33
|
# @!attribute net_terms
|
34
|
-
# @return [Integer] Integer representing the number of days after
|
34
|
+
# @return [Integer] Integer paired with `Net Terms Type` and representing the number of days past the current date (for `net` Net Terms Type) or days after the last day of the current month (for `eom` Net Terms Type) that the invoice will become past due. For any value, an additional 24 hours is added to ensure the customer has the entire last day to make payment before becoming past due. For example: If an invoice is due `net 0`, it is due 'On Receipt' and will become past due 24 hours after it's created. If an invoice is due `net 30`, it will become past due at 31 days exactly. If an invoice is due `eom 30`, it will become past due 31 days from the last day of the current month. When `eom` Net Terms Type is passed, the value for `Net Terms` is restricted to `0, 15, 30, 45, 60, or 90`. For more information please visit our docs page (https://docs.recurly.com/docs/manual-payments#section-collection-terms)
|
35
35
|
define_attribute :net_terms, Integer
|
36
36
|
|
37
|
+
# @!attribute net_terms_type
|
38
|
+
# @return [String] Optionally supplied string that may be either `net` or `eom` (end-of-month). When `net`, an invoice becomes past due the specified number of `Net Terms` days from the current date. When `eom` an invoice becomes past due the specified number of `Net Terms` days from the last day of the current month. This field is only available when the EOM Net Terms feature is enabled.
|
39
|
+
define_attribute :net_terms_type, String
|
40
|
+
|
37
41
|
# @!attribute next_bill_date
|
38
42
|
# @return [DateTime] If present, this sets the date the subscription's next billing period will start (`current_period_ends_at`). This can be used to align the subscription’s billing to a specific day of the month. For a subscription in a trial period, this will change when the trial expires. This parameter is useful for postponement of a subscription to change its billing date without proration.
|
39
43
|
define_attribute :next_bill_date, DateTime
|
@@ -83,9 +83,13 @@ module Recurly
|
|
83
83
|
define_attribute :line_items, Array, { :item_type => :LineItem }
|
84
84
|
|
85
85
|
# @!attribute net_terms
|
86
|
-
# @return [Integer] Integer representing the number of days after
|
86
|
+
# @return [Integer] Integer paired with `Net Terms Type` and representing the number of days past the current date (for `net` Net Terms Type) or days after the last day of the current month (for `eom` Net Terms Type) that the invoice will become past due. For any value, an additional 24 hours is added to ensure the customer has the entire last day to make payment before becoming past due. For example: If an invoice is due `net 0`, it is due 'On Receipt' and will become past due 24 hours after it's created. If an invoice is due `net 30`, it will become past due at 31 days exactly. If an invoice is due `eom 30`, it will become past due 31 days from the last day of the current month. When `eom` Net Terms Type is passed, the value for `Net Terms` is restricted to `0, 15, 30, 45, 60, or 90`. For more information please visit our docs page (https://docs.recurly.com/docs/manual-payments#section-collection-terms)
|
87
87
|
define_attribute :net_terms, Integer
|
88
88
|
|
89
|
+
# @!attribute net_terms_type
|
90
|
+
# @return [String] Optionally supplied string that may be either `net` or `eom` (end-of-month). When `net`, an invoice becomes past due the specified number of `Net Terms` days from the current date. When `eom` an invoice becomes past due the specified number of `Net Terms` days from the last day of the current month. This field is only available when the EOM Net Terms feature is enabled.
|
91
|
+
define_attribute :net_terms_type, String
|
92
|
+
|
89
93
|
# @!attribute number
|
90
94
|
# @return [String] If VAT taxation and the Country Invoice Sequencing feature are enabled, invoices will have country-specific invoice numbers for invoices billed to EU countries (ex: FR1001). Non-EU invoices will continue to use the site-level invoice number sequence.
|
91
95
|
define_attribute :number, String
|
@@ -6,6 +6,10 @@ module Recurly
|
|
6
6
|
module Resources
|
7
7
|
class InvoiceMini < Resource
|
8
8
|
|
9
|
+
# @!attribute business_entity_id
|
10
|
+
# @return [String] Unique ID to identify the business entity assigned to the invoice. Available when the `Multiple Business Entities` feature is enabled.
|
11
|
+
define_attribute :business_entity_id, String
|
12
|
+
|
9
13
|
# @!attribute id
|
10
14
|
# @return [String] Invoice ID
|
11
15
|
define_attribute :id, String
|
@@ -103,9 +103,13 @@ module Recurly
|
|
103
103
|
define_attribute :id, String
|
104
104
|
|
105
105
|
# @!attribute net_terms
|
106
|
-
# @return [Integer] Integer representing the number of days after
|
106
|
+
# @return [Integer] Integer paired with `Net Terms Type` and representing the number of days past the current date (for `net` Net Terms Type) or days after the last day of the current month (for `eom` Net Terms Type) that the invoice will become past due. For any value, an additional 24 hours is added to ensure the customer has the entire last day to make payment before becoming past due. For example: If an invoice is due `net 0`, it is due 'On Receipt' and will become past due 24 hours after it's created. If an invoice is due `net 30`, it will become past due at 31 days exactly. If an invoice is due `eom 30`, it will become past due 31 days from the last day of the current month. When `eom` Net Terms Type is passed, the value for `Net Terms` is restricted to `0, 15, 30, 45, 60, or 90`. For more information please visit our docs page (https://docs.recurly.com/docs/manual-payments#section-collection-terms)
|
107
107
|
define_attribute :net_terms, Integer
|
108
108
|
|
109
|
+
# @!attribute net_terms_type
|
110
|
+
# @return [String] Optionally supplied string that may be either `net` or `eom` (end-of-month). When `net`, an invoice becomes past due the specified number of `Net Terms` days from the current date. When `eom` an invoice becomes past due the specified number of `Net Terms` days from the last day of the current month. This field is only available when the EOM Net Terms feature is enabled.
|
111
|
+
define_attribute :net_terms_type, String
|
112
|
+
|
109
113
|
# @!attribute object
|
110
114
|
# @return [String] Object type
|
111
115
|
define_attribute :object, String
|
@@ -6,6 +6,10 @@ module Recurly
|
|
6
6
|
module Resources
|
7
7
|
class SubscriptionRampIntervalResponse < Resource
|
8
8
|
|
9
|
+
# @!attribute ending_on
|
10
|
+
# @return [DateTime] Date the ramp interval ends
|
11
|
+
define_attribute :ending_on, DateTime
|
12
|
+
|
9
13
|
# @!attribute remaining_billing_cycles
|
10
14
|
# @return [Integer] Represents how many billing cycles are left in a ramp interval.
|
11
15
|
define_attribute :remaining_billing_cycles, Integer
|
@@ -14,6 +18,10 @@ module Recurly
|
|
14
18
|
# @return [Integer] Represents the billing cycle where a ramp interval starts.
|
15
19
|
define_attribute :starting_billing_cycle, Integer
|
16
20
|
|
21
|
+
# @!attribute starting_on
|
22
|
+
# @return [DateTime] Date the ramp interval starts
|
23
|
+
define_attribute :starting_on, DateTime
|
24
|
+
|
17
25
|
# @!attribute unit_amount
|
18
26
|
# @return [Float] Represents the price for the ramp interval.
|
19
27
|
define_attribute :unit_amount, Float
|
data/lib/recurly/version.rb
CHANGED
data/openapi/api.yaml
CHANGED
@@ -15202,7 +15202,7 @@ paths:
|
|
15202
15202
|
|
15203
15203
|
Use for **Adyen HPP** and **Online Banking** transaction requests.
|
15204
15204
|
This runs the validations but not the transactions.
|
15205
|
-
The API request allows the inclusion of
|
15205
|
+
The API request allows the inclusion of the following field: **external_hpp_type** with `'adyen'` in the **billing_info** object.
|
15206
15206
|
|
15207
15207
|
For additional information regarding shipping fees, please see https://docs.recurly.com/docs/shipping
|
15208
15208
|
|
@@ -18291,6 +18291,7 @@ components:
|
|
18291
18291
|
"$ref": "#/components/schemas/ExternalHppTypeEnum"
|
18292
18292
|
online_banking_payment_type:
|
18293
18293
|
"$ref": "#/components/schemas/OnlineBankingPaymentTypeEnum"
|
18294
|
+
deprecated: true
|
18294
18295
|
card_type:
|
18295
18296
|
"$ref": "#/components/schemas/CardTypeEnum"
|
18296
18297
|
BillingInfoVerify:
|
@@ -19332,13 +19333,24 @@ components:
|
|
19332
19333
|
net_terms:
|
19333
19334
|
type: integer
|
19334
19335
|
title: Net terms
|
19335
|
-
description:
|
19336
|
-
|
19337
|
-
|
19338
|
-
|
19339
|
-
|
19336
|
+
description: |-
|
19337
|
+
Integer paired with `Net Terms Type` and representing the number
|
19338
|
+
of days past the current date (for `net` Net Terms Type) or days after
|
19339
|
+
the last day of the current month (for `eom` Net Terms Type) that the
|
19340
|
+
invoice will become past due. For any value, an additional 24 hours is
|
19341
|
+
added to ensure the customer has the entire last day to make payment before
|
19342
|
+
becoming past due. For example:
|
19343
|
+
|
19344
|
+
If an invoice is due `net 0`, it is due 'On Receipt' and will become past due 24 hours after it's created.
|
19345
|
+
If an invoice is due `net 30`, it will become past due at 31 days exactly.
|
19346
|
+
If an invoice is due `eom 30`, it will become past due 31 days from the last day of the current month.
|
19347
|
+
|
19348
|
+
When `eom` Net Terms Type is passed, the value for `Net Terms` is restricted to `0, 15, 30, 45, 60, or 90`.
|
19349
|
+
For more information please visit our docs page (https://docs.recurly.com/docs/manual-payments#section-collection-terms)
|
19340
19350
|
minimum: 0
|
19341
19351
|
default: 0
|
19352
|
+
net_terms_type:
|
19353
|
+
"$ref": "#/components/schemas/NetTermsTypeEnum"
|
19342
19354
|
address:
|
19343
19355
|
"$ref": "#/components/schemas/InvoiceAddress"
|
19344
19356
|
shipping_address:
|
@@ -19516,13 +19528,24 @@ components:
|
|
19516
19528
|
net_terms:
|
19517
19529
|
type: integer
|
19518
19530
|
title: Net terms
|
19519
|
-
description:
|
19520
|
-
|
19521
|
-
|
19522
|
-
|
19523
|
-
|
19524
|
-
|
19531
|
+
description: |-
|
19532
|
+
Integer paired with `Net Terms Type` and representing the number
|
19533
|
+
of days past the current date (for `net` Net Terms Type) or days after
|
19534
|
+
the last day of the current month (for `eom` Net Terms Type) that the
|
19535
|
+
invoice will become past due. For any value, an additional 24 hours is
|
19536
|
+
added to ensure the customer has the entire last day to make payment before
|
19537
|
+
becoming past due. For example:
|
19538
|
+
|
19539
|
+
If an invoice is due `net 0`, it is due 'On Receipt' and will become past due 24 hours after it's created.
|
19540
|
+
If an invoice is due `net 30`, it will become past due at 31 days exactly.
|
19541
|
+
If an invoice is due `eom 30`, it will become past due 31 days from the last day of the current month.
|
19542
|
+
|
19543
|
+
When `eom` Net Terms Type is passed, the value for `Net Terms` is restricted to `0, 15, 30, 45, 60, or 90`.
|
19544
|
+
For more information please visit our docs page (https://docs.recurly.com/docs/manual-payments#section-collection-terms)
|
19525
19545
|
minimum: 0
|
19546
|
+
default: 0
|
19547
|
+
net_terms_type:
|
19548
|
+
"$ref": "#/components/schemas/NetTermsTypeEnum"
|
19526
19549
|
po_number:
|
19527
19550
|
type: string
|
19528
19551
|
title: Purchase order number
|
@@ -19629,6 +19652,11 @@ components:
|
|
19629
19652
|
number:
|
19630
19653
|
type: string
|
19631
19654
|
title: Invoice number
|
19655
|
+
business_entity_id:
|
19656
|
+
type: string
|
19657
|
+
title: Business Entity ID
|
19658
|
+
description: Unique ID to identify the business entity assigned to the invoice.
|
19659
|
+
Available when the `Multiple Business Entities` feature is enabled.
|
19632
19660
|
type:
|
19633
19661
|
title: Invoice type
|
19634
19662
|
"$ref": "#/components/schemas/InvoiceTypeEnum"
|
@@ -21600,13 +21628,24 @@ components:
|
|
21600
21628
|
net_terms:
|
21601
21629
|
type: integer
|
21602
21630
|
title: Net terms
|
21603
|
-
description:
|
21604
|
-
|
21605
|
-
|
21606
|
-
|
21607
|
-
|
21631
|
+
description: |-
|
21632
|
+
Integer paired with `Net Terms Type` and representing the number
|
21633
|
+
of days past the current date (for `net` Net Terms Type) or days after
|
21634
|
+
the last day of the current month (for `eom` Net Terms Type) that the
|
21635
|
+
invoice will become past due. For any value, an additional 24 hours is
|
21636
|
+
added to ensure the customer has the entire last day to make payment before
|
21637
|
+
becoming past due. For example:
|
21638
|
+
|
21639
|
+
If an invoice is due `net 0`, it is due 'On Receipt' and will become past due 24 hours after it's created.
|
21640
|
+
If an invoice is due `net 30`, it will become past due at 31 days exactly.
|
21641
|
+
If an invoice is due `eom 30`, it will become past due 31 days from the last day of the current month.
|
21642
|
+
|
21643
|
+
When `eom` Net Terms Type is passed, the value for `Net Terms` is restricted to `0, 15, 30, 45, 60, or 90`.
|
21644
|
+
For more information please visit our docs page (https://docs.recurly.com/docs/manual-payments#section-collection-terms)
|
21608
21645
|
minimum: 0
|
21609
21646
|
default: 0
|
21647
|
+
net_terms_type:
|
21648
|
+
"$ref": "#/components/schemas/NetTermsTypeEnum"
|
21610
21649
|
terms_and_conditions:
|
21611
21650
|
type: string
|
21612
21651
|
title: Terms and conditions
|
@@ -22162,13 +22201,17 @@ components:
|
|
22162
22201
|
net_terms:
|
22163
22202
|
type: integer
|
22164
22203
|
title: Net terms
|
22165
|
-
description:
|
22166
|
-
|
22167
|
-
|
22168
|
-
|
22169
|
-
|
22204
|
+
description: |-
|
22205
|
+
Integer normally paired with `Net Terms Type` and representing the number of days past
|
22206
|
+
the current date (for `net` Net Terms Type) or days after the last day of the current
|
22207
|
+
month (for `eom` Net Terms Type) that the invoice will become past due. During a subscription
|
22208
|
+
change, it's not necessary to provide both the `Net Terms Type` and `Net Terms` parameters.
|
22209
|
+
|
22210
|
+
For more information please visit our docs page (https://docs.recurly.com/docs/manual-payments#section-collection-terms)
|
22170
22211
|
minimum: 0
|
22171
22212
|
default: 0
|
22213
|
+
net_terms_type:
|
22214
|
+
"$ref": "#/components/schemas/NetTermsTypeEnum"
|
22172
22215
|
transaction_type:
|
22173
22216
|
description: An optional type designation for the payment gateway transaction
|
22174
22217
|
created by this request. Supports 'moto' value, which is the acronym for
|
@@ -22373,13 +22416,24 @@ components:
|
|
22373
22416
|
net_terms:
|
22374
22417
|
type: integer
|
22375
22418
|
title: Net terms
|
22376
|
-
description:
|
22377
|
-
|
22378
|
-
|
22379
|
-
|
22380
|
-
|
22419
|
+
description: |-
|
22420
|
+
Integer paired with `Net Terms Type` and representing the number
|
22421
|
+
of days past the current date (for `net` Net Terms Type) or days after
|
22422
|
+
the last day of the current month (for `eom` Net Terms Type) that the
|
22423
|
+
invoice will become past due. For any value, an additional 24 hours is
|
22424
|
+
added to ensure the customer has the entire last day to make payment before
|
22425
|
+
becoming past due. For example:
|
22426
|
+
|
22427
|
+
If an invoice is due `net 0`, it is due 'On Receipt' and will become past due 24 hours after it's created.
|
22428
|
+
If an invoice is due `net 30`, it will become past due at 31 days exactly.
|
22429
|
+
If an invoice is due `eom 30`, it will become past due 31 days from the last day of the current month.
|
22430
|
+
|
22431
|
+
When `eom` Net Terms Type is passed, the value for `Net Terms` is restricted to `0, 15, 30, 45, 60, or 90`.
|
22432
|
+
For more information please visit our docs page (https://docs.recurly.com/docs/manual-payments#section-collection-terms)
|
22381
22433
|
minimum: 0
|
22382
22434
|
default: 0
|
22435
|
+
net_terms_type:
|
22436
|
+
"$ref": "#/components/schemas/NetTermsTypeEnum"
|
22383
22437
|
transaction_type:
|
22384
22438
|
description: An optional type designation for the payment gateway transaction
|
22385
22439
|
created by this request. Supports 'moto' value, which is the acronym for
|
@@ -22549,13 +22603,24 @@ components:
|
|
22549
22603
|
net_terms:
|
22550
22604
|
type: integer
|
22551
22605
|
title: Terms that the subscription is due on
|
22552
|
-
description:
|
22553
|
-
|
22554
|
-
|
22555
|
-
|
22556
|
-
|
22606
|
+
description: |-
|
22607
|
+
Integer paired with `Net Terms Type` and representing the number
|
22608
|
+
of days past the current date (for `net` Net Terms Type) or days after
|
22609
|
+
the last day of the current month (for `eom` Net Terms Type) that the
|
22610
|
+
invoice will become past due. For any value, an additional 24 hours is
|
22611
|
+
added to ensure the customer has the entire last day to make payment before
|
22612
|
+
becoming past due. For example:
|
22613
|
+
|
22614
|
+
If an invoice is due `net 0`, it is due 'On Receipt' and will become past due 24 hours after it's created.
|
22615
|
+
If an invoice is due `net 30`, it will become past due at 31 days exactly.
|
22616
|
+
If an invoice is due `eom 30`, it will become past due 31 days from the last day of the current month.
|
22617
|
+
|
22618
|
+
When `eom` Net Terms Type is passed, the value for `Net Terms` is restricted to `0, 15, 30, 45, 60, or 90`.
|
22619
|
+
For more information please visit our docs page (https://docs.recurly.com/docs/manual-payments#section-collection-terms)
|
22557
22620
|
minimum: 0
|
22558
22621
|
default: 0
|
22622
|
+
net_terms_type:
|
22623
|
+
"$ref": "#/components/schemas/NetTermsTypeEnum"
|
22559
22624
|
gateway_code:
|
22560
22625
|
type: string
|
22561
22626
|
title: Gateway Code
|
@@ -22694,6 +22759,14 @@ components:
|
|
22694
22759
|
remaining_billing_cycles:
|
22695
22760
|
type: integer
|
22696
22761
|
description: Represents how many billing cycles are left in a ramp interval.
|
22762
|
+
starting_on:
|
22763
|
+
type: string
|
22764
|
+
format: date-time
|
22765
|
+
title: Date the ramp interval starts
|
22766
|
+
ending_on:
|
22767
|
+
type: string
|
22768
|
+
format: date-time
|
22769
|
+
title: Date the ramp interval ends
|
22697
22770
|
unit_amount:
|
22698
22771
|
type: number
|
22699
22772
|
format: float
|
@@ -23253,13 +23326,24 @@ components:
|
|
23253
23326
|
net_terms:
|
23254
23327
|
type: integer
|
23255
23328
|
title: Net terms
|
23256
|
-
description:
|
23257
|
-
|
23258
|
-
|
23259
|
-
|
23260
|
-
|
23329
|
+
description: |-
|
23330
|
+
Integer paired with `Net Terms Type` and representing the number
|
23331
|
+
of days past the current date (for `net` Net Terms Type) or days after
|
23332
|
+
the last day of the current month (for `eom` Net Terms Type) that the
|
23333
|
+
invoice will become past due. For any value, an additional 24 hours is
|
23334
|
+
added to ensure the customer has the entire last day to make payment before
|
23335
|
+
becoming past due. For example:
|
23336
|
+
|
23337
|
+
If an invoice is due `net 0`, it is due 'On Receipt' and will become past due 24 hours after it's created.
|
23338
|
+
If an invoice is due `net 30`, it will become past due at 31 days exactly.
|
23339
|
+
If an invoice is due `eom 30`, it will become past due 31 days from the last day of the current month.
|
23340
|
+
|
23341
|
+
When `eom` Net Terms Type is passed, the value for `Net Terms` is restricted to `0, 15, 30, 45, 60, or 90`.
|
23342
|
+
For more information please visit our docs page (https://docs.recurly.com/docs/manual-payments#section-collection-terms)
|
23261
23343
|
minimum: 0
|
23262
23344
|
default: 0
|
23345
|
+
net_terms_type:
|
23346
|
+
"$ref": "#/components/schemas/NetTermsTypeEnum"
|
23263
23347
|
terms_and_conditions:
|
23264
23348
|
type: string
|
23265
23349
|
title: Terms and conditions
|
@@ -24798,6 +24882,19 @@ components:
|
|
24798
24882
|
- at_range_start
|
24799
24883
|
- evenly
|
24800
24884
|
- never
|
24885
|
+
NetTermsTypeEnum:
|
24886
|
+
type: string
|
24887
|
+
title: Net Terms Type
|
24888
|
+
description: |
|
24889
|
+
Optionally supplied string that may be either `net` or `eom` (end-of-month).
|
24890
|
+
When `net`, an invoice becomes past due the specified number of `Net Terms` days from the current date.
|
24891
|
+
When `eom` an invoice becomes past due the specified number of `Net Terms` days from the last day of the current month.
|
24892
|
+
|
24893
|
+
This field is only available when the EOM Net Terms feature is enabled.
|
24894
|
+
enum:
|
24895
|
+
- net
|
24896
|
+
- eom
|
24897
|
+
default: net
|
24801
24898
|
InvoiceTypeEnum:
|
24802
24899
|
type: string
|
24803
24900
|
enum:
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: recurly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.40.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Recurly
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-07-
|
11
|
+
date: 2023-07-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -345,7 +345,7 @@ metadata:
|
|
345
345
|
changelog_uri: https://github.com/recurly/recurly-client-ruby/blob/master/CHANGELOG.md
|
346
346
|
documentation_uri: https://recurly.github.io/recurly-client-ruby/
|
347
347
|
homepage_uri: https://github.com/recurly/recurly-client-ruby
|
348
|
-
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.
|
348
|
+
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.40.0
|
349
349
|
post_install_message:
|
350
350
|
rdoc_options: []
|
351
351
|
require_paths:
|