@forge/cli-shared 9.0.1-next.6 → 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 +14 -0
- package/out/graphql/graphql-types.d.ts +2027 -108
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +212 -56
- 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;
|
|
@@ -14568,9 +14633,22 @@ export type AssetsVerticalAsyncBundleActionErrorResponse = {
|
|
|
14568
14633
|
export type AssetsVerticalAsyncBundleActionResult = AssetsVerticalAsyncBundleActionErrorResponse | AssetsVerticalAsyncTaskPayload;
|
|
14569
14634
|
export type AssetsVerticalAsyncTask = {
|
|
14570
14635
|
__typename?: 'AssetsVerticalAsyncTask';
|
|
14636
|
+
createdAt: Scalars['DateTime']['output'];
|
|
14571
14637
|
id: Scalars['ID']['output'];
|
|
14572
14638
|
status: AssetsVerticalAsyncTaskStatus;
|
|
14573
14639
|
type: AssetsVerticalAsyncTaskType;
|
|
14640
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
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;
|
|
14574
14652
|
};
|
|
14575
14653
|
export type AssetsVerticalAsyncTaskInfo = {
|
|
14576
14654
|
__typename?: 'AssetsVerticalAsyncTaskInfo';
|
|
@@ -14582,11 +14660,29 @@ export type AssetsVerticalAsyncTaskPayload = Payload & {
|
|
|
14582
14660
|
success: Scalars['Boolean']['output'];
|
|
14583
14661
|
taskId?: Maybe<Scalars['String']['output']>;
|
|
14584
14662
|
};
|
|
14663
|
+
export declare enum AssetsVerticalAsyncTaskQueryErrorCode {
|
|
14664
|
+
NotFound = "NOT_FOUND",
|
|
14665
|
+
PermissionDenied = "PERMISSION_DENIED",
|
|
14666
|
+
ValidationFailed = "VALIDATION_FAILED"
|
|
14667
|
+
}
|
|
14668
|
+
export type AssetsVerticalAsyncTaskQueryErrorExtension = QueryErrorExtension & {
|
|
14669
|
+
__typename?: 'AssetsVerticalAsyncTaskQueryErrorExtension';
|
|
14670
|
+
code?: Maybe<AssetsVerticalAsyncTaskQueryErrorCode>;
|
|
14671
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
14672
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
14673
|
+
};
|
|
14674
|
+
export type AssetsVerticalAsyncTaskResult = AssetsVerticalAsyncTaskSuccess | QueryError;
|
|
14585
14675
|
export declare enum AssetsVerticalAsyncTaskStatus {
|
|
14586
|
-
|
|
14676
|
+
Archived = "ARCHIVED",
|
|
14587
14677
|
Failed = "FAILED",
|
|
14588
|
-
InProgress = "IN_PROGRESS"
|
|
14678
|
+
InProgress = "IN_PROGRESS",
|
|
14679
|
+
Queued = "QUEUED",
|
|
14680
|
+
Succeeded = "SUCCEEDED"
|
|
14589
14681
|
}
|
|
14682
|
+
export type AssetsVerticalAsyncTaskSuccess = {
|
|
14683
|
+
__typename?: 'AssetsVerticalAsyncTaskSuccess';
|
|
14684
|
+
task: AssetsVerticalAsyncTask;
|
|
14685
|
+
};
|
|
14590
14686
|
export declare enum AssetsVerticalAsyncTaskType {
|
|
14591
14687
|
BundleInstantiation = "BUNDLE_INSTANTIATION",
|
|
14592
14688
|
VerticalProvisioning = "VERTICAL_PROVISIONING"
|
|
@@ -14675,14 +14771,6 @@ export type AssetsVerticalCreateDepreciationRuleInput = {
|
|
|
14675
14771
|
usefulLifeYears: Scalars['Int']['input'];
|
|
14676
14772
|
verticalInstantiationId: Scalars['ID']['input'];
|
|
14677
14773
|
};
|
|
14678
|
-
export type AssetsVerticalCreateDepreciationRuleWithinInstantiationInput = {
|
|
14679
|
-
assetTypes: Array<AssetsVerticalDepreciationRuleAssetTypeInput>;
|
|
14680
|
-
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
14681
|
-
method: AssetsVerticalDepreciationMethod;
|
|
14682
|
-
name: Scalars['String']['input'];
|
|
14683
|
-
salvageValue: Scalars['Float']['input'];
|
|
14684
|
-
usefulLifeYears: Scalars['Int']['input'];
|
|
14685
|
-
};
|
|
14686
14774
|
export type AssetsVerticalCreateItemMappingEntryInput = {
|
|
14687
14775
|
itemId: Scalars['ID']['input'];
|
|
14688
14776
|
itemType: AssetsVerticalItemType;
|
|
@@ -14711,7 +14799,6 @@ export type AssetsVerticalCreateVerticalInstantiationCategoryInput = {
|
|
|
14711
14799
|
export type AssetsVerticalCreateVerticalInstantiationInput = {
|
|
14712
14800
|
categories?: InputMaybe<Array<AssetsVerticalVerticalInstantiationInlineCategoryInput>>;
|
|
14713
14801
|
cloudId: Scalars['ID']['input'];
|
|
14714
|
-
depreciationRules?: InputMaybe<Array<AssetsVerticalCreateDepreciationRuleWithinInstantiationInput>>;
|
|
14715
14802
|
type: AssetsVerticalVerticalType;
|
|
14716
14803
|
};
|
|
14717
14804
|
export type AssetsVerticalCreateWorkbenchDashboardInput = {
|
|
@@ -15452,7 +15539,6 @@ export type AssetsVerticalUpdateVerticalInstantiationCategoryInput = {
|
|
|
15452
15539
|
export type AssetsVerticalUpdateVerticalInstantiationInput = {
|
|
15453
15540
|
categories?: InputMaybe<Array<AssetsVerticalVerticalInstantiationCategoryWithSelectionsInput>>;
|
|
15454
15541
|
cloudId: Scalars['ID']['input'];
|
|
15455
|
-
depreciationRules?: InputMaybe<Array<AssetsVerticalCreateDepreciationRuleWithinInstantiationInput>>;
|
|
15456
15542
|
id: Scalars['ID']['input'];
|
|
15457
15543
|
};
|
|
15458
15544
|
export type AssetsVerticalUserPrincipal = {
|
|
@@ -15585,7 +15671,6 @@ export declare enum AssetsVerticalVerticalInstantiationErrorCode {
|
|
|
15585
15671
|
}
|
|
15586
15672
|
export type AssetsVerticalVerticalInstantiationInlineCategoryInput = {
|
|
15587
15673
|
category?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryType>;
|
|
15588
|
-
type?: InputMaybe<AssetsVerticalVerticalInstantiationCategoryType>;
|
|
15589
15674
|
};
|
|
15590
15675
|
export type AssetsVerticalVerticalInstantiationMutationErrorExtension = MutationErrorExtension & {
|
|
15591
15676
|
__typename?: 'AssetsVerticalVerticalInstantiationMutationErrorExtension';
|
|
@@ -41064,10 +41149,73 @@ export type CustomerServiceAssetsMediaClientConfig = {
|
|
|
41064
41149
|
mediaBaseUrl?: Maybe<Scalars['String']['output']>;
|
|
41065
41150
|
mediaJwtToken?: Maybe<Scalars['String']['output']>;
|
|
41066
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
|
+
};
|
|
41067
41208
|
export type CustomerServiceAssetsObjectTypeIcon = {
|
|
41068
41209
|
__typename?: 'CustomerServiceAssetsObjectTypeIcon';
|
|
41069
41210
|
url48?: Maybe<Scalars['String']['output']>;
|
|
41070
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
|
+
};
|
|
41071
41219
|
export type CustomerServiceAttribute = Node & {
|
|
41072
41220
|
__typename?: 'CustomerServiceAttribute';
|
|
41073
41221
|
config?: Maybe<CustomerServiceAttributeConfigMetadata>;
|
|
@@ -41103,6 +41251,7 @@ export type CustomerServiceAttributeCreatePayload = Payload & {
|
|
|
41103
41251
|
successfullyCreatedAttribute?: Maybe<CustomerServiceAttribute>;
|
|
41104
41252
|
};
|
|
41105
41253
|
export type CustomerServiceAttributeCreateTypeInput = {
|
|
41254
|
+
assetsObjectTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
41106
41255
|
name?: InputMaybe<CustomerServiceAttributeTypeName>;
|
|
41107
41256
|
options?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
41108
41257
|
};
|
|
@@ -41356,6 +41505,7 @@ export type CustomerServiceCustomDetailCreatePayload = Payload & {
|
|
|
41356
41505
|
successfullyCreatedCustomDetail?: Maybe<CustomerServiceCustomDetail>;
|
|
41357
41506
|
};
|
|
41358
41507
|
export type CustomerServiceCustomDetailCreateTypeInput = {
|
|
41508
|
+
assetsObjectTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
41359
41509
|
name?: InputMaybe<CustomerServiceCustomDetailTypeName>;
|
|
41360
41510
|
options?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
41361
41511
|
};
|
|
@@ -42981,6 +43131,31 @@ export type DemoMercuryFocusArea = {
|
|
|
42981
43131
|
id: Scalars['ID']['output'];
|
|
42982
43132
|
name: Scalars['String']['output'];
|
|
42983
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
|
+
}
|
|
42984
43159
|
export type DeploymentPipeline = {
|
|
42985
43160
|
__typename?: 'DeploymentPipeline';
|
|
42986
43161
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -43269,6 +43444,10 @@ export type DevAiAutodevNextAssociatedWorkstream = {
|
|
|
43269
43444
|
name?: Maybe<Scalars['String']['output']>;
|
|
43270
43445
|
status: Scalars['ID']['output'];
|
|
43271
43446
|
};
|
|
43447
|
+
export declare enum DevAiAutodevNextBoysenberrySessionInitiatorInput {
|
|
43448
|
+
WorkstreamOwner = "WORKSTREAM_OWNER",
|
|
43449
|
+
WorkItemAssignee = "WORK_ITEM_ASSIGNEE"
|
|
43450
|
+
}
|
|
43272
43451
|
export type DevAiAutodevNextCompleteWorkItemRefinementInput = {
|
|
43273
43452
|
cloudId: Scalars['ID']['input'];
|
|
43274
43453
|
repository?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -43369,10 +43548,12 @@ export declare enum DevAiAutodevNextNotificationFrequency {
|
|
|
43369
43548
|
export type DevAiAutodevNextNotificationSettings = {
|
|
43370
43549
|
__typename?: 'DevAiAutodevNextNotificationSettings';
|
|
43371
43550
|
frequency?: Maybe<DevAiAutodevNextNotificationFrequency>;
|
|
43551
|
+
scheduledNotificationMessageTemplate?: Maybe<Scalars['String']['output']>;
|
|
43372
43552
|
welcomeMessageTemplate?: Maybe<Scalars['String']['output']>;
|
|
43373
43553
|
};
|
|
43374
43554
|
export type DevAiAutodevNextNotificationSettingsInput = {
|
|
43375
43555
|
frequency?: InputMaybe<DevAiAutodevNextNotificationFrequency>;
|
|
43556
|
+
scheduledNotificationMessageTemplate?: InputMaybe<Scalars['String']['input']>;
|
|
43376
43557
|
welcomeMessageTemplate?: InputMaybe<Scalars['String']['input']>;
|
|
43377
43558
|
};
|
|
43378
43559
|
export declare enum DevAiAutodevNextNudgeRequestScope {
|
|
@@ -43622,6 +43803,7 @@ export declare enum DevAiAutodevNextWorkstreamMemberRole {
|
|
|
43622
43803
|
export type DevAiAutodevNextWorkstreamSettings = {
|
|
43623
43804
|
__typename?: 'DevAiAutodevNextWorkstreamSettings';
|
|
43624
43805
|
assignees?: Maybe<Array<User>>;
|
|
43806
|
+
boysenberrySessionInitiator?: Maybe<Scalars['ID']['output']>;
|
|
43625
43807
|
classificationRepositoryUrl?: Maybe<Scalars['String']['output']>;
|
|
43626
43808
|
defaultJiraProjectAri?: Maybe<Scalars['ID']['output']>;
|
|
43627
43809
|
eligibilityCriteria?: Maybe<Scalars['String']['output']>;
|
|
@@ -43636,6 +43818,7 @@ export type DevAiAutodevNextWorkstreamSettings = {
|
|
|
43636
43818
|
};
|
|
43637
43819
|
export type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
43638
43820
|
assignees?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
43821
|
+
boysenberrySessionInitiator?: InputMaybe<DevAiAutodevNextBoysenberrySessionInitiatorInput>;
|
|
43639
43822
|
classificationRepositoryUrl?: InputMaybe<Scalars['String']['input']>;
|
|
43640
43823
|
defaultJiraProjectAri?: InputMaybe<Scalars['ID']['input']>;
|
|
43641
43824
|
eligibilityCriteria?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -43978,6 +44161,12 @@ export declare enum DevAiFlowSessionsStatus {
|
|
|
43978
44161
|
Paused = "PAUSED",
|
|
43979
44162
|
Pending = "PENDING"
|
|
43980
44163
|
}
|
|
44164
|
+
export declare enum DevAiFlowUseCaseId {
|
|
44165
|
+
Automation = "AUTOMATION",
|
|
44166
|
+
CodeStandards = "CODE_STANDARDS",
|
|
44167
|
+
Jca = "JCA",
|
|
44168
|
+
JiraAiFixBuild = "JIRA_AI_FIX_BUILD"
|
|
44169
|
+
}
|
|
43981
44170
|
export type DevAiGenericAutodevLog = DevAiAutodevLog & {
|
|
43982
44171
|
__typename?: 'DevAiGenericAutodevLog';
|
|
43983
44172
|
attributes?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -44440,6 +44629,11 @@ export declare enum DevAiScanIntervalUnit {
|
|
|
44440
44629
|
Months = "MONTHS",
|
|
44441
44630
|
Weeks = "WEEKS"
|
|
44442
44631
|
}
|
|
44632
|
+
export declare enum DevAiScmFilter {
|
|
44633
|
+
All = "ALL",
|
|
44634
|
+
Bitbucket = "BITBUCKET",
|
|
44635
|
+
Github = "GITHUB"
|
|
44636
|
+
}
|
|
44443
44637
|
export declare enum DevAiSessionStatusCategoryFilter {
|
|
44444
44638
|
All = "ALL",
|
|
44445
44639
|
Completed = "COMPLETED",
|
|
@@ -47832,7 +48026,7 @@ export type ExternalAssociationEdge = {
|
|
|
47832
48026
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
47833
48027
|
node?: Maybe<ExternalAssociation>;
|
|
47834
48028
|
};
|
|
47835
|
-
export type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTempMicrosoftTeamsMessage | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
48029
|
+
export type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalServicenowBusinessApp | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTempMicrosoftTeamsMessage | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
47836
48030
|
export type ExternalAttachment = {
|
|
47837
48031
|
__typename?: 'ExternalAttachment';
|
|
47838
48032
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -48711,6 +48905,7 @@ export type ExternalEntities = {
|
|
|
48711
48905
|
pullRequest?: Maybe<Array<Maybe<ExternalPullRequest>>>;
|
|
48712
48906
|
remoteLink?: Maybe<Array<Maybe<ExternalRemoteLink>>>;
|
|
48713
48907
|
repository?: Maybe<Array<Maybe<ExternalRepository>>>;
|
|
48908
|
+
servicenowBusinessApp?: Maybe<Array<Maybe<ExternalServicenowBusinessApp>>>;
|
|
48714
48909
|
softwareService?: Maybe<Array<Maybe<ExternalSoftwareService>>>;
|
|
48715
48910
|
space?: Maybe<Array<Maybe<ExternalSpace>>>;
|
|
48716
48911
|
team?: Maybe<Array<Maybe<ExternalTeam>>>;
|
|
@@ -48725,7 +48920,7 @@ export type ExternalEntities = {
|
|
|
48725
48920
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
48726
48921
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
48727
48922
|
};
|
|
48728
|
-
export type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTempMicrosoftTeamsMessage | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
48923
|
+
export type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCampaign | ExternalCase | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerContact | ExternalCustomerOrg | ExternalCustomerOrgCategory | ExternalDashboard | ExternalDataTable | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalExperimental | ExternalFeatureFlag | ExternalLead | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalServicenowBusinessApp | ExternalSoftwareService | ExternalSpace | ExternalTeam | ExternalTempMicrosoftTeamsMessage | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalTestStatus | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
48729
48924
|
export type ExternalEntityExtendedValue = {
|
|
48730
48925
|
__typename?: 'ExternalEntityExtendedValue';
|
|
48731
48926
|
dataType?: Maybe<Scalars['String']['output']>;
|
|
@@ -49229,6 +49424,60 @@ export type ExternalSalesPipelineImpact = {
|
|
|
49229
49424
|
numberOfOpportunities?: Maybe<Scalars['Long']['output']>;
|
|
49230
49425
|
numberOfWonOpportunities?: Maybe<Scalars['Long']['output']>;
|
|
49231
49426
|
};
|
|
49427
|
+
export type ExternalServicenowBusinessApp = Node & {
|
|
49428
|
+
__typename?: 'ExternalServicenowBusinessApp';
|
|
49429
|
+
applicationFamily?: Maybe<Scalars['String']['output']>;
|
|
49430
|
+
applicationManager?: Maybe<ExternalUser>;
|
|
49431
|
+
applicationScoringProfile?: Maybe<Scalars['String']['output']>;
|
|
49432
|
+
applicationType?: Maybe<Scalars['String']['output']>;
|
|
49433
|
+
architectureType?: Maybe<Scalars['String']['output']>;
|
|
49434
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
49435
|
+
audienceType?: Maybe<Scalars['String']['output']>;
|
|
49436
|
+
businessProcess?: Maybe<Scalars['String']['output']>;
|
|
49437
|
+
businessUnit?: Maybe<Scalars['String']['output']>;
|
|
49438
|
+
company?: Maybe<Scalars['String']['output']>;
|
|
49439
|
+
container?: Maybe<ExternalEntity>;
|
|
49440
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
49441
|
+
costCenter?: Maybe<Scalars['String']['output']>;
|
|
49442
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
49443
|
+
createdBy?: Maybe<ExternalUser>;
|
|
49444
|
+
dataClassification?: Maybe<Scalars['String']['output']>;
|
|
49445
|
+
department?: Maybe<Scalars['String']['output']>;
|
|
49446
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
49447
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
49448
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
49449
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
49450
|
+
id: Scalars['ID']['output'];
|
|
49451
|
+
installStatus?: Maybe<Scalars['String']['output']>;
|
|
49452
|
+
installType?: Maybe<Scalars['String']['output']>;
|
|
49453
|
+
itApplicationOwner?: Maybe<ExternalUser>;
|
|
49454
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
49455
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
49456
|
+
lifeCycleStage?: Maybe<Scalars['String']['output']>;
|
|
49457
|
+
lifeCycleStageStatus?: Maybe<Scalars['String']['output']>;
|
|
49458
|
+
managedBy?: Maybe<ExternalUser>;
|
|
49459
|
+
manufacturer?: Maybe<Scalars['String']['output']>;
|
|
49460
|
+
migrationStrategy?: Maybe<Scalars['String']['output']>;
|
|
49461
|
+
operationalStatus?: Maybe<Scalars['String']['output']>;
|
|
49462
|
+
ownedBy?: Maybe<ExternalUser>;
|
|
49463
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
49464
|
+
parent?: Maybe<ExternalEntity>;
|
|
49465
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
49466
|
+
platform?: Maybe<Scalars['String']['output']>;
|
|
49467
|
+
platformHost?: Maybe<Scalars['String']['output']>;
|
|
49468
|
+
productSupportStatus?: Maybe<Scalars['String']['output']>;
|
|
49469
|
+
provider?: Maybe<ExternalProvider>;
|
|
49470
|
+
servicenowBusinessAppNumber?: Maybe<Scalars['String']['output']>;
|
|
49471
|
+
supportedBy?: Maybe<ExternalUser>;
|
|
49472
|
+
targetBusinessApp?: Maybe<Scalars['String']['output']>;
|
|
49473
|
+
technologyStack?: Maybe<Scalars['String']['output']>;
|
|
49474
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
49475
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
49476
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
49477
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
49478
|
+
userBase?: Maybe<Scalars['String']['output']>;
|
|
49479
|
+
vendor?: Maybe<Scalars['String']['output']>;
|
|
49480
|
+
};
|
|
49232
49481
|
export type ExternalSoftwareService = Node & {
|
|
49233
49482
|
__typename?: 'ExternalSoftwareService';
|
|
49234
49483
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
@@ -52435,6 +52684,23 @@ export type GraphInferenceGetSimilarJiraItemsResponse = {
|
|
|
52435
52684
|
meta: GraphInferenceSimilarJiraItemsMeta;
|
|
52436
52685
|
root: GraphInferenceSimilarJiraItemsRoot;
|
|
52437
52686
|
};
|
|
52687
|
+
export type GraphInferenceInferredProjectContext = {
|
|
52688
|
+
__typename?: 'GraphInferenceInferredProjectContext';
|
|
52689
|
+
cloudId: Scalars['String']['output'];
|
|
52690
|
+
queryContext: Scalars['String']['output'];
|
|
52691
|
+
};
|
|
52692
|
+
export type GraphInferenceInferredProjectMeResponse = {
|
|
52693
|
+
__typename?: 'GraphInferenceInferredProjectMeResponse';
|
|
52694
|
+
apiVersion?: Maybe<Scalars['String']['output']>;
|
|
52695
|
+
context?: Maybe<GraphInferenceInferredProjectContext>;
|
|
52696
|
+
inferredProjects?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
52697
|
+
viewer?: Maybe<GraphInferenceInferredProjectViewer>;
|
|
52698
|
+
weeklyProgressSummary: Scalars['JSON']['output'];
|
|
52699
|
+
};
|
|
52700
|
+
export type GraphInferenceInferredProjectViewer = {
|
|
52701
|
+
__typename?: 'GraphInferenceInferredProjectViewer';
|
|
52702
|
+
accountId: Scalars['String']['output'];
|
|
52703
|
+
};
|
|
52438
52704
|
export type GraphInferenceJiraEntityContextCandidate = {
|
|
52439
52705
|
__typename?: 'GraphInferenceJiraEntityContextCandidate';
|
|
52440
52706
|
ari: Scalars['String']['output'];
|
|
@@ -53000,6 +53266,7 @@ export type GraphIntegrationMcpServerRequestRejectPayload = Payload & {
|
|
|
53000
53266
|
success: Scalars['Boolean']['output'];
|
|
53001
53267
|
};
|
|
53002
53268
|
export declare enum GraphIntegrationMcpServerRequestSourceType {
|
|
53269
|
+
GalleryMcpServer = "GALLERY_MCP_SERVER",
|
|
53003
53270
|
GlobalMcpServer = "GLOBAL_MCP_SERVER"
|
|
53004
53271
|
}
|
|
53005
53272
|
export declare enum GraphIntegrationMcpServerRequestStatus {
|
|
@@ -56580,8 +56847,20 @@ export type GraphStore = {
|
|
|
56580
56847
|
mercuryOrganizationHasAtlasGoalBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasAtlasGoalConnection>;
|
|
56581
56848
|
mercuryOrganizationHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasAtlasGoalInverseConnection>;
|
|
56582
56849
|
mercuryOrganizationHasAtlasGoalInverseBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasAtlasGoalConnection>;
|
|
56850
|
+
mercuryOrganizationHasMercuryOrganization?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationConnection>;
|
|
56851
|
+
mercuryOrganizationHasMercuryOrganizationBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasMercuryOrganizationConnection>;
|
|
56852
|
+
mercuryOrganizationHasMercuryOrganizationInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationInverseConnection>;
|
|
56853
|
+
mercuryOrganizationHasMercuryOrganizationInverseBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasMercuryOrganizationConnection>;
|
|
56583
56854
|
mercuryOrganizationHasMercuryOrganizationMembership?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipConnection>;
|
|
56584
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>;
|
|
56585
56864
|
mercuryOrganizationSponsorsFocusArea?: Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaConnection>;
|
|
56586
56865
|
mercuryOrganizationSponsorsFocusAreaBatch?: Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaConnection>;
|
|
56587
56866
|
mercuryOrganizationSponsorsFocusAreaInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseConnection>;
|
|
@@ -61736,6 +62015,36 @@ export type GraphStoreMercuryOrganizationHasAtlasGoalInverseBatchArgs = {
|
|
|
61736
62015
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61737
62016
|
sort?: InputMaybe<GraphStoreMercuryOrganizationHasAtlasGoalSortInput>;
|
|
61738
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
|
+
};
|
|
61739
62048
|
export type GraphStoreMercuryOrganizationHasMercuryOrganizationMembershipArgs = {
|
|
61740
62049
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61741
62050
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -61752,6 +62061,66 @@ export type GraphStoreMercuryOrganizationHasMercuryOrganizationMembershipInverse
|
|
|
61752
62061
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
61753
62062
|
sort?: InputMaybe<GraphStoreMercuryOrganizationHasMercuryOrganizationMembershipSortInput>;
|
|
61754
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
|
+
};
|
|
61755
62124
|
export type GraphStoreMercuryOrganizationSponsorsFocusAreaArgs = {
|
|
61756
62125
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61757
62126
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -68056,6 +68425,129 @@ export type GraphStoreBatchMercuryOrganizationHasAtlasGoalStartNode = {
|
|
|
68056
68425
|
id: Scalars['ID']['output'];
|
|
68057
68426
|
};
|
|
68058
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;
|
|
68059
68551
|
export type GraphStoreBatchMercuryOrganizationSponsorsFocusAreaConnection = HasPageInfo & {
|
|
68060
68552
|
__typename?: 'GraphStoreBatchMercuryOrganizationSponsorsFocusAreaConnection';
|
|
68061
68553
|
edges: Array<Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaEdge>>;
|
|
@@ -74245,6 +74737,15 @@ export type GraphStoreMercuryOrganizationHasAtlasGoalSortInput = {
|
|
|
74245
74737
|
export type GraphStoreMercuryOrganizationHasMercuryOrganizationMembershipSortInput = {
|
|
74246
74738
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74247
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
|
+
};
|
|
74248
74749
|
export type GraphStoreMercuryOrganizationSponsorsFocusAreaSortInput = {
|
|
74249
74750
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
74250
74751
|
};
|
|
@@ -81773,6 +82274,33 @@ export type GraphStoreSimplifiedMercuryOrganizationHasAtlasGoalInverseEdge = {
|
|
|
81773
82274
|
};
|
|
81774
82275
|
export type GraphStoreSimplifiedMercuryOrganizationHasAtlasGoalInverseUnion = MercuryOrganization;
|
|
81775
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;
|
|
81776
82304
|
export type GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipConnection = HasPageInfo & {
|
|
81777
82305
|
__typename?: 'GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipConnection';
|
|
81778
82306
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipEdge>>>;
|
|
@@ -81801,6 +82329,63 @@ export type GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembers
|
|
|
81801
82329
|
};
|
|
81802
82330
|
export type GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipInverseUnion = MercuryOrganization;
|
|
81803
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;
|
|
81804
82389
|
export type GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaConnection = HasPageInfo & {
|
|
81805
82390
|
__typename?: 'GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaConnection';
|
|
81806
82391
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaEdge>>>;
|
|
@@ -89894,6 +90479,8 @@ export type GraphStoreV2 = {
|
|
|
89894
90479
|
atlassianUserWatchesConfluenceWhiteboardInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceWhiteboardInverseConnection>;
|
|
89895
90480
|
atlassianUserWatchesFocusFocusArea?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesFocusFocusAreaConnection>;
|
|
89896
90481
|
atlassianUserWatchesFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesFocusFocusAreaInverseConnection>;
|
|
90482
|
+
atlassianUserWatchesFocusOrganization?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationConnection>;
|
|
90483
|
+
atlassianUserWatchesFocusOrganizationInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationInverseConnection>;
|
|
89897
90484
|
bitbucketRepositoryHasExternalPullRequest?: Maybe<GraphStoreV2SimplifiedBitbucketRepositoryHasExternalPullRequestConnection>;
|
|
89898
90485
|
bitbucketRepositoryHasExternalPullRequestInverse?: Maybe<GraphStoreV2SimplifiedBitbucketRepositoryHasExternalPullRequestInverseConnection>;
|
|
89899
90486
|
compassComponentHasCompassComponentLink?: Maybe<GraphStoreV2SimplifiedCompassComponentHasCompassComponentLinkConnection>;
|
|
@@ -90282,8 +90869,12 @@ export type GraphStoreV2 = {
|
|
|
90282
90869
|
focusFocusAreaHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseConnection>;
|
|
90283
90870
|
focusOrganizationHasAtlassianGoal?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalConnection>;
|
|
90284
90871
|
focusOrganizationHasAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalInverseConnection>;
|
|
90872
|
+
focusOrganizationHasChildFocusOrganization?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationConnection>;
|
|
90873
|
+
focusOrganizationHasChildFocusOrganizationInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationInverseConnection>;
|
|
90285
90874
|
focusOrganizationHasFocusOrganizationMembership?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipConnection>;
|
|
90286
90875
|
focusOrganizationHasFocusOrganizationMembershipInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipInverseConnection>;
|
|
90876
|
+
focusOrganizationHasFocusOrganizationStatusUpdate?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateConnection>;
|
|
90877
|
+
focusOrganizationHasFocusOrganizationStatusUpdateInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateInverseConnection>;
|
|
90287
90878
|
focusOrganizationSponsorsFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaConnection>;
|
|
90288
90879
|
focusOrganizationSponsorsFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseConnection>;
|
|
90289
90880
|
focusRiskHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection>;
|
|
@@ -92451,6 +93042,20 @@ export type GraphStoreV2AtlassianUserWatchesFocusFocusAreaInverseArgs = {
|
|
|
92451
93042
|
id: Scalars['ID']['input'];
|
|
92452
93043
|
sort?: InputMaybe<GraphStoreV2AtlassianUserWatchesFocusFocusAreaSortInput>;
|
|
92453
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
|
+
};
|
|
92454
93059
|
export type GraphStoreV2BitbucketRepositoryHasExternalPullRequestArgs = {
|
|
92455
93060
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
92456
93061
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -95174,6 +95779,20 @@ export type GraphStoreV2FocusOrganizationHasAtlassianGoalInverseArgs = {
|
|
|
95174
95779
|
id: Scalars['ID']['input'];
|
|
95175
95780
|
sort?: InputMaybe<GraphStoreV2FocusOrganizationHasAtlassianGoalSortInput>;
|
|
95176
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
|
+
};
|
|
95177
95796
|
export type GraphStoreV2FocusOrganizationHasFocusOrganizationMembershipArgs = {
|
|
95178
95797
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
95179
95798
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -95188,6 +95807,20 @@ export type GraphStoreV2FocusOrganizationHasFocusOrganizationMembershipInverseAr
|
|
|
95188
95807
|
id: Scalars['ID']['input'];
|
|
95189
95808
|
sort?: InputMaybe<GraphStoreV2FocusOrganizationHasFocusOrganizationMembershipSortInput>;
|
|
95190
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
|
+
};
|
|
95191
95824
|
export type GraphStoreV2FocusOrganizationSponsorsFocusFocusAreaArgs = {
|
|
95192
95825
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
95193
95826
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -97174,6 +97807,9 @@ export type GraphStoreV2AtlassianUserWatchesConfluenceWhiteboardSortInput = {
|
|
|
97174
97807
|
export type GraphStoreV2AtlassianUserWatchesFocusFocusAreaSortInput = {
|
|
97175
97808
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
97176
97809
|
};
|
|
97810
|
+
export type GraphStoreV2AtlassianUserWatchesFocusOrganizationSortInput = {
|
|
97811
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
97812
|
+
};
|
|
97177
97813
|
export type GraphStoreV2BitbucketRepositoryHasExternalPullRequestSortInput = {
|
|
97178
97814
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
97179
97815
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -98950,9 +99586,15 @@ export type GraphStoreV2FocusFocusAreaHasWorkEntitySortInput = {
|
|
|
98950
99586
|
export type GraphStoreV2FocusOrganizationHasAtlassianGoalSortInput = {
|
|
98951
99587
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
98952
99588
|
};
|
|
99589
|
+
export type GraphStoreV2FocusOrganizationHasChildFocusOrganizationSortInput = {
|
|
99590
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99591
|
+
};
|
|
98953
99592
|
export type GraphStoreV2FocusOrganizationHasFocusOrganizationMembershipSortInput = {
|
|
98954
99593
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
98955
99594
|
};
|
|
99595
|
+
export type GraphStoreV2FocusOrganizationHasFocusOrganizationStatusUpdateSortInput = {
|
|
99596
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
99597
|
+
};
|
|
98956
99598
|
export type GraphStoreV2FocusOrganizationSponsorsFocusFocusAreaSortInput = {
|
|
98957
99599
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
98958
99600
|
};
|
|
@@ -104506,6 +105148,34 @@ export type GraphStoreV2SimplifiedAtlassianUserWatchesFocusFocusAreaInverseEdge
|
|
|
104506
105148
|
};
|
|
104507
105149
|
export type GraphStoreV2SimplifiedAtlassianUserWatchesFocusFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
104508
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;
|
|
104509
105179
|
export type GraphStoreV2SimplifiedBitbucketRepositoryHasExternalPullRequestConnection = HasPageInfo & HasTotal & {
|
|
104510
105180
|
__typename?: 'GraphStoreV2SimplifiedBitbucketRepositoryHasExternalPullRequestConnection';
|
|
104511
105181
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedBitbucketRepositoryHasExternalPullRequestEdge>>>;
|
|
@@ -109960,6 +110630,34 @@ export type GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalInverseEdge =
|
|
|
109960
110630
|
};
|
|
109961
110631
|
export type GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalInverseUnion = MercuryOrganization;
|
|
109962
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;
|
|
109963
110661
|
export type GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipConnection = HasPageInfo & {
|
|
109964
110662
|
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipConnection';
|
|
109965
110663
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipEdge>>>;
|
|
@@ -109988,6 +110686,34 @@ export type GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershi
|
|
|
109988
110686
|
};
|
|
109989
110687
|
export type GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipInverseUnion = MercuryOrganization;
|
|
109990
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;
|
|
109991
110717
|
export type GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaConnection = HasPageInfo & {
|
|
109992
110718
|
__typename?: 'GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaConnection';
|
|
109993
110719
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaEdge>>>;
|
|
@@ -114878,6 +115604,7 @@ export type HelpCenterBranding = {
|
|
|
114878
115604
|
isLogoAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
114879
115605
|
logo?: Maybe<HelpCenterLogo>;
|
|
114880
115606
|
navigationBar?: Maybe<HelpCenterNavigationBar>;
|
|
115607
|
+
spaceDensity?: Maybe<HelpCenterSpaceDensity>;
|
|
114881
115608
|
typography?: Maybe<HelpCenterBrandingTypography>;
|
|
114882
115609
|
useDefaultBanner?: Maybe<Scalars['Boolean']['output']>;
|
|
114883
115610
|
};
|
|
@@ -114904,6 +115631,7 @@ export type HelpCenterBrandingInput = {
|
|
|
114904
115631
|
homePageTitle?: InputMaybe<HelpCenterHomePageTitleInput>;
|
|
114905
115632
|
logo?: InputMaybe<HelpCenterLogoInput>;
|
|
114906
115633
|
navigationBar?: InputMaybe<HelpCenterNavigationBarInput>;
|
|
115634
|
+
spaceDensity?: InputMaybe<HelpCenterSpaceDensity>;
|
|
114907
115635
|
typography?: InputMaybe<HelpCenterBrandingTypographyInput>;
|
|
114908
115636
|
};
|
|
114909
115637
|
export type HelpCenterBrandingTypography = {
|
|
@@ -115553,6 +116281,11 @@ export declare enum HelpCenterSortOrder {
|
|
|
115553
116281
|
CreatedDateAscending = "CREATED_DATE_ASCENDING",
|
|
115554
116282
|
CreatedDateDescending = "CREATED_DATE_DESCENDING"
|
|
115555
116283
|
}
|
|
116284
|
+
export declare enum HelpCenterSpaceDensity {
|
|
116285
|
+
Comfortable = "COMFORTABLE",
|
|
116286
|
+
Compact = "COMPACT",
|
|
116287
|
+
Default = "DEFAULT"
|
|
116288
|
+
}
|
|
115556
116289
|
export declare enum HelpCenterStatusFilter {
|
|
115557
116290
|
Active = "ACTIVE",
|
|
115558
116291
|
Inactive = "INACTIVE",
|
|
@@ -116968,11 +117701,11 @@ export type HydratingJiraIssueEdge = {
|
|
|
116968
117701
|
};
|
|
116969
117702
|
export type HypothesisIndicator = {
|
|
116970
117703
|
__typename?: 'HypothesisIndicator';
|
|
116971
|
-
hypothesisId: Scalars['
|
|
116972
|
-
hypothesisSummary
|
|
117704
|
+
hypothesisId: Scalars['String']['output'];
|
|
117705
|
+
hypothesisSummary?: Maybe<Scalars['String']['output']>;
|
|
116973
117706
|
hypothesisType?: Maybe<MitigationHypothesisType>;
|
|
116974
|
-
investigationId: Scalars['
|
|
116975
|
-
provenance
|
|
117707
|
+
investigationId: Scalars['String']['output'];
|
|
117708
|
+
provenance?: Maybe<Array<IndicatorProvenance>>;
|
|
116976
117709
|
};
|
|
116977
117710
|
export type Icon = {
|
|
116978
117711
|
__typename?: 'Icon';
|
|
@@ -117006,19 +117739,11 @@ export type IndexHintInputType = {
|
|
|
117006
117739
|
};
|
|
117007
117740
|
export type IndicatorProvenance = {
|
|
117008
117741
|
__typename?: 'IndicatorProvenance';
|
|
117009
|
-
|
|
117010
|
-
|
|
117011
|
-
|
|
117012
|
-
export type IndicatorRejectionPayload = Payload & {
|
|
117013
|
-
__typename?: 'IndicatorRejectionPayload';
|
|
117014
|
-
errors?: Maybe<Array<MutationError>>;
|
|
117015
|
-
indicator?: Maybe<MitigationIndicator>;
|
|
117016
|
-
success: Scalars['Boolean']['output'];
|
|
117742
|
+
link?: Maybe<Scalars['String']['output']>;
|
|
117743
|
+
sourceId: Scalars['String']['output'];
|
|
117744
|
+
sourceType?: Maybe<Scalars['String']['output']>;
|
|
117017
117745
|
};
|
|
117018
117746
|
export declare enum IndicatorRejectionReason {
|
|
117019
|
-
Duplicate = "DUPLICATE",
|
|
117020
|
-
Incorrect = "INCORRECT",
|
|
117021
|
-
LowConfidence = "LOW_CONFIDENCE",
|
|
117022
117747
|
NotRelevant = "NOT_RELEVANT",
|
|
117023
117748
|
Other = "OTHER"
|
|
117024
117749
|
}
|
|
@@ -118550,6 +119275,11 @@ export type JiraAgentSessionsFieldAgentSessionsArgs = {
|
|
|
118550
119275
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
118551
119276
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
118552
119277
|
};
|
|
119278
|
+
export declare enum JiraAgentStateCategory {
|
|
119279
|
+
Finished = "FINISHED",
|
|
119280
|
+
NeedsInput = "NEEDS_INPUT",
|
|
119281
|
+
Working = "WORKING"
|
|
119282
|
+
}
|
|
118553
119283
|
export type JiraAgenticUser = JiraActor & {
|
|
118554
119284
|
__typename?: 'JiraAgenticUser';
|
|
118555
119285
|
agent?: Maybe<AgentStudioAgent>;
|
|
@@ -120646,6 +121376,7 @@ export declare enum JiraBoardType {
|
|
|
120646
121376
|
}
|
|
120647
121377
|
export type JiraBoardView = JiraView & Node & {
|
|
120648
121378
|
__typename?: 'JiraBoardView';
|
|
121379
|
+
autoCompleteSprintErrorCount?: Maybe<Scalars['Int']['output']>;
|
|
120649
121380
|
board?: Maybe<JiraBoard>;
|
|
120650
121381
|
canArchiveIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
120651
121382
|
canAssignIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120670,6 +121401,7 @@ export type JiraBoardView = JiraView & Node & {
|
|
|
120670
121401
|
columns?: Maybe<JiraBoardViewColumnConnection>;
|
|
120671
121402
|
completedIssueSearchCutOffInDays?: Maybe<Scalars['Int']['output']>;
|
|
120672
121403
|
customFilters?: Maybe<JiraSoftwareCustomFilterConnection>;
|
|
121404
|
+
density?: Maybe<JiraBoardViewDensity>;
|
|
120673
121405
|
error?: Maybe<QueryError>;
|
|
120674
121406
|
filterConfig?: Maybe<JiraViewFilterConfig>;
|
|
120675
121407
|
groupByConfig?: Maybe<JiraViewGroupByConfig>;
|
|
@@ -120867,6 +121599,27 @@ export type JiraBoardViewColumnLayoutCellsArgs = {
|
|
|
120867
121599
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
120868
121600
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
120869
121601
|
};
|
|
121602
|
+
export type JiraBoardViewCustomSwimlane = JiraBoardViewCellContainer & JiraBoardViewSwimlane & Node & {
|
|
121603
|
+
__typename?: 'JiraBoardViewCustomSwimlane';
|
|
121604
|
+
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
121605
|
+
collapsed?: Maybe<Scalars['Boolean']['output']>;
|
|
121606
|
+
id: Scalars['ID']['output'];
|
|
121607
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
121608
|
+
totalIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
121609
|
+
};
|
|
121610
|
+
export type JiraBoardViewCustomSwimlaneCellsArgs = {
|
|
121611
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
121612
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
121613
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
121614
|
+
};
|
|
121615
|
+
export type JiraBoardViewCustomSwimlaneTotalIssueCountArgs = {
|
|
121616
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
121617
|
+
};
|
|
121618
|
+
export declare enum JiraBoardViewDensity {
|
|
121619
|
+
Comfortable = "COMFORTABLE",
|
|
121620
|
+
Compact = "COMPACT",
|
|
121621
|
+
Spacious = "SPACIOUS"
|
|
121622
|
+
}
|
|
120870
121623
|
export type JiraBoardViewFieldCardOption = JiraBoardViewCardOption & {
|
|
120871
121624
|
__typename?: 'JiraBoardViewFieldCardOption';
|
|
120872
121625
|
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -120911,6 +121664,7 @@ export type JiraBoardViewIssueCreateInput = {
|
|
|
120911
121664
|
};
|
|
120912
121665
|
export type JiraBoardViewIssueCreatePayload = Payload & {
|
|
120913
121666
|
__typename?: 'JiraBoardViewIssueCreatePayload';
|
|
121667
|
+
boardView?: Maybe<JiraBoardView>;
|
|
120914
121668
|
errors?: Maybe<Array<MutationError>>;
|
|
120915
121669
|
issue?: Maybe<JiraIssue>;
|
|
120916
121670
|
success: Scalars['Boolean']['output'];
|
|
@@ -124707,8 +125461,9 @@ export type JiraDragAndDropBoardViewIssueInput = {
|
|
|
124707
125461
|
rank?: InputMaybe<JiraIssueRankInput>;
|
|
124708
125462
|
transitionId?: InputMaybe<Scalars['Int']['input']>;
|
|
124709
125463
|
};
|
|
124710
|
-
export type JiraDragAndDropBoardViewIssuePayload = {
|
|
125464
|
+
export type JiraDragAndDropBoardViewIssuePayload = Payload & {
|
|
124711
125465
|
__typename?: 'JiraDragAndDropBoardViewIssuePayload';
|
|
125466
|
+
boardView?: Maybe<JiraBoardView>;
|
|
124712
125467
|
cell?: Maybe<JiraBoardViewCell>;
|
|
124713
125468
|
errors?: Maybe<Array<MutationError>>;
|
|
124714
125469
|
issue?: Maybe<JiraIssue>;
|
|
@@ -124753,6 +125508,10 @@ export type JiraEchoWhereInput = {
|
|
|
124753
125508
|
withDataError?: InputMaybe<Scalars['Boolean']['input']>;
|
|
124754
125509
|
withTopLevelError?: InputMaybe<Scalars['Boolean']['input']>;
|
|
124755
125510
|
};
|
|
125511
|
+
export type JiraEcosystemLayoutItem = {
|
|
125512
|
+
__typename?: 'JiraEcosystemLayoutItem';
|
|
125513
|
+
id: Scalars['ID']['output'];
|
|
125514
|
+
};
|
|
124756
125515
|
export type JiraEditCustomFieldInput = {
|
|
124757
125516
|
cloudId: Scalars['ID']['input'];
|
|
124758
125517
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -125255,6 +126014,11 @@ export type JiraFieldKeyValueInput = {
|
|
|
125255
126014
|
key?: InputMaybe<Scalars['String']['input']>;
|
|
125256
126015
|
value?: InputMaybe<Scalars['String']['input']>;
|
|
125257
126016
|
};
|
|
126017
|
+
export type JiraFieldLayoutItem = {
|
|
126018
|
+
__typename?: 'JiraFieldLayoutItem';
|
|
126019
|
+
fieldId: Scalars['ID']['output'];
|
|
126020
|
+
id: Scalars['ID']['output'];
|
|
126021
|
+
};
|
|
125258
126022
|
export type JiraFieldNonEditableReason = {
|
|
125259
126023
|
__typename?: 'JiraFieldNonEditableReason';
|
|
125260
126024
|
message?: Maybe<Scalars['String']['output']>;
|
|
@@ -125960,6 +126724,10 @@ export type JiraForgeInstallationConfigExtension = {
|
|
|
125960
126724
|
key: Scalars['String']['output'];
|
|
125961
126725
|
value: Scalars['Boolean']['output'];
|
|
125962
126726
|
};
|
|
126727
|
+
export type JiraForgeLayoutItem = {
|
|
126728
|
+
__typename?: 'JiraForgeLayoutItem';
|
|
126729
|
+
id: Scalars['ID']['output'];
|
|
126730
|
+
};
|
|
125963
126731
|
export type JiraForgeMultipleGroupPickerFieldOperationInput = {
|
|
125964
126732
|
ids?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
125965
126733
|
names?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -126723,6 +127491,13 @@ export type JiraGroupGrantTypeValue = Node & {
|
|
|
126723
127491
|
export type JiraGroupInput = {
|
|
126724
127492
|
groupName: Scalars['ID']['input'];
|
|
126725
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;
|
|
126726
127501
|
export declare enum JiraGroupManagedBy {
|
|
126727
127502
|
Admins = "ADMINS",
|
|
126728
127503
|
External = "EXTERNAL",
|
|
@@ -128072,6 +128847,7 @@ export type JiraIssueConnection = JiraListRowConnection & {
|
|
|
128072
128847
|
jql?: Maybe<Scalars['String']['output']>;
|
|
128073
128848
|
pageCursors?: Maybe<JiraPageCursors>;
|
|
128074
128849
|
pageInfo: PageInfo;
|
|
128850
|
+
searchWarnings?: Maybe<Array<JiraIssueSearchWarning>>;
|
|
128075
128851
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
128076
128852
|
totalIssueSearchResultCount?: Maybe<Scalars['Int']['output']>;
|
|
128077
128853
|
};
|
|
@@ -128126,6 +128902,17 @@ export type JiraIssueCreateInput = {
|
|
|
128126
128902
|
rank?: InputMaybe<JiraIssueCreateRankInput>;
|
|
128127
128903
|
transitionId?: InputMaybe<Scalars['Int']['input']>;
|
|
128128
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;
|
|
128129
128916
|
export type JiraIssueCreatePayload = Payload & {
|
|
128130
128917
|
__typename?: 'JiraIssueCreatePayload';
|
|
128131
128918
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -128825,6 +129612,10 @@ export type JiraIssueItemTabContainerItemEdge = {
|
|
|
128825
129612
|
cursor: Scalars['String']['output'];
|
|
128826
129613
|
node?: Maybe<JiraIssueItemTabContainerItem>;
|
|
128827
129614
|
};
|
|
129615
|
+
export declare enum JiraIssueLayoutType {
|
|
129616
|
+
CustomUserConfiguredLayout = "CUSTOM_USER_CONFIGURED_LAYOUT",
|
|
129617
|
+
DefaultAdminConfiguredLayout = "DEFAULT_ADMIN_CONFIGURED_LAYOUT"
|
|
129618
|
+
}
|
|
128828
129619
|
export declare enum JiraIssueLifecycleState {
|
|
128829
129620
|
Active = "ACTIVE",
|
|
128830
129621
|
Archived = "ARCHIVED"
|
|
@@ -129698,6 +130489,10 @@ export type JiraIssueSearchViewQueryInput = {
|
|
|
129698
130489
|
viewAri?: InputMaybe<Scalars['ID']['input']>;
|
|
129699
130490
|
};
|
|
129700
130491
|
export type JiraIssueSearchViewResult = JiraIssueSearchView | QueryError;
|
|
130492
|
+
export type JiraIssueSearchWarning = {
|
|
130493
|
+
__typename?: 'JiraIssueSearchWarning';
|
|
130494
|
+
message: Scalars['String']['output'];
|
|
130495
|
+
};
|
|
129701
130496
|
export type JiraIssueSection = {
|
|
129702
130497
|
__typename?: 'JiraIssueSection';
|
|
129703
130498
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -130443,6 +131238,14 @@ export type JiraJourneyWorkdayIntegrationTriggerConfigurationInput = {
|
|
|
130443
131238
|
ruleId?: InputMaybe<Scalars['ID']['input']>;
|
|
130444
131239
|
type?: InputMaybe<JiraJourneyTriggerType>;
|
|
130445
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
|
+
};
|
|
130446
131249
|
export type JiraJqlAtlasProjectFieldValue = JiraJqlFieldValue & {
|
|
130447
131250
|
__typename?: 'JiraJqlAtlasProjectFieldValue';
|
|
130448
131251
|
displayName: Scalars['String']['output'];
|
|
@@ -130622,6 +131425,15 @@ export declare enum JiraJqlClauseType {
|
|
|
130622
131425
|
OrderBy = "ORDER_BY",
|
|
130623
131426
|
Where = "WHERE"
|
|
130624
131427
|
}
|
|
131428
|
+
export type JiraJqlCmdbFieldValue = JiraJqlFieldValue & {
|
|
131429
|
+
__typename?: 'JiraJqlCmdbFieldValue';
|
|
131430
|
+
avatar?: Maybe<JiraCmdbAvatar>;
|
|
131431
|
+
displayName: Scalars['String']['output'];
|
|
131432
|
+
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
131433
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
131434
|
+
jqlTerm: Scalars['String']['output'];
|
|
131435
|
+
objectKey?: Maybe<Scalars['String']['output']>;
|
|
131436
|
+
};
|
|
130625
131437
|
export type JiraJqlComponentFieldValue = JiraJqlFieldValue & {
|
|
130626
131438
|
__typename?: 'JiraJqlComponentFieldValue';
|
|
130627
131439
|
component?: Maybe<JiraComponent>;
|
|
@@ -131169,6 +131981,7 @@ export declare enum JiraKanbanDestination {
|
|
|
131169
131981
|
export type JiraLabel = {
|
|
131170
131982
|
__typename?: 'JiraLabel';
|
|
131171
131983
|
color?: Maybe<JiraColor>;
|
|
131984
|
+
isAboveThreshold?: Maybe<Scalars['Boolean']['output']>;
|
|
131172
131985
|
labelId?: Maybe<Scalars['String']['output']>;
|
|
131173
131986
|
name?: Maybe<Scalars['String']['output']>;
|
|
131174
131987
|
};
|
|
@@ -131277,11 +132090,13 @@ export type JiraLabelsForCreateFieldLabelExistsArgs = {
|
|
|
131277
132090
|
export type JiraLabelsForCreateFieldLabelsArgs = {
|
|
131278
132091
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131279
132092
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
132093
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
131280
132094
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131281
132095
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131282
132096
|
searchBy?: InputMaybe<Scalars['String']['input']>;
|
|
131283
132097
|
sessionId?: InputMaybe<Scalars['ID']['input']>;
|
|
131284
132098
|
suggested?: InputMaybe<Scalars['Boolean']['input']>;
|
|
132099
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
131285
132100
|
};
|
|
131286
132101
|
export type JiraLabelsInput = {
|
|
131287
132102
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -132251,6 +133066,7 @@ export type JiraMutation = {
|
|
|
132251
133066
|
updateJiraVersionApproverDeclineReason?: Maybe<JiraVersionUpdateApproverDeclineReasonPayload>;
|
|
132252
133067
|
updateJiraVersionApproverDescription?: Maybe<JiraVersionUpdateApproverDescriptionPayload>;
|
|
132253
133068
|
updateJiraVersionApproverStatus?: Maybe<JiraVersionUpdateApproverStatusPayload>;
|
|
133069
|
+
updateJiraVersionCurrentStage?: Maybe<JiraUpdateVersionPayload>;
|
|
132254
133070
|
updateJiraVersionDriver?: Maybe<JiraUpdateVersionPayload>;
|
|
132255
133071
|
updateJiraVersionPosition?: Maybe<JiraUpdateVersionPayload>;
|
|
132256
133072
|
updateJiraVersionRichTextSectionContent?: Maybe<JiraUpdateVersionPayload>;
|
|
@@ -132949,6 +133765,9 @@ export type JiraMutationUpdateJiraVersionApproverDescriptionArgs = {
|
|
|
132949
133765
|
export type JiraMutationUpdateJiraVersionApproverStatusArgs = {
|
|
132950
133766
|
input: JiraVersionUpdateApproverStatusInput;
|
|
132951
133767
|
};
|
|
133768
|
+
export type JiraMutationUpdateJiraVersionCurrentStageArgs = {
|
|
133769
|
+
input: JiraUpdateVersionCurrentStageInput;
|
|
133770
|
+
};
|
|
132952
133771
|
export type JiraMutationUpdateJiraVersionDriverArgs = {
|
|
132953
133772
|
input: JiraUpdateVersionDriverInput;
|
|
132954
133773
|
};
|
|
@@ -134020,6 +134839,10 @@ export declare enum JiraPaginationStyle {
|
|
|
134020
134839
|
Cursor = "CURSOR",
|
|
134021
134840
|
Offset = "OFFSET"
|
|
134022
134841
|
}
|
|
134842
|
+
export type JiraPanelLayoutItem = {
|
|
134843
|
+
__typename?: 'JiraPanelLayoutItem';
|
|
134844
|
+
id: Scalars['ID']['output'];
|
|
134845
|
+
};
|
|
134023
134846
|
export type JiraParentFieldInput = {
|
|
134024
134847
|
issueId: Scalars['ID']['input'];
|
|
134025
134848
|
};
|
|
@@ -136311,6 +137134,7 @@ export type JiraQuery = {
|
|
|
136311
137134
|
jiraProjectsMappedToHelpCenter?: Maybe<JiraProjectConnection>;
|
|
136312
137135
|
jiraServiceManagementRequestTypeCategoriesByProject?: Maybe<JiraServiceManagementRequestTypeCategoryConnection>;
|
|
136313
137136
|
jiraServiceManagementSlaIssue?: Maybe<JiraServiceManagementSlaIssueResult>;
|
|
137137
|
+
jiraVersionStageInfoByIds?: Maybe<Array<Maybe<JiraVersionStageInfo>>>;
|
|
136314
137138
|
jiraWorkItemJourneys?: Maybe<JiraJourneyConnection>;
|
|
136315
137139
|
jira_recommendedAgents?: Maybe<JiraActorConnection>;
|
|
136316
137140
|
jira_semanticAgentRecommender?: Maybe<JiraSemanticAgentRecommenderConnection>;
|
|
@@ -137195,6 +138019,9 @@ export type JiraQueryJiraServiceManagementSlaIssueArgs = {
|
|
|
137195
138019
|
cloudId: Scalars['ID']['input'];
|
|
137196
138020
|
issueKey: Scalars['String']['input'];
|
|
137197
138021
|
};
|
|
138022
|
+
export type JiraQueryJiraVersionStageInfoByIdsArgs = {
|
|
138023
|
+
ids: Array<Scalars['ID']['input']>;
|
|
138024
|
+
};
|
|
137198
138025
|
export type JiraQueryJiraWorkItemJourneysArgs = {
|
|
137199
138026
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
137200
138027
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -137984,6 +138811,7 @@ export type JiraReleaseHistoryConnection = {
|
|
|
137984
138811
|
};
|
|
137985
138812
|
export type JiraReleaseHistoryEdge = {
|
|
137986
138813
|
__typename?: 'JiraReleaseHistoryEdge';
|
|
138814
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
137987
138815
|
node: JiraReleaseHistoryItem;
|
|
137988
138816
|
};
|
|
137989
138817
|
export type JiraReleaseHistoryGenericFieldValue = {
|
|
@@ -137993,6 +138821,7 @@ export type JiraReleaseHistoryGenericFieldValue = {
|
|
|
137993
138821
|
export type JiraReleaseHistoryItem = {
|
|
137994
138822
|
__typename?: 'JiraReleaseHistoryItem';
|
|
137995
138823
|
actor?: Maybe<User>;
|
|
138824
|
+
eventId?: Maybe<Scalars['String']['output']>;
|
|
137996
138825
|
fieldId?: Maybe<Scalars['String']['output']>;
|
|
137997
138826
|
from?: Maybe<JiraReleaseHistoryValue>;
|
|
137998
138827
|
i18nDescription?: Maybe<Scalars['String']['output']>;
|
|
@@ -138688,6 +139517,9 @@ export type JiraReportsPage = {
|
|
|
138688
139517
|
__typename?: 'JiraReportsPage';
|
|
138689
139518
|
categories?: Maybe<Array<Maybe<JiraReportCategory>>>;
|
|
138690
139519
|
};
|
|
139520
|
+
export type JiraRequestTypeInput = {
|
|
139521
|
+
key: Scalars['String']['input'];
|
|
139522
|
+
};
|
|
138691
139523
|
export type JiraResetFaviconInput = {
|
|
138692
139524
|
cloudId: Scalars['ID']['input'];
|
|
138693
139525
|
};
|
|
@@ -139423,6 +140255,12 @@ export declare enum JiraSearchableEntityType {
|
|
|
139423
140255
|
Project = "PROJECT",
|
|
139424
140256
|
Queue = "QUEUE"
|
|
139425
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;
|
|
139426
140264
|
export type JiraSecurityLevel = Node & {
|
|
139427
140265
|
__typename?: 'JiraSecurityLevel';
|
|
139428
140266
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -141134,6 +141972,17 @@ export type JiraSetBoardViewCompletedIssueSearchCutOffPayload = Payload & {
|
|
|
141134
141972
|
errors?: Maybe<Array<MutationError>>;
|
|
141135
141973
|
success: Scalars['Boolean']['output'];
|
|
141136
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
|
+
};
|
|
141137
141986
|
export type JiraSetBoardViewFilterInput = {
|
|
141138
141987
|
jql: Scalars['String']['input'];
|
|
141139
141988
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
@@ -142083,6 +142932,7 @@ export type JiraSpaceSearchForYouEdge = {
|
|
|
142083
142932
|
cursor: Scalars['String']['output'];
|
|
142084
142933
|
node?: Maybe<JiraProject>;
|
|
142085
142934
|
projectId: Scalars['ID']['output'];
|
|
142935
|
+
recommendationType?: Maybe<JiraSpaceSearchForYouRecommendationType>;
|
|
142086
142936
|
};
|
|
142087
142937
|
export type JiraSpaceSearchForYouError = {
|
|
142088
142938
|
__typename?: 'JiraSpaceSearchForYouError';
|
|
@@ -142095,6 +142945,15 @@ export type JiraSpaceSearchForYouInput = {
|
|
|
142095
142945
|
teamId?: InputMaybe<Scalars['ID']['input']>;
|
|
142096
142946
|
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
142097
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
|
+
}
|
|
142098
142957
|
export type JiraSpreadsheetGroup = {
|
|
142099
142958
|
__typename?: 'JiraSpreadsheetGroup';
|
|
142100
142959
|
afterGroupId?: Maybe<Scalars['String']['output']>;
|
|
@@ -142554,6 +143413,7 @@ export type JiraSubscription = {
|
|
|
142554
143413
|
__typename?: 'JiraSubscription';
|
|
142555
143414
|
bulkOperationProgressSubscription?: Maybe<JiraIssueBulkOperationProgress>;
|
|
142556
143415
|
onAiAgentSessionCreate?: Maybe<JiraAiAgentSession>;
|
|
143416
|
+
onAiAgentSessionCreateByProjects?: Maybe<JiraAgentSessionCreateEvent>;
|
|
142557
143417
|
onAiAgentSessionCreateV2?: Maybe<JiraAgentSessionCreateEvent>;
|
|
142558
143418
|
onAiAgentSessionCreateV3?: Maybe<JiraAgentSessionCreateEvent>;
|
|
142559
143419
|
onAttachmentCreatedByProjects?: Maybe<JiraPlatformAttachment>;
|
|
@@ -142600,6 +143460,10 @@ export type JiraSubscriptionOnAiAgentSessionCreateArgs = {
|
|
|
142600
143460
|
cloudId: Scalars['ID']['input'];
|
|
142601
143461
|
issueId: Scalars['String']['input'];
|
|
142602
143462
|
};
|
|
143463
|
+
export type JiraSubscriptionOnAiAgentSessionCreateByProjectsArgs = {
|
|
143464
|
+
cloudId: Scalars['ID']['input'];
|
|
143465
|
+
projectIds: Array<Scalars['String']['input']>;
|
|
143466
|
+
};
|
|
142603
143467
|
export type JiraSubscriptionOnAiAgentSessionCreateV2Args = {
|
|
142604
143468
|
accountId: Scalars['String']['input'];
|
|
142605
143469
|
cloudId: Scalars['ID']['input'];
|
|
@@ -142894,6 +143758,14 @@ export type JiraSystemFilterEdge = {
|
|
|
142894
143758
|
cursor: Scalars['String']['output'];
|
|
142895
143759
|
node?: Maybe<JiraSystemFilter>;
|
|
142896
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
|
+
};
|
|
142897
143769
|
export type JiraTeam = Node & {
|
|
142898
143770
|
__typename?: 'JiraTeam';
|
|
142899
143771
|
avatar?: Maybe<JiraAvatar>;
|
|
@@ -144120,6 +144992,10 @@ export type JiraUpdateVersionArchivedStatusInput = {
|
|
|
144120
144992
|
id: Scalars['ID']['input'];
|
|
144121
144993
|
isArchived: Scalars['Boolean']['input'];
|
|
144122
144994
|
};
|
|
144995
|
+
export type JiraUpdateVersionCurrentStageInput = {
|
|
144996
|
+
currentStage: Scalars['String']['input'];
|
|
144997
|
+
id: Scalars['ID']['input'];
|
|
144998
|
+
};
|
|
144123
144999
|
export type JiraUpdateVersionDescriptionInput = {
|
|
144124
145000
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
144125
145001
|
id: Scalars['ID']['input'];
|
|
@@ -144571,6 +145447,7 @@ export type JiraVersion = JiraScenarioVersionLike & JiraSelectableValue & Node &
|
|
|
144571
145447
|
selectableIconUrl?: Maybe<Scalars['URL']['output']>;
|
|
144572
145448
|
selectableLabel?: Maybe<Scalars['String']['output']>;
|
|
144573
145449
|
selectableUrl?: Maybe<Scalars['URL']['output']>;
|
|
145450
|
+
stageInfo?: Maybe<JiraVersionStageInfo>;
|
|
144574
145451
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
144575
145452
|
statistics?: Maybe<JiraVersionStatistics>;
|
|
144576
145453
|
status?: Maybe<JiraVersionStatus>;
|
|
@@ -144608,6 +145485,7 @@ export type JiraVersionEpicsForFilterArgs = {
|
|
|
144608
145485
|
export type JiraVersionHistoryArgs = {
|
|
144609
145486
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
144610
145487
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
145488
|
+
orderBy?: InputMaybe<SortDirection>;
|
|
144611
145489
|
};
|
|
144612
145490
|
export type JiraVersionIssueAssociatedDesignsArgs = {
|
|
144613
145491
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -144729,11 +145607,13 @@ export type JiraVersionContributorEdge = {
|
|
|
144729
145607
|
node?: Maybe<User>;
|
|
144730
145608
|
};
|
|
144731
145609
|
export type JiraVersionCreateMutationInput = {
|
|
145610
|
+
approvalsRequired?: InputMaybe<Scalars['Boolean']['input']>;
|
|
144732
145611
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
144733
145612
|
driver?: InputMaybe<Scalars['ID']['input']>;
|
|
144734
145613
|
name: Scalars['String']['input'];
|
|
144735
145614
|
projectId: Scalars['ID']['input'];
|
|
144736
145615
|
releaseDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
145616
|
+
stages?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
144737
145617
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
144738
145618
|
};
|
|
144739
145619
|
export type JiraVersionDeleteApproverPayload = Payload & {
|
|
@@ -144980,6 +145860,13 @@ export type JiraVersionSortInput = {
|
|
|
144980
145860
|
order: SortDirection;
|
|
144981
145861
|
sortByField: JiraVersionSortField;
|
|
144982
145862
|
};
|
|
145863
|
+
export type JiraVersionStageInfo = {
|
|
145864
|
+
__typename?: 'JiraVersionStageInfo';
|
|
145865
|
+
approvalsRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
145866
|
+
currentStage?: Maybe<Scalars['String']['output']>;
|
|
145867
|
+
id: Scalars['ID']['output'];
|
|
145868
|
+
stages?: Maybe<Array<Scalars['String']['output']>>;
|
|
145869
|
+
};
|
|
144983
145870
|
export type JiraVersionStatistics = {
|
|
144984
145871
|
__typename?: 'JiraVersionStatistics';
|
|
144985
145872
|
done?: Maybe<Scalars['Int']['output']>;
|
|
@@ -145042,11 +145929,13 @@ export type JiraVersionUpdateApproverStatusPayload = Payload & {
|
|
|
145042
145929
|
success: Scalars['Boolean']['output'];
|
|
145043
145930
|
};
|
|
145044
145931
|
export type JiraVersionUpdateMutationInput = {
|
|
145932
|
+
approvalsRequired?: InputMaybe<Scalars['Boolean']['input']>;
|
|
145045
145933
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
145046
145934
|
driver?: InputMaybe<Scalars['ID']['input']>;
|
|
145047
145935
|
id: Scalars['ID']['input'];
|
|
145048
145936
|
name: Scalars['String']['input'];
|
|
145049
145937
|
releaseDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
145938
|
+
stages?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
145050
145939
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
145051
145940
|
};
|
|
145052
145941
|
export type JiraVersionUpdatedWarningConfigInput = {
|
|
@@ -146846,9 +147735,11 @@ export type JsmChannelsRovoServiceResolutionPlanGeneratedResult = JsmChannelsRov
|
|
|
146846
147735
|
export type JsmChannelsRovoServiceSkill = {
|
|
146847
147736
|
__typename?: 'JsmChannelsRovoServiceSkill';
|
|
146848
147737
|
authStatus: JsmChannelsRovoServiceSkillAuthStatus;
|
|
147738
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
146849
147739
|
connectUrl?: Maybe<Scalars['String']['output']>;
|
|
146850
147740
|
description?: Maybe<Scalars['String']['output']>;
|
|
146851
147741
|
displayName: Scalars['String']['output'];
|
|
147742
|
+
iconKey?: Maybe<Scalars['String']['output']>;
|
|
146852
147743
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
146853
147744
|
id: Scalars['ID']['output'];
|
|
146854
147745
|
integrationKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -147929,6 +148820,439 @@ export declare enum JsmSolutionComposerStepStatusType {
|
|
|
147929
148820
|
Failed = "FAILED",
|
|
147930
148821
|
InProgress = "IN_PROGRESS"
|
|
147931
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
|
+
};
|
|
147932
149256
|
export type JsonContentProperty = {
|
|
147933
149257
|
__typename?: 'JsonContentProperty';
|
|
147934
149258
|
content?: Maybe<Content>;
|
|
@@ -149178,6 +150502,12 @@ export type KnowledgeBaseConfluenceFolderSuggestion = KnowledgeBaseSourceSuggest
|
|
|
149178
150502
|
sourceLocationName?: Maybe<Scalars['String']['output']>;
|
|
149179
150503
|
sourceName?: Maybe<Scalars['String']['output']>;
|
|
149180
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
|
+
};
|
|
149181
150511
|
export type KnowledgeBaseConfluenceSpaceSuggestions = KnowledgeBaseSourceSuggestionInterface & {
|
|
149182
150512
|
__typename?: 'KnowledgeBaseConfluenceSpaceSuggestions';
|
|
149183
150513
|
sourceARI?: Maybe<Scalars['ID']['output']>;
|
|
@@ -149211,6 +150541,7 @@ export type KnowledgeBaseHealthDashboard = {
|
|
|
149211
150541
|
articleCount?: Maybe<Scalars['Int']['output']>;
|
|
149212
150542
|
articleCountByMonth?: Maybe<Array<KnowledgeBaseMonthlyArticleCount>>;
|
|
149213
150543
|
articleViewCount?: Maybe<Scalars['Int']['output']>;
|
|
150544
|
+
articleViewCountByMonth?: Maybe<Array<KnowledgeBaseMonthlyViewCount>>;
|
|
149214
150545
|
errors: Array<KnowledgeBaseHealthDashboardMetricError>;
|
|
149215
150546
|
externalArticleCount?: Maybe<Scalars['Int']['output']>;
|
|
149216
150547
|
internalArticleCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -149219,7 +150550,8 @@ export type KnowledgeBaseHealthDashboard = {
|
|
|
149219
150550
|
export declare enum KnowledgeBaseHealthDashboardMetric {
|
|
149220
150551
|
ArticleCount = "ARTICLE_COUNT",
|
|
149221
150552
|
ArticleCountByMonth = "ARTICLE_COUNT_BY_MONTH",
|
|
149222
|
-
ArticleViewCount = "ARTICLE_VIEW_COUNT"
|
|
150553
|
+
ArticleViewCount = "ARTICLE_VIEW_COUNT",
|
|
150554
|
+
ArticleViewCountByMonth = "ARTICLE_VIEW_COUNT_BY_MONTH"
|
|
149223
150555
|
}
|
|
149224
150556
|
export type KnowledgeBaseHealthDashboardMetricError = {
|
|
149225
150557
|
__typename?: 'KnowledgeBaseHealthDashboardMetricError';
|
|
@@ -149280,11 +150612,23 @@ export type KnowledgeBaseLinkedSources = {
|
|
|
149280
150612
|
linkedSources?: Maybe<Array<KnowledgeBaseLinkedSource>>;
|
|
149281
150613
|
};
|
|
149282
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;
|
|
149283
150622
|
export type KnowledgeBaseMonthlyArticleCount = {
|
|
149284
150623
|
__typename?: 'KnowledgeBaseMonthlyArticleCount';
|
|
149285
150624
|
count: Scalars['Int']['output'];
|
|
149286
150625
|
yearMonth: Scalars['String']['output'];
|
|
149287
150626
|
};
|
|
150627
|
+
export type KnowledgeBaseMonthlyViewCount = {
|
|
150628
|
+
__typename?: 'KnowledgeBaseMonthlyViewCount';
|
|
150629
|
+
count: Scalars['Int']['output'];
|
|
150630
|
+
yearMonth: Scalars['String']['output'];
|
|
150631
|
+
};
|
|
149288
150632
|
export type KnowledgeBaseMutationApi = {
|
|
149289
150633
|
__typename?: 'KnowledgeBaseMutationApi';
|
|
149290
150634
|
linkKnowledgeBaseSource?: Maybe<KnowledgeBaseLinkResponse>;
|
|
@@ -149374,7 +150718,7 @@ export type KnowledgeBaseSourcePermissionsResponse = {
|
|
|
149374
150718
|
editPermission?: Maybe<KnowledgeBaseSourcePermissionDetailV2>;
|
|
149375
150719
|
viewPermission?: Maybe<KnowledgeBaseSourcePermissionDetailV2>;
|
|
149376
150720
|
};
|
|
149377
|
-
export type KnowledgeBaseSourceSuggestion = KnowledgeBaseConfluenceFolderSuggestion | KnowledgeBaseConfluenceSpaceSuggestions | KnowledgeBaseThirdPartySuggestion;
|
|
150721
|
+
export type KnowledgeBaseSourceSuggestion = KnowledgeBaseConfluenceFolderSuggestion | KnowledgeBaseConfluencePageSuggestion | KnowledgeBaseConfluenceSpaceSuggestions | KnowledgeBaseThirdPartySuggestion;
|
|
149378
150722
|
export type KnowledgeBaseSourceSuggestionInterface = {
|
|
149379
150723
|
sourceARI?: Maybe<Scalars['ID']['output']>;
|
|
149380
150724
|
sourceName?: Maybe<Scalars['String']['output']>;
|
|
@@ -151147,6 +152491,12 @@ export declare enum LoomSpacePrivacyType {
|
|
|
151147
152491
|
Private = "private",
|
|
151148
152492
|
Workspace = "workspace"
|
|
151149
152493
|
}
|
|
152494
|
+
export type LoomTag = {
|
|
152495
|
+
__typename?: 'LoomTag';
|
|
152496
|
+
tag: Scalars['String']['output'];
|
|
152497
|
+
url: Scalars['String']['output'];
|
|
152498
|
+
videoCount: Scalars['Int']['output'];
|
|
152499
|
+
};
|
|
151150
152500
|
export type LoomToken = {
|
|
151151
152501
|
__typename?: 'LoomToken';
|
|
151152
152502
|
token: Scalars['String']['output'];
|
|
@@ -155379,6 +156729,7 @@ export type MarketplaceStoreQueryApiInstallAppStatusArgs = {
|
|
|
155379
156729
|
id: Scalars['ID']['input'];
|
|
155380
156730
|
isGlobalAppInstall?: InputMaybe<Scalars['Boolean']['input']>;
|
|
155381
156731
|
isUpmInstall?: InputMaybe<Scalars['Boolean']['input']>;
|
|
156732
|
+
offeringId?: InputMaybe<Scalars['String']['input']>;
|
|
155382
156733
|
orderId?: InputMaybe<Scalars['ID']['input']>;
|
|
155383
156734
|
target?: InputMaybe<MarketplaceStoreInstallAppTargetInput>;
|
|
155384
156735
|
txaAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -164248,20 +165599,16 @@ export type MissionControlOverview = {
|
|
|
164248
165599
|
metricOrder: Array<InputMaybe<Scalars['String']['input']>>;
|
|
164249
165600
|
spaceId?: InputMaybe<Scalars['Long']['input']>;
|
|
164250
165601
|
};
|
|
164251
|
-
export type Mitigation = {
|
|
165602
|
+
export type Mitigation = Node & {
|
|
164252
165603
|
__typename?: 'Mitigation';
|
|
164253
|
-
createdAt
|
|
164254
|
-
|
|
164255
|
-
|
|
164256
|
-
|
|
164257
|
-
|
|
164258
|
-
|
|
164259
|
-
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>;
|
|
164260
165610
|
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
164261
|
-
version
|
|
164262
|
-
};
|
|
164263
|
-
export type MitigationIndicatorsArgs = {
|
|
164264
|
-
includeRejected?: InputMaybe<Scalars['Boolean']['input']>;
|
|
165611
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
164265
165612
|
};
|
|
164266
165613
|
export declare enum MitigationDocumentType {
|
|
164267
165614
|
Confluence = "CONFLUENCE",
|
|
@@ -164269,23 +165616,40 @@ export declare enum MitigationDocumentType {
|
|
|
164269
165616
|
Playbook = "PLAYBOOK",
|
|
164270
165617
|
Sharepoint = "SHAREPOINT"
|
|
164271
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;
|
|
164272
165635
|
export declare enum MitigationHypothesisType {
|
|
164273
165636
|
FfChange = "FF_CHANGE",
|
|
164274
165637
|
PrChange = "PR_CHANGE",
|
|
164275
165638
|
Unknown = "UNKNOWN"
|
|
164276
165639
|
}
|
|
164277
|
-
export type MitigationIndicator = {
|
|
165640
|
+
export type MitigationIndicator = Node & {
|
|
164278
165641
|
__typename?: 'MitigationIndicator';
|
|
164279
165642
|
confidenceScore?: Maybe<Scalars['Float']['output']>;
|
|
164280
|
-
createdAt
|
|
165643
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
164281
165644
|
details?: Maybe<MitigationIndicatorDetails>;
|
|
165645
|
+
id: Scalars['ID']['output'];
|
|
164282
165646
|
indicatorId: Scalars['ID']['output'];
|
|
164283
|
-
indicatorType
|
|
165647
|
+
indicatorType?: Maybe<MitigationIndicatorType>;
|
|
164284
165648
|
mitigationId: Scalars['ID']['output'];
|
|
164285
165649
|
plans?: Maybe<Array<MitigationPlan>>;
|
|
164286
|
-
rejected
|
|
165650
|
+
rejected?: Maybe<Scalars['Boolean']['output']>;
|
|
164287
165651
|
rejectedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
164288
|
-
|
|
165652
|
+
rejectedBy?: Maybe<User>;
|
|
164289
165653
|
rejectionReason?: Maybe<IndicatorRejectionReason>;
|
|
164290
165654
|
rejectionSource?: Maybe<MitigationRejectionSource>;
|
|
164291
165655
|
title?: Maybe<Scalars['String']['output']>;
|
|
@@ -164300,27 +165664,28 @@ export declare enum MitigationIndicatorType {
|
|
|
164300
165664
|
Hypothesis = "HYPOTHESIS",
|
|
164301
165665
|
Symptom = "SYMPTOM"
|
|
164302
165666
|
}
|
|
165667
|
+
export type MitigationLookupResult = Mitigation | QueryError;
|
|
164303
165668
|
export declare enum MitigationPipelineStep {
|
|
164304
165669
|
IndicatorDeduplication = "INDICATOR_DEDUPLICATION",
|
|
164305
165670
|
IndicatorExtraction = "INDICATOR_EXTRACTION",
|
|
164306
165671
|
PlanGeneration = "PLAN_GENERATION"
|
|
164307
165672
|
}
|
|
164308
|
-
export type MitigationPlan = {
|
|
165673
|
+
export type MitigationPlan = Node & {
|
|
164309
165674
|
__typename?: 'MitigationPlan';
|
|
164310
|
-
createdAt
|
|
165675
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
165676
|
+
id: Scalars['ID']['output'];
|
|
164311
165677
|
indicatorId: Scalars['ID']['output'];
|
|
164312
165678
|
mitigationId: Scalars['ID']['output'];
|
|
164313
|
-
|
|
164314
|
-
planSources: Array<PlanSource>;
|
|
165679
|
+
planSources?: Maybe<Array<PlanSource>>;
|
|
164315
165680
|
playbook?: Maybe<JiraPlaybook>;
|
|
164316
|
-
rejected
|
|
165681
|
+
rejected?: Maybe<Scalars['Boolean']['output']>;
|
|
164317
165682
|
rejectedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
164318
|
-
|
|
165683
|
+
rejectedBy?: Maybe<User>;
|
|
164319
165684
|
rejectionReason?: Maybe<PlanRejectionReason>;
|
|
164320
165685
|
rejectionSource?: Maybe<MitigationRejectionSource>;
|
|
164321
165686
|
summary?: Maybe<Scalars['String']['output']>;
|
|
164322
|
-
title
|
|
164323
|
-
updatedAt
|
|
165687
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
165688
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
164324
165689
|
};
|
|
164325
165690
|
export type MitigationProgressStep = {
|
|
164326
165691
|
__typename?: 'MitigationProgressStep';
|
|
@@ -164334,7 +165699,6 @@ export declare enum MitigationRejectionSource {
|
|
|
164334
165699
|
Human = "HUMAN",
|
|
164335
165700
|
System = "SYSTEM"
|
|
164336
165701
|
}
|
|
164337
|
-
export type MitigationResult = Mitigation | QueryError;
|
|
164338
165702
|
export declare enum MitigationScopeType {
|
|
164339
165703
|
Icc = "ICC"
|
|
164340
165704
|
}
|
|
@@ -164450,6 +165814,7 @@ export type Mutation = {
|
|
|
164450
165814
|
admin_scimRuleUpdate?: Maybe<AdminScimRuleMutationPayload>;
|
|
164451
165815
|
admin_unitCreate?: Maybe<AdminUnitCreatePayload>;
|
|
164452
165816
|
admin_unitRename?: Maybe<AdminUnitRenamePayload>;
|
|
165817
|
+
admin_unitUpdateDescription?: Maybe<AdminUnitUpdateDescriptionPayload>;
|
|
164453
165818
|
admin_unlinkScimUser?: Maybe<AdminUnlinkScimUserResponsePayload>;
|
|
164454
165819
|
admin_updateAiPolicy?: Maybe<AdminUpdateAiPolicyResponsePayload>;
|
|
164455
165820
|
admin_updateAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
@@ -164458,6 +165823,7 @@ export type Mutation = {
|
|
|
164458
165823
|
agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
|
|
164459
165824
|
agentStudio_cancelBatchEvaluationJobRun?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
164460
165825
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
165826
|
+
agentStudio_createAgentFromTemplate?: Maybe<AgentStudioCreateAgentPayload>;
|
|
164461
165827
|
agentStudio_createAndRunBatchEvaluationJob?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
164462
165828
|
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
164463
165829
|
agentStudio_deleteAgent?: Maybe<AgentStudioDeleteAgentPayload>;
|
|
@@ -165187,6 +166553,7 @@ export type Mutation = {
|
|
|
165187
166553
|
goals_removeWatchers?: Maybe<TownsquareGoalsRemoveWatchersPayload>;
|
|
165188
166554
|
goals_restoreGoals?: Maybe<TownsquareGoalsRestoreGoalsPayload>;
|
|
165189
166555
|
goals_revokeAccess?: Maybe<TownsquareGoalRevokeAccessPayload>;
|
|
166556
|
+
goals_setDefaultAccessLevel?: Maybe<TownsquareGoalsSetDefaultAccessLevelPayload>;
|
|
165190
166557
|
goals_setParentGoal?: Maybe<TownsquareGoalsSetParentGoalPayload>;
|
|
165191
166558
|
goals_setRollupProgress?: Maybe<TownsquareGoalsSetRollupProgressPayload>;
|
|
165192
166559
|
goals_setUserWatchingTeam?: Maybe<TownsquareGoalsSetUserWatchingTeamPayload>;
|
|
@@ -165476,6 +166843,7 @@ export type Mutation = {
|
|
|
165476
166843
|
jira_setBoardViewColumnState?: Maybe<JiraSetBoardViewColumnStatePayload>;
|
|
165477
166844
|
jira_setBoardViewColumnsOrder?: Maybe<JiraSetBoardViewColumnsOrderPayload>;
|
|
165478
166845
|
jira_setBoardViewCompletedIssueSearchCutOff?: Maybe<JiraSetBoardViewCompletedIssueSearchCutOffPayload>;
|
|
166846
|
+
jira_setBoardViewDensity?: Maybe<JiraSetBoardViewDensityPayload>;
|
|
165479
166847
|
jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
|
|
165480
166848
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
165481
166849
|
jira_setBoardViewStatusColumnIssueCountLimit?: Maybe<JiraSetBoardViewStatusColumnIssueCountLimitPayload>;
|
|
@@ -165564,6 +166932,13 @@ export type Mutation = {
|
|
|
165564
166932
|
jsmConversation_createInvite?: Maybe<JsmConversationCreateInvitePayload>;
|
|
165565
166933
|
jsmConversation_rejectInvite?: Maybe<JsmConversationRejectInvitePayload>;
|
|
165566
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>;
|
|
165567
166942
|
jsw?: Maybe<JswMutation>;
|
|
165568
166943
|
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
165569
166944
|
kitsune_createCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
@@ -165578,12 +166953,14 @@ export type Mutation = {
|
|
|
165578
166953
|
kitsune_createView?: Maybe<KitsuneView>;
|
|
165579
166954
|
kitsune_exportFeedbackFromView?: Maybe<KitsuneJob>;
|
|
165580
166955
|
kitsune_generateFeedbackSummary?: Maybe<KitsuneFeedback>;
|
|
166956
|
+
kitsune_generateFeedbackSummaryV2?: Maybe<KitsuneFeedback>;
|
|
165581
166957
|
kitsune_generateInsightSummary?: Maybe<KitsuneInsight>;
|
|
165582
166958
|
kitsune_moveSection?: Maybe<KitsuneSpace>;
|
|
165583
166959
|
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
165584
166960
|
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
165585
166961
|
kitsune_removeCustomerField?: Maybe<KitsuneDeletedRecord>;
|
|
165586
166962
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
166963
|
+
kitsune_removeFeedbackV2?: Maybe<KitsuneDeletedRecord>;
|
|
165587
166964
|
kitsune_removeField?: Maybe<KitsuneDeletedRecord>;
|
|
165588
166965
|
kitsune_removeFieldValue?: Maybe<KitsuneDeletedRecord>;
|
|
165589
166966
|
kitsune_removeInsight?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -165660,13 +167037,13 @@ export type Mutation = {
|
|
|
165660
167037
|
playbook_createJiraPlaybookLabel?: Maybe<CreateJiraPlaybookLabelPayload>;
|
|
165661
167038
|
playbook_createJiraPlaybookStepRun?: Maybe<CreateJiraPlaybookStepRunPayload>;
|
|
165662
167039
|
playbook_deleteJiraPlaybook?: Maybe<DeleteJiraPlaybookPayload>;
|
|
165663
|
-
playbook_rejectIndicator?: Maybe<
|
|
165664
|
-
playbook_rejectPlan?: Maybe<
|
|
167040
|
+
playbook_rejectIndicator?: Maybe<RejectIndicatorPayload>;
|
|
167041
|
+
playbook_rejectPlan?: Maybe<RejectPlanPayload>;
|
|
165665
167042
|
playbook_toggleChecklistItem?: Maybe<ToggleChecklistItemPayload>;
|
|
165666
167043
|
playbook_triggerMitigation?: Maybe<TriggerMitigationPayload>;
|
|
165667
167044
|
playbook_unassignJiraPlaybookLabelFromJiraPlaybook?: Maybe<JiraPlaybookLabelAssignmentPayload>;
|
|
165668
|
-
playbook_unrejectIndicator?: Maybe<
|
|
165669
|
-
playbook_unrejectPlan?: Maybe<
|
|
167045
|
+
playbook_unrejectIndicator?: Maybe<RejectIndicatorPayload>;
|
|
167046
|
+
playbook_unrejectPlan?: Maybe<RejectPlanPayload>;
|
|
165670
167047
|
playbook_updateJiraPlaybook?: Maybe<UpdateJiraPlaybookPayload>;
|
|
165671
167048
|
playbook_updateJiraPlaybookLabel?: Maybe<UpdateJiraPlaybookLabelPayload>;
|
|
165672
167049
|
playbook_updateJiraPlaybookState?: Maybe<UpdateJiraPlaybookStatePayload>;
|
|
@@ -165716,12 +167093,14 @@ export type Mutation = {
|
|
|
165716
167093
|
projects_removeTextCustomFieldValue?: Maybe<TownsquareProjectsRemoveTextCustomFieldValuePayload>;
|
|
165717
167094
|
projects_removeUserCustomFieldValue?: Maybe<TownsquareProjectsRemoveUserCustomFieldValuePayload>;
|
|
165718
167095
|
projects_revokeAccess?: Maybe<TownsquareProjectRevokeAccessPayload>;
|
|
167096
|
+
projects_setDefaultAccessLevel?: Maybe<TownsquareProjectsSetDefaultAccessLevelPayload>;
|
|
165719
167097
|
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
165720
167098
|
projects_setUserWatchingTeam?: Maybe<TownsquareProjectsSetUserWatchingTeamPayload>;
|
|
165721
167099
|
projects_setWatchingProject?: Maybe<TownsquareProjectsSetWatchingProjectPayload>;
|
|
165722
167100
|
projects_shareProject?: Maybe<TownsquareProjectsShareProjectPayload>;
|
|
165723
167101
|
projects_shareUpdate?: Maybe<TownsquareProjectsShareUpdatePayload>;
|
|
165724
167102
|
projects_updateAppPermissionPolicies?: Maybe<TownsquareUpdateProjectsAppPermissionPoliciesPayload>;
|
|
167103
|
+
provisionDemoSite?: Maybe<ProvisionDemoSiteResponse>;
|
|
165725
167104
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
165726
167105
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
165727
167106
|
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
@@ -165733,6 +167112,7 @@ export type Mutation = {
|
|
|
165733
167112
|
radar_deleteCustomFields?: Maybe<RadarMutationResponse>;
|
|
165734
167113
|
radar_deleteFocusAreaProposalChanges?: Maybe<RadarMutationResponse>;
|
|
165735
167114
|
radar_deleteLaborCostEstimateData?: Maybe<RadarDeleteLaborCostEstimateDataResponse>;
|
|
167115
|
+
radar_deleteMetricSettings?: Maybe<Array<RadarMetricSettings>>;
|
|
165736
167116
|
radar_deleteRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
165737
167117
|
radar_deleteView?: Maybe<RadarView>;
|
|
165738
167118
|
radar_recordEntityViewed?: Maybe<RadarRecordEntityViewedResponse>;
|
|
@@ -166086,6 +167466,7 @@ export type MutationAdmin_CreateInvitePolicyArgs = {
|
|
|
166086
167466
|
orgId: Scalars['ID']['input'];
|
|
166087
167467
|
};
|
|
166088
167468
|
export type MutationAdmin_CreateOutboundAuthServiceArgs = {
|
|
167469
|
+
connectorSyncType?: InputMaybe<Scalars['String']['input']>;
|
|
166089
167470
|
datasourceId: Scalars['ID']['input'];
|
|
166090
167471
|
orgId: Scalars['ID']['input'];
|
|
166091
167472
|
properties: Array<AdminConnectorPropertyInput>;
|
|
@@ -166150,6 +167531,9 @@ export type MutationAdmin_UnitCreateArgs = {
|
|
|
166150
167531
|
export type MutationAdmin_UnitRenameArgs = {
|
|
166151
167532
|
input: AdminUnitRenameInput;
|
|
166152
167533
|
};
|
|
167534
|
+
export type MutationAdmin_UnitUpdateDescriptionArgs = {
|
|
167535
|
+
input: AdminUnitUpdateDescriptionInput;
|
|
167536
|
+
};
|
|
166153
167537
|
export type MutationAdmin_UnlinkScimUserArgs = {
|
|
166154
167538
|
orgId: Scalars['ID']['input'];
|
|
166155
167539
|
scimDirectoryId: Scalars['ID']['input'];
|
|
@@ -166189,6 +167573,10 @@ export type MutationAgentStudio_CreateAgentArgs = {
|
|
|
166189
167573
|
cloudId: Scalars['String']['input'];
|
|
166190
167574
|
input: AgentStudioCreateAgentInput;
|
|
166191
167575
|
};
|
|
167576
|
+
export type MutationAgentStudio_CreateAgentFromTemplateArgs = {
|
|
167577
|
+
cloudId: Scalars['String']['input'];
|
|
167578
|
+
templateId: Scalars['ID']['input'];
|
|
167579
|
+
};
|
|
166192
167580
|
export type MutationAgentStudio_CreateAndRunBatchEvaluationJobArgs = {
|
|
166193
167581
|
cloudId: Scalars['String']['input'];
|
|
166194
167582
|
input: AgentStudioCreateBatchEvaluationJobInput;
|
|
@@ -168863,6 +170251,9 @@ export type MutationGoals_RestoreGoalsArgs = {
|
|
|
168863
170251
|
export type MutationGoals_RevokeAccessArgs = {
|
|
168864
170252
|
input: TownsquareGoalRevokeAccessInput;
|
|
168865
170253
|
};
|
|
170254
|
+
export type MutationGoals_SetDefaultAccessLevelArgs = {
|
|
170255
|
+
input: TownsquareGoalsSetDefaultAccessLevelInput;
|
|
170256
|
+
};
|
|
168866
170257
|
export type MutationGoals_SetParentGoalArgs = {
|
|
168867
170258
|
input: TownsquareGoalsSetParentGoalInput;
|
|
168868
170259
|
};
|
|
@@ -169743,6 +171134,9 @@ export type MutationJira_SetBoardViewColumnsOrderArgs = {
|
|
|
169743
171134
|
export type MutationJira_SetBoardViewCompletedIssueSearchCutOffArgs = {
|
|
169744
171135
|
input: JiraSetBoardViewCompletedIssueSearchCutOffInput;
|
|
169745
171136
|
};
|
|
171137
|
+
export type MutationJira_SetBoardViewDensityArgs = {
|
|
171138
|
+
input: JiraSetBoardViewDensityInput;
|
|
171139
|
+
};
|
|
169746
171140
|
export type MutationJira_SetBoardViewFilterArgs = {
|
|
169747
171141
|
input: JiraSetBoardViewFilterInput;
|
|
169748
171142
|
};
|
|
@@ -170039,6 +171433,38 @@ export type MutationJsmConversation_RejectInviteArgs = {
|
|
|
170039
171433
|
export type MutationJsmConversation_UpdateSettingsArgs = {
|
|
170040
171434
|
input: JsmConversationSettingsInput;
|
|
170041
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
|
+
};
|
|
170042
171468
|
export type MutationKitsune_CreateCustomerArgs = {
|
|
170043
171469
|
email?: InputMaybe<Scalars['String']['input']>;
|
|
170044
171470
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -170065,7 +171491,8 @@ export type MutationKitsune_CreateFeedbackArgs = {
|
|
|
170065
171491
|
export type MutationKitsune_CreateFieldArgs = {
|
|
170066
171492
|
entityTypes: Array<KitsuneEntityType>;
|
|
170067
171493
|
name: Scalars['String']['input'];
|
|
170068
|
-
|
|
171494
|
+
options?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
171495
|
+
valueType: KitsuneFieldValueType;
|
|
170069
171496
|
workspaceAri: Scalars['ID']['input'];
|
|
170070
171497
|
};
|
|
170071
171498
|
export type MutationKitsune_CreateInsightArgs = {
|
|
@@ -170119,6 +171546,9 @@ export type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
|
170119
171546
|
feedbackAri: Scalars['ID']['input'];
|
|
170120
171547
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
170121
171548
|
};
|
|
171549
|
+
export type MutationKitsune_GenerateFeedbackSummaryV2Args = {
|
|
171550
|
+
id: Scalars['ID']['input'];
|
|
171551
|
+
};
|
|
170122
171552
|
export type MutationKitsune_GenerateInsightSummaryArgs = {
|
|
170123
171553
|
insightAri: Scalars['ID']['input'];
|
|
170124
171554
|
};
|
|
@@ -170142,6 +171572,9 @@ export type MutationKitsune_RemoveFeedbackArgs = {
|
|
|
170142
171572
|
feedbackAri: Scalars['ID']['input'];
|
|
170143
171573
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
170144
171574
|
};
|
|
171575
|
+
export type MutationKitsune_RemoveFeedbackV2Args = {
|
|
171576
|
+
id: Scalars['ID']['input'];
|
|
171577
|
+
};
|
|
170145
171578
|
export type MutationKitsune_RemoveFieldArgs = {
|
|
170146
171579
|
id: Scalars['ID']['input'];
|
|
170147
171580
|
};
|
|
@@ -170396,10 +171829,10 @@ export type MutationPlaybook_UnassignJiraPlaybookLabelFromJiraPlaybookArgs = {
|
|
|
170396
171829
|
playbookId: Scalars['ID']['input'];
|
|
170397
171830
|
};
|
|
170398
171831
|
export type MutationPlaybook_UnrejectIndicatorArgs = {
|
|
170399
|
-
|
|
171832
|
+
id: Scalars['ID']['input'];
|
|
170400
171833
|
};
|
|
170401
171834
|
export type MutationPlaybook_UnrejectPlanArgs = {
|
|
170402
|
-
|
|
171835
|
+
id: Scalars['ID']['input'];
|
|
170403
171836
|
};
|
|
170404
171837
|
export type MutationPlaybook_UpdateJiraPlaybookArgs = {
|
|
170405
171838
|
input: UpdateJiraPlaybookInput;
|
|
@@ -170548,6 +171981,9 @@ export type MutationProjects_RemoveUserCustomFieldValueArgs = {
|
|
|
170548
171981
|
export type MutationProjects_RevokeAccessArgs = {
|
|
170549
171982
|
input: TownsquareProjectRevokeAccessInput;
|
|
170550
171983
|
};
|
|
171984
|
+
export type MutationProjects_SetDefaultAccessLevelArgs = {
|
|
171985
|
+
input: TownsquareProjectsSetDefaultAccessLevelInput;
|
|
171986
|
+
};
|
|
170551
171987
|
export type MutationProjects_SetDependencyArgs = {
|
|
170552
171988
|
input?: InputMaybe<TownsquareProjectsSetDependencyInput>;
|
|
170553
171989
|
};
|
|
@@ -170611,6 +172047,10 @@ export type MutationRadar_DeleteLaborCostEstimateDataArgs = {
|
|
|
170611
172047
|
cloudId: Scalars['ID']['input'];
|
|
170612
172048
|
input: RadarDeleteLaborCostEstimateDataInput;
|
|
170613
172049
|
};
|
|
172050
|
+
export type MutationRadar_DeleteMetricSettingsArgs = {
|
|
172051
|
+
cloudId: Scalars['ID']['input'];
|
|
172052
|
+
input: Array<RadarDeleteMetricSettingsInput>;
|
|
172053
|
+
};
|
|
170614
172054
|
export type MutationRadar_DeleteRoleAssignmentArgs = {
|
|
170615
172055
|
cloudId: Scalars['ID']['input'];
|
|
170616
172056
|
input: RadarRoleAssignmentRequest;
|
|
@@ -173342,27 +174782,16 @@ export declare enum PlanModeDestination {
|
|
|
173342
174782
|
Board = "BOARD",
|
|
173343
174783
|
Sprint = "SPRINT"
|
|
173344
174784
|
}
|
|
173345
|
-
export type PlanRejectionPayload = Payload & {
|
|
173346
|
-
__typename?: 'PlanRejectionPayload';
|
|
173347
|
-
errors?: Maybe<Array<MutationError>>;
|
|
173348
|
-
plan?: Maybe<MitigationPlan>;
|
|
173349
|
-
success: Scalars['Boolean']['output'];
|
|
173350
|
-
};
|
|
173351
174785
|
export declare enum PlanRejectionReason {
|
|
173352
|
-
Incorrect = "INCORRECT",
|
|
173353
|
-
LowScore = "LOW_SCORE",
|
|
173354
174786
|
NotHelpful = "NOT_HELPFUL",
|
|
173355
|
-
Other = "OTHER"
|
|
173356
|
-
Outdated = "OUTDATED"
|
|
174787
|
+
Other = "OTHER"
|
|
173357
174788
|
}
|
|
173358
174789
|
export type PlanSource = {
|
|
173359
174790
|
__typename?: 'PlanSource';
|
|
173360
|
-
documentType
|
|
173361
|
-
|
|
173362
|
-
|
|
173363
|
-
|
|
173364
|
-
title: Scalars['String']['output'];
|
|
173365
|
-
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']>;
|
|
173366
174795
|
};
|
|
173367
174796
|
export declare enum Platform {
|
|
173368
174797
|
Android = "ANDROID",
|
|
@@ -173601,7 +175030,6 @@ export type PolarisPlay = {
|
|
|
173601
175030
|
contribution?: Maybe<PolarisPlayContribution>;
|
|
173602
175031
|
contributions?: Maybe<Array<PolarisPlayContribution>>;
|
|
173603
175032
|
contributionsBySubject?: Maybe<Array<PolarisPlayContribution>>;
|
|
173604
|
-
fields?: Maybe<Array<PolarisIdeaPlayField>>;
|
|
173605
175033
|
id: Scalars['ID']['output'];
|
|
173606
175034
|
kind: PolarisPlayKind;
|
|
173607
175035
|
label: Scalars['String']['output'];
|
|
@@ -174337,6 +175765,14 @@ export type Properties = {
|
|
|
174337
175765
|
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
174338
175766
|
updatedValues?: Maybe<Scalars['String']['output']>;
|
|
174339
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
|
+
};
|
|
174340
175776
|
export type PublicLink = {
|
|
174341
175777
|
__typename?: 'PublicLink';
|
|
174342
175778
|
accessType?: Maybe<ConfluenceShareableLinkAccessType>;
|
|
@@ -174659,6 +176095,7 @@ export type Query = {
|
|
|
174659
176095
|
admin_auditLogEvents?: Maybe<AdminAuditLogEventConnection>;
|
|
174660
176096
|
admin_auditLogProductMapping?: Maybe<Array<AdminAuditLogProductMapping>>;
|
|
174661
176097
|
admin_auditLogUsers?: Maybe<AdminUserConnection>;
|
|
176098
|
+
admin_breachingConnectionsForUnit?: Maybe<AdminBreachingConnectionsConnection>;
|
|
174662
176099
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
174663
176100
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
174664
176101
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
@@ -174726,9 +176163,11 @@ export type Query = {
|
|
|
174726
176163
|
agentStudio_getAgentUsePermissionSettings?: Maybe<AgentStudioAgentUsePermissionSettings>;
|
|
174727
176164
|
agentStudio_getAgentVersions?: Maybe<AgentStudioAgentVersionsResult>;
|
|
174728
176165
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
176166
|
+
agentStudio_getAllTemplates?: Maybe<AgentStudioTemplateListResult>;
|
|
174729
176167
|
agentStudio_getAvailableExecutionConfigs?: Maybe<AgentStudioAvailableExecutionConfigsResult>;
|
|
174730
176168
|
agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
|
|
174731
176169
|
agentStudio_getCreateAgentPermissions?: Maybe<AgentStudioAgentCreatePermissionsConnection>;
|
|
176170
|
+
agentStudio_getTemplate?: Maybe<AgentStudioTemplateResult>;
|
|
174732
176171
|
agentStudio_getToolConfigurationSchema?: Maybe<Array<AgentStudioToolConfigurationSchema>>;
|
|
174733
176172
|
agentStudio_getToolsByIdAndSource?: Maybe<Array<AgentStudioTool>>;
|
|
174734
176173
|
agentStudio_getWidgetContainersByAgentId?: Maybe<AgentStudioWidgetContainersByAgentIdResult>;
|
|
@@ -174800,6 +176239,7 @@ export type Query = {
|
|
|
174800
176239
|
agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
|
|
174801
176240
|
agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
|
|
174802
176241
|
agentWorkspace_teamsMappedToProject?: Maybe<AgentWorkspaceTeamConnection>;
|
|
176242
|
+
agentWorkspace_unmappedSkillsInProject?: Maybe<AgentWorkspaceSkillConnection>;
|
|
174803
176243
|
agentWorkspace_utilizationForPendingChanges?: Maybe<Array<AgentWorkspaceAgentUtilizationForPendingChanges>>;
|
|
174804
176244
|
agentWorkspace_wfoSummaryView?: Maybe<AgentWorkspaceWfoSummaryViewResult>;
|
|
174805
176245
|
agentWorkspace_wfoSummaryViewByProjectKey?: Maybe<AgentWorkspaceWfoSummaryViewByProjectKeyResult>;
|
|
@@ -174921,6 +176361,8 @@ export type Query = {
|
|
|
174921
176361
|
assetsVertical_allInsights?: Maybe<AssetsVerticalAllInsightsResult>;
|
|
174922
176362
|
assetsVertical_assetTypesTracking?: Maybe<AssetsVerticalAssetTypesTrackingResult>;
|
|
174923
176363
|
assetsVertical_assetTypesTrackings?: Maybe<AssetsVerticalAssetTypesTrackingConnection>;
|
|
176364
|
+
assetsVertical_asyncTask?: Maybe<AssetsVerticalAsyncTaskResult>;
|
|
176365
|
+
assetsVertical_asyncTasks?: Maybe<AssetsVerticalAsyncTaskConnection>;
|
|
174924
176366
|
assetsVertical_bundle?: Maybe<AssetsVerticalBundleResult>;
|
|
174925
176367
|
assetsVertical_configuredObjectTypes?: Maybe<AssetsVerticalObjectTypesResult>;
|
|
174926
176368
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
@@ -175342,6 +176784,9 @@ export type Query = {
|
|
|
175342
176784
|
csmCustomersByIds?: Maybe<Array<Maybe<CustomerServiceCsmCustomer>>>;
|
|
175343
176785
|
csmOrganizationsByIds?: Maybe<Array<Maybe<CustomerServiceCsmOrganization>>>;
|
|
175344
176786
|
csm_aiSuggestions?: Maybe<CustomerServiceAiSuggestionsQueryResult>;
|
|
176787
|
+
csm_assetsObjectSchemas?: Maybe<CustomerServiceAssetsObjectSchemaConnection>;
|
|
176788
|
+
csm_assetsObjectTypes?: Maybe<CustomerServiceAssetsObjectTypeConnection>;
|
|
176789
|
+
csm_assetsObjects?: Maybe<CustomerServiceAssetsObjectConnection>;
|
|
175345
176790
|
csm_brandingByEntityType?: Maybe<CustomerServiceBrandingQueryResult>;
|
|
175346
176791
|
csm_brandingMediaConfigByEntityType?: Maybe<CustomerServiceBrandingMediaConfigQueryResult>;
|
|
175347
176792
|
csm_customDetailsByEntityType?: Maybe<CustomerServiceCustomDetailsQueryResult>;
|
|
@@ -175373,6 +176818,8 @@ export type Query = {
|
|
|
175373
176818
|
defaultSpacePermissions?: Maybe<SpacePermissions>;
|
|
175374
176819
|
defaultSpaceRoleAssignmentsAll?: Maybe<DefaultSpaceRoleAssignmentsConnection>;
|
|
175375
176820
|
demoMercury_getById?: Maybe<DemoMercuryFocusArea>;
|
|
176821
|
+
demoSite?: Maybe<DemoSite>;
|
|
176822
|
+
demoSiteProvisioning?: Maybe<DemoSiteProvisioning>;
|
|
175376
176823
|
detailsLines?: Maybe<DetailsSummaryLines>;
|
|
175377
176824
|
devAi?: Maybe<DevAi>;
|
|
175378
176825
|
devOps?: Maybe<DevOps>;
|
|
@@ -175529,6 +176976,7 @@ export type Query = {
|
|
|
175529
176976
|
graphInference_getRelatedReposV2?: Maybe<GraphInferenceGetRelatedReposV2Response>;
|
|
175530
176977
|
graphInference_getRelatedReposV3?: Maybe<GraphInferenceGetRelatedReposV3Response>;
|
|
175531
176978
|
graphInference_getSimilarJiraItems?: Maybe<GraphInferenceGetSimilarJiraItemsResponse>;
|
|
176979
|
+
graphInference_inferredProjectMe?: Maybe<GraphInferenceInferredProjectMeResponse>;
|
|
175532
176980
|
graphIntegration_availableTwgCapabilityContainers?: Maybe<Array<Maybe<GraphIntegrationTwgCapabilityContainerMeta>>>;
|
|
175533
176981
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
175534
176982
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
@@ -175540,6 +176988,7 @@ export type Query = {
|
|
|
175540
176988
|
graphIntegration_mcpAdminManagementMcpServers?: Maybe<GraphIntegrationMcpAdminManagementMcpServerConnection>;
|
|
175541
176989
|
graphIntegration_mcpAdminManagementMcpTools?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConnection>;
|
|
175542
176990
|
graphIntegration_mcpServerRequests?: Maybe<GraphIntegrationMcpServerRequestConnection>;
|
|
176991
|
+
graphIntegration_mcpServerRequestsForUser?: Maybe<GraphIntegrationMcpServerRequestConnection>;
|
|
175543
176992
|
graphIntegration_mcpServerUserRequests?: Maybe<GraphIntegrationMcpServerUserRequestConnection>;
|
|
175544
176993
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
175545
176994
|
graphIntegration_mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
@@ -175831,6 +177280,8 @@ export type Query = {
|
|
|
175831
177280
|
graphStoreV2_atlassianUserWatchesConfluenceWhiteboardInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceWhiteboardInverseConnection>;
|
|
175832
177281
|
graphStoreV2_atlassianUserWatchesFocusFocusArea?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesFocusFocusAreaConnection>;
|
|
175833
177282
|
graphStoreV2_atlassianUserWatchesFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesFocusFocusAreaInverseConnection>;
|
|
177283
|
+
graphStoreV2_atlassianUserWatchesFocusOrganization?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationConnection>;
|
|
177284
|
+
graphStoreV2_atlassianUserWatchesFocusOrganizationInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesFocusOrganizationInverseConnection>;
|
|
175834
177285
|
graphStoreV2_bitbucketRepositoryHasExternalPullRequest?: Maybe<GraphStoreV2SimplifiedBitbucketRepositoryHasExternalPullRequestConnection>;
|
|
175835
177286
|
graphStoreV2_bitbucketRepositoryHasExternalPullRequestInverse?: Maybe<GraphStoreV2SimplifiedBitbucketRepositoryHasExternalPullRequestInverseConnection>;
|
|
175836
177287
|
graphStoreV2_compassComponentHasCompassComponentLink?: Maybe<GraphStoreV2SimplifiedCompassComponentHasCompassComponentLinkConnection>;
|
|
@@ -176219,8 +177670,12 @@ export type Query = {
|
|
|
176219
177670
|
graphStoreV2_focusFocusAreaHasWorkEntityInverse?: Maybe<GraphStoreV2SimplifiedFocusFocusAreaHasWorkEntityInverseConnection>;
|
|
176220
177671
|
graphStoreV2_focusOrganizationHasAtlassianGoal?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalConnection>;
|
|
176221
177672
|
graphStoreV2_focusOrganizationHasAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasAtlassianGoalInverseConnection>;
|
|
177673
|
+
graphStoreV2_focusOrganizationHasChildFocusOrganization?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationConnection>;
|
|
177674
|
+
graphStoreV2_focusOrganizationHasChildFocusOrganizationInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasChildFocusOrganizationInverseConnection>;
|
|
176222
177675
|
graphStoreV2_focusOrganizationHasFocusOrganizationMembership?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipConnection>;
|
|
176223
177676
|
graphStoreV2_focusOrganizationHasFocusOrganizationMembershipInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationMembershipInverseConnection>;
|
|
177677
|
+
graphStoreV2_focusOrganizationHasFocusOrganizationStatusUpdate?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateConnection>;
|
|
177678
|
+
graphStoreV2_focusOrganizationHasFocusOrganizationStatusUpdateInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationHasFocusOrganizationStatusUpdateInverseConnection>;
|
|
176224
177679
|
graphStoreV2_focusOrganizationSponsorsFocusFocusArea?: Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaConnection>;
|
|
176225
177680
|
graphStoreV2_focusOrganizationSponsorsFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedFocusOrganizationSponsorsFocusFocusAreaInverseConnection>;
|
|
176226
177681
|
graphStoreV2_focusRiskHasWorkEntity?: Maybe<GraphStoreV2SimplifiedFocusRiskHasWorkEntityConnection>;
|
|
@@ -177010,8 +178465,20 @@ export type Query = {
|
|
|
177010
178465
|
graphStore_mercuryOrganizationHasAtlasGoalBatch?: Maybe<GraphStoreBatchMercuryOrganizationHasAtlasGoalConnection>;
|
|
177011
178466
|
graphStore_mercuryOrganizationHasAtlasGoalInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasAtlasGoalInverseConnection>;
|
|
177012
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>;
|
|
177013
178472
|
graphStore_mercuryOrganizationHasMercuryOrganizationMembership?: Maybe<GraphStoreSimplifiedMercuryOrganizationHasMercuryOrganizationMembershipConnection>;
|
|
177014
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>;
|
|
177015
178482
|
graphStore_mercuryOrganizationSponsorsFocusArea?: Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaConnection>;
|
|
177016
178483
|
graphStore_mercuryOrganizationSponsorsFocusAreaBatch?: Maybe<GraphStoreBatchMercuryOrganizationSponsorsFocusAreaConnection>;
|
|
177017
178484
|
graphStore_mercuryOrganizationSponsorsFocusAreaInverse?: Maybe<GraphStoreSimplifiedMercuryOrganizationSponsorsFocusAreaInverseConnection>;
|
|
@@ -177704,6 +179171,7 @@ export type Query = {
|
|
|
177704
179171
|
jira_isBetaAiFeaturesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
177705
179172
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
177706
179173
|
jira_isTenantConvertedToNfa?: Maybe<Scalars['Boolean']['output']>;
|
|
179174
|
+
jira_issueCreateLayout?: Maybe<JiraIssueCreateLayoutResult>;
|
|
177707
179175
|
jira_issueSearchTopLevelIssueFieldsAggregation?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
177708
179176
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
177709
179177
|
jira_issueStatusesByIds?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
@@ -177762,6 +179230,18 @@ export type Query = {
|
|
|
177762
179230
|
jsmConversation_setting?: Maybe<JsmConversationSettingsResult>;
|
|
177763
179231
|
jsmConversation_settings?: Maybe<JsmConversationSettings>;
|
|
177764
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>;
|
|
177765
179245
|
jsw?: Maybe<JswQuery>;
|
|
177766
179246
|
kitsune_chunks?: Maybe<Array<Maybe<KitsuneChunk>>>;
|
|
177767
179247
|
kitsune_customerByAri?: Maybe<KitsuneCustomer>;
|
|
@@ -177798,6 +179278,7 @@ export type Query = {
|
|
|
177798
179278
|
knowledgeBase_getLinkedSourceTypes?: Maybe<KnowledgeBaseLinkedSourceTypesResponse>;
|
|
177799
179279
|
knowledgeBase_healthDashboard?: Maybe<KnowledgeBaseHealthDashboardResponse>;
|
|
177800
179280
|
knowledgeBase_linkedSources?: Maybe<KnowledgeBaseLinkedSourcesResponse>;
|
|
179281
|
+
knowledgeBase_monthlyActiveUsers?: Maybe<KnowledgeBaseMonthlyActiveUsersResponse>;
|
|
177801
179282
|
knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
|
|
177802
179283
|
knowledgeBase_searchConversionMetrics?: Maybe<KnowledgeBaseSearchConversionMetricsResponse>;
|
|
177803
179284
|
knowledgeBase_sourceSuggestions?: Maybe<KnowledgeBaseSourceSuggestionsResponse>;
|
|
@@ -177834,6 +179315,7 @@ export type Query = {
|
|
|
177834
179315
|
loom_space?: Maybe<LoomSpace>;
|
|
177835
179316
|
loom_spaces?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
177836
179317
|
loom_spacesSearch?: Maybe<Array<Maybe<LoomSpace>>>;
|
|
179318
|
+
loom_tagsSearch?: Maybe<Array<LoomTag>>;
|
|
177837
179319
|
loom_validateSlackUserIds?: Maybe<Array<Maybe<LoomValidateSlackUserIds>>>;
|
|
177838
179320
|
loom_video?: Maybe<LoomVideo>;
|
|
177839
179321
|
loom_videoDurations?: Maybe<LoomVideoDurations>;
|
|
@@ -177917,8 +179399,8 @@ export type Query = {
|
|
|
177917
179399
|
playbook_jiraPlaybookTemplate?: Maybe<JiraPlaybookTemplateQueryPayload>;
|
|
177918
179400
|
playbook_jiraPlaybookTemplateCategories?: Maybe<JiraPlaybookTemplateCategoryQueryPayload>;
|
|
177919
179401
|
playbook_jiraPlaybooksForProject?: Maybe<JiraPlaybookConnection>;
|
|
177920
|
-
playbook_mitigationById?: Maybe<
|
|
177921
|
-
playbook_mitigationByScope?: Maybe<
|
|
179402
|
+
playbook_mitigationById?: Maybe<MitigationLookupResult>;
|
|
179403
|
+
playbook_mitigationByScope?: Maybe<MitigationLookupResult>;
|
|
177922
179404
|
pokemon?: Maybe<PokemonQuery>;
|
|
177923
179405
|
pokemonTrainers?: Maybe<PokemonTrainersQuery>;
|
|
177924
179406
|
polaris?: Maybe<PolarisQueryNamespace>;
|
|
@@ -178001,6 +179483,7 @@ export type Query = {
|
|
|
178001
179483
|
radar_skillsByAris?: Maybe<Array<RadarSkill>>;
|
|
178002
179484
|
radar_skillsSearch?: Maybe<RadarSkillConnection>;
|
|
178003
179485
|
radar_starredEntities?: Maybe<Array<RadarStarredEntity>>;
|
|
179486
|
+
radar_syncHistoriesSearch?: Maybe<RadarSyncHistoriesConnection>;
|
|
178004
179487
|
radar_viewByAri?: Maybe<RadarView>;
|
|
178005
179488
|
radar_viewsByAris?: Maybe<Array<RadarView>>;
|
|
178006
179489
|
radar_viewsSearch?: Maybe<RadarViewConnection>;
|
|
@@ -178220,6 +179703,7 @@ export type Query = {
|
|
|
178220
179703
|
users?: Maybe<Array<User>>;
|
|
178221
179704
|
usersWithContentRestrictions?: Maybe<Array<Maybe<UserWithRestrictions>>>;
|
|
178222
179705
|
uts_allowanceExemptions?: Maybe<UtsAllowanceExemptionList>;
|
|
179706
|
+
uts_meterConfiguration?: Maybe<UtsMeterConfiguration>;
|
|
178223
179707
|
uts_usageAlerts?: Maybe<Array<Maybe<UtsUsageAlert>>>;
|
|
178224
179708
|
validateConvertPageToLiveEdit?: Maybe<ConvertPageToLiveEditValidationResult>;
|
|
178225
179709
|
validatePageCopy?: Maybe<ValidatePageCopyPayload>;
|
|
@@ -178337,6 +179821,13 @@ export type QueryAdmin_AuditLogUsersArgs = {
|
|
|
178337
179821
|
orgId: Scalars['String']['input'];
|
|
178338
179822
|
searchUserInput?: InputMaybe<AdminAuditLogSearchUsersInput>;
|
|
178339
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
|
+
};
|
|
178340
179831
|
export type QueryAdmin_CheckLicensesCapacityArgs = {
|
|
178341
179832
|
input: AdminLicenseInput;
|
|
178342
179833
|
orgId: Scalars['ID']['input'];
|
|
@@ -178729,6 +180220,11 @@ export type QueryAgentStudio_GetAgentsArgs = {
|
|
|
178729
180220
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
178730
180221
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
178731
180222
|
};
|
|
180223
|
+
export type QueryAgentStudio_GetAllTemplatesArgs = {
|
|
180224
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
180225
|
+
cloudId: Scalars['String']['input'];
|
|
180226
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
180227
|
+
};
|
|
178732
180228
|
export type QueryAgentStudio_GetAvailableExecutionConfigsArgs = {
|
|
178733
180229
|
cloudId: Scalars['String']['input'];
|
|
178734
180230
|
};
|
|
@@ -178741,6 +180237,10 @@ export type QueryAgentStudio_GetByExternalReferenceArgs = {
|
|
|
178741
180237
|
export type QueryAgentStudio_GetCreateAgentPermissionsArgs = {
|
|
178742
180238
|
cloudId: Scalars['String']['input'];
|
|
178743
180239
|
};
|
|
180240
|
+
export type QueryAgentStudio_GetTemplateArgs = {
|
|
180241
|
+
cloudId: Scalars['String']['input'];
|
|
180242
|
+
templateId: Scalars['ID']['input'];
|
|
180243
|
+
};
|
|
178744
180244
|
export type QueryAgentStudio_GetToolConfigurationSchemaArgs = {
|
|
178745
180245
|
cloudId: Scalars['String']['input'];
|
|
178746
180246
|
toolsToFetch: Array<AgentStudioToolIdAndSource>;
|
|
@@ -179129,6 +180629,13 @@ export type QueryAgentWorkspace_TeamsMappedToProjectArgs = {
|
|
|
179129
180629
|
projectId: Scalars['ID']['input'];
|
|
179130
180630
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
179131
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
|
+
};
|
|
179132
180639
|
export type QueryAgentWorkspace_UtilizationForPendingChangesArgs = {
|
|
179133
180640
|
input: AgentWorkspaceUtilizationForPendingChangesInput;
|
|
179134
180641
|
};
|
|
@@ -179800,6 +181307,15 @@ export type QueryAssetsVertical_AssetTypesTrackingsArgs = {
|
|
|
179800
181307
|
objSchemaIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
179801
181308
|
verticalInstantiationCategoryId: Scalars['ID']['input'];
|
|
179802
181309
|
};
|
|
181310
|
+
export type QueryAssetsVertical_AsyncTaskArgs = {
|
|
181311
|
+
cloudId: Scalars['ID']['input'];
|
|
181312
|
+
taskId: Scalars['ID']['input'];
|
|
181313
|
+
};
|
|
181314
|
+
export type QueryAssetsVertical_AsyncTasksArgs = {
|
|
181315
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
181316
|
+
cloudId: Scalars['ID']['input'];
|
|
181317
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
181318
|
+
};
|
|
179803
181319
|
export type QueryAssetsVertical_BundleArgs = {
|
|
179804
181320
|
cloudId: Scalars['ID']['input'];
|
|
179805
181321
|
type: AssetsVerticalBundleType;
|
|
@@ -181717,6 +183233,26 @@ export type QueryCsm_AiSuggestionsArgs = {
|
|
|
181717
183233
|
cloudId: Scalars['ID']['input'];
|
|
181718
183234
|
input: CustomerServiceAiSuggestionsInput;
|
|
181719
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
|
+
};
|
|
181720
183256
|
export type QueryCsm_BrandingByEntityTypeArgs = {
|
|
181721
183257
|
cloudId: Scalars['ID']['input'];
|
|
181722
183258
|
entityType: CustomerServiceBrandingEntityType;
|
|
@@ -181839,6 +183375,9 @@ export type QueryDemoMercury_GetByIdArgs = {
|
|
|
181839
183375
|
cloudId: Scalars['ID']['input'];
|
|
181840
183376
|
id: Scalars['ID']['input'];
|
|
181841
183377
|
};
|
|
183378
|
+
export type QueryDemoSiteProvisioningArgs = {
|
|
183379
|
+
taskId: Scalars['ID']['input'];
|
|
183380
|
+
};
|
|
181842
183381
|
export type QueryDetailsLinesArgs = {
|
|
181843
183382
|
contentId: Scalars['ID']['input'];
|
|
181844
183383
|
contentRepresentation: Scalars['String']['input'];
|
|
@@ -182038,8 +183577,10 @@ export type QueryDevai_ContainerConfigArgs = {
|
|
|
182038
183577
|
export type QueryDevai_FlowGetRepositoriesArgs = {
|
|
182039
183578
|
cloudId: Scalars['ID']['input'];
|
|
182040
183579
|
language?: InputMaybe<Scalars['String']['input']>;
|
|
183580
|
+
scm?: InputMaybe<DevAiScmFilter>;
|
|
182041
183581
|
search?: InputMaybe<Scalars['String']['input']>;
|
|
182042
183582
|
searchAllConnectedRepos?: InputMaybe<Scalars['Boolean']['input']>;
|
|
183583
|
+
useCaseId?: InputMaybe<DevAiFlowUseCaseId>;
|
|
182043
183584
|
workspace?: InputMaybe<DevAiWorkspaceFilter>;
|
|
182044
183585
|
};
|
|
182045
183586
|
export type QueryDevai_FlowSessionGetByAriArgs = {
|
|
@@ -182498,6 +184039,9 @@ export type QueryGraphInference_GetRelatedReposV3Args = {
|
|
|
182498
184039
|
export type QueryGraphInference_GetSimilarJiraItemsArgs = {
|
|
182499
184040
|
input: GraphInferenceGetSimilarJiraItemsInput;
|
|
182500
184041
|
};
|
|
184042
|
+
export type QueryGraphInference_InferredProjectMeArgs = {
|
|
184043
|
+
forceRefresh?: Scalars['Boolean']['input'];
|
|
184044
|
+
};
|
|
182501
184045
|
export type QueryGraphIntegration_AvailableTwgCapabilityContainersArgs = {
|
|
182502
184046
|
contextAri: Scalars['ID']['input'];
|
|
182503
184047
|
};
|
|
@@ -182554,6 +184098,9 @@ export type QueryGraphIntegration_McpServerRequestsArgs = {
|
|
|
182554
184098
|
cloudId: Scalars['ID']['input'];
|
|
182555
184099
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
182556
184100
|
};
|
|
184101
|
+
export type QueryGraphIntegration_McpServerRequestsForUserArgs = {
|
|
184102
|
+
cloudId: Scalars['ID']['input'];
|
|
184103
|
+
};
|
|
182557
184104
|
export type QueryGraphIntegration_McpServerUserRequestsArgs = {
|
|
182558
184105
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182559
184106
|
aggregateRequestId: Scalars['ID']['input'];
|
|
@@ -184564,6 +186111,20 @@ export type QueryGraphStoreV2_AtlassianUserWatchesFocusFocusAreaInverseArgs = {
|
|
|
184564
186111
|
id: Scalars['ID']['input'];
|
|
184565
186112
|
sort?: InputMaybe<GraphStoreV2AtlassianUserWatchesFocusFocusAreaSortInput>;
|
|
184566
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
|
+
};
|
|
184567
186128
|
export type QueryGraphStoreV2_BitbucketRepositoryHasExternalPullRequestArgs = {
|
|
184568
186129
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
184569
186130
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -187287,6 +188848,20 @@ export type QueryGraphStoreV2_FocusOrganizationHasAtlassianGoalInverseArgs = {
|
|
|
187287
188848
|
id: Scalars['ID']['input'];
|
|
187288
188849
|
sort?: InputMaybe<GraphStoreV2FocusOrganizationHasAtlassianGoalSortInput>;
|
|
187289
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
|
+
};
|
|
187290
188865
|
export type QueryGraphStoreV2_FocusOrganizationHasFocusOrganizationMembershipArgs = {
|
|
187291
188866
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
187292
188867
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -187301,6 +188876,20 @@ export type QueryGraphStoreV2_FocusOrganizationHasFocusOrganizationMembershipInv
|
|
|
187301
188876
|
id: Scalars['ID']['input'];
|
|
187302
188877
|
sort?: InputMaybe<GraphStoreV2FocusOrganizationHasFocusOrganizationMembershipSortInput>;
|
|
187303
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
|
+
};
|
|
187304
188893
|
export type QueryGraphStoreV2_FocusOrganizationSponsorsFocusFocusAreaArgs = {
|
|
187305
188894
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
187306
188895
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -193277,6 +194866,36 @@ export type QueryGraphStore_MercuryOrganizationHasAtlasGoalInverseBatchArgs = {
|
|
|
193277
194866
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
193278
194867
|
sort?: InputMaybe<GraphStoreMercuryOrganizationHasAtlasGoalSortInput>;
|
|
193279
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
|
+
};
|
|
193280
194899
|
export type QueryGraphStore_MercuryOrganizationHasMercuryOrganizationMembershipArgs = {
|
|
193281
194900
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
193282
194901
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -193293,6 +194912,66 @@ export type QueryGraphStore_MercuryOrganizationHasMercuryOrganizationMembershipI
|
|
|
193293
194912
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
193294
194913
|
sort?: InputMaybe<GraphStoreMercuryOrganizationHasMercuryOrganizationMembershipSortInput>;
|
|
193295
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
|
+
};
|
|
193296
194975
|
export type QueryGraphStore_MercuryOrganizationSponsorsFocusAreaArgs = {
|
|
193297
194976
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
193298
194977
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -198304,6 +199983,13 @@ export type QueryJira_IsRovoLlmEnabledArgs = {
|
|
|
198304
199983
|
export type QueryJira_IsTenantConvertedToNfaArgs = {
|
|
198305
199984
|
cloudId: Scalars['ID']['input'];
|
|
198306
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
|
+
};
|
|
198307
199993
|
export type QueryJira_IssueSearchTopLevelIssueFieldsAggregationArgs = {
|
|
198308
199994
|
aggregationConfig?: InputMaybe<JiraIssueSearchAggregationConfigInput>;
|
|
198309
199995
|
issueIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -198528,6 +200214,63 @@ export type QueryJsmConversation_SettingArgs = {
|
|
|
198528
200214
|
export type QueryJsmConversation_SettingsArgs = {
|
|
198529
200215
|
projectAri: Scalars['String']['input'];
|
|
198530
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
|
+
};
|
|
198531
200274
|
export type QueryKitsune_ChunksArgs = {
|
|
198532
200275
|
ids: Array<Scalars['ID']['input']>;
|
|
198533
200276
|
};
|
|
@@ -198696,6 +200439,10 @@ export type QueryKnowledgeBase_LinkedSourcesArgs = {
|
|
|
198696
200439
|
cloudId: Scalars['ID']['input'];
|
|
198697
200440
|
projectIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
198698
200441
|
};
|
|
200442
|
+
export type QueryKnowledgeBase_MonthlyActiveUsersArgs = {
|
|
200443
|
+
cloudId: Scalars['ID']['input'];
|
|
200444
|
+
projectIdentifier: Scalars['String']['input'];
|
|
200445
|
+
};
|
|
198699
200446
|
export type QueryKnowledgeBase_SearchArticlesArgs = {
|
|
198700
200447
|
searchInput?: InputMaybe<KnowledgeBaseArticleSearchInput>;
|
|
198701
200448
|
};
|
|
@@ -198797,6 +200544,11 @@ export type QueryLoom_SpacesSearchArgs = {
|
|
|
198797
200544
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
198798
200545
|
siteId: Scalars['ID']['input'];
|
|
198799
200546
|
};
|
|
200547
|
+
export type QueryLoom_TagsSearchArgs = {
|
|
200548
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
200549
|
+
query: Scalars['String']['input'];
|
|
200550
|
+
siteId: Scalars['ID']['input'];
|
|
200551
|
+
};
|
|
198800
200552
|
export type QueryLoom_ValidateSlackUserIdsArgs = {
|
|
198801
200553
|
userIds: Array<Scalars['ID']['input']>;
|
|
198802
200554
|
};
|
|
@@ -199051,12 +200803,11 @@ export type QueryPlaybook_JiraPlaybooksForProjectArgs = {
|
|
|
199051
200803
|
sort?: InputMaybe<Array<JiraPlaybooksSortInput>>;
|
|
199052
200804
|
};
|
|
199053
200805
|
export type QueryPlaybook_MitigationByIdArgs = {
|
|
199054
|
-
|
|
199055
|
-
mitigationId: Scalars['ID']['input'];
|
|
200806
|
+
id: Scalars['ID']['input'];
|
|
199056
200807
|
};
|
|
199057
200808
|
export type QueryPlaybook_MitigationByScopeArgs = {
|
|
199058
200809
|
cloudId: Scalars['ID']['input'];
|
|
199059
|
-
scopeId: Scalars['
|
|
200810
|
+
scopeId: Scalars['String']['input'];
|
|
199060
200811
|
scopeType: MitigationScopeType;
|
|
199061
200812
|
};
|
|
199062
200813
|
export type QueryPolarisCollabTokenArgs = {
|
|
@@ -199405,6 +201156,14 @@ export type QueryRadar_StarredEntitiesArgs = {
|
|
|
199405
201156
|
cloudId: Scalars['ID']['input'];
|
|
199406
201157
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
199407
201158
|
};
|
|
201159
|
+
export type QueryRadar_SyncHistoriesSearchArgs = {
|
|
201160
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
201161
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
201162
|
+
cloudId: Scalars['ID']['input'];
|
|
201163
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
201164
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
201165
|
+
rql?: InputMaybe<Scalars['String']['input']>;
|
|
201166
|
+
};
|
|
199408
201167
|
export type QueryRadar_ViewByAriArgs = {
|
|
199409
201168
|
id: Scalars['ID']['input'];
|
|
199410
201169
|
};
|
|
@@ -200309,6 +202068,9 @@ export type QueryUts_AllowanceExemptionsArgs = {
|
|
|
200309
202068
|
scopeType?: InputMaybe<UtsAllowanceExemptionScopeType>;
|
|
200310
202069
|
usageKey?: InputMaybe<Scalars['String']['input']>;
|
|
200311
202070
|
};
|
|
202071
|
+
export type QueryUts_MeterConfigurationArgs = {
|
|
202072
|
+
usageKey: Scalars['String']['input'];
|
|
202073
|
+
};
|
|
200312
202074
|
export type QueryUts_UsageAlertsArgs = {
|
|
200313
202075
|
state?: InputMaybe<UtsAlertState>;
|
|
200314
202076
|
usageIdentifier: Scalars['ID']['input'];
|
|
@@ -200458,13 +202220,21 @@ export type RadarAiConnector = {
|
|
|
200458
202220
|
};
|
|
200459
202221
|
export type RadarAiConnectorConfigInput = {
|
|
200460
202222
|
apiKey?: InputMaybe<Scalars['String']['input']>;
|
|
202223
|
+
pricePerCredit?: InputMaybe<RadarMoneyInput>;
|
|
202224
|
+
seats?: InputMaybe<RadarAiConnectorSeatConfigInput>;
|
|
202225
|
+
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
200461
202226
|
};
|
|
200462
202227
|
export declare enum RadarAiConnectorProvider {
|
|
200463
202228
|
AnthropicClaudeConsole = "ANTHROPIC_CLAUDE_CONSOLE",
|
|
200464
202229
|
AnthropicClaudeEnterprise = "ANTHROPIC_CLAUDE_ENTERPRISE",
|
|
200465
202230
|
Cursor = "CURSOR",
|
|
202231
|
+
OpenaiCodex = "OPENAI_CODEX",
|
|
200466
202232
|
Rovo = "ROVO"
|
|
200467
202233
|
}
|
|
202234
|
+
export type RadarAiConnectorSeatConfigInput = {
|
|
202235
|
+
pricePerSeat: RadarMoneyInput;
|
|
202236
|
+
seatCount: Scalars['Int']['input'];
|
|
202237
|
+
};
|
|
200468
202238
|
export declare enum RadarAiConnectorType {
|
|
200469
202239
|
Api = "API",
|
|
200470
202240
|
Csv = "CSV"
|
|
@@ -200611,6 +202381,10 @@ export type RadarDeleteLaborCostEstimateDataResponse = {
|
|
|
200611
202381
|
radarPositionLaborCostEstimateSettings?: Maybe<RadarPositionLaborCostEstimateSettings>;
|
|
200612
202382
|
success: Scalars['Boolean']['output'];
|
|
200613
202383
|
};
|
|
202384
|
+
export type RadarDeleteMetricSettingsInput = {
|
|
202385
|
+
metricKey: RadarOrgMetric;
|
|
202386
|
+
scopeId: Scalars['String']['input'];
|
|
202387
|
+
};
|
|
200614
202388
|
export type RadarDynamicFilterOptions = RadarFilterOptions & {
|
|
200615
202389
|
__typename?: 'RadarDynamicFilterOptions';
|
|
200616
202390
|
functionOptions: Array<RadarFunction>;
|
|
@@ -200641,6 +202415,7 @@ export declare enum RadarEntityType {
|
|
|
200641
202415
|
Proposal = "proposal",
|
|
200642
202416
|
ProposedMovement = "proposedMovement",
|
|
200643
202417
|
Skill = "skill",
|
|
202418
|
+
SyncHistory = "syncHistory",
|
|
200644
202419
|
Team = "team",
|
|
200645
202420
|
View = "view",
|
|
200646
202421
|
Worker = "worker"
|
|
@@ -200712,6 +202487,7 @@ export type RadarFieldValuesEdge = RadarEdge & {
|
|
|
200712
202487
|
};
|
|
200713
202488
|
export type RadarFields = {
|
|
200714
202489
|
__typename?: 'RadarFields';
|
|
202490
|
+
aiConnectorFields: Array<RadarFieldDefinition>;
|
|
200715
202491
|
aiUsageFields: Array<RadarFieldDefinition>;
|
|
200716
202492
|
focusAreaFields: Array<RadarFieldDefinition>;
|
|
200717
202493
|
focusAreaTypeFields: Array<RadarFieldDefinition>;
|
|
@@ -201112,6 +202888,7 @@ export type RadarSkill = Node & {
|
|
|
201112
202888
|
__typename?: 'RadarSkill';
|
|
201113
202889
|
classifiedWorkerCount?: Maybe<Scalars['Int']['output']>;
|
|
201114
202890
|
context?: Maybe<Scalars['String']['output']>;
|
|
202891
|
+
createdAt: Scalars['DateTime']['output'];
|
|
201115
202892
|
depth?: Maybe<Scalars['Int']['output']>;
|
|
201116
202893
|
description?: Maybe<Scalars['String']['output']>;
|
|
201117
202894
|
hasChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -201119,6 +202896,7 @@ export type RadarSkill = Node & {
|
|
|
201119
202896
|
name: Scalars['String']['output'];
|
|
201120
202897
|
parent?: Maybe<RadarSkill>;
|
|
201121
202898
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
202899
|
+
updatedAt: Scalars['DateTime']['output'];
|
|
201122
202900
|
};
|
|
201123
202901
|
export type RadarSkillAssignmentInput = {
|
|
201124
202902
|
skillId: Scalars['ID']['input'];
|
|
@@ -201181,13 +202959,29 @@ export type RadarSyncData = {
|
|
|
201181
202959
|
__typename?: 'RadarSyncData';
|
|
201182
202960
|
lastSuccessfulSync?: Maybe<Scalars['DateTime']['output']>;
|
|
201183
202961
|
};
|
|
202962
|
+
export type RadarSyncHistoriesConnection = RadarConnection & {
|
|
202963
|
+
__typename?: 'RadarSyncHistoriesConnection';
|
|
202964
|
+
edges: Array<RadarSyncHistoriesEdge>;
|
|
202965
|
+
nodes: Array<RadarSyncHistory>;
|
|
202966
|
+
pageInfo: PageInfo;
|
|
202967
|
+
totalCount: Scalars['Int']['output'];
|
|
202968
|
+
};
|
|
202969
|
+
export type RadarSyncHistoriesEdge = RadarEdge & {
|
|
202970
|
+
__typename?: 'RadarSyncHistoriesEdge';
|
|
202971
|
+
cursor: Scalars['String']['output'];
|
|
202972
|
+
node: RadarSyncHistory;
|
|
202973
|
+
};
|
|
201184
202974
|
export type RadarSyncHistory = {
|
|
201185
202975
|
__typename?: 'RadarSyncHistory';
|
|
202976
|
+
aiConnector?: Maybe<RadarAiConnector>;
|
|
202977
|
+
aiConnectorId?: Maybe<Scalars['ID']['output']>;
|
|
201186
202978
|
createdAt: Scalars['DateTime']['output'];
|
|
201187
202979
|
id: Scalars['ID']['output'];
|
|
201188
202980
|
status: RadarSyncHistoryStatus;
|
|
202981
|
+
summary?: Maybe<RadarSyncHistorySummary>;
|
|
201189
202982
|
triggeredBy: Scalars['String']['output'];
|
|
201190
202983
|
triggeredByUser?: Maybe<User>;
|
|
202984
|
+
type: Scalars['String']['output'];
|
|
201191
202985
|
updatedAt: Scalars['DateTime']['output'];
|
|
201192
202986
|
};
|
|
201193
202987
|
export declare enum RadarSyncHistoryStatus {
|
|
@@ -201201,6 +202995,19 @@ export declare enum RadarSyncHistoryStatus {
|
|
|
201201
202995
|
ThirdPartyConnectorRunning = "THIRD_PARTY_CONNECTOR_RUNNING",
|
|
201202
202996
|
TimedOut = "TIMED_OUT"
|
|
201203
202997
|
}
|
|
202998
|
+
export type RadarSyncHistorySummary = {
|
|
202999
|
+
__typename?: 'RadarSyncHistorySummary';
|
|
203000
|
+
errors?: Maybe<Scalars['JSON']['output']>;
|
|
203001
|
+
meta?: Maybe<Scalars['JSON']['output']>;
|
|
203002
|
+
sources?: Maybe<Array<RadarSyncHistorySummarySource>>;
|
|
203003
|
+
};
|
|
203004
|
+
export type RadarSyncHistorySummarySource = {
|
|
203005
|
+
__typename?: 'RadarSyncHistorySummarySource';
|
|
203006
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
203007
|
+
size?: Maybe<Scalars['String']['output']>;
|
|
203008
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
203009
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
203010
|
+
};
|
|
201204
203011
|
export type RadarUpdateAiConnectorInput = {
|
|
201205
203012
|
config?: InputMaybe<RadarAiConnectorConfigInput>;
|
|
201206
203013
|
id: Scalars['ID']['input'];
|
|
@@ -201634,15 +203441,25 @@ export type RegisterTunnelResponse = Payload & {
|
|
|
201634
203441
|
tunnelUrl?: Maybe<Scalars['String']['output']>;
|
|
201635
203442
|
};
|
|
201636
203443
|
export type RejectIndicatorInput = {
|
|
201637
|
-
|
|
201638
|
-
indicatorId: Scalars['ID']['input'];
|
|
203444
|
+
id: Scalars['ID']['input'];
|
|
201639
203445
|
reason: IndicatorRejectionReason;
|
|
201640
203446
|
};
|
|
203447
|
+
export type RejectIndicatorPayload = Payload & {
|
|
203448
|
+
__typename?: 'RejectIndicatorPayload';
|
|
203449
|
+
errors?: Maybe<Array<MutationError>>;
|
|
203450
|
+
indicator?: Maybe<MitigationIndicator>;
|
|
203451
|
+
success: Scalars['Boolean']['output'];
|
|
203452
|
+
};
|
|
201641
203453
|
export type RejectPlanInput = {
|
|
201642
|
-
|
|
201643
|
-
planId: Scalars['ID']['input'];
|
|
203454
|
+
id: Scalars['ID']['input'];
|
|
201644
203455
|
reason: PlanRejectionReason;
|
|
201645
203456
|
};
|
|
203457
|
+
export type RejectPlanPayload = Payload & {
|
|
203458
|
+
__typename?: 'RejectPlanPayload';
|
|
203459
|
+
errors?: Maybe<Array<MutationError>>;
|
|
203460
|
+
plan?: Maybe<MitigationPlan>;
|
|
203461
|
+
success: Scalars['Boolean']['output'];
|
|
203462
|
+
};
|
|
201646
203463
|
export declare enum RelationSourceType {
|
|
201647
203464
|
User = "user"
|
|
201648
203465
|
}
|
|
@@ -203651,6 +205468,7 @@ export type SearchL2FeatureProvider = {
|
|
|
203651
205468
|
};
|
|
203652
205469
|
export type SearchLayerDefinition = {
|
|
203653
205470
|
abTestId?: InputMaybe<Scalars['String']['input']>;
|
|
205471
|
+
armId?: InputMaybe<Scalars['String']['input']>;
|
|
203654
205472
|
connectorSources?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
203655
205473
|
entity?: InputMaybe<Scalars['String']['input']>;
|
|
203656
205474
|
integrationARI?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -204561,7 +206379,32 @@ export declare enum SearchResultType {
|
|
|
204561
206379
|
Video = "video",
|
|
204562
206380
|
Whiteboard = "whiteboard"
|
|
204563
206381
|
}
|
|
206382
|
+
export type SearchSalesforceAttributeFilter = {
|
|
206383
|
+
field: Scalars['String']['input'];
|
|
206384
|
+
from?: InputMaybe<Scalars['String']['input']>;
|
|
206385
|
+
operator: SearchSalesforceAttributeFilterOperator;
|
|
206386
|
+
source: SearchSalesforceAttributeFilterSource;
|
|
206387
|
+
to?: InputMaybe<Scalars['String']['input']>;
|
|
206388
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
206389
|
+
values?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
206390
|
+
};
|
|
206391
|
+
export declare enum SearchSalesforceAttributeFilterOperator {
|
|
206392
|
+
Between = "BETWEEN",
|
|
206393
|
+
Eq = "EQ",
|
|
206394
|
+
Gt = "GT",
|
|
206395
|
+
Gte = "GTE",
|
|
206396
|
+
In = "IN",
|
|
206397
|
+
Lt = "LT",
|
|
206398
|
+
Lte = "LTE"
|
|
206399
|
+
}
|
|
206400
|
+
export declare enum SearchSalesforceAttributeFilterSource {
|
|
206401
|
+
CustomPropertiesDate = "CUSTOM_PROPERTIES_DATE",
|
|
206402
|
+
CustomPropertiesKeyword = "CUSTOM_PROPERTIES_KEYWORD",
|
|
206403
|
+
CustomPropertiesNumber = "CUSTOM_PROPERTIES_NUMBER",
|
|
206404
|
+
Relationships = "RELATIONSHIPS"
|
|
206405
|
+
}
|
|
204564
206406
|
export type SearchSalesforceFilters = {
|
|
206407
|
+
attributeFilters?: InputMaybe<Array<SearchSalesforceAttributeFilter>>;
|
|
204565
206408
|
campaignStatuses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
204566
206409
|
caseStatuses?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
204567
206410
|
closeDate?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -228755,10 +230598,10 @@ export declare enum SwimlaneStrategy {
|
|
|
228755
230598
|
}
|
|
228756
230599
|
export type SymptomIndicator = {
|
|
228757
230600
|
__typename?: 'SymptomIndicator';
|
|
228758
|
-
provenance
|
|
228759
|
-
summary: Scalars['String']['output'];
|
|
230601
|
+
provenance?: Maybe<Array<IndicatorProvenance>>;
|
|
228760
230602
|
symptomId: Scalars['String']['output'];
|
|
228761
|
-
|
|
230603
|
+
symptomSummary?: Maybe<Scalars['String']['output']>;
|
|
230604
|
+
symptomType?: Maybe<MitigationSymptomType>;
|
|
228762
230605
|
};
|
|
228763
230606
|
export type SystemSpaceHomepageInput = {
|
|
228764
230607
|
systemSpaceHomepageTemplate: SystemSpaceHomepageTemplate;
|
|
@@ -231103,6 +232946,7 @@ export type TownsquareGoal = Node & {
|
|
|
231103
232946
|
tags?: Maybe<TownsquareTagConnection>;
|
|
231104
232947
|
targetDate?: Maybe<TownsquareTargetDate>;
|
|
231105
232948
|
teams?: Maybe<TownsquareGoalTeamConnection>;
|
|
232949
|
+
updateStreak?: Maybe<Scalars['Int']['output']>;
|
|
231106
232950
|
updates?: Maybe<TownsquareGoalUpdateConnection>;
|
|
231107
232951
|
url?: Maybe<Scalars['String']['output']>;
|
|
231108
232952
|
uuid: Scalars['String']['output'];
|
|
@@ -232257,6 +234101,16 @@ export type TownsquareGoalsRestoreGoalsPayload = {
|
|
|
232257
234101
|
restoredGoals?: Maybe<Array<TownsquareGoal>>;
|
|
232258
234102
|
success: Scalars['Boolean']['output'];
|
|
232259
234103
|
};
|
|
234104
|
+
export type TownsquareGoalsSetDefaultAccessLevelInput = {
|
|
234105
|
+
accessLevel: TownsquareGoalAccessLevel;
|
|
234106
|
+
containerId: Scalars['ID']['input'];
|
|
234107
|
+
};
|
|
234108
|
+
export type TownsquareGoalsSetDefaultAccessLevelPayload = {
|
|
234109
|
+
__typename?: 'TownsquareGoalsSetDefaultAccessLevelPayload';
|
|
234110
|
+
defaultGoalAccessLevel?: Maybe<TownsquareGoalAccessLevel>;
|
|
234111
|
+
errors?: Maybe<Array<MutationError>>;
|
|
234112
|
+
success: Scalars['Boolean']['output'];
|
|
234113
|
+
};
|
|
232260
234114
|
export type TownsquareGoalsSetParentGoalInput = {
|
|
232261
234115
|
goalId: Scalars['ID']['input'];
|
|
232262
234116
|
parentGoalId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -232623,6 +234477,7 @@ export declare enum TownsquareMetricType {
|
|
|
232623
234477
|
export type TownsquareMetricUpdateEditInput = {
|
|
232624
234478
|
metricId: Scalars['ID']['input'];
|
|
232625
234479
|
newValue: Scalars['Float']['input'];
|
|
234480
|
+
time?: InputMaybe<Scalars['DateTime']['input']>;
|
|
232626
234481
|
};
|
|
232627
234482
|
export type TownsquareMetricUpdateInput = {
|
|
232628
234483
|
newValue: Scalars['Float']['input'];
|
|
@@ -233405,6 +235260,7 @@ export type TownsquareProjectsAppPermissionPolicyInput = {
|
|
|
233405
235260
|
export type TownsquareProjectsAppSettings = {
|
|
233406
235261
|
__typename?: 'TownsquareProjectsAppSettings';
|
|
233407
235262
|
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
235263
|
+
defaultProjectAccessLevel?: Maybe<TownsquareProjectAccessLevel>;
|
|
233408
235264
|
};
|
|
233409
235265
|
export type TownsquareProjectsCanCreateProjectFusionInput = {
|
|
233410
235266
|
issueId: Scalars['ID']['input'];
|
|
@@ -233904,6 +235760,16 @@ export type TownsquareProjectsRemoveUserCustomFieldValuePayload = {
|
|
|
233904
235760
|
success: Scalars['Boolean']['output'];
|
|
233905
235761
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
233906
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
|
+
};
|
|
233907
235773
|
export type TownsquareProjectsSetDependencyInput = {
|
|
233908
235774
|
incomingProjectId: Scalars['ID']['input'];
|
|
233909
235775
|
outgoingProjectId: Scalars['ID']['input'];
|
|
@@ -234611,6 +236477,7 @@ export type TownsquareWorkspace = Node & {
|
|
|
234611
236477
|
__typename?: 'TownsquareWorkspace';
|
|
234612
236478
|
cloudId: Scalars['String']['output'];
|
|
234613
236479
|
defaultGoalAccessLevel: TownsquareGoalAccessLevel;
|
|
236480
|
+
defaultProjectAccessLevel: TownsquareProjectAccessLevel;
|
|
234614
236481
|
id: Scalars['ID']['output'];
|
|
234615
236482
|
name: Scalars['String']['output'];
|
|
234616
236483
|
};
|
|
@@ -235148,6 +237015,16 @@ export type TrelloApplicationUsage = {
|
|
|
235148
237015
|
boards?: Maybe<Scalars['Int']['output']>;
|
|
235149
237016
|
members?: Maybe<Scalars['Int']['output']>;
|
|
235150
237017
|
};
|
|
237018
|
+
export type TrelloArchivedCardConnection = {
|
|
237019
|
+
__typename?: 'TrelloArchivedCardConnection';
|
|
237020
|
+
edges?: Maybe<Array<TrelloArchivedCardEdge>>;
|
|
237021
|
+
pageInfo: PageInfo;
|
|
237022
|
+
};
|
|
237023
|
+
export type TrelloArchivedCardEdge = {
|
|
237024
|
+
__typename?: 'TrelloArchivedCardEdge';
|
|
237025
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
237026
|
+
node?: Maybe<TrelloBaseCard>;
|
|
237027
|
+
};
|
|
235151
237028
|
export type TrelloAssignCardToPlannerCalendarEventFailure = {
|
|
235152
237029
|
__typename?: 'TrelloAssignCardToPlannerCalendarEventFailure';
|
|
235153
237030
|
cardId: Scalars['ID']['output'];
|
|
@@ -237727,8 +239604,7 @@ export type TrelloLabelUpdatedConnection = {
|
|
|
237727
239604
|
export declare enum TrelloLabsFeature {
|
|
237728
239605
|
AiBoardBuilder = "AI_BOARD_BUILDER",
|
|
237729
239606
|
GenerateChecklist = "GENERATE_CHECKLIST",
|
|
237730
|
-
RovoChat = "ROVO_CHAT"
|
|
237731
|
-
SmartSchedule = "SMART_SCHEDULE"
|
|
239607
|
+
RovoChat = "ROVO_CHAT"
|
|
237732
239608
|
}
|
|
237733
239609
|
export declare enum TrelloLabsFeatureStatus {
|
|
237734
239610
|
NotSet = "NOT_SET",
|
|
@@ -239831,6 +241707,7 @@ export type TrelloProviderCalendarInterface = {
|
|
|
239831
241707
|
export type TrelloQueryApi = {
|
|
239832
241708
|
__typename?: 'TrelloQueryApi';
|
|
239833
241709
|
application?: Maybe<TrelloApplication>;
|
|
241710
|
+
archivedCards?: Maybe<TrelloArchivedCardConnection>;
|
|
239834
241711
|
attachmentsById?: Maybe<Array<Maybe<TrelloAttachment>>>;
|
|
239835
241712
|
board?: Maybe<TrelloBoard>;
|
|
239836
241713
|
boardByShortLink?: Maybe<TrelloBoard>;
|
|
@@ -239876,6 +241753,11 @@ export type TrelloQueryApi = {
|
|
|
239876
241753
|
export type TrelloQueryApiApplicationArgs = {
|
|
239877
241754
|
id: Scalars['ID']['input'];
|
|
239878
241755
|
};
|
|
241756
|
+
export type TrelloQueryApiArchivedCardsArgs = {
|
|
241757
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
241758
|
+
boardId: Scalars['ID']['input'];
|
|
241759
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
241760
|
+
};
|
|
239879
241761
|
export type TrelloQueryApiAttachmentsByIdArgs = {
|
|
239880
241762
|
ids: Array<Scalars['ID']['input']>;
|
|
239881
241763
|
};
|
|
@@ -241215,6 +243097,7 @@ export type TrelloWorkOverviewDashboardPayload = Payload & {
|
|
|
241215
243097
|
export type TrelloWorkspace = Node & {
|
|
241216
243098
|
__typename?: 'TrelloWorkspace';
|
|
241217
243099
|
aiEligible?: Maybe<Scalars['Boolean']['output']>;
|
|
243100
|
+
boards?: Maybe<TrelloWorkspaceBoardConnection>;
|
|
241218
243101
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
241219
243102
|
description?: Maybe<Scalars['String']['output']>;
|
|
241220
243103
|
displayBoardCount?: Maybe<Scalars['Int']['output']>;
|
|
@@ -241238,6 +243121,11 @@ export type TrelloWorkspace = Node & {
|
|
|
241238
243121
|
url?: Maybe<Scalars['URL']['output']>;
|
|
241239
243122
|
website?: Maybe<Scalars['String']['output']>;
|
|
241240
243123
|
};
|
|
243124
|
+
export type TrelloWorkspaceBoardsArgs = {
|
|
243125
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
243126
|
+
filter?: InputMaybe<TrelloWorkspaceBoardFilter>;
|
|
243127
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
243128
|
+
};
|
|
241241
243129
|
export type TrelloWorkspaceMembersArgs = {
|
|
241242
243130
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
241243
243131
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -241257,6 +243145,25 @@ export type TrelloWorkspaceAccessSummary = {
|
|
|
241257
243145
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
241258
243146
|
id: Scalars['ID']['output'];
|
|
241259
243147
|
};
|
|
243148
|
+
export type TrelloWorkspaceBoardConnection = {
|
|
243149
|
+
__typename?: 'TrelloWorkspaceBoardConnection';
|
|
243150
|
+
edges?: Maybe<Array<TrelloWorkspaceBoardEdge>>;
|
|
243151
|
+
nodes?: Maybe<Array<Maybe<TrelloBaseBoard>>>;
|
|
243152
|
+
pageInfo: PageInfo;
|
|
243153
|
+
};
|
|
243154
|
+
export type TrelloWorkspaceBoardEdge = {
|
|
243155
|
+
__typename?: 'TrelloWorkspaceBoardEdge';
|
|
243156
|
+
cursor: Scalars['String']['output'];
|
|
243157
|
+
node?: Maybe<TrelloBaseBoard>;
|
|
243158
|
+
};
|
|
243159
|
+
export type TrelloWorkspaceBoardFilter = {
|
|
243160
|
+
filterValues?: InputMaybe<Array<TrelloWorkspaceBoardFilterValue>>;
|
|
243161
|
+
};
|
|
243162
|
+
export declare enum TrelloWorkspaceBoardFilterValue {
|
|
243163
|
+
All = "ALL",
|
|
243164
|
+
Closed = "CLOSED",
|
|
243165
|
+
Open = "OPEN"
|
|
243166
|
+
}
|
|
241260
243167
|
export type TrelloWorkspaceEnterpriseUpdated = {
|
|
241261
243168
|
__typename?: 'TrelloWorkspaceEnterpriseUpdated';
|
|
241262
243169
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -241321,7 +243228,7 @@ export type TrelloWorkspaceUpdated = {
|
|
|
241321
243228
|
};
|
|
241322
243229
|
export type TriggerMitigationInput = {
|
|
241323
243230
|
cloudId: Scalars['ID']['input'];
|
|
241324
|
-
scopeId: Scalars['
|
|
243231
|
+
scopeId: Scalars['String']['input'];
|
|
241325
243232
|
scopeType: MitigationScopeType;
|
|
241326
243233
|
};
|
|
241327
243234
|
export type TriggerMitigationPayload = Payload & {
|
|
@@ -242893,14 +244800,6 @@ export type UnlinkExternalSourcePayload = Payload & {
|
|
|
242893
244800
|
errors?: Maybe<Array<MutationError>>;
|
|
242894
244801
|
success: Scalars['Boolean']['output'];
|
|
242895
244802
|
};
|
|
242896
|
-
export type UnrejectIndicatorInput = {
|
|
242897
|
-
cloudId: Scalars['ID']['input'];
|
|
242898
|
-
indicatorId: Scalars['ID']['input'];
|
|
242899
|
-
};
|
|
242900
|
-
export type UnrejectPlanInput = {
|
|
242901
|
-
cloudId: Scalars['ID']['input'];
|
|
242902
|
-
planId: Scalars['ID']['input'];
|
|
242903
|
-
};
|
|
242904
244803
|
export type UnwatchMarketplaceAppPayload = Payload & {
|
|
242905
244804
|
__typename?: 'UnwatchMarketplaceAppPayload';
|
|
242906
244805
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -244148,6 +246047,26 @@ export declare enum UtsLatestAllowanceEnforcementModeType {
|
|
|
244148
246047
|
LimitedOverage = "LIMITED_OVERAGE",
|
|
244149
246048
|
Overage = "OVERAGE"
|
|
244150
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
|
+
};
|
|
244151
246070
|
export type UtsUsageAlert = {
|
|
244152
246071
|
__typename?: 'UtsUsageAlert';
|
|
244153
246072
|
createdAt?: Maybe<Scalars['Float']['output']>;
|