Skip to content

Commit

Permalink
Merge pull request #513 from Jayashreesidd/may24release
Browse files Browse the repository at this point in the history
Minor version 71 release may'24
  • Loading branch information
Jayashreesidd authored May 28, 2024
2 parents a4039a8 + 383604b commit 2e7be89
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Core/CoreConstants.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class CoreConstants
{
//Set the default minor version
const DEFAULT_SDK_MINOR_VERSION = "68";
const DEFAULT_SDK_MINOR_VERSION = "71";
const DEFAULT_LOGGINGLOCATION = "/tmp/IdsLogs";

const PHP_CLASS_PREFIX = 'IPP';
Expand Down Expand Up @@ -297,7 +297,7 @@ class CoreConstants
* The Request source header value.
* @var string REQUESTSOURCEHEADER
*/
const USERAGENT = "V3PHPSDK6.1.2";
const USERAGENT = "V3PHPSDK6.1.3";

public static function getType($string, $return=1)
{
Expand Down
13 changes: 13 additions & 0 deletions src/Data/IPPEmployee.php
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,19 @@ public function __construct($keyValInitializers=array(), $verbose=FALSE)
* @var float
*/
public $CostRate;
/**
* @Definition
Product: ALL
Description: Free form text describing the Employee.[br /]Max. length: 4000 characters.
* @xmlType element
* @xmlNamespace http://schema.intuit.com/finance/v3
* @xmlMinOccurs 0
* @xmlMaxOccurs 1
* @xmlName Notes
* @var string
*/
public $Notes;


} // end class IPPEmployee
11 changes: 11 additions & 0 deletions src/Data/IPPTimeActivity.php
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,17 @@ public function __construct($keyValInitializers=array(), $verbose=FALSE)
* @var com\intuit\schema\finance\v3\IPPReferenceType
*/
public $ProjectRef;
/**
* @Definition
The ID of the related TimeCharge transaction.
* @xmlType element
* @xmlNamespace http://schema.intuit.com/finance/v3
* @xmlMinOccurs 0
* @xmlName TimeChargeId
* @var integer
*/
public $TimeChargeId;
/**
* @Definition Billable status of the time recorded
Expand Down
7 changes: 7 additions & 0 deletions src/XSD/Finance.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -12118,6 +12118,13 @@
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TimeChargeId" type="xs:int" minOccurs="0">
<xs:annotation>
<xs:documentation>
The ID of the related TimeCharge transaction.
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="BillableStatus" type="BillableStatusEnum"
minOccurs="0">
<xs:annotation>
Expand Down
8 changes: 8 additions & 0 deletions src/XSD/IntuitNamesTypes.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -1205,6 +1205,14 @@
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Notes" type="xs:string" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation xml:lang="en">
Product: ALL
Description: Free form text describing the Employee.[br /]Max. length: 4000 characters.
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
Expand Down

0 comments on commit 2e7be89

Please sign in to comment.