@forge/cli-shared 8.21.1-next.1 → 8.22.0
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 +27 -0
- package/out/graphql/graphql-types.d.ts +463 -33
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +109 -50
- package/out/graphql/minimal-graphql-runner.d.ts.map +1 -1
- package/out/graphql/minimal-graphql-runner.js +3 -1
- package/package.json +2 -2
|
@@ -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'];
|
|
@@ -2052,6 +2077,7 @@ export declare type AvpPlatformFilter = {
|
|
|
2052
2077
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
2053
2078
|
label?: Maybe<Scalars['String']['output']>;
|
|
2054
2079
|
metadata?: Maybe<Scalars['String']['output']>;
|
|
2080
|
+
visibility?: Maybe<AvpPlatformFilterVisibility>;
|
|
2055
2081
|
};
|
|
2056
2082
|
export declare type AvpPlatformFilterInput = {
|
|
2057
2083
|
comparison: Scalars['String']['input'];
|
|
@@ -2060,6 +2086,7 @@ export declare type AvpPlatformFilterInput = {
|
|
|
2060
2086
|
isHidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2061
2087
|
label?: InputMaybe<Scalars['String']['input']>;
|
|
2062
2088
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
2089
|
+
visibility?: InputMaybe<AvpPlatformFilterVisibility>;
|
|
2063
2090
|
};
|
|
2064
2091
|
export declare type AvpPlatformFilterUpdateInput = {
|
|
2065
2092
|
comparison?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2068,7 +2095,13 @@ export declare type AvpPlatformFilterUpdateInput = {
|
|
|
2068
2095
|
isHidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2069
2096
|
label?: InputMaybe<Scalars['String']['input']>;
|
|
2070
2097
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
2098
|
+
visibility?: InputMaybe<AvpPlatformFilterVisibility>;
|
|
2071
2099
|
};
|
|
2100
|
+
export declare enum AvpPlatformFilterVisibility {
|
|
2101
|
+
EditOnly = "EDIT_ONLY",
|
|
2102
|
+
None = "NONE",
|
|
2103
|
+
ViewAndEdit = "VIEW_AND_EDIT"
|
|
2104
|
+
}
|
|
2072
2105
|
export declare type AvpProductWorkspaceMapEntry = {
|
|
2073
2106
|
product: Scalars['String']['input'];
|
|
2074
2107
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -4749,6 +4782,7 @@ export declare type AgentSession = AgentSessionNode & {
|
|
|
4749
4782
|
expireTime?: Maybe<Scalars['DateTime']['output']>;
|
|
4750
4783
|
id?: Maybe<Scalars['ID']['output']>;
|
|
4751
4784
|
isRovo?: Maybe<Scalars['Boolean']['output']>;
|
|
4785
|
+
lastStateChangeAt?: Maybe<Scalars['Long']['output']>;
|
|
4752
4786
|
state?: Maybe<Scalars['String']['output']>;
|
|
4753
4787
|
version?: Maybe<Scalars['Long']['output']>;
|
|
4754
4788
|
};
|
|
@@ -5055,6 +5089,7 @@ export declare type AgentStudioAssistant = AgentStudioAgent & AgentStudioBaseCon
|
|
|
5055
5089
|
mcpTools?: Maybe<Array<Maybe<GraphIntegrationMcpToolNode>>>;
|
|
5056
5090
|
name?: Maybe<Scalars['String']['output']>;
|
|
5057
5091
|
permissions?: Maybe<AgentStudioAgentPermissions>;
|
|
5092
|
+
responseStrategy?: Maybe<Scalars['String']['output']>;
|
|
5058
5093
|
scenarioList?: Maybe<AgentStudioScenariosResult>;
|
|
5059
5094
|
scenarios?: Maybe<Array<Maybe<AgentStudioAssistantScenario>>>;
|
|
5060
5095
|
tools?: Maybe<Array<AgentStudioTool>>;
|
|
@@ -5334,6 +5369,7 @@ export declare type AgentStudioCreateAgentInput = {
|
|
|
5334
5369
|
jiraProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
5335
5370
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
5336
5371
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
5372
|
+
responseStrategy?: InputMaybe<Scalars['String']['input']>;
|
|
5337
5373
|
scenarios?: InputMaybe<Array<InputMaybe<AgentStudioScenarioInput>>>;
|
|
5338
5374
|
tools?: InputMaybe<Array<AgentStudioToolInput>>;
|
|
5339
5375
|
widgets?: InputMaybe<Array<InputMaybe<AgentStudioWidgetInput>>>;
|
|
@@ -6279,6 +6315,7 @@ export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
|
6279
6315
|
isWebSearchEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
6280
6316
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
6281
6317
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
6318
|
+
responseStrategy?: InputMaybe<Scalars['String']['input']>;
|
|
6282
6319
|
tools?: InputMaybe<Array<AgentStudioToolInput>>;
|
|
6283
6320
|
};
|
|
6284
6321
|
export declare type AgentStudioUpdateAgentDetailsPayload = Payload & {
|
|
@@ -6536,6 +6573,17 @@ export declare type AgentWorkspaceAssignAgentToGapPayload = {
|
|
|
6536
6573
|
shift?: Maybe<AgentWorkspaceShift>;
|
|
6537
6574
|
success: Scalars['Boolean']['output'];
|
|
6538
6575
|
};
|
|
6576
|
+
export declare type AgentWorkspaceAssignAgentsToSkillInput = {
|
|
6577
|
+
cloudId: Scalars['ID']['input'];
|
|
6578
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6579
|
+
skillId: Scalars['ID']['input'];
|
|
6580
|
+
userAris: Array<Scalars['ID']['input']>;
|
|
6581
|
+
};
|
|
6582
|
+
export declare type AgentWorkspaceAssignAgentsToSkillPayload = {
|
|
6583
|
+
__typename?: 'AgentWorkspaceAssignAgentsToSkillPayload';
|
|
6584
|
+
errors?: Maybe<Array<MutationError>>;
|
|
6585
|
+
success: Scalars['Boolean']['output'];
|
|
6586
|
+
};
|
|
6539
6587
|
export declare type AgentWorkspaceAvailabilityConnection = {
|
|
6540
6588
|
__typename?: 'AgentWorkspaceAvailabilityConnection';
|
|
6541
6589
|
edges: Array<AgentWorkspaceAvailabilityEdge>;
|
|
@@ -6821,6 +6869,11 @@ export declare type AgentWorkspaceRecommendationError = {
|
|
|
6821
6869
|
__typename?: 'AgentWorkspaceRecommendationError';
|
|
6822
6870
|
message: Scalars['String']['output'];
|
|
6823
6871
|
};
|
|
6872
|
+
export declare type AgentWorkspaceRecommendedAgentsForGapInput = {
|
|
6873
|
+
originalAgentId: Scalars['ID']['input'];
|
|
6874
|
+
projectARI: Scalars['ID']['input'];
|
|
6875
|
+
scheduleId: Scalars['ID']['input'];
|
|
6876
|
+
};
|
|
6824
6877
|
export declare type AgentWorkspaceRecommendedAssigneesResponse = {
|
|
6825
6878
|
__typename?: 'AgentWorkspaceRecommendedAssigneesResponse';
|
|
6826
6879
|
errors?: Maybe<Array<AgentWorkspaceRecommendationError>>;
|
|
@@ -7080,7 +7133,7 @@ export declare type AgentWorkspaceSkillServicesArgs = {
|
|
|
7080
7133
|
};
|
|
7081
7134
|
export declare type AgentWorkspaceSkillAgentAssignment = {
|
|
7082
7135
|
__typename?: 'AgentWorkspaceSkillAgentAssignment';
|
|
7083
|
-
skill
|
|
7136
|
+
skill: AgentWorkspaceSkill;
|
|
7084
7137
|
userAri: Scalars['ID']['output'];
|
|
7085
7138
|
};
|
|
7086
7139
|
export declare type AgentWorkspaceSkillCategory = {
|
|
@@ -7097,6 +7150,10 @@ export declare type AgentWorkspaceSkillCategoryConnection = {
|
|
|
7097
7150
|
nodes?: Maybe<Array<Maybe<AgentWorkspaceSkillCategory>>>;
|
|
7098
7151
|
pageInfo: PageInfo;
|
|
7099
7152
|
};
|
|
7153
|
+
export declare type AgentWorkspaceSkillCategoryCreateInput = {
|
|
7154
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
7155
|
+
name: Scalars['String']['input'];
|
|
7156
|
+
};
|
|
7100
7157
|
export declare type AgentWorkspaceSkillCategoryEdge = {
|
|
7101
7158
|
__typename?: 'AgentWorkspaceSkillCategoryEdge';
|
|
7102
7159
|
cursor: Scalars['String']['output'];
|
|
@@ -7110,9 +7167,12 @@ export declare type AgentWorkspaceSkillConnection = {
|
|
|
7110
7167
|
pageInfo: PageInfo;
|
|
7111
7168
|
};
|
|
7112
7169
|
export declare type AgentWorkspaceSkillCreateInput = {
|
|
7170
|
+
category?: InputMaybe<AgentWorkspaceSkillCategoryCreateInput>;
|
|
7171
|
+
categoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
7113
7172
|
cloudId: Scalars['ID']['input'];
|
|
7114
7173
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
7115
7174
|
name: Scalars['String']['input'];
|
|
7175
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
7116
7176
|
};
|
|
7117
7177
|
export declare type AgentWorkspaceSkillCreatePayload = {
|
|
7118
7178
|
__typename?: 'AgentWorkspaceSkillCreatePayload';
|
|
@@ -7127,7 +7187,7 @@ export declare type AgentWorkspaceSkillEdge = {
|
|
|
7127
7187
|
export declare type AgentWorkspaceSkillServiceMapping = {
|
|
7128
7188
|
__typename?: 'AgentWorkspaceSkillServiceMapping';
|
|
7129
7189
|
serviceId: Scalars['ID']['output'];
|
|
7130
|
-
skill
|
|
7190
|
+
skill: AgentWorkspaceSkill;
|
|
7131
7191
|
};
|
|
7132
7192
|
export declare type AgentWorkspaceSmartRoutingConfig = {
|
|
7133
7193
|
__typename?: 'AgentWorkspaceSmartRoutingConfig';
|
|
@@ -9308,6 +9368,13 @@ export declare type AssetsBundle = {
|
|
|
9308
9368
|
schemas?: Maybe<Array<AssetsCdmSchema>>;
|
|
9309
9369
|
type: AssetsBundleType;
|
|
9310
9370
|
};
|
|
9371
|
+
export declare type AssetsBundleInstantiation = {
|
|
9372
|
+
__typename?: 'AssetsBundleInstantiation';
|
|
9373
|
+
bundle: AssetsBundle;
|
|
9374
|
+
id: Scalars['ID']['output'];
|
|
9375
|
+
instantiatedSchemas?: Maybe<Array<AssetsSchema>>;
|
|
9376
|
+
};
|
|
9377
|
+
export declare type AssetsBundleInstantiationResult = AssetsBundleInstantiation | QueryError;
|
|
9311
9378
|
export declare type AssetsBundleResult = AssetsBundle | QueryError;
|
|
9312
9379
|
export declare enum AssetsBundleType {
|
|
9313
9380
|
Cdm = "CDM",
|
|
@@ -12427,6 +12494,7 @@ export declare type AssetsVerticalDepreciationRuleAssetTypesArgs = {
|
|
|
12427
12494
|
export declare type AssetsVerticalDepreciationRuleAssetType = {
|
|
12428
12495
|
__typename?: 'AssetsVerticalDepreciationRuleAssetType';
|
|
12429
12496
|
acquisitionCostObjTypeAttributeId: Scalars['ID']['output'];
|
|
12497
|
+
acquisitionDateObjTypeAttributeId: Scalars['ID']['output'];
|
|
12430
12498
|
auditInfo: AssetsVerticalAuditInfo;
|
|
12431
12499
|
bookValueObjTypeAttributeId: Scalars['ID']['output'];
|
|
12432
12500
|
depreciationRuleId: Scalars['ID']['output'];
|
|
@@ -12446,6 +12514,7 @@ export declare type AssetsVerticalDepreciationRuleAssetTypeEdge = {
|
|
|
12446
12514
|
};
|
|
12447
12515
|
export declare type AssetsVerticalDepreciationRuleAssetTypeInput = {
|
|
12448
12516
|
acquisitionCostObjTypeAttributeId: Scalars['ID']['input'];
|
|
12517
|
+
acquisitionDateObjTypeAttributeId?: InputMaybe<Scalars['ID']['input']>;
|
|
12449
12518
|
bookValueObjTypeAttributeId: Scalars['ID']['input'];
|
|
12450
12519
|
objSchemaId: Scalars['ID']['input'];
|
|
12451
12520
|
objTypeId: Scalars['ID']['input'];
|
|
@@ -12840,6 +12909,8 @@ export declare type AssetsVerticalStatusCount = {
|
|
|
12840
12909
|
count?: Maybe<Scalars['Int']['output']>;
|
|
12841
12910
|
statusKey?: Maybe<Scalars['String']['output']>;
|
|
12842
12911
|
};
|
|
12912
|
+
export declare type AssetsVerticalStockroomItamAttributesResult = AssetsVerticalItamAttributes | QueryError;
|
|
12913
|
+
export declare type AssetsVerticalStockroomObjectTypesResult = AssetsVerticalObjectTypes | QueryError;
|
|
12843
12914
|
export declare type AssetsVerticalStockroomObjects = AssetsVerticalObjects & {
|
|
12844
12915
|
__typename?: 'AssetsVerticalStockroomObjects';
|
|
12845
12916
|
itamObjects?: Maybe<Array<Maybe<AssetsVerticalItamObjects>>>;
|
|
@@ -16892,6 +16963,7 @@ export declare type ChannelPlatformSendOtpResponse = {
|
|
|
16892
16963
|
};
|
|
16893
16964
|
export declare type ChannelPlatformSubmitRequestInput = {
|
|
16894
16965
|
attributes?: InputMaybe<Scalars['JSON']['input']>;
|
|
16966
|
+
customerIdentifier?: InputMaybe<Scalars['String']['input']>;
|
|
16895
16967
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
16896
16968
|
metadata?: InputMaybe<Scalars['JSON']['input']>;
|
|
16897
16969
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -31093,6 +31165,28 @@ export declare enum ConfluencePolicyEnabledStatus {
|
|
|
31093
31165
|
Enabled = "ENABLED",
|
|
31094
31166
|
UndeterminedDueToInternalError = "UNDETERMINED_DUE_TO_INTERNAL_ERROR"
|
|
31095
31167
|
}
|
|
31168
|
+
export declare type ConfluencePopularLabelEntry = {
|
|
31169
|
+
__typename?: 'ConfluencePopularLabelEntry';
|
|
31170
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
31171
|
+
labelId?: Maybe<Scalars['String']['output']>;
|
|
31172
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
31173
|
+
rank?: Maybe<Scalars['Int']['output']>;
|
|
31174
|
+
};
|
|
31175
|
+
export declare type ConfluencePopularLabelEntryConnection = {
|
|
31176
|
+
__typename?: 'ConfluencePopularLabelEntryConnection';
|
|
31177
|
+
edges?: Maybe<Array<Maybe<ConfluencePopularLabelEntryEdge>>>;
|
|
31178
|
+
nodes?: Maybe<Array<Maybe<ConfluencePopularLabelEntry>>>;
|
|
31179
|
+
pageInfo: ConfluencePageInfo;
|
|
31180
|
+
};
|
|
31181
|
+
export declare type ConfluencePopularLabelEntryEdge = {
|
|
31182
|
+
__typename?: 'ConfluencePopularLabelEntryEdge';
|
|
31183
|
+
cursor: Scalars['String']['output'];
|
|
31184
|
+
node?: Maybe<ConfluencePopularLabelEntry>;
|
|
31185
|
+
};
|
|
31186
|
+
export declare enum ConfluencePopularLabelStyle {
|
|
31187
|
+
Heatmap = "HEATMAP",
|
|
31188
|
+
List = "LIST"
|
|
31189
|
+
}
|
|
31096
31190
|
export declare type ConfluencePrincipal = {
|
|
31097
31191
|
__typename?: 'ConfluencePrincipal';
|
|
31098
31192
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
@@ -37824,6 +37918,22 @@ export declare type CustomerServiceExternalStatusesResponse = {
|
|
|
37824
37918
|
export declare type CustomerServiceFilterInput = {
|
|
37825
37919
|
context: CustomerServiceContext;
|
|
37826
37920
|
};
|
|
37921
|
+
export declare type CustomerServiceHelpCenterMetadata = {
|
|
37922
|
+
__typename?: 'CustomerServiceHelpCenterMetadata';
|
|
37923
|
+
helpCenterId: Scalars['ID']['output'];
|
|
37924
|
+
id: Scalars['ID']['output'];
|
|
37925
|
+
isRequestSharingEnabled: Scalars['Boolean']['output'];
|
|
37926
|
+
};
|
|
37927
|
+
export declare type CustomerServiceHelpCenterMetadataQueryResult = CustomerServiceHelpCenterMetadata | QueryError;
|
|
37928
|
+
export declare type CustomerServiceHelpCenterMetadataUpsertInput = {
|
|
37929
|
+
isRequestSharingEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
37930
|
+
};
|
|
37931
|
+
export declare type CustomerServiceHelpCenterMetadataUpsertPayload = {
|
|
37932
|
+
__typename?: 'CustomerServiceHelpCenterMetadataUpsertPayload';
|
|
37933
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37934
|
+
helpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadata>;
|
|
37935
|
+
success: Scalars['Boolean']['output'];
|
|
37936
|
+
};
|
|
37827
37937
|
export declare type CustomerServiceIndividual = Node & {
|
|
37828
37938
|
__typename?: 'CustomerServiceIndividual';
|
|
37829
37939
|
attributes: Array<CustomerServiceAttributeValue>;
|
|
@@ -38370,6 +38480,7 @@ export declare type CustomerServiceQueryApiTemplateFormsArgs = {
|
|
|
38370
38480
|
};
|
|
38371
38481
|
export declare enum CustomerServiceReportedByFilter {
|
|
38372
38482
|
Other = "OTHER",
|
|
38483
|
+
SharedByOrg = "SHARED_BY_ORG",
|
|
38373
38484
|
User = "USER"
|
|
38374
38485
|
}
|
|
38375
38486
|
export declare type CustomerServiceRequest = {
|
|
@@ -39612,6 +39723,7 @@ export declare type DevAiAutodevNextWorkItem = {
|
|
|
39612
39723
|
repository?: Maybe<Scalars['String']['output']>;
|
|
39613
39724
|
requestedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
39614
39725
|
state?: Maybe<DevAiAutodevNextWorkItemState>;
|
|
39726
|
+
workItemState?: Maybe<Scalars['ID']['output']>;
|
|
39615
39727
|
workstream?: Maybe<DevAiAutodevNextWorkstream>;
|
|
39616
39728
|
};
|
|
39617
39729
|
export declare type DevAiAutodevNextWorkItemConnection = {
|
|
@@ -39632,6 +39744,7 @@ export declare enum DevAiAutodevNextWorkItemState {
|
|
|
39632
39744
|
NeedsScoping = "NEEDS_SCOPING",
|
|
39633
39745
|
OutOfScope = "OUT_OF_SCOPE",
|
|
39634
39746
|
PendingClassification = "PENDING_CLASSIFICATION",
|
|
39747
|
+
PendingReview = "PENDING_REVIEW",
|
|
39635
39748
|
Ready = "READY"
|
|
39636
39749
|
}
|
|
39637
39750
|
export declare type DevAiAutodevNextWorkstream = {
|
|
@@ -43060,6 +43173,7 @@ export declare type EcosystemQuery = {
|
|
|
43060
43173
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
43061
43174
|
globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
|
|
43062
43175
|
marketplaceData?: Maybe<EcosystemMarketplaceData>;
|
|
43176
|
+
rollingReleases?: Maybe<EcosystemRollingReleaseConnection>;
|
|
43063
43177
|
userAccess?: Maybe<UserAccess>;
|
|
43064
43178
|
userGrants?: Maybe<UserGrantConnection>;
|
|
43065
43179
|
userInstallationRules?: Maybe<UserInstallationRules>;
|
|
@@ -43140,6 +43254,12 @@ export declare type EcosystemQueryMarketplaceDataArgs = {
|
|
|
43140
43254
|
appKey?: InputMaybe<Scalars['ID']['input']>;
|
|
43141
43255
|
cloudAppId?: InputMaybe<Scalars['ID']['input']>;
|
|
43142
43256
|
};
|
|
43257
|
+
export declare type EcosystemQueryRollingReleasesArgs = {
|
|
43258
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
43259
|
+
appId: Scalars['ID']['input'];
|
|
43260
|
+
environmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
43261
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43262
|
+
};
|
|
43143
43263
|
export declare type EcosystemQueryUserAccessArgs = {
|
|
43144
43264
|
contextId: Scalars['ID']['input'];
|
|
43145
43265
|
definitionId: Scalars['ID']['input'];
|
|
@@ -43168,6 +43288,47 @@ export declare enum EcosystemRequiredProduct {
|
|
|
43168
43288
|
Confluence = "CONFLUENCE",
|
|
43169
43289
|
Jira = "JIRA"
|
|
43170
43290
|
}
|
|
43291
|
+
export declare type EcosystemRollingRelease = {
|
|
43292
|
+
__typename?: 'EcosystemRollingRelease';
|
|
43293
|
+
appEnvironmentId: Scalars['ID']['output'];
|
|
43294
|
+
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
43295
|
+
failureCount: Scalars['Int']['output'];
|
|
43296
|
+
id: Scalars['ID']['output'];
|
|
43297
|
+
initiator?: Maybe<User>;
|
|
43298
|
+
startedAt: Scalars['DateTime']['output'];
|
|
43299
|
+
status: EcosystemRollingReleaseStatus;
|
|
43300
|
+
successCount: Scalars['Int']['output'];
|
|
43301
|
+
targetVersionId: Scalars['ID']['output'];
|
|
43302
|
+
totalInstallations: Scalars['Int']['output'];
|
|
43303
|
+
};
|
|
43304
|
+
export declare type EcosystemRollingReleaseConnection = {
|
|
43305
|
+
__typename?: 'EcosystemRollingReleaseConnection';
|
|
43306
|
+
edges?: Maybe<Array<Maybe<EcosystemRollingReleaseEdge>>>;
|
|
43307
|
+
nodes?: Maybe<Array<Maybe<EcosystemRollingRelease>>>;
|
|
43308
|
+
pageInfo: EcosystemRollingReleasePageInfo;
|
|
43309
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
43310
|
+
};
|
|
43311
|
+
export declare type EcosystemRollingReleaseEdge = {
|
|
43312
|
+
__typename?: 'EcosystemRollingReleaseEdge';
|
|
43313
|
+
cursor: Scalars['String']['output'];
|
|
43314
|
+
node?: Maybe<EcosystemRollingRelease>;
|
|
43315
|
+
};
|
|
43316
|
+
export declare type EcosystemRollingReleasePageInfo = {
|
|
43317
|
+
__typename?: 'EcosystemRollingReleasePageInfo';
|
|
43318
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
43319
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
43320
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
43321
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
43322
|
+
};
|
|
43323
|
+
export declare enum EcosystemRollingReleaseStatus {
|
|
43324
|
+
Cancelled = "CANCELLED",
|
|
43325
|
+
Completed = "COMPLETED",
|
|
43326
|
+
Failed = "FAILED",
|
|
43327
|
+
Queued = "QUEUED",
|
|
43328
|
+
Running = "RUNNING",
|
|
43329
|
+
Terminated = "TERMINATED",
|
|
43330
|
+
TimedOut = "TIMED_OUT"
|
|
43331
|
+
}
|
|
43171
43332
|
export declare type EcosystemSubscription = {
|
|
43172
43333
|
__typename?: 'EcosystemSubscription';
|
|
43173
43334
|
realtimeChannel?: Maybe<EcosystemRealtimeSubscriptionBody>;
|
|
@@ -44424,6 +44585,7 @@ export declare enum ExternalDocumentCategory {
|
|
|
44424
44585
|
Form = "FORM",
|
|
44425
44586
|
Image = "IMAGE",
|
|
44426
44587
|
KnowledgeArticle = "KNOWLEDGE_ARTICLE",
|
|
44588
|
+
NewsArticle = "NEWS_ARTICLE",
|
|
44427
44589
|
Notebook = "NOTEBOOK",
|
|
44428
44590
|
Other = "OTHER",
|
|
44429
44591
|
Page = "PAGE",
|
|
@@ -44743,6 +44905,7 @@ export declare type ExternalProject = Node & {
|
|
|
44743
44905
|
assignee?: Maybe<ExternalUser>;
|
|
44744
44906
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
44745
44907
|
attachments?: Maybe<Array<Maybe<ExternalProjectAttachment>>>;
|
|
44908
|
+
businessCase?: Maybe<Scalars['String']['output']>;
|
|
44746
44909
|
container?: Maybe<ExternalEntity>;
|
|
44747
44910
|
containerId?: Maybe<Scalars['ID']['output']>;
|
|
44748
44911
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -44750,6 +44913,7 @@ export declare type ExternalProject = Node & {
|
|
|
44750
44913
|
description?: Maybe<Scalars['String']['output']>;
|
|
44751
44914
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
44752
44915
|
dueDate?: Maybe<Scalars['String']['output']>;
|
|
44916
|
+
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
44753
44917
|
environment?: Maybe<Scalars['String']['output']>;
|
|
44754
44918
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
44755
44919
|
id: Scalars['ID']['output'];
|
|
@@ -44764,6 +44928,7 @@ export declare type ExternalProject = Node & {
|
|
|
44764
44928
|
resolution?: Maybe<Scalars['String']['output']>;
|
|
44765
44929
|
status?: Maybe<Scalars['String']['output']>;
|
|
44766
44930
|
statusCategory?: Maybe<Scalars['String']['output']>;
|
|
44931
|
+
subtype?: Maybe<Scalars['String']['output']>;
|
|
44767
44932
|
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
44768
44933
|
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
44769
44934
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -105240,7 +105405,8 @@ export declare enum GravityViewVisualizationType {
|
|
|
105240
105405
|
List = "LIST",
|
|
105241
105406
|
Matrix = "MATRIX",
|
|
105242
105407
|
Table = "TABLE",
|
|
105243
|
-
Timeline = "TIMELINE"
|
|
105408
|
+
Timeline = "TIMELINE",
|
|
105409
|
+
Tree = "TREE"
|
|
105244
105410
|
}
|
|
105245
105411
|
export declare type Group = {
|
|
105246
105412
|
__typename?: 'Group';
|
|
@@ -109679,6 +109845,18 @@ export declare type JiraActorEdge = {
|
|
|
109679
109845
|
cursor: Scalars['String']['output'];
|
|
109680
109846
|
node?: Maybe<JiraActor>;
|
|
109681
109847
|
};
|
|
109848
|
+
export declare type JiraAddAgentToBoardViewStatusColumnInput = {
|
|
109849
|
+
agentAccountId: Scalars['ID']['input'];
|
|
109850
|
+
columnId: Scalars['ID']['input'];
|
|
109851
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
109852
|
+
};
|
|
109853
|
+
export declare type JiraAddAgentToBoardViewStatusColumnPayload = {
|
|
109854
|
+
__typename?: 'JiraAddAgentToBoardViewStatusColumnPayload';
|
|
109855
|
+
boardView?: Maybe<JiraBoardView>;
|
|
109856
|
+
column?: Maybe<JiraBoardViewStatusColumn>;
|
|
109857
|
+
errors?: Maybe<Array<MutationError>>;
|
|
109858
|
+
success: Scalars['Boolean']['output'];
|
|
109859
|
+
};
|
|
109682
109860
|
export declare type JiraAddAttachmentInput = {
|
|
109683
109861
|
fileId: Scalars['String']['input'];
|
|
109684
109862
|
issue: Scalars['ID']['input'];
|
|
@@ -111894,6 +112072,38 @@ export declare type JiraBoardReportCategoriesArgs = {
|
|
|
111894
112072
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
111895
112073
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
111896
112074
|
};
|
|
112075
|
+
export declare type JiraBoardAdmin = {
|
|
112076
|
+
__typename?: 'JiraBoardAdmin';
|
|
112077
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
112078
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
112079
|
+
};
|
|
112080
|
+
export declare type JiraBoardAdminAvatarUrls = {
|
|
112081
|
+
__typename?: 'JiraBoardAdminAvatarUrls';
|
|
112082
|
+
large?: Maybe<Scalars['URL']['output']>;
|
|
112083
|
+
medium?: Maybe<Scalars['URL']['output']>;
|
|
112084
|
+
small?: Maybe<Scalars['URL']['output']>;
|
|
112085
|
+
xsmall?: Maybe<Scalars['URL']['output']>;
|
|
112086
|
+
};
|
|
112087
|
+
export declare type JiraBoardAdminGroup = {
|
|
112088
|
+
__typename?: 'JiraBoardAdminGroup';
|
|
112089
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
112090
|
+
self?: Maybe<Scalars['URL']['output']>;
|
|
112091
|
+
};
|
|
112092
|
+
export declare type JiraBoardAdminUser = {
|
|
112093
|
+
__typename?: 'JiraBoardAdminUser';
|
|
112094
|
+
accountId?: Maybe<Scalars['String']['output']>;
|
|
112095
|
+
active?: Maybe<Scalars['Boolean']['output']>;
|
|
112096
|
+
avatarUrls?: Maybe<JiraBoardAdminAvatarUrls>;
|
|
112097
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
112098
|
+
self?: Maybe<Scalars['URL']['output']>;
|
|
112099
|
+
};
|
|
112100
|
+
export declare type JiraBoardAdmins = {
|
|
112101
|
+
__typename?: 'JiraBoardAdmins';
|
|
112102
|
+
groupKeys?: Maybe<Array<Maybe<JiraBoardAdmin>>>;
|
|
112103
|
+
groups?: Maybe<Array<Maybe<JiraBoardAdminGroup>>>;
|
|
112104
|
+
userKeys?: Maybe<Array<Maybe<JiraBoardAdmin>>>;
|
|
112105
|
+
users?: Maybe<Array<Maybe<JiraBoardAdminUser>>>;
|
|
112106
|
+
};
|
|
111897
112107
|
export declare type JiraBoardCardCoverMediaField = JiraIssueField & JiraListRowField & Node & {
|
|
111898
112108
|
__typename?: 'JiraBoardCardCoverMediaField';
|
|
111899
112109
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -111954,6 +112164,7 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
111954
112164
|
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
111955
112165
|
canEditIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
111956
112166
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
112167
|
+
canInlineEditTransitionAgents?: Maybe<Scalars['Boolean']['output']>;
|
|
111957
112168
|
canManageSprints?: Maybe<Scalars['Boolean']['output']>;
|
|
111958
112169
|
canManageStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
111959
112170
|
canMoveIssueBetweenSwimlanes?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -112275,6 +112486,7 @@ export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & Node & {
|
|
|
112275
112486
|
name?: Maybe<Scalars['String']['output']>;
|
|
112276
112487
|
simpleTransitions?: Maybe<JiraTransitionConnection>;
|
|
112277
112488
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
112489
|
+
totalTransitionCount?: Maybe<Scalars['Int']['output']>;
|
|
112278
112490
|
transitionAgents?: Maybe<Array<JiraTransitionAgent>>;
|
|
112279
112491
|
workflows?: Maybe<JiraTransitionConnection>;
|
|
112280
112492
|
};
|
|
@@ -112657,6 +112869,7 @@ export declare type JiraCfoBoardPerformanceAnalyticsResultDataArgs = {
|
|
|
112657
112869
|
};
|
|
112658
112870
|
export declare type JiraCfoBoardPerformanceDataRow = JiraCfoDataRow & {
|
|
112659
112871
|
__typename?: 'JiraCFOBoardPerformanceDataRow';
|
|
112872
|
+
boardAdmins?: Maybe<JiraBoardAdmins>;
|
|
112660
112873
|
boardCreator?: Maybe<User>;
|
|
112661
112874
|
boardId?: Maybe<Scalars['ID']['output']>;
|
|
112662
112875
|
boardName?: Maybe<Scalars['String']['output']>;
|
|
@@ -112755,6 +112968,7 @@ export declare type JiraCfoDimensionInput = {
|
|
|
112755
112968
|
export declare type JiraCfoDistribution = {
|
|
112756
112969
|
__typename?: 'JiraCFODistribution';
|
|
112757
112970
|
category?: Maybe<JiraCfoDistributionCategory>;
|
|
112971
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
112758
112972
|
value?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
112759
112973
|
};
|
|
112760
112974
|
export declare enum JiraCfoDistributionCategory {
|
|
@@ -112820,6 +113034,7 @@ export declare type JiraCfoMetricInsightEdge = {
|
|
|
112820
113034
|
export declare type JiraCfoMetricInsightMetaData = {
|
|
112821
113035
|
__typename?: 'JiraCFOMetricInsightMetaData';
|
|
112822
113036
|
loadTimeDiff?: Maybe<Scalars['Int']['output']>;
|
|
113037
|
+
loadTimeDiffFloat?: Maybe<Scalars['Float']['output']>;
|
|
112823
113038
|
};
|
|
112824
113039
|
export declare enum JiraCfoMetricInsightStatus {
|
|
112825
113040
|
FastSetup = "FAST_SETUP",
|
|
@@ -129052,6 +129267,18 @@ export declare type JiraRemoveActiveBackgroundPayload = Payload & {
|
|
|
129052
129267
|
errors?: Maybe<Array<MutationError>>;
|
|
129053
129268
|
success: Scalars['Boolean']['output'];
|
|
129054
129269
|
};
|
|
129270
|
+
export declare type JiraRemoveAgentFromBoardViewStatusColumnInput = {
|
|
129271
|
+
agentAccountId: Scalars['ID']['input'];
|
|
129272
|
+
columnId: Scalars['ID']['input'];
|
|
129273
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
129274
|
+
};
|
|
129275
|
+
export declare type JiraRemoveAgentFromBoardViewStatusColumnPayload = {
|
|
129276
|
+
__typename?: 'JiraRemoveAgentFromBoardViewStatusColumnPayload';
|
|
129277
|
+
boardView?: Maybe<JiraBoardView>;
|
|
129278
|
+
column?: Maybe<JiraBoardViewStatusColumn>;
|
|
129279
|
+
errors?: Maybe<Array<MutationError>>;
|
|
129280
|
+
success: Scalars['Boolean']['output'];
|
|
129281
|
+
};
|
|
129055
129282
|
export declare type JiraRemoveCustomFieldDefaultContextOptionInput = {
|
|
129056
129283
|
mapToOption?: InputMaybe<JiraCustomFieldDefaultContextOptionReference>;
|
|
129057
129284
|
optionId: Scalars['Long']['input'];
|
|
@@ -136740,6 +136967,11 @@ export declare enum JsmChannelsPlanNodeType {
|
|
|
136740
136967
|
Condition = "CONDITION",
|
|
136741
136968
|
Step = "STEP"
|
|
136742
136969
|
}
|
|
136970
|
+
export declare type JsmChannelsPreviewModeConfiguration = {
|
|
136971
|
+
__typename?: 'JsmChannelsPreviewModeConfiguration';
|
|
136972
|
+
enabled: Scalars['Boolean']['output'];
|
|
136973
|
+
};
|
|
136974
|
+
export declare type JsmChannelsPreviewModeResult = JsmChannelsPreviewModeConfiguration | QueryError;
|
|
136743
136975
|
export declare type JsmChannelsProjectQueryFilter = {
|
|
136744
136976
|
projectId: Scalars['String']['input'];
|
|
136745
136977
|
requestTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -136844,6 +137076,18 @@ export declare type JsmChannelsServiceAgentResolutionRunbook = {
|
|
|
136844
137076
|
title: Scalars['String']['output'];
|
|
136845
137077
|
url: Scalars['String']['output'];
|
|
136846
137078
|
};
|
|
137079
|
+
export declare type JsmChannelsSetPreviewModeInput = {
|
|
137080
|
+
enabled: Scalars['Boolean']['input'];
|
|
137081
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
137082
|
+
requestTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
137083
|
+
};
|
|
137084
|
+
export declare type JsmChannelsSetPreviewModePayload = Payload & {
|
|
137085
|
+
__typename?: 'JsmChannelsSetPreviewModePayload';
|
|
137086
|
+
errors?: Maybe<Array<MutationError>>;
|
|
137087
|
+
jsmChannelsExperienceConfiguration?: Maybe<JsmChannelsExperienceConfiguration>;
|
|
137088
|
+
previewMode?: Maybe<JsmChannelsPreviewModeConfiguration>;
|
|
137089
|
+
success: Scalars['Boolean']['output'];
|
|
137090
|
+
};
|
|
136847
137091
|
export declare type JsmChannelsStepNode = JsmChannelsPlanNode & {
|
|
136848
137092
|
__typename?: 'JsmChannelsStepNode';
|
|
136849
137093
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
@@ -138171,6 +138415,7 @@ export declare type KitsuneField = Node & {
|
|
|
138171
138415
|
__typename?: 'KitsuneField';
|
|
138172
138416
|
description?: Maybe<Scalars['String']['output']>;
|
|
138173
138417
|
entityType: KitsuneEntityType;
|
|
138418
|
+
entityTypes: Array<KitsuneEntityType>;
|
|
138174
138419
|
id: Scalars['ID']['output'];
|
|
138175
138420
|
name: Scalars['String']['output'];
|
|
138176
138421
|
type: KitsuneFieldType;
|
|
@@ -145540,6 +145785,31 @@ export declare type MercuryChangeProposalTagsArgs = {
|
|
|
145540
145785
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
145541
145786
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
145542
145787
|
};
|
|
145788
|
+
export declare type MercuryChangeProposalActivityHistory = Node & {
|
|
145789
|
+
__typename?: 'MercuryChangeProposalActivityHistory';
|
|
145790
|
+
changeProposalId: Scalars['ID']['output'];
|
|
145791
|
+
eventTimestamp: Scalars['String']['output'];
|
|
145792
|
+
eventType: MercuryChangeProposalEventType;
|
|
145793
|
+
fields?: Maybe<Array<Maybe<MercuryChangeProposalUpdatedField>>>;
|
|
145794
|
+
fieldsChanged?: Maybe<Array<Maybe<MercuryChangeProposalField>>>;
|
|
145795
|
+
id: Scalars['ID']['output'];
|
|
145796
|
+
user?: Maybe<User>;
|
|
145797
|
+
};
|
|
145798
|
+
export declare type MercuryChangeProposalActivityHistoryConnection = {
|
|
145799
|
+
__typename?: 'MercuryChangeProposalActivityHistoryConnection';
|
|
145800
|
+
edges?: Maybe<Array<Maybe<MercuryChangeProposalActivityHistoryEdge>>>;
|
|
145801
|
+
pageInfo: PageInfo;
|
|
145802
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
145803
|
+
};
|
|
145804
|
+
export declare type MercuryChangeProposalActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser;
|
|
145805
|
+
export declare type MercuryChangeProposalActivityHistoryEdge = {
|
|
145806
|
+
__typename?: 'MercuryChangeProposalActivityHistoryEdge';
|
|
145807
|
+
cursor: Scalars['String']['output'];
|
|
145808
|
+
node?: Maybe<MercuryChangeProposalActivityHistory>;
|
|
145809
|
+
};
|
|
145810
|
+
export declare type MercuryChangeProposalActivitySort = {
|
|
145811
|
+
order: SortOrder;
|
|
145812
|
+
};
|
|
145543
145813
|
export declare type MercuryChangeProposalComment = {
|
|
145544
145814
|
__typename?: 'MercuryChangeProposalComment';
|
|
145545
145815
|
content: Scalars['String']['output'];
|
|
@@ -145587,6 +145857,22 @@ export declare type MercuryChangeProposalEdge = {
|
|
|
145587
145857
|
cursor: Scalars['String']['output'];
|
|
145588
145858
|
node?: Maybe<MercuryChangeProposal>;
|
|
145589
145859
|
};
|
|
145860
|
+
export declare enum MercuryChangeProposalEventType {
|
|
145861
|
+
Create = "CREATE",
|
|
145862
|
+
Update = "UPDATE"
|
|
145863
|
+
}
|
|
145864
|
+
export declare enum MercuryChangeProposalField {
|
|
145865
|
+
Description = "DESCRIPTION",
|
|
145866
|
+
FocusArea = "FOCUS_AREA",
|
|
145867
|
+
Impact = "IMPACT",
|
|
145868
|
+
LinkedGoal = "LINKED_GOAL",
|
|
145869
|
+
LinkedWork = "LINKED_WORK",
|
|
145870
|
+
Name = "NAME",
|
|
145871
|
+
Owner = "OWNER",
|
|
145872
|
+
Status = "STATUS",
|
|
145873
|
+
TargetBenefit = "TARGET_BENEFIT",
|
|
145874
|
+
TargetRoi = "TARGET_ROI"
|
|
145875
|
+
}
|
|
145590
145876
|
export declare type MercuryChangeProposalFundSummary = {
|
|
145591
145877
|
__typename?: 'MercuryChangeProposalFundSummary';
|
|
145592
145878
|
laborAmount?: Maybe<Scalars['BigDecimal']['output']>;
|
|
@@ -145686,14 +145972,31 @@ export declare type MercuryChangeProposalUpdate = {
|
|
|
145686
145972
|
id: Scalars['ID']['output'];
|
|
145687
145973
|
updatedFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
145688
145974
|
};
|
|
145689
|
-
export declare type
|
|
145975
|
+
export declare type MercuryChangeProposalUpdatedField = {
|
|
145976
|
+
__typename?: 'MercuryChangeProposalUpdatedField';
|
|
145977
|
+
field: MercuryChangeProposalField;
|
|
145978
|
+
newData?: Maybe<MercuryChangeProposalActivityHistoryData>;
|
|
145979
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
145980
|
+
oldData?: Maybe<MercuryChangeProposalActivityHistoryData>;
|
|
145981
|
+
oldValue?: Maybe<Scalars['String']['output']>;
|
|
145982
|
+
};
|
|
145983
|
+
export declare type MercuryChangeProposalViewSetting = {
|
|
145984
|
+
__typename?: 'MercuryChangeProposalViewSetting';
|
|
145985
|
+
key: Scalars['String']['output'];
|
|
145986
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
145987
|
+
};
|
|
145988
|
+
export declare type MercuryChangeProposalViewSettingInput = {
|
|
145989
|
+
key: Scalars['String']['input'];
|
|
145990
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
145991
|
+
};
|
|
145992
|
+
export declare type MercuryChangeProposalsView = Node & {
|
|
145690
145993
|
__typename?: 'MercuryChangeProposalsView';
|
|
145691
145994
|
createdBy?: Maybe<User>;
|
|
145692
145995
|
createdDate?: Maybe<Scalars['String']['output']>;
|
|
145693
145996
|
id: Scalars['ID']['output'];
|
|
145694
145997
|
name: Scalars['String']['output'];
|
|
145695
145998
|
priorities?: Maybe<MercuryChangeProposalRankConnection>;
|
|
145696
|
-
settings?: Maybe<Array<Maybe<
|
|
145999
|
+
settings?: Maybe<Array<Maybe<MercuryChangeProposalViewSetting>>>;
|
|
145697
146000
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
145698
146001
|
updatedBy?: Maybe<User>;
|
|
145699
146002
|
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -145997,7 +146300,7 @@ export declare type MercuryCreateChangeProposalPayload = Payload & {
|
|
|
145997
146300
|
export declare type MercuryCreateChangeProposalsViewInput = {
|
|
145998
146301
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
145999
146302
|
name: Scalars['String']['input'];
|
|
146000
|
-
settings?: InputMaybe<Array<InputMaybe<
|
|
146303
|
+
settings?: InputMaybe<Array<InputMaybe<MercuryChangeProposalViewSettingInput>>>;
|
|
146001
146304
|
strategicEventId?: InputMaybe<Scalars['ID']['input']>;
|
|
146002
146305
|
};
|
|
146003
146306
|
export declare type MercuryCreateChangeProposalsViewSettingPayload = Payload & {
|
|
@@ -147986,6 +148289,8 @@ export declare enum MercuryImportExecutionErrorEntityType {
|
|
|
147986
148289
|
FocusAreaLink = "FOCUS_AREA_LINK",
|
|
147987
148290
|
FundsBenefitItem = "FUNDS_BENEFIT_ITEM",
|
|
147988
148291
|
FundsCostItem = "FUNDS_COST_ITEM",
|
|
148292
|
+
Organization = "ORGANIZATION",
|
|
148293
|
+
OrganizationLink = "ORGANIZATION_LINK",
|
|
147989
148294
|
PeopleBudget = "PEOPLE_BUDGET",
|
|
147990
148295
|
Team = "TEAM",
|
|
147991
148296
|
TeamAllocation = "TEAM_ALLOCATION"
|
|
@@ -149713,7 +150018,7 @@ export declare enum MercuryPermission {
|
|
|
149713
150018
|
ViewStrategicEvent = "VIEW_STRATEGIC_EVENT",
|
|
149714
150019
|
Write = "WRITE"
|
|
149715
150020
|
}
|
|
149716
|
-
export declare type MercuryPortfolio =
|
|
150021
|
+
export declare type MercuryPortfolio = {
|
|
149717
150022
|
__typename?: 'MercuryPortfolio';
|
|
149718
150023
|
aggregatedFocusAreaStatusCount?: Maybe<MercuryAggregatedPortfolioStatusCount>;
|
|
149719
150024
|
allocations?: Maybe<MercuryPortfolioAllocations>;
|
|
@@ -151328,6 +151633,7 @@ export declare type MercuryStrategicEventsMutationApiUpdateStrategicEventTargetD
|
|
|
151328
151633
|
export declare type MercuryStrategicEventsQueryApi = {
|
|
151329
151634
|
__typename?: 'MercuryStrategicEventsQueryApi';
|
|
151330
151635
|
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
151636
|
+
changeProposalActivityHistoryByIds?: Maybe<Array<Maybe<MercuryChangeProposalActivityHistory>>>;
|
|
151331
151637
|
changeProposalCustomFieldDefinitionsSearch?: Maybe<MercuryCustomFieldDefinitionConnection>;
|
|
151332
151638
|
changeProposalImpactValues: Array<MercuryChangeProposalImpact>;
|
|
151333
151639
|
changeProposalStatuses: Array<MercuryChangeProposalStatus>;
|
|
@@ -151348,6 +151654,7 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
151348
151654
|
changesSearch?: Maybe<MercuryChangeConnection>;
|
|
151349
151655
|
restrictedChangeProposalsSearch?: Maybe<MercuryRestrictedChangeProposalConnection>;
|
|
151350
151656
|
restrictedStrategicEventsSearch?: Maybe<MercuryRestrictedStrategicEventConnection>;
|
|
151657
|
+
searchChangeProposalActivityHistory?: Maybe<MercuryChangeProposalActivityHistoryConnection>;
|
|
151351
151658
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
151352
151659
|
strategicEventStatuses: Array<MercuryStrategicEventStatus>;
|
|
151353
151660
|
strategicEvents?: Maybe<Array<Maybe<MercuryStrategicEvent>>>;
|
|
@@ -151356,6 +151663,9 @@ export declare type MercuryStrategicEventsQueryApi = {
|
|
|
151356
151663
|
export declare type MercuryStrategicEventsQueryApiChangeProposalArgs = {
|
|
151357
151664
|
id: Scalars['ID']['input'];
|
|
151358
151665
|
};
|
|
151666
|
+
export declare type MercuryStrategicEventsQueryApiChangeProposalActivityHistoryByIdsArgs = {
|
|
151667
|
+
ids: Array<Scalars['ID']['input']>;
|
|
151668
|
+
};
|
|
151359
151669
|
export declare type MercuryStrategicEventsQueryApiChangeProposalCustomFieldDefinitionsSearchArgs = {
|
|
151360
151670
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
151361
151671
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -151442,6 +151752,13 @@ export declare type MercuryStrategicEventsQueryApiRestrictedStrategicEventsSearc
|
|
|
151442
151752
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
151443
151753
|
sort?: InputMaybe<Array<InputMaybe<MercuryStrategicEventSort>>>;
|
|
151444
151754
|
};
|
|
151755
|
+
export declare type MercuryStrategicEventsQueryApiSearchChangeProposalActivityHistoryArgs = {
|
|
151756
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
151757
|
+
cloudId: Scalars['ID']['input'];
|
|
151758
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
151759
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
151760
|
+
sort?: InputMaybe<Array<InputMaybe<MercuryChangeProposalActivitySort>>>;
|
|
151761
|
+
};
|
|
151445
151762
|
export declare type MercuryStrategicEventsQueryApiStrategicEventArgs = {
|
|
151446
151763
|
id: Scalars['ID']['input'];
|
|
151447
151764
|
};
|
|
@@ -151875,7 +152192,7 @@ export declare type MercuryUpdateChangeProposalsViewNamePayload = Payload & {
|
|
|
151875
152192
|
};
|
|
151876
152193
|
export declare type MercuryUpdateChangeProposalsViewSettingsInput = {
|
|
151877
152194
|
id: Scalars['ID']['input'];
|
|
151878
|
-
settings?: InputMaybe<Array<InputMaybe<
|
|
152195
|
+
settings?: InputMaybe<Array<InputMaybe<MercuryChangeProposalViewSettingInput>>>;
|
|
151879
152196
|
};
|
|
151880
152197
|
export declare type MercuryUpdateChangeProposalsViewSettingsPayload = {
|
|
151881
152198
|
__typename?: 'MercuryUpdateChangeProposalsViewSettingsPayload';
|
|
@@ -152339,19 +152656,6 @@ export declare type MercuryValidateFocusAreasForRankingPayload = Payload & {
|
|
|
152339
152656
|
success: Scalars['Boolean']['output'];
|
|
152340
152657
|
validation?: Maybe<MercuryFocusAreaRankingValidation>;
|
|
152341
152658
|
};
|
|
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
152659
|
export declare enum MercuryViewType {
|
|
152356
152660
|
HierarchyView = "HIERARCHY_VIEW",
|
|
152357
152661
|
RankingView = "RANKING_VIEW"
|
|
@@ -152738,6 +153042,7 @@ export declare type Mutation = {
|
|
|
152738
153042
|
agentStudio_uploadDatasetCsv?: Maybe<AgentStudioBatchEvalUploadDatasetPayload>;
|
|
152739
153043
|
agentWorkspace_archiveSkill?: Maybe<AgentWorkspaceArchiveSkillPayload>;
|
|
152740
153044
|
agentWorkspace_assignAgentToGap?: Maybe<AgentWorkspaceAssignAgentToGapPayload>;
|
|
153045
|
+
agentWorkspace_assignAgentsToSkill?: Maybe<AgentWorkspaceAssignAgentsToSkillPayload>;
|
|
152741
153046
|
agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
|
|
152742
153047
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
152743
153048
|
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
@@ -152761,6 +153066,7 @@ export declare type Mutation = {
|
|
|
152761
153066
|
aiManagedObject_deleteAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
|
|
152762
153067
|
aiManagedObject_updateAiManagedObject?: Maybe<AiManagedObject>;
|
|
152763
153068
|
aiops_createInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
153069
|
+
aiops_triggerInvestigation?: Maybe<AiOpsCreateInvestigationPayload>;
|
|
152764
153070
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
152765
153071
|
appStorage?: Maybe<AppStorageMutation>;
|
|
152766
153072
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -153186,6 +153492,7 @@ export declare type Mutation = {
|
|
|
153186
153492
|
csmAi_updateKnowledgeSource?: Maybe<CsmAiKnowledgeSourcePayload>;
|
|
153187
153493
|
csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
|
|
153188
153494
|
csm_updateLiveChatSettings?: Maybe<CustomerServiceLiveChatSettingsPayload>;
|
|
153495
|
+
csm_upsertHelpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataUpsertPayload>;
|
|
153189
153496
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
153190
153497
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
153191
153498
|
deactivatePaywallContent?: Maybe<DeactivatePaywallContentPayload>;
|
|
@@ -153383,6 +153690,7 @@ export declare type Mutation = {
|
|
|
153383
153690
|
jiraOAuthApps?: Maybe<JiraOAuthAppsMutation>;
|
|
153384
153691
|
jiraOpenBeta_createFeature?: Maybe<JiraOpenBetaFeatureCreatePayload>;
|
|
153385
153692
|
jiraOpenBeta_updateFeature?: Maybe<JiraOpenBetaFeatureUpdatePayload>;
|
|
153693
|
+
jira_addAgentToBoardViewStatusColumn?: Maybe<JiraAddAgentToBoardViewStatusColumnPayload>;
|
|
153386
153694
|
jira_addFieldsToFieldScheme?: Maybe<JiraAddFieldsToFieldSchemePayload>;
|
|
153387
153695
|
jira_addTimelineIssueLink?: Maybe<JiraTimelineIssueLinkOperationPayload>;
|
|
153388
153696
|
jira_archiveIssue?: Maybe<JiraIssueArchivePayload>;
|
|
@@ -153422,6 +153730,7 @@ export declare type Mutation = {
|
|
|
153422
153730
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
153423
153731
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
153424
153732
|
jira_publishTimelineViewConfig?: Maybe<JiraPublishTimelineViewConfigPayload>;
|
|
153733
|
+
jira_removeAgentFromBoardViewStatusColumn?: Maybe<JiraRemoveAgentFromBoardViewStatusColumnPayload>;
|
|
153425
153734
|
jira_removeCustomFieldTranslation?: Maybe<JiraRemoveCustomFieldTranslationPayload>;
|
|
153426
153735
|
jira_removeFieldsFromFieldScheme?: Maybe<JiraRemoveFieldsFromFieldSchemePayload>;
|
|
153427
153736
|
jira_removeIssueFromSprint?: Maybe<JiraRemoveIssueFromSprintPayload>;
|
|
@@ -153530,6 +153839,7 @@ export declare type Mutation = {
|
|
|
153530
153839
|
jsmChannels_establishConnection: JsmChannelsEstablishConnectionPayload;
|
|
153531
153840
|
jsmChannels_executeDraftResolutionPlanDeletion: JsmChannelsResolutionPlanActionPayload;
|
|
153532
153841
|
jsmChannels_executeResolutionPlanAction: JsmChannelsResolutionPlanActionPayload;
|
|
153842
|
+
jsmChannels_setPreviewMode?: Maybe<JsmChannelsSetPreviewModePayload>;
|
|
153533
153843
|
jsmChannels_updateExperienceConfiguration: JsmChannelsExperienceConfigurationPayload;
|
|
153534
153844
|
jsmChannels_updateTaskAgentConfiguration: JsmChannelsTaskAgentConfigurationPayload;
|
|
153535
153845
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
@@ -154263,6 +154573,9 @@ export declare type MutationAgentWorkspace_ArchiveSkillArgs = {
|
|
|
154263
154573
|
export declare type MutationAgentWorkspace_AssignAgentToGapArgs = {
|
|
154264
154574
|
input: AgentWorkspaceAssignAgentToGapInput;
|
|
154265
154575
|
};
|
|
154576
|
+
export declare type MutationAgentWorkspace_AssignAgentsToSkillArgs = {
|
|
154577
|
+
input: AgentWorkspaceAssignAgentsToSkillInput;
|
|
154578
|
+
};
|
|
154266
154579
|
export declare type MutationAgentWorkspace_CreateAndLinkTeamsFromGroupsArgs = {
|
|
154267
154580
|
input: AgentWorkspaceCreateAndLinkTeamsInput;
|
|
154268
154581
|
};
|
|
@@ -154337,6 +154650,10 @@ export declare type MutationAiManagedObject_UpdateAiManagedObjectArgs = {
|
|
|
154337
154650
|
export declare type MutationAiops_CreateInvestigationArgs = {
|
|
154338
154651
|
input: AiOpsCreateInvestigationInput;
|
|
154339
154652
|
};
|
|
154653
|
+
export declare type MutationAiops_TriggerInvestigationArgs = {
|
|
154654
|
+
cloudId: Scalars['ID']['input'];
|
|
154655
|
+
input: AiOpsTriggerInvestigationInput;
|
|
154656
|
+
};
|
|
154340
154657
|
export declare type MutationAppStorage_AdminArgs = {
|
|
154341
154658
|
appId: Scalars['ID']['input'];
|
|
154342
154659
|
};
|
|
@@ -155938,6 +156255,10 @@ export declare type MutationCsm_UpdateLiveChatSettingsArgs = {
|
|
|
155938
156255
|
cloudId: Scalars['ID']['input'];
|
|
155939
156256
|
input: CustomerServiceLiveChatSettingsInput;
|
|
155940
156257
|
};
|
|
156258
|
+
export declare type MutationCsm_UpsertHelpCenterMetadataArgs = {
|
|
156259
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
156260
|
+
input: CustomerServiceHelpCenterMetadataUpsertInput;
|
|
156261
|
+
};
|
|
155941
156262
|
export declare type MutationCustomerServiceArgs = {
|
|
155942
156263
|
cloudId: Scalars['ID']['input'];
|
|
155943
156264
|
};
|
|
@@ -156541,6 +156862,9 @@ export declare type MutationJiraOpenBeta_UpdateFeatureArgs = {
|
|
|
156541
156862
|
cloudId: Scalars['ID']['input'];
|
|
156542
156863
|
input?: InputMaybe<JiraOpenBetaFeatureUpdateInput>;
|
|
156543
156864
|
};
|
|
156865
|
+
export declare type MutationJira_AddAgentToBoardViewStatusColumnArgs = {
|
|
156866
|
+
input: JiraAddAgentToBoardViewStatusColumnInput;
|
|
156867
|
+
};
|
|
156544
156868
|
export declare type MutationJira_AddFieldsToFieldSchemeArgs = {
|
|
156545
156869
|
cloudId: Scalars['ID']['input'];
|
|
156546
156870
|
input: JiraAddFieldsToFieldSchemeInput;
|
|
@@ -156667,6 +156991,9 @@ export declare type MutationJira_PublishIssueSearchConfigArgs = {
|
|
|
156667
156991
|
export declare type MutationJira_PublishTimelineViewConfigArgs = {
|
|
156668
156992
|
input: JiraPublishTimelineViewConfigInput;
|
|
156669
156993
|
};
|
|
156994
|
+
export declare type MutationJira_RemoveAgentFromBoardViewStatusColumnArgs = {
|
|
156995
|
+
input: JiraRemoveAgentFromBoardViewStatusColumnInput;
|
|
156996
|
+
};
|
|
156670
156997
|
export declare type MutationJira_RemoveCustomFieldTranslationArgs = {
|
|
156671
156998
|
cloudId: Scalars['ID']['input'];
|
|
156672
156999
|
input: JiraRemoveCustomFieldTranslationInput;
|
|
@@ -157017,6 +157344,11 @@ export declare type MutationJsmChannels_ExecuteResolutionPlanActionArgs = {
|
|
|
157017
157344
|
jiraProjectAri: Scalars['ID']['input'];
|
|
157018
157345
|
planId: Scalars['ID']['input'];
|
|
157019
157346
|
};
|
|
157347
|
+
export declare type MutationJsmChannels_SetPreviewModeArgs = {
|
|
157348
|
+
experience: JsmChannelsExperience;
|
|
157349
|
+
input: JsmChannelsSetPreviewModeInput;
|
|
157350
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
157351
|
+
};
|
|
157020
157352
|
export declare type MutationJsmChannels_UpdateExperienceConfigurationArgs = {
|
|
157021
157353
|
experience: JsmChannelsExperience;
|
|
157022
157354
|
input: JsmChannelsExperienceConfigurationInput;
|
|
@@ -157167,6 +157499,7 @@ export declare type MutationKitsune_UpdateFeedbackArgs = {
|
|
|
157167
157499
|
export declare type MutationKitsune_UpdateInsightArgs = {
|
|
157168
157500
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
157169
157501
|
id: Scalars['ID']['input'];
|
|
157502
|
+
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
157170
157503
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
157171
157504
|
};
|
|
157172
157505
|
export declare type MutationKitsune_UpdateOrganizationArgs = {
|
|
@@ -161537,6 +161870,7 @@ export declare type Query = {
|
|
|
161537
161870
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
161538
161871
|
agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
|
|
161539
161872
|
agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
161873
|
+
agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
161540
161874
|
agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
|
|
161541
161875
|
agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
161542
161876
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
@@ -161558,6 +161892,7 @@ export declare type Query = {
|
|
|
161558
161892
|
aiManagedObject_aiManagedObjectsByReferenceObjectAri?: Maybe<AiManagedObjectConnection>;
|
|
161559
161893
|
aiops_echo?: Maybe<Scalars['String']['output']>;
|
|
161560
161894
|
aiops_incidentSuggestion?: Maybe<AiOpsIncidentSuggestionResponse>;
|
|
161895
|
+
aiops_latestInvestigationByEntityTypeId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
161561
161896
|
aiops_latestInvestigationByIssueId?: Maybe<AiOpsInvestigationQueryResult>;
|
|
161562
161897
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
161563
161898
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
@@ -161663,6 +161998,8 @@ export declare type Query = {
|
|
|
161663
161998
|
assetsVertical_modelItamAttributes?: Maybe<AssetsVerticalModelItamAttributesResult>;
|
|
161664
161999
|
assetsVertical_modelObjects?: Maybe<AssetsVerticalModelObjectsResult>;
|
|
161665
162000
|
assetsVertical_objects?: Maybe<AssetsVerticalObjectsResult>;
|
|
162001
|
+
assetsVertical_stockroomItamAttributes?: Maybe<AssetsVerticalStockroomItamAttributesResult>;
|
|
162002
|
+
assetsVertical_stockroomObjectTypes?: Maybe<AssetsVerticalStockroomObjectTypesResult>;
|
|
161666
162003
|
assetsVertical_stockroomObjects?: Maybe<AssetsVerticalStockroomObjectsResult>;
|
|
161667
162004
|
assetsVertical_verticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationResult>;
|
|
161668
162005
|
assetsVertical_verticalInstantiationCategories?: Maybe<AssetsVerticalVerticalInstantiationCategoryConnection>;
|
|
@@ -161674,6 +162011,7 @@ export declare type Query = {
|
|
|
161674
162011
|
assets_bundle?: Maybe<AssetsBundleResult>;
|
|
161675
162012
|
assets_cdmObjectTypesDefinitions?: Maybe<Array<Maybe<AssetsCdmObjectTypeResult>>>;
|
|
161676
162013
|
assets_cdmSchemasDefinitions?: Maybe<Array<Maybe<AssetsCdmSchemaResult>>>;
|
|
162014
|
+
assets_instantiatedBundle?: Maybe<AssetsBundleInstantiationResult>;
|
|
161677
162015
|
assets_objectById?: Maybe<AssetsObjectNode>;
|
|
161678
162016
|
assets_objectTypeAttributeValuesByID?: Maybe<Array<Maybe<AssetsObjectTypeAttributeValue>>>;
|
|
161679
162017
|
assets_objectTypeAttributesByObjectTypeIds?: Maybe<Array<Maybe<AssetsObjectTypeAttribute>>>;
|
|
@@ -161911,6 +162249,7 @@ export declare type Query = {
|
|
|
161911
162249
|
confluence_permittedClassificationLevelsForContent?: Maybe<ConfluencePermittedClassificationLevels>;
|
|
161912
162250
|
confluence_permittedClassificationLevelsForSpaceDefault?: Maybe<ConfluencePermittedClassificationLevels>;
|
|
161913
162251
|
confluence_popularCalendars?: Maybe<ConfluenceCalendarConnection>;
|
|
162252
|
+
confluence_popularLabelsMacro?: Maybe<ConfluencePopularLabelEntryConnection>;
|
|
161914
162253
|
confluence_principalsByCombinationId?: Maybe<ConfluencePermissionTransitionPrincipalsConnection>;
|
|
161915
162254
|
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
161916
162255
|
confluence_question?: Maybe<ConfluenceQuestion>;
|
|
@@ -162033,6 +162372,7 @@ export declare type Query = {
|
|
|
162033
162372
|
csmAi_getWidgetsWithCsmAiHub?: Maybe<CsmAiHubWithWidgetsResult>;
|
|
162034
162373
|
csmCustomersByIds?: Maybe<Array<Maybe<CustomerServiceCsmCustomer>>>;
|
|
162035
162374
|
csmOrganizationsByIds?: Maybe<Array<Maybe<CustomerServiceCsmOrganization>>>;
|
|
162375
|
+
csm_helpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataQueryResult>;
|
|
162036
162376
|
csm_liveChatAgent?: Maybe<CustomerServiceLiveChatAgentQueryResult>;
|
|
162037
162377
|
csm_liveChatSettings?: Maybe<CustomerServiceLiveChatSettingsQueryResult>;
|
|
162038
162378
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
@@ -162162,6 +162502,7 @@ export declare type Query = {
|
|
|
162162
162502
|
goals_byId?: Maybe<TownsquareGoal>;
|
|
162163
162503
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
162164
162504
|
goals_byKey?: Maybe<TownsquareGoal>;
|
|
162505
|
+
goals_capabilities?: Maybe<TownsquareGoalAppCapabilities>;
|
|
162165
162506
|
goals_goalStatuses?: Maybe<Array<TownsquareStatus>>;
|
|
162166
162507
|
goals_goalTypeById?: Maybe<TownsquareGoalType>;
|
|
162167
162508
|
goals_goalTypes?: Maybe<TownsquareGoalTypeConnection>;
|
|
@@ -162313,6 +162654,7 @@ export declare type Query = {
|
|
|
162313
162654
|
jsmChannels_getExperienceConfigurationByProjectIds: JsmChannelsExperienceConfigurationByProjectIdsResult;
|
|
162314
162655
|
jsmChannels_getResolutionPlanGraph?: Maybe<JsmChannelsResolutionPlanGraphResult>;
|
|
162315
162656
|
jsmChannels_getServiceAgentResolutionStateByTicketId: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
162657
|
+
jsmChannels_isPreviewModeEnabled?: Maybe<JsmChannelsPreviewModeResult>;
|
|
162316
162658
|
jsmChannels_taskAgents: JsmChannelsTaskAgentsResult;
|
|
162317
162659
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
162318
162660
|
jsmConversation_conversations?: Maybe<JsmConversationConnection>;
|
|
@@ -162497,6 +162839,7 @@ export declare type Query = {
|
|
|
162497
162839
|
projects_byIds?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
162498
162840
|
projects_byKey?: Maybe<TownsquareProject>;
|
|
162499
162841
|
projects_canCreateProjectFusion?: Maybe<TownsquareProjectsCanCreateProjectFusionPayload>;
|
|
162842
|
+
projects_capabilities?: Maybe<TownsquareProjectAppCapabilities>;
|
|
162500
162843
|
projects_customFieldDefinitionSearch?: Maybe<TownsquareCustomFieldDefinitionConnection>;
|
|
162501
162844
|
projects_linksByIds?: Maybe<Array<Maybe<TownsquareLink>>>;
|
|
162502
162845
|
projects_search?: Maybe<TownsquareProjectConnection>;
|
|
@@ -163414,6 +163757,9 @@ export declare type QueryAgentWorkspace_ProjectDefaultAvailabilityArgs = {
|
|
|
163414
163757
|
cloudId: Scalars['ID']['input'];
|
|
163415
163758
|
projectId: Scalars['ID']['input'];
|
|
163416
163759
|
};
|
|
163760
|
+
export declare type QueryAgentWorkspace_RecommendedAgentsForGapArgs = {
|
|
163761
|
+
input: AgentWorkspaceRecommendedAgentsForGapInput;
|
|
163762
|
+
};
|
|
163417
163763
|
export declare type QueryAgentWorkspace_RecommendedAssigneesArgs = {
|
|
163418
163764
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
163419
163765
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -163515,6 +163861,11 @@ export declare type QueryAiops_IncidentSuggestionArgs = {
|
|
|
163515
163861
|
cloudId: Scalars['ID']['input'];
|
|
163516
163862
|
issueKey: Scalars['String']['input'];
|
|
163517
163863
|
};
|
|
163864
|
+
export declare type QueryAiops_LatestInvestigationByEntityTypeIdArgs = {
|
|
163865
|
+
cloudId: Scalars['ID']['input'];
|
|
163866
|
+
entityId: Scalars['ID']['input'];
|
|
163867
|
+
entityType: AiOpsInvestigationSourceEntityType;
|
|
163868
|
+
};
|
|
163518
163869
|
export declare type QueryAiops_LatestInvestigationByIssueIdArgs = {
|
|
163519
163870
|
issueId: Scalars['ID']['input'];
|
|
163520
163871
|
};
|
|
@@ -164091,6 +164442,13 @@ export declare type QueryAssetsVertical_ObjectsArgs = {
|
|
|
164091
164442
|
cloudId: Scalars['ID']['input'];
|
|
164092
164443
|
input?: InputMaybe<AssetsVerticalObjectsInput>;
|
|
164093
164444
|
};
|
|
164445
|
+
export declare type QueryAssetsVertical_StockroomItamAttributesArgs = {
|
|
164446
|
+
cloudId: Scalars['ID']['input'];
|
|
164447
|
+
workspaceId: Scalars['ID']['input'];
|
|
164448
|
+
};
|
|
164449
|
+
export declare type QueryAssetsVertical_StockroomObjectTypesArgs = {
|
|
164450
|
+
cloudId: Scalars['ID']['input'];
|
|
164451
|
+
};
|
|
164094
164452
|
export declare type QueryAssetsVertical_StockroomObjectsArgs = {
|
|
164095
164453
|
cloudId: Scalars['ID']['input'];
|
|
164096
164454
|
input: AssetsVerticalStockroomObjectsInput;
|
|
@@ -164145,6 +164503,10 @@ export declare type QueryAssets_CdmSchemasDefinitionsArgs = {
|
|
|
164145
164503
|
cloudId: Scalars['ID']['input'];
|
|
164146
164504
|
ids: Array<Scalars['ID']['input']>;
|
|
164147
164505
|
};
|
|
164506
|
+
export declare type QueryAssets_InstantiatedBundleArgs = {
|
|
164507
|
+
cloudId: Scalars['ID']['input'];
|
|
164508
|
+
type: AssetsBundleType;
|
|
164509
|
+
};
|
|
164148
164510
|
export declare type QueryAssets_ObjectByIdArgs = {
|
|
164149
164511
|
id: Scalars['ID']['input'];
|
|
164150
164512
|
};
|
|
@@ -165123,6 +165485,12 @@ export declare type QueryConfluence_PopularCalendarsArgs = {
|
|
|
165123
165485
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165124
165486
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
165125
165487
|
};
|
|
165488
|
+
export declare type QueryConfluence_PopularLabelsMacroArgs = {
|
|
165489
|
+
cloudId: Scalars['ID']['input'];
|
|
165490
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165491
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
165492
|
+
style?: InputMaybe<ConfluencePopularLabelStyle>;
|
|
165493
|
+
};
|
|
165126
165494
|
export declare type QueryConfluence_PrincipalsByCombinationIdArgs = {
|
|
165127
165495
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
165128
165496
|
cloudId: Scalars['ID']['input'];
|
|
@@ -165766,6 +166134,9 @@ export declare type QueryCsmCustomersByIdsArgs = {
|
|
|
165766
166134
|
export declare type QueryCsmOrganizationsByIdsArgs = {
|
|
165767
166135
|
csmOrganizationAris: Array<Scalars['ID']['input']>;
|
|
165768
166136
|
};
|
|
166137
|
+
export declare type QueryCsm_HelpCenterMetadataArgs = {
|
|
166138
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
166139
|
+
};
|
|
165769
166140
|
export declare type QueryCsm_LiveChatAgentArgs = {
|
|
165770
166141
|
accountId: Scalars['ID']['input'];
|
|
165771
166142
|
cloudId: Scalars['ID']['input'];
|
|
@@ -166281,6 +166652,9 @@ export declare type QueryGoals_ByKeyArgs = {
|
|
|
166281
166652
|
containerId: Scalars['ID']['input'];
|
|
166282
166653
|
goalKey: Scalars['String']['input'];
|
|
166283
166654
|
};
|
|
166655
|
+
export declare type QueryGoals_CapabilitiesArgs = {
|
|
166656
|
+
containerId: Scalars['ID']['input'];
|
|
166657
|
+
};
|
|
166284
166658
|
export declare type QueryGoals_GoalStatusesArgs = {
|
|
166285
166659
|
containerId: Scalars['ID']['input'];
|
|
166286
166660
|
};
|
|
@@ -166860,6 +167234,10 @@ export declare type QueryJsmChannels_GetServiceAgentResolutionStateByTicketIdArg
|
|
|
166860
167234
|
jiraProjectAri: Scalars['ID']['input'];
|
|
166861
167235
|
ticketId: Scalars['ID']['input'];
|
|
166862
167236
|
};
|
|
167237
|
+
export declare type QueryJsmChannels_IsPreviewModeEnabledArgs = {
|
|
167238
|
+
experience: JsmChannelsExperience;
|
|
167239
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
167240
|
+
};
|
|
166863
167241
|
export declare type QueryJsmChannels_TaskAgentsArgs = {
|
|
166864
167242
|
experience: JsmChannelsExperience;
|
|
166865
167243
|
jiraProjectAri: Scalars['ID']['input'];
|
|
@@ -167479,6 +167857,9 @@ export declare type QueryProjects_ByKeyArgs = {
|
|
|
167479
167857
|
export declare type QueryProjects_CanCreateProjectFusionArgs = {
|
|
167480
167858
|
input: TownsquareProjectsCanCreateProjectFusionInput;
|
|
167481
167859
|
};
|
|
167860
|
+
export declare type QueryProjects_CapabilitiesArgs = {
|
|
167861
|
+
containerId: Scalars['ID']['input'];
|
|
167862
|
+
};
|
|
167482
167863
|
export declare type QueryProjects_CustomFieldDefinitionSearchArgs = {
|
|
167483
167864
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
167484
167865
|
containerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -170976,6 +171357,7 @@ export declare enum Scope {
|
|
|
170976
171357
|
ReadAppLogs = "READ_APP_LOGS",
|
|
170977
171358
|
ReadAppSystemToken = "READ_APP_SYSTEM_TOKEN",
|
|
170978
171359
|
ReadAssetsTwgCli = "READ_ASSETS_TWG_CLI",
|
|
171360
|
+
ReadCapacityPlanning = "READ_CAPACITY_PLANNING",
|
|
170979
171361
|
ReadCmdbAttributeJira = "READ_CMDB_ATTRIBUTE_JIRA",
|
|
170980
171362
|
ReadCmdbObjectJira = "READ_CMDB_OBJECT_JIRA",
|
|
170981
171363
|
ReadCmdbSchemaJira = "READ_CMDB_SCHEMA_JIRA",
|
|
@@ -171143,6 +171525,7 @@ export declare enum Scope {
|
|
|
171143
171525
|
WorkflowWrite = "WORKFLOW_WRITE",
|
|
171144
171526
|
WriteAppDetails = "WRITE_APP_DETAILS",
|
|
171145
171527
|
WriteAssetsTwgCli = "WRITE_ASSETS_TWG_CLI",
|
|
171528
|
+
WriteCapacityPlanning = "WRITE_CAPACITY_PLANNING",
|
|
171146
171529
|
WriteCmdbAttributeJira = "WRITE_CMDB_ATTRIBUTE_JIRA",
|
|
171147
171530
|
WriteCommentGoal = "WRITE_COMMENT_GOAL",
|
|
171148
171531
|
WriteCompassComponent = "WRITE_COMPASS_COMPONENT",
|
|
@@ -191845,8 +192228,8 @@ export declare type SmartsContext = {
|
|
|
191845
192228
|
};
|
|
191846
192229
|
export declare type SmartsContextServiceCollaboratorRecommendation = {
|
|
191847
192230
|
__typename?: 'SmartsContextServiceCollaboratorRecommendation';
|
|
192231
|
+
context?: Maybe<Scalars['String']['output']>;
|
|
191848
192232
|
id: Scalars['ID']['output'];
|
|
191849
|
-
reason?: Maybe<Scalars['String']['output']>;
|
|
191850
192233
|
score?: Maybe<Scalars['Float']['output']>;
|
|
191851
192234
|
user?: Maybe<User>;
|
|
191852
192235
|
};
|
|
@@ -198028,6 +198411,10 @@ export declare type TownsquareAppAccessMutationErrorExtension = MutationErrorExt
|
|
|
198028
198411
|
failedAccountIds: Array<Scalars['String']['output']>;
|
|
198029
198412
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
198030
198413
|
};
|
|
198414
|
+
export declare enum TownsquareAppLevelEffectiveRole {
|
|
198415
|
+
CanEdit = "CAN_EDIT",
|
|
198416
|
+
ViewOnly = "VIEW_ONLY"
|
|
198417
|
+
}
|
|
198031
198418
|
export declare type TownsquareArchiveGoalInput = {
|
|
198032
198419
|
id: Scalars['String']['input'];
|
|
198033
198420
|
};
|
|
@@ -198603,6 +198990,7 @@ export declare type TownsquareGoalAccessConnection = {
|
|
|
198603
198990
|
};
|
|
198604
198991
|
export declare type TownsquareGoalAccessEdge = {
|
|
198605
198992
|
__typename?: 'TownsquareGoalAccessEdge';
|
|
198993
|
+
appLevelEffectiveRole?: Maybe<TownsquareAppLevelEffectiveRole>;
|
|
198606
198994
|
cursor: Scalars['String']['output'];
|
|
198607
198995
|
isFollower?: Maybe<Scalars['Boolean']['output']>;
|
|
198608
198996
|
isOwner?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -198625,6 +199013,8 @@ export declare enum TownsquareGoalAccessRoleInput {
|
|
|
198625
199013
|
}
|
|
198626
199014
|
export declare type TownsquareGoalAppCapabilities = {
|
|
198627
199015
|
__typename?: 'TownsquareGoalAppCapabilities';
|
|
199016
|
+
canCreateGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
199017
|
+
canExportGoals?: Maybe<Scalars['Boolean']['output']>;
|
|
198628
199018
|
focus?: Maybe<TownsquareFocusAppCapabilities>;
|
|
198629
199019
|
};
|
|
198630
199020
|
export declare type TownsquareGoalArchivedChange = {
|
|
@@ -200146,6 +200536,7 @@ export declare type TownsquareProjectAccessConnection = {
|
|
|
200146
200536
|
};
|
|
200147
200537
|
export declare type TownsquareProjectAccessEdge = {
|
|
200148
200538
|
__typename?: 'TownsquareProjectAccessEdge';
|
|
200539
|
+
appLevelEffectiveRole?: Maybe<TownsquareAppLevelEffectiveRole>;
|
|
200149
200540
|
cursor: Scalars['String']['output'];
|
|
200150
200541
|
isFollower?: Maybe<Scalars['Boolean']['output']>;
|
|
200151
200542
|
isOwner?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -200168,6 +200559,8 @@ export declare enum TownsquareProjectAccessRoleInput {
|
|
|
200168
200559
|
}
|
|
200169
200560
|
export declare type TownsquareProjectAppCapabilities = {
|
|
200170
200561
|
__typename?: 'TownsquareProjectAppCapabilities';
|
|
200562
|
+
canCreateProject?: Maybe<Scalars['Boolean']['output']>;
|
|
200563
|
+
canExportProjects?: Maybe<Scalars['Boolean']['output']>;
|
|
200171
200564
|
focus?: Maybe<TownsquareFocusAppCapabilities>;
|
|
200172
200565
|
};
|
|
200173
200566
|
export declare type TownsquareProjectCapabilities = {
|
|
@@ -201404,6 +201797,14 @@ export declare type TownsquareUnshardedFusionConfigForJiraIssueAri = {
|
|
|
201404
201797
|
isAppEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
201405
201798
|
jiraIssueAri?: Maybe<Scalars['String']['output']>;
|
|
201406
201799
|
};
|
|
201800
|
+
export declare type TownsquareUnshardedGoalAppCapabilities = {
|
|
201801
|
+
__typename?: 'TownsquareUnshardedGoalAppCapabilities';
|
|
201802
|
+
canCreateGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
201803
|
+
};
|
|
201804
|
+
export declare type TownsquareUnshardedProjectAppCapabilities = {
|
|
201805
|
+
__typename?: 'TownsquareUnshardedProjectAppCapabilities';
|
|
201806
|
+
canCreateProject?: Maybe<Scalars['Boolean']['output']>;
|
|
201807
|
+
};
|
|
201407
201808
|
export declare type TownsquareUnshardedUserCapabilities = {
|
|
201408
201809
|
__typename?: 'TownsquareUnshardedUserCapabilities';
|
|
201409
201810
|
capabilities?: Maybe<Array<Maybe<TownsquareUnshardedCapability>>>;
|
|
@@ -201411,8 +201812,10 @@ export declare type TownsquareUnshardedUserCapabilities = {
|
|
|
201411
201812
|
export declare type TownsquareUnshardedWorkspaceSummary = {
|
|
201412
201813
|
__typename?: 'TownsquareUnshardedWorkspaceSummary';
|
|
201413
201814
|
cloudId: Scalars['String']['output'];
|
|
201815
|
+
goalsCapabilities?: Maybe<TownsquareUnshardedGoalAppCapabilities>;
|
|
201414
201816
|
id: Scalars['ID']['output'];
|
|
201415
201817
|
name: Scalars['String']['output'];
|
|
201818
|
+
projectsCapabilities?: Maybe<TownsquareUnshardedProjectAppCapabilities>;
|
|
201416
201819
|
userCapabilities?: Maybe<TownsquareUnshardedUserCapabilities>;
|
|
201417
201820
|
uuid: Scalars['String']['output'];
|
|
201418
201821
|
};
|
|
@@ -201546,6 +201949,7 @@ export declare type TownsquareWatchGoalPayload = {
|
|
|
201546
201949
|
export declare type TownsquareWorkspace = Node & {
|
|
201547
201950
|
__typename?: 'TownsquareWorkspace';
|
|
201548
201951
|
cloudId: Scalars['String']['output'];
|
|
201952
|
+
defaultGoalAccessLevel: TownsquareGoalAccessLevel;
|
|
201549
201953
|
id: Scalars['ID']['output'];
|
|
201550
201954
|
name: Scalars['String']['output'];
|
|
201551
201955
|
};
|
|
@@ -202513,11 +202917,6 @@ export declare type TrelloBoardPowerUpEdgeUpdated = {
|
|
|
202513
202917
|
export declare type TrelloBoardPowerUpFilterInput = {
|
|
202514
202918
|
access?: InputMaybe<Scalars['String']['input']>;
|
|
202515
202919
|
};
|
|
202516
|
-
export declare enum TrelloBoardPowerUps {
|
|
202517
|
-
Calendar = "CALENDAR",
|
|
202518
|
-
Cardaging = "CARDAGING",
|
|
202519
|
-
Voting = "VOTING"
|
|
202520
|
-
}
|
|
202521
202920
|
export declare type TrelloBoardPreferencesInput = {
|
|
202522
202921
|
background?: InputMaybe<TrelloCreateBoardBackgroundInput>;
|
|
202523
202922
|
cardAging?: InputMaybe<TrelloBoardCardAgingModes>;
|
|
@@ -202529,7 +202928,6 @@ export declare type TrelloBoardPreferencesInput = {
|
|
|
202529
202928
|
permissionLevel?: InputMaybe<TrelloBoardPrefsPermissionLevel>;
|
|
202530
202929
|
selfJoin?: InputMaybe<Scalars['Boolean']['input']>;
|
|
202531
202930
|
showCompleteStatus?: InputMaybe<Scalars['Boolean']['input']>;
|
|
202532
|
-
switcherViews?: InputMaybe<Array<InputMaybe<TrelloSwitcherViewsInfoInput>>>;
|
|
202533
202931
|
voting?: InputMaybe<TrelloBoardVotingPermissions>;
|
|
202534
202932
|
};
|
|
202535
202933
|
export declare type TrelloBoardPrefs = TrelloBaseBoardPrefs & {
|
|
@@ -203453,7 +203851,6 @@ export declare type TrelloCreateBoardInput = {
|
|
|
203453
203851
|
creationMethod?: InputMaybe<TrelloBoardCreationMethod>;
|
|
203454
203852
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
203455
203853
|
name: Scalars['String']['input'];
|
|
203456
|
-
powerUps?: InputMaybe<TrelloBoardPowerUps>;
|
|
203457
203854
|
preferences?: InputMaybe<TrelloBoardPreferencesInput>;
|
|
203458
203855
|
setup?: InputMaybe<TrelloSetupInput>;
|
|
203459
203856
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -204973,6 +205370,7 @@ export declare type TrelloMutationApi = {
|
|
|
204973
205370
|
undoAction?: Maybe<TrelloUndoActionPayload>;
|
|
204974
205371
|
unwatchCard?: Maybe<TrelloWatchCardPayload>;
|
|
204975
205372
|
updateAiRule?: Maybe<TrelloUpdateAiRulePayload>;
|
|
205373
|
+
updateApplication?: Maybe<TrelloUpdateApplicationPayload>;
|
|
204976
205374
|
updateBoardBackground?: Maybe<TrelloUpdateBoardBackgroundPayload>;
|
|
204977
205375
|
updateBoardCommentingPermissions?: Maybe<TrelloUpdateBoardCommentingPermissionsPayload>;
|
|
204978
205376
|
updateBoardDescription?: Maybe<TrelloUpdateBoardDescriptionPayload>;
|
|
@@ -205001,6 +205399,7 @@ export declare type TrelloMutationApi = {
|
|
|
205001
205399
|
updateCustomFieldOption?: Maybe<TrelloUpdateCustomFieldOptionPayload>;
|
|
205002
205400
|
updateInboxBackground?: Maybe<TrelloUpdateInboxBackgroundPayload>;
|
|
205003
205401
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
205402
|
+
updateListName?: Maybe<TrelloUpdateListPayload>;
|
|
205004
205403
|
updateMemberTimezone?: Maybe<TrelloUpdateMemberTimezonePayload>;
|
|
205005
205404
|
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
205006
205405
|
updatePlannerDueDateCardSettings?: Maybe<TrelloUpdatePlannerDueDateCardSettingsPayload>;
|
|
@@ -205258,6 +205657,9 @@ export declare type TrelloMutationApiUnwatchCardArgs = {
|
|
|
205258
205657
|
export declare type TrelloMutationApiUpdateAiRuleArgs = {
|
|
205259
205658
|
input: TrelloUpdateAiRuleInput;
|
|
205260
205659
|
};
|
|
205660
|
+
export declare type TrelloMutationApiUpdateApplicationArgs = {
|
|
205661
|
+
input: TrelloUpdateApplicationInput;
|
|
205662
|
+
};
|
|
205261
205663
|
export declare type TrelloMutationApiUpdateBoardBackgroundArgs = {
|
|
205262
205664
|
input: TrelloUpdateBoardBackgroundInput;
|
|
205263
205665
|
};
|
|
@@ -205342,6 +205744,9 @@ export declare type TrelloMutationApiUpdateInboxBackgroundArgs = {
|
|
|
205342
205744
|
export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
205343
205745
|
input: TrelloUpdateKeyboardShortcutsPrefInput;
|
|
205344
205746
|
};
|
|
205747
|
+
export declare type TrelloMutationApiUpdateListNameArgs = {
|
|
205748
|
+
input: TrelloUpdateListNameInput;
|
|
205749
|
+
};
|
|
205345
205750
|
export declare type TrelloMutationApiUpdateMemberTimezoneArgs = {
|
|
205346
205751
|
input: TrelloUpdateMemberTimezoneInput;
|
|
205347
205752
|
};
|
|
@@ -206862,10 +207267,6 @@ export declare type TrelloSwitcherViewsInfo = {
|
|
|
206862
207267
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
206863
207268
|
viewType?: Maybe<Scalars['String']['output']>;
|
|
206864
207269
|
};
|
|
206865
|
-
export declare type TrelloSwitcherViewsInfoInput = {
|
|
206866
|
-
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
206867
|
-
viewType?: InputMaybe<Scalars['String']['input']>;
|
|
206868
|
-
};
|
|
206869
207270
|
export declare type TrelloTag = {
|
|
206870
207271
|
__typename?: 'TrelloTag';
|
|
206871
207272
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -206966,6 +207367,24 @@ export declare type TrelloUpdateAiRulePayload = Payload & {
|
|
|
206966
207367
|
errors?: Maybe<Array<MutationError>>;
|
|
206967
207368
|
success: Scalars['Boolean']['output'];
|
|
206968
207369
|
};
|
|
207370
|
+
export declare type TrelloUpdateApplicationIconInput = {
|
|
207371
|
+
url?: InputMaybe<Scalars['URL']['input']>;
|
|
207372
|
+
};
|
|
207373
|
+
export declare type TrelloUpdateApplicationInput = {
|
|
207374
|
+
author?: InputMaybe<Scalars['String']['input']>;
|
|
207375
|
+
categories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
207376
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
207377
|
+
icon?: InputMaybe<TrelloUpdateApplicationIconInput>;
|
|
207378
|
+
id: Scalars['ID']['input'];
|
|
207379
|
+
iframeConnectorUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
207380
|
+
supportContact?: InputMaybe<Scalars['String']['input']>;
|
|
207381
|
+
};
|
|
207382
|
+
export declare type TrelloUpdateApplicationPayload = Payload & {
|
|
207383
|
+
__typename?: 'TrelloUpdateApplicationPayload';
|
|
207384
|
+
application?: Maybe<TrelloApplication>;
|
|
207385
|
+
errors?: Maybe<Array<MutationError>>;
|
|
207386
|
+
success: Scalars['Boolean']['output'];
|
|
207387
|
+
};
|
|
206969
207388
|
export declare type TrelloUpdateBoardBackgroundInput = {
|
|
206970
207389
|
background?: InputMaybe<TrelloBoardBackgroundInput>;
|
|
206971
207390
|
id: Scalars['ID']['input'];
|
|
@@ -207372,6 +207791,16 @@ export declare type TrelloUpdateKeyboardShortcutsPrefPayload = Payload & {
|
|
|
207372
207791
|
errors?: Maybe<Array<MutationError>>;
|
|
207373
207792
|
success: Scalars['Boolean']['output'];
|
|
207374
207793
|
};
|
|
207794
|
+
export declare type TrelloUpdateListNameInput = {
|
|
207795
|
+
id: Scalars['ID']['input'];
|
|
207796
|
+
name: Scalars['String']['input'];
|
|
207797
|
+
};
|
|
207798
|
+
export declare type TrelloUpdateListPayload = Payload & {
|
|
207799
|
+
__typename?: 'TrelloUpdateListPayload';
|
|
207800
|
+
errors?: Maybe<Array<MutationError>>;
|
|
207801
|
+
list?: Maybe<TrelloList>;
|
|
207802
|
+
success: Scalars['Boolean']['output'];
|
|
207803
|
+
};
|
|
207375
207804
|
export declare type TrelloUpdateMemberTimezoneInput = {
|
|
207376
207805
|
value: Scalars['String']['input'];
|
|
207377
207806
|
};
|
|
@@ -211222,6 +211651,7 @@ export declare type WebTriggerUrlInput = {
|
|
|
211222
211651
|
appId: Scalars['ID']['input'];
|
|
211223
211652
|
contextId: Scalars['ID']['input'];
|
|
211224
211653
|
envId: Scalars['ID']['input'];
|
|
211654
|
+
secretKey?: InputMaybe<Scalars['String']['input']>;
|
|
211225
211655
|
triggerKey: Scalars['String']['input'];
|
|
211226
211656
|
};
|
|
211227
211657
|
export declare type WhiteboardFeatures = {
|