Skip to content

Commit b338a77

Browse files
Commit via running ake Sources/meta
1 parent 15780c3 commit b338a77

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Sources/meta/Types.swift

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,8 @@ public enum Components {
445445
public var actions_macos: [Swift.String]?
446446
/// - Remark: Generated from `#/components/schemas/api-overview/dependabot`.
447447
public var dependabot: [Swift.String]?
448+
/// - Remark: Generated from `#/components/schemas/api-overview/copilot`.
449+
public var copilot: [Swift.String]?
448450
/// - Remark: Generated from `#/components/schemas/api-overview/domains`.
449451
public struct domainsPayload: Codable, Hashable, Sendable {
450452
/// - Remark: Generated from `#/components/schemas/api-overview/domains/website`.
@@ -505,6 +507,7 @@ public enum Components {
505507
/// - actions:
506508
/// - actions_macos:
507509
/// - dependabot:
510+
/// - copilot:
508511
/// - domains:
509512
public init(
510513
verifiable_password_authentication: Swift.Bool,
@@ -521,6 +524,7 @@ public enum Components {
521524
actions: [Swift.String]? = nil,
522525
actions_macos: [Swift.String]? = nil,
523526
dependabot: [Swift.String]? = nil,
527+
copilot: [Swift.String]? = nil,
524528
domains: Components.Schemas.api_hyphen_overview.domainsPayload? = nil
525529
) {
526530
self.verifiable_password_authentication = verifiable_password_authentication
@@ -537,6 +541,7 @@ public enum Components {
537541
self.actions = actions
538542
self.actions_macos = actions_macos
539543
self.dependabot = dependabot
544+
self.copilot = copilot
540545
self.domains = domains
541546
}
542547
public enum CodingKeys: String, CodingKey {
@@ -554,6 +559,7 @@ public enum Components {
554559
case actions
555560
case actions_macos
556561
case dependabot
562+
case copilot
557563
case domains
558564
}
559565
}

0 commit comments

Comments
 (0)