Skip to content

Commit 86f0c4b

Browse files
Update API Client
#### What's Changed --- ##### `POST` /core/users/{id}/set_password/ ###### Request: Changed content type : `application/json` ##### `GET` /policies/geoip/{policy_uuid}/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `countries` (array) ##### `PUT` /policies/geoip/{policy_uuid}/ ###### Request: Changed content type : `application/json` * Changed property `countries` (array) ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `countries` (array) ##### `PATCH` /policies/geoip/{policy_uuid}/ ###### Request: Changed content type : `application/json` * Changed property `countries` (array) ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `countries` (array) ##### `POST` /policies/geoip/ ###### Request: Changed content type : `application/json` * Changed property `countries` (array) ###### Return Type: Changed response : **201 Created** * Changed content type : `application/json` * Changed property `countries` (array) ##### `GET` /policies/geoip/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `results` (array) Changed items (object): > GeoIP Policy Serializer * Changed property `countries` (array)
1 parent 226b293 commit 86f0c4b

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Sources/authentikClient/Models/UserPasswordSetRequest.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
import Foundation
99

10+
/** Payload to set a users' password directly */
1011
public struct UserPasswordSetRequest: Sendable, Codable, ParameterConvertible, Hashable {
1112

1213
public static let passwordRule = StringRule(minLength: 1, maxLength: nil, pattern: nil)

schema.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61879,6 +61879,7 @@ components:
6187961879
- object_pk
6188061880
UserPasswordSetRequest:
6188161881
type: object
61882+
description: Payload to set a users' password directly
6188261883
properties:
6188361884
password:
6188461885
type: string

0 commit comments

Comments
 (0)