@forge/cli-shared 9.3.0-next.17-experimental-6320d72 → 9.3.0-next.18
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 +3 -33
- package/out/graphql/graphql-types.d.ts +273 -70
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +123 -67
- package/out/service/statsig-service.d.ts +1 -2
- package/out/service/statsig-service.d.ts.map +1 -1
- package/out/service/statsig-service.js +0 -3
- 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;
|
|
@@ -157334,6 +157422,7 @@ export type LoomComment = Node & {
|
|
|
157334
157422
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
157335
157423
|
editedAt?: Maybe<Scalars['String']['output']>;
|
|
157336
157424
|
id: Scalars['ID']['output'];
|
|
157425
|
+
replies?: Maybe<Array<LoomCommentReply>>;
|
|
157337
157426
|
timestamp?: Maybe<Scalars['Int']['output']>;
|
|
157338
157427
|
url?: Maybe<Scalars['String']['output']>;
|
|
157339
157428
|
user?: Maybe<User>;
|
|
@@ -157351,6 +157440,18 @@ export type LoomCommentEdge = {
|
|
|
157351
157440
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
157352
157441
|
node?: Maybe<LoomComment>;
|
|
157353
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
|
+
};
|
|
157354
157455
|
export type LoomCompleteVideoFileUploadInput = {
|
|
157355
157456
|
fileName?: InputMaybe<Scalars['String']['input']>;
|
|
157356
157457
|
folderId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -163561,10 +163662,28 @@ export type MercuryBenefitType = Node & {
|
|
|
163561
163662
|
updatedBy?: Maybe<User>;
|
|
163562
163663
|
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
163563
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
|
+
};
|
|
163564
163676
|
export type MercuryBenefitTypeReferences = {
|
|
163565
163677
|
__typename?: 'MercuryBenefitTypeReferences';
|
|
163566
163678
|
count?: Maybe<Scalars['Int']['output']>;
|
|
163567
163679
|
};
|
|
163680
|
+
export type MercuryBenefitTypeSort = {
|
|
163681
|
+
field: MercuryBenefitTypeSortField;
|
|
163682
|
+
order: SortOrder;
|
|
163683
|
+
};
|
|
163684
|
+
export declare enum MercuryBenefitTypeSortField {
|
|
163685
|
+
Name = "NAME"
|
|
163686
|
+
}
|
|
163568
163687
|
export type MercuryBooleanCustomField = MercuryCustomField & {
|
|
163569
163688
|
__typename?: 'MercuryBooleanCustomField';
|
|
163570
163689
|
booleanValue?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -166366,6 +166485,7 @@ export type MercuryFundsQueryApi = {
|
|
|
166366
166485
|
benefitPeriodValues?: Maybe<Array<Maybe<MercuryBenefitPeriodValue>>>;
|
|
166367
166486
|
benefitTypes?: Maybe<Array<Maybe<MercuryBenefitType>>>;
|
|
166368
166487
|
benefitTypesByIds?: Maybe<Array<Maybe<MercuryBenefitType>>>;
|
|
166488
|
+
benefitTypesSearch?: Maybe<MercuryBenefitTypeConnection>;
|
|
166369
166489
|
costItemActivityHistoryByIds?: Maybe<Array<Maybe<MercuryCostItemActivityHistory>>>;
|
|
166370
166490
|
costItems?: Maybe<Array<Maybe<MercuryCostItem>>>;
|
|
166371
166491
|
costItemsSearch?: Maybe<MercuryCostItemConnection>;
|
|
@@ -166425,6 +166545,13 @@ export type MercuryFundsQueryApiBenefitTypesArgs = {
|
|
|
166425
166545
|
export type MercuryFundsQueryApiBenefitTypesByIdsArgs = {
|
|
166426
166546
|
ids: Array<Scalars['ID']['input']>;
|
|
166427
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
|
+
};
|
|
166428
166555
|
export type MercuryFundsQueryApiCostItemActivityHistoryByIdsArgs = {
|
|
166429
166556
|
ids: Array<Scalars['ID']['input']>;
|
|
166430
166557
|
};
|
|
@@ -172365,7 +172492,6 @@ export type Mutation = {
|
|
|
172365
172492
|
agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
|
|
172366
172493
|
agentWorkspace_updateSkillCategory?: Maybe<AgentWorkspaceSkillCategoryUpdatePayload>;
|
|
172367
172494
|
agentWorkspace_updateSkillMappingsInProject?: Maybe<AgentWorkspaceUpdateSkillMappingsInProjectPayload>;
|
|
172368
|
-
agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
172369
172495
|
agentWorkspace_upsertDraftedRoutingTableEntry?: Maybe<AgentWorkspaceUpsertDraftedRoutingTableEntryPayload>;
|
|
172370
172496
|
aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
|
|
172371
172497
|
aiCoreApi_initiateRsaReport?: Maybe<AiCoreApiRsaInitiateReportResult>;
|
|
@@ -174482,9 +174608,6 @@ export type MutationAgentWorkspace_UpdateSkillCategoryArgs = {
|
|
|
174482
174608
|
export type MutationAgentWorkspace_UpdateSkillMappingsInProjectArgs = {
|
|
174483
174609
|
input: AgentWorkspaceUpdateSkillMappingsInProjectInput;
|
|
174484
174610
|
};
|
|
174485
|
-
export type MutationAgentWorkspace_UpdateSmartRoutingConfigArgs = {
|
|
174486
|
-
input: AgentWorkspaceUpdateSmartRoutingConfigInput;
|
|
174487
|
-
};
|
|
174488
174611
|
export type MutationAgentWorkspace_UpsertDraftedRoutingTableEntryArgs = {
|
|
174489
174612
|
input: AgentWorkspaceUpsertDraftedRoutingTableEntryInput;
|
|
174490
174613
|
};
|
|
@@ -182364,30 +182487,6 @@ export type PrivacyEnhancingTechniques = {
|
|
|
182364
182487
|
arePrivacyEnhancingTechniquesSupported: Scalars['Boolean']['output'];
|
|
182365
182488
|
privacyEnhancingTechniquesSupported?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
182366
182489
|
};
|
|
182367
|
-
export type ProactiveAiEchoEdge = {
|
|
182368
|
-
__typename?: 'ProactiveAiEchoEdge';
|
|
182369
|
-
cursor: Scalars['String']['output'];
|
|
182370
|
-
node?: Maybe<ProactiveAiEchoMessage>;
|
|
182371
|
-
};
|
|
182372
|
-
export type ProactiveAiEchoMessage = {
|
|
182373
|
-
__typename?: 'ProactiveAiEchoMessage';
|
|
182374
|
-
index: Scalars['Int']['output'];
|
|
182375
|
-
originalMessage: Scalars['String']['output'];
|
|
182376
|
-
};
|
|
182377
|
-
export type ProactiveAiEchoResponse = {
|
|
182378
|
-
__typename?: 'ProactiveAiEchoResponse';
|
|
182379
|
-
message: Scalars['String']['output'];
|
|
182380
|
-
paginatedResults?: Maybe<ProactiveAiEchoResultsConnection>;
|
|
182381
|
-
timestamp: Scalars['String']['output'];
|
|
182382
|
-
userAccountId: Scalars['String']['output'];
|
|
182383
|
-
};
|
|
182384
|
-
export type ProactiveAiEchoResultsConnection = {
|
|
182385
|
-
__typename?: 'ProactiveAiEchoResultsConnection';
|
|
182386
|
-
edges?: Maybe<Array<ProactiveAiEchoEdge>>;
|
|
182387
|
-
errors?: Maybe<Array<QueryError>>;
|
|
182388
|
-
pageInfo: PageInfo;
|
|
182389
|
-
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
182390
|
-
};
|
|
182391
182490
|
export type ProactiveAiRovoInsightsDataResponse = {
|
|
182392
182491
|
__typename?: 'ProactiveAiRovoInsightsDataResponse';
|
|
182393
182492
|
count: Scalars['Int']['output'];
|
|
@@ -186669,7 +186768,6 @@ export type Query = {
|
|
|
186669
186768
|
popularFeed?: Maybe<PaginatedPopularFeed>;
|
|
186670
186769
|
postOffice_getMessages?: Maybe<PostOfficeEnrichedMessagePayload>;
|
|
186671
186770
|
postOffice_placeholder?: Maybe<Scalars['String']['output']>;
|
|
186672
|
-
proactiveAi_echo?: Maybe<ProactiveAiEchoResponse>;
|
|
186673
186771
|
proactiveAi_rovoInsightsData?: Maybe<ProactiveAiRovoInsightsDataResponse>;
|
|
186674
186772
|
proactiveAi_rovoInsightsStatus?: Maybe<ProactiveAiRovoInsightsStatusResponse>;
|
|
186675
186773
|
proactiveAi_stratusTestInsights?: Maybe<ProactiveAiStratusTestInsightsResponse>;
|
|
@@ -186765,6 +186863,7 @@ export type Query = {
|
|
|
186765
186863
|
roadmaps?: Maybe<RoadmapsQuery>;
|
|
186766
186864
|
sandbox: SandboxQuery;
|
|
186767
186865
|
search?: Maybe<SearchQueryApi>;
|
|
186866
|
+
searchHostNames?: Maybe<HostNameSearchResponse>;
|
|
186768
186867
|
searchTimeseriesCTR?: Maybe<SearchTimeseriesCtr>;
|
|
186769
186868
|
searchTimeseriesCount?: Maybe<SearchTimeseriesCount>;
|
|
186770
186869
|
searchesByTerm?: Maybe<SearchesByTerm>;
|
|
@@ -186911,6 +187010,8 @@ export type Query = {
|
|
|
186911
187010
|
statusUpdates_byTeam?: Maybe<TownsquareUpdateConnection>;
|
|
186912
187011
|
statusUpdates_forSavedView?: Maybe<TownsquareUpdateConnection>;
|
|
186913
187012
|
studio_solutionPlan?: Maybe<StudioSolutionPlan>;
|
|
187013
|
+
studio_templateCategories?: Maybe<StudioTemplateCategoriesResponse>;
|
|
187014
|
+
studio_templates?: Maybe<StudioTemplatesResponse>;
|
|
186914
187015
|
studio_workspaceAiEnabled?: Maybe<StudioWorkspaceAiEnabled>;
|
|
186915
187016
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
186916
187017
|
suggestedSpaces?: Maybe<PaginatedSpaceList>;
|
|
@@ -186986,7 +187087,6 @@ export type Query = {
|
|
|
186986
187087
|
webPanels?: Maybe<Array<Maybe<WebPanel>>>;
|
|
186987
187088
|
webTriggerUrlsByAppContext?: Maybe<Array<WebTriggerUrl>>;
|
|
186988
187089
|
workSuggestions?: Maybe<WorkSuggestions>;
|
|
186989
|
-
xflow?: Maybe<Scalars['String']['output']>;
|
|
186990
187090
|
};
|
|
186991
187091
|
export type QueryAdminAnnouncementBannerSettingArgs = {
|
|
186992
187092
|
id: Scalars['String']['input'];
|
|
@@ -208757,14 +208857,6 @@ export type QueryPostOffice_GetMessagesArgs = {
|
|
|
208757
208857
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
208758
208858
|
payload: PostOfficeGetMessagesInput;
|
|
208759
208859
|
};
|
|
208760
|
-
export type QueryProactiveAi_EchoArgs = {
|
|
208761
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
208762
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
208763
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
208764
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
208765
|
-
message: Scalars['String']['input'];
|
|
208766
|
-
pageId: Scalars['ID']['input'];
|
|
208767
|
-
};
|
|
208768
208860
|
export type QueryProactiveAi_RovoInsightsDataArgs = {
|
|
208769
208861
|
cloudId: Scalars['ID']['input'];
|
|
208770
208862
|
debugInfo?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -209191,6 +209283,11 @@ export type QueryRepositoryRelationshipsForDevOpsServiceArgs = {
|
|
|
209191
209283
|
id: Scalars['ID']['input'];
|
|
209192
209284
|
sort?: InputMaybe<DevOpsServiceAndRepositoryRelationshipSort>;
|
|
209193
209285
|
};
|
|
209286
|
+
export type QuerySearchHostNamesArgs = {
|
|
209287
|
+
appId: Scalars['ID']['input'];
|
|
209288
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
209289
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
209290
|
+
};
|
|
209194
209291
|
export type QuerySearchTimeseriesCtrArgs = {
|
|
209195
209292
|
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
209196
209293
|
eventName: Array<AnalyticsSearchEventName>;
|
|
@@ -209820,6 +209917,12 @@ export type QueryStudio_SolutionPlanArgs = {
|
|
|
209820
209917
|
solutionVersion: Scalars['Int']['input'];
|
|
209821
209918
|
workspaceId: Scalars['ID']['input'];
|
|
209822
209919
|
};
|
|
209920
|
+
export type QueryStudio_TemplateCategoriesArgs = {
|
|
209921
|
+
workspaceId: Scalars['ID']['input'];
|
|
209922
|
+
};
|
|
209923
|
+
export type QueryStudio_TemplatesArgs = {
|
|
209924
|
+
workspaceId: Scalars['ID']['input'];
|
|
209925
|
+
};
|
|
209823
209926
|
export type QueryStudio_WorkspaceAiEnabledArgs = {
|
|
209824
209927
|
workspaceId: Scalars['ID']['input'];
|
|
209825
209928
|
};
|
|
@@ -213678,6 +213781,7 @@ export type SearchQueryApiAsyncSearchArgs = {
|
|
|
213678
213781
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
213679
213782
|
searchToolContext?: InputMaybe<SearchToolContext>;
|
|
213680
213783
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
213784
|
+
useCaseId?: InputMaybe<Scalars['String']['input']>;
|
|
213681
213785
|
};
|
|
213682
213786
|
export type SearchQueryApiConfigurationArgs = {
|
|
213683
213787
|
cloudId: Scalars['ID']['input'];
|
|
@@ -213710,6 +213814,7 @@ export type SearchQueryApiSearchArgs = {
|
|
|
213710
213814
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
213711
213815
|
searchToolContext?: InputMaybe<SearchToolContext>;
|
|
213712
213816
|
sort?: InputMaybe<Array<InputMaybe<SearchSortInput>>>;
|
|
213817
|
+
useCaseId?: InputMaybe<Scalars['String']['input']>;
|
|
213713
213818
|
};
|
|
213714
213819
|
export type SearchQueryInfo = {
|
|
213715
213820
|
__typename?: 'SearchQueryInfo';
|
|
@@ -237864,8 +237969,8 @@ export declare enum StakeholderCommsSubscriptionType {
|
|
|
237864
237969
|
}
|
|
237865
237970
|
export type StakeholderCommsSuggestIncidentComponentsResponse = {
|
|
237866
237971
|
__typename?: 'StakeholderCommsSuggestIncidentComponentsResponse';
|
|
237867
|
-
suggestions
|
|
237868
|
-
suppressed
|
|
237972
|
+
suggestions?: Maybe<Array<Maybe<StakeholderCommsSuggestedComponent>>>;
|
|
237973
|
+
suppressed?: Maybe<Scalars['Boolean']['output']>;
|
|
237869
237974
|
suppressionReason?: Maybe<StakeholderCommsComponentSuppressionReason>;
|
|
237870
237975
|
};
|
|
237871
237976
|
export type StakeholderCommsSuggestStatusPageResponse = {
|
|
@@ -237879,12 +237984,12 @@ export type StakeholderCommsSuggestStatusPageResponse = {
|
|
|
237879
237984
|
export type StakeholderCommsSuggestedComponent = {
|
|
237880
237985
|
__typename?: 'StakeholderCommsSuggestedComponent';
|
|
237881
237986
|
affectedServiceName?: Maybe<Scalars['String']['output']>;
|
|
237882
|
-
componentId
|
|
237883
|
-
componentName
|
|
237884
|
-
confidence
|
|
237885
|
-
impactType
|
|
237886
|
-
inferred
|
|
237887
|
-
pageId
|
|
237987
|
+
componentId?: Maybe<Scalars['String']['output']>;
|
|
237988
|
+
componentName?: Maybe<Scalars['String']['output']>;
|
|
237989
|
+
confidence?: Maybe<StakeholderCommsSuggestionConfidence>;
|
|
237990
|
+
impactType?: Maybe<StakeholderCommsComponentImpactType>;
|
|
237991
|
+
inferred?: Maybe<Scalars['Boolean']['output']>;
|
|
237992
|
+
pageId?: Maybe<Scalars['String']['output']>;
|
|
237888
237993
|
reason?: Maybe<Scalars['String']['output']>;
|
|
237889
237994
|
suggestedStatus?: Maybe<StakeholderCommsComponentStatus>;
|
|
237890
237995
|
};
|
|
@@ -238143,6 +238248,16 @@ export type StudioBuilds = {
|
|
|
238143
238248
|
__typename?: 'StudioBuilds';
|
|
238144
238249
|
sequence?: Maybe<Array<Maybe<StudioBuild>>>;
|
|
238145
238250
|
};
|
|
238251
|
+
export type StudioCategorySourceDiagnostic = {
|
|
238252
|
+
__typename?: 'StudioCategorySourceDiagnostic';
|
|
238253
|
+
message: Scalars['String']['output'];
|
|
238254
|
+
source: Scalars['String']['output'];
|
|
238255
|
+
status: StudioCategorySourceStatus;
|
|
238256
|
+
};
|
|
238257
|
+
export declare enum StudioCategorySourceStatus {
|
|
238258
|
+
Error = "ERROR",
|
|
238259
|
+
Ok = "OK"
|
|
238260
|
+
}
|
|
238146
238261
|
export type StudioCreateDraftBuildDetails = {
|
|
238147
238262
|
__typename?: 'StudioCreateDraftBuildDetails';
|
|
238148
238263
|
ari?: Maybe<Scalars['ID']['output']>;
|
|
@@ -238187,6 +238302,85 @@ export type StudioSolutionPlan = {
|
|
|
238187
238302
|
updatedBy?: Maybe<User>;
|
|
238188
238303
|
workspaceId: Scalars['ID']['output'];
|
|
238189
238304
|
};
|
|
238305
|
+
export type StudioTemplate = {
|
|
238306
|
+
__typename?: 'StudioTemplate';
|
|
238307
|
+
apps: Array<Scalars['String']['output']>;
|
|
238308
|
+
categories: Array<StudioTemplateCategorySummary>;
|
|
238309
|
+
collection: StudioTemplateCollection;
|
|
238310
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
238311
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
238312
|
+
hasAgenticAction: Scalars['Boolean']['output'];
|
|
238313
|
+
howItWorks: Array<StudioTemplateHowItWorksStep>;
|
|
238314
|
+
id: Scalars['String']['output'];
|
|
238315
|
+
name: Scalars['String']['output'];
|
|
238316
|
+
skills?: Maybe<Array<Scalars['String']['output']>>;
|
|
238317
|
+
type: Scalars['String']['output'];
|
|
238318
|
+
usageCount: Scalars['Int']['output'];
|
|
238319
|
+
};
|
|
238320
|
+
export type StudioTemplateCategoriesResponse = {
|
|
238321
|
+
__typename?: 'StudioTemplateCategoriesResponse';
|
|
238322
|
+
categories: Array<StudioTemplateCategory>;
|
|
238323
|
+
sourceDiagnostics: Array<StudioCategorySourceDiagnostic>;
|
|
238324
|
+
};
|
|
238325
|
+
export type StudioTemplateCategory = {
|
|
238326
|
+
__typename?: 'StudioTemplateCategory';
|
|
238327
|
+
categoryKey: Scalars['String']['output'];
|
|
238328
|
+
name: Scalars['String']['output'];
|
|
238329
|
+
templates: Array<StudioTemplateReference>;
|
|
238330
|
+
};
|
|
238331
|
+
export type StudioTemplateCategorySummary = {
|
|
238332
|
+
__typename?: 'StudioTemplateCategorySummary';
|
|
238333
|
+
categoryKey: Scalars['String']['output'];
|
|
238334
|
+
name: Scalars['String']['output'];
|
|
238335
|
+
};
|
|
238336
|
+
export declare enum StudioTemplateCollection {
|
|
238337
|
+
Product = "PRODUCT",
|
|
238338
|
+
Service = "SERVICE",
|
|
238339
|
+
Software = "SOFTWARE",
|
|
238340
|
+
Strategy = "STRATEGY",
|
|
238341
|
+
Teamwork = "TEAMWORK"
|
|
238342
|
+
}
|
|
238343
|
+
export declare enum StudioTemplateHowItWorksRole {
|
|
238344
|
+
Action = "ACTION",
|
|
238345
|
+
Knowledge = "KNOWLEDGE",
|
|
238346
|
+
Reasoning = "REASONING"
|
|
238347
|
+
}
|
|
238348
|
+
export type StudioTemplateHowItWorksStep = {
|
|
238349
|
+
__typename?: 'StudioTemplateHowItWorksStep';
|
|
238350
|
+
role: StudioTemplateHowItWorksRole;
|
|
238351
|
+
text: Scalars['String']['output'];
|
|
238352
|
+
};
|
|
238353
|
+
export type StudioTemplateReference = {
|
|
238354
|
+
__typename?: 'StudioTemplateReference';
|
|
238355
|
+
templateId: Scalars['String']['output'];
|
|
238356
|
+
templateType: StudioTemplateType;
|
|
238357
|
+
};
|
|
238358
|
+
export type StudioTemplateSourceDiagnostic = {
|
|
238359
|
+
__typename?: 'StudioTemplateSourceDiagnostic';
|
|
238360
|
+
code: StudioTemplateSourceDiagnosticCode;
|
|
238361
|
+
message: Scalars['String']['output'];
|
|
238362
|
+
source: Scalars['String']['output'];
|
|
238363
|
+
status: StudioTemplateSourceStatus;
|
|
238364
|
+
};
|
|
238365
|
+
export declare enum StudioTemplateSourceDiagnosticCode {
|
|
238366
|
+
CategorySourceError = "CATEGORY_SOURCE_ERROR",
|
|
238367
|
+
ConfigInvalid = "CONFIG_INVALID",
|
|
238368
|
+
ConfigSourceUnavailable = "CONFIG_SOURCE_UNAVAILABLE",
|
|
238369
|
+
DuplicateTemplateId = "DUPLICATE_TEMPLATE_ID",
|
|
238370
|
+
MetadataParseFailed = "METADATA_PARSE_FAILED"
|
|
238371
|
+
}
|
|
238372
|
+
export declare enum StudioTemplateSourceStatus {
|
|
238373
|
+
Error = "ERROR"
|
|
238374
|
+
}
|
|
238375
|
+
export declare enum StudioTemplateType {
|
|
238376
|
+
Agent = "AGENT",
|
|
238377
|
+
Automation = "AUTOMATION"
|
|
238378
|
+
}
|
|
238379
|
+
export type StudioTemplatesResponse = {
|
|
238380
|
+
__typename?: 'StudioTemplatesResponse';
|
|
238381
|
+
sourceDiagnostics: Array<StudioTemplateSourceDiagnostic>;
|
|
238382
|
+
templates: Array<StudioTemplate>;
|
|
238383
|
+
};
|
|
238190
238384
|
export type StudioWorkspaceAiEnabled = {
|
|
238191
238385
|
__typename?: 'StudioWorkspaceAiEnabled';
|
|
238192
238386
|
aiEnabled: Scalars['Boolean']['output'];
|
|
@@ -250573,6 +250767,7 @@ export type TrelloQueryApi = {
|
|
|
250573
250767
|
cardOrInboxCard?: Maybe<TrelloBaseCard>;
|
|
250574
250768
|
cardOrInboxCardByShortLink?: Maybe<TrelloBaseCard>;
|
|
250575
250769
|
checklistsById?: Maybe<Array<Maybe<TrelloChecklist>>>;
|
|
250770
|
+
comment?: Maybe<TrelloCommentCardAction>;
|
|
250576
250771
|
echo?: Maybe<Scalars['String']['output']>;
|
|
250577
250772
|
echos?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
250578
250773
|
enabledPlannerCalendarsByAccountId?: Maybe<TrelloPlannerCalendarConnection>;
|
|
@@ -250652,6 +250847,9 @@ export type TrelloQueryApiCardOrInboxCardByShortLinkArgs = {
|
|
|
250652
250847
|
export type TrelloQueryApiChecklistsByIdArgs = {
|
|
250653
250848
|
ids: Array<Scalars['ID']['input']>;
|
|
250654
250849
|
};
|
|
250850
|
+
export type TrelloQueryApiCommentArgs = {
|
|
250851
|
+
id: Scalars['ID']['input'];
|
|
250852
|
+
};
|
|
250655
250853
|
export type TrelloQueryApiEchosArgs = {
|
|
250656
250854
|
echo: Array<Scalars['String']['input']>;
|
|
250657
250855
|
};
|
|
@@ -251379,7 +251577,6 @@ export type TrelloUpdateApplicationPayload = Payload & {
|
|
|
251379
251577
|
};
|
|
251380
251578
|
export type TrelloUpdateAttachmentNameInput = {
|
|
251381
251579
|
attachmentId: Scalars['ID']['input'];
|
|
251382
|
-
cardId: Scalars['ID']['input'];
|
|
251383
251580
|
name: Scalars['String']['input'];
|
|
251384
251581
|
};
|
|
251385
251582
|
export type TrelloUpdateAttachmentNamePayload = Payload & {
|
|
@@ -252036,10 +252233,16 @@ export type TrelloVoiceCaptureSessionCardEdgeUpdated = {
|
|
|
252036
252233
|
__typename?: 'TrelloVoiceCaptureSessionCardEdgeUpdated';
|
|
252037
252234
|
node?: Maybe<TrelloVoiceCaptureCardUpdated>;
|
|
252038
252235
|
};
|
|
252236
|
+
export type TrelloVoiceCaptureSessionError = {
|
|
252237
|
+
__typename?: 'TrelloVoiceCaptureSessionError';
|
|
252238
|
+
code: Scalars['String']['output'];
|
|
252239
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
252240
|
+
};
|
|
252039
252241
|
export type TrelloVoiceCaptureSessionUpdated = TrelloStatefulSessionUpdated & {
|
|
252040
252242
|
__typename?: 'TrelloVoiceCaptureSessionUpdated';
|
|
252041
252243
|
_deltas?: Maybe<Array<Scalars['String']['output']>>;
|
|
252042
252244
|
cards?: Maybe<TrelloVoiceCaptureSessionCardConnectionUpdated>;
|
|
252245
|
+
errors?: Maybe<Array<TrelloVoiceCaptureSessionError>>;
|
|
252043
252246
|
sessionId: Scalars['ID']['output'];
|
|
252044
252247
|
transcript?: Maybe<Scalars['String']['output']>;
|
|
252045
252248
|
};
|