Skip to content

Commit 811ac28

Browse files
committed
SDK regeneration
1 parent e913fcb commit 811ac28

File tree

29 files changed

+3167
-2931
lines changed

29 files changed

+3167
-2931
lines changed

.mock/definition/hris/dependents.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ service:
2525
cursor:
2626
type: optional<string>
2727
docs: The pagination cursor value.
28+
employee_id:
29+
type: optional<string>
30+
docs: If provided, will only return dependents for this employee.
2831
include_deleted_data:
2932
type: optional<boolean>
3033
docs: >-

.mock/definition/hris/employees.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1183,6 +1183,9 @@ service:
11831183
display_full_name:
11841184
type: optional<string>
11851185
docs: If provided, will only return employees with this display name.
1186+
employee_number:
1187+
type: optional<string>
1188+
docs: If provided, will only return employees with this employee number.
11861189
employment_status:
11871190
type: optional<EmployeesListRequestEmploymentStatus>
11881191
docs: >-

.mock/definition/ticketing/__package__.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -843,6 +843,18 @@ types:
843843
parent_collection:
844844
type: optional<CollectionParentCollection>
845845
docs: The parent collection for this collection.
846+
collection_url:
847+
type: optional<string>
848+
docs: The 3rd party url of the Collection.
849+
validation:
850+
format: uri
851+
maxLength: 2000
852+
remote_created_at:
853+
type: optional<datetime>
854+
docs: When the third party's collection was created.
855+
remote_updated_at:
856+
type: optional<datetime>
857+
docs: When the third party's collection was updated.
846858
remote_was_deleted:
847859
type: optional<boolean>
848860
docs: >-

.mock/definition/ticketing/collections.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ service:
6161
docs: >-
6262
If provided, only objects synced by Merge before this date time
6363
will be returned.
64+
name:
65+
type: optional<string>
66+
docs: If provided, will only return collections with this name.
6467
page_size:
6568
type: optional<integer>
6669
docs: Number of results to return per page.
@@ -105,6 +108,9 @@ service:
105108
access_level: PRIVATE
106109
collection_type: LIST
107110
parent_collection: parent_collection
111+
collection_url: https://example.com
112+
remote_created_at: '2022-01-01T00:00:00Z'
113+
remote_updated_at: '2022-01-01T00:00:00Z'
108114
remote_was_deleted: true
109115
field_mappings:
110116
organization_defined_targets:
@@ -237,6 +243,9 @@ service:
237243
access_level: PRIVATE
238244
collection_type: LIST
239245
parent_collection: parent_collection
246+
collection_url: https://example.com
247+
remote_created_at: '2022-01-01T00:00:00Z'
248+
remote_updated_at: '2022-01-01T00:00:00Z'
240249
remote_was_deleted: true
241250
field_mappings:
242251
organization_defined_targets:

.mock/definition/ticketing/contacts.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ service:
2525
cursor:
2626
type: optional<string>
2727
docs: The pagination cursor value.
28+
email_address:
29+
type: optional<string>
30+
docs: If provided, will only return Contacts that match this email.
2831
expand:
2932
type: optional<literal<"account">>
3033
docs: >-

.mock/definition/ticketing/tickets.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1208,6 +1208,9 @@ service:
12081208
docs: >-
12091209
If provided, only objects synced by Merge before this date time
12101210
will be returned.
1211+
name:
1212+
type: optional<string>
1213+
docs: If provided, will only return tickets with this name.
12111214
page_size:
12121215
type: optional<integer>
12131216
docs: Number of results to return per page.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ from merge import Merge
171171
client = Merge(
172172
...,
173173
httpx_client=httpx.Client(
174-
proxies="http://my.test.proxy.example.com",
174+
proxy="http://my.test.proxy.example.com",
175175
transport=httpx.HTTPTransport(local_address="0.0.0.0"),
176176
),
177177
)
@@ -233,3 +233,4 @@ while response.next is not None:
233233

234234

235235

236+

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "MergePythonClient"
33

44
[tool.poetry]
55
name = "MergePythonClient"
6-
version = "2.3.1"
6+
version = "2.3.2"
77
description = ""
88
readme = "README.md"
99
authors = []

0 commit comments

Comments
 (0)