Skip to content

Commit 415e83f

Browse files
Commit via running: make Sources/actions
1 parent cdf9e7e commit 415e83f

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

Sources/actions/Types.swift

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6414,6 +6414,30 @@ public enum Components {
64146414
public var webCommitSignoffRequired: Swift.Bool?
64156415
/// - Remark: Generated from `#/components/schemas/minimal-repository/security_and_analysis`.
64166416
public var securityAndAnalysis: Components.Schemas.SecurityAndAnalysis?
6417+
/// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values.
6418+
///
6419+
/// - Remark: Generated from `#/components/schemas/minimal-repository/custom_properties`.
6420+
public struct CustomPropertiesPayload: Codable, Hashable, Sendable {
6421+
/// A container of undocumented properties.
6422+
public var additionalProperties: OpenAPIRuntime.OpenAPIObjectContainer
6423+
/// Creates a new `CustomPropertiesPayload`.
6424+
///
6425+
/// - Parameters:
6426+
/// - additionalProperties: A container of undocumented properties.
6427+
public init(additionalProperties: OpenAPIRuntime.OpenAPIObjectContainer = .init()) {
6428+
self.additionalProperties = additionalProperties
6429+
}
6430+
public init(from decoder: any Decoder) throws {
6431+
additionalProperties = try decoder.decodeAdditionalProperties(knownKeys: [])
6432+
}
6433+
public func encode(to encoder: any Encoder) throws {
6434+
try encoder.encodeAdditionalProperties(additionalProperties)
6435+
}
6436+
}
6437+
/// The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values.
6438+
///
6439+
/// - Remark: Generated from `#/components/schemas/minimal-repository/custom_properties`.
6440+
public var customProperties: Components.Schemas.MinimalRepository.CustomPropertiesPayload?
64176441
/// Creates a new `MinimalRepository`.
64186442
///
64196443
/// - Parameters:
@@ -6504,6 +6528,7 @@ public enum Components {
65046528
/// - allowForking:
65056529
/// - webCommitSignoffRequired:
65066530
/// - securityAndAnalysis:
6531+
/// - customProperties: The custom properties that were defined for the repository. The keys are the custom property names, and the values are the corresponding custom property values.
65076532
public init(
65086533
id: Swift.Int64,
65096534
nodeId: Swift.String,
@@ -6591,7 +6616,8 @@ public enum Components {
65916616
watchers: Swift.Int? = nil,
65926617
allowForking: Swift.Bool? = nil,
65936618
webCommitSignoffRequired: Swift.Bool? = nil,
6594-
securityAndAnalysis: Components.Schemas.SecurityAndAnalysis? = nil
6619+
securityAndAnalysis: Components.Schemas.SecurityAndAnalysis? = nil,
6620+
customProperties: Components.Schemas.MinimalRepository.CustomPropertiesPayload? = nil
65956621
) {
65966622
self.id = id
65976623
self.nodeId = nodeId
@@ -6680,6 +6706,7 @@ public enum Components {
66806706
self.allowForking = allowForking
66816707
self.webCommitSignoffRequired = webCommitSignoffRequired
66826708
self.securityAndAnalysis = securityAndAnalysis
6709+
self.customProperties = customProperties
66836710
}
66846711
public enum CodingKeys: String, CodingKey {
66856712
case id
@@ -6769,6 +6796,7 @@ public enum Components {
67696796
case allowForking = "allow_forking"
67706797
case webCommitSignoffRequired = "web_commit_signoff_required"
67716798
case securityAndAnalysis = "security_and_analysis"
6799+
case customProperties = "custom_properties"
67726800
}
67736801
}
67746802
/// - Remark: Generated from `#/components/schemas/actions-cache-usage-org-enterprise`.

0 commit comments

Comments
 (0)