Skip to content

🌿 Fern Regeneration -- July 18, 2025 #126

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

Merged
merged 1 commit into from
Jul 21, 2025
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3,089 changes: 3,089 additions & 0 deletions .mock/definition/accounting/__package__.yml

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions .mock/definition/accounting/employees.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,17 @@ service:
request:
name: EmployeesListRequest
query-parameters:
company_id:
type: optional<string>
docs: If provided, will only return employees for this company.
created_after:
type: optional<datetime>
docs: If provided, will only return objects created after this datetime.
created_before:
type: optional<datetime>
docs: >-
If provided, will only return objects created before this
datetime.
cursor:
type: optional<string>
docs: The pagination cursor value.
Expand All @@ -40,9 +51,22 @@ service:
docs: >-
Whether to include shell records. Shell records are empty records
(they may contain some metadata but all other fields are null).
modified_after:
type: optional<datetime>
docs: >-
If provided, only objects synced by Merge after this date time
will be returned.
modified_before:
type: optional<datetime>
docs: >-
If provided, only objects synced by Merge before this date time
will be returned.
page_size:
type: optional<integer>
docs: Number of results to return per page.
remote_id:
type: optional<string>
docs: The API provider's ID for the given object.
response:
docs: ''
type: root.PaginatedEmployeeList
Expand Down
Loading