@forge/cli-shared 8.16.1-next.0 → 8.17.0-next.2
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 +18 -0
- package/out/graphql/graphql-types.d.ts +1445 -43
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +133 -38
- package/out/shared/index.d.ts +1 -0
- package/out/shared/index.d.ts.map +1 -1
- package/out/shared/index.js +1 -0
- package/out/shared/installations.d.ts +2 -0
- package/out/shared/installations.d.ts.map +1 -0
- package/out/shared/installations.js +4 -0
- package/out/ui/text.d.ts +4 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +7 -2
- package/package.json +2 -2
|
@@ -187,11 +187,9 @@ export declare enum AvpAnalyticsColumnType {
|
|
|
187
187
|
Text = "TEXT"
|
|
188
188
|
}
|
|
189
189
|
export declare type AvpAnalyticsCreateModelInput = {
|
|
190
|
-
cloudId: Scalars['ID']['input'];
|
|
191
190
|
modelDefinition?: InputMaybe<AvpAnalyticsModelDefinitionInput>;
|
|
192
191
|
modelDescription?: InputMaybe<Scalars['String']['input']>;
|
|
193
192
|
modelName?: InputMaybe<Scalars['String']['input']>;
|
|
194
|
-
workspaceId: Scalars['ID']['input'];
|
|
195
193
|
};
|
|
196
194
|
export declare type AvpAnalyticsCreateModelPayload = Payload & {
|
|
197
195
|
__typename?: 'AVPAnalyticsCreateModelPayload';
|
|
@@ -3617,8 +3615,21 @@ export declare type AgentAiIssueSummary = {
|
|
|
3617
3615
|
export declare type AgentAiIssueSummaryResult = AgentAiIssueSummary | QueryError;
|
|
3618
3616
|
export declare type AgentAiPanel = {
|
|
3619
3617
|
__typename?: 'AgentAIPanel';
|
|
3618
|
+
changesFromLastVisit?: Maybe<Scalars['String']['output']>;
|
|
3619
|
+
shortSummary?: Maybe<Scalars['String']['output']>;
|
|
3620
|
+
};
|
|
3621
|
+
export declare type AgentAiPanelChangesFromLastVisitArgs = {
|
|
3622
|
+
lastActivityTime?: InputMaybe<Scalars['Long']['input']>;
|
|
3623
|
+
};
|
|
3624
|
+
export declare type AgentAiPanelRefreshPayload = {
|
|
3625
|
+
__typename?: 'AgentAIPanelRefreshPayload';
|
|
3626
|
+
changesFromLastVisit?: Maybe<Scalars['String']['output']>;
|
|
3620
3627
|
shortSummary?: Maybe<Scalars['String']['output']>;
|
|
3621
3628
|
};
|
|
3629
|
+
export declare type AgentAiPanelRefreshPayloadChangesFromLastVisitArgs = {
|
|
3630
|
+
lastActivityTime?: InputMaybe<Scalars['Long']['input']>;
|
|
3631
|
+
};
|
|
3632
|
+
export declare type AgentAiPanelRefreshResult = AgentAiPanelRefreshPayload | QueryError;
|
|
3622
3633
|
export declare type AgentAiPanelResult = AgentAiPanel | QueryError;
|
|
3623
3634
|
export declare type AgentAiSuggestAction = {
|
|
3624
3635
|
__typename?: 'AgentAISuggestAction';
|
|
@@ -4412,6 +4423,7 @@ export declare enum AgentStudioKnowledgeGapUploadJobStatus {
|
|
|
4412
4423
|
Generating = "GENERATING",
|
|
4413
4424
|
PartialComplete = "PARTIAL_COMPLETE",
|
|
4414
4425
|
Pending = "PENDING",
|
|
4426
|
+
Postprocessing = "POSTPROCESSING",
|
|
4415
4427
|
Processing = "PROCESSING"
|
|
4416
4428
|
}
|
|
4417
4429
|
export declare type AgentStudioKnowledgeSource = {
|
|
@@ -4656,6 +4668,7 @@ export declare type AgentStudioTeamsChannelDetails = {
|
|
|
4656
4668
|
};
|
|
4657
4669
|
export declare type AgentStudioTool = {
|
|
4658
4670
|
__typename?: 'AgentStudioTool';
|
|
4671
|
+
configuration?: Maybe<AgentStudioToolConfiguration>;
|
|
4659
4672
|
configured?: Maybe<Scalars['Boolean']['output']>;
|
|
4660
4673
|
definitionId?: Maybe<Scalars['String']['output']>;
|
|
4661
4674
|
definitionSource?: Maybe<AgentStudioToolDefinitionSource>;
|
|
@@ -4666,6 +4679,17 @@ export declare type AgentStudioTool = {
|
|
|
4666
4679
|
integrationKey?: Maybe<Scalars['String']['output']>;
|
|
4667
4680
|
tags?: Maybe<Array<Scalars['String']['output']>>;
|
|
4668
4681
|
};
|
|
4682
|
+
export declare type AgentStudioToolConfiguration = {
|
|
4683
|
+
__typename?: 'AgentStudioToolConfiguration';
|
|
4684
|
+
id: Scalars['ID']['output'];
|
|
4685
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4686
|
+
properties?: Maybe<Array<AgentStudioToolPropertyConfiguration>>;
|
|
4687
|
+
};
|
|
4688
|
+
export declare type AgentStudioToolConfigurationInput = {
|
|
4689
|
+
id: Scalars['ID']['input'];
|
|
4690
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4691
|
+
properties?: InputMaybe<Array<AgentStudioToolPropertyConfigurationInput>>;
|
|
4692
|
+
};
|
|
4669
4693
|
export declare enum AgentStudioToolDefinitionSource {
|
|
4670
4694
|
ConvoAi = "CONVO_AI",
|
|
4671
4695
|
Forge = "FORGE",
|
|
@@ -4683,6 +4707,7 @@ export declare type AgentStudioToolIdAndSource = {
|
|
|
4683
4707
|
toolId: Scalars['String']['input'];
|
|
4684
4708
|
};
|
|
4685
4709
|
export declare type AgentStudioToolInput = {
|
|
4710
|
+
configuration?: InputMaybe<AgentStudioToolConfigurationInput>;
|
|
4686
4711
|
configured?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4687
4712
|
definitionId: Scalars['String']['input'];
|
|
4688
4713
|
definitionSource: AgentStudioToolDefinitionSource;
|
|
@@ -4710,6 +4735,15 @@ export declare type AgentStudioToolIntegrationsConnection = {
|
|
|
4710
4735
|
edges: Array<AgentStudioToolIntegrationEdge>;
|
|
4711
4736
|
pageInfo: PageInfo;
|
|
4712
4737
|
};
|
|
4738
|
+
export declare type AgentStudioToolPropertyConfiguration = {
|
|
4739
|
+
__typename?: 'AgentStudioToolPropertyConfiguration';
|
|
4740
|
+
allowedValues?: Maybe<Array<Scalars['String']['output']>>;
|
|
4741
|
+
id: Scalars['String']['output'];
|
|
4742
|
+
};
|
|
4743
|
+
export declare type AgentStudioToolPropertyConfigurationInput = {
|
|
4744
|
+
allowedValues?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
4745
|
+
id: Scalars['String']['input'];
|
|
4746
|
+
};
|
|
4713
4747
|
export declare type AgentStudioToolsConnection = {
|
|
4714
4748
|
__typename?: 'AgentStudioToolsConnection';
|
|
4715
4749
|
edges: Array<AgentStudioToolEdge>;
|
|
@@ -5000,6 +5034,8 @@ export declare type AgentWorkspaceAvailabilityInput = {
|
|
|
5000
5034
|
pageSize?: InputMaybe<Scalars['Int']['input']>;
|
|
5001
5035
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
5002
5036
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
5037
|
+
sortBy?: InputMaybe<AgentWorkspaceAvailabilitySortField>;
|
|
5038
|
+
sortOrder?: InputMaybe<AgentWorkspaceSortDirection>;
|
|
5003
5039
|
statuses?: InputMaybe<Array<AgentWorkspaceAvailabilityStatus>>;
|
|
5004
5040
|
teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5005
5041
|
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -5015,6 +5051,11 @@ export declare type AgentWorkspaceAvailabilityPageInfo = {
|
|
|
5015
5051
|
totalCount: Scalars['Int']['output'];
|
|
5016
5052
|
totalPages: Scalars['Int']['output'];
|
|
5017
5053
|
};
|
|
5054
|
+
export declare enum AgentWorkspaceAvailabilitySortField {
|
|
5055
|
+
LastUpdated = "LAST_UPDATED",
|
|
5056
|
+
Name = "NAME",
|
|
5057
|
+
Status = "STATUS"
|
|
5058
|
+
}
|
|
5018
5059
|
export declare enum AgentWorkspaceAvailabilityStatus {
|
|
5019
5060
|
Available = "AVAILABLE",
|
|
5020
5061
|
OnBreak = "ON_BREAK"
|
|
@@ -5053,7 +5094,7 @@ export declare type AgentWorkspaceCapacityInput = {
|
|
|
5053
5094
|
cloudId: Scalars['ID']['input'];
|
|
5054
5095
|
projectKey: Scalars['String']['input'];
|
|
5055
5096
|
sortBy?: InputMaybe<AgentWorkspaceCapacitySortField>;
|
|
5056
|
-
sortOrder?: InputMaybe<
|
|
5097
|
+
sortOrder?: InputMaybe<AgentWorkspaceSortDirection>;
|
|
5057
5098
|
statuses?: InputMaybe<Array<AgentWorkspaceCapacityStatus>>;
|
|
5058
5099
|
teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5059
5100
|
teamIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -5067,6 +5108,7 @@ export declare type AgentWorkspaceCapacityPageInfo = {
|
|
|
5067
5108
|
totalCount: Scalars['Int']['output'];
|
|
5068
5109
|
};
|
|
5069
5110
|
export declare enum AgentWorkspaceCapacitySortField {
|
|
5111
|
+
Agent = "AGENT",
|
|
5070
5112
|
Capacity = "CAPACITY"
|
|
5071
5113
|
}
|
|
5072
5114
|
export declare enum AgentWorkspaceCapacityStatus {
|
|
@@ -5126,6 +5168,7 @@ export declare type AgentWorkspaceCatalogEdge = {
|
|
|
5126
5168
|
};
|
|
5127
5169
|
export declare type AgentWorkspaceCatalogFilterInput = {
|
|
5128
5170
|
catalogTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
5171
|
+
hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
5129
5172
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5130
5173
|
nameContains?: InputMaybe<Scalars['String']['input']>;
|
|
5131
5174
|
};
|
|
@@ -5138,11 +5181,11 @@ export declare type AgentWorkspaceCatalogInput = {
|
|
|
5138
5181
|
export declare type AgentWorkspaceCatalogType = {
|
|
5139
5182
|
__typename?: 'AgentWorkspaceCatalogType';
|
|
5140
5183
|
catalogs?: Maybe<Array<AgentWorkspaceCatalog>>;
|
|
5141
|
-
childType?: Maybe<AgentWorkspaceCatalogType>;
|
|
5142
5184
|
description?: Maybe<Scalars['String']['output']>;
|
|
5185
|
+
hierarchyDefinition: AgentWorkspaceHierarchyDefinition;
|
|
5143
5186
|
id: Scalars['ID']['output'];
|
|
5187
|
+
level: Scalars['Int']['output'];
|
|
5144
5188
|
name: Scalars['String']['output'];
|
|
5145
|
-
parentType?: Maybe<AgentWorkspaceCatalogType>;
|
|
5146
5189
|
};
|
|
5147
5190
|
export declare type AgentWorkspaceCatalogTypeConnection = {
|
|
5148
5191
|
__typename?: 'AgentWorkspaceCatalogTypeConnection';
|
|
@@ -5174,7 +5217,9 @@ export declare type AgentWorkspaceCatalogTypeEdge = {
|
|
|
5174
5217
|
node: AgentWorkspaceCatalogType;
|
|
5175
5218
|
};
|
|
5176
5219
|
export declare type AgentWorkspaceCatalogTypeFilterInput = {
|
|
5220
|
+
hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
5177
5221
|
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5222
|
+
level?: InputMaybe<Scalars['Int']['input']>;
|
|
5178
5223
|
nameContains?: InputMaybe<Scalars['String']['input']>;
|
|
5179
5224
|
};
|
|
5180
5225
|
export declare type AgentWorkspaceCatalogTypeInput = {
|
|
@@ -5210,9 +5255,9 @@ export declare type AgentWorkspaceCatalogsInput = {
|
|
|
5210
5255
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
5211
5256
|
};
|
|
5212
5257
|
export declare type AgentWorkspaceCreateCatalogInput = {
|
|
5213
|
-
catalogTypeId: Scalars['ID']['input'];
|
|
5214
5258
|
cloudId: Scalars['ID']['input'];
|
|
5215
5259
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
5260
|
+
hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
5216
5261
|
name: Scalars['String']['input'];
|
|
5217
5262
|
parentCatalogIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5218
5263
|
proficiencyDefinitions?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -5220,10 +5265,18 @@ export declare type AgentWorkspaceCreateCatalogInput = {
|
|
|
5220
5265
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
5221
5266
|
};
|
|
5222
5267
|
export declare type AgentWorkspaceCreateCatalogTypeInput = {
|
|
5268
|
+
cloudId: Scalars['ID']['input'];
|
|
5269
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
5270
|
+
hierarchyDefinitionId: Scalars['ID']['input'];
|
|
5271
|
+
level: Scalars['Int']['input'];
|
|
5272
|
+
name: Scalars['String']['input'];
|
|
5273
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
5274
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
5275
|
+
};
|
|
5276
|
+
export declare type AgentWorkspaceCreateHierarchyDefinitionInput = {
|
|
5223
5277
|
cloudId: Scalars['ID']['input'];
|
|
5224
5278
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
5225
5279
|
name: Scalars['String']['input'];
|
|
5226
|
-
parentTypeId?: InputMaybe<Scalars['ID']['input']>;
|
|
5227
5280
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
5228
5281
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
5229
5282
|
};
|
|
@@ -5263,6 +5316,12 @@ export declare type AgentWorkspaceDefaultCapacity = {
|
|
|
5263
5316
|
projectId: Scalars['ID']['output'];
|
|
5264
5317
|
updatedAt: Scalars['DateTime']['output'];
|
|
5265
5318
|
};
|
|
5319
|
+
export declare type AgentWorkspaceDeleteHierarchyDefinitionInput = {
|
|
5320
|
+
cloudId: Scalars['ID']['input'];
|
|
5321
|
+
id: Scalars['ID']['input'];
|
|
5322
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
5323
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
5324
|
+
};
|
|
5266
5325
|
export declare type AgentWorkspaceDeleteScheduleInput = {
|
|
5267
5326
|
cloudId: Scalars['ID']['input'];
|
|
5268
5327
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -5339,6 +5398,59 @@ export declare type AgentWorkspaceFindBestMatchAgentsPayload = {
|
|
|
5339
5398
|
rankedAgents?: Maybe<Array<AgentWorkspaceRankedAgent>>;
|
|
5340
5399
|
success: Scalars['Boolean']['output'];
|
|
5341
5400
|
};
|
|
5401
|
+
export declare type AgentWorkspaceHierarchyDefinition = {
|
|
5402
|
+
__typename?: 'AgentWorkspaceHierarchyDefinition';
|
|
5403
|
+
catalogTypes?: Maybe<Array<AgentWorkspaceCatalogType>>;
|
|
5404
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
5405
|
+
id: Scalars['ID']['output'];
|
|
5406
|
+
name: Scalars['String']['output'];
|
|
5407
|
+
};
|
|
5408
|
+
export declare type AgentWorkspaceHierarchyDefinitionConnection = {
|
|
5409
|
+
__typename?: 'AgentWorkspaceHierarchyDefinitionConnection';
|
|
5410
|
+
edges?: Maybe<Array<AgentWorkspaceHierarchyDefinitionEdge>>;
|
|
5411
|
+
nodes?: Maybe<Array<Maybe<AgentWorkspaceHierarchyDefinition>>>;
|
|
5412
|
+
pageInfo: AgentWorkspacePageInfo;
|
|
5413
|
+
};
|
|
5414
|
+
export declare type AgentWorkspaceHierarchyDefinitionCreateResponse = {
|
|
5415
|
+
__typename?: 'AgentWorkspaceHierarchyDefinitionCreateResponse';
|
|
5416
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
5417
|
+
hierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinition>;
|
|
5418
|
+
success: Scalars['Boolean']['output'];
|
|
5419
|
+
};
|
|
5420
|
+
export declare type AgentWorkspaceHierarchyDefinitionDeleteResponse = {
|
|
5421
|
+
__typename?: 'AgentWorkspaceHierarchyDefinitionDeleteResponse';
|
|
5422
|
+
deletedHierarchyDefinitionId?: Maybe<Scalars['ID']['output']>;
|
|
5423
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
5424
|
+
success: Scalars['Boolean']['output'];
|
|
5425
|
+
};
|
|
5426
|
+
export declare type AgentWorkspaceHierarchyDefinitionEdge = {
|
|
5427
|
+
__typename?: 'AgentWorkspaceHierarchyDefinitionEdge';
|
|
5428
|
+
cursor: Scalars['String']['output'];
|
|
5429
|
+
node: AgentWorkspaceHierarchyDefinition;
|
|
5430
|
+
};
|
|
5431
|
+
export declare type AgentWorkspaceHierarchyDefinitionFilterInput = {
|
|
5432
|
+
ids?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
5433
|
+
nameContains?: InputMaybe<Scalars['String']['input']>;
|
|
5434
|
+
};
|
|
5435
|
+
export declare type AgentWorkspaceHierarchyDefinitionInput = {
|
|
5436
|
+
cloudId: Scalars['ID']['input'];
|
|
5437
|
+
id: Scalars['ID']['input'];
|
|
5438
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
5439
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
5440
|
+
};
|
|
5441
|
+
export declare type AgentWorkspaceHierarchyDefinitionUpdateResponse = {
|
|
5442
|
+
__typename?: 'AgentWorkspaceHierarchyDefinitionUpdateResponse';
|
|
5443
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
5444
|
+
hierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinition>;
|
|
5445
|
+
success: Scalars['Boolean']['output'];
|
|
5446
|
+
};
|
|
5447
|
+
export declare type AgentWorkspaceHierarchyDefinitionsInput = {
|
|
5448
|
+
cloudId: Scalars['ID']['input'];
|
|
5449
|
+
filter?: InputMaybe<AgentWorkspaceHierarchyDefinitionFilterInput>;
|
|
5450
|
+
pagination?: InputMaybe<AgentWorkspacePaginationInput>;
|
|
5451
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
5452
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
5453
|
+
};
|
|
5342
5454
|
export declare type AgentWorkspacePageInfo = {
|
|
5343
5455
|
__typename?: 'AgentWorkspacePageInfo';
|
|
5344
5456
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -5352,6 +5464,19 @@ export declare type AgentWorkspacePaginationInput = {
|
|
|
5352
5464
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
5353
5465
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
5354
5466
|
};
|
|
5467
|
+
export declare type AgentWorkspaceProjectDefaultAvailability = {
|
|
5468
|
+
__typename?: 'AgentWorkspaceProjectDefaultAvailability';
|
|
5469
|
+
projectId: Scalars['ID']['output'];
|
|
5470
|
+
status: AgentWorkspaceAvailabilityStatus;
|
|
5471
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
5472
|
+
updatedBy?: Maybe<Scalars['ID']['output']>;
|
|
5473
|
+
};
|
|
5474
|
+
export declare type AgentWorkspaceProjectDefaultAvailabilityPayload = {
|
|
5475
|
+
__typename?: 'AgentWorkspaceProjectDefaultAvailabilityPayload';
|
|
5476
|
+
errors?: Maybe<Array<AgentWorkspaceAvailabilityError>>;
|
|
5477
|
+
projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
5478
|
+
success: Scalars['Boolean']['output'];
|
|
5479
|
+
};
|
|
5355
5480
|
export declare type AgentWorkspaceProjectSkill = {
|
|
5356
5481
|
__typename?: 'AgentWorkspaceProjectSkill';
|
|
5357
5482
|
id: Scalars['ID']['output'];
|
|
@@ -5524,6 +5649,11 @@ export declare type AgentWorkspaceSetDefaultCapacityPayload = {
|
|
|
5524
5649
|
errors?: Maybe<Array<AgentWorkspaceCapacityError>>;
|
|
5525
5650
|
success: Scalars['Boolean']['output'];
|
|
5526
5651
|
};
|
|
5652
|
+
export declare type AgentWorkspaceSetProjectDefaultAvailabilityInput = {
|
|
5653
|
+
cloudId: Scalars['ID']['input'];
|
|
5654
|
+
projectId: Scalars['ID']['input'];
|
|
5655
|
+
status: AgentWorkspaceAvailabilityStatus;
|
|
5656
|
+
};
|
|
5527
5657
|
export declare type AgentWorkspaceShift = {
|
|
5528
5658
|
__typename?: 'AgentWorkspaceShift';
|
|
5529
5659
|
agentId: Scalars['ID']['output'];
|
|
@@ -5672,6 +5802,10 @@ export declare type AgentWorkspaceSmartRoutingConfig = {
|
|
|
5672
5802
|
__typename?: 'AgentWorkspaceSmartRoutingConfig';
|
|
5673
5803
|
enabled: Scalars['Boolean']['output'];
|
|
5674
5804
|
};
|
|
5805
|
+
export declare enum AgentWorkspaceSortDirection {
|
|
5806
|
+
Asc = "ASC",
|
|
5807
|
+
Desc = "DESC"
|
|
5808
|
+
}
|
|
5675
5809
|
export declare type AgentWorkspaceSubscribeSkillInput = {
|
|
5676
5810
|
cloudId: Scalars['ID']['input'];
|
|
5677
5811
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -5750,6 +5884,16 @@ export declare type AgentWorkspaceUpdateCatalogInput = {
|
|
|
5750
5884
|
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
5751
5885
|
};
|
|
5752
5886
|
export declare type AgentWorkspaceUpdateCatalogTypeInput = {
|
|
5887
|
+
cloudId: Scalars['ID']['input'];
|
|
5888
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
5889
|
+
hierarchyDefinitionId?: InputMaybe<Scalars['ID']['input']>;
|
|
5890
|
+
id: Scalars['ID']['input'];
|
|
5891
|
+
level?: InputMaybe<Scalars['Int']['input']>;
|
|
5892
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
5893
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
5894
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
5895
|
+
};
|
|
5896
|
+
export declare type AgentWorkspaceUpdateHierarchyDefinitionInput = {
|
|
5753
5897
|
cloudId: Scalars['ID']['input'];
|
|
5754
5898
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
5755
5899
|
id: Scalars['ID']['input'];
|
|
@@ -7680,6 +7824,8 @@ export declare type AssetsAriAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
7680
7824
|
attribute?: Maybe<AssetsAriAttribute>;
|
|
7681
7825
|
id: Scalars['ID']['output'];
|
|
7682
7826
|
name: Scalars['String']['output'];
|
|
7827
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
7828
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
7683
7829
|
value?: Maybe<Array<AssetsAriAttributeValue>>;
|
|
7684
7830
|
};
|
|
7685
7831
|
export declare type AssetsAriAttributeValue = AppUser | AtlassianAccountUser | CompassComponent | CustomerUser | IdentityGroup | TeamV2;
|
|
@@ -7687,6 +7833,8 @@ export declare type AssetsAttributeOnObject = {
|
|
|
7687
7833
|
attribute?: Maybe<AssetsObjectTypeAttribute>;
|
|
7688
7834
|
id: Scalars['ID']['output'];
|
|
7689
7835
|
name: Scalars['String']['output'];
|
|
7836
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
7837
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
7690
7838
|
};
|
|
7691
7839
|
export declare type AssetsAvatar = {
|
|
7692
7840
|
__typename?: 'AssetsAvatar';
|
|
@@ -7708,6 +7856,8 @@ export declare type AssetsBooleanAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
7708
7856
|
attribute?: Maybe<AssetsBooleanAttribute>;
|
|
7709
7857
|
id: Scalars['ID']['output'];
|
|
7710
7858
|
name: Scalars['String']['output'];
|
|
7859
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
7860
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
7711
7861
|
value?: Maybe<Scalars['Boolean']['output']>;
|
|
7712
7862
|
};
|
|
7713
7863
|
export declare type AssetsDmAdapter = {
|
|
@@ -8026,6 +8176,7 @@ export declare type AssetsDmDataDictionaryGroupValuesResponse = {
|
|
|
8026
8176
|
export declare type AssetsDmDataDictionaryGroupsResponse = {
|
|
8027
8177
|
__typename?: 'AssetsDMDataDictionaryGroupsResponse';
|
|
8028
8178
|
dictionaryName?: Maybe<Scalars['String']['output']>;
|
|
8179
|
+
lastUpdateDate?: Maybe<Scalars['String']['output']>;
|
|
8029
8180
|
pageInfo: AssetsDmDataDictionaryPageInfo;
|
|
8030
8181
|
rows: Array<AssetsDmDataDictionaryGroupRow>;
|
|
8031
8182
|
totalCount: Scalars['Int']['output'];
|
|
@@ -9817,6 +9968,8 @@ export declare type AssetsDateAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
9817
9968
|
attribute?: Maybe<AssetsDateAttribute>;
|
|
9818
9969
|
id: Scalars['ID']['output'];
|
|
9819
9970
|
name: Scalars['String']['output'];
|
|
9971
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
9972
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
9820
9973
|
value?: Maybe<Scalars['String']['output']>;
|
|
9821
9974
|
};
|
|
9822
9975
|
export declare type AssetsDatetimeAttribute = AssetsObjectTypeAttribute & {
|
|
@@ -9831,6 +9984,8 @@ export declare type AssetsDatetimeAttributeOnObject = AssetsAttributeOnObject &
|
|
|
9831
9984
|
attribute?: Maybe<AssetsDatetimeAttribute>;
|
|
9832
9985
|
id: Scalars['ID']['output'];
|
|
9833
9986
|
name: Scalars['String']['output'];
|
|
9987
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
9988
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
9834
9989
|
value?: Maybe<Scalars['DateTime']['output']>;
|
|
9835
9990
|
};
|
|
9836
9991
|
export declare type AssetsEmailAttribute = AssetsObjectTypeAttribute & {
|
|
@@ -9845,6 +10000,8 @@ export declare type AssetsEmailAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
9845
10000
|
attribute?: Maybe<AssetsEmailAttribute>;
|
|
9846
10001
|
id: Scalars['ID']['output'];
|
|
9847
10002
|
name: Scalars['String']['output'];
|
|
10003
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
10004
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
9848
10005
|
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
9849
10006
|
};
|
|
9850
10007
|
export declare type AssetsFloatAttribute = AssetsObjectTypeAttribute & {
|
|
@@ -9860,6 +10017,8 @@ export declare type AssetsFloatAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
9860
10017
|
attribute?: Maybe<AssetsFloatAttribute>;
|
|
9861
10018
|
id: Scalars['ID']['output'];
|
|
9862
10019
|
name: Scalars['String']['output'];
|
|
10020
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
10021
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
9863
10022
|
value?: Maybe<Scalars['Float']['output']>;
|
|
9864
10023
|
};
|
|
9865
10024
|
export declare type AssetsGroupAttribute = AssetsObjectTypeAttribute & {
|
|
@@ -9874,6 +10033,8 @@ export declare type AssetsGroupAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
9874
10033
|
attribute?: Maybe<AssetsGroupAttribute>;
|
|
9875
10034
|
id: Scalars['ID']['output'];
|
|
9876
10035
|
name: Scalars['String']['output'];
|
|
10036
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
10037
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
9877
10038
|
value?: Maybe<Array<AssetsGroupAttributeValue>>;
|
|
9878
10039
|
};
|
|
9879
10040
|
export declare type AssetsGroupAttributeValue = {
|
|
@@ -9893,6 +10054,8 @@ export declare type AssetsIpAddressAttributeOnObject = AssetsAttributeOnObject &
|
|
|
9893
10054
|
attribute?: Maybe<AssetsIpAddressAttribute>;
|
|
9894
10055
|
id: Scalars['ID']['output'];
|
|
9895
10056
|
name: Scalars['String']['output'];
|
|
10057
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
10058
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
9896
10059
|
value?: Maybe<Scalars['String']['output']>;
|
|
9897
10060
|
};
|
|
9898
10061
|
export declare type AssetsIcon = {
|
|
@@ -9914,6 +10077,8 @@ export declare type AssetsIntegerAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
9914
10077
|
attribute?: Maybe<AssetsIntegerAttribute>;
|
|
9915
10078
|
id: Scalars['ID']['output'];
|
|
9916
10079
|
name: Scalars['String']['output'];
|
|
10080
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
10081
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
9917
10082
|
value?: Maybe<Scalars['Int']['output']>;
|
|
9918
10083
|
};
|
|
9919
10084
|
export declare type AssetsLinks = {
|
|
@@ -9973,6 +10138,8 @@ export declare type AssetsObjectReferenceAttributeOnObject = AssetsAttributeOnOb
|
|
|
9973
10138
|
attribute?: Maybe<AssetsObjectAttribute>;
|
|
9974
10139
|
id: Scalars['ID']['output'];
|
|
9975
10140
|
name: Scalars['String']['output'];
|
|
10141
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
10142
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
9976
10143
|
value?: Maybe<Array<AssetsObjectNode>>;
|
|
9977
10144
|
};
|
|
9978
10145
|
export declare type AssetsObjectType = Node & {
|
|
@@ -10023,6 +10190,8 @@ export declare type AssetsSelectAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
10023
10190
|
attribute?: Maybe<AssetsSelectAttribute>;
|
|
10024
10191
|
id: Scalars['ID']['output'];
|
|
10025
10192
|
name: Scalars['String']['output'];
|
|
10193
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
10194
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
10026
10195
|
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
10027
10196
|
};
|
|
10028
10197
|
export declare type AssetsServiceObject = AssetsObjectNode & Node & {
|
|
@@ -10040,7 +10209,11 @@ export declare type AssetsServiceObject = AssetsObjectNode & Node & {
|
|
|
10040
10209
|
links?: Maybe<AssetsLinks>;
|
|
10041
10210
|
objectKey?: Maybe<Scalars['String']['output']>;
|
|
10042
10211
|
objectType?: Maybe<AssetsObjectType>;
|
|
10212
|
+
openAlertsCount?: Maybe<SoftwareCatalogCountByService>;
|
|
10213
|
+
openIncidentsCount?: Maybe<SoftwareCatalogCountByService>;
|
|
10043
10214
|
outboundDependencyCount?: Maybe<Scalars['Int']['output']>;
|
|
10215
|
+
ownerTeamId?: Maybe<Scalars['ID']['output']>;
|
|
10216
|
+
upcomingChangesCount?: Maybe<SoftwareCatalogCountByService>;
|
|
10044
10217
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
10045
10218
|
};
|
|
10046
10219
|
export declare type AssetsServiceObjectAttributesArgs = {
|
|
@@ -10058,6 +10231,8 @@ export declare type AssetsSpaceAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
10058
10231
|
attribute?: Maybe<AssetsSpaceAttribute>;
|
|
10059
10232
|
id: Scalars['ID']['output'];
|
|
10060
10233
|
name: Scalars['String']['output'];
|
|
10234
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
10235
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
10061
10236
|
value?: Maybe<Array<AssetsSpaceAttributeValue>>;
|
|
10062
10237
|
};
|
|
10063
10238
|
export declare type AssetsSpaceAttributeValue = {
|
|
@@ -10080,6 +10255,8 @@ export declare type AssetsStatusAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
10080
10255
|
attribute?: Maybe<AssetsStatusAttribute>;
|
|
10081
10256
|
id: Scalars['ID']['output'];
|
|
10082
10257
|
name: Scalars['String']['output'];
|
|
10258
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
10259
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
10083
10260
|
value?: Maybe<Array<AssetsStatusType>>;
|
|
10084
10261
|
};
|
|
10085
10262
|
export declare enum AssetsStatusCategory {
|
|
@@ -10106,6 +10283,8 @@ export declare type AssetsTagAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
10106
10283
|
attribute?: Maybe<AssetsTagAttribute>;
|
|
10107
10284
|
id: Scalars['ID']['output'];
|
|
10108
10285
|
name: Scalars['String']['output'];
|
|
10286
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
10287
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
10109
10288
|
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
10110
10289
|
};
|
|
10111
10290
|
export declare type AssetsTextAttribute = AssetsObjectTypeAttribute & {
|
|
@@ -10120,6 +10299,8 @@ export declare type AssetsTextAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
10120
10299
|
attribute?: Maybe<AssetsTextAttribute>;
|
|
10121
10300
|
id: Scalars['ID']['output'];
|
|
10122
10301
|
name: Scalars['String']['output'];
|
|
10302
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
10303
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
10123
10304
|
value?: Maybe<Scalars['String']['output']>;
|
|
10124
10305
|
};
|
|
10125
10306
|
export declare type AssetsTextareaAttribute = AssetsObjectTypeAttribute & {
|
|
@@ -10134,6 +10315,8 @@ export declare type AssetsTextareaAttributeOnObject = AssetsAttributeOnObject &
|
|
|
10134
10315
|
attribute?: Maybe<AssetsTextareaAttribute>;
|
|
10135
10316
|
id: Scalars['ID']['output'];
|
|
10136
10317
|
name: Scalars['String']['output'];
|
|
10318
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
10319
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
10137
10320
|
value?: Maybe<Scalars['String']['output']>;
|
|
10138
10321
|
};
|
|
10139
10322
|
export declare type AssetsUrlAttribute = AssetsObjectTypeAttribute & {
|
|
@@ -10148,6 +10331,8 @@ export declare type AssetsUrlAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
10148
10331
|
attribute?: Maybe<AssetsUrlAttribute>;
|
|
10149
10332
|
id: Scalars['ID']['output'];
|
|
10150
10333
|
name: Scalars['String']['output'];
|
|
10334
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
10335
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
10151
10336
|
value?: Maybe<Array<Scalars['String']['output']>>;
|
|
10152
10337
|
};
|
|
10153
10338
|
export declare type AssetsUserAttribute = AssetsObjectTypeAttribute & {
|
|
@@ -10163,6 +10348,8 @@ export declare type AssetsUserAttributeOnObject = AssetsAttributeOnObject & {
|
|
|
10163
10348
|
attribute?: Maybe<AssetsUserAttribute>;
|
|
10164
10349
|
id: Scalars['ID']['output'];
|
|
10165
10350
|
name: Scalars['String']['output'];
|
|
10351
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
10352
|
+
schemaId?: Maybe<Scalars['ID']['output']>;
|
|
10166
10353
|
value?: Maybe<Array<AssetsUserAttributeValue>>;
|
|
10167
10354
|
};
|
|
10168
10355
|
export declare type AssetsUserAttributeValue = {
|
|
@@ -10185,6 +10372,40 @@ export declare type AssetsVerticalAsyncTaskPayload = {
|
|
|
10185
10372
|
__typename?: 'AssetsVerticalAsyncTaskPayload';
|
|
10186
10373
|
taskId: Scalars['String']['output'];
|
|
10187
10374
|
};
|
|
10375
|
+
export declare enum AssetsVerticalAttributeCategory {
|
|
10376
|
+
Hardwares = "HARDWARES",
|
|
10377
|
+
Models = "MODELS",
|
|
10378
|
+
Stockrooms = "STOCKROOMS"
|
|
10379
|
+
}
|
|
10380
|
+
export declare type AssetsVerticalAttributeDetailsInput = {
|
|
10381
|
+
otId: Scalars['String']['input'];
|
|
10382
|
+
otaId: Scalars['String']['input'];
|
|
10383
|
+
};
|
|
10384
|
+
export declare type AssetsVerticalAttributeValuesFailure = {
|
|
10385
|
+
__typename?: 'AssetsVerticalAttributeValuesFailure';
|
|
10386
|
+
error?: Maybe<Array<Maybe<AssetsVerticalInventoryError>>>;
|
|
10387
|
+
};
|
|
10388
|
+
export declare type AssetsVerticalAttributeValuesInput = {
|
|
10389
|
+
attributes: Array<AssetsVerticalAttributeDetailsInput>;
|
|
10390
|
+
category: AssetsVerticalAttributeCategory;
|
|
10391
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
10392
|
+
verticalInstantiationId: Scalars['ID']['input'];
|
|
10393
|
+
workspaceId: Scalars['ID']['input'];
|
|
10394
|
+
};
|
|
10395
|
+
export declare type AssetsVerticalAttributeValuesResult = AssetsVerticalAttributeValuesFailure | AssetsVerticalAttributeValuesSuccess;
|
|
10396
|
+
export declare type AssetsVerticalAttributeValuesSuccess = {
|
|
10397
|
+
__typename?: 'AssetsVerticalAttributeValuesSuccess';
|
|
10398
|
+
attributeValues?: Maybe<Array<Maybe<AssetsVerticalObjectAttributeValue>>>;
|
|
10399
|
+
};
|
|
10400
|
+
export declare type AssetsVerticalAvatar = {
|
|
10401
|
+
__typename?: 'AssetsVerticalAvatar';
|
|
10402
|
+
objectId?: Maybe<Scalars['String']['output']>;
|
|
10403
|
+
url16?: Maybe<Scalars['String']['output']>;
|
|
10404
|
+
url48?: Maybe<Scalars['String']['output']>;
|
|
10405
|
+
url72?: Maybe<Scalars['String']['output']>;
|
|
10406
|
+
url144?: Maybe<Scalars['String']['output']>;
|
|
10407
|
+
url288?: Maybe<Scalars['String']['output']>;
|
|
10408
|
+
};
|
|
10188
10409
|
export declare type AssetsVerticalBundle = {
|
|
10189
10410
|
__typename?: 'AssetsVerticalBundle';
|
|
10190
10411
|
id: Scalars['ID']['output'];
|
|
@@ -10239,6 +10460,44 @@ export declare enum AssetsVerticalInsightsStatus {
|
|
|
10239
10460
|
NotStarted = "NOT_STARTED",
|
|
10240
10461
|
Pending = "PENDING"
|
|
10241
10462
|
}
|
|
10463
|
+
export declare type AssetsVerticalInventoryError = {
|
|
10464
|
+
__typename?: 'AssetsVerticalInventoryError';
|
|
10465
|
+
code?: Maybe<AssetsVerticalInventoryErrorCode>;
|
|
10466
|
+
details?: Maybe<Scalars['String']['output']>;
|
|
10467
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
10468
|
+
};
|
|
10469
|
+
export declare enum AssetsVerticalInventoryErrorCode {
|
|
10470
|
+
Forbidden = "FORBIDDEN",
|
|
10471
|
+
Internal = "INTERNAL",
|
|
10472
|
+
NotFound = "NOT_FOUND",
|
|
10473
|
+
Timeout = "TIMEOUT",
|
|
10474
|
+
ValidationError = "VALIDATION_ERROR"
|
|
10475
|
+
}
|
|
10476
|
+
export declare type AssetsVerticalObject = AssetsVerticalObjectNode & {
|
|
10477
|
+
__typename?: 'AssetsVerticalObject';
|
|
10478
|
+
avatar?: Maybe<AssetsVerticalAvatar>;
|
|
10479
|
+
hasAvatar?: Maybe<Scalars['Boolean']['output']>;
|
|
10480
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
10481
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
10482
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
10483
|
+
objectKey?: Maybe<Scalars['String']['output']>;
|
|
10484
|
+
};
|
|
10485
|
+
export declare type AssetsVerticalObjectAttributeValue = {
|
|
10486
|
+
__typename?: 'AssetsVerticalObjectAttributeValue';
|
|
10487
|
+
displayValue?: Maybe<Scalars['String']['output']>;
|
|
10488
|
+
referencedObject?: Maybe<AssetsVerticalObject>;
|
|
10489
|
+
referencedType?: Maybe<Scalars['Boolean']['output']>;
|
|
10490
|
+
searchValue?: Maybe<Scalars['String']['output']>;
|
|
10491
|
+
status?: Maybe<AssetsVerticalStatusType>;
|
|
10492
|
+
};
|
|
10493
|
+
export declare type AssetsVerticalObjectNode = {
|
|
10494
|
+
avatar?: Maybe<AssetsVerticalAvatar>;
|
|
10495
|
+
hasAvatar?: Maybe<Scalars['Boolean']['output']>;
|
|
10496
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
10497
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
10498
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
10499
|
+
objectKey?: Maybe<Scalars['String']['output']>;
|
|
10500
|
+
};
|
|
10242
10501
|
export declare type AssetsVerticalSchemaTemplate = {
|
|
10243
10502
|
__typename?: 'AssetsVerticalSchemaTemplate';
|
|
10244
10503
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -10249,6 +10508,12 @@ export declare type AssetsVerticalSchemaTemplate = {
|
|
|
10249
10508
|
objectTypeCount?: Maybe<Scalars['Int']['output']>;
|
|
10250
10509
|
type: Scalars['String']['output'];
|
|
10251
10510
|
};
|
|
10511
|
+
export declare type AssetsVerticalStatusType = {
|
|
10512
|
+
__typename?: 'AssetsVerticalStatusType';
|
|
10513
|
+
category?: Maybe<Scalars['Int']['output']>;
|
|
10514
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
10515
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
10516
|
+
};
|
|
10252
10517
|
export declare type AssignIssueParentInput = {
|
|
10253
10518
|
boardId: Scalars['ID']['input'];
|
|
10254
10519
|
issueIds: Array<Scalars['ID']['input']>;
|
|
@@ -13552,6 +13817,26 @@ export declare type ChannelPlatformAudioFeatures = {
|
|
|
13552
13817
|
__typename?: 'ChannelPlatformAudioFeatures';
|
|
13553
13818
|
echoReduction?: Maybe<Scalars['String']['output']>;
|
|
13554
13819
|
};
|
|
13820
|
+
export declare type ChannelPlatformBotConversationInput = {
|
|
13821
|
+
action: Scalars['String']['input'];
|
|
13822
|
+
answer?: InputMaybe<Scalars['String']['input']>;
|
|
13823
|
+
contactId: Scalars['String']['input'];
|
|
13824
|
+
workflowId?: InputMaybe<Scalars['String']['input']>;
|
|
13825
|
+
};
|
|
13826
|
+
export declare type ChannelPlatformBotConversationResponse = {
|
|
13827
|
+
__typename?: 'ChannelPlatformBotConversationResponse';
|
|
13828
|
+
closeMessage?: Maybe<Scalars['String']['output']>;
|
|
13829
|
+
collectedData?: Maybe<Scalars['JSON']['output']>;
|
|
13830
|
+
contactId: Scalars['String']['output'];
|
|
13831
|
+
currentStep?: Maybe<Scalars['String']['output']>;
|
|
13832
|
+
options?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
13833
|
+
question?: Maybe<Scalars['String']['output']>;
|
|
13834
|
+
status: ChannelPlatformBotConversationStatus;
|
|
13835
|
+
};
|
|
13836
|
+
export declare enum ChannelPlatformBotConversationStatus {
|
|
13837
|
+
Completed = "COMPLETED",
|
|
13838
|
+
InProgress = "IN_PROGRESS"
|
|
13839
|
+
}
|
|
13555
13840
|
export declare type ChannelPlatformChannelAvailabilityRequestInput = {
|
|
13556
13841
|
aaId?: InputMaybe<Scalars['String']['input']>;
|
|
13557
13842
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -13885,11 +14170,14 @@ export declare enum Classification {
|
|
|
13885
14170
|
}
|
|
13886
14171
|
export declare type ClassificationLevelDetails = {
|
|
13887
14172
|
__typename?: 'ClassificationLevelDetails';
|
|
14173
|
+
canManageSpaceSettings: Scalars['Boolean']['output'];
|
|
14174
|
+
classificationControlSetting?: Maybe<Scalars['String']['output']>;
|
|
13888
14175
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
13889
14176
|
classificationLevelId?: Maybe<Scalars['ID']['output']>;
|
|
13890
14177
|
featureEnabled: Scalars['Boolean']['output'];
|
|
13891
14178
|
isReclassificationPermitted: Scalars['Boolean']['output'];
|
|
13892
14179
|
source?: Maybe<ClassificationLevelSource>;
|
|
14180
|
+
userOverrideSetting?: Maybe<Scalars['String']['output']>;
|
|
13893
14181
|
};
|
|
13894
14182
|
export declare enum ClassificationLevelSource {
|
|
13895
14183
|
Content = "CONTENT",
|
|
@@ -13922,6 +14210,38 @@ export declare enum CloudIdProduct {
|
|
|
13922
14210
|
Radar = "RADAR",
|
|
13923
14211
|
Statuspage = "STATUSPAGE"
|
|
13924
14212
|
}
|
|
14213
|
+
export declare type CloudifyAnalysisExecution = {
|
|
14214
|
+
__typename?: 'CloudifyAnalysisExecution';
|
|
14215
|
+
analysisExecutionState: CloudifyAnalysisExecutionState;
|
|
14216
|
+
analysisParts: Array<CloudifyAnalysisPart>;
|
|
14217
|
+
createdAt: Scalars['String']['output'];
|
|
14218
|
+
id: CloudifyAnalysisId;
|
|
14219
|
+
target: CloudifyRecommendationTarget;
|
|
14220
|
+
};
|
|
14221
|
+
export declare enum CloudifyAnalysisExecutionState {
|
|
14222
|
+
Finished = "FINISHED",
|
|
14223
|
+
InProgress = "IN_PROGRESS",
|
|
14224
|
+
Queued = "QUEUED"
|
|
14225
|
+
}
|
|
14226
|
+
export declare type CloudifyAnalysisId = {
|
|
14227
|
+
__typename?: 'CloudifyAnalysisId';
|
|
14228
|
+
value: Scalars['String']['output'];
|
|
14229
|
+
};
|
|
14230
|
+
export declare type CloudifyAnalysisPart = {
|
|
14231
|
+
__typename?: 'CloudifyAnalysisPart';
|
|
14232
|
+
analysisResult: CloudifyAnalysisResult;
|
|
14233
|
+
analysisType: CloudifyAnalysisType;
|
|
14234
|
+
finishedAt: Scalars['String']['output'];
|
|
14235
|
+
startedAt: Scalars['String']['output'];
|
|
14236
|
+
};
|
|
14237
|
+
export declare enum CloudifyAnalysisResult {
|
|
14238
|
+
Failed = "FAILED",
|
|
14239
|
+
Finished = "FINISHED"
|
|
14240
|
+
}
|
|
14241
|
+
export declare enum CloudifyAnalysisType {
|
|
14242
|
+
AiBased = "AI_BASED",
|
|
14243
|
+
RuleBased = "RULE_BASED"
|
|
14244
|
+
}
|
|
13925
14245
|
export declare type CloudifyArgument = {
|
|
13926
14246
|
__typename?: 'CloudifyArgument';
|
|
13927
14247
|
key: Scalars['String']['output'];
|
|
@@ -13935,6 +14255,28 @@ export declare type CloudifyCloudProjectTarget = {
|
|
|
13935
14255
|
__typename?: 'CloudifyCloudProjectTarget';
|
|
13936
14256
|
project: CloudifyProjectAri;
|
|
13937
14257
|
};
|
|
14258
|
+
export declare type CloudifyEnactment = {
|
|
14259
|
+
__typename?: 'CloudifyEnactment';
|
|
14260
|
+
completedAt?: Maybe<Scalars['String']['output']>;
|
|
14261
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
14262
|
+
id: CloudifyEnactmentId;
|
|
14263
|
+
recommendationId: CloudifyRecommendationId;
|
|
14264
|
+
startedAt: Scalars['String']['output'];
|
|
14265
|
+
status: CloudifyEnactmentStatus;
|
|
14266
|
+
};
|
|
14267
|
+
export declare type CloudifyEnactmentId = {
|
|
14268
|
+
__typename?: 'CloudifyEnactmentId';
|
|
14269
|
+
value: Scalars['String']['output'];
|
|
14270
|
+
};
|
|
14271
|
+
export declare enum CloudifyEnactmentStatus {
|
|
14272
|
+
Completed = "COMPLETED",
|
|
14273
|
+
Executing = "EXECUTING",
|
|
14274
|
+
Failed = "FAILED"
|
|
14275
|
+
}
|
|
14276
|
+
export declare type CloudifyGreeting = {
|
|
14277
|
+
__typename?: 'CloudifyGreeting';
|
|
14278
|
+
message: Scalars['String']['output'];
|
|
14279
|
+
};
|
|
13938
14280
|
export declare type CloudifyProjectAri = {
|
|
13939
14281
|
__typename?: 'CloudifyProjectARI';
|
|
13940
14282
|
projectId: Scalars['ID']['output'];
|
|
@@ -15367,6 +15709,7 @@ export declare type CommerceExpCcpQuote = CommerceExpNode & {
|
|
|
15367
15709
|
lineItemDisplayGroupForBAC2?: Maybe<CommerceExpLineItemDisplayGroupResult>;
|
|
15368
15710
|
lineItems?: Maybe<Array<Maybe<CommerceExpLineItemResponse>>>;
|
|
15369
15711
|
lineItems2?: Maybe<CommerceExpLineItemsResult>;
|
|
15712
|
+
lineItems3?: Maybe<CommerceExpQuoteLineItemConnection>;
|
|
15370
15713
|
lineItemsCount?: Maybe<Scalars['Int']['output']>;
|
|
15371
15714
|
locale?: Maybe<Scalars['String']['output']>;
|
|
15372
15715
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -15395,6 +15738,12 @@ export declare type CommerceExpCcpQuoteLineItemDisplayGroupForBacArgs = {
|
|
|
15395
15738
|
export declare type CommerceExpCcpQuoteLineItemDisplayGroupForBac2Args = {
|
|
15396
15739
|
groupingLevel?: InputMaybe<CommerceExpQuoteLineItemGroupingLevelType>;
|
|
15397
15740
|
};
|
|
15741
|
+
export declare type CommerceExpCcpQuoteLineItems3Args = {
|
|
15742
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
15743
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
15744
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
15745
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
15746
|
+
};
|
|
15398
15747
|
export declare type CommerceExpCcpRelationshipFilter = {
|
|
15399
15748
|
relationshipType?: InputMaybe<Scalars['String']['input']>;
|
|
15400
15749
|
};
|
|
@@ -17517,6 +17866,11 @@ export declare type CommerceExpPurchaseOrderInput = {
|
|
|
17517
17866
|
export declare type CommerceExpQuoteFilter = {
|
|
17518
17867
|
status?: InputMaybe<CommerceExpQuoteStatusFilter>;
|
|
17519
17868
|
};
|
|
17869
|
+
export declare type CommerceExpQuoteLineItemConnection = {
|
|
17870
|
+
__typename?: 'CommerceExpQuoteLineItemConnection';
|
|
17871
|
+
edges?: Maybe<Array<Maybe<CommerceExpQuoteLineItemEdge>>>;
|
|
17872
|
+
pageInfo: PageInfo;
|
|
17873
|
+
};
|
|
17520
17874
|
export declare enum CommerceExpQuoteLineItemContainerType {
|
|
17521
17875
|
BillingSchedule = "BILLING_SCHEDULE",
|
|
17522
17876
|
Container = "CONTAINER",
|
|
@@ -17524,6 +17878,11 @@ export declare enum CommerceExpQuoteLineItemContainerType {
|
|
|
17524
17878
|
Single = "SINGLE",
|
|
17525
17879
|
Site = "SITE"
|
|
17526
17880
|
}
|
|
17881
|
+
export declare type CommerceExpQuoteLineItemEdge = {
|
|
17882
|
+
__typename?: 'CommerceExpQuoteLineItemEdge';
|
|
17883
|
+
cursor: Scalars['String']['output'];
|
|
17884
|
+
node?: Maybe<CommerceExpLineItemResponse>;
|
|
17885
|
+
};
|
|
17527
17886
|
export declare enum CommerceExpQuoteLineItemGroupingLevelType {
|
|
17528
17887
|
BillingSchedule = "BILLING_SCHEDULE"
|
|
17529
17888
|
}
|
|
@@ -28025,6 +28384,17 @@ export declare enum ConfluenceSiteEmailAddressStatus {
|
|
|
28025
28384
|
Inactive = "INACTIVE",
|
|
28026
28385
|
SiteEmailAddressNotPresent = "SITE_EMAIL_ADDRESS_NOT_PRESENT"
|
|
28027
28386
|
}
|
|
28387
|
+
export declare type ConfluenceSmartSpaceOverview = {
|
|
28388
|
+
__typename?: 'ConfluenceSmartSpaceOverview';
|
|
28389
|
+
summary?: Maybe<ConfluenceSmartSpaceOverviewSummary>;
|
|
28390
|
+
};
|
|
28391
|
+
export declare type ConfluenceSmartSpaceOverviewSummary = {
|
|
28392
|
+
__typename?: 'ConfluenceSmartSpaceOverviewSummary';
|
|
28393
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
28394
|
+
contentId?: Maybe<Scalars['ID']['output']>;
|
|
28395
|
+
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
28396
|
+
lastRefreshed?: Maybe<Scalars['String']['output']>;
|
|
28397
|
+
};
|
|
28028
28398
|
export declare type ConfluenceSpace = Node & {
|
|
28029
28399
|
__typename?: 'ConfluenceSpace';
|
|
28030
28400
|
alias?: Maybe<Scalars['String']['output']>;
|
|
@@ -32150,6 +32520,7 @@ export declare type CplsCapacityPlanningPeopleViewContributorsArgs = {
|
|
|
32150
32520
|
};
|
|
32151
32521
|
export declare type CplsCapacityPlanningWorkView = {
|
|
32152
32522
|
__typename?: 'CplsCapacityPlanningWorkView';
|
|
32523
|
+
filters?: Maybe<CplsFilters>;
|
|
32153
32524
|
id: Scalars['ID']['output'];
|
|
32154
32525
|
timeCells?: Maybe<Array<CplsTimeCell>>;
|
|
32155
32526
|
work?: Maybe<CplsWork>;
|
|
@@ -32174,6 +32545,7 @@ export declare type CplsCapacityPlanningWorkViewWorksArgs = {
|
|
|
32174
32545
|
export declare type CplsContribution = {
|
|
32175
32546
|
__typename?: 'CplsContribution';
|
|
32176
32547
|
endDate: Scalars['Date']['output'];
|
|
32548
|
+
isSuggestion?: Maybe<Scalars['Boolean']['output']>;
|
|
32177
32549
|
startDate: Scalars['Date']['output'];
|
|
32178
32550
|
value?: Maybe<Scalars['Float']['output']>;
|
|
32179
32551
|
valueFormats?: Maybe<CplsValueFormats>;
|
|
@@ -32200,6 +32572,7 @@ export declare type CplsContributor = {
|
|
|
32200
32572
|
contributorDataId?: Maybe<Scalars['ID']['output']>;
|
|
32201
32573
|
contributorWork?: Maybe<CplsContributorWorkConnection>;
|
|
32202
32574
|
id: Scalars['ID']['output'];
|
|
32575
|
+
isSuggestion?: Maybe<Scalars['Boolean']['output']>;
|
|
32203
32576
|
worksByIds?: Maybe<Array<Maybe<CplsContributorWorkEdge>>>;
|
|
32204
32577
|
};
|
|
32205
32578
|
export declare type CplsContributorContributorWorkArgs = {
|
|
@@ -32265,6 +32638,7 @@ export declare type CplsContributorWorkEdge = {
|
|
|
32265
32638
|
__typename?: 'CplsContributorWorkEdge';
|
|
32266
32639
|
contributions?: Maybe<Array<Maybe<CplsContribution>>>;
|
|
32267
32640
|
cursor: Scalars['String']['output'];
|
|
32641
|
+
isSuggestion?: Maybe<Scalars['Boolean']['output']>;
|
|
32268
32642
|
node?: Maybe<CplsWorkData>;
|
|
32269
32643
|
};
|
|
32270
32644
|
export declare type CplsCreateCustomContributionTargetInput = {
|
|
@@ -32372,6 +32746,7 @@ export declare type CplsFilterConfigurationJiraWorkItemsArgs = {
|
|
|
32372
32746
|
export declare type CplsFilterConfigurationType = CplsFilterConfiguration | QueryError;
|
|
32373
32747
|
export declare type CplsFilters = {
|
|
32374
32748
|
__typename?: 'CplsFilters';
|
|
32749
|
+
atlasProjects?: Maybe<Array<Scalars['ID']['output']>>;
|
|
32375
32750
|
contributorDataIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
32376
32751
|
customContributionTargets?: Maybe<Array<Scalars['ID']['output']>>;
|
|
32377
32752
|
id: Scalars['ID']['output'];
|
|
@@ -32380,6 +32755,7 @@ export declare type CplsFilters = {
|
|
|
32380
32755
|
workTypes?: Maybe<Array<CplsWorkType>>;
|
|
32381
32756
|
};
|
|
32382
32757
|
export declare type CplsFiltersInput = {
|
|
32758
|
+
atlasProjects?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
32383
32759
|
contributorDataIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
32384
32760
|
customContributionTargets?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
32385
32761
|
jiraWorkItemStatusNames?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -34617,6 +34993,13 @@ export declare type CustomerServiceIndividualUpdateAttributeValuePayload = Paylo
|
|
|
34617
34993
|
errors?: Maybe<Array<MutationError>>;
|
|
34618
34994
|
success: Scalars['Boolean']['output'];
|
|
34619
34995
|
};
|
|
34996
|
+
export declare type CustomerServiceLiveChatAgent = {
|
|
34997
|
+
__typename?: 'CustomerServiceLiveChatAgent';
|
|
34998
|
+
id: Scalars['ID']['output'];
|
|
34999
|
+
liveChatActivitiesBySpace?: Maybe<CustomerServiceSpaceLiveChatActivitiesConnection>;
|
|
35000
|
+
liveChatActivity?: Maybe<Scalars['String']['output']>;
|
|
35001
|
+
};
|
|
35002
|
+
export declare type CustomerServiceLiveChatAgentQueryResult = CustomerServiceLiveChatAgent | QueryError;
|
|
34620
35003
|
export declare type CustomerServiceMutationApi = {
|
|
34621
35004
|
__typename?: 'CustomerServiceMutationApi';
|
|
34622
35005
|
acceptEscalation?: Maybe<CustomerServiceAcceptEscalationPayload>;
|
|
@@ -35079,6 +35462,7 @@ export declare type CustomerServiceRequest = {
|
|
|
35079
35462
|
id: Scalars['ID']['output'];
|
|
35080
35463
|
key?: Maybe<Scalars['String']['output']>;
|
|
35081
35464
|
participants?: Maybe<Array<CustomerServiceRequestParticipant>>;
|
|
35465
|
+
statusCategoryName?: Maybe<Scalars['String']['output']>;
|
|
35082
35466
|
statusKey?: Maybe<CustomerServiceStatusKey>;
|
|
35083
35467
|
summary?: Maybe<Scalars['String']['output']>;
|
|
35084
35468
|
templateForm?: Maybe<CustomerServiceTemplateForm>;
|
|
@@ -35174,6 +35558,22 @@ export declare type CustomerServiceRoutingRule = {
|
|
|
35174
35558
|
project?: Maybe<JiraProject>;
|
|
35175
35559
|
projectId?: Maybe<Scalars['ID']['output']>;
|
|
35176
35560
|
};
|
|
35561
|
+
export declare type CustomerServiceSpaceLiveChatActivitiesConnection = {
|
|
35562
|
+
__typename?: 'CustomerServiceSpaceLiveChatActivitiesConnection';
|
|
35563
|
+
edges: Array<CustomerServiceSpaceLiveChatActivityEdge>;
|
|
35564
|
+
pageInfo: PageInfo;
|
|
35565
|
+
};
|
|
35566
|
+
export declare type CustomerServiceSpaceLiveChatActivity = {
|
|
35567
|
+
__typename?: 'CustomerServiceSpaceLiveChatActivity';
|
|
35568
|
+
activityStatus: Scalars['String']['output'];
|
|
35569
|
+
id: Scalars['ID']['output'];
|
|
35570
|
+
space?: Maybe<JiraProject>;
|
|
35571
|
+
};
|
|
35572
|
+
export declare type CustomerServiceSpaceLiveChatActivityEdge = {
|
|
35573
|
+
__typename?: 'CustomerServiceSpaceLiveChatActivityEdge';
|
|
35574
|
+
cursor: Scalars['String']['output'];
|
|
35575
|
+
node?: Maybe<CustomerServiceSpaceLiveChatActivity>;
|
|
35576
|
+
};
|
|
35177
35577
|
export declare enum CustomerServiceStatusKey {
|
|
35178
35578
|
Resolved = "RESOLVED",
|
|
35179
35579
|
Submitted = "SUBMITTED"
|
|
@@ -40116,6 +40516,7 @@ export declare type ExternalCustomerContactEntitlement = {
|
|
|
40116
40516
|
};
|
|
40117
40517
|
export declare type ExternalCustomerOrg = Node & {
|
|
40118
40518
|
__typename?: 'ExternalCustomerOrg';
|
|
40519
|
+
accountSite?: Maybe<Scalars['String']['output']>;
|
|
40119
40520
|
accountSource?: Maybe<Scalars['String']['output']>;
|
|
40120
40521
|
accountType?: Maybe<Scalars['String']['output']>;
|
|
40121
40522
|
address?: Maybe<Scalars['String']['output']>;
|
|
@@ -40155,7 +40556,6 @@ export declare type ExternalCustomerOrg = Node & {
|
|
|
40155
40556
|
naicsDescription?: Maybe<Scalars['String']['output']>;
|
|
40156
40557
|
numberOfEmployees?: Maybe<Scalars['Long']['output']>;
|
|
40157
40558
|
operatingHoursId?: Maybe<Scalars['String']['output']>;
|
|
40158
|
-
orgSite?: Maybe<Scalars['String']['output']>;
|
|
40159
40559
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
40160
40560
|
ownershipType?: Maybe<Scalars['String']['output']>;
|
|
40161
40561
|
parent?: Maybe<ExternalEntity>;
|
|
@@ -40811,6 +41211,7 @@ export declare enum ExternalPullRequestStatus {
|
|
|
40811
41211
|
Draft = "DRAFT",
|
|
40812
41212
|
Merged = "MERGED",
|
|
40813
41213
|
Open = "OPEN",
|
|
41214
|
+
Queued = "QUEUED",
|
|
40814
41215
|
Unknown = "UNKNOWN"
|
|
40815
41216
|
}
|
|
40816
41217
|
export declare type ExternalReaction = {
|
|
@@ -47011,6 +47412,8 @@ export declare type GraphStore = {
|
|
|
47011
47412
|
askHasSubmitterInverse?: Maybe<GraphStoreSimplifiedAskHasSubmitterInverseConnection>;
|
|
47012
47413
|
askHasSubmittingTeam?: Maybe<GraphStoreSimplifiedAskHasSubmittingTeamConnection>;
|
|
47013
47414
|
askHasSubmittingTeamInverse?: Maybe<GraphStoreSimplifiedAskHasSubmittingTeamInverseConnection>;
|
|
47415
|
+
assetTypeHasChildAssetType?: Maybe<GraphStoreSimplifiedAssetTypeHasChildAssetTypeConnection>;
|
|
47416
|
+
assetTypeHasChildAssetTypeInverse?: Maybe<GraphStoreSimplifiedAssetTypeHasChildAssetTypeInverseConnection>;
|
|
47014
47417
|
atlasGoalHasAtlasTagInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseConnection>;
|
|
47015
47418
|
atlasGoalHasContributor?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorConnection>;
|
|
47016
47419
|
atlasGoalHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseConnection>;
|
|
@@ -47670,6 +48073,8 @@ export declare type GraphStore = {
|
|
|
47670
48073
|
sprintRetrospectiveWhiteboardInverse?: Maybe<GraphStoreSimplifiedSprintRetrospectiveWhiteboardInverseConnection>;
|
|
47671
48074
|
sprintRetrospectiveWhiteboardInverseRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
47672
48075
|
sprintRetrospectiveWhiteboardRelationship?: Maybe<GraphStoreFullSprintRetrospectiveWhiteboardConnection>;
|
|
48076
|
+
teamAssignedIssue?: Maybe<GraphStoreSimplifiedTeamAssignedIssueConnection>;
|
|
48077
|
+
teamAssignedIssueInverse?: Maybe<GraphStoreSimplifiedTeamAssignedIssueInverseConnection>;
|
|
47673
48078
|
teamConnectedToContainer?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerConnection>;
|
|
47674
48079
|
teamConnectedToContainerInverse?: Maybe<GraphStoreSimplifiedTeamConnectedToContainerInverseConnection>;
|
|
47675
48080
|
teamHasAgents?: Maybe<GraphStoreSimplifiedTeamHasAgentsConnection>;
|
|
@@ -47775,6 +48180,8 @@ export declare type GraphStore = {
|
|
|
47775
48180
|
userCreatedExternalSpaceInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalSpaceInverseConnection>;
|
|
47776
48181
|
userCreatedExternalTest?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestConnection>;
|
|
47777
48182
|
userCreatedExternalTestInverse?: Maybe<GraphStoreSimplifiedUserCreatedExternalTestInverseConnection>;
|
|
48183
|
+
userCreatedFocusArea?: Maybe<GraphStoreSimplifiedUserCreatedFocusAreaConnection>;
|
|
48184
|
+
userCreatedFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserCreatedFocusAreaInverseConnection>;
|
|
47778
48185
|
userCreatedIssue?: Maybe<GraphStoreSimplifiedUserCreatedIssueConnection>;
|
|
47779
48186
|
userCreatedIssueComment?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentConnection>;
|
|
47780
48187
|
userCreatedIssueCommentInverse?: Maybe<GraphStoreSimplifiedUserCreatedIssueCommentInverseConnection>;
|
|
@@ -47927,6 +48334,8 @@ export declare type GraphStore = {
|
|
|
47927
48334
|
userUpdatedExternalSpaceInverse?: Maybe<GraphStoreSimplifiedUserUpdatedExternalSpaceInverseConnection>;
|
|
47928
48335
|
userUpdatedExternalTest?: Maybe<GraphStoreSimplifiedUserUpdatedExternalTestConnection>;
|
|
47929
48336
|
userUpdatedExternalTestInverse?: Maybe<GraphStoreSimplifiedUserUpdatedExternalTestInverseConnection>;
|
|
48337
|
+
userUpdatedFocusArea?: Maybe<GraphStoreSimplifiedUserUpdatedFocusAreaConnection>;
|
|
48338
|
+
userUpdatedFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserUpdatedFocusAreaInverseConnection>;
|
|
47930
48339
|
userUpdatedGraphDocument?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentConnection>;
|
|
47931
48340
|
userUpdatedGraphDocumentInverse?: Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentInverseConnection>;
|
|
47932
48341
|
userUpdatedIssue?: Maybe<GraphStoreSimplifiedUserUpdatedIssueConnection>;
|
|
@@ -47961,6 +48370,8 @@ export declare type GraphStore = {
|
|
|
47961
48370
|
userViewedVideoInverse?: Maybe<GraphStoreSimplifiedUserViewedVideoInverseConnection>;
|
|
47962
48371
|
userWatchesConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection>;
|
|
47963
48372
|
userWatchesConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseConnection>;
|
|
48373
|
+
userWatchesConfluenceDatabase?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceDatabaseConnection>;
|
|
48374
|
+
userWatchesConfluenceDatabaseInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceDatabaseInverseConnection>;
|
|
47964
48375
|
userWatchesConfluencePage?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageConnection>;
|
|
47965
48376
|
userWatchesConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageInverseConnection>;
|
|
47966
48377
|
userWatchesConfluenceWhiteboard?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceWhiteboardConnection>;
|
|
@@ -48122,6 +48533,22 @@ export declare type GraphStoreAskHasSubmittingTeamInverseArgs = {
|
|
|
48122
48533
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
48123
48534
|
sort?: InputMaybe<GraphStoreAskHasSubmittingTeamSortInput>;
|
|
48124
48535
|
};
|
|
48536
|
+
export declare type GraphStoreAssetTypeHasChildAssetTypeArgs = {
|
|
48537
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48538
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48539
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48540
|
+
id: Scalars['ID']['input'];
|
|
48541
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
48542
|
+
sort?: InputMaybe<GraphStoreAssetTypeHasChildAssetTypeSortInput>;
|
|
48543
|
+
};
|
|
48544
|
+
export declare type GraphStoreAssetTypeHasChildAssetTypeInverseArgs = {
|
|
48545
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
48546
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
48547
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
48548
|
+
id: Scalars['ID']['input'];
|
|
48549
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
48550
|
+
sort?: InputMaybe<GraphStoreAssetTypeHasChildAssetTypeSortInput>;
|
|
48551
|
+
};
|
|
48125
48552
|
export declare type GraphStoreAtlasGoalHasAtlasTagInverseArgs = {
|
|
48126
48553
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
48127
48554
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -53166,6 +53593,22 @@ export declare type GraphStoreSprintRetrospectiveWhiteboardRelationshipArgs = {
|
|
|
53166
53593
|
id: Scalars['ID']['input'];
|
|
53167
53594
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53168
53595
|
};
|
|
53596
|
+
export declare type GraphStoreTeamAssignedIssueArgs = {
|
|
53597
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53598
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53599
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53600
|
+
id: Scalars['ID']['input'];
|
|
53601
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53602
|
+
sort?: InputMaybe<GraphStoreTeamAssignedIssueSortInput>;
|
|
53603
|
+
};
|
|
53604
|
+
export declare type GraphStoreTeamAssignedIssueInverseArgs = {
|
|
53605
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53606
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53607
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53608
|
+
id: Scalars['ID']['input'];
|
|
53609
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53610
|
+
sort?: InputMaybe<GraphStoreTeamAssignedIssueSortInput>;
|
|
53611
|
+
};
|
|
53169
53612
|
export declare type GraphStoreTeamConnectedToContainerArgs = {
|
|
53170
53613
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
53171
53614
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -53990,6 +54433,22 @@ export declare type GraphStoreUserCreatedExternalTestInverseArgs = {
|
|
|
53990
54433
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53991
54434
|
sort?: InputMaybe<GraphStoreUserCreatedExternalTestSortInput>;
|
|
53992
54435
|
};
|
|
54436
|
+
export declare type GraphStoreUserCreatedFocusAreaArgs = {
|
|
54437
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54438
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54439
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54440
|
+
id: Scalars['ID']['input'];
|
|
54441
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54442
|
+
sort?: InputMaybe<GraphStoreUserCreatedFocusAreaSortInput>;
|
|
54443
|
+
};
|
|
54444
|
+
export declare type GraphStoreUserCreatedFocusAreaInverseArgs = {
|
|
54445
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
54446
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
54447
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
54448
|
+
id: Scalars['ID']['input'];
|
|
54449
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
54450
|
+
sort?: InputMaybe<GraphStoreUserCreatedFocusAreaSortInput>;
|
|
54451
|
+
};
|
|
53993
54452
|
export declare type GraphStoreUserCreatedIssueArgs = {
|
|
53994
54453
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
53995
54454
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -55208,6 +55667,22 @@ export declare type GraphStoreUserUpdatedExternalTestInverseArgs = {
|
|
|
55208
55667
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55209
55668
|
sort?: InputMaybe<GraphStoreUserUpdatedExternalTestSortInput>;
|
|
55210
55669
|
};
|
|
55670
|
+
export declare type GraphStoreUserUpdatedFocusAreaArgs = {
|
|
55671
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55672
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55673
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55674
|
+
id: Scalars['ID']['input'];
|
|
55675
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55676
|
+
sort?: InputMaybe<GraphStoreUserUpdatedFocusAreaSortInput>;
|
|
55677
|
+
};
|
|
55678
|
+
export declare type GraphStoreUserUpdatedFocusAreaInverseArgs = {
|
|
55679
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55680
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55681
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55682
|
+
id: Scalars['ID']['input'];
|
|
55683
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55684
|
+
sort?: InputMaybe<GraphStoreUserUpdatedFocusAreaSortInput>;
|
|
55685
|
+
};
|
|
55211
55686
|
export declare type GraphStoreUserUpdatedGraphDocumentArgs = {
|
|
55212
55687
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
55213
55688
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -55474,6 +55949,22 @@ export declare type GraphStoreUserWatchesConfluenceBlogpostInverseArgs = {
|
|
|
55474
55949
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55475
55950
|
sort?: InputMaybe<GraphStoreUserWatchesConfluenceBlogpostSortInput>;
|
|
55476
55951
|
};
|
|
55952
|
+
export declare type GraphStoreUserWatchesConfluenceDatabaseArgs = {
|
|
55953
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55954
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55955
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55956
|
+
id: Scalars['ID']['input'];
|
|
55957
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55958
|
+
sort?: InputMaybe<GraphStoreUserWatchesConfluenceDatabaseSortInput>;
|
|
55959
|
+
};
|
|
55960
|
+
export declare type GraphStoreUserWatchesConfluenceDatabaseInverseArgs = {
|
|
55961
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
55962
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
55963
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
55964
|
+
id: Scalars['ID']['input'];
|
|
55965
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
55966
|
+
sort?: InputMaybe<GraphStoreUserWatchesConfluenceDatabaseSortInput>;
|
|
55967
|
+
};
|
|
55477
55968
|
export declare type GraphStoreUserWatchesConfluencePageArgs = {
|
|
55478
55969
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
55479
55970
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -55925,6 +56416,9 @@ export declare type GraphStoreAskHasSubmitterSortInput = {
|
|
|
55925
56416
|
export declare type GraphStoreAskHasSubmittingTeamSortInput = {
|
|
55926
56417
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
55927
56418
|
};
|
|
56419
|
+
export declare type GraphStoreAssetTypeHasChildAssetTypeSortInput = {
|
|
56420
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
56421
|
+
};
|
|
55928
56422
|
export declare type GraphStoreAtiFilterInput = {
|
|
55929
56423
|
is?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
55930
56424
|
isNot?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -64065,6 +64559,34 @@ export declare type GraphStoreSimplifiedAskHasSubmittingTeamInverseEdge = {
|
|
|
64065
64559
|
};
|
|
64066
64560
|
export declare type GraphStoreSimplifiedAskHasSubmittingTeamInverseUnion = SpfAsk;
|
|
64067
64561
|
export declare type GraphStoreSimplifiedAskHasSubmittingTeamUnion = TeamV2;
|
|
64562
|
+
export declare type GraphStoreSimplifiedAssetTypeHasChildAssetTypeConnection = HasPageInfo & {
|
|
64563
|
+
__typename?: 'GraphStoreSimplifiedAssetTypeHasChildAssetTypeConnection';
|
|
64564
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAssetTypeHasChildAssetTypeEdge>>>;
|
|
64565
|
+
pageInfo: PageInfo;
|
|
64566
|
+
};
|
|
64567
|
+
export declare type GraphStoreSimplifiedAssetTypeHasChildAssetTypeEdge = {
|
|
64568
|
+
__typename?: 'GraphStoreSimplifiedAssetTypeHasChildAssetTypeEdge';
|
|
64569
|
+
createdAt: Scalars['DateTime']['output'];
|
|
64570
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
64571
|
+
id: Scalars['ID']['output'];
|
|
64572
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
64573
|
+
node?: Maybe<GraphStoreSimplifiedAssetTypeHasChildAssetTypeUnion>;
|
|
64574
|
+
};
|
|
64575
|
+
export declare type GraphStoreSimplifiedAssetTypeHasChildAssetTypeInverseConnection = HasPageInfo & {
|
|
64576
|
+
__typename?: 'GraphStoreSimplifiedAssetTypeHasChildAssetTypeInverseConnection';
|
|
64577
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAssetTypeHasChildAssetTypeInverseEdge>>>;
|
|
64578
|
+
pageInfo: PageInfo;
|
|
64579
|
+
};
|
|
64580
|
+
export declare type GraphStoreSimplifiedAssetTypeHasChildAssetTypeInverseEdge = {
|
|
64581
|
+
__typename?: 'GraphStoreSimplifiedAssetTypeHasChildAssetTypeInverseEdge';
|
|
64582
|
+
createdAt: Scalars['DateTime']['output'];
|
|
64583
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
64584
|
+
id: Scalars['ID']['output'];
|
|
64585
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
64586
|
+
node?: Maybe<GraphStoreSimplifiedAssetTypeHasChildAssetTypeInverseUnion>;
|
|
64587
|
+
};
|
|
64588
|
+
export declare type GraphStoreSimplifiedAssetTypeHasChildAssetTypeInverseUnion = AssetsObjectType;
|
|
64589
|
+
export declare type GraphStoreSimplifiedAssetTypeHasChildAssetTypeUnion = AssetsObjectType;
|
|
64068
64590
|
export declare type GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseConnection = HasPageInfo & {
|
|
64069
64591
|
__typename?: 'GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseConnection';
|
|
64070
64592
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasAtlasTagInverseEdge>>>;
|
|
@@ -70777,6 +71299,34 @@ export declare type GraphStoreSimplifiedSprintRetrospectiveWhiteboardInverseEdge
|
|
|
70777
71299
|
};
|
|
70778
71300
|
export declare type GraphStoreSimplifiedSprintRetrospectiveWhiteboardInverseUnion = JiraSprint;
|
|
70779
71301
|
export declare type GraphStoreSimplifiedSprintRetrospectiveWhiteboardUnion = ConfluenceWhiteboard;
|
|
71302
|
+
export declare type GraphStoreSimplifiedTeamAssignedIssueConnection = HasPageInfo & {
|
|
71303
|
+
__typename?: 'GraphStoreSimplifiedTeamAssignedIssueConnection';
|
|
71304
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamAssignedIssueEdge>>>;
|
|
71305
|
+
pageInfo: PageInfo;
|
|
71306
|
+
};
|
|
71307
|
+
export declare type GraphStoreSimplifiedTeamAssignedIssueEdge = {
|
|
71308
|
+
__typename?: 'GraphStoreSimplifiedTeamAssignedIssueEdge';
|
|
71309
|
+
createdAt: Scalars['DateTime']['output'];
|
|
71310
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
71311
|
+
id: Scalars['ID']['output'];
|
|
71312
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
71313
|
+
node?: Maybe<GraphStoreSimplifiedTeamAssignedIssueUnion>;
|
|
71314
|
+
};
|
|
71315
|
+
export declare type GraphStoreSimplifiedTeamAssignedIssueInverseConnection = HasPageInfo & {
|
|
71316
|
+
__typename?: 'GraphStoreSimplifiedTeamAssignedIssueInverseConnection';
|
|
71317
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamAssignedIssueInverseEdge>>>;
|
|
71318
|
+
pageInfo: PageInfo;
|
|
71319
|
+
};
|
|
71320
|
+
export declare type GraphStoreSimplifiedTeamAssignedIssueInverseEdge = {
|
|
71321
|
+
__typename?: 'GraphStoreSimplifiedTeamAssignedIssueInverseEdge';
|
|
71322
|
+
createdAt: Scalars['DateTime']['output'];
|
|
71323
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
71324
|
+
id: Scalars['ID']['output'];
|
|
71325
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
71326
|
+
node?: Maybe<GraphStoreSimplifiedTeamAssignedIssueInverseUnion>;
|
|
71327
|
+
};
|
|
71328
|
+
export declare type GraphStoreSimplifiedTeamAssignedIssueInverseUnion = TeamV2;
|
|
71329
|
+
export declare type GraphStoreSimplifiedTeamAssignedIssueUnion = JiraIssue;
|
|
70780
71330
|
export declare type GraphStoreSimplifiedTeamConnectedToContainerConnection = HasPageInfo & HasTotal & {
|
|
70781
71331
|
__typename?: 'GraphStoreSimplifiedTeamConnectedToContainerConnection';
|
|
70782
71332
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedTeamConnectedToContainerEdge>>>;
|
|
@@ -72107,6 +72657,34 @@ export declare type GraphStoreSimplifiedUserCreatedExternalTestInverseEdge = {
|
|
|
72107
72657
|
};
|
|
72108
72658
|
export declare type GraphStoreSimplifiedUserCreatedExternalTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
72109
72659
|
export declare type GraphStoreSimplifiedUserCreatedExternalTestUnion = ExternalTest;
|
|
72660
|
+
export declare type GraphStoreSimplifiedUserCreatedFocusAreaConnection = HasPageInfo & {
|
|
72661
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedFocusAreaConnection';
|
|
72662
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedFocusAreaEdge>>>;
|
|
72663
|
+
pageInfo: PageInfo;
|
|
72664
|
+
};
|
|
72665
|
+
export declare type GraphStoreSimplifiedUserCreatedFocusAreaEdge = {
|
|
72666
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedFocusAreaEdge';
|
|
72667
|
+
createdAt: Scalars['DateTime']['output'];
|
|
72668
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
72669
|
+
id: Scalars['ID']['output'];
|
|
72670
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
72671
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedFocusAreaUnion>;
|
|
72672
|
+
};
|
|
72673
|
+
export declare type GraphStoreSimplifiedUserCreatedFocusAreaInverseConnection = HasPageInfo & {
|
|
72674
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedFocusAreaInverseConnection';
|
|
72675
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedFocusAreaInverseEdge>>>;
|
|
72676
|
+
pageInfo: PageInfo;
|
|
72677
|
+
};
|
|
72678
|
+
export declare type GraphStoreSimplifiedUserCreatedFocusAreaInverseEdge = {
|
|
72679
|
+
__typename?: 'GraphStoreSimplifiedUserCreatedFocusAreaInverseEdge';
|
|
72680
|
+
createdAt: Scalars['DateTime']['output'];
|
|
72681
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
72682
|
+
id: Scalars['ID']['output'];
|
|
72683
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
72684
|
+
node?: Maybe<GraphStoreSimplifiedUserCreatedFocusAreaInverseUnion>;
|
|
72685
|
+
};
|
|
72686
|
+
export declare type GraphStoreSimplifiedUserCreatedFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
72687
|
+
export declare type GraphStoreSimplifiedUserCreatedFocusAreaUnion = MercuryFocusArea;
|
|
72110
72688
|
export declare type GraphStoreSimplifiedUserCreatedIssueCommentConnection = HasPageInfo & {
|
|
72111
72689
|
__typename?: 'GraphStoreSimplifiedUserCreatedIssueCommentConnection';
|
|
72112
72690
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserCreatedIssueCommentEdge>>>;
|
|
@@ -74235,6 +74813,34 @@ export declare type GraphStoreSimplifiedUserUpdatedExternalTestInverseEdge = {
|
|
|
74235
74813
|
};
|
|
74236
74814
|
export declare type GraphStoreSimplifiedUserUpdatedExternalTestInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
74237
74815
|
export declare type GraphStoreSimplifiedUserUpdatedExternalTestUnion = ExternalTest;
|
|
74816
|
+
export declare type GraphStoreSimplifiedUserUpdatedFocusAreaConnection = HasPageInfo & {
|
|
74817
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedFocusAreaConnection';
|
|
74818
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedFocusAreaEdge>>>;
|
|
74819
|
+
pageInfo: PageInfo;
|
|
74820
|
+
};
|
|
74821
|
+
export declare type GraphStoreSimplifiedUserUpdatedFocusAreaEdge = {
|
|
74822
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedFocusAreaEdge';
|
|
74823
|
+
createdAt: Scalars['DateTime']['output'];
|
|
74824
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
74825
|
+
id: Scalars['ID']['output'];
|
|
74826
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
74827
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedFocusAreaUnion>;
|
|
74828
|
+
};
|
|
74829
|
+
export declare type GraphStoreSimplifiedUserUpdatedFocusAreaInverseConnection = HasPageInfo & {
|
|
74830
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedFocusAreaInverseConnection';
|
|
74831
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedFocusAreaInverseEdge>>>;
|
|
74832
|
+
pageInfo: PageInfo;
|
|
74833
|
+
};
|
|
74834
|
+
export declare type GraphStoreSimplifiedUserUpdatedFocusAreaInverseEdge = {
|
|
74835
|
+
__typename?: 'GraphStoreSimplifiedUserUpdatedFocusAreaInverseEdge';
|
|
74836
|
+
createdAt: Scalars['DateTime']['output'];
|
|
74837
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
74838
|
+
id: Scalars['ID']['output'];
|
|
74839
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
74840
|
+
node?: Maybe<GraphStoreSimplifiedUserUpdatedFocusAreaInverseUnion>;
|
|
74841
|
+
};
|
|
74842
|
+
export declare type GraphStoreSimplifiedUserUpdatedFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
74843
|
+
export declare type GraphStoreSimplifiedUserUpdatedFocusAreaUnion = MercuryFocusArea;
|
|
74238
74844
|
export declare type GraphStoreSimplifiedUserUpdatedGraphDocumentConnection = HasPageInfo & {
|
|
74239
74845
|
__typename?: 'GraphStoreSimplifiedUserUpdatedGraphDocumentConnection';
|
|
74240
74846
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserUpdatedGraphDocumentEdge>>>;
|
|
@@ -74627,6 +75233,34 @@ export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseEdge
|
|
|
74627
75233
|
};
|
|
74628
75234
|
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
74629
75235
|
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
75236
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceDatabaseConnection = HasPageInfo & {
|
|
75237
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceDatabaseConnection';
|
|
75238
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluenceDatabaseEdge>>>;
|
|
75239
|
+
pageInfo: PageInfo;
|
|
75240
|
+
};
|
|
75241
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceDatabaseEdge = {
|
|
75242
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceDatabaseEdge';
|
|
75243
|
+
createdAt: Scalars['DateTime']['output'];
|
|
75244
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
75245
|
+
id: Scalars['ID']['output'];
|
|
75246
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
75247
|
+
node?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceDatabaseUnion>;
|
|
75248
|
+
};
|
|
75249
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceDatabaseInverseConnection = HasPageInfo & {
|
|
75250
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceDatabaseInverseConnection';
|
|
75251
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluenceDatabaseInverseEdge>>>;
|
|
75252
|
+
pageInfo: PageInfo;
|
|
75253
|
+
};
|
|
75254
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceDatabaseInverseEdge = {
|
|
75255
|
+
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceDatabaseInverseEdge';
|
|
75256
|
+
createdAt: Scalars['DateTime']['output'];
|
|
75257
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
75258
|
+
id: Scalars['ID']['output'];
|
|
75259
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
75260
|
+
node?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceDatabaseInverseUnion>;
|
|
75261
|
+
};
|
|
75262
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceDatabaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
75263
|
+
export declare type GraphStoreSimplifiedUserWatchesConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
74630
75264
|
export declare type GraphStoreSimplifiedUserWatchesConfluencePageConnection = HasPageInfo & {
|
|
74631
75265
|
__typename?: 'GraphStoreSimplifiedUserWatchesConfluencePageConnection';
|
|
74632
75266
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluencePageEdge>>>;
|
|
@@ -75416,6 +76050,9 @@ export declare type GraphStoreSprintRetrospectiveWhiteboardSortInput = {
|
|
|
75416
76050
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
75417
76051
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
75418
76052
|
};
|
|
76053
|
+
export declare type GraphStoreTeamAssignedIssueSortInput = {
|
|
76054
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76055
|
+
};
|
|
75419
76056
|
export declare type GraphStoreTeamConnectedToContainerSortInput = {
|
|
75420
76057
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
75421
76058
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -75645,6 +76282,9 @@ export declare type GraphStoreUserCreatedExternalSpaceSortInput = {
|
|
|
75645
76282
|
export declare type GraphStoreUserCreatedExternalTestSortInput = {
|
|
75646
76283
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
75647
76284
|
};
|
|
76285
|
+
export declare type GraphStoreUserCreatedFocusAreaSortInput = {
|
|
76286
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76287
|
+
};
|
|
75648
76288
|
export declare type GraphStoreUserCreatedIssueCommentSortInput = {
|
|
75649
76289
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
75650
76290
|
};
|
|
@@ -75919,6 +76559,9 @@ export declare type GraphStoreUserUpdatedExternalSpaceSortInput = {
|
|
|
75919
76559
|
export declare type GraphStoreUserUpdatedExternalTestSortInput = {
|
|
75920
76560
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
75921
76561
|
};
|
|
76562
|
+
export declare type GraphStoreUserUpdatedFocusAreaSortInput = {
|
|
76563
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76564
|
+
};
|
|
75922
76565
|
export declare type GraphStoreUserUpdatedGraphDocumentSortInput = {
|
|
75923
76566
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
75924
76567
|
};
|
|
@@ -75964,6 +76607,9 @@ export declare type GraphStoreUserViewedVideoSortInput = {
|
|
|
75964
76607
|
export declare type GraphStoreUserWatchesConfluenceBlogpostSortInput = {
|
|
75965
76608
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
75966
76609
|
};
|
|
76610
|
+
export declare type GraphStoreUserWatchesConfluenceDatabaseSortInput = {
|
|
76611
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
76612
|
+
};
|
|
75967
76613
|
export declare type GraphStoreUserWatchesConfluencePageSortInput = {
|
|
75968
76614
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
75969
76615
|
};
|
|
@@ -75975,6 +76621,8 @@ export declare type GraphStoreUserWatchesTeamSortInput = {
|
|
|
75975
76621
|
};
|
|
75976
76622
|
export declare type GraphStoreV2 = {
|
|
75977
76623
|
__typename?: 'GraphStoreV2';
|
|
76624
|
+
assetTypeHasChildAssetType?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection>;
|
|
76625
|
+
assetTypeHasChildAssetTypeInverse?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseConnection>;
|
|
75978
76626
|
atlassianGoalHasAtlassianGoalUpdate?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection>;
|
|
75979
76627
|
atlassianGoalHasAtlassianGoalUpdateInverse?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateInverseConnection>;
|
|
75980
76628
|
atlassianGoalHasAtlassianHomeTagInverse?: Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianHomeTagInverseConnection>;
|
|
@@ -75994,6 +76642,8 @@ export declare type GraphStoreV2 = {
|
|
|
75994
76642
|
atlassianProjectHasAtlassianProjectUpdate?: Maybe<GraphStoreV2SimplifiedAtlassianProjectHasAtlassianProjectUpdateConnection>;
|
|
75995
76643
|
atlassianProjectHasAtlassianProjectUpdateInverse?: Maybe<GraphStoreV2SimplifiedAtlassianProjectHasAtlassianProjectUpdateInverseConnection>;
|
|
75996
76644
|
atlassianProjectLinksAtlassianProject?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectConnection>;
|
|
76645
|
+
atlassianTeamAssignedJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection>;
|
|
76646
|
+
atlassianTeamAssignedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemInverseConnection>;
|
|
75997
76647
|
atlassianTeamContributesToAtlassianGoal?: Maybe<GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalConnection>;
|
|
75998
76648
|
atlassianTeamContributesToAtlassianGoalInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalInverseConnection>;
|
|
75999
76649
|
atlassianTeamHasAtlassianAgent?: Maybe<GraphStoreV2SimplifiedAtlassianTeamHasAtlassianAgentConnection>;
|
|
@@ -76068,6 +76718,8 @@ export declare type GraphStoreV2 = {
|
|
|
76068
76718
|
atlassianUserCreatedExternalRemoteLinkInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRemoteLinkInverseConnection>;
|
|
76069
76719
|
atlassianUserCreatedExternalRepository?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryConnection>;
|
|
76070
76720
|
atlassianUserCreatedExternalRepositoryInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryInverseConnection>;
|
|
76721
|
+
atlassianUserCreatedFocusFocusArea?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaConnection>;
|
|
76722
|
+
atlassianUserCreatedFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaInverseConnection>;
|
|
76071
76723
|
atlassianUserCreatedJiraRelease?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseConnection>;
|
|
76072
76724
|
atlassianUserCreatedJiraReleaseInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseInverseConnection>;
|
|
76073
76725
|
atlassianUserCreatedJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedJiraWorkItemConnection>;
|
|
@@ -76178,6 +76830,8 @@ export declare type GraphStoreV2 = {
|
|
|
76178
76830
|
atlassianUserUpdatedConfluenceSpaceInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceSpaceInverseConnection>;
|
|
76179
76831
|
atlassianUserUpdatedConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceWhiteboardConnection>;
|
|
76180
76832
|
atlassianUserUpdatedConfluenceWhiteboardInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceWhiteboardInverseConnection>;
|
|
76833
|
+
atlassianUserUpdatedFocusFocusArea?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaConnection>;
|
|
76834
|
+
atlassianUserUpdatedFocusFocusAreaInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaInverseConnection>;
|
|
76181
76835
|
atlassianUserUpdatedJiraWorkItem?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemConnection>;
|
|
76182
76836
|
atlassianUserUpdatedJiraWorkItemInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemInverseConnection>;
|
|
76183
76837
|
atlassianUserUpdatedJiraWorkItemWorklog?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemWorklogConnection>;
|
|
@@ -76206,6 +76860,8 @@ export declare type GraphStoreV2 = {
|
|
|
76206
76860
|
atlassianUserWatchesAtlassianTeamInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesAtlassianTeamInverseConnection>;
|
|
76207
76861
|
atlassianUserWatchesConfluenceBlogpost?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceBlogpostConnection>;
|
|
76208
76862
|
atlassianUserWatchesConfluenceBlogpostInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceBlogpostInverseConnection>;
|
|
76863
|
+
atlassianUserWatchesConfluenceDatabase?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseConnection>;
|
|
76864
|
+
atlassianUserWatchesConfluenceDatabaseInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseInverseConnection>;
|
|
76209
76865
|
atlassianUserWatchesConfluencePage?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluencePageConnection>;
|
|
76210
76866
|
atlassianUserWatchesConfluencePageInverse?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluencePageInverseConnection>;
|
|
76211
76867
|
atlassianUserWatchesConfluenceWhiteboard?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceWhiteboardConnection>;
|
|
@@ -76680,6 +77336,20 @@ export declare type GraphStoreV2 = {
|
|
|
76680
77336
|
topicHasRelatedEntity?: Maybe<GraphStoreV2SimplifiedTopicHasRelatedEntityConnection>;
|
|
76681
77337
|
topicHasRelatedEntityInverse?: Maybe<GraphStoreV2SimplifiedTopicHasRelatedEntityInverseConnection>;
|
|
76682
77338
|
};
|
|
77339
|
+
export declare type GraphStoreV2AssetTypeHasChildAssetTypeArgs = {
|
|
77340
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
77341
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77342
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77343
|
+
id: Scalars['ID']['input'];
|
|
77344
|
+
sort?: InputMaybe<GraphStoreV2AssetTypeHasChildAssetTypeSortInput>;
|
|
77345
|
+
};
|
|
77346
|
+
export declare type GraphStoreV2AssetTypeHasChildAssetTypeInverseArgs = {
|
|
77347
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
77348
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77349
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77350
|
+
id: Scalars['ID']['input'];
|
|
77351
|
+
sort?: InputMaybe<GraphStoreV2AssetTypeHasChildAssetTypeSortInput>;
|
|
77352
|
+
};
|
|
76683
77353
|
export declare type GraphStoreV2AtlassianGoalHasAtlassianGoalUpdateArgs = {
|
|
76684
77354
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
76685
77355
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -76813,6 +77483,20 @@ export declare type GraphStoreV2AtlassianProjectLinksAtlassianProjectArgs = {
|
|
|
76813
77483
|
id: Scalars['ID']['input'];
|
|
76814
77484
|
sort?: InputMaybe<GraphStoreV2AtlassianProjectLinksAtlassianProjectSortInput>;
|
|
76815
77485
|
};
|
|
77486
|
+
export declare type GraphStoreV2AtlassianTeamAssignedJiraWorkItemArgs = {
|
|
77487
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
77488
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77489
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77490
|
+
id: Scalars['ID']['input'];
|
|
77491
|
+
sort?: InputMaybe<GraphStoreV2AtlassianTeamAssignedJiraWorkItemSortInput>;
|
|
77492
|
+
};
|
|
77493
|
+
export declare type GraphStoreV2AtlassianTeamAssignedJiraWorkItemInverseArgs = {
|
|
77494
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
77495
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77496
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
77497
|
+
id: Scalars['ID']['input'];
|
|
77498
|
+
sort?: InputMaybe<GraphStoreV2AtlassianTeamAssignedJiraWorkItemSortInput>;
|
|
77499
|
+
};
|
|
76816
77500
|
export declare type GraphStoreV2AtlassianTeamContributesToAtlassianGoalArgs = {
|
|
76817
77501
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
76818
77502
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -77333,6 +78017,20 @@ export declare type GraphStoreV2AtlassianUserCreatedExternalRepositoryInverseArg
|
|
|
77333
78017
|
id: Scalars['ID']['input'];
|
|
77334
78018
|
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedExternalRepositorySortInput>;
|
|
77335
78019
|
};
|
|
78020
|
+
export declare type GraphStoreV2AtlassianUserCreatedFocusFocusAreaArgs = {
|
|
78021
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
78022
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
78023
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
78024
|
+
id: Scalars['ID']['input'];
|
|
78025
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedFocusFocusAreaSortInput>;
|
|
78026
|
+
};
|
|
78027
|
+
export declare type GraphStoreV2AtlassianUserCreatedFocusFocusAreaInverseArgs = {
|
|
78028
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
78029
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
78030
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
78031
|
+
id: Scalars['ID']['input'];
|
|
78032
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserCreatedFocusFocusAreaSortInput>;
|
|
78033
|
+
};
|
|
77336
78034
|
export declare type GraphStoreV2AtlassianUserCreatedJiraReleaseArgs = {
|
|
77337
78035
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
77338
78036
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -78109,6 +78807,20 @@ export declare type GraphStoreV2AtlassianUserUpdatedConfluenceWhiteboardInverseA
|
|
|
78109
78807
|
id: Scalars['ID']['input'];
|
|
78110
78808
|
sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedConfluenceWhiteboardSortInput>;
|
|
78111
78809
|
};
|
|
78810
|
+
export declare type GraphStoreV2AtlassianUserUpdatedFocusFocusAreaArgs = {
|
|
78811
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
78812
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
78813
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
78814
|
+
id: Scalars['ID']['input'];
|
|
78815
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedFocusFocusAreaSortInput>;
|
|
78816
|
+
};
|
|
78817
|
+
export declare type GraphStoreV2AtlassianUserUpdatedFocusFocusAreaInverseArgs = {
|
|
78818
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
78819
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
78820
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
78821
|
+
id: Scalars['ID']['input'];
|
|
78822
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserUpdatedFocusFocusAreaSortInput>;
|
|
78823
|
+
};
|
|
78112
78824
|
export declare type GraphStoreV2AtlassianUserUpdatedJiraWorkItemArgs = {
|
|
78113
78825
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
78114
78826
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -78305,6 +79017,20 @@ export declare type GraphStoreV2AtlassianUserWatchesConfluenceBlogpostInverseArg
|
|
|
78305
79017
|
id: Scalars['ID']['input'];
|
|
78306
79018
|
sort?: InputMaybe<GraphStoreV2AtlassianUserWatchesConfluenceBlogpostSortInput>;
|
|
78307
79019
|
};
|
|
79020
|
+
export declare type GraphStoreV2AtlassianUserWatchesConfluenceDatabaseArgs = {
|
|
79021
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
79022
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
79023
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79024
|
+
id: Scalars['ID']['input'];
|
|
79025
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserWatchesConfluenceDatabaseSortInput>;
|
|
79026
|
+
};
|
|
79027
|
+
export declare type GraphStoreV2AtlassianUserWatchesConfluenceDatabaseInverseArgs = {
|
|
79028
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
79029
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
79030
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79031
|
+
id: Scalars['ID']['input'];
|
|
79032
|
+
sort?: InputMaybe<GraphStoreV2AtlassianUserWatchesConfluenceDatabaseSortInput>;
|
|
79033
|
+
};
|
|
78308
79034
|
export declare type GraphStoreV2AtlassianUserWatchesConfluencePageArgs = {
|
|
78309
79035
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
78310
79036
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -81663,6 +82389,9 @@ export declare type GraphStoreV2TopicHasRelatedEntityInverseArgs = {
|
|
|
81663
82389
|
id: Scalars['ID']['input'];
|
|
81664
82390
|
sort?: InputMaybe<GraphStoreV2TopicHasRelatedEntitySortInput>;
|
|
81665
82391
|
};
|
|
82392
|
+
export declare type GraphStoreV2AssetTypeHasChildAssetTypeSortInput = {
|
|
82393
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
82394
|
+
};
|
|
81666
82395
|
export declare type GraphStoreV2AtlassianGoalHasAtlassianGoalUpdateSortInput = {
|
|
81667
82396
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
81668
82397
|
};
|
|
@@ -81696,6 +82425,9 @@ export declare type GraphStoreV2AtlassianProjectHasAtlassianProjectUpdateSortInp
|
|
|
81696
82425
|
export declare type GraphStoreV2AtlassianProjectLinksAtlassianProjectSortInput = {
|
|
81697
82426
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
81698
82427
|
};
|
|
82428
|
+
export declare type GraphStoreV2AtlassianTeamAssignedJiraWorkItemSortInput = {
|
|
82429
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
82430
|
+
};
|
|
81699
82431
|
export declare type GraphStoreV2AtlassianTeamContributesToAtlassianGoalSortInput = {
|
|
81700
82432
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
81701
82433
|
};
|
|
@@ -81835,6 +82567,9 @@ export declare type GraphStoreV2AtlassianUserCreatedExternalRemoteLinkSortInput
|
|
|
81835
82567
|
export declare type GraphStoreV2AtlassianUserCreatedExternalRepositorySortInput = {
|
|
81836
82568
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
81837
82569
|
};
|
|
82570
|
+
export declare type GraphStoreV2AtlassianUserCreatedFocusFocusAreaSortInput = {
|
|
82571
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
82572
|
+
};
|
|
81838
82573
|
export declare type GraphStoreV2AtlassianUserCreatedJiraReleaseSortInput = {
|
|
81839
82574
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
81840
82575
|
};
|
|
@@ -82093,6 +82828,9 @@ export declare type GraphStoreV2AtlassianUserUpdatedConfluenceSpaceSortInput = {
|
|
|
82093
82828
|
export declare type GraphStoreV2AtlassianUserUpdatedConfluenceWhiteboardSortInput = {
|
|
82094
82829
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
82095
82830
|
};
|
|
82831
|
+
export declare type GraphStoreV2AtlassianUserUpdatedFocusFocusAreaSortInput = {
|
|
82832
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
82833
|
+
};
|
|
82096
82834
|
export declare type GraphStoreV2AtlassianUserUpdatedJiraWorkItemSortInput = {
|
|
82097
82835
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
82098
82836
|
};
|
|
@@ -82138,6 +82876,9 @@ export declare type GraphStoreV2AtlassianUserWatchesAtlassianTeamSortInput = {
|
|
|
82138
82876
|
export declare type GraphStoreV2AtlassianUserWatchesConfluenceBlogpostSortInput = {
|
|
82139
82877
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
82140
82878
|
};
|
|
82879
|
+
export declare type GraphStoreV2AtlassianUserWatchesConfluenceDatabaseSortInput = {
|
|
82880
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
82881
|
+
};
|
|
82141
82882
|
export declare type GraphStoreV2AtlassianUserWatchesConfluencePageSortInput = {
|
|
82142
82883
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
82143
82884
|
};
|
|
@@ -85098,6 +85839,34 @@ export declare type GraphStoreV2MutationDeleteLoomVideoHasConfluencePageArgs = {
|
|
|
85098
85839
|
export declare type GraphStoreV2RepositoryEntityIsBitbucketRepositorySortInput = {
|
|
85099
85840
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
85100
85841
|
};
|
|
85842
|
+
export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection = HasPageInfo & {
|
|
85843
|
+
__typename?: 'GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeConnection';
|
|
85844
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeEdge>>>;
|
|
85845
|
+
pageInfo: PageInfo;
|
|
85846
|
+
};
|
|
85847
|
+
export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeEdge = {
|
|
85848
|
+
__typename?: 'GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeEdge';
|
|
85849
|
+
createdAt: Scalars['DateTime']['output'];
|
|
85850
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
85851
|
+
id: Scalars['ID']['output'];
|
|
85852
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
85853
|
+
node?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeUnion>;
|
|
85854
|
+
};
|
|
85855
|
+
export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseConnection = HasPageInfo & {
|
|
85856
|
+
__typename?: 'GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseConnection';
|
|
85857
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseEdge>>>;
|
|
85858
|
+
pageInfo: PageInfo;
|
|
85859
|
+
};
|
|
85860
|
+
export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseEdge = {
|
|
85861
|
+
__typename?: 'GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseEdge';
|
|
85862
|
+
createdAt: Scalars['DateTime']['output'];
|
|
85863
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
85864
|
+
id: Scalars['ID']['output'];
|
|
85865
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
85866
|
+
node?: Maybe<GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseUnion>;
|
|
85867
|
+
};
|
|
85868
|
+
export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeInverseUnion = AssetsObjectType;
|
|
85869
|
+
export declare type GraphStoreV2SimplifiedAssetTypeHasChildAssetTypeUnion = AssetsObjectType;
|
|
85101
85870
|
export declare type GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection = HasPageInfo & {
|
|
85102
85871
|
__typename?: 'GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateConnection';
|
|
85103
85872
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianGoalHasAtlassianGoalUpdateEdge>>>;
|
|
@@ -85364,6 +86133,34 @@ export declare type GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectE
|
|
|
85364
86133
|
node?: Maybe<GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectUnion>;
|
|
85365
86134
|
};
|
|
85366
86135
|
export declare type GraphStoreV2SimplifiedAtlassianProjectLinksAtlassianProjectUnion = TownsquareProject;
|
|
86136
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection = HasPageInfo & {
|
|
86137
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemConnection';
|
|
86138
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemEdge>>>;
|
|
86139
|
+
pageInfo: PageInfo;
|
|
86140
|
+
};
|
|
86141
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemEdge = {
|
|
86142
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemEdge';
|
|
86143
|
+
createdAt: Scalars['DateTime']['output'];
|
|
86144
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
86145
|
+
id: Scalars['ID']['output'];
|
|
86146
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
86147
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemUnion>;
|
|
86148
|
+
};
|
|
86149
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemInverseConnection = HasPageInfo & {
|
|
86150
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemInverseConnection';
|
|
86151
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemInverseEdge>>>;
|
|
86152
|
+
pageInfo: PageInfo;
|
|
86153
|
+
};
|
|
86154
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemInverseEdge = {
|
|
86155
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemInverseEdge';
|
|
86156
|
+
createdAt: Scalars['DateTime']['output'];
|
|
86157
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
86158
|
+
id: Scalars['ID']['output'];
|
|
86159
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
86160
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemInverseUnion>;
|
|
86161
|
+
};
|
|
86162
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemInverseUnion = TeamV2;
|
|
86163
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamAssignedJiraWorkItemUnion = JiraIssue;
|
|
85367
86164
|
export declare type GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalConnection = HasPageInfo & {
|
|
85368
86165
|
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalConnection';
|
|
85369
86166
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamContributesToAtlassianGoalEdge>>>;
|
|
@@ -86412,6 +87209,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepository
|
|
|
86412
87209
|
};
|
|
86413
87210
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
86414
87211
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedExternalRepositoryUnion = DevOpsRepository | ExternalRepository;
|
|
87212
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaConnection = HasPageInfo & {
|
|
87213
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaConnection';
|
|
87214
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaEdge>>>;
|
|
87215
|
+
pageInfo: PageInfo;
|
|
87216
|
+
};
|
|
87217
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaEdge = {
|
|
87218
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaEdge';
|
|
87219
|
+
createdAt: Scalars['DateTime']['output'];
|
|
87220
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87221
|
+
id: Scalars['ID']['output'];
|
|
87222
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
87223
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaUnion>;
|
|
87224
|
+
};
|
|
87225
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaInverseConnection = HasPageInfo & {
|
|
87226
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaInverseConnection';
|
|
87227
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaInverseEdge>>>;
|
|
87228
|
+
pageInfo: PageInfo;
|
|
87229
|
+
};
|
|
87230
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaInverseEdge = {
|
|
87231
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaInverseEdge';
|
|
87232
|
+
createdAt: Scalars['DateTime']['output'];
|
|
87233
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
87234
|
+
id: Scalars['ID']['output'];
|
|
87235
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
87236
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaInverseUnion>;
|
|
87237
|
+
};
|
|
87238
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
87239
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedFocusFocusAreaUnion = MercuryFocusArea;
|
|
86415
87240
|
export declare type GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseConnection = HasPageInfo & {
|
|
86416
87241
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseConnection';
|
|
86417
87242
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserCreatedJiraReleaseEdge>>>;
|
|
@@ -87984,6 +88809,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceWhiteboa
|
|
|
87984
88809
|
};
|
|
87985
88810
|
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceWhiteboardInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
87986
88811
|
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedConfluenceWhiteboardUnion = ConfluenceWhiteboard;
|
|
88812
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaConnection = HasPageInfo & {
|
|
88813
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaConnection';
|
|
88814
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaEdge>>>;
|
|
88815
|
+
pageInfo: PageInfo;
|
|
88816
|
+
};
|
|
88817
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaEdge = {
|
|
88818
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaEdge';
|
|
88819
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88820
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88821
|
+
id: Scalars['ID']['output'];
|
|
88822
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88823
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaUnion>;
|
|
88824
|
+
};
|
|
88825
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaInverseConnection = HasPageInfo & {
|
|
88826
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaInverseConnection';
|
|
88827
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaInverseEdge>>>;
|
|
88828
|
+
pageInfo: PageInfo;
|
|
88829
|
+
};
|
|
88830
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaInverseEdge = {
|
|
88831
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaInverseEdge';
|
|
88832
|
+
createdAt: Scalars['DateTime']['output'];
|
|
88833
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
88834
|
+
id: Scalars['ID']['output'];
|
|
88835
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
88836
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaInverseUnion>;
|
|
88837
|
+
};
|
|
88838
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
88839
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedFocusFocusAreaUnion = MercuryFocusArea;
|
|
87987
88840
|
export declare type GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemConnection = HasPageInfo & {
|
|
87988
88841
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemConnection';
|
|
87989
88842
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserUpdatedJiraWorkItemEdge>>>;
|
|
@@ -88376,6 +89229,34 @@ export declare type GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceBlogpost
|
|
|
88376
89229
|
};
|
|
88377
89230
|
export declare type GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceBlogpostInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
88378
89231
|
export declare type GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceBlogpostUnion = ConfluenceBlogPost;
|
|
89232
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseConnection = HasPageInfo & {
|
|
89233
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseConnection';
|
|
89234
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseEdge>>>;
|
|
89235
|
+
pageInfo: PageInfo;
|
|
89236
|
+
};
|
|
89237
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseEdge = {
|
|
89238
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseEdge';
|
|
89239
|
+
createdAt: Scalars['DateTime']['output'];
|
|
89240
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
89241
|
+
id: Scalars['ID']['output'];
|
|
89242
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
89243
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseUnion>;
|
|
89244
|
+
};
|
|
89245
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseInverseConnection = HasPageInfo & {
|
|
89246
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseInverseConnection';
|
|
89247
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseInverseEdge>>>;
|
|
89248
|
+
pageInfo: PageInfo;
|
|
89249
|
+
};
|
|
89250
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseInverseEdge = {
|
|
89251
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseInverseEdge';
|
|
89252
|
+
createdAt: Scalars['DateTime']['output'];
|
|
89253
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
89254
|
+
id: Scalars['ID']['output'];
|
|
89255
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
89256
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseInverseUnion>;
|
|
89257
|
+
};
|
|
89258
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
89259
|
+
export declare type GraphStoreV2SimplifiedAtlassianUserWatchesConfluenceDatabaseUnion = ConfluenceDatabase;
|
|
88379
89260
|
export declare type GraphStoreV2SimplifiedAtlassianUserWatchesConfluencePageConnection = HasPageInfo & {
|
|
88380
89261
|
__typename?: 'GraphStoreV2SimplifiedAtlassianUserWatchesConfluencePageConnection';
|
|
88381
89262
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianUserWatchesConfluencePageEdge>>>;
|
|
@@ -95750,6 +96631,7 @@ export declare type GrowthRecRerankCandidate = {
|
|
|
95750
96631
|
export declare type GrowthUnifiedProfileAccountProfileResult = {
|
|
95751
96632
|
__typename?: 'GrowthUnifiedProfileAccountProfileResult';
|
|
95752
96633
|
paidFeatureUsage: Array<GrowthUnifiedProfilePfuResult>;
|
|
96634
|
+
recommendations?: Maybe<GrowthUnifiedProfileUserRecommendations>;
|
|
95753
96635
|
userProfile?: Maybe<GrowthUnifiedProfileAccountUserProfile>;
|
|
95754
96636
|
};
|
|
95755
96637
|
export declare type GrowthUnifiedProfileAccountProfileResultPaidFeatureUsageArgs = {
|
|
@@ -96149,6 +97031,11 @@ export declare enum GrowthUnifiedProfileMetric {
|
|
|
96149
97031
|
Mau = "MAU",
|
|
96150
97032
|
MauVariation = "MAU_VARIATION"
|
|
96151
97033
|
}
|
|
97034
|
+
export declare type GrowthUnifiedProfileNbpUserRecommendationProduct = {
|
|
97035
|
+
__typename?: 'GrowthUnifiedProfileNBPUserRecommendationProduct';
|
|
97036
|
+
key: Scalars['String']['output'];
|
|
97037
|
+
values: Array<Scalars['String']['output']>;
|
|
97038
|
+
};
|
|
96152
97039
|
export declare type GrowthUnifiedProfileOnboardingContext = {
|
|
96153
97040
|
__typename?: 'GrowthUnifiedProfileOnboardingContext';
|
|
96154
97041
|
confluence?: Maybe<GrowthUnifiedProfileConfluenceOnboardingContext>;
|
|
@@ -96538,6 +97425,10 @@ export declare type GrowthUnifiedProfileUserProfileResult = {
|
|
|
96538
97425
|
__typename?: 'GrowthUnifiedProfileUserProfileResult';
|
|
96539
97426
|
userActivityContext?: Maybe<GrowthUnifiedProfileUserActivityContext>;
|
|
96540
97427
|
};
|
|
97428
|
+
export declare type GrowthUnifiedProfileUserRecommendations = {
|
|
97429
|
+
__typename?: 'GrowthUnifiedProfileUserRecommendations';
|
|
97430
|
+
nbp?: Maybe<Array<Maybe<GrowthUnifiedProfileNbpUserRecommendationProduct>>>;
|
|
97431
|
+
};
|
|
96541
97432
|
export declare type GrowthUnifiedProfileUtm = {
|
|
96542
97433
|
__typename?: 'GrowthUnifiedProfileUtm';
|
|
96543
97434
|
channel?: Maybe<GrowthUnifiedProfileChannel>;
|
|
@@ -100625,6 +101516,7 @@ export declare type JiraAssignableUsersConnection = HasPageInfo & HasTotal & {
|
|
|
100625
101516
|
};
|
|
100626
101517
|
export declare type JiraAssignableUsersEdge = {
|
|
100627
101518
|
__typename?: 'JiraAssignableUsersEdge';
|
|
101519
|
+
accountType?: Maybe<Scalars['String']['output']>;
|
|
100628
101520
|
cursor: Scalars['String']['output'];
|
|
100629
101521
|
node?: Maybe<User>;
|
|
100630
101522
|
};
|
|
@@ -101540,6 +102432,7 @@ export declare type JiraBacklogVersionData = {
|
|
|
101540
102432
|
export declare type JiraBacklogView = JiraView & Node & {
|
|
101541
102433
|
__typename?: 'JiraBacklogView';
|
|
101542
102434
|
assigneeFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
102435
|
+
boardConfig?: Maybe<JiraBacklogViewBoardConfig>;
|
|
101543
102436
|
boardNameToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
101544
102437
|
cardDensity?: Maybe<JiraBacklogCardDensity>;
|
|
101545
102438
|
cardFields?: Maybe<JiraBacklogViewCardFieldConnection>;
|
|
@@ -101550,6 +102443,7 @@ export declare type JiraBacklogView = JiraView & Node & {
|
|
|
101550
102443
|
epicFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
101551
102444
|
epicPanelToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
101552
102445
|
error?: Maybe<QueryError>;
|
|
102446
|
+
globalConfig?: Maybe<JiraBacklogViewGlobalConfig>;
|
|
101553
102447
|
id: Scalars['ID']['output'];
|
|
101554
102448
|
issueTypeFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
101555
102449
|
labelFilters?: Maybe<JiraBacklogViewStringFilterConnection>;
|
|
@@ -101609,6 +102503,10 @@ export declare type JiraBacklogViewVersionFiltersArgs = {
|
|
|
101609
102503
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101610
102504
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101611
102505
|
};
|
|
102506
|
+
export declare type JiraBacklogViewBoardConfig = {
|
|
102507
|
+
__typename?: 'JiraBacklogViewBoardConfig';
|
|
102508
|
+
rankCustomFieldId?: Maybe<Scalars['Long']['output']>;
|
|
102509
|
+
};
|
|
101612
102510
|
export declare type JiraBacklogViewCardField = {
|
|
101613
102511
|
__typename?: 'JiraBacklogViewCardField';
|
|
101614
102512
|
enabled: Scalars['Boolean']['output'];
|
|
@@ -101671,12 +102569,17 @@ export declare type JiraBacklogViewColumnCardListIssuesArgs = {
|
|
|
101671
102569
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101672
102570
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
101673
102571
|
};
|
|
102572
|
+
export declare type JiraBacklogViewGlobalConfig = {
|
|
102573
|
+
__typename?: 'JiraBacklogViewGlobalConfig';
|
|
102574
|
+
parentHierarchyLevel?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
102575
|
+
};
|
|
101674
102576
|
export declare type JiraBacklogViewInput = {
|
|
101675
102577
|
jiraBacklogViewQueryInput: JiraBacklogViewQueryInput;
|
|
101676
102578
|
};
|
|
101677
102579
|
export declare type JiraBacklogViewPermissions = {
|
|
101678
102580
|
__typename?: 'JiraBacklogViewPermissions';
|
|
101679
102581
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
102582
|
+
canManageSprints?: Maybe<Scalars['Boolean']['output']>;
|
|
101680
102583
|
};
|
|
101681
102584
|
export declare type JiraBacklogViewQueryInput = {
|
|
101682
102585
|
viewId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -103208,6 +104111,9 @@ export declare type JiraClearBoardIssueCardCoverPayload = Payload & {
|
|
|
103208
104111
|
issue?: Maybe<JiraIssue>;
|
|
103209
104112
|
success: Scalars['Boolean']['output'];
|
|
103210
104113
|
};
|
|
104114
|
+
export declare type JiraClearProjectLevelSidebarMenuItemNameInput = {
|
|
104115
|
+
confirm?: InputMaybe<Scalars['Boolean']['input']>;
|
|
104116
|
+
};
|
|
103211
104117
|
export declare type JiraClearableDateFieldInput = {
|
|
103212
104118
|
date?: InputMaybe<JiraDateInput>;
|
|
103213
104119
|
fieldId: Scalars['ID']['input'];
|
|
@@ -106412,6 +107318,19 @@ export declare enum JiraFlagOperations {
|
|
|
106412
107318
|
Add = "ADD",
|
|
106413
107319
|
Remove = "REMOVE"
|
|
106414
107320
|
}
|
|
107321
|
+
export declare type JiraFlatOption = JiraOption | JiraParentOption;
|
|
107322
|
+
export declare type JiraFlatOptionConnection = {
|
|
107323
|
+
__typename?: 'JiraFlatOptionConnection';
|
|
107324
|
+
edges?: Maybe<Array<Maybe<JiraFlatOptionEdge>>>;
|
|
107325
|
+
errors?: Maybe<Array<QueryError>>;
|
|
107326
|
+
pageInfo: PageInfo;
|
|
107327
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
107328
|
+
};
|
|
107329
|
+
export declare type JiraFlatOptionEdge = {
|
|
107330
|
+
__typename?: 'JiraFlatOptionEdge';
|
|
107331
|
+
cursor: Scalars['String']['output'];
|
|
107332
|
+
node?: Maybe<JiraFlatOption>;
|
|
107333
|
+
};
|
|
106415
107334
|
export declare type JiraForgeAppEgressDeclaration = {
|
|
106416
107335
|
__typename?: 'JiraForgeAppEgressDeclaration';
|
|
106417
107336
|
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -107146,6 +108065,7 @@ export declare type JiraGlobalTimeTrackingSettings = {
|
|
|
107146
108065
|
export declare type JiraGoal = Node & {
|
|
107147
108066
|
__typename?: 'JiraGoal';
|
|
107148
108067
|
id: Scalars['ID']['output'];
|
|
108068
|
+
isPrivate?: Maybe<Scalars['Boolean']['output']>;
|
|
107149
108069
|
key?: Maybe<Scalars['String']['output']>;
|
|
107150
108070
|
name?: Maybe<Scalars['String']['output']>;
|
|
107151
108071
|
score?: Maybe<Scalars['Float']['output']>;
|
|
@@ -107603,6 +108523,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
107603
108523
|
designs?: Maybe<GraphStoreSimplifiedIssueAssociatedDesignConnection>;
|
|
107604
108524
|
devInfoDetails?: Maybe<JiraIssueDevInfoDetails>;
|
|
107605
108525
|
devOpsSummarisedEntities?: Maybe<DevOpsSummarisedEntities>;
|
|
108526
|
+
devSummary?: Maybe<JiraIssueDevSummary>;
|
|
107606
108527
|
devSummaryCache?: Maybe<JiraIssueDevSummaryResult>;
|
|
107607
108528
|
developmentInformation?: Maybe<IssueDevOpsDevelopmentInformation>;
|
|
107608
108529
|
dueDateField?: Maybe<JiraDatePickerField>;
|
|
@@ -108583,6 +109504,7 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
108583
109504
|
dateCreated?: Maybe<Scalars['DateTime']['output']>;
|
|
108584
109505
|
dateCreatedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
108585
109506
|
defaultFieldOptions?: Maybe<JiraParentOptionConnection>;
|
|
109507
|
+
defaultFlatFieldOptions?: Maybe<JiraFlatOptionConnection>;
|
|
108586
109508
|
defaultJqlClauseName?: Maybe<Scalars['String']['output']>;
|
|
108587
109509
|
description?: Maybe<Scalars['String']['output']>;
|
|
108588
109510
|
descriptionCustomisations?: Maybe<Array<Maybe<JiraFieldWorkTypeDescriptionCustomization>>>;
|
|
@@ -108695,6 +109617,12 @@ export declare type JiraIssueFieldConfigDefaultFieldOptionsArgs = {
|
|
|
108695
109617
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
108696
109618
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
108697
109619
|
};
|
|
109620
|
+
export declare type JiraIssueFieldConfigDefaultFlatFieldOptionsArgs = {
|
|
109621
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
109622
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
109623
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
109624
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
109625
|
+
};
|
|
108698
109626
|
export declare type JiraIssueFieldConfigDescriptionCustomisationsArgs = {
|
|
108699
109627
|
schemeId: Scalars['ID']['input'];
|
|
108700
109628
|
};
|
|
@@ -113472,6 +114400,7 @@ export declare type JiraOption = JiraSelectableValue & Node & {
|
|
|
113472
114400
|
id: Scalars['ID']['output'];
|
|
113473
114401
|
isDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
113474
114402
|
optionId: Scalars['String']['output'];
|
|
114403
|
+
parentOption?: Maybe<JiraParentOption>;
|
|
113475
114404
|
selectableGroupKey?: Maybe<Scalars['String']['output']>;
|
|
113476
114405
|
selectableIconUrl?: Maybe<Scalars['URL']['output']>;
|
|
113477
114406
|
selectableLabel?: Maybe<Scalars['String']['output']>;
|
|
@@ -115048,6 +115977,7 @@ export declare type JiraProjectLevelSidebarMenuCustomization = {
|
|
|
115048
115977
|
__typename?: 'JiraProjectLevelSidebarMenuCustomization';
|
|
115049
115978
|
hiddenMenuItems?: Maybe<JiraProjectLevelSidebarMenuItemConnection>;
|
|
115050
115979
|
id?: Maybe<Scalars['ID']['output']>;
|
|
115980
|
+
renamedMenuItems?: Maybe<JiraProjectLevelSidebarRenamedMenuItemConnection>;
|
|
115051
115981
|
};
|
|
115052
115982
|
export declare type JiraProjectLevelSidebarMenuCustomizationResult = JiraProjectLevelSidebarMenuCustomization | QueryError;
|
|
115053
115983
|
export declare type JiraProjectLevelSidebarMenuItem = {
|
|
@@ -115068,6 +115998,22 @@ export declare type JiraProjectLevelSidebarMenuItemEdge = {
|
|
|
115068
115998
|
export declare type JiraProjectLevelSidebarMenuItemInput = {
|
|
115069
115999
|
itemId: Scalars['ID']['input'];
|
|
115070
116000
|
};
|
|
116001
|
+
export declare type JiraProjectLevelSidebarRenamedMenuItem = {
|
|
116002
|
+
__typename?: 'JiraProjectLevelSidebarRenamedMenuItem';
|
|
116003
|
+
itemId: Scalars['ID']['output'];
|
|
116004
|
+
renamedMenuItemName?: Maybe<Scalars['String']['output']>;
|
|
116005
|
+
};
|
|
116006
|
+
export declare type JiraProjectLevelSidebarRenamedMenuItemConnection = {
|
|
116007
|
+
__typename?: 'JiraProjectLevelSidebarRenamedMenuItemConnection';
|
|
116008
|
+
edges?: Maybe<Array<Maybe<JiraProjectLevelSidebarRenamedMenuItemEdge>>>;
|
|
116009
|
+
pageInfo?: Maybe<PageInfo>;
|
|
116010
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
116011
|
+
};
|
|
116012
|
+
export declare type JiraProjectLevelSidebarRenamedMenuItemEdge = {
|
|
116013
|
+
__typename?: 'JiraProjectLevelSidebarRenamedMenuItemEdge';
|
|
116014
|
+
cursor: Scalars['String']['output'];
|
|
116015
|
+
node?: Maybe<JiraProjectLevelSidebarRenamedMenuItem>;
|
|
116016
|
+
};
|
|
115071
116017
|
export declare enum JiraProjectListRightPanelState {
|
|
115072
116018
|
Closed = "CLOSED",
|
|
115073
116019
|
Open = "OPEN"
|
|
@@ -117394,6 +118340,25 @@ export declare type JiraRenameNavigationItemPayload = Payload & {
|
|
|
117394
118340
|
navigationItem?: Maybe<JiraNavigationItem>;
|
|
117395
118341
|
success: Scalars['Boolean']['output'];
|
|
117396
118342
|
};
|
|
118343
|
+
export declare type JiraRenameProjectLevelSidebarMenuItemInput = {
|
|
118344
|
+
action: JiraRenameProjectLevelSidebarMenuItemNameActionInput;
|
|
118345
|
+
cloudId: Scalars['ID']['input'];
|
|
118346
|
+
itemId: Scalars['ID']['input'];
|
|
118347
|
+
projectId: Scalars['ID']['input'];
|
|
118348
|
+
};
|
|
118349
|
+
export declare type JiraRenameProjectLevelSidebarMenuItemNameActionInput = {
|
|
118350
|
+
clear?: InputMaybe<JiraClearProjectLevelSidebarMenuItemNameInput>;
|
|
118351
|
+
rename?: InputMaybe<JiraRenameProjectLevelSidebarMenuItemNameInput>;
|
|
118352
|
+
};
|
|
118353
|
+
export declare type JiraRenameProjectLevelSidebarMenuItemNameInput = {
|
|
118354
|
+
newName: Scalars['String']['input'];
|
|
118355
|
+
};
|
|
118356
|
+
export declare type JiraRenameProjectLevelSidebarMenuItemPayload = Payload & {
|
|
118357
|
+
__typename?: 'JiraRenameProjectLevelSidebarMenuItemPayload';
|
|
118358
|
+
errors?: Maybe<Array<MutationError>>;
|
|
118359
|
+
jiraProjectLevelSidebarMenuCustomization?: Maybe<JiraProjectLevelSidebarMenuCustomization>;
|
|
118360
|
+
success: Scalars['Boolean']['output'];
|
|
118361
|
+
};
|
|
117397
118362
|
export declare type JiraReorderBoardViewColumnInput = {
|
|
117398
118363
|
columnId: Scalars['ID']['input'];
|
|
117399
118364
|
position: JiraReorderBoardViewColumnPosition;
|
|
@@ -120042,11 +121007,15 @@ export declare type JiraSingleLineTextFieldOperationInput = {
|
|
|
120042
121007
|
operation: JiraSingleValueFieldOperations;
|
|
120043
121008
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
120044
121009
|
};
|
|
120045
|
-
export declare type JiraSingleLineTextFieldPayload = Payload & {
|
|
121010
|
+
export declare type JiraSingleLineTextFieldPayload = JiraSupportsUpdatedDependentFields & Payload & {
|
|
120046
121011
|
__typename?: 'JiraSingleLineTextFieldPayload';
|
|
120047
121012
|
errors?: Maybe<Array<MutationError>>;
|
|
120048
121013
|
field?: Maybe<JiraSingleLineTextField>;
|
|
120049
121014
|
success: Scalars['Boolean']['output'];
|
|
121015
|
+
updatedDependentFields?: Maybe<JiraIssueFieldConnection>;
|
|
121016
|
+
};
|
|
121017
|
+
export declare type JiraSingleLineTextFieldPayloadUpdatedDependentFieldsArgs = {
|
|
121018
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
120050
121019
|
};
|
|
120051
121020
|
export declare type JiraSingleOrganizationFieldInput = {
|
|
120052
121021
|
fieldId: Scalars['ID']['input'];
|
|
@@ -120119,6 +121088,7 @@ export declare type JiraSingleSelectUserPickerField = JiraIssueField & JiraIssue
|
|
|
120119
121088
|
searchUrl?: Maybe<Scalars['String']['output']>;
|
|
120120
121089
|
type: Scalars['String']['output'];
|
|
120121
121090
|
user?: Maybe<User>;
|
|
121091
|
+
userAccountType?: Maybe<Scalars['String']['output']>;
|
|
120122
121092
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
120123
121093
|
users?: Maybe<JiraUserConnection>;
|
|
120124
121094
|
};
|
|
@@ -120490,6 +121460,10 @@ export declare enum JiraSprintState {
|
|
|
120490
121460
|
Closed = "CLOSED",
|
|
120491
121461
|
Future = "FUTURE"
|
|
120492
121462
|
}
|
|
121463
|
+
export declare type JiraSprintStreamHubPayload = {
|
|
121464
|
+
__typename?: 'JiraSprintStreamHubPayload';
|
|
121465
|
+
resource?: Maybe<Scalars['ID']['output']>;
|
|
121466
|
+
};
|
|
120493
121467
|
export declare type JiraSprintUpdateInput = {
|
|
120494
121468
|
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
120495
121469
|
goal?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -120669,6 +121643,8 @@ export declare type JiraSubscription = {
|
|
|
120669
121643
|
onJwmIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
120670
121644
|
onJwmIssueUpdatedByProject?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
120671
121645
|
onProjectCleanupTaskStatusChange?: Maybe<JiraProjectCleanupTaskStatus>;
|
|
121646
|
+
onSprintDeleted?: Maybe<JiraSprintStreamHubPayload>;
|
|
121647
|
+
onSprintUpdated?: Maybe<JiraSprintStreamHubPayload>;
|
|
120672
121648
|
onSuggestedChildIssue?: Maybe<JiraOnSuggestedChildIssueResult>;
|
|
120673
121649
|
};
|
|
120674
121650
|
export declare type JiraSubscriptionBulkOperationProgressSubscriptionArgs = {
|
|
@@ -120824,6 +121800,14 @@ export declare type JiraSubscriptionOnJwmIssueUpdatedByProjectArgs = {
|
|
|
120824
121800
|
export declare type JiraSubscriptionOnProjectCleanupTaskStatusChangeArgs = {
|
|
120825
121801
|
cloudId: Scalars['ID']['input'];
|
|
120826
121802
|
};
|
|
121803
|
+
export declare type JiraSubscriptionOnSprintDeletedArgs = {
|
|
121804
|
+
boardAri: Scalars['ID']['input'];
|
|
121805
|
+
cloudId: Scalars['ID']['input'];
|
|
121806
|
+
};
|
|
121807
|
+
export declare type JiraSubscriptionOnSprintUpdatedArgs = {
|
|
121808
|
+
boardAri: Scalars['ID']['input'];
|
|
121809
|
+
cloudId: Scalars['ID']['input'];
|
|
121810
|
+
};
|
|
120827
121811
|
export declare type JiraSubscriptionOnSuggestedChildIssueArgs = {
|
|
120828
121812
|
additionalContext?: InputMaybe<Scalars['String']['input']>;
|
|
120829
121813
|
channelId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -121609,6 +122593,7 @@ export declare type JiraUpdateCommentInput = {
|
|
|
121609
122593
|
issueId: Scalars['ID']['input'];
|
|
121610
122594
|
jsdIncidentActivityViewHidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
121611
122595
|
permissionLevel?: InputMaybe<JiraPermissionLevelInput>;
|
|
122596
|
+
visibility?: InputMaybe<JiraServiceManagementCommentVisibility>;
|
|
121612
122597
|
};
|
|
121613
122598
|
export declare type JiraUpdateCommentPayload = {
|
|
121614
122599
|
__typename?: 'JiraUpdateCommentPayload';
|
|
@@ -122221,11 +123206,15 @@ export declare type JiraUrlFieldOperationInput = {
|
|
|
122221
123206
|
operation: JiraSingleValueFieldOperations;
|
|
122222
123207
|
uri?: InputMaybe<Scalars['String']['input']>;
|
|
122223
123208
|
};
|
|
122224
|
-
export declare type JiraUrlFieldPayload = Payload & {
|
|
123209
|
+
export declare type JiraUrlFieldPayload = JiraSupportsUpdatedDependentFields & Payload & {
|
|
122225
123210
|
__typename?: 'JiraUrlFieldPayload';
|
|
122226
123211
|
errors?: Maybe<Array<MutationError>>;
|
|
122227
123212
|
field?: Maybe<JiraUrlField>;
|
|
122228
123213
|
success: Scalars['Boolean']['output'];
|
|
123214
|
+
updatedDependentFields?: Maybe<JiraIssueFieldConnection>;
|
|
123215
|
+
};
|
|
123216
|
+
export declare type JiraUrlFieldPayloadUpdatedDependentFieldsArgs = {
|
|
123217
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
122229
123218
|
};
|
|
122230
123219
|
export declare type JiraUsageLimitExceededError = {
|
|
122231
123220
|
__typename?: 'JiraUsageLimitExceededError';
|
|
@@ -123919,14 +124908,24 @@ export declare type JpdViewUpdatedEvent = {
|
|
|
123919
124908
|
viewId: Scalars['Int']['output'];
|
|
123920
124909
|
viewUuid: Scalars['ID']['output'];
|
|
123921
124910
|
};
|
|
123922
|
-
export declare type
|
|
124911
|
+
export declare type JpdViewsServiceAssociateGlobalViewContainerInput = {
|
|
123923
124912
|
containerId: Scalars['String']['input'];
|
|
123924
124913
|
containerType: JpdViewsServiceGlobalViewAssociationContainerType;
|
|
124914
|
+
};
|
|
124915
|
+
export declare type JpdViewsServiceAssociateGlobalViewContainerResult = {
|
|
124916
|
+
__typename?: 'JpdViewsServiceAssociateGlobalViewContainerResult';
|
|
124917
|
+
containerId: Scalars['String']['output'];
|
|
124918
|
+
errors?: Maybe<Array<MutationError>>;
|
|
124919
|
+
success: Scalars['Boolean']['output'];
|
|
124920
|
+
};
|
|
124921
|
+
export declare type JpdViewsServiceAssociateGlobalViewInput = {
|
|
124922
|
+
containers: Array<JpdViewsServiceAssociateGlobalViewContainerInput>;
|
|
123925
124923
|
id: Scalars['ID']['input'];
|
|
123926
124924
|
};
|
|
123927
124925
|
export declare type JpdViewsServiceAssociateGlobalViewPayload = Payload & {
|
|
123928
124926
|
__typename?: 'JpdViewsServiceAssociateGlobalViewPayload';
|
|
123929
124927
|
errors?: Maybe<Array<MutationError>>;
|
|
124928
|
+
results?: Maybe<Array<JpdViewsServiceAssociateGlobalViewContainerResult>>;
|
|
123930
124929
|
success: Scalars['Boolean']['output'];
|
|
123931
124930
|
};
|
|
123932
124931
|
export declare type JpdViewsServiceAxisConfig = {
|
|
@@ -124135,14 +125134,24 @@ export declare type JpdViewsServiceTimelineConfigInput = {
|
|
|
124135
125134
|
startTimestamp: Scalars['String']['input'];
|
|
124136
125135
|
summaryCardField: Scalars['String']['input'];
|
|
124137
125136
|
};
|
|
124138
|
-
export declare type
|
|
125137
|
+
export declare type JpdViewsServiceUnassociateGlobalViewContainerInput = {
|
|
124139
125138
|
containerId: Scalars['String']['input'];
|
|
124140
125139
|
containerType: JpdViewsServiceGlobalViewAssociationContainerType;
|
|
125140
|
+
};
|
|
125141
|
+
export declare type JpdViewsServiceUnassociateGlobalViewContainerResult = {
|
|
125142
|
+
__typename?: 'JpdViewsServiceUnassociateGlobalViewContainerResult';
|
|
125143
|
+
containerId: Scalars['String']['output'];
|
|
125144
|
+
errors?: Maybe<Array<MutationError>>;
|
|
125145
|
+
success: Scalars['Boolean']['output'];
|
|
125146
|
+
};
|
|
125147
|
+
export declare type JpdViewsServiceUnassociateGlobalViewInput = {
|
|
125148
|
+
containers: Array<JpdViewsServiceUnassociateGlobalViewContainerInput>;
|
|
124141
125149
|
id: Scalars['ID']['input'];
|
|
124142
125150
|
};
|
|
124143
125151
|
export declare type JpdViewsServiceUnassociateGlobalViewPayload = Payload & {
|
|
124144
125152
|
__typename?: 'JpdViewsServiceUnassociateGlobalViewPayload';
|
|
124145
125153
|
errors?: Maybe<Array<MutationError>>;
|
|
125154
|
+
results?: Maybe<Array<JpdViewsServiceUnassociateGlobalViewContainerResult>>;
|
|
124146
125155
|
success: Scalars['Boolean']['output'];
|
|
124147
125156
|
};
|
|
124148
125157
|
export declare type JpdViewsServiceUpdateGlobalViewInput = {
|
|
@@ -125202,9 +126211,14 @@ export declare type JsmSolutionComposerPlanQueryApi = {
|
|
|
125202
126211
|
export declare type JsmSolutionComposerPlanQueryApiJsmSolutionComposerPlanStatusArgs = {
|
|
125203
126212
|
projectAri: Scalars['ID']['input'];
|
|
125204
126213
|
};
|
|
126214
|
+
export declare type JsmSolutionComposerPlanStatusMetadata = {
|
|
126215
|
+
__typename?: 'JsmSolutionComposerPlanStatusMetadata';
|
|
126216
|
+
hubAri?: Maybe<Scalars['ID']['output']>;
|
|
126217
|
+
};
|
|
125205
126218
|
export declare type JsmSolutionComposerPlanStatusResponse = {
|
|
125206
126219
|
__typename?: 'JsmSolutionComposerPlanStatusResponse';
|
|
125207
126220
|
id: Scalars['ID']['output'];
|
|
126221
|
+
metadata?: Maybe<JsmSolutionComposerPlanStatusMetadata>;
|
|
125208
126222
|
projectAri: Scalars['ID']['output'];
|
|
125209
126223
|
status: JsmSolutionComposerPlanStatusType;
|
|
125210
126224
|
steps?: Maybe<Array<Maybe<JsmSolutionComposerStepStatus>>>;
|
|
@@ -125638,7 +126652,7 @@ export declare type KitsuneFeedback = Node & {
|
|
|
125638
126652
|
reporterId?: Maybe<Scalars['ID']['output']>;
|
|
125639
126653
|
source: KitsuneSource;
|
|
125640
126654
|
sourceCategory: KitsuneSourceCategory;
|
|
125641
|
-
summary?: Maybe<
|
|
126655
|
+
summary?: Maybe<KitsuneSummary>;
|
|
125642
126656
|
title?: Maybe<Scalars['String']['output']>;
|
|
125643
126657
|
type: KitsuneFeedbackType;
|
|
125644
126658
|
};
|
|
@@ -125670,20 +126684,12 @@ export declare type KitsuneFeedbackEvent = {
|
|
|
125670
126684
|
id: Scalars['ID']['output'];
|
|
125671
126685
|
source?: Maybe<KitsuneSource>;
|
|
125672
126686
|
spaceId: Scalars['ID']['output'];
|
|
125673
|
-
summary?: Maybe<
|
|
126687
|
+
summary?: Maybe<KitsuneSummary>;
|
|
125674
126688
|
tenantId: Scalars['ID']['output'];
|
|
125675
126689
|
title?: Maybe<Scalars['String']['output']>;
|
|
125676
126690
|
type: KitsuneFeedbackType;
|
|
125677
126691
|
updatedAt: Scalars['DateTime']['output'];
|
|
125678
126692
|
};
|
|
125679
|
-
export declare type KitsuneFeedbackSummary = {
|
|
125680
|
-
__typename?: 'KitsuneFeedbackSummary';
|
|
125681
|
-
content?: Maybe<Scalars['KitsuneADF']['output']>;
|
|
125682
|
-
generatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
125683
|
-
status?: Maybe<KitsuneSummaryStatus>;
|
|
125684
|
-
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
125685
|
-
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
125686
|
-
};
|
|
125687
126693
|
export declare enum KitsuneFeedbackType {
|
|
125688
126694
|
Call = "CALL",
|
|
125689
126695
|
Conversation = "CONVERSATION",
|
|
@@ -125740,6 +126746,16 @@ export declare type KitsuneFilterValueInput = {
|
|
|
125740
126746
|
valueNumber?: InputMaybe<Array<Scalars['Float']['input']>>;
|
|
125741
126747
|
valueText?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
125742
126748
|
};
|
|
126749
|
+
export declare type KitsuneInsight = Node & {
|
|
126750
|
+
__typename?: 'KitsuneInsight';
|
|
126751
|
+
content: Scalars['KitsuneADF']['output'];
|
|
126752
|
+
createdAt: Scalars['DateTime']['output'];
|
|
126753
|
+
creator?: Maybe<User>;
|
|
126754
|
+
creatorId?: Maybe<Scalars['ID']['output']>;
|
|
126755
|
+
id: Scalars['ID']['output'];
|
|
126756
|
+
summary?: Maybe<KitsuneSummary>;
|
|
126757
|
+
title: Scalars['String']['output'];
|
|
126758
|
+
};
|
|
125743
126759
|
export declare enum KitsuneLogicalOperator {
|
|
125744
126760
|
And = "AND",
|
|
125745
126761
|
Or = "OR"
|
|
@@ -125984,6 +127000,14 @@ export declare type KitsuneSpaceEdge = KitsuneEdge & {
|
|
|
125984
127000
|
cursor: Scalars['String']['output'];
|
|
125985
127001
|
node?: Maybe<KitsuneSpace>;
|
|
125986
127002
|
};
|
|
127003
|
+
export declare type KitsuneSummary = {
|
|
127004
|
+
__typename?: 'KitsuneSummary';
|
|
127005
|
+
content?: Maybe<Scalars['KitsuneADF']['output']>;
|
|
127006
|
+
generatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
127007
|
+
status?: Maybe<KitsuneSummaryStatus>;
|
|
127008
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
127009
|
+
updatedBy?: Maybe<Scalars['String']['output']>;
|
|
127010
|
+
};
|
|
125987
127011
|
export declare enum KitsuneSummaryStatus {
|
|
125988
127012
|
Done = "DONE",
|
|
125989
127013
|
Error = "ERROR",
|
|
@@ -132008,6 +133032,7 @@ export declare type MercuryChangeProposal = Node & {
|
|
|
132008
133032
|
export declare type MercuryChangeProposalCommentsArgs = {
|
|
132009
133033
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
132010
133034
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133035
|
+
sort?: InputMaybe<Array<MercuryChangeProposalCommentSort>>;
|
|
132011
133036
|
};
|
|
132012
133037
|
export declare type MercuryChangeProposalLinkedGoalsArgs = {
|
|
132013
133038
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -132038,6 +133063,14 @@ export declare type MercuryChangeProposalCommentEdge = {
|
|
|
132038
133063
|
cursor: Scalars['String']['output'];
|
|
132039
133064
|
node?: Maybe<MercuryChangeProposalComment>;
|
|
132040
133065
|
};
|
|
133066
|
+
export declare type MercuryChangeProposalCommentSort = {
|
|
133067
|
+
field: MercuryChangeProposalCommentSortField;
|
|
133068
|
+
order: SortOrder;
|
|
133069
|
+
};
|
|
133070
|
+
export declare enum MercuryChangeProposalCommentSortField {
|
|
133071
|
+
CreatedDate = "CREATED_DATE",
|
|
133072
|
+
UpdatedDate = "UPDATED_DATE"
|
|
133073
|
+
}
|
|
132041
133074
|
export declare type MercuryChangeProposalConnection = {
|
|
132042
133075
|
__typename?: 'MercuryChangeProposalConnection';
|
|
132043
133076
|
edges?: Maybe<Array<Maybe<MercuryChangeProposalEdge>>>;
|
|
@@ -132554,6 +133587,7 @@ export declare type MercuryCreateRiskInput = {
|
|
|
132554
133587
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
132555
133588
|
name: Scalars['String']['input'];
|
|
132556
133589
|
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
133590
|
+
submitter?: InputMaybe<Scalars['ID']['input']>;
|
|
132557
133591
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
132558
133592
|
};
|
|
132559
133593
|
export declare type MercuryCreateRiskPayload = Payload & {
|
|
@@ -132608,12 +133642,14 @@ export declare type MercuryCustomFieldDefinition = {
|
|
|
132608
133642
|
createdBy?: Maybe<User>;
|
|
132609
133643
|
createdDate: Scalars['DateTime']['output'];
|
|
132610
133644
|
description?: Maybe<Scalars['String']['output']>;
|
|
133645
|
+
fieldKind: MercuryCustomFieldKind;
|
|
132611
133646
|
id: Scalars['ID']['output'];
|
|
132612
133647
|
name: Scalars['String']['output'];
|
|
132613
133648
|
scope: MercuryCustomFieldDefinitionScope;
|
|
132614
133649
|
searchKey?: Maybe<Scalars['String']['output']>;
|
|
132615
133650
|
updatedBy?: Maybe<User>;
|
|
132616
133651
|
updatedDate: Scalars['DateTime']['output'];
|
|
133652
|
+
visibility: MercuryCustomFieldVisibility;
|
|
132617
133653
|
};
|
|
132618
133654
|
export declare type MercuryCustomFieldDefinitionConnection = {
|
|
132619
133655
|
__typename?: 'MercuryCustomFieldDefinitionConnection';
|
|
@@ -132643,6 +133679,10 @@ export declare type MercuryCustomFieldInput = {
|
|
|
132643
133679
|
singleSelectField?: InputMaybe<MercurySingleSelectCustomFieldInput>;
|
|
132644
133680
|
textField?: InputMaybe<MercuryTextCustomFieldInput>;
|
|
132645
133681
|
};
|
|
133682
|
+
export declare enum MercuryCustomFieldKind {
|
|
133683
|
+
Custom = "CUSTOM",
|
|
133684
|
+
System = "SYSTEM"
|
|
133685
|
+
}
|
|
132646
133686
|
export declare type MercuryCustomFieldSelectionOptionSetting = {
|
|
132647
133687
|
__typename?: 'MercuryCustomFieldSelectionOptionSetting';
|
|
132648
133688
|
key: MercuryCustomFieldSelectionOptionSettingKey;
|
|
@@ -132655,6 +133695,10 @@ export declare type MercuryCustomFieldSelectionOptionSettingInput = {
|
|
|
132655
133695
|
export declare enum MercuryCustomFieldSelectionOptionSettingKey {
|
|
132656
133696
|
Color = "COLOR"
|
|
132657
133697
|
}
|
|
133698
|
+
export declare enum MercuryCustomFieldVisibility {
|
|
133699
|
+
Hidden = "HIDDEN",
|
|
133700
|
+
Visible = "VISIBLE"
|
|
133701
|
+
}
|
|
132658
133702
|
export declare type MercuryCustomSelectFieldOption = {
|
|
132659
133703
|
__typename?: 'MercuryCustomSelectFieldOption';
|
|
132660
133704
|
id: Scalars['ID']['output'];
|
|
@@ -132679,12 +133723,14 @@ export declare type MercuryDateCustomFieldDefinition = MercuryCustomFieldDefinit
|
|
|
132679
133723
|
createdBy?: Maybe<User>;
|
|
132680
133724
|
createdDate: Scalars['DateTime']['output'];
|
|
132681
133725
|
description?: Maybe<Scalars['String']['output']>;
|
|
133726
|
+
fieldKind: MercuryCustomFieldKind;
|
|
132682
133727
|
id: Scalars['ID']['output'];
|
|
132683
133728
|
name: Scalars['String']['output'];
|
|
132684
133729
|
scope: MercuryCustomFieldDefinitionScope;
|
|
132685
133730
|
searchKey?: Maybe<Scalars['String']['output']>;
|
|
132686
133731
|
updatedBy?: Maybe<User>;
|
|
132687
133732
|
updatedDate: Scalars['DateTime']['output'];
|
|
133733
|
+
visibility: MercuryCustomFieldVisibility;
|
|
132688
133734
|
};
|
|
132689
133735
|
export declare type MercuryDateCustomFieldInput = {
|
|
132690
133736
|
dateValue?: InputMaybe<Scalars['Date']['input']>;
|
|
@@ -133035,6 +134081,7 @@ export declare type MercuryFocusArea = Node & {
|
|
|
133035
134081
|
name: Scalars['String']['output'];
|
|
133036
134082
|
owner?: Maybe<User>;
|
|
133037
134083
|
parent?: Maybe<MercuryFocusArea>;
|
|
134084
|
+
starred?: Maybe<Scalars['Boolean']['output']>;
|
|
133038
134085
|
status: MercuryFocusAreaStatus;
|
|
133039
134086
|
statusTransitions: MercuryFocusAreaStatusTransitions;
|
|
133040
134087
|
subFocusAreas?: Maybe<MercuryFocusAreaConnection>;
|
|
@@ -133525,6 +134572,7 @@ export declare type MercuryFundsMutationApi = {
|
|
|
133525
134572
|
updateCostItemClassification?: Maybe<MercuryUpdateCostItemClassificationPayload>;
|
|
133526
134573
|
updateCostItemExpenditureType?: Maybe<MercuryUpdateCostItemExpenditureTypePayload>;
|
|
133527
134574
|
updateCostItemInvestmentCategory?: Maybe<MercuryUpdateCostItemInvestmentCategoryPayload>;
|
|
134575
|
+
updateCostItemName?: Maybe<MercuryUpdateCostItemNamePayload>;
|
|
133528
134576
|
updateCostPeriodValueAmount?: Maybe<MercuryUpdateCostPeriodValueAmountPayload>;
|
|
133529
134577
|
updateCostSubtypeName?: Maybe<MercuryUpdateCostSubtypePayload>;
|
|
133530
134578
|
updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
@@ -133568,6 +134616,9 @@ export declare type MercuryFundsMutationApiUpdateCostItemExpenditureTypeArgs = {
|
|
|
133568
134616
|
export declare type MercuryFundsMutationApiUpdateCostItemInvestmentCategoryArgs = {
|
|
133569
134617
|
input: MercuryUpdateCostItemInvestmentCategoryInput;
|
|
133570
134618
|
};
|
|
134619
|
+
export declare type MercuryFundsMutationApiUpdateCostItemNameArgs = {
|
|
134620
|
+
input: MercuryUpdateCostItemNameInput;
|
|
134621
|
+
};
|
|
133571
134622
|
export declare type MercuryFundsMutationApiUpdateCostPeriodValueAmountArgs = {
|
|
133572
134623
|
input: MercuryUpdateCostPeriodValueAmountInput;
|
|
133573
134624
|
};
|
|
@@ -134117,6 +135168,7 @@ export declare type MercuryMultiSelectCustomFieldDefinition = MercuryCustomField
|
|
|
134117
135168
|
createdBy?: Maybe<User>;
|
|
134118
135169
|
createdDate: Scalars['DateTime']['output'];
|
|
134119
135170
|
description?: Maybe<Scalars['String']['output']>;
|
|
135171
|
+
fieldKind: MercuryCustomFieldKind;
|
|
134120
135172
|
id: Scalars['ID']['output'];
|
|
134121
135173
|
name: Scalars['String']['output'];
|
|
134122
135174
|
options?: Maybe<Array<MercuryCustomSelectFieldOption>>;
|
|
@@ -134124,6 +135176,7 @@ export declare type MercuryMultiSelectCustomFieldDefinition = MercuryCustomField
|
|
|
134124
135176
|
searchKey?: Maybe<Scalars['String']['output']>;
|
|
134125
135177
|
updatedBy?: Maybe<User>;
|
|
134126
135178
|
updatedDate: Scalars['DateTime']['output'];
|
|
135179
|
+
visibility: MercuryCustomFieldVisibility;
|
|
134127
135180
|
};
|
|
134128
135181
|
export declare type MercuryMultiSelectCustomFieldInput = {
|
|
134129
135182
|
options?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -134164,7 +135217,9 @@ export declare type MercuryMutationApi = {
|
|
|
134164
135217
|
setFocusAreaCustomFieldValue?: Maybe<MercurySetFocusAreaCustomFieldPayload>;
|
|
134165
135218
|
setFocusAreaCustomFieldValues?: Maybe<MercurySetFocusAreaCustomFieldsPayload>;
|
|
134166
135219
|
setPreference?: Maybe<MercurySetPreferencePayload>;
|
|
135220
|
+
starFocusArea?: Maybe<MercuryStarFocusAreaPayload>;
|
|
134167
135221
|
transitionFocusAreaStatus?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
135222
|
+
unStarFocusArea?: Maybe<MercuryUnStarFocusAreaPayload>;
|
|
134168
135223
|
unarchiveFocusArea?: Maybe<MercuryUnarchiveFocusAreaPayload>;
|
|
134169
135224
|
updateComment?: Maybe<MercuryUpdateCommentPayload>;
|
|
134170
135225
|
updateFocusAreaAboutContent?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
@@ -134282,9 +135337,15 @@ export declare type MercuryMutationApiSetFocusAreaCustomFieldValuesArgs = {
|
|
|
134282
135337
|
export declare type MercuryMutationApiSetPreferenceArgs = {
|
|
134283
135338
|
input: MercurySetPreferenceInput;
|
|
134284
135339
|
};
|
|
135340
|
+
export declare type MercuryMutationApiStarFocusAreaArgs = {
|
|
135341
|
+
input: MercuryStarFocusAreaInput;
|
|
135342
|
+
};
|
|
134285
135343
|
export declare type MercuryMutationApiTransitionFocusAreaStatusArgs = {
|
|
134286
135344
|
input: MercuryTransitionFocusAreaStatusInput;
|
|
134287
135345
|
};
|
|
135346
|
+
export declare type MercuryMutationApiUnStarFocusAreaArgs = {
|
|
135347
|
+
input: MercuryUnStarFocusAreaInput;
|
|
135348
|
+
};
|
|
134288
135349
|
export declare type MercuryMutationApiUnarchiveFocusAreaArgs = {
|
|
134289
135350
|
input: MercuryUnarchiveFocusAreaInput;
|
|
134290
135351
|
};
|
|
@@ -134431,12 +135492,14 @@ export declare type MercuryNumberCustomFieldDefinition = MercuryCustomFieldDefin
|
|
|
134431
135492
|
createdBy?: Maybe<User>;
|
|
134432
135493
|
createdDate: Scalars['DateTime']['output'];
|
|
134433
135494
|
description?: Maybe<Scalars['String']['output']>;
|
|
135495
|
+
fieldKind: MercuryCustomFieldKind;
|
|
134434
135496
|
id: Scalars['ID']['output'];
|
|
134435
135497
|
name: Scalars['String']['output'];
|
|
134436
135498
|
scope: MercuryCustomFieldDefinitionScope;
|
|
134437
135499
|
searchKey?: Maybe<Scalars['String']['output']>;
|
|
134438
135500
|
updatedBy?: Maybe<User>;
|
|
134439
135501
|
updatedDate: Scalars['DateTime']['output'];
|
|
135502
|
+
visibility: MercuryCustomFieldVisibility;
|
|
134440
135503
|
};
|
|
134441
135504
|
export declare type MercuryNumberCustomFieldInput = {
|
|
134442
135505
|
numberValue?: InputMaybe<Scalars['Float']['input']>;
|
|
@@ -135223,7 +136286,7 @@ export declare type MercuryRisk = Node & {
|
|
|
135223
136286
|
owner?: Maybe<Scalars['ID']['output']>;
|
|
135224
136287
|
status?: Maybe<MercuryRiskStatus>;
|
|
135225
136288
|
statusTransitions?: Maybe<MercuryRiskStatusTransitions>;
|
|
135226
|
-
submitter
|
|
136289
|
+
submitter?: Maybe<User>;
|
|
135227
136290
|
targetDate?: Maybe<Scalars['String']['output']>;
|
|
135228
136291
|
updatedDate: Scalars['String']['output'];
|
|
135229
136292
|
};
|
|
@@ -135285,6 +136348,7 @@ export declare type MercuryRisksMutationApi = {
|
|
|
135285
136348
|
updateRiskDescription?: Maybe<MercuryUpdateRiskPayload>;
|
|
135286
136349
|
updateRiskName?: Maybe<MercuryUpdateRiskPayload>;
|
|
135287
136350
|
updateRiskOwner?: Maybe<MercuryUpdateRiskPayload>;
|
|
136351
|
+
updateRiskSubmitter?: Maybe<MercuryUpdateRiskPayload>;
|
|
135288
136352
|
updateRiskTargetDate?: Maybe<MercuryUpdateRiskPayload>;
|
|
135289
136353
|
};
|
|
135290
136354
|
export declare type MercuryRisksMutationApiCreateRiskArgs = {
|
|
@@ -135311,6 +136375,9 @@ export declare type MercuryRisksMutationApiUpdateRiskNameArgs = {
|
|
|
135311
136375
|
export declare type MercuryRisksMutationApiUpdateRiskOwnerArgs = {
|
|
135312
136376
|
input: MercuryUpdateRiskOwnerInput;
|
|
135313
136377
|
};
|
|
136378
|
+
export declare type MercuryRisksMutationApiUpdateRiskSubmitterArgs = {
|
|
136379
|
+
input: MercuryUpdateRiskSubmitterInput;
|
|
136380
|
+
};
|
|
135314
136381
|
export declare type MercuryRisksMutationApiUpdateRiskTargetDateArgs = {
|
|
135315
136382
|
input: MercuryUpdateRiskTargetDateInput;
|
|
135316
136383
|
};
|
|
@@ -135408,6 +136475,7 @@ export declare type MercurySingleSelectCustomFieldDefinition = MercuryCustomFiel
|
|
|
135408
136475
|
createdBy?: Maybe<User>;
|
|
135409
136476
|
createdDate: Scalars['DateTime']['output'];
|
|
135410
136477
|
description?: Maybe<Scalars['String']['output']>;
|
|
136478
|
+
fieldKind: MercuryCustomFieldKind;
|
|
135411
136479
|
id: Scalars['ID']['output'];
|
|
135412
136480
|
name: Scalars['String']['output'];
|
|
135413
136481
|
options?: Maybe<Array<MercuryCustomSelectFieldOption>>;
|
|
@@ -135415,6 +136483,7 @@ export declare type MercurySingleSelectCustomFieldDefinition = MercuryCustomFiel
|
|
|
135415
136483
|
searchKey?: Maybe<Scalars['String']['output']>;
|
|
135416
136484
|
updatedBy?: Maybe<User>;
|
|
135417
136485
|
updatedDate: Scalars['DateTime']['output'];
|
|
136486
|
+
visibility: MercuryCustomFieldVisibility;
|
|
135418
136487
|
};
|
|
135419
136488
|
export declare type MercurySingleSelectCustomFieldInput = {
|
|
135420
136489
|
option?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -135424,6 +136493,14 @@ export declare type MercurySpendAggregation = {
|
|
|
135424
136493
|
aggregatedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
135425
136494
|
totalAssignedSpend?: Maybe<Scalars['BigDecimal']['output']>;
|
|
135426
136495
|
};
|
|
136496
|
+
export declare type MercuryStarFocusAreaInput = {
|
|
136497
|
+
focusAreaId: Scalars['ID']['input'];
|
|
136498
|
+
};
|
|
136499
|
+
export declare type MercuryStarFocusAreaPayload = Payload & {
|
|
136500
|
+
__typename?: 'MercuryStarFocusAreaPayload';
|
|
136501
|
+
errors?: Maybe<Array<MutationError>>;
|
|
136502
|
+
success: Scalars['Boolean']['output'];
|
|
136503
|
+
};
|
|
135427
136504
|
export declare enum MercuryStatusColor {
|
|
135428
136505
|
Blue = "BLUE",
|
|
135429
136506
|
Gray = "GRAY",
|
|
@@ -135879,12 +136956,14 @@ export declare type MercuryTextCustomFieldDefinition = MercuryCustomFieldDefinit
|
|
|
135879
136956
|
createdBy?: Maybe<User>;
|
|
135880
136957
|
createdDate: Scalars['DateTime']['output'];
|
|
135881
136958
|
description?: Maybe<Scalars['String']['output']>;
|
|
136959
|
+
fieldKind: MercuryCustomFieldKind;
|
|
135882
136960
|
id: Scalars['ID']['output'];
|
|
135883
136961
|
name: Scalars['String']['output'];
|
|
135884
136962
|
scope: MercuryCustomFieldDefinitionScope;
|
|
135885
136963
|
searchKey?: Maybe<Scalars['String']['output']>;
|
|
135886
136964
|
updatedBy?: Maybe<User>;
|
|
135887
136965
|
updatedDate: Scalars['DateTime']['output'];
|
|
136966
|
+
visibility: MercuryCustomFieldVisibility;
|
|
135888
136967
|
};
|
|
135889
136968
|
export declare type MercuryTextCustomFieldInput = {
|
|
135890
136969
|
textValue?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -135936,6 +137015,14 @@ export declare type MercuryTransitionStrategicEventStatusInput = {
|
|
|
135936
137015
|
id: Scalars['ID']['input'];
|
|
135937
137016
|
statusTransitionId: Scalars['ID']['input'];
|
|
135938
137017
|
};
|
|
137018
|
+
export declare type MercuryUnStarFocusAreaInput = {
|
|
137019
|
+
focusAreaId: Scalars['ID']['input'];
|
|
137020
|
+
};
|
|
137021
|
+
export declare type MercuryUnStarFocusAreaPayload = Payload & {
|
|
137022
|
+
__typename?: 'MercuryUnStarFocusAreaPayload';
|
|
137023
|
+
errors?: Maybe<Array<MutationError>>;
|
|
137024
|
+
success: Scalars['Boolean']['output'];
|
|
137025
|
+
};
|
|
135939
137026
|
export declare type MercuryUnarchiveFocusAreaInput = {
|
|
135940
137027
|
cloudId: Scalars['ID']['input'];
|
|
135941
137028
|
comment?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -136132,6 +137219,16 @@ export declare type MercuryUpdateCostItemInvestmentCategoryPayload = Payload & {
|
|
|
136132
137219
|
success: Scalars['Boolean']['output'];
|
|
136133
137220
|
updatedCostItem?: Maybe<MercuryCostItem>;
|
|
136134
137221
|
};
|
|
137222
|
+
export declare type MercuryUpdateCostItemNameInput = {
|
|
137223
|
+
id: Scalars['ID']['input'];
|
|
137224
|
+
name: Scalars['String']['input'];
|
|
137225
|
+
};
|
|
137226
|
+
export declare type MercuryUpdateCostItemNamePayload = Payload & {
|
|
137227
|
+
__typename?: 'MercuryUpdateCostItemNamePayload';
|
|
137228
|
+
errors?: Maybe<Array<MutationError>>;
|
|
137229
|
+
success: Scalars['Boolean']['output'];
|
|
137230
|
+
updatedCostItem?: Maybe<MercuryCostItem>;
|
|
137231
|
+
};
|
|
136135
137232
|
export declare type MercuryUpdateCostPeriodValueAmountInput = {
|
|
136136
137233
|
amount: Scalars['String']['input'];
|
|
136137
137234
|
id: Scalars['ID']['input'];
|
|
@@ -136301,6 +137398,10 @@ export declare type MercuryUpdateRiskPayload = Payload & {
|
|
|
136301
137398
|
success: Scalars['Boolean']['output'];
|
|
136302
137399
|
updatedRisk?: Maybe<MercuryRisk>;
|
|
136303
137400
|
};
|
|
137401
|
+
export declare type MercuryUpdateRiskSubmitterInput = {
|
|
137402
|
+
id: Scalars['ID']['input'];
|
|
137403
|
+
submitter: Scalars['ID']['input'];
|
|
137404
|
+
};
|
|
136304
137405
|
export declare type MercuryUpdateRiskTargetDateInput = {
|
|
136305
137406
|
id: Scalars['ID']['input'];
|
|
136306
137407
|
targetDate?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -136688,6 +137789,7 @@ export declare type Mutation = {
|
|
|
136688
137789
|
admin_unitCreate?: Maybe<AdminUnitCreatePayload>;
|
|
136689
137790
|
admin_unlinkScimUser?: Maybe<AdminUnlinkScimUserResponsePayload>;
|
|
136690
137791
|
admin_updateInvitePolicy?: Maybe<AdminUpdateInvitePolicyResponsePayload>;
|
|
137792
|
+
agentAI_panelRefresh?: Maybe<AgentAiPanelRefreshResult>;
|
|
136691
137793
|
agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
|
|
136692
137794
|
agentStudio_cancelBatchEvaluationJobRun?: Maybe<AgentStudioBatchEvalRunJobPayload>;
|
|
136693
137795
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
@@ -136725,10 +137827,12 @@ export declare type Mutation = {
|
|
|
136725
137827
|
agentWorkspace_assignSkill?: Maybe<AgentWorkspaceAssignSkillPayload>;
|
|
136726
137828
|
agentWorkspace_createCatalog?: Maybe<AgentWorkspaceCatalogCreateResponse>;
|
|
136727
137829
|
agentWorkspace_createCatalogType?: Maybe<AgentWorkspaceCatalogTypeCreateResponse>;
|
|
137830
|
+
agentWorkspace_createHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionCreateResponse>;
|
|
136728
137831
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
136729
137832
|
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
136730
137833
|
agentWorkspace_deleteCatalog?: Maybe<AgentWorkspaceCatalogDeleteResponse>;
|
|
136731
137834
|
agentWorkspace_deleteCatalogType?: Maybe<AgentWorkspaceCatalogTypeDeleteResponse>;
|
|
137835
|
+
agentWorkspace_deleteHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionDeleteResponse>;
|
|
136732
137836
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
136733
137837
|
agentWorkspace_deleteShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
|
|
136734
137838
|
agentWorkspace_deleteSkill?: Maybe<AgentWorkspaceSkillDeletePayload>;
|
|
@@ -136738,11 +137842,13 @@ export declare type Mutation = {
|
|
|
136738
137842
|
agentWorkspace_restoreSkill?: Maybe<AgentWorkspaceRestoreSkillPayload>;
|
|
136739
137843
|
agentWorkspace_setAvailabilityStatus?: Maybe<AgentWorkspaceAvailabilityStatusPayload>;
|
|
136740
137844
|
agentWorkspace_setDefaultCapacity?: Maybe<AgentWorkspaceSetDefaultCapacityPayload>;
|
|
137845
|
+
agentWorkspace_setProjectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailabilityPayload>;
|
|
136741
137846
|
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
136742
137847
|
agentWorkspace_subscribeSkill?: Maybe<AgentWorkspaceSubscribeSkillPayload>;
|
|
136743
137848
|
agentWorkspace_unsubscribeSkill?: Maybe<AgentWorkspaceUnsubscribeSkillPayload>;
|
|
136744
137849
|
agentWorkspace_updateCatalog?: Maybe<AgentWorkspaceCatalogUpdateResponse>;
|
|
136745
137850
|
agentWorkspace_updateCatalogType?: Maybe<AgentWorkspaceCatalogTypeUpdateResponse>;
|
|
137851
|
+
agentWorkspace_updateHierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinitionUpdateResponse>;
|
|
136746
137852
|
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
136747
137853
|
agentWorkspace_updateSkill?: Maybe<AgentWorkspaceSkillUpdatePayload>;
|
|
136748
137854
|
agentWorkspace_updateSkillProficiency?: Maybe<AgentWorkspaceUpdateSkillProficiencyPayload>;
|
|
@@ -136872,6 +137978,7 @@ export declare type Mutation = {
|
|
|
136872
137978
|
changeManagement_updateRovoRiskAssessmentSettings: Scalars['Boolean']['output'];
|
|
136873
137979
|
channelPlatform_assignAgentToContact?: Maybe<ChannelPlatformMutationStatus>;
|
|
136874
137980
|
channelPlatform_attachMediaFile?: Maybe<Scalars['String']['output']>;
|
|
137981
|
+
channelPlatform_botConversation?: Maybe<ChannelPlatformBotConversationResponse>;
|
|
136875
137982
|
channelPlatform_createAttendee?: Maybe<ChannelPlatformConnectionData>;
|
|
136876
137983
|
channelPlatform_createMeetingDetails?: Maybe<ChannelPlatformMeeting>;
|
|
136877
137984
|
channelPlatform_createQueues?: Maybe<ChannelPlatformConnectQueue>;
|
|
@@ -136883,8 +137990,9 @@ export declare type Mutation = {
|
|
|
136883
137990
|
channelPlatform_uploadAttachmentMetadata?: Maybe<ChannelPlatformAttachmentMetadataResponse>;
|
|
136884
137991
|
clearRestrictionsForFree?: Maybe<ContentRestrictionsPageResponse>;
|
|
136885
137992
|
cloudify_addRecommendation: CloudifyRecommendation;
|
|
136886
|
-
cloudify_analyze: Array<CloudifyRecommendation>;
|
|
136887
137993
|
cloudify_deleteRecommendations: Array<CloudifyRecommendationId>;
|
|
137994
|
+
cloudify_enactRecommendation: CloudifyEnactment;
|
|
137995
|
+
cloudify_requestAnalysis: CloudifyAnalysisExecution;
|
|
136888
137996
|
commerceExp_approvalDesk?: Maybe<CommerceExpApprovalDeskMutation>;
|
|
136889
137997
|
commerceExp_ccp?: Maybe<CommerceExpCcpMutation>;
|
|
136890
137998
|
commerceExp_ccpMutationWithQuery?: Maybe<CommerceExpCcpMutationWithQuery>;
|
|
@@ -137217,6 +138325,7 @@ export declare type Mutation = {
|
|
|
137217
138325
|
goals_grantAccess?: Maybe<TownsquareGoalGrantAccessPayload>;
|
|
137218
138326
|
goals_linkJiraAlignProject?: Maybe<TownsquareGoalsLinkJiraAlignProjectPayload>;
|
|
137219
138327
|
goals_linkWorkItem?: Maybe<TownsquareGoalsLinkWorkItemPayload>;
|
|
138328
|
+
goals_manageAccess?: Maybe<TownsquareGoalManageAccessPayload>;
|
|
137220
138329
|
goals_removeDropdownCustomFieldValue?: Maybe<TownsquareGoalsRemoveDropdownCustomFieldValuePayload>;
|
|
137221
138330
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
137222
138331
|
goals_removeMetricTarget?: Maybe<TownsquareGoalsRemoveMetricTargetPayload>;
|
|
@@ -137309,6 +138418,7 @@ export declare type Mutation = {
|
|
|
137309
138418
|
jira_removeFieldsFromFieldScheme?: Maybe<JiraRemoveFieldsFromFieldSchemePayload>;
|
|
137310
138419
|
jira_removeTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
137311
138420
|
jira_renameBoardViewStatusColumn?: Maybe<JiraRenameBoardViewStatusColumnPayload>;
|
|
138421
|
+
jira_renameProjectLevelSidebarMenuItem?: Maybe<JiraRenameProjectLevelSidebarMenuItemPayload>;
|
|
137312
138422
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
137313
138423
|
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
137314
138424
|
jira_resetFavicon?: Maybe<JiraResetFaviconPayload>;
|
|
@@ -137406,6 +138516,7 @@ export declare type Mutation = {
|
|
|
137406
138516
|
jsw?: Maybe<JswMutation>;
|
|
137407
138517
|
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
137408
138518
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
138519
|
+
kitsune_createInsight?: Maybe<KitsuneInsight>;
|
|
137409
138520
|
kitsune_createOrganization?: Maybe<KitsuneOrganization>;
|
|
137410
138521
|
kitsune_createSection?: Maybe<KitsuneSection>;
|
|
137411
138522
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
@@ -137414,10 +138525,12 @@ export declare type Mutation = {
|
|
|
137414
138525
|
kitsune_moveSection?: Maybe<KitsuneSpace>;
|
|
137415
138526
|
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
137416
138527
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
138528
|
+
kitsune_removeInsight?: Maybe<KitsuneDeletedRecord>;
|
|
137417
138529
|
kitsune_removeSection?: Maybe<KitsuneDeletedRecord>;
|
|
137418
138530
|
kitsune_removeView?: Maybe<KitsuneDeletedRecord>;
|
|
137419
138531
|
kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
|
|
137420
138532
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
138533
|
+
kitsune_updateInsight?: Maybe<KitsuneInsight>;
|
|
137421
138534
|
kitsune_updateSection?: Maybe<KitsuneSection>;
|
|
137422
138535
|
kitsune_updateSpace?: Maybe<KitsuneSpace>;
|
|
137423
138536
|
kitsune_updateView?: Maybe<KitsuneView>;
|
|
@@ -137501,6 +138614,7 @@ export declare type Mutation = {
|
|
|
137501
138614
|
projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
|
|
137502
138615
|
projects_editUserCustomField?: Maybe<TownsquareProjectsEditUserCustomFieldPayload>;
|
|
137503
138616
|
projects_grantAccess?: Maybe<TownsquareProjectGrantAccessPayload>;
|
|
138617
|
+
projects_manageAccess?: Maybe<TownsquareProjectManageAccessPayload>;
|
|
137504
138618
|
projects_removeDependency?: Maybe<TownsquareProjectsRemoveDependencyPayload>;
|
|
137505
138619
|
projects_removeDropdownCustomFieldValue?: Maybe<TownsquareProjectsRemoveDropdownCustomFieldValuePayload>;
|
|
137506
138620
|
projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
|
|
@@ -137870,6 +138984,10 @@ export declare type MutationAdmin_UpdateInvitePolicyArgs = {
|
|
|
137870
138984
|
policyId: Scalars['ID']['input'];
|
|
137871
138985
|
updateInvitePolicyInput?: InputMaybe<AdminUpdateInvitePolicyInput>;
|
|
137872
138986
|
};
|
|
138987
|
+
export declare type MutationAgentAi_PanelRefreshArgs = {
|
|
138988
|
+
cloudId: Scalars['ID']['input'];
|
|
138989
|
+
issueId: Scalars['String']['input'];
|
|
138990
|
+
};
|
|
137873
138991
|
export declare type MutationAgentStudio_AddGroupsToCreatePermissionArgs = {
|
|
137874
138992
|
cloudId: Scalars['ID']['input'];
|
|
137875
138993
|
groupARIs: Array<Scalars['ID']['input']>;
|
|
@@ -138037,6 +139155,9 @@ export declare type MutationAgentWorkspace_CreateCatalogArgs = {
|
|
|
138037
139155
|
export declare type MutationAgentWorkspace_CreateCatalogTypeArgs = {
|
|
138038
139156
|
input: AgentWorkspaceCreateCatalogTypeInput;
|
|
138039
139157
|
};
|
|
139158
|
+
export declare type MutationAgentWorkspace_CreateHierarchyDefinitionArgs = {
|
|
139159
|
+
input: AgentWorkspaceCreateHierarchyDefinitionInput;
|
|
139160
|
+
};
|
|
138040
139161
|
export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
138041
139162
|
input: AgentWorkspaceCreateScheduleInput;
|
|
138042
139163
|
};
|
|
@@ -138049,6 +139170,9 @@ export declare type MutationAgentWorkspace_DeleteCatalogArgs = {
|
|
|
138049
139170
|
export declare type MutationAgentWorkspace_DeleteCatalogTypeArgs = {
|
|
138050
139171
|
input: AgentWorkspaceCatalogTypeDeleteInput;
|
|
138051
139172
|
};
|
|
139173
|
+
export declare type MutationAgentWorkspace_DeleteHierarchyDefinitionArgs = {
|
|
139174
|
+
input: AgentWorkspaceDeleteHierarchyDefinitionInput;
|
|
139175
|
+
};
|
|
138052
139176
|
export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
138053
139177
|
input: AgentWorkspaceDeleteScheduleInput;
|
|
138054
139178
|
};
|
|
@@ -138077,6 +139201,9 @@ export declare type MutationAgentWorkspace_SetAvailabilityStatusArgs = {
|
|
|
138077
139201
|
export declare type MutationAgentWorkspace_SetDefaultCapacityArgs = {
|
|
138078
139202
|
input: AgentWorkspaceSetDefaultCapacityInput;
|
|
138079
139203
|
};
|
|
139204
|
+
export declare type MutationAgentWorkspace_SetProjectDefaultAvailabilityArgs = {
|
|
139205
|
+
input: AgentWorkspaceSetProjectDefaultAvailabilityInput;
|
|
139206
|
+
};
|
|
138080
139207
|
export declare type MutationAgentWorkspace_StartBreakArgs = {
|
|
138081
139208
|
agentId: Scalars['ID']['input'];
|
|
138082
139209
|
cloudId: Scalars['ID']['input'];
|
|
@@ -138093,6 +139220,9 @@ export declare type MutationAgentWorkspace_UpdateCatalogArgs = {
|
|
|
138093
139220
|
export declare type MutationAgentWorkspace_UpdateCatalogTypeArgs = {
|
|
138094
139221
|
input: AgentWorkspaceUpdateCatalogTypeInput;
|
|
138095
139222
|
};
|
|
139223
|
+
export declare type MutationAgentWorkspace_UpdateHierarchyDefinitionArgs = {
|
|
139224
|
+
input: AgentWorkspaceUpdateHierarchyDefinitionInput;
|
|
139225
|
+
};
|
|
138096
139226
|
export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
|
|
138097
139227
|
input: AgentWorkspaceUpdateScheduleInput;
|
|
138098
139228
|
};
|
|
@@ -138587,6 +139717,9 @@ export declare type MutationChannelPlatform_AttachMediaFileArgs = {
|
|
|
138587
139717
|
fileId: Scalars['String']['input'];
|
|
138588
139718
|
issueId: Scalars['String']['input'];
|
|
138589
139719
|
};
|
|
139720
|
+
export declare type MutationChannelPlatform_BotConversationArgs = {
|
|
139721
|
+
input: ChannelPlatformBotConversationInput;
|
|
139722
|
+
};
|
|
138590
139723
|
export declare type MutationChannelPlatform_CreateAttendeeArgs = {
|
|
138591
139724
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
138592
139725
|
};
|
|
@@ -138627,11 +139760,14 @@ export declare type MutationCloudify_AddRecommendationArgs = {
|
|
|
138627
139760
|
projectId: Scalars['ID']['input'];
|
|
138628
139761
|
siteId: Scalars['ID']['input'];
|
|
138629
139762
|
};
|
|
138630
|
-
export declare type
|
|
139763
|
+
export declare type MutationCloudify_DeleteRecommendationsArgs = {
|
|
138631
139764
|
projectId: Scalars['ID']['input'];
|
|
138632
139765
|
siteId: Scalars['ID']['input'];
|
|
138633
139766
|
};
|
|
138634
|
-
export declare type
|
|
139767
|
+
export declare type MutationCloudify_EnactRecommendationArgs = {
|
|
139768
|
+
recommendationId: Scalars['ID']['input'];
|
|
139769
|
+
};
|
|
139770
|
+
export declare type MutationCloudify_RequestAnalysisArgs = {
|
|
138635
139771
|
projectId: Scalars['ID']['input'];
|
|
138636
139772
|
siteId: Scalars['ID']['input'];
|
|
138637
139773
|
};
|
|
@@ -139819,6 +140955,9 @@ export declare type MutationGoals_LinkJiraAlignProjectArgs = {
|
|
|
139819
140955
|
export declare type MutationGoals_LinkWorkItemArgs = {
|
|
139820
140956
|
input: TownsquareGoalsLinkWorkItemInput;
|
|
139821
140957
|
};
|
|
140958
|
+
export declare type MutationGoals_ManageAccessArgs = {
|
|
140959
|
+
input: TownsquareGoalManageAccessInput;
|
|
140960
|
+
};
|
|
139822
140961
|
export declare type MutationGoals_RemoveDropdownCustomFieldValueArgs = {
|
|
139823
140962
|
input: TownsquareGoalsRemoveDropdownCustomFieldValueInput;
|
|
139824
140963
|
};
|
|
@@ -140090,6 +141229,9 @@ export declare type MutationJira_RemoveTimelineIssueLinkArgs = {
|
|
|
140090
141229
|
export declare type MutationJira_RenameBoardViewStatusColumnArgs = {
|
|
140091
141230
|
input: JiraRenameBoardViewStatusColumnInput;
|
|
140092
141231
|
};
|
|
141232
|
+
export declare type MutationJira_RenameProjectLevelSidebarMenuItemArgs = {
|
|
141233
|
+
input: JiraRenameProjectLevelSidebarMenuItemInput;
|
|
141234
|
+
};
|
|
140093
141235
|
export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
140094
141236
|
input: JiraReorderBoardViewColumnInput;
|
|
140095
141237
|
};
|
|
@@ -140409,6 +141551,11 @@ export declare type MutationKitsune_CreateFeedbackArgs = {
|
|
|
140409
141551
|
spaceAri: Scalars['ID']['input'];
|
|
140410
141552
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
140411
141553
|
};
|
|
141554
|
+
export declare type MutationKitsune_CreateInsightArgs = {
|
|
141555
|
+
content: Scalars['KitsuneADF']['input'];
|
|
141556
|
+
spaceAri: Scalars['ID']['input'];
|
|
141557
|
+
title: Scalars['String']['input'];
|
|
141558
|
+
};
|
|
140412
141559
|
export declare type MutationKitsune_CreateOrganizationArgs = {
|
|
140413
141560
|
domainName?: InputMaybe<Scalars['String']['input']>;
|
|
140414
141561
|
name: Scalars['String']['input'];
|
|
@@ -140445,6 +141592,9 @@ export declare type MutationKitsune_MoveViewArgs = {
|
|
|
140445
141592
|
export declare type MutationKitsune_RemoveFeedbackArgs = {
|
|
140446
141593
|
feedbackAri: Scalars['ID']['input'];
|
|
140447
141594
|
};
|
|
141595
|
+
export declare type MutationKitsune_RemoveInsightArgs = {
|
|
141596
|
+
id: Scalars['ID']['input'];
|
|
141597
|
+
};
|
|
140448
141598
|
export declare type MutationKitsune_RemoveSectionArgs = {
|
|
140449
141599
|
sectionAri: Scalars['ID']['input'];
|
|
140450
141600
|
};
|
|
@@ -140464,6 +141614,11 @@ export declare type MutationKitsune_UpdateFeedbackArgs = {
|
|
|
140464
141614
|
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
140465
141615
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
140466
141616
|
};
|
|
141617
|
+
export declare type MutationKitsune_UpdateInsightArgs = {
|
|
141618
|
+
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
141619
|
+
id: Scalars['ID']['input'];
|
|
141620
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
141621
|
+
};
|
|
140467
141622
|
export declare type MutationKitsune_UpdateSectionArgs = {
|
|
140468
141623
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
140469
141624
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -140702,6 +141857,9 @@ export declare type MutationProjects_EditUserCustomFieldArgs = {
|
|
|
140702
141857
|
export declare type MutationProjects_GrantAccessArgs = {
|
|
140703
141858
|
input: TownsquareProjectGrantAccessInput;
|
|
140704
141859
|
};
|
|
141860
|
+
export declare type MutationProjects_ManageAccessArgs = {
|
|
141861
|
+
input: TownsquareProjectManageAccessInput;
|
|
141862
|
+
};
|
|
140705
141863
|
export declare type MutationProjects_RemoveDependencyArgs = {
|
|
140706
141864
|
input: TownsquareProjectsRemoveDependencyInput;
|
|
140707
141865
|
};
|
|
@@ -143807,6 +144965,7 @@ export declare type PolarisStatusCategory = {
|
|
|
143807
144965
|
};
|
|
143808
144966
|
export declare type PolarisTimelineConfig = {
|
|
143809
144967
|
__typename?: 'PolarisTimelineConfig';
|
|
144968
|
+
columnWidth?: Maybe<Scalars['Int']['output']>;
|
|
143810
144969
|
dueDateField?: Maybe<PolarisIdeaField>;
|
|
143811
144970
|
endTimestamp?: Maybe<Scalars['String']['output']>;
|
|
143812
144971
|
mode: PolarisTimelineMode;
|
|
@@ -143840,6 +144999,7 @@ export declare enum PolarisTreeDirection {
|
|
|
143840
144999
|
}
|
|
143841
145000
|
export declare type PolarisTreeHierarchyItem = {
|
|
143842
145001
|
__typename?: 'PolarisTreeHierarchyItem';
|
|
145002
|
+
fields?: Maybe<Array<PolarisIdeaField>>;
|
|
143843
145003
|
filter?: Maybe<Array<PolarisViewFilter>>;
|
|
143844
145004
|
items?: Maybe<Array<Scalars['JSON']['output']>>;
|
|
143845
145005
|
type?: Maybe<PolarisTreeHierarchyType>;
|
|
@@ -144090,7 +145250,11 @@ export declare enum PostOfficeMessageCreationType {
|
|
|
144090
145250
|
Explicit = "explicit",
|
|
144091
145251
|
Implicit = "implicit"
|
|
144092
145252
|
}
|
|
144093
|
-
export declare type PostOfficeMessageData = PostOfficeMessageLiveNudgeDemoMessageData | PostOfficeMessageRecommendationJpdData | PostOfficeMessageRecommendationJsmData | PostOfficeMessageRecommendationTwcData;
|
|
145253
|
+
export declare type PostOfficeMessageData = PostOfficeMessageLiveAndPersistedTestMessageData | PostOfficeMessageLiveNudgeDemoMessageData | PostOfficeMessageRecommendationJpdData | PostOfficeMessageRecommendationJsmData | PostOfficeMessageRecommendationTwcData;
|
|
145254
|
+
export declare type PostOfficeMessageLiveAndPersistedTestMessageData = {
|
|
145255
|
+
__typename?: 'PostOfficeMessageLiveAndPersistedTestMessageData';
|
|
145256
|
+
nudgeMessage?: Maybe<Scalars['String']['output']>;
|
|
145257
|
+
};
|
|
144094
145258
|
export declare type PostOfficeMessageLiveNudgeDemoMessageData = {
|
|
144095
145259
|
__typename?: 'PostOfficeMessageLiveNudgeDemoMessageData';
|
|
144096
145260
|
message: Scalars['String']['output'];
|
|
@@ -144610,6 +145774,9 @@ export declare type Query = {
|
|
|
144610
145774
|
agentWorkspace_catalogs?: Maybe<AgentWorkspaceCatalogConnection>;
|
|
144611
145775
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
144612
145776
|
agentWorkspace_findBestMatchAgents?: Maybe<AgentWorkspaceFindBestMatchAgentsPayload>;
|
|
145777
|
+
agentWorkspace_hierarchyDefinition?: Maybe<AgentWorkspaceHierarchyDefinition>;
|
|
145778
|
+
agentWorkspace_hierarchyDefinitions?: Maybe<AgentWorkspaceHierarchyDefinitionConnection>;
|
|
145779
|
+
agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
144613
145780
|
agentWorkspace_projectSkill?: Maybe<AgentWorkspaceProjectSkill>;
|
|
144614
145781
|
agentWorkspace_projectSkills?: Maybe<AgentWorkspaceProjectSkillConnection>;
|
|
144615
145782
|
agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
|
|
@@ -144713,6 +145880,7 @@ export declare type Query = {
|
|
|
144713
145880
|
assetsDM_savedSearchDetails?: Maybe<AssetsDmSavedSearchDetails>;
|
|
144714
145881
|
assetsDM_savedSearchesList?: Maybe<AssetsDmSavedSearchesList>;
|
|
144715
145882
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
145883
|
+
assetsVertical_attributeValues?: Maybe<AssetsVerticalAttributeValuesResult>;
|
|
144716
145884
|
assetsVertical_bundle: AssetsVerticalBundle;
|
|
144717
145885
|
assetsVertical_insights?: Maybe<AssetsVerticalInsights>;
|
|
144718
145886
|
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
@@ -144809,6 +145977,10 @@ export declare type Query = {
|
|
|
144809
145977
|
channelPlatform_submitRequest?: Maybe<ChannelPlatformSubmitRequestResponse>;
|
|
144810
145978
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
144811
145979
|
classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
145980
|
+
cloudify_analysisExecutions: Array<CloudifyAnalysisExecution>;
|
|
145981
|
+
cloudify_enactment?: Maybe<CloudifyEnactment>;
|
|
145982
|
+
cloudify_enactments: Array<CloudifyEnactment>;
|
|
145983
|
+
cloudify_greeting: CloudifyGreeting;
|
|
144812
145984
|
cloudify_recommendations: Array<CloudifyRecommendation>;
|
|
144813
145985
|
codeInJira?: Maybe<CodeInJira>;
|
|
144814
145986
|
collabContext_workspaceIsConnectedToWorkspace?: Maybe<CollabContextWorkspaceConnection>;
|
|
@@ -144926,6 +146098,7 @@ export declare type Query = {
|
|
|
144926
146098
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
144927
146099
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
144928
146100
|
confluence_shareConfiguration?: Maybe<ConfluenceShareConfiguration>;
|
|
146101
|
+
confluence_smartSpaceOverview?: Maybe<ConfluenceSmartSpaceOverview>;
|
|
144929
146102
|
confluence_spaceMediaSession?: Maybe<ContentMediaSession>;
|
|
144930
146103
|
confluence_spacePermissionCombinationsByCriteria?: Maybe<ConfluenceSpacePermissionCombinationConnection>;
|
|
144931
146104
|
confluence_spacePermissionsByCombinationId?: Maybe<ConfluenceSpacePermissionConnection>;
|
|
@@ -145021,6 +146194,7 @@ export declare type Query = {
|
|
|
145021
146194
|
csmAi_getWidget?: Maybe<CsmAiWidgetConfigResult>;
|
|
145022
146195
|
csmCustomersByIds?: Maybe<Array<Maybe<CustomerServiceCsmCustomer>>>;
|
|
145023
146196
|
csmOrganizationsByIds?: Maybe<Array<Maybe<CustomerServiceCsmOrganization>>>;
|
|
146197
|
+
csm_liveChatAgent?: Maybe<CustomerServiceLiveChatAgentQueryResult>;
|
|
145024
146198
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
145025
146199
|
customer360_customer?: Maybe<Customer360Customer>;
|
|
145026
146200
|
customer360_customersById?: Maybe<Array<Maybe<Customer360Customer>>>;
|
|
@@ -145296,6 +146470,7 @@ export declare type Query = {
|
|
|
145296
146470
|
kitsune_feedbackEvent?: Maybe<KitsuneFeedbackEvent>;
|
|
145297
146471
|
kitsune_feedbacks?: Maybe<Array<Maybe<KitsuneFeedback>>>;
|
|
145298
146472
|
kitsune_fields?: Maybe<Array<Maybe<KitsuneField>>>;
|
|
146473
|
+
kitsune_insights?: Maybe<Array<Maybe<KitsuneInsight>>>;
|
|
145299
146474
|
kitsune_node?: Maybe<KitsuneNode>;
|
|
145300
146475
|
kitsune_searchFeedback?: Maybe<KitsuneFeedbackConnection>;
|
|
145301
146476
|
kitsune_sections?: Maybe<Array<Maybe<KitsuneSection>>>;
|
|
@@ -145511,6 +146686,8 @@ export declare type Query = {
|
|
|
145511
146686
|
socialSignals?: Maybe<SocialSignalsApi>;
|
|
145512
146687
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
145513
146688
|
softwareCatalog_alertCountsByServiceIds?: Maybe<Array<Maybe<SoftwareCatalogCountByService>>>;
|
|
146689
|
+
softwareCatalog_changeCountsByServiceIds?: Maybe<Array<Maybe<SoftwareCatalogCountByService>>>;
|
|
146690
|
+
softwareCatalog_incidentCountsByServiceIds?: Maybe<Array<Maybe<SoftwareCatalogCountByService>>>;
|
|
145514
146691
|
softwareCatalog_servicesWithActiveIncidents?: Maybe<SoftwareCatalogSearchResult>;
|
|
145515
146692
|
softwareCatalog_servicesWithOpenAlerts?: Maybe<SoftwareCatalogSearchResult>;
|
|
145516
146693
|
softwareCatalog_servicesWithUpcomingChanges?: Maybe<SoftwareCatalogSearchResult>;
|
|
@@ -145546,7 +146723,6 @@ export declare type Query = {
|
|
|
145546
146723
|
spf_planScenariosByIds?: Maybe<Array<Maybe<SpfPlanScenario>>>;
|
|
145547
146724
|
spf_plans?: Maybe<SpfPlanConnection>;
|
|
145548
146725
|
spf_plansByIds?: Maybe<Array<Maybe<SpfPlan>>>;
|
|
145549
|
-
spf_resolveImpactedWorkUrl?: Maybe<SpfResolveImpactedWorkUrlPayload>;
|
|
145550
146726
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
145551
146727
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
145552
146728
|
stakeholderComms_customDomainStatus?: Maybe<StakeholderCommsCustomDomainStatusResponse>;
|
|
@@ -145924,7 +147100,7 @@ export declare type QueryAgentAi_ContextPanelArgs = {
|
|
|
145924
147100
|
};
|
|
145925
147101
|
export declare type QueryAgentAi_PanelArgs = {
|
|
145926
147102
|
cloudId: Scalars['ID']['input'];
|
|
145927
|
-
issueId
|
|
147103
|
+
issueId: Scalars['String']['input'];
|
|
145928
147104
|
};
|
|
145929
147105
|
export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
145930
147106
|
cloudId: Scalars['ID']['input'];
|
|
@@ -145949,6 +147125,7 @@ export declare type QueryAgentStudio_BatchEvalConversationHistoryByIdArgs = {
|
|
|
145949
147125
|
conversationId: Scalars['ID']['input'];
|
|
145950
147126
|
experienceId: Scalars['String']['input'];
|
|
145951
147127
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147128
|
+
productType?: InputMaybe<AgentStudioProductType>;
|
|
145952
147129
|
};
|
|
145953
147130
|
export declare type QueryAgentStudio_BatchEvalConversationListByContainerIdArgs = {
|
|
145954
147131
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -146223,6 +147400,16 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
|
146223
147400
|
export declare type QueryAgentWorkspace_FindBestMatchAgentsArgs = {
|
|
146224
147401
|
input: AgentWorkspaceFindBestMatchAgentsInput;
|
|
146225
147402
|
};
|
|
147403
|
+
export declare type QueryAgentWorkspace_HierarchyDefinitionArgs = {
|
|
147404
|
+
input: AgentWorkspaceHierarchyDefinitionInput;
|
|
147405
|
+
};
|
|
147406
|
+
export declare type QueryAgentWorkspace_HierarchyDefinitionsArgs = {
|
|
147407
|
+
input: AgentWorkspaceHierarchyDefinitionsInput;
|
|
147408
|
+
};
|
|
147409
|
+
export declare type QueryAgentWorkspace_ProjectDefaultAvailabilityArgs = {
|
|
147410
|
+
cloudId: Scalars['ID']['input'];
|
|
147411
|
+
projectId: Scalars['ID']['input'];
|
|
147412
|
+
};
|
|
146226
147413
|
export declare type QueryAgentWorkspace_ProjectSkillArgs = {
|
|
146227
147414
|
input: AgentWorkspaceProjectSkillInput;
|
|
146228
147415
|
};
|
|
@@ -146230,7 +147417,8 @@ export declare type QueryAgentWorkspace_ProjectSkillsArgs = {
|
|
|
146230
147417
|
input: AgentWorkspaceProjectSkillsInput;
|
|
146231
147418
|
};
|
|
146232
147419
|
export declare type QueryAgentWorkspace_RecommendedAssigneesArgs = {
|
|
146233
|
-
cloudId
|
|
147420
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
147421
|
+
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
146234
147422
|
projectARI: Scalars['ID']['input'];
|
|
146235
147423
|
};
|
|
146236
147424
|
export declare type QueryAgentWorkspace_ScheduleArgs = {
|
|
@@ -146772,6 +147960,10 @@ export declare type QueryAssetsDm_TransformedDataArgs = {
|
|
|
146772
147960
|
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
146773
147961
|
workspaceId: Scalars['ID']['input'];
|
|
146774
147962
|
};
|
|
147963
|
+
export declare type QueryAssetsVertical_AttributeValuesArgs = {
|
|
147964
|
+
cloudId: Scalars['ID']['input'];
|
|
147965
|
+
input: AssetsVerticalAttributeValuesInput;
|
|
147966
|
+
};
|
|
146775
147967
|
export declare type QueryAssetsVertical_BundleArgs = {
|
|
146776
147968
|
cloudId: Scalars['ID']['input'];
|
|
146777
147969
|
type: AssetsVerticalBundleType;
|
|
@@ -147099,6 +148291,19 @@ export declare type QueryClassificationLevelsArgs = {
|
|
|
147099
148291
|
reclassificationFilterScope?: InputMaybe<ReclassificationFilterScope>;
|
|
147100
148292
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
147101
148293
|
};
|
|
148294
|
+
export declare type QueryCloudify_AnalysisExecutionsArgs = {
|
|
148295
|
+
projectId: Scalars['ID']['input'];
|
|
148296
|
+
siteId: Scalars['ID']['input'];
|
|
148297
|
+
};
|
|
148298
|
+
export declare type QueryCloudify_EnactmentArgs = {
|
|
148299
|
+
enactmentId: Scalars['ID']['input'];
|
|
148300
|
+
};
|
|
148301
|
+
export declare type QueryCloudify_EnactmentsArgs = {
|
|
148302
|
+
recommendationId: Scalars['ID']['input'];
|
|
148303
|
+
};
|
|
148304
|
+
export declare type QueryCloudify_GreetingArgs = {
|
|
148305
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
148306
|
+
};
|
|
147102
148307
|
export declare type QueryCloudify_RecommendationsArgs = {
|
|
147103
148308
|
projectId: Scalars['ID']['input'];
|
|
147104
148309
|
siteId: Scalars['ID']['input'];
|
|
@@ -147663,6 +148868,10 @@ export declare type QueryConfluence_SearchUserArgs = {
|
|
|
147663
148868
|
export declare type QueryConfluence_ShareConfigurationArgs = {
|
|
147664
148869
|
cloudId: Scalars['ID']['input'];
|
|
147665
148870
|
};
|
|
148871
|
+
export declare type QueryConfluence_SmartSpaceOverviewArgs = {
|
|
148872
|
+
cloudId: Scalars['ID']['input'];
|
|
148873
|
+
spaceKey: Scalars['String']['input'];
|
|
148874
|
+
};
|
|
147666
148875
|
export declare type QueryConfluence_SpaceMediaSessionArgs = {
|
|
147667
148876
|
cloudId: Scalars['ID']['input'];
|
|
147668
148877
|
contentType: Scalars['String']['input'];
|
|
@@ -147715,6 +148924,7 @@ export declare type QueryConfluence_SpacesByCombinationIdArgs = {
|
|
|
147715
148924
|
cloudId: Scalars['ID']['input'];
|
|
147716
148925
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
147717
148926
|
permissionCombinationId: Scalars['String']['input'];
|
|
148927
|
+
spaceId?: InputMaybe<Scalars['Long']['input']>;
|
|
147718
148928
|
spaceSelection?: InputMaybe<ConfluencePermissionTransitionSpaceTargetSelectionInput>;
|
|
147719
148929
|
spaceTypeFilters?: InputMaybe<Array<InputMaybe<ConfluencePermissionTransitionSpaceTypeFilter>>>;
|
|
147720
148930
|
};
|
|
@@ -148166,6 +149376,10 @@ export declare type QueryCsmCustomersByIdsArgs = {
|
|
|
148166
149376
|
export declare type QueryCsmOrganizationsByIdsArgs = {
|
|
148167
149377
|
csmOrganizationAris: Array<Scalars['ID']['input']>;
|
|
148168
149378
|
};
|
|
149379
|
+
export declare type QueryCsm_LiveChatAgentArgs = {
|
|
149380
|
+
accountId: Scalars['ID']['input'];
|
|
149381
|
+
cloudId: Scalars['ID']['input'];
|
|
149382
|
+
};
|
|
148169
149383
|
export declare type QueryCustomer360_CustomerArgs = {
|
|
148170
149384
|
domain: Scalars['String']['input'];
|
|
148171
149385
|
};
|
|
@@ -149210,6 +150424,9 @@ export declare type QueryKitsune_FeedbacksArgs = {
|
|
|
149210
150424
|
export declare type QueryKitsune_FieldsArgs = {
|
|
149211
150425
|
ids: Array<Scalars['ID']['input']>;
|
|
149212
150426
|
};
|
|
150427
|
+
export declare type QueryKitsune_InsightsArgs = {
|
|
150428
|
+
ids: Array<Scalars['ID']['input']>;
|
|
150429
|
+
};
|
|
149213
150430
|
export declare type QueryKitsune_NodeArgs = {
|
|
149214
150431
|
id: Scalars['ID']['input'];
|
|
149215
150432
|
};
|
|
@@ -149954,7 +151171,12 @@ export declare type QuerySoftwareBoardsArgs = {
|
|
|
149954
151171
|
projectAri: Scalars['ID']['input'];
|
|
149955
151172
|
};
|
|
149956
151173
|
export declare type QuerySoftwareCatalog_AlertCountsByServiceIdsArgs = {
|
|
149957
|
-
|
|
151174
|
+
serviceIds: Array<Scalars['ID']['input']>;
|
|
151175
|
+
};
|
|
151176
|
+
export declare type QuerySoftwareCatalog_ChangeCountsByServiceIdsArgs = {
|
|
151177
|
+
serviceIds: Array<Scalars['ID']['input']>;
|
|
151178
|
+
};
|
|
151179
|
+
export declare type QuerySoftwareCatalog_IncidentCountsByServiceIdsArgs = {
|
|
149958
151180
|
serviceIds: Array<Scalars['ID']['input']>;
|
|
149959
151181
|
};
|
|
149960
151182
|
export declare type QuerySoftwareCatalog_ServicesWithActiveIncidentsArgs = {
|
|
@@ -150121,10 +151343,6 @@ export declare type QuerySpf_PlansArgs = {
|
|
|
150121
151343
|
export declare type QuerySpf_PlansByIdsArgs = {
|
|
150122
151344
|
ids: Array<Scalars['ID']['input']>;
|
|
150123
151345
|
};
|
|
150124
|
-
export declare type QuerySpf_ResolveImpactedWorkUrlArgs = {
|
|
150125
|
-
cloudId: Scalars['ID']['input'];
|
|
150126
|
-
url: Scalars['String']['input'];
|
|
150127
|
-
};
|
|
150128
151346
|
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
150129
151347
|
appId: Scalars['ID']['input'];
|
|
150130
151348
|
installationId: Scalars['ID']['input'];
|
|
@@ -153450,6 +154668,7 @@ export declare type SearchItemConnection = {
|
|
|
153450
154668
|
searchSessionId?: Maybe<Scalars['String']['output']>;
|
|
153451
154669
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
153452
154670
|
totalCounts: Array<SearchProductCount>;
|
|
154671
|
+
traceId?: Maybe<Scalars['String']['output']>;
|
|
153453
154672
|
};
|
|
153454
154673
|
export declare type SearchJiraFilter = {
|
|
153455
154674
|
boardFilter?: InputMaybe<SearchBoardFilter>;
|
|
@@ -153872,6 +155091,8 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
153872
155091
|
allContributors?: Maybe<Array<ThirdPartyUser>>;
|
|
153873
155092
|
attachments?: Maybe<Array<SearchResultGraphAttachment>>;
|
|
153874
155093
|
bodyText?: Maybe<Scalars['String']['output']>;
|
|
155094
|
+
connectorId?: Maybe<Scalars['String']['output']>;
|
|
155095
|
+
connectorProduct?: Maybe<Scalars['String']['output']>;
|
|
153875
155096
|
connectorType?: Maybe<Scalars['String']['output']>;
|
|
153876
155097
|
containerName?: Maybe<Scalars['String']['output']>;
|
|
153877
155098
|
description: Scalars['String']['output'];
|
|
@@ -154274,6 +155495,7 @@ export declare type SearchThirdPartyFilter = {
|
|
|
154274
155495
|
export declare type SearchThirdPartyMetadata = {
|
|
154275
155496
|
__typename?: 'SearchThirdPartyMetadata';
|
|
154276
155497
|
connectionId?: Maybe<Scalars['String']['output']>;
|
|
155498
|
+
connectorCreatedAt?: Maybe<Scalars['String']['output']>;
|
|
154277
155499
|
connectorSyncType?: Maybe<Scalars['String']['output']>;
|
|
154278
155500
|
datasourceId?: Maybe<Scalars['String']['output']>;
|
|
154279
155501
|
entityTypes?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -174520,6 +175742,7 @@ export declare type SpcsFullSiteScanListResponse = {
|
|
|
174520
175742
|
nextCursor?: Maybe<Scalars['String']['output']>;
|
|
174521
175743
|
};
|
|
174522
175744
|
export declare enum SpcsFullSiteScanStatus {
|
|
175745
|
+
Cancelled = "CANCELLED",
|
|
174523
175746
|
Done = "DONE",
|
|
174524
175747
|
Failed = "FAILED",
|
|
174525
175748
|
InProgress = "IN_PROGRESS",
|
|
@@ -174552,6 +175775,7 @@ export declare type SpcsScanDetails = {
|
|
|
174552
175775
|
scanBootstraps: Array<SpcsScanBootstrap>;
|
|
174553
175776
|
};
|
|
174554
175777
|
export declare type SpcsStartFullSiteScanInput = {
|
|
175778
|
+
dryRun?: InputMaybe<Scalars['Boolean']['input']>;
|
|
174555
175779
|
workspaceAris: Array<Scalars['String']['input']>;
|
|
174556
175780
|
};
|
|
174557
175781
|
export declare type SpcsStartFullSiteScanPayload = {
|
|
@@ -175078,6 +176302,7 @@ export declare type SpfPlan = Node & {
|
|
|
175078
176302
|
name: Scalars['String']['output'];
|
|
175079
176303
|
owners?: Maybe<SpfPlanOwnerConnection>;
|
|
175080
176304
|
portfolio?: Maybe<MercuryFocusArea>;
|
|
176305
|
+
portfolioAllowedType?: Maybe<SpfPlanPortfolioAllowedType>;
|
|
175081
176306
|
scenarios?: Maybe<SpfPlanScenarioConnection>;
|
|
175082
176307
|
status: SpfPlanStatus;
|
|
175083
176308
|
timeframe: SpfPlanTimeframe;
|
|
@@ -175276,10 +176501,6 @@ export declare type SpfRemovePlanOwnerPayload = Payload & {
|
|
|
175276
176501
|
planId: Scalars['ID']['output'];
|
|
175277
176502
|
success: Scalars['Boolean']['output'];
|
|
175278
176503
|
};
|
|
175279
|
-
export declare type SpfResolveImpactedWorkUrlPayload = {
|
|
175280
|
-
__typename?: 'SpfResolveImpactedWorkUrlPayload';
|
|
175281
|
-
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
175282
|
-
};
|
|
175283
176504
|
export declare type SpfResolveProposedDateInput = {
|
|
175284
176505
|
askId: Scalars['String']['input'];
|
|
175285
176506
|
};
|
|
@@ -177996,6 +179217,7 @@ export declare type TeamMutation = {
|
|
|
177996
179217
|
updateCustomField?: Maybe<TeamDetailedCustomFieldInfo>;
|
|
177997
179218
|
updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
|
|
177998
179219
|
updateTeam?: Maybe<TeamUpdatePayload>;
|
|
179220
|
+
updateTeamTypePermissions?: Maybe<TeamUpdateTeamTypePermissionsPayload>;
|
|
177999
179221
|
updateType?: Maybe<TeamType>;
|
|
178000
179222
|
};
|
|
178001
179223
|
export declare type TeamMutationAddChildArgs = {
|
|
@@ -178087,6 +179309,9 @@ export declare type TeamMutationUpdateRoleAssignmentsArgs = {
|
|
|
178087
179309
|
export declare type TeamMutationUpdateTeamArgs = {
|
|
178088
179310
|
input: TeamUpdateTeamInput;
|
|
178089
179311
|
};
|
|
179312
|
+
export declare type TeamMutationUpdateTeamTypePermissionsArgs = {
|
|
179313
|
+
input: TeamUpdateTeamTypePermissionsInput;
|
|
179314
|
+
};
|
|
178090
179315
|
export declare type TeamMutationUpdateTypeArgs = {
|
|
178091
179316
|
id: Scalars['ID']['input'];
|
|
178092
179317
|
typeData: TeamTypeUpdatePayload;
|
|
@@ -178183,6 +179408,7 @@ export declare type TeamQueryTeamSearchV2Args = {
|
|
|
178183
179408
|
showEmptyTeams?: InputMaybe<Scalars['Boolean']['input']>;
|
|
178184
179409
|
siteId: Scalars['String']['input'];
|
|
178185
179410
|
sortBy?: InputMaybe<Array<InputMaybe<TeamSort>>>;
|
|
179411
|
+
state?: InputMaybe<Array<InputMaybe<TeamSearchStateV2>>>;
|
|
178186
179412
|
};
|
|
178187
179413
|
export declare type TeamQueryTeamV2Args = {
|
|
178188
179414
|
id: Scalars['ID']['input'];
|
|
@@ -178265,6 +179491,10 @@ export declare type TeamSearchResultV2 = {
|
|
|
178265
179491
|
memberCount?: Maybe<Scalars['Int']['output']>;
|
|
178266
179492
|
team?: Maybe<TeamV2>;
|
|
178267
179493
|
};
|
|
179494
|
+
export declare enum TeamSearchStateV2 {
|
|
179495
|
+
Active = "ACTIVE",
|
|
179496
|
+
Disbanded = "DISBANDED"
|
|
179497
|
+
}
|
|
178268
179498
|
export declare type TeamSetNotificationConfigurationInput = {
|
|
178269
179499
|
ari: Scalars['ID']['input'];
|
|
178270
179500
|
enabled: Scalars['Boolean']['input'];
|
|
@@ -178309,8 +179539,13 @@ export declare type TeamType = {
|
|
|
178309
179539
|
name: Scalars['String']['output'];
|
|
178310
179540
|
state?: Maybe<TeamTypeState>;
|
|
178311
179541
|
teamScope: Scalars['ID']['output'];
|
|
179542
|
+
typeLevelPermissions?: Maybe<TeamTypePermissionDelegationConnection>;
|
|
178312
179543
|
verified?: Maybe<Scalars['Boolean']['output']>;
|
|
178313
179544
|
};
|
|
179545
|
+
export declare type TeamTypeTypeLevelPermissionsArgs = {
|
|
179546
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
179547
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
179548
|
+
};
|
|
178314
179549
|
export declare type TeamTypeConnection = {
|
|
178315
179550
|
__typename?: 'TeamTypeConnection';
|
|
178316
179551
|
edges?: Maybe<Array<TeamTypeEdge>>;
|
|
@@ -178326,6 +179561,10 @@ export declare enum TeamTypeDefaultFor {
|
|
|
178326
179561
|
UserManaged = "USER_MANAGED",
|
|
178327
179562
|
Verified = "VERIFIED"
|
|
178328
179563
|
}
|
|
179564
|
+
export declare enum TeamTypeDefaultPermissionEntity {
|
|
179565
|
+
OrgAdmin = "ORG_ADMIN",
|
|
179566
|
+
TeamsAppUser = "TEAMS_APP_USER"
|
|
179567
|
+
}
|
|
178329
179568
|
export declare type TeamTypeEdge = {
|
|
178330
179569
|
__typename?: 'TeamTypeEdge';
|
|
178331
179570
|
cursor: Scalars['String']['output'];
|
|
@@ -178334,6 +179573,58 @@ export declare type TeamTypeEdge = {
|
|
|
178334
179573
|
export declare type TeamTypeFilter = {
|
|
178335
179574
|
teamTypeIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
178336
179575
|
};
|
|
179576
|
+
export declare type TeamTypeLevelDefaultPermissionEntity = {
|
|
179577
|
+
__typename?: 'TeamTypeLevelDefaultPermissionEntity';
|
|
179578
|
+
type: TeamTypeDefaultPermissionEntity;
|
|
179579
|
+
};
|
|
179580
|
+
export declare enum TeamTypeLevelPermission {
|
|
179581
|
+
CreateTeams = "CREATE_TEAMS",
|
|
179582
|
+
DeleteTeams = "DELETE_TEAMS",
|
|
179583
|
+
ManageTeams = "MANAGE_TEAMS"
|
|
179584
|
+
}
|
|
179585
|
+
export declare type TeamTypeLevelPermissionDelegation = {
|
|
179586
|
+
__typename?: 'TeamTypeLevelPermissionDelegation';
|
|
179587
|
+
entity?: Maybe<TeamTypePermissionAssignedEntity>;
|
|
179588
|
+
permissions: Array<TeamTypeLevelPermissionDetails>;
|
|
179589
|
+
};
|
|
179590
|
+
export declare type TeamTypeLevelPermissionDetails = {
|
|
179591
|
+
__typename?: 'TeamTypeLevelPermissionDetails';
|
|
179592
|
+
canBeModified: Scalars['Boolean']['output'];
|
|
179593
|
+
granted: Scalars['Boolean']['output'];
|
|
179594
|
+
permission: TeamTypeLevelPermission;
|
|
179595
|
+
};
|
|
179596
|
+
export declare type TeamTypeLevelPermissionInput = {
|
|
179597
|
+
granted: Scalars['Boolean']['input'];
|
|
179598
|
+
permission: TeamTypeLevelPermission;
|
|
179599
|
+
};
|
|
179600
|
+
export declare type TeamTypePermissionAssignedEntity = TeamTypeLevelDefaultPermissionEntity | TeamTypePermissionAssignedGroup | TeamTypePermissionAssignedTeam | TeamTypePermissionAssignedUser;
|
|
179601
|
+
export declare type TeamTypePermissionAssignedEntityInput = {
|
|
179602
|
+
entityId: Scalars['ID']['input'];
|
|
179603
|
+
permissions: Array<TeamTypeLevelPermissionInput>;
|
|
179604
|
+
};
|
|
179605
|
+
export declare type TeamTypePermissionAssignedGroup = {
|
|
179606
|
+
__typename?: 'TeamTypePermissionAssignedGroup';
|
|
179607
|
+
group?: Maybe<Group>;
|
|
179608
|
+
};
|
|
179609
|
+
export declare type TeamTypePermissionAssignedTeam = {
|
|
179610
|
+
__typename?: 'TeamTypePermissionAssignedTeam';
|
|
179611
|
+
team?: Maybe<TeamV2>;
|
|
179612
|
+
};
|
|
179613
|
+
export declare type TeamTypePermissionAssignedUser = {
|
|
179614
|
+
__typename?: 'TeamTypePermissionAssignedUser';
|
|
179615
|
+
user?: Maybe<User>;
|
|
179616
|
+
};
|
|
179617
|
+
export declare type TeamTypePermissionDelegationConnection = {
|
|
179618
|
+
__typename?: 'TeamTypePermissionDelegationConnection';
|
|
179619
|
+
edges?: Maybe<Array<TeamTypePermissionDelegationEdge>>;
|
|
179620
|
+
nodes?: Maybe<Array<TeamTypeLevelPermissionDelegation>>;
|
|
179621
|
+
pageInfo: PageInfo;
|
|
179622
|
+
};
|
|
179623
|
+
export declare type TeamTypePermissionDelegationEdge = {
|
|
179624
|
+
__typename?: 'TeamTypePermissionDelegationEdge';
|
|
179625
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
179626
|
+
node?: Maybe<TeamTypeLevelPermissionDelegation>;
|
|
179627
|
+
};
|
|
178337
179628
|
export declare enum TeamTypeState {
|
|
178338
179629
|
Active = "ACTIVE",
|
|
178339
179630
|
DeleteInProgress = "DELETE_IN_PROGRESS"
|
|
@@ -178363,6 +179654,18 @@ export declare type TeamUpdateTeamInput = {
|
|
|
178363
179654
|
scopeId: Scalars['ID']['input'];
|
|
178364
179655
|
teamId: Scalars['ID']['input'];
|
|
178365
179656
|
};
|
|
179657
|
+
export declare type TeamUpdateTeamTypePermissionsInput = {
|
|
179658
|
+
deleted: Array<Scalars['ID']['input']>;
|
|
179659
|
+
scopeId: Scalars['ID']['input'];
|
|
179660
|
+
typeId: Scalars['ID']['input'];
|
|
179661
|
+
updated: Array<TeamTypePermissionAssignedEntityInput>;
|
|
179662
|
+
};
|
|
179663
|
+
export declare type TeamUpdateTeamTypePermissionsPayload = Payload & {
|
|
179664
|
+
__typename?: 'TeamUpdateTeamTypePermissionsPayload';
|
|
179665
|
+
errors?: Maybe<Array<MutationError>>;
|
|
179666
|
+
success: Scalars['Boolean']['output'];
|
|
179667
|
+
teamType?: Maybe<TeamType>;
|
|
179668
|
+
};
|
|
178366
179669
|
export declare type TeamV2 = Node & {
|
|
178367
179670
|
__typename?: 'TeamV2';
|
|
178368
179671
|
creator?: Maybe<User>;
|
|
@@ -178547,6 +179850,7 @@ export declare type TestingSubscription = {
|
|
|
178547
179850
|
__typename?: 'TestingSubscription';
|
|
178548
179851
|
onTestingActivityItemUpdate?: Maybe<TestingActivityItem>;
|
|
178549
179852
|
onTestingActivityItemUpdateEnrichJira?: Maybe<TestingActivityItem>;
|
|
179853
|
+
onTestingActivityItemUpdateTest?: Maybe<TestingActivityItem>;
|
|
178550
179854
|
};
|
|
178551
179855
|
export declare type TestingSubscriptionOnTestingActivityItemUpdateArgs = {
|
|
178552
179856
|
issueId: Scalars['ID']['input'];
|
|
@@ -178554,6 +179858,9 @@ export declare type TestingSubscriptionOnTestingActivityItemUpdateArgs = {
|
|
|
178554
179858
|
export declare type TestingSubscriptionOnTestingActivityItemUpdateEnrichJiraArgs = {
|
|
178555
179859
|
issueId: Scalars['ID']['input'];
|
|
178556
179860
|
};
|
|
179861
|
+
export declare type TestingSubscriptionOnTestingActivityItemUpdateTestArgs = {
|
|
179862
|
+
issueId: Scalars['ID']['input'];
|
|
179863
|
+
};
|
|
178557
179864
|
export declare type Theme = {
|
|
178558
179865
|
__typename?: 'Theme';
|
|
178559
179866
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -178618,13 +179925,33 @@ export declare type ThirdPartyUser = LocalizationContext & {
|
|
|
178618
179925
|
updatedAt: Scalars['DateTime']['output'];
|
|
178619
179926
|
zoneinfo?: Maybe<Scalars['String']['output']>;
|
|
178620
179927
|
};
|
|
179928
|
+
export declare type ThirdPartyUserAddress = {
|
|
179929
|
+
__typename?: 'ThirdPartyUserAddress';
|
|
179930
|
+
city?: Maybe<Scalars['String']['output']>;
|
|
179931
|
+
country?: Maybe<Scalars['String']['output']>;
|
|
179932
|
+
countryCode?: Maybe<Scalars['String']['output']>;
|
|
179933
|
+
geocodeAccuracy?: Maybe<Scalars['String']['output']>;
|
|
179934
|
+
latitude?: Maybe<Scalars['Float']['output']>;
|
|
179935
|
+
longitude?: Maybe<Scalars['Float']['output']>;
|
|
179936
|
+
postalCode?: Maybe<Scalars['String']['output']>;
|
|
179937
|
+
state?: Maybe<Scalars['String']['output']>;
|
|
179938
|
+
stateCode?: Maybe<Scalars['String']['output']>;
|
|
179939
|
+
street?: Maybe<Scalars['String']['output']>;
|
|
179940
|
+
};
|
|
178621
179941
|
export declare type ThirdPartyUserExtendedProfile = {
|
|
178622
179942
|
__typename?: 'ThirdPartyUserExtendedProfile';
|
|
179943
|
+
birthDate?: Maybe<Scalars['String']['output']>;
|
|
178623
179944
|
department?: Maybe<Scalars['String']['output']>;
|
|
179945
|
+
gender?: Maybe<Scalars['String']['output']>;
|
|
178624
179946
|
jobTitle?: Maybe<Scalars['String']['output']>;
|
|
178625
179947
|
location?: Maybe<Scalars['String']['output']>;
|
|
179948
|
+
mailingAddress?: Maybe<ThirdPartyUserAddress>;
|
|
178626
179949
|
organization?: Maybe<Scalars['String']['output']>;
|
|
179950
|
+
otherAddress?: Maybe<ThirdPartyUserAddress>;
|
|
178627
179951
|
phoneNumbers?: Maybe<Array<Maybe<ThirdPartyUserPhoneNumber>>>;
|
|
179952
|
+
pronouns?: Maybe<Scalars['String']['output']>;
|
|
179953
|
+
salutation?: Maybe<Scalars['String']['output']>;
|
|
179954
|
+
suffix?: Maybe<Scalars['String']['output']>;
|
|
178628
179955
|
};
|
|
178629
179956
|
export declare type ThirdPartyUserPhoneNumber = {
|
|
178630
179957
|
__typename?: 'ThirdPartyUserPhoneNumber';
|
|
@@ -179722,6 +181049,16 @@ export declare enum TownsquareGoalIconKey {
|
|
|
179722
181049
|
KeyResult = "KEY_RESULT",
|
|
179723
181050
|
Objective = "OBJECTIVE"
|
|
179724
181051
|
}
|
|
181052
|
+
export declare type TownsquareGoalManageAccessInput = {
|
|
181053
|
+
accessLevel?: InputMaybe<TownsquareGoalAccessLevel>;
|
|
181054
|
+
goalId: Scalars['ID']['input'];
|
|
181055
|
+
};
|
|
181056
|
+
export declare type TownsquareGoalManageAccessPayload = {
|
|
181057
|
+
__typename?: 'TownsquareGoalManageAccessPayload';
|
|
181058
|
+
errors?: Maybe<Array<MutationError>>;
|
|
181059
|
+
goal?: Maybe<TownsquareGoal>;
|
|
181060
|
+
success: Scalars['Boolean']['output'];
|
|
181061
|
+
};
|
|
179725
181062
|
export declare type TownsquareGoalMetricUpdate = {
|
|
179726
181063
|
__typename?: 'TownsquareGoalMetricUpdate';
|
|
179727
181064
|
metric?: Maybe<TownsquareMetric>;
|
|
@@ -180790,6 +182127,7 @@ export declare type TownsquareNumberCustomFieldDefinition = Node & TownsquareCus
|
|
|
180790
182127
|
export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
180791
182128
|
__typename?: 'TownsquareProject';
|
|
180792
182129
|
access?: Maybe<TownsquareProjectAccessConnection>;
|
|
182130
|
+
accessLevel?: Maybe<TownsquareProjectAccessLevel>;
|
|
180793
182131
|
archived: Scalars['Boolean']['output'];
|
|
180794
182132
|
canEditMembers?: Maybe<Scalars['Boolean']['output']>;
|
|
180795
182133
|
capabilities?: Maybe<TownsquareProjectCapabilities>;
|
|
@@ -180969,6 +182307,11 @@ export declare type TownsquareProjectAccessEdge = {
|
|
|
180969
182307
|
principalAri?: Maybe<Scalars['String']['output']>;
|
|
180970
182308
|
role?: Maybe<TownsquareProjectAccessRole>;
|
|
180971
182309
|
};
|
|
182310
|
+
export declare enum TownsquareProjectAccessLevel {
|
|
182311
|
+
OpenEdit = "OPEN_EDIT",
|
|
182312
|
+
OpenView = "OPEN_VIEW",
|
|
182313
|
+
Restricted = "RESTRICTED"
|
|
182314
|
+
}
|
|
180972
182315
|
export declare enum TownsquareProjectAccessRole {
|
|
180973
182316
|
Editor = "EDITOR",
|
|
180974
182317
|
Viewer = "VIEWER"
|
|
@@ -181099,6 +182442,16 @@ export declare type TownsquareProjectGrantAccessPayload = {
|
|
|
181099
182442
|
project?: Maybe<TownsquareProject>;
|
|
181100
182443
|
success: Scalars['Boolean']['output'];
|
|
181101
182444
|
};
|
|
182445
|
+
export declare type TownsquareProjectManageAccessInput = {
|
|
182446
|
+
accessLevel?: InputMaybe<TownsquareProjectAccessLevel>;
|
|
182447
|
+
projectId: Scalars['ID']['input'];
|
|
182448
|
+
};
|
|
182449
|
+
export declare type TownsquareProjectManageAccessPayload = {
|
|
182450
|
+
__typename?: 'TownsquareProjectManageAccessPayload';
|
|
182451
|
+
errors?: Maybe<Array<MutationError>>;
|
|
182452
|
+
project?: Maybe<TownsquareProject>;
|
|
182453
|
+
success: Scalars['Boolean']['output'];
|
|
182454
|
+
};
|
|
181102
182455
|
export declare enum TownsquareProjectPhase {
|
|
181103
182456
|
Done = "done",
|
|
181104
182457
|
InProgress = "in_progress",
|
|
@@ -182782,6 +184135,10 @@ export declare type TrelloBaseBoardPlannerEventCardsArgs = {
|
|
|
182782
184135
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
182783
184136
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
182784
184137
|
};
|
|
184138
|
+
export declare type TrelloBaseBoardId = {
|
|
184139
|
+
id: Scalars['ID']['output'];
|
|
184140
|
+
objectId: Scalars['ID']['output'];
|
|
184141
|
+
};
|
|
182785
184142
|
export declare type TrelloBaseBoardPrefs = {
|
|
182786
184143
|
autoArchive?: Maybe<Scalars['Boolean']['output']>;
|
|
182787
184144
|
background?: Maybe<TrelloBoardBackground>;
|
|
@@ -182856,6 +184213,11 @@ export declare type TrelloBaseCardPlannerEventsArgs = {
|
|
|
182856
184213
|
export declare type TrelloBaseCardDeleted = {
|
|
182857
184214
|
id: Scalars['ID']['output'];
|
|
182858
184215
|
};
|
|
184216
|
+
export declare type TrelloBaseCardMoved = {
|
|
184217
|
+
id: Scalars['ID']['output'];
|
|
184218
|
+
list?: Maybe<TrelloListContainer>;
|
|
184219
|
+
objectId: Scalars['ID']['output'];
|
|
184220
|
+
};
|
|
182859
184221
|
export declare type TrelloBaseCardUpdated = {
|
|
182860
184222
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
182861
184223
|
attachments?: Maybe<TrelloAttachmentConnectionUpdated>;
|
|
@@ -183025,6 +184387,11 @@ export declare type TrelloBoardEdge = {
|
|
|
183025
184387
|
cursor: Scalars['String']['output'];
|
|
183026
184388
|
node: TrelloBoard;
|
|
183027
184389
|
};
|
|
184390
|
+
export declare type TrelloBoardId = TrelloBaseBoardId & {
|
|
184391
|
+
__typename?: 'TrelloBoardId';
|
|
184392
|
+
id: Scalars['ID']['output'];
|
|
184393
|
+
objectId: Scalars['ID']['output'];
|
|
184394
|
+
};
|
|
183028
184395
|
export declare type TrelloBoardLabelsLimits = {
|
|
183029
184396
|
__typename?: 'TrelloBoardLabelsLimits';
|
|
183030
184397
|
perBoard?: Maybe<TrelloLimitProps>;
|
|
@@ -183181,6 +184548,7 @@ export declare type TrelloBoardUpdated = TrelloBaseBoardUpdated & {
|
|
|
183181
184548
|
enterprise?: Maybe<TrelloEnterprise>;
|
|
183182
184549
|
id?: Maybe<Scalars['ID']['output']>;
|
|
183183
184550
|
labels?: Maybe<TrelloLabelConnectionUpdated>;
|
|
184551
|
+
limits?: Maybe<TrelloBoardLimits>;
|
|
183184
184552
|
lists?: Maybe<TrelloListUpdatedConnection>;
|
|
183185
184553
|
members?: Maybe<TrelloBoardMembershipsConnection>;
|
|
183186
184554
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -183269,7 +184637,7 @@ export declare type TrelloCard = Node & TrelloBaseCard & {
|
|
|
183269
184637
|
location?: Maybe<TrelloCardLocation>;
|
|
183270
184638
|
members?: Maybe<TrelloMemberConnection>;
|
|
183271
184639
|
membersVoted?: Maybe<TrelloMemberConnection>;
|
|
183272
|
-
mirrorSource?: Maybe<
|
|
184640
|
+
mirrorSource?: Maybe<TrelloBaseCard>;
|
|
183273
184641
|
mirrorSourceId?: Maybe<Scalars['ID']['output']>;
|
|
183274
184642
|
mirrorSourceNodeId?: Maybe<Scalars['String']['output']>;
|
|
183275
184643
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -183583,6 +184951,7 @@ export declare type TrelloCardEdgeUpdated = {
|
|
|
183583
184951
|
};
|
|
183584
184952
|
export declare enum TrelloCardExternalSource {
|
|
183585
184953
|
BrowserExtension = "BROWSER_EXTENSION",
|
|
184954
|
+
Confluence = "CONFLUENCE",
|
|
183586
184955
|
Email = "EMAIL",
|
|
183587
184956
|
Loom = "LOOM",
|
|
183588
184957
|
Msteams = "MSTEAMS",
|
|
@@ -183620,6 +184989,12 @@ export declare type TrelloCardMemberEdgeUpdated = {
|
|
|
183620
184989
|
__typename?: 'TrelloCardMemberEdgeUpdated';
|
|
183621
184990
|
node?: Maybe<TrelloMember>;
|
|
183622
184991
|
};
|
|
184992
|
+
export declare type TrelloCardMoved = TrelloBaseCardMoved & {
|
|
184993
|
+
__typename?: 'TrelloCardMoved';
|
|
184994
|
+
id: Scalars['ID']['output'];
|
|
184995
|
+
list?: Maybe<TrelloListContainer>;
|
|
184996
|
+
objectId: Scalars['ID']['output'];
|
|
184997
|
+
};
|
|
183623
184998
|
export declare type TrelloCardPlannerEvent = {
|
|
183624
184999
|
__typename?: 'TrelloCardPlannerEvent';
|
|
183625
185000
|
event?: Maybe<TrelloPlannerCalendarEvent>;
|
|
@@ -183667,7 +185042,7 @@ export declare type TrelloCardUpdated = TrelloBaseCardUpdated & {
|
|
|
183667
185042
|
location?: Maybe<TrelloCardLocation>;
|
|
183668
185043
|
members?: Maybe<TrelloMemberUpdatedConnection>;
|
|
183669
185044
|
membersVoted?: Maybe<TrelloMemberUpdatedConnection>;
|
|
183670
|
-
mirrorSource?: Maybe<
|
|
185045
|
+
mirrorSource?: Maybe<TrelloBaseCard>;
|
|
183671
185046
|
mirrorSourceId?: Maybe<Scalars['ID']['output']>;
|
|
183672
185047
|
mirrorSourceObjectId?: Maybe<Scalars['ID']['output']>;
|
|
183673
185048
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -183739,7 +185114,7 @@ export declare enum TrelloCheckItemState {
|
|
|
183739
185114
|
export declare type TrelloChecklist = Node & {
|
|
183740
185115
|
__typename?: 'TrelloChecklist';
|
|
183741
185116
|
board?: Maybe<TrelloBoard>;
|
|
183742
|
-
card?: Maybe<
|
|
185117
|
+
card?: Maybe<TrelloBaseCard>;
|
|
183743
185118
|
checkItems?: Maybe<TrelloCheckItemConnection>;
|
|
183744
185119
|
id: Scalars['ID']['output'];
|
|
183745
185120
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -184113,7 +185488,7 @@ export declare type TrelloCustomFieldId = {
|
|
|
184113
185488
|
export declare type TrelloCustomFieldItem = {
|
|
184114
185489
|
__typename?: 'TrelloCustomFieldItem';
|
|
184115
185490
|
customField?: Maybe<TrelloCustomField>;
|
|
184116
|
-
model?: Maybe<
|
|
185491
|
+
model?: Maybe<TrelloBaseCard>;
|
|
184117
185492
|
objectId: Scalars['ID']['output'];
|
|
184118
185493
|
value?: Maybe<TrelloCustomFieldItemValueInfo>;
|
|
184119
185494
|
};
|
|
@@ -184439,6 +185814,12 @@ export declare type TrelloInboxCardDeleted = TrelloBaseCardDeleted & {
|
|
|
184439
185814
|
__typename?: 'TrelloInboxCardDeleted';
|
|
184440
185815
|
id: Scalars['ID']['output'];
|
|
184441
185816
|
};
|
|
185817
|
+
export declare type TrelloInboxCardMoved = TrelloBaseCardMoved & {
|
|
185818
|
+
__typename?: 'TrelloInboxCardMoved';
|
|
185819
|
+
id: Scalars['ID']['output'];
|
|
185820
|
+
list?: Maybe<TrelloListContainer>;
|
|
185821
|
+
objectId: Scalars['ID']['output'];
|
|
185822
|
+
};
|
|
184442
185823
|
export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
|
|
184443
185824
|
__typename?: 'TrelloInboxCardUpdated';
|
|
184444
185825
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
@@ -184471,6 +185852,11 @@ export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
|
|
|
184471
185852
|
startedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
184472
185853
|
url?: Maybe<Scalars['URL']['output']>;
|
|
184473
185854
|
};
|
|
185855
|
+
export declare type TrelloInboxId = TrelloBaseBoardId & {
|
|
185856
|
+
__typename?: 'TrelloInboxId';
|
|
185857
|
+
id: Scalars['ID']['output'];
|
|
185858
|
+
objectId: Scalars['ID']['output'];
|
|
185859
|
+
};
|
|
184474
185860
|
export declare type TrelloInboxNotificationsUpdated = {
|
|
184475
185861
|
__typename?: 'TrelloInboxNotificationsUpdated';
|
|
184476
185862
|
onQuickCaptureNotificationsCleared?: Maybe<Array<TrelloQuickCaptureNotificationCleared>>;
|
|
@@ -184622,6 +186008,12 @@ export declare type TrelloListConnection = {
|
|
|
184622
186008
|
nodes?: Maybe<Array<TrelloList>>;
|
|
184623
186009
|
pageInfo: PageInfo;
|
|
184624
186010
|
};
|
|
186011
|
+
export declare type TrelloListContainer = {
|
|
186012
|
+
__typename?: 'TrelloListContainer';
|
|
186013
|
+
board?: Maybe<TrelloBaseBoardId>;
|
|
186014
|
+
id: Scalars['ID']['output'];
|
|
186015
|
+
objectId: Scalars['ID']['output'];
|
|
186016
|
+
};
|
|
184625
186017
|
export declare type TrelloListDataSource = {
|
|
184626
186018
|
__typename?: 'TrelloListDataSource';
|
|
184627
186019
|
filter: Scalars['Boolean']['output'];
|
|
@@ -184657,6 +186049,7 @@ export declare type TrelloListUpdated = {
|
|
|
184657
186049
|
name?: Maybe<Scalars['String']['output']>;
|
|
184658
186050
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
184659
186051
|
onCardDeleted?: Maybe<Array<TrelloBaseCardDeleted>>;
|
|
186052
|
+
onCardMoved?: Maybe<TrelloBaseCardMoved>;
|
|
184660
186053
|
position?: Maybe<Scalars['Float']['output']>;
|
|
184661
186054
|
softLimit?: Maybe<Scalars['Int']['output']>;
|
|
184662
186055
|
};
|
|
@@ -186436,8 +187829,10 @@ export declare type TrelloSendBoardEmailKeyMessagePayload = Payload & {
|
|
|
186436
187829
|
};
|
|
186437
187830
|
export declare type TrelloSmartSchedulePreference = {
|
|
186438
187831
|
__typename?: 'TrelloSmartSchedulePreference';
|
|
187832
|
+
includeInbox: Scalars['Boolean']['output'];
|
|
186439
187833
|
lastActivity?: Maybe<Scalars['DateTime']['output']>;
|
|
186440
187834
|
lastRun?: Maybe<Scalars['DateTime']['output']>;
|
|
187835
|
+
preferredBoards: Array<Scalars['ID']['output']>;
|
|
186441
187836
|
preferredRunTime?: Maybe<Scalars['Int']['output']>;
|
|
186442
187837
|
status: TrelloSmartScheduleStatus;
|
|
186443
187838
|
};
|
|
@@ -186510,24 +187905,29 @@ export declare type TrelloSubscriptionApiOnBoardCardSetUpdatedArgs = {
|
|
|
186510
187905
|
export declare type TrelloSubscriptionApiOnBoardUpdatedArgs = {
|
|
186511
187906
|
cardIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
186512
187907
|
id: Scalars['ID']['input'];
|
|
187908
|
+
noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
186513
187909
|
};
|
|
186514
187910
|
export declare type TrelloSubscriptionApiOnCardBatchUpdatedArgs = {
|
|
186515
187911
|
id: Scalars['ID']['input'];
|
|
186516
187912
|
};
|
|
186517
187913
|
export declare type TrelloSubscriptionApiOnInboxUpdatedArgs = {
|
|
186518
187914
|
memberId: Scalars['ID']['input'];
|
|
187915
|
+
noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
186519
187916
|
};
|
|
186520
187917
|
export declare type TrelloSubscriptionApiOnMemberPlannerEventCardsUpdatedArgs = {
|
|
186521
187918
|
memberId: Scalars['ID']['input'];
|
|
187919
|
+
noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
186522
187920
|
};
|
|
186523
187921
|
export declare type TrelloSubscriptionApiOnMemberUpdatedArgs = {
|
|
186524
187922
|
id: Scalars['ID']['input'];
|
|
187923
|
+
noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
186525
187924
|
};
|
|
186526
187925
|
export declare type TrelloSubscriptionApiOnWorkOverviewDashboardJobUpdatedArgs = {
|
|
186527
187926
|
id: Scalars['ID']['input'];
|
|
186528
187927
|
};
|
|
186529
187928
|
export declare type TrelloSubscriptionApiOnWorkspaceUpdatedArgs = {
|
|
186530
187929
|
id: Scalars['ID']['input'];
|
|
187930
|
+
noInitialResponse?: InputMaybe<Scalars['Boolean']['input']>;
|
|
186531
187931
|
};
|
|
186532
187932
|
export declare enum TrelloSupportedPlannerProviders {
|
|
186533
187933
|
Google = "GOOGLE",
|
|
@@ -189265,6 +190665,7 @@ export declare type UpdatePolarisSnippetInput = {
|
|
|
189265
190665
|
url?: InputMaybe<Scalars['String']['input']>;
|
|
189266
190666
|
};
|
|
189267
190667
|
export declare type UpdatePolarisTimelineConfig = {
|
|
190668
|
+
columnWidth?: InputMaybe<Scalars['Int']['input']>;
|
|
189268
190669
|
dueDateField?: InputMaybe<Scalars['ID']['input']>;
|
|
189269
190670
|
endTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
189270
190671
|
mode?: InputMaybe<PolarisTimelineMode>;
|
|
@@ -189280,6 +190681,7 @@ export declare type UpdatePolarisTreeConfig = {
|
|
|
189280
190681
|
treeDirection?: InputMaybe<PolarisTreeDirection>;
|
|
189281
190682
|
};
|
|
189282
190683
|
export declare type UpdatePolarisTreeHierarchyItem = {
|
|
190684
|
+
fields?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
189283
190685
|
filter?: InputMaybe<Array<PolarisViewFilterInput>>;
|
|
189284
190686
|
items?: InputMaybe<Array<Scalars['JSON']['input']>>;
|
|
189285
190687
|
type?: InputMaybe<PolarisTreeHierarchyType>;
|