Skip to content

Commit 4191f5c

Browse files
Commit via running ake Sources/git
1 parent fa19b87 commit 4191f5c

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

Sources/git/Types.swift

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -787,29 +787,35 @@ public enum Components {
787787
public var payload: Swift.String?
788788
/// - Remark: Generated from `#/components/schemas/verification/signature`.
789789
public var signature: Swift.String?
790+
/// - Remark: Generated from `#/components/schemas/verification/verified_at`.
791+
public var verified_at: Swift.String?
790792
/// Creates a new `verification`.
791793
///
792794
/// - Parameters:
793795
/// - verified:
794796
/// - reason:
795797
/// - payload:
796798
/// - signature:
799+
/// - verified_at:
797800
public init(
798801
verified: Swift.Bool,
799802
reason: Swift.String,
800803
payload: Swift.String? = nil,
801-
signature: Swift.String? = nil
804+
signature: Swift.String? = nil,
805+
verified_at: Swift.String? = nil
802806
) {
803807
self.verified = verified
804808
self.reason = reason
805809
self.payload = payload
806810
self.signature = signature
811+
self.verified_at = verified_at
807812
}
808813
public enum CodingKeys: String, CodingKey {
809814
case verified
810815
case reason
811816
case payload
812817
case signature
818+
case verified_at
813819
}
814820
}
815821
/// The ID of the push protection bypass placeholder. This value is returned on any push protected routes.
@@ -1158,29 +1164,35 @@ public enum Components {
11581164
public var signature: Swift.String?
11591165
/// - Remark: Generated from `#/components/schemas/git-commit/verification/payload`.
11601166
public var payload: Swift.String?
1167+
/// - Remark: Generated from `#/components/schemas/git-commit/verification/verified_at`.
1168+
public var verified_at: Swift.String?
11611169
/// Creates a new `verificationPayload`.
11621170
///
11631171
/// - Parameters:
11641172
/// - verified:
11651173
/// - reason:
11661174
/// - signature:
11671175
/// - payload:
1176+
/// - verified_at:
11681177
public init(
11691178
verified: Swift.Bool,
11701179
reason: Swift.String,
11711180
signature: Swift.String? = nil,
1172-
payload: Swift.String? = nil
1181+
payload: Swift.String? = nil,
1182+
verified_at: Swift.String? = nil
11731183
) {
11741184
self.verified = verified
11751185
self.reason = reason
11761186
self.signature = signature
11771187
self.payload = payload
1188+
self.verified_at = verified_at
11781189
}
11791190
public enum CodingKeys: String, CodingKey {
11801191
case verified
11811192
case reason
11821193
case signature
11831194
case payload
1195+
case verified_at
11841196
}
11851197
}
11861198
/// - Remark: Generated from `#/components/schemas/git-commit/verification`.

0 commit comments

Comments
 (0)