@forge/cli-shared 8.7.0-next.0 → 8.7.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 +15 -0
- package/out/graphql/graphql-types.d.ts +155 -27
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +35 -29
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 8.7.0-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 895d478: Updates Agent MD file with appropriate instructions
|
|
8
|
+
- Updated dependencies [895d478]
|
|
9
|
+
- @forge/manifest@10.5.1-next.1
|
|
10
|
+
|
|
11
|
+
## 8.7.0-next.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [b15478b]
|
|
16
|
+
- @forge/manifest@10.5.1-next.0
|
|
17
|
+
|
|
3
18
|
## 8.7.0-next.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
|
@@ -165,7 +165,7 @@ export declare type AvpChart = {
|
|
|
165
165
|
chartConfig?: Maybe<AvpChartConfig>;
|
|
166
166
|
chartLayout?: Maybe<AvpChartLayout>;
|
|
167
167
|
chartType?: Maybe<Scalars['String']['output']>;
|
|
168
|
-
|
|
168
|
+
envVar?: Maybe<AvpEnvVar>;
|
|
169
169
|
id?: Maybe<Scalars['ID']['output']>;
|
|
170
170
|
pipeline?: Maybe<AvpChartPipeline>;
|
|
171
171
|
templateChartId?: Maybe<Scalars['String']['output']>;
|
|
@@ -398,6 +398,17 @@ export declare type AvpCreateChartPayload = Payload & {
|
|
|
398
398
|
errors?: Maybe<Array<MutationError>>;
|
|
399
399
|
success: Scalars['Boolean']['output'];
|
|
400
400
|
};
|
|
401
|
+
export declare type AvpCreateDashboardInput = {
|
|
402
|
+
cloudId: Scalars['ID']['input'];
|
|
403
|
+
dashboard: AvpDashboardInput;
|
|
404
|
+
workspaceId: Scalars['ID']['input'];
|
|
405
|
+
};
|
|
406
|
+
export declare type AvpCreateDashboardPayload = Payload & {
|
|
407
|
+
__typename?: 'AVPCreateDashboardPayload';
|
|
408
|
+
dashboard?: Maybe<AvpDashboard>;
|
|
409
|
+
errors?: Maybe<Array<MutationError>>;
|
|
410
|
+
success: Scalars['Boolean']['output'];
|
|
411
|
+
};
|
|
401
412
|
export declare type AvpDashboard = {
|
|
402
413
|
__typename?: 'AVPDashboard';
|
|
403
414
|
access?: Maybe<Scalars['Int']['output']>;
|
|
@@ -473,6 +484,11 @@ export declare enum AvpDashboardStatus {
|
|
|
473
484
|
Archived = "ARCHIVED",
|
|
474
485
|
Trashed = "TRASHED"
|
|
475
486
|
}
|
|
487
|
+
export declare enum AvpDashboardStatusAction {
|
|
488
|
+
Archive = "ARCHIVE",
|
|
489
|
+
Restore = "RESTORE",
|
|
490
|
+
Trash = "TRASH"
|
|
491
|
+
}
|
|
476
492
|
export declare type AvpDatasourceLocator = {
|
|
477
493
|
__typename?: 'AVPDatasourceLocator';
|
|
478
494
|
cloudId?: Maybe<Scalars['String']['output']>;
|
|
@@ -674,6 +690,16 @@ export declare type AvpUpdateDashboardRowNumElementsPayload = Payload & {
|
|
|
674
690
|
errors?: Maybe<Array<MutationError>>;
|
|
675
691
|
success: Scalars['Boolean']['output'];
|
|
676
692
|
};
|
|
693
|
+
export declare type AvpUpdateDashboardStatusInput = {
|
|
694
|
+
action: AvpDashboardStatusAction;
|
|
695
|
+
dashboardAris: Array<Scalars['ID']['input']>;
|
|
696
|
+
};
|
|
697
|
+
export declare type AvpUpdateDashboardStatusPayload = Payload & {
|
|
698
|
+
__typename?: 'AVPUpdateDashboardStatusPayload';
|
|
699
|
+
dashboards?: Maybe<Array<Maybe<AvpDashboard>>>;
|
|
700
|
+
errors?: Maybe<Array<MutationError>>;
|
|
701
|
+
success: Scalars['Boolean']['output'];
|
|
702
|
+
};
|
|
677
703
|
export declare enum AcceptableResponse {
|
|
678
704
|
False = "FALSE",
|
|
679
705
|
NotApplicable = "NOT_APPLICABLE",
|
|
@@ -4042,6 +4068,7 @@ export declare type AppUninstallationInput = {
|
|
|
4042
4068
|
appId: Scalars['ID']['input'];
|
|
4043
4069
|
async?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4044
4070
|
environmentKey: Scalars['String']['input'];
|
|
4071
|
+
forfeitRemainingFunds?: InputMaybe<Scalars['Boolean']['input']>;
|
|
4045
4072
|
installationContext?: InputMaybe<Scalars['ID']['input']>;
|
|
4046
4073
|
installationId?: InputMaybe<Scalars['ID']['input']>;
|
|
4047
4074
|
licenseOverride?: InputMaybe<LicenseOverrideState>;
|
|
@@ -4946,6 +4973,11 @@ export declare type AssetsDmObjectsListDataRows = {
|
|
|
4946
4973
|
pageInfo: AssetsDmObjectsListPageInfo;
|
|
4947
4974
|
totalCount: Scalars['Int']['output'];
|
|
4948
4975
|
};
|
|
4976
|
+
export declare type AssetsDmObjectsListExportRequestCreateResponse = {
|
|
4977
|
+
__typename?: 'AssetsDMObjectsListExportRequestCreateResponse';
|
|
4978
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
4979
|
+
message: Scalars['String']['output'];
|
|
4980
|
+
};
|
|
4949
4981
|
export declare enum AssetsDmObjectsListIconType {
|
|
4950
4982
|
Failed = "FAILED",
|
|
4951
4983
|
Success = "SUCCESS",
|
|
@@ -14497,6 +14529,12 @@ export declare type ConfluenceCalendarRestriction = {
|
|
|
14497
14529
|
eventsViewable: Scalars['Boolean']['output'];
|
|
14498
14530
|
reloadable: Scalars['Boolean']['output'];
|
|
14499
14531
|
};
|
|
14532
|
+
export declare type ConfluenceCalendarSubscribeInput = {
|
|
14533
|
+
calendarContext?: InputMaybe<Scalars['String']['input']>;
|
|
14534
|
+
ids: Array<InputMaybe<Scalars['String']['input']>>;
|
|
14535
|
+
viewingSpaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
14536
|
+
watch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
14537
|
+
};
|
|
14500
14538
|
export declare type ConfluenceCalendarSubscriptionInfo = {
|
|
14501
14539
|
__typename?: 'ConfluenceCalendarSubscriptionInfo';
|
|
14502
14540
|
subscribedByCurrentUser: Scalars['Boolean']['output'];
|
|
@@ -15258,6 +15296,14 @@ export declare type ConfluenceDeleteCalendarCustomEventTypePayload = Payload & {
|
|
|
15258
15296
|
errors?: Maybe<Array<MutationError>>;
|
|
15259
15297
|
success: Scalars['Boolean']['output'];
|
|
15260
15298
|
};
|
|
15299
|
+
export declare type ConfluenceDeleteCalendarInput = {
|
|
15300
|
+
id: Scalars['ID']['input'];
|
|
15301
|
+
};
|
|
15302
|
+
export declare type ConfluenceDeleteCalendarPayload = Payload & {
|
|
15303
|
+
__typename?: 'ConfluenceDeleteCalendarPayload';
|
|
15304
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15305
|
+
success: Scalars['Boolean']['output'];
|
|
15306
|
+
};
|
|
15261
15307
|
export declare type ConfluenceDeleteCommentInput = {
|
|
15262
15308
|
id: Scalars['ID']['input'];
|
|
15263
15309
|
};
|
|
@@ -17467,6 +17513,12 @@ export declare type ConfluenceSubjectCustomContentPermissionDelta = {
|
|
|
17467
17513
|
permissionsToRemove: Array<InputMaybe<ConfluenceCustomContentPermissionInput>>;
|
|
17468
17514
|
principal: ConfluenceCustomContentPrincipalInput;
|
|
17469
17515
|
};
|
|
17516
|
+
export declare type ConfluenceSubscribeCalendarPayload = Payload & {
|
|
17517
|
+
__typename?: 'ConfluenceSubscribeCalendarPayload';
|
|
17518
|
+
calendars?: Maybe<Array<Maybe<ConfluenceCalendar>>>;
|
|
17519
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17520
|
+
success: Scalars['Boolean']['output'];
|
|
17521
|
+
};
|
|
17470
17522
|
export declare enum ConfluenceSubscriptionContentType {
|
|
17471
17523
|
Blogpost = "BLOGPOST",
|
|
17472
17524
|
Comment = "COMMENT",
|
|
@@ -17612,6 +17664,11 @@ export declare type ConfluenceTrashPagePayload = Payload & {
|
|
|
17612
17664
|
errors?: Maybe<Array<MutationError>>;
|
|
17613
17665
|
success: Scalars['Boolean']['output'];
|
|
17614
17666
|
};
|
|
17667
|
+
export declare type ConfluenceUnSubscribeCalendarPayload = Payload & {
|
|
17668
|
+
__typename?: 'ConfluenceUnSubscribeCalendarPayload';
|
|
17669
|
+
errors?: Maybe<Array<MutationError>>;
|
|
17670
|
+
success: Scalars['Boolean']['output'];
|
|
17671
|
+
};
|
|
17615
17672
|
export declare type ConfluenceUnmarkCommentAsDanglingInput = {
|
|
17616
17673
|
id: Scalars['ID']['input'];
|
|
17617
17674
|
};
|
|
@@ -17647,6 +17704,11 @@ export declare type ConfluenceUnschedulePublishPayload = {
|
|
|
17647
17704
|
errors?: Maybe<Array<MutationError>>;
|
|
17648
17705
|
success: Scalars['Boolean']['output'];
|
|
17649
17706
|
};
|
|
17707
|
+
export declare type ConfluenceUnsubscribeCalendarInput = {
|
|
17708
|
+
calendarContext?: InputMaybe<Scalars['String']['input']>;
|
|
17709
|
+
id: Scalars['ID']['input'];
|
|
17710
|
+
viewingSpaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
17711
|
+
};
|
|
17650
17712
|
export declare type ConfluenceUnusedPluginMacro = {
|
|
17651
17713
|
__typename?: 'ConfluenceUnusedPluginMacro';
|
|
17652
17714
|
macroNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -30969,6 +31031,7 @@ export declare type GraphIntegrationAddTwgCapabilityContainerInput = {
|
|
|
30969
31031
|
export declare type GraphIntegrationAddTwgCapabilityContainerPayload = Payload & {
|
|
30970
31032
|
__typename?: 'GraphIntegrationAddTwgCapabilityContainerPayload';
|
|
30971
31033
|
errors?: Maybe<Array<MutationError>>;
|
|
31034
|
+
id: Scalars['String']['output'];
|
|
30972
31035
|
success: Scalars['Boolean']['output'];
|
|
30973
31036
|
};
|
|
30974
31037
|
export declare type GraphIntegrationConsentInput = {
|
|
@@ -30987,6 +31050,7 @@ export declare type GraphIntegrationCreateDataConnectorConnectionInput = {
|
|
|
30987
31050
|
connectorProviderKey: Scalars['String']['input'];
|
|
30988
31051
|
connectorProviderPayload: Scalars['JSON']['input'];
|
|
30989
31052
|
consent: GraphIntegrationConsentInput;
|
|
31053
|
+
containerId: Scalars['String']['input'];
|
|
30990
31054
|
contextAri: Scalars['ID']['input'];
|
|
30991
31055
|
productAri: Scalars['ID']['input'];
|
|
30992
31056
|
};
|
|
@@ -31202,7 +31266,7 @@ export declare type GraphIntegrationMcpTool = {
|
|
|
31202
31266
|
};
|
|
31203
31267
|
export declare type GraphIntegrationRemoveTwgCapabilityContainerInput = {
|
|
31204
31268
|
contextAri: Scalars['ID']['input'];
|
|
31205
|
-
|
|
31269
|
+
id: Scalars['String']['input'];
|
|
31206
31270
|
};
|
|
31207
31271
|
export declare type GraphIntegrationRemoveTwgCapabilityContainerPayload = Payload & {
|
|
31208
31272
|
__typename?: 'GraphIntegrationRemoveTwgCapabilityContainerPayload';
|
|
@@ -31220,27 +31284,38 @@ export declare type GraphIntegrationTwgCapabilityContainer = {
|
|
|
31220
31284
|
dataConnectors: Array<GraphIntegrationDataConnector>;
|
|
31221
31285
|
description: Scalars['String']['output'];
|
|
31222
31286
|
icon: Scalars['String']['output'];
|
|
31287
|
+
id: Scalars['String']['output'];
|
|
31223
31288
|
name: Scalars['String']['output'];
|
|
31224
31289
|
productAri: Scalars['ID']['output'];
|
|
31225
31290
|
};
|
|
31226
|
-
export declare type
|
|
31227
|
-
__typename?: '
|
|
31291
|
+
export declare type GraphIntegrationTwgCapabilityContainerConnection = {
|
|
31292
|
+
__typename?: 'GraphIntegrationTwgCapabilityContainerConnection';
|
|
31293
|
+
edges: Array<GraphIntegrationTwgCapabilityContainerEdge>;
|
|
31294
|
+
nodes: Array<GraphIntegrationTwgCapabilityContainer>;
|
|
31295
|
+
pageInfo: PageInfo;
|
|
31296
|
+
};
|
|
31297
|
+
export declare type GraphIntegrationTwgCapabilityContainerEdge = {
|
|
31298
|
+
__typename?: 'GraphIntegrationTwgCapabilityContainerEdge';
|
|
31299
|
+
cursor: Scalars['String']['output'];
|
|
31300
|
+
node: GraphIntegrationTwgCapabilityContainer;
|
|
31301
|
+
};
|
|
31302
|
+
export declare type GraphIntegrationTwgCapabilityContainerMeta = {
|
|
31303
|
+
__typename?: 'GraphIntegrationTwgCapabilityContainerMeta';
|
|
31228
31304
|
dataConnectors: Array<GraphIntegrationDataConnector>;
|
|
31229
31305
|
icon: Scalars['String']['output'];
|
|
31230
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
31231
31306
|
name: Scalars['String']['output'];
|
|
31232
31307
|
productAri: Scalars['ID']['output'];
|
|
31233
31308
|
};
|
|
31234
|
-
export declare type
|
|
31235
|
-
__typename?: '
|
|
31236
|
-
edges: Array<
|
|
31237
|
-
nodes: Array<
|
|
31309
|
+
export declare type GraphIntegrationTwgCapabilityContainerMetaConnection = {
|
|
31310
|
+
__typename?: 'GraphIntegrationTwgCapabilityContainerMetaConnection';
|
|
31311
|
+
edges: Array<GraphIntegrationTwgCapabilityContainerMetaEdge>;
|
|
31312
|
+
nodes: Array<GraphIntegrationTwgCapabilityContainerMeta>;
|
|
31238
31313
|
pageInfo: PageInfo;
|
|
31239
31314
|
};
|
|
31240
|
-
export declare type
|
|
31241
|
-
__typename?: '
|
|
31315
|
+
export declare type GraphIntegrationTwgCapabilityContainerMetaEdge = {
|
|
31316
|
+
__typename?: 'GraphIntegrationTwgCapabilityContainerMetaEdge';
|
|
31242
31317
|
cursor: Scalars['String']['output'];
|
|
31243
|
-
node:
|
|
31318
|
+
node: GraphIntegrationTwgCapabilityContainerMeta;
|
|
31244
31319
|
};
|
|
31245
31320
|
export declare type GraphIntegrationUpdateConnectionPayload = Payload & {
|
|
31246
31321
|
__typename?: 'GraphIntegrationUpdateConnectionPayload';
|
|
@@ -60516,9 +60591,16 @@ export declare type JiraAddAttachmentsPayload = Payload & {
|
|
|
60516
60591
|
success: Scalars['Boolean']['output'];
|
|
60517
60592
|
};
|
|
60518
60593
|
export declare type JiraAddCommentInput = {
|
|
60594
|
+
authorCanSeeRequest?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60519
60595
|
content: JiraAdfInput;
|
|
60596
|
+
eventOccurredAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
60597
|
+
isThirdPartySyncOn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60520
60598
|
issueId: Scalars['ID']['input'];
|
|
60599
|
+
jsdIncidentActivityViewHidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60600
|
+
permissionLevel?: InputMaybe<JiraPermissionLevelInput>;
|
|
60601
|
+
thirdPartyLink?: InputMaybe<Scalars['URL']['input']>;
|
|
60521
60602
|
threadParentId?: InputMaybe<Scalars['ID']['input']>;
|
|
60603
|
+
visibility?: InputMaybe<JiraServiceManagementCommentVisibility>;
|
|
60522
60604
|
};
|
|
60523
60605
|
export declare type JiraAddCommentPayload = {
|
|
60524
60606
|
__typename?: 'JiraAddCommentPayload';
|
|
@@ -64196,6 +64278,7 @@ export declare type JiraCustomFieldType = {
|
|
|
64196
64278
|
description?: Maybe<Scalars['String']['output']>;
|
|
64197
64279
|
hasCascadingOptions?: Maybe<Scalars['Boolean']['output']>;
|
|
64198
64280
|
hasOptions?: Maybe<Scalars['Boolean']['output']>;
|
|
64281
|
+
installedByAppName?: Maybe<Scalars['String']['output']>;
|
|
64199
64282
|
isForge?: Maybe<Scalars['Boolean']['output']>;
|
|
64200
64283
|
isManaged?: Maybe<Scalars['Boolean']['output']>;
|
|
64201
64284
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -72172,6 +72255,10 @@ export declare type JiraPermissionLevel = {
|
|
|
72172
72255
|
group?: Maybe<JiraGroup>;
|
|
72173
72256
|
role?: Maybe<JiraRole>;
|
|
72174
72257
|
};
|
|
72258
|
+
export declare type JiraPermissionLevelInput = {
|
|
72259
|
+
group?: InputMaybe<JiraGroupInput>;
|
|
72260
|
+
role?: InputMaybe<JiraRoleInput>;
|
|
72261
|
+
};
|
|
72175
72262
|
export declare type JiraPermissionMessageExtension = {
|
|
72176
72263
|
__typename?: 'JiraPermissionMessageExtension';
|
|
72177
72264
|
text: Scalars['String']['output'];
|
|
@@ -75717,6 +75804,9 @@ export declare type JiraRoleEdge = {
|
|
|
75717
75804
|
cursor: Scalars['String']['output'];
|
|
75718
75805
|
node?: Maybe<JiraRole>;
|
|
75719
75806
|
};
|
|
75807
|
+
export declare type JiraRoleInput = {
|
|
75808
|
+
roleId?: InputMaybe<Scalars['ID']['input']>;
|
|
75809
|
+
};
|
|
75720
75810
|
export declare type JiraScenario = Node & {
|
|
75721
75811
|
__typename?: 'JiraScenario';
|
|
75722
75812
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -78848,9 +78938,11 @@ export declare type JiraUpdateColorFieldInput = {
|
|
|
78848
78938
|
};
|
|
78849
78939
|
export declare type JiraUpdateCommentInput = {
|
|
78850
78940
|
content: JiraAdfInput;
|
|
78941
|
+
eventOccurredAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
78851
78942
|
id: Scalars['ID']['input'];
|
|
78852
78943
|
issueId: Scalars['ID']['input'];
|
|
78853
|
-
|
|
78944
|
+
jsdIncidentActivityViewHidden?: InputMaybe<Scalars['Boolean']['input']>;
|
|
78945
|
+
permissionLevel?: InputMaybe<JiraPermissionLevelInput>;
|
|
78854
78946
|
};
|
|
78855
78947
|
export declare type JiraUpdateCommentPayload = {
|
|
78856
78948
|
__typename?: 'JiraUpdateCommentPayload';
|
|
@@ -88222,7 +88314,7 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
88222
88314
|
updateChangeProposalName?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
88223
88315
|
updateChangeProposalOwner?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
88224
88316
|
updateChangeProposalRankInView?: Maybe<MercuryUpdateChangeProposalRankInViewPayload>;
|
|
88225
|
-
|
|
88317
|
+
updateChangeProposalsViewName?: Maybe<MercuryUpdateChangeProposalsViewNamePayload>;
|
|
88226
88318
|
updateChangeProposalsViewSettings?: Maybe<MercuryUpdateChangeProposalsViewSettingsPayload>;
|
|
88227
88319
|
updateMoveFundsChange: MercuryUpdateChangePayload;
|
|
88228
88320
|
updateMovePositionsChange: MercuryUpdateChangePayload;
|
|
@@ -88313,8 +88405,8 @@ export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalOwnerAr
|
|
|
88313
88405
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalRankInViewArgs = {
|
|
88314
88406
|
input: MercuryUpdateChangeProposalRankInViewInput;
|
|
88315
88407
|
};
|
|
88316
|
-
export declare type
|
|
88317
|
-
input:
|
|
88408
|
+
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalsViewNameArgs = {
|
|
88409
|
+
input: MercuryUpdateChangeProposalsViewNameInput;
|
|
88318
88410
|
};
|
|
88319
88411
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalsViewSettingsArgs = {
|
|
88320
88412
|
input: MercuryUpdateChangeProposalsViewSettingsInput;
|
|
@@ -88608,13 +88700,12 @@ export declare type MercuryUpdateChangeProposalRankInViewPayload = Payload & {
|
|
|
88608
88700
|
errors?: Maybe<Array<MutationError>>;
|
|
88609
88701
|
success: Scalars['Boolean']['output'];
|
|
88610
88702
|
};
|
|
88611
|
-
export declare type
|
|
88703
|
+
export declare type MercuryUpdateChangeProposalsViewNameInput = {
|
|
88612
88704
|
id: Scalars['ID']['input'];
|
|
88613
|
-
name
|
|
88614
|
-
settings?: InputMaybe<Array<InputMaybe<MercuryViewSettingInput>>>;
|
|
88705
|
+
name: Scalars['String']['input'];
|
|
88615
88706
|
};
|
|
88616
|
-
export declare type
|
|
88617
|
-
__typename?: '
|
|
88707
|
+
export declare type MercuryUpdateChangeProposalsViewNamePayload = Payload & {
|
|
88708
|
+
__typename?: 'MercuryUpdateChangeProposalsViewNamePayload';
|
|
88618
88709
|
changeProposalsView?: Maybe<MercuryChangeProposalsView>;
|
|
88619
88710
|
errors?: Maybe<Array<MutationError>>;
|
|
88620
88711
|
success: Scalars['Boolean']['output'];
|
|
@@ -89099,6 +89190,7 @@ export declare type Mutation = {
|
|
|
89099
89190
|
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
89100
89191
|
assetsDM_configureDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
89101
89192
|
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
89193
|
+
assetsDM_createObjectsListExportRequest?: Maybe<AssetsDmObjectsListExportRequestCreateResponse>;
|
|
89102
89194
|
assetsDM_createSavedSearch?: Maybe<AssetsDmSavedSearchesCreateResponse>;
|
|
89103
89195
|
assetsDM_dataSource?: Maybe<AssetsDmDataSourceResponse>;
|
|
89104
89196
|
assetsDM_dataSourceCleansingRulesConfigure?: Maybe<AssetsDmDataSourceCleansingRulesConfigureResponse>;
|
|
@@ -89116,6 +89208,7 @@ export declare type Mutation = {
|
|
|
89116
89208
|
avp_copyChart?: Maybe<AvpCopyChartPayload>;
|
|
89117
89209
|
avp_copyDashboardRow?: Maybe<AvpCopyDashboardRowPayload>;
|
|
89118
89210
|
avp_createChart?: Maybe<AvpCreateChartPayload>;
|
|
89211
|
+
avp_createDashboard?: Maybe<AvpCreateDashboardPayload>;
|
|
89119
89212
|
avp_deleteChart?: Maybe<AvpDeleteChartPayload>;
|
|
89120
89213
|
avp_moveCanvasElement?: Maybe<AvpMoveCanvasElementPayload>;
|
|
89121
89214
|
avp_moveCanvasElementToNewRow?: Maybe<AvpMoveCanvasElementToNewRowPayload>;
|
|
@@ -89127,6 +89220,7 @@ export declare type Mutation = {
|
|
|
89127
89220
|
avp_updateDashboard?: Maybe<AvpUpdateDashboardPayload>;
|
|
89128
89221
|
avp_updateDashboardRowHeight?: Maybe<AvpUpdateDashboardRowHeightPayload>;
|
|
89129
89222
|
avp_updateDashboardRowNumElements?: Maybe<AvpUpdateDashboardRowNumElementsPayload>;
|
|
89223
|
+
avp_updateDashboardStatus?: Maybe<AvpUpdateDashboardStatusPayload>;
|
|
89130
89224
|
boardCardMove?: Maybe<MoveCardOutput>;
|
|
89131
89225
|
bulkDeleteContentDataClassificationLevel?: Maybe<BulkDeleteContentDataClassificationLevelPayload>;
|
|
89132
89226
|
bulkRemoveRoleAssignmentFromSpaces?: Maybe<BulkRemoveRoleAssignmentFromSpacesPayload>;
|
|
@@ -89164,6 +89258,7 @@ export declare type Mutation = {
|
|
|
89164
89258
|
confluence_createQuestion?: Maybe<ConfluenceCreateQuestionPayload>;
|
|
89165
89259
|
confluence_createTopic?: Maybe<ConfluenceCreateTopicPayload>;
|
|
89166
89260
|
confluence_deleteAnswer?: Maybe<ConfluenceDeleteAnswerPayload>;
|
|
89261
|
+
confluence_deleteCalendar?: Maybe<ConfluenceDeleteCalendarPayload>;
|
|
89167
89262
|
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
89168
89263
|
confluence_deleteCustomRole?: Maybe<ConfluenceDeleteCustomRolePayload>;
|
|
89169
89264
|
confluence_deleteQuestion?: Maybe<ConfluenceDeleteQuestionPayload>;
|
|
@@ -89189,8 +89284,10 @@ export declare type Mutation = {
|
|
|
89189
89284
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
89190
89285
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
89191
89286
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
89287
|
+
confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
|
|
89192
89288
|
confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
|
|
89193
89289
|
confluence_unschedulePublish?: Maybe<ConfluenceUnschedulePublishPayload>;
|
|
89290
|
+
confluence_unsubscribeCalendar?: Maybe<ConfluenceUnSubscribeCalendarPayload>;
|
|
89194
89291
|
confluence_unwatchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
89195
89292
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
89196
89293
|
confluence_updateAnswer?: Maybe<ConfluenceUpdateAnswerPayload>;
|
|
@@ -89923,6 +90020,13 @@ export declare type MutationAssetsDm_CreateObjectTagArgs = {
|
|
|
89923
90020
|
input: AssetsDmObjectTagCreateInput;
|
|
89924
90021
|
workspaceId: Scalars['ID']['input'];
|
|
89925
90022
|
};
|
|
90023
|
+
export declare type MutationAssetsDm_CreateObjectsListExportRequestArgs = {
|
|
90024
|
+
cloudId: Scalars['ID']['input'];
|
|
90025
|
+
name: Scalars['String']['input'];
|
|
90026
|
+
objectId: Scalars['ID']['input'];
|
|
90027
|
+
searchInput: AssetsDmSavedSearchInput;
|
|
90028
|
+
workspaceId: Scalars['ID']['input'];
|
|
90029
|
+
};
|
|
89926
90030
|
export declare type MutationAssetsDm_CreateSavedSearchArgs = {
|
|
89927
90031
|
cloudId: Scalars['ID']['input'];
|
|
89928
90032
|
isExportToAsset?: Scalars['Boolean']['input'];
|
|
@@ -90000,6 +90104,9 @@ export declare type MutationAvp_CopyDashboardRowArgs = {
|
|
|
90000
90104
|
export declare type MutationAvp_CreateChartArgs = {
|
|
90001
90105
|
input: AvpCreateChartInput;
|
|
90002
90106
|
};
|
|
90107
|
+
export declare type MutationAvp_CreateDashboardArgs = {
|
|
90108
|
+
input: AvpCreateDashboardInput;
|
|
90109
|
+
};
|
|
90003
90110
|
export declare type MutationAvp_DeleteChartArgs = {
|
|
90004
90111
|
input: AvpDeleteChartInput;
|
|
90005
90112
|
};
|
|
@@ -90033,6 +90140,9 @@ export declare type MutationAvp_UpdateDashboardRowHeightArgs = {
|
|
|
90033
90140
|
export declare type MutationAvp_UpdateDashboardRowNumElementsArgs = {
|
|
90034
90141
|
input: AvpUpdateDashboardRowNumElementsInput;
|
|
90035
90142
|
};
|
|
90143
|
+
export declare type MutationAvp_UpdateDashboardStatusArgs = {
|
|
90144
|
+
input: AvpUpdateDashboardStatusInput;
|
|
90145
|
+
};
|
|
90036
90146
|
export declare type MutationBoardCardMoveArgs = {
|
|
90037
90147
|
input?: InputMaybe<BoardCardMoveInput>;
|
|
90038
90148
|
};
|
|
@@ -90158,6 +90268,10 @@ export declare type MutationConfluence_DeleteAnswerArgs = {
|
|
|
90158
90268
|
cloudId: Scalars['ID']['input'];
|
|
90159
90269
|
input: ConfluenceDeleteAnswerInput;
|
|
90160
90270
|
};
|
|
90271
|
+
export declare type MutationConfluence_DeleteCalendarArgs = {
|
|
90272
|
+
cloudId: Scalars['ID']['input'];
|
|
90273
|
+
input: ConfluenceDeleteCalendarInput;
|
|
90274
|
+
};
|
|
90161
90275
|
export declare type MutationConfluence_DeleteCalendarCustomEventTypeArgs = {
|
|
90162
90276
|
cloudId: Scalars['ID']['input'];
|
|
90163
90277
|
input: ConfluenceDeleteCalendarCustomEventTypeInput;
|
|
@@ -90257,6 +90371,10 @@ export declare type MutationConfluence_SetSubCalendarReminderArgs = {
|
|
|
90257
90371
|
cloudId: Scalars['ID']['input'];
|
|
90258
90372
|
input: ConfluenceSetSubCalendarReminderInput;
|
|
90259
90373
|
};
|
|
90374
|
+
export declare type MutationConfluence_SubscribeCalendarsArgs = {
|
|
90375
|
+
cloudId: Scalars['ID']['input'];
|
|
90376
|
+
input: ConfluenceCalendarSubscribeInput;
|
|
90377
|
+
};
|
|
90260
90378
|
export declare type MutationConfluence_UnmarkCommentAsDanglingArgs = {
|
|
90261
90379
|
cloudId: Scalars['ID']['input'];
|
|
90262
90380
|
input: ConfluenceUnmarkCommentAsDanglingInput;
|
|
@@ -90265,6 +90383,10 @@ export declare type MutationConfluence_UnschedulePublishArgs = {
|
|
|
90265
90383
|
cloudId: Scalars['ID']['input'];
|
|
90266
90384
|
input: ConfluenceUnschedulePublishInput;
|
|
90267
90385
|
};
|
|
90386
|
+
export declare type MutationConfluence_UnsubscribeCalendarArgs = {
|
|
90387
|
+
cloudId: Scalars['ID']['input'];
|
|
90388
|
+
input: ConfluenceUnsubscribeCalendarInput;
|
|
90389
|
+
};
|
|
90268
90390
|
export declare type MutationConfluence_UnwatchLabelArgs = {
|
|
90269
90391
|
cloudId: Scalars['ID']['input'];
|
|
90270
90392
|
input: ConfluenceLabelWatchInput;
|
|
@@ -95289,7 +95411,7 @@ export declare type Query = {
|
|
|
95289
95411
|
goals_metricTargetsByIds?: Maybe<Array<Maybe<TownsquareMetricTarget>>>;
|
|
95290
95412
|
goals_metricValuesByIds?: Maybe<Array<Maybe<TownsquareMetricValue>>>;
|
|
95291
95413
|
goals_metricsByIds?: Maybe<Array<Maybe<TownsquareMetric>>>;
|
|
95292
|
-
graphIntegration_availableTwgCapabilityContainers?: Maybe<
|
|
95414
|
+
graphIntegration_availableTwgCapabilityContainers?: Maybe<GraphIntegrationTwgCapabilityContainerMetaConnection>;
|
|
95293
95415
|
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
95294
95416
|
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
95295
95417
|
graphIntegration_mcpAdminManagementMcpServer?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
|
|
@@ -95298,7 +95420,7 @@ export declare type Query = {
|
|
|
95298
95420
|
graphIntegration_mcpAdminManagementMcpTools?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConnection>;
|
|
95299
95421
|
graphIntegration_mcpServers?: Maybe<Array<Maybe<GraphIntegrationMcpServerNode>>>;
|
|
95300
95422
|
graphIntegration_twgCapabilityContainer?: Maybe<GraphIntegrationTwgCapabilityContainer>;
|
|
95301
|
-
graphIntegration_twgCapabilityContainersInContext?: Maybe<
|
|
95423
|
+
graphIntegration_twgCapabilityContainersInContext?: Maybe<GraphIntegrationTwgCapabilityContainerConnection>;
|
|
95302
95424
|
graphStore?: Maybe<GraphStore>;
|
|
95303
95425
|
group?: Maybe<Group>;
|
|
95304
95426
|
groupCounts?: Maybe<GraphQlGroupCountsResult>;
|
|
@@ -97545,7 +97667,7 @@ export declare type QueryGraphIntegration_McpServersArgs = {
|
|
|
97545
97667
|
};
|
|
97546
97668
|
export declare type QueryGraphIntegration_TwgCapabilityContainerArgs = {
|
|
97547
97669
|
contextAri: Scalars['ID']['input'];
|
|
97548
|
-
|
|
97670
|
+
id: Scalars['String']['input'];
|
|
97549
97671
|
};
|
|
97550
97672
|
export declare type QueryGraphIntegration_TwgCapabilityContainersInContextArgs = {
|
|
97551
97673
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -125076,7 +125198,7 @@ export declare type TownsquareCreateTagPayload = {
|
|
|
125076
125198
|
success: Scalars['Boolean']['output'];
|
|
125077
125199
|
tag?: Maybe<TownsquareTag>;
|
|
125078
125200
|
};
|
|
125079
|
-
export declare type TownsquareDecision = TownsquareHighlight & {
|
|
125201
|
+
export declare type TownsquareDecision = Node & TownsquareHighlight & {
|
|
125080
125202
|
__typename?: 'TownsquareDecision';
|
|
125081
125203
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
125082
125204
|
creator?: Maybe<User>;
|
|
@@ -125570,7 +125692,7 @@ export declare type TownsquareIconUrIs = {
|
|
|
125570
125692
|
roundedSquare?: Maybe<TownsquareThemeUrIs>;
|
|
125571
125693
|
square?: Maybe<TownsquareThemeUrIs>;
|
|
125572
125694
|
};
|
|
125573
|
-
export declare type TownsquareLearning = TownsquareHighlight & {
|
|
125695
|
+
export declare type TownsquareLearning = Node & TownsquareHighlight & {
|
|
125574
125696
|
__typename?: 'TownsquareLearning';
|
|
125575
125697
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
125576
125698
|
creator?: Maybe<User>;
|
|
@@ -126004,6 +126126,7 @@ export declare type TownsquareProjectUpdate = Node & {
|
|
|
126004
126126
|
oldTargetDateConfidence?: Maybe<Scalars['Int']['output']>;
|
|
126005
126127
|
project?: Maybe<TownsquareProject>;
|
|
126006
126128
|
summary?: Maybe<Scalars['String']['output']>;
|
|
126129
|
+
updateNotes?: Maybe<TownsquareUpdateNoteConnection>;
|
|
126007
126130
|
updateType?: Maybe<TownsquareUpdateType>;
|
|
126008
126131
|
url?: Maybe<Scalars['String']['output']>;
|
|
126009
126132
|
uuid?: Maybe<Scalars['UUID']['output']>;
|
|
@@ -126012,6 +126135,10 @@ export declare type TownsquareProjectUpdateCommentsArgs = {
|
|
|
126012
126135
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
126013
126136
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126014
126137
|
};
|
|
126138
|
+
export declare type TownsquareProjectUpdateUpdateNotesArgs = {
|
|
126139
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
126140
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126141
|
+
};
|
|
126015
126142
|
export declare type TownsquareProjectUpdateConnection = {
|
|
126016
126143
|
__typename?: 'TownsquareProjectUpdateConnection';
|
|
126017
126144
|
count: Scalars['Int']['output'];
|
|
@@ -126395,7 +126522,7 @@ export declare type TownsquareRemoveTagsPayload = {
|
|
|
126395
126522
|
success: Scalars['Boolean']['output'];
|
|
126396
126523
|
tagIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
126397
126524
|
};
|
|
126398
|
-
export declare type TownsquareRisk = TownsquareHighlight & {
|
|
126525
|
+
export declare type TownsquareRisk = Node & TownsquareHighlight & {
|
|
126399
126526
|
__typename?: 'TownsquareRisk';
|
|
126400
126527
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
126401
126528
|
creator?: Maybe<User>;
|
|
@@ -128024,6 +128151,7 @@ export declare type TrelloCreateApplicationInput = {
|
|
|
128024
128151
|
iframeUrl?: InputMaybe<Scalars['URL']['input']>;
|
|
128025
128152
|
locale?: InputMaybe<Scalars['String']['input']>;
|
|
128026
128153
|
name: Scalars['String']['input'];
|
|
128154
|
+
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
128027
128155
|
supportContact: Scalars['String']['input'];
|
|
128028
128156
|
workspaceId: Scalars['ID']['input'];
|
|
128029
128157
|
};
|