Skip to content

Commit 81c780d

Browse files
Commit via running: make Sources/activity
1 parent 446eef9 commit 81c780d

File tree

1 file changed

+5
-23
lines changed

1 file changed

+5
-23
lines changed

Sources/activity/Types.swift

Lines changed: 5 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -2686,20 +2686,14 @@ public enum Components {
26862686
///
26872687
/// - Remark: Generated from `#/components/schemas/nullable-integration/permissions`.
26882688
public var permissions: Components.Schemas.NullableIntegration.PermissionsPayload
2689-
/// The list of events for the GitHub app
2689+
/// The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.
26902690
///
26912691
/// - Remark: Generated from `#/components/schemas/nullable-integration/events`.
26922692
public var events: [Swift.String]
2693-
/// The number of installations associated with the GitHub app
2693+
/// The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
26942694
///
26952695
/// - Remark: Generated from `#/components/schemas/nullable-integration/installations_count`.
26962696
public var installationsCount: Swift.Int?
2697-
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_secret`.
2698-
public var clientSecret: Swift.String?
2699-
/// - Remark: Generated from `#/components/schemas/nullable-integration/webhook_secret`.
2700-
public var webhookSecret: Swift.String?
2701-
/// - Remark: Generated from `#/components/schemas/nullable-integration/pem`.
2702-
public var pem: Swift.String?
27032697
/// Creates a new `NullableIntegration`.
27042698
///
27052699
/// - Parameters:
@@ -2715,11 +2709,8 @@ public enum Components {
27152709
/// - createdAt:
27162710
/// - updatedAt:
27172711
/// - permissions: The set of permissions for the GitHub app
2718-
/// - events: The list of events for the GitHub app
2719-
/// - installationsCount: The number of installations associated with the GitHub app
2720-
/// - clientSecret:
2721-
/// - webhookSecret:
2722-
/// - pem:
2712+
/// - events: The list of events for the GitHub app. Note that the `installation_target`, `security_advisory`, and `meta` events are not included because they are global events and not specific to an installation.
2713+
/// - installationsCount: The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
27232714
public init(
27242715
id: Swift.Int,
27252716
slug: Swift.String? = nil,
@@ -2734,10 +2725,7 @@ public enum Components {
27342725
updatedAt: Foundation.Date,
27352726
permissions: Components.Schemas.NullableIntegration.PermissionsPayload,
27362727
events: [Swift.String],
2737-
installationsCount: Swift.Int? = nil,
2738-
clientSecret: Swift.String? = nil,
2739-
webhookSecret: Swift.String? = nil,
2740-
pem: Swift.String? = nil
2728+
installationsCount: Swift.Int? = nil
27412729
) {
27422730
self.id = id
27432731
self.slug = slug
@@ -2753,9 +2741,6 @@ public enum Components {
27532741
self.permissions = permissions
27542742
self.events = events
27552743
self.installationsCount = installationsCount
2756-
self.clientSecret = clientSecret
2757-
self.webhookSecret = webhookSecret
2758-
self.pem = pem
27592744
}
27602745
public enum CodingKeys: String, CodingKey {
27612746
case id
@@ -2772,9 +2757,6 @@ public enum Components {
27722757
case permissions
27732758
case events
27742759
case installationsCount = "installations_count"
2775-
case clientSecret = "client_secret"
2776-
case webhookSecret = "webhook_secret"
2777-
case pem
27782760
}
27792761
}
27802762
/// How the author is associated with the repository.

0 commit comments

Comments
 (0)