@forge/cli-shared 9.0.1-next.7 → 9.0.1-next.8
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 +7 -0
- package/out/graphql/graphql-types.d.ts +1735 -93
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +174 -55
- package/package.json +2 -2
|
@@ -4130,6 +4130,34 @@ export declare enum AdminAuthenticationPolicyType {
|
|
|
4130
4130
|
Basic = "BASIC",
|
|
4131
4131
|
Standard = "STANDARD"
|
|
4132
4132
|
}
|
|
4133
|
+
export type AdminBreachingConnection = {
|
|
4134
|
+
__typename?: 'AdminBreachingConnection';
|
|
4135
|
+
collabContextId: Scalars['ID']['output'];
|
|
4136
|
+
connectionEntityId: Scalars['ID']['output'];
|
|
4137
|
+
connectionId: Scalars['ID']['output'];
|
|
4138
|
+
connectionSelfLink: Scalars['String']['output'];
|
|
4139
|
+
connectionType: Scalars['String']['output'];
|
|
4140
|
+
createdBy?: Maybe<AdminUser>;
|
|
4141
|
+
createdTimestamp?: Maybe<Scalars['String']['output']>;
|
|
4142
|
+
sourceWorkspace?: Maybe<AdminWorkspace>;
|
|
4143
|
+
status: AdminBreachingConnectionStatus;
|
|
4144
|
+
targetWorkspace?: Maybe<AdminWorkspace>;
|
|
4145
|
+
updatedTimestamp?: Maybe<Scalars['String']['output']>;
|
|
4146
|
+
};
|
|
4147
|
+
export type AdminBreachingConnectionEdge = {
|
|
4148
|
+
__typename?: 'AdminBreachingConnectionEdge';
|
|
4149
|
+
cursor: Scalars['String']['output'];
|
|
4150
|
+
node: AdminBreachingConnection;
|
|
4151
|
+
};
|
|
4152
|
+
export declare enum AdminBreachingConnectionStatus {
|
|
4153
|
+
Active = "ACTIVE",
|
|
4154
|
+
Removed = "REMOVED"
|
|
4155
|
+
}
|
|
4156
|
+
export type AdminBreachingConnectionsConnection = {
|
|
4157
|
+
__typename?: 'AdminBreachingConnectionsConnection';
|
|
4158
|
+
edges?: Maybe<Array<AdminBreachingConnectionEdge>>;
|
|
4159
|
+
pageInfo: PageInfo;
|
|
4160
|
+
};
|
|
4133
4161
|
export type AdminByok = {
|
|
4134
4162
|
__typename?: 'AdminByok';
|
|
4135
4163
|
config: Scalars['String']['output'];
|
|
@@ -5250,6 +5278,7 @@ export type AdminUnit = {
|
|
|
5250
5278
|
__typename?: 'AdminUnit';
|
|
5251
5279
|
apps?: Maybe<AdminUnitAppsConnection>;
|
|
5252
5280
|
appsV2?: Maybe<AdminWorkspaceConnection>;
|
|
5281
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5253
5282
|
directory?: Maybe<AdminDirectory>;
|
|
5254
5283
|
id: Scalars['ID']['output'];
|
|
5255
5284
|
linkedUnits?: Maybe<AdminLinkedUnitConnection>;
|
|
@@ -5371,6 +5400,16 @@ export declare enum AdminUnitType {
|
|
|
5371
5400
|
Production = "PRODUCTION",
|
|
5372
5401
|
Sandbox = "SANDBOX"
|
|
5373
5402
|
}
|
|
5403
|
+
export type AdminUnitUpdateDescriptionInput = {
|
|
5404
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
5405
|
+
orgId: Scalars['ID']['input'];
|
|
5406
|
+
unitId: Scalars['ID']['input'];
|
|
5407
|
+
};
|
|
5408
|
+
export type AdminUnitUpdateDescriptionPayload = {
|
|
5409
|
+
__typename?: 'AdminUnitUpdateDescriptionPayload';
|
|
5410
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
5411
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
5412
|
+
};
|
|
5374
5413
|
export type AdminUnitUserStats = {
|
|
5375
5414
|
__typename?: 'AdminUnitUserStats';
|
|
5376
5415
|
count?: Maybe<Scalars['Int']['output']>;
|
|
@@ -5597,9 +5636,10 @@ export type AdminWorkspaceTypeEdge = {
|
|
|
5597
5636
|
};
|
|
5598
5637
|
export type AdvisorySignalIndicator = {
|
|
5599
5638
|
__typename?: 'AdvisorySignalIndicator';
|
|
5639
|
+
advisorySignalDescription?: Maybe<Scalars['JSON']['output']>;
|
|
5600
5640
|
advisorySignalId: Scalars['String']['output'];
|
|
5601
|
-
advisorySignalSummary
|
|
5602
|
-
provenance
|
|
5641
|
+
advisorySignalSummary?: Maybe<Scalars['String']['output']>;
|
|
5642
|
+
provenance?: Maybe<Array<IndicatorProvenance>>;
|
|
5603
5643
|
};
|
|
5604
5644
|
export type AgentAiCitation = {
|
|
5605
5645
|
__typename?: 'AgentAICitation';
|
|
@@ -5936,6 +5976,15 @@ export declare enum AgentStudioAgentRole {
|
|
|
5936
5976
|
Collaborator = "COLLABORATOR",
|
|
5937
5977
|
Use = "USE"
|
|
5938
5978
|
}
|
|
5979
|
+
export type AgentStudioAgentTemplate = {
|
|
5980
|
+
__typename?: 'AgentStudioAgentTemplate';
|
|
5981
|
+
category?: Maybe<Scalars['String']['output']>;
|
|
5982
|
+
conversationStarters?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
5983
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5984
|
+
id: Scalars['ID']['output'];
|
|
5985
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
5986
|
+
tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
5987
|
+
};
|
|
5939
5988
|
export declare enum AgentStudioAgentType {
|
|
5940
5989
|
Assistant = "ASSISTANT",
|
|
5941
5990
|
ServiceAgent = "SERVICE_AGENT"
|
|
@@ -6131,6 +6180,7 @@ export type AgentStudioAvailableModelConfig = {
|
|
|
6131
6180
|
modelDisplayName?: Maybe<Scalars['String']['output']>;
|
|
6132
6181
|
modelId: Scalars['String']['output'];
|
|
6133
6182
|
modelStatus?: Maybe<AgentStudioModelStatus>;
|
|
6183
|
+
tokenCreditMultiplier?: Maybe<Scalars['String']['output']>;
|
|
6134
6184
|
};
|
|
6135
6185
|
export type AgentStudioBaseConfiguration = {
|
|
6136
6186
|
agenticSkillIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
@@ -7041,6 +7091,10 @@ export type AgentStudioSurface = {
|
|
|
7041
7091
|
};
|
|
7042
7092
|
export declare enum AgentStudioSurfaceId {
|
|
7043
7093
|
AssignableAgentsJira = "ASSIGNABLE_AGENTS_JIRA",
|
|
7094
|
+
CsmEmail = "CSM_EMAIL",
|
|
7095
|
+
CsmEmbed = "CSM_EMBED",
|
|
7096
|
+
CsmSupportSite = "CSM_SUPPORT_SITE",
|
|
7097
|
+
CsmVoice = "CSM_VOICE",
|
|
7044
7098
|
DesktopApp = "DESKTOP_APP",
|
|
7045
7099
|
Extension = "EXTENSION",
|
|
7046
7100
|
HelpCenter = "HELP_CENTER",
|
|
@@ -7061,6 +7115,17 @@ export type AgentStudioTeamsChannelDetails = {
|
|
|
7061
7115
|
channelName?: Maybe<Scalars['String']['output']>;
|
|
7062
7116
|
channelUrl?: Maybe<Scalars['String']['output']>;
|
|
7063
7117
|
};
|
|
7118
|
+
export type AgentStudioTemplateEdge = {
|
|
7119
|
+
__typename?: 'AgentStudioTemplateEdge';
|
|
7120
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
7121
|
+
node?: Maybe<AgentStudioAgentTemplate>;
|
|
7122
|
+
};
|
|
7123
|
+
export type AgentStudioTemplateListResult = {
|
|
7124
|
+
__typename?: 'AgentStudioTemplateListResult';
|
|
7125
|
+
edges?: Maybe<Array<Maybe<AgentStudioTemplateEdge>>>;
|
|
7126
|
+
pageInfo: PageInfo;
|
|
7127
|
+
};
|
|
7128
|
+
export type AgentStudioTemplateResult = AgentStudioAgentTemplate | QueryError;
|
|
7064
7129
|
export type AgentStudioThirdPartyApp = AgentStudioApp & {
|
|
7065
7130
|
__typename?: 'AgentStudioThirdPartyApp';
|
|
7066
7131
|
authConsentStatus: AgentStudioThirdPartyAuthConsentStatus;
|
|
@@ -14574,6 +14639,17 @@ export type AssetsVerticalAsyncTask = {
|
|
|
14574
14639
|
type: AssetsVerticalAsyncTaskType;
|
|
14575
14640
|
updatedAt: Scalars['DateTime']['output'];
|
|
14576
14641
|
};
|
|
14642
|
+
export type AssetsVerticalAsyncTaskConnection = {
|
|
14643
|
+
__typename?: 'AssetsVerticalAsyncTaskConnection';
|
|
14644
|
+
edges: Array<AssetsVerticalAsyncTaskEdge>;
|
|
14645
|
+
pageInfo: PageInfo;
|
|
14646
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
14647
|
+
};
|
|
14648
|
+
export type AssetsVerticalAsyncTaskEdge = {
|
|
14649
|
+
__typename?: 'AssetsVerticalAsyncTaskEdge';
|
|
14650
|
+
cursor: Scalars['String']['output'];
|
|
14651
|
+
node: AssetsVerticalAsyncTask;
|
|
14652
|
+
};
|
|
14577
14653
|
export type AssetsVerticalAsyncTaskInfo = {
|
|
14578
14654
|
__typename?: 'AssetsVerticalAsyncTaskInfo';
|
|
14579
14655
|
id: Scalars['ID']['output'];
|
|
@@ -41073,10 +41149,73 @@ export type CustomerServiceAssetsMediaClientConfig = {
|
|
|
41073
41149
|
mediaBaseUrl?: Maybe<Scalars['String']['output']>;
|
|
41074
41150
|
mediaJwtToken?: Maybe<Scalars['String']['output']>;
|
|
41075
41151
|
};
|
|
41152
|
+
export type CustomerServiceAssetsObject = {
|
|
41153
|
+
__typename?: 'CustomerServiceAssetsObject';
|
|
41154
|
+
avatar?: Maybe<CustomerServiceAssetsAvatar>;
|
|
41155
|
+
id: Scalars['ID']['output'];
|
|
41156
|
+
label: Scalars['String']['output'];
|
|
41157
|
+
objectKey: Scalars['String']['output'];
|
|
41158
|
+
};
|
|
41159
|
+
export type CustomerServiceAssetsObjectConnection = {
|
|
41160
|
+
__typename?: 'CustomerServiceAssetsObjectConnection';
|
|
41161
|
+
edges: Array<CustomerServiceAssetsObjectEdge>;
|
|
41162
|
+
pageInfo: PageInfo;
|
|
41163
|
+
};
|
|
41164
|
+
export type CustomerServiceAssetsObjectEdge = {
|
|
41165
|
+
__typename?: 'CustomerServiceAssetsObjectEdge';
|
|
41166
|
+
cursor: Scalars['String']['output'];
|
|
41167
|
+
node: CustomerServiceAssetsObject;
|
|
41168
|
+
};
|
|
41169
|
+
export type CustomerServiceAssetsObjectSchema = {
|
|
41170
|
+
__typename?: 'CustomerServiceAssetsObjectSchema';
|
|
41171
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
41172
|
+
id: Scalars['ID']['output'];
|
|
41173
|
+
name: Scalars['String']['output'];
|
|
41174
|
+
objectTypeCount?: Maybe<Scalars['Int']['output']>;
|
|
41175
|
+
};
|
|
41176
|
+
export type CustomerServiceAssetsObjectSchemaConnection = {
|
|
41177
|
+
__typename?: 'CustomerServiceAssetsObjectSchemaConnection';
|
|
41178
|
+
edges: Array<CustomerServiceAssetsObjectSchemaEdge>;
|
|
41179
|
+
pageInfo: PageInfo;
|
|
41180
|
+
};
|
|
41181
|
+
export type CustomerServiceAssetsObjectSchemaEdge = {
|
|
41182
|
+
__typename?: 'CustomerServiceAssetsObjectSchemaEdge';
|
|
41183
|
+
cursor: Scalars['String']['output'];
|
|
41184
|
+
node: CustomerServiceAssetsObjectSchema;
|
|
41185
|
+
};
|
|
41186
|
+
export type CustomerServiceAssetsObjectSchemasFilterInput = {
|
|
41187
|
+
includeCounts?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41188
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
41189
|
+
};
|
|
41190
|
+
export type CustomerServiceAssetsObjectType = {
|
|
41191
|
+
__typename?: 'CustomerServiceAssetsObjectType';
|
|
41192
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
41193
|
+
icon?: Maybe<CustomerServiceAssetsObjectTypeIcon>;
|
|
41194
|
+
id: Scalars['ID']['output'];
|
|
41195
|
+
name: Scalars['String']['output'];
|
|
41196
|
+
objectCount?: Maybe<Scalars['Int']['output']>;
|
|
41197
|
+
};
|
|
41198
|
+
export type CustomerServiceAssetsObjectTypeConnection = {
|
|
41199
|
+
__typename?: 'CustomerServiceAssetsObjectTypeConnection';
|
|
41200
|
+
edges: Array<CustomerServiceAssetsObjectTypeEdge>;
|
|
41201
|
+
pageInfo: PageInfo;
|
|
41202
|
+
};
|
|
41203
|
+
export type CustomerServiceAssetsObjectTypeEdge = {
|
|
41204
|
+
__typename?: 'CustomerServiceAssetsObjectTypeEdge';
|
|
41205
|
+
cursor: Scalars['String']['output'];
|
|
41206
|
+
node: CustomerServiceAssetsObjectType;
|
|
41207
|
+
};
|
|
41076
41208
|
export type CustomerServiceAssetsObjectTypeIcon = {
|
|
41077
41209
|
__typename?: 'CustomerServiceAssetsObjectTypeIcon';
|
|
41078
41210
|
url48?: Maybe<Scalars['String']['output']>;
|
|
41079
41211
|
};
|
|
41212
|
+
export type CustomerServiceAssetsObjectTypesFilterInput = {
|
|
41213
|
+
includeObjectCounts?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41214
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
41215
|
+
};
|
|
41216
|
+
export type CustomerServiceAssetsObjectsFilterInput = {
|
|
41217
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
41218
|
+
};
|
|
41080
41219
|
export type CustomerServiceAttribute = Node & {
|
|
41081
41220
|
__typename?: 'CustomerServiceAttribute';
|
|
41082
41221
|
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
@@ -41112,6 +41251,7 @@ export type CustomerServiceAttributeCreatePayload = Payload & {
|
|
|
41112
41251
|
successfullyCreatedAttribute?: Maybe<CustomerServiceAttribute>;
|
|
41113
41252
|
};
|
|
41114
41253
|
export type CustomerServiceAttributeCreateTypeInput = {
|
|
41254
|
+
assetsObjectTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
41115
41255
|
name?: InputMaybe<CustomerServiceAttributeTypeName>;
|
|
41116
41256
|
options?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
41117
41257
|
};
|
|
@@ -41365,6 +41505,7 @@ export type CustomerServiceCustomDetailCreatePayload = Payload & {
|
|
|
41365
41505
|
successfullyCreatedCustomDetail?: Maybe<CustomerServiceCustomDetail>;
|
|
41366
41506
|
};
|
|
41367
41507
|
export type CustomerServiceCustomDetailCreateTypeInput = {
|
|
41508
|
+
assetsObjectTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
41368
41509
|
name?: InputMaybe<CustomerServiceCustomDetailTypeName>;
|
|
41369
41510
|
options?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
41370
41511
|
};
|
|
@@ -42990,6 +43131,31 @@ export type DemoMercuryFocusArea = {
|
|
|
42990
43131
|
id: Scalars['ID']['output'];
|
|
42991
43132
|
name: Scalars['String']['output'];
|
|
42992
43133
|
};
|
|
43134
|
+
export type DemoSite = {
|
|
43135
|
+
__typename?: 'DemoSite';
|
|
43136
|
+
cloudName?: Maybe<Scalars['String']['output']>;
|
|
43137
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
43138
|
+
dfId?: Maybe<Scalars['ID']['output']>;
|
|
43139
|
+
expiresAt?: Maybe<Scalars['String']['output']>;
|
|
43140
|
+
siteUrl?: Maybe<Scalars['String']['output']>;
|
|
43141
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
43142
|
+
};
|
|
43143
|
+
export type DemoSiteProvisioning = {
|
|
43144
|
+
__typename?: 'DemoSiteProvisioning';
|
|
43145
|
+
cloudName?: Maybe<Scalars['String']['output']>;
|
|
43146
|
+
finishedAt?: Maybe<Scalars['String']['output']>;
|
|
43147
|
+
site?: Maybe<DemoSite>;
|
|
43148
|
+
startedAt?: Maybe<Scalars['String']['output']>;
|
|
43149
|
+
status?: Maybe<DemoSiteProvisioningStatus>;
|
|
43150
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
43151
|
+
};
|
|
43152
|
+
export declare enum DemoSiteProvisioningStatus {
|
|
43153
|
+
Completed = "COMPLETED",
|
|
43154
|
+
CompletedWithErrors = "COMPLETED_WITH_ERRORS",
|
|
43155
|
+
Failed = "FAILED",
|
|
43156
|
+
Pending = "PENDING",
|
|
43157
|
+
Running = "RUNNING"
|
|
43158
|
+
}
|
|
42993
43159
|
export type DeploymentPipeline = {
|
|
42994
43160
|
__typename?: 'DeploymentPipeline';
|
|
42995
43161
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -43382,10 +43548,12 @@ export declare enum DevAiAutodevNextNotificationFrequency {
|
|
|
43382
43548
|
export type DevAiAutodevNextNotificationSettings = {
|
|
43383
43549
|
__typename?: 'DevAiAutodevNextNotificationSettings';
|
|
43384
43550
|
frequency?: Maybe<DevAiAutodevNextNotificationFrequency>;
|
|
43551
|
+
scheduledNotificationMessageTemplate?: Maybe<Scalars['String']['output']>;
|
|
43385
43552
|
welcomeMessageTemplate?: Maybe<Scalars['String']['output']>;
|
|
43386
43553
|
};
|
|
43387
43554
|
export type DevAiAutodevNextNotificationSettingsInput = {
|
|
43388
43555
|
frequency?: InputMaybe<DevAiAutodevNextNotificationFrequency>;
|
|
43556
|
+
scheduledNotificationMessageTemplate?: InputMaybe<Scalars['String']['input']>;
|
|
43389
43557
|
welcomeMessageTemplate?: InputMaybe<Scalars['String']['input']>;
|
|
43390
43558
|
};
|
|
43391
43559
|
export declare enum DevAiAutodevNextNudgeRequestScope {
|
|
@@ -43993,6 +44161,12 @@ export declare enum DevAiFlowSessionsStatus {
|
|
|
43993
44161
|
Paused = "PAUSED",
|
|
43994
44162
|
Pending = "PENDING"
|
|
43995
44163
|
}
|
|
44164
|
+
export declare enum DevAiFlowUseCaseId {
|
|
44165
|
+
Automation = "AUTOMATION",
|
|
44166
|
+
CodeStandards = "CODE_STANDARDS",
|
|
44167
|
+
Jca = "JCA",
|
|
44168
|
+
JiraAiFixBuild = "JIRA_AI_FIX_BUILD"
|
|
44169
|
+
}
|
|
43996
44170
|
export type DevAiGenericAutodevLog = DevAiAutodevLog & {
|
|
43997
44171
|
__typename?: 'DevAiGenericAutodevLog';
|
|
43998
44172
|
attributes?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -44455,6 +44629,11 @@ export declare enum DevAiScanIntervalUnit {
|
|
|
44455
44629
|
Months = "MONTHS",
|
|
44456
44630
|
Weeks = "WEEKS"
|
|
44457
44631
|
}
|
|
44632
|
+
export declare enum DevAiScmFilter {
|
|
44633
|
+
All = "ALL",
|
|
44634
|
+
Bitbucket = "BITBUCKET",
|
|
44635
|
+
Github = "GITHUB"
|
|
44636
|
+
}
|
|
44458
44637
|
export declare enum DevAiSessionStatusCategoryFilter {
|
|
44459
44638
|
All = "ALL",
|
|
44460
44639
|
Completed = "COMPLETED",
|
|
@@ -52516,6 +52695,7 @@ export type GraphInferenceInferredProjectMeResponse = {
|
|
|
52516
52695
|
context?: Maybe<GraphInferenceInferredProjectContext>;
|
|
52517
52696
|
inferredProjects?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
52518
52697
|
viewer?: Maybe<GraphInferenceInferredProjectViewer>;
|
|
52698
|
+
weeklyProgressSummary: Scalars['JSON']['output'];
|
|
52519
52699
|
};
|
|
52520
52700
|
export type GraphInferenceInferredProjectViewer = {
|
|
52521
52701
|
__typename?: 'GraphInferenceInferredProjectViewer';
|
|
@@ -53086,6 +53266,7 @@ export type GraphIntegrationMcpServerRequestRejectPayload = Payload & {
|
|
|
53086
53266
|
success: Scalars['Boolean']['output'];
|
|
53087
53267
|
};
|
|
53088
53268
|
export declare enum GraphIntegrationMcpServerRequestSourceType {
|
|
53269
|
+
GalleryMcpServer = "GALLERY_MCP_SERVER",
|
|
53089
53270
|
GlobalMcpServer = "GLOBAL_MCP_SERVER"
|
|
53090
53271
|
}
|
|
53091
53272
|
export declare enum GraphIntegrationMcpServerRequestStatus {
|
|
@@ -56666,8 +56847,20 @@ export type GraphStore = {
|
|
|
56666
56847
|
mercuryOrganizationHasAtlasGoalBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasAtlasGoalConnection>;
|
|
56667
56848
|
mercuryOrganizationHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasAtlasGoalInverseConnection>;
|
|
56668
56849
|
mercuryOrganizationHasAtlasGoalInverseBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasAtlasGoalConnection>;
|
|
56850
|
+
mercuryOrganizationHasMercuryOrganization?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationConnection>;
|
|
56851
|
+
mercuryOrganizationHasMercuryOrganizationBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasMercuryOrganizationConnection>;
|
|
56852
|
+
mercuryOrganizationHasMercuryOrganizationInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationInverseConnection>;
|
|
56853
|
+
mercuryOrganizationHasMercuryOrganizationInverseBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasMercuryOrganizationConnection>;
|
|
56669
56854
|
mercuryOrganizationHasMercuryOrganizationMembership?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipConnection>;
|
|
56670
56855
|
mercuryOrganizationHasMercuryOrganizationMembershipInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipInverseConnection>;
|
|
56856
|
+
mercuryOrganizationHasStatusUpdate?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasStatusUpdateConnection>;
|
|
56857
|
+
mercuryOrganizationHasStatusUpdateBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasStatusUpdateConnection>;
|
|
56858
|
+
mercuryOrganizationHasStatusUpdateInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasStatusUpdateInverseConnection>;
|
|
56859
|
+
mercuryOrganizationHasStatusUpdateInverseBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasStatusUpdateConnection>;
|
|
56860
|
+
mercuryOrganizationHasWatcher?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasWatcherConnection>;
|
|
56861
|
+
mercuryOrganizationHasWatcherBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasWatcherConnection>;
|
|
56862
|
+
mercuryOrganizationHasWatcherInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasWatcherInverseConnection>;
|
|
56863
|
+
mercuryOrganizationHasWatcherInverseBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasWatcherConnection>;
|
|
56671
56864
|
mercuryOrganizationSponsorsFocusArea?: Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaConnection>;
|
|
56672
56865
|
mercuryOrganizationSponsorsFocusAreaBatch?: Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaConnection>;
|
|
56673
56866
|
mercuryOrganizationSponsorsFocusAreaInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseConnection>;
|
|
@@ -61822,6 +62015,36 @@ export type GraphStoreMercuryOrganizationHasAtlasGoalInverseBatchArgs = {
|
|
|
61822
62015
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61823
62016
|
sort?: InputMaybe<GraphStoreMercuryOrganizationHasAtlasGoalSortInput>;
|
|
61824
62017
|
};
|
|
62018
|
+
export type GraphStoreMercuryOrganizationHasMercuryOrganizationArgs = {
|
|
62019
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62020
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62021
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62022
|
+
id: Scalars['ID']['input'];
|
|
62023
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
62024
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasMercuryOrganizationSortInput>;
|
|
62025
|
+
};
|
|
62026
|
+
export type GraphStoreMercuryOrganizationHasMercuryOrganizationBatchArgs = {
|
|
62027
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62028
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62029
|
+
ids: Array<Scalars['ID']['input']>;
|
|
62030
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
62031
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasMercuryOrganizationSortInput>;
|
|
62032
|
+
};
|
|
62033
|
+
export type GraphStoreMercuryOrganizationHasMercuryOrganizationInverseArgs = {
|
|
62034
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62035
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62036
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62037
|
+
id: Scalars['ID']['input'];
|
|
62038
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
62039
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasMercuryOrganizationSortInput>;
|
|
62040
|
+
};
|
|
62041
|
+
export type GraphStoreMercuryOrganizationHasMercuryOrganizationInverseBatchArgs = {
|
|
62042
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62043
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62044
|
+
ids: Array<Scalars['ID']['input']>;
|
|
62045
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
62046
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasMercuryOrganizationSortInput>;
|
|
62047
|
+
};
|
|
61825
62048
|
export type GraphStoreMercuryOrganizationHasMercuryOrganizationMembershipArgs = {
|
|
61826
62049
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61827
62050
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -61838,6 +62061,66 @@ export type GraphStoreMercuryOrganizationHasMercuryOrganizationMembershipInverse
|
|
|
61838
62061
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61839
62062
|
sort?: InputMaybe<GraphStoreMercuryOrganizationHasMercuryOrganizationMembershipSortInput>;
|
|
61840
62063
|
};
|
|
62064
|
+
export type GraphStoreMercuryOrganizationHasStatusUpdateArgs = {
|
|
62065
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62066
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62067
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62068
|
+
id: Scalars['ID']['input'];
|
|
62069
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
62070
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasStatusUpdateSortInput>;
|
|
62071
|
+
};
|
|
62072
|
+
export type GraphStoreMercuryOrganizationHasStatusUpdateBatchArgs = {
|
|
62073
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62074
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62075
|
+
ids: Array<Scalars['ID']['input']>;
|
|
62076
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
62077
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasStatusUpdateSortInput>;
|
|
62078
|
+
};
|
|
62079
|
+
export type GraphStoreMercuryOrganizationHasStatusUpdateInverseArgs = {
|
|
62080
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62081
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62082
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62083
|
+
id: Scalars['ID']['input'];
|
|
62084
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
62085
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasStatusUpdateSortInput>;
|
|
62086
|
+
};
|
|
62087
|
+
export type GraphStoreMercuryOrganizationHasStatusUpdateInverseBatchArgs = {
|
|
62088
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62089
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62090
|
+
ids: Array<Scalars['ID']['input']>;
|
|
62091
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
62092
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasStatusUpdateSortInput>;
|
|
62093
|
+
};
|
|
62094
|
+
export type GraphStoreMercuryOrganizationHasWatcherArgs = {
|
|
62095
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62096
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62097
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62098
|
+
id: Scalars['ID']['input'];
|
|
62099
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
62100
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasWatcherSortInput>;
|
|
62101
|
+
};
|
|
62102
|
+
export type GraphStoreMercuryOrganizationHasWatcherBatchArgs = {
|
|
62103
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62104
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62105
|
+
ids: Array<Scalars['ID']['input']>;
|
|
62106
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
62107
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasWatcherSortInput>;
|
|
62108
|
+
};
|
|
62109
|
+
export type GraphStoreMercuryOrganizationHasWatcherInverseArgs = {
|
|
62110
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62111
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62112
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62113
|
+
id: Scalars['ID']['input'];
|
|
62114
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
62115
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasWatcherSortInput>;
|
|
62116
|
+
};
|
|
62117
|
+
export type GraphStoreMercuryOrganizationHasWatcherInverseBatchArgs = {
|
|
62118
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62119
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62120
|
+
ids: Array<Scalars['ID']['input']>;
|
|
62121
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
62122
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasWatcherSortInput>;
|
|
62123
|
+
};
|
|
61841
62124
|
export type GraphStoreMercuryOrganizationSponsorsFocusAreaArgs = {
|
|
61842
62125
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61843
62126
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -68142,6 +68425,129 @@ export type GraphStoreBatchMercuryOrganizationHasAtlasGoalStartNode = {
|
|
|
68142
68425
|
id: Scalars['ID']['output'];
|
|
68143
68426
|
};
|
|
68144
68427
|
export type GraphStoreBatchMercuryOrganizationHasAtlasGoalStartUnion = MercuryOrganization;
|
|
68428
|
+
export type GraphStoreBatchMercuryOrganizationHasMercuryOrganizationConnection = HasPageInfo & {
|
|
68429
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasMercuryOrganizationConnection';
|
|
68430
|
+
edges: Array<Maybe<GraphStoreBatchMercuryOrganizationHasMercuryOrganizationEdge>>;
|
|
68431
|
+
nodes: Array<Maybe<GraphStoreBatchMercuryOrganizationHasMercuryOrganizationNode>>;
|
|
68432
|
+
pageInfo: PageInfo;
|
|
68433
|
+
};
|
|
68434
|
+
export type GraphStoreBatchMercuryOrganizationHasMercuryOrganizationEdge = {
|
|
68435
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasMercuryOrganizationEdge';
|
|
68436
|
+
node: GraphStoreBatchMercuryOrganizationHasMercuryOrganizationInnerConnection;
|
|
68437
|
+
};
|
|
68438
|
+
export type GraphStoreBatchMercuryOrganizationHasMercuryOrganizationEndNode = {
|
|
68439
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasMercuryOrganizationEndNode';
|
|
68440
|
+
data?: Maybe<GraphStoreBatchMercuryOrganizationHasMercuryOrganizationEndUnion>;
|
|
68441
|
+
id: Scalars['ID']['output'];
|
|
68442
|
+
};
|
|
68443
|
+
export type GraphStoreBatchMercuryOrganizationHasMercuryOrganizationEndUnion = MercuryOrganization;
|
|
68444
|
+
export type GraphStoreBatchMercuryOrganizationHasMercuryOrganizationInnerConnection = {
|
|
68445
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasMercuryOrganizationInnerConnection';
|
|
68446
|
+
edges: Array<Maybe<GraphStoreBatchMercuryOrganizationHasMercuryOrganizationInnerEdge>>;
|
|
68447
|
+
nodes: Array<Maybe<GraphStoreBatchMercuryOrganizationHasMercuryOrganizationNode>>;
|
|
68448
|
+
requestedId: Scalars['ID']['output'];
|
|
68449
|
+
};
|
|
68450
|
+
export type GraphStoreBatchMercuryOrganizationHasMercuryOrganizationInnerEdge = {
|
|
68451
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasMercuryOrganizationInnerEdge';
|
|
68452
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68453
|
+
node: GraphStoreBatchMercuryOrganizationHasMercuryOrganizationNode;
|
|
68454
|
+
};
|
|
68455
|
+
export type GraphStoreBatchMercuryOrganizationHasMercuryOrganizationNode = Node & {
|
|
68456
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasMercuryOrganizationNode';
|
|
68457
|
+
createdAt: Scalars['DateTime']['output'];
|
|
68458
|
+
from: GraphStoreBatchMercuryOrganizationHasMercuryOrganizationStartNode;
|
|
68459
|
+
id: Scalars['ID']['output'];
|
|
68460
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
68461
|
+
to: GraphStoreBatchMercuryOrganizationHasMercuryOrganizationEndNode;
|
|
68462
|
+
};
|
|
68463
|
+
export type GraphStoreBatchMercuryOrganizationHasMercuryOrganizationStartNode = {
|
|
68464
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasMercuryOrganizationStartNode';
|
|
68465
|
+
data?: Maybe<GraphStoreBatchMercuryOrganizationHasMercuryOrganizationStartUnion>;
|
|
68466
|
+
id: Scalars['ID']['output'];
|
|
68467
|
+
};
|
|
68468
|
+
export type GraphStoreBatchMercuryOrganizationHasMercuryOrganizationStartUnion = MercuryOrganization;
|
|
68469
|
+
export type GraphStoreBatchMercuryOrganizationHasStatusUpdateConnection = HasPageInfo & {
|
|
68470
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasStatusUpdateConnection';
|
|
68471
|
+
edges: Array<Maybe<GraphStoreBatchMercuryOrganizationHasStatusUpdateEdge>>;
|
|
68472
|
+
nodes: Array<Maybe<GraphStoreBatchMercuryOrganizationHasStatusUpdateNode>>;
|
|
68473
|
+
pageInfo: PageInfo;
|
|
68474
|
+
};
|
|
68475
|
+
export type GraphStoreBatchMercuryOrganizationHasStatusUpdateEdge = {
|
|
68476
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasStatusUpdateEdge';
|
|
68477
|
+
node: GraphStoreBatchMercuryOrganizationHasStatusUpdateInnerConnection;
|
|
68478
|
+
};
|
|
68479
|
+
export type GraphStoreBatchMercuryOrganizationHasStatusUpdateEndNode = {
|
|
68480
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasStatusUpdateEndNode';
|
|
68481
|
+
data?: Maybe<GraphStoreBatchMercuryOrganizationHasStatusUpdateEndUnion>;
|
|
68482
|
+
id: Scalars['ID']['output'];
|
|
68483
|
+
};
|
|
68484
|
+
export type GraphStoreBatchMercuryOrganizationHasStatusUpdateEndUnion = MercuryOrganizationStatusUpdate;
|
|
68485
|
+
export type GraphStoreBatchMercuryOrganizationHasStatusUpdateInnerConnection = {
|
|
68486
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasStatusUpdateInnerConnection';
|
|
68487
|
+
edges: Array<Maybe<GraphStoreBatchMercuryOrganizationHasStatusUpdateInnerEdge>>;
|
|
68488
|
+
nodes: Array<Maybe<GraphStoreBatchMercuryOrganizationHasStatusUpdateNode>>;
|
|
68489
|
+
requestedId: Scalars['ID']['output'];
|
|
68490
|
+
};
|
|
68491
|
+
export type GraphStoreBatchMercuryOrganizationHasStatusUpdateInnerEdge = {
|
|
68492
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasStatusUpdateInnerEdge';
|
|
68493
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68494
|
+
node: GraphStoreBatchMercuryOrganizationHasStatusUpdateNode;
|
|
68495
|
+
};
|
|
68496
|
+
export type GraphStoreBatchMercuryOrganizationHasStatusUpdateNode = Node & {
|
|
68497
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasStatusUpdateNode';
|
|
68498
|
+
createdAt: Scalars['DateTime']['output'];
|
|
68499
|
+
from: GraphStoreBatchMercuryOrganizationHasStatusUpdateStartNode;
|
|
68500
|
+
id: Scalars['ID']['output'];
|
|
68501
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
68502
|
+
to: GraphStoreBatchMercuryOrganizationHasStatusUpdateEndNode;
|
|
68503
|
+
};
|
|
68504
|
+
export type GraphStoreBatchMercuryOrganizationHasStatusUpdateStartNode = {
|
|
68505
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasStatusUpdateStartNode';
|
|
68506
|
+
data?: Maybe<GraphStoreBatchMercuryOrganizationHasStatusUpdateStartUnion>;
|
|
68507
|
+
id: Scalars['ID']['output'];
|
|
68508
|
+
};
|
|
68509
|
+
export type GraphStoreBatchMercuryOrganizationHasStatusUpdateStartUnion = MercuryOrganization;
|
|
68510
|
+
export type GraphStoreBatchMercuryOrganizationHasWatcherConnection = HasPageInfo & {
|
|
68511
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasWatcherConnection';
|
|
68512
|
+
edges: Array<Maybe<GraphStoreBatchMercuryOrganizationHasWatcherEdge>>;
|
|
68513
|
+
nodes: Array<Maybe<GraphStoreBatchMercuryOrganizationHasWatcherNode>>;
|
|
68514
|
+
pageInfo: PageInfo;
|
|
68515
|
+
};
|
|
68516
|
+
export type GraphStoreBatchMercuryOrganizationHasWatcherEdge = {
|
|
68517
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasWatcherEdge';
|
|
68518
|
+
node: GraphStoreBatchMercuryOrganizationHasWatcherInnerConnection;
|
|
68519
|
+
};
|
|
68520
|
+
export type GraphStoreBatchMercuryOrganizationHasWatcherEndNode = {
|
|
68521
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasWatcherEndNode';
|
|
68522
|
+
data?: Maybe<GraphStoreBatchMercuryOrganizationHasWatcherEndUnion>;
|
|
68523
|
+
id: Scalars['ID']['output'];
|
|
68524
|
+
};
|
|
68525
|
+
export type GraphStoreBatchMercuryOrganizationHasWatcherEndUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
68526
|
+
export type GraphStoreBatchMercuryOrganizationHasWatcherInnerConnection = {
|
|
68527
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasWatcherInnerConnection';
|
|
68528
|
+
edges: Array<Maybe<GraphStoreBatchMercuryOrganizationHasWatcherInnerEdge>>;
|
|
68529
|
+
nodes: Array<Maybe<GraphStoreBatchMercuryOrganizationHasWatcherNode>>;
|
|
68530
|
+
requestedId: Scalars['ID']['output'];
|
|
68531
|
+
};
|
|
68532
|
+
export type GraphStoreBatchMercuryOrganizationHasWatcherInnerEdge = {
|
|
68533
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasWatcherInnerEdge';
|
|
68534
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68535
|
+
node: GraphStoreBatchMercuryOrganizationHasWatcherNode;
|
|
68536
|
+
};
|
|
68537
|
+
export type GraphStoreBatchMercuryOrganizationHasWatcherNode = Node & {
|
|
68538
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasWatcherNode';
|
|
68539
|
+
createdAt: Scalars['DateTime']['output'];
|
|
68540
|
+
from: GraphStoreBatchMercuryOrganizationHasWatcherStartNode;
|
|
68541
|
+
id: Scalars['ID']['output'];
|
|
68542
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
68543
|
+
to: GraphStoreBatchMercuryOrganizationHasWatcherEndNode;
|
|
68544
|
+
};
|
|
68545
|
+
export type GraphStoreBatchMercuryOrganizationHasWatcherStartNode = {
|
|
68546
|
+
__typename?: 'GraphStoreBatchMercuryOrganizationHasWatcherStartNode';
|
|
68547
|
+
data?: Maybe<GraphStoreBatchMercuryOrganizationHasWatcherStartUnion>;
|
|
68548
|
+
id: Scalars['ID']['output'];
|
|
68549
|
+
};
|
|
68550
|
+
export type GraphStoreBatchMercuryOrganizationHasWatcherStartUnion = MercuryOrganization;
|
|
68145
68551
|
export type GraphStoreBatchMercuryOrganizationSponsorsFocusAreaConnection = HasPageInfo & {
|
|
68146
68552
|
__typename?: 'GraphStoreBatchMercuryOrganizationSponsorsFocusAreaConnection';
|
|
68147
68553
|
edges: Array<Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaEdge>>;
|
|
@@ -74331,6 +74737,15 @@ export type GraphStoreMercuryOrganizationHasAtlasGoalSortInput = {
|
|
|
74331
74737
|
export type GraphStoreMercuryOrganizationHasMercuryOrganizationMembershipSortInput = {
|
|
74332
74738
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74333
74739
|
};
|
|
74740
|
+
export type GraphStoreMercuryOrganizationHasMercuryOrganizationSortInput = {
|
|
74741
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74742
|
+
};
|
|
74743
|
+
export type GraphStoreMercuryOrganizationHasStatusUpdateSortInput = {
|
|
74744
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74745
|
+
};
|
|
74746
|
+
export type GraphStoreMercuryOrganizationHasWatcherSortInput = {
|
|
74747
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74748
|
+
};
|
|
74334
74749
|
export type GraphStoreMercuryOrganizationSponsorsFocusAreaSortInput = {
|
|
74335
74750
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74336
74751
|
};
|
|
@@ -81859,6 +82274,33 @@ export type GraphStoreSimplifiedMercuryOrganizationHasAtlasGoalInverseEdge = {
|
|
|
81859
82274
|
};
|
|
81860
82275
|
export type GraphStoreSimplifiedMercuryOrganizationHasAtlasGoalInverseUnion = MercuryOrganization;
|
|
81861
82276
|
export type GraphStoreSimplifiedMercuryOrganizationHasAtlasGoalUnion = TownsquareGoal;
|
|
82277
|
+
export type GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationConnection = HasPageInfo & {
|
|
82278
|
+
__typename?: 'GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationConnection';
|
|
82279
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationEdge>>>;
|
|
82280
|
+
pageInfo: PageInfo;
|
|
82281
|
+
};
|
|
82282
|
+
export type GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationEdge = {
|
|
82283
|
+
__typename?: 'GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationEdge';
|
|
82284
|
+
createdAt: Scalars['DateTime']['output'];
|
|
82285
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
82286
|
+
id: Scalars['ID']['output'];
|
|
82287
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
82288
|
+
node?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationUnion>;
|
|
82289
|
+
};
|
|
82290
|
+
export type GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationInverseConnection = HasPageInfo & {
|
|
82291
|
+
__typename?: 'GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationInverseConnection';
|
|
82292
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationInverseEdge>>>;
|
|
82293
|
+
pageInfo: PageInfo;
|
|
82294
|
+
};
|
|
82295
|
+
export type GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationInverseEdge = {
|
|
82296
|
+
__typename?: 'GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationInverseEdge';
|
|
82297
|
+
createdAt: Scalars['DateTime']['output'];
|
|
82298
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
82299
|
+
id: Scalars['ID']['output'];
|
|
82300
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
82301
|
+
node?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationInverseUnion>;
|
|
82302
|
+
};
|
|
82303
|
+
export type GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationInverseUnion = MercuryOrganization;
|
|
81862
82304
|
export type GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipConnection = HasPageInfo & {
|
|
81863
82305
|
__typename?: 'GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipConnection';
|
|
81864
82306
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipEdge>>>;
|
|
@@ -81887,6 +82329,63 @@ export type GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembers
|
|
|
81887
82329
|
};
|
|
81888
82330
|
export type GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipInverseUnion = MercuryOrganization;
|
|
81889
82331
|
export type GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipUnion = MercuryOrganizationMembership;
|
|
82332
|
+
export type GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationUnion = MercuryOrganization;
|
|
82333
|
+
export type GraphStoreSimplifiedMercuryOrganizationHasStatusUpdateConnection = HasPageInfo & {
|
|
82334
|
+
__typename?: 'GraphStoreSimplifiedMercuryOrganizationHasStatusUpdateConnection';
|
|
82335
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMercuryOrganizationHasStatusUpdateEdge>>>;
|
|
82336
|
+
pageInfo: PageInfo;
|
|
82337
|
+
};
|
|
82338
|
+
export type GraphStoreSimplifiedMercuryOrganizationHasStatusUpdateEdge = {
|
|
82339
|
+
__typename?: 'GraphStoreSimplifiedMercuryOrganizationHasStatusUpdateEdge';
|
|
82340
|
+
createdAt: Scalars['DateTime']['output'];
|
|
82341
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
82342
|
+
id: Scalars['ID']['output'];
|
|
82343
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
82344
|
+
node?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasStatusUpdateUnion>;
|
|
82345
|
+
};
|
|
82346
|
+
export type GraphStoreSimplifiedMercuryOrganizationHasStatusUpdateInverseConnection = HasPageInfo & {
|
|
82347
|
+
__typename?: 'GraphStoreSimplifiedMercuryOrganizationHasStatusUpdateInverseConnection';
|
|
82348
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMercuryOrganizationHasStatusUpdateInverseEdge>>>;
|
|
82349
|
+
pageInfo: PageInfo;
|
|
82350
|
+
};
|
|
82351
|
+
export type GraphStoreSimplifiedMercuryOrganizationHasStatusUpdateInverseEdge = {
|
|
82352
|
+
__typename?: 'GraphStoreSimplifiedMercuryOrganizationHasStatusUpdateInverseEdge';
|
|
82353
|
+
createdAt: Scalars['DateTime']['output'];
|
|
82354
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
82355
|
+
id: Scalars['ID']['output'];
|
|
82356
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
82357
|
+
node?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasStatusUpdateInverseUnion>;
|
|
82358
|
+
};
|
|
82359
|
+
export type GraphStoreSimplifiedMercuryOrganizationHasStatusUpdateInverseUnion = MercuryOrganization;
|
|
82360
|
+
export type GraphStoreSimplifiedMercuryOrganizationHasStatusUpdateUnion = MercuryOrganizationStatusUpdate;
|
|
82361
|
+
export type GraphStoreSimplifiedMercuryOrganizationHasWatcherConnection = HasPageInfo & {
|
|
82362
|
+
__typename?: 'GraphStoreSimplifiedMercuryOrganizationHasWatcherConnection';
|
|
82363
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMercuryOrganizationHasWatcherEdge>>>;
|
|
82364
|
+
pageInfo: PageInfo;
|
|
82365
|
+
};
|
|
82366
|
+
export type GraphStoreSimplifiedMercuryOrganizationHasWatcherEdge = {
|
|
82367
|
+
__typename?: 'GraphStoreSimplifiedMercuryOrganizationHasWatcherEdge';
|
|
82368
|
+
createdAt: Scalars['DateTime']['output'];
|
|
82369
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
82370
|
+
id: Scalars['ID']['output'];
|
|
82371
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
82372
|
+
node?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasWatcherUnion>;
|
|
82373
|
+
};
|
|
82374
|
+
export type GraphStoreSimplifiedMercuryOrganizationHasWatcherInverseConnection = HasPageInfo & {
|
|
82375
|
+
__typename?: 'GraphStoreSimplifiedMercuryOrganizationHasWatcherInverseConnection';
|
|
82376
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMercuryOrganizationHasWatcherInverseEdge>>>;
|
|
82377
|
+
pageInfo: PageInfo;
|
|
82378
|
+
};
|
|
82379
|
+
export type GraphStoreSimplifiedMercuryOrganizationHasWatcherInverseEdge = {
|
|
82380
|
+
__typename?: 'GraphStoreSimplifiedMercuryOrganizationHasWatcherInverseEdge';
|
|
82381
|
+
createdAt: Scalars['DateTime']['output'];
|
|
82382
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
82383
|
+
id: Scalars['ID']['output'];
|
|
82384
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
82385
|
+
node?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasWatcherInverseUnion>;
|
|
82386
|
+
};
|
|
82387
|
+
export type GraphStoreSimplifiedMercuryOrganizationHasWatcherInverseUnion = MercuryOrganization;
|
|
82388
|
+
export type GraphStoreSimplifiedMercuryOrganizationHasWatcherUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
81890
82389
|
export type GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaConnection = HasPageInfo & {
|
|
81891
82390
|
__typename?: 'GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaConnection';
|
|
81892
82391
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaEdge>>>;
|
|
@@ -89980,6 +90479,8 @@ export type GraphStoreV2 = {
|
|
|
89980
90479
|
atlassianUserWatchesConfluenceWhiteboardInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceWhiteboardInverseConnection>;
|
|
89981
90480
|
atlassianUserWatchesFocusFocusArea?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesFocusFocusAreaConnection>;
|
|
89982
90481
|
atlassianUserWatchesFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesFocusFocusAreaInverseConnection>;
|
|
90482
|
+
atlassianUserWatchesFocusOrganization?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationConnection>;
|
|
90483
|
+
atlassianUserWatchesFocusOrganizationInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationInverseConnection>;
|
|
89983
90484
|
bitbucketRepositoryHasExternalPullRequest?: Maybe<GraphStoreV2SimplifiedBitbucketRepositoryHasExternalPullRequestConnection>;
|
|
89984
90485
|
bitbucketRepositoryHasExternalPullRequestInverse?: Maybe<GraphStoreV2SimplifiedBitbucketRepositoryHasExternalPullRequestInverseConnection>;
|
|
89985
90486
|
compassComponentHasCompassComponentLink?: Maybe<GraphStoreV2SimplifiedCompassComponentHasCompassComponentLinkConnection>;
|
|
@@ -90368,8 +90869,12 @@ export type GraphStoreV2 = {
|
|
|
90368
90869
|
focusFocusAreaHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseConnection>;
|
|
90369
90870
|
focusOrganizationHasAtlassianGoal?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalConnection>;
|
|
90370
90871
|
focusOrganizationHasAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalInverseConnection>;
|
|
90872
|
+
focusOrganizationHasChildFocusOrganization?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationConnection>;
|
|
90873
|
+
focusOrganizationHasChildFocusOrganizationInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationInverseConnection>;
|
|
90371
90874
|
focusOrganizationHasFocusOrganizationMembership?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipConnection>;
|
|
90372
90875
|
focusOrganizationHasFocusOrganizationMembershipInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipInverseConnection>;
|
|
90876
|
+
focusOrganizationHasFocusOrganizationStatusUpdate?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateConnection>;
|
|
90877
|
+
focusOrganizationHasFocusOrganizationStatusUpdateInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateInverseConnection>;
|
|
90373
90878
|
focusOrganizationSponsorsFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaConnection>;
|
|
90374
90879
|
focusOrganizationSponsorsFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseConnection>;
|
|
90375
90880
|
focusRiskHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection>;
|
|
@@ -92537,6 +93042,20 @@ export type GraphStoreV2AtlassianUserWatchesFocusFocusAreaInverseArgs = {
|
|
|
92537
93042
|
id: Scalars['ID']['input'];
|
|
92538
93043
|
sort?: InputMaybe<GraphStoreV2AtlassianUserWatchesFocusFocusAreaSortInput>;
|
|
92539
93044
|
};
|
|
93045
|
+
export type GraphStoreV2AtlassianUserWatchesFocusOrganizationArgs = {
|
|
93046
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
93047
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
93048
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
93049
|
+
id: Scalars['ID']['input'];
|
|
93050
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserWatchesFocusOrganizationSortInput>;
|
|
93051
|
+
};
|
|
93052
|
+
export type GraphStoreV2AtlassianUserWatchesFocusOrganizationInverseArgs = {
|
|
93053
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
93054
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
93055
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
93056
|
+
id: Scalars['ID']['input'];
|
|
93057
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserWatchesFocusOrganizationSortInput>;
|
|
93058
|
+
};
|
|
92540
93059
|
export type GraphStoreV2BitbucketRepositoryHasExternalPullRequestArgs = {
|
|
92541
93060
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
92542
93061
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -95260,6 +95779,20 @@ export type GraphStoreV2FocusOrganizationHasAtlassianGoalInverseArgs = {
|
|
|
95260
95779
|
id: Scalars['ID']['input'];
|
|
95261
95780
|
sort?: InputMaybe<GraphStoreV2FocusOrganizationHasAtlassianGoalSortInput>;
|
|
95262
95781
|
};
|
|
95782
|
+
export type GraphStoreV2FocusOrganizationHasChildFocusOrganizationArgs = {
|
|
95783
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95784
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95785
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95786
|
+
id: Scalars['ID']['input'];
|
|
95787
|
+
sort?: InputMaybe<GraphStoreV2FocusOrganizationHasChildFocusOrganizationSortInput>;
|
|
95788
|
+
};
|
|
95789
|
+
export type GraphStoreV2FocusOrganizationHasChildFocusOrganizationInverseArgs = {
|
|
95790
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95791
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95792
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95793
|
+
id: Scalars['ID']['input'];
|
|
95794
|
+
sort?: InputMaybe<GraphStoreV2FocusOrganizationHasChildFocusOrganizationSortInput>;
|
|
95795
|
+
};
|
|
95263
95796
|
export type GraphStoreV2FocusOrganizationHasFocusOrganizationMembershipArgs = {
|
|
95264
95797
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
95265
95798
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -95274,6 +95807,20 @@ export type GraphStoreV2FocusOrganizationHasFocusOrganizationMembershipInverseAr
|
|
|
95274
95807
|
id: Scalars['ID']['input'];
|
|
95275
95808
|
sort?: InputMaybe<GraphStoreV2FocusOrganizationHasFocusOrganizationMembershipSortInput>;
|
|
95276
95809
|
};
|
|
95810
|
+
export type GraphStoreV2FocusOrganizationHasFocusOrganizationStatusUpdateArgs = {
|
|
95811
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95812
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95813
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95814
|
+
id: Scalars['ID']['input'];
|
|
95815
|
+
sort?: InputMaybe<GraphStoreV2FocusOrganizationHasFocusOrganizationStatusUpdateSortInput>;
|
|
95816
|
+
};
|
|
95817
|
+
export type GraphStoreV2FocusOrganizationHasFocusOrganizationStatusUpdateInverseArgs = {
|
|
95818
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
95819
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
95820
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
95821
|
+
id: Scalars['ID']['input'];
|
|
95822
|
+
sort?: InputMaybe<GraphStoreV2FocusOrganizationHasFocusOrganizationStatusUpdateSortInput>;
|
|
95823
|
+
};
|
|
95277
95824
|
export type GraphStoreV2FocusOrganizationSponsorsFocusFocusAreaArgs = {
|
|
95278
95825
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
95279
95826
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -97260,6 +97807,9 @@ export type GraphStoreV2AtlassianUserWatchesConfluenceWhiteboardSortInput = {
|
|
|
97260
97807
|
export type GraphStoreV2AtlassianUserWatchesFocusFocusAreaSortInput = {
|
|
97261
97808
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
97262
97809
|
};
|
|
97810
|
+
export type GraphStoreV2AtlassianUserWatchesFocusOrganizationSortInput = {
|
|
97811
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
97812
|
+
};
|
|
97263
97813
|
export type GraphStoreV2BitbucketRepositoryHasExternalPullRequestSortInput = {
|
|
97264
97814
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
97265
97815
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -99036,9 +99586,15 @@ export type GraphStoreV2FocusFocusAreaHasWorkEntitySortInput = {
|
|
|
99036
99586
|
export type GraphStoreV2FocusOrganizationHasAtlassianGoalSortInput = {
|
|
99037
99587
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99038
99588
|
};
|
|
99589
|
+
export type GraphStoreV2FocusOrganizationHasChildFocusOrganizationSortInput = {
|
|
99590
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99591
|
+
};
|
|
99039
99592
|
export type GraphStoreV2FocusOrganizationHasFocusOrganizationMembershipSortInput = {
|
|
99040
99593
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99041
99594
|
};
|
|
99595
|
+
export type GraphStoreV2FocusOrganizationHasFocusOrganizationStatusUpdateSortInput = {
|
|
99596
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99597
|
+
};
|
|
99042
99598
|
export type GraphStoreV2FocusOrganizationSponsorsFocusFocusAreaSortInput = {
|
|
99043
99599
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99044
99600
|
};
|
|
@@ -104592,6 +105148,34 @@ export type GraphStoreV2SimplifiedAtlassianUserWatchesFocusFocusAreaInverseEdge
|
|
|
104592
105148
|
};
|
|
104593
105149
|
export type GraphStoreV2SimplifiedAtlassianUserWatchesFocusFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
104594
105150
|
export type GraphStoreV2SimplifiedAtlassianUserWatchesFocusFocusAreaUnion = MercuryFocusArea;
|
|
105151
|
+
export type GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationConnection = HasPageInfo & {
|
|
105152
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationConnection';
|
|
105153
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationEdge>>>;
|
|
105154
|
+
pageInfo: PageInfo;
|
|
105155
|
+
};
|
|
105156
|
+
export type GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationEdge = {
|
|
105157
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationEdge';
|
|
105158
|
+
createdAt: Scalars['DateTime']['output'];
|
|
105159
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
105160
|
+
id: Scalars['ID']['output'];
|
|
105161
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
105162
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationUnion>;
|
|
105163
|
+
};
|
|
105164
|
+
export type GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationInverseConnection = HasPageInfo & {
|
|
105165
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationInverseConnection';
|
|
105166
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationInverseEdge>>>;
|
|
105167
|
+
pageInfo: PageInfo;
|
|
105168
|
+
};
|
|
105169
|
+
export type GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationInverseEdge = {
|
|
105170
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationInverseEdge';
|
|
105171
|
+
createdAt: Scalars['DateTime']['output'];
|
|
105172
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
105173
|
+
id: Scalars['ID']['output'];
|
|
105174
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
105175
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationInverseUnion>;
|
|
105176
|
+
};
|
|
105177
|
+
export type GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
105178
|
+
export type GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationUnion = MercuryOrganization;
|
|
104595
105179
|
export type GraphStoreV2SimplifiedBitbucketRepositoryHasExternalPullRequestConnection = HasPageInfo & HasTotal & {
|
|
104596
105180
|
__typename?: 'GraphStoreV2SimplifiedBitbucketRepositoryHasExternalPullRequestConnection';
|
|
104597
105181
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedBitbucketRepositoryHasExternalPullRequestEdge>>>;
|
|
@@ -110046,6 +110630,34 @@ export type GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalInverseEdge =
|
|
|
110046
110630
|
};
|
|
110047
110631
|
export type GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalInverseUnion = MercuryOrganization;
|
|
110048
110632
|
export type GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalUnion = TownsquareGoal;
|
|
110633
|
+
export type GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationConnection = HasPageInfo & {
|
|
110634
|
+
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationConnection';
|
|
110635
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationEdge>>>;
|
|
110636
|
+
pageInfo: PageInfo;
|
|
110637
|
+
};
|
|
110638
|
+
export type GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationEdge = {
|
|
110639
|
+
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationEdge';
|
|
110640
|
+
createdAt: Scalars['DateTime']['output'];
|
|
110641
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
110642
|
+
id: Scalars['ID']['output'];
|
|
110643
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
110644
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationUnion>;
|
|
110645
|
+
};
|
|
110646
|
+
export type GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationInverseConnection = HasPageInfo & {
|
|
110647
|
+
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationInverseConnection';
|
|
110648
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationInverseEdge>>>;
|
|
110649
|
+
pageInfo: PageInfo;
|
|
110650
|
+
};
|
|
110651
|
+
export type GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationInverseEdge = {
|
|
110652
|
+
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationInverseEdge';
|
|
110653
|
+
createdAt: Scalars['DateTime']['output'];
|
|
110654
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
110655
|
+
id: Scalars['ID']['output'];
|
|
110656
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
110657
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationInverseUnion>;
|
|
110658
|
+
};
|
|
110659
|
+
export type GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationInverseUnion = MercuryOrganization;
|
|
110660
|
+
export type GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationUnion = MercuryOrganization;
|
|
110049
110661
|
export type GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipConnection = HasPageInfo & {
|
|
110050
110662
|
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipConnection';
|
|
110051
110663
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipEdge>>>;
|
|
@@ -110074,6 +110686,34 @@ export type GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershi
|
|
|
110074
110686
|
};
|
|
110075
110687
|
export type GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipInverseUnion = MercuryOrganization;
|
|
110076
110688
|
export type GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipUnion = MercuryOrganizationMembership;
|
|
110689
|
+
export type GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateConnection = HasPageInfo & {
|
|
110690
|
+
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateConnection';
|
|
110691
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateEdge>>>;
|
|
110692
|
+
pageInfo: PageInfo;
|
|
110693
|
+
};
|
|
110694
|
+
export type GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateEdge = {
|
|
110695
|
+
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateEdge';
|
|
110696
|
+
createdAt: Scalars['DateTime']['output'];
|
|
110697
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
110698
|
+
id: Scalars['ID']['output'];
|
|
110699
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
110700
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateUnion>;
|
|
110701
|
+
};
|
|
110702
|
+
export type GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateInverseConnection = HasPageInfo & {
|
|
110703
|
+
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateInverseConnection';
|
|
110704
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateInverseEdge>>>;
|
|
110705
|
+
pageInfo: PageInfo;
|
|
110706
|
+
};
|
|
110707
|
+
export type GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateInverseEdge = {
|
|
110708
|
+
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateInverseEdge';
|
|
110709
|
+
createdAt: Scalars['DateTime']['output'];
|
|
110710
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
110711
|
+
id: Scalars['ID']['output'];
|
|
110712
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
110713
|
+
node?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateInverseUnion>;
|
|
110714
|
+
};
|
|
110715
|
+
export type GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateInverseUnion = MercuryOrganization;
|
|
110716
|
+
export type GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateUnion = MercuryOrganizationStatusUpdate;
|
|
110077
110717
|
export type GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaConnection = HasPageInfo & {
|
|
110078
110718
|
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaConnection';
|
|
110079
110719
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaEdge>>>;
|
|
@@ -114964,6 +115604,7 @@ export type HelpCenterBranding = {
|
|
|
114964
115604
|
isLogoAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
114965
115605
|
logo?: Maybe<HelpCenterLogo>;
|
|
114966
115606
|
navigationBar?: Maybe<HelpCenterNavigationBar>;
|
|
115607
|
+
spaceDensity?: Maybe<HelpCenterSpaceDensity>;
|
|
114967
115608
|
typography?: Maybe<HelpCenterBrandingTypography>;
|
|
114968
115609
|
useDefaultBanner?: Maybe<Scalars['Boolean']['output']>;
|
|
114969
115610
|
};
|
|
@@ -114990,6 +115631,7 @@ export type HelpCenterBrandingInput = {
|
|
|
114990
115631
|
homePageTitle?: InputMaybe<HelpCenterHomePageTitleInput>;
|
|
114991
115632
|
logo?: InputMaybe<HelpCenterLogoInput>;
|
|
114992
115633
|
navigationBar?: InputMaybe<HelpCenterNavigationBarInput>;
|
|
115634
|
+
spaceDensity?: InputMaybe<HelpCenterSpaceDensity>;
|
|
114993
115635
|
typography?: InputMaybe<HelpCenterBrandingTypographyInput>;
|
|
114994
115636
|
};
|
|
114995
115637
|
export type HelpCenterBrandingTypography = {
|
|
@@ -115639,6 +116281,11 @@ export declare enum HelpCenterSortOrder {
|
|
|
115639
116281
|
CreatedDateAscending = "CREATED_DATE_ASCENDING",
|
|
115640
116282
|
CreatedDateDescending = "CREATED_DATE_DESCENDING"
|
|
115641
116283
|
}
|
|
116284
|
+
export declare enum HelpCenterSpaceDensity {
|
|
116285
|
+
Comfortable = "COMFORTABLE",
|
|
116286
|
+
Compact = "COMPACT",
|
|
116287
|
+
Default = "DEFAULT"
|
|
116288
|
+
}
|
|
115642
116289
|
export declare enum HelpCenterStatusFilter {
|
|
115643
116290
|
Active = "ACTIVE",
|
|
115644
116291
|
Inactive = "INACTIVE",
|
|
@@ -117054,11 +117701,11 @@ export type HydratingJiraIssueEdge = {
|
|
|
117054
117701
|
};
|
|
117055
117702
|
export type HypothesisIndicator = {
|
|
117056
117703
|
__typename?: 'HypothesisIndicator';
|
|
117057
|
-
hypothesisId: Scalars['
|
|
117058
|
-
hypothesisSummary
|
|
117704
|
+
hypothesisId: Scalars['String']['output'];
|
|
117705
|
+
hypothesisSummary?: Maybe<Scalars['String']['output']>;
|
|
117059
117706
|
hypothesisType?: Maybe<MitigationHypothesisType>;
|
|
117060
|
-
investigationId: Scalars['
|
|
117061
|
-
provenance
|
|
117707
|
+
investigationId: Scalars['String']['output'];
|
|
117708
|
+
provenance?: Maybe<Array<IndicatorProvenance>>;
|
|
117062
117709
|
};
|
|
117063
117710
|
export type Icon = {
|
|
117064
117711
|
__typename?: 'Icon';
|
|
@@ -117092,19 +117739,11 @@ export type IndexHintInputType = {
|
|
|
117092
117739
|
};
|
|
117093
117740
|
export type IndicatorProvenance = {
|
|
117094
117741
|
__typename?: 'IndicatorProvenance';
|
|
117095
|
-
|
|
117096
|
-
|
|
117097
|
-
|
|
117098
|
-
export type IndicatorRejectionPayload = Payload & {
|
|
117099
|
-
__typename?: 'IndicatorRejectionPayload';
|
|
117100
|
-
errors?: Maybe<Array<MutationError>>;
|
|
117101
|
-
indicator?: Maybe<MitigationIndicator>;
|
|
117102
|
-
success: Scalars['Boolean']['output'];
|
|
117742
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
117743
|
+
sourceId: Scalars['String']['output'];
|
|
117744
|
+
sourceType?: Maybe<Scalars['String']['output']>;
|
|
117103
117745
|
};
|
|
117104
117746
|
export declare enum IndicatorRejectionReason {
|
|
117105
|
-
Duplicate = "DUPLICATE",
|
|
117106
|
-
Incorrect = "INCORRECT",
|
|
117107
|
-
LowConfidence = "LOW_CONFIDENCE",
|
|
117108
117747
|
NotRelevant = "NOT_RELEVANT",
|
|
117109
117748
|
Other = "OTHER"
|
|
117110
117749
|
}
|
|
@@ -118636,6 +119275,11 @@ export type JiraAgentSessionsFieldAgentSessionsArgs = {
|
|
|
118636
119275
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
118637
119276
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
118638
119277
|
};
|
|
119278
|
+
export declare enum JiraAgentStateCategory {
|
|
119279
|
+
Finished = "FINISHED",
|
|
119280
|
+
NeedsInput = "NEEDS_INPUT",
|
|
119281
|
+
Working = "WORKING"
|
|
119282
|
+
}
|
|
118639
119283
|
export type JiraAgenticUser = JiraActor & {
|
|
118640
119284
|
__typename?: 'JiraAgenticUser';
|
|
118641
119285
|
agent?: Maybe<AgentStudioAgent>;
|
|
@@ -120757,6 +121401,7 @@ export type JiraBoardView = JiraView & Node & {
|
|
|
120757
121401
|
columns?: Maybe<JiraBoardViewColumnConnection>;
|
|
120758
121402
|
completedIssueSearchCutOffInDays?: Maybe<Scalars['Int']['output']>;
|
|
120759
121403
|
customFilters?: Maybe<JiraSoftwareCustomFilterConnection>;
|
|
121404
|
+
density?: Maybe<JiraBoardViewDensity>;
|
|
120760
121405
|
error?: Maybe<QueryError>;
|
|
120761
121406
|
filterConfig?: Maybe<JiraViewFilterConfig>;
|
|
120762
121407
|
groupByConfig?: Maybe<JiraViewGroupByConfig>;
|
|
@@ -120970,6 +121615,11 @@ export type JiraBoardViewCustomSwimlaneCellsArgs = {
|
|
|
120970
121615
|
export type JiraBoardViewCustomSwimlaneTotalIssueCountArgs = {
|
|
120971
121616
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
120972
121617
|
};
|
|
121618
|
+
export declare enum JiraBoardViewDensity {
|
|
121619
|
+
Comfortable = "COMFORTABLE",
|
|
121620
|
+
Compact = "COMPACT",
|
|
121621
|
+
Spacious = "SPACIOUS"
|
|
121622
|
+
}
|
|
120973
121623
|
export type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
120974
121624
|
__typename?: 'JiraBoardViewFieldCardOption';
|
|
120975
121625
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -121014,6 +121664,7 @@ export type JiraBoardViewIssueCreateInput = {
|
|
|
121014
121664
|
};
|
|
121015
121665
|
export type JiraBoardViewIssueCreatePayload = Payload & {
|
|
121016
121666
|
__typename?: 'JiraBoardViewIssueCreatePayload';
|
|
121667
|
+
boardView?: Maybe<JiraBoardView>;
|
|
121017
121668
|
errors?: Maybe<Array<MutationError>>;
|
|
121018
121669
|
issue?: Maybe<JiraIssue>;
|
|
121019
121670
|
success: Scalars['Boolean']['output'];
|
|
@@ -124810,8 +125461,9 @@ export type JiraDragAndDropBoardViewIssueInput = {
|
|
|
124810
125461
|
rank?: InputMaybe<JiraIssueRankInput>;
|
|
124811
125462
|
transitionId?: InputMaybe<Scalars['Int']['input']>;
|
|
124812
125463
|
};
|
|
124813
|
-
export type JiraDragAndDropBoardViewIssuePayload = {
|
|
125464
|
+
export type JiraDragAndDropBoardViewIssuePayload = Payload & {
|
|
124814
125465
|
__typename?: 'JiraDragAndDropBoardViewIssuePayload';
|
|
125466
|
+
boardView?: Maybe<JiraBoardView>;
|
|
124815
125467
|
cell?: Maybe<JiraBoardViewCell>;
|
|
124816
125468
|
errors?: Maybe<Array<MutationError>>;
|
|
124817
125469
|
issue?: Maybe<JiraIssue>;
|
|
@@ -124856,6 +125508,10 @@ export type JiraEchoWhereInput = {
|
|
|
124856
125508
|
withDataError?: InputMaybe<Scalars['Boolean']['input']>;
|
|
124857
125509
|
withTopLevelError?: InputMaybe<Scalars['Boolean']['input']>;
|
|
124858
125510
|
};
|
|
125511
|
+
export type JiraEcosystemLayoutItem = {
|
|
125512
|
+
__typename?: 'JiraEcosystemLayoutItem';
|
|
125513
|
+
id: Scalars['ID']['output'];
|
|
125514
|
+
};
|
|
124859
125515
|
export type JiraEditCustomFieldInput = {
|
|
124860
125516
|
cloudId: Scalars['ID']['input'];
|
|
124861
125517
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -125358,6 +126014,11 @@ export type JiraFieldKeyValueInput = {
|
|
|
125358
126014
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
125359
126015
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
125360
126016
|
};
|
|
126017
|
+
export type JiraFieldLayoutItem = {
|
|
126018
|
+
__typename?: 'JiraFieldLayoutItem';
|
|
126019
|
+
fieldId: Scalars['ID']['output'];
|
|
126020
|
+
id: Scalars['ID']['output'];
|
|
126021
|
+
};
|
|
125361
126022
|
export type JiraFieldNonEditableReason = {
|
|
125362
126023
|
__typename?: 'JiraFieldNonEditableReason';
|
|
125363
126024
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -126063,6 +126724,10 @@ export type JiraForgeInstallationConfigExtension = {
|
|
|
126063
126724
|
key: Scalars['String']['output'];
|
|
126064
126725
|
value: Scalars['Boolean']['output'];
|
|
126065
126726
|
};
|
|
126727
|
+
export type JiraForgeLayoutItem = {
|
|
126728
|
+
__typename?: 'JiraForgeLayoutItem';
|
|
126729
|
+
id: Scalars['ID']['output'];
|
|
126730
|
+
};
|
|
126066
126731
|
export type JiraForgeMultipleGroupPickerFieldOperationInput = {
|
|
126067
126732
|
ids?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
126068
126733
|
names?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -126826,6 +127491,13 @@ export type JiraGroupGrantTypeValue = Node & {
|
|
|
126826
127491
|
export type JiraGroupInput = {
|
|
126827
127492
|
groupName: Scalars['ID']['input'];
|
|
126828
127493
|
};
|
|
127494
|
+
export type JiraGroupLayout = {
|
|
127495
|
+
__typename?: 'JiraGroupLayout';
|
|
127496
|
+
id: Scalars['ID']['output'];
|
|
127497
|
+
items: Array<JiraGroupLayoutItem>;
|
|
127498
|
+
name: Scalars['String']['output'];
|
|
127499
|
+
};
|
|
127500
|
+
export type JiraGroupLayoutItem = JiraEcosystemLayoutItem | JiraFieldLayoutItem | JiraForgeLayoutItem | JiraPanelLayoutItem;
|
|
126829
127501
|
export declare enum JiraGroupManagedBy {
|
|
126830
127502
|
Admins = "ADMINS",
|
|
126831
127503
|
External = "EXTERNAL",
|
|
@@ -128230,6 +128902,17 @@ export type JiraIssueCreateInput = {
|
|
|
128230
128902
|
rank?: InputMaybe<JiraIssueCreateRankInput>;
|
|
128231
128903
|
transitionId?: InputMaybe<Scalars['Int']['input']>;
|
|
128232
128904
|
};
|
|
128905
|
+
export type JiraIssueCreateLayout = {
|
|
128906
|
+
__typename?: 'JiraIssueCreateLayout';
|
|
128907
|
+
contentSection?: Maybe<JiraSection>;
|
|
128908
|
+
contextSection?: Maybe<JiraSection>;
|
|
128909
|
+
currentConfiguredLayout?: Maybe<JiraIssueLayoutType>;
|
|
128910
|
+
};
|
|
128911
|
+
export declare enum JiraIssueCreateLayoutFilter {
|
|
128912
|
+
AdminConfiguredLayout = "ADMIN_CONFIGURED_LAYOUT",
|
|
128913
|
+
UserConfiguredLayout = "USER_CONFIGURED_LAYOUT"
|
|
128914
|
+
}
|
|
128915
|
+
export type JiraIssueCreateLayoutResult = JiraIssueCreateLayout | QueryError;
|
|
128233
128916
|
export type JiraIssueCreatePayload = Payload & {
|
|
128234
128917
|
__typename?: 'JiraIssueCreatePayload';
|
|
128235
128918
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -128929,6 +129612,10 @@ export type JiraIssueItemTabContainerItemEdge = {
|
|
|
128929
129612
|
cursor: Scalars['String']['output'];
|
|
128930
129613
|
node?: Maybe<JiraIssueItemTabContainerItem>;
|
|
128931
129614
|
};
|
|
129615
|
+
export declare enum JiraIssueLayoutType {
|
|
129616
|
+
CustomUserConfiguredLayout = "CUSTOM_USER_CONFIGURED_LAYOUT",
|
|
129617
|
+
DefaultAdminConfiguredLayout = "DEFAULT_ADMIN_CONFIGURED_LAYOUT"
|
|
129618
|
+
}
|
|
128932
129619
|
export declare enum JiraIssueLifecycleState {
|
|
128933
129620
|
Active = "ACTIVE",
|
|
128934
129621
|
Archived = "ARCHIVED"
|
|
@@ -130551,6 +131238,14 @@ export type JiraJourneyWorkdayIntegrationTriggerConfigurationInput = {
|
|
|
130551
131238
|
ruleId?: InputMaybe<Scalars['ID']['input']>;
|
|
130552
131239
|
type?: InputMaybe<JiraJourneyTriggerType>;
|
|
130553
131240
|
};
|
|
131241
|
+
export type JiraJqlAgentStateCategoryFieldValue = JiraJqlFieldValue & {
|
|
131242
|
+
__typename?: 'JiraJqlAgentStateCategoryFieldValue';
|
|
131243
|
+
displayName: Scalars['String']['output'];
|
|
131244
|
+
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
131245
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
131246
|
+
jqlTerm: Scalars['String']['output'];
|
|
131247
|
+
stateCategory: JiraAgentStateCategory;
|
|
131248
|
+
};
|
|
130554
131249
|
export type JiraJqlAtlasProjectFieldValue = JiraJqlFieldValue & {
|
|
130555
131250
|
__typename?: 'JiraJqlAtlasProjectFieldValue';
|
|
130556
131251
|
displayName: Scalars['String']['output'];
|
|
@@ -131286,6 +131981,7 @@ export declare enum JiraKanbanDestination {
|
|
|
131286
131981
|
export type JiraLabel = {
|
|
131287
131982
|
__typename?: 'JiraLabel';
|
|
131288
131983
|
color?: Maybe<JiraColor>;
|
|
131984
|
+
isAboveThreshold?: Maybe<Scalars['Boolean']['output']>;
|
|
131289
131985
|
labelId?: Maybe<Scalars['String']['output']>;
|
|
131290
131986
|
name?: Maybe<Scalars['String']['output']>;
|
|
131291
131987
|
};
|
|
@@ -131394,11 +132090,13 @@ export type JiraLabelsForCreateFieldLabelExistsArgs = {
|
|
|
131394
132090
|
export type JiraLabelsForCreateFieldLabelsArgs = {
|
|
131395
132091
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131396
132092
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
132093
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
131397
132094
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131398
132095
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131399
132096
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
131400
132097
|
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
131401
132098
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
132099
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
131402
132100
|
};
|
|
131403
132101
|
export type JiraLabelsInput = {
|
|
131404
132102
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -134141,6 +134839,10 @@ export declare enum JiraPaginationStyle {
|
|
|
134141
134839
|
Cursor = "CURSOR",
|
|
134142
134840
|
Offset = "OFFSET"
|
|
134143
134841
|
}
|
|
134842
|
+
export type JiraPanelLayoutItem = {
|
|
134843
|
+
__typename?: 'JiraPanelLayoutItem';
|
|
134844
|
+
id: Scalars['ID']['output'];
|
|
134845
|
+
};
|
|
134144
134846
|
export type JiraParentFieldInput = {
|
|
134145
134847
|
issueId: Scalars['ID']['input'];
|
|
134146
134848
|
};
|
|
@@ -138109,6 +138811,7 @@ export type JiraReleaseHistoryConnection = {
|
|
|
138109
138811
|
};
|
|
138110
138812
|
export type JiraReleaseHistoryEdge = {
|
|
138111
138813
|
__typename?: 'JiraReleaseHistoryEdge';
|
|
138814
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
138112
138815
|
node: JiraReleaseHistoryItem;
|
|
138113
138816
|
};
|
|
138114
138817
|
export type JiraReleaseHistoryGenericFieldValue = {
|
|
@@ -138118,6 +138821,7 @@ export type JiraReleaseHistoryGenericFieldValue = {
|
|
|
138118
138821
|
export type JiraReleaseHistoryItem = {
|
|
138119
138822
|
__typename?: 'JiraReleaseHistoryItem';
|
|
138120
138823
|
actor?: Maybe<User>;
|
|
138824
|
+
eventId?: Maybe<Scalars['String']['output']>;
|
|
138121
138825
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
138122
138826
|
from?: Maybe<JiraReleaseHistoryValue>;
|
|
138123
138827
|
i18nDescription?: Maybe<Scalars['String']['output']>;
|
|
@@ -138813,6 +139517,9 @@ export type JiraReportsPage = {
|
|
|
138813
139517
|
__typename?: 'JiraReportsPage';
|
|
138814
139518
|
categories?: Maybe<Array<Maybe<JiraReportCategory>>>;
|
|
138815
139519
|
};
|
|
139520
|
+
export type JiraRequestTypeInput = {
|
|
139521
|
+
key: Scalars['String']['input'];
|
|
139522
|
+
};
|
|
138816
139523
|
export type JiraResetFaviconInput = {
|
|
138817
139524
|
cloudId: Scalars['ID']['input'];
|
|
138818
139525
|
};
|
|
@@ -139548,6 +140255,12 @@ export declare enum JiraSearchableEntityType {
|
|
|
139548
140255
|
Project = "PROJECT",
|
|
139549
140256
|
Queue = "QUEUE"
|
|
139550
140257
|
}
|
|
140258
|
+
export type JiraSection = {
|
|
140259
|
+
__typename?: 'JiraSection';
|
|
140260
|
+
items: Array<JiraSectionLayoutItem>;
|
|
140261
|
+
key: Scalars['String']['output'];
|
|
140262
|
+
};
|
|
140263
|
+
export type JiraSectionLayoutItem = JiraEcosystemLayoutItem | JiraFieldLayoutItem | JiraForgeLayoutItem | JiraGroupLayout | JiraPanelLayoutItem | JiraTabLayout;
|
|
139551
140264
|
export type JiraSecurityLevel = Node & {
|
|
139552
140265
|
__typename?: 'JiraSecurityLevel';
|
|
139553
140266
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -141259,6 +141972,17 @@ export type JiraSetBoardViewCompletedIssueSearchCutOffPayload = Payload & {
|
|
|
141259
141972
|
errors?: Maybe<Array<MutationError>>;
|
|
141260
141973
|
success: Scalars['Boolean']['output'];
|
|
141261
141974
|
};
|
|
141975
|
+
export type JiraSetBoardViewDensityInput = {
|
|
141976
|
+
density: JiraBoardViewDensity;
|
|
141977
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
141978
|
+
viewId: Scalars['ID']['input'];
|
|
141979
|
+
};
|
|
141980
|
+
export type JiraSetBoardViewDensityPayload = Payload & {
|
|
141981
|
+
__typename?: 'JiraSetBoardViewDensityPayload';
|
|
141982
|
+
boardView?: Maybe<JiraBoardView>;
|
|
141983
|
+
errors?: Maybe<Array<MutationError>>;
|
|
141984
|
+
success: Scalars['Boolean']['output'];
|
|
141985
|
+
};
|
|
141262
141986
|
export type JiraSetBoardViewFilterInput = {
|
|
141263
141987
|
jql: Scalars['String']['input'];
|
|
141264
141988
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
@@ -142208,6 +142932,7 @@ export type JiraSpaceSearchForYouEdge = {
|
|
|
142208
142932
|
cursor: Scalars['String']['output'];
|
|
142209
142933
|
node?: Maybe<JiraProject>;
|
|
142210
142934
|
projectId: Scalars['ID']['output'];
|
|
142935
|
+
recommendationType?: Maybe<JiraSpaceSearchForYouRecommendationType>;
|
|
142211
142936
|
};
|
|
142212
142937
|
export type JiraSpaceSearchForYouError = {
|
|
142213
142938
|
__typename?: 'JiraSpaceSearchForYouError';
|
|
@@ -142220,6 +142945,15 @@ export type JiraSpaceSearchForYouInput = {
|
|
|
142220
142945
|
teamId?: InputMaybe<Scalars['ID']['input']>;
|
|
142221
142946
|
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
142222
142947
|
};
|
|
142948
|
+
export declare enum JiraSpaceSearchForYouRecommendationType {
|
|
142949
|
+
CrossProductCollaboratorActivity = "CROSS_PRODUCT_COLLABORATOR_ACTIVITY",
|
|
142950
|
+
DirectSpace = "DIRECT_SPACE",
|
|
142951
|
+
InviterSpaces = "INVITER_SPACES",
|
|
142952
|
+
PopularSpaces = "POPULAR_SPACES",
|
|
142953
|
+
TeamActivity = "TEAM_ACTIVITY",
|
|
142954
|
+
TeamSpaceLink = "TEAM_SPACE_LINK",
|
|
142955
|
+
UserActivity = "USER_ACTIVITY"
|
|
142956
|
+
}
|
|
142223
142957
|
export type JiraSpreadsheetGroup = {
|
|
142224
142958
|
__typename?: 'JiraSpreadsheetGroup';
|
|
142225
142959
|
afterGroupId?: Maybe<Scalars['String']['output']>;
|
|
@@ -142679,6 +143413,7 @@ export type JiraSubscription = {
|
|
|
142679
143413
|
__typename?: 'JiraSubscription';
|
|
142680
143414
|
bulkOperationProgressSubscription?: Maybe<JiraIssueBulkOperationProgress>;
|
|
142681
143415
|
onAiAgentSessionCreate?: Maybe<JiraAiAgentSession>;
|
|
143416
|
+
onAiAgentSessionCreateByProjects?: Maybe<JiraAgentSessionCreateEvent>;
|
|
142682
143417
|
onAiAgentSessionCreateV2?: Maybe<JiraAgentSessionCreateEvent>;
|
|
142683
143418
|
onAiAgentSessionCreateV3?: Maybe<JiraAgentSessionCreateEvent>;
|
|
142684
143419
|
onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
|
|
@@ -142725,6 +143460,10 @@ export type JiraSubscriptionOnAiAgentSessionCreateArgs = {
|
|
|
142725
143460
|
cloudId: Scalars['ID']['input'];
|
|
142726
143461
|
issueId: Scalars['String']['input'];
|
|
142727
143462
|
};
|
|
143463
|
+
export type JiraSubscriptionOnAiAgentSessionCreateByProjectsArgs = {
|
|
143464
|
+
cloudId: Scalars['ID']['input'];
|
|
143465
|
+
projectIds: Array<Scalars['String']['input']>;
|
|
143466
|
+
};
|
|
142728
143467
|
export type JiraSubscriptionOnAiAgentSessionCreateV2Args = {
|
|
142729
143468
|
accountId: Scalars['String']['input'];
|
|
142730
143469
|
cloudId: Scalars['ID']['input'];
|
|
@@ -143019,6 +143758,14 @@ export type JiraSystemFilterEdge = {
|
|
|
143019
143758
|
cursor: Scalars['String']['output'];
|
|
143020
143759
|
node?: Maybe<JiraSystemFilter>;
|
|
143021
143760
|
};
|
|
143761
|
+
export type JiraTabLayout = {
|
|
143762
|
+
__typename?: 'JiraTabLayout';
|
|
143763
|
+
collapsedItems?: Maybe<Array<Maybe<JiraFieldLayoutItem>>>;
|
|
143764
|
+
id: Scalars['ID']['output'];
|
|
143765
|
+
items: Array<JiraFieldLayoutItem>;
|
|
143766
|
+
name: Scalars['String']['output'];
|
|
143767
|
+
tabId?: Maybe<Scalars['String']['output']>;
|
|
143768
|
+
};
|
|
143022
143769
|
export type JiraTeam = Node & {
|
|
143023
143770
|
__typename?: 'JiraTeam';
|
|
143024
143771
|
avatar?: Maybe<JiraAvatar>;
|
|
@@ -144738,6 +145485,7 @@ export type JiraVersionEpicsForFilterArgs = {
|
|
|
144738
145485
|
export type JiraVersionHistoryArgs = {
|
|
144739
145486
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
144740
145487
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
145488
|
+
orderBy?: InputMaybe<SortDirection>;
|
|
144741
145489
|
};
|
|
144742
145490
|
export type JiraVersionIssueAssociatedDesignsArgs = {
|
|
144743
145491
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -148072,6 +148820,439 @@ export declare enum JsmSolutionComposerStepStatusType {
|
|
|
148072
148820
|
Failed = "FAILED",
|
|
148073
148821
|
InProgress = "IN_PROGRESS"
|
|
148074
148822
|
}
|
|
148823
|
+
export type JsmTelemetryConnection = {
|
|
148824
|
+
__typename?: 'JsmTelemetryConnection';
|
|
148825
|
+
createdAt: Scalars['DateTime']['output'];
|
|
148826
|
+
displayName: Scalars['String']['output'];
|
|
148827
|
+
id: Scalars['ID']['output'];
|
|
148828
|
+
ownerAccountId: Scalars['ID']['output'];
|
|
148829
|
+
provider: JsmTelemetryProviderType;
|
|
148830
|
+
status: JsmTelemetryConnectionStatus;
|
|
148831
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
148832
|
+
};
|
|
148833
|
+
export type JsmTelemetryConnectionFilterInput = {
|
|
148834
|
+
provider?: InputMaybe<JsmTelemetryProviderType>;
|
|
148835
|
+
status?: InputMaybe<JsmTelemetryConnectionStatus>;
|
|
148836
|
+
};
|
|
148837
|
+
export type JsmTelemetryConnectionSchemaDefinition = {
|
|
148838
|
+
__typename?: 'JsmTelemetryConnectionSchemaDefinition';
|
|
148839
|
+
properties: Array<JsmTelemetryConnectionSchemaProperty>;
|
|
148840
|
+
type: Scalars['String']['output'];
|
|
148841
|
+
};
|
|
148842
|
+
export type JsmTelemetryConnectionSchemaProperty = {
|
|
148843
|
+
__typename?: 'JsmTelemetryConnectionSchemaProperty';
|
|
148844
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
148845
|
+
key: Scalars['String']['output'];
|
|
148846
|
+
required: Scalars['Boolean']['output'];
|
|
148847
|
+
title: Scalars['String']['output'];
|
|
148848
|
+
type: Scalars['String']['output'];
|
|
148849
|
+
};
|
|
148850
|
+
export declare enum JsmTelemetryConnectionStatus {
|
|
148851
|
+
Active = "ACTIVE",
|
|
148852
|
+
Error = "ERROR",
|
|
148853
|
+
Inactive = "INACTIVE"
|
|
148854
|
+
}
|
|
148855
|
+
export type JsmTelemetryConnectionUiSchema = {
|
|
148856
|
+
__typename?: 'JsmTelemetryConnectionUiSchema';
|
|
148857
|
+
elements: Array<JsmTelemetryConnectionUiSchemaElement>;
|
|
148858
|
+
type: Scalars['String']['output'];
|
|
148859
|
+
};
|
|
148860
|
+
export type JsmTelemetryConnectionUiSchemaCondition = {
|
|
148861
|
+
__typename?: 'JsmTelemetryConnectionUiSchemaCondition';
|
|
148862
|
+
failWhenUndefined?: Maybe<Scalars['Boolean']['output']>;
|
|
148863
|
+
schema?: Maybe<JsmTelemetryRuleConditionSchema>;
|
|
148864
|
+
scope: Scalars['String']['output'];
|
|
148865
|
+
};
|
|
148866
|
+
export type JsmTelemetryConnectionUiSchemaElement = {
|
|
148867
|
+
__typename?: 'JsmTelemetryConnectionUiSchemaElement';
|
|
148868
|
+
data?: Maybe<Scalars['String']['output']>;
|
|
148869
|
+
rule?: Maybe<JsmTelemetryConnectionUiSchemaRule>;
|
|
148870
|
+
scope: Scalars['String']['output'];
|
|
148871
|
+
type: Scalars['String']['output'];
|
|
148872
|
+
};
|
|
148873
|
+
export type JsmTelemetryConnectionUiSchemaRule = {
|
|
148874
|
+
__typename?: 'JsmTelemetryConnectionUiSchemaRule';
|
|
148875
|
+
condition: JsmTelemetryConnectionUiSchemaCondition;
|
|
148876
|
+
effect: Scalars['String']['output'];
|
|
148877
|
+
};
|
|
148878
|
+
export type JsmTelemetryCreateTelemetryConnectionInput = {
|
|
148879
|
+
apiToken: Scalars['String']['input'];
|
|
148880
|
+
displayName: Scalars['String']['input'];
|
|
148881
|
+
provider: JsmTelemetryProviderType;
|
|
148882
|
+
};
|
|
148883
|
+
export type JsmTelemetryCreateTelemetryConnectionPayload = {
|
|
148884
|
+
__typename?: 'JsmTelemetryCreateTelemetryConnectionPayload';
|
|
148885
|
+
connection: JsmTelemetryConnection;
|
|
148886
|
+
};
|
|
148887
|
+
export type JsmTelemetryDashboardChartInput = {
|
|
148888
|
+
chartId?: InputMaybe<Scalars['ID']['input']>;
|
|
148889
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
148890
|
+
provider: JsmTelemetryProviderType;
|
|
148891
|
+
query: JsmTelemetryDashboardChartQueryInput;
|
|
148892
|
+
sortOrder?: InputMaybe<Scalars['Int']['input']>;
|
|
148893
|
+
};
|
|
148894
|
+
export type JsmTelemetryDashboardChartQueryInput = {
|
|
148895
|
+
aggregation?: InputMaybe<JsmTelemetryMetricAggregationInput>;
|
|
148896
|
+
filters: Array<JsmTelemetryMetricFilterInput>;
|
|
148897
|
+
metricName: Scalars['String']['input'];
|
|
148898
|
+
resolution?: InputMaybe<JsmTelemetryMetricResolutionInput>;
|
|
148899
|
+
telemetryConnectionId: Scalars['ID']['input'];
|
|
148900
|
+
timeRange?: InputMaybe<JsmTelemetryTimeRangeInput>;
|
|
148901
|
+
};
|
|
148902
|
+
export type JsmTelemetryDashboardChartQueryResult = {
|
|
148903
|
+
__typename?: 'JsmTelemetryDashboardChartQueryResult';
|
|
148904
|
+
aggregation?: Maybe<JsmTelemetryMetricAggregation>;
|
|
148905
|
+
filters: Array<JsmTelemetryMetricFilter>;
|
|
148906
|
+
metricName: Scalars['String']['output'];
|
|
148907
|
+
resolution?: Maybe<JsmTelemetryMetricResolution>;
|
|
148908
|
+
telemetryConnectionId: Scalars['ID']['output'];
|
|
148909
|
+
timeRange?: Maybe<JsmTelemetryTimeRange>;
|
|
148910
|
+
};
|
|
148911
|
+
export type JsmTelemetryDashboardChartResult = {
|
|
148912
|
+
__typename?: 'JsmTelemetryDashboardChartResult';
|
|
148913
|
+
chartId: Scalars['ID']['output'];
|
|
148914
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
148915
|
+
provider: JsmTelemetryProviderType;
|
|
148916
|
+
query: JsmTelemetryDashboardChartQueryResult;
|
|
148917
|
+
sortOrder: Scalars['Int']['output'];
|
|
148918
|
+
};
|
|
148919
|
+
export type JsmTelemetryDashboardConfigResponseDto = {
|
|
148920
|
+
__typename?: 'JsmTelemetryDashboardConfigResponseDto';
|
|
148921
|
+
charts: Array<JsmTelemetryDashboardChartResult>;
|
|
148922
|
+
id: Scalars['ID']['output'];
|
|
148923
|
+
incidentId?: Maybe<Scalars['ID']['output']>;
|
|
148924
|
+
};
|
|
148925
|
+
export type JsmTelemetryDashboardQueryInput = {
|
|
148926
|
+
placeholder?: InputMaybe<Scalars['String']['input']>;
|
|
148927
|
+
};
|
|
148928
|
+
export type JsmTelemetryDashboardResult = {
|
|
148929
|
+
__typename?: 'JsmTelemetryDashboardResult';
|
|
148930
|
+
data?: Maybe<JsmTelemetryDashboardConfigResponseDto>;
|
|
148931
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
148932
|
+
};
|
|
148933
|
+
export type JsmTelemetryDeleteTelemetryConnectionInput = {
|
|
148934
|
+
id: Scalars['ID']['input'];
|
|
148935
|
+
};
|
|
148936
|
+
export type JsmTelemetryDomainError = {
|
|
148937
|
+
__typename?: 'JsmTelemetryDomainError';
|
|
148938
|
+
code: JsmTelemetryDomainErrorCode;
|
|
148939
|
+
message: Scalars['String']['output'];
|
|
148940
|
+
};
|
|
148941
|
+
export declare enum JsmTelemetryDomainErrorCode {
|
|
148942
|
+
ChartLimitExceeded = "CHART_LIMIT_EXCEEDED",
|
|
148943
|
+
ConnectionInactive = "CONNECTION_INACTIVE",
|
|
148944
|
+
ConnectionNotFound = "CONNECTION_NOT_FOUND",
|
|
148945
|
+
IntegrationServiceError = "INTEGRATION_SERVICE_ERROR",
|
|
148946
|
+
MetricNotFound = "METRIC_NOT_FOUND",
|
|
148947
|
+
NotImplemented = "NOT_IMPLEMENTED",
|
|
148948
|
+
NoData = "NO_DATA",
|
|
148949
|
+
ProviderAuthFailed = "PROVIDER_AUTH_FAILED",
|
|
148950
|
+
ProviderNotConfigured = "PROVIDER_NOT_CONFIGURED",
|
|
148951
|
+
ProviderParameterRequired = "PROVIDER_PARAMETER_REQUIRED",
|
|
148952
|
+
ProviderQueryRejected = "PROVIDER_QUERY_REJECTED",
|
|
148953
|
+
ProviderRateLimited = "PROVIDER_RATE_LIMITED",
|
|
148954
|
+
ProviderUnavailable = "PROVIDER_UNAVAILABLE",
|
|
148955
|
+
QueryTimeout = "QUERY_TIMEOUT",
|
|
148956
|
+
TelemetryDataSourceUnavailable = "TELEMETRY_DATA_SOURCE_UNAVAILABLE",
|
|
148957
|
+
TelemetryResponseUnreadable = "TELEMETRY_RESPONSE_UNREADABLE",
|
|
148958
|
+
TooManySeries = "TOO_MANY_SERIES",
|
|
148959
|
+
UnsupportedProvider = "UNSUPPORTED_PROVIDER",
|
|
148960
|
+
UnsupportedQuery = "UNSUPPORTED_QUERY",
|
|
148961
|
+
ValidationError = "VALIDATION_ERROR"
|
|
148962
|
+
}
|
|
148963
|
+
export type JsmTelemetryMetricAggregation = {
|
|
148964
|
+
__typename?: 'JsmTelemetryMetricAggregation';
|
|
148965
|
+
function: JsmTelemetryMetricAggregationFunction;
|
|
148966
|
+
};
|
|
148967
|
+
export declare enum JsmTelemetryMetricAggregationFunction {
|
|
148968
|
+
Avg = "AVG",
|
|
148969
|
+
Max = "MAX",
|
|
148970
|
+
Min = "MIN",
|
|
148971
|
+
Sum = "SUM"
|
|
148972
|
+
}
|
|
148973
|
+
export type JsmTelemetryMetricAggregationInput = {
|
|
148974
|
+
function: JsmTelemetryMetricAggregationFunction;
|
|
148975
|
+
};
|
|
148976
|
+
export type JsmTelemetryMetricAttribute = {
|
|
148977
|
+
__typename?: 'JsmTelemetryMetricAttribute';
|
|
148978
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
148979
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
148980
|
+
key: Scalars['String']['output'];
|
|
148981
|
+
};
|
|
148982
|
+
export type JsmTelemetryMetricAttributeResultResponse = {
|
|
148983
|
+
__typename?: 'JsmTelemetryMetricAttributeResultResponse';
|
|
148984
|
+
attributes: Array<JsmTelemetryMetricAttribute>;
|
|
148985
|
+
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
148986
|
+
};
|
|
148987
|
+
export type JsmTelemetryMetricAttributeSearchInput = {
|
|
148988
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
148989
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
148990
|
+
metricName: Scalars['String']['input'];
|
|
148991
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
148992
|
+
telemetryConnectionId: Scalars['ID']['input'];
|
|
148993
|
+
};
|
|
148994
|
+
export type JsmTelemetryMetricAttributeValue = {
|
|
148995
|
+
__typename?: 'JsmTelemetryMetricAttributeValue';
|
|
148996
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
148997
|
+
value: Scalars['String']['output'];
|
|
148998
|
+
};
|
|
148999
|
+
export type JsmTelemetryMetricAttributeValueResultResponse = {
|
|
149000
|
+
__typename?: 'JsmTelemetryMetricAttributeValueResultResponse';
|
|
149001
|
+
approximate: Scalars['Boolean']['output'];
|
|
149002
|
+
attributeKey: Scalars['String']['output'];
|
|
149003
|
+
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
149004
|
+
values: Array<JsmTelemetryMetricAttributeValue>;
|
|
149005
|
+
};
|
|
149006
|
+
export type JsmTelemetryMetricAttributeValueSearchInput = {
|
|
149007
|
+
attributeKey: Scalars['String']['input'];
|
|
149008
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
149009
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
149010
|
+
metricName: Scalars['String']['input'];
|
|
149011
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
149012
|
+
telemetryConnectionId: Scalars['ID']['input'];
|
|
149013
|
+
};
|
|
149014
|
+
export type JsmTelemetryMetricAttributeValuesResult = {
|
|
149015
|
+
__typename?: 'JsmTelemetryMetricAttributeValuesResult';
|
|
149016
|
+
data?: Maybe<JsmTelemetryMetricAttributeValueResultResponse>;
|
|
149017
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
149018
|
+
};
|
|
149019
|
+
export type JsmTelemetryMetricAttributesResult = {
|
|
149020
|
+
__typename?: 'JsmTelemetryMetricAttributesResult';
|
|
149021
|
+
data?: Maybe<JsmTelemetryMetricAttributeResultResponse>;
|
|
149022
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
149023
|
+
};
|
|
149024
|
+
export type JsmTelemetryMetricDataPoint = {
|
|
149025
|
+
__typename?: 'JsmTelemetryMetricDataPoint';
|
|
149026
|
+
timestamp: Scalars['DateTime']['output'];
|
|
149027
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
149028
|
+
};
|
|
149029
|
+
export type JsmTelemetryMetricDataQueryInput = {
|
|
149030
|
+
aggregation?: InputMaybe<JsmTelemetryMetricAggregationInput>;
|
|
149031
|
+
filters: Array<JsmTelemetryMetricFilterInput>;
|
|
149032
|
+
metricName: Scalars['String']['input'];
|
|
149033
|
+
resolution?: InputMaybe<JsmTelemetryMetricResolutionInput>;
|
|
149034
|
+
telemetryConnectionId: Scalars['ID']['input'];
|
|
149035
|
+
timeRange: JsmTelemetryTimeRangeInput;
|
|
149036
|
+
};
|
|
149037
|
+
export type JsmTelemetryMetricDataResponse = {
|
|
149038
|
+
__typename?: 'JsmTelemetryMetricDataResponse';
|
|
149039
|
+
aggregation?: Maybe<JsmTelemetryMetricAggregation>;
|
|
149040
|
+
metric: JsmTelemetryMetricMetadata;
|
|
149041
|
+
resolution: JsmTelemetryMetricResolution;
|
|
149042
|
+
series: Array<JsmTelemetryMetricSeries>;
|
|
149043
|
+
timeRange: JsmTelemetryTimeRange;
|
|
149044
|
+
};
|
|
149045
|
+
export type JsmTelemetryMetricDataResult = {
|
|
149046
|
+
__typename?: 'JsmTelemetryMetricDataResult';
|
|
149047
|
+
data?: Maybe<JsmTelemetryMetricDataResponse>;
|
|
149048
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
149049
|
+
};
|
|
149050
|
+
export type JsmTelemetryMetricFilter = {
|
|
149051
|
+
__typename?: 'JsmTelemetryMetricFilter';
|
|
149052
|
+
key: Scalars['String']['output'];
|
|
149053
|
+
operator: JsmTelemetryMetricMatcherOperator;
|
|
149054
|
+
value: Scalars['String']['output'];
|
|
149055
|
+
};
|
|
149056
|
+
export type JsmTelemetryMetricFilterInput = {
|
|
149057
|
+
key: Scalars['String']['input'];
|
|
149058
|
+
operator: JsmTelemetryMetricMatcherOperator;
|
|
149059
|
+
value: Scalars['String']['input'];
|
|
149060
|
+
};
|
|
149061
|
+
export type JsmTelemetryMetricListing = {
|
|
149062
|
+
__typename?: 'JsmTelemetryMetricListing';
|
|
149063
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
149064
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
149065
|
+
metricName: Scalars['String']['output'];
|
|
149066
|
+
type?: Maybe<JsmTelemetryMetricType>;
|
|
149067
|
+
unit?: Maybe<Scalars['String']['output']>;
|
|
149068
|
+
};
|
|
149069
|
+
export declare enum JsmTelemetryMetricMatcherOperator {
|
|
149070
|
+
Eq = "EQ"
|
|
149071
|
+
}
|
|
149072
|
+
export type JsmTelemetryMetricMetadata = {
|
|
149073
|
+
__typename?: 'JsmTelemetryMetricMetadata';
|
|
149074
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
149075
|
+
metricName: Scalars['String']['output'];
|
|
149076
|
+
type?: Maybe<JsmTelemetryMetricType>;
|
|
149077
|
+
unit?: Maybe<Scalars['String']['output']>;
|
|
149078
|
+
};
|
|
149079
|
+
export type JsmTelemetryMetricResolution = {
|
|
149080
|
+
__typename?: 'JsmTelemetryMetricResolution';
|
|
149081
|
+
stepSeconds: Scalars['Int']['output'];
|
|
149082
|
+
};
|
|
149083
|
+
export type JsmTelemetryMetricResolutionInput = {
|
|
149084
|
+
stepSeconds: Scalars['Int']['input'];
|
|
149085
|
+
};
|
|
149086
|
+
export type JsmTelemetryMetricSearchInput = {
|
|
149087
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
149088
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
149089
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
149090
|
+
telemetryConnectionId: Scalars['ID']['input'];
|
|
149091
|
+
};
|
|
149092
|
+
export type JsmTelemetryMetricSearchResponse = {
|
|
149093
|
+
__typename?: 'JsmTelemetryMetricSearchResponse';
|
|
149094
|
+
metrics: Array<JsmTelemetryMetricListing>;
|
|
149095
|
+
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
149096
|
+
};
|
|
149097
|
+
export type JsmTelemetryMetricSearchResult = {
|
|
149098
|
+
__typename?: 'JsmTelemetryMetricSearchResult';
|
|
149099
|
+
data?: Maybe<JsmTelemetryMetricSearchResponse>;
|
|
149100
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
149101
|
+
};
|
|
149102
|
+
export type JsmTelemetryMetricSeries = {
|
|
149103
|
+
__typename?: 'JsmTelemetryMetricSeries';
|
|
149104
|
+
dataPoints: Array<JsmTelemetryMetricDataPoint>;
|
|
149105
|
+
filters: Array<JsmTelemetryMetricFilter>;
|
|
149106
|
+
id: Scalars['String']['output'];
|
|
149107
|
+
};
|
|
149108
|
+
export declare enum JsmTelemetryMetricType {
|
|
149109
|
+
Gauge = "GAUGE",
|
|
149110
|
+
Histogram = "HISTOGRAM",
|
|
149111
|
+
Sum = "SUM",
|
|
149112
|
+
Summary = "SUMMARY",
|
|
149113
|
+
Unknown = "UNKNOWN"
|
|
149114
|
+
}
|
|
149115
|
+
export type JsmTelemetryProvider = {
|
|
149116
|
+
__typename?: 'JsmTelemetryProvider';
|
|
149117
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
149118
|
+
displayName: Scalars['String']['output'];
|
|
149119
|
+
iconKey?: Maybe<Scalars['String']['output']>;
|
|
149120
|
+
provider: JsmTelemetryProviderType;
|
|
149121
|
+
};
|
|
149122
|
+
export type JsmTelemetryProviderConnectionSchema = {
|
|
149123
|
+
__typename?: 'JsmTelemetryProviderConnectionSchema';
|
|
149124
|
+
provider: JsmTelemetryProviderType;
|
|
149125
|
+
schema: JsmTelemetryConnectionSchemaDefinition;
|
|
149126
|
+
uiSchema: JsmTelemetryConnectionUiSchema;
|
|
149127
|
+
};
|
|
149128
|
+
export type JsmTelemetryProviderConnectionSchemaInput = {
|
|
149129
|
+
provider: JsmTelemetryProviderType;
|
|
149130
|
+
};
|
|
149131
|
+
export type JsmTelemetryProviderConnectionSchemaResult = {
|
|
149132
|
+
__typename?: 'JsmTelemetryProviderConnectionSchemaResult';
|
|
149133
|
+
data?: Maybe<JsmTelemetryProviderConnectionSchema>;
|
|
149134
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
149135
|
+
};
|
|
149136
|
+
export type JsmTelemetryProviderContextSchemaInput = {
|
|
149137
|
+
providerType: JsmTelemetryProviderType;
|
|
149138
|
+
telemetryConnectionId: Scalars['ID']['input'];
|
|
149139
|
+
};
|
|
149140
|
+
export type JsmTelemetryProviderContextSchemaResponse = {
|
|
149141
|
+
__typename?: 'JsmTelemetryProviderContextSchemaResponse';
|
|
149142
|
+
providerType: JsmTelemetryProviderType;
|
|
149143
|
+
schema: Array<JsmTelemetryProviderSchemaParameter>;
|
|
149144
|
+
};
|
|
149145
|
+
export type JsmTelemetryProviderContextSchemaResult = {
|
|
149146
|
+
__typename?: 'JsmTelemetryProviderContextSchemaResult';
|
|
149147
|
+
data?: Maybe<JsmTelemetryProviderContextSchemaResponse>;
|
|
149148
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
149149
|
+
};
|
|
149150
|
+
export type JsmTelemetryProviderParameterValueInput = {
|
|
149151
|
+
key: Scalars['String']['input'];
|
|
149152
|
+
values: Array<Scalars['String']['input']>;
|
|
149153
|
+
};
|
|
149154
|
+
export type JsmTelemetryProviderSchemaParameter = {
|
|
149155
|
+
__typename?: 'JsmTelemetryProviderSchemaParameter';
|
|
149156
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
149157
|
+
key: Scalars['String']['output'];
|
|
149158
|
+
label: Scalars['String']['output'];
|
|
149159
|
+
maxValues?: Maybe<Scalars['Int']['output']>;
|
|
149160
|
+
multiValued: Scalars['Boolean']['output'];
|
|
149161
|
+
options: Array<JsmTelemetryProviderSchemaParameterOption>;
|
|
149162
|
+
required: Scalars['Boolean']['output'];
|
|
149163
|
+
};
|
|
149164
|
+
export type JsmTelemetryProviderSchemaParameterOption = {
|
|
149165
|
+
__typename?: 'JsmTelemetryProviderSchemaParameterOption';
|
|
149166
|
+
label: Scalars['String']['output'];
|
|
149167
|
+
value: Scalars['String']['output'];
|
|
149168
|
+
};
|
|
149169
|
+
export declare enum JsmTelemetryProviderType {
|
|
149170
|
+
Datadog = "DATADOG",
|
|
149171
|
+
Dynatrace = "DYNATRACE",
|
|
149172
|
+
NewRelic = "NEW_RELIC",
|
|
149173
|
+
SignalFx = "SIGNAL_FX"
|
|
149174
|
+
}
|
|
149175
|
+
export type JsmTelemetryRemoveDashboardChartInput = {
|
|
149176
|
+
chartId: Scalars['ID']['input'];
|
|
149177
|
+
dashboardId?: InputMaybe<Scalars['ID']['input']>;
|
|
149178
|
+
};
|
|
149179
|
+
export type JsmTelemetryRemoveDashboardChartResponseDto = {
|
|
149180
|
+
__typename?: 'JsmTelemetryRemoveDashboardChartResponseDto';
|
|
149181
|
+
dashboard: JsmTelemetryDashboardConfigResponseDto;
|
|
149182
|
+
removedChartId: Scalars['ID']['output'];
|
|
149183
|
+
};
|
|
149184
|
+
export type JsmTelemetryRemoveDashboardChartResult = {
|
|
149185
|
+
__typename?: 'JsmTelemetryRemoveDashboardChartResult';
|
|
149186
|
+
data?: Maybe<JsmTelemetryRemoveDashboardChartResponseDto>;
|
|
149187
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
149188
|
+
};
|
|
149189
|
+
export type JsmTelemetryRemoveDashboardInput = {
|
|
149190
|
+
dashboardId: Scalars['ID']['input'];
|
|
149191
|
+
};
|
|
149192
|
+
export type JsmTelemetryRemoveDashboardResponseDto = {
|
|
149193
|
+
__typename?: 'JsmTelemetryRemoveDashboardResponseDto';
|
|
149194
|
+
removedDashboardId: Scalars['ID']['output'];
|
|
149195
|
+
};
|
|
149196
|
+
export type JsmTelemetryRemoveDashboardResult = {
|
|
149197
|
+
__typename?: 'JsmTelemetryRemoveDashboardResult';
|
|
149198
|
+
data?: Maybe<JsmTelemetryRemoveDashboardResponseDto>;
|
|
149199
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
149200
|
+
};
|
|
149201
|
+
export type JsmTelemetryRuleConditionFragment = {
|
|
149202
|
+
__typename?: 'JsmTelemetryRuleConditionFragment';
|
|
149203
|
+
const?: Maybe<Scalars['String']['output']>;
|
|
149204
|
+
};
|
|
149205
|
+
export type JsmTelemetryRuleConditionSchema = {
|
|
149206
|
+
__typename?: 'JsmTelemetryRuleConditionSchema';
|
|
149207
|
+
const?: Maybe<Scalars['String']['output']>;
|
|
149208
|
+
not?: Maybe<JsmTelemetryRuleConditionFragment>;
|
|
149209
|
+
};
|
|
149210
|
+
export type JsmTelemetryServiceInfo = {
|
|
149211
|
+
__typename?: 'JsmTelemetryServiceInfo';
|
|
149212
|
+
apiStatus: Scalars['String']['output'];
|
|
149213
|
+
serviceName: Scalars['String']['output'];
|
|
149214
|
+
};
|
|
149215
|
+
export type JsmTelemetryTimeRange = {
|
|
149216
|
+
__typename?: 'JsmTelemetryTimeRange';
|
|
149217
|
+
from: Scalars['DateTime']['output'];
|
|
149218
|
+
to: Scalars['DateTime']['output'];
|
|
149219
|
+
};
|
|
149220
|
+
export type JsmTelemetryTimeRangeInput = {
|
|
149221
|
+
from: Scalars['DateTime']['input'];
|
|
149222
|
+
to: Scalars['DateTime']['input'];
|
|
149223
|
+
};
|
|
149224
|
+
export type JsmTelemetryUpdateDashboardConfigInput = {
|
|
149225
|
+
chartOrder?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
149226
|
+
dashboardId: Scalars['ID']['input'];
|
|
149227
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
149228
|
+
};
|
|
149229
|
+
export type JsmTelemetryUpdateDashboardConfigResult = {
|
|
149230
|
+
__typename?: 'JsmTelemetryUpdateDashboardConfigResult';
|
|
149231
|
+
dashboard?: Maybe<JsmTelemetryDashboardConfigResponseDto>;
|
|
149232
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
149233
|
+
};
|
|
149234
|
+
export type JsmTelemetryUpsertDashboardChartInput = {
|
|
149235
|
+
chart: JsmTelemetryDashboardChartInput;
|
|
149236
|
+
dashboardId?: InputMaybe<Scalars['ID']['input']>;
|
|
149237
|
+
};
|
|
149238
|
+
export type JsmTelemetryUpsertDashboardChartResponse = {
|
|
149239
|
+
__typename?: 'JsmTelemetryUpsertDashboardChartResponse';
|
|
149240
|
+
data?: Maybe<JsmTelemetryUpsertDashboardChartResponseDto>;
|
|
149241
|
+
error?: Maybe<JsmTelemetryDomainError>;
|
|
149242
|
+
};
|
|
149243
|
+
export type JsmTelemetryUpsertDashboardChartResponseDto = {
|
|
149244
|
+
__typename?: 'JsmTelemetryUpsertDashboardChartResponseDto';
|
|
149245
|
+
chart: JsmTelemetryDashboardChartResult;
|
|
149246
|
+
dashboard: JsmTelemetryDashboardConfigResponseDto;
|
|
149247
|
+
};
|
|
149248
|
+
export type JsmTelemetryValidateTelemetryConnectionInput = {
|
|
149249
|
+
id: Scalars['ID']['input'];
|
|
149250
|
+
};
|
|
149251
|
+
export type JsmTelemetryValidateTelemetryConnectionPayload = {
|
|
149252
|
+
__typename?: 'JsmTelemetryValidateTelemetryConnectionPayload';
|
|
149253
|
+
connection: JsmTelemetryConnection;
|
|
149254
|
+
status: JsmTelemetryConnectionStatus;
|
|
149255
|
+
};
|
|
148075
149256
|
export type JsonContentProperty = {
|
|
148076
149257
|
__typename?: 'JsonContentProperty';
|
|
148077
149258
|
content?: Maybe<Content>;
|
|
@@ -149321,6 +150502,12 @@ export type KnowledgeBaseConfluenceFolderSuggestion = KnowledgeBaseSourceSuggest
|
|
|
149321
150502
|
sourceLocationName?: Maybe<Scalars['String']['output']>;
|
|
149322
150503
|
sourceName?: Maybe<Scalars['String']['output']>;
|
|
149323
150504
|
};
|
|
150505
|
+
export type KnowledgeBaseConfluencePageSuggestion = KnowledgeBaseSourceSuggestionInterface & {
|
|
150506
|
+
__typename?: 'KnowledgeBaseConfluencePageSuggestion';
|
|
150507
|
+
sourceARI?: Maybe<Scalars['ID']['output']>;
|
|
150508
|
+
sourceLocationName?: Maybe<Scalars['String']['output']>;
|
|
150509
|
+
sourceName?: Maybe<Scalars['String']['output']>;
|
|
150510
|
+
};
|
|
149324
150511
|
export type KnowledgeBaseConfluenceSpaceSuggestions = KnowledgeBaseSourceSuggestionInterface & {
|
|
149325
150512
|
__typename?: 'KnowledgeBaseConfluenceSpaceSuggestions';
|
|
149326
150513
|
sourceARI?: Maybe<Scalars['ID']['output']>;
|
|
@@ -149354,6 +150541,7 @@ export type KnowledgeBaseHealthDashboard = {
|
|
|
149354
150541
|
articleCount?: Maybe<Scalars['Int']['output']>;
|
|
149355
150542
|
articleCountByMonth?: Maybe<Array<KnowledgeBaseMonthlyArticleCount>>;
|
|
149356
150543
|
articleViewCount?: Maybe<Scalars['Int']['output']>;
|
|
150544
|
+
articleViewCountByMonth?: Maybe<Array<KnowledgeBaseMonthlyViewCount>>;
|
|
149357
150545
|
errors: Array<KnowledgeBaseHealthDashboardMetricError>;
|
|
149358
150546
|
externalArticleCount?: Maybe<Scalars['Int']['output']>;
|
|
149359
150547
|
internalArticleCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -149362,7 +150550,8 @@ export type KnowledgeBaseHealthDashboard = {
|
|
|
149362
150550
|
export declare enum KnowledgeBaseHealthDashboardMetric {
|
|
149363
150551
|
ArticleCount = "ARTICLE_COUNT",
|
|
149364
150552
|
ArticleCountByMonth = "ARTICLE_COUNT_BY_MONTH",
|
|
149365
|
-
ArticleViewCount = "ARTICLE_VIEW_COUNT"
|
|
150553
|
+
ArticleViewCount = "ARTICLE_VIEW_COUNT",
|
|
150554
|
+
ArticleViewCountByMonth = "ARTICLE_VIEW_COUNT_BY_MONTH"
|
|
149366
150555
|
}
|
|
149367
150556
|
export type KnowledgeBaseHealthDashboardMetricError = {
|
|
149368
150557
|
__typename?: 'KnowledgeBaseHealthDashboardMetricError';
|
|
@@ -149423,11 +150612,23 @@ export type KnowledgeBaseLinkedSources = {
|
|
|
149423
150612
|
linkedSources?: Maybe<Array<KnowledgeBaseLinkedSource>>;
|
|
149424
150613
|
};
|
|
149425
150614
|
export type KnowledgeBaseLinkedSourcesResponse = KnowledgeBaseLinkedSources | QueryError;
|
|
150615
|
+
export type KnowledgeBaseMonthlyActiveUsers = {
|
|
150616
|
+
__typename?: 'KnowledgeBaseMonthlyActiveUsers';
|
|
150617
|
+
activeUsers: Scalars['Int']['output'];
|
|
150618
|
+
changePercentage?: Maybe<Scalars['Float']['output']>;
|
|
150619
|
+
projectIdentifier: Scalars['String']['output'];
|
|
150620
|
+
};
|
|
150621
|
+
export type KnowledgeBaseMonthlyActiveUsersResponse = KnowledgeBaseMonthlyActiveUsers | QueryError;
|
|
149426
150622
|
export type KnowledgeBaseMonthlyArticleCount = {
|
|
149427
150623
|
__typename?: 'KnowledgeBaseMonthlyArticleCount';
|
|
149428
150624
|
count: Scalars['Int']['output'];
|
|
149429
150625
|
yearMonth: Scalars['String']['output'];
|
|
149430
150626
|
};
|
|
150627
|
+
export type KnowledgeBaseMonthlyViewCount = {
|
|
150628
|
+
__typename?: 'KnowledgeBaseMonthlyViewCount';
|
|
150629
|
+
count: Scalars['Int']['output'];
|
|
150630
|
+
yearMonth: Scalars['String']['output'];
|
|
150631
|
+
};
|
|
149431
150632
|
export type KnowledgeBaseMutationApi = {
|
|
149432
150633
|
__typename?: 'KnowledgeBaseMutationApi';
|
|
149433
150634
|
linkKnowledgeBaseSource?: Maybe<KnowledgeBaseLinkResponse>;
|
|
@@ -149517,7 +150718,7 @@ export type KnowledgeBaseSourcePermissionsResponse = {
|
|
|
149517
150718
|
editPermission?: Maybe<KnowledgeBaseSourcePermissionDetailV2>;
|
|
149518
150719
|
viewPermission?: Maybe<KnowledgeBaseSourcePermissionDetailV2>;
|
|
149519
150720
|
};
|
|
149520
|
-
export type KnowledgeBaseSourceSuggestion = KnowledgeBaseConfluenceFolderSuggestion | KnowledgeBaseConfluenceSpaceSuggestions | KnowledgeBaseThirdPartySuggestion;
|
|
150721
|
+
export type KnowledgeBaseSourceSuggestion = KnowledgeBaseConfluenceFolderSuggestion | KnowledgeBaseConfluencePageSuggestion | KnowledgeBaseConfluenceSpaceSuggestions | KnowledgeBaseThirdPartySuggestion;
|
|
149521
150722
|
export type KnowledgeBaseSourceSuggestionInterface = {
|
|
149522
150723
|
sourceARI?: Maybe<Scalars['ID']['output']>;
|
|
149523
150724
|
sourceName?: Maybe<Scalars['String']['output']>;
|
|
@@ -151290,6 +152491,12 @@ export declare enum LoomSpacePrivacyType {
|
|
|
151290
152491
|
Private = "private",
|
|
151291
152492
|
Workspace = "workspace"
|
|
151292
152493
|
}
|
|
152494
|
+
export type LoomTag = {
|
|
152495
|
+
__typename?: 'LoomTag';
|
|
152496
|
+
tag: Scalars['String']['output'];
|
|
152497
|
+
url: Scalars['String']['output'];
|
|
152498
|
+
videoCount: Scalars['Int']['output'];
|
|
152499
|
+
};
|
|
151293
152500
|
export type LoomToken = {
|
|
151294
152501
|
__typename?: 'LoomToken';
|
|
151295
152502
|
token: Scalars['String']['output'];
|
|
@@ -155522,6 +156729,7 @@ export type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
|
155522
156729
|
id: Scalars['ID']['input'];
|
|
155523
156730
|
isGlobalAppInstall?: InputMaybe<Scalars['Boolean']['input']>;
|
|
155524
156731
|
isUpmInstall?: InputMaybe<Scalars['Boolean']['input']>;
|
|
156732
|
+
offeringId?: InputMaybe<Scalars['String']['input']>;
|
|
155525
156733
|
orderId?: InputMaybe<Scalars['ID']['input']>;
|
|
155526
156734
|
target?: InputMaybe<MarketplaceStoreInstallAppTargetInput>;
|
|
155527
156735
|
txaAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -164391,20 +165599,16 @@ export type MissionControlOverview = {
|
|
|
164391
165599
|
metricOrder: Array<InputMaybe<Scalars['String']['input']>>;
|
|
164392
165600
|
spaceId?: InputMaybe<Scalars['Long']['input']>;
|
|
164393
165601
|
};
|
|
164394
|
-
export type Mitigation = {
|
|
165602
|
+
export type Mitigation = Node & {
|
|
164395
165603
|
__typename?: 'Mitigation';
|
|
164396
|
-
createdAt
|
|
164397
|
-
|
|
164398
|
-
|
|
164399
|
-
|
|
164400
|
-
|
|
164401
|
-
|
|
164402
|
-
scopeType: MitigationScopeType;
|
|
165604
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
165605
|
+
id: Scalars['ID']['output'];
|
|
165606
|
+
scopeId: Scalars['String']['output'];
|
|
165607
|
+
scopeType?: Maybe<MitigationScopeType>;
|
|
165608
|
+
state: MitigationGenerationState;
|
|
165609
|
+
triggeredBy?: Maybe<User>;
|
|
164403
165610
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
164404
|
-
version
|
|
164405
|
-
};
|
|
164406
|
-
export type MitigationIndicatorsArgs = {
|
|
164407
|
-
includeRejected?: InputMaybe<Scalars['Boolean']['input']>;
|
|
165611
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
164408
165612
|
};
|
|
164409
165613
|
export declare enum MitigationDocumentType {
|
|
164410
165614
|
Confluence = "CONFLUENCE",
|
|
@@ -164412,23 +165616,40 @@ export declare enum MitigationDocumentType {
|
|
|
164412
165616
|
Playbook = "PLAYBOOK",
|
|
164413
165617
|
Sharepoint = "SHAREPOINT"
|
|
164414
165618
|
}
|
|
165619
|
+
export type MitigationGenerationCompleted = {
|
|
165620
|
+
__typename?: 'MitigationGenerationCompleted';
|
|
165621
|
+
indicators?: Maybe<Array<MitigationIndicator>>;
|
|
165622
|
+
};
|
|
165623
|
+
export type MitigationGenerationCompletedIndicatorsArgs = {
|
|
165624
|
+
includeRejected?: InputMaybe<Scalars['Boolean']['input']>;
|
|
165625
|
+
};
|
|
165626
|
+
export type MitigationGenerationFailed = {
|
|
165627
|
+
__typename?: 'MitigationGenerationFailed';
|
|
165628
|
+
progressSteps?: Maybe<Array<MitigationProgressStep>>;
|
|
165629
|
+
};
|
|
165630
|
+
export type MitigationGenerationProgress = {
|
|
165631
|
+
__typename?: 'MitigationGenerationProgress';
|
|
165632
|
+
progressSteps?: Maybe<Array<MitigationProgressStep>>;
|
|
165633
|
+
};
|
|
165634
|
+
export type MitigationGenerationState = MitigationGenerationCompleted | MitigationGenerationFailed | MitigationGenerationProgress;
|
|
164415
165635
|
export declare enum MitigationHypothesisType {
|
|
164416
165636
|
FfChange = "FF_CHANGE",
|
|
164417
165637
|
PrChange = "PR_CHANGE",
|
|
164418
165638
|
Unknown = "UNKNOWN"
|
|
164419
165639
|
}
|
|
164420
|
-
export type MitigationIndicator = {
|
|
165640
|
+
export type MitigationIndicator = Node & {
|
|
164421
165641
|
__typename?: 'MitigationIndicator';
|
|
164422
165642
|
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
164423
|
-
createdAt
|
|
165643
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
164424
165644
|
details?: Maybe<MitigationIndicatorDetails>;
|
|
165645
|
+
id: Scalars['ID']['output'];
|
|
164425
165646
|
indicatorId: Scalars['ID']['output'];
|
|
164426
|
-
indicatorType
|
|
165647
|
+
indicatorType?: Maybe<MitigationIndicatorType>;
|
|
164427
165648
|
mitigationId: Scalars['ID']['output'];
|
|
164428
165649
|
plans?: Maybe<Array<MitigationPlan>>;
|
|
164429
|
-
rejected
|
|
165650
|
+
rejected?: Maybe<Scalars['Boolean']['output']>;
|
|
164430
165651
|
rejectedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
164431
|
-
|
|
165652
|
+
rejectedBy?: Maybe<User>;
|
|
164432
165653
|
rejectionReason?: Maybe<IndicatorRejectionReason>;
|
|
164433
165654
|
rejectionSource?: Maybe<MitigationRejectionSource>;
|
|
164434
165655
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -164443,27 +165664,28 @@ export declare enum MitigationIndicatorType {
|
|
|
164443
165664
|
Hypothesis = "HYPOTHESIS",
|
|
164444
165665
|
Symptom = "SYMPTOM"
|
|
164445
165666
|
}
|
|
165667
|
+
export type MitigationLookupResult = Mitigation | QueryError;
|
|
164446
165668
|
export declare enum MitigationPipelineStep {
|
|
164447
165669
|
IndicatorDeduplication = "INDICATOR_DEDUPLICATION",
|
|
164448
165670
|
IndicatorExtraction = "INDICATOR_EXTRACTION",
|
|
164449
165671
|
PlanGeneration = "PLAN_GENERATION"
|
|
164450
165672
|
}
|
|
164451
|
-
export type MitigationPlan = {
|
|
165673
|
+
export type MitigationPlan = Node & {
|
|
164452
165674
|
__typename?: 'MitigationPlan';
|
|
164453
|
-
createdAt
|
|
165675
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
165676
|
+
id: Scalars['ID']['output'];
|
|
164454
165677
|
indicatorId: Scalars['ID']['output'];
|
|
164455
165678
|
mitigationId: Scalars['ID']['output'];
|
|
164456
|
-
|
|
164457
|
-
planSources: Array<PlanSource>;
|
|
165679
|
+
planSources?: Maybe<Array<PlanSource>>;
|
|
164458
165680
|
playbook?: Maybe<JiraPlaybook>;
|
|
164459
|
-
rejected
|
|
165681
|
+
rejected?: Maybe<Scalars['Boolean']['output']>;
|
|
164460
165682
|
rejectedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
164461
|
-
|
|
165683
|
+
rejectedBy?: Maybe<User>;
|
|
164462
165684
|
rejectionReason?: Maybe<PlanRejectionReason>;
|
|
164463
165685
|
rejectionSource?: Maybe<MitigationRejectionSource>;
|
|
164464
165686
|
summary?: Maybe<Scalars['String']['output']>;
|
|
164465
|
-
title
|
|
164466
|
-
updatedAt
|
|
165687
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
165688
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
164467
165689
|
};
|
|
164468
165690
|
export type MitigationProgressStep = {
|
|
164469
165691
|
__typename?: 'MitigationProgressStep';
|
|
@@ -164477,7 +165699,6 @@ export declare enum MitigationRejectionSource {
|
|
|
164477
165699
|
Human = "HUMAN",
|
|
164478
165700
|
System = "SYSTEM"
|
|
164479
165701
|
}
|
|
164480
|
-
export type MitigationResult = Mitigation | QueryError;
|
|
164481
165702
|
export declare enum MitigationScopeType {
|
|
164482
165703
|
Icc = "ICC"
|
|
164483
165704
|
}
|
|
@@ -164593,6 +165814,7 @@ export type Mutation = {
|
|
|
164593
165814
|
admin_scimRuleUpdate?: Maybe<AdminScimRuleMutationPayload>;
|
|
164594
165815
|
admin_unitCreate?: Maybe<AdminUnitCreatePayload>;
|
|
164595
165816
|
admin_unitRename?: Maybe<AdminUnitRenamePayload>;
|
|
165817
|
+
admin_unitUpdateDescription?: Maybe<AdminUnitUpdateDescriptionPayload>;
|
|
164596
165818
|
admin_unlinkScimUser?: Maybe<AdminUnlinkScimUserResponsePayload>;
|
|
164597
165819
|
admin_updateAiPolicy?: Maybe<AdminUpdateAiPolicyResponsePayload>;
|
|
164598
165820
|
admin_updateAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
@@ -164601,6 +165823,7 @@ export type Mutation = {
|
|
|
164601
165823
|
agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
|
|
164602
165824
|
agentStudio_cancelBatchEvaluationJobRun?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
164603
165825
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
165826
|
+
agentStudio_createAgentFromTemplate?: Maybe<AgentStudioCreateAgentPayload>;
|
|
164604
165827
|
agentStudio_createAndRunBatchEvaluationJob?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
164605
165828
|
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
164606
165829
|
agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
|
|
@@ -165620,6 +166843,7 @@ export type Mutation = {
|
|
|
165620
166843
|
jira_setBoardViewColumnState?: Maybe<JiraSetBoardViewColumnStatePayload>;
|
|
165621
166844
|
jira_setBoardViewColumnsOrder?: Maybe<JiraSetBoardViewColumnsOrderPayload>;
|
|
165622
166845
|
jira_setBoardViewCompletedIssueSearchCutOff?: Maybe<JiraSetBoardViewCompletedIssueSearchCutOffPayload>;
|
|
166846
|
+
jira_setBoardViewDensity?: Maybe<JiraSetBoardViewDensityPayload>;
|
|
165623
166847
|
jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
|
|
165624
166848
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
165625
166849
|
jira_setBoardViewStatusColumnIssueCountLimit?: Maybe<JiraSetBoardViewStatusColumnIssueCountLimitPayload>;
|
|
@@ -165708,6 +166932,13 @@ export type Mutation = {
|
|
|
165708
166932
|
jsmConversation_createInvite?: Maybe<JsmConversationCreateInvitePayload>;
|
|
165709
166933
|
jsmConversation_rejectInvite?: Maybe<JsmConversationRejectInvitePayload>;
|
|
165710
166934
|
jsmConversation_updateSettings?: Maybe<JsmConversationSettingsPayload>;
|
|
166935
|
+
jsmTelemetry_createTelemetryConnection?: Maybe<JsmTelemetryCreateTelemetryConnectionPayload>;
|
|
166936
|
+
jsmTelemetry_deleteTelemetryConnection?: Maybe<Scalars['Boolean']['output']>;
|
|
166937
|
+
jsmTelemetry_removeDashboard?: Maybe<JsmTelemetryRemoveDashboardResult>;
|
|
166938
|
+
jsmTelemetry_removeDashboardChart?: Maybe<JsmTelemetryRemoveDashboardChartResult>;
|
|
166939
|
+
jsmTelemetry_updateDashboardConfig?: Maybe<JsmTelemetryUpdateDashboardConfigResult>;
|
|
166940
|
+
jsmTelemetry_upsertDashboardChart?: Maybe<JsmTelemetryUpsertDashboardChartResponse>;
|
|
166941
|
+
jsmTelemetry_validateTelemetryConnection?: Maybe<JsmTelemetryValidateTelemetryConnectionPayload>;
|
|
165711
166942
|
jsw?: Maybe<JswMutation>;
|
|
165712
166943
|
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
165713
166944
|
kitsune_createCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
@@ -165806,13 +167037,13 @@ export type Mutation = {
|
|
|
165806
167037
|
playbook_createJiraPlaybookLabel?: Maybe<CreateJiraPlaybookLabelPayload>;
|
|
165807
167038
|
playbook_createJiraPlaybookStepRun?: Maybe<CreateJiraPlaybookStepRunPayload>;
|
|
165808
167039
|
playbook_deleteJiraPlaybook?: Maybe<DeleteJiraPlaybookPayload>;
|
|
165809
|
-
playbook_rejectIndicator?: Maybe<
|
|
165810
|
-
playbook_rejectPlan?: Maybe<
|
|
167040
|
+
playbook_rejectIndicator?: Maybe<RejectIndicatorPayload>;
|
|
167041
|
+
playbook_rejectPlan?: Maybe<RejectPlanPayload>;
|
|
165811
167042
|
playbook_toggleChecklistItem?: Maybe<ToggleChecklistItemPayload>;
|
|
165812
167043
|
playbook_triggerMitigation?: Maybe<TriggerMitigationPayload>;
|
|
165813
167044
|
playbook_unassignJiraPlaybookLabelFromJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
|
|
165814
|
-
playbook_unrejectIndicator?: Maybe<
|
|
165815
|
-
playbook_unrejectPlan?: Maybe<
|
|
167045
|
+
playbook_unrejectIndicator?: Maybe<RejectIndicatorPayload>;
|
|
167046
|
+
playbook_unrejectPlan?: Maybe<RejectPlanPayload>;
|
|
165816
167047
|
playbook_updateJiraPlaybook?: Maybe<UpdateJiraPlaybookPayload>;
|
|
165817
167048
|
playbook_updateJiraPlaybookLabel?: Maybe<UpdateJiraPlaybookLabelPayload>;
|
|
165818
167049
|
playbook_updateJiraPlaybookState?: Maybe<UpdateJiraPlaybookStatePayload>;
|
|
@@ -165862,12 +167093,14 @@ export type Mutation = {
|
|
|
165862
167093
|
projects_removeTextCustomFieldValue?: Maybe<TownsquareProjectsRemoveTextCustomFieldValuePayload>;
|
|
165863
167094
|
projects_removeUserCustomFieldValue?: Maybe<TownsquareProjectsRemoveUserCustomFieldValuePayload>;
|
|
165864
167095
|
projects_revokeAccess?: Maybe<TownsquareProjectRevokeAccessPayload>;
|
|
167096
|
+
projects_setDefaultAccessLevel?: Maybe<TownsquareProjectsSetDefaultAccessLevelPayload>;
|
|
165865
167097
|
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
165866
167098
|
projects_setUserWatchingTeam?: Maybe<TownsquareProjectsSetUserWatchingTeamPayload>;
|
|
165867
167099
|
projects_setWatchingProject?: Maybe<TownsquareProjectsSetWatchingProjectPayload>;
|
|
165868
167100
|
projects_shareProject?: Maybe<TownsquareProjectsShareProjectPayload>;
|
|
165869
167101
|
projects_shareUpdate?: Maybe<TownsquareProjectsShareUpdatePayload>;
|
|
165870
167102
|
projects_updateAppPermissionPolicies?: Maybe<TownsquareUpdateProjectsAppPermissionPoliciesPayload>;
|
|
167103
|
+
provisionDemoSite?: Maybe<ProvisionDemoSiteResponse>;
|
|
165871
167104
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
165872
167105
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
165873
167106
|
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
@@ -165879,6 +167112,7 @@ export type Mutation = {
|
|
|
165879
167112
|
radar_deleteCustomFields?: Maybe<RadarMutationResponse>;
|
|
165880
167113
|
radar_deleteFocusAreaProposalChanges?: Maybe<RadarMutationResponse>;
|
|
165881
167114
|
radar_deleteLaborCostEstimateData?: Maybe<RadarDeleteLaborCostEstimateDataResponse>;
|
|
167115
|
+
radar_deleteMetricSettings?: Maybe<Array<RadarMetricSettings>>;
|
|
165882
167116
|
radar_deleteRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
165883
167117
|
radar_deleteView?: Maybe<RadarView>;
|
|
165884
167118
|
radar_recordEntityViewed?: Maybe<RadarRecordEntityViewedResponse>;
|
|
@@ -166232,6 +167466,7 @@ export type MutationAdmin_CreateInvitePolicyArgs = {
|
|
|
166232
167466
|
orgId: Scalars['ID']['input'];
|
|
166233
167467
|
};
|
|
166234
167468
|
export type MutationAdmin_CreateOutboundAuthServiceArgs = {
|
|
167469
|
+
connectorSyncType?: InputMaybe<Scalars['String']['input']>;
|
|
166235
167470
|
datasourceId: Scalars['ID']['input'];
|
|
166236
167471
|
orgId: Scalars['ID']['input'];
|
|
166237
167472
|
properties: Array<AdminConnectorPropertyInput>;
|
|
@@ -166296,6 +167531,9 @@ export type MutationAdmin_UnitCreateArgs = {
|
|
|
166296
167531
|
export type MutationAdmin_UnitRenameArgs = {
|
|
166297
167532
|
input: AdminUnitRenameInput;
|
|
166298
167533
|
};
|
|
167534
|
+
export type MutationAdmin_UnitUpdateDescriptionArgs = {
|
|
167535
|
+
input: AdminUnitUpdateDescriptionInput;
|
|
167536
|
+
};
|
|
166299
167537
|
export type MutationAdmin_UnlinkScimUserArgs = {
|
|
166300
167538
|
orgId: Scalars['ID']['input'];
|
|
166301
167539
|
scimDirectoryId: Scalars['ID']['input'];
|
|
@@ -166335,6 +167573,10 @@ export type MutationAgentStudio_CreateAgentArgs = {
|
|
|
166335
167573
|
cloudId: Scalars['String']['input'];
|
|
166336
167574
|
input: AgentStudioCreateAgentInput;
|
|
166337
167575
|
};
|
|
167576
|
+
export type MutationAgentStudio_CreateAgentFromTemplateArgs = {
|
|
167577
|
+
cloudId: Scalars['String']['input'];
|
|
167578
|
+
templateId: Scalars['ID']['input'];
|
|
167579
|
+
};
|
|
166338
167580
|
export type MutationAgentStudio_CreateAndRunBatchEvaluationJobArgs = {
|
|
166339
167581
|
cloudId: Scalars['String']['input'];
|
|
166340
167582
|
input: AgentStudioCreateBatchEvaluationJobInput;
|
|
@@ -169892,6 +171134,9 @@ export type MutationJira_SetBoardViewColumnsOrderArgs = {
|
|
|
169892
171134
|
export type MutationJira_SetBoardViewCompletedIssueSearchCutOffArgs = {
|
|
169893
171135
|
input: JiraSetBoardViewCompletedIssueSearchCutOffInput;
|
|
169894
171136
|
};
|
|
171137
|
+
export type MutationJira_SetBoardViewDensityArgs = {
|
|
171138
|
+
input: JiraSetBoardViewDensityInput;
|
|
171139
|
+
};
|
|
169895
171140
|
export type MutationJira_SetBoardViewFilterArgs = {
|
|
169896
171141
|
input: JiraSetBoardViewFilterInput;
|
|
169897
171142
|
};
|
|
@@ -170188,6 +171433,38 @@ export type MutationJsmConversation_RejectInviteArgs = {
|
|
|
170188
171433
|
export type MutationJsmConversation_UpdateSettingsArgs = {
|
|
170189
171434
|
input: JsmConversationSettingsInput;
|
|
170190
171435
|
};
|
|
171436
|
+
export type MutationJsmTelemetry_CreateTelemetryConnectionArgs = {
|
|
171437
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171438
|
+
input: JsmTelemetryCreateTelemetryConnectionInput;
|
|
171439
|
+
};
|
|
171440
|
+
export type MutationJsmTelemetry_DeleteTelemetryConnectionArgs = {
|
|
171441
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171442
|
+
input: JsmTelemetryDeleteTelemetryConnectionInput;
|
|
171443
|
+
};
|
|
171444
|
+
export type MutationJsmTelemetry_RemoveDashboardArgs = {
|
|
171445
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171446
|
+
incidentId: Scalars['ID']['input'];
|
|
171447
|
+
input: JsmTelemetryRemoveDashboardInput;
|
|
171448
|
+
};
|
|
171449
|
+
export type MutationJsmTelemetry_RemoveDashboardChartArgs = {
|
|
171450
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171451
|
+
incidentId: Scalars['ID']['input'];
|
|
171452
|
+
input: JsmTelemetryRemoveDashboardChartInput;
|
|
171453
|
+
};
|
|
171454
|
+
export type MutationJsmTelemetry_UpdateDashboardConfigArgs = {
|
|
171455
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171456
|
+
incidentId: Scalars['ID']['input'];
|
|
171457
|
+
input: JsmTelemetryUpdateDashboardConfigInput;
|
|
171458
|
+
};
|
|
171459
|
+
export type MutationJsmTelemetry_UpsertDashboardChartArgs = {
|
|
171460
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171461
|
+
incidentId: Scalars['ID']['input'];
|
|
171462
|
+
input: JsmTelemetryUpsertDashboardChartInput;
|
|
171463
|
+
};
|
|
171464
|
+
export type MutationJsmTelemetry_ValidateTelemetryConnectionArgs = {
|
|
171465
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
171466
|
+
input: JsmTelemetryValidateTelemetryConnectionInput;
|
|
171467
|
+
};
|
|
170191
171468
|
export type MutationKitsune_CreateCustomerArgs = {
|
|
170192
171469
|
email?: InputMaybe<Scalars['String']['input']>;
|
|
170193
171470
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -170214,7 +171491,8 @@ export type MutationKitsune_CreateFeedbackArgs = {
|
|
|
170214
171491
|
export type MutationKitsune_CreateFieldArgs = {
|
|
170215
171492
|
entityTypes: Array<KitsuneEntityType>;
|
|
170216
171493
|
name: Scalars['String']['input'];
|
|
170217
|
-
|
|
171494
|
+
options?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
171495
|
+
valueType: KitsuneFieldValueType;
|
|
170218
171496
|
workspaceAri: Scalars['ID']['input'];
|
|
170219
171497
|
};
|
|
170220
171498
|
export type MutationKitsune_CreateInsightArgs = {
|
|
@@ -170551,10 +171829,10 @@ export type MutationPlaybook_UnassignJiraPlaybookLabelFromJiraPlaybookArgs = {
|
|
|
170551
171829
|
playbookId: Scalars['ID']['input'];
|
|
170552
171830
|
};
|
|
170553
171831
|
export type MutationPlaybook_UnrejectIndicatorArgs = {
|
|
170554
|
-
|
|
171832
|
+
id: Scalars['ID']['input'];
|
|
170555
171833
|
};
|
|
170556
171834
|
export type MutationPlaybook_UnrejectPlanArgs = {
|
|
170557
|
-
|
|
171835
|
+
id: Scalars['ID']['input'];
|
|
170558
171836
|
};
|
|
170559
171837
|
export type MutationPlaybook_UpdateJiraPlaybookArgs = {
|
|
170560
171838
|
input: UpdateJiraPlaybookInput;
|
|
@@ -170703,6 +171981,9 @@ export type MutationProjects_RemoveUserCustomFieldValueArgs = {
|
|
|
170703
171981
|
export type MutationProjects_RevokeAccessArgs = {
|
|
170704
171982
|
input: TownsquareProjectRevokeAccessInput;
|
|
170705
171983
|
};
|
|
171984
|
+
export type MutationProjects_SetDefaultAccessLevelArgs = {
|
|
171985
|
+
input: TownsquareProjectsSetDefaultAccessLevelInput;
|
|
171986
|
+
};
|
|
170706
171987
|
export type MutationProjects_SetDependencyArgs = {
|
|
170707
171988
|
input?: InputMaybe<TownsquareProjectsSetDependencyInput>;
|
|
170708
171989
|
};
|
|
@@ -170766,6 +172047,10 @@ export type MutationRadar_DeleteLaborCostEstimateDataArgs = {
|
|
|
170766
172047
|
cloudId: Scalars['ID']['input'];
|
|
170767
172048
|
input: RadarDeleteLaborCostEstimateDataInput;
|
|
170768
172049
|
};
|
|
172050
|
+
export type MutationRadar_DeleteMetricSettingsArgs = {
|
|
172051
|
+
cloudId: Scalars['ID']['input'];
|
|
172052
|
+
input: Array<RadarDeleteMetricSettingsInput>;
|
|
172053
|
+
};
|
|
170769
172054
|
export type MutationRadar_DeleteRoleAssignmentArgs = {
|
|
170770
172055
|
cloudId: Scalars['ID']['input'];
|
|
170771
172056
|
input: RadarRoleAssignmentRequest;
|
|
@@ -173497,27 +174782,16 @@ export declare enum PlanModeDestination {
|
|
|
173497
174782
|
Board = "BOARD",
|
|
173498
174783
|
Sprint = "SPRINT"
|
|
173499
174784
|
}
|
|
173500
|
-
export type PlanRejectionPayload = Payload & {
|
|
173501
|
-
__typename?: 'PlanRejectionPayload';
|
|
173502
|
-
errors?: Maybe<Array<MutationError>>;
|
|
173503
|
-
plan?: Maybe<MitigationPlan>;
|
|
173504
|
-
success: Scalars['Boolean']['output'];
|
|
173505
|
-
};
|
|
173506
174785
|
export declare enum PlanRejectionReason {
|
|
173507
|
-
Incorrect = "INCORRECT",
|
|
173508
|
-
LowScore = "LOW_SCORE",
|
|
173509
174786
|
NotHelpful = "NOT_HELPFUL",
|
|
173510
|
-
Other = "OTHER"
|
|
173511
|
-
Outdated = "OUTDATED"
|
|
174787
|
+
Other = "OTHER"
|
|
173512
174788
|
}
|
|
173513
174789
|
export type PlanSource = {
|
|
173514
174790
|
__typename?: 'PlanSource';
|
|
173515
|
-
documentType
|
|
173516
|
-
|
|
173517
|
-
|
|
173518
|
-
|
|
173519
|
-
title: Scalars['String']['output'];
|
|
173520
|
-
url: Scalars['String']['output'];
|
|
174791
|
+
documentType?: Maybe<MitigationDocumentType>;
|
|
174792
|
+
sourceId: Scalars['String']['output'];
|
|
174793
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
174794
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
173521
174795
|
};
|
|
173522
174796
|
export declare enum Platform {
|
|
173523
174797
|
Android = "ANDROID",
|
|
@@ -173756,7 +175030,6 @@ export type PolarisPlay = {
|
|
|
173756
175030
|
contribution?: Maybe<PolarisPlayContribution>;
|
|
173757
175031
|
contributions?: Maybe<Array<PolarisPlayContribution>>;
|
|
173758
175032
|
contributionsBySubject?: Maybe<Array<PolarisPlayContribution>>;
|
|
173759
|
-
fields?: Maybe<Array<PolarisIdeaPlayField>>;
|
|
173760
175033
|
id: Scalars['ID']['output'];
|
|
173761
175034
|
kind: PolarisPlayKind;
|
|
173762
175035
|
label: Scalars['String']['output'];
|
|
@@ -174492,6 +175765,14 @@ export type Properties = {
|
|
|
174492
175765
|
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
174493
175766
|
updatedValues?: Maybe<Scalars['String']['output']>;
|
|
174494
175767
|
};
|
|
175768
|
+
export type ProvisionDemoSiteResponse = {
|
|
175769
|
+
__typename?: 'ProvisionDemoSiteResponse';
|
|
175770
|
+
cloudName?: Maybe<Scalars['String']['output']>;
|
|
175771
|
+
errors?: Maybe<Array<MutationError>>;
|
|
175772
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
175773
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
175774
|
+
xnId?: Maybe<Scalars['String']['output']>;
|
|
175775
|
+
};
|
|
174495
175776
|
export type PublicLink = {
|
|
174496
175777
|
__typename?: 'PublicLink';
|
|
174497
175778
|
accessType?: Maybe<ConfluenceShareableLinkAccessType>;
|
|
@@ -174814,6 +176095,7 @@ export type Query = {
|
|
|
174814
176095
|
admin_auditLogEvents?: Maybe<AdminAuditLogEventConnection>;
|
|
174815
176096
|
admin_auditLogProductMapping?: Maybe<Array<AdminAuditLogProductMapping>>;
|
|
174816
176097
|
admin_auditLogUsers?: Maybe<AdminUserConnection>;
|
|
176098
|
+
admin_breachingConnectionsForUnit?: Maybe<AdminBreachingConnectionsConnection>;
|
|
174817
176099
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
174818
176100
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
174819
176101
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
@@ -174881,9 +176163,11 @@ export type Query = {
|
|
|
174881
176163
|
agentStudio_getAgentUsePermissionSettings?: Maybe<AgentStudioAgentUsePermissionSettings>;
|
|
174882
176164
|
agentStudio_getAgentVersions?: Maybe<AgentStudioAgentVersionsResult>;
|
|
174883
176165
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
176166
|
+
agentStudio_getAllTemplates?: Maybe<AgentStudioTemplateListResult>;
|
|
174884
176167
|
agentStudio_getAvailableExecutionConfigs?: Maybe<AgentStudioAvailableExecutionConfigsResult>;
|
|
174885
176168
|
agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
|
|
174886
176169
|
agentStudio_getCreateAgentPermissions?: Maybe<AgentStudioAgentCreatePermissionsConnection>;
|
|
176170
|
+
agentStudio_getTemplate?: Maybe<AgentStudioTemplateResult>;
|
|
174887
176171
|
agentStudio_getToolConfigurationSchema?: Maybe<Array<AgentStudioToolConfigurationSchema>>;
|
|
174888
176172
|
agentStudio_getToolsByIdAndSource?: Maybe<Array<AgentStudioTool>>;
|
|
174889
176173
|
agentStudio_getWidgetContainersByAgentId?: Maybe<AgentStudioWidgetContainersByAgentIdResult>;
|
|
@@ -174955,6 +176239,7 @@ export type Query = {
|
|
|
174955
176239
|
agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
|
|
174956
176240
|
agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
|
|
174957
176241
|
agentWorkspace_teamsMappedToProject?: Maybe<AgentWorkspaceTeamConnection>;
|
|
176242
|
+
agentWorkspace_unmappedSkillsInProject?: Maybe<AgentWorkspaceSkillConnection>;
|
|
174958
176243
|
agentWorkspace_utilizationForPendingChanges?: Maybe<Array<AgentWorkspaceAgentUtilizationForPendingChanges>>;
|
|
174959
176244
|
agentWorkspace_wfoSummaryView?: Maybe<AgentWorkspaceWfoSummaryViewResult>;
|
|
174960
176245
|
agentWorkspace_wfoSummaryViewByProjectKey?: Maybe<AgentWorkspaceWfoSummaryViewByProjectKeyResult>;
|
|
@@ -175077,6 +176362,7 @@ export type Query = {
|
|
|
175077
176362
|
assetsVertical_assetTypesTracking?: Maybe<AssetsVerticalAssetTypesTrackingResult>;
|
|
175078
176363
|
assetsVertical_assetTypesTrackings?: Maybe<AssetsVerticalAssetTypesTrackingConnection>;
|
|
175079
176364
|
assetsVertical_asyncTask?: Maybe<AssetsVerticalAsyncTaskResult>;
|
|
176365
|
+
assetsVertical_asyncTasks?: Maybe<AssetsVerticalAsyncTaskConnection>;
|
|
175080
176366
|
assetsVertical_bundle?: Maybe<AssetsVerticalBundleResult>;
|
|
175081
176367
|
assetsVertical_configuredObjectTypes?: Maybe<AssetsVerticalObjectTypesResult>;
|
|
175082
176368
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
@@ -175498,6 +176784,9 @@ export type Query = {
|
|
|
175498
176784
|
csmCustomersByIds?: Maybe<Array<Maybe<CustomerServiceCsmCustomer>>>;
|
|
175499
176785
|
csmOrganizationsByIds?: Maybe<Array<Maybe<CustomerServiceCsmOrganization>>>;
|
|
175500
176786
|
csm_aiSuggestions?: Maybe<CustomerServiceAiSuggestionsQueryResult>;
|
|
176787
|
+
csm_assetsObjectSchemas?: Maybe<CustomerServiceAssetsObjectSchemaConnection>;
|
|
176788
|
+
csm_assetsObjectTypes?: Maybe<CustomerServiceAssetsObjectTypeConnection>;
|
|
176789
|
+
csm_assetsObjects?: Maybe<CustomerServiceAssetsObjectConnection>;
|
|
175501
176790
|
csm_brandingByEntityType?: Maybe<CustomerServiceBrandingQueryResult>;
|
|
175502
176791
|
csm_brandingMediaConfigByEntityType?: Maybe<CustomerServiceBrandingMediaConfigQueryResult>;
|
|
175503
176792
|
csm_customDetailsByEntityType?: Maybe<CustomerServiceCustomDetailsQueryResult>;
|
|
@@ -175529,6 +176818,8 @@ export type Query = {
|
|
|
175529
176818
|
defaultSpacePermissions?: Maybe<SpacePermissions>;
|
|
175530
176819
|
defaultSpaceRoleAssignmentsAll?: Maybe<DefaultSpaceRoleAssignmentsConnection>;
|
|
175531
176820
|
demoMercury_getById?: Maybe<DemoMercuryFocusArea>;
|
|
176821
|
+
demoSite?: Maybe<DemoSite>;
|
|
176822
|
+
demoSiteProvisioning?: Maybe<DemoSiteProvisioning>;
|
|
175532
176823
|
detailsLines?: Maybe<DetailsSummaryLines>;
|
|
175533
176824
|
devAi?: Maybe<DevAi>;
|
|
175534
176825
|
devOps?: Maybe<DevOps>;
|
|
@@ -175697,6 +176988,7 @@ export type Query = {
|
|
|
175697
176988
|
graphIntegration_mcpAdminManagementMcpServers?: Maybe<GraphIntegrationMcpAdminManagementMcpServerConnection>;
|
|
175698
176989
|
graphIntegration_mcpAdminManagementMcpTools?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConnection>;
|
|
175699
176990
|
graphIntegration_mcpServerRequests?: Maybe<GraphIntegrationMcpServerRequestConnection>;
|
|
176991
|
+
graphIntegration_mcpServerRequestsForUser?: Maybe<GraphIntegrationMcpServerRequestConnection>;
|
|
175700
176992
|
graphIntegration_mcpServerUserRequests?: Maybe<GraphIntegrationMcpServerUserRequestConnection>;
|
|
175701
176993
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
175702
176994
|
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
@@ -175988,6 +177280,8 @@ export type Query = {
|
|
|
175988
177280
|
graphStoreV2_atlassianUserWatchesConfluenceWhiteboardInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceWhiteboardInverseConnection>;
|
|
175989
177281
|
graphStoreV2_atlassianUserWatchesFocusFocusArea?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesFocusFocusAreaConnection>;
|
|
175990
177282
|
graphStoreV2_atlassianUserWatchesFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesFocusFocusAreaInverseConnection>;
|
|
177283
|
+
graphStoreV2_atlassianUserWatchesFocusOrganization?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationConnection>;
|
|
177284
|
+
graphStoreV2_atlassianUserWatchesFocusOrganizationInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationInverseConnection>;
|
|
175991
177285
|
graphStoreV2_bitbucketRepositoryHasExternalPullRequest?: Maybe<GraphStoreV2SimplifiedBitbucketRepositoryHasExternalPullRequestConnection>;
|
|
175992
177286
|
graphStoreV2_bitbucketRepositoryHasExternalPullRequestInverse?: Maybe<GraphStoreV2SimplifiedBitbucketRepositoryHasExternalPullRequestInverseConnection>;
|
|
175993
177287
|
graphStoreV2_compassComponentHasCompassComponentLink?: Maybe<GraphStoreV2SimplifiedCompassComponentHasCompassComponentLinkConnection>;
|
|
@@ -176376,8 +177670,12 @@ export type Query = {
|
|
|
176376
177670
|
graphStoreV2_focusFocusAreaHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseConnection>;
|
|
176377
177671
|
graphStoreV2_focusOrganizationHasAtlassianGoal?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalConnection>;
|
|
176378
177672
|
graphStoreV2_focusOrganizationHasAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalInverseConnection>;
|
|
177673
|
+
graphStoreV2_focusOrganizationHasChildFocusOrganization?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationConnection>;
|
|
177674
|
+
graphStoreV2_focusOrganizationHasChildFocusOrganizationInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationInverseConnection>;
|
|
176379
177675
|
graphStoreV2_focusOrganizationHasFocusOrganizationMembership?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipConnection>;
|
|
176380
177676
|
graphStoreV2_focusOrganizationHasFocusOrganizationMembershipInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipInverseConnection>;
|
|
177677
|
+
graphStoreV2_focusOrganizationHasFocusOrganizationStatusUpdate?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateConnection>;
|
|
177678
|
+
graphStoreV2_focusOrganizationHasFocusOrganizationStatusUpdateInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateInverseConnection>;
|
|
176381
177679
|
graphStoreV2_focusOrganizationSponsorsFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaConnection>;
|
|
176382
177680
|
graphStoreV2_focusOrganizationSponsorsFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseConnection>;
|
|
176383
177681
|
graphStoreV2_focusRiskHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection>;
|
|
@@ -177167,8 +178465,20 @@ export type Query = {
|
|
|
177167
178465
|
graphStore_mercuryOrganizationHasAtlasGoalBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasAtlasGoalConnection>;
|
|
177168
178466
|
graphStore_mercuryOrganizationHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasAtlasGoalInverseConnection>;
|
|
177169
178467
|
graphStore_mercuryOrganizationHasAtlasGoalInverseBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasAtlasGoalConnection>;
|
|
178468
|
+
graphStore_mercuryOrganizationHasMercuryOrganization?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationConnection>;
|
|
178469
|
+
graphStore_mercuryOrganizationHasMercuryOrganizationBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasMercuryOrganizationConnection>;
|
|
178470
|
+
graphStore_mercuryOrganizationHasMercuryOrganizationInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationInverseConnection>;
|
|
178471
|
+
graphStore_mercuryOrganizationHasMercuryOrganizationInverseBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasMercuryOrganizationConnection>;
|
|
177170
178472
|
graphStore_mercuryOrganizationHasMercuryOrganizationMembership?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipConnection>;
|
|
177171
178473
|
graphStore_mercuryOrganizationHasMercuryOrganizationMembershipInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipInverseConnection>;
|
|
178474
|
+
graphStore_mercuryOrganizationHasStatusUpdate?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasStatusUpdateConnection>;
|
|
178475
|
+
graphStore_mercuryOrganizationHasStatusUpdateBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasStatusUpdateConnection>;
|
|
178476
|
+
graphStore_mercuryOrganizationHasStatusUpdateInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasStatusUpdateInverseConnection>;
|
|
178477
|
+
graphStore_mercuryOrganizationHasStatusUpdateInverseBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasStatusUpdateConnection>;
|
|
178478
|
+
graphStore_mercuryOrganizationHasWatcher?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasWatcherConnection>;
|
|
178479
|
+
graphStore_mercuryOrganizationHasWatcherBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasWatcherConnection>;
|
|
178480
|
+
graphStore_mercuryOrganizationHasWatcherInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasWatcherInverseConnection>;
|
|
178481
|
+
graphStore_mercuryOrganizationHasWatcherInverseBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasWatcherConnection>;
|
|
177172
178482
|
graphStore_mercuryOrganizationSponsorsFocusArea?: Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaConnection>;
|
|
177173
178483
|
graphStore_mercuryOrganizationSponsorsFocusAreaBatch?: Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaConnection>;
|
|
177174
178484
|
graphStore_mercuryOrganizationSponsorsFocusAreaInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseConnection>;
|
|
@@ -177861,6 +179171,7 @@ export type Query = {
|
|
|
177861
179171
|
jira_isBetaAiFeaturesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
177862
179172
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
177863
179173
|
jira_isTenantConvertedToNfa?: Maybe<Scalars['Boolean']['output']>;
|
|
179174
|
+
jira_issueCreateLayout?: Maybe<JiraIssueCreateLayoutResult>;
|
|
177864
179175
|
jira_issueSearchTopLevelIssueFieldsAggregation?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
177865
179176
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
177866
179177
|
jira_issueStatusesByIds?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
@@ -177919,6 +179230,18 @@ export type Query = {
|
|
|
177919
179230
|
jsmConversation_setting?: Maybe<JsmConversationSettingsResult>;
|
|
177920
179231
|
jsmConversation_settings?: Maybe<JsmConversationSettings>;
|
|
177921
179232
|
jsmSolutionComposerPlan?: Maybe<JsmSolutionComposerPlanQueryApi>;
|
|
179233
|
+
jsmTelemetry_aiPrompt?: Maybe<Scalars['String']['output']>;
|
|
179234
|
+
jsmTelemetry_dashboard?: Maybe<JsmTelemetryDashboardResult>;
|
|
179235
|
+
jsmTelemetry_getMetricAttributeValues?: Maybe<JsmTelemetryMetricAttributeValuesResult>;
|
|
179236
|
+
jsmTelemetry_getMetricAttributes?: Maybe<JsmTelemetryMetricAttributesResult>;
|
|
179237
|
+
jsmTelemetry_getProviderContextSchema?: Maybe<JsmTelemetryProviderContextSchemaResult>;
|
|
179238
|
+
jsmTelemetry_getTelemetryConnection?: Maybe<JsmTelemetryConnection>;
|
|
179239
|
+
jsmTelemetry_listTelemetryConnections?: Maybe<Array<JsmTelemetryConnection>>;
|
|
179240
|
+
jsmTelemetry_listTelemetryProviders?: Maybe<Array<JsmTelemetryProvider>>;
|
|
179241
|
+
jsmTelemetry_metricData?: Maybe<JsmTelemetryMetricDataResult>;
|
|
179242
|
+
jsmTelemetry_providerConnectionSchema?: Maybe<JsmTelemetryProviderConnectionSchemaResult>;
|
|
179243
|
+
jsmTelemetry_searchMetrics?: Maybe<JsmTelemetryMetricSearchResult>;
|
|
179244
|
+
jsmTelemetry_telemetryServiceInfo?: Maybe<JsmTelemetryServiceInfo>;
|
|
177922
179245
|
jsw?: Maybe<JswQuery>;
|
|
177923
179246
|
kitsune_chunks?: Maybe<Array<Maybe<KitsuneChunk>>>;
|
|
177924
179247
|
kitsune_customerByAri?: Maybe<KitsuneCustomer>;
|
|
@@ -177955,6 +179278,7 @@ export type Query = {
|
|
|
177955
179278
|
knowledgeBase_getLinkedSourceTypes?: Maybe<KnowledgeBaseLinkedSourceTypesResponse>;
|
|
177956
179279
|
knowledgeBase_healthDashboard?: Maybe<KnowledgeBaseHealthDashboardResponse>;
|
|
177957
179280
|
knowledgeBase_linkedSources?: Maybe<KnowledgeBaseLinkedSourcesResponse>;
|
|
179281
|
+
knowledgeBase_monthlyActiveUsers?: Maybe<KnowledgeBaseMonthlyActiveUsersResponse>;
|
|
177958
179282
|
knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
|
|
177959
179283
|
knowledgeBase_searchConversionMetrics?: Maybe<KnowledgeBaseSearchConversionMetricsResponse>;
|
|
177960
179284
|
knowledgeBase_sourceSuggestions?: Maybe<KnowledgeBaseSourceSuggestionsResponse>;
|
|
@@ -177991,6 +179315,7 @@ export type Query = {
|
|
|
177991
179315
|
loom_space?: Maybe<LoomSpace>;
|
|
177992
179316
|
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
177993
179317
|
loom_spacesSearch?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
179318
|
+
loom_tagsSearch?: Maybe<Array<LoomTag>>;
|
|
177994
179319
|
loom_validateSlackUserIds?: Maybe<Array<Maybe<LoomValidateSlackUserIds>>>;
|
|
177995
179320
|
loom_video?: Maybe<LoomVideo>;
|
|
177996
179321
|
loom_videoDurations?: Maybe<LoomVideoDurations>;
|
|
@@ -178074,8 +179399,8 @@ export type Query = {
|
|
|
178074
179399
|
playbook_jiraPlaybookTemplate?: Maybe<JiraPlaybookTemplateQueryPayload>;
|
|
178075
179400
|
playbook_jiraPlaybookTemplateCategories?: Maybe<JiraPlaybookTemplateCategoryQueryPayload>;
|
|
178076
179401
|
playbook_jiraPlaybooksForProject?: Maybe<JiraPlaybookConnection>;
|
|
178077
|
-
playbook_mitigationById?: Maybe<
|
|
178078
|
-
playbook_mitigationByScope?: Maybe<
|
|
179402
|
+
playbook_mitigationById?: Maybe<MitigationLookupResult>;
|
|
179403
|
+
playbook_mitigationByScope?: Maybe<MitigationLookupResult>;
|
|
178079
179404
|
pokemon?: Maybe<PokemonQuery>;
|
|
178080
179405
|
pokemonTrainers?: Maybe<PokemonTrainersQuery>;
|
|
178081
179406
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
@@ -178378,6 +179703,7 @@ export type Query = {
|
|
|
178378
179703
|
users?: Maybe<Array<User>>;
|
|
178379
179704
|
usersWithContentRestrictions?: Maybe<Array<Maybe<UserWithRestrictions>>>;
|
|
178380
179705
|
uts_allowanceExemptions?: Maybe<UtsAllowanceExemptionList>;
|
|
179706
|
+
uts_meterConfiguration?: Maybe<UtsMeterConfiguration>;
|
|
178381
179707
|
uts_usageAlerts?: Maybe<Array<Maybe<UtsUsageAlert>>>;
|
|
178382
179708
|
validateConvertPageToLiveEdit?: Maybe<ConvertPageToLiveEditValidationResult>;
|
|
178383
179709
|
validatePageCopy?: Maybe<ValidatePageCopyPayload>;
|
|
@@ -178495,6 +179821,13 @@ export type QueryAdmin_AuditLogUsersArgs = {
|
|
|
178495
179821
|
orgId: Scalars['String']['input'];
|
|
178496
179822
|
searchUserInput?: InputMaybe<AdminAuditLogSearchUsersInput>;
|
|
178497
179823
|
};
|
|
179824
|
+
export type QueryAdmin_BreachingConnectionsForUnitArgs = {
|
|
179825
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
179826
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
179827
|
+
orgId: Scalars['ID']['input'];
|
|
179828
|
+
status?: InputMaybe<AdminBreachingConnectionStatus>;
|
|
179829
|
+
unitId: Scalars['ID']['input'];
|
|
179830
|
+
};
|
|
178498
179831
|
export type QueryAdmin_CheckLicensesCapacityArgs = {
|
|
178499
179832
|
input: AdminLicenseInput;
|
|
178500
179833
|
orgId: Scalars['ID']['input'];
|
|
@@ -178887,6 +180220,11 @@ export type QueryAgentStudio_GetAgentsArgs = {
|
|
|
178887
180220
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
178888
180221
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
178889
180222
|
};
|
|
180223
|
+
export type QueryAgentStudio_GetAllTemplatesArgs = {
|
|
180224
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
180225
|
+
cloudId: Scalars['String']['input'];
|
|
180226
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
180227
|
+
};
|
|
178890
180228
|
export type QueryAgentStudio_GetAvailableExecutionConfigsArgs = {
|
|
178891
180229
|
cloudId: Scalars['String']['input'];
|
|
178892
180230
|
};
|
|
@@ -178899,6 +180237,10 @@ export type QueryAgentStudio_GetByExternalReferenceArgs = {
|
|
|
178899
180237
|
export type QueryAgentStudio_GetCreateAgentPermissionsArgs = {
|
|
178900
180238
|
cloudId: Scalars['String']['input'];
|
|
178901
180239
|
};
|
|
180240
|
+
export type QueryAgentStudio_GetTemplateArgs = {
|
|
180241
|
+
cloudId: Scalars['String']['input'];
|
|
180242
|
+
templateId: Scalars['ID']['input'];
|
|
180243
|
+
};
|
|
178902
180244
|
export type QueryAgentStudio_GetToolConfigurationSchemaArgs = {
|
|
178903
180245
|
cloudId: Scalars['String']['input'];
|
|
178904
180246
|
toolsToFetch: Array<AgentStudioToolIdAndSource>;
|
|
@@ -179287,6 +180629,13 @@ export type QueryAgentWorkspace_TeamsMappedToProjectArgs = {
|
|
|
179287
180629
|
projectId: Scalars['ID']['input'];
|
|
179288
180630
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
179289
180631
|
};
|
|
180632
|
+
export type QueryAgentWorkspace_UnmappedSkillsInProjectArgs = {
|
|
180633
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
180634
|
+
cloudId: Scalars['ID']['input'];
|
|
180635
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
180636
|
+
projectId: Scalars['ID']['input'];
|
|
180637
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
180638
|
+
};
|
|
179290
180639
|
export type QueryAgentWorkspace_UtilizationForPendingChangesArgs = {
|
|
179291
180640
|
input: AgentWorkspaceUtilizationForPendingChangesInput;
|
|
179292
180641
|
};
|
|
@@ -179962,6 +181311,11 @@ export type QueryAssetsVertical_AsyncTaskArgs = {
|
|
|
179962
181311
|
cloudId: Scalars['ID']['input'];
|
|
179963
181312
|
taskId: Scalars['ID']['input'];
|
|
179964
181313
|
};
|
|
181314
|
+
export type QueryAssetsVertical_AsyncTasksArgs = {
|
|
181315
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
181316
|
+
cloudId: Scalars['ID']['input'];
|
|
181317
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
181318
|
+
};
|
|
179965
181319
|
export type QueryAssetsVertical_BundleArgs = {
|
|
179966
181320
|
cloudId: Scalars['ID']['input'];
|
|
179967
181321
|
type: AssetsVerticalBundleType;
|
|
@@ -181879,6 +183233,26 @@ export type QueryCsm_AiSuggestionsArgs = {
|
|
|
181879
183233
|
cloudId: Scalars['ID']['input'];
|
|
181880
183234
|
input: CustomerServiceAiSuggestionsInput;
|
|
181881
183235
|
};
|
|
183236
|
+
export type QueryCsm_AssetsObjectSchemasArgs = {
|
|
183237
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
183238
|
+
cloudId: Scalars['ID']['input'];
|
|
183239
|
+
filter?: InputMaybe<CustomerServiceAssetsObjectSchemasFilterInput>;
|
|
183240
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
183241
|
+
};
|
|
183242
|
+
export type QueryCsm_AssetsObjectTypesArgs = {
|
|
183243
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
183244
|
+
cloudId: Scalars['ID']['input'];
|
|
183245
|
+
filter?: InputMaybe<CustomerServiceAssetsObjectTypesFilterInput>;
|
|
183246
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
183247
|
+
schemaId: Scalars['ID']['input'];
|
|
183248
|
+
};
|
|
183249
|
+
export type QueryCsm_AssetsObjectsArgs = {
|
|
183250
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
183251
|
+
cloudId: Scalars['ID']['input'];
|
|
183252
|
+
filter?: InputMaybe<CustomerServiceAssetsObjectsFilterInput>;
|
|
183253
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
183254
|
+
objectTypeId: Scalars['ID']['input'];
|
|
183255
|
+
};
|
|
181882
183256
|
export type QueryCsm_BrandingByEntityTypeArgs = {
|
|
181883
183257
|
cloudId: Scalars['ID']['input'];
|
|
181884
183258
|
entityType: CustomerServiceBrandingEntityType;
|
|
@@ -182001,6 +183375,9 @@ export type QueryDemoMercury_GetByIdArgs = {
|
|
|
182001
183375
|
cloudId: Scalars['ID']['input'];
|
|
182002
183376
|
id: Scalars['ID']['input'];
|
|
182003
183377
|
};
|
|
183378
|
+
export type QueryDemoSiteProvisioningArgs = {
|
|
183379
|
+
taskId: Scalars['ID']['input'];
|
|
183380
|
+
};
|
|
182004
183381
|
export type QueryDetailsLinesArgs = {
|
|
182005
183382
|
contentId: Scalars['ID']['input'];
|
|
182006
183383
|
contentRepresentation: Scalars['String']['input'];
|
|
@@ -182200,8 +183577,10 @@ export type QueryDevai_ContainerConfigArgs = {
|
|
|
182200
183577
|
export type QueryDevai_FlowGetRepositoriesArgs = {
|
|
182201
183578
|
cloudId: Scalars['ID']['input'];
|
|
182202
183579
|
language?: InputMaybe<Scalars['String']['input']>;
|
|
183580
|
+
scm?: InputMaybe<DevAiScmFilter>;
|
|
182203
183581
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
182204
183582
|
searchAllConnectedRepos?: InputMaybe<Scalars['Boolean']['input']>;
|
|
183583
|
+
useCaseId?: InputMaybe<DevAiFlowUseCaseId>;
|
|
182205
183584
|
workspace?: InputMaybe<DevAiWorkspaceFilter>;
|
|
182206
183585
|
};
|
|
182207
183586
|
export type QueryDevai_FlowSessionGetByAriArgs = {
|
|
@@ -182660,6 +184039,9 @@ export type QueryGraphInference_GetRelatedReposV3Args = {
|
|
|
182660
184039
|
export type QueryGraphInference_GetSimilarJiraItemsArgs = {
|
|
182661
184040
|
input: GraphInferenceGetSimilarJiraItemsInput;
|
|
182662
184041
|
};
|
|
184042
|
+
export type QueryGraphInference_InferredProjectMeArgs = {
|
|
184043
|
+
forceRefresh?: Scalars['Boolean']['input'];
|
|
184044
|
+
};
|
|
182663
184045
|
export type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
|
|
182664
184046
|
contextAri: Scalars['ID']['input'];
|
|
182665
184047
|
};
|
|
@@ -182716,6 +184098,9 @@ export type QueryGraphIntegration_McpServerRequestsArgs = {
|
|
|
182716
184098
|
cloudId: Scalars['ID']['input'];
|
|
182717
184099
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
182718
184100
|
};
|
|
184101
|
+
export type QueryGraphIntegration_McpServerRequestsForUserArgs = {
|
|
184102
|
+
cloudId: Scalars['ID']['input'];
|
|
184103
|
+
};
|
|
182719
184104
|
export type QueryGraphIntegration_McpServerUserRequestsArgs = {
|
|
182720
184105
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182721
184106
|
aggregateRequestId: Scalars['ID']['input'];
|
|
@@ -184726,6 +186111,20 @@ export type QueryGraphStoreV2_AtlassianUserWatchesFocusFocusAreaInverseArgs = {
|
|
|
184726
186111
|
id: Scalars['ID']['input'];
|
|
184727
186112
|
sort?: InputMaybe<GraphStoreV2AtlassianUserWatchesFocusFocusAreaSortInput>;
|
|
184728
186113
|
};
|
|
186114
|
+
export type QueryGraphStoreV2_AtlassianUserWatchesFocusOrganizationArgs = {
|
|
186115
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
186116
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
186117
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
186118
|
+
id: Scalars['ID']['input'];
|
|
186119
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserWatchesFocusOrganizationSortInput>;
|
|
186120
|
+
};
|
|
186121
|
+
export type QueryGraphStoreV2_AtlassianUserWatchesFocusOrganizationInverseArgs = {
|
|
186122
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
186123
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
186124
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
186125
|
+
id: Scalars['ID']['input'];
|
|
186126
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserWatchesFocusOrganizationSortInput>;
|
|
186127
|
+
};
|
|
184729
186128
|
export type QueryGraphStoreV2_BitbucketRepositoryHasExternalPullRequestArgs = {
|
|
184730
186129
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
184731
186130
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -187449,6 +188848,20 @@ export type QueryGraphStoreV2_FocusOrganizationHasAtlassianGoalInverseArgs = {
|
|
|
187449
188848
|
id: Scalars['ID']['input'];
|
|
187450
188849
|
sort?: InputMaybe<GraphStoreV2FocusOrganizationHasAtlassianGoalSortInput>;
|
|
187451
188850
|
};
|
|
188851
|
+
export type QueryGraphStoreV2_FocusOrganizationHasChildFocusOrganizationArgs = {
|
|
188852
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
188853
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
188854
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
188855
|
+
id: Scalars['ID']['input'];
|
|
188856
|
+
sort?: InputMaybe<GraphStoreV2FocusOrganizationHasChildFocusOrganizationSortInput>;
|
|
188857
|
+
};
|
|
188858
|
+
export type QueryGraphStoreV2_FocusOrganizationHasChildFocusOrganizationInverseArgs = {
|
|
188859
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
188860
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
188861
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
188862
|
+
id: Scalars['ID']['input'];
|
|
188863
|
+
sort?: InputMaybe<GraphStoreV2FocusOrganizationHasChildFocusOrganizationSortInput>;
|
|
188864
|
+
};
|
|
187452
188865
|
export type QueryGraphStoreV2_FocusOrganizationHasFocusOrganizationMembershipArgs = {
|
|
187453
188866
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
187454
188867
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -187463,6 +188876,20 @@ export type QueryGraphStoreV2_FocusOrganizationHasFocusOrganizationMembershipInv
|
|
|
187463
188876
|
id: Scalars['ID']['input'];
|
|
187464
188877
|
sort?: InputMaybe<GraphStoreV2FocusOrganizationHasFocusOrganizationMembershipSortInput>;
|
|
187465
188878
|
};
|
|
188879
|
+
export type QueryGraphStoreV2_FocusOrganizationHasFocusOrganizationStatusUpdateArgs = {
|
|
188880
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
188881
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
188882
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
188883
|
+
id: Scalars['ID']['input'];
|
|
188884
|
+
sort?: InputMaybe<GraphStoreV2FocusOrganizationHasFocusOrganizationStatusUpdateSortInput>;
|
|
188885
|
+
};
|
|
188886
|
+
export type QueryGraphStoreV2_FocusOrganizationHasFocusOrganizationStatusUpdateInverseArgs = {
|
|
188887
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
188888
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
188889
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
188890
|
+
id: Scalars['ID']['input'];
|
|
188891
|
+
sort?: InputMaybe<GraphStoreV2FocusOrganizationHasFocusOrganizationStatusUpdateSortInput>;
|
|
188892
|
+
};
|
|
187466
188893
|
export type QueryGraphStoreV2_FocusOrganizationSponsorsFocusFocusAreaArgs = {
|
|
187467
188894
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
187468
188895
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -193439,6 +194866,36 @@ export type QueryGraphStore_MercuryOrganizationHasAtlasGoalInverseBatchArgs = {
|
|
|
193439
194866
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
193440
194867
|
sort?: InputMaybe<GraphStoreMercuryOrganizationHasAtlasGoalSortInput>;
|
|
193441
194868
|
};
|
|
194869
|
+
export type QueryGraphStore_MercuryOrganizationHasMercuryOrganizationArgs = {
|
|
194870
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
194871
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
194872
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
194873
|
+
id: Scalars['ID']['input'];
|
|
194874
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
194875
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasMercuryOrganizationSortInput>;
|
|
194876
|
+
};
|
|
194877
|
+
export type QueryGraphStore_MercuryOrganizationHasMercuryOrganizationBatchArgs = {
|
|
194878
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
194879
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
194880
|
+
ids: Array<Scalars['ID']['input']>;
|
|
194881
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
194882
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasMercuryOrganizationSortInput>;
|
|
194883
|
+
};
|
|
194884
|
+
export type QueryGraphStore_MercuryOrganizationHasMercuryOrganizationInverseArgs = {
|
|
194885
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
194886
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
194887
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
194888
|
+
id: Scalars['ID']['input'];
|
|
194889
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
194890
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasMercuryOrganizationSortInput>;
|
|
194891
|
+
};
|
|
194892
|
+
export type QueryGraphStore_MercuryOrganizationHasMercuryOrganizationInverseBatchArgs = {
|
|
194893
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
194894
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
194895
|
+
ids: Array<Scalars['ID']['input']>;
|
|
194896
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
194897
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasMercuryOrganizationSortInput>;
|
|
194898
|
+
};
|
|
193442
194899
|
export type QueryGraphStore_MercuryOrganizationHasMercuryOrganizationMembershipArgs = {
|
|
193443
194900
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
193444
194901
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -193455,6 +194912,66 @@ export type QueryGraphStore_MercuryOrganizationHasMercuryOrganizationMembershipI
|
|
|
193455
194912
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
193456
194913
|
sort?: InputMaybe<GraphStoreMercuryOrganizationHasMercuryOrganizationMembershipSortInput>;
|
|
193457
194914
|
};
|
|
194915
|
+
export type QueryGraphStore_MercuryOrganizationHasStatusUpdateArgs = {
|
|
194916
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
194917
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
194918
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
194919
|
+
id: Scalars['ID']['input'];
|
|
194920
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
194921
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasStatusUpdateSortInput>;
|
|
194922
|
+
};
|
|
194923
|
+
export type QueryGraphStore_MercuryOrganizationHasStatusUpdateBatchArgs = {
|
|
194924
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
194925
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
194926
|
+
ids: Array<Scalars['ID']['input']>;
|
|
194927
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
194928
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasStatusUpdateSortInput>;
|
|
194929
|
+
};
|
|
194930
|
+
export type QueryGraphStore_MercuryOrganizationHasStatusUpdateInverseArgs = {
|
|
194931
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
194932
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
194933
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
194934
|
+
id: Scalars['ID']['input'];
|
|
194935
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
194936
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasStatusUpdateSortInput>;
|
|
194937
|
+
};
|
|
194938
|
+
export type QueryGraphStore_MercuryOrganizationHasStatusUpdateInverseBatchArgs = {
|
|
194939
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
194940
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
194941
|
+
ids: Array<Scalars['ID']['input']>;
|
|
194942
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
194943
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasStatusUpdateSortInput>;
|
|
194944
|
+
};
|
|
194945
|
+
export type QueryGraphStore_MercuryOrganizationHasWatcherArgs = {
|
|
194946
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
194947
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
194948
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
194949
|
+
id: Scalars['ID']['input'];
|
|
194950
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
194951
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasWatcherSortInput>;
|
|
194952
|
+
};
|
|
194953
|
+
export type QueryGraphStore_MercuryOrganizationHasWatcherBatchArgs = {
|
|
194954
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
194955
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
194956
|
+
ids: Array<Scalars['ID']['input']>;
|
|
194957
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
194958
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasWatcherSortInput>;
|
|
194959
|
+
};
|
|
194960
|
+
export type QueryGraphStore_MercuryOrganizationHasWatcherInverseArgs = {
|
|
194961
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
194962
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
194963
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
194964
|
+
id: Scalars['ID']['input'];
|
|
194965
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
194966
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasWatcherSortInput>;
|
|
194967
|
+
};
|
|
194968
|
+
export type QueryGraphStore_MercuryOrganizationHasWatcherInverseBatchArgs = {
|
|
194969
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
194970
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
194971
|
+
ids: Array<Scalars['ID']['input']>;
|
|
194972
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
194973
|
+
sort?: InputMaybe<GraphStoreMercuryOrganizationHasWatcherSortInput>;
|
|
194974
|
+
};
|
|
193458
194975
|
export type QueryGraphStore_MercuryOrganizationSponsorsFocusAreaArgs = {
|
|
193459
194976
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
193460
194977
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -198466,6 +199983,13 @@ export type QueryJira_IsRovoLlmEnabledArgs = {
|
|
|
198466
199983
|
export type QueryJira_IsTenantConvertedToNfaArgs = {
|
|
198467
199984
|
cloudId: Scalars['ID']['input'];
|
|
198468
199985
|
};
|
|
199986
|
+
export type QueryJira_IssueCreateLayoutArgs = {
|
|
199987
|
+
cloudId: Scalars['ID']['input'];
|
|
199988
|
+
issueType?: InputMaybe<JiraIssueTypeInput>;
|
|
199989
|
+
layoutFilter?: InputMaybe<JiraIssueCreateLayoutFilter>;
|
|
199990
|
+
project?: InputMaybe<JiraProjectInput>;
|
|
199991
|
+
requestType?: InputMaybe<JiraRequestTypeInput>;
|
|
199992
|
+
};
|
|
198469
199993
|
export type QueryJira_IssueSearchTopLevelIssueFieldsAggregationArgs = {
|
|
198470
199994
|
aggregationConfig?: InputMaybe<JiraIssueSearchAggregationConfigInput>;
|
|
198471
199995
|
issueIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -198690,6 +200214,63 @@ export type QueryJsmConversation_SettingArgs = {
|
|
|
198690
200214
|
export type QueryJsmConversation_SettingsArgs = {
|
|
198691
200215
|
projectAri: Scalars['String']['input'];
|
|
198692
200216
|
};
|
|
200217
|
+
export type QueryJsmTelemetry_AiPromptArgs = {
|
|
200218
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
200219
|
+
prompt: Scalars['String']['input'];
|
|
200220
|
+
useCaseId?: InputMaybe<Scalars['String']['input']>;
|
|
200221
|
+
};
|
|
200222
|
+
export type QueryJsmTelemetry_DashboardArgs = {
|
|
200223
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
200224
|
+
incidentId: Scalars['ID']['input'];
|
|
200225
|
+
input: JsmTelemetryDashboardQueryInput;
|
|
200226
|
+
};
|
|
200227
|
+
export type QueryJsmTelemetry_GetMetricAttributeValuesArgs = {
|
|
200228
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
200229
|
+
incidentId: Scalars['ID']['input'];
|
|
200230
|
+
input: JsmTelemetryMetricAttributeValueSearchInput;
|
|
200231
|
+
providerContext?: InputMaybe<Array<JsmTelemetryProviderParameterValueInput>>;
|
|
200232
|
+
};
|
|
200233
|
+
export type QueryJsmTelemetry_GetMetricAttributesArgs = {
|
|
200234
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
200235
|
+
incidentId: Scalars['ID']['input'];
|
|
200236
|
+
input: JsmTelemetryMetricAttributeSearchInput;
|
|
200237
|
+
providerContext?: InputMaybe<Array<JsmTelemetryProviderParameterValueInput>>;
|
|
200238
|
+
};
|
|
200239
|
+
export type QueryJsmTelemetry_GetProviderContextSchemaArgs = {
|
|
200240
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
200241
|
+
incidentId: Scalars['ID']['input'];
|
|
200242
|
+
input: JsmTelemetryProviderContextSchemaInput;
|
|
200243
|
+
};
|
|
200244
|
+
export type QueryJsmTelemetry_GetTelemetryConnectionArgs = {
|
|
200245
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
200246
|
+
id: Scalars['ID']['input'];
|
|
200247
|
+
};
|
|
200248
|
+
export type QueryJsmTelemetry_ListTelemetryConnectionsArgs = {
|
|
200249
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
200250
|
+
filter?: InputMaybe<JsmTelemetryConnectionFilterInput>;
|
|
200251
|
+
};
|
|
200252
|
+
export type QueryJsmTelemetry_ListTelemetryProvidersArgs = {
|
|
200253
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
200254
|
+
};
|
|
200255
|
+
export type QueryJsmTelemetry_MetricDataArgs = {
|
|
200256
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
200257
|
+
incidentId: Scalars['ID']['input'];
|
|
200258
|
+
input: JsmTelemetryMetricDataQueryInput;
|
|
200259
|
+
providerContext?: InputMaybe<Array<JsmTelemetryProviderParameterValueInput>>;
|
|
200260
|
+
};
|
|
200261
|
+
export type QueryJsmTelemetry_ProviderConnectionSchemaArgs = {
|
|
200262
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
200263
|
+
input: JsmTelemetryProviderConnectionSchemaInput;
|
|
200264
|
+
};
|
|
200265
|
+
export type QueryJsmTelemetry_SearchMetricsArgs = {
|
|
200266
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
200267
|
+
incidentId: Scalars['ID']['input'];
|
|
200268
|
+
input: JsmTelemetryMetricSearchInput;
|
|
200269
|
+
providerContext?: InputMaybe<Array<JsmTelemetryProviderParameterValueInput>>;
|
|
200270
|
+
};
|
|
200271
|
+
export type QueryJsmTelemetry_TelemetryServiceInfoArgs = {
|
|
200272
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
200273
|
+
};
|
|
198693
200274
|
export type QueryKitsune_ChunksArgs = {
|
|
198694
200275
|
ids: Array<Scalars['ID']['input']>;
|
|
198695
200276
|
};
|
|
@@ -198858,6 +200439,10 @@ export type QueryKnowledgeBase_LinkedSourcesArgs = {
|
|
|
198858
200439
|
cloudId: Scalars['ID']['input'];
|
|
198859
200440
|
projectIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
198860
200441
|
};
|
|
200442
|
+
export type QueryKnowledgeBase_MonthlyActiveUsersArgs = {
|
|
200443
|
+
cloudId: Scalars['ID']['input'];
|
|
200444
|
+
projectIdentifier: Scalars['String']['input'];
|
|
200445
|
+
};
|
|
198861
200446
|
export type QueryKnowledgeBase_SearchArticlesArgs = {
|
|
198862
200447
|
searchInput?: InputMaybe<KnowledgeBaseArticleSearchInput>;
|
|
198863
200448
|
};
|
|
@@ -198959,6 +200544,11 @@ export type QueryLoom_SpacesSearchArgs = {
|
|
|
198959
200544
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
198960
200545
|
siteId: Scalars['ID']['input'];
|
|
198961
200546
|
};
|
|
200547
|
+
export type QueryLoom_TagsSearchArgs = {
|
|
200548
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
200549
|
+
query: Scalars['String']['input'];
|
|
200550
|
+
siteId: Scalars['ID']['input'];
|
|
200551
|
+
};
|
|
198962
200552
|
export type QueryLoom_ValidateSlackUserIdsArgs = {
|
|
198963
200553
|
userIds: Array<Scalars['ID']['input']>;
|
|
198964
200554
|
};
|
|
@@ -199213,12 +200803,11 @@ export type QueryPlaybook_JiraPlaybooksForProjectArgs = {
|
|
|
199213
200803
|
sort?: InputMaybe<Array<JiraPlaybooksSortInput>>;
|
|
199214
200804
|
};
|
|
199215
200805
|
export type QueryPlaybook_MitigationByIdArgs = {
|
|
199216
|
-
|
|
199217
|
-
mitigationId: Scalars['ID']['input'];
|
|
200806
|
+
id: Scalars['ID']['input'];
|
|
199218
200807
|
};
|
|
199219
200808
|
export type QueryPlaybook_MitigationByScopeArgs = {
|
|
199220
200809
|
cloudId: Scalars['ID']['input'];
|
|
199221
|
-
scopeId: Scalars['
|
|
200810
|
+
scopeId: Scalars['String']['input'];
|
|
199222
200811
|
scopeType: MitigationScopeType;
|
|
199223
200812
|
};
|
|
199224
200813
|
export type QueryPolarisCollabTokenArgs = {
|
|
@@ -200479,6 +202068,9 @@ export type QueryUts_AllowanceExemptionsArgs = {
|
|
|
200479
202068
|
scopeType?: InputMaybe<UtsAllowanceExemptionScopeType>;
|
|
200480
202069
|
usageKey?: InputMaybe<Scalars['String']['input']>;
|
|
200481
202070
|
};
|
|
202071
|
+
export type QueryUts_MeterConfigurationArgs = {
|
|
202072
|
+
usageKey: Scalars['String']['input'];
|
|
202073
|
+
};
|
|
200482
202074
|
export type QueryUts_UsageAlertsArgs = {
|
|
200483
202075
|
state?: InputMaybe<UtsAlertState>;
|
|
200484
202076
|
usageIdentifier: Scalars['ID']['input'];
|
|
@@ -200628,13 +202220,21 @@ export type RadarAiConnector = {
|
|
|
200628
202220
|
};
|
|
200629
202221
|
export type RadarAiConnectorConfigInput = {
|
|
200630
202222
|
apiKey?: InputMaybe<Scalars['String']['input']>;
|
|
202223
|
+
pricePerCredit?: InputMaybe<RadarMoneyInput>;
|
|
202224
|
+
seats?: InputMaybe<RadarAiConnectorSeatConfigInput>;
|
|
202225
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
200631
202226
|
};
|
|
200632
202227
|
export declare enum RadarAiConnectorProvider {
|
|
200633
202228
|
AnthropicClaudeConsole = "ANTHROPIC_CLAUDE_CONSOLE",
|
|
200634
202229
|
AnthropicClaudeEnterprise = "ANTHROPIC_CLAUDE_ENTERPRISE",
|
|
200635
202230
|
Cursor = "CURSOR",
|
|
202231
|
+
OpenaiCodex = "OPENAI_CODEX",
|
|
200636
202232
|
Rovo = "ROVO"
|
|
200637
202233
|
}
|
|
202234
|
+
export type RadarAiConnectorSeatConfigInput = {
|
|
202235
|
+
pricePerSeat: RadarMoneyInput;
|
|
202236
|
+
seatCount: Scalars['Int']['input'];
|
|
202237
|
+
};
|
|
200638
202238
|
export declare enum RadarAiConnectorType {
|
|
200639
202239
|
Api = "API",
|
|
200640
202240
|
Csv = "CSV"
|
|
@@ -200781,6 +202381,10 @@ export type RadarDeleteLaborCostEstimateDataResponse = {
|
|
|
200781
202381
|
radarPositionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
|
|
200782
202382
|
success: Scalars['Boolean']['output'];
|
|
200783
202383
|
};
|
|
202384
|
+
export type RadarDeleteMetricSettingsInput = {
|
|
202385
|
+
metricKey: RadarOrgMetric;
|
|
202386
|
+
scopeId: Scalars['String']['input'];
|
|
202387
|
+
};
|
|
200784
202388
|
export type RadarDynamicFilterOptions = RadarFilterOptions & {
|
|
200785
202389
|
__typename?: 'RadarDynamicFilterOptions';
|
|
200786
202390
|
functionOptions: Array<RadarFunction>;
|
|
@@ -201284,6 +202888,7 @@ export type RadarSkill = Node & {
|
|
|
201284
202888
|
__typename?: 'RadarSkill';
|
|
201285
202889
|
classifiedWorkerCount?: Maybe<Scalars['Int']['output']>;
|
|
201286
202890
|
context?: Maybe<Scalars['String']['output']>;
|
|
202891
|
+
createdAt: Scalars['DateTime']['output'];
|
|
201287
202892
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
201288
202893
|
description?: Maybe<Scalars['String']['output']>;
|
|
201289
202894
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -201291,6 +202896,7 @@ export type RadarSkill = Node & {
|
|
|
201291
202896
|
name: Scalars['String']['output'];
|
|
201292
202897
|
parent?: Maybe<RadarSkill>;
|
|
201293
202898
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
202899
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
201294
202900
|
};
|
|
201295
202901
|
export type RadarSkillAssignmentInput = {
|
|
201296
202902
|
skillId: Scalars['ID']['input'];
|
|
@@ -201367,6 +202973,8 @@ export type RadarSyncHistoriesEdge = RadarEdge & {
|
|
|
201367
202973
|
};
|
|
201368
202974
|
export type RadarSyncHistory = {
|
|
201369
202975
|
__typename?: 'RadarSyncHistory';
|
|
202976
|
+
aiConnector?: Maybe<RadarAiConnector>;
|
|
202977
|
+
aiConnectorId?: Maybe<Scalars['ID']['output']>;
|
|
201370
202978
|
createdAt: Scalars['DateTime']['output'];
|
|
201371
202979
|
id: Scalars['ID']['output'];
|
|
201372
202980
|
status: RadarSyncHistoryStatus;
|
|
@@ -201833,15 +203441,25 @@ export type RegisterTunnelResponse = Payload & {
|
|
|
201833
203441
|
tunnelUrl?: Maybe<Scalars['String']['output']>;
|
|
201834
203442
|
};
|
|
201835
203443
|
export type RejectIndicatorInput = {
|
|
201836
|
-
|
|
201837
|
-
indicatorId: Scalars['ID']['input'];
|
|
203444
|
+
id: Scalars['ID']['input'];
|
|
201838
203445
|
reason: IndicatorRejectionReason;
|
|
201839
203446
|
};
|
|
203447
|
+
export type RejectIndicatorPayload = Payload & {
|
|
203448
|
+
__typename?: 'RejectIndicatorPayload';
|
|
203449
|
+
errors?: Maybe<Array<MutationError>>;
|
|
203450
|
+
indicator?: Maybe<MitigationIndicator>;
|
|
203451
|
+
success: Scalars['Boolean']['output'];
|
|
203452
|
+
};
|
|
201840
203453
|
export type RejectPlanInput = {
|
|
201841
|
-
|
|
201842
|
-
planId: Scalars['ID']['input'];
|
|
203454
|
+
id: Scalars['ID']['input'];
|
|
201843
203455
|
reason: PlanRejectionReason;
|
|
201844
203456
|
};
|
|
203457
|
+
export type RejectPlanPayload = Payload & {
|
|
203458
|
+
__typename?: 'RejectPlanPayload';
|
|
203459
|
+
errors?: Maybe<Array<MutationError>>;
|
|
203460
|
+
plan?: Maybe<MitigationPlan>;
|
|
203461
|
+
success: Scalars['Boolean']['output'];
|
|
203462
|
+
};
|
|
201845
203463
|
export declare enum RelationSourceType {
|
|
201846
203464
|
User = "user"
|
|
201847
203465
|
}
|
|
@@ -228980,10 +230598,10 @@ export declare enum SwimlaneStrategy {
|
|
|
228980
230598
|
}
|
|
228981
230599
|
export type SymptomIndicator = {
|
|
228982
230600
|
__typename?: 'SymptomIndicator';
|
|
228983
|
-
provenance
|
|
228984
|
-
summary: Scalars['String']['output'];
|
|
230601
|
+
provenance?: Maybe<Array<IndicatorProvenance>>;
|
|
228985
230602
|
symptomId: Scalars['String']['output'];
|
|
228986
|
-
|
|
230603
|
+
symptomSummary?: Maybe<Scalars['String']['output']>;
|
|
230604
|
+
symptomType?: Maybe<MitigationSymptomType>;
|
|
228987
230605
|
};
|
|
228988
230606
|
export type SystemSpaceHomepageInput = {
|
|
228989
230607
|
systemSpaceHomepageTemplate: SystemSpaceHomepageTemplate;
|
|
@@ -232859,6 +234477,7 @@ export declare enum TownsquareMetricType {
|
|
|
232859
234477
|
export type TownsquareMetricUpdateEditInput = {
|
|
232860
234478
|
metricId: Scalars['ID']['input'];
|
|
232861
234479
|
newValue: Scalars['Float']['input'];
|
|
234480
|
+
time?: InputMaybe<Scalars['DateTime']['input']>;
|
|
232862
234481
|
};
|
|
232863
234482
|
export type TownsquareMetricUpdateInput = {
|
|
232864
234483
|
newValue: Scalars['Float']['input'];
|
|
@@ -233641,6 +235260,7 @@ export type TownsquareProjectsAppPermissionPolicyInput = {
|
|
|
233641
235260
|
export type TownsquareProjectsAppSettings = {
|
|
233642
235261
|
__typename?: 'TownsquareProjectsAppSettings';
|
|
233643
235262
|
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
235263
|
+
defaultProjectAccessLevel?: Maybe<TownsquareProjectAccessLevel>;
|
|
233644
235264
|
};
|
|
233645
235265
|
export type TownsquareProjectsCanCreateProjectFusionInput = {
|
|
233646
235266
|
issueId: Scalars['ID']['input'];
|
|
@@ -234140,6 +235760,16 @@ export type TownsquareProjectsRemoveUserCustomFieldValuePayload = {
|
|
|
234140
235760
|
success: Scalars['Boolean']['output'];
|
|
234141
235761
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
234142
235762
|
};
|
|
235763
|
+
export type TownsquareProjectsSetDefaultAccessLevelInput = {
|
|
235764
|
+
accessLevel: TownsquareProjectAccessLevel;
|
|
235765
|
+
containerId: Scalars['ID']['input'];
|
|
235766
|
+
};
|
|
235767
|
+
export type TownsquareProjectsSetDefaultAccessLevelPayload = {
|
|
235768
|
+
__typename?: 'TownsquareProjectsSetDefaultAccessLevelPayload';
|
|
235769
|
+
defaultProjectAccessLevel?: Maybe<TownsquareProjectAccessLevel>;
|
|
235770
|
+
errors?: Maybe<Array<MutationError>>;
|
|
235771
|
+
success: Scalars['Boolean']['output'];
|
|
235772
|
+
};
|
|
234143
235773
|
export type TownsquareProjectsSetDependencyInput = {
|
|
234144
235774
|
incomingProjectId: Scalars['ID']['input'];
|
|
234145
235775
|
outgoingProjectId: Scalars['ID']['input'];
|
|
@@ -234847,6 +236477,7 @@ export type TownsquareWorkspace = Node & {
|
|
|
234847
236477
|
__typename?: 'TownsquareWorkspace';
|
|
234848
236478
|
cloudId: Scalars['String']['output'];
|
|
234849
236479
|
defaultGoalAccessLevel: TownsquareGoalAccessLevel;
|
|
236480
|
+
defaultProjectAccessLevel: TownsquareProjectAccessLevel;
|
|
234850
236481
|
id: Scalars['ID']['output'];
|
|
234851
236482
|
name: Scalars['String']['output'];
|
|
234852
236483
|
};
|
|
@@ -237973,8 +239604,7 @@ export type TrelloLabelUpdatedConnection = {
|
|
|
237973
239604
|
export declare enum TrelloLabsFeature {
|
|
237974
239605
|
AiBoardBuilder = "AI_BOARD_BUILDER",
|
|
237975
239606
|
GenerateChecklist = "GENERATE_CHECKLIST",
|
|
237976
|
-
RovoChat = "ROVO_CHAT"
|
|
237977
|
-
SmartSchedule = "SMART_SCHEDULE"
|
|
239607
|
+
RovoChat = "ROVO_CHAT"
|
|
237978
239608
|
}
|
|
237979
239609
|
export declare enum TrelloLabsFeatureStatus {
|
|
237980
239610
|
NotSet = "NOT_SET",
|
|
@@ -241598,7 +243228,7 @@ export type TrelloWorkspaceUpdated = {
|
|
|
241598
243228
|
};
|
|
241599
243229
|
export type TriggerMitigationInput = {
|
|
241600
243230
|
cloudId: Scalars['ID']['input'];
|
|
241601
|
-
scopeId: Scalars['
|
|
243231
|
+
scopeId: Scalars['String']['input'];
|
|
241602
243232
|
scopeType: MitigationScopeType;
|
|
241603
243233
|
};
|
|
241604
243234
|
export type TriggerMitigationPayload = Payload & {
|
|
@@ -243170,14 +244800,6 @@ export type UnlinkExternalSourcePayload = Payload & {
|
|
|
243170
244800
|
errors?: Maybe<Array<MutationError>>;
|
|
243171
244801
|
success: Scalars['Boolean']['output'];
|
|
243172
244802
|
};
|
|
243173
|
-
export type UnrejectIndicatorInput = {
|
|
243174
|
-
cloudId: Scalars['ID']['input'];
|
|
243175
|
-
indicatorId: Scalars['ID']['input'];
|
|
243176
|
-
};
|
|
243177
|
-
export type UnrejectPlanInput = {
|
|
243178
|
-
cloudId: Scalars['ID']['input'];
|
|
243179
|
-
planId: Scalars['ID']['input'];
|
|
243180
|
-
};
|
|
243181
244803
|
export type UnwatchMarketplaceAppPayload = Payload & {
|
|
243182
244804
|
__typename?: 'UnwatchMarketplaceAppPayload';
|
|
243183
244805
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -244425,6 +246047,26 @@ export declare enum UtsLatestAllowanceEnforcementModeType {
|
|
|
244425
246047
|
LimitedOverage = "LIMITED_OVERAGE",
|
|
244426
246048
|
Overage = "OVERAGE"
|
|
244427
246049
|
}
|
|
246050
|
+
export type UtsMeterAllowanceDefaults = {
|
|
246051
|
+
__typename?: 'UtsMeterAllowanceDefaults';
|
|
246052
|
+
enforcementMode?: Maybe<Scalars['String']['output']>;
|
|
246053
|
+
overageCap?: Maybe<UtsMeterOverageCap>;
|
|
246054
|
+
systemLimit?: Maybe<Scalars['Float']['output']>;
|
|
246055
|
+
};
|
|
246056
|
+
export type UtsMeterAllowanceMetadata = {
|
|
246057
|
+
__typename?: 'UtsMeterAllowanceMetadata';
|
|
246058
|
+
allowanceDefaults?: Maybe<UtsMeterAllowanceDefaults>;
|
|
246059
|
+
};
|
|
246060
|
+
export type UtsMeterConfiguration = {
|
|
246061
|
+
__typename?: 'UtsMeterConfiguration';
|
|
246062
|
+
allowanceMetadata?: Maybe<UtsMeterAllowanceMetadata>;
|
|
246063
|
+
usageKey?: Maybe<Scalars['String']['output']>;
|
|
246064
|
+
};
|
|
246065
|
+
export type UtsMeterOverageCap = {
|
|
246066
|
+
__typename?: 'UtsMeterOverageCap';
|
|
246067
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
246068
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
246069
|
+
};
|
|
244428
246070
|
export type UtsUsageAlert = {
|
|
244429
246071
|
__typename?: 'UtsUsageAlert';
|
|
244430
246072
|
createdAt?: Maybe<Scalars['Float']['output']>;
|