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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 969a0f11b81e490f18023f371ba7e5e2d88e6f5e72375561b81f38dbb7177089
4
- data.tar.gz: 0df9bf3712af4bbf0bb56aeeb60046e14100ebd1565bd64e4bac508e1709c1f4
3
+ metadata.gz: d7d53cdbd0e13fa05e15689f60166017f9f420c41cd6d7983c4b02fa8a1598c6
4
+ data.tar.gz: 7339d0af3aa84d2da993a1bddc11a47c2cf69ccd410fc8ed7cf018e8c2aa5610
5
5
  SHA512:
6
- metadata.gz: 56dd2d651a376f8dc3dfa7c8cd1fb71d976eb6ff05ba8d765a5e5ec08e31b63804904ec208faf761a6ec06a9f27648cf9991d4c5562fef3f1ce1f46070d9a0b0
7
- data.tar.gz: 67e7eb8e0aa070ba84324f799c28a57f6fbddba5f0c357b72bf6ad9ce7c7009eed152f16a4ee29583c5b461cc78840d909b3e2a35e03dd1e9f2c9e272757ad3b
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.11
33
- - Add DocRecognitionMode EnhancedFlow mode.
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.11.0.gem
49
+ gem install ./aspose_pdf_cloud-24.12.0.gem
50
50
  ```
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)
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.11.0'
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)
@@ -28,6 +28,7 @@ module AsposePdfCloud
28
28
  PDFA1_A = "PDFA1A".freeze
29
29
  PDFA1_B = "PDFA1B".freeze
30
30
  PDFA3_A = "PDFA3A".freeze
31
+ PDFA3_B = "PDFA3B".freeze
31
32
 
32
33
  # Builds the enum from string
33
34
  # @param [String] The enum value in the form of the string
@@ -20,5 +20,5 @@ SOFTWARE.
20
20
  =end
21
21
 
22
22
  module AsposePdfCloud
23
- VERSION = "24.11.0"
23
+ VERSION = "24.12.0"
24
24
  end
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.11.0
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-22 00:00:00.000000000 Z
11
+ date: 2024-12-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json