From 243e2f9ec6c33e271c623a3e8a7eb888e4e8301b Mon Sep 17 00:00:00 2001 From: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com> Date: Tue, 18 Aug 2026 12:13:41 +0000 Subject: [PATCH] chore(MCP): Refresh staging GraphQL schema --- schema.graphql | 65 ++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 60 insertions(+), 5 deletions(-) diff --git a/schema.graphql b/schema.graphql index be14596db..828eb5ffb 100644 --- a/schema.graphql +++ b/schema.graphql @@ -969,14 +969,10 @@ enum DatabaseModelName { saaSVendor aiDocumentationLink savingsConfiguration - scanColor scope seedEnricher Session signupCode - scanCookiePurpose - scanCookieHostPurpose - scanDomainPurpose sombra sombraApiKey sombraAuditLog @@ -998,7 +994,6 @@ enum DatabaseModelName { user vendor businessEntity - sitescan experience consentManagerUi shopifyAccessToken @@ -2234,6 +2229,13 @@ enum AnalyticsDimension { BACKEND_SAMPLING_MULTIPLIER } +enum UsageMart { + PREFERENCE_RECORDS + WORKFLOW_RUNS + WEB_VISITORS + SCANNED_DATA_STORES +} + enum ActionOrderField { createdAt updatedAt @@ -2765,6 +2767,13 @@ enum DropRunRecordsMaterializationStatus { NOT_STARTED } +enum DropRunReportGenerationStatus { + NOT_STARTED + IN_PROGRESS + COMPLETE + FAILED +} + enum DropIntakePhase { IDLE PARSING @@ -5091,6 +5100,7 @@ type Query { translatedMessages(input: TranslatedMessagesFilterInput): [Message!]! unstructuredDataDiscoveryFiles(first: Int, offset: Int = 0, last: Int, filterBy: UnstructuredDataDiscoveryFilesFilterInput!): UnstructuredDataDiscoveryFilesPayload! unstructuredSubDataPointRecommendations(first: Int, offset: Int = 0, last: Int, useMaster: Boolean, isExportCsv: Boolean, filterBy: UnstructuredSubDataPointRecommendationsFilterInput, orderBy: [UnstructuredSubDataPointRecommendationOrder!]): UnstructuredSubDataPointRecommendationsPayload! + usageDataMart(input: UsageDataMartInput!): UsageDataMartResult! user: CurrentUser users(first: Int, offset: Int = 0, last: Int, filterBy: UserFiltersInput, orderBy: [UserOrder!]): UsersPayload! vendorCommunicationsMetadata(first: Int, offset: Int = 0, last: Int, input: VendorCommunicationsMetadataInput!): VendorCommunicationsMetadataPayload! @@ -8876,6 +8886,7 @@ type ConsentManager { useModules: Boolean! useIabFramework: Boolean! useUiV2: Boolean + uiV2Version: String deployError: String webhookUrl: String headers: [CustomHeader!]! @@ -10581,6 +10592,7 @@ type CurrentUser implements UserInterface { onboarded: Boolean! locale: String! organization: Organization! + primaryOrganization: OrganizationIdentityPreview roles: [Role!]! parentRole: UserPreview teams: [TeamPreview!]! @@ -12865,6 +12877,13 @@ input DropRecordRefInput { dropListType: DropListType! } +type DropReportStatusBreakdown { + statusExempted: Int! + statusDeleted: Int! + statusOptedOut: Int! + statusNotFound: Int! +} + type DropRunDsrProcessingStats { totalDsrs: Int! completedCount: Int! @@ -12946,6 +12965,7 @@ type DropRunRequestSummary { dropListType: DropListType! cppaHash: String cppaStatusCode: Int + request: RequestForDropPreview } type DropRunsPayload { @@ -12981,6 +13001,12 @@ type DropRunSummary { declaredRecordsCount: Int! unresolvedRecordsCount: Int! artifacts: [DropArtifact!]! + reportGeneratedAt: Date + reportSummary: DropReportStatusBreakdown + reportGenerationStatus: DropRunReportGenerationStatus! + reportGenerationStartedAt: Date + reportGenerationError: String + reportPendingRecordsCount: Int } input DropStatusOverrideInput { @@ -13097,6 +13123,8 @@ input EmployeeBulkRequestInput { partitionKey: String idempotencyKey: String workflowConfigId: ID! + type: RequestAction + subjectType: String dropRecords: [DropRecordRefInput!] dropRunId: ID } @@ -16872,6 +16900,13 @@ type RequestForDataSilo { errorCount: Int! } +type RequestForDropPreview { + id: ID! + status: RequestStatus! + email: String + coreIdentifier: String! +} + type RequestHistoryPayload { clientMutationId: String nodes: [RequestHistory!]! @@ -17453,6 +17488,7 @@ type RocUserRecordsPayload { clientMutationId: String nodes: [RocUserRecordSchema!]! decryptionContext: DecryptionContext! + containsInitialRecord: Boolean! } type RocUserRecordSchema { @@ -17668,6 +17704,8 @@ input RunCustomFunctionInput { payload: String! isCustomFunctionTestRun: Boolean payloadType: CustomFunctionPayloadType + signedCodeJwt: String + signedCodeContextJwt: String } type SaaSCategoriesPayload { @@ -20155,6 +20193,7 @@ input UpdateConsentManagerInput { webhookUrl: String headers: [CustomHeaderInput!] useUiV2: Boolean + uiV2Version: String } type UpdateConsentManagerOnboardingStatusPayload { @@ -21689,6 +21728,22 @@ input UpsertConsentServiceInput { showInTcfModal: Boolean } +input UsageDataMartInput { + mart: UsageMart! + startDate: String + endDate: String + nextToken: String +} + +type UsageDataMartResult { + nodes: [UsageDataMartRow!]! + nextToken: String +} + +type UsageDataMartRow { + data: String! +} + type User implements UserInterface { id: ID! email: String!