@forge/cli-shared 8.21.1-next.1 → 8.22.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 +9 -0
- package/out/graphql/graphql-types.d.ts +453 -33
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +101 -50
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/graphql/minimal-graphql-runner.js +3 -1
- package/package.json +1 -1
|
@@ -281,9 +281,34 @@ export declare type AiOpsIncidentSuggestionResponse = {
|
|
|
281
281
|
};
|
|
282
282
|
export declare type AiOpsInvestigation = {
|
|
283
283
|
__typename?: 'AIOpsInvestigation';
|
|
284
|
+
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
284
285
|
id: Scalars['ID']['output'];
|
|
286
|
+
input: AiOpsInvestigationInputContext;
|
|
287
|
+
lastUpdatedAt?: Maybe<Scalars['Long']['output']>;
|
|
288
|
+
status?: Maybe<AiOpsInvestigationStatus>;
|
|
289
|
+
};
|
|
290
|
+
export declare type AiOpsInvestigationInputContext = {
|
|
291
|
+
__typename?: 'AIOpsInvestigationInputContext';
|
|
292
|
+
inScopeServiceIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
293
|
+
sourceEntityId: Scalars['String']['output'];
|
|
294
|
+
sourceEntityType: AiOpsInvestigationSourceEntityType;
|
|
285
295
|
};
|
|
286
296
|
export declare type AiOpsInvestigationQueryResult = AiOpsInvestigation | QueryError;
|
|
297
|
+
export declare enum AiOpsInvestigationSourceEntityType {
|
|
298
|
+
Incident = "INCIDENT"
|
|
299
|
+
}
|
|
300
|
+
export declare enum AiOpsInvestigationStatus {
|
|
301
|
+
Cancelled = "CANCELLED",
|
|
302
|
+
Completed = "COMPLETED",
|
|
303
|
+
Failed = "FAILED",
|
|
304
|
+
InProgress = "IN_PROGRESS",
|
|
305
|
+
New = "NEW"
|
|
306
|
+
}
|
|
307
|
+
export declare type AiOpsTriggerInvestigationInput = {
|
|
308
|
+
inScopeServiceIds: Array<Scalars['ID']['input']>;
|
|
309
|
+
sourceEntityId: Scalars['ID']['input'];
|
|
310
|
+
sourceEntityType: AiOpsInvestigationSourceEntityType;
|
|
311
|
+
};
|
|
287
312
|
export declare type AvpAddDashboardElementInput = {
|
|
288
313
|
canvasRowId: Scalars['ID']['input'];
|
|
289
314
|
dashboardAri: Scalars['ID']['input'];
|
|
@@ -4749,6 +4774,7 @@ export declare type AgentSession = AgentSessionNode & {
|
|
|
4749
4774
|
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
4750
4775
|
id?: Maybe<Scalars['ID']['output']>;
|
|
4751
4776
|
isRovo?: Maybe<Scalars['Boolean']['output']>;
|
|
4777
|
+
lastStateChangeAt?: Maybe<Scalars['Long']['output']>;
|
|
4752
4778
|
state?: Maybe<Scalars['String']['output']>;
|
|
4753
4779
|
version?: Maybe<Scalars['Long']['output']>;
|
|
4754
4780
|
};
|
|
@@ -5055,6 +5081,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & AgentStudioBaseCon
|
|
|
5055
5081
|
mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
5056
5082
|
name?: Maybe<Scalars['String']['output']>;
|
|
5057
5083
|
permissions?: Maybe<AgentStudioAgentPermissions>;
|
|
5084
|
+
responseStrategy?: Maybe<Scalars['String']['output']>;
|
|
5058
5085
|
scenarioList?: Maybe<AgentStudioScenariosResult>;
|
|
5059
5086
|
scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
|
|
5060
5087
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
@@ -5334,6 +5361,7 @@ export declare type AgentStudioCreateAgentInput = {
|
|
|
5334
5361
|
jiraProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
5335
5362
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
5336
5363
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
5364
|
+
responseStrategy?: InputMaybe<Scalars['String']['input']>;
|
|
5337
5365
|
scenarios?: InputMaybe<Array<InputMaybe<AgentStudioScenarioInput>>>;
|
|
5338
5366
|
tools?: InputMaybe<Array<AgentStudioToolInput>>;
|
|
5339
5367
|
widgets?: InputMaybe<Array<InputMaybe<AgentStudioWidgetInput>>>;
|
|
@@ -6279,6 +6307,7 @@ export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
|
6279
6307
|
isWebSearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6280
6308
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
6281
6309
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6310
|
+
responseStrategy?: InputMaybe<Scalars['String']['input']>;
|
|
6282
6311
|
tools?: InputMaybe<Array<AgentStudioToolInput>>;
|
|
6283
6312
|
};
|
|
6284
6313
|
export declare type AgentStudioUpdateAgentDetailsPayload = Payload & {
|
|
@@ -6536,6 +6565,17 @@ export declare type AgentWorkspaceAssignAgentToGapPayload = {
|
|
|
6536
6565
|
shift?: Maybe<AgentWorkspaceShift>;
|
|
6537
6566
|
success: Scalars['Boolean']['output'];
|
|
6538
6567
|
};
|
|
6568
|
+
export declare type AgentWorkspaceAssignAgentsToSkillInput = {
|
|
6569
|
+
cloudId: Scalars['ID']['input'];
|
|
6570
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6571
|
+
skillId: Scalars['ID']['input'];
|
|
6572
|
+
userAris: Array<Scalars['ID']['input']>;
|
|
6573
|
+
};
|
|
6574
|
+
export declare type AgentWorkspaceAssignAgentsToSkillPayload = {
|
|
6575
|
+
__typename?: 'AgentWorkspaceAssignAgentsToSkillPayload';
|
|
6576
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6577
|
+
success: Scalars['Boolean']['output'];
|
|
6578
|
+
};
|
|
6539
6579
|
export declare type AgentWorkspaceAvailabilityConnection = {
|
|
6540
6580
|
__typename?: 'AgentWorkspaceAvailabilityConnection';
|
|
6541
6581
|
edges: Array<AgentWorkspaceAvailabilityEdge>;
|
|
@@ -6821,6 +6861,11 @@ export declare type AgentWorkspaceRecommendationError = {
|
|
|
6821
6861
|
__typename?: 'AgentWorkspaceRecommendationError';
|
|
6822
6862
|
message: Scalars['String']['output'];
|
|
6823
6863
|
};
|
|
6864
|
+
export declare type AgentWorkspaceRecommendedAgentsForGapInput = {
|
|
6865
|
+
originalAgentId: Scalars['ID']['input'];
|
|
6866
|
+
projectARI: Scalars['ID']['input'];
|
|
6867
|
+
scheduleId: Scalars['ID']['input'];
|
|
6868
|
+
};
|
|
6824
6869
|
export declare type AgentWorkspaceRecommendedAssigneesResponse = {
|
|
6825
6870
|
__typename?: 'AgentWorkspaceRecommendedAssigneesResponse';
|
|
6826
6871
|
errors?: Maybe<Array<AgentWorkspaceRecommendationError>>;
|
|
@@ -7080,7 +7125,7 @@ export declare type AgentWorkspaceSkillServicesArgs = {
|
|
|
7080
7125
|
};
|
|
7081
7126
|
export declare type AgentWorkspaceSkillAgentAssignment = {
|
|
7082
7127
|
__typename?: 'AgentWorkspaceSkillAgentAssignment';
|
|
7083
|
-
skill
|
|
7128
|
+
skill: AgentWorkspaceSkill;
|
|
7084
7129
|
userAri: Scalars['ID']['output'];
|
|
7085
7130
|
};
|
|
7086
7131
|
export declare type AgentWorkspaceSkillCategory = {
|
|
@@ -7097,6 +7142,10 @@ export declare type AgentWorkspaceSkillCategoryConnection = {
|
|
|
7097
7142
|
nodes?: Maybe<Array<Maybe<AgentWorkspaceSkillCategory>>>;
|
|
7098
7143
|
pageInfo: PageInfo;
|
|
7099
7144
|
};
|
|
7145
|
+
export declare type AgentWorkspaceSkillCategoryCreateInput = {
|
|
7146
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
7147
|
+
name: Scalars['String']['input'];
|
|
7148
|
+
};
|
|
7100
7149
|
export declare type AgentWorkspaceSkillCategoryEdge = {
|
|
7101
7150
|
__typename?: 'AgentWorkspaceSkillCategoryEdge';
|
|
7102
7151
|
cursor: Scalars['String']['output'];
|
|
@@ -7110,9 +7159,12 @@ export declare type AgentWorkspaceSkillConnection = {
|
|
|
7110
7159
|
pageInfo: PageInfo;
|
|
7111
7160
|
};
|
|
7112
7161
|
export declare type AgentWorkspaceSkillCreateInput = {
|
|
7162
|
+
category?: InputMaybe<AgentWorkspaceSkillCategoryCreateInput>;
|
|
7163
|
+
categoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
7113
7164
|
cloudId: Scalars['ID']['input'];
|
|
7114
7165
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7115
7166
|
name: Scalars['String']['input'];
|
|
7167
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7116
7168
|
};
|
|
7117
7169
|
export declare type AgentWorkspaceSkillCreatePayload = {
|
|
7118
7170
|
__typename?: 'AgentWorkspaceSkillCreatePayload';
|
|
@@ -7127,7 +7179,7 @@ export declare type AgentWorkspaceSkillEdge = {
|
|
|
7127
7179
|
export declare type AgentWorkspaceSkillServiceMapping = {
|
|
7128
7180
|
__typename?: 'AgentWorkspaceSkillServiceMapping';
|
|
7129
7181
|
serviceId: Scalars['ID']['output'];
|
|
7130
|
-
skill
|
|
7182
|
+
skill: AgentWorkspaceSkill;
|
|
7131
7183
|
};
|
|
7132
7184
|
export declare type AgentWorkspaceSmartRoutingConfig = {
|
|
7133
7185
|
__typename?: 'AgentWorkspaceSmartRoutingConfig';
|
|
@@ -9308,6 +9360,13 @@ export declare type AssetsBundle = {
|
|
|
9308
9360
|
schemas?: Maybe<Array<AssetsCdmSchema>>;
|
|
9309
9361
|
type: AssetsBundleType;
|
|
9310
9362
|
};
|
|
9363
|
+
export declare type AssetsBundleInstantiation = {
|
|
9364
|
+
__typename?: 'AssetsBundleInstantiation';
|
|
9365
|
+
bundle: AssetsBundle;
|
|
9366
|
+
id: Scalars['ID']['output'];
|
|
9367
|
+
instantiatedSchemas?: Maybe<Array<AssetsSchema>>;
|
|
9368
|
+
};
|
|
9369
|
+
export declare type AssetsBundleInstantiationResult = AssetsBundleInstantiation | QueryError;
|
|
9311
9370
|
export declare type AssetsBundleResult = AssetsBundle | QueryError;
|
|
9312
9371
|
export declare enum AssetsBundleType {
|
|
9313
9372
|
Cdm = "CDM",
|
|
@@ -12427,6 +12486,7 @@ export declare type AssetsVerticalDepreciationRuleAssetTypesArgs = {
|
|
|
12427
12486
|
export declare type AssetsVerticalDepreciationRuleAssetType = {
|
|
12428
12487
|
__typename?: 'AssetsVerticalDepreciationRuleAssetType';
|
|
12429
12488
|
acquisitionCostObjTypeAttributeId: Scalars['ID']['output'];
|
|
12489
|
+
acquisitionDateObjTypeAttributeId: Scalars['ID']['output'];
|
|
12430
12490
|
auditInfo: AssetsVerticalAuditInfo;
|
|
12431
12491
|
bookValueObjTypeAttributeId: Scalars['ID']['output'];
|
|
12432
12492
|
depreciationRuleId: Scalars['ID']['output'];
|
|
@@ -12446,6 +12506,7 @@ export declare type AssetsVerticalDepreciationRuleAssetTypeEdge = {
|
|
|
12446
12506
|
};
|
|
12447
12507
|
export declare type AssetsVerticalDepreciationRuleAssetTypeInput = {
|
|
12448
12508
|
acquisitionCostObjTypeAttributeId: Scalars['ID']['input'];
|
|
12509
|
+
acquisitionDateObjTypeAttributeId?: InputMaybe<Scalars['ID']['input']>;
|
|
12449
12510
|
bookValueObjTypeAttributeId: Scalars['ID']['input'];
|
|
12450
12511
|
objSchemaId: Scalars['ID']['input'];
|
|
12451
12512
|
objTypeId: Scalars['ID']['input'];
|
|
@@ -12840,6 +12901,8 @@ export declare type AssetsVerticalStatusCount = {
|
|
|
12840
12901
|
count?: Maybe<Scalars['Int']['output']>;
|
|
12841
12902
|
statusKey?: Maybe<Scalars['String']['output']>;
|
|
12842
12903
|
};
|
|
12904
|
+
export declare type AssetsVerticalStockroomItamAttributesResult = AssetsVerticalItamAttributes | QueryError;
|
|
12905
|
+
export declare type AssetsVerticalStockroomObjectTypesResult = AssetsVerticalObjectTypes | QueryError;
|
|
12843
12906
|
export declare type AssetsVerticalStockroomObjects = AssetsVerticalObjects & {
|
|
12844
12907
|
__typename?: 'AssetsVerticalStockroomObjects';
|
|
12845
12908
|
itamObjects?: Maybe<Array<Maybe<AssetsVerticalItamObjects>>>;
|
|
@@ -16892,6 +16955,7 @@ export declare type ChannelPlatformSendOtpResponse = {
|
|
|
16892
16955
|
};
|
|
16893
16956
|
export declare type ChannelPlatformSubmitRequestInput = {
|
|
16894
16957
|
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
16958
|
+
customerIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
16895
16959
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
16896
16960
|
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
16897
16961
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31093,6 +31157,28 @@ export declare enum ConfluencePolicyEnabledStatus {
|
|
|
31093
31157
|
Enabled = "ENABLED",
|
|
31094
31158
|
UndeterminedDueToInternalError = "UNDETERMINED_DUE_TO_INTERNAL_ERROR"
|
|
31095
31159
|
}
|
|
31160
|
+
export declare type ConfluencePopularLabelEntry = {
|
|
31161
|
+
__typename?: 'ConfluencePopularLabelEntry';
|
|
31162
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
31163
|
+
labelId?: Maybe<Scalars['String']['output']>;
|
|
31164
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
31165
|
+
rank?: Maybe<Scalars['Int']['output']>;
|
|
31166
|
+
};
|
|
31167
|
+
export declare type ConfluencePopularLabelEntryConnection = {
|
|
31168
|
+
__typename?: 'ConfluencePopularLabelEntryConnection';
|
|
31169
|
+
edges?: Maybe<Array<Maybe<ConfluencePopularLabelEntryEdge>>>;
|
|
31170
|
+
nodes?: Maybe<Array<Maybe<ConfluencePopularLabelEntry>>>;
|
|
31171
|
+
pageInfo: ConfluencePageInfo;
|
|
31172
|
+
};
|
|
31173
|
+
export declare type ConfluencePopularLabelEntryEdge = {
|
|
31174
|
+
__typename?: 'ConfluencePopularLabelEntryEdge';
|
|
31175
|
+
cursor: Scalars['String']['output'];
|
|
31176
|
+
node?: Maybe<ConfluencePopularLabelEntry>;
|
|
31177
|
+
};
|
|
31178
|
+
export declare enum ConfluencePopularLabelStyle {
|
|
31179
|
+
Heatmap = "HEATMAP",
|
|
31180
|
+
List = "LIST"
|
|
31181
|
+
}
|
|
31096
31182
|
export declare type ConfluencePrincipal = {
|
|
31097
31183
|
__typename?: 'ConfluencePrincipal';
|
|
31098
31184
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
@@ -37824,6 +37910,22 @@ export declare type CustomerServiceExternalStatusesResponse = {
|
|
|
37824
37910
|
export declare type CustomerServiceFilterInput = {
|
|
37825
37911
|
context: CustomerServiceContext;
|
|
37826
37912
|
};
|
|
37913
|
+
export declare type CustomerServiceHelpCenterMetadata = {
|
|
37914
|
+
__typename?: 'CustomerServiceHelpCenterMetadata';
|
|
37915
|
+
helpCenterId: Scalars['ID']['output'];
|
|
37916
|
+
id: Scalars['ID']['output'];
|
|
37917
|
+
isRequestSharingEnabled: Scalars['Boolean']['output'];
|
|
37918
|
+
};
|
|
37919
|
+
export declare type CustomerServiceHelpCenterMetadataQueryResult = CustomerServiceHelpCenterMetadata | QueryError;
|
|
37920
|
+
export declare type CustomerServiceHelpCenterMetadataUpsertInput = {
|
|
37921
|
+
isRequestSharingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37922
|
+
};
|
|
37923
|
+
export declare type CustomerServiceHelpCenterMetadataUpsertPayload = {
|
|
37924
|
+
__typename?: 'CustomerServiceHelpCenterMetadataUpsertPayload';
|
|
37925
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37926
|
+
helpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadata>;
|
|
37927
|
+
success: Scalars['Boolean']['output'];
|
|
37928
|
+
};
|
|
37827
37929
|
export declare type CustomerServiceIndividual = Node & {
|
|
37828
37930
|
__typename?: 'CustomerServiceIndividual';
|
|
37829
37931
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
@@ -38370,6 +38472,7 @@ export declare type CustomerServiceQueryApiTemplateFormsArgs = {
|
|
|
38370
38472
|
};
|
|
38371
38473
|
export declare enum CustomerServiceReportedByFilter {
|
|
38372
38474
|
Other = "OTHER",
|
|
38475
|
+
SharedByOrg = "SHARED_BY_ORG",
|
|
38373
38476
|
User = "USER"
|
|
38374
38477
|
}
|
|
38375
38478
|
export declare type CustomerServiceRequest = {
|
|
@@ -39612,6 +39715,7 @@ export declare type DevAiAutodevNextWorkItem = {
|
|
|
39612
39715
|
repository?: Maybe<Scalars['String']['output']>;
|
|
39613
39716
|
requestedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
39614
39717
|
state?: Maybe<DevAiAutodevNextWorkItemState>;
|
|
39718
|
+
workItemState?: Maybe<Scalars['ID']['output']>;
|
|
39615
39719
|
workstream?: Maybe<DevAiAutodevNextWorkstream>;
|
|
39616
39720
|
};
|
|
39617
39721
|
export declare type DevAiAutodevNextWorkItemConnection = {
|
|
@@ -39632,6 +39736,7 @@ export declare enum DevAiAutodevNextWorkItemState {
|
|
|
39632
39736
|
NeedsScoping = "NEEDS_SCOPING",
|
|
39633
39737
|
OutOfScope = "OUT_OF_SCOPE",
|
|
39634
39738
|
PendingClassification = "PENDING_CLASSIFICATION",
|
|
39739
|
+
PendingReview = "PENDING_REVIEW",
|
|
39635
39740
|
Ready = "READY"
|
|
39636
39741
|
}
|
|
39637
39742
|
export declare type DevAiAutodevNextWorkstream = {
|
|
@@ -43060,6 +43165,7 @@ export declare type EcosystemQuery = {
|
|
|
43060
43165
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
43061
43166
|
globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
|
|
43062
43167
|
marketplaceData?: Maybe<EcosystemMarketplaceData>;
|
|
43168
|
+
rollingReleases?: Maybe<EcosystemRollingReleaseConnection>;
|
|
43063
43169
|
userAccess?: Maybe<UserAccess>;
|
|
43064
43170
|
userGrants?: Maybe<UserGrantConnection>;
|
|
43065
43171
|
userInstallationRules?: Maybe<UserInstallationRules>;
|
|
@@ -43140,6 +43246,12 @@ export declare type EcosystemQueryMarketplaceDataArgs = {
|
|
|
43140
43246
|
appKey?: InputMaybe<Scalars['ID']['input']>;
|
|
43141
43247
|
cloudAppId?: InputMaybe<Scalars['ID']['input']>;
|
|
43142
43248
|
};
|
|
43249
|
+
export declare type EcosystemQueryRollingReleasesArgs = {
|
|
43250
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
43251
|
+
appId: Scalars['ID']['input'];
|
|
43252
|
+
environmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
43253
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43254
|
+
};
|
|
43143
43255
|
export declare type EcosystemQueryUserAccessArgs = {
|
|
43144
43256
|
contextId: Scalars['ID']['input'];
|
|
43145
43257
|
definitionId: Scalars['ID']['input'];
|
|
@@ -43168,6 +43280,47 @@ export declare enum EcosystemRequiredProduct {
|
|
|
43168
43280
|
Confluence = "CONFLUENCE",
|
|
43169
43281
|
Jira = "JIRA"
|
|
43170
43282
|
}
|
|
43283
|
+
export declare type EcosystemRollingRelease = {
|
|
43284
|
+
__typename?: 'EcosystemRollingRelease';
|
|
43285
|
+
appEnvironmentId: Scalars['ID']['output'];
|
|
43286
|
+
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
43287
|
+
failureCount: Scalars['Int']['output'];
|
|
43288
|
+
id: Scalars['ID']['output'];
|
|
43289
|
+
initiator?: Maybe<User>;
|
|
43290
|
+
startedAt: Scalars['DateTime']['output'];
|
|
43291
|
+
status: EcosystemRollingReleaseStatus;
|
|
43292
|
+
successCount: Scalars['Int']['output'];
|
|
43293
|
+
targetVersionId: Scalars['ID']['output'];
|
|
43294
|
+
totalInstallations: Scalars['Int']['output'];
|
|
43295
|
+
};
|
|
43296
|
+
export declare type EcosystemRollingReleaseConnection = {
|
|
43297
|
+
__typename?: 'EcosystemRollingReleaseConnection';
|
|
43298
|
+
edges?: Maybe<Array<Maybe<EcosystemRollingReleaseEdge>>>;
|
|
43299
|
+
nodes?: Maybe<Array<Maybe<EcosystemRollingRelease>>>;
|
|
43300
|
+
pageInfo: EcosystemRollingReleasePageInfo;
|
|
43301
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
43302
|
+
};
|
|
43303
|
+
export declare type EcosystemRollingReleaseEdge = {
|
|
43304
|
+
__typename?: 'EcosystemRollingReleaseEdge';
|
|
43305
|
+
cursor: Scalars['String']['output'];
|
|
43306
|
+
node?: Maybe<EcosystemRollingRelease>;
|
|
43307
|
+
};
|
|
43308
|
+
export declare type EcosystemRollingReleasePageInfo = {
|
|
43309
|
+
__typename?: 'EcosystemRollingReleasePageInfo';
|
|
43310
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
43311
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
43312
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
43313
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
43314
|
+
};
|
|
43315
|
+
export declare enum EcosystemRollingReleaseStatus {
|
|
43316
|
+
Cancelled = "CANCELLED",
|
|
43317
|
+
Completed = "COMPLETED",
|
|
43318
|
+
Failed = "FAILED",
|
|
43319
|
+
Queued = "QUEUED",
|
|
43320
|
+
Running = "RUNNING",
|
|
43321
|
+
Terminated = "TERMINATED",
|
|
43322
|
+
TimedOut = "TIMED_OUT"
|
|
43323
|
+
}
|
|
43171
43324
|
export declare type EcosystemSubscription = {
|
|
43172
43325
|
__typename?: 'EcosystemSubscription';
|
|
43173
43326
|
realtimeChannel?: Maybe<EcosystemRealtimeSubscriptionBody>;
|
|
@@ -44743,6 +44896,7 @@ export declare type ExternalProject = Node & {
|
|
|
44743
44896
|
assignee?: Maybe<ExternalUser>;
|
|
44744
44897
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
44745
44898
|
attachments?: Maybe<Array<Maybe<ExternalProjectAttachment>>>;
|
|
44899
|
+
businessCase?: Maybe<Scalars['String']['output']>;
|
|
44746
44900
|
container?: Maybe<ExternalEntity>;
|
|
44747
44901
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
44748
44902
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -44750,6 +44904,7 @@ export declare type ExternalProject = Node & {
|
|
|
44750
44904
|
description?: Maybe<Scalars['String']['output']>;
|
|
44751
44905
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
44752
44906
|
dueDate?: Maybe<Scalars['String']['output']>;
|
|
44907
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
44753
44908
|
environment?: Maybe<Scalars['String']['output']>;
|
|
44754
44909
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
44755
44910
|
id: Scalars['ID']['output'];
|
|
@@ -44764,6 +44919,7 @@ export declare type ExternalProject = Node & {
|
|
|
44764
44919
|
resolution?: Maybe<Scalars['String']['output']>;
|
|
44765
44920
|
status?: Maybe<Scalars['String']['output']>;
|
|
44766
44921
|
statusCategory?: Maybe<Scalars['String']['output']>;
|
|
44922
|
+
subtype?: Maybe<Scalars['String']['output']>;
|
|
44767
44923
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
44768
44924
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
44769
44925
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -105240,7 +105396,8 @@ export declare enum GravityViewVisualizationType {
|
|
|
105240
105396
|
List = "LIST",
|
|
105241
105397
|
Matrix = "MATRIX",
|
|
105242
105398
|
Table = "TABLE",
|
|
105243
|
-
Timeline = "TIMELINE"
|
|
105399
|
+
Timeline = "TIMELINE",
|
|
105400
|
+
Tree = "TREE"
|
|
105244
105401
|
}
|
|
105245
105402
|
export declare type Group = {
|
|
105246
105403
|
__typename?: 'Group';
|
|
@@ -109679,6 +109836,18 @@ export declare type JiraActorEdge = {
|
|
|
109679
109836
|
cursor: Scalars['String']['output'];
|
|
109680
109837
|
node?: Maybe<JiraActor>;
|
|
109681
109838
|
};
|
|
109839
|
+
export declare type JiraAddAgentToBoardViewStatusColumnInput = {
|
|
109840
|
+
agentAccountId: Scalars['ID']['input'];
|
|
109841
|
+
columnId: Scalars['ID']['input'];
|
|
109842
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
109843
|
+
};
|
|
109844
|
+
export declare type JiraAddAgentToBoardViewStatusColumnPayload = {
|
|
109845
|
+
__typename?: 'JiraAddAgentToBoardViewStatusColumnPayload';
|
|
109846
|
+
boardView?: Maybe<JiraBoardView>;
|
|
109847
|
+
column?: Maybe<JiraBoardViewStatusColumn>;
|
|
109848
|
+
errors?: Maybe<Array<MutationError>>;
|
|
109849
|
+
success: Scalars['Boolean']['output'];
|
|
109850
|
+
};
|
|
109682
109851
|
export declare type JiraAddAttachmentInput = {
|
|
109683
109852
|
fileId: Scalars['String']['input'];
|
|
109684
109853
|
issue: Scalars['ID']['input'];
|
|
@@ -111894,6 +112063,38 @@ export declare type JiraBoardReportCategoriesArgs = {
|
|
|
111894
112063
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
111895
112064
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
111896
112065
|
};
|
|
112066
|
+
export declare type JiraBoardAdmin = {
|
|
112067
|
+
__typename?: 'JiraBoardAdmin';
|
|
112068
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
112069
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
112070
|
+
};
|
|
112071
|
+
export declare type JiraBoardAdminAvatarUrls = {
|
|
112072
|
+
__typename?: 'JiraBoardAdminAvatarUrls';
|
|
112073
|
+
large?: Maybe<Scalars['URL']['output']>;
|
|
112074
|
+
medium?: Maybe<Scalars['URL']['output']>;
|
|
112075
|
+
small?: Maybe<Scalars['URL']['output']>;
|
|
112076
|
+
xsmall?: Maybe<Scalars['URL']['output']>;
|
|
112077
|
+
};
|
|
112078
|
+
export declare type JiraBoardAdminGroup = {
|
|
112079
|
+
__typename?: 'JiraBoardAdminGroup';
|
|
112080
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
112081
|
+
self?: Maybe<Scalars['URL']['output']>;
|
|
112082
|
+
};
|
|
112083
|
+
export declare type JiraBoardAdminUser = {
|
|
112084
|
+
__typename?: 'JiraBoardAdminUser';
|
|
112085
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
112086
|
+
active?: Maybe<Scalars['Boolean']['output']>;
|
|
112087
|
+
avatarUrls?: Maybe<JiraBoardAdminAvatarUrls>;
|
|
112088
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
112089
|
+
self?: Maybe<Scalars['URL']['output']>;
|
|
112090
|
+
};
|
|
112091
|
+
export declare type JiraBoardAdmins = {
|
|
112092
|
+
__typename?: 'JiraBoardAdmins';
|
|
112093
|
+
groupKeys?: Maybe<Array<Maybe<JiraBoardAdmin>>>;
|
|
112094
|
+
groups?: Maybe<Array<Maybe<JiraBoardAdminGroup>>>;
|
|
112095
|
+
userKeys?: Maybe<Array<Maybe<JiraBoardAdmin>>>;
|
|
112096
|
+
users?: Maybe<Array<Maybe<JiraBoardAdminUser>>>;
|
|
112097
|
+
};
|
|
111897
112098
|
export declare type JiraBoardCardCoverMediaField = JiraIssueField & JiraListRowField & Node & {
|
|
111898
112099
|
__typename?: 'JiraBoardCardCoverMediaField';
|
|
111899
112100
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -111954,6 +112155,7 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
111954
112155
|
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
111955
112156
|
canEditIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
111956
112157
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
112158
|
+
canInlineEditTransitionAgents?: Maybe<Scalars['Boolean']['output']>;
|
|
111957
112159
|
canManageSprints?: Maybe<Scalars['Boolean']['output']>;
|
|
111958
112160
|
canManageStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
111959
112161
|
canMoveIssueBetweenSwimlanes?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -112275,6 +112477,7 @@ export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & Node & {
|
|
|
112275
112477
|
name?: Maybe<Scalars['String']['output']>;
|
|
112276
112478
|
simpleTransitions?: Maybe<JiraTransitionConnection>;
|
|
112277
112479
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
112480
|
+
totalTransitionCount?: Maybe<Scalars['Int']['output']>;
|
|
112278
112481
|
transitionAgents?: Maybe<Array<JiraTransitionAgent>>;
|
|
112279
112482
|
workflows?: Maybe<JiraTransitionConnection>;
|
|
112280
112483
|
};
|
|
@@ -112657,6 +112860,7 @@ export declare type JiraCfoBoardPerformanceAnalyticsResultDataArgs = {
|
|
|
112657
112860
|
};
|
|
112658
112861
|
export declare type JiraCfoBoardPerformanceDataRow = JiraCfoDataRow & {
|
|
112659
112862
|
__typename?: 'JiraCFOBoardPerformanceDataRow';
|
|
112863
|
+
boardAdmins?: Maybe<JiraBoardAdmins>;
|
|
112660
112864
|
boardCreator?: Maybe<User>;
|
|
112661
112865
|
boardId?: Maybe<Scalars['ID']['output']>;
|
|
112662
112866
|
boardName?: Maybe<Scalars['String']['output']>;
|
|
@@ -112755,6 +112959,7 @@ export declare type JiraCfoDimensionInput = {
|
|
|
112755
112959
|
export declare type JiraCfoDistribution = {
|
|
112756
112960
|
__typename?: 'JiraCFODistribution';
|
|
112757
112961
|
category?: Maybe<JiraCfoDistributionCategory>;
|
|
112962
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
112758
112963
|
value?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
112759
112964
|
};
|
|
112760
112965
|
export declare enum JiraCfoDistributionCategory {
|
|
@@ -112820,6 +113025,7 @@ export declare type JiraCfoMetricInsightEdge = {
|
|
|
112820
113025
|
export declare type JiraCfoMetricInsightMetaData = {
|
|
112821
113026
|
__typename?: 'JiraCFOMetricInsightMetaData';
|
|
112822
113027
|
loadTimeDiff?: Maybe<Scalars['Int']['output']>;
|
|
113028
|
+
loadTimeDiffFloat?: Maybe<Scalars['Float']['output']>;
|
|
112823
113029
|
};
|
|
112824
113030
|
export declare enum JiraCfoMetricInsightStatus {
|
|
112825
113031
|
FastSetup = "FAST_SETUP",
|
|
@@ -129052,6 +129258,18 @@ export declare type JiraRemoveActiveBackgroundPayload = Payload & {
|
|
|
129052
129258
|
errors?: Maybe<Array<MutationError>>;
|
|
129053
129259
|
success: Scalars['Boolean']['output'];
|
|
129054
129260
|
};
|
|
129261
|
+
export declare type JiraRemoveAgentFromBoardViewStatusColumnInput = {
|
|
129262
|
+
agentAccountId: Scalars['ID']['input'];
|
|
129263
|
+
columnId: Scalars['ID']['input'];
|
|
129264
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
129265
|
+
};
|
|
129266
|
+
export declare type JiraRemoveAgentFromBoardViewStatusColumnPayload = {
|
|
129267
|
+
__typename?: 'JiraRemoveAgentFromBoardViewStatusColumnPayload';
|
|
129268
|
+
boardView?: Maybe<JiraBoardView>;
|
|
129269
|
+
column?: Maybe<JiraBoardViewStatusColumn>;
|
|
129270
|
+
errors?: Maybe<Array<MutationError>>;
|
|
129271
|
+
success: Scalars['Boolean']['output'];
|
|
129272
|
+
};
|
|
129055
129273
|
export declare type JiraRemoveCustomFieldDefaultContextOptionInput = {
|
|
129056
129274
|
mapToOption?: InputMaybe<JiraCustomFieldDefaultContextOptionReference>;
|
|
129057
129275
|
optionId: Scalars['Long']['input'];
|
|
@@ -136740,6 +136958,11 @@ export declare enum JsmChannelsPlanNodeType {
|
|
|
136740
136958
|
Condition = "CONDITION",
|
|
136741
136959
|
Step = "STEP"
|
|
136742
136960
|
}
|
|
136961
|
+
export declare type JsmChannelsPreviewModeConfiguration = {
|
|
136962
|
+
__typename?: 'JsmChannelsPreviewModeConfiguration';
|
|
136963
|
+
enabled: Scalars['Boolean']['output'];
|
|
136964
|
+
};
|
|
136965
|
+
export declare type JsmChannelsPreviewModeResult = JsmChannelsPreviewModeConfiguration | QueryError;
|
|
136743
136966
|
export declare type JsmChannelsProjectQueryFilter = {
|
|
136744
136967
|
projectId: Scalars['String']['input'];
|
|
136745
136968
|
requestTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -136844,6 +137067,18 @@ export declare type JsmChannelsServiceAgentResolutionRunbook = {
|
|
|
136844
137067
|
title: Scalars['String']['output'];
|
|
136845
137068
|
url: Scalars['String']['output'];
|
|
136846
137069
|
};
|
|
137070
|
+
export declare type JsmChannelsSetPreviewModeInput = {
|
|
137071
|
+
enabled: Scalars['Boolean']['input'];
|
|
137072
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
137073
|
+
requestTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
137074
|
+
};
|
|
137075
|
+
export declare type JsmChannelsSetPreviewModePayload = Payload & {
|
|
137076
|
+
__typename?: 'JsmChannelsSetPreviewModePayload';
|
|
137077
|
+
errors?: Maybe<Array<MutationError>>;
|
|
137078
|
+
jsmChannelsExperienceConfiguration?: Maybe<JsmChannelsExperienceConfiguration>;
|
|
137079
|
+
previewMode?: Maybe<JsmChannelsPreviewModeConfiguration>;
|
|
137080
|
+
success: Scalars['Boolean']['output'];
|
|
137081
|
+
};
|
|
136847
137082
|
export declare type JsmChannelsStepNode = JsmChannelsPlanNode & {
|
|
136848
137083
|
__typename?: 'JsmChannelsStepNode';
|
|
136849
137084
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
@@ -138171,6 +138406,7 @@ export declare type KitsuneField = Node & {
|
|
|
138171
138406
|
__typename?: 'KitsuneField';
|
|
138172
138407
|
description?: Maybe<Scalars['String']['output']>;
|
|
138173
138408
|
entityType: KitsuneEntityType;
|
|
138409
|
+
entityTypes: Array<KitsuneEntityType>;
|
|
138174
138410
|
id: Scalars['ID']['output'];
|
|
138175
138411
|
name: Scalars['String']['output'];
|
|
138176
138412
|
type: KitsuneFieldType;
|
|
@@ -145540,6 +145776,31 @@ export declare type MercuryChangeProposalTagsArgs = {
|
|
|
145540
145776
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
145541
145777
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
145542
145778
|
};
|
|
145779
|
+
export declare type MercuryChangeProposalActivityHistory = Node & {
|
|
145780
|
+
__typename?: 'MercuryChangeProposalActivityHistory';
|
|
145781
|
+
changeProposalId: Scalars['ID']['output'];
|
|
145782
|
+
eventTimestamp: Scalars['String']['output'];
|
|
145783
|
+
eventType: MercuryChangeProposalEventType;
|
|
145784
|
+
fields?: Maybe<Array<Maybe<MercuryChangeProposalUpdatedField>>>;
|
|
145785
|
+
fieldsChanged?: Maybe<Array<Maybe<MercuryChangeProposalField>>>;
|
|
145786
|
+
id: Scalars['ID']['output'];
|
|
145787
|
+
user?: Maybe<User>;
|
|
145788
|
+
};
|
|
145789
|
+
export declare type MercuryChangeProposalActivityHistoryConnection = {
|
|
145790
|
+
__typename?: 'MercuryChangeProposalActivityHistoryConnection';
|
|
145791
|
+
edges?: Maybe<Array<Maybe<MercuryChangeProposalActivityHistoryEdge>>>;
|
|
145792
|
+
pageInfo: PageInfo;
|
|
145793
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
145794
|
+
};
|
|
145795
|
+
export declare type MercuryChangeProposalActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser;
|
|
145796
|
+
export declare type MercuryChangeProposalActivityHistoryEdge = {
|
|
145797
|
+
__typename?: 'MercuryChangeProposalActivityHistoryEdge';
|
|
145798
|
+
cursor: Scalars['String']['output'];
|
|
145799
|
+
node?: Maybe<MercuryChangeProposalActivityHistory>;
|
|
145800
|
+
};
|
|
145801
|
+
export declare type MercuryChangeProposalActivitySort = {
|
|
145802
|
+
order: SortOrder;
|
|
145803
|
+
};
|
|
145543
145804
|
export declare type MercuryChangeProposalComment = {
|
|
145544
145805
|
__typename?: 'MercuryChangeProposalComment';
|
|
145545
145806
|
content: Scalars['String']['output'];
|
|
@@ -145587,6 +145848,22 @@ export declare type MercuryChangeProposalEdge = {
|
|
|
145587
145848
|
cursor: Scalars['String']['output'];
|
|
145588
145849
|
node?: Maybe<MercuryChangeProposal>;
|
|
145589
145850
|
};
|
|
145851
|
+
export declare enum MercuryChangeProposalEventType {
|
|
145852
|
+
Create = "CREATE",
|
|
145853
|
+
Update = "UPDATE"
|
|
145854
|
+
}
|
|
145855
|
+
export declare enum MercuryChangeProposalField {
|
|
145856
|
+
Description = "DESCRIPTION",
|
|
145857
|
+
FocusArea = "FOCUS_AREA",
|
|
145858
|
+
Impact = "IMPACT",
|
|
145859
|
+
LinkedGoal = "LINKED_GOAL",
|
|
145860
|
+
LinkedWork = "LINKED_WORK",
|
|
145861
|
+
Name = "NAME",
|
|
145862
|
+
Owner = "OWNER",
|
|
145863
|
+
Status = "STATUS",
|
|
145864
|
+
TargetBenefit = "TARGET_BENEFIT",
|
|
145865
|
+
TargetRoi = "TARGET_ROI"
|
|
145866
|
+
}
|
|
145590
145867
|
export declare type MercuryChangeProposalFundSummary = {
|
|
145591
145868
|
__typename?: 'MercuryChangeProposalFundSummary';
|
|
145592
145869
|
laborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
@@ -145686,14 +145963,31 @@ export declare type MercuryChangeProposalUpdate = {
|
|
|
145686
145963
|
id: Scalars['ID']['output'];
|
|
145687
145964
|
updatedFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
145688
145965
|
};
|
|
145689
|
-
export declare type
|
|
145966
|
+
export declare type MercuryChangeProposalUpdatedField = {
|
|
145967
|
+
__typename?: 'MercuryChangeProposalUpdatedField';
|
|
145968
|
+
field: MercuryChangeProposalField;
|
|
145969
|
+
newData?: Maybe<MercuryChangeProposalActivityHistoryData>;
|
|
145970
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
145971
|
+
oldData?: Maybe<MercuryChangeProposalActivityHistoryData>;
|
|
145972
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
145973
|
+
};
|
|
145974
|
+
export declare type MercuryChangeProposalViewSetting = {
|
|
145975
|
+
__typename?: 'MercuryChangeProposalViewSetting';
|
|
145976
|
+
key: Scalars['String']['output'];
|
|
145977
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
145978
|
+
};
|
|
145979
|
+
export declare type MercuryChangeProposalViewSettingInput = {
|
|
145980
|
+
key: Scalars['String']['input'];
|
|
145981
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
145982
|
+
};
|
|
145983
|
+
export declare type MercuryChangeProposalsView = Node & {
|
|
145690
145984
|
__typename?: 'MercuryChangeProposalsView';
|
|
145691
145985
|
createdBy?: Maybe<User>;
|
|
145692
145986
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
145693
145987
|
id: Scalars['ID']['output'];
|
|
145694
145988
|
name: Scalars['String']['output'];
|
|
145695
145989
|
priorities?: Maybe<MercuryChangeProposalRankConnection>;
|
|
145696
|
-
settings?: Maybe<Array<Maybe<
|
|
145990
|
+
settings?: Maybe<Array<Maybe<MercuryChangeProposalViewSetting>>>;
|
|
145697
145991
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
145698
145992
|
updatedBy?: Maybe<User>;
|
|
145699
145993
|
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -145997,7 +146291,7 @@ export declare type MercuryCreateChangeProposalPayload = Payload & {
|
|
|
145997
146291
|
export declare type MercuryCreateChangeProposalsViewInput = {
|
|
145998
146292
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
145999
146293
|
name: Scalars['String']['input'];
|
|
146000
|
-
settings?: InputMaybe<Array<InputMaybe<
|
|
146294
|
+
settings?: InputMaybe<Array<InputMaybe<MercuryChangeProposalViewSettingInput>>>;
|
|
146001
146295
|
strategicEventId?: InputMaybe<Scalars['ID']['input']>;
|
|
146002
146296
|
};
|
|
146003
146297
|
export declare type MercuryCreateChangeProposalsViewSettingPayload = Payload & {
|
|
@@ -147986,6 +148280,8 @@ export declare enum MercuryImportExecutionErrorEntityType {
|
|
|
147986
148280
|
FocusAreaLink = "FOCUS_AREA_LINK",
|
|
147987
148281
|
FundsBenefitItem = "FUNDS_BENEFIT_ITEM",
|
|
147988
148282
|
FundsCostItem = "FUNDS_COST_ITEM",
|
|
148283
|
+
Organization = "ORGANIZATION",
|
|
148284
|
+
OrganizationLink = "ORGANIZATION_LINK",
|
|
147989
148285
|
PeopleBudget = "PEOPLE_BUDGET",
|
|
147990
148286
|
Team = "TEAM",
|
|
147991
148287
|
TeamAllocation = "TEAM_ALLOCATION"
|
|
@@ -149713,7 +150009,7 @@ export declare enum MercuryPermission {
|
|
|
149713
150009
|
ViewStrategicEvent = "VIEW_STRATEGIC_EVENT",
|
|
149714
150010
|
Write = "WRITE"
|
|
149715
150011
|
}
|
|
149716
|
-
export declare type MercuryPortfolio =
|
|
150012
|
+
export declare type MercuryPortfolio = {
|
|
149717
150013
|
__typename?: 'MercuryPortfolio';
|
|
149718
150014
|
aggregatedFocusAreaStatusCount?: Maybe<MercuryAggregatedPortfolioStatusCount>;
|
|
149719
150015
|
allocations?: Maybe<MercuryPortfolioAllocations>;
|
|
@@ -151328,6 +151624,7 @@ export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventTargetD
|
|
|
151328
151624
|
export declare type MercuryStrategicEventsQueryApi = {
|
|
151329
151625
|
__typename?: 'MercuryStrategicEventsQueryApi';
|
|
151330
151626
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
151627
|
+
changeProposalActivityHistoryByIds?: Maybe<Array<Maybe<MercuryChangeProposalActivityHistory>>>;
|
|
151331
151628
|
changeProposalCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
151332
151629
|
changeProposalImpactValues: Array<MercuryChangeProposalImpact>;
|
|
151333
151630
|
changeProposalStatuses: Array<MercuryChangeProposalStatus>;
|
|
@@ -151348,6 +151645,7 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
151348
151645
|
changesSearch?: Maybe<MercuryChangeConnection>;
|
|
151349
151646
|
restrictedChangeProposalsSearch?: Maybe<MercuryRestrictedChangeProposalConnection>;
|
|
151350
151647
|
restrictedStrategicEventsSearch?: Maybe<MercuryRestrictedStrategicEventConnection>;
|
|
151648
|
+
searchChangeProposalActivityHistory?: Maybe<MercuryChangeProposalActivityHistoryConnection>;
|
|
151351
151649
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
151352
151650
|
strategicEventStatuses: Array<MercuryStrategicEventStatus>;
|
|
151353
151651
|
strategicEvents?: Maybe<Array<Maybe<MercuryStrategicEvent>>>;
|
|
@@ -151356,6 +151654,9 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
151356
151654
|
export declare type MercuryStrategicEventsQueryApiChangeProposalArgs = {
|
|
151357
151655
|
id: Scalars['ID']['input'];
|
|
151358
151656
|
};
|
|
151657
|
+
export declare type MercuryStrategicEventsQueryApiChangeProposalActivityHistoryByIdsArgs = {
|
|
151658
|
+
ids: Array<Scalars['ID']['input']>;
|
|
151659
|
+
};
|
|
151359
151660
|
export declare type MercuryStrategicEventsQueryApiChangeProposalCustomFieldDefinitionsSearchArgs = {
|
|
151360
151661
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
151361
151662
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -151442,6 +151743,13 @@ export declare type MercuryStrategicEventsQueryApiRestrictedStrategicEventsSearc
|
|
|
151442
151743
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
151443
151744
|
sort?: InputMaybe<Array<InputMaybe<MercuryStrategicEventSort>>>;
|
|
151444
151745
|
};
|
|
151746
|
+
export declare type MercuryStrategicEventsQueryApiSearchChangeProposalActivityHistoryArgs = {
|
|
151747
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
151748
|
+
cloudId: Scalars['ID']['input'];
|
|
151749
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
151750
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
151751
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryChangeProposalActivitySort>>>;
|
|
151752
|
+
};
|
|
151445
151753
|
export declare type MercuryStrategicEventsQueryApiStrategicEventArgs = {
|
|
151446
151754
|
id: Scalars['ID']['input'];
|
|
151447
151755
|
};
|
|
@@ -151875,7 +152183,7 @@ export declare type MercuryUpdateChangeProposalsViewNamePayload = Payload & {
|
|
|
151875
152183
|
};
|
|
151876
152184
|
export declare type MercuryUpdateChangeProposalsViewSettingsInput = {
|
|
151877
152185
|
id: Scalars['ID']['input'];
|
|
151878
|
-
settings?: InputMaybe<Array<InputMaybe<
|
|
152186
|
+
settings?: InputMaybe<Array<InputMaybe<MercuryChangeProposalViewSettingInput>>>;
|
|
151879
152187
|
};
|
|
151880
152188
|
export declare type MercuryUpdateChangeProposalsViewSettingsPayload = {
|
|
151881
152189
|
__typename?: 'MercuryUpdateChangeProposalsViewSettingsPayload';
|
|
@@ -152339,19 +152647,6 @@ export declare type MercuryValidateFocusAreasForRankingPayload = Payload & {
|
|
|
152339
152647
|
success: Scalars['Boolean']['output'];
|
|
152340
152648
|
validation?: Maybe<MercuryFocusAreaRankingValidation>;
|
|
152341
152649
|
};
|
|
152342
|
-
export declare type MercuryView = {
|
|
152343
|
-
name: Scalars['String']['output'];
|
|
152344
|
-
settings?: Maybe<Array<Maybe<MercuryViewSetting>>>;
|
|
152345
|
-
};
|
|
152346
|
-
export declare type MercuryViewSetting = {
|
|
152347
|
-
__typename?: 'MercuryViewSetting';
|
|
152348
|
-
key: Scalars['String']['output'];
|
|
152349
|
-
value?: Maybe<Scalars['String']['output']>;
|
|
152350
|
-
};
|
|
152351
|
-
export declare type MercuryViewSettingInput = {
|
|
152352
|
-
key: Scalars['String']['input'];
|
|
152353
|
-
value?: InputMaybe<Scalars['String']['input']>;
|
|
152354
|
-
};
|
|
152355
152650
|
export declare enum MercuryViewType {
|
|
152356
152651
|
HierarchyView = "HIERARCHY_VIEW",
|
|
152357
152652
|
RankingView = "RANKING_VIEW"
|
|
@@ -152738,6 +153033,7 @@ export declare type Mutation = {
|
|
|
152738
153033
|
agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
|
|
152739
153034
|
agentWorkspace_archiveSkill?: Maybe<AgentWorkspaceArchiveSkillPayload>;
|
|
152740
153035
|
agentWorkspace_assignAgentToGap?: Maybe<AgentWorkspaceAssignAgentToGapPayload>;
|
|
153036
|
+
agentWorkspace_assignAgentsToSkill?: Maybe<AgentWorkspaceAssignAgentsToSkillPayload>;
|
|
152741
153037
|
agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
|
|
152742
153038
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
152743
153039
|
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
@@ -152761,6 +153057,7 @@ export declare type Mutation = {
|
|
|
152761
153057
|
aiManagedObject_deleteAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
|
|
152762
153058
|
aiManagedObject_updateAiManagedObject?: Maybe<AiManagedObject>;
|
|
152763
153059
|
aiops_createInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
153060
|
+
aiops_triggerInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
152764
153061
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
152765
153062
|
appStorage?: Maybe<AppStorageMutation>;
|
|
152766
153063
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -153186,6 +153483,7 @@ export declare type Mutation = {
|
|
|
153186
153483
|
csmAi_updateKnowledgeSource?: Maybe<CsmAiKnowledgeSourcePayload>;
|
|
153187
153484
|
csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
|
|
153188
153485
|
csm_updateLiveChatSettings?: Maybe<CustomerServiceLiveChatSettingsPayload>;
|
|
153486
|
+
csm_upsertHelpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataUpsertPayload>;
|
|
153189
153487
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
153190
153488
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
153191
153489
|
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
@@ -153383,6 +153681,7 @@ export declare type Mutation = {
|
|
|
153383
153681
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
153384
153682
|
jiraOpenBeta_createFeature?: Maybe<JiraOpenBetaFeatureCreatePayload>;
|
|
153385
153683
|
jiraOpenBeta_updateFeature?: Maybe<JiraOpenBetaFeatureUpdatePayload>;
|
|
153684
|
+
jira_addAgentToBoardViewStatusColumn?: Maybe<JiraAddAgentToBoardViewStatusColumnPayload>;
|
|
153386
153685
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
153387
153686
|
jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
153388
153687
|
jira_archiveIssue?: Maybe<JiraIssueArchivePayload>;
|
|
@@ -153422,6 +153721,7 @@ export declare type Mutation = {
|
|
|
153422
153721
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
153423
153722
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
153424
153723
|
jira_publishTimelineViewConfig?: Maybe<JiraPublishTimelineViewConfigPayload>;
|
|
153724
|
+
jira_removeAgentFromBoardViewStatusColumn?: Maybe<JiraRemoveAgentFromBoardViewStatusColumnPayload>;
|
|
153425
153725
|
jira_removeCustomFieldTranslation?: Maybe<JiraRemoveCustomFieldTranslationPayload>;
|
|
153426
153726
|
jira_removeFieldsFromFieldScheme?: Maybe<JiraRemoveFieldsFromFieldSchemePayload>;
|
|
153427
153727
|
jira_removeIssueFromSprint?: Maybe<JiraRemoveIssueFromSprintPayload>;
|
|
@@ -153530,6 +153830,7 @@ export declare type Mutation = {
|
|
|
153530
153830
|
jsmChannels_establishConnection: JsmChannelsEstablishConnectionPayload;
|
|
153531
153831
|
jsmChannels_executeDraftResolutionPlanDeletion: JsmChannelsResolutionPlanActionPayload;
|
|
153532
153832
|
jsmChannels_executeResolutionPlanAction: JsmChannelsResolutionPlanActionPayload;
|
|
153833
|
+
jsmChannels_setPreviewMode?: Maybe<JsmChannelsSetPreviewModePayload>;
|
|
153533
153834
|
jsmChannels_updateExperienceConfiguration: JsmChannelsExperienceConfigurationPayload;
|
|
153534
153835
|
jsmChannels_updateTaskAgentConfiguration: JsmChannelsTaskAgentConfigurationPayload;
|
|
153535
153836
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
@@ -154263,6 +154564,9 @@ export declare type MutationAgentWorkspace_ArchiveSkillArgs = {
|
|
|
154263
154564
|
export declare type MutationAgentWorkspace_AssignAgentToGapArgs = {
|
|
154264
154565
|
input: AgentWorkspaceAssignAgentToGapInput;
|
|
154265
154566
|
};
|
|
154567
|
+
export declare type MutationAgentWorkspace_AssignAgentsToSkillArgs = {
|
|
154568
|
+
input: AgentWorkspaceAssignAgentsToSkillInput;
|
|
154569
|
+
};
|
|
154266
154570
|
export declare type MutationAgentWorkspace_CreateAndLinkTeamsFromGroupsArgs = {
|
|
154267
154571
|
input: AgentWorkspaceCreateAndLinkTeamsInput;
|
|
154268
154572
|
};
|
|
@@ -154337,6 +154641,10 @@ export declare type MutationAiManagedObject_UpdateAiManagedObjectArgs = {
|
|
|
154337
154641
|
export declare type MutationAiops_CreateInvestigationArgs = {
|
|
154338
154642
|
input: AiOpsCreateInvestigationInput;
|
|
154339
154643
|
};
|
|
154644
|
+
export declare type MutationAiops_TriggerInvestigationArgs = {
|
|
154645
|
+
cloudId: Scalars['ID']['input'];
|
|
154646
|
+
input: AiOpsTriggerInvestigationInput;
|
|
154647
|
+
};
|
|
154340
154648
|
export declare type MutationAppStorage_AdminArgs = {
|
|
154341
154649
|
appId: Scalars['ID']['input'];
|
|
154342
154650
|
};
|
|
@@ -155938,6 +156246,10 @@ export declare type MutationCsm_UpdateLiveChatSettingsArgs = {
|
|
|
155938
156246
|
cloudId: Scalars['ID']['input'];
|
|
155939
156247
|
input: CustomerServiceLiveChatSettingsInput;
|
|
155940
156248
|
};
|
|
156249
|
+
export declare type MutationCsm_UpsertHelpCenterMetadataArgs = {
|
|
156250
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
156251
|
+
input: CustomerServiceHelpCenterMetadataUpsertInput;
|
|
156252
|
+
};
|
|
155941
156253
|
export declare type MutationCustomerServiceArgs = {
|
|
155942
156254
|
cloudId: Scalars['ID']['input'];
|
|
155943
156255
|
};
|
|
@@ -156541,6 +156853,9 @@ export declare type MutationJiraOpenBeta_UpdateFeatureArgs = {
|
|
|
156541
156853
|
cloudId: Scalars['ID']['input'];
|
|
156542
156854
|
input?: InputMaybe<JiraOpenBetaFeatureUpdateInput>;
|
|
156543
156855
|
};
|
|
156856
|
+
export declare type MutationJira_AddAgentToBoardViewStatusColumnArgs = {
|
|
156857
|
+
input: JiraAddAgentToBoardViewStatusColumnInput;
|
|
156858
|
+
};
|
|
156544
156859
|
export declare type MutationJira_AddFieldsToFieldSchemeArgs = {
|
|
156545
156860
|
cloudId: Scalars['ID']['input'];
|
|
156546
156861
|
input: JiraAddFieldsToFieldSchemeInput;
|
|
@@ -156667,6 +156982,9 @@ export declare type MutationJira_PublishIssueSearchConfigArgs = {
|
|
|
156667
156982
|
export declare type MutationJira_PublishTimelineViewConfigArgs = {
|
|
156668
156983
|
input: JiraPublishTimelineViewConfigInput;
|
|
156669
156984
|
};
|
|
156985
|
+
export declare type MutationJira_RemoveAgentFromBoardViewStatusColumnArgs = {
|
|
156986
|
+
input: JiraRemoveAgentFromBoardViewStatusColumnInput;
|
|
156987
|
+
};
|
|
156670
156988
|
export declare type MutationJira_RemoveCustomFieldTranslationArgs = {
|
|
156671
156989
|
cloudId: Scalars['ID']['input'];
|
|
156672
156990
|
input: JiraRemoveCustomFieldTranslationInput;
|
|
@@ -157017,6 +157335,11 @@ export declare type MutationJsmChannels_ExecuteResolutionPlanActionArgs = {
|
|
|
157017
157335
|
jiraProjectAri: Scalars['ID']['input'];
|
|
157018
157336
|
planId: Scalars['ID']['input'];
|
|
157019
157337
|
};
|
|
157338
|
+
export declare type MutationJsmChannels_SetPreviewModeArgs = {
|
|
157339
|
+
experience: JsmChannelsExperience;
|
|
157340
|
+
input: JsmChannelsSetPreviewModeInput;
|
|
157341
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
157342
|
+
};
|
|
157020
157343
|
export declare type MutationJsmChannels_UpdateExperienceConfigurationArgs = {
|
|
157021
157344
|
experience: JsmChannelsExperience;
|
|
157022
157345
|
input: JsmChannelsExperienceConfigurationInput;
|
|
@@ -157167,6 +157490,7 @@ export declare type MutationKitsune_UpdateFeedbackArgs = {
|
|
|
157167
157490
|
export declare type MutationKitsune_UpdateInsightArgs = {
|
|
157168
157491
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
157169
157492
|
id: Scalars['ID']['input'];
|
|
157493
|
+
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
157170
157494
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
157171
157495
|
};
|
|
157172
157496
|
export declare type MutationKitsune_UpdateOrganizationArgs = {
|
|
@@ -161537,6 +161861,7 @@ export declare type Query = {
|
|
|
161537
161861
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
161538
161862
|
agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
|
|
161539
161863
|
agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
161864
|
+
agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
161540
161865
|
agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
|
|
161541
161866
|
agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
161542
161867
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
@@ -161558,6 +161883,7 @@ export declare type Query = {
|
|
|
161558
161883
|
aiManagedObject_aiManagedObjectsByReferenceObjectAri?: Maybe<AiManagedObjectConnection>;
|
|
161559
161884
|
aiops_echo?: Maybe<Scalars['String']['output']>;
|
|
161560
161885
|
aiops_incidentSuggestion?: Maybe<AiOpsIncidentSuggestionResponse>;
|
|
161886
|
+
aiops_latestInvestigationByEntityTypeId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
161561
161887
|
aiops_latestInvestigationByIssueId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
161562
161888
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
161563
161889
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
@@ -161663,6 +161989,8 @@ export declare type Query = {
|
|
|
161663
161989
|
assetsVertical_modelItamAttributes?: Maybe<AssetsVerticalModelItamAttributesResult>;
|
|
161664
161990
|
assetsVertical_modelObjects?: Maybe<AssetsVerticalModelObjectsResult>;
|
|
161665
161991
|
assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
|
|
161992
|
+
assetsVertical_stockroomItamAttributes?: Maybe<AssetsVerticalStockroomItamAttributesResult>;
|
|
161993
|
+
assetsVertical_stockroomObjectTypes?: Maybe<AssetsVerticalStockroomObjectTypesResult>;
|
|
161666
161994
|
assetsVertical_stockroomObjects?: Maybe<AssetsVerticalStockroomObjectsResult>;
|
|
161667
161995
|
assetsVertical_verticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationResult>;
|
|
161668
161996
|
assetsVertical_verticalInstantiationCategories?: Maybe<AssetsVerticalVerticalInstantiationCategoryConnection>;
|
|
@@ -161674,6 +162002,7 @@ export declare type Query = {
|
|
|
161674
162002
|
assets_bundle?: Maybe<AssetsBundleResult>;
|
|
161675
162003
|
assets_cdmObjectTypesDefinitions?: Maybe<Array<Maybe<AssetsCdmObjectTypeResult>>>;
|
|
161676
162004
|
assets_cdmSchemasDefinitions?: Maybe<Array<Maybe<AssetsCdmSchemaResult>>>;
|
|
162005
|
+
assets_instantiatedBundle?: Maybe<AssetsBundleInstantiationResult>;
|
|
161677
162006
|
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
161678
162007
|
assets_objectTypeAttributeValuesByID?: Maybe<Array<Maybe<AssetsObjectTypeAttributeValue>>>;
|
|
161679
162008
|
assets_objectTypeAttributesByObjectTypeIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
@@ -161911,6 +162240,7 @@ export declare type Query = {
|
|
|
161911
162240
|
confluence_permittedClassificationLevelsForContent?: Maybe<ConfluencePermittedClassificationLevels>;
|
|
161912
162241
|
confluence_permittedClassificationLevelsForSpaceDefault?: Maybe<ConfluencePermittedClassificationLevels>;
|
|
161913
162242
|
confluence_popularCalendars?: Maybe<ConfluenceCalendarConnection>;
|
|
162243
|
+
confluence_popularLabelsMacro?: Maybe<ConfluencePopularLabelEntryConnection>;
|
|
161914
162244
|
confluence_principalsByCombinationId?: Maybe<ConfluencePermissionTransitionPrincipalsConnection>;
|
|
161915
162245
|
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
161916
162246
|
confluence_question?: Maybe<ConfluenceQuestion>;
|
|
@@ -162033,6 +162363,7 @@ export declare type Query = {
|
|
|
162033
162363
|
csmAi_getWidgetsWithCsmAiHub?: Maybe<CsmAiHubWithWidgetsResult>;
|
|
162034
162364
|
csmCustomersByIds?: Maybe<Array<Maybe<CustomerServiceCsmCustomer>>>;
|
|
162035
162365
|
csmOrganizationsByIds?: Maybe<Array<Maybe<CustomerServiceCsmOrganization>>>;
|
|
162366
|
+
csm_helpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataQueryResult>;
|
|
162036
162367
|
csm_liveChatAgent?: Maybe<CustomerServiceLiveChatAgentQueryResult>;
|
|
162037
162368
|
csm_liveChatSettings?: Maybe<CustomerServiceLiveChatSettingsQueryResult>;
|
|
162038
162369
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
@@ -162162,6 +162493,7 @@ export declare type Query = {
|
|
|
162162
162493
|
goals_byId?: Maybe<TownsquareGoal>;
|
|
162163
162494
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
162164
162495
|
goals_byKey?: Maybe<TownsquareGoal>;
|
|
162496
|
+
goals_capabilities?: Maybe<TownsquareGoalAppCapabilities>;
|
|
162165
162497
|
goals_goalStatuses?: Maybe<Array<TownsquareStatus>>;
|
|
162166
162498
|
goals_goalTypeById?: Maybe<TownsquareGoalType>;
|
|
162167
162499
|
goals_goalTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
@@ -162313,6 +162645,7 @@ export declare type Query = {
|
|
|
162313
162645
|
jsmChannels_getExperienceConfigurationByProjectIds: JsmChannelsExperienceConfigurationByProjectIdsResult;
|
|
162314
162646
|
jsmChannels_getResolutionPlanGraph?: Maybe<JsmChannelsResolutionPlanGraphResult>;
|
|
162315
162647
|
jsmChannels_getServiceAgentResolutionStateByTicketId: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
162648
|
+
jsmChannels_isPreviewModeEnabled?: Maybe<JsmChannelsPreviewModeResult>;
|
|
162316
162649
|
jsmChannels_taskAgents: JsmChannelsTaskAgentsResult;
|
|
162317
162650
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
162318
162651
|
jsmConversation_conversations?: Maybe<JsmConversationConnection>;
|
|
@@ -162497,6 +162830,7 @@ export declare type Query = {
|
|
|
162497
162830
|
projects_byIds?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
162498
162831
|
projects_byKey?: Maybe<TownsquareProject>;
|
|
162499
162832
|
projects_canCreateProjectFusion?: Maybe<TownsquareProjectsCanCreateProjectFusionPayload>;
|
|
162833
|
+
projects_capabilities?: Maybe<TownsquareProjectAppCapabilities>;
|
|
162500
162834
|
projects_customFieldDefinitionSearch?: Maybe<TownsquareCustomFieldDefinitionConnection>;
|
|
162501
162835
|
projects_linksByIds?: Maybe<Array<Maybe<TownsquareLink>>>;
|
|
162502
162836
|
projects_search?: Maybe<TownsquareProjectConnection>;
|
|
@@ -163414,6 +163748,9 @@ export declare type QueryAgentWorkspace_ProjectDefaultAvailabilityArgs = {
|
|
|
163414
163748
|
cloudId: Scalars['ID']['input'];
|
|
163415
163749
|
projectId: Scalars['ID']['input'];
|
|
163416
163750
|
};
|
|
163751
|
+
export declare type QueryAgentWorkspace_RecommendedAgentsForGapArgs = {
|
|
163752
|
+
input: AgentWorkspaceRecommendedAgentsForGapInput;
|
|
163753
|
+
};
|
|
163417
163754
|
export declare type QueryAgentWorkspace_RecommendedAssigneesArgs = {
|
|
163418
163755
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
163419
163756
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -163515,6 +163852,11 @@ export declare type QueryAiops_IncidentSuggestionArgs = {
|
|
|
163515
163852
|
cloudId: Scalars['ID']['input'];
|
|
163516
163853
|
issueKey: Scalars['String']['input'];
|
|
163517
163854
|
};
|
|
163855
|
+
export declare type QueryAiops_LatestInvestigationByEntityTypeIdArgs = {
|
|
163856
|
+
cloudId: Scalars['ID']['input'];
|
|
163857
|
+
entityId: Scalars['ID']['input'];
|
|
163858
|
+
entityType: AiOpsInvestigationSourceEntityType;
|
|
163859
|
+
};
|
|
163518
163860
|
export declare type QueryAiops_LatestInvestigationByIssueIdArgs = {
|
|
163519
163861
|
issueId: Scalars['ID']['input'];
|
|
163520
163862
|
};
|
|
@@ -164091,6 +164433,13 @@ export declare type QueryAssetsVertical_ObjectsArgs = {
|
|
|
164091
164433
|
cloudId: Scalars['ID']['input'];
|
|
164092
164434
|
input?: InputMaybe<AssetsVerticalObjectsInput>;
|
|
164093
164435
|
};
|
|
164436
|
+
export declare type QueryAssetsVertical_StockroomItamAttributesArgs = {
|
|
164437
|
+
cloudId: Scalars['ID']['input'];
|
|
164438
|
+
workspaceId: Scalars['ID']['input'];
|
|
164439
|
+
};
|
|
164440
|
+
export declare type QueryAssetsVertical_StockroomObjectTypesArgs = {
|
|
164441
|
+
cloudId: Scalars['ID']['input'];
|
|
164442
|
+
};
|
|
164094
164443
|
export declare type QueryAssetsVertical_StockroomObjectsArgs = {
|
|
164095
164444
|
cloudId: Scalars['ID']['input'];
|
|
164096
164445
|
input: AssetsVerticalStockroomObjectsInput;
|
|
@@ -164145,6 +164494,10 @@ export declare type QueryAssets_CdmSchemasDefinitionsArgs = {
|
|
|
164145
164494
|
cloudId: Scalars['ID']['input'];
|
|
164146
164495
|
ids: Array<Scalars['ID']['input']>;
|
|
164147
164496
|
};
|
|
164497
|
+
export declare type QueryAssets_InstantiatedBundleArgs = {
|
|
164498
|
+
cloudId: Scalars['ID']['input'];
|
|
164499
|
+
type: AssetsBundleType;
|
|
164500
|
+
};
|
|
164148
164501
|
export declare type QueryAssets_ObjectByIdArgs = {
|
|
164149
164502
|
id: Scalars['ID']['input'];
|
|
164150
164503
|
};
|
|
@@ -165123,6 +165476,12 @@ export declare type QueryConfluence_PopularCalendarsArgs = {
|
|
|
165123
165476
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165124
165477
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
165125
165478
|
};
|
|
165479
|
+
export declare type QueryConfluence_PopularLabelsMacroArgs = {
|
|
165480
|
+
cloudId: Scalars['ID']['input'];
|
|
165481
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165482
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
165483
|
+
style?: InputMaybe<ConfluencePopularLabelStyle>;
|
|
165484
|
+
};
|
|
165126
165485
|
export declare type QueryConfluence_PrincipalsByCombinationIdArgs = {
|
|
165127
165486
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
165128
165487
|
cloudId: Scalars['ID']['input'];
|
|
@@ -165766,6 +166125,9 @@ export declare type QueryCsmCustomersByIdsArgs = {
|
|
|
165766
166125
|
export declare type QueryCsmOrganizationsByIdsArgs = {
|
|
165767
166126
|
csmOrganizationAris: Array<Scalars['ID']['input']>;
|
|
165768
166127
|
};
|
|
166128
|
+
export declare type QueryCsm_HelpCenterMetadataArgs = {
|
|
166129
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
166130
|
+
};
|
|
165769
166131
|
export declare type QueryCsm_LiveChatAgentArgs = {
|
|
165770
166132
|
accountId: Scalars['ID']['input'];
|
|
165771
166133
|
cloudId: Scalars['ID']['input'];
|
|
@@ -166281,6 +166643,9 @@ export declare type QueryGoals_ByKeyArgs = {
|
|
|
166281
166643
|
containerId: Scalars['ID']['input'];
|
|
166282
166644
|
goalKey: Scalars['String']['input'];
|
|
166283
166645
|
};
|
|
166646
|
+
export declare type QueryGoals_CapabilitiesArgs = {
|
|
166647
|
+
containerId: Scalars['ID']['input'];
|
|
166648
|
+
};
|
|
166284
166649
|
export declare type QueryGoals_GoalStatusesArgs = {
|
|
166285
166650
|
containerId: Scalars['ID']['input'];
|
|
166286
166651
|
};
|
|
@@ -166860,6 +167225,10 @@ export declare type QueryJsmChannels_GetServiceAgentResolutionStateByTicketIdArg
|
|
|
166860
167225
|
jiraProjectAri: Scalars['ID']['input'];
|
|
166861
167226
|
ticketId: Scalars['ID']['input'];
|
|
166862
167227
|
};
|
|
167228
|
+
export declare type QueryJsmChannels_IsPreviewModeEnabledArgs = {
|
|
167229
|
+
experience: JsmChannelsExperience;
|
|
167230
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
167231
|
+
};
|
|
166863
167232
|
export declare type QueryJsmChannels_TaskAgentsArgs = {
|
|
166864
167233
|
experience: JsmChannelsExperience;
|
|
166865
167234
|
jiraProjectAri: Scalars['ID']['input'];
|
|
@@ -167479,6 +167848,9 @@ export declare type QueryProjects_ByKeyArgs = {
|
|
|
167479
167848
|
export declare type QueryProjects_CanCreateProjectFusionArgs = {
|
|
167480
167849
|
input: TownsquareProjectsCanCreateProjectFusionInput;
|
|
167481
167850
|
};
|
|
167851
|
+
export declare type QueryProjects_CapabilitiesArgs = {
|
|
167852
|
+
containerId: Scalars['ID']['input'];
|
|
167853
|
+
};
|
|
167482
167854
|
export declare type QueryProjects_CustomFieldDefinitionSearchArgs = {
|
|
167483
167855
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
167484
167856
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -170976,6 +171348,7 @@ export declare enum Scope {
|
|
|
170976
171348
|
ReadAppLogs = "READ_APP_LOGS",
|
|
170977
171349
|
ReadAppSystemToken = "READ_APP_SYSTEM_TOKEN",
|
|
170978
171350
|
ReadAssetsTwgCli = "READ_ASSETS_TWG_CLI",
|
|
171351
|
+
ReadCapacityPlanning = "READ_CAPACITY_PLANNING",
|
|
170979
171352
|
ReadCmdbAttributeJira = "READ_CMDB_ATTRIBUTE_JIRA",
|
|
170980
171353
|
ReadCmdbObjectJira = "READ_CMDB_OBJECT_JIRA",
|
|
170981
171354
|
ReadCmdbSchemaJira = "READ_CMDB_SCHEMA_JIRA",
|
|
@@ -171143,6 +171516,7 @@ export declare enum Scope {
|
|
|
171143
171516
|
WorkflowWrite = "WORKFLOW_WRITE",
|
|
171144
171517
|
WriteAppDetails = "WRITE_APP_DETAILS",
|
|
171145
171518
|
WriteAssetsTwgCli = "WRITE_ASSETS_TWG_CLI",
|
|
171519
|
+
WriteCapacityPlanning = "WRITE_CAPACITY_PLANNING",
|
|
171146
171520
|
WriteCmdbAttributeJira = "WRITE_CMDB_ATTRIBUTE_JIRA",
|
|
171147
171521
|
WriteCommentGoal = "WRITE_COMMENT_GOAL",
|
|
171148
171522
|
WriteCompassComponent = "WRITE_COMPASS_COMPONENT",
|
|
@@ -191845,8 +192219,8 @@ export declare type SmartsContext = {
|
|
|
191845
192219
|
};
|
|
191846
192220
|
export declare type SmartsContextServiceCollaboratorRecommendation = {
|
|
191847
192221
|
__typename?: 'SmartsContextServiceCollaboratorRecommendation';
|
|
192222
|
+
context?: Maybe<Scalars['String']['output']>;
|
|
191848
192223
|
id: Scalars['ID']['output'];
|
|
191849
|
-
reason?: Maybe<Scalars['String']['output']>;
|
|
191850
192224
|
score?: Maybe<Scalars['Float']['output']>;
|
|
191851
192225
|
user?: Maybe<User>;
|
|
191852
192226
|
};
|
|
@@ -198028,6 +198402,10 @@ export declare type TownsquareAppAccessMutationErrorExtension = MutationErrorExt
|
|
|
198028
198402
|
failedAccountIds: Array<Scalars['String']['output']>;
|
|
198029
198403
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
198030
198404
|
};
|
|
198405
|
+
export declare enum TownsquareAppLevelEffectiveRole {
|
|
198406
|
+
CanEdit = "CAN_EDIT",
|
|
198407
|
+
ViewOnly = "VIEW_ONLY"
|
|
198408
|
+
}
|
|
198031
198409
|
export declare type TownsquareArchiveGoalInput = {
|
|
198032
198410
|
id: Scalars['String']['input'];
|
|
198033
198411
|
};
|
|
@@ -198603,6 +198981,7 @@ export declare type TownsquareGoalAccessConnection = {
|
|
|
198603
198981
|
};
|
|
198604
198982
|
export declare type TownsquareGoalAccessEdge = {
|
|
198605
198983
|
__typename?: 'TownsquareGoalAccessEdge';
|
|
198984
|
+
appLevelEffectiveRole?: Maybe<TownsquareAppLevelEffectiveRole>;
|
|
198606
198985
|
cursor: Scalars['String']['output'];
|
|
198607
198986
|
isFollower?: Maybe<Scalars['Boolean']['output']>;
|
|
198608
198987
|
isOwner?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -198625,6 +199004,8 @@ export declare enum TownsquareGoalAccessRoleInput {
|
|
|
198625
199004
|
}
|
|
198626
199005
|
export declare type TownsquareGoalAppCapabilities = {
|
|
198627
199006
|
__typename?: 'TownsquareGoalAppCapabilities';
|
|
199007
|
+
canCreateGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
199008
|
+
canExportGoals?: Maybe<Scalars['Boolean']['output']>;
|
|
198628
199009
|
focus?: Maybe<TownsquareFocusAppCapabilities>;
|
|
198629
199010
|
};
|
|
198630
199011
|
export declare type TownsquareGoalArchivedChange = {
|
|
@@ -200146,6 +200527,7 @@ export declare type TownsquareProjectAccessConnection = {
|
|
|
200146
200527
|
};
|
|
200147
200528
|
export declare type TownsquareProjectAccessEdge = {
|
|
200148
200529
|
__typename?: 'TownsquareProjectAccessEdge';
|
|
200530
|
+
appLevelEffectiveRole?: Maybe<TownsquareAppLevelEffectiveRole>;
|
|
200149
200531
|
cursor: Scalars['String']['output'];
|
|
200150
200532
|
isFollower?: Maybe<Scalars['Boolean']['output']>;
|
|
200151
200533
|
isOwner?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -200168,6 +200550,8 @@ export declare enum TownsquareProjectAccessRoleInput {
|
|
|
200168
200550
|
}
|
|
200169
200551
|
export declare type TownsquareProjectAppCapabilities = {
|
|
200170
200552
|
__typename?: 'TownsquareProjectAppCapabilities';
|
|
200553
|
+
canCreateProject?: Maybe<Scalars['Boolean']['output']>;
|
|
200554
|
+
canExportProjects?: Maybe<Scalars['Boolean']['output']>;
|
|
200171
200555
|
focus?: Maybe<TownsquareFocusAppCapabilities>;
|
|
200172
200556
|
};
|
|
200173
200557
|
export declare type TownsquareProjectCapabilities = {
|
|
@@ -201404,6 +201788,14 @@ export declare type TownsquareUnshardedFusionConfigForJiraIssueAri = {
|
|
|
201404
201788
|
isAppEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
201405
201789
|
jiraIssueAri?: Maybe<Scalars['String']['output']>;
|
|
201406
201790
|
};
|
|
201791
|
+
export declare type TownsquareUnshardedGoalAppCapabilities = {
|
|
201792
|
+
__typename?: 'TownsquareUnshardedGoalAppCapabilities';
|
|
201793
|
+
canCreateGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
201794
|
+
};
|
|
201795
|
+
export declare type TownsquareUnshardedProjectAppCapabilities = {
|
|
201796
|
+
__typename?: 'TownsquareUnshardedProjectAppCapabilities';
|
|
201797
|
+
canCreateProject?: Maybe<Scalars['Boolean']['output']>;
|
|
201798
|
+
};
|
|
201407
201799
|
export declare type TownsquareUnshardedUserCapabilities = {
|
|
201408
201800
|
__typename?: 'TownsquareUnshardedUserCapabilities';
|
|
201409
201801
|
capabilities?: Maybe<Array<Maybe<TownsquareUnshardedCapability>>>;
|
|
@@ -201411,8 +201803,10 @@ export declare type TownsquareUnshardedUserCapabilities = {
|
|
|
201411
201803
|
export declare type TownsquareUnshardedWorkspaceSummary = {
|
|
201412
201804
|
__typename?: 'TownsquareUnshardedWorkspaceSummary';
|
|
201413
201805
|
cloudId: Scalars['String']['output'];
|
|
201806
|
+
goalsCapabilities?: Maybe<TownsquareUnshardedGoalAppCapabilities>;
|
|
201414
201807
|
id: Scalars['ID']['output'];
|
|
201415
201808
|
name: Scalars['String']['output'];
|
|
201809
|
+
projectsCapabilities?: Maybe<TownsquareUnshardedProjectAppCapabilities>;
|
|
201416
201810
|
userCapabilities?: Maybe<TownsquareUnshardedUserCapabilities>;
|
|
201417
201811
|
uuid: Scalars['String']['output'];
|
|
201418
201812
|
};
|
|
@@ -201546,6 +201940,7 @@ export declare type TownsquareWatchGoalPayload = {
|
|
|
201546
201940
|
export declare type TownsquareWorkspace = Node & {
|
|
201547
201941
|
__typename?: 'TownsquareWorkspace';
|
|
201548
201942
|
cloudId: Scalars['String']['output'];
|
|
201943
|
+
defaultGoalAccessLevel: TownsquareGoalAccessLevel;
|
|
201549
201944
|
id: Scalars['ID']['output'];
|
|
201550
201945
|
name: Scalars['String']['output'];
|
|
201551
201946
|
};
|
|
@@ -202513,11 +202908,6 @@ export declare type TrelloBoardPowerUpEdgeUpdated = {
|
|
|
202513
202908
|
export declare type TrelloBoardPowerUpFilterInput = {
|
|
202514
202909
|
access?: InputMaybe<Scalars['String']['input']>;
|
|
202515
202910
|
};
|
|
202516
|
-
export declare enum TrelloBoardPowerUps {
|
|
202517
|
-
Calendar = "CALENDAR",
|
|
202518
|
-
Cardaging = "CARDAGING",
|
|
202519
|
-
Voting = "VOTING"
|
|
202520
|
-
}
|
|
202521
202911
|
export declare type TrelloBoardPreferencesInput = {
|
|
202522
202912
|
background?: InputMaybe<TrelloCreateBoardBackgroundInput>;
|
|
202523
202913
|
cardAging?: InputMaybe<TrelloBoardCardAgingModes>;
|
|
@@ -202529,7 +202919,6 @@ export declare type TrelloBoardPreferencesInput = {
|
|
|
202529
202919
|
permissionLevel?: InputMaybe<TrelloBoardPrefsPermissionLevel>;
|
|
202530
202920
|
selfJoin?: InputMaybe<Scalars['Boolean']['input']>;
|
|
202531
202921
|
showCompleteStatus?: InputMaybe<Scalars['Boolean']['input']>;
|
|
202532
|
-
switcherViews?: InputMaybe<Array<InputMaybe<TrelloSwitcherViewsInfoInput>>>;
|
|
202533
202922
|
voting?: InputMaybe<TrelloBoardVotingPermissions>;
|
|
202534
202923
|
};
|
|
202535
202924
|
export declare type TrelloBoardPrefs = TrelloBaseBoardPrefs & {
|
|
@@ -203453,7 +203842,6 @@ export declare type TrelloCreateBoardInput = {
|
|
|
203453
203842
|
creationMethod?: InputMaybe<TrelloBoardCreationMethod>;
|
|
203454
203843
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
203455
203844
|
name: Scalars['String']['input'];
|
|
203456
|
-
powerUps?: InputMaybe<TrelloBoardPowerUps>;
|
|
203457
203845
|
preferences?: InputMaybe<TrelloBoardPreferencesInput>;
|
|
203458
203846
|
setup?: InputMaybe<TrelloSetupInput>;
|
|
203459
203847
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -204973,6 +205361,7 @@ export declare type TrelloMutationApi = {
|
|
|
204973
205361
|
undoAction?: Maybe<TrelloUndoActionPayload>;
|
|
204974
205362
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
204975
205363
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
205364
|
+
updateApplication?: Maybe<TrelloUpdateApplicationPayload>;
|
|
204976
205365
|
updateBoardBackground?: Maybe<TrelloUpdateBoardBackgroundPayload>;
|
|
204977
205366
|
updateBoardCommentingPermissions?: Maybe<TrelloUpdateBoardCommentingPermissionsPayload>;
|
|
204978
205367
|
updateBoardDescription?: Maybe<TrelloUpdateBoardDescriptionPayload>;
|
|
@@ -205001,6 +205390,7 @@ export declare type TrelloMutationApi = {
|
|
|
205001
205390
|
updateCustomFieldOption?: Maybe<TrelloUpdateCustomFieldOptionPayload>;
|
|
205002
205391
|
updateInboxBackground?: Maybe<TrelloUpdateInboxBackgroundPayload>;
|
|
205003
205392
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
205393
|
+
updateListName?: Maybe<TrelloUpdateListPayload>;
|
|
205004
205394
|
updateMemberTimezone?: Maybe<TrelloUpdateMemberTimezonePayload>;
|
|
205005
205395
|
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
205006
205396
|
updatePlannerDueDateCardSettings?: Maybe<TrelloUpdatePlannerDueDateCardSettingsPayload>;
|
|
@@ -205258,6 +205648,9 @@ export declare type TrelloMutationApiUnwatchCardArgs = {
|
|
|
205258
205648
|
export declare type TrelloMutationApiUpdateAiRuleArgs = {
|
|
205259
205649
|
input: TrelloUpdateAiRuleInput;
|
|
205260
205650
|
};
|
|
205651
|
+
export declare type TrelloMutationApiUpdateApplicationArgs = {
|
|
205652
|
+
input: TrelloUpdateApplicationInput;
|
|
205653
|
+
};
|
|
205261
205654
|
export declare type TrelloMutationApiUpdateBoardBackgroundArgs = {
|
|
205262
205655
|
input: TrelloUpdateBoardBackgroundInput;
|
|
205263
205656
|
};
|
|
@@ -205342,6 +205735,9 @@ export declare type TrelloMutationApiUpdateInboxBackgroundArgs = {
|
|
|
205342
205735
|
export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
205343
205736
|
input: TrelloUpdateKeyboardShortcutsPrefInput;
|
|
205344
205737
|
};
|
|
205738
|
+
export declare type TrelloMutationApiUpdateListNameArgs = {
|
|
205739
|
+
input: TrelloUpdateListNameInput;
|
|
205740
|
+
};
|
|
205345
205741
|
export declare type TrelloMutationApiUpdateMemberTimezoneArgs = {
|
|
205346
205742
|
input: TrelloUpdateMemberTimezoneInput;
|
|
205347
205743
|
};
|
|
@@ -206862,10 +207258,6 @@ export declare type TrelloSwitcherViewsInfo = {
|
|
|
206862
207258
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
206863
207259
|
viewType?: Maybe<Scalars['String']['output']>;
|
|
206864
207260
|
};
|
|
206865
|
-
export declare type TrelloSwitcherViewsInfoInput = {
|
|
206866
|
-
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
206867
|
-
viewType?: InputMaybe<Scalars['String']['input']>;
|
|
206868
|
-
};
|
|
206869
207261
|
export declare type TrelloTag = {
|
|
206870
207262
|
__typename?: 'TrelloTag';
|
|
206871
207263
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -206966,6 +207358,24 @@ export declare type TrelloUpdateAiRulePayload = Payload & {
|
|
|
206966
207358
|
errors?: Maybe<Array<MutationError>>;
|
|
206967
207359
|
success: Scalars['Boolean']['output'];
|
|
206968
207360
|
};
|
|
207361
|
+
export declare type TrelloUpdateApplicationIconInput = {
|
|
207362
|
+
url?: InputMaybe<Scalars['URL']['input']>;
|
|
207363
|
+
};
|
|
207364
|
+
export declare type TrelloUpdateApplicationInput = {
|
|
207365
|
+
author?: InputMaybe<Scalars['String']['input']>;
|
|
207366
|
+
categories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
207367
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
207368
|
+
icon?: InputMaybe<TrelloUpdateApplicationIconInput>;
|
|
207369
|
+
id: Scalars['ID']['input'];
|
|
207370
|
+
iframeConnectorUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
207371
|
+
supportContact?: InputMaybe<Scalars['String']['input']>;
|
|
207372
|
+
};
|
|
207373
|
+
export declare type TrelloUpdateApplicationPayload = Payload & {
|
|
207374
|
+
__typename?: 'TrelloUpdateApplicationPayload';
|
|
207375
|
+
application?: Maybe<TrelloApplication>;
|
|
207376
|
+
errors?: Maybe<Array<MutationError>>;
|
|
207377
|
+
success: Scalars['Boolean']['output'];
|
|
207378
|
+
};
|
|
206969
207379
|
export declare type TrelloUpdateBoardBackgroundInput = {
|
|
206970
207380
|
background?: InputMaybe<TrelloBoardBackgroundInput>;
|
|
206971
207381
|
id: Scalars['ID']['input'];
|
|
@@ -207372,6 +207782,16 @@ export declare type TrelloUpdateKeyboardShortcutsPrefPayload = Payload & {
|
|
|
207372
207782
|
errors?: Maybe<Array<MutationError>>;
|
|
207373
207783
|
success: Scalars['Boolean']['output'];
|
|
207374
207784
|
};
|
|
207785
|
+
export declare type TrelloUpdateListNameInput = {
|
|
207786
|
+
id: Scalars['ID']['input'];
|
|
207787
|
+
name: Scalars['String']['input'];
|
|
207788
|
+
};
|
|
207789
|
+
export declare type TrelloUpdateListPayload = Payload & {
|
|
207790
|
+
__typename?: 'TrelloUpdateListPayload';
|
|
207791
|
+
errors?: Maybe<Array<MutationError>>;
|
|
207792
|
+
list?: Maybe<TrelloList>;
|
|
207793
|
+
success: Scalars['Boolean']['output'];
|
|
207794
|
+
};
|
|
207375
207795
|
export declare type TrelloUpdateMemberTimezoneInput = {
|
|
207376
207796
|
value: Scalars['String']['input'];
|
|
207377
207797
|
};
|