You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// - Remark: Generated from `#/paths//repos/{owner}/{repo}/hooks/{hook_id}/delete(repos/delete-webhook)`.
@@ -15011,29 +15015,35 @@ public enum Components {
15011
15015
public var payload: Swift.String?
15012
15016
/// - Remark: Generated from `#/components/schemas/verification/signature`.
15013
15017
public var signature: Swift.String?
15018
+
/// - Remark: Generated from `#/components/schemas/verification/verified_at`.
15019
+
public var verified_at: Swift.String?
15014
15020
/// Creates a new `verification`.
15015
15021
///
15016
15022
/// - Parameters:
15017
15023
/// - verified:
15018
15024
/// - reason:
15019
15025
/// - payload:
15020
15026
/// - signature:
15027
+
/// - verified_at:
15021
15028
public init(
15022
15029
verified: Swift.Bool,
15023
15030
reason: Swift.String,
15024
15031
payload: Swift.String? = nil,
15025
-
signature: Swift.String? = nil
15032
+
signature: Swift.String? = nil,
15033
+
verified_at: Swift.String? = nil
15026
15034
) {
15027
15035
self.verified = verified
15028
15036
self.reason = reason
15029
15037
self.payload = payload
15030
15038
self.signature = signature
15039
+
self.verified_at = verified_at
15031
15040
}
15032
15041
public enum CodingKeys: String, CodingKey {
15033
15042
case verified
15034
15043
case reason
15035
15044
case payload
15036
15045
case signature
15046
+
case verified_at
15037
15047
}
15038
15048
}
15039
15049
/// Diff Entry
@@ -18672,29 +18682,35 @@ public enum Components {
18672
18682
public var signature: Swift.String?
18673
18683
/// - Remark: Generated from `#/components/schemas/file-commit/commit/verification/payload`.
18674
18684
public var payload: Swift.String?
18685
+
/// - Remark: Generated from `#/components/schemas/file-commit/commit/verification/verified_at`.
18686
+
public var verified_at: Swift.String?
18675
18687
/// Creates a new `verificationPayload`.
18676
18688
///
18677
18689
/// - Parameters:
18678
18690
/// - verified:
18679
18691
/// - reason:
18680
18692
/// - signature:
18681
18693
/// - payload:
18694
+
/// - verified_at:
18682
18695
public init(
18683
18696
verified: Swift.Bool? = nil,
18684
18697
reason: Swift.String? = nil,
18685
18698
signature: Swift.String? = nil,
18686
-
payload: Swift.String? = nil
18699
+
payload: Swift.String? = nil,
18700
+
verified_at: Swift.String? = nil
18687
18701
) {
18688
18702
self.verified = verified
18689
18703
self.reason = reason
18690
18704
self.signature = signature
18691
18705
self.payload = payload
18706
+
self.verified_at = verified_at
18692
18707
}
18693
18708
public enum CodingKeys: String, CodingKey {
18694
18709
case verified
18695
18710
case reason
18696
18711
case signature
18697
18712
case payload
18713
+
case verified_at
18698
18714
}
18699
18715
}
18700
18716
/// - Remark: Generated from `#/components/schemas/file-commit/commit/verification`.
@@ -22210,10 +22226,10 @@ public enum Components {
22210
22226
///
22211
22227
/// - Remark: Generated from `#/components/parameters/ref-in-query`.
22212
22228
public typealias ref_hyphen_in_hyphen_query = Swift.String
22213
-
/// The name of the repository to filter on. When specified, only rule evaluations from this repository will be returned.
22229
+
/// The name of the repository to filter on.
22214
22230
///
22215
22231
/// - Remark: Generated from `#/components/parameters/repository-name-in-query`.
22216
-
public typealias repository_hyphen_name_hyphen_in_hyphen_query = Swift.Int
22232
+
public typealias repository_hyphen_name_hyphen_in_hyphen_query = Swift.String
22217
22233
/// The time period to filter by.
22218
22234
///
22219
22235
/// For example, `day` will filter for rule suites that occurred in the past 24 hours, and `week` will filter for insights that occurred in the past 7 days (168 hours).
@@ -23997,7 +24013,7 @@ public enum Operations {
23997
24013
///
23998
24014
/// - Remark: Generated from `#/paths/orgs/{org}/rulesets/rule-suites/GET/query/ref`.
23999
24015
public var ref: Components.Parameters.ref_hyphen_in_hyphen_query?
24000
-
/// The name of the repository to filter on. When specified, only rule evaluations from this repository will be returned.
24016
+
/// The name of the repository to filter on.
24001
24017
///
24002
24018
/// - Remark: Generated from `#/paths/orgs/{org}/rulesets/rule-suites/GET/query/repository_name`.
24003
24019
public var repository_name: Components.Parameters.repository_hyphen_name_hyphen_in_hyphen_query?
@@ -24041,7 +24057,7 @@ public enum Operations {
24041
24057
///
24042
24058
/// - Parameters:
24043
24059
/// - ref: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit to tags. Omit the prefix to search across all refs. When specified, only rule evaluations triggered for this ref will be returned.
24044
-
/// - repository_name: The name of the repository to filter on. When specified, only rule evaluations from this repository will be returned.
24060
+
/// - repository_name: The name of the repository to filter on.
24045
24061
/// - time_period: The time period to filter by.
24046
24062
/// - actor_name: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned.
24047
24063
/// - rule_suite_result: The rule results to filter on. When specified, only suites with this result will be returned.
@@ -46909,7 +46925,9 @@ public enum Operations {
46909
46925
}
46910
46926
/// Delete a repository webhook
46911
46927
///
46928
+
/// Delete a webhook for an organization.
46912
46929
///
46930
+
/// The authenticated user must be a repository owner, or have admin access in the repository, to delete the webhook.
0 commit comments