@@ -6602,6 +6602,54 @@ type BulkCreateCredentialsPayload implements MutationResult {
66026602 was_successful: Boolean!
66036603}
66046604
6605+ """
6606+ Autogenerated input type of BulkCreateUpdateDeleteCredentials
6607+ """
6608+ input BulkCreateUpdateDeleteCredentialsInput {
6609+ """
6610+ A unique identifier for the client performing the mutation.
6611+ """
6612+ clientMutationId: String
6613+ deleted_credentials: [String!]!
6614+ new_credentials: [String!]!
6615+ structured_scope_id: Int!
6616+ updated_credentials: [String!]!
6617+ }
6618+
6619+ """
6620+ Autogenerated return type of BulkCreateUpdateDeleteCredentials.
6621+ """
6622+ type BulkCreateUpdateDeleteCredentialsPayload implements MutationResult {
6623+ """
6624+ A unique identifier for the client performing the mutation.
6625+ """
6626+ clientMutationId: String
6627+ credentials: [Credential!]
6628+ errors(
6629+ """
6630+ Returns the elements in the list that come after the specified cursor.
6631+ """
6632+ after: String
6633+
6634+ """
6635+ Returns the elements in the list that come before the specified cursor.
6636+ """
6637+ before: String
6638+
6639+ """
6640+ Returns the first _n_ elements from the list.
6641+ """
6642+ first: Int
6643+
6644+ """
6645+ Returns the last _n_ elements from the list.
6646+ """
6647+ last: Int
6648+ types: [ErrorTypeEnum]
6649+ ): ErrorConnection!
6650+ was_successful: Boolean!
6651+ }
6652+
66056653"""
66066654Autogenerated input type of BulkDestroyOrganizationMemberGroups
66076655"""
@@ -9317,6 +9365,56 @@ type CreateCampaignPayload implements MutationResult {
93179365 was_successful: Boolean!
93189366}
93199367
9368+ """
9369+ Autogenerated input type of CreateCodeReviewForReport
9370+ """
9371+ input CreateCodeReviewForReportInput {
9372+ """
9373+ A unique identifier for the client performing the mutation.
9374+ """
9375+ clientMutationId: String
9376+ code_review_diff_url: String
9377+ code_review_patch: String!
9378+ message: String!
9379+ report_id: Int!
9380+ }
9381+
9382+ """
9383+ Autogenerated return type of CreateCodeReviewForReport.
9384+ """
9385+ type CreateCodeReviewForReportPayload implements MutationResult {
9386+ activity: ActivitiesCodeReviewRequested
9387+
9388+ """
9389+ A unique identifier for the client performing the mutation.
9390+ """
9391+ clientMutationId: String
9392+ errors(
9393+ """
9394+ Returns the elements in the list that come after the specified cursor.
9395+ """
9396+ after: String
9397+
9398+ """
9399+ Returns the elements in the list that come before the specified cursor.
9400+ """
9401+ before: String
9402+
9403+ """
9404+ Returns the first _n_ elements from the list.
9405+ """
9406+ first: Int
9407+
9408+ """
9409+ Returns the last _n_ elements from the list.
9410+ """
9411+ last: Int
9412+ types: [ErrorTypeEnum]
9413+ ): ErrorConnection!
9414+ report: Report
9415+ was_successful: Boolean!
9416+ }
9417+
93209418"""
93219419Autogenerated input type of CreateCommonResponse
93229420"""
@@ -23880,6 +23978,12 @@ type Mutation implements Node {
2388023978 """
2388123979 input: BulkCreateCredentialsInput!
2388223980 ): BulkCreateCredentialsPayload!
23981+ bulkCreateUpdateDeleteCredentials(
23982+ """
23983+ Parameters for BulkCreateUpdateDeleteCredentials
23984+ """
23985+ input: BulkCreateUpdateDeleteCredentialsInput!
23986+ ): BulkCreateUpdateDeleteCredentialsPayload!
2388323987 bulkDestroyOrganizationMemberGroups(
2388423988 """
2388523989 Parameters for BulkDestroyOrganizationMemberGroups
@@ -24120,6 +24224,12 @@ type Mutation implements Node {
2412024224 """
2412124225 input: CreateCampaignInput!
2412224226 ): CreateCampaignPayload!
24227+ createCodeReviewForReport(
24228+ """
24229+ Parameters for CreateCodeReviewForReport
24230+ """
24231+ input: CreateCodeReviewForReportInput!
24232+ ): CreateCodeReviewForReportPayload!
2412324233 createCommonResponse(
2412424234 """
2412524235 Parameters for CreateCommonResponse
@@ -26061,6 +26171,12 @@ type Mutation implements Node {
2606126171 """
2606226172 input: UpdateOrganizationProfileInput!
2606326173 ): UpdateOrganizationProfilePayload!
26174+ updateOrganizationReturnOnMitigationSettings(
26175+ """
26176+ Parameters for UpdateOrganizationReturnOnMitigationSettings
26177+ """
26178+ input: UpdateOrganizationReturnOnMitigationSettingsInput!
26179+ ): UpdateOrganizationReturnOnMitigationSettingsPayload!
2606426180 updateOrganizationSamlProviderAlternativeCertificate(
2606526181 """
2606626182 Parameters for UpdateOrganizationSamlProviderAlternativeCertificate
@@ -29158,6 +29274,7 @@ type OrganizationReportDocument implements Node {
2915829274 structured_scope: JSON
2915929275 submitted_at: ISO8601DateTime
2916029276 substate: String
29277+ tags: [String!]
2916129278 text_custom_field_1: String
2916229279 text_custom_field_10: String
2916329280 text_custom_field_100: String
@@ -48827,6 +48944,106 @@ type UpdateOrganizationProfilePayload implements MutationResult {
4882748944 was_successful: Boolean!
4882848945}
4882948946
48947+ """
48948+ Autogenerated input type of UpdateOrganizationReturnOnMitigationSettings
48949+ """
48950+ input UpdateOrganizationReturnOnMitigationSettingsInput {
48951+ """
48952+ Annual rate of occurrence for availability incidents
48953+ """
48954+ availability_annual_rate_of_occurrence: Float
48955+
48956+ """
48957+ Single Loss Expectancy from a High impact availability incident (as percentage of the SLE baseline)
48958+ """
48959+ availability_single_loss_expectancy_high: Float
48960+
48961+ """
48962+ Single Loss Expectancy from a Low impact availability incident (as percentage of the SLE baseline)
48963+ """
48964+ availability_single_loss_expectancy_low: Float
48965+
48966+ """
48967+ A unique identifier for the client performing the mutation.
48968+ """
48969+ clientMutationId: String
48970+
48971+ """
48972+ Annual rate of occurrence for confidentiality incidents
48973+ """
48974+ confidentiality_annual_rate_of_occurrence: Float
48975+
48976+ """
48977+ Single Loss Expectancy from a High impact confidentiality incident (as percentage of the SLE baseline)
48978+ """
48979+ confidentiality_single_loss_expectancy_high: Float
48980+
48981+ """
48982+ Single Loss Expectancy from a Low impact confidentiality incident (as percentage of the SLE baseline)
48983+ """
48984+ confidentiality_single_loss_expectancy_low: Float
48985+
48986+ """
48987+ Industry category for ROM calculations, drives the baseline single loss expectancy
48988+ """
48989+ industry: IndustryEnum
48990+
48991+ """
48992+ Annual rate of occurrence for integrity incidents
48993+ """
48994+ integrity_annual_rate_of_occurrence: Float
48995+
48996+ """
48997+ Single Loss Expectancy from a High impact integrity incident (as percentage of the SLE baseline)
48998+ """
48999+ integrity_single_loss_expectancy_high: Float
49000+
49001+ """
49002+ Single Loss Expectancy from a Low impact integrity incident (as percentage of the SLE baseline)
49003+ """
49004+ integrity_single_loss_expectancy_low: Float
49005+ organization_id: ID!
49006+
49007+ """
49008+ Revenue cohort for ROM calculations, drives the baseline single loss expectancy
49009+ """
49010+ revenue_cohort: RevenueCohortEnum
49011+ }
49012+
49013+ """
49014+ Autogenerated return type of UpdateOrganizationReturnOnMitigationSettings.
49015+ """
49016+ type UpdateOrganizationReturnOnMitigationSettingsPayload implements MutationResult {
49017+ """
49018+ A unique identifier for the client performing the mutation.
49019+ """
49020+ clientMutationId: String
49021+ errors(
49022+ """
49023+ Returns the elements in the list that come after the specified cursor.
49024+ """
49025+ after: String
49026+
49027+ """
49028+ Returns the elements in the list that come before the specified cursor.
49029+ """
49030+ before: String
49031+
49032+ """
49033+ Returns the first _n_ elements from the list.
49034+ """
49035+ first: Int
49036+
49037+ """
49038+ Returns the last _n_ elements from the list.
49039+ """
49040+ last: Int
49041+ types: [ErrorTypeEnum]
49042+ ): ErrorConnection!
49043+ organization: Organization!
49044+ was_successful: Boolean!
49045+ }
49046+
4883049047"""
4883149048Autogenerated input type of UpdateOrganizationSamlProviderAlternativeCertificate
4883249049"""
0 commit comments