Skip to content

Commit cbc4931

Browse files
committed
chore: bump version to 1.1.6 and update dependencies in composer.lock
- Updated version in composer.json to 1.1.6. - Updated dependencies in composer.lock, including guzzlehttp/guzzle, nikic/php-parser, phpunit/phpunit, and sebastian/exporter. - Adjusted file parameter handling in AttachmentsApi to support array input. - Improved documentation for delete and get operations in CustomFieldsApi.
1 parent 2a95fe3 commit cbc4931

File tree

4 files changed

+52
-40
lines changed

4 files changed

+52
-40
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"Tests\\": "test/"
3939
}
4040
},
41-
"version": "1.1.5",
41+
"version": "1.1.6",
4242
"scripts": {
4343
"test": "phpunit"
4444
},

composer.lock

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

src/Api/AttachmentsApi.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1206,7 +1206,7 @@ public function uploadAttachmentRequest($code, $file = null, string $contentType
12061206
$formDataProcessor = new FormDataProcessor();
12071207

12081208
$formData = $formDataProcessor->prepare([
1209-
'file' => $file,
1209+
'file[]' => $file,
12101210
]);
12111211

12121212
$formParams = $formDataProcessor->flatten($formData);

src/Api/CustomFieldsApi.php

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ public function createCustomFieldRequest($customFieldCreate, string $contentType
413413
/**
414414
* Operation deleteCustomField
415415
*
416-
* Delete Custom Field by id
416+
* Delete Custom Field
417417
*
418418
* @param int $id Identifier. (required)
419419
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteCustomField'] to see the possible values for this operation
@@ -431,7 +431,7 @@ public function deleteCustomField($id, string $contentType = self::contentTypes[
431431
/**
432432
* Operation deleteCustomFieldWithHttpInfo
433433
*
434-
* Delete Custom Field by id
434+
* Delete Custom Field
435435
*
436436
* @param int $id Identifier. (required)
437437
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteCustomField'] to see the possible values for this operation
@@ -516,7 +516,7 @@ public function deleteCustomFieldWithHttpInfo($id, string $contentType = self::c
516516
/**
517517
* Operation deleteCustomFieldAsync
518518
*
519-
* Delete Custom Field by id
519+
* Delete Custom Field
520520
*
521521
* @param int $id Identifier. (required)
522522
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteCustomField'] to see the possible values for this operation
@@ -537,7 +537,7 @@ function ($response) {
537537
/**
538538
* Operation deleteCustomFieldAsyncWithHttpInfo
539539
*
540-
* Delete Custom Field by id
540+
* Delete Custom Field
541541
*
542542
* @param int $id Identifier. (required)
543543
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['deleteCustomField'] to see the possible values for this operation
@@ -686,7 +686,7 @@ public function deleteCustomFieldRequest($id, string $contentType = self::conten
686686
/**
687687
* Operation getCustomField
688688
*
689-
* Get Custom Field by id
689+
* Get Custom Field
690690
*
691691
* @param int $id Identifier. (required)
692692
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['getCustomField'] to see the possible values for this operation
@@ -704,7 +704,7 @@ public function getCustomField($id, string $contentType = self::contentTypes['ge
704704
/**
705705
* Operation getCustomFieldWithHttpInfo
706706
*
707-
* Get Custom Field by id
707+
* Get Custom Field
708708
*
709709
* @param int $id Identifier. (required)
710710
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['getCustomField'] to see the possible values for this operation
@@ -789,7 +789,7 @@ public function getCustomFieldWithHttpInfo($id, string $contentType = self::cont
789789
/**
790790
* Operation getCustomFieldAsync
791791
*
792-
* Get Custom Field by id
792+
* Get Custom Field
793793
*
794794
* @param int $id Identifier. (required)
795795
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['getCustomField'] to see the possible values for this operation
@@ -810,7 +810,7 @@ function ($response) {
810810
/**
811811
* Operation getCustomFieldAsyncWithHttpInfo
812812
*
813-
* Get Custom Field by id
813+
* Get Custom Field
814814
*
815815
* @param int $id Identifier. (required)
816816
* @param string $contentType The value for the Content-Type header. Check self::contentTypes['getCustomField'] to see the possible values for this operation
@@ -1284,7 +1284,7 @@ public function getCustomFieldsRequest($entity = null, $type = null, $limit = 10
12841284
/**
12851285
* Operation updateCustomField
12861286
*
1287-
* Update Custom Field by id
1287+
* Update Custom Field
12881288
*
12891289
* @param int $id Identifier. (required)
12901290
* @param \Qase\APIClientV1\Model\CustomFieldUpdate $customFieldUpdate customFieldUpdate (required)
@@ -1303,7 +1303,7 @@ public function updateCustomField($id, $customFieldUpdate, string $contentType =
13031303
/**
13041304
* Operation updateCustomFieldWithHttpInfo
13051305
*
1306-
* Update Custom Field by id
1306+
* Update Custom Field
13071307
*
13081308
* @param int $id Identifier. (required)
13091309
* @param \Qase\APIClientV1\Model\CustomFieldUpdate $customFieldUpdate (required)
@@ -1389,7 +1389,7 @@ public function updateCustomFieldWithHttpInfo($id, $customFieldUpdate, string $c
13891389
/**
13901390
* Operation updateCustomFieldAsync
13911391
*
1392-
* Update Custom Field by id
1392+
* Update Custom Field
13931393
*
13941394
* @param int $id Identifier. (required)
13951395
* @param \Qase\APIClientV1\Model\CustomFieldUpdate $customFieldUpdate (required)
@@ -1411,7 +1411,7 @@ function ($response) {
14111411
/**
14121412
* Operation updateCustomFieldAsyncWithHttpInfo
14131413
*
1414-
* Update Custom Field by id
1414+
* Update Custom Field
14151415
*
14161416
* @param int $id Identifier. (required)
14171417
* @param \Qase\APIClientV1\Model\CustomFieldUpdate $customFieldUpdate (required)

0 commit comments

Comments
 (0)