Skip to content

Commit a4b0aae

Browse files
committed
Update sources
1 parent 29d6460 commit a4b0aae

20 files changed

Lines changed: 510 additions & 131 deletions

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"description": "This repository contains GroupDocs.Conversion for Cloud SDK for PHP source code.",
33
"name": "groupdocscloud/conversion-sdk-php",
4-
"version": "18.3",
4+
"version": "18.4",
55
"license": "MIT",
66
"type": "library",
77
"keywords": [

composer.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/GroupDocs/Conversion/Configuration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ class Configuration
135135
* Version of client SDK
136136
*
137137
*/
138-
protected $clientVersion = '18.3';
138+
protected $clientVersion = '18.4';
139139

140140
/*
141141
* Constructor
@@ -522,7 +522,7 @@ public static function toDebugReport()
522522
$report = 'PHP SDK (GroupDocs\Conversion) Debug Report:' . PHP_EOL;
523523
$report .= ' OS: ' . php_uname() . PHP_EOL;
524524
$report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL;
525-
$report .= ' SDK Package Version: 18.3' . PHP_EOL;
525+
$report .= ' SDK Package Version: 18.4' . PHP_EOL;
526526
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;
527527

528528
return $report;

src/GroupDocs/Conversion/ConversionApi.php

Lines changed: 56 additions & 56 deletions
Large diffs are not rendered by default.

src/GroupDocs/Conversion/Model/PdfSaveOptionsDto.php

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class PdfSaveOptionsDto extends SaveOptionsBaseDto
5555
*/
5656
protected static $swaggerTypes = [
5757
'convertFileType' => 'string',
58-
'wordBookmarks' => 'string',
58+
'wordBookmarksOptions' => '\GroupDocs\Conversion\Model\WordBookmarksOptionsDto',
5959
'width' => 'int',
6060
'height' => 'int',
6161
'dpi' => 'double',
@@ -74,7 +74,7 @@ class PdfSaveOptionsDto extends SaveOptionsBaseDto
7474
*/
7575
protected static $swaggerFormats = [
7676
'convertFileType' => null,
77-
'wordBookmarks' => null,
77+
'wordBookmarksOptions' => null,
7878
'width' => 'int32',
7979
'height' => 'int32',
8080
'dpi' => 'double',
@@ -114,7 +114,7 @@ public static function swaggerFormats()
114114
*/
115115
protected static $attributeMap = [
116116
'convertFileType' => 'ConvertFileType',
117-
'wordBookmarks' => 'WordBookmarks',
117+
'wordBookmarksOptions' => 'WordBookmarksOptions',
118118
'width' => 'Width',
119119
'height' => 'Height',
120120
'dpi' => 'Dpi',
@@ -133,7 +133,7 @@ public static function swaggerFormats()
133133
*/
134134
protected static $setters = [
135135
'convertFileType' => 'setConvertFileType',
136-
'wordBookmarks' => 'setWordBookmarks',
136+
'wordBookmarksOptions' => 'setWordBookmarksOptions',
137137
'width' => 'setWidth',
138138
'height' => 'setHeight',
139139
'dpi' => 'setDpi',
@@ -152,7 +152,7 @@ public static function swaggerFormats()
152152
*/
153153
protected static $getters = [
154154
'convertFileType' => 'getConvertFileType',
155-
'wordBookmarks' => 'getWordBookmarks',
155+
'wordBookmarksOptions' => 'getWordBookmarksOptions',
156156
'width' => 'getWidth',
157157
'height' => 'getHeight',
158158
'dpi' => 'getDpi',
@@ -238,7 +238,7 @@ public function __construct(array $data = null)
238238
parent::__construct($data);
239239

240240
$this->container['convertFileType'] = isset($data['convertFileType']) ? $data['convertFileType'] : null;
241-
$this->container['wordBookmarks'] = isset($data['wordBookmarks']) ? $data['wordBookmarks'] : null;
241+
$this->container['wordBookmarksOptions'] = isset($data['wordBookmarksOptions']) ? $data['wordBookmarksOptions'] : null;
242242
$this->container['width'] = isset($data['width']) ? $data['width'] : null;
243243
$this->container['height'] = isset($data['height']) ? $data['height'] : null;
244244
$this->container['dpi'] = isset($data['dpi']) ? $data['dpi'] : null;
@@ -320,25 +320,25 @@ public function setConvertFileType($convertFileType)
320320
}
321321

322322
/*
323-
* Gets wordBookmarks
323+
* Gets wordBookmarksOptions
324324
*
325-
* @return string
325+
* @return \GroupDocs\Conversion\Model\WordBookmarksOptionsDto
326326
*/
327-
public function getWordBookmarks()
327+
public function getWordBookmarksOptions()
328328
{
329-
return $this->container['wordBookmarks'];
329+
return $this->container['wordBookmarksOptions'];
330330
}
331331

332332
/*
333-
* Sets wordBookmarks
333+
* Sets wordBookmarksOptions
334334
*
335-
* @param string $wordBookmarks If the input document is Word the conversion will handle the word bookmarks regarding this option.
335+
* @param \GroupDocs\Conversion\Model\WordBookmarksOptionsDto $wordBookmarksOptions If the input document is Word the conversion will handle the word bookmarks regarding this option.
336336
*
337337
* @return $this
338338
*/
339-
public function setWordBookmarks($wordBookmarks)
339+
public function setWordBookmarksOptions($wordBookmarksOptions)
340340
{
341-
$this->container['wordBookmarks'] = $wordBookmarks;
341+
$this->container['wordBookmarksOptions'] = $wordBookmarksOptions;
342342

343343
return $this;
344344
}

src/GroupDocs/Conversion/Model/Requests/ConvertToCellsRequest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ class ConvertToCellsRequest
3535
/*
3636
* Initializes a new instance of the ConvertToCellsRequest class.
3737
*
38-
* @param \GroupDocs\Conversion\Model\CellsConversionSettings $settings The settings.
39-
* @param string $outPath outPath: path to output document on file storage
38+
* @param \GroupDocs\Conversion\Model\CellsConversionSettings $settings The settings
39+
* @param string $outPath path to output document on file storage
4040
*/
4141
public function __construct($settings = null, $outPath = null)
4242
{
@@ -45,12 +45,12 @@ public function __construct($settings = null, $outPath = null)
4545
}
4646

4747
/*
48-
* The settings.
48+
* The settings
4949
*/
5050
public $settings;
5151

5252
/*
53-
* outPath: path to output document on file storage
53+
* path to output document on file storage
5454
*/
5555
public $outPath;
5656
}

src/GroupDocs/Conversion/Model/Requests/ConvertToCellsStreamRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ class ConvertToCellsStreamRequest
3535
/*
3636
* Initializes a new instance of the ConvertToCellsStreamRequest class.
3737
*
38-
* @param \GroupDocs\Conversion\Model\CellsConversionSettings $settings The settings.
38+
* @param \GroupDocs\Conversion\Model\CellsConversionSettings $settings The settings
3939
*/
4040
public function __construct($settings = null)
4141
{
4242
$this->settings = $settings;
4343
}
4444

4545
/*
46-
* The settings.
46+
* The settings
4747
*/
4848
public $settings;
4949
}

src/GroupDocs/Conversion/Model/Requests/ConvertToHtmlRequest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ class ConvertToHtmlRequest
3535
/*
3636
* Initializes a new instance of the ConvertToHtmlRequest class.
3737
*
38-
* @param \GroupDocs\Conversion\Model\HtmlConversionSettings $settings The settings.
39-
* @param string $outPath outPath: path to output document on file storage
38+
* @param \GroupDocs\Conversion\Model\HtmlConversionSettings $settings The settings
39+
* @param string $outPath path to output document on file storage
4040
*/
4141
public function __construct($settings = null, $outPath = null)
4242
{
@@ -45,12 +45,12 @@ public function __construct($settings = null, $outPath = null)
4545
}
4646

4747
/*
48-
* The settings.
48+
* The settings
4949
*/
5050
public $settings;
5151

5252
/*
53-
* outPath: path to output document on file storage
53+
* path to output document on file storage
5454
*/
5555
public $outPath;
5656
}

src/GroupDocs/Conversion/Model/Requests/ConvertToHtmlStreamRequest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ class ConvertToHtmlStreamRequest
3535
/*
3636
* Initializes a new instance of the ConvertToHtmlStreamRequest class.
3737
*
38-
* @param \GroupDocs\Conversion\Model\HtmlConversionSettings $settings The settings.
38+
* @param \GroupDocs\Conversion\Model\HtmlConversionSettings $settings The settings
3939
*/
4040
public function __construct($settings = null)
4141
{
4242
$this->settings = $settings;
4343
}
4444

4545
/*
46-
* The settings.
46+
* The settings
4747
*/
4848
public $settings;
4949
}

src/GroupDocs/Conversion/Model/Requests/ConvertToImageRequest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ class ConvertToImageRequest
3535
/*
3636
* Initializes a new instance of the ConvertToImageRequest class.
3737
*
38-
* @param \GroupDocs\Conversion\Model\ImageConversionSettings $settings The settings.
39-
* @param string $outPath outPath: path to output document on file storage
38+
* @param \GroupDocs\Conversion\Model\ImageConversionSettings $settings The settings
39+
* @param string $outPath path to output document on file storage
4040
*/
4141
public function __construct($settings = null, $outPath = null)
4242
{
@@ -45,12 +45,12 @@ public function __construct($settings = null, $outPath = null)
4545
}
4646

4747
/*
48-
* The settings.
48+
* The settings
4949
*/
5050
public $settings;
5151

5252
/*
53-
* outPath: path to output document on file storage
53+
* path to output document on file storage
5454
*/
5555
public $outPath;
5656
}

0 commit comments

Comments
 (0)