-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added docparid for Lookup (#210) * fixed field name for deliveryoptions (#211) * SessionTimeOut - I166 enhancement (#212) * update dependencies and supported versions of .NET Removed support for .NET 4.6.1 and .NET Core 2.1 since they are no longer supported. Updated dependencies * added clientStatus/Id, sessionTimeStamp * Revert "update dependencies and supported versions of .NET" This reverts commit d8d8406. * added sessionTimeOut field * Added taskid and costtypeid for ExpenseReportLine (#213) * enabled projectId for PurchasingTransaction (#214) * Correcting fields, filter, and sorts node logic. (#184) * Implement ci (#220) * added .NET6, removed deprecated versions * added conditionals for net3.1 vs net6 * Create dotnet-ci.yml (#216) * Create dotnet-ci.yml * Update dotnet-ci.yml * Update dotnet-ci.yml * added AR Advance for Create/Update (#219) * added AR Advance for Create/Update * fixed indentation for ArAdvanceCreateTest * fixed indentation for ArAdvanceUpdateTest * Revert "fixed indentation for ArAdvanceUpdateTest" This reverts commit 42b57dd. * Revert "fixed indentation for ArAdvanceCreateTest" This reverts commit 7cddd3f. * bump copyright year to 2022 * updated copyright year * added DateTime flow for customFields (#221) * added DateTime flow for customFields * updated based on feedback * update doxygen related files * Automated publish activity, updated ReadMe (#226) * Create publish.yml (#225) * Update publish.yml * Delete .travis.yml * Update README.md * updated based on feedback * bump version in RequestHandler Co-authored-by: Craig Buchanan <[email protected]>
- Loading branch information
1 parent
da77f2d
commit 773557c
Showing
589 changed files
with
1,820 additions
and
783 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Intacct .NET SDK CI | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build_and_test: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
dotnet-version: ['3.1', '6.x'] | ||
|
||
name: .NET v${{ matrix.dotnet-version }} | ||
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup .NET ${{ matrix.dotnet-version }} | ||
uses: actions/setup-dotnet@v2 | ||
with: | ||
dotnet-version: | | ||
3.1 | ||
6.x | ||
- name: Install dependencies for .NET ${{ matrix.dotnet-version }} | ||
run: dotnet restore | ||
|
||
- name: Build | ||
run: dotnet build | ||
|
||
- name: Test | ||
run: dotnet test | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Publish Package to nuget | ||
|
||
on: | ||
release: | ||
types: [create] | ||
|
||
jobs: | ||
build: | ||
env: | ||
BUILD_CONFIG: Release | ||
SOLUTION: 'intacct-sdk-net.sln' | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup NuGet | ||
uses: NuGet/[email protected] | ||
|
||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v2 | ||
with: | ||
dotnet-version: 6.x | ||
|
||
- name: Install dependencies | ||
run: dotnet restore | ||
|
||
- name: Build | ||
run: dotnet build $SOLUTION --configuration $BUILD_CONFIG --no-restore | ||
|
||
- name: Test | ||
run: dotnet test | ||
|
||
- name: Pack | ||
run: dotnet pack | ||
|
||
- name: Publish to NuGet | ||
run: nuget push **\*.nupkg -Source 'https://api.nuget.org/v3/index.json' -ApiKey ${{secrets.NUGET_API_KEY}} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsPayable/ApAdjustmentCreateTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsPayable/ApAdjustmentDeleteTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsPayable/ApAdjustmentLineCreateTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsPayable/ApAdjustmentSummaryCreateTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentApproveTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentConfirmTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentCreateTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentDeclineTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentDeleteTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentReverseTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentSendTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsPayable/ApPaymentVoidTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsPayable/BillLineCreateTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsPayable/BillSummaryCreateTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsPayable/VendorCreateTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsPayable/VendorDeleteTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsPayable/VendorUpdateTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsReceivable/ArAdjustmentCreateTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsReceivable/ArAdjustmentDeleteTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsReceivable/ArAdjustmentLineCreateTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
Intacct.SDK.Tests/Functions/AccountsReceivable/ArAdjustmentSummaryCreateTest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.