aspose_pdf_cloud 24.11.0 → 24.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -5
- data/docs/PdfAType.md +5 -4
- data/lib/aspose_pdf_cloud/api/pdf_api.rb +6 -6
- data/lib/aspose_pdf_cloud/models/pdf_a_type.rb +1 -0
- data/lib/aspose_pdf_cloud/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d7d53cdbd0e13fa05e15689f60166017f9f420c41cd6d7983c4b02fa8a1598c6
|
4
|
+
data.tar.gz: 7339d0af3aa84d2da993a1bddc11a47c2cf69ccd410fc8ed7cf018e8c2aa5610
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d9e5c5b2900ef5815b01e41955311cf908780345a9896098928c89433610da4c6a9a64cf667bfc5a92b9025173dacf9f2b2e1ea0929def4f3bb4ab2623eff26b
|
7
|
+
data.tar.gz: 3e70d26a7154bfbf6b4492d5a4b90879f968c139a1cfa0085cc05478e3706027ff1017902ad2280c20c1f488609f79160dd504b90ae353cc0d621b5f3bf5f3af
|
data/README.md
CHANGED
@@ -29,8 +29,8 @@ XLS, XLSX, PPTX, DOC, DOCX, MobiXML, JPEG, EMF, PNG, BMP, GIF, TIFF, Text
|
|
29
29
|
## Read PDF Formats
|
30
30
|
MHT, PCL, PS, XSLFO, MD
|
31
31
|
|
32
|
-
## Enhancements in Version 24.
|
33
|
-
- Add
|
32
|
+
## Enhancements in Version 24.12
|
33
|
+
- Add support for PDF to PDF 3B conversion.
|
34
34
|
- A new version of Aspose.PDF Cloud was prepared using the latest version of Aspose.PDF for .NET.
|
35
35
|
|
36
36
|
## Installation
|
@@ -46,15 +46,15 @@ gem build aspose_pdf_cloud.gemspec
|
|
46
46
|
Then either install the gem locally:
|
47
47
|
|
48
48
|
```shell
|
49
|
-
gem install ./aspose_pdf_cloud-24.
|
49
|
+
gem install ./aspose_pdf_cloud-24.12.0.gem
|
50
50
|
```
|
51
|
-
(for development, run `gem install --dev ./aspose_pdf_cloud-24.
|
51
|
+
(for development, run `gem install --dev ./aspose_pdf_cloud-24.12.0.gem` to install the development dependencies)
|
52
52
|
|
53
53
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
54
54
|
|
55
55
|
Finally add this to the Gemfile:
|
56
56
|
|
57
|
-
gem 'aspose_pdf_cloud', '~> 24.
|
57
|
+
gem 'aspose_pdf_cloud', '~> 24.12.0'
|
58
58
|
|
59
59
|
### Install from Git
|
60
60
|
|
data/docs/PdfAType.md
CHANGED
@@ -3,10 +3,11 @@ Allows to specify PdfA file format.
|
|
3
3
|
|
4
4
|
## Enum
|
5
5
|
Name | Type | Value | Description
|
6
|
-
------------ | ------------- | ------------- | -------------
|
7
|
-
**PDFA1_A** | **String** | 'PDFA1A' | Pdf/A-1a format
|
8
|
-
**PDFA1_B** | **String** | 'PDFA1B' | Pdf/A-1b format
|
9
|
-
**PDFA3_A** | **String** | 'PDFA3A' | Pdf/A-3a format
|
6
|
+
------------ | ------------- | ------------- | -------------
|
7
|
+
**PDFA1_A** | **String** | 'PDFA1A' | Pdf/A-1a format
|
8
|
+
**PDFA1_B** | **String** | 'PDFA1B' | Pdf/A-1b format
|
9
|
+
**PDFA3_A** | **String** | 'PDFA3A' | Pdf/A-3a format
|
10
|
+
**PDFA3_B** | **String** | 'PDFA3B' | Pdf/A-3b format
|
10
11
|
|
11
12
|
|
12
13
|
|
@@ -11580,8 +11580,8 @@ module AsposePdfCloud
|
|
11580
11580
|
fail ArgumentError, "Missing the required parameter 'type' when calling PdfApi.get_pdf_in_storage_to_pdf_a"
|
11581
11581
|
end
|
11582
11582
|
# 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"
|
11585
11585
|
end
|
11586
11586
|
# resource path
|
11587
11587
|
local_var_path = "/pdf/{name}/convert/pdfa".sub('{' + 'name' + '}', name.to_s)
|
@@ -25453,8 +25453,8 @@ module AsposePdfCloud
|
|
25453
25453
|
fail ArgumentError, "Missing the required parameter 'type' when calling PdfApi.put_pdf_in_request_to_pdf_a"
|
25454
25454
|
end
|
25455
25455
|
# 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"
|
25458
25458
|
end
|
25459
25459
|
# resource path
|
25460
25460
|
local_var_path = "/pdf/convert/pdfa"
|
@@ -26707,8 +26707,8 @@ module AsposePdfCloud
|
|
26707
26707
|
fail ArgumentError, "Missing the required parameter 'type' when calling PdfApi.put_pdf_in_storage_to_pdf_a"
|
26708
26708
|
end
|
26709
26709
|
# 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"
|
26712
26712
|
end
|
26713
26713
|
# resource path
|
26714
26714
|
local_var_path = "/pdf/{name}/convert/pdfa".sub('{' + 'name' + '}', name.to_s)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aspose_pdf_cloud
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 24.
|
4
|
+
version: 24.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aspose PDF Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|