File tree Expand file tree Collapse file tree 2 files changed +66
-1
lines changed Expand file tree Collapse file tree 2 files changed +66
-1
lines changed Original file line number Diff line number Diff line change 5145
5145
}
5146
5146
}
5147
5147
},
5148
+ {
5149
+ "type" : " object" ,
5150
+ "additionalProperties" : false ,
5151
+ "properties" : {
5152
+ "type" : {
5153
+ "type" : " string" ,
5154
+ "enum" : [
5155
+ " suspiciousStarActivity"
5156
+ ]
5157
+ },
5158
+ "value" : {
5159
+ "allOf" : [
5160
+ {
5161
+ "$ref" : " #/components/schemas/SocketIssueBasics"
5162
+ },
5163
+ {
5164
+ "type" : " object" ,
5165
+ "additionalProperties" : false ,
5166
+ "properties" : {
5167
+ "description" : {
5168
+ "type" : " string" ,
5169
+ "description" : " " ,
5170
+ "default" : " "
5171
+ },
5172
+ "props" : {
5173
+ "type" : " object" ,
5174
+ "additionalProperties" : false ,
5175
+ "description" : " " ,
5176
+ "properties" : {
5177
+ "percentageSuspiciousStars" : {
5178
+ "type" : " number" ,
5179
+ "description" : " " ,
5180
+ "default" : 0
5181
+ }
5182
+ },
5183
+ "required" : [
5184
+ " percentageSuspiciousStars"
5185
+ ]
5186
+ },
5187
+ "usage" : {
5188
+ "$ref" : " #/components/schemas/SocketUsageRef"
5189
+ }
5190
+ },
5191
+ "required" : [
5192
+ " description" ,
5193
+ " props"
5194
+ ]
5195
+ }
5196
+ ]
5197
+ }
5198
+ }
5199
+ },
5148
5200
{
5149
5201
"type" : " object" ,
5150
5202
"additionalProperties" : false ,
7470
7522
" CreateApiToken" ,
7471
7523
" CreateUser" ,
7472
7524
" GithubAppInstallation" ,
7525
+ " JoinOrganization" ,
7473
7526
" JoinOrganizationByVcs" ,
7474
7527
" LinkAccount" ,
7475
7528
" RemoveMember" ,
Original file line number Diff line number Diff line change @@ -1731,6 +1731,18 @@ export interface components {
1731
1731
props : Record < string , never > ;
1732
1732
usage ?: components [ "schemas" ] [ "SocketUsageRef" ] ;
1733
1733
} ;
1734
+ } ) | ( {
1735
+ /** @enum {string} */
1736
+ type ?: "suspiciousStarActivity" ;
1737
+ value ?: components [ "schemas" ] [ "SocketIssueBasics" ] & {
1738
+ /** @default */
1739
+ description : string ;
1740
+ props : {
1741
+ /** @default 0 */
1742
+ percentageSuspiciousStars : number ;
1743
+ } ;
1744
+ usage ?: components [ "schemas" ] [ "SocketUsageRef" ] ;
1745
+ } ;
1734
1746
} ) | ( {
1735
1747
/** @enum {string} */
1736
1748
type ?: "unpopularPackage" ;
@@ -2571,7 +2583,7 @@ export interface operations {
2571
2583
parameters : {
2572
2584
query ?: {
2573
2585
/** @description Filter audit log events by type. Omit for all types. */
2574
- type ?: "BookDemo" | "CancelInvitation" | "ChangeMemberRole" | "ChangePlanSubscriptionSeats" | "ContactForm" | "CreateApiToken" | "CreateUser" | "GithubAppInstallation" | "JoinOrganizationByVcs" | "LinkAccount" | "RemoveMember" | "ResetInvitationLink" | "ResetOrganizationSettingToDefault" | "RotateApiToken" | "SendInvitation" | "SignIn" | "SignOut" | "Subscribe" | "SyncOrganization" | "TransferOwnership" | "UpdateAlertTriage" | "UpdateApiTokenName" | "UpdateApiTokenScopes" | "UpdateApiTokenVisibility" | "UpdateOrganizationSetting" | "UpgradeOrganizationPlan" | "VerifiedEmail" | "DeleteRepository" | "DeleteReport" ;
2586
+ type ?: "BookDemo" | "CancelInvitation" | "ChangeMemberRole" | "ChangePlanSubscriptionSeats" | "ContactForm" | "CreateApiToken" | "CreateUser" | "GithubAppInstallation" | "JoinOrganization" | " JoinOrganizationByVcs" | "LinkAccount" | "RemoveMember" | "ResetInvitationLink" | "ResetOrganizationSettingToDefault" | "RotateApiToken" | "SendInvitation" | "SignIn" | "SignOut" | "Subscribe" | "SyncOrganization" | "TransferOwnership" | "UpdateAlertTriage" | "UpdateApiTokenName" | "UpdateApiTokenScopes" | "UpdateApiTokenVisibility" | "UpdateOrganizationSetting" | "UpgradeOrganizationPlan" | "VerifiedEmail" | "DeleteRepository" | "DeleteReport" ;
2575
2587
/** @description Number of events per page */
2576
2588
per_page ?: number ;
2577
2589
/** @description Page token */
You can’t perform that action at this time.
0 commit comments