Skip to content
This repository was archived by the owner on Apr 17, 2024. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f0ec438

Browse files
committedJan 14, 2024
Update API Client
#### What's Changed --- ##### `GET` /propertymappings/rac/ ###### Parameters: Changed: `managed` in `query`
1 parent f069cc5 commit f0ec438

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed
 

‎authentikClient/Classes/OpenAPIs/APIs/PropertymappingsAPI.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1129,7 +1129,7 @@ open class PropertymappingsAPI {
11291129
- parameter completion: completion handler to receive the data and the error objects
11301130
*/
11311131
@discardableResult
1132-
open class func propertymappingsRacList(managed: String? = nil, name: String? = nil, ordering: String? = nil, page: Int? = nil, pageSize: Int? = nil, search: String? = nil, apiResponseQueue: DispatchQueue = authentikClientAPI.apiResponseQueue, completion: @escaping ((_ data: PaginatedRACPropertyMappingList?, _ error: Error?) -> Void)) -> RequestTask {
1132+
open class func propertymappingsRacList(managed: [String]? = nil, name: String? = nil, ordering: String? = nil, page: Int? = nil, pageSize: Int? = nil, search: String? = nil, apiResponseQueue: DispatchQueue = authentikClientAPI.apiResponseQueue, completion: @escaping ((_ data: PaginatedRACPropertyMappingList?, _ error: Error?) -> Void)) -> RequestTask {
11331133
return propertymappingsRacListWithRequestBuilder(managed: managed, name: name, ordering: ordering, page: page, pageSize: pageSize, search: search).execute(apiResponseQueue) { result in
11341134
switch result {
11351135
case let .success(response):
@@ -1154,7 +1154,7 @@ open class PropertymappingsAPI {
11541154
- parameter search: (query) A search term. (optional)
11551155
- returns: RequestBuilder<PaginatedRACPropertyMappingList>
11561156
*/
1157-
open class func propertymappingsRacListWithRequestBuilder(managed: String? = nil, name: String? = nil, ordering: String? = nil, page: Int? = nil, pageSize: Int? = nil, search: String? = nil) -> RequestBuilder<PaginatedRACPropertyMappingList> {
1157+
open class func propertymappingsRacListWithRequestBuilder(managed: [String]? = nil, name: String? = nil, ordering: String? = nil, page: Int? = nil, pageSize: Int? = nil, search: String? = nil) -> RequestBuilder<PaginatedRACPropertyMappingList> {
11581158
let localVariablePath = "/propertymappings/rac/"
11591159
let localVariableURLString = authentikClientAPI.basePath + localVariablePath
11601160
let localVariableParameters: [String: Any]? = nil

‎docs/PropertymappingsAPI.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1174,7 +1174,7 @@ Void (empty response body)
11741174

11751175
# **propertymappingsRacList**
11761176
```swift
1177-
open class func propertymappingsRacList(managed: String? = nil, name: String? = nil, ordering: String? = nil, page: Int? = nil, pageSize: Int? = nil, search: String? = nil, completion: @escaping (_ data: PaginatedRACPropertyMappingList?, _ error: Error?) -> Void)
1177+
open class func propertymappingsRacList(managed: [String]? = nil, name: String? = nil, ordering: String? = nil, page: Int? = nil, pageSize: Int? = nil, search: String? = nil, completion: @escaping (_ data: PaginatedRACPropertyMappingList?, _ error: Error?) -> Void)
11781178
```
11791179

11801180

@@ -1186,7 +1186,7 @@ RACPropertyMapping Viewset
11861186
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
11871187
import authentikClient
11881188

1189-
let managed = "managed_example" // String | (optional)
1189+
let managed = ["inner_example"] // [String] | (optional)
11901190
let name = "name_example" // String | (optional)
11911191
let ordering = "ordering_example" // String | Which field to use when ordering the results. (optional)
11921192
let page = 987 // Int | A page number within the paginated result set. (optional)
@@ -1209,7 +1209,7 @@ PropertymappingsAPI.propertymappingsRacList(managed: managed, name: name, orderi
12091209

12101210
Name | Type | Description | Notes
12111211
------------- | ------------- | ------------- | -------------
1212-
**managed** | **String** | | [optional]
1212+
**managed** | [**[String]**](String.md) | | [optional]
12131213
**name** | **String** | | [optional]
12141214
**ordering** | **String** | Which field to use when ordering the results. | [optional]
12151215
**page** | **Int** | A page number within the paginated result set. | [optional]

‎schema.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13961,7 +13961,11 @@ paths:
1396113961
- in: query
1396213962
name: managed
1396313963
schema:
13964-
type: string
13964+
type: array
13965+
items:
13966+
type: string
13967+
explode: true
13968+
style: form
1396513969
- in: query
1396613970
name: name
1396713971
schema:

0 commit comments

Comments
 (0)
This repository has been archived.