Skip to content

Commit 2f2d8dd

Browse files
authored
Merge pull request #80 from aspose-pdf-cloud/develop
update to 24.12
2 parents 7b3fe0c + 3450878 commit 2f2d8dd

File tree

5 files changed

+14
-12
lines changed

5 files changed

+14
-12
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
2929
## Read PDF Formats
3030
MHT, PCL, PS, XSLFO, MD
3131

32-
## Enhancements in Version 24.11
33-
- Add DocRecognitionMode EnhancedFlow mode.
32+
## Enhancements in Version 24.12
33+
- Add support for PDF to PDF 3B conversion.
3434
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
3535

3636
## Installation
@@ -46,15 +46,15 @@ gem build aspose_pdf_cloud.gemspec
4646
Then either install the gem locally:
4747

4848
```shell
49-
gem install ./aspose_pdf_cloud-24.11.0.gem
49+
gem install ./aspose_pdf_cloud-24.12.0.gem
5050
```
51-
(for development, run `gem install --dev ./aspose_pdf_cloud-24.11.0.gem` to install the development dependencies)
51+
(for development, run `gem install --dev ./aspose_pdf_cloud-24.12.0.gem` to install the development dependencies)
5252

5353
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
5454

5555
Finally add this to the Gemfile:
5656

57-
gem 'aspose_pdf_cloud', '~> 24.11.0'
57+
gem 'aspose_pdf_cloud', '~> 24.12.0'
5858

5959
### Install from Git
6060

docs/PdfAType.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Name | Type | Value | Description
77
**PDFA1_A** | **String** | 'PDFA1A' | Pdf/A-1a format
88
**PDFA1_B** | **String** | 'PDFA1B' | Pdf/A-1b format
99
**PDFA3_A** | **String** | 'PDFA3A' | Pdf/A-3a format
10+
**PDFA3_B** | **String** | 'PDFA3B' | Pdf/A-3b format
1011

1112

1213

lib/aspose_pdf_cloud/api/pdf_api.rb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11580,8 +11580,8 @@ def get_pdf_in_storage_to_pdf_a_with_http_info(name, type, opts = {})
1158011580
fail ArgumentError, "Missing the required parameter 'type' when calling PdfApi.get_pdf_in_storage_to_pdf_a"
1158111581
end
1158211582
# verify enum value
11583-
if @api_client.config.client_side_validation && !['PDFA1A', 'PDFA1B', 'PDFA3A'].include?(type)
11584-
fail ArgumentError, "invalid value for 'type', must be one of PDFA1A, PDFA1B, PDFA3A"
11583+
if @api_client.config.client_side_validation && !['PDFA1A', 'PDFA1B', 'PDFA3A', 'PDFA3B'].include?(type)
11584+
fail ArgumentError, "invalid value for 'type', must be one of PDFA1A, PDFA1B, PDFA3A, PDFA3B"
1158511585
end
1158611586
# resource path
1158711587
local_var_path = "/pdf/{name}/convert/pdfa".sub('{' + 'name' + '}', name.to_s)
@@ -25453,8 +25453,8 @@ def put_pdf_in_request_to_pdf_a_with_http_info(out_path, type, opts = {})
2545325453
fail ArgumentError, "Missing the required parameter 'type' when calling PdfApi.put_pdf_in_request_to_pdf_a"
2545425454
end
2545525455
# verify enum value
25456-
if @api_client.config.client_side_validation && !['PDFA1A', 'PDFA1B', 'PDFA3A'].include?(type)
25457-
fail ArgumentError, "invalid value for 'type', must be one of PDFA1A, PDFA1B, PDFA3A"
25456+
if @api_client.config.client_side_validation && !['PDFA1A', 'PDFA1B', 'PDFA3A', 'PDFA3B'].include?(type)
25457+
fail ArgumentError, "invalid value for 'type', must be one of PDFA1A, PDFA1B, PDFA3A, PDFA3B"
2545825458
end
2545925459
# resource path
2546025460
local_var_path = "/pdf/convert/pdfa"
@@ -26707,8 +26707,8 @@ def put_pdf_in_storage_to_pdf_a_with_http_info(name, out_path, type, opts = {})
2670726707
fail ArgumentError, "Missing the required parameter 'type' when calling PdfApi.put_pdf_in_storage_to_pdf_a"
2670826708
end
2670926709
# verify enum value
26710-
if @api_client.config.client_side_validation && !['PDFA1A', 'PDFA1B', 'PDFA3A'].include?(type)
26711-
fail ArgumentError, "invalid value for 'type', must be one of PDFA1A, PDFA1B, PDFA3A"
26710+
if @api_client.config.client_side_validation && !['PDFA1A', 'PDFA1B', 'PDFA3A', 'PDFA3B'].include?(type)
26711+
fail ArgumentError, "invalid value for 'type', must be one of PDFA1A, PDFA1B, PDFA3A, PDFA3B"
2671226712
end
2671326713
# resource path
2671426714
local_var_path = "/pdf/{name}/convert/pdfa".sub('{' + 'name' + '}', name.to_s)

lib/aspose_pdf_cloud/models/pdf_a_type.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class PdfAType
2828
PDFA1_A = "PDFA1A".freeze
2929
PDFA1_B = "PDFA1B".freeze
3030
PDFA3_A = "PDFA3A".freeze
31+
PDFA3_B = "PDFA3B".freeze
3132

3233
# Builds the enum from string
3334
# @param [String] The enum value in the form of the string

lib/aspose_pdf_cloud/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020
=end
2121

2222
module AsposePdfCloud
23-
VERSION = "24.11.0"
23+
VERSION = "24.12.0"
2424
end

0 commit comments

Comments
 (0)