Skip to content

Commit b50e40b

Browse files
Commit via running ake Sources/rate-limit
1 parent 208e1f4 commit b50e40b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Sources/rate-limit/Types.swift

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,8 @@ public enum Components {
175175
public var scim: Components.Schemas.rate_hyphen_limit?
176176
/// - Remark: Generated from `#/components/schemas/rate-limit-overview/resources/dependency_snapshots`.
177177
public var dependency_snapshots: Components.Schemas.rate_hyphen_limit?
178+
/// - Remark: Generated from `#/components/schemas/rate-limit-overview/resources/code_scanning_autofix`.
179+
public var code_scanning_autofix: Components.Schemas.rate_hyphen_limit?
178180
/// Creates a new `resourcesPayload`.
179181
///
180182
/// - Parameters:
@@ -188,6 +190,7 @@ public enum Components {
188190
/// - actions_runner_registration:
189191
/// - scim:
190192
/// - dependency_snapshots:
193+
/// - code_scanning_autofix:
191194
public init(
192195
core: Components.Schemas.rate_hyphen_limit,
193196
graphql: Components.Schemas.rate_hyphen_limit? = nil,
@@ -198,7 +201,8 @@ public enum Components {
198201
code_scanning_upload: Components.Schemas.rate_hyphen_limit? = nil,
199202
actions_runner_registration: Components.Schemas.rate_hyphen_limit? = nil,
200203
scim: Components.Schemas.rate_hyphen_limit? = nil,
201-
dependency_snapshots: Components.Schemas.rate_hyphen_limit? = nil
204+
dependency_snapshots: Components.Schemas.rate_hyphen_limit? = nil,
205+
code_scanning_autofix: Components.Schemas.rate_hyphen_limit? = nil
202206
) {
203207
self.core = core
204208
self.graphql = graphql
@@ -210,6 +214,7 @@ public enum Components {
210214
self.actions_runner_registration = actions_runner_registration
211215
self.scim = scim
212216
self.dependency_snapshots = dependency_snapshots
217+
self.code_scanning_autofix = code_scanning_autofix
213218
}
214219
public enum CodingKeys: String, CodingKey {
215220
case core
@@ -222,6 +227,7 @@ public enum Components {
222227
case actions_runner_registration
223228
case scim
224229
case dependency_snapshots
230+
case code_scanning_autofix
225231
}
226232
}
227233
/// - Remark: Generated from `#/components/schemas/rate-limit-overview/resources`.

0 commit comments

Comments
 (0)