mindee 4.12.0 → 4.13.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.
Files changed (102) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -0
  3. data/.rubocop.yml +1 -1
  4. data/CHANGELOG.md +13 -0
  5. data/docs/code_samples/v2_classification.txt +30 -0
  6. data/docs/code_samples/v2_crop.txt +30 -0
  7. data/docs/code_samples/{default_v2.txt → v2_extraction.txt} +7 -5
  8. data/docs/code_samples/v2_extraction_webhook.txt +45 -0
  9. data/docs/code_samples/v2_ocr.txt +30 -0
  10. data/docs/code_samples/v2_split.txt +30 -0
  11. data/lib/mindee/client_v2.rb +69 -17
  12. data/lib/mindee/errors/mindee_http_error_v2.rb +2 -2
  13. data/lib/mindee/geometry/point.rb +5 -0
  14. data/lib/mindee/geometry/polygon.rb +5 -0
  15. data/lib/mindee/http/mindee_api_v2.rb +62 -12
  16. data/lib/mindee/input/base_parameters.rb +146 -0
  17. data/lib/mindee/input/inference_parameters.rb +48 -91
  18. data/lib/mindee/input/local_response.rb +5 -4
  19. data/lib/mindee/parsing/v2/field/field_location.rb +1 -1
  20. data/lib/mindee/parsing/v2/inference.rb +8 -21
  21. data/lib/mindee/parsing/v2/inference_response.rb +5 -2
  22. data/lib/mindee/v2/parsing/base_inference.rb +44 -0
  23. data/lib/mindee/v2/parsing/base_response.rb +13 -0
  24. data/lib/mindee/v2/product/base_product.rb +27 -0
  25. data/lib/mindee/v2/product/classification/classification.rb +19 -0
  26. data/lib/mindee/v2/product/classification/classification_classifier.rb +25 -0
  27. data/lib/mindee/v2/product/classification/classification_inference.rb +34 -0
  28. data/lib/mindee/v2/product/classification/classification_response.rb +32 -0
  29. data/lib/mindee/v2/product/classification/classification_result.rb +27 -0
  30. data/lib/mindee/v2/product/classification/params/classification_parameters.rb +46 -0
  31. data/lib/mindee/v2/product/crop/crop.rb +19 -0
  32. data/lib/mindee/v2/product/crop/crop_inference.rb +34 -0
  33. data/lib/mindee/v2/product/crop/crop_item.rb +29 -0
  34. data/lib/mindee/v2/product/crop/crop_response.rb +32 -0
  35. data/lib/mindee/v2/product/crop/crop_result.rb +34 -0
  36. data/lib/mindee/v2/product/crop/params/crop_parameters.rb +46 -0
  37. data/lib/mindee/v2/product/extraction/extraction.rb +19 -0
  38. data/lib/mindee/v2/product/extraction/extraction_inference.rb +25 -0
  39. data/lib/mindee/v2/product/extraction/extraction_response.rb +23 -0
  40. data/lib/mindee/v2/product/extraction/extraction_result.rb +15 -0
  41. data/lib/mindee/v2/product/extraction/params/extraction_parameters.rb +18 -0
  42. data/lib/mindee/v2/product/ocr/ocr.rb +19 -0
  43. data/lib/mindee/v2/product/ocr/ocr_inference.rb +34 -0
  44. data/lib/mindee/v2/product/ocr/ocr_page.rb +33 -0
  45. data/lib/mindee/v2/product/ocr/ocr_response.rb +32 -0
  46. data/lib/mindee/v2/product/ocr/ocr_result.rb +34 -0
  47. data/lib/mindee/v2/product/ocr/ocr_word.rb +29 -0
  48. data/lib/mindee/v2/product/ocr/params/ocr_parameters.rb +46 -0
  49. data/lib/mindee/v2/product/split/params/split_parameters.rb +46 -0
  50. data/lib/mindee/v2/product/split/split.rb +19 -0
  51. data/lib/mindee/v2/product/split/split_inference.rb +34 -0
  52. data/lib/mindee/v2/product/split/split_range.rb +30 -0
  53. data/lib/mindee/v2/product/split/split_response.rb +32 -0
  54. data/lib/mindee/v2/product/split/split_result.rb +34 -0
  55. data/lib/mindee/v2/product.rb +7 -0
  56. data/lib/mindee/v2.rb +4 -0
  57. data/lib/mindee/version.rb +1 -1
  58. data/lib/mindee.rb +7 -0
  59. data/sig/mindee/client_v2.rbs +11 -7
  60. data/sig/mindee/errors/mindee_http_error_v2.rbs +1 -1
  61. data/sig/mindee/geometry/point.rbs +2 -0
  62. data/sig/mindee/geometry/polygon.rbs +2 -0
  63. data/sig/mindee/http/mindee_api_v2.rbs +20 -4
  64. data/sig/mindee/input/base_parameters.rbs +35 -0
  65. data/sig/mindee/input/inference_parameters.rbs +4 -12
  66. data/sig/mindee/input/local_response.rbs +2 -2
  67. data/sig/mindee/parsing/v2/inference.rbs +4 -5
  68. data/sig/mindee/parsing/v2/inference_response.rbs +11 -2
  69. data/sig/mindee/v2/parsing/base_inference.rbs +18 -0
  70. data/sig/mindee/v2/parsing/base_response.rbs +11 -0
  71. data/sig/mindee/v2/product/base_product.rbs +19 -0
  72. data/sig/mindee/v2/product/classification/classification.rbs +10 -0
  73. data/sig/mindee/v2/product/classification/classification_classifier.rbs +15 -0
  74. data/sig/mindee/v2/product/classification/classification_inference.rbs +15 -0
  75. data/sig/mindee/v2/product/classification/classification_response.rbs +23 -0
  76. data/sig/mindee/v2/product/classification/classification_result.rbs +15 -0
  77. data/sig/mindee/v2/product/classification/params/classification_parameters/classification_parameters.rbs +23 -0
  78. data/sig/mindee/v2/product/crop/crop.rbs +10 -0
  79. data/sig/mindee/v2/product/crop/crop_inference.rbs +14 -0
  80. data/sig/mindee/v2/product/crop/crop_item.rbs +15 -0
  81. data/sig/mindee/v2/product/crop/crop_response.rbs +23 -0
  82. data/sig/mindee/v2/product/crop/crop_result.rbs +14 -0
  83. data/sig/mindee/v2/product/crop/params/crop_parameters/crop_parameters.rbs +23 -0
  84. data/sig/mindee/v2/product/extraction/extraction.rbs +12 -0
  85. data/sig/mindee/v2/product/extraction/extraction_inference.rbs +14 -0
  86. data/sig/mindee/v2/product/extraction/extraction_response.rbs +18 -0
  87. data/sig/mindee/v2/product/extraction/extraction_result.rbs +10 -0
  88. data/sig/mindee/v2/product/extraction/params/extraction_parameters.rbs +12 -0
  89. data/sig/mindee/v2/product/ocr/ocr.rbs +10 -0
  90. data/sig/mindee/v2/product/ocr/ocr_inference.rbs +14 -0
  91. data/sig/mindee/v2/product/ocr/ocr_page.rbs +15 -0
  92. data/sig/mindee/v2/product/ocr/ocr_response.rbs +23 -0
  93. data/sig/mindee/v2/product/ocr/ocr_result.rbs +14 -0
  94. data/sig/mindee/v2/product/ocr/ocr_word.rbs +15 -0
  95. data/sig/mindee/v2/product/ocr/params/ocr_parameters/ocr_parameters.rbs +24 -0
  96. data/sig/mindee/v2/product/split/params/split_parameters/split_parameters.rbs +23 -0
  97. data/sig/mindee/v2/product/split/split.rbs +10 -0
  98. data/sig/mindee/v2/product/split/split_inference.rbs +14 -0
  99. data/sig/mindee/v2/product/split/split_range.rbs +15 -0
  100. data/sig/mindee/v2/product/split/split_response.rbs +23 -0
  101. data/sig/mindee/v2/product/split/split_result.rbs +14 -0
  102. metadata +78 -3
@@ -0,0 +1,23 @@
1
+ module Mindee
2
+ module V2
3
+ module Product
4
+ module Crop
5
+ module Params
6
+ class CropParameters
7
+ def self.slug: -> String
8
+
9
+ def self.from_hash: (params: Hash[String | Symbol, untyped]) -> CropParameters
10
+
11
+ def initialize: (
12
+ String,
13
+ ?file_alias: String?,
14
+ ?webhook_ids: Array[String]?,
15
+ ?polling_options: Hash[Symbol | String, untyped] | Input::PollingOptions?,
16
+ ?close_file: bool?
17
+ ) -> void
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,12 @@
1
+ module Mindee
2
+ module V2
3
+ module Product
4
+ module Extraction
5
+ class Extraction
6
+ self.@params_type: singleton(Mindee::V2::Product::Extraction::Params::ExtractionParameters)
7
+ self.@response_type: singleton(Mindee::V2::Product::Extraction::ExtractionResponse)
8
+ end
9
+ end
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,14 @@
1
+ module Mindee
2
+ module V2
3
+ module Product
4
+ module Extraction
5
+ class ExtractionInference
6
+ attr_reader result: ExtractionResult
7
+
8
+ def initialize: (Hash[String | Symbol, untyped]) -> void
9
+ def to_s: -> String
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,18 @@
1
+ module Mindee
2
+ module V2
3
+ module Product
4
+ module Extraction
5
+ class ExtractionResponse
6
+ self.@_params_type: singleton(Params::ExtractionParameters)
7
+ attr_reader inference: Mindee::V2::Product::Extraction::ExtractionInference
8
+
9
+ def initialize: (Hash[String | Symbol, untyped]) -> void
10
+
11
+ def _params_type: -> singleton(Params::ExtractionParameters)
12
+
13
+ def self._params_type: () -> singleton(Params::ExtractionParameters)
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,10 @@
1
+ module Mindee
2
+ module V2
3
+ module Product
4
+ module Extraction
5
+ class ExtractionResult < Mindee::Parsing::V2::InferenceResult
6
+ end
7
+ end
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,12 @@
1
+ module Mindee
2
+ module V2
3
+ module Product
4
+ module Extraction
5
+ module Params
6
+ class ExtractionParameters < Input::InferenceParameters
7
+ end
8
+ end
9
+ end
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,10 @@
1
+ module Mindee
2
+ module V2
3
+ module Product
4
+ module Ocr
5
+ class Ocr < BaseProduct
6
+ end
7
+ end
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,14 @@
1
+ module Mindee
2
+ module V2
3
+ module Product
4
+ module Ocr
5
+ class OcrInference
6
+ attr_reader result: OcrResult
7
+
8
+ def initialize: (Hash[String | Symbol, untyped]) -> void
9
+ def to_s: -> String
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,15 @@
1
+ module Mindee
2
+ module V2
3
+ module Product
4
+ module Ocr
5
+ class OcrPage
6
+ attr_reader words: Array[OcrWord]
7
+ attr_reader content: String
8
+
9
+ def initialize: (Hash[String | Symbol, untyped]) -> void
10
+ def to_s: -> String
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,23 @@
1
+ # lib/mindee/v2/product/ocr/ocr_response.rb
2
+
3
+ module Mindee
4
+ module V2
5
+ module Product
6
+ module Ocr
7
+ class OcrResponse
8
+ self.@slug: String
9
+ self.@_params_type: singleton(Params::OcrParameters)
10
+
11
+ attr_reader inference: Mindee::V2::Product::Ocr::OcrInference
12
+ def initialize: (Hash[String | Symbol, untyped]) -> void
13
+
14
+ def _params_type: -> singleton(Params::OcrParameters)
15
+
16
+ def to_s: -> String
17
+ def self._params_type: () -> singleton(Params::OcrParameters)
18
+ def self.slug: () -> String
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,14 @@
1
+ module Mindee
2
+ module V2
3
+ module Product
4
+ module Ocr
5
+ class OcrResult
6
+ attr_reader pages: Array[Mindee::V2::Product::Ocr::OcrPage]
7
+
8
+ def initialize: (Hash[String | Symbol, untyped]) -> void
9
+ def to_s: -> String
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,15 @@
1
+ module Mindee
2
+ module V2
3
+ module Product
4
+ module Ocr
5
+ class OcrWord
6
+ attr_reader content: String
7
+ attr_reader polygon: Geometry::Polygon
8
+
9
+ def initialize: (Hash[String | Symbol, untyped]) -> void
10
+ def to_s: -> String
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,24 @@
1
+ module Mindee
2
+ module V2
3
+ module Product
4
+ module Ocr
5
+ module Params
6
+ class OcrParameters
7
+ def self.slug: -> String
8
+
9
+ def self.from_hash: (params: Hash[String | Symbol, untyped]) -> OcrParameters
10
+
11
+ def initialize: (
12
+ String,
13
+ ?file_alias: String?,
14
+ ?webhook_ids: Array[String]?,
15
+ ?polling_options: Hash[Symbol | String, untyped] | Input::PollingOptions?,
16
+ ?close_file: bool?
17
+ ) -> void
18
+ end
19
+
20
+ end
21
+ end
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,23 @@
1
+ module Mindee
2
+ module V2
3
+ module Product
4
+ module Split
5
+ module Params
6
+ class SplitParameters
7
+ def self.slug: -> String
8
+
9
+ def self.from_hash: (params: Hash[String | Symbol, untyped]) -> SplitParameters
10
+
11
+ def initialize: (
12
+ String,
13
+ ?file_alias: String?,
14
+ ?webhook_ids: Array[String]?,
15
+ ?polling_options: Hash[Symbol | String, untyped] | Input::PollingOptions?,
16
+ ?close_file: bool?
17
+ ) -> void
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,10 @@
1
+ module Mindee
2
+ module V2
3
+ module Product
4
+ module Split
5
+ class Split < BaseProduct
6
+ end
7
+ end
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,14 @@
1
+ module Mindee
2
+ module V2
3
+ module Product
4
+ module Split
5
+ class SplitInference
6
+ attr_reader result: SplitResult
7
+
8
+ def initialize: (Hash[String | Symbol, untyped]) -> void
9
+ def to_s: -> String
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,15 @@
1
+ module Mindee
2
+ module V2
3
+ module Product
4
+ module Split
5
+ class SplitRange
6
+ attr_reader page_range: Array[int]
7
+ attr_reader document_type: String
8
+
9
+ def initialize: (Hash[String | Symbol, untyped]) -> void
10
+ def to_s: -> String
11
+ end
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,23 @@
1
+ # lib/mindee/v2/product/split/split_response.rb
2
+
3
+ module Mindee
4
+ module V2
5
+ module Product
6
+ module Split
7
+ class SplitResponse
8
+ self.@slug: String
9
+ self.@_params_type: singleton(Params::SplitParameters)
10
+
11
+ attr_reader inference: Mindee::V2::Product::Split::SplitInference
12
+ def initialize: (Hash[String | Symbol, untyped]) -> void
13
+
14
+ def _params_type: -> singleton(Params::SplitParameters)
15
+
16
+ def to_s: -> String
17
+ def self._params_type: () -> singleton(Params::SplitParameters)
18
+ def self.slug: () -> String
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,14 @@
1
+ module Mindee
2
+ module V2
3
+ module Product
4
+ module Split
5
+ class SplitResult
6
+ attr_reader splits: Array[SplitRange]
7
+
8
+ def initialize: (Hash[String | Symbol, untyped]) -> void
9
+ def to_s: -> String
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mindee
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.12.0
4
+ version: 4.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mindee, SA
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-02-25 00:00:00.000000000 Z
11
+ date: 2026-03-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: base64
@@ -234,7 +234,6 @@ files:
234
234
  - docs/code_samples/cropper_v1.txt
235
235
  - docs/code_samples/default.txt
236
236
  - docs/code_samples/default_async.txt
237
- - docs/code_samples/default_v2.txt
238
237
  - docs/code_samples/delivery_notes_v1_async.txt
239
238
  - docs/code_samples/driver_license_v1_async.txt
240
239
  - docs/code_samples/energy_bill_fra_v1_async.txt
@@ -258,6 +257,12 @@ files:
258
257
  - docs/code_samples/resume_v1_async.txt
259
258
  - docs/code_samples/us_healthcare_cards_v1_async.txt
260
259
  - docs/code_samples/us_mail_v3_async.txt
260
+ - docs/code_samples/v2_classification.txt
261
+ - docs/code_samples/v2_crop.txt
262
+ - docs/code_samples/v2_extraction.txt
263
+ - docs/code_samples/v2_extraction_webhook.txt
264
+ - docs/code_samples/v2_ocr.txt
265
+ - docs/code_samples/v2_split.txt
261
266
  - docs/code_samples/workflow_execution.txt
262
267
  - docs/code_samples/workflow_polling.txt
263
268
  - examples/auto_invoice_splitter_extraction.rb
@@ -293,6 +298,7 @@ files:
293
298
  - lib/mindee/image/image_extractor.rb
294
299
  - lib/mindee/image/image_utils.rb
295
300
  - lib/mindee/input.rb
301
+ - lib/mindee/input/base_parameters.rb
296
302
  - lib/mindee/input/data_schema.rb
297
303
  - lib/mindee/input/inference_parameters.rb
298
304
  - lib/mindee/input/local_response.rb
@@ -546,6 +552,41 @@ files:
546
552
  - lib/mindee/product/us/us_mail/us_mail_v3_recipient_address.rb
547
553
  - lib/mindee/product/us/us_mail/us_mail_v3_recipient_addresses.rb
548
554
  - lib/mindee/product/us/us_mail/us_mail_v3_sender_address.rb
555
+ - lib/mindee/v2.rb
556
+ - lib/mindee/v2/parsing/base_inference.rb
557
+ - lib/mindee/v2/parsing/base_response.rb
558
+ - lib/mindee/v2/product.rb
559
+ - lib/mindee/v2/product/base_product.rb
560
+ - lib/mindee/v2/product/classification/classification.rb
561
+ - lib/mindee/v2/product/classification/classification_classifier.rb
562
+ - lib/mindee/v2/product/classification/classification_inference.rb
563
+ - lib/mindee/v2/product/classification/classification_response.rb
564
+ - lib/mindee/v2/product/classification/classification_result.rb
565
+ - lib/mindee/v2/product/classification/params/classification_parameters.rb
566
+ - lib/mindee/v2/product/crop/crop.rb
567
+ - lib/mindee/v2/product/crop/crop_inference.rb
568
+ - lib/mindee/v2/product/crop/crop_item.rb
569
+ - lib/mindee/v2/product/crop/crop_response.rb
570
+ - lib/mindee/v2/product/crop/crop_result.rb
571
+ - lib/mindee/v2/product/crop/params/crop_parameters.rb
572
+ - lib/mindee/v2/product/extraction/extraction.rb
573
+ - lib/mindee/v2/product/extraction/extraction_inference.rb
574
+ - lib/mindee/v2/product/extraction/extraction_response.rb
575
+ - lib/mindee/v2/product/extraction/extraction_result.rb
576
+ - lib/mindee/v2/product/extraction/params/extraction_parameters.rb
577
+ - lib/mindee/v2/product/ocr/ocr.rb
578
+ - lib/mindee/v2/product/ocr/ocr_inference.rb
579
+ - lib/mindee/v2/product/ocr/ocr_page.rb
580
+ - lib/mindee/v2/product/ocr/ocr_response.rb
581
+ - lib/mindee/v2/product/ocr/ocr_result.rb
582
+ - lib/mindee/v2/product/ocr/ocr_word.rb
583
+ - lib/mindee/v2/product/ocr/params/ocr_parameters.rb
584
+ - lib/mindee/v2/product/split/params/split_parameters.rb
585
+ - lib/mindee/v2/product/split/split.rb
586
+ - lib/mindee/v2/product/split/split_inference.rb
587
+ - lib/mindee/v2/product/split/split_range.rb
588
+ - lib/mindee/v2/product/split/split_response.rb
589
+ - lib/mindee/v2/product/split/split_result.rb
549
590
  - lib/mindee/version.rb
550
591
  - mindee.gemspec
551
592
  - sig/custom/marcel.rbs
@@ -576,6 +617,7 @@ files:
576
617
  - sig/mindee/image/image_compressor.rbs
577
618
  - sig/mindee/image/image_extractor.rbs
578
619
  - sig/mindee/image/image_utils.rbs
620
+ - sig/mindee/input/base_parameters.rbs
579
621
  - sig/mindee/input/data_schema.rbs
580
622
  - sig/mindee/input/inference_parameters.rbs
581
623
  - sig/mindee/input/local_response.rbs
@@ -819,6 +861,39 @@ files:
819
861
  - sig/mindee/product/us/w9/w9_v1.rbs
820
862
  - sig/mindee/product/us/w9/w9_v1_document.rbs
821
863
  - sig/mindee/product/us/w9/w9_v1_page.rbs
864
+ - sig/mindee/v2/parsing/base_inference.rbs
865
+ - sig/mindee/v2/parsing/base_response.rbs
866
+ - sig/mindee/v2/product/base_product.rbs
867
+ - sig/mindee/v2/product/classification/classification.rbs
868
+ - sig/mindee/v2/product/classification/classification_classifier.rbs
869
+ - sig/mindee/v2/product/classification/classification_inference.rbs
870
+ - sig/mindee/v2/product/classification/classification_response.rbs
871
+ - sig/mindee/v2/product/classification/classification_result.rbs
872
+ - sig/mindee/v2/product/classification/params/classification_parameters/classification_parameters.rbs
873
+ - sig/mindee/v2/product/crop/crop.rbs
874
+ - sig/mindee/v2/product/crop/crop_inference.rbs
875
+ - sig/mindee/v2/product/crop/crop_item.rbs
876
+ - sig/mindee/v2/product/crop/crop_response.rbs
877
+ - sig/mindee/v2/product/crop/crop_result.rbs
878
+ - sig/mindee/v2/product/crop/params/crop_parameters/crop_parameters.rbs
879
+ - sig/mindee/v2/product/extraction/extraction.rbs
880
+ - sig/mindee/v2/product/extraction/extraction_inference.rbs
881
+ - sig/mindee/v2/product/extraction/extraction_response.rbs
882
+ - sig/mindee/v2/product/extraction/extraction_result.rbs
883
+ - sig/mindee/v2/product/extraction/params/extraction_parameters.rbs
884
+ - sig/mindee/v2/product/ocr/ocr.rbs
885
+ - sig/mindee/v2/product/ocr/ocr_inference.rbs
886
+ - sig/mindee/v2/product/ocr/ocr_page.rbs
887
+ - sig/mindee/v2/product/ocr/ocr_response.rbs
888
+ - sig/mindee/v2/product/ocr/ocr_result.rbs
889
+ - sig/mindee/v2/product/ocr/ocr_word.rbs
890
+ - sig/mindee/v2/product/ocr/params/ocr_parameters/ocr_parameters.rbs
891
+ - sig/mindee/v2/product/split/params/split_parameters/split_parameters.rbs
892
+ - sig/mindee/v2/product/split/split.rbs
893
+ - sig/mindee/v2/product/split/split_inference.rbs
894
+ - sig/mindee/v2/product/split/split_range.rbs
895
+ - sig/mindee/v2/product/split/split_response.rbs
896
+ - sig/mindee/v2/product/split/split_result.rbs
822
897
  - sig/mindee/version.rbs
823
898
  homepage: https://github.com/mindee/mindee-api-ruby
824
899
  licenses: