Skip to content

Commit

Permalink
Merge pull request #329 from sujitharamadass/June24Release
Browse files Browse the repository at this point in the history
Minor version 71 release
  • Loading branch information
sujitharamadass authored Jun 5, 2024
2 parents bc13280 + 2248745 commit aeada38
Show file tree
Hide file tree
Showing 9 changed files with 103 additions and 7 deletions.
4 changes: 2 additions & 2 deletions IPPDotNetDevKitCSV3/Code/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<PackageIcon>$(MSBuildThisFileDirectory)logo.png</PackageIcon>
<OutputPath>$(SolutionDir)artifacts\bin</OutputPath>
<Copyright>Copyright © 2020 Intuit, Inc.</Copyright>
<AssemblyVersion>14.6.3.6</AssemblyVersion>
<FileVersion>14.6.3.6</FileVersion>
<AssemblyVersion>14.6.3.7</AssemblyVersion>
<FileVersion>14.6.3.7</FileVersion>
<Company>Intuit</Company>
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
<value>Please specify a valid directory path.</value>
</data>
<data name="DefaultMinorVersionValue" xml:space="preserve">
<value>68</value>
<value>71</value>
</data>
<data name="ArgumentCannotBeGreaterThanBaseline" xml:space="preserve">
<value>The specified argument {0} cannot be greater than its ceiling value of {1}.</value>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<PackageId>IppDotNetSdkForQuickBooksApiV3</PackageId>
<AssemblyName>IppDotNetSdkForQuickBooksApiV3</AssemblyName>
<DocumentationFile>$(BaseOutputPath)$(AssemblyName).xml</DocumentationFile>
<MainVersion>14.6.3.6</MainVersion>
<MainVersion>14.6.3.7</MainVersion>
<PackageVersionSuffix>pre</PackageVersionSuffix>
<Version>$(MainVersion)-$(PackageVersionSuffix)</Version>
<Version>$(MainVersion)</Version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ public static class CoreConstants
/// <summary>
/// The Request source header value.
/// </summary>
public const string REQUESTSOURCEHEADER = "V3DotNetSDK14.6.3.6";
public const string REQUESTSOURCEHEADER = "V3DotNetSDK14.6.3.7";

/// <summary>
/// multipart/form-data format
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26657,6 +26657,10 @@ public partial class TimeActivity : IntuitEntity, IEntity {

private ReferenceType projectRefField;

private int timeChargeIdField;

private bool timeChargeIdFieldSpecified;

private BillableStatusEnum billableStatusField;

private bool billableStatusFieldSpecified;
Expand Down Expand Up @@ -26893,6 +26897,33 @@ public ReferenceType ProjectRef {
}
}

/// <remarks/>
/// <summary>
///
/// The ID of the related TimeCharge transaction.
///
/// </summary>
public int TimeChargeId {
get {
return this.timeChargeIdField;
}
set {
this.timeChargeIdField = value;
}
}

/// <remarks/>
[System.Xml.Serialization.XmlIgnoreAttribute()]
[JsonIgnore()]
public bool TimeChargeIdSpecified {
get {
return this.timeChargeIdFieldSpecified;
}
set {
this.timeChargeIdFieldSpecified = value;
}
}

/// <remarks/>
/// <summary>
/// Billable status of the time recorded
Expand Down Expand Up @@ -38151,6 +38182,8 @@ public partial class Employee : NameBase {

private bool costRateFieldSpecified;

private string notesField;

/// <remarks/>
/// <summary>
/// Specifies the Employee type. For QuickBooks Desktop the valid values are defined in the EmployeeTypeEnum.
Expand Down Expand Up @@ -38447,6 +38480,22 @@ public bool CostRateSpecified {
this.costRateFieldSpecified = value;
}
}

/// <remarks/>
/// <summary>
///
/// Product: ALL
/// Description: Free form text describing the Employee.[br /]Max. length: 4000 characters.
///
/// </summary>
public string Notes {
get {
return this.notesField;
}
set {
this.notesField = value;
}
}
}

/// <remarks/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<PackageOutputPath>$(SolutionDir)artifacts\nupkg</PackageOutputPath>
<OutputPath>$(SolutionDir)artifacts\bin</OutputPath>
<Copyright>Copyright © 2020 Intuit, Inc.</Copyright>
<AssemblyVersion>14.6.3.6</AssemblyVersion>
<FileVersion>14.6.3.6</FileVersion>
<AssemblyVersion>14.6.3.7</AssemblyVersion>
<FileVersion>14.6.3.7</FileVersion>
<Company>Intuit</Company>
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5018,6 +5018,17 @@
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ProjectRef" type="ReferenceType"
minOccurs="0">
<xs:annotation>
<xs:documentation>
Product: ALL
Description: Project identifier
References to the project this transaction
is associated with
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
Expand Down Expand Up @@ -6591,6 +6602,16 @@
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ProjectRef" type="ReferenceType" minOccurs="0">
<xs:annotation>
<xs:documentation>
Product: ALL
Description: Project identifier
References to the project this line
is associated with
</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Tag">
Expand Down Expand Up @@ -12086,6 +12107,17 @@
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="ProjectRef" type="ReferenceType"
minOccurs="0">
<xs:annotation>
<xs:documentation>
Product: ALL
Description: Project identifier
References to the project this line
is associated with
</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="BillableStatus" type="BillableStatusEnum"
minOccurs="0">
<xs:annotation>
Expand Down
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
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 aeada38

Please sign in to comment.