Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .fernignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@

README.md
LICENSE.md
.github/workflows/ci.yml
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ jobs:
uses: actions/setup-node@v3

- name: Compile
run: yarn && yarn test
run: yarn && yarn test
env:
SDK_TESTING_KEY: ${{ secrets.SDK_TESTING_KEY }}
SDK_TESTING_KNOWLEDGEBASE_ACCOUNT_TOKEN: ${{ secrets.SDK_TESTING_KNOWLEDGEBASE_ACCOUNT_TOKEN }}
SDK_TESTING_FILE_STORAGE_ACCOUNT_TOKEN: ${{ secrets.SDK_TESTING_FILE_STORAGE_ACCOUNT_TOKEN }}

publish:
needs: [ compile, test ]
Expand Down
3 changes: 3 additions & 0 deletions .mock/definition/hris/dependents.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ service:
cursor:
type: optional<string>
docs: The pagination cursor value.
employee_id:
type: optional<string>
docs: If provided, will only return dependents for this employee.
include_deleted_data:
type: optional<boolean>
docs: >-
Expand Down
3 changes: 3 additions & 0 deletions .mock/definition/hris/employees.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1183,6 +1183,9 @@ service:
display_full_name:
type: optional<string>
docs: If provided, will only return employees with this display name.
employee_number:
type: optional<string>
docs: If provided, will only return employees with this employee number.
employment_status:
type: optional<EmployeesListRequestEmploymentStatus>
docs: >-
Expand Down
Loading
Loading