Skip to content

Commit 2e7be89

Browse files
Merge pull request #513 from Jayashreesidd/may24release
Minor version 71 release may'24
2 parents a4039a8 + 383604b commit 2e7be89

File tree

5 files changed

+41
-2
lines changed

5 files changed

+41
-2
lines changed

src/Core/CoreConstants.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
class CoreConstants
88
{
99
//Set the default minor version
10-
const DEFAULT_SDK_MINOR_VERSION = "68";
10+
const DEFAULT_SDK_MINOR_VERSION = "71";
1111
const DEFAULT_LOGGINGLOCATION = "/tmp/IdsLogs";
1212

1313
const PHP_CLASS_PREFIX = 'IPP';
@@ -297,7 +297,7 @@ class CoreConstants
297297
* The Request source header value.
298298
* @var string REQUESTSOURCEHEADER
299299
*/
300-
const USERAGENT = "V3PHPSDK6.1.2";
300+
const USERAGENT = "V3PHPSDK6.1.3";
301301

302302
public static function getType($string, $return=1)
303303
{

src/Data/IPPEmployee.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,19 @@ public function __construct($keyValInitializers=array(), $verbose=FALSE)
180180
* @var float
181181
*/
182182
public $CostRate;
183+
/**
184+
* @Definition
185+
Product: ALL
186+
Description: Free form text describing the Employee.[br /]Max. length: 4000 characters.
187+
188+
* @xmlType element
189+
* @xmlNamespace http://schema.intuit.com/finance/v3
190+
* @xmlMinOccurs 0
191+
* @xmlMaxOccurs 1
192+
* @xmlName Notes
193+
* @var string
194+
*/
195+
public $Notes;
183196

184197

185198
} // end class IPPEmployee

src/Data/IPPTimeActivity.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,17 @@ public function __construct($keyValInitializers=array(), $verbose=FALSE)
170170
* @var com\intuit\schema\finance\v3\IPPReferenceType
171171
*/
172172
public $ProjectRef;
173+
/**
174+
* @Definition
175+
The ID of the related TimeCharge transaction.
176+
177+
* @xmlType element
178+
* @xmlNamespace http://schema.intuit.com/finance/v3
179+
* @xmlMinOccurs 0
180+
* @xmlName TimeChargeId
181+
* @var integer
182+
*/
183+
public $TimeChargeId;
173184
/**
174185
* @Definition Billable status of the time recorded
175186

src/XSD/Finance.xsd

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12118,6 +12118,13 @@
1211812118
</xs:documentation>
1211912119
</xs:annotation>
1212012120
</xs:element>
12121+
<xs:element name="TimeChargeId" type="xs:int" minOccurs="0">
12122+
<xs:annotation>
12123+
<xs:documentation>
12124+
The ID of the related TimeCharge transaction.
12125+
</xs:documentation>
12126+
</xs:annotation>
12127+
</xs:element>
1212112128
<xs:element name="BillableStatus" type="BillableStatusEnum"
1212212129
minOccurs="0">
1212312130
<xs:annotation>

src/XSD/IntuitNamesTypes.xsd

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1205,6 +1205,14 @@
12051205
</xs:documentation>
12061206
</xs:annotation>
12071207
</xs:element>
1208+
<xs:element name="Notes" type="xs:string" minOccurs="0" maxOccurs="1">
1209+
<xs:annotation>
1210+
<xs:documentation xml:lang="en">
1211+
Product: ALL
1212+
Description: Free form text describing the Employee.[br /]Max. length: 4000 characters.
1213+
</xs:documentation>
1214+
</xs:annotation>
1215+
</xs:element>
12081216
</xs:sequence>
12091217
</xs:extension>
12101218
</xs:complexContent>

0 commit comments

Comments
 (0)