recurly 4.46.0 → 4.47.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7dd8c1ad69f0c7c5ea813a4f56a25b5dfaf96ee9561e236fd1ec620abe5eefe4
4
- data.tar.gz: 673ac6c57dd16992733535a4938f6838a30da0f496258e0f56a3266ab6ff02d4
3
+ metadata.gz: 03f577facd7a6621f0447b3ed39bcc6975baee55c830b5bf59f84c7ffcfdfa69
4
+ data.tar.gz: b0ae7632c65a12da4eeddecf6d7dbb8509cf930206f847369298db1281836e16
5
5
  SHA512:
6
- metadata.gz: 47be621f579e122d5d5175c8e048114d4f202b294866e9c8b6926060d9886c2c74ffa3436ee2dff26664bd407c1899a4bf587c16c72e03eeec5a516bda5c2a79
7
- data.tar.gz: 9fb5ca4d631dce16fb0ac292a3db39daf16e94a06e82f546d9221aef0252464f11118a5fe701188c7d0bf1d05b595a66a26945e4ca8192ab724a496769250f59
6
+ metadata.gz: '039b5251261b1916402292369e5b86ca39aa3223e39c41593646c0e41f357dc11bc8c748b65554fbedaba3d82dcb9b390fa6b3fca7dc12c69cffbacc85af26c0'
7
+ data.tar.gz: c18e223967b369e1d06a1bd223fb3c55a8892ae8afb4e63de7f3bb351d26ee40a7df712f8ddfe4285e9d1a6554327056881eff6e4fe2773135c3e8973c988a6b
data/.bumpversion.cfg CHANGED
@@ -1,5 +1,5 @@
1
1
  [bumpversion]
2
- current_version = 4.46.0
2
+ current_version = 4.47.0
3
3
  parse = (?P<major>\d+)
4
4
  \.(?P<minor>\d+)
5
5
  \.(?P<patch>\d+)
@@ -1,8 +1,6 @@
1
1
  # Recurly Security and Quality checks
2
2
  #
3
3
  # Customize this file for your project.
4
- # Contact the application security team in slack/security channel for assistance.
5
- # https://coda.io/d/Information-Security_dDTWpZde3Uu/GitHub-Advanced-Security_suXj4#_lu8Xf
6
4
  # https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning#specifying-directories-to-scan
7
5
  name: "Recurly Security Tests"
8
6
  query-filters:
@@ -1,6 +1,4 @@
1
1
  # Managed by Security
2
- # Documentation: https://coda.io/d/Information-Security_dDTWpZde3Uu/GitHub-Advanced-Security_suXj4#_lu8Xf
3
- # Contact us in the security slack channel for concerns
4
2
  name: "Security check - CodeQL"
5
3
 
6
4
  on:
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.47.0](https://github.com/recurly/recurly-client-ruby/tree/4.47.0) (2024-02-20)
4
+
5
+ [Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.46.0...4.47.0)
6
+
7
+
8
+ **Merged Pull Requests**
9
+
10
+ - Add invoice state param for v2021-02-25 [#887](https://github.com/recurly/recurly-client-ruby/pull/887) ([recurly-integrations](https://github.com/recurly-integrations))
11
+ - Remove internal wiki link. [#882](https://github.com/recurly/recurly-client-ruby/pull/882) ([recurly-bearley](https://github.com/recurly-bearley))
12
+
13
+
14
+
3
15
  ## [4.46.0](https://github.com/recurly/recurly-client-ruby/tree/4.46.0) (2024-01-24)
4
16
 
5
17
  [Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.45.0...4.46.0)
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.46'
8
+ gem 'recurly', '~> 4.47'
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.
@@ -863,6 +863,7 @@ module Recurly
863
863
  # * Records are returned in an arbitrary order. Since results are all
864
864
  # returned at once you can sort the records yourself.
865
865
  #
866
+ # :state [String] Invoice state.
866
867
  # :limit [Integer] Limit number of records 1-200.
867
868
  # :order [String] Sort order.
868
869
  # :sort [String] Sort field. You *really* only want to sort by +updated_at+ in ascending
@@ -2347,6 +2348,7 @@ module Recurly
2347
2348
  # * Records are returned in an arbitrary order. Since results are all
2348
2349
  # returned at once you can sort the records yourself.
2349
2350
  #
2351
+ # :state [String] Invoice state.
2350
2352
  # :limit [Integer] Limit number of records 1-200.
2351
2353
  # :order [String] Sort order.
2352
2354
  # :sort [String] Sort field. You *really* only want to sort by +updated_at+ in ascending
@@ -3805,6 +3807,7 @@ module Recurly
3805
3807
  # * Records are returned in an arbitrary order. Since results are all
3806
3808
  # returned at once you can sort the records yourself.
3807
3809
  #
3810
+ # :state [String] Invoice state.
3808
3811
  # :limit [Integer] Limit number of records 1-200.
3809
3812
  # :order [String] Sort order.
3810
3813
  # :sort [String] Sort field. You *really* only want to sort by +updated_at+ in ascending
@@ -4620,6 +4623,7 @@ module Recurly
4620
4623
  # * Records are returned in an arbitrary order. Since results are all
4621
4624
  # returned at once you can sort the records yourself.
4622
4625
  #
4626
+ # :state [String] Invoice state.
4623
4627
  # :limit [Integer] Limit number of records 1-200.
4624
4628
  # :order [String] Sort order.
4625
4629
  # :sort [String] Sort field. You *really* only want to sort by +updated_at+ in ascending
@@ -1,3 +1,3 @@
1
1
  module Recurly
2
- VERSION = "4.46.0"
2
+ VERSION = "4.47.0"
3
3
  end
data/openapi/api.yaml CHANGED
@@ -3521,6 +3521,7 @@ paths:
3521
3521
  parameters:
3522
3522
  - "$ref": "#/components/parameters/account_id"
3523
3523
  - "$ref": "#/components/parameters/ids"
3524
+ - "$ref": "#/components/parameters/invoice_state"
3524
3525
  - "$ref": "#/components/parameters/limit"
3525
3526
  - "$ref": "#/components/parameters/order"
3526
3527
  - "$ref": "#/components/parameters/sort_dates"
@@ -8110,6 +8111,7 @@ paths:
8110
8111
  to learn how to use pagination in the API and Client Libraries.
8111
8112
  parameters:
8112
8113
  - "$ref": "#/components/parameters/ids"
8114
+ - "$ref": "#/components/parameters/invoice_state"
8113
8115
  - "$ref": "#/components/parameters/limit"
8114
8116
  - "$ref": "#/components/parameters/order"
8115
8117
  - "$ref": "#/components/parameters/sort_dates"
@@ -13909,6 +13911,7 @@ paths:
13909
13911
  parameters:
13910
13912
  - "$ref": "#/components/parameters/subscription_id"
13911
13913
  - "$ref": "#/components/parameters/ids"
13914
+ - "$ref": "#/components/parameters/invoice_state"
13912
13915
  - "$ref": "#/components/parameters/limit"
13913
13916
  - "$ref": "#/components/parameters/order"
13914
13917
  - "$ref": "#/components/parameters/sort_dates"
@@ -16282,6 +16285,7 @@ paths:
16282
16285
  parameters:
16283
16286
  - "$ref": "#/components/parameters/business_entity_id"
16284
16287
  - "$ref": "#/components/parameters/ids"
16288
+ - "$ref": "#/components/parameters/invoice_state"
16285
16289
  - "$ref": "#/components/parameters/limit"
16286
16290
  - "$ref": "#/components/parameters/order"
16287
16291
  - "$ref": "#/components/parameters/sort_dates"
@@ -16455,6 +16459,12 @@ components:
16455
16459
  required: true
16456
16460
  schema:
16457
16461
  type: string
16462
+ invoice_state:
16463
+ name: state
16464
+ in: query
16465
+ description: Invoice state.
16466
+ schema:
16467
+ "$ref": "#/components/schemas/InvoiceStateQueryParamEnum"
16458
16468
  measured_unit_id:
16459
16469
  name: measured_unit_id
16460
16470
  in: path
@@ -21069,7 +21079,6 @@ components:
21069
21079
  title: Ending quantity
21070
21080
  minimum: 1
21071
21081
  maximum: 999999999
21072
- default:
21073
21082
  description: Ending quantity for the tier. This represents a unit amount
21074
21083
  for unit-priced add ons. Must be left empty if it is the final tier.
21075
21084
  usage_percentage:
@@ -21106,7 +21115,6 @@ components:
21106
21115
  title: Ending amount
21107
21116
  minimum: 0.01
21108
21117
  maximum: 9999999999999.99
21109
- default:
21110
21118
  description: Ending amount for the tier. Allows up to 2 decimal places.
21111
21119
  Must be left empty if it is the final tier.
21112
21120
  usage_percentage:
@@ -22070,7 +22078,6 @@ components:
22070
22078
  title: Ending quantity
22071
22079
  minimum: 1
22072
22080
  maximum: 999999999
22073
- default:
22074
22081
  description: Ending quantity for the tier. This represents a unit amount
22075
22082
  for unit-priced add ons. Must be left empty if it is the final tier.
22076
22083
  unit_amount:
@@ -22103,7 +22110,6 @@ components:
22103
22110
  title: Ending amount
22104
22111
  minimum: 1
22105
22112
  maximum: 9999999999999.99
22106
- default:
22107
22113
  description: Ending amount for the tier. Allows up to 2 decimal places.
22108
22114
  Must be left empty if it is the final tier.
22109
22115
  usage_percentage:
@@ -25193,6 +25199,7 @@ components:
25193
25199
  - write_off
25194
25200
  InvoiceStateEnum:
25195
25201
  type: string
25202
+ default: all
25196
25203
  enum:
25197
25204
  - open
25198
25205
  - pending
@@ -25202,6 +25209,14 @@ components:
25202
25209
  - closed
25203
25210
  - failed
25204
25211
  - voided
25212
+ InvoiceStateQueryParamEnum:
25213
+ type: string
25214
+ default: all
25215
+ enum:
25216
+ - pending
25217
+ - past_due
25218
+ - paid
25219
+ - failed
25205
25220
  CollectionMethodEnum:
25206
25221
  type: string
25207
25222
  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.46.0
4
+ version: 4.47.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Recurly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-24 00:00:00.000000000 Z
11
+ date: 2024-02-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -350,7 +350,7 @@ metadata:
350
350
  changelog_uri: https://github.com/recurly/recurly-client-ruby/blob/master/CHANGELOG.md
351
351
  documentation_uri: https://recurly.github.io/recurly-client-ruby/
352
352
  homepage_uri: https://github.com/recurly/recurly-client-ruby
353
- source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.46.0
353
+ source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.47.0
354
354
  post_install_message:
355
355
  rdoc_options: []
356
356
  require_paths: