Skip to content
This repository was archived by the owner on Jun 2, 2025. It is now read-only.

Commit 0894b29

Browse files
authored
Automated update by SDK Generator version:3.8.0 commit:cf04569 (#235)
1 parent a24ae13 commit 0894b29

4 files changed

Lines changed: 14 additions & 5 deletions

File tree

src/gen/docs/models/ConsumerConnection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Name | Type | Description | Notes
1616
`consumer_id` | **string** | | [optional]
1717
`auth_type` | [**AuthType**](AuthType.md) | | [optional]
1818
`enabled` | **boolean** | | [optional]
19-
`settings` | **object** | Connection settings. Values will persist to `form_fields` with corresponding id | [optional]
19+
`settings` | **{ [key: string]: object; }** | Connection settings. Values will persist to `form_fields` with corresponding id | [optional]
2020
`metadata` | **{ [key: string]: object; }** | Attach your own consumer specific metadata | [optional]
2121
`created_at` | **string** | | [optional]
2222
`updated_at` | **string** | | [optional]

src/gen/docs/models/EmployeesFilter.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
1414
`employment_status` | **string** | Employment status to filter on | [optional]
1515
`employee_number` | **string** | Employee number to filter on | [optional]
1616
`department_id` | **string** | ID of the department to filter on | [optional]
17+
`city` | **string** | City to filter on | [optional]
1718

1819

1920

src/gen/models/ConsumerConnection.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,10 @@ export interface ConsumerConnection {
9090
enabled?: boolean
9191
/**
9292
* Connection settings. Values will persist to `form_fields` with corresponding id
93-
* @type {object}
93+
* @type {{ [key: string]: unknown; }}
9494
* @memberof ConsumerConnection
9595
*/
96-
settings?: object | null
96+
settings?: { [key: string]: unknown } | null
9797
/**
9898
* Attach your own consumer specific metadata
9999
* @type {{ [key: string]: unknown; }}

src/gen/models/EmployeesFilter.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,12 @@ export interface EmployeesFilter {
7373
* @memberof EmployeesFilter
7474
*/
7575
department_id?: string
76+
/**
77+
* City to filter on
78+
* @type {string}
79+
* @memberof EmployeesFilter
80+
*/
81+
city?: string
7682
}
7783

7884
/**
@@ -106,7 +112,8 @@ export function EmployeesFilterFromJSONTyped(
106112
manager_id: !exists(json, 'manager_id') ? undefined : json['manager_id'],
107113
employment_status: !exists(json, 'employment_status') ? undefined : json['employment_status'],
108114
employee_number: !exists(json, 'employee_number') ? undefined : json['employee_number'],
109-
department_id: !exists(json, 'department_id') ? undefined : json['department_id']
115+
department_id: !exists(json, 'department_id') ? undefined : json['department_id'],
116+
city: !exists(json, 'city') ? undefined : json['city']
110117
}
111118
}
112119

@@ -126,6 +133,7 @@ export function EmployeesFilterToJSON(value?: EmployeesFilter | null): any {
126133
manager_id: value.manager_id,
127134
employment_status: value.employment_status,
128135
employee_number: value.employee_number,
129-
department_id: value.department_id
136+
department_id: value.department_id,
137+
city: value.city
130138
}
131139
}

0 commit comments

Comments
 (0)