@forge/cli-shared 9.3.0-next.17 → 9.3.0-next.17-experimental-cf2ad4c
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +38 -0
- package/out/graphql/graphql-types.d.ts +193 -70
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +87 -67
- package/out/service/statsig-service.d.ts +2 -1
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +3 -0
- package/package.json +2 -2
|
@@ -9050,6 +9050,7 @@ export type AgentWorkspaceShiftsSummary = {
|
|
|
9050
9050
|
export type AgentWorkspaceSiteWfoStatus = {
|
|
9051
9051
|
__typename?: 'AgentWorkspaceSiteWfoStatus';
|
|
9052
9052
|
hasProjectEnabledWfo: Scalars['Boolean']['output'];
|
|
9053
|
+
hasProjectFinishOnboarding: Scalars['Boolean']['output'];
|
|
9053
9054
|
};
|
|
9054
9055
|
export type AgentWorkspaceSkill = {
|
|
9055
9056
|
__typename?: 'AgentWorkspaceSkill';
|
|
@@ -9167,6 +9168,7 @@ export type AgentWorkspaceSmartRoutingConfig = {
|
|
|
9167
9168
|
autoTeamAssignmentEnabled: Scalars['Boolean']['output'];
|
|
9168
9169
|
enabled: Scalars['Boolean']['output'];
|
|
9169
9170
|
inputs: Array<AgentWorkspaceConfigurableRoutingInputSetting>;
|
|
9171
|
+
routingMode?: Maybe<AgentWorkspaceSmartRoutingMode>;
|
|
9170
9172
|
serviceFieldId?: Maybe<Scalars['String']['output']>;
|
|
9171
9173
|
serviceFieldName?: Maybe<Scalars['String']['output']>;
|
|
9172
9174
|
serviceFieldType?: Maybe<AgentWorkspaceSmartRoutingServiceFieldType>;
|
|
@@ -9255,6 +9257,10 @@ export type AgentWorkspaceSmartRoutingDryRunTicketsPayload = {
|
|
|
9255
9257
|
pageInfo: AgentWorkspaceSmartRoutingDryRunTicketsPageInfo;
|
|
9256
9258
|
tickets: Array<AgentWorkspaceSmartRoutingDryRunTicket>;
|
|
9257
9259
|
};
|
|
9260
|
+
export declare enum AgentWorkspaceSmartRoutingMode {
|
|
9261
|
+
Service = "SERVICE",
|
|
9262
|
+
Team = "TEAM"
|
|
9263
|
+
}
|
|
9258
9264
|
export type AgentWorkspaceSmartRoutingPerServiceStat = {
|
|
9259
9265
|
__typename?: 'AgentWorkspaceSmartRoutingPerServiceStat';
|
|
9260
9266
|
covered: Scalars['Boolean']['output'];
|
|
@@ -9498,6 +9504,7 @@ export type AgentWorkspaceUpdateRoutingConfigInput = {
|
|
|
9498
9504
|
cloudId: Scalars['ID']['input'];
|
|
9499
9505
|
enabled: Scalars['Boolean']['input'];
|
|
9500
9506
|
projectKey: Scalars['String']['input'];
|
|
9507
|
+
routingMode?: InputMaybe<AgentWorkspaceSmartRoutingMode>;
|
|
9501
9508
|
serviceFieldId?: InputMaybe<Scalars['String']['input']>;
|
|
9502
9509
|
serviceFieldName?: InputMaybe<Scalars['String']['input']>;
|
|
9503
9510
|
serviceFieldType?: InputMaybe<AgentWorkspaceSmartRoutingServiceFieldType>;
|
|
@@ -9543,10 +9550,6 @@ export type AgentWorkspaceUpdateSkillMappingsInProjectPayload = {
|
|
|
9543
9550
|
projectSkill?: Maybe<AgentWorkspaceProjectSkill>;
|
|
9544
9551
|
success: Scalars['Boolean']['output'];
|
|
9545
9552
|
};
|
|
9546
|
-
export type AgentWorkspaceUpdateSmartRoutingConfigInput = {
|
|
9547
|
-
enabled: Scalars['Boolean']['input'];
|
|
9548
|
-
projectAri: Scalars['ID']['input'];
|
|
9549
|
-
};
|
|
9550
9553
|
export type AgentWorkspaceUpdateSmartRoutingConfigPayload = {
|
|
9551
9554
|
__typename?: 'AgentWorkspaceUpdateSmartRoutingConfigPayload';
|
|
9552
9555
|
smartRoutingConfig: AgentWorkspaceSmartRoutingConfig;
|
|
@@ -15561,7 +15564,10 @@ export declare enum AssetsVerticalDepreciationRuleErrorCode {
|
|
|
15561
15564
|
PermissionDenied = "PERMISSION_DENIED",
|
|
15562
15565
|
RateLimited = "RATE_LIMITED",
|
|
15563
15566
|
RuleNameConflict = "RULE_NAME_CONFLICT",
|
|
15567
|
+
RuleNameInvalid = "RULE_NAME_INVALID",
|
|
15568
|
+
SalvageValueInvalid = "SALVAGE_VALUE_INVALID",
|
|
15564
15569
|
UnknownError = "UNKNOWN_ERROR",
|
|
15570
|
+
UsefulLifeYearsInvalid = "USEFUL_LIFE_YEARS_INVALID",
|
|
15565
15571
|
ValidationFailed = "VALIDATION_FAILED"
|
|
15566
15572
|
}
|
|
15567
15573
|
export type AssetsVerticalDepreciationRuleMutationErrorExtension = MutationErrorExtension & {
|
|
@@ -39972,6 +39978,7 @@ export type CplsFilters = {
|
|
|
39972
39978
|
id: Scalars['ID']['output'];
|
|
39973
39979
|
jiraWorkItemStatusNames?: Maybe<Array<Scalars['String']['output']>>;
|
|
39974
39980
|
jiraWorkItems?: Maybe<Array<Scalars['ID']['output']>>;
|
|
39981
|
+
searchTerm?: Maybe<Scalars['String']['output']>;
|
|
39975
39982
|
workTypes?: Maybe<Array<CplsWorkType>>;
|
|
39976
39983
|
};
|
|
39977
39984
|
export type CplsFiltersInput = {
|
|
@@ -39981,6 +39988,7 @@ export type CplsFiltersInput = {
|
|
|
39981
39988
|
customContributionTargets?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
39982
39989
|
jiraWorkItemStatusNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
39983
39990
|
jiraWorkItems?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
39991
|
+
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
39984
39992
|
workTypes?: InputMaybe<Array<CplsWorkType>>;
|
|
39985
39993
|
};
|
|
39986
39994
|
export type CplsGetContributorWorkAssociationsInput = {
|
|
@@ -52372,6 +52380,7 @@ export declare enum ForgeMetricsLabels {
|
|
|
52372
52380
|
ForgeBackendInvocationCount = "FORGE_BACKEND_INVOCATION_COUNT",
|
|
52373
52381
|
ForgeBackendInvocationErrors = "FORGE_BACKEND_INVOCATION_ERRORS",
|
|
52374
52382
|
ForgeBackendInvocationLatency = "FORGE_BACKEND_INVOCATION_LATENCY",
|
|
52383
|
+
KubeContainerUptimeSeconds = "KUBE_CONTAINER_UPTIME_SECONDS",
|
|
52375
52384
|
ServiceInstanceCount = "SERVICE_INSTANCE_COUNT"
|
|
52376
52385
|
}
|
|
52377
52386
|
export type ForgeMetricsLatenciesData = ForgeMetricsData & {
|
|
@@ -73225,11 +73234,6 @@ export type GraphStoreFullContentReferencedEntityStartNode = {
|
|
|
73225
73234
|
id: Scalars['ID']['output'];
|
|
73226
73235
|
};
|
|
73227
73236
|
export type GraphStoreFullContentReferencedEntityStartUnion = AvpDashboard | AgentStudioAssistant | AgentStudioServiceAgent | AppUser | AssetsObject | AssetsObjectType | AtlassianAccountUser | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSlide | ConfluenceSpace | ConfluenceWhiteboard | Customer360Customer | CustomerServiceCsmCustomer | CustomerServiceCsmOrganization | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalServicenowBusinessApp | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraIssueType | JiraPlatformComment | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryAsk | MercuryBenefitItem | MercuryChangeProposal | MercuryCostItem | MercuryFocusArea | MercuryFocusAreaStatusUpdate | MercuryOrganization | MercuryOrganizationMembership | MercuryOrganizationStatusUpdate | MercuryRisk | MercuryStrategicEvent | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | SpfPlan | SpfPlanScenario | SpfPlanScenarioInvestment | TeamCustomFieldValue | TeamType | TeamV2 | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate | TownsquareTag;
|
|
73228
|
-
export declare enum GraphStoreFullGraphMemoryNodeGraphMemoryTypeOutput {
|
|
73229
|
-
Explicit = "EXPLICIT",
|
|
73230
|
-
Implicit = "IMPLICIT",
|
|
73231
|
-
NotSet = "NOT_SET"
|
|
73232
|
-
}
|
|
73233
73237
|
export type GraphStoreFullIncidentAssociatedPostIncidentReviewConnection = HasPageInfo & HasTotal & {
|
|
73234
73238
|
__typename?: 'GraphStoreFullIncidentAssociatedPostIncidentReviewConnection';
|
|
73235
73239
|
edges: Array<Maybe<GraphStoreFullIncidentAssociatedPostIncidentReviewEdge>>;
|
|
@@ -73362,16 +73366,6 @@ export type GraphStoreFullIncidentLinkedJswIssueStartNode = {
|
|
|
73362
73366
|
id: Scalars['ID']['output'];
|
|
73363
73367
|
};
|
|
73364
73368
|
export type GraphStoreFullIncidentLinkedJswIssueStartUnion = DevOpsOperationsIncidentDetails | JiraIssue;
|
|
73365
|
-
export declare enum GraphStoreFullInferredDecisionNodeInferredDecisionStatusOutput {
|
|
73366
|
-
Accepted = "ACCEPTED",
|
|
73367
|
-
NeedsReview = "NEEDS_REVIEW",
|
|
73368
|
-
NotSet = "NOT_SET",
|
|
73369
|
-
Rejected = "REJECTED"
|
|
73370
|
-
}
|
|
73371
|
-
export declare enum GraphStoreFullInferredTeamNodeInferredTeamStatusOutput {
|
|
73372
|
-
Active = "ACTIVE",
|
|
73373
|
-
NotSet = "NOT_SET"
|
|
73374
|
-
}
|
|
73375
73369
|
export type GraphStoreFullIssueAssociatedBranchConnection = HasPageInfo & HasTotal & {
|
|
73376
73370
|
__typename?: 'GraphStoreFullIssueAssociatedBranchConnection';
|
|
73377
73371
|
edges: Array<Maybe<GraphStoreFullIssueAssociatedBranchEdge>>;
|
|
@@ -76435,12 +76429,17 @@ export type GraphStoreGraphEntityReplicates3pEntityComplementSortInput = {
|
|
|
76435
76429
|
export type GraphStoreGraphEntityReplicates3pEntitySortInput = {
|
|
76436
76430
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76437
76431
|
};
|
|
76432
|
+
export declare enum GraphStoreGraphMemoryNodeGraphMemoryTypeOutput {
|
|
76433
|
+
Explicit = "EXPLICIT",
|
|
76434
|
+
Implicit = "IMPLICIT",
|
|
76435
|
+
NotSet = "NOT_SET"
|
|
76436
|
+
}
|
|
76438
76437
|
export type GraphStoreGraphMemoryNodeMetadata = {
|
|
76439
76438
|
__typename?: 'GraphStoreGraphMemoryNodeMetadata';
|
|
76440
76439
|
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
76441
76440
|
createdBy?: Maybe<Scalars['String']['output']>;
|
|
76442
76441
|
lastUpdated?: Maybe<Scalars['Long']['output']>;
|
|
76443
|
-
memoryType?: Maybe<
|
|
76442
|
+
memoryType?: Maybe<GraphStoreGraphMemoryNodeGraphMemoryTypeOutput>;
|
|
76444
76443
|
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
76445
76444
|
validUntil?: Maybe<Scalars['Long']['output']>;
|
|
76446
76445
|
};
|
|
@@ -76474,6 +76473,12 @@ export type GraphStoreIncidentLinkedJswIssueSortInput = {
|
|
|
76474
76473
|
export type GraphStoreInferredDecisionImpactsEntitySortInput = {
|
|
76475
76474
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76476
76475
|
};
|
|
76476
|
+
export declare enum GraphStoreInferredDecisionNodeInferredDecisionStatusOutput {
|
|
76477
|
+
Accepted = "ACCEPTED",
|
|
76478
|
+
NeedsReview = "NEEDS_REVIEW",
|
|
76479
|
+
NotSet = "NOT_SET",
|
|
76480
|
+
Rejected = "REJECTED"
|
|
76481
|
+
}
|
|
76477
76482
|
export type GraphStoreInferredDecisionNodeMetadata = {
|
|
76478
76483
|
__typename?: 'GraphStoreInferredDecisionNodeMetadata';
|
|
76479
76484
|
claim?: Maybe<Scalars['String']['output']>;
|
|
@@ -76482,7 +76487,7 @@ export type GraphStoreInferredDecisionNodeMetadata = {
|
|
|
76482
76487
|
dedupeKey?: Maybe<Scalars['String']['output']>;
|
|
76483
76488
|
lastUpdated?: Maybe<Scalars['Long']['output']>;
|
|
76484
76489
|
normalizedClaimHash?: Maybe<Scalars['String']['output']>;
|
|
76485
|
-
status?: Maybe<
|
|
76490
|
+
status?: Maybe<GraphStoreInferredDecisionNodeInferredDecisionStatusOutput>;
|
|
76486
76491
|
};
|
|
76487
76492
|
export type GraphStoreInferredDecisionSourceLineageEntitySortInput = {
|
|
76488
76493
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -76509,11 +76514,15 @@ export type GraphStoreInferredTeamCollaboratesOnInferredProjectSortInput = {
|
|
|
76509
76514
|
export type GraphStoreInferredTeamLinksEntitySortInput = {
|
|
76510
76515
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76511
76516
|
};
|
|
76517
|
+
export declare enum GraphStoreInferredTeamNodeInferredTeamStatusOutput {
|
|
76518
|
+
Active = "ACTIVE",
|
|
76519
|
+
NotSet = "NOT_SET"
|
|
76520
|
+
}
|
|
76512
76521
|
export type GraphStoreInferredTeamNodeMetadata = {
|
|
76513
76522
|
__typename?: 'GraphStoreInferredTeamNodeMetadata';
|
|
76514
76523
|
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
76515
76524
|
lastUpdated?: Maybe<Scalars['Long']['output']>;
|
|
76516
|
-
status?: Maybe<
|
|
76525
|
+
status?: Maybe<GraphStoreInferredTeamNodeInferredTeamStatusOutput>;
|
|
76517
76526
|
};
|
|
76518
76527
|
export type GraphStoreIntFilterInput = {
|
|
76519
76528
|
greaterThan?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -77292,7 +77301,7 @@ export type GraphStoreMutationDeleteVulnerabilityAssociatedIssueArgs = {
|
|
|
77292
77301
|
input?: InputMaybe<GraphStoreDeleteVulnerabilityAssociatedIssueInput>;
|
|
77293
77302
|
};
|
|
77294
77303
|
export type GraphStoreNodeMetadata = GraphStoreGraphMemoryNodeMetadata | GraphStoreInferredDecisionNodeMetadata | GraphStoreInferredTeamNodeMetadata;
|
|
77295
|
-
export type GraphStoreNodeResponse = {
|
|
77304
|
+
export type GraphStoreNodeResponse = Node & {
|
|
77296
77305
|
__typename?: 'GraphStoreNodeResponse';
|
|
77297
77306
|
id: Scalars['ID']['output'];
|
|
77298
77307
|
metadata?: Maybe<GraphStoreNodeMetadata>;
|
|
@@ -118621,6 +118630,7 @@ export type HelpCenter = Node & {
|
|
|
118621
118630
|
id: Scalars['ID']['output'];
|
|
118622
118631
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
118623
118632
|
mappedProjectsCount?: Maybe<Scalars['Int']['output']>;
|
|
118633
|
+
migration?: Maybe<HelpCenterMigrationInfo>;
|
|
118624
118634
|
name?: Maybe<HelpCenterName>;
|
|
118625
118635
|
pages?: Maybe<Array<Maybe<HelpCenterPage>>>;
|
|
118626
118636
|
permissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
|
|
@@ -118844,6 +118854,16 @@ export type HelpCenterHomePageTitleInput = {
|
|
|
118844
118854
|
default: Scalars['String']['input'];
|
|
118845
118855
|
translations?: InputMaybe<Array<InputMaybe<HelpCenterTranslationInput>>>;
|
|
118846
118856
|
};
|
|
118857
|
+
export type HelpCenterHubGoLiveHelpCenterInput = {
|
|
118858
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
118859
|
+
};
|
|
118860
|
+
export type HelpCenterHubGoLiveHelpCenterPayload = Payload & {
|
|
118861
|
+
__typename?: 'HelpCenterHubGoLiveHelpCenterPayload';
|
|
118862
|
+
errors?: Maybe<Array<MutationError>>;
|
|
118863
|
+
helpCenterAri?: Maybe<Scalars['ID']['output']>;
|
|
118864
|
+
state?: Maybe<HelpCenterMigrationState>;
|
|
118865
|
+
success: Scalars['Boolean']['output'];
|
|
118866
|
+
};
|
|
118847
118867
|
export type HelpCenterHubLayoutTranslations = {
|
|
118848
118868
|
__typename?: 'HelpCenterHubLayoutTranslations';
|
|
118849
118869
|
blocks: Array<HelpCenterHubTranslationBlock>;
|
|
@@ -118854,6 +118874,17 @@ export type HelpCenterHubLayoutTranslationsPayload = Payload & {
|
|
|
118854
118874
|
errors?: Maybe<Array<MutationError>>;
|
|
118855
118875
|
success: Scalars['Boolean']['output'];
|
|
118856
118876
|
};
|
|
118877
|
+
export type HelpCenterHubMigrateHelpCenterInput = {
|
|
118878
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
118879
|
+
};
|
|
118880
|
+
export type HelpCenterHubMigrateHelpCenterPayload = Payload & {
|
|
118881
|
+
__typename?: 'HelpCenterHubMigrateHelpCenterPayload';
|
|
118882
|
+
errors?: Maybe<Array<MutationError>>;
|
|
118883
|
+
helpCenterAri?: Maybe<Scalars['ID']['output']>;
|
|
118884
|
+
migratedHubAri?: Maybe<Scalars['ID']['output']>;
|
|
118885
|
+
state?: Maybe<HelpCenterMigrationState>;
|
|
118886
|
+
success: Scalars['Boolean']['output'];
|
|
118887
|
+
};
|
|
118857
118888
|
export type HelpCenterHubProductEntityResult = {
|
|
118858
118889
|
__typename?: 'HelpCenterHubProductEntityResult';
|
|
118859
118890
|
data?: Maybe<HelpCenterProductEntityConnection>;
|
|
@@ -118936,6 +118967,28 @@ export declare enum HelpCenterMediaConfigOperationType {
|
|
|
118936
118967
|
LogoUpload = "LOGO_UPLOAD",
|
|
118937
118968
|
Read = "READ"
|
|
118938
118969
|
}
|
|
118970
|
+
export type HelpCenterMigrationInfo = {
|
|
118971
|
+
__typename?: 'HelpCenterMigrationInfo';
|
|
118972
|
+
migratedHubAri?: Maybe<Scalars['String']['output']>;
|
|
118973
|
+
preMigrationSummary?: Maybe<HelpCenterMigrationPreMigrationSummary>;
|
|
118974
|
+
state: HelpCenterMigrationState;
|
|
118975
|
+
};
|
|
118976
|
+
export type HelpCenterMigrationPreMigrationSummary = {
|
|
118977
|
+
__typename?: 'HelpCenterMigrationPreMigrationSummary';
|
|
118978
|
+
appsCount?: Maybe<Scalars['Int']['output']>;
|
|
118979
|
+
customPagesCount?: Maybe<Scalars['Int']['output']>;
|
|
118980
|
+
estimatedDurationSeconds?: Maybe<Scalars['Int']['output']>;
|
|
118981
|
+
knowledgeArticlesCount?: Maybe<Scalars['Int']['output']>;
|
|
118982
|
+
lastUpdatedAt?: Maybe<Scalars['String']['output']>;
|
|
118983
|
+
linkedSpacesCount?: Maybe<Scalars['Int']['output']>;
|
|
118984
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
118985
|
+
};
|
|
118986
|
+
export declare enum HelpCenterMigrationState {
|
|
118987
|
+
Failed = "FAILED",
|
|
118988
|
+
InProgress = "IN_PROGRESS",
|
|
118989
|
+
Migrated = "MIGRATED",
|
|
118990
|
+
Published = "PUBLISHED"
|
|
118991
|
+
}
|
|
118939
118992
|
export type HelpCenterMutationApi = {
|
|
118940
118993
|
__typename?: 'HelpCenterMutationApi';
|
|
118941
118994
|
createHelpCenter?: Maybe<HelpCenterCreatePayload>;
|
|
@@ -118945,6 +118998,8 @@ export type HelpCenterMutationApi = {
|
|
|
118945
118998
|
deleteHelpCenterPage?: Maybe<HelpCenterPageDeletePayload>;
|
|
118946
118999
|
deleteLayoutTranslations: HelpCenterHubLayoutTranslationsPayload;
|
|
118947
119000
|
deleteTopic?: Maybe<HelpCenterDeleteUpdateTopicPayload>;
|
|
119001
|
+
goLiveHelpCenter?: Maybe<HelpCenterHubGoLiveHelpCenterPayload>;
|
|
119002
|
+
migrateHelpCenter?: Maybe<HelpCenterHubMigrateHelpCenterPayload>;
|
|
118948
119003
|
setLayoutTranslations: HelpCenterHubLayoutTranslationsPayload;
|
|
118949
119004
|
updateHelpCenter?: Maybe<HelpCenterUpdatePayload>;
|
|
118950
119005
|
updateHelpCenterPage?: Maybe<HelpCenterPageUpdatePayload>;
|
|
@@ -118977,6 +119032,12 @@ export type HelpCenterMutationApiDeleteLayoutTranslationsArgs = {
|
|
|
118977
119032
|
export type HelpCenterMutationApiDeleteTopicArgs = {
|
|
118978
119033
|
input: HelpCenterBulkDeleteTopicInput;
|
|
118979
119034
|
};
|
|
119035
|
+
export type HelpCenterMutationApiGoLiveHelpCenterArgs = {
|
|
119036
|
+
input: HelpCenterHubGoLiveHelpCenterInput;
|
|
119037
|
+
};
|
|
119038
|
+
export type HelpCenterMutationApiMigrateHelpCenterArgs = {
|
|
119039
|
+
input: HelpCenterHubMigrateHelpCenterInput;
|
|
119040
|
+
};
|
|
118980
119041
|
export type HelpCenterMutationApiSetLayoutTranslationsArgs = {
|
|
118981
119042
|
input: HelpCenterHubTranslationsInput;
|
|
118982
119043
|
};
|
|
@@ -120865,6 +120926,17 @@ export type Homepage = {
|
|
|
120865
120926
|
title?: Maybe<Scalars['String']['output']>;
|
|
120866
120927
|
uri?: Maybe<Scalars['String']['output']>;
|
|
120867
120928
|
};
|
|
120929
|
+
export type HostNameEntry = {
|
|
120930
|
+
__typename?: 'HostNameEntry';
|
|
120931
|
+
contextARI: Scalars['String']['output'];
|
|
120932
|
+
hostName: Scalars['String']['output'];
|
|
120933
|
+
};
|
|
120934
|
+
export type HostNameSearchResponse = {
|
|
120935
|
+
__typename?: 'HostNameSearchResponse';
|
|
120936
|
+
entries: Array<HostNameEntry>;
|
|
120937
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
120938
|
+
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
120939
|
+
};
|
|
120868
120940
|
export type HostedResourcePreSignedUrl = {
|
|
120869
120941
|
__typename?: 'HostedResourcePreSignedUrl';
|
|
120870
120942
|
uploadFormData: Scalars['JSON']['output'];
|
|
@@ -131771,6 +131843,7 @@ export type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScenarioIssu
|
|
|
131771
131843
|
pinnedComments?: Maybe<JiraPinnedCommentsResponse>;
|
|
131772
131844
|
planScenarioValues?: Maybe<JiraScenarioIssueValues>;
|
|
131773
131845
|
postIncidentReviewLinks?: Maybe<GraphIncidentAssociatedPostIncidentReviewLinkRelationshipConnection>;
|
|
131846
|
+
preventionCenterOverviewSummary?: Maybe<ChangeManagementJsmPreventionCenterOverviewSummaryResponse>;
|
|
131774
131847
|
priority?: Maybe<JiraPriority>;
|
|
131775
131848
|
priorityField?: Maybe<JiraPriorityField>;
|
|
131776
131849
|
project?: Maybe<JiraProject>;
|
|
@@ -136795,6 +136868,7 @@ export type JiraMutation = {
|
|
|
136795
136868
|
jira_deletePolicy?: Maybe<JiraDeletePolicyPayload>;
|
|
136796
136869
|
jira_dismissForYouRecommendedAction?: Maybe<JiraDismissForYouRecommendedActionPayload>;
|
|
136797
136870
|
jira_policyRemediate?: Maybe<JiraPolicyRemediatePayload>;
|
|
136871
|
+
jira_setDefaultPolicy?: Maybe<JiraSetDefaultPolicyPayload>;
|
|
136798
136872
|
jira_setProjectPolicyAssociatedProjects?: Maybe<JiraSetProjectPolicyAssociatedProjectsPayload>;
|
|
136799
136873
|
jira_updatePolicy?: Maybe<JiraUpdatePolicyPayload>;
|
|
136800
136874
|
jira_updateProjectPolicyAssociatedProjects?: Maybe<JiraUpdateProjectPolicyAssociatedProjectsPayload>;
|
|
@@ -137263,6 +137337,9 @@ export type JiraMutationJira_DismissForYouRecommendedActionArgs = {
|
|
|
137263
137337
|
export type JiraMutationJira_PolicyRemediateArgs = {
|
|
137264
137338
|
input: JiraPolicyRemediateInput;
|
|
137265
137339
|
};
|
|
137340
|
+
export type JiraMutationJira_SetDefaultPolicyArgs = {
|
|
137341
|
+
input: JiraSetDefaultPolicyInput;
|
|
137342
|
+
};
|
|
137266
137343
|
export type JiraMutationJira_SetProjectPolicyAssociatedProjectsArgs = {
|
|
137267
137344
|
input: JiraSetProjectPolicyAssociatedProjectsInput;
|
|
137268
137345
|
};
|
|
@@ -139981,6 +140058,8 @@ export type JiraProjectVersionsArgs = {
|
|
|
139981
140058
|
releaseDateBefore?: InputMaybe<Scalars['Date']['input']>;
|
|
139982
140059
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
139983
140060
|
sortBy?: InputMaybe<JiraVersionSortInput>;
|
|
140061
|
+
startDateAfter?: InputMaybe<Scalars['Date']['input']>;
|
|
140062
|
+
startDateBefore?: InputMaybe<Scalars['Date']['input']>;
|
|
139984
140063
|
};
|
|
139985
140064
|
export type JiraProjectVersionsV2Args = {
|
|
139986
140065
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -146249,6 +146328,15 @@ export type JiraSetDefaultNavigationItemPayload = Payload & {
|
|
|
146249
146328
|
previousDefault?: Maybe<JiraNavigationItem>;
|
|
146250
146329
|
success: Scalars['Boolean']['output'];
|
|
146251
146330
|
};
|
|
146331
|
+
export type JiraSetDefaultPolicyInput = {
|
|
146332
|
+
isDefault: Scalars['Boolean']['input'];
|
|
146333
|
+
policyAri: Scalars['ID']['input'];
|
|
146334
|
+
};
|
|
146335
|
+
export type JiraSetDefaultPolicyPayload = Payload & {
|
|
146336
|
+
__typename?: 'JiraSetDefaultPolicyPayload';
|
|
146337
|
+
errors?: Maybe<Array<MutationError>>;
|
|
146338
|
+
success: Scalars['Boolean']['output'];
|
|
146339
|
+
};
|
|
146252
146340
|
export type JiraSetFaviconInput = {
|
|
146253
146341
|
cloudId: Scalars['ID']['input'];
|
|
146254
146342
|
faviconImageInput: JiraLookAndFeelImageInput;
|
|
@@ -149374,6 +149462,18 @@ export type JiraUpdateWorklogInput = {
|
|
|
149374
149462
|
timeSpent?: InputMaybe<JiraEstimateInput>;
|
|
149375
149463
|
workDescription?: InputMaybe<JiraAdfInput>;
|
|
149376
149464
|
};
|
|
149465
|
+
export type JiraUpsertAgentSpaceInstructionInput = {
|
|
149466
|
+
agentAri?: InputMaybe<Scalars['ID']['input']>;
|
|
149467
|
+
prompt: Scalars['String']['input'];
|
|
149468
|
+
scopeType: JiraAgentSpaceInstructionScopeType;
|
|
149469
|
+
spaceAri: Scalars['ID']['input'];
|
|
149470
|
+
};
|
|
149471
|
+
export type JiraUpsertAgentSpaceInstructionPayload = Payload & {
|
|
149472
|
+
__typename?: 'JiraUpsertAgentSpaceInstructionPayload';
|
|
149473
|
+
errors?: Maybe<Array<MutationError>>;
|
|
149474
|
+
instruction?: Maybe<JiraAgentSpaceInstruction>;
|
|
149475
|
+
success: Scalars['Boolean']['output'];
|
|
149476
|
+
};
|
|
149377
149477
|
export type JiraUpsertIssueTypePayload = Payload & {
|
|
149378
149478
|
__typename?: 'JiraUpsertIssueTypePayload';
|
|
149379
149479
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -157322,6 +157422,7 @@ export type LoomComment = Node & {
|
|
|
157322
157422
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
157323
157423
|
editedAt?: Maybe<Scalars['String']['output']>;
|
|
157324
157424
|
id: Scalars['ID']['output'];
|
|
157425
|
+
replies?: Maybe<Array<LoomCommentReply>>;
|
|
157325
157426
|
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
157326
157427
|
url?: Maybe<Scalars['String']['output']>;
|
|
157327
157428
|
user?: Maybe<User>;
|
|
@@ -157339,6 +157440,18 @@ export type LoomCommentEdge = {
|
|
|
157339
157440
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
157340
157441
|
node?: Maybe<LoomComment>;
|
|
157341
157442
|
};
|
|
157443
|
+
export type LoomCommentReply = {
|
|
157444
|
+
__typename?: 'LoomCommentReply';
|
|
157445
|
+
content?: Maybe<Scalars['String']['output']>;
|
|
157446
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
157447
|
+
editedAt?: Maybe<Scalars['String']['output']>;
|
|
157448
|
+
id: Scalars['ID']['output'];
|
|
157449
|
+
parentCommentId?: Maybe<Scalars['ID']['output']>;
|
|
157450
|
+
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
157451
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
157452
|
+
userId?: Maybe<Scalars['ID']['output']>;
|
|
157453
|
+
videoId: Scalars['ID']['output'];
|
|
157454
|
+
};
|
|
157342
157455
|
export type LoomCompleteVideoFileUploadInput = {
|
|
157343
157456
|
fileName?: InputMaybe<Scalars['String']['input']>;
|
|
157344
157457
|
folderId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -163549,10 +163662,28 @@ export type MercuryBenefitType = Node & {
|
|
|
163549
163662
|
updatedBy?: Maybe<User>;
|
|
163550
163663
|
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
163551
163664
|
};
|
|
163665
|
+
export type MercuryBenefitTypeConnection = {
|
|
163666
|
+
__typename?: 'MercuryBenefitTypeConnection';
|
|
163667
|
+
edges?: Maybe<Array<MercuryBenefitTypeEdge>>;
|
|
163668
|
+
pageInfo: PageInfo;
|
|
163669
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
163670
|
+
};
|
|
163671
|
+
export type MercuryBenefitTypeEdge = {
|
|
163672
|
+
__typename?: 'MercuryBenefitTypeEdge';
|
|
163673
|
+
cursor: Scalars['String']['output'];
|
|
163674
|
+
node?: Maybe<MercuryBenefitType>;
|
|
163675
|
+
};
|
|
163552
163676
|
export type MercuryBenefitTypeReferences = {
|
|
163553
163677
|
__typename?: 'MercuryBenefitTypeReferences';
|
|
163554
163678
|
count?: Maybe<Scalars['Int']['output']>;
|
|
163555
163679
|
};
|
|
163680
|
+
export type MercuryBenefitTypeSort = {
|
|
163681
|
+
field: MercuryBenefitTypeSortField;
|
|
163682
|
+
order: SortOrder;
|
|
163683
|
+
};
|
|
163684
|
+
export declare enum MercuryBenefitTypeSortField {
|
|
163685
|
+
Name = "NAME"
|
|
163686
|
+
}
|
|
163556
163687
|
export type MercuryBooleanCustomField = MercuryCustomField & {
|
|
163557
163688
|
__typename?: 'MercuryBooleanCustomField';
|
|
163558
163689
|
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -166354,6 +166485,7 @@ export type MercuryFundsQueryApi = {
|
|
|
166354
166485
|
benefitPeriodValues?: Maybe<Array<Maybe<MercuryBenefitPeriodValue>>>;
|
|
166355
166486
|
benefitTypes?: Maybe<Array<Maybe<MercuryBenefitType>>>;
|
|
166356
166487
|
benefitTypesByIds?: Maybe<Array<Maybe<MercuryBenefitType>>>;
|
|
166488
|
+
benefitTypesSearch?: Maybe<MercuryBenefitTypeConnection>;
|
|
166357
166489
|
costItemActivityHistoryByIds?: Maybe<Array<Maybe<MercuryCostItemActivityHistory>>>;
|
|
166358
166490
|
costItems?: Maybe<Array<Maybe<MercuryCostItem>>>;
|
|
166359
166491
|
costItemsSearch?: Maybe<MercuryCostItemConnection>;
|
|
@@ -166413,6 +166545,13 @@ export type MercuryFundsQueryApiBenefitTypesArgs = {
|
|
|
166413
166545
|
export type MercuryFundsQueryApiBenefitTypesByIdsArgs = {
|
|
166414
166546
|
ids: Array<Scalars['ID']['input']>;
|
|
166415
166547
|
};
|
|
166548
|
+
export type MercuryFundsQueryApiBenefitTypesSearchArgs = {
|
|
166549
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
166550
|
+
cloudId: Scalars['ID']['input'];
|
|
166551
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
166552
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
166553
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryBenefitTypeSort>>>;
|
|
166554
|
+
};
|
|
166416
166555
|
export type MercuryFundsQueryApiCostItemActivityHistoryByIdsArgs = {
|
|
166417
166556
|
ids: Array<Scalars['ID']['input']>;
|
|
166418
166557
|
};
|
|
@@ -172353,7 +172492,6 @@ export type Mutation = {
|
|
|
172353
172492
|
agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
|
|
172354
172493
|
agentWorkspace_updateSkillCategory?: Maybe<AgentWorkspaceSkillCategoryUpdatePayload>;
|
|
172355
172494
|
agentWorkspace_updateSkillMappingsInProject?: Maybe<AgentWorkspaceUpdateSkillMappingsInProjectPayload>;
|
|
172356
|
-
agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
172357
172495
|
agentWorkspace_upsertDraftedRoutingTableEntry?: Maybe<AgentWorkspaceUpsertDraftedRoutingTableEntryPayload>;
|
|
172358
172496
|
aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
|
|
172359
172497
|
aiCoreApi_initiateRsaReport?: Maybe<AiCoreApiRsaInitiateReportResult>;
|
|
@@ -173422,6 +173560,7 @@ export type Mutation = {
|
|
|
173422
173560
|
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
173423
173561
|
jira_updateSchemeFieldPerWorkTypeCustomizations?: Maybe<JiraFieldWorkTypeConfigurationPayload>;
|
|
173424
173562
|
jira_updateSchemeFieldRendererToRichText?: Maybe<JiraSchemeFieldRendererToRichTextPayload>;
|
|
173563
|
+
jira_upsertAgentSpaceInstruction?: Maybe<JiraUpsertAgentSpaceInstructionPayload>;
|
|
173425
173564
|
jpdViewsService_associateGlobalView?: Maybe<JpdViewsServiceAssociateGlobalViewPayload>;
|
|
173426
173565
|
jpdViewsService_cloneGlobalView?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
173427
173566
|
jpdViewsService_cloneViewIntoGlobal?: Maybe<JpdViewsServiceCreateGlobalViewPayload2>;
|
|
@@ -174469,9 +174608,6 @@ export type MutationAgentWorkspace_UpdateSkillCategoryArgs = {
|
|
|
174469
174608
|
export type MutationAgentWorkspace_UpdateSkillMappingsInProjectArgs = {
|
|
174470
174609
|
input: AgentWorkspaceUpdateSkillMappingsInProjectInput;
|
|
174471
174610
|
};
|
|
174472
|
-
export type MutationAgentWorkspace_UpdateSmartRoutingConfigArgs = {
|
|
174473
|
-
input: AgentWorkspaceUpdateSmartRoutingConfigInput;
|
|
174474
|
-
};
|
|
174475
174611
|
export type MutationAgentWorkspace_UpsertDraftedRoutingTableEntryArgs = {
|
|
174476
174612
|
input: AgentWorkspaceUpsertDraftedRoutingTableEntryInput;
|
|
174477
174613
|
};
|
|
@@ -178165,6 +178301,10 @@ export type MutationJira_UpdateSchemeFieldRendererToRichTextArgs = {
|
|
|
178165
178301
|
cloudId: Scalars['ID']['input'];
|
|
178166
178302
|
input: JiraSchemeFieldRendererToRichTextInput;
|
|
178167
178303
|
};
|
|
178304
|
+
export type MutationJira_UpsertAgentSpaceInstructionArgs = {
|
|
178305
|
+
cloudId: Scalars['ID']['input'];
|
|
178306
|
+
input: JiraUpsertAgentSpaceInstructionInput;
|
|
178307
|
+
};
|
|
178168
178308
|
export type MutationJpdViewsService_AssociateGlobalViewArgs = {
|
|
178169
178309
|
input: JpdViewsServiceAssociateGlobalViewInput;
|
|
178170
178310
|
};
|
|
@@ -182347,30 +182487,6 @@ export type PrivacyEnhancingTechniques = {
|
|
|
182347
182487
|
arePrivacyEnhancingTechniquesSupported: Scalars['Boolean']['output'];
|
|
182348
182488
|
privacyEnhancingTechniquesSupported?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
182349
182489
|
};
|
|
182350
|
-
export type ProactiveAiEchoEdge = {
|
|
182351
|
-
__typename?: 'ProactiveAiEchoEdge';
|
|
182352
|
-
cursor: Scalars['String']['output'];
|
|
182353
|
-
node?: Maybe<ProactiveAiEchoMessage>;
|
|
182354
|
-
};
|
|
182355
|
-
export type ProactiveAiEchoMessage = {
|
|
182356
|
-
__typename?: 'ProactiveAiEchoMessage';
|
|
182357
|
-
index: Scalars['Int']['output'];
|
|
182358
|
-
originalMessage: Scalars['String']['output'];
|
|
182359
|
-
};
|
|
182360
|
-
export type ProactiveAiEchoResponse = {
|
|
182361
|
-
__typename?: 'ProactiveAiEchoResponse';
|
|
182362
|
-
message: Scalars['String']['output'];
|
|
182363
|
-
paginatedResults?: Maybe<ProactiveAiEchoResultsConnection>;
|
|
182364
|
-
timestamp: Scalars['String']['output'];
|
|
182365
|
-
userAccountId: Scalars['String']['output'];
|
|
182366
|
-
};
|
|
182367
|
-
export type ProactiveAiEchoResultsConnection = {
|
|
182368
|
-
__typename?: 'ProactiveAiEchoResultsConnection';
|
|
182369
|
-
edges?: Maybe<Array<ProactiveAiEchoEdge>>;
|
|
182370
|
-
errors?: Maybe<Array<QueryError>>;
|
|
182371
|
-
pageInfo: PageInfo;
|
|
182372
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
182373
|
-
};
|
|
182374
182490
|
export type ProactiveAiRovoInsightsDataResponse = {
|
|
182375
182491
|
__typename?: 'ProactiveAiRovoInsightsDataResponse';
|
|
182376
182492
|
count: Scalars['Int']['output'];
|
|
@@ -186652,7 +186768,6 @@ export type Query = {
|
|
|
186652
186768
|
popularFeed?: Maybe<PaginatedPopularFeed>;
|
|
186653
186769
|
postOffice_getMessages?: Maybe<PostOfficeEnrichedMessagePayload>;
|
|
186654
186770
|
postOffice_placeholder?: Maybe<Scalars['String']['output']>;
|
|
186655
|
-
proactiveAi_echo?: Maybe<ProactiveAiEchoResponse>;
|
|
186656
186771
|
proactiveAi_rovoInsightsData?: Maybe<ProactiveAiRovoInsightsDataResponse>;
|
|
186657
186772
|
proactiveAi_rovoInsightsStatus?: Maybe<ProactiveAiRovoInsightsStatusResponse>;
|
|
186658
186773
|
proactiveAi_stratusTestInsights?: Maybe<ProactiveAiStratusTestInsightsResponse>;
|
|
@@ -186748,6 +186863,7 @@ export type Query = {
|
|
|
186748
186863
|
roadmaps?: Maybe<RoadmapsQuery>;
|
|
186749
186864
|
sandbox: SandboxQuery;
|
|
186750
186865
|
search?: Maybe<SearchQueryApi>;
|
|
186866
|
+
searchHostNames?: Maybe<HostNameSearchResponse>;
|
|
186751
186867
|
searchTimeseriesCTR?: Maybe<SearchTimeseriesCtr>;
|
|
186752
186868
|
searchTimeseriesCount?: Maybe<SearchTimeseriesCount>;
|
|
186753
186869
|
searchesByTerm?: Maybe<SearchesByTerm>;
|
|
@@ -186969,7 +187085,6 @@ export type Query = {
|
|
|
186969
187085
|
webPanels?: Maybe<Array<Maybe<WebPanel>>>;
|
|
186970
187086
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
186971
187087
|
workSuggestions?: Maybe<WorkSuggestions>;
|
|
186972
|
-
xflow?: Maybe<Scalars['String']['output']>;
|
|
186973
187088
|
};
|
|
186974
187089
|
export type QueryAdminAnnouncementBannerSettingArgs = {
|
|
186975
187090
|
id: Scalars['String']['input'];
|
|
@@ -208740,14 +208855,6 @@ export type QueryPostOffice_GetMessagesArgs = {
|
|
|
208740
208855
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
208741
208856
|
payload: PostOfficeGetMessagesInput;
|
|
208742
208857
|
};
|
|
208743
|
-
export type QueryProactiveAi_EchoArgs = {
|
|
208744
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
208745
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
208746
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
208747
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
208748
|
-
message: Scalars['String']['input'];
|
|
208749
|
-
pageId: Scalars['ID']['input'];
|
|
208750
|
-
};
|
|
208751
208858
|
export type QueryProactiveAi_RovoInsightsDataArgs = {
|
|
208752
208859
|
cloudId: Scalars['ID']['input'];
|
|
208753
208860
|
debugInfo?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -209174,6 +209281,11 @@ export type QueryRepositoryRelationshipsForDevOpsServiceArgs = {
|
|
|
209174
209281
|
id: Scalars['ID']['input'];
|
|
209175
209282
|
sort?: InputMaybe<DevOpsServiceAndRepositoryRelationshipSort>;
|
|
209176
209283
|
};
|
|
209284
|
+
export type QuerySearchHostNamesArgs = {
|
|
209285
|
+
appId: Scalars['ID']['input'];
|
|
209286
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
209287
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
209288
|
+
};
|
|
209177
209289
|
export type QuerySearchTimeseriesCtrArgs = {
|
|
209178
209290
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
209179
209291
|
eventName: Array<AnalyticsSearchEventName>;
|
|
@@ -213661,6 +213773,7 @@ export type SearchQueryApiAsyncSearchArgs = {
|
|
|
213661
213773
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
213662
213774
|
searchToolContext?: InputMaybe<SearchToolContext>;
|
|
213663
213775
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
213776
|
+
useCaseId?: InputMaybe<Scalars['String']['input']>;
|
|
213664
213777
|
};
|
|
213665
213778
|
export type SearchQueryApiConfigurationArgs = {
|
|
213666
213779
|
cloudId: Scalars['ID']['input'];
|
|
@@ -213693,6 +213806,7 @@ export type SearchQueryApiSearchArgs = {
|
|
|
213693
213806
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
213694
213807
|
searchToolContext?: InputMaybe<SearchToolContext>;
|
|
213695
213808
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
213809
|
+
useCaseId?: InputMaybe<Scalars['String']['input']>;
|
|
213696
213810
|
};
|
|
213697
213811
|
export type SearchQueryInfo = {
|
|
213698
213812
|
__typename?: 'SearchQueryInfo';
|
|
@@ -237847,8 +237961,8 @@ export declare enum StakeholderCommsSubscriptionType {
|
|
|
237847
237961
|
}
|
|
237848
237962
|
export type StakeholderCommsSuggestIncidentComponentsResponse = {
|
|
237849
237963
|
__typename?: 'StakeholderCommsSuggestIncidentComponentsResponse';
|
|
237850
|
-
suggestions
|
|
237851
|
-
suppressed
|
|
237964
|
+
suggestions?: Maybe<Array<Maybe<StakeholderCommsSuggestedComponent>>>;
|
|
237965
|
+
suppressed?: Maybe<Scalars['Boolean']['output']>;
|
|
237852
237966
|
suppressionReason?: Maybe<StakeholderCommsComponentSuppressionReason>;
|
|
237853
237967
|
};
|
|
237854
237968
|
export type StakeholderCommsSuggestStatusPageResponse = {
|
|
@@ -237862,12 +237976,12 @@ export type StakeholderCommsSuggestStatusPageResponse = {
|
|
|
237862
237976
|
export type StakeholderCommsSuggestedComponent = {
|
|
237863
237977
|
__typename?: 'StakeholderCommsSuggestedComponent';
|
|
237864
237978
|
affectedServiceName?: Maybe<Scalars['String']['output']>;
|
|
237865
|
-
componentId
|
|
237866
|
-
componentName
|
|
237867
|
-
confidence
|
|
237868
|
-
impactType
|
|
237869
|
-
inferred
|
|
237870
|
-
pageId
|
|
237979
|
+
componentId?: Maybe<Scalars['String']['output']>;
|
|
237980
|
+
componentName?: Maybe<Scalars['String']['output']>;
|
|
237981
|
+
confidence?: Maybe<StakeholderCommsSuggestionConfidence>;
|
|
237982
|
+
impactType?: Maybe<StakeholderCommsComponentImpactType>;
|
|
237983
|
+
inferred?: Maybe<Scalars['Boolean']['output']>;
|
|
237984
|
+
pageId?: Maybe<Scalars['String']['output']>;
|
|
237871
237985
|
reason?: Maybe<Scalars['String']['output']>;
|
|
237872
237986
|
suggestedStatus?: Maybe<StakeholderCommsComponentStatus>;
|
|
237873
237987
|
};
|
|
@@ -250556,6 +250670,7 @@ export type TrelloQueryApi = {
|
|
|
250556
250670
|
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
250557
250671
|
cardOrInboxCardByShortLink?: Maybe<TrelloBaseCard>;
|
|
250558
250672
|
checklistsById?: Maybe<Array<Maybe<TrelloChecklist>>>;
|
|
250673
|
+
comment?: Maybe<TrelloCommentCardAction>;
|
|
250559
250674
|
echo?: Maybe<Scalars['String']['output']>;
|
|
250560
250675
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
250561
250676
|
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
@@ -250635,6 +250750,9 @@ export type TrelloQueryApiCardOrInboxCardByShortLinkArgs = {
|
|
|
250635
250750
|
export type TrelloQueryApiChecklistsByIdArgs = {
|
|
250636
250751
|
ids: Array<Scalars['ID']['input']>;
|
|
250637
250752
|
};
|
|
250753
|
+
export type TrelloQueryApiCommentArgs = {
|
|
250754
|
+
id: Scalars['ID']['input'];
|
|
250755
|
+
};
|
|
250638
250756
|
export type TrelloQueryApiEchosArgs = {
|
|
250639
250757
|
echo: Array<Scalars['String']['input']>;
|
|
250640
250758
|
};
|
|
@@ -251362,7 +251480,6 @@ export type TrelloUpdateApplicationPayload = Payload & {
|
|
|
251362
251480
|
};
|
|
251363
251481
|
export type TrelloUpdateAttachmentNameInput = {
|
|
251364
251482
|
attachmentId: Scalars['ID']['input'];
|
|
251365
|
-
cardId: Scalars['ID']['input'];
|
|
251366
251483
|
name: Scalars['String']['input'];
|
|
251367
251484
|
};
|
|
251368
251485
|
export type TrelloUpdateAttachmentNamePayload = Payload & {
|
|
@@ -252019,10 +252136,16 @@ export type TrelloVoiceCaptureSessionCardEdgeUpdated = {
|
|
|
252019
252136
|
__typename?: 'TrelloVoiceCaptureSessionCardEdgeUpdated';
|
|
252020
252137
|
node?: Maybe<TrelloVoiceCaptureCardUpdated>;
|
|
252021
252138
|
};
|
|
252139
|
+
export type TrelloVoiceCaptureSessionError = {
|
|
252140
|
+
__typename?: 'TrelloVoiceCaptureSessionError';
|
|
252141
|
+
code: Scalars['String']['output'];
|
|
252142
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
252143
|
+
};
|
|
252022
252144
|
export type TrelloVoiceCaptureSessionUpdated = TrelloStatefulSessionUpdated & {
|
|
252023
252145
|
__typename?: 'TrelloVoiceCaptureSessionUpdated';
|
|
252024
252146
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
252025
252147
|
cards?: Maybe<TrelloVoiceCaptureSessionCardConnectionUpdated>;
|
|
252148
|
+
errors?: Maybe<Array<TrelloVoiceCaptureSessionError>>;
|
|
252026
252149
|
sessionId: Scalars['ID']['output'];
|
|
252027
252150
|
transcript?: Maybe<Scalars['String']['output']>;
|
|
252028
252151
|
};
|