Skip to content

Commit 799d9b4

Browse files
Update: improve nested object serialization
Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
1 parent 13ad407 commit 799d9b4

File tree

57 files changed

+9816
-21
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+9816
-21
lines changed

.mock/definition/accounting/__package__.yml

Lines changed: 3089 additions & 0 deletions
Large diffs are not rendered by default.

.mock/definition/accounting/employees.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,17 @@ service:
1414
request:
1515
name: EmployeesListRequest
1616
query-parameters:
17+
company_id:
18+
type: optional<string>
19+
docs: If provided, will only return employees for this company.
20+
created_after:
21+
type: optional<datetime>
22+
docs: If provided, will only return objects created after this datetime.
23+
created_before:
24+
type: optional<datetime>
25+
docs: >-
26+
If provided, will only return objects created before this
27+
datetime.
1728
cursor:
1829
type: optional<string>
1930
docs: The pagination cursor value.
@@ -40,9 +51,22 @@ service:
4051
docs: >-
4152
Whether to include shell records. Shell records are empty records
4253
(they may contain some metadata but all other fields are null).
54+
modified_after:
55+
type: optional<datetime>
56+
docs: >-
57+
If provided, only objects synced by Merge after this date time
58+
will be returned.
59+
modified_before:
60+
type: optional<datetime>
61+
docs: >-
62+
If provided, only objects synced by Merge before this date time
63+
will be returned.
4364
page_size:
4465
type: optional<integer>
4566
docs: Number of results to return per page.
67+
remote_id:
68+
type: optional<string>
69+
docs: The API provider's ID for the given object.
4670
response:
4771
docs: ''
4872
type: root.PaginatedEmployeeList

0 commit comments

Comments
 (0)