You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/apps/Types.swift
+5-23Lines changed: 5 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -1455,20 +1455,14 @@ public enum Components {
1455
1455
///
1456
1456
/// - Remark: Generated from `#/components/schemas/integration/permissions`.
1457
1457
public var permissions: Components.Schemas.Integration.PermissionsPayload
1458
-
/// The list of events for the GitHub app
1458
+
/// 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.
1459
1459
///
1460
1460
/// - Remark: Generated from `#/components/schemas/integration/events`.
1461
1461
public var events: [Swift.String]
1462
-
/// The number of installations associated with the GitHub app
1462
+
/// The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
1463
1463
///
1464
1464
/// - Remark: Generated from `#/components/schemas/integration/installations_count`.
1465
1465
public var installationsCount: Swift.Int?
1466
-
/// - Remark: Generated from `#/components/schemas/integration/client_secret`.
1467
-
public var clientSecret: Swift.String?
1468
-
/// - Remark: Generated from `#/components/schemas/integration/webhook_secret`.
1469
-
public var webhookSecret: Swift.String?
1470
-
/// - Remark: Generated from `#/components/schemas/integration/pem`.
1471
-
public var pem: Swift.String?
1472
1466
/// Creates a new `Integration`.
1473
1467
///
1474
1468
/// - Parameters:
@@ -1484,11 +1478,8 @@ public enum Components {
1484
1478
/// - createdAt:
1485
1479
/// - updatedAt:
1486
1480
/// - permissions: The set of permissions for the GitHub app
1487
-
/// - events: The list of events for the GitHub app
1488
-
/// - installationsCount: The number of installations associated with the GitHub app
1489
-
/// - clientSecret:
1490
-
/// - webhookSecret:
1491
-
/// - pem:
1481
+
/// - 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.
1482
+
/// - installationsCount: The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
0 commit comments