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/actions/Types.swift
+5-23Lines changed: 5 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -5878,20 +5878,14 @@ public enum Components {
5878
5878
///
5879
5879
/// - Remark: Generated from `#/components/schemas/nullable-integration/permissions`.
5880
5880
public var permissions: Components.Schemas.NullableIntegration.PermissionsPayload
5881
-
/// The list of events for the GitHub app
5881
+
/// 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.
5882
5882
///
5883
5883
/// - Remark: Generated from `#/components/schemas/nullable-integration/events`.
5884
5884
public var events: [Swift.String]
5885
-
/// The number of installations associated with the GitHub app
5885
+
/// The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
5886
5886
///
5887
5887
/// - Remark: Generated from `#/components/schemas/nullable-integration/installations_count`.
5888
5888
public var installationsCount: Swift.Int?
5889
-
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_secret`.
5890
-
public var clientSecret: Swift.String?
5891
-
/// - Remark: Generated from `#/components/schemas/nullable-integration/webhook_secret`.
5892
-
public var webhookSecret: Swift.String?
5893
-
/// - Remark: Generated from `#/components/schemas/nullable-integration/pem`.
5894
-
public var pem: Swift.String?
5895
5889
/// Creates a new `NullableIntegration`.
5896
5890
///
5897
5891
/// - Parameters:
@@ -5907,11 +5901,8 @@ public enum Components {
5907
5901
/// - createdAt:
5908
5902
/// - updatedAt:
5909
5903
/// - permissions: The set of permissions for the GitHub app
5910
-
/// - events: The list of events for the GitHub app
5911
-
/// - installationsCount: The number of installations associated with the GitHub app
5912
-
/// - clientSecret:
5913
-
/// - webhookSecret:
5914
-
/// - pem:
5904
+
/// - 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.
5905
+
/// - installationsCount: The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
Copy file name to clipboardExpand all lines: Sources/activity/Types.swift
+5-23Lines changed: 5 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -2686,20 +2686,14 @@ public enum Components {
2686
2686
///
2687
2687
/// - Remark: Generated from `#/components/schemas/nullable-integration/permissions`.
2688
2688
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.
2690
2690
///
2691
2691
/// - Remark: Generated from `#/components/schemas/nullable-integration/events`.
2692
2692
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.
2694
2694
///
2695
2695
/// - Remark: Generated from `#/components/schemas/nullable-integration/installations_count`.
2696
2696
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?
2703
2697
/// Creates a new `NullableIntegration`.
2704
2698
///
2705
2699
/// - Parameters:
@@ -2715,11 +2709,8 @@ public enum Components {
2715
2709
/// - createdAt:
2716
2710
/// - updatedAt:
2717
2711
/// - 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.
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.
/// 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.
903
903
///
904
904
/// - Remark: Generated from `#/components/schemas/nullable-integration/events`.
905
905
publicvarevents:[Swift.String]
906
-
/// The number of installations associated with the GitHub app
906
+
/// The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
907
907
///
908
908
/// - Remark: Generated from `#/components/schemas/nullable-integration/installations_count`.
909
909
publicvarinstallationsCount:Swift.Int?
910
-
/// - Remark: Generated from `#/components/schemas/nullable-integration/client_secret`.
911
-
publicvarclientSecret:Swift.String?
912
-
/// - Remark: Generated from `#/components/schemas/nullable-integration/webhook_secret`.
913
-
publicvarwebhookSecret:Swift.String?
914
-
/// - Remark: Generated from `#/components/schemas/nullable-integration/pem`.
915
-
publicvarpem:Swift.String?
916
910
/// Creates a new `NullableIntegration`.
917
911
///
918
912
/// - Parameters:
@@ -928,11 +922,8 @@ public enum Components {
928
922
/// - createdAt:
929
923
/// - updatedAt:
930
924
/// - permissions: The set of permissions for the GitHub app
931
-
/// - events: The list of events for the GitHub app
932
-
/// - installationsCount: The number of installations associated with the GitHub app
933
-
/// - clientSecret:
934
-
/// - webhookSecret:
935
-
/// - pem:
925
+
/// - 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.
926
+
/// - installationsCount: The number of installations associated with the GitHub app. Only returned when the integration is requesting details about itself.
0 commit comments