@@ -2225,19 +2225,19 @@ public enum Components {
2225
2225
/// The authentication secret obtained from PushSubscription.getKey('auth'). Used to encrypt push messages for this subscription.
2226
2226
///
2227
2227
/// - Remark: Generated from `#/components/schemas/WebPushToken/keys/auth`.
2228
- public var auth : Swift . String
2228
+ public var auth : OpenAPIRuntime . Base64EncodedData
2229
2229
/// The P-256 ECDH public key obtained from PushSubscription.getKey('p256dh'). Used to encrypt push messages for this subscription.
2230
2230
///
2231
2231
/// - Remark: Generated from `#/components/schemas/WebPushToken/keys/p256dh`.
2232
- public var p256dh : Swift . String
2232
+ public var p256dh : OpenAPIRuntime . Base64EncodedData
2233
2233
/// Creates a new `keysPayload`.
2234
2234
///
2235
2235
/// - Parameters:
2236
2236
/// - auth: The authentication secret obtained from PushSubscription.getKey('auth'). Used to encrypt push messages for this subscription.
2237
2237
/// - p256dh: The P-256 ECDH public key obtained from PushSubscription.getKey('p256dh'). Used to encrypt push messages for this subscription.
2238
2238
public init (
2239
- auth: Swift . String ,
2240
- p256dh: Swift . String
2239
+ auth: OpenAPIRuntime . Base64EncodedData ,
2240
+ p256dh: OpenAPIRuntime . Base64EncodedData
2241
2241
) {
2242
2242
self . auth = auth
2243
2243
self . p256dh = p256dh
@@ -2287,19 +2287,19 @@ public enum Components {
2287
2287
/// The authentication secret obtained from PushSubscription.getKey('auth'). Used to encrypt push messages for this subscription.
2288
2288
///
2289
2289
/// - Remark: Generated from `#/components/schemas/WebPushTokenResponse/keys/auth`.
2290
- public var auth : Swift . String
2290
+ public var auth : OpenAPIRuntime . Base64EncodedData
2291
2291
/// The P-256 ECDH public key obtained from PushSubscription.getKey('p256dh'). Used to encrypt push messages for this subscription.
2292
2292
///
2293
2293
/// - Remark: Generated from `#/components/schemas/WebPushTokenResponse/keys/p256dh`.
2294
- public var p256dh : Swift . String
2294
+ public var p256dh : OpenAPIRuntime . Base64EncodedData
2295
2295
/// Creates a new `keysPayload`.
2296
2296
///
2297
2297
/// - Parameters:
2298
2298
/// - auth: The authentication secret obtained from PushSubscription.getKey('auth'). Used to encrypt push messages for this subscription.
2299
2299
/// - p256dh: The P-256 ECDH public key obtained from PushSubscription.getKey('p256dh'). Used to encrypt push messages for this subscription.
2300
2300
public init (
2301
- auth: Swift . String ,
2302
- p256dh: Swift . String
2301
+ auth: OpenAPIRuntime . Base64EncodedData ,
2302
+ p256dh: OpenAPIRuntime . Base64EncodedData
2303
2303
) {
2304
2304
self . auth = auth
2305
2305
self . p256dh = p256dh
0 commit comments