factpulse 2.0.39 → 2.0.40

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: 81f2bf81e331fa4ea5a6d971c94d0db47db63edead3adaad5df05b351627dfb6
4
- data.tar.gz: e19b12b42adc2ccf2351e59074e9eba039ec782e0e2c56e8ad395a9655c1b3ac
3
+ metadata.gz: 73b8f20de1bcafa931f52ff0f9e1b4f0dfdf596a59615b9041bcc4079c255a0d
4
+ data.tar.gz: 070f5e5b0894a9d97eeee0b58deabf449c7b91fe2624aa6831bda10ab1b11b55
5
5
  SHA512:
6
- metadata.gz: c6adc7145c9c71c2a8cfb898cadc91a47d9f16bf859c9697a9d3e8c86e8b5365576e48733f7102e77974cf50a78fac600fd9a14853776e65b3215663b9706740
7
- data.tar.gz: 9c0b6696af75fef45ecf94e81fb3dced2d415c9be7e881cf566c1262831e618b94232187a81a64dfd90e2573d04e57e579b3bd075b9bdcea0dba412bfc4ee0f9
6
+ metadata.gz: 7486d8af1370c51727895bfc275e3059c79e520545abc721ce3e7372ad52cb09f3bc3ffd22c6574e53ffc819a759326d557d862bd2a5010ea838181aff22e306
7
+ data.tar.gz: db762185b91fe8c75244d4ef8731fbfd1c4f8f246e70203db864a09ca51aa0b48aac4d42135feaad9d141ae5ae7d134a071f530e8e239aed27bac36fa306fb77
data/CHANGELOG.md CHANGED
@@ -7,7 +7,7 @@ et ce projet adhère au [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
- ## [2.0.39] - 2025-12-10
10
+ ## [2.0.40] - 2025-12-10
11
11
 
12
12
  ### Added
13
13
  - Version initiale du SDK ruby
@@ -24,5 +24,5 @@ et ce projet adhère au [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
24
24
  - Guide d'authentification JWT
25
25
  - Configuration avancée (timeout, proxy, debug)
26
26
 
27
- [Unreleased]: https://github.com/factpulse/sdk-ruby/compare/v2.0.39...HEAD
28
- [2.0.39]: https://github.com/factpulse/sdk-ruby/releases/tag/v2.0.39
27
+ [Unreleased]: https://github.com/factpulse/sdk-ruby/compare/v2.0.40...HEAD
28
+ [2.0.40]: https://github.com/factpulse/sdk-ruby/releases/tag/v2.0.40
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- factpulse (2.0.39)
4
+ factpulse (2.0.40)
5
5
  typhoeus (~> 1.0, >= 1.0.1)
6
6
 
7
7
  GEM
@@ -15,25 +15,25 @@ require 'time'
15
15
 
16
16
  module FactPulse
17
17
  class TypeFacture
18
- N380 = "380".freeze
19
- N389 = "389".freeze
20
- N393 = "393".freeze
21
- N501 = "501".freeze
22
- N386 = "386".freeze
23
- N500 = "500".freeze
24
- N384 = "384".freeze
25
- N471 = "471".freeze
26
- N472 = "472".freeze
27
- N473 = "473".freeze
28
- N381 = "381".freeze
29
- N261 = "261".freeze
30
- N262 = "262".freeze
31
- N396 = "396".freeze
32
- N502 = "502".freeze
33
- N503 = "503".freeze
18
+ FACTURE = "380".freeze
19
+ FACTURE_AUTOFACTUREE = "389".freeze
20
+ FACTURE_AFFACTUREE = "393".freeze
21
+ FACTURE_AUTOFACTUREE_AFFACTUREE = "501".freeze
22
+ FACTURE_ACOMPTE = "386".freeze
23
+ FACTURE_ACOMPTE_AUTOFACTUREE = "500".freeze
24
+ FACTURE_RECTIFICATIVE = "384".freeze
25
+ FACTURE_RECTIFICATIVE_AUTOFACTUREE = "471".freeze
26
+ FACTURE_RECTIFICATIVE_AFFACTUREE = "472".freeze
27
+ FACTURE_RECTIFICATIVE_AUTOFACTUREE_AFFACTUREE = "473".freeze
28
+ AVOIR = "381".freeze
29
+ AVOIR_AUTOFACTURE = "261".freeze
30
+ AVOIR_REMISE_GLOBALE = "262".freeze
31
+ AVOIR_AFFACTURE = "396".freeze
32
+ AVOIR_AUTOFACTURE_AFFACTURE = "502".freeze
33
+ AVOIR_ACOMPTE = "503".freeze
34
34
 
35
35
  def self.all_vars
36
- @all_vars ||= [N380, N389, N393, N501, N386, N500, N384, N471, N472, N473, N381, N261, N262, N396, N502, N503].freeze
36
+ @all_vars ||= [FACTURE, FACTURE_AUTOFACTUREE, FACTURE_AFFACTUREE, FACTURE_AUTOFACTUREE_AFFACTUREE, FACTURE_ACOMPTE, FACTURE_ACOMPTE_AUTOFACTUREE, FACTURE_RECTIFICATIVE, FACTURE_RECTIFICATIVE_AUTOFACTUREE, FACTURE_RECTIFICATIVE_AFFACTUREE, FACTURE_RECTIFICATIVE_AUTOFACTUREE_AFFACTUREE, AVOIR, AVOIR_AUTOFACTURE, AVOIR_REMISE_GLOBALE, AVOIR_AFFACTURE, AVOIR_AUTOFACTURE_AFFACTURE, AVOIR_ACOMPTE].freeze
37
37
  end
38
38
 
39
39
  # Builds the enum from string
@@ -11,5 +11,5 @@ Generator version: 7.18.0-SNAPSHOT
11
11
  =end
12
12
 
13
13
  module FactPulse
14
- VERSION = '2.0.39'
14
+ VERSION = '2.0.40'
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: factpulse
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.39
4
+ version: 2.0.40
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator