pactas_itero 0.9.0 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d9611470052cfaaefbde037941f3446b6f0a068c1fba5e9f25ad1a6f696d26c8
4
- data.tar.gz: 3cc60ac8cd8fe564d390690a092db730ba408fa15aea61fb06d8e376590971cd
3
+ metadata.gz: 5fbb0ca27c908c6c314736f381bc9a9be5b71a82d05ea94418d54be454c0e9c3
4
+ data.tar.gz: 2a76b001bf9b44da20629e3d1908e955851ccb6bc94e76a49ff88a8ea0086e34
5
5
  SHA512:
6
- metadata.gz: 816bd5c740e45d95ddbfeaacb064aae067fbebd65fd24208d67c6637b0c9d4d123e68a8c07b0c25c291a57dc400c1a3d6d964c634e9619688c6537db984bfd3a
7
- data.tar.gz: b7cd30423efa883c70e4f4c2318202001ed9919453975dc16698ed262fbfe5aa11e3dd9b05e85869e6aba95755f667545a30a1b496697be6f61ccd15150b4495
6
+ metadata.gz: ee0174bf46bd0aa5795ee201df9ebdeaaa9e5278920b589bbc7a14d94924aef603a44fc55d23ca424a1dd059dc38ce997c127959940460afb1a58da77453bd75
7
+ data.tar.gz: dcf54f9ca1931a2eb335a4f71117d6cfc6d9940d090345126841c03e0b65f005a55356930e02b181c3b647b33409eca924a246ad17eb958b86403b35a28b101a
data/CHANGELOG.md CHANGED
@@ -11,6 +11,16 @@
11
11
 
12
12
  ### Security
13
13
 
14
+ ## [1.0.0] - 2026-07-15
15
+
16
+ ### Added
17
+
18
+ - Add trigger invoice endpoint (https://github.com/shipcloud/billwerk/pull/158)
19
+
20
+ ### Removed
21
+
22
+ - Removed CodeClimate from CircleCI
23
+
14
24
  ## [0.9.0] - 2023-11-28
15
25
 
16
26
  ### Added
data/README.md CHANGED
@@ -1,6 +1,4 @@
1
1
  [![CircleCI](https://circleci.com/gh/shipcloud/billwerk/tree/master.svg?style=svg)](https://circleci.com/gh/shipcloud/billwerk/tree/master)
2
- [![Maintainability](https://api.codeclimate.com/v1/badges/cfbdd07da1f178c7fa9a/maintainability)](https://codeclimate.com/github/shipcloud/billwerk/maintainability)
3
- [![Test Coverage](https://api.codeclimate.com/v1/badges/cfbdd07da1f178c7fa9a/test_coverage)](https://codeclimate.com/github/shipcloud/billwerk/test_coverage)
4
2
 
5
3
  # PactasItero
6
4
 
@@ -43,6 +43,11 @@ module PactasItero
43
43
  post "api/v1/contracts/#{contract_id}/end", options
44
44
  end
45
45
 
46
+ def bill_contract(contract_id, options = {})
47
+ options = options.camelize_keys
48
+ post "api/v1/contracts/#{contract_id}/bill", options
49
+ end
50
+
46
51
  def contract_metered_usage(contract_id, options = {})
47
52
  options = options.camelize_keys
48
53
  post "api/v1/contracts/#{contract_id}/usage", options
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PactasItero
4
- VERSION = "0.9.0"
4
+ VERSION = "1.0.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pactas_itero
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simon Fröhler
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2023-11-28 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: faraday_middleware
@@ -159,7 +158,6 @@ licenses:
159
158
  - MIT
160
159
  metadata:
161
160
  rubygems_mfa_required: 'true'
162
- post_install_message:
163
161
  rdoc_options: []
164
162
  require_paths:
165
163
  - lib
@@ -174,8 +172,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
174
172
  - !ruby/object:Gem::Version
175
173
  version: '0'
176
174
  requirements: []
177
- rubygems_version: 3.4.10
178
- signing_key:
175
+ rubygems_version: 3.6.7
179
176
  specification_version: 4
180
177
  summary: pactas_itero provides a client mapping for accessing the Pactas Itero API.
181
178
  test_files: []