lago-ruby-client 1.1.0 → 1.3.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: aefada84a38ded63a08d480261d1b333face285e39b67bc79bbc1e3ef512c4b5
4
- data.tar.gz: 2a12a66c34d705ab1075bb71b0ac41f6c4ef2c03a9892285a7962bc461e3cc3c
3
+ metadata.gz: db9100b72418369e5619896f01ef8075881047bdc18dcf664f1deaabff1febcb
4
+ data.tar.gz: b96aa70520b76aa5fea75894e1e72e357c385eca7b0bdc526193d5bc998d59d5
5
5
  SHA512:
6
- metadata.gz: e11b90e9b22c2bef30f67b3351ddcc5214747454a7d877e3ac8d47a74f5cabbbf9bb5a4dbb8e9f7649770e99516c207553c462d0163f917e8f83a89d2d3ea88d
7
- data.tar.gz: ef54f59327f878e5fcf3a4ddea14a864aa20da674489d4145861a90551b8b77d9c3fb729078ea1a709be0fc0061ad2efa68df9e9fe4fe9c261e8efbdb32163f8
6
+ metadata.gz: '08ffbe2eb2aec60f3f6c00d9af57d5340c39e0c88eee12dba5065b76d3a0636ab295ede1597a24fe9a013b57105855e15e729701e14def665c9ee2d570b52a9c'
7
+ data.tar.gz: dea0ad70155fbec7437f8c1b7c8313cf5f0bacc6381cf0887a6d3e384610941e99a75bde27e62ddc1a8e0e43e5ebabf16239ed481d0ae90f797f7205c83ebcd0
@@ -23,6 +23,7 @@ module Lago
23
23
  weighted_interval: params[:weighted_interval],
24
24
  field_name: params[:field_name],
25
25
  group: params[:group],
26
+ filters: params[:filters],
26
27
  }.compact,
27
28
  }
28
29
  end
@@ -42,6 +42,13 @@ module Lago
42
42
  JSON.parse(response.to_json, object_class: OpenStruct).invoice
43
43
  end
44
44
 
45
+ def lose_dispute(invoice_id)
46
+ path = "/api/v1/invoices/#{invoice_id}/lose_dispute"
47
+ response = connection.put(path, identifier: nil, body: {})
48
+
49
+ JSON.parse(response.to_json, object_class: OpenStruct).invoice
50
+ end
51
+
45
52
  def retry_payment(invoice_id)
46
53
  path = "/api/v1/invoices/#{invoice_id}/retry_payment"
47
54
  response = connection.post({}, path)
@@ -39,7 +39,7 @@ module Lago
39
39
  end
40
40
 
41
41
  def whitelist_minimum_commitment(minimum_commitment)
42
- minimum_commitment.slice(
42
+ minimum_commitment&.slice(
43
43
  :amount_cents,
44
44
  :invoice_display_name,
45
45
  :tax_codes,
@@ -60,6 +60,7 @@ module Lago
60
60
  :min_amount_cents,
61
61
  :properties,
62
62
  :group_properties,
63
+ :filters,
63
64
  :tax_codes,
64
65
  )
65
66
 
@@ -37,8 +37,8 @@ module Lago
37
37
  :lago_id,
38
38
  :paid_credits,
39
39
  :granted_credits,
40
- :rule_type,
41
40
  :threshold_credits,
41
+ :trigger,
42
42
  :interval,
43
43
  )
44
44
 
@@ -24,7 +24,8 @@ module Lago
24
24
  'wallet_transaction' => {
25
25
  wallet_id: params[:wallet_id],
26
26
  paid_credits: params[:paid_credits],
27
- granted_credits: params[:granted_credits]
27
+ granted_credits: params[:granted_credits],
28
+ voided_credits: params[:voided_credits]
28
29
  }.compact
29
30
  }
30
31
  end
data/lib/lago/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Lago
4
- VERSION = '1.1.0'
4
+ VERSION = '1.3.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lago-ruby-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lovro Colic
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-03-26 00:00:00.000000000 Z
11
+ date: 2024-05-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jwt