Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for getDimensionRestrictedData #124

Closed
wants to merge 56 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
895f13d
added support for deleting timesheet entries
rudymalhi Jan 7, 2020
7ea26c6
Added support for get_companyprefs function
rudymalhi Jan 8, 2020
4ff05ea
Added session timeout field to client config
rudymalhi Jan 9, 2020
b146d87
added support to create a timesheet entry under an existing timesheet
rudymalhi Jan 9, 2020
3f290d9
added support for inspect and getDimensionRelationships
rudymalhi Jan 31, 2020
2dff62d
added tests for new functions
rudymalhi Feb 2, 2020
f8464ef
added getDimensions function
rudymalhi Feb 2, 2020
5cf9356
fixed timesheet update with entries to include recordno for entries
rudymalhi Jul 1, 2020
b9c7c64
publish under intacct-thyme
rudymalhi Jul 5, 2020
9057959
publish under intacct-thyme
rudymalhi Jul 5, 2020
2c7dc37
Fixed timehseet update with no entries
rudymalhi Jul 8, 2020
584ca15
support multi update of timesheet entries
rudymalhi Jul 16, 2020
d97ee92
added support for get_list function
rudymalhi Jul 22, 2020
7c7f271
added taskId to timesheet entry
rudymalhi Dec 17, 2020
68e9784
fixed rebase issues
rudymalhi Apr 29, 2021
47f16e7
changed indentation to fit origin
rudymalhi Apr 29, 2021
8fb1fc7
fixed indentations
rudymalhi Apr 29, 2021
84cdb1e
more indentation fixes
rudymalhi Apr 29, 2021
47ad18d
indentation fixes
rudymalhi Apr 29, 2021
8e90851
updated package name
rudymalhi Apr 29, 2021
d4f9b09
fixed export issues
rudymalhi Apr 29, 2021
220afdd
.
rudymalhi Apr 29, 2021
70151d9
bumped version to 2.1.4
rudymalhi Apr 29, 2021
3f66b68
fixed TimesheetUpdate
rudymalhi Jun 14, 2021
1c29baa
Added support for cost type in timesheet entry
rudymalhi Feb 1, 2022
f69bb8d
Merge remote-tracking branch 'upstream/master'
rudymalhi Jan 23, 2023
67dc35d
Create test.yml
rudymalhi Jan 23, 2023
b6d18f5
resolve merge conflicts
rudymalhi Jan 23, 2023
b1c3c1a
fixed dependency issue
rudymalhi Jan 23, 2023
795be4d
bumped ts-node
rudymalhi Jan 23, 2023
5300219
Merge pull request #2 from intacct-thyme/merge-2.2.0
rudymalhi Jan 23, 2023
62525c2
security update
rudymalhi Jan 23, 2023
f0ca9d3
Added support for bulk create timesheet entries
rudymalhi Feb 13, 2023
0c1d7fa
Support getting attachments
quinnturner Apr 26, 2023
4a81f06
fix: revert bumping xml2js
quinnturner Apr 28, 2023
7bd4e2e
fix: add missing test controlId
quinnturner Apr 28, 2023
9fd292a
feat: Add functionality to GetList
quinnturner May 2, 2023
cb98e51
Merge pull request #4 from intacct-thyme/get-list-operations
quinnturner May 2, 2023
4dba683
Merge pull request #3 from intacct-thyme/attachment
quinnturner May 2, 2023
244b1e0
bump version
rudymalhi May 2, 2023
cdf9931
feat: Add support for x-sage-app-id header
quinnturner Jun 2, 2023
5861b72
chore: Use GitHub Actions to release using GitHub Releases
quinnturner Jun 6, 2023
e3b8e12
fix: npmPublish use NODE_AUTH_TOKEN
quinnturner Jun 6, 2023
502d45c
fix: .npmrc
quinnturner Jun 6, 2023
a13ec07
fix: add registry-url
quinnturner Jun 6, 2023
de21157
add readUserFormatting
rudymalhi Jul 25, 2023
ed396ff
Merge pull request #10 from intacct-thyme/SIT-1733-add-support-for-re…
rudymalhi Jul 25, 2023
69cd298
add support for detailed inspect
rudymalhi Sep 11, 2023
a4228e6
Merge branch 'master' into fork-5
rudymalhi Sep 11, 2023
dd8cdaa
Merge pull request #11 from intacct-thyme/fork-5
rudymalhi Sep 11, 2023
91354fc
feat: Allow proxying Intacct API calls in local development (#12)
quinnturner Sep 22, 2023
20c7b9b
2.2.2-fork.8 (#13)
quinnturner Sep 22, 2023
19160a4
SIT-2174 support for CRE dimensions
rudymalhi Dec 4, 2023
f6076f8
preserve formatting
rudymalhi Dec 21, 2023
053244f
Merge pull request #14 from intacct-thyme/SIT-2174
rudymalhi Dec 21, 2023
167d807
SIT-2179 add support for getDimensionRestrictedData
rudymalhi Dec 21, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions .github/workflows/npmPublish.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@
name: Publish Package to npmjs
name: Publish to GitHub Packages
on:
release:
types: [created]
types: [published]
jobs:
build:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
# Setup .npmrc file to publish to npm
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v3
with:
node-version: '14.20.x'
registry-url: 'https://registry.npmjs.org'
node-version: '18.16.0'
registry-url: 'https://npm.pkg.github.com'
# Defaults to the user or organization that owns the workflow file
scope: '@intacct-thyme'
- run: npm ci
- run: npm run build
- run: npm test
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build and test

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm run build
- run: npm test
2 changes: 2 additions & 0 deletions .prettierrc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
tabWidth: 4
printWidth: 120
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"configurations": [
{
"name": "Launch via NPM",
"request": "launch",
"runtimeArgs": [
"run-script",
"test-mocha"
],
"runtimeExecutable": "npm",
"skipFiles": [
"<node_internals>/**"
],
"type": "node"
}
]
}
Loading