@@ -459,6 +459,31 @@ public enum Components {
459459 public var packages : [ Swift . String ] ?
460460 /// - Remark: Generated from `#/components/schemas/api-overview/domains/actions`.
461461 public var actions : [ Swift . String ] ?
462+ /// - Remark: Generated from `#/components/schemas/api-overview/domains/artifact_attestations`.
463+ public struct artifact_attestationsPayload : Codable , Hashable , Sendable {
464+ /// - Remark: Generated from `#/components/schemas/api-overview/domains/artifact_attestations/trust_domain`.
465+ public var trust_domain : Swift . String ?
466+ /// - Remark: Generated from `#/components/schemas/api-overview/domains/artifact_attestations/services`.
467+ public var services : [ Swift . String ] ?
468+ /// Creates a new `artifact_attestationsPayload`.
469+ ///
470+ /// - Parameters:
471+ /// - trust_domain:
472+ /// - services:
473+ public init (
474+ trust_domain: Swift . String ? = nil ,
475+ services: [ Swift . String ] ? = nil
476+ ) {
477+ self . trust_domain = trust_domain
478+ self . services = services
479+ }
480+ public enum CodingKeys : String , CodingKey {
481+ case trust_domain
482+ case services
483+ }
484+ }
485+ /// - Remark: Generated from `#/components/schemas/api-overview/domains/artifact_attestations`.
486+ public var artifact_attestations : Components . Schemas . api_hyphen_overview . domainsPayload . artifact_attestationsPayload ?
462487 /// Creates a new `domainsPayload`.
463488 ///
464489 /// - Parameters:
@@ -467,25 +492,29 @@ public enum Components {
467492 /// - copilot:
468493 /// - packages:
469494 /// - actions:
495+ /// - artifact_attestations:
470496 public init (
471497 website: [ Swift . String ] ? = nil ,
472498 codespaces: [ Swift . String ] ? = nil ,
473499 copilot: [ Swift . String ] ? = nil ,
474500 packages: [ Swift . String ] ? = nil ,
475- actions: [ Swift . String ] ? = nil
501+ actions: [ Swift . String ] ? = nil ,
502+ artifact_attestations: Components . Schemas . api_hyphen_overview . domainsPayload . artifact_attestationsPayload ? = nil
476503 ) {
477504 self . website = website
478505 self . codespaces = codespaces
479506 self . copilot = copilot
480507 self . packages = packages
481508 self . actions = actions
509+ self . artifact_attestations = artifact_attestations
482510 }
483511 public enum CodingKeys : String , CodingKey {
484512 case website
485513 case codespaces
486514 case copilot
487515 case packages
488516 case actions
517+ case artifact_attestations
489518 }
490519 }
491520 /// - Remark: Generated from `#/components/schemas/api-overview/domains`.
0 commit comments