@forge/cli-shared 8.8.2-next.4-experimental-4cf7fd3 → 8.9.0-next.10
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 +34 -7
- package/out/graphql/graphql-types.d.ts +1187 -80
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +150 -40
- package/out/tunnel/docker-compose-lifecycle.d.ts +3 -0
- package/out/tunnel/docker-compose-lifecycle.d.ts.map +1 -1
- package/out/tunnel/docker-compose-lifecycle.js +28 -6
- package/out/ui/command-line-ui.d.ts +10 -1
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +59 -2
- package/out/ui/text.d.ts +5 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +6 -2
- package/package.json +2 -2
|
@@ -809,6 +809,15 @@ export declare type AvpUpdateDashboardPayload = Payload & {
|
|
|
809
809
|
errors?: Maybe<Array<MutationError>>;
|
|
810
810
|
success: Scalars['Boolean']['output'];
|
|
811
811
|
};
|
|
812
|
+
export declare type AvpUpdateDashboardResourcePermissionInput = {
|
|
813
|
+
dashboardId: Scalars['ID']['input'];
|
|
814
|
+
permissionType: AvpDashboardPermissionType;
|
|
815
|
+
};
|
|
816
|
+
export declare type AvpUpdateDashboardResourcePermissionPayload = Payload & {
|
|
817
|
+
__typename?: 'AVPUpdateDashboardResourcePermissionPayload';
|
|
818
|
+
errors?: Maybe<Array<MutationError>>;
|
|
819
|
+
success: Scalars['Boolean']['output'];
|
|
820
|
+
};
|
|
812
821
|
export declare type AvpUpdateDashboardRowHeightInput = {
|
|
813
822
|
dashboardAri: Scalars['ID']['input'];
|
|
814
823
|
height: AvpCanvasRowHeight;
|
|
@@ -1013,6 +1022,7 @@ export declare type ActionsActionableAppEdge = {
|
|
|
1013
1022
|
node?: Maybe<ActionsActionableApp>;
|
|
1014
1023
|
};
|
|
1015
1024
|
export declare type ActionsActionableAppsFilter = {
|
|
1025
|
+
byActionAri?: InputMaybe<Scalars['String']['input']>;
|
|
1016
1026
|
byActionId?: InputMaybe<Scalars['String']['input']>;
|
|
1017
1027
|
byActionType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1018
1028
|
byActionVerb?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -1059,6 +1069,7 @@ export declare type ActionsDescription = {
|
|
|
1059
1069
|
default: Scalars['String']['output'];
|
|
1060
1070
|
};
|
|
1061
1071
|
export declare type ActionsExecuteActionFilter = {
|
|
1072
|
+
actionAri?: InputMaybe<Scalars['String']['input']>;
|
|
1062
1073
|
actionId?: InputMaybe<Scalars['String']['input']>;
|
|
1063
1074
|
authType?: InputMaybe<Array<InputMaybe<ActionsAuthType>>>;
|
|
1064
1075
|
extensionAri?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1552,7 +1563,6 @@ export declare enum AdminAnnouncementBannerSettingsByCriteriaOrder {
|
|
|
1552
1563
|
export declare type AdminAppFoundryManifest = {
|
|
1553
1564
|
__typename?: 'AdminAppFoundryManifest';
|
|
1554
1565
|
appId: Scalars['String']['output'];
|
|
1555
|
-
modules: Array<AdminAppModule>;
|
|
1556
1566
|
version: Scalars['String']['output'];
|
|
1557
1567
|
};
|
|
1558
1568
|
export declare type AdminAppManifest = {
|
|
@@ -1561,8 +1571,20 @@ export declare type AdminAppManifest = {
|
|
|
1561
1571
|
version: Scalars['String']['output'];
|
|
1562
1572
|
};
|
|
1563
1573
|
export declare type AdminAppModule = {
|
|
1574
|
+
__typename?: 'AdminAppModule';
|
|
1575
|
+
configuration: Scalars['JSON']['output'];
|
|
1564
1576
|
key: Scalars['String']['output'];
|
|
1565
|
-
|
|
1577
|
+
manifest: AdminAppFoundryManifest;
|
|
1578
|
+
};
|
|
1579
|
+
export declare type AdminAppModuleConnection = {
|
|
1580
|
+
__typename?: 'AdminAppModuleConnection';
|
|
1581
|
+
edges?: Maybe<Array<AdminAppModuleEdge>>;
|
|
1582
|
+
pageInfo: PageInfo;
|
|
1583
|
+
};
|
|
1584
|
+
export declare type AdminAppModuleEdge = {
|
|
1585
|
+
__typename?: 'AdminAppModuleEdge';
|
|
1586
|
+
cursor: Scalars['String']['output'];
|
|
1587
|
+
node: AdminAppModule;
|
|
1566
1588
|
};
|
|
1567
1589
|
export declare type AdminApplicationErrorExtension = AdminErrorExtension & MutationErrorExtension & QueryErrorExtension & {
|
|
1568
1590
|
__typename?: 'AdminApplicationErrorExtension';
|
|
@@ -1758,11 +1780,6 @@ export declare type AdminFreezeWindowsFeature = {
|
|
|
1758
1780
|
__typename?: 'AdminFreezeWindowsFeature';
|
|
1759
1781
|
isEntitled?: Maybe<Scalars['Boolean']['output']>;
|
|
1760
1782
|
};
|
|
1761
|
-
export declare type AdminGenericAppModule = AdminAppModule & {
|
|
1762
|
-
__typename?: 'AdminGenericAppModule';
|
|
1763
|
-
key: Scalars['String']['output'];
|
|
1764
|
-
typeName: Scalars['String']['output'];
|
|
1765
|
-
};
|
|
1766
1783
|
export declare type AdminGroup = {
|
|
1767
1784
|
__typename?: 'AdminGroup';
|
|
1768
1785
|
counts?: Maybe<AdminGroupCounts>;
|
|
@@ -4723,6 +4740,21 @@ export declare type AquaLiveChatSubscriptionResponse = {
|
|
|
4723
4740
|
__typename?: 'AquaLiveChatSubscriptionResponse';
|
|
4724
4741
|
result?: Maybe<Scalars['String']['output']>;
|
|
4725
4742
|
};
|
|
4743
|
+
export declare type AquaMessage = {
|
|
4744
|
+
__typename?: 'AquaMessage';
|
|
4745
|
+
content: Scalars['String']['output'];
|
|
4746
|
+
conversationId: Scalars['String']['output'];
|
|
4747
|
+
id: Scalars['String']['output'];
|
|
4748
|
+
messageType: AquaMessageType;
|
|
4749
|
+
senderId: Scalars['String']['output'];
|
|
4750
|
+
sentAt: Scalars['String']['output'];
|
|
4751
|
+
};
|
|
4752
|
+
export declare enum AquaMessageType {
|
|
4753
|
+
File = "FILE",
|
|
4754
|
+
Image = "IMAGE",
|
|
4755
|
+
System = "SYSTEM",
|
|
4756
|
+
Text = "TEXT"
|
|
4757
|
+
}
|
|
4726
4758
|
export declare type AquaNotificationDetails = {
|
|
4727
4759
|
__typename?: 'AquaNotificationDetails';
|
|
4728
4760
|
actionTaken?: Maybe<Scalars['String']['output']>;
|
|
@@ -4789,6 +4821,11 @@ export declare type AquaProjectContext = {
|
|
|
4789
4821
|
__typename?: 'AquaProjectContext';
|
|
4790
4822
|
id?: Maybe<Scalars['Long']['output']>;
|
|
4791
4823
|
};
|
|
4824
|
+
export declare type AquaSendMessageInput = {
|
|
4825
|
+
content: Scalars['String']['input'];
|
|
4826
|
+
messageType?: InputMaybe<AquaMessageType>;
|
|
4827
|
+
senderId: Scalars['String']['input'];
|
|
4828
|
+
};
|
|
4792
4829
|
export declare type ArchiveFeature = {
|
|
4793
4830
|
__typename?: 'ArchiveFeature';
|
|
4794
4831
|
isEntitled: Scalars['Boolean']['output'];
|
|
@@ -10719,12 +10756,14 @@ export declare type CompassComponent = Node & {
|
|
|
10719
10756
|
eventSources?: Maybe<Array<EventSource>>;
|
|
10720
10757
|
events?: Maybe<CompassEventsQueryResult>;
|
|
10721
10758
|
externalAliases?: Maybe<Array<CompassExternalAlias>>;
|
|
10759
|
+
fieldSuggestions?: Maybe<ComponentFieldSuggestions>;
|
|
10722
10760
|
fields?: Maybe<Array<CompassField>>;
|
|
10723
10761
|
id: Scalars['ID']['output'];
|
|
10724
10762
|
labels?: Maybe<Array<CompassComponentLabel>>;
|
|
10725
10763
|
links?: Maybe<Array<CompassLink>>;
|
|
10726
10764
|
metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
|
|
10727
10765
|
name: Scalars['String']['output'];
|
|
10766
|
+
onCallSchedules?: Maybe<CompassComponentOnCallScheduleConnection>;
|
|
10728
10767
|
ownerId?: Maybe<Scalars['ID']['output']>;
|
|
10729
10768
|
ownerTeam?: Maybe<TeamV2>;
|
|
10730
10769
|
packageDependencies?: Maybe<CompassComponentPackageDependencyConnection>;
|
|
@@ -10756,6 +10795,10 @@ export declare type CompassComponentEventsArgs = {
|
|
|
10756
10795
|
export declare type CompassComponentMetricSourcesArgs = {
|
|
10757
10796
|
query?: InputMaybe<CompassComponentMetricSourcesQuery>;
|
|
10758
10797
|
};
|
|
10798
|
+
export declare type CompassComponentOnCallSchedulesArgs = {
|
|
10799
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
10800
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
10801
|
+
};
|
|
10759
10802
|
export declare type CompassComponentPackageDependenciesArgs = {
|
|
10760
10803
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
10761
10804
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -11004,6 +11047,47 @@ export declare type CompassComponentMetricSourcesQuery = {
|
|
|
11004
11047
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
11005
11048
|
};
|
|
11006
11049
|
export declare type CompassComponentMetricSourcesQueryResult = CompassComponentMetricSourcesConnection | QueryError;
|
|
11050
|
+
export declare type CompassComponentOnCallResponder = {
|
|
11051
|
+
__typename?: 'CompassComponentOnCallResponder';
|
|
11052
|
+
atlassianUserId?: Maybe<Scalars['String']['output']>;
|
|
11053
|
+
user?: Maybe<User>;
|
|
11054
|
+
};
|
|
11055
|
+
export declare type CompassComponentOnCallResponderConnection = {
|
|
11056
|
+
__typename?: 'CompassComponentOnCallResponderConnection';
|
|
11057
|
+
edges?: Maybe<Array<CompassComponentOnCallResponderEdge>>;
|
|
11058
|
+
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
11059
|
+
nodes?: Maybe<Array<CompassComponentOnCallResponder>>;
|
|
11060
|
+
pageInfo?: Maybe<PageInfo>;
|
|
11061
|
+
};
|
|
11062
|
+
export declare type CompassComponentOnCallResponderEdge = {
|
|
11063
|
+
__typename?: 'CompassComponentOnCallResponderEdge';
|
|
11064
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
11065
|
+
node?: Maybe<CompassComponentOnCallResponder>;
|
|
11066
|
+
};
|
|
11067
|
+
export declare type CompassComponentOnCallSchedule = {
|
|
11068
|
+
__typename?: 'CompassComponentOnCallSchedule';
|
|
11069
|
+
currentResponders?: Maybe<CompassComponentOnCallResponderConnection>;
|
|
11070
|
+
scheduleId?: Maybe<Scalars['ID']['output']>;
|
|
11071
|
+
scheduleLink?: Maybe<Scalars['String']['output']>;
|
|
11072
|
+
scheduleName?: Maybe<Scalars['String']['output']>;
|
|
11073
|
+
scheduleTimezoneName?: Maybe<Scalars['String']['output']>;
|
|
11074
|
+
};
|
|
11075
|
+
export declare type CompassComponentOnCallScheduleCurrentRespondersArgs = {
|
|
11076
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
11077
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
11078
|
+
};
|
|
11079
|
+
export declare type CompassComponentOnCallScheduleConnection = {
|
|
11080
|
+
__typename?: 'CompassComponentOnCallScheduleConnection';
|
|
11081
|
+
edges?: Maybe<Array<CompassComponentOnCallScheduleEdge>>;
|
|
11082
|
+
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
11083
|
+
nodes?: Maybe<Array<CompassComponentOnCallSchedule>>;
|
|
11084
|
+
pageInfo?: Maybe<PageInfo>;
|
|
11085
|
+
};
|
|
11086
|
+
export declare type CompassComponentOnCallScheduleEdge = {
|
|
11087
|
+
__typename?: 'CompassComponentOnCallScheduleEdge';
|
|
11088
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
11089
|
+
node?: Maybe<CompassComponentOnCallSchedule>;
|
|
11090
|
+
};
|
|
11007
11091
|
export declare type CompassComponentPackageDependencyConnection = {
|
|
11008
11092
|
__typename?: 'CompassComponentPackageDependencyConnection';
|
|
11009
11093
|
edges?: Maybe<Array<CompassComponentPackageDependencyEdge>>;
|
|
@@ -12226,6 +12310,7 @@ export declare type CompassDeploymentEventEnvironmentInput = {
|
|
|
12226
12310
|
};
|
|
12227
12311
|
export declare type CompassDeploymentEventFilters = {
|
|
12228
12312
|
environments?: InputMaybe<Array<CompassDeploymentEventEnvironmentCategory>>;
|
|
12313
|
+
states?: InputMaybe<Array<CompassDeploymentEventState>>;
|
|
12229
12314
|
};
|
|
12230
12315
|
export declare type CompassDeploymentEventPipeline = {
|
|
12231
12316
|
__typename?: 'CompassDeploymentEventPipeline';
|
|
@@ -14957,6 +15042,10 @@ export declare type ComponentApiUpload = {
|
|
|
14957
15042
|
specUrl: Scalars['String']['output'];
|
|
14958
15043
|
uploadId: Scalars['ID']['output'];
|
|
14959
15044
|
};
|
|
15045
|
+
export declare type ComponentFieldSuggestions = {
|
|
15046
|
+
__typename?: 'ComponentFieldSuggestions';
|
|
15047
|
+
ownerIds: Array<Scalars['ID']['output']>;
|
|
15048
|
+
};
|
|
14960
15049
|
export declare type ComponentReferenceInput = {
|
|
14961
15050
|
ari?: InputMaybe<Scalars['ID']['input']>;
|
|
14962
15051
|
slug?: InputMaybe<ComponentSlugReferenceInput>;
|
|
@@ -15002,6 +15091,24 @@ export declare type ConfluenceAddCustomApplicationLinkPayload = Payload & {
|
|
|
15002
15091
|
errors?: Maybe<Array<MutationError>>;
|
|
15003
15092
|
success: Scalars['Boolean']['output'];
|
|
15004
15093
|
};
|
|
15094
|
+
export declare type ConfluenceAddTrackInput = {
|
|
15095
|
+
top?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15096
|
+
track: ConfluenceTrackInput;
|
|
15097
|
+
};
|
|
15098
|
+
export declare type ConfluenceAddTrackPayload = {
|
|
15099
|
+
__typename?: 'ConfluenceAddTrackPayload';
|
|
15100
|
+
errors?: Maybe<Array<ConfluenceAddTrackPayloadError>>;
|
|
15101
|
+
success: Scalars['Boolean']['output'];
|
|
15102
|
+
};
|
|
15103
|
+
export declare type ConfluenceAddTrackPayloadError = {
|
|
15104
|
+
__typename?: 'ConfluenceAddTrackPayloadError';
|
|
15105
|
+
extensions?: Maybe<ConfluenceAddTrackPayloadErrorExtension>;
|
|
15106
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
15107
|
+
};
|
|
15108
|
+
export declare type ConfluenceAddTrackPayloadErrorExtension = {
|
|
15109
|
+
__typename?: 'ConfluenceAddTrackPayloadErrorExtension';
|
|
15110
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
15111
|
+
};
|
|
15005
15112
|
export declare type ConfluenceAdminAnnouncementBanner = {
|
|
15006
15113
|
__typename?: 'ConfluenceAdminAnnouncementBanner';
|
|
15007
15114
|
appearance: Scalars['String']['output'];
|
|
@@ -17112,6 +17219,11 @@ export declare type ConfluenceLanguage = {
|
|
|
17112
17219
|
language?: Maybe<Scalars['String']['output']>;
|
|
17113
17220
|
name?: Maybe<Scalars['String']['output']>;
|
|
17114
17221
|
};
|
|
17222
|
+
export declare type ConfluenceLatestPendingRequests = {
|
|
17223
|
+
__typename?: 'ConfluenceLatestPendingRequests';
|
|
17224
|
+
latestPendingRequest?: Maybe<Array<Maybe<ConfluenceContentAccessRequest>>>;
|
|
17225
|
+
start?: Maybe<Scalars['String']['output']>;
|
|
17226
|
+
};
|
|
17115
17227
|
export declare type ConfluenceLegacyEditorReportDownloadLink = {
|
|
17116
17228
|
__typename?: 'ConfluenceLegacyEditorReportDownloadLink';
|
|
17117
17229
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -17120,6 +17232,11 @@ export declare enum ConfluenceLegacyEditorReportType {
|
|
|
17120
17232
|
Page = "PAGE",
|
|
17121
17233
|
Template = "TEMPLATE"
|
|
17122
17234
|
}
|
|
17235
|
+
export declare enum ConfluenceLength {
|
|
17236
|
+
Long = "LONG",
|
|
17237
|
+
Medium = "MEDIUM",
|
|
17238
|
+
Short = "SHORT"
|
|
17239
|
+
}
|
|
17123
17240
|
export declare type ConfluenceLike = {
|
|
17124
17241
|
__typename?: 'ConfluenceLike';
|
|
17125
17242
|
likedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -17883,6 +18000,12 @@ export declare type ConfluencePageViewerSummary = {
|
|
|
17883
18000
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
17884
18001
|
scheduledPublishSummary?: Maybe<ConfluenceScheduledPublishSummary>;
|
|
17885
18002
|
};
|
|
18003
|
+
export declare type ConfluencePaginatedTracks = {
|
|
18004
|
+
__typename?: 'ConfluencePaginatedTracks';
|
|
18005
|
+
edges: Array<ConfluenceTrackEdge>;
|
|
18006
|
+
nodes: Array<ConfluenceTrack>;
|
|
18007
|
+
pageInfo: ConfluencePlaylistPageInfo;
|
|
18008
|
+
};
|
|
17886
18009
|
export declare type ConfluencePatchCalendarInput = {
|
|
17887
18010
|
color?: InputMaybe<Scalars['String']['input']>;
|
|
17888
18011
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -18160,6 +18283,31 @@ export declare type ConfluencePersonWithPermissionsConnection = {
|
|
|
18160
18283
|
nodes?: Maybe<Array<Maybe<ConfluencePerson>>>;
|
|
18161
18284
|
pageInfo?: Maybe<PageInfo>;
|
|
18162
18285
|
};
|
|
18286
|
+
export declare type ConfluencePlaylist = {
|
|
18287
|
+
__typename?: 'ConfluencePlaylist';
|
|
18288
|
+
accountId: Scalars['ID']['output'];
|
|
18289
|
+
preference: ConfluencePlaylistPreference;
|
|
18290
|
+
tracks: ConfluencePaginatedTracks;
|
|
18291
|
+
user?: Maybe<Person>;
|
|
18292
|
+
};
|
|
18293
|
+
export declare type ConfluencePlaylistTracksArgs = {
|
|
18294
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
18295
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
18296
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
18297
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
18298
|
+
};
|
|
18299
|
+
export declare type ConfluencePlaylistPageInfo = {
|
|
18300
|
+
__typename?: 'ConfluencePlaylistPageInfo';
|
|
18301
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
18302
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
18303
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
18304
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
18305
|
+
};
|
|
18306
|
+
export declare type ConfluencePlaylistPreference = {
|
|
18307
|
+
__typename?: 'ConfluencePlaylistPreference';
|
|
18308
|
+
length: ConfluenceLength;
|
|
18309
|
+
tone: ConfluenceTone;
|
|
18310
|
+
};
|
|
18163
18311
|
export declare enum ConfluencePolicyEnabledStatus {
|
|
18164
18312
|
Disabled = "DISABLED",
|
|
18165
18313
|
Enabled = "ENABLED",
|
|
@@ -18518,6 +18666,20 @@ export declare type ConfluenceRedactionMetadataEdge = {
|
|
|
18518
18666
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18519
18667
|
node?: Maybe<ConfluenceRedactionMetadata>;
|
|
18520
18668
|
};
|
|
18669
|
+
export declare type ConfluenceRemoveTrackPayload = {
|
|
18670
|
+
__typename?: 'ConfluenceRemoveTrackPayload';
|
|
18671
|
+
errors?: Maybe<Array<ConfluenceRemoveTrackPayloadError>>;
|
|
18672
|
+
success: Scalars['Boolean']['output'];
|
|
18673
|
+
};
|
|
18674
|
+
export declare type ConfluenceRemoveTrackPayloadError = {
|
|
18675
|
+
__typename?: 'ConfluenceRemoveTrackPayloadError';
|
|
18676
|
+
extensions?: Maybe<ConfluenceRemoveTrackPayloadErrorExtension>;
|
|
18677
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
18678
|
+
};
|
|
18679
|
+
export declare type ConfluenceRemoveTrackPayloadErrorExtension = {
|
|
18680
|
+
__typename?: 'ConfluenceRemoveTrackPayloadErrorExtension';
|
|
18681
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
18682
|
+
};
|
|
18521
18683
|
export declare type ConfluenceRendererInlineCommentCreated = {
|
|
18522
18684
|
__typename?: 'ConfluenceRendererInlineCommentCreated';
|
|
18523
18685
|
adfBodyContent?: Maybe<Scalars['String']['output']>;
|
|
@@ -18542,6 +18704,24 @@ export declare type ConfluenceReopenInlineCommentPayload = {
|
|
|
18542
18704
|
errors?: Maybe<Array<MutationError>>;
|
|
18543
18705
|
success: Scalars['Boolean']['output'];
|
|
18544
18706
|
};
|
|
18707
|
+
export declare type ConfluenceReorderTrackInput = {
|
|
18708
|
+
referenceTrack?: InputMaybe<ConfluenceTrackInput>;
|
|
18709
|
+
targetTrack: ConfluenceTrackInput;
|
|
18710
|
+
};
|
|
18711
|
+
export declare type ConfluenceReorderTrackPayload = {
|
|
18712
|
+
__typename?: 'ConfluenceReorderTrackPayload';
|
|
18713
|
+
errors?: Maybe<Array<ConfluenceReorderTrackPayloadError>>;
|
|
18714
|
+
success: Scalars['Boolean']['output'];
|
|
18715
|
+
};
|
|
18716
|
+
export declare type ConfluenceReorderTrackPayloadError = {
|
|
18717
|
+
__typename?: 'ConfluenceReorderTrackPayloadError';
|
|
18718
|
+
extensions?: Maybe<ConfluenceReorderTrackPayloadErrorExtension>;
|
|
18719
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
18720
|
+
};
|
|
18721
|
+
export declare type ConfluenceReorderTrackPayloadErrorExtension = {
|
|
18722
|
+
__typename?: 'ConfluenceReorderTrackPayloadErrorExtension';
|
|
18723
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
18724
|
+
};
|
|
18545
18725
|
export declare type ConfluenceRepairJiraMacroAppLinksInput = {
|
|
18546
18726
|
appLinkMapping: Array<ConfluenceAppLinkMapping>;
|
|
18547
18727
|
};
|
|
@@ -19085,6 +19265,12 @@ export declare type ConfluenceThemesCurrentSpaceThemeArgs = {
|
|
|
19085
19265
|
export declare type ConfluenceThemesSpaceThemesArgs = {
|
|
19086
19266
|
spaceId: Scalars['Long']['input'];
|
|
19087
19267
|
};
|
|
19268
|
+
export declare enum ConfluenceTone {
|
|
19269
|
+
Conversational = "CONVERSATIONAL",
|
|
19270
|
+
Playful = "PLAYFUL",
|
|
19271
|
+
Professional = "PROFESSIONAL",
|
|
19272
|
+
Surprise = "SURPRISE"
|
|
19273
|
+
}
|
|
19088
19274
|
export declare type ConfluenceTopic = {
|
|
19089
19275
|
__typename?: 'ConfluenceTopic';
|
|
19090
19276
|
creator?: Maybe<Scalars['ID']['output']>;
|
|
@@ -19107,6 +19293,29 @@ export declare type ConfluenceTopicEdge = {
|
|
|
19107
19293
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
19108
19294
|
node?: Maybe<ConfluenceTopic>;
|
|
19109
19295
|
};
|
|
19296
|
+
export declare type ConfluenceTrack = {
|
|
19297
|
+
__typename?: 'ConfluenceTrack';
|
|
19298
|
+
id: Scalars['ID']['output'];
|
|
19299
|
+
mainContent?: Maybe<Content>;
|
|
19300
|
+
mainSource: Scalars['ID']['output'];
|
|
19301
|
+
supportingContent?: Maybe<Array<Maybe<Content>>>;
|
|
19302
|
+
supportingSources?: Maybe<Array<Scalars['ID']['output']>>;
|
|
19303
|
+
type: ConfluenceTrackType;
|
|
19304
|
+
};
|
|
19305
|
+
export declare type ConfluenceTrackEdge = {
|
|
19306
|
+
__typename?: 'ConfluenceTrackEdge';
|
|
19307
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
19308
|
+
node: ConfluenceTrack;
|
|
19309
|
+
};
|
|
19310
|
+
export declare type ConfluenceTrackInput = {
|
|
19311
|
+
mainSource: Scalars['ID']['input'];
|
|
19312
|
+
supportingSources?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
19313
|
+
trackType: ConfluenceTrackType;
|
|
19314
|
+
};
|
|
19315
|
+
export declare enum ConfluenceTrackType {
|
|
19316
|
+
Briefing = "BRIEFING",
|
|
19317
|
+
Narration = "NARRATION"
|
|
19318
|
+
}
|
|
19110
19319
|
export declare type ConfluenceTrashBlogPostInput = {
|
|
19111
19320
|
id: Scalars['ID']['input'];
|
|
19112
19321
|
};
|
|
@@ -22108,43 +22317,23 @@ export declare type ConvertPageToLiveEditValidationResult = {
|
|
|
22108
22317
|
isValid: Scalars['Boolean']['output'];
|
|
22109
22318
|
message?: Maybe<Scalars['String']['output']>;
|
|
22110
22319
|
};
|
|
22320
|
+
export declare enum ConvoAiActionStatus {
|
|
22321
|
+
Cancelled = "CANCELLED",
|
|
22322
|
+
Errored = "ERRORED",
|
|
22323
|
+
Finished = "FINISHED",
|
|
22324
|
+
Planned = "PLANNED",
|
|
22325
|
+
Started = "STARTED"
|
|
22326
|
+
}
|
|
22111
22327
|
export declare type ConvoAiAgentAction = {
|
|
22112
22328
|
__typename?: 'ConvoAiAgentAction';
|
|
22113
22329
|
actionId?: Maybe<Scalars['String']['output']>;
|
|
22114
22330
|
data: Scalars['JSON']['output'];
|
|
22115
22331
|
invocationId: Scalars['String']['output'];
|
|
22116
22332
|
key: Scalars['String']['output'];
|
|
22117
|
-
status
|
|
22118
|
-
};
|
|
22119
|
-
export declare type ConvoAiAgentConversationChannelDataMessage = ConvoAiAgentMessage & {
|
|
22120
|
-
__typename?: 'ConvoAiAgentConversationChannelDataMessage';
|
|
22121
|
-
actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
|
|
22122
|
-
contentSummary: Scalars['String']['output'];
|
|
22123
|
-
messageMetadata?: Maybe<Scalars['JSON']['output']>;
|
|
22124
|
-
status: ConvoAiAgentSessionStatus;
|
|
22125
|
-
timeCreated: Scalars['DateTime']['output'];
|
|
22126
|
-
};
|
|
22127
|
-
export declare type ConvoAiAgentEarlyStopMessage = ConvoAiAgentMessage & {
|
|
22128
|
-
__typename?: 'ConvoAiAgentEarlyStopMessage';
|
|
22129
|
-
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22130
|
-
status: ConvoAiAgentSessionStatus;
|
|
22131
|
-
timeCreated: Scalars['DateTime']['output'];
|
|
22132
|
-
};
|
|
22133
|
-
export declare type ConvoAiAgentErrorMessage = ConvoAiAgentMessage & {
|
|
22134
|
-
__typename?: 'ConvoAiAgentErrorMessage';
|
|
22135
|
-
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22136
|
-
status: ConvoAiAgentSessionStatus;
|
|
22137
|
-
timeCreated: Scalars['DateTime']['output'];
|
|
22138
|
-
};
|
|
22139
|
-
export declare type ConvoAiAgentFinalResponseMessage = ConvoAiAgentMessage & {
|
|
22140
|
-
__typename?: 'ConvoAiAgentFinalResponseMessage';
|
|
22141
|
-
actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
|
|
22142
|
-
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22143
|
-
status: ConvoAiAgentSessionStatus;
|
|
22144
|
-
timeCreated: Scalars['DateTime']['output'];
|
|
22333
|
+
status?: Maybe<ConvoAiActionStatus>;
|
|
22145
22334
|
};
|
|
22146
22335
|
export declare type ConvoAiAgentMessage = {
|
|
22147
|
-
|
|
22336
|
+
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22148
22337
|
timeCreated: Scalars['DateTime']['output'];
|
|
22149
22338
|
};
|
|
22150
22339
|
export declare enum ConvoAiAgentMessageType {
|
|
@@ -22161,14 +22350,7 @@ export declare enum ConvoAiAgentSessionStatus {
|
|
|
22161
22350
|
Unknown = "UNKNOWN",
|
|
22162
22351
|
Working = "WORKING"
|
|
22163
22352
|
}
|
|
22164
|
-
export declare type ConvoAiAgentSessionUpdate =
|
|
22165
|
-
export declare type ConvoAiAgentTraceMessage = ConvoAiAgentMessage & {
|
|
22166
|
-
__typename?: 'ConvoAiAgentTraceMessage';
|
|
22167
|
-
contentSummary: Scalars['String']['output'];
|
|
22168
|
-
messageTemplate: Scalars['String']['output'];
|
|
22169
|
-
status: ConvoAiAgentSessionStatus;
|
|
22170
|
-
timeCreated: Scalars['DateTime']['output'];
|
|
22171
|
-
};
|
|
22353
|
+
export declare type ConvoAiAgentSessionUpdate = ConvoAiConversationMessage | ConvoAiEmptyConversation | ConvoAiErrorMessage | ConvoAiTraceMessage;
|
|
22172
22354
|
export declare type ConvoAiAsyncAgentUpdate = {
|
|
22173
22355
|
__typename?: 'ConvoAiAsyncAgentUpdate';
|
|
22174
22356
|
actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
|
|
@@ -22187,9 +22369,24 @@ export declare type ConvoAiConfluenceSpaceRecommendation = {
|
|
|
22187
22369
|
name: Scalars['String']['output'];
|
|
22188
22370
|
spaceDetails?: Maybe<Space>;
|
|
22189
22371
|
};
|
|
22372
|
+
export declare type ConvoAiConversationMessage = ConvoAiAgentMessage & {
|
|
22373
|
+
__typename?: 'ConvoAiConversationMessage';
|
|
22374
|
+
actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
|
|
22375
|
+
authorId?: Maybe<Scalars['String']['output']>;
|
|
22376
|
+
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22377
|
+
messageId?: Maybe<Scalars['String']['output']>;
|
|
22378
|
+
messageMetadata?: Maybe<Scalars['JSON']['output']>;
|
|
22379
|
+
role: ConvoAiMessageAuthorRole;
|
|
22380
|
+
timeCreated: Scalars['DateTime']['output'];
|
|
22381
|
+
};
|
|
22190
22382
|
export declare type ConvoAiEmptyConversation = ConvoAiAgentMessage & {
|
|
22191
22383
|
__typename?: 'ConvoAiEmptyConversation';
|
|
22192
|
-
|
|
22384
|
+
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22385
|
+
timeCreated: Scalars['DateTime']['output'];
|
|
22386
|
+
};
|
|
22387
|
+
export declare type ConvoAiErrorMessage = ConvoAiAgentMessage & {
|
|
22388
|
+
__typename?: 'ConvoAiErrorMessage';
|
|
22389
|
+
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22193
22390
|
timeCreated: Scalars['DateTime']['output'];
|
|
22194
22391
|
};
|
|
22195
22392
|
export declare type ConvoAiHomeThread = {
|
|
@@ -22306,6 +22503,11 @@ export declare type ConvoAiJiraSimilarWorkItemsInput = {
|
|
|
22306
22503
|
export declare type ConvoAiJiraSimilarWorkItemsSimilarityConfig = {
|
|
22307
22504
|
minimumSimScore?: InputMaybe<Scalars['Float']['input']>;
|
|
22308
22505
|
};
|
|
22506
|
+
export declare enum ConvoAiMessageAuthorRole {
|
|
22507
|
+
Agent = "AGENT",
|
|
22508
|
+
Assistant = "ASSISTANT",
|
|
22509
|
+
Human = "HUMAN"
|
|
22510
|
+
}
|
|
22309
22511
|
export declare type ConvoAiThirdPartyRelatedLink = {
|
|
22310
22512
|
__typename?: 'ConvoAiThirdPartyRelatedLink';
|
|
22311
22513
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -22314,6 +22516,12 @@ export declare type ConvoAiThirdPartyRelatedLink = {
|
|
|
22314
22516
|
productSource?: Maybe<Scalars['String']['output']>;
|
|
22315
22517
|
url: Scalars['String']['output'];
|
|
22316
22518
|
};
|
|
22519
|
+
export declare type ConvoAiTraceMessage = ConvoAiAgentMessage & {
|
|
22520
|
+
__typename?: 'ConvoAiTraceMessage';
|
|
22521
|
+
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22522
|
+
messageTemplate: Scalars['String']['output'];
|
|
22523
|
+
timeCreated: Scalars['DateTime']['output'];
|
|
22524
|
+
};
|
|
22317
22525
|
export declare type CopyPolarisInsightsContainerInput = {
|
|
22318
22526
|
container?: InputMaybe<Scalars['ID']['input']>;
|
|
22319
22527
|
project: Scalars['ID']['input'];
|
|
@@ -26666,6 +26874,15 @@ export declare type DevConsoleAppUsageOverviewResponse = {
|
|
|
26666
26874
|
error?: Maybe<QueryError>;
|
|
26667
26875
|
resourceUsage?: Maybe<DevConsoleResourceUsageData>;
|
|
26668
26876
|
};
|
|
26877
|
+
export declare type DevConsoleAppUsageTopSitesFiltersInput = {
|
|
26878
|
+
interval: DevConsoleDateIntervalInput;
|
|
26879
|
+
resource: DevConsoleResource;
|
|
26880
|
+
};
|
|
26881
|
+
export declare type DevConsoleAppUsageTopSitesResponse = {
|
|
26882
|
+
__typename?: 'DevConsoleAppUsageTopSitesResponse';
|
|
26883
|
+
error?: Maybe<QueryError>;
|
|
26884
|
+
resourceUsage?: Maybe<Array<DevConsoleResourceUsageTopSite>>;
|
|
26885
|
+
};
|
|
26669
26886
|
export declare type DevConsoleAppsWithoutConsentResponse = {
|
|
26670
26887
|
__typename?: 'DevConsoleAppsWithoutConsentResponse';
|
|
26671
26888
|
appIds: Array<Scalars['String']['output']>;
|
|
@@ -26699,6 +26916,7 @@ export declare type DevConsoleDeveloperSpace = {
|
|
|
26699
26916
|
__typename?: 'DevConsoleDeveloperSpace';
|
|
26700
26917
|
id: Scalars['String']['output'];
|
|
26701
26918
|
name: Scalars['String']['output'];
|
|
26919
|
+
publishStatus: DevConsoleDeveloperSpacePublishStatus;
|
|
26702
26920
|
status: Scalars['String']['output'];
|
|
26703
26921
|
type: DevConsoleDeveloperSpaceType;
|
|
26704
26922
|
version: Scalars['Int']['output'];
|
|
@@ -26708,6 +26926,7 @@ export declare type DevConsoleDeveloperSpaceDetails = {
|
|
|
26708
26926
|
__typename?: 'DevConsoleDeveloperSpaceDetails';
|
|
26709
26927
|
logo?: Maybe<Scalars['String']['output']>;
|
|
26710
26928
|
name: Scalars['String']['output'];
|
|
26929
|
+
publishStatus: DevConsoleDeveloperSpacePublishStatus;
|
|
26711
26930
|
};
|
|
26712
26931
|
export declare type DevConsoleDeveloperSpaceDetailsResult = {
|
|
26713
26932
|
__typename?: 'DevConsoleDeveloperSpaceDetailsResult';
|
|
@@ -26758,6 +26977,10 @@ export declare type DevConsoleDeveloperSpacePermissions = {
|
|
|
26758
26977
|
canViewDevSpaceDetails?: Maybe<Scalars['Boolean']['output']>;
|
|
26759
26978
|
canViewDevSpaceMembers?: Maybe<Scalars['Boolean']['output']>;
|
|
26760
26979
|
};
|
|
26980
|
+
export declare enum DevConsoleDeveloperSpacePublishStatus {
|
|
26981
|
+
Private = "PRIVATE",
|
|
26982
|
+
Public = "PUBLIC"
|
|
26983
|
+
}
|
|
26761
26984
|
export declare type DevConsoleDeveloperSpaceSettingsPayload = Payload & {
|
|
26762
26985
|
__typename?: 'DevConsoleDeveloperSpaceSettingsPayload';
|
|
26763
26986
|
devSpace?: Maybe<DevConsoleDeveloperSpace>;
|
|
@@ -26781,6 +27004,11 @@ export declare enum DevConsoleGroupBy {
|
|
|
26781
27004
|
ContextAri = "CONTEXT_ARI",
|
|
26782
27005
|
EnvironmentId = "ENVIRONMENT_ID"
|
|
26783
27006
|
}
|
|
27007
|
+
export declare type DevConsoleHasConsoleAdminResponse = {
|
|
27008
|
+
__typename?: 'DevConsoleHasConsoleAdminResponse';
|
|
27009
|
+
error?: Maybe<QueryError>;
|
|
27010
|
+
result: Scalars['Boolean']['output'];
|
|
27011
|
+
};
|
|
26784
27012
|
export declare type DevConsoleMutation = {
|
|
26785
27013
|
__typename?: 'DevConsoleMutation';
|
|
26786
27014
|
acceptAppBillingConsent: DevConsoleResponsePayload;
|
|
@@ -26827,6 +27055,7 @@ export declare type DevConsoleQuery = {
|
|
|
26827
27055
|
appResourceUsage: DevConsoleAppResourceUsageResponse;
|
|
26828
27056
|
appResourceUsageDetailedView: DevConsoleAppResourceUsageDetailedViewResponse;
|
|
26829
27057
|
appUsageOverview: DevConsoleAppUsageOverviewResponse;
|
|
27058
|
+
appUsageTopSites: DevConsoleAppUsageTopSitesResponse;
|
|
26830
27059
|
getAppsWithoutConsent: DevConsoleAppsWithoutConsentResponse;
|
|
26831
27060
|
getDeveloperSpaceDetails?: Maybe<DevConsoleBulkDeveloperSpaceDetailsResponse>;
|
|
26832
27061
|
getDeveloperSpaceMembers?: Maybe<DevConsoleDeveloperSpaceMembersResponse>;
|
|
@@ -26834,6 +27063,7 @@ export declare type DevConsoleQuery = {
|
|
|
26834
27063
|
getDeveloperSpaceUserPermissions: DevConsoleDeveloperSpaceUserPermissionsResponse;
|
|
26835
27064
|
getDeveloperSpaceWithLinkingAccess?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
26836
27065
|
getDeveloperSpaceWithRoles: Array<DevConsoleDeveloperSpaceWithRole>;
|
|
27066
|
+
hasAnyConsoleAdmin?: Maybe<DevConsoleHasConsoleAdminResponse>;
|
|
26837
27067
|
tenantContexts: Array<Maybe<DevConsoleTenantContext>>;
|
|
26838
27068
|
};
|
|
26839
27069
|
export declare type DevConsoleQueryAppResourceUsageArgs = {
|
|
@@ -26849,6 +27079,10 @@ export declare type DevConsoleQueryAppUsageOverviewArgs = {
|
|
|
26849
27079
|
appId: Scalars['ID']['input'];
|
|
26850
27080
|
filters: DevConsoleAppUsageFiltersInput;
|
|
26851
27081
|
};
|
|
27082
|
+
export declare type DevConsoleQueryAppUsageTopSitesArgs = {
|
|
27083
|
+
appId: Scalars['ID']['input'];
|
|
27084
|
+
filters: DevConsoleAppUsageTopSitesFiltersInput;
|
|
27085
|
+
};
|
|
26852
27086
|
export declare type DevConsoleQueryGetAppsWithoutConsentArgs = {
|
|
26853
27087
|
developerSpaceId: Scalars['String']['input'];
|
|
26854
27088
|
};
|
|
@@ -26864,6 +27098,9 @@ export declare type DevConsoleQueryGetDeveloperSpaceTransactionAccountArgs = {
|
|
|
26864
27098
|
export declare type DevConsoleQueryGetDeveloperSpaceUserPermissionsArgs = {
|
|
26865
27099
|
developerSpaceId: Scalars['String']['input'];
|
|
26866
27100
|
};
|
|
27101
|
+
export declare type DevConsoleQueryHasAnyConsoleAdminArgs = {
|
|
27102
|
+
developerSpaceId: Scalars['String']['input'];
|
|
27103
|
+
};
|
|
26867
27104
|
export declare type DevConsoleQueryTenantContextsArgs = {
|
|
26868
27105
|
ids: Array<Scalars['ID']['input']>;
|
|
26869
27106
|
};
|
|
@@ -26910,6 +27147,13 @@ export declare type DevConsoleResourceUsagePeriod = {
|
|
|
26910
27147
|
period: Scalars['String']['output'];
|
|
26911
27148
|
resolution: DevConsoleUsageResolution;
|
|
26912
27149
|
};
|
|
27150
|
+
export declare type DevConsoleResourceUsageTopSite = {
|
|
27151
|
+
__typename?: 'DevConsoleResourceUsageTopSite';
|
|
27152
|
+
contextAri: Scalars['String']['output'];
|
|
27153
|
+
hostName?: Maybe<Scalars['String']['output']>;
|
|
27154
|
+
totalUsage: Scalars['String']['output'];
|
|
27155
|
+
unit: Scalars['String']['output'];
|
|
27156
|
+
};
|
|
26913
27157
|
export declare type DevConsoleResponsePayload = Payload & {
|
|
26914
27158
|
__typename?: 'DevConsoleResponsePayload';
|
|
26915
27159
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -26925,12 +27169,23 @@ export declare type DevConsoleTenantContext = {
|
|
|
26925
27169
|
export declare type DevConsoleTransactionAccountData = {
|
|
26926
27170
|
__typename?: 'DevConsoleTransactionAccountData';
|
|
26927
27171
|
invoiceGroupId?: Maybe<Scalars['String']['output']>;
|
|
26928
|
-
status: Scalars['String']['output'];
|
|
26929
27172
|
txnAccountId?: Maybe<Scalars['String']['output']>;
|
|
26930
27173
|
};
|
|
27174
|
+
export declare type DevConsoleTransactionAccountPaymentMethod = {
|
|
27175
|
+
__typename?: 'DevConsoleTransactionAccountPaymentMethod';
|
|
27176
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
27177
|
+
status?: Maybe<DevConsoleTransactionAccountPaymentMethodStatus>;
|
|
27178
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
27179
|
+
};
|
|
27180
|
+
export declare enum DevConsoleTransactionAccountPaymentMethodStatus {
|
|
27181
|
+
Active = "ACTIVE",
|
|
27182
|
+
NotFound = "NOT_FOUND",
|
|
27183
|
+
NotPermitted = "NOT_PERMITTED"
|
|
27184
|
+
}
|
|
26931
27185
|
export declare type DevConsoleTransactionAccountResponse = {
|
|
26932
27186
|
__typename?: 'DevConsoleTransactionAccountResponse';
|
|
26933
27187
|
error?: Maybe<QueryError>;
|
|
27188
|
+
paymentMethod?: Maybe<DevConsoleTransactionAccountPaymentMethod>;
|
|
26934
27189
|
transactionAccount?: Maybe<DevConsoleTransactionAccountData>;
|
|
26935
27190
|
};
|
|
26936
27191
|
export declare type DevConsoleUpdateDeveloperSpaceMemberInput = {
|
|
@@ -31296,6 +31551,11 @@ export declare type ForgeContextToken = {
|
|
|
31296
31551
|
expiresAt: Scalars['String']['output'];
|
|
31297
31552
|
jwt: Scalars['String']['output'];
|
|
31298
31553
|
};
|
|
31554
|
+
export declare type ForgeInvocationToken = {
|
|
31555
|
+
__typename?: 'ForgeInvocationToken';
|
|
31556
|
+
expiresAt: Scalars['String']['output'];
|
|
31557
|
+
jwt: Scalars['String']['output'];
|
|
31558
|
+
};
|
|
31299
31559
|
export declare type ForgeMetricsApiRequestCountData = ForgeMetricsData & {
|
|
31300
31560
|
__typename?: 'ForgeMetricsApiRequestCountData';
|
|
31301
31561
|
interval: ForgeMetricsIntervalRange;
|
|
@@ -36636,6 +36896,8 @@ export declare type GraphStore = {
|
|
|
36636
36896
|
userFavoritedFocusAreaBatch?: Maybe<GraphStoreBatchUserFavoritedFocusAreaConnection>;
|
|
36637
36897
|
userFavoritedFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserFavoritedFocusAreaInverseConnection>;
|
|
36638
36898
|
userFavoritedFocusAreaInverseBatch?: Maybe<GraphStoreBatchUserFavoritedFocusAreaConnection>;
|
|
36899
|
+
userFavoritedTownsquareProject?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection>;
|
|
36900
|
+
userFavoritedTownsquareProjectInverse?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseConnection>;
|
|
36639
36901
|
userHasExternalPosition?: Maybe<GraphStoreSimplifiedUserHasExternalPositionConnection>;
|
|
36640
36902
|
userHasExternalPositionInverse?: Maybe<GraphStoreSimplifiedUserHasExternalPositionInverseConnection>;
|
|
36641
36903
|
userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
|
|
@@ -41172,6 +41434,20 @@ export declare type GraphStoreUserFavoritedFocusAreaInverseBatchArgs = {
|
|
|
41172
41434
|
ids: Array<Scalars['ID']['input']>;
|
|
41173
41435
|
sort?: InputMaybe<GraphStoreUserFavoritedFocusAreaSortInput>;
|
|
41174
41436
|
};
|
|
41437
|
+
export declare type GraphStoreUserFavoritedTownsquareProjectArgs = {
|
|
41438
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41439
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41440
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41441
|
+
id: Scalars['ID']['input'];
|
|
41442
|
+
sort?: InputMaybe<GraphStoreUserFavoritedTownsquareProjectSortInput>;
|
|
41443
|
+
};
|
|
41444
|
+
export declare type GraphStoreUserFavoritedTownsquareProjectInverseArgs = {
|
|
41445
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41446
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41447
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41448
|
+
id: Scalars['ID']['input'];
|
|
41449
|
+
sort?: InputMaybe<GraphStoreUserFavoritedTownsquareProjectSortInput>;
|
|
41450
|
+
};
|
|
41175
41451
|
export declare type GraphStoreUserHasExternalPositionArgs = {
|
|
41176
41452
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
41177
41453
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -44085,6 +44361,20 @@ export declare type GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagRelations
|
|
|
44085
44361
|
to: Scalars['ID']['input'];
|
|
44086
44362
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
44087
44363
|
};
|
|
44364
|
+
export declare type GraphStoreCreateUserFavoritedTownsquareProjectInput = {
|
|
44365
|
+
relationships: Array<GraphStoreCreateUserFavoritedTownsquareProjectRelationshipInput>;
|
|
44366
|
+
};
|
|
44367
|
+
export declare type GraphStoreCreateUserFavoritedTownsquareProjectPayload = Payload & {
|
|
44368
|
+
__typename?: 'GraphStoreCreateUserFavoritedTownsquareProjectPayload';
|
|
44369
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44370
|
+
success: Scalars['Boolean']['output'];
|
|
44371
|
+
};
|
|
44372
|
+
export declare type GraphStoreCreateUserFavoritedTownsquareProjectRelationshipInput = {
|
|
44373
|
+
from: Scalars['ID']['input'];
|
|
44374
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
44375
|
+
to: Scalars['ID']['input'];
|
|
44376
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
44377
|
+
};
|
|
44088
44378
|
export declare type GraphStoreCreateUserHasRelevantProjectInput = {
|
|
44089
44379
|
relationships: Array<GraphStoreCreateUserHasRelevantProjectRelationshipInput>;
|
|
44090
44380
|
};
|
|
@@ -44672,6 +44962,19 @@ export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagRelations
|
|
|
44672
44962
|
from: Scalars['ID']['input'];
|
|
44673
44963
|
to: Scalars['ID']['input'];
|
|
44674
44964
|
};
|
|
44965
|
+
export declare type GraphStoreDeleteUserFavoritedTownsquareProjectInput = {
|
|
44966
|
+
relationships: Array<GraphStoreDeleteUserFavoritedTownsquareProjectRelationshipInput>;
|
|
44967
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
44968
|
+
};
|
|
44969
|
+
export declare type GraphStoreDeleteUserFavoritedTownsquareProjectPayload = Payload & {
|
|
44970
|
+
__typename?: 'GraphStoreDeleteUserFavoritedTownsquareProjectPayload';
|
|
44971
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44972
|
+
success: Scalars['Boolean']['output'];
|
|
44973
|
+
};
|
|
44974
|
+
export declare type GraphStoreDeleteUserFavoritedTownsquareProjectRelationshipInput = {
|
|
44975
|
+
from: Scalars['ID']['input'];
|
|
44976
|
+
to: Scalars['ID']['input'];
|
|
44977
|
+
};
|
|
44675
44978
|
export declare type GraphStoreDeleteUserHasRelevantProjectInput = {
|
|
44676
44979
|
relationships: Array<GraphStoreDeleteUserHasRelevantProjectRelationshipInput>;
|
|
44677
44980
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -48648,6 +48951,7 @@ export declare type GraphStoreMutation = {
|
|
|
48648
48951
|
createTeamConnectedToContainer?: Maybe<GraphStoreCreateTeamConnectedToContainerPayload>;
|
|
48649
48952
|
createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
|
|
48650
48953
|
createTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagPayload>;
|
|
48954
|
+
createUserFavoritedTownsquareProject?: Maybe<GraphStoreCreateUserFavoritedTownsquareProjectPayload>;
|
|
48651
48955
|
createUserHasRelevantProject?: Maybe<GraphStoreCreateUserHasRelevantProjectPayload>;
|
|
48652
48956
|
createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
|
|
48653
48957
|
createVulnerabilityAssociatedIssue?: Maybe<GraphStoreCreateVulnerabilityAssociatedIssuePayload>;
|
|
@@ -48676,6 +48980,7 @@ export declare type GraphStoreMutation = {
|
|
|
48676
48980
|
deleteTeamConnectedToContainer?: Maybe<GraphStoreDeleteTeamConnectedToContainerPayload>;
|
|
48677
48981
|
deleteTestPerfhammerRelationship?: Maybe<GraphStoreDeleteTestPerfhammerRelationshipPayload>;
|
|
48678
48982
|
deleteTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagPayload>;
|
|
48983
|
+
deleteUserFavoritedTownsquareProject?: Maybe<GraphStoreDeleteUserFavoritedTownsquareProjectPayload>;
|
|
48679
48984
|
deleteUserHasRelevantProject?: Maybe<GraphStoreDeleteUserHasRelevantProjectPayload>;
|
|
48680
48985
|
deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
|
|
48681
48986
|
deleteVulnerabilityAssociatedIssue?: Maybe<GraphStoreDeleteVulnerabilityAssociatedIssuePayload>;
|
|
@@ -48755,6 +49060,9 @@ export declare type GraphStoreMutationCreateTestPerfhammerRelationshipArgs = {
|
|
|
48755
49060
|
export declare type GraphStoreMutationCreateTownsquareTagIsAliasOfTownsquareTagArgs = {
|
|
48756
49061
|
input?: InputMaybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagInput>;
|
|
48757
49062
|
};
|
|
49063
|
+
export declare type GraphStoreMutationCreateUserFavoritedTownsquareProjectArgs = {
|
|
49064
|
+
input?: InputMaybe<GraphStoreCreateUserFavoritedTownsquareProjectInput>;
|
|
49065
|
+
};
|
|
48758
49066
|
export declare type GraphStoreMutationCreateUserHasRelevantProjectArgs = {
|
|
48759
49067
|
input?: InputMaybe<GraphStoreCreateUserHasRelevantProjectInput>;
|
|
48760
49068
|
};
|
|
@@ -48839,6 +49147,9 @@ export declare type GraphStoreMutationDeleteTestPerfhammerRelationshipArgs = {
|
|
|
48839
49147
|
export declare type GraphStoreMutationDeleteTownsquareTagIsAliasOfTownsquareTagArgs = {
|
|
48840
49148
|
input?: InputMaybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagInput>;
|
|
48841
49149
|
};
|
|
49150
|
+
export declare type GraphStoreMutationDeleteUserFavoritedTownsquareProjectArgs = {
|
|
49151
|
+
input?: InputMaybe<GraphStoreDeleteUserFavoritedTownsquareProjectInput>;
|
|
49152
|
+
};
|
|
48842
49153
|
export declare type GraphStoreMutationDeleteUserHasRelevantProjectArgs = {
|
|
48843
49154
|
input?: InputMaybe<GraphStoreDeleteUserHasRelevantProjectInput>;
|
|
48844
49155
|
};
|
|
@@ -56180,6 +56491,38 @@ export declare type GraphStoreSimplifiedUserFavoritedFocusAreaInverseEdge = {
|
|
|
56180
56491
|
};
|
|
56181
56492
|
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56182
56493
|
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaUnion = MercuryFocusArea;
|
|
56494
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection = HasPageInfo & HasTotal & {
|
|
56495
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection';
|
|
56496
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectEdge>>>;
|
|
56497
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
56498
|
+
pageInfo: PageInfo;
|
|
56499
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
56500
|
+
};
|
|
56501
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectEdge = {
|
|
56502
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareProjectEdge';
|
|
56503
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56504
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56505
|
+
id: Scalars['ID']['output'];
|
|
56506
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56507
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectUnion>;
|
|
56508
|
+
};
|
|
56509
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
56510
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseConnection';
|
|
56511
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseEdge>>>;
|
|
56512
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
56513
|
+
pageInfo: PageInfo;
|
|
56514
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
56515
|
+
};
|
|
56516
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseEdge = {
|
|
56517
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseEdge';
|
|
56518
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56519
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56520
|
+
id: Scalars['ID']['output'];
|
|
56521
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56522
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseUnion>;
|
|
56523
|
+
};
|
|
56524
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56525
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectUnion = TownsquareProject;
|
|
56183
56526
|
export declare type GraphStoreSimplifiedUserHasExternalPositionConnection = HasPageInfo & HasTotal & {
|
|
56184
56527
|
__typename?: 'GraphStoreSimplifiedUserHasExternalPositionConnection';
|
|
56185
56528
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasExternalPositionEdge>>>;
|
|
@@ -58632,6 +58975,12 @@ export declare type GraphStoreUserFavoritedConfluenceWhiteboardSortInput = {
|
|
|
58632
58975
|
export declare type GraphStoreUserFavoritedFocusAreaSortInput = {
|
|
58633
58976
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58634
58977
|
};
|
|
58978
|
+
export declare type GraphStoreUserFavoritedTownsquareProjectSortInput = {
|
|
58979
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
58980
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
58981
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58982
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
58983
|
+
};
|
|
58635
58984
|
export declare type GraphStoreUserHasExternalPositionSortInput = {
|
|
58636
58985
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
58637
58986
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -60065,6 +60414,7 @@ export declare type HelpCenterContentGapIndicatorsWithMetaData = {
|
|
|
60065
60414
|
contentGapIndicators?: Maybe<Array<HelpCenterContentGapIndicator>>;
|
|
60066
60415
|
};
|
|
60067
60416
|
export declare type HelpCenterCreateInput = {
|
|
60417
|
+
helpCenterType?: InputMaybe<HelpCenterTypeInput>;
|
|
60068
60418
|
homePageLayout?: InputMaybe<HelpCenterHomePageLayoutInput>;
|
|
60069
60419
|
name: HelpCenterNameInput;
|
|
60070
60420
|
slug: Scalars['String']['input'];
|
|
@@ -60635,8 +60985,14 @@ export declare enum HelpCenterType {
|
|
|
60635
60985
|
Advanced = "ADVANCED",
|
|
60636
60986
|
Basic = "BASIC",
|
|
60637
60987
|
CustomerService = "CUSTOMER_SERVICE",
|
|
60988
|
+
HelpHub = "HELP_HUB",
|
|
60638
60989
|
Unified = "UNIFIED"
|
|
60639
60990
|
}
|
|
60991
|
+
export declare enum HelpCenterTypeInput {
|
|
60992
|
+
Basic = "BASIC",
|
|
60993
|
+
CustomerService = "CUSTOMER_SERVICE",
|
|
60994
|
+
HelpHub = "HELP_HUB"
|
|
60995
|
+
}
|
|
60640
60996
|
export declare type HelpCenterUpdateInput = {
|
|
60641
60997
|
helpCenterAri: Scalars['String']['input'];
|
|
60642
60998
|
helpCenterBranding?: InputMaybe<HelpCenterBrandingInput>;
|
|
@@ -62428,6 +62784,10 @@ export declare type InvocationResponsePayload = {
|
|
|
62428
62784
|
async: Scalars['Boolean']['output'];
|
|
62429
62785
|
body: Scalars['JSON']['output'];
|
|
62430
62786
|
};
|
|
62787
|
+
export declare type InvocationTokenForUiMetadata = {
|
|
62788
|
+
__typename?: 'InvocationTokenForUIMetadata';
|
|
62789
|
+
baseUrl: Scalars['String']['output'];
|
|
62790
|
+
};
|
|
62431
62791
|
export declare type InvokeAuxEffectsInput = {
|
|
62432
62792
|
contextIds: Array<Scalars['ID']['input']>;
|
|
62433
62793
|
entryPoint?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -62839,6 +63199,19 @@ export declare type JiraActivityFieldValueKeyValuePairInput = {
|
|
|
62839
63199
|
key: Scalars['String']['input'];
|
|
62840
63200
|
value: Array<InputMaybe<Scalars['String']['input']>>;
|
|
62841
63201
|
};
|
|
63202
|
+
export declare enum JiraActivityFilter {
|
|
63203
|
+
AnyComment = "ANY_COMMENT",
|
|
63204
|
+
Approval = "APPROVAL",
|
|
63205
|
+
HiddenCustomEntries = "HIDDEN_CUSTOM_ENTRIES",
|
|
63206
|
+
History = "HISTORY",
|
|
63207
|
+
HistoryIncludeIssueCreated = "HISTORY_INCLUDE_ISSUE_CREATED",
|
|
63208
|
+
IccSessionDetails = "ICC_SESSION_DETAILS",
|
|
63209
|
+
IccSessionLifecycle = "ICC_SESSION_LIFECYCLE",
|
|
63210
|
+
Incident = "INCIDENT",
|
|
63211
|
+
ResponderAlert = "RESPONDER_ALERT",
|
|
63212
|
+
StakeholderUpdate = "STAKEHOLDER_UPDATE",
|
|
63213
|
+
WorkLog = "WORK_LOG"
|
|
63214
|
+
}
|
|
62842
63215
|
export declare type JiraActivitySortOrderPayload = Payload & {
|
|
62843
63216
|
__typename?: 'JiraActivitySortOrderPayload';
|
|
62844
63217
|
activitySortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
|
|
@@ -63196,6 +63569,22 @@ export declare type JiraAlignAggSite = {
|
|
|
63196
63569
|
jiraAlignSiteUrl: Scalars['String']['output'];
|
|
63197
63570
|
workspaceId?: Maybe<Scalars['String']['output']>;
|
|
63198
63571
|
};
|
|
63572
|
+
export declare type JiraAllActivityFeedConnection = {
|
|
63573
|
+
__typename?: 'JiraAllActivityFeedConnection';
|
|
63574
|
+
edges?: Maybe<Array<JiraAllActivityFeedEdge>>;
|
|
63575
|
+
pageInfo?: Maybe<PageInfo>;
|
|
63576
|
+
};
|
|
63577
|
+
export declare type JiraAllActivityFeedEdge = {
|
|
63578
|
+
__typename?: 'JiraAllActivityFeedEdge';
|
|
63579
|
+
cursor: Scalars['String']['output'];
|
|
63580
|
+
node?: Maybe<JiraAllActivityFeedItem>;
|
|
63581
|
+
};
|
|
63582
|
+
export declare type JiraAllActivityFeedItem = {
|
|
63583
|
+
__typename?: 'JiraAllActivityFeedItem';
|
|
63584
|
+
item?: Maybe<JiraAllActivityFeedItemUnion>;
|
|
63585
|
+
timestamp?: Maybe<Scalars['Long']['output']>;
|
|
63586
|
+
};
|
|
63587
|
+
export declare type JiraAllActivityFeedItemUnion = JiraApprovalItem | JiraCommentItem | JiraHiddenCommentItem | JiraHistoryItem | JiraWorklogItem;
|
|
63199
63588
|
export declare enum JiraAllowedFieldFormatConfig {
|
|
63200
63589
|
NumberFieldFormatConfig = "NUMBER_FIELD_FORMAT_CONFIG"
|
|
63201
63590
|
}
|
|
@@ -63366,10 +63755,47 @@ export declare type JiraApplySuggestionActionsPayload = Payload & {
|
|
|
63366
63755
|
success: Scalars['Boolean']['output'];
|
|
63367
63756
|
suggestions?: Maybe<Array<Maybe<JiraSuggestion>>>;
|
|
63368
63757
|
};
|
|
63758
|
+
export declare type JiraApprovalActivityFeedConnection = {
|
|
63759
|
+
__typename?: 'JiraApprovalActivityFeedConnection';
|
|
63760
|
+
nodes: Array<JiraApprovalActivityItem>;
|
|
63761
|
+
pageInfo?: Maybe<PageInfo>;
|
|
63762
|
+
};
|
|
63763
|
+
export declare type JiraApprovalActivityItem = {
|
|
63764
|
+
__typename?: 'JiraApprovalActivityItem';
|
|
63765
|
+
approvalName?: Maybe<Scalars['String']['output']>;
|
|
63766
|
+
date: Scalars['Long']['output'];
|
|
63767
|
+
friendlyDate?: Maybe<Scalars['String']['output']>;
|
|
63768
|
+
id: Scalars['ID']['output'];
|
|
63769
|
+
value?: Maybe<JiraApprovalActivityValueUnion>;
|
|
63770
|
+
};
|
|
63771
|
+
export declare type JiraApprovalActivityValueUnion = JiraApprovalCompleted | JiraApprovalCreated | JiraApproverDecision;
|
|
63772
|
+
export declare type JiraApprovalCompleted = {
|
|
63773
|
+
__typename?: 'JiraApprovalCompleted';
|
|
63774
|
+
outcome?: Maybe<Scalars['String']['output']>;
|
|
63775
|
+
systemDecided?: Maybe<Scalars['Boolean']['output']>;
|
|
63776
|
+
};
|
|
63777
|
+
export declare type JiraApprovalConfiguration = {
|
|
63778
|
+
__typename?: 'JiraApprovalConfiguration';
|
|
63779
|
+
approverFieldId?: Maybe<Scalars['String']['output']>;
|
|
63780
|
+
approverFieldType?: Maybe<Scalars['String']['output']>;
|
|
63781
|
+
conditionType?: Maybe<Scalars['String']['output']>;
|
|
63782
|
+
conditionValue?: Maybe<Scalars['String']['output']>;
|
|
63783
|
+
translatedApproverFieldName?: Maybe<Scalars['String']['output']>;
|
|
63784
|
+
};
|
|
63785
|
+
export declare type JiraApprovalCreated = {
|
|
63786
|
+
__typename?: 'JiraApprovalCreated';
|
|
63787
|
+
approvalConfigurations?: Maybe<Array<Maybe<JiraApprovalConfiguration>>>;
|
|
63788
|
+
excludedFields?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
63789
|
+
statusCategory?: Maybe<JiraStatusCategory>;
|
|
63790
|
+
};
|
|
63369
63791
|
export declare enum JiraApprovalDecision {
|
|
63370
63792
|
Approved = "APPROVED",
|
|
63371
63793
|
Rejected = "REJECTED"
|
|
63372
63794
|
}
|
|
63795
|
+
export declare type JiraApprovalItem = {
|
|
63796
|
+
__typename?: 'JiraApprovalItem';
|
|
63797
|
+
approvalItem?: Maybe<JiraApprovalActivityItem>;
|
|
63798
|
+
};
|
|
63373
63799
|
export declare type JiraApproveJiraBitbucketWorkspaceAccessRequestInput = {
|
|
63374
63800
|
approvalLocation?: InputMaybe<JiraOrganizationApprovalLocation>;
|
|
63375
63801
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -63379,6 +63805,11 @@ export declare type JiraApproveJiraBitbucketWorkspaceAccessRequestPayload = Payl
|
|
|
63379
63805
|
errors?: Maybe<Array<MutationError>>;
|
|
63380
63806
|
success: Scalars['Boolean']['output'];
|
|
63381
63807
|
};
|
|
63808
|
+
export declare type JiraApproverDecision = {
|
|
63809
|
+
__typename?: 'JiraApproverDecision';
|
|
63810
|
+
approver?: Maybe<User>;
|
|
63811
|
+
decision?: Maybe<Scalars['String']['output']>;
|
|
63812
|
+
};
|
|
63382
63813
|
export declare type JiraArchiveJourneyConfigurationInput = {
|
|
63383
63814
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
63384
63815
|
id: Scalars['ID']['input'];
|
|
@@ -64880,6 +65311,7 @@ export declare type JiraBulkCreateIssueLinksPayload = Payload & {
|
|
|
64880
65311
|
__typename?: 'JiraBulkCreateIssueLinksPayload';
|
|
64881
65312
|
errors?: Maybe<Array<MutationError>>;
|
|
64882
65313
|
issueLinkEdges?: Maybe<Array<JiraIssueLinkEdge>>;
|
|
65314
|
+
issueLinkField?: Maybe<JiraIssueLinkField>;
|
|
64883
65315
|
success: Scalars['Boolean']['output'];
|
|
64884
65316
|
};
|
|
64885
65317
|
export declare type JiraBulkDeleteInput = {
|
|
@@ -65343,7 +65775,9 @@ export declare type JiraCalendarPermissionEdge = {
|
|
|
65343
65775
|
node?: Maybe<JiraCalendarPermission>;
|
|
65344
65776
|
};
|
|
65345
65777
|
export declare enum JiraCalendarPermissionKey {
|
|
65346
|
-
|
|
65778
|
+
CreateIssuePermission = "CREATE_ISSUE_PERMISSION",
|
|
65779
|
+
ManageSprintsPermission = "MANAGE_SPRINTS_PERMISSION",
|
|
65780
|
+
ScheduleIssuePermission = "SCHEDULE_ISSUE_PERMISSION"
|
|
65347
65781
|
}
|
|
65348
65782
|
export declare type JiraCalendarSprintsInput = {
|
|
65349
65783
|
sprintStates?: InputMaybe<Array<JiraSprintState>>;
|
|
@@ -66020,6 +66454,10 @@ export declare type JiraCommentEdge = {
|
|
|
66020
66454
|
cursor: Scalars['String']['output'];
|
|
66021
66455
|
node?: Maybe<JiraComment>;
|
|
66022
66456
|
};
|
|
66457
|
+
export declare type JiraCommentItem = {
|
|
66458
|
+
__typename?: 'JiraCommentItem';
|
|
66459
|
+
commentItem?: Maybe<JiraComment>;
|
|
66460
|
+
};
|
|
66023
66461
|
export declare enum JiraCommentSortField {
|
|
66024
66462
|
Created = "CREATED"
|
|
66025
66463
|
}
|
|
@@ -66927,6 +67365,8 @@ export declare type JiraCustomFieldType = {
|
|
|
66927
67365
|
isManaged?: Maybe<Scalars['Boolean']['output']>;
|
|
66928
67366
|
key?: Maybe<Scalars['String']['output']>;
|
|
66929
67367
|
name?: Maybe<Scalars['String']['output']>;
|
|
67368
|
+
providerConnectAppName?: Maybe<Scalars['String']['output']>;
|
|
67369
|
+
providerForgeApp?: Maybe<App>;
|
|
66930
67370
|
type?: Maybe<JiraConfigFieldType>;
|
|
66931
67371
|
};
|
|
66932
67372
|
export declare enum JiraCustomFieldTypeCategory {
|
|
@@ -67143,6 +67583,23 @@ export declare type JiraDateFieldPayload = Payload & {
|
|
|
67143
67583
|
field?: Maybe<JiraDatePickerField>;
|
|
67144
67584
|
success: Scalars['Boolean']['output'];
|
|
67145
67585
|
};
|
|
67586
|
+
export declare type JiraDateFormulaField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
67587
|
+
__typename?: 'JiraDateFormulaField';
|
|
67588
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
67589
|
+
dateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
67590
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
67591
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
67592
|
+
fieldId: Scalars['String']['output'];
|
|
67593
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
67594
|
+
id: Scalars['ID']['output'];
|
|
67595
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
67596
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
67597
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
67598
|
+
issue?: Maybe<JiraIssue>;
|
|
67599
|
+
name: Scalars['String']['output'];
|
|
67600
|
+
type: Scalars['String']['output'];
|
|
67601
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
67602
|
+
};
|
|
67146
67603
|
export declare type JiraDateInput = {
|
|
67147
67604
|
formattedDate: Scalars['String']['input'];
|
|
67148
67605
|
};
|
|
@@ -67320,6 +67777,7 @@ export declare type JiraDeleteIssueLinkPayload = Payload & {
|
|
|
67320
67777
|
deletedIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
67321
67778
|
errors?: Maybe<Array<MutationError>>;
|
|
67322
67779
|
id?: Maybe<Scalars['ID']['output']>;
|
|
67780
|
+
issueLinkField?: Maybe<JiraIssueLinkField>;
|
|
67323
67781
|
issueLinkId?: Maybe<Scalars['ID']['output']>;
|
|
67324
67782
|
success: Scalars['Boolean']['output'];
|
|
67325
67783
|
};
|
|
@@ -67417,6 +67875,7 @@ export declare type JiraDetailedView = JiraIssueSearchViewMetadata & JiraView &
|
|
|
67417
67875
|
jql?: Maybe<Scalars['String']['output']>;
|
|
67418
67876
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
67419
67877
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
67878
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
67420
67879
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
67421
67880
|
};
|
|
67422
67881
|
export declare type JiraDetailedViewFieldSetsArgs = {
|
|
@@ -67446,6 +67905,9 @@ export declare type JiraDetailedViewIssuesArgs = {
|
|
|
67446
67905
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
67447
67906
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
67448
67907
|
};
|
|
67908
|
+
export declare type JiraDetailedViewValidateJqlArgs = {
|
|
67909
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
67910
|
+
};
|
|
67449
67911
|
export declare type JiraDevInfoConfigError = {
|
|
67450
67912
|
__typename?: 'JiraDevInfoConfigError';
|
|
67451
67913
|
dataProviderId?: Maybe<Scalars['String']['output']>;
|
|
@@ -67793,6 +68255,18 @@ export declare type JiraDiscardUserIssueSearchConfigPayload = {
|
|
|
67793
68255
|
export declare type JiraDiscardUserViewConfigInput = {
|
|
67794
68256
|
viewId: Scalars['ID']['input'];
|
|
67795
68257
|
};
|
|
68258
|
+
export declare type JiraDismissAiAgentSessionInput = {
|
|
68259
|
+
agentIdentityAccountId: Scalars['String']['input'];
|
|
68260
|
+
cloudId: Scalars['ID']['input'];
|
|
68261
|
+
conversationId: Scalars['ID']['input'];
|
|
68262
|
+
issueId: Scalars['String']['input'];
|
|
68263
|
+
userAccountId: Scalars['String']['input'];
|
|
68264
|
+
};
|
|
68265
|
+
export declare type JiraDismissAiAgentSessionPayload = Payload & {
|
|
68266
|
+
__typename?: 'JiraDismissAiAgentSessionPayload';
|
|
68267
|
+
errors?: Maybe<Array<MutationError>>;
|
|
68268
|
+
success: Scalars['Boolean']['output'];
|
|
68269
|
+
};
|
|
67796
68270
|
export declare type JiraDismissBitbucketPendingAccessRequestBannerInput = {
|
|
67797
68271
|
isDismissed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67798
68272
|
};
|
|
@@ -69463,6 +69937,7 @@ export declare type JiraGroupedListView = JiraIssueSearchViewMetadata & JiraSpre
|
|
|
69463
69937
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
69464
69938
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
69465
69939
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
69940
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
69466
69941
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
69467
69942
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
69468
69943
|
};
|
|
@@ -69496,6 +69971,9 @@ export declare type JiraGroupedListViewHasDefaultFieldSetsArgs = {
|
|
|
69496
69971
|
export declare type JiraGroupedListViewIsViewConfigModifiedArgs = {
|
|
69497
69972
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
69498
69973
|
};
|
|
69974
|
+
export declare type JiraGroupedListViewValidateJqlArgs = {
|
|
69975
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
69976
|
+
};
|
|
69499
69977
|
export declare type JiraGroupedListViewViewSettingsArgs = {
|
|
69500
69978
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
69501
69979
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -69530,6 +70008,10 @@ export declare type JiraHasSelectableValueOptionsSelectableValueOptionsArgs = {
|
|
|
69530
70008
|
export declare type JiraHasSingleSelectedValue = {
|
|
69531
70009
|
selectedValue?: Maybe<JiraSelectableValue>;
|
|
69532
70010
|
};
|
|
70011
|
+
export declare type JiraHiddenCommentItem = {
|
|
70012
|
+
__typename?: 'JiraHiddenCommentItem';
|
|
70013
|
+
hiddenCommentItem?: Maybe<JiraComment>;
|
|
70014
|
+
};
|
|
69533
70015
|
export declare type JiraHierarchyConfigError = {
|
|
69534
70016
|
__typename?: 'JiraHierarchyConfigError';
|
|
69535
70017
|
code?: Maybe<Scalars['String']['output']>;
|
|
@@ -69575,6 +70057,10 @@ export declare type JiraHistoryGenericFieldValue = {
|
|
|
69575
70057
|
formattedValue?: Maybe<Scalars['String']['output']>;
|
|
69576
70058
|
value?: Maybe<Scalars['String']['output']>;
|
|
69577
70059
|
};
|
|
70060
|
+
export declare type JiraHistoryItem = {
|
|
70061
|
+
__typename?: 'JiraHistoryItem';
|
|
70062
|
+
historyItem?: Maybe<JiraHistoryActivityFeedItem>;
|
|
70063
|
+
};
|
|
69578
70064
|
export declare type JiraHistoryPriorityFieldValue = {
|
|
69579
70065
|
__typename?: 'JiraHistoryPriorityFieldValue';
|
|
69580
70066
|
absoluteIconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -69647,15 +70133,10 @@ export declare type JiraInitializeProjectNotificationPreferencesPayload = Payloa
|
|
|
69647
70133
|
};
|
|
69648
70134
|
export declare type JiraInlineIssueCreateField = {
|
|
69649
70135
|
__typename?: 'JiraInlineIssueCreateField';
|
|
69650
|
-
|
|
70136
|
+
errors?: Maybe<Array<MutationError>>;
|
|
69651
70137
|
fieldId: Scalars['String']['output'];
|
|
69652
70138
|
fieldName?: Maybe<Scalars['String']['output']>;
|
|
69653
70139
|
};
|
|
69654
|
-
export declare type JiraInlineIssueCreateFieldError = {
|
|
69655
|
-
__typename?: 'JiraInlineIssueCreateFieldError';
|
|
69656
|
-
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
69657
|
-
errorType?: Maybe<Scalars['String']['output']>;
|
|
69658
|
-
};
|
|
69659
70140
|
export declare type JiraInlineIssueCreateInput = {
|
|
69660
70141
|
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
69661
70142
|
fields: JiraIssueFieldsInput;
|
|
@@ -69701,6 +70182,7 @@ export declare type JiraInviterActivityRecommendation = JiraProjectRecommendatio
|
|
|
69701
70182
|
export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike & Node & {
|
|
69702
70183
|
__typename?: 'JiraIssue';
|
|
69703
70184
|
aiAgentSessions?: Maybe<JiraAiAgentSessionConnection>;
|
|
70185
|
+
allActivities?: Maybe<JiraAllActivityFeedConnection>;
|
|
69704
70186
|
archivedBy?: Maybe<User>;
|
|
69705
70187
|
archivedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
69706
70188
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
@@ -69841,6 +70323,13 @@ export declare type JiraIssueAiAgentSessionsArgs = {
|
|
|
69841
70323
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69842
70324
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
69843
70325
|
};
|
|
70326
|
+
export declare type JiraIssueAllActivitiesArgs = {
|
|
70327
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70328
|
+
cloudId: Scalars['ID']['input'];
|
|
70329
|
+
filterBy?: InputMaybe<Array<JiraActivityFilter>>;
|
|
70330
|
+
first: Scalars['Int']['input'];
|
|
70331
|
+
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
70332
|
+
};
|
|
69844
70333
|
export declare type JiraIssueAttachmentsArgs = {
|
|
69845
70334
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69846
70335
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -70618,6 +71107,8 @@ export declare type JiraIssueFieldConfig = Node & {
|
|
|
70618
71107
|
lastUsedTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
70619
71108
|
name: Scalars['String']['output'];
|
|
70620
71109
|
plannedDeletionTimestamp?: Maybe<Scalars['Long']['output']>;
|
|
71110
|
+
providerConnectAppName?: Maybe<Scalars['String']['output']>;
|
|
71111
|
+
providerForgeApp?: Maybe<App>;
|
|
70621
71112
|
requiredOnWorkTypes?: Maybe<Array<Maybe<JiraIssueType>>>;
|
|
70622
71113
|
searcherTemplate?: Maybe<JiraFieldSearcherTemplate>;
|
|
70623
71114
|
searcherTemplateOptions?: Maybe<JiraFieldSearcherTemplateConnection>;
|
|
@@ -71147,7 +71638,10 @@ export declare enum JiraIssueModuleType {
|
|
|
71147
71638
|
}
|
|
71148
71639
|
export declare type JiraIssueMutatedStreamHubPayload = {
|
|
71149
71640
|
__typename?: 'JiraIssueMutatedStreamHubPayload';
|
|
71641
|
+
actionerAccountId?: Maybe<Scalars['String']['output']>;
|
|
71642
|
+
project?: Maybe<JiraIssueStreamHubEventPayloadProject>;
|
|
71150
71643
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
71644
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
71151
71645
|
};
|
|
71152
71646
|
export declare type JiraIssueNavigatorJqlHistoryDeletePayload = Payload & {
|
|
71153
71647
|
__typename?: 'JiraIssueNavigatorJQLHistoryDeletePayload';
|
|
@@ -71588,6 +72082,7 @@ export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
|
71588
72082
|
jql?: Maybe<Scalars['String']['output']>;
|
|
71589
72083
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
71590
72084
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
72085
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
71591
72086
|
viewConfigSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
71592
72087
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
71593
72088
|
};
|
|
@@ -71605,6 +72100,9 @@ export declare type JiraIssueSearchViewHasDefaultFieldSetsArgs = {
|
|
|
71605
72100
|
export declare type JiraIssueSearchViewIsViewConfigModifiedArgs = {
|
|
71606
72101
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
71607
72102
|
};
|
|
72103
|
+
export declare type JiraIssueSearchViewValidateJqlArgs = {
|
|
72104
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
72105
|
+
};
|
|
71608
72106
|
export declare type JiraIssueSearchViewViewConfigSettingsArgs = {
|
|
71609
72107
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
71610
72108
|
};
|
|
@@ -71686,6 +72184,7 @@ export declare type JiraIssueSearchViewMetadata = {
|
|
|
71686
72184
|
jql?: Maybe<Scalars['String']['output']>;
|
|
71687
72185
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
71688
72186
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
72187
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
71689
72188
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
71690
72189
|
};
|
|
71691
72190
|
export declare type JiraIssueSearchViewMetadataFieldSetsArgs = {
|
|
@@ -71702,6 +72201,9 @@ export declare type JiraIssueSearchViewMetadataHasDefaultFieldSetsArgs = {
|
|
|
71702
72201
|
export declare type JiraIssueSearchViewMetadataIsViewConfigModifiedArgs = {
|
|
71703
72202
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
71704
72203
|
};
|
|
72204
|
+
export declare type JiraIssueSearchViewMetadataValidateJqlArgs = {
|
|
72205
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
72206
|
+
};
|
|
71705
72207
|
export declare type JiraIssueSearchViewPayload = Payload & {
|
|
71706
72208
|
__typename?: 'JiraIssueSearchViewPayload';
|
|
71707
72209
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -71854,6 +72356,7 @@ export declare type JiraIssueType = MercuryProjectType & Node & {
|
|
|
71854
72356
|
__typename?: 'JiraIssueType';
|
|
71855
72357
|
avatar?: Maybe<JiraAvatar>;
|
|
71856
72358
|
description?: Maybe<Scalars['String']['output']>;
|
|
72359
|
+
fieldsConfiguration?: Maybe<JiraIssueFieldConnection>;
|
|
71857
72360
|
hierarchy?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
71858
72361
|
id: Scalars['ID']['output'];
|
|
71859
72362
|
issueTypeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -72820,6 +73323,14 @@ export declare enum JiraJqlSyntaxError {
|
|
|
72820
73323
|
UnfinishedString = "UNFINISHED_STRING",
|
|
72821
73324
|
Unknown = "UNKNOWN"
|
|
72822
73325
|
}
|
|
73326
|
+
export declare type JiraJqlTeamFieldValue = JiraJqlFieldValue & {
|
|
73327
|
+
__typename?: 'JiraJqlTeamFieldValue';
|
|
73328
|
+
displayName: Scalars['String']['output'];
|
|
73329
|
+
encodedJqlTerm?: Maybe<Scalars['String']['output']>;
|
|
73330
|
+
isSelected?: Maybe<Scalars['Boolean']['output']>;
|
|
73331
|
+
jqlTerm: Scalars['String']['output'];
|
|
73332
|
+
team: JiraAtlassianTeam;
|
|
73333
|
+
};
|
|
72823
73334
|
export declare type JiraJqlTownsquareProjectFieldValue = JiraJqlFieldValue & {
|
|
72824
73335
|
__typename?: 'JiraJqlTownsquareProjectFieldValue';
|
|
72825
73336
|
displayName: Scalars['String']['output'];
|
|
@@ -72847,6 +73358,11 @@ export declare type JiraJqlUserFieldValueEdge = {
|
|
|
72847
73358
|
cursor: Scalars['String']['output'];
|
|
72848
73359
|
node?: Maybe<JiraJqlUserFieldValue>;
|
|
72849
73360
|
};
|
|
73361
|
+
export declare type JiraJqlValidationResult = {
|
|
73362
|
+
__typename?: 'JiraJqlValidationResult';
|
|
73363
|
+
errors: Array<QueryError>;
|
|
73364
|
+
isValid: Scalars['Boolean']['output'];
|
|
73365
|
+
};
|
|
72850
73366
|
export declare type JiraJqlVersionFieldValue = JiraJqlFieldValue & {
|
|
72851
73367
|
__typename?: 'JiraJqlVersionFieldValue';
|
|
72852
73368
|
displayName: Scalars['String']['output'];
|
|
@@ -73077,6 +73593,7 @@ export declare type JiraListView = JiraIssueSearchViewMetadata & JiraSpreadsheet
|
|
|
73077
73593
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
73078
73594
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
73079
73595
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
73596
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
73080
73597
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
73081
73598
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
73082
73599
|
};
|
|
@@ -73112,6 +73629,9 @@ export declare type JiraListViewIssuesArgs = {
|
|
|
73112
73629
|
viewConfigInput?: InputMaybe<JiraIssueSearchViewConfigInput>;
|
|
73113
73630
|
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
73114
73631
|
};
|
|
73632
|
+
export declare type JiraListViewValidateJqlArgs = {
|
|
73633
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
73634
|
+
};
|
|
73115
73635
|
export declare type JiraListViewViewSettingsArgs = {
|
|
73116
73636
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
73117
73637
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -74757,6 +75277,24 @@ export declare type JiraNumberFieldPayload = Payload & {
|
|
|
74757
75277
|
field?: Maybe<JiraNumberField>;
|
|
74758
75278
|
success: Scalars['Boolean']['output'];
|
|
74759
75279
|
};
|
|
75280
|
+
export declare type JiraNumberFormulaField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
75281
|
+
__typename?: 'JiraNumberFormulaField';
|
|
75282
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
75283
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
75284
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
75285
|
+
fieldId: Scalars['String']['output'];
|
|
75286
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
75287
|
+
formatConfig?: Maybe<JiraNumberFieldFormatConfig>;
|
|
75288
|
+
id: Scalars['ID']['output'];
|
|
75289
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
75290
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
75291
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
75292
|
+
issue?: Maybe<JiraIssue>;
|
|
75293
|
+
name: Scalars['String']['output'];
|
|
75294
|
+
number?: Maybe<Scalars['Float']['output']>;
|
|
75295
|
+
type: Scalars['String']['output'];
|
|
75296
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
75297
|
+
};
|
|
74760
75298
|
export declare type JiraOAuthAppsApp = {
|
|
74761
75299
|
__typename?: 'JiraOAuthAppsApp';
|
|
74762
75300
|
buildsModule?: Maybe<JiraOAuthAppsBuildsModule>;
|
|
@@ -76825,7 +77363,8 @@ export declare enum JiraProjectSortField {
|
|
|
76825
77363
|
Key = "KEY",
|
|
76826
77364
|
LastIssueUpdatedTime = "LAST_ISSUE_UPDATED_TIME",
|
|
76827
77365
|
Lead = "LEAD",
|
|
76828
|
-
Name = "NAME"
|
|
77366
|
+
Name = "NAME",
|
|
77367
|
+
Recommendation = "RECOMMENDATION"
|
|
76829
77368
|
}
|
|
76830
77369
|
export declare type JiraProjectSortInput = {
|
|
76831
77370
|
order?: InputMaybe<SortDirection>;
|
|
@@ -78869,6 +79408,7 @@ export declare type JiraResource = {
|
|
|
78869
79408
|
hasRestrictedParent?: Maybe<Scalars['Boolean']['output']>;
|
|
78870
79409
|
id: Scalars['ID']['output'];
|
|
78871
79410
|
integration?: Maybe<JiraResourceIntegration>;
|
|
79411
|
+
isExternallyLinked?: Maybe<Scalars['Boolean']['output']>;
|
|
78872
79412
|
parent?: Maybe<JiraResourceParentName>;
|
|
78873
79413
|
parentId?: Maybe<Scalars['String']['output']>;
|
|
78874
79414
|
};
|
|
@@ -79020,6 +79560,7 @@ export declare type JiraResourcesResult = {
|
|
|
79020
79560
|
edges?: Maybe<Array<Maybe<JiraResourceNode>>>;
|
|
79021
79561
|
next?: Maybe<Scalars['String']['output']>;
|
|
79022
79562
|
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
79563
|
+
totalLinks?: Maybe<Scalars['Long']['output']>;
|
|
79023
79564
|
};
|
|
79024
79565
|
export declare enum JiraResourcesSortDirection {
|
|
79025
79566
|
Asc = "ASC",
|
|
@@ -80784,6 +81325,15 @@ export declare type JiraSetIssueSearchHideDoneItemsPayload = Payload & {
|
|
|
80784
81325
|
errors?: Maybe<Array<MutationError>>;
|
|
80785
81326
|
success: Scalars['Boolean']['output'];
|
|
80786
81327
|
};
|
|
81328
|
+
export declare type JiraSetIssueSearchHideWarningsInput = {
|
|
81329
|
+
hideWarnings: Scalars['Boolean']['input'];
|
|
81330
|
+
viewId: Scalars['ID']['input'];
|
|
81331
|
+
};
|
|
81332
|
+
export declare type JiraSetIssueSearchHideWarningsPayload = Payload & {
|
|
81333
|
+
__typename?: 'JiraSetIssueSearchHideWarningsPayload';
|
|
81334
|
+
errors?: Maybe<Array<MutationError>>;
|
|
81335
|
+
success: Scalars['Boolean']['output'];
|
|
81336
|
+
};
|
|
80787
81337
|
export declare type JiraSetIssueSearchHierarchyEnabledInput = {
|
|
80788
81338
|
hierarchyEnabled: Scalars['Boolean']['input'];
|
|
80789
81339
|
viewId: Scalars['ID']['input'];
|
|
@@ -81337,6 +81887,7 @@ export declare type JiraSpreadsheetView = {
|
|
|
81337
81887
|
namespace?: Maybe<Scalars['String']['output']>;
|
|
81338
81888
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
81339
81889
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
81890
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
81340
81891
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
81341
81892
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
81342
81893
|
};
|
|
@@ -81358,6 +81909,9 @@ export declare type JiraSpreadsheetViewHasDefaultFieldSetsArgs = {
|
|
|
81358
81909
|
export declare type JiraSpreadsheetViewIsViewConfigModifiedArgs = {
|
|
81359
81910
|
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
81360
81911
|
};
|
|
81912
|
+
export declare type JiraSpreadsheetViewValidateJqlArgs = {
|
|
81913
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
81914
|
+
};
|
|
81361
81915
|
export declare type JiraSpreadsheetViewViewSettingsArgs = {
|
|
81362
81916
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
81363
81917
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -82099,6 +82653,23 @@ export declare type JiraTenantActivityRecommendation = JiraProjectRecommendation
|
|
|
82099
82653
|
__typename?: 'JiraTenantActivityRecommendation';
|
|
82100
82654
|
recommendationType?: Maybe<JiraProjectRecommendationType>;
|
|
82101
82655
|
};
|
|
82656
|
+
export declare type JiraTextFormulaField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
82657
|
+
__typename?: 'JiraTextFormulaField';
|
|
82658
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
82659
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
82660
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
82661
|
+
fieldId: Scalars['String']['output'];
|
|
82662
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
82663
|
+
id: Scalars['ID']['output'];
|
|
82664
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
82665
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
82666
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
82667
|
+
issue?: Maybe<JiraIssue>;
|
|
82668
|
+
name: Scalars['String']['output'];
|
|
82669
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
82670
|
+
type: Scalars['String']['output'];
|
|
82671
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
82672
|
+
};
|
|
82102
82673
|
export declare enum JiraTimeFormat {
|
|
82103
82674
|
Days = "DAYS",
|
|
82104
82675
|
Hours = "HOURS",
|
|
@@ -82190,6 +82761,7 @@ export declare type JiraTimelineView = JiraFieldSetsViewMetadata & JiraIssueSear
|
|
|
82190
82761
|
savedViewId?: Maybe<Scalars['ID']['output']>;
|
|
82191
82762
|
settings?: Maybe<JiraSpreadsheetViewSettings>;
|
|
82192
82763
|
timelineSettings?: Maybe<JiraIssueSearchTimelineViewConfigSettings>;
|
|
82764
|
+
validateJql?: Maybe<JiraJqlValidationResult>;
|
|
82193
82765
|
viewId?: Maybe<Scalars['String']['output']>;
|
|
82194
82766
|
viewSettings?: Maybe<JiraIssueSearchViewConfigSettings>;
|
|
82195
82767
|
};
|
|
@@ -82227,6 +82799,9 @@ export declare type JiraTimelineViewIssuesArgs = {
|
|
|
82227
82799
|
export declare type JiraTimelineViewTimelineSettingsArgs = {
|
|
82228
82800
|
staticViewInput?: InputMaybe<JiraIssueSearchStaticViewInput>;
|
|
82229
82801
|
};
|
|
82802
|
+
export declare type JiraTimelineViewValidateJqlArgs = {
|
|
82803
|
+
issueSearchInput: JiraIssueSearchInput;
|
|
82804
|
+
};
|
|
82230
82805
|
export declare type JiraTimelineViewViewSettingsArgs = {
|
|
82231
82806
|
groupBy?: InputMaybe<Scalars['String']['input']>;
|
|
82232
82807
|
issueSearchInput?: InputMaybe<JiraIssueSearchInput>;
|
|
@@ -84477,6 +85052,10 @@ export declare type JiraWorklogFieldOperationInputForIssueTransitions = {
|
|
|
84477
85052
|
startedTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
84478
85053
|
timeSpentInMinutes?: InputMaybe<Scalars['Long']['input']>;
|
|
84479
85054
|
};
|
|
85055
|
+
export declare type JiraWorklogItem = {
|
|
85056
|
+
__typename?: 'JiraWorklogItem';
|
|
85057
|
+
worklogItem?: Maybe<JiraWorklog>;
|
|
85058
|
+
};
|
|
84480
85059
|
export declare type JiraWorklogPayload = Payload & {
|
|
84481
85060
|
__typename?: 'JiraWorklogPayload';
|
|
84482
85061
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -84508,7 +85087,6 @@ export declare type JpdPlayEvent = {
|
|
|
84508
85087
|
__typename?: 'JpdPlayEvent';
|
|
84509
85088
|
parameters: JpdPlayParameters;
|
|
84510
85089
|
playAri: Scalars['ID']['output'];
|
|
84511
|
-
playId: Scalars['Int']['output'];
|
|
84512
85090
|
projectAri: Scalars['ID']['output'];
|
|
84513
85091
|
updatedByUserId: Scalars['ID']['output'];
|
|
84514
85092
|
updatedTime: Scalars['String']['output'];
|
|
@@ -84669,12 +85247,10 @@ export declare type JsmChannelsExperienceConfiguration = {
|
|
|
84669
85247
|
__typename?: 'JsmChannelsExperienceConfiguration';
|
|
84670
85248
|
filter?: Maybe<JsmChannelsFilterConfiguration>;
|
|
84671
85249
|
isEnabled: Scalars['Boolean']['output'];
|
|
84672
|
-
mode?: Maybe<JsmChannelsExperienceMode>;
|
|
84673
85250
|
};
|
|
84674
85251
|
export declare type JsmChannelsExperienceConfigurationInput = {
|
|
84675
85252
|
filter?: InputMaybe<JsmChannelsFilterConfigurationInput>;
|
|
84676
85253
|
isEnabled: Scalars['Boolean']['input'];
|
|
84677
|
-
mode?: InputMaybe<JsmChannelsExperienceMode>;
|
|
84678
85254
|
};
|
|
84679
85255
|
export declare type JsmChannelsExperienceConfigurationPayload = Payload & {
|
|
84680
85256
|
__typename?: 'JsmChannelsExperienceConfigurationPayload';
|
|
@@ -84683,23 +85259,13 @@ export declare type JsmChannelsExperienceConfigurationPayload = Payload & {
|
|
|
84683
85259
|
success: Scalars['Boolean']['output'];
|
|
84684
85260
|
};
|
|
84685
85261
|
export declare type JsmChannelsExperienceConfigurationResult = JsmChannelsExperienceConfiguration | QueryError;
|
|
84686
|
-
export declare enum JsmChannelsExperienceMode {
|
|
84687
|
-
Autonomous = "AUTONOMOUS",
|
|
84688
|
-
Supervised = "SUPERVISED"
|
|
84689
|
-
}
|
|
84690
85262
|
export declare type JsmChannelsFilterConfiguration = {
|
|
84691
85263
|
__typename?: 'JsmChannelsFilterConfiguration';
|
|
84692
|
-
requestTypes?: Maybe<Array<
|
|
84693
|
-
requestTypesMode?: Maybe<JsmChannelsFilterRequestTypesMode>;
|
|
85264
|
+
requestTypes?: Maybe<Array<JsmChannelsRequestTypes>>;
|
|
84694
85265
|
};
|
|
84695
85266
|
export declare type JsmChannelsFilterConfigurationInput = {
|
|
84696
|
-
requestTypes?: InputMaybe<Array<
|
|
84697
|
-
requestTypesMode?: InputMaybe<JsmChannelsFilterRequestTypesMode>;
|
|
85267
|
+
requestTypes?: InputMaybe<Array<JsmChannelsRequestTypesInput>>;
|
|
84698
85268
|
};
|
|
84699
|
-
export declare enum JsmChannelsFilterRequestTypesMode {
|
|
84700
|
-
All = "ALL",
|
|
84701
|
-
Specific = "SPECIFIC"
|
|
84702
|
-
}
|
|
84703
85269
|
export declare type JsmChannelsOrchestratorConversation = Node & {
|
|
84704
85270
|
__typename?: 'JsmChannelsOrchestratorConversation';
|
|
84705
85271
|
action?: Maybe<JsmChannelsOrchestratorConversationActionType>;
|
|
@@ -84756,6 +85322,22 @@ export declare type JsmChannelsOrchestratorConversationsFilter = {
|
|
|
84756
85322
|
startDate: Scalars['DateTime']['input'];
|
|
84757
85323
|
states?: InputMaybe<Array<JsmChannelsOrchestratorConversationState>>;
|
|
84758
85324
|
};
|
|
85325
|
+
export declare enum JsmChannelsRequestTypeExecutionMode {
|
|
85326
|
+
Assistive = "ASSISTIVE",
|
|
85327
|
+
Autonomous = "AUTONOMOUS",
|
|
85328
|
+
Disabled = "DISABLED",
|
|
85329
|
+
Smart = "SMART",
|
|
85330
|
+
Supervised = "SUPERVISED"
|
|
85331
|
+
}
|
|
85332
|
+
export declare type JsmChannelsRequestTypes = {
|
|
85333
|
+
__typename?: 'JsmChannelsRequestTypes';
|
|
85334
|
+
id: Scalars['String']['output'];
|
|
85335
|
+
mode: JsmChannelsRequestTypeExecutionMode;
|
|
85336
|
+
};
|
|
85337
|
+
export declare type JsmChannelsRequestTypesInput = {
|
|
85338
|
+
id: Scalars['String']['input'];
|
|
85339
|
+
mode: JsmChannelsRequestTypeExecutionMode;
|
|
85340
|
+
};
|
|
84759
85341
|
export declare type JsmChannelsServiceAgentResolutionPlan = {
|
|
84760
85342
|
__typename?: 'JsmChannelsServiceAgentResolutionPlan';
|
|
84761
85343
|
planId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -87903,6 +88485,11 @@ export declare type MarketplaceConsoleArtifactFileInfo = {
|
|
|
87903
88485
|
logicalFileName: Scalars['String']['output'];
|
|
87904
88486
|
size: Scalars['Int']['output'];
|
|
87905
88487
|
};
|
|
88488
|
+
export declare type MarketplaceConsoleBulkProductMigration = {
|
|
88489
|
+
__typename?: 'MarketplaceConsoleBulkProductMigration';
|
|
88490
|
+
products: Array<Maybe<MarketplaceConsoleProductMigration>>;
|
|
88491
|
+
};
|
|
88492
|
+
export declare type MarketplaceConsoleBulkProductMigrationResponse = MarketplaceConsoleBulkProductMigration | MarketplaceConsoleProductMigrationError;
|
|
87906
88493
|
export declare type MarketplaceConsoleCanMakeServerVersionPublicInput = {
|
|
87907
88494
|
dcAppSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
87908
88495
|
serverAppSoftwareId: Scalars['ID']['input'];
|
|
@@ -87914,6 +88501,11 @@ export declare enum MarketplaceConsoleCloudComplianceBoundary {
|
|
|
87914
88501
|
FedrampModerate = "FEDRAMP_MODERATE",
|
|
87915
88502
|
IsolatedCloud = "ISOLATED_CLOUD"
|
|
87916
88503
|
}
|
|
88504
|
+
export declare type MarketplaceConsoleCompatibilityRanges = {
|
|
88505
|
+
__typename?: 'MarketplaceConsoleCompatibilityRanges';
|
|
88506
|
+
end?: Maybe<Scalars['String']['output']>;
|
|
88507
|
+
start?: Maybe<Scalars['String']['output']>;
|
|
88508
|
+
};
|
|
87917
88509
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
87918
88510
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
87919
88511
|
artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
@@ -88278,6 +88870,16 @@ export declare type MarketplaceConsoleImageMediaAsset = {
|
|
|
88278
88870
|
uri: Scalars['String']['output'];
|
|
88279
88871
|
width: Scalars['Int']['output'];
|
|
88280
88872
|
};
|
|
88873
|
+
export declare type MarketplaceConsoleJsonPatchOperation = {
|
|
88874
|
+
op: MarketplaceConsoleJsonPatchOperationType;
|
|
88875
|
+
path: Scalars['String']['input'];
|
|
88876
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
88877
|
+
};
|
|
88878
|
+
export declare enum MarketplaceConsoleJsonPatchOperationType {
|
|
88879
|
+
Add = "ADD",
|
|
88880
|
+
Remove = "REMOVE",
|
|
88881
|
+
Replace = "REPLACE"
|
|
88882
|
+
}
|
|
88281
88883
|
export declare type MarketplaceConsoleKnownError = MarketplaceConsoleError & {
|
|
88282
88884
|
__typename?: 'MarketplaceConsoleKnownError';
|
|
88283
88885
|
id: Scalars['ID']['output'];
|
|
@@ -88452,6 +89054,7 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
88452
89054
|
editAppVersion?: Maybe<MarketplaceConsoleEditVersionMutationResponse>;
|
|
88453
89055
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
88454
89056
|
makeAppVersionPublic?: Maybe<MarketplaceConsoleMakeAppVersionPublicMutationOutput>;
|
|
89057
|
+
patchProductMigration?: Maybe<MarketplaceConsoleProductMigrationResponse>;
|
|
88455
89058
|
updateAppDetails?: Maybe<MarketplaceConsoleUpdateAppDetailsResponse>;
|
|
88456
89059
|
updateMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
88457
89060
|
validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
@@ -88499,6 +89102,10 @@ export declare type MarketplaceConsoleMutationApiEditionsArgs = {
|
|
|
88499
89102
|
export declare type MarketplaceConsoleMutationApiMakeAppVersionPublicArgs = {
|
|
88500
89103
|
makeAppVersionPublicRequest: MarketplaceConsoleMakeAppVersionPublicRequest;
|
|
88501
89104
|
};
|
|
89105
|
+
export declare type MarketplaceConsoleMutationApiPatchProductMigrationArgs = {
|
|
89106
|
+
operations: Array<MarketplaceConsoleJsonPatchOperation>;
|
|
89107
|
+
productId: Scalars['ID']['input'];
|
|
89108
|
+
};
|
|
88502
89109
|
export declare type MarketplaceConsoleMutationApiUpdateAppDetailsArgs = {
|
|
88503
89110
|
updateAppDetailsRequest: MarketplaceConsoleUpdateAppDetailsRequest;
|
|
88504
89111
|
};
|
|
@@ -88738,6 +89345,30 @@ export declare type MarketplaceConsoleProductMetadata = {
|
|
|
88738
89345
|
productId: Scalars['ID']['output'];
|
|
88739
89346
|
vendorId: Scalars['ID']['output'];
|
|
88740
89347
|
};
|
|
89348
|
+
export declare type MarketplaceConsoleProductMigration = {
|
|
89349
|
+
__typename?: 'MarketplaceConsoleProductMigration';
|
|
89350
|
+
addonKey?: Maybe<Scalars['String']['output']>;
|
|
89351
|
+
addonName?: Maybe<Scalars['String']['output']>;
|
|
89352
|
+
cloudAddonKey?: Maybe<Scalars['String']['output']>;
|
|
89353
|
+
cloudMigrationAssistantCompatibility?: Maybe<Scalars['String']['output']>;
|
|
89354
|
+
cloudMigrationAssistantCompatibilityRanges?: Maybe<Array<Maybe<MarketplaceConsoleCompatibilityRanges>>>;
|
|
89355
|
+
cloudVersionAvailability?: Maybe<Scalars['String']['output']>;
|
|
89356
|
+
cloudVersionDevelopmentRoadmap?: Maybe<Scalars['String']['output']>;
|
|
89357
|
+
developerId?: Maybe<Scalars['ID']['output']>;
|
|
89358
|
+
featureDifferenceDocumentation?: Maybe<Scalars['String']['output']>;
|
|
89359
|
+
isDualLicenseOptedIn?: Maybe<Scalars['Boolean']['output']>;
|
|
89360
|
+
migrationDocumentation?: Maybe<Scalars['String']['output']>;
|
|
89361
|
+
migrationPath?: Maybe<Scalars['String']['output']>;
|
|
89362
|
+
migrationRoadmapTicketLink?: Maybe<Scalars['String']['output']>;
|
|
89363
|
+
productId?: Maybe<Scalars['ID']['output']>;
|
|
89364
|
+
};
|
|
89365
|
+
export declare type MarketplaceConsoleProductMigrationError = MarketplaceConsoleError & {
|
|
89366
|
+
__typename?: 'MarketplaceConsoleProductMigrationError';
|
|
89367
|
+
id: Scalars['ID']['output'];
|
|
89368
|
+
message: Scalars['String']['output'];
|
|
89369
|
+
subCode?: Maybe<Scalars['String']['output']>;
|
|
89370
|
+
};
|
|
89371
|
+
export declare type MarketplaceConsoleProductMigrationResponse = MarketplaceConsoleProductMigration | MarketplaceConsoleProductMigrationError;
|
|
88741
89372
|
export declare type MarketplaceConsoleProductTag = {
|
|
88742
89373
|
__typename?: 'MarketplaceConsoleProductTag';
|
|
88743
89374
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -88768,6 +89399,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
88768
89399
|
developerSpaceByAppId?: Maybe<MarketplaceConsoleDevSpace>;
|
|
88769
89400
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
88770
89401
|
editionsActivationStatus?: Maybe<MarketplaceConsoleEditionsActivationResponse>;
|
|
89402
|
+
getBulkProductMigration?: Maybe<MarketplaceConsoleBulkProductMigrationResponse>;
|
|
88771
89403
|
makeAppVersionPublicChecks?: Maybe<MarketplaceConsoleMakeAppVersionPublicChecks>;
|
|
88772
89404
|
offerings?: Maybe<Array<Maybe<MarketplaceConsoleOffering>>>;
|
|
88773
89405
|
parentProductPricing?: Maybe<MarketplaceConsoleParentSoftwarePricing>;
|
|
@@ -88826,6 +89458,9 @@ export declare type MarketplaceConsoleQueryApiEditionsArgs = {
|
|
|
88826
89458
|
export declare type MarketplaceConsoleQueryApiEditionsActivationStatusArgs = {
|
|
88827
89459
|
product: MarketplaceConsoleEditionsInput;
|
|
88828
89460
|
};
|
|
89461
|
+
export declare type MarketplaceConsoleQueryApiGetBulkProductMigrationArgs = {
|
|
89462
|
+
productIds: Array<Scalars['ID']['input']>;
|
|
89463
|
+
};
|
|
88829
89464
|
export declare type MarketplaceConsoleQueryApiMakeAppVersionPublicChecksArgs = {
|
|
88830
89465
|
appId: Scalars['ID']['input'];
|
|
88831
89466
|
buildNumber: Scalars['ID']['input'];
|
|
@@ -89179,6 +89814,10 @@ export declare type MarketplaceStoreAnonymousUserLinks = {
|
|
|
89179
89814
|
__typename?: 'MarketplaceStoreAnonymousUserLinks';
|
|
89180
89815
|
login: Scalars['String']['output'];
|
|
89181
89816
|
};
|
|
89817
|
+
export declare type MarketplaceStoreAppDetailInput = {
|
|
89818
|
+
appId: Scalars['ID']['input'];
|
|
89819
|
+
appKey: Scalars['String']['input'];
|
|
89820
|
+
};
|
|
89182
89821
|
export declare type MarketplaceStoreAppDetails = MarketplaceStoreMultiInstanceDetails & {
|
|
89183
89822
|
__typename?: 'MarketplaceStoreAppDetails';
|
|
89184
89823
|
id: Scalars['ID']['output'];
|
|
@@ -89187,6 +89826,19 @@ export declare type MarketplaceStoreAppDetails = MarketplaceStoreMultiInstanceDe
|
|
|
89187
89826
|
multiInstanceEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
89188
89827
|
status?: Maybe<Scalars['String']['output']>;
|
|
89189
89828
|
};
|
|
89829
|
+
export declare type MarketplaceStoreAppInstallationNode = {
|
|
89830
|
+
__typename?: 'MarketplaceStoreAppInstallationNode';
|
|
89831
|
+
appId: Scalars['String']['output'];
|
|
89832
|
+
appKey: Scalars['String']['output'];
|
|
89833
|
+
createdByAccountId?: Maybe<Scalars['String']['output']>;
|
|
89834
|
+
id: Scalars['ID']['output'];
|
|
89835
|
+
installationContext: Scalars['String']['output'];
|
|
89836
|
+
};
|
|
89837
|
+
export declare type MarketplaceStoreAppInstallationsByAppResponse = {
|
|
89838
|
+
__typename?: 'MarketplaceStoreAppInstallationsByAppResponse';
|
|
89839
|
+
nodes: Array<MarketplaceStoreAppInstallationNode>;
|
|
89840
|
+
pageInfo: MarketplaceStorePageInfo;
|
|
89841
|
+
};
|
|
89190
89842
|
export declare type MarketplaceStoreAppSoftwareVersionListingLinks = {
|
|
89191
89843
|
__typename?: 'MarketplaceStoreAppSoftwareVersionListingLinks';
|
|
89192
89844
|
bonTermsSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -89308,11 +89960,22 @@ export declare type MarketplaceStoreCollectionUsecases = {
|
|
|
89308
89960
|
heading: Scalars['String']['output'];
|
|
89309
89961
|
values: Array<MarketplaceStoreCollectionUsecasesValues>;
|
|
89310
89962
|
};
|
|
89963
|
+
export declare type MarketplaceStoreCollectionUsecasesImage = {
|
|
89964
|
+
__typename?: 'MarketplaceStoreCollectionUsecasesImage';
|
|
89965
|
+
altText: Scalars['String']['output'];
|
|
89966
|
+
url: Scalars['String']['output'];
|
|
89967
|
+
};
|
|
89311
89968
|
export declare type MarketplaceStoreCollectionUsecasesValues = {
|
|
89312
89969
|
__typename?: 'MarketplaceStoreCollectionUsecasesValues';
|
|
89313
89970
|
description: Scalars['String']['output'];
|
|
89971
|
+
image?: Maybe<MarketplaceStoreCollectionUsecasesImage>;
|
|
89314
89972
|
title: Scalars['String']['output'];
|
|
89315
89973
|
};
|
|
89974
|
+
export declare type MarketplaceStoreCompatibilityRanges = {
|
|
89975
|
+
__typename?: 'MarketplaceStoreCompatibilityRanges';
|
|
89976
|
+
end?: Maybe<Scalars['String']['output']>;
|
|
89977
|
+
start?: Maybe<Scalars['String']['output']>;
|
|
89978
|
+
};
|
|
89316
89979
|
export declare type MarketplaceStoreCompatibleProducts = {
|
|
89317
89980
|
__typename?: 'MarketplaceStoreCompatibleProducts';
|
|
89318
89981
|
entitlementDetails?: Maybe<Array<Maybe<MarketplaceStoreEntitlementDetails>>>;
|
|
@@ -89510,6 +90173,7 @@ export declare type MarketplaceStoreHostStatusResponse = {
|
|
|
89510
90173
|
export declare type MarketplaceStoreInstallAppInput = {
|
|
89511
90174
|
appKey: Scalars['String']['input'];
|
|
89512
90175
|
chargeQuantity?: InputMaybe<Scalars['Int']['input']>;
|
|
90176
|
+
installationId?: InputMaybe<Scalars['String']['input']>;
|
|
89513
90177
|
offeringId?: InputMaybe<Scalars['String']['input']>;
|
|
89514
90178
|
target: MarketplaceStoreInstallAppTargetInput;
|
|
89515
90179
|
};
|
|
@@ -89672,6 +90336,11 @@ export declare type MarketplaceStoreOrgMultiInstanceEntitlement = {
|
|
|
89672
90336
|
cloudId: Scalars['String']['output'];
|
|
89673
90337
|
orgDetails?: Maybe<MarketplaceStoreOrgDetails>;
|
|
89674
90338
|
};
|
|
90339
|
+
export declare type MarketplaceStorePageInfo = {
|
|
90340
|
+
__typename?: 'MarketplaceStorePageInfo';
|
|
90341
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
90342
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
90343
|
+
};
|
|
89675
90344
|
export declare type MarketplaceStorePartnerAddress = {
|
|
89676
90345
|
__typename?: 'MarketplaceStorePartnerAddress';
|
|
89677
90346
|
city?: Maybe<Scalars['String']['output']>;
|
|
@@ -89811,8 +90480,33 @@ export declare type MarketplaceStoreProductListingScreenshot = {
|
|
|
89811
90480
|
caption?: Maybe<Scalars['String']['output']>;
|
|
89812
90481
|
image: MarketplaceStoreProductListingImage;
|
|
89813
90482
|
};
|
|
90483
|
+
export declare type MarketplaceStoreProductMigration = {
|
|
90484
|
+
__typename?: 'MarketplaceStoreProductMigration';
|
|
90485
|
+
addonKey?: Maybe<Scalars['String']['output']>;
|
|
90486
|
+
addonName?: Maybe<Scalars['String']['output']>;
|
|
90487
|
+
cloudAddonKey?: Maybe<Scalars['String']['output']>;
|
|
90488
|
+
cloudMigrationAssistantCompatibility?: Maybe<Scalars['String']['output']>;
|
|
90489
|
+
cloudMigrationAssistantCompatibilityRanges?: Maybe<Array<Maybe<MarketplaceStoreCompatibilityRanges>>>;
|
|
90490
|
+
cloudVersionAvailability?: Maybe<Scalars['String']['output']>;
|
|
90491
|
+
cloudVersionDevelopmentRoadmap?: Maybe<Scalars['String']['output']>;
|
|
90492
|
+
developerId?: Maybe<Scalars['ID']['output']>;
|
|
90493
|
+
featureDifferenceDocumentation?: Maybe<Scalars['String']['output']>;
|
|
90494
|
+
isDualLicenseOptedIn?: Maybe<Scalars['Boolean']['output']>;
|
|
90495
|
+
migrationDocumentation?: Maybe<Scalars['String']['output']>;
|
|
90496
|
+
migrationPath?: Maybe<Scalars['String']['output']>;
|
|
90497
|
+
migrationRoadmapTicketLink?: Maybe<Scalars['String']['output']>;
|
|
90498
|
+
productId?: Maybe<Scalars['ID']['output']>;
|
|
90499
|
+
};
|
|
90500
|
+
export declare type MarketplaceStoreProductMigrationError = {
|
|
90501
|
+
__typename?: 'MarketplaceStoreProductMigrationError';
|
|
90502
|
+
id: Scalars['ID']['output'];
|
|
90503
|
+
message: Scalars['String']['output'];
|
|
90504
|
+
subCode?: Maybe<Scalars['String']['output']>;
|
|
90505
|
+
};
|
|
90506
|
+
export declare type MarketplaceStoreProductMigrationResponse = MarketplaceStoreProductMigration | MarketplaceStoreProductMigrationError;
|
|
89814
90507
|
export declare type MarketplaceStoreQueryApi = {
|
|
89815
90508
|
__typename?: 'MarketplaceStoreQueryApi';
|
|
90509
|
+
appInstallationsByApp: MarketplaceStoreAppInstallationsByAppResponse;
|
|
89816
90510
|
appReviewById?: Maybe<MarketplaceStoreReviewByIdResponse>;
|
|
89817
90511
|
appReviewsByAppId: MarketplaceStoreReviewsResponse;
|
|
89818
90512
|
appReviewsByAppKey: MarketplaceStoreReviewsResponse;
|
|
@@ -89828,6 +90522,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
89828
90522
|
editionsByAppKey: Array<MarketplaceStoreEdition>;
|
|
89829
90523
|
eligibleOfferingsForApp: MarketplaceStoreEligibleAppOfferingsResponse;
|
|
89830
90524
|
geoip: MarketplaceStoreGeoIpResponse;
|
|
90525
|
+
getProductMigration: MarketplaceStoreProductMigrationResponse;
|
|
89831
90526
|
homePage: MarketplaceStoreHomePageResponse;
|
|
89832
90527
|
hostStatus: MarketplaceStoreHostStatusResponse;
|
|
89833
90528
|
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
@@ -89838,6 +90533,11 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
89838
90533
|
orgId: MarketplaceStoreOrgIdResponse;
|
|
89839
90534
|
partner: MarketplaceStorePartnerResponse;
|
|
89840
90535
|
siteDetails: MarketplaceStoreSiteDetailsResponse;
|
|
90536
|
+
userProfile: MarketplaceStoreUserProfileResponse;
|
|
90537
|
+
};
|
|
90538
|
+
export declare type MarketplaceStoreQueryApiAppInstallationsByAppArgs = {
|
|
90539
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90540
|
+
appDetails: Array<MarketplaceStoreAppDetailInput>;
|
|
89841
90541
|
};
|
|
89842
90542
|
export declare type MarketplaceStoreQueryApiAppReviewByIdArgs = {
|
|
89843
90543
|
appKey: Scalars['String']['input'];
|
|
@@ -89889,6 +90589,9 @@ export declare type MarketplaceStoreQueryApiEditionsByAppKeyArgs = {
|
|
|
89889
90589
|
export declare type MarketplaceStoreQueryApiEligibleOfferingsForAppArgs = {
|
|
89890
90590
|
input: MarketplaceStoreEligibleAppOfferingsInput;
|
|
89891
90591
|
};
|
|
90592
|
+
export declare type MarketplaceStoreQueryApiGetProductMigrationArgs = {
|
|
90593
|
+
productId: Scalars['ID']['input'];
|
|
90594
|
+
};
|
|
89892
90595
|
export declare type MarketplaceStoreQueryApiHomePageArgs = {
|
|
89893
90596
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
89894
90597
|
};
|
|
@@ -89922,6 +90625,9 @@ export declare type MarketplaceStoreQueryApiPartnerArgs = {
|
|
|
89922
90625
|
export declare type MarketplaceStoreQueryApiSiteDetailsArgs = {
|
|
89923
90626
|
input: MarketplaceStoreSiteDetailsInput;
|
|
89924
90627
|
};
|
|
90628
|
+
export declare type MarketplaceStoreQueryApiUserProfileArgs = {
|
|
90629
|
+
userId: Scalars['String']['input'];
|
|
90630
|
+
};
|
|
89925
90631
|
export declare type MarketplaceStoreReviewAuthor = {
|
|
89926
90632
|
__typename?: 'MarketplaceStoreReviewAuthor';
|
|
89927
90633
|
id: Scalars['ID']['output'];
|
|
@@ -90003,6 +90709,14 @@ export declare type MarketplaceStoreUpdateReviewVoteResponse = {
|
|
|
90003
90709
|
id: Scalars['ID']['output'];
|
|
90004
90710
|
status?: Maybe<Scalars['String']['output']>;
|
|
90005
90711
|
};
|
|
90712
|
+
export declare type MarketplaceStoreUserProfileResponse = {
|
|
90713
|
+
__typename?: 'MarketplaceStoreUserProfileResponse';
|
|
90714
|
+
developerSpaces?: Maybe<Array<MarketplaceStoreLoggedInUserDeveloperSpace>>;
|
|
90715
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
90716
|
+
id: Scalars['ID']['output'];
|
|
90717
|
+
name: Scalars['String']['output'];
|
|
90718
|
+
picture: Scalars['String']['output'];
|
|
90719
|
+
};
|
|
90006
90720
|
export declare type MarketplaceSupportedAtlassianProduct = {
|
|
90007
90721
|
__typename?: 'MarketplaceSupportedAtlassianProduct';
|
|
90008
90722
|
hostingOptions: Array<AtlassianProductHostingType>;
|
|
@@ -90149,6 +90863,16 @@ export declare type MercuryArchiveFocusAreaValidationPayload = Payload & {
|
|
|
90149
90863
|
errors?: Maybe<Array<MutationError>>;
|
|
90150
90864
|
success: Scalars['Boolean']['output'];
|
|
90151
90865
|
};
|
|
90866
|
+
export declare type MercuryAssignUserAccessToFocusAreaInput = {
|
|
90867
|
+
focusAreaAri: Scalars['ID']['input'];
|
|
90868
|
+
focusAreaUserAccessAssignment: Array<InputMaybe<MercuryFocusAreaUserAccessInput>>;
|
|
90869
|
+
};
|
|
90870
|
+
export declare type MercuryAssignUserAccessToFocusAreaPayload = Payload & {
|
|
90871
|
+
__typename?: 'MercuryAssignUserAccessToFocusAreaPayload';
|
|
90872
|
+
errors?: Maybe<Array<MutationError>>;
|
|
90873
|
+
focusAreaUserAccessAssignment?: Maybe<Array<Maybe<MercuryFocusAreaUserAccessMutation>>>;
|
|
90874
|
+
success: Scalars['Boolean']['output'];
|
|
90875
|
+
};
|
|
90152
90876
|
export declare type MercuryBudgetAggregation = {
|
|
90153
90877
|
__typename?: 'MercuryBudgetAggregation';
|
|
90154
90878
|
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
@@ -91321,6 +92045,34 @@ export declare type MercuryFocusAreaType = {
|
|
|
91321
92045
|
id: Scalars['ID']['output'];
|
|
91322
92046
|
name: Scalars['String']['output'];
|
|
91323
92047
|
};
|
|
92048
|
+
export declare type MercuryFocusAreaUserAccess = {
|
|
92049
|
+
__typename?: 'MercuryFocusAreaUserAccess';
|
|
92050
|
+
accessLevel?: Maybe<MercuryFocusAreaUserAccessLevel>;
|
|
92051
|
+
accessReason?: Maybe<MercuryFocusAreaUserAccessReason>;
|
|
92052
|
+
hasAccess: Scalars['Boolean']['output'];
|
|
92053
|
+
user?: Maybe<User>;
|
|
92054
|
+
};
|
|
92055
|
+
export declare type MercuryFocusAreaUserAccessInput = {
|
|
92056
|
+
accessLevel?: InputMaybe<MercuryFocusAreaUserAccessLevel>;
|
|
92057
|
+
addAsFollower?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92058
|
+
principalId: Scalars['ID']['input'];
|
|
92059
|
+
};
|
|
92060
|
+
export declare enum MercuryFocusAreaUserAccessLevel {
|
|
92061
|
+
Edit = "EDIT",
|
|
92062
|
+
View = "VIEW"
|
|
92063
|
+
}
|
|
92064
|
+
export declare type MercuryFocusAreaUserAccessMutation = {
|
|
92065
|
+
__typename?: 'MercuryFocusAreaUserAccessMutation';
|
|
92066
|
+
addedAsFollower?: Maybe<Scalars['Boolean']['output']>;
|
|
92067
|
+
userAccess?: Maybe<MercuryFocusAreaUserAccess>;
|
|
92068
|
+
};
|
|
92069
|
+
export declare enum MercuryFocusAreaUserAccessReason {
|
|
92070
|
+
AccessGranted = "ACCESS_GRANTED",
|
|
92071
|
+
AlreadyHasAccess = "ALREADY_HAS_ACCESS",
|
|
92072
|
+
RequiresAppAccess = "REQUIRES_APP_ACCESS",
|
|
92073
|
+
RequiresNewProductRole = "REQUIRES_NEW_PRODUCT_ROLE",
|
|
92074
|
+
RequiresSiteAccess = "REQUIRES_SITE_ACCESS"
|
|
92075
|
+
}
|
|
91324
92076
|
export declare type MercuryFocusAreaWorkContext = {
|
|
91325
92077
|
__typename?: 'MercuryFocusAreaWorkContext';
|
|
91326
92078
|
focusAreaLinkedWorkContext?: Maybe<Array<Maybe<MercuryFocusAreaLinkedWorkContextData>>>;
|
|
@@ -91364,6 +92116,9 @@ export declare type MercuryFundsMutationApi = {
|
|
|
91364
92116
|
deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
|
|
91365
92117
|
deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
|
|
91366
92118
|
deleteInvestmentCategorySet?: Maybe<MercuryDeleteInvestmentCategorySetPayload>;
|
|
92119
|
+
updateCostSubtypeDescription?: Maybe<MercuryUpdateCostSubtypePayload>;
|
|
92120
|
+
updateCostSubtypeKey?: Maybe<MercuryUpdateCostSubtypePayload>;
|
|
92121
|
+
updateCostSubtypeName?: Maybe<MercuryUpdateCostSubtypePayload>;
|
|
91367
92122
|
updateInvestmentCategoryDescription?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
91368
92123
|
updateInvestmentCategoryKey?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
91369
92124
|
updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
@@ -91390,6 +92145,15 @@ export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
|
|
|
91390
92145
|
export declare type MercuryFundsMutationApiDeleteInvestmentCategorySetArgs = {
|
|
91391
92146
|
input: MercuryDeleteInvestmentCategorySetInput;
|
|
91392
92147
|
};
|
|
92148
|
+
export declare type MercuryFundsMutationApiUpdateCostSubtypeDescriptionArgs = {
|
|
92149
|
+
input: MercuryUpdateCostSubtypeDescriptionInput;
|
|
92150
|
+
};
|
|
92151
|
+
export declare type MercuryFundsMutationApiUpdateCostSubtypeKeyArgs = {
|
|
92152
|
+
input: MercuryUpdateCostSubtypeKeyInput;
|
|
92153
|
+
};
|
|
92154
|
+
export declare type MercuryFundsMutationApiUpdateCostSubtypeNameArgs = {
|
|
92155
|
+
input: MercuryUpdateCostSubtypeNameInput;
|
|
92156
|
+
};
|
|
91393
92157
|
export declare type MercuryFundsMutationApiUpdateInvestmentCategoryDescriptionArgs = {
|
|
91394
92158
|
input: MercuryUpdateInvestmentCategoryDescriptionInput;
|
|
91395
92159
|
};
|
|
@@ -91404,6 +92168,7 @@ export declare type MercuryFundsMutationApiUpdateInvestmentCategorySetNameArgs =
|
|
|
91404
92168
|
};
|
|
91405
92169
|
export declare type MercuryFundsQueryApi = {
|
|
91406
92170
|
__typename?: 'MercuryFundsQueryApi';
|
|
92171
|
+
activeFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
91407
92172
|
costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
|
|
91408
92173
|
costSubtypesSearch?: Maybe<MercuryCostSubtypeConnection>;
|
|
91409
92174
|
fiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
@@ -91413,6 +92178,9 @@ export declare type MercuryFundsQueryApi = {
|
|
|
91413
92178
|
investmentCategorySets?: Maybe<Array<Maybe<MercuryInvestmentCategorySet>>>;
|
|
91414
92179
|
investmentCategorySetsSearch?: Maybe<MercuryInvestmentCategorySetConnection>;
|
|
91415
92180
|
};
|
|
92181
|
+
export declare type MercuryFundsQueryApiActiveFiscalCalendarConfigurationArgs = {
|
|
92182
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
92183
|
+
};
|
|
91416
92184
|
export declare type MercuryFundsQueryApiCostSubtypesArgs = {
|
|
91417
92185
|
ids: Array<Scalars['ID']['input']>;
|
|
91418
92186
|
};
|
|
@@ -91431,7 +92199,7 @@ export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsArgs = {
|
|
|
91431
92199
|
};
|
|
91432
92200
|
export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsSearchArgs = {
|
|
91433
92201
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91434
|
-
cloudId
|
|
92202
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
91435
92203
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91436
92204
|
sort?: InputMaybe<Array<InputMaybe<MercuryFiscalCalendarConfigurationSort>>>;
|
|
91437
92205
|
};
|
|
@@ -91670,6 +92438,7 @@ export declare type MercuryMutationApi = {
|
|
|
91670
92438
|
__typename?: 'MercuryMutationApi';
|
|
91671
92439
|
addWatcherToFocusArea?: Maybe<MercuryAddWatcherToFocusAreaPayload>;
|
|
91672
92440
|
archiveFocusArea?: Maybe<MercuryArchiveFocusAreaPayload>;
|
|
92441
|
+
assignUserAccessToFocusArea?: Maybe<MercuryAssignUserAccessToFocusAreaPayload>;
|
|
91673
92442
|
createComment?: Maybe<MercuryCreateCommentPayload>;
|
|
91674
92443
|
createFocusArea?: Maybe<MercuryCreateFocusAreaPayload>;
|
|
91675
92444
|
createFocusAreaCustomFieldDefinition?: Maybe<MercuryCreateCustomFieldDefinitionPayload>;
|
|
@@ -91691,6 +92460,7 @@ export declare type MercuryMutationApi = {
|
|
|
91691
92460
|
linkGoalsToFocusArea?: Maybe<MercuryLinkGoalsToFocusAreaPayload>;
|
|
91692
92461
|
publishFocusArea?: Maybe<MercuryPublishFocusAreaPayload>;
|
|
91693
92462
|
recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
92463
|
+
removeUserAccessToFocusArea?: Maybe<MercuryRemoveUserAccessToFocusAreaPayload>;
|
|
91694
92464
|
removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
|
|
91695
92465
|
setFocusAreaCustomFieldValue?: Maybe<MercurySetFocusAreaCustomFieldPayload>;
|
|
91696
92466
|
setPreference?: Maybe<MercurySetPreferencePayload>;
|
|
@@ -91698,6 +92468,7 @@ export declare type MercuryMutationApi = {
|
|
|
91698
92468
|
unarchiveFocusArea?: Maybe<MercuryUnarchiveFocusAreaPayload>;
|
|
91699
92469
|
updateComment?: Maybe<MercuryUpdateCommentPayload>;
|
|
91700
92470
|
updateFocusAreaAboutContent?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
92471
|
+
updateFocusAreaCustomFieldDefinitionDescription?: Maybe<MercuryUpdateCustomFieldDefinitionDescriptionPayload>;
|
|
91701
92472
|
updateFocusAreaCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
91702
92473
|
updateFocusAreaName?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
91703
92474
|
updateFocusAreaOwner?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
@@ -91713,6 +92484,9 @@ export declare type MercuryMutationApiAddWatcherToFocusAreaArgs = {
|
|
|
91713
92484
|
export declare type MercuryMutationApiArchiveFocusAreaArgs = {
|
|
91714
92485
|
input: MercuryArchiveFocusAreaInput;
|
|
91715
92486
|
};
|
|
92487
|
+
export declare type MercuryMutationApiAssignUserAccessToFocusAreaArgs = {
|
|
92488
|
+
input: MercuryAssignUserAccessToFocusAreaInput;
|
|
92489
|
+
};
|
|
91716
92490
|
export declare type MercuryMutationApiCreateCommentArgs = {
|
|
91717
92491
|
input: MercuryCreateCommentInput;
|
|
91718
92492
|
};
|
|
@@ -91776,6 +92550,9 @@ export declare type MercuryMutationApiPublishFocusAreaArgs = {
|
|
|
91776
92550
|
export declare type MercuryMutationApiRecreatePortfolioFocusAreasArgs = {
|
|
91777
92551
|
input: MercuryRecreatePortfolioFocusAreasInput;
|
|
91778
92552
|
};
|
|
92553
|
+
export declare type MercuryMutationApiRemoveUserAccessToFocusAreaArgs = {
|
|
92554
|
+
input: MercuryRemoveUserAccessToFocusAreaInput;
|
|
92555
|
+
};
|
|
91779
92556
|
export declare type MercuryMutationApiRemoveWatcherFromFocusAreaArgs = {
|
|
91780
92557
|
input: MercuryRemoveWatcherFromFocusAreaInput;
|
|
91781
92558
|
};
|
|
@@ -91797,6 +92574,9 @@ export declare type MercuryMutationApiUpdateCommentArgs = {
|
|
|
91797
92574
|
export declare type MercuryMutationApiUpdateFocusAreaAboutContentArgs = {
|
|
91798
92575
|
input: MercuryUpdateFocusAreaAboutContentInput;
|
|
91799
92576
|
};
|
|
92577
|
+
export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionDescriptionArgs = {
|
|
92578
|
+
input: MercuryUpdateCustomFieldDefinitionDescriptionInput;
|
|
92579
|
+
};
|
|
91800
92580
|
export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionNameArgs = {
|
|
91801
92581
|
input: MercuryUpdateCustomFieldDefinitionNameInput;
|
|
91802
92582
|
};
|
|
@@ -92369,6 +93149,15 @@ export declare type MercuryRemoveTagsFromProposalPayload = Payload & {
|
|
|
92369
93149
|
success: Scalars['Boolean']['output'];
|
|
92370
93150
|
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
92371
93151
|
};
|
|
93152
|
+
export declare type MercuryRemoveUserAccessToFocusAreaInput = {
|
|
93153
|
+
focusAreaAri: Scalars['ID']['input'];
|
|
93154
|
+
principalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
93155
|
+
};
|
|
93156
|
+
export declare type MercuryRemoveUserAccessToFocusAreaPayload = Payload & {
|
|
93157
|
+
__typename?: 'MercuryRemoveUserAccessToFocusAreaPayload';
|
|
93158
|
+
errors?: Maybe<Array<MutationError>>;
|
|
93159
|
+
success: Scalars['Boolean']['output'];
|
|
93160
|
+
};
|
|
92372
93161
|
export declare type MercuryRemoveWatcherFromFocusAreaInput = {
|
|
92373
93162
|
cloudId: Scalars['ID']['input'];
|
|
92374
93163
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -93084,6 +93873,34 @@ export declare type MercuryUpdateCommentPayload = Payload & {
|
|
|
93084
93873
|
success: Scalars['Boolean']['output'];
|
|
93085
93874
|
updatedComment?: Maybe<MercuryComment>;
|
|
93086
93875
|
};
|
|
93876
|
+
export declare type MercuryUpdateCostSubtypeDescriptionInput = {
|
|
93877
|
+
description: Scalars['String']['input'];
|
|
93878
|
+
id: Scalars['ID']['input'];
|
|
93879
|
+
};
|
|
93880
|
+
export declare type MercuryUpdateCostSubtypeKeyInput = {
|
|
93881
|
+
id: Scalars['ID']['input'];
|
|
93882
|
+
key: Scalars['String']['input'];
|
|
93883
|
+
};
|
|
93884
|
+
export declare type MercuryUpdateCostSubtypeNameInput = {
|
|
93885
|
+
id: Scalars['ID']['input'];
|
|
93886
|
+
name: Scalars['String']['input'];
|
|
93887
|
+
};
|
|
93888
|
+
export declare type MercuryUpdateCostSubtypePayload = Payload & {
|
|
93889
|
+
__typename?: 'MercuryUpdateCostSubtypePayload';
|
|
93890
|
+
errors?: Maybe<Array<MutationError>>;
|
|
93891
|
+
success: Scalars['Boolean']['output'];
|
|
93892
|
+
updatedCostSubtype?: Maybe<MercuryCostSubtype>;
|
|
93893
|
+
};
|
|
93894
|
+
export declare type MercuryUpdateCustomFieldDefinitionDescriptionInput = {
|
|
93895
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
93896
|
+
id: Scalars['ID']['input'];
|
|
93897
|
+
};
|
|
93898
|
+
export declare type MercuryUpdateCustomFieldDefinitionDescriptionPayload = Payload & {
|
|
93899
|
+
__typename?: 'MercuryUpdateCustomFieldDefinitionDescriptionPayload';
|
|
93900
|
+
customFieldDefinition?: Maybe<MercuryCustomFieldDefinition>;
|
|
93901
|
+
errors?: Maybe<Array<MutationError>>;
|
|
93902
|
+
success: Scalars['Boolean']['output'];
|
|
93903
|
+
};
|
|
93087
93904
|
export declare type MercuryUpdateCustomFieldDefinitionNameInput = {
|
|
93088
93905
|
id: Scalars['ID']['input'];
|
|
93089
93906
|
name: Scalars['String']['input'];
|
|
@@ -93623,6 +94440,7 @@ export declare type Mutation = {
|
|
|
93623
94440
|
avp_updateChart?: Maybe<AvpUpdateChartPayload>;
|
|
93624
94441
|
avp_updateDashboard?: Maybe<AvpUpdateDashboardPayload>;
|
|
93625
94442
|
avp_updateDashboardFilter?: Maybe<AvpUpdateDashboardFilterPayload>;
|
|
94443
|
+
avp_updateDashboardResourcePermission?: Maybe<AvpUpdateDashboardResourcePermissionPayload>;
|
|
93626
94444
|
avp_updateDashboardRowHeight?: Maybe<AvpUpdateDashboardRowHeightPayload>;
|
|
93627
94445
|
avp_updateDashboardRowNumElements?: Maybe<AvpUpdateDashboardRowNumElementsPayload>;
|
|
93628
94446
|
avp_updateDashboardStatus?: Maybe<AvpUpdateDashboardStatusPayload>;
|
|
@@ -93650,6 +94468,7 @@ export declare type Mutation = {
|
|
|
93650
94468
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
93651
94469
|
confluence_acceptAnswer?: Maybe<ConfluenceAcceptAnswerPayload>;
|
|
93652
94470
|
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
94471
|
+
confluence_addTrack?: Maybe<ConfluenceAddTrackPayload>;
|
|
93653
94472
|
confluence_batchFollowTeammates?: Maybe<ConfluenceBatchFollowTeammatesPayload>;
|
|
93654
94473
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
93655
94474
|
confluence_convertNote?: Maybe<ConfluenceConvertNotePayload>;
|
|
@@ -93696,7 +94515,9 @@ export declare type Mutation = {
|
|
|
93696
94515
|
confluence_nbmStartVerificationLongTask?: Maybe<ConfluenceNbmStartVerificationLongTaskPayload>;
|
|
93697
94516
|
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
93698
94517
|
confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
|
|
94518
|
+
confluence_removeTrack?: Maybe<ConfluenceRemoveTrackPayload>;
|
|
93699
94519
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
94520
|
+
confluence_reorderTracks?: Maybe<ConfluenceReorderTrackPayload>;
|
|
93700
94521
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
93701
94522
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
93702
94523
|
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
@@ -93891,16 +94712,21 @@ export declare type Mutation = {
|
|
|
93891
94712
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
93892
94713
|
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
93893
94714
|
goals_addProjectLink?: Maybe<TownsquareAddProjectLinkPayload>;
|
|
94715
|
+
goals_archiveMetric?: Maybe<TownsquareGoalsArchiveMetricPayload>;
|
|
93894
94716
|
goals_clone?: Maybe<TownsquareGoalsClonePayload>;
|
|
93895
94717
|
goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
|
|
93896
94718
|
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
93897
94719
|
goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
|
|
94720
|
+
goals_editComment?: Maybe<TownsquareGoalsEditCommentPayload>;
|
|
93898
94721
|
goals_editMetric?: Maybe<TownsquareGoalsEditMetricPayload>;
|
|
93899
94722
|
goals_editMetricTarget?: Maybe<TownsquareGoalsEditMetricTargetPayload>;
|
|
93900
94723
|
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
94724
|
+
goals_linkWorkItem?: Maybe<TownsquareGoalsLinkWorkItemPayload>;
|
|
93901
94725
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
94726
|
+
goals_removeMetricTarget?: Maybe<TownsquareGoalsRemoveMetricTargetPayload>;
|
|
93902
94727
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
93903
94728
|
goals_shareGoal?: Maybe<TownsquareGoalsShareGoalPayload>;
|
|
94729
|
+
goals_unlinkWorkItem?: Maybe<TownsquareGoalsUnlinkWorkItemPayload>;
|
|
93904
94730
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
93905
94731
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
93906
94732
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
@@ -93957,6 +94783,7 @@ export declare type Mutation = {
|
|
|
93957
94783
|
jira_deleteIssueType?: Maybe<JiraDeleteIssueTypePayload>;
|
|
93958
94784
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
93959
94785
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
94786
|
+
jira_dismissAiAgentSession?: Maybe<JiraDismissAiAgentSessionPayload>;
|
|
93960
94787
|
jira_dismissSuggestions?: Maybe<JiraDismissSuggestionActionsPayload>;
|
|
93961
94788
|
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
93962
94789
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
@@ -94004,6 +94831,7 @@ export declare type Mutation = {
|
|
|
94004
94831
|
jira_setIssueSearchFieldSets?: Maybe<JiraSetIssueSearchFieldSetsPayload>;
|
|
94005
94832
|
jira_setIssueSearchGroupBy?: Maybe<JiraSetIssueSearchGroupByPayload>;
|
|
94006
94833
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
94834
|
+
jira_setIssueSearchHideWarnings?: Maybe<JiraSetIssueSearchHideWarningsPayload>;
|
|
94007
94835
|
jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
|
|
94008
94836
|
jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
|
|
94009
94837
|
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
@@ -94135,6 +94963,7 @@ export declare type Mutation = {
|
|
|
94135
94963
|
revertToLegacyEditor?: Maybe<RevertToLegacyEditorResult>;
|
|
94136
94964
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
94137
94965
|
runImport?: Maybe<RunImportPayload>;
|
|
94966
|
+
sendMessage?: Maybe<AquaMessage>;
|
|
94138
94967
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
94139
94968
|
setAppLicenseId?: Maybe<SetAppLicenseIdResponse>;
|
|
94140
94969
|
setBatchedTaskStatus?: Maybe<GraphQlMutationResponse>;
|
|
@@ -94171,6 +95000,7 @@ export declare type Mutation = {
|
|
|
94171
95000
|
shardedGraphStore?: Maybe<ShardedGraphStoreMutation>;
|
|
94172
95001
|
shareResource?: Maybe<ShareResourcePayload>;
|
|
94173
95002
|
shepherd?: Maybe<ShepherdMutation>;
|
|
95003
|
+
signInvocationTokenForUI?: Maybe<SignInvocationTokenForUiResponse>;
|
|
94174
95004
|
softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
|
|
94175
95005
|
spf_attachAskLink?: Maybe<SpfAttachAskLinkPayload>;
|
|
94176
95006
|
spf_createAsk?: Maybe<SpfUpsertAskPayload>;
|
|
@@ -94203,6 +95033,8 @@ export declare type Mutation = {
|
|
|
94203
95033
|
stakeholderComms_createPage?: Maybe<StakeholderCommsPageResponse>;
|
|
94204
95034
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
94205
95035
|
stakeholderComms_createStakeholderGroupAndMembers?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
|
|
95036
|
+
stakeholderComms_deleteDraftPage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
95037
|
+
stakeholderComms_deletePage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
94206
95038
|
stakeholderComms_deleteStakeholder?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
94207
95039
|
stakeholderComms_publishPage?: Maybe<StakeholderCommsPageResponse>;
|
|
94208
95040
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
@@ -94676,6 +95508,9 @@ export declare type MutationAvp_UpdateDashboardArgs = {
|
|
|
94676
95508
|
export declare type MutationAvp_UpdateDashboardFilterArgs = {
|
|
94677
95509
|
input: AvpUpdateDashboardFilterInput;
|
|
94678
95510
|
};
|
|
95511
|
+
export declare type MutationAvp_UpdateDashboardResourcePermissionArgs = {
|
|
95512
|
+
input: AvpUpdateDashboardResourcePermissionInput;
|
|
95513
|
+
};
|
|
94679
95514
|
export declare type MutationAvp_UpdateDashboardRowHeightArgs = {
|
|
94680
95515
|
input: AvpUpdateDashboardRowHeightInput;
|
|
94681
95516
|
};
|
|
@@ -94761,6 +95596,10 @@ export declare type MutationConfluence_AddReactionArgs = {
|
|
|
94761
95596
|
cloudId: Scalars['ID']['input'];
|
|
94762
95597
|
input: ConfluenceReactionInput;
|
|
94763
95598
|
};
|
|
95599
|
+
export declare type MutationConfluence_AddTrackArgs = {
|
|
95600
|
+
cloudId: Scalars['ID']['input'];
|
|
95601
|
+
input: ConfluenceAddTrackInput;
|
|
95602
|
+
};
|
|
94764
95603
|
export declare type MutationConfluence_BatchFollowTeammatesArgs = {
|
|
94765
95604
|
cloudId: Scalars['ID']['input'];
|
|
94766
95605
|
input: ConfluenceBatchFollowTeammatesInput;
|
|
@@ -94942,10 +95781,18 @@ export declare type MutationConfluence_PublishBlueprintSharedDraftArgs = {
|
|
|
94942
95781
|
cloudId: Scalars['ID']['input'];
|
|
94943
95782
|
input?: InputMaybe<ConfluencePublishBlueprintSharedDraftInput>;
|
|
94944
95783
|
};
|
|
95784
|
+
export declare type MutationConfluence_RemoveTrackArgs = {
|
|
95785
|
+
cloudId: Scalars['ID']['input'];
|
|
95786
|
+
input: ConfluenceTrackInput;
|
|
95787
|
+
};
|
|
94945
95788
|
export declare type MutationConfluence_ReopenCommentArgs = {
|
|
94946
95789
|
cloudId: Scalars['ID']['input'];
|
|
94947
95790
|
commentId: Scalars['ID']['input'];
|
|
94948
95791
|
};
|
|
95792
|
+
export declare type MutationConfluence_ReorderTracksArgs = {
|
|
95793
|
+
cloudId: Scalars['ID']['input'];
|
|
95794
|
+
input: ConfluenceReorderTrackInput;
|
|
95795
|
+
};
|
|
94949
95796
|
export declare type MutationConfluence_ResolveCommentsArgs = {
|
|
94950
95797
|
cloudId: Scalars['ID']['input'];
|
|
94951
95798
|
commentIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
@@ -95637,6 +96484,9 @@ export declare type MutationGoals_AddGoalTeamLinkArgs = {
|
|
|
95637
96484
|
export declare type MutationGoals_AddProjectLinkArgs = {
|
|
95638
96485
|
input: TownsquareAddProjectLinkInput;
|
|
95639
96486
|
};
|
|
96487
|
+
export declare type MutationGoals_ArchiveMetricArgs = {
|
|
96488
|
+
input: TownsquareGoalsArchiveMetricInput;
|
|
96489
|
+
};
|
|
95640
96490
|
export declare type MutationGoals_CloneArgs = {
|
|
95641
96491
|
input: TownsquareGoalsCloneInput;
|
|
95642
96492
|
};
|
|
@@ -95649,6 +96499,9 @@ export declare type MutationGoals_CreateUpdateArgs = {
|
|
|
95649
96499
|
export declare type MutationGoals_DeleteLatestUpdateArgs = {
|
|
95650
96500
|
input?: InputMaybe<TownsquareGoalsDeleteLatestUpdateInput>;
|
|
95651
96501
|
};
|
|
96502
|
+
export declare type MutationGoals_EditCommentArgs = {
|
|
96503
|
+
input: TownsquareGoalsEditCommentInput;
|
|
96504
|
+
};
|
|
95652
96505
|
export declare type MutationGoals_EditMetricArgs = {
|
|
95653
96506
|
input: TownsquareGoalsEditMetricInput;
|
|
95654
96507
|
};
|
|
@@ -95658,15 +96511,24 @@ export declare type MutationGoals_EditMetricTargetArgs = {
|
|
|
95658
96511
|
export declare type MutationGoals_EditUpdateArgs = {
|
|
95659
96512
|
input?: InputMaybe<TownsquareGoalsEditUpdateInput>;
|
|
95660
96513
|
};
|
|
96514
|
+
export declare type MutationGoals_LinkWorkItemArgs = {
|
|
96515
|
+
input: TownsquareGoalsLinkWorkItemInput;
|
|
96516
|
+
};
|
|
95661
96517
|
export declare type MutationGoals_RemoveGoalTeamLinkArgs = {
|
|
95662
96518
|
input?: InputMaybe<TownsquareGoalsRemoveGoalTeamLinkInput>;
|
|
95663
96519
|
};
|
|
96520
|
+
export declare type MutationGoals_RemoveMetricTargetArgs = {
|
|
96521
|
+
input: TownsquareGoalsRemoveMetricTargetInput;
|
|
96522
|
+
};
|
|
95664
96523
|
export declare type MutationGoals_SetWatchingGoalArgs = {
|
|
95665
96524
|
input?: InputMaybe<TownsquareGoalsSetWatchingGoalInput>;
|
|
95666
96525
|
};
|
|
95667
96526
|
export declare type MutationGoals_ShareGoalArgs = {
|
|
95668
96527
|
input: TownsquareGoalsShareGoalInput;
|
|
95669
96528
|
};
|
|
96529
|
+
export declare type MutationGoals_UnlinkWorkItemArgs = {
|
|
96530
|
+
input?: InputMaybe<TownsquareGoalsUnlinkWorkItemInput>;
|
|
96531
|
+
};
|
|
95670
96532
|
export declare type MutationGrantContentAccessArgs = {
|
|
95671
96533
|
grantContentAccessInput: GrantContentAccessInput;
|
|
95672
96534
|
};
|
|
@@ -95828,6 +96690,9 @@ export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
|
95828
96690
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
95829
96691
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
95830
96692
|
};
|
|
96693
|
+
export declare type MutationJira_DismissAiAgentSessionArgs = {
|
|
96694
|
+
input?: InputMaybe<JiraDismissAiAgentSessionInput>;
|
|
96695
|
+
};
|
|
95831
96696
|
export declare type MutationJira_DismissSuggestionsArgs = {
|
|
95832
96697
|
input: JiraDismissSuggestionsInput;
|
|
95833
96698
|
};
|
|
@@ -95975,6 +96840,9 @@ export declare type MutationJira_SetIssueSearchGroupByArgs = {
|
|
|
95975
96840
|
export declare type MutationJira_SetIssueSearchHideDoneItemsArgs = {
|
|
95976
96841
|
input: JiraSetIssueSearchHideDoneItemsInput;
|
|
95977
96842
|
};
|
|
96843
|
+
export declare type MutationJira_SetIssueSearchHideWarningsArgs = {
|
|
96844
|
+
input: JiraSetIssueSearchHideWarningsInput;
|
|
96845
|
+
};
|
|
95978
96846
|
export declare type MutationJira_SetIssueSearchHierarchyEnabledArgs = {
|
|
95979
96847
|
input: JiraSetIssueSearchHierarchyEnabledInput;
|
|
95980
96848
|
};
|
|
@@ -96364,6 +97232,10 @@ export declare type MutationRevertToLegacyEditorArgs = {
|
|
|
96364
97232
|
export declare type MutationRunImportArgs = {
|
|
96365
97233
|
input: RunImportInput;
|
|
96366
97234
|
};
|
|
97235
|
+
export declare type MutationSendMessageArgs = {
|
|
97236
|
+
conversationId: Scalars['String']['input'];
|
|
97237
|
+
input: AquaSendMessageInput;
|
|
97238
|
+
};
|
|
96367
97239
|
export declare type MutationSetAppEnvironmentVariableArgs = {
|
|
96368
97240
|
input: SetAppEnvironmentVariableInput;
|
|
96369
97241
|
};
|
|
@@ -96481,6 +97353,9 @@ export declare type MutationSettings_UpdateUserPreferencesWorkspaceArgs = {
|
|
|
96481
97353
|
export declare type MutationShareResourceArgs = {
|
|
96482
97354
|
shareResourceInput: ShareResourceInput;
|
|
96483
97355
|
};
|
|
97356
|
+
export declare type MutationSignInvocationTokenForUiArgs = {
|
|
97357
|
+
input: SignInvocationTokenForUiInput;
|
|
97358
|
+
};
|
|
96484
97359
|
export declare type MutationSoftDeleteSpaceArgs = {
|
|
96485
97360
|
spaceKey: Scalars['String']['input'];
|
|
96486
97361
|
};
|
|
@@ -96581,6 +97456,12 @@ export declare type MutationStakeholderComms_CreateStakeholderGroupAndMembersArg
|
|
|
96581
97456
|
stakeholderGroupInput: StakeholderCommsCreateStakeholderGroupInput;
|
|
96582
97457
|
stakeholders?: InputMaybe<Array<InputMaybe<StakeholderCommsCreateStakeholderInput>>>;
|
|
96583
97458
|
};
|
|
97459
|
+
export declare type MutationStakeholderComms_DeleteDraftPageArgs = {
|
|
97460
|
+
pageId: Scalars['String']['input'];
|
|
97461
|
+
};
|
|
97462
|
+
export declare type MutationStakeholderComms_DeletePageArgs = {
|
|
97463
|
+
pageId: Scalars['String']['input'];
|
|
97464
|
+
};
|
|
96584
97465
|
export declare type MutationStakeholderComms_DeleteStakeholderArgs = {
|
|
96585
97466
|
id: Scalars['String']['input'];
|
|
96586
97467
|
};
|
|
@@ -99772,7 +100653,7 @@ export declare type Query = {
|
|
|
99772
100653
|
adminAnnouncementBannerSettingsByCriteria?: Maybe<AdminAnnouncementBannerSettingConnection>;
|
|
99773
100654
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
99774
100655
|
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
99775
|
-
admin_appModules?: Maybe<
|
|
100656
|
+
admin_appModules?: Maybe<AdminAppModuleConnection>;
|
|
99776
100657
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
99777
100658
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
99778
100659
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
@@ -99811,6 +100692,7 @@ export declare type Query = {
|
|
|
99811
100692
|
agentStudio_evaluationProject?: Maybe<AgentStudioBatchEvaluationProject>;
|
|
99812
100693
|
agentStudio_getAgentActorRoles?: Maybe<AgentStudioActorRoles>;
|
|
99813
100694
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
100695
|
+
agentStudio_getAgentsByIds?: Maybe<Array<Maybe<AgentStudioAgent>>>;
|
|
99814
100696
|
agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
|
|
99815
100697
|
agentStudio_getCreateAgentPermissions?: Maybe<AgentStudioAgentCreatePermissionsConnection>;
|
|
99816
100698
|
agentStudio_getToolsByIdAndSource?: Maybe<Array<AgentStudioTool>>;
|
|
@@ -99975,6 +100857,8 @@ export declare type Query = {
|
|
|
99975
100857
|
confluence_generateSpaceKey?: Maybe<ConfluenceGeneratedSpaceKey>;
|
|
99976
100858
|
confluence_getAllApps?: Maybe<ConfluenceAppConnection>;
|
|
99977
100859
|
confluence_getCustomContentPermissionAssignments?: Maybe<ConfluenceCustomContentPermissionAssignmentConnection>;
|
|
100860
|
+
confluence_getLatestPendingRequests?: Maybe<ConfluenceLatestPendingRequests>;
|
|
100861
|
+
confluence_getPlaylist?: Maybe<ConfluencePlaylist>;
|
|
99978
100862
|
confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
|
|
99979
100863
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
99980
100864
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -100287,6 +101171,7 @@ export declare type Query = {
|
|
|
100287
101171
|
jira_fieldSchemeAvailableFields?: Maybe<JiraFieldConnection>;
|
|
100288
101172
|
jira_fieldSchemes?: Maybe<JiraFieldSchemesConnection>;
|
|
100289
101173
|
jira_fieldSchemesByARIs?: Maybe<Array<Maybe<JiraFieldScheme>>>;
|
|
101174
|
+
jira_fieldsPerSchemeLimit?: Maybe<Scalars['Int']['output']>;
|
|
100290
101175
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
100291
101176
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
100292
101177
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -100518,6 +101403,7 @@ export declare type Query = {
|
|
|
100518
101403
|
spf_askLinksByIds?: Maybe<Array<Maybe<SpfAskLink>>>;
|
|
100519
101404
|
spf_asks?: Maybe<SpfAskConnection>;
|
|
100520
101405
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
101406
|
+
spf_getMediaToken?: Maybe<SpfMediaTokenResult>;
|
|
100521
101407
|
spf_resolveImpactedWorkUrl?: Maybe<SpfResolveImpactedWorkUrlPayload>;
|
|
100522
101408
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
100523
101409
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
@@ -100534,6 +101420,7 @@ export declare type Query = {
|
|
|
100534
101420
|
stakeholderComms_getFileReadMediaToken?: Maybe<StakeholderCommsMediaToken>;
|
|
100535
101421
|
stakeholderComms_getFlattenedStakeholdersList?: Maybe<StakeholderCommsGetStakeholderListResponse>;
|
|
100536
101422
|
stakeholderComms_getIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
101423
|
+
stakeholderComms_getIncidentTemplate?: Maybe<StakeholderCommsIncidentTemplateResponse>;
|
|
100537
101424
|
stakeholderComms_getLicenseUsageLimit?: Maybe<StakeholderCommsLicenseUsage>;
|
|
100538
101425
|
stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
|
|
100539
101426
|
stakeholderComms_getPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
@@ -100551,12 +101438,15 @@ export declare type Query = {
|
|
|
100551
101438
|
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
100552
101439
|
stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
100553
101440
|
stakeholderComms_getStakeholdersbyAri?: Maybe<Array<Maybe<StakeholderCommsSimplifiedStakeholder>>>;
|
|
101441
|
+
stakeholderComms_getUniqueSubdomainForPage?: Maybe<Scalars['String']['output']>;
|
|
100554
101442
|
stakeholderComms_getUploadMediaToken?: Maybe<StakeholderCommsMediaToken>;
|
|
100555
101443
|
stakeholderComms_getWorkspaceAriMappingByCustomDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
100556
101444
|
stakeholderComms_getWorkspaceAriMappingByPageId?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
100557
101445
|
stakeholderComms_getWorkspaceAriMappingByStatuspageDomain?: Maybe<StakeholderCommsWorkspaceAriMappingResponse>;
|
|
100558
101446
|
stakeholderComms_isPageNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
100559
101447
|
stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
101448
|
+
stakeholderComms_isUniqueSubdomainAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
101449
|
+
stakeholderComms_listIncidentTemplates?: Maybe<StakeholderCommsListIncidentTemplateResponse>;
|
|
100560
101450
|
stakeholderComms_listIncidents?: Maybe<StakeholderCommsListIncidentResponse>;
|
|
100561
101451
|
stakeholderComms_listIncidentsV2?: Maybe<StakeholderCommsIncidentWithUpdatesConnection>;
|
|
100562
101452
|
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
@@ -100569,10 +101459,15 @@ export declare type Query = {
|
|
|
100569
101459
|
team?: Maybe<TeamQuery>;
|
|
100570
101460
|
teamCalendarSettings?: Maybe<TeamCalendarSettings>;
|
|
100571
101461
|
teamLabels?: Maybe<PaginatedLabelList>;
|
|
101462
|
+
teamworkGraph_getProjectContext?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
100572
101463
|
teamworkGraph_projectUpdates?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
101464
|
+
teamworkGraph_teamProjects?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
100573
101465
|
teamworkGraph_teamUsers?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
100574
101466
|
teamworkGraph_userCommented?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
100575
101467
|
teamworkGraph_userCreated?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
101468
|
+
teamworkGraph_userDirectReports?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
101469
|
+
teamworkGraph_userManager?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
101470
|
+
teamworkGraph_userReportChain?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
100576
101471
|
teamworkGraph_userTaggedIn?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
100577
101472
|
teamworkGraph_userTeams?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
100578
101473
|
teamworkGraph_userTopRecentMentioners?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -100643,8 +101538,12 @@ export declare type QueryAdmin_AccessUrlsArgs = {
|
|
|
100643
101538
|
orgId: Scalars['ID']['input'];
|
|
100644
101539
|
};
|
|
100645
101540
|
export declare type QueryAdmin_AppModulesArgs = {
|
|
101541
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
100646
101542
|
ari: Scalars['String']['input'];
|
|
100647
|
-
|
|
101543
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
101544
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101545
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
101546
|
+
moduleKeys: Array<Scalars['String']['input']>;
|
|
100648
101547
|
};
|
|
100649
101548
|
export declare type QueryAdmin_CheckLicensesCapacityArgs = {
|
|
100650
101549
|
input: AdminLicenseInput;
|
|
@@ -100871,6 +101770,9 @@ export declare type QueryAgentStudio_GetAgentsArgs = {
|
|
|
100871
101770
|
input?: InputMaybe<AgentStudioAgentQueryInput>;
|
|
100872
101771
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
100873
101772
|
};
|
|
101773
|
+
export declare type QueryAgentStudio_GetAgentsByIdsArgs = {
|
|
101774
|
+
ids: Array<Scalars['ID']['input']>;
|
|
101775
|
+
};
|
|
100874
101776
|
export declare type QueryAgentStudio_GetByExternalReferenceArgs = {
|
|
100875
101777
|
cloudId: Scalars['String']['input'];
|
|
100876
101778
|
externalReference: Scalars['String']['input'];
|
|
@@ -101630,6 +102532,20 @@ export declare type QueryConfluence_GetCustomContentPermissionAssignmentsArgs =
|
|
|
101630
102532
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101631
102533
|
spaceId: Scalars['ID']['input'];
|
|
101632
102534
|
};
|
|
102535
|
+
export declare type QueryConfluence_GetLatestPendingRequestsArgs = {
|
|
102536
|
+
cloudId: Scalars['ID']['input'];
|
|
102537
|
+
contentId: Scalars['ID']['input'];
|
|
102538
|
+
duration?: InputMaybe<Scalars['Int']['input']>;
|
|
102539
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
102540
|
+
start?: InputMaybe<Scalars['String']['input']>;
|
|
102541
|
+
};
|
|
102542
|
+
export declare type QueryConfluence_GetPlaylistArgs = {
|
|
102543
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
102544
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
102545
|
+
cloudId: Scalars['ID']['input'];
|
|
102546
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
102547
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
102548
|
+
};
|
|
101633
102549
|
export declare type QueryConfluence_GetWacTemplateArgs = {
|
|
101634
102550
|
cloudId: Scalars['ID']['input'];
|
|
101635
102551
|
};
|
|
@@ -102966,6 +103882,9 @@ export declare type QueryJira_FieldSchemesArgs = {
|
|
|
102966
103882
|
export declare type QueryJira_FieldSchemesByArIsArgs = {
|
|
102967
103883
|
ids: Array<Scalars['ID']['input']>;
|
|
102968
103884
|
};
|
|
103885
|
+
export declare type QueryJira_FieldsPerSchemeLimitArgs = {
|
|
103886
|
+
cloudId: Scalars['ID']['input'];
|
|
103887
|
+
};
|
|
102969
103888
|
export declare type QueryJira_IsRovoLlmEnabledArgs = {
|
|
102970
103889
|
cloudId: Scalars['ID']['input'];
|
|
102971
103890
|
};
|
|
@@ -103801,6 +104720,11 @@ export declare type QuerySpf_AsksArgs = {
|
|
|
103801
104720
|
export declare type QuerySpf_AsksByIdsArgs = {
|
|
103802
104721
|
ids: Array<Scalars['ID']['input']>;
|
|
103803
104722
|
};
|
|
104723
|
+
export declare type QuerySpf_GetMediaTokenArgs = {
|
|
104724
|
+
cloudId: Scalars['ID']['input'];
|
|
104725
|
+
id: Scalars['ID']['input'];
|
|
104726
|
+
usageType: SpfMediaTokenUsageType;
|
|
104727
|
+
};
|
|
103804
104728
|
export declare type QuerySpf_ResolveImpactedWorkUrlArgs = {
|
|
103805
104729
|
cloudId: Scalars['ID']['input'];
|
|
103806
104730
|
url: Scalars['String']['input'];
|
|
@@ -103860,6 +104784,9 @@ export declare type QueryStakeholderComms_GetFlattenedStakeholdersListArgs = {
|
|
|
103860
104784
|
export declare type QueryStakeholderComms_GetIncidentArgs = {
|
|
103861
104785
|
getIncidentInput?: InputMaybe<StakeholderCommsGetIncidentInput>;
|
|
103862
104786
|
};
|
|
104787
|
+
export declare type QueryStakeholderComms_GetIncidentTemplateArgs = {
|
|
104788
|
+
incidentTemplateId: Scalars['String']['input'];
|
|
104789
|
+
};
|
|
103863
104790
|
export declare type QueryStakeholderComms_GetLicenseUsageLimitArgs = {
|
|
103864
104791
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
103865
104792
|
};
|
|
@@ -103917,6 +104844,9 @@ export declare type QueryStakeholderComms_GetStakeholdersByAssignmentV2Args = {
|
|
|
103917
104844
|
export declare type QueryStakeholderComms_GetStakeholdersbyAriArgs = {
|
|
103918
104845
|
stakeholderAris: Array<Scalars['String']['input']>;
|
|
103919
104846
|
};
|
|
104847
|
+
export declare type QueryStakeholderComms_GetUniqueSubdomainForPageArgs = {
|
|
104848
|
+
pageName: Scalars['String']['input'];
|
|
104849
|
+
};
|
|
103920
104850
|
export declare type QueryStakeholderComms_GetWorkspaceAriMappingByCustomDomainArgs = {
|
|
103921
104851
|
customDomain: Scalars['String']['input'];
|
|
103922
104852
|
};
|
|
@@ -103932,6 +104862,12 @@ export declare type QueryStakeholderComms_IsPageNameUniqueArgs = {
|
|
|
103932
104862
|
export declare type QueryStakeholderComms_IsStakeholderGroupNameUniqueArgs = {
|
|
103933
104863
|
name: Scalars['String']['input'];
|
|
103934
104864
|
};
|
|
104865
|
+
export declare type QueryStakeholderComms_IsUniqueSubdomainAvailableArgs = {
|
|
104866
|
+
subdomain: Scalars['String']['input'];
|
|
104867
|
+
};
|
|
104868
|
+
export declare type QueryStakeholderComms_ListIncidentTemplatesArgs = {
|
|
104869
|
+
pageId?: InputMaybe<Scalars['String']['input']>;
|
|
104870
|
+
};
|
|
103935
104871
|
export declare type QueryStakeholderComms_ListIncidentsArgs = {
|
|
103936
104872
|
listIncidentInput?: InputMaybe<StakeholderCommsListIncidentInput>;
|
|
103937
104873
|
};
|
|
@@ -103968,6 +104904,11 @@ export declare type QueryTeamLabelsArgs = {
|
|
|
103968
104904
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103969
104905
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
103970
104906
|
};
|
|
104907
|
+
export declare type QueryTeamworkGraph_GetProjectContextArgs = {
|
|
104908
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
104909
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
104910
|
+
projectId: Scalars['ID']['input'];
|
|
104911
|
+
};
|
|
103971
104912
|
export declare type QueryTeamworkGraph_ProjectUpdatesArgs = {
|
|
103972
104913
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103973
104914
|
endDate: Scalars['DateTime']['input'];
|
|
@@ -103975,6 +104916,13 @@ export declare type QueryTeamworkGraph_ProjectUpdatesArgs = {
|
|
|
103975
104916
|
projectId: Scalars['String']['input'];
|
|
103976
104917
|
startDate: Scalars['DateTime']['input'];
|
|
103977
104918
|
};
|
|
104919
|
+
export declare type QueryTeamworkGraph_TeamProjectsArgs = {
|
|
104920
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
104921
|
+
endDate: Scalars['DateTime']['input'];
|
|
104922
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
104923
|
+
startDate: Scalars['DateTime']['input'];
|
|
104924
|
+
teamId: Scalars['ID']['input'];
|
|
104925
|
+
};
|
|
103978
104926
|
export declare type QueryTeamworkGraph_TeamUsersArgs = {
|
|
103979
104927
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103980
104928
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -103988,6 +104936,15 @@ export declare type QueryTeamworkGraph_UserCreatedArgs = {
|
|
|
103988
104936
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103989
104937
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103990
104938
|
};
|
|
104939
|
+
export declare type QueryTeamworkGraph_UserDirectReportsArgs = {
|
|
104940
|
+
userId: Scalars['ID']['input'];
|
|
104941
|
+
};
|
|
104942
|
+
export declare type QueryTeamworkGraph_UserManagerArgs = {
|
|
104943
|
+
userId: Scalars['ID']['input'];
|
|
104944
|
+
};
|
|
104945
|
+
export declare type QueryTeamworkGraph_UserReportChainArgs = {
|
|
104946
|
+
userId: Scalars['ID']['input'];
|
|
104947
|
+
};
|
|
103991
104948
|
export declare type QueryTeamworkGraph_UserTaggedInArgs = {
|
|
103992
104949
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
103993
104950
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -104007,7 +104964,11 @@ export declare type QueryTeamworkGraph_UserTopRecentReferencersArgs = {
|
|
|
104007
104964
|
};
|
|
104008
104965
|
export declare type QueryTeamworkGraph_UserViewedArgs = {
|
|
104009
104966
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
104967
|
+
endDate: Scalars['DateTime']['input'];
|
|
104010
104968
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
104969
|
+
startDate: Scalars['DateTime']['input'];
|
|
104970
|
+
userId: Scalars['ID']['input'];
|
|
104971
|
+
viewedEntityTypes?: Array<TeamworkGraphUserViewedEntityType>;
|
|
104011
104972
|
};
|
|
104012
104973
|
export declare type QueryTeamworkGraph_UserWorkMentionedArgs = {
|
|
104013
104974
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -104356,11 +105317,6 @@ export declare type RadarDateFieldValue = {
|
|
|
104356
105317
|
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
104357
105318
|
value?: Maybe<Scalars['DateTime']['output']>;
|
|
104358
105319
|
};
|
|
104359
|
-
export declare type RadarDateTimeFieldValue = {
|
|
104360
|
-
__typename?: 'RadarDateTimeFieldValue';
|
|
104361
|
-
isRestricted?: Maybe<Scalars['Boolean']['output']>;
|
|
104362
|
-
value?: Maybe<Scalars['DateTime']['output']>;
|
|
104363
|
-
};
|
|
104364
105320
|
export declare type RadarDeleteConnectorInput = {
|
|
104365
105321
|
connectorId: Scalars['ID']['input'];
|
|
104366
105322
|
};
|
|
@@ -104437,7 +105393,6 @@ export declare enum RadarFieldType {
|
|
|
104437
105393
|
Ari = "ARI",
|
|
104438
105394
|
Boolean = "BOOLEAN",
|
|
104439
105395
|
Date = "DATE",
|
|
104440
|
-
Datetime = "DATETIME",
|
|
104441
105396
|
Keyword = "KEYWORD",
|
|
104442
105397
|
Money = "MONEY",
|
|
104443
105398
|
Number = "NUMBER",
|
|
@@ -104445,7 +105400,7 @@ export declare enum RadarFieldType {
|
|
|
104445
105400
|
String = "STRING",
|
|
104446
105401
|
Url = "URL"
|
|
104447
105402
|
}
|
|
104448
|
-
export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue |
|
|
105403
|
+
export declare type RadarFieldValue = RadarAriFieldValue | RadarBooleanFieldValue | RadarDateFieldValue | RadarMoneyFieldValue | RadarNumericFieldValue | RadarStatusFieldValue | RadarStringFieldValue | RadarUrlFieldValue;
|
|
104449
105404
|
export declare type RadarFieldValueIdPair = {
|
|
104450
105405
|
__typename?: 'RadarFieldValueIdPair';
|
|
104451
105406
|
fieldId: Scalars['ID']['output'];
|
|
@@ -106759,6 +107714,13 @@ export declare type SearchDefaultResult = SearchResult & {
|
|
|
106759
107714
|
type: SearchResultType;
|
|
106760
107715
|
url: Scalars['String']['output'];
|
|
106761
107716
|
};
|
|
107717
|
+
export declare type SearchError = {
|
|
107718
|
+
__typename?: 'SearchError';
|
|
107719
|
+
integration?: Maybe<Scalars['String']['output']>;
|
|
107720
|
+
message: Scalars['String']['output'];
|
|
107721
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
107722
|
+
statusCode: Scalars['Int']['output'];
|
|
107723
|
+
};
|
|
106762
107724
|
export declare type SearchExperimentContextInput = {
|
|
106763
107725
|
experimentId?: InputMaybe<Scalars['String']['input']>;
|
|
106764
107726
|
experimentLayers?: InputMaybe<Array<InputMaybe<SearchExperimentLayer>>>;
|
|
@@ -106833,13 +107795,17 @@ export declare type SearchInterleaverScrapingResult = {
|
|
|
106833
107795
|
};
|
|
106834
107796
|
export declare enum SearchIssueStatusCategory {
|
|
106835
107797
|
Done = "DONE",
|
|
106836
|
-
|
|
107798
|
+
Indeterminate = "INDETERMINATE",
|
|
107799
|
+
New = "NEW",
|
|
107800
|
+
Open = "OPEN",
|
|
107801
|
+
Undefined = "UNDEFINED"
|
|
106837
107802
|
}
|
|
106838
107803
|
export declare type SearchItemConnection = {
|
|
106839
107804
|
__typename?: 'SearchItemConnection';
|
|
106840
107805
|
abTest?: Maybe<SearchAbTest>;
|
|
106841
107806
|
deferredEdges?: Maybe<Array<SearchResultItemEdge>>;
|
|
106842
107807
|
edges: Array<SearchResultItemEdge>;
|
|
107808
|
+
errors?: Maybe<Array<SearchError>>;
|
|
106843
107809
|
interleaverScrapingResult?: Maybe<SearchInterleaverScrapingResult>;
|
|
106844
107810
|
pageInfo: PageInfo;
|
|
106845
107811
|
queryInfo?: Maybe<SearchQueryInfo>;
|
|
@@ -126542,6 +127508,17 @@ export declare type ShepherdWorkspaceUpdateCustomDetectionInput = {
|
|
|
126542
127508
|
export declare type ShepherdWorkspaceUpdateInput = {
|
|
126543
127509
|
shouldOnboard: Scalars['Boolean']['input'];
|
|
126544
127510
|
};
|
|
127511
|
+
export declare type SignInvocationTokenForUiInput = {
|
|
127512
|
+
forgeContextToken: Scalars['String']['input'];
|
|
127513
|
+
remoteKey: Scalars['String']['input'];
|
|
127514
|
+
};
|
|
127515
|
+
export declare type SignInvocationTokenForUiResponse = Payload & {
|
|
127516
|
+
__typename?: 'SignInvocationTokenForUIResponse';
|
|
127517
|
+
errors?: Maybe<Array<MutationError>>;
|
|
127518
|
+
forgeInvocationToken?: Maybe<ForgeInvocationToken>;
|
|
127519
|
+
metadata?: Maybe<InvocationTokenForUiMetadata>;
|
|
127520
|
+
success: Scalars['Boolean']['output'];
|
|
127521
|
+
};
|
|
126545
127522
|
export declare type SignUpProperties = {
|
|
126546
127523
|
__typename?: 'SignUpProperties';
|
|
126547
127524
|
reverseTrial?: Maybe<ReverseTrialCohort>;
|
|
@@ -128020,6 +128997,15 @@ export declare type SpfDeleteAskUpdatePayload = Payload & {
|
|
|
128020
128997
|
success: Scalars['Boolean']['output'];
|
|
128021
128998
|
};
|
|
128022
128999
|
export declare type SpfImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
129000
|
+
export declare type SpfMediaToken = {
|
|
129001
|
+
__typename?: 'SpfMediaToken';
|
|
129002
|
+
value: Scalars['String']['output'];
|
|
129003
|
+
};
|
|
129004
|
+
export declare type SpfMediaTokenResult = QueryError | SpfMediaToken;
|
|
129005
|
+
export declare enum SpfMediaTokenUsageType {
|
|
129006
|
+
Read = "READ",
|
|
129007
|
+
Write = "WRITE"
|
|
129008
|
+
}
|
|
128023
129009
|
export declare type SpfResolveImpactedWorkUrlPayload = {
|
|
128024
129010
|
__typename?: 'SpfResolveImpactedWorkUrlPayload';
|
|
128025
129011
|
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
@@ -128382,6 +129368,7 @@ export declare type StakeholderCommsCreatePageInputType = {
|
|
|
128382
129368
|
colours?: InputMaybe<StakeholderCommsColoursInput>;
|
|
128383
129369
|
components?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
128384
129370
|
createdAt?: InputMaybe<Scalars['String']['input']>;
|
|
129371
|
+
createdBy?: InputMaybe<Scalars['String']['input']>;
|
|
128385
129372
|
customCss?: InputMaybe<Scalars['String']['input']>;
|
|
128386
129373
|
customFooterHtml?: InputMaybe<Scalars['String']['input']>;
|
|
128387
129374
|
customHeaderHtml?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -128546,6 +129533,7 @@ export declare type StakeholderCommsIncidentResponse = {
|
|
|
128546
129533
|
__typename?: 'StakeholderCommsIncidentResponse';
|
|
128547
129534
|
error?: Maybe<Scalars['String']['output']>;
|
|
128548
129535
|
incidentWithUpdates?: Maybe<StakeholderCommsIncidentWithUpdates>;
|
|
129536
|
+
page?: Maybe<StakeholderCommsPage>;
|
|
128549
129537
|
};
|
|
128550
129538
|
export declare enum StakeholderCommsIncidentStatus {
|
|
128551
129539
|
Identified = "IDENTIFIED",
|
|
@@ -128553,6 +129541,25 @@ export declare enum StakeholderCommsIncidentStatus {
|
|
|
128553
129541
|
Monitoring = "MONITORING",
|
|
128554
129542
|
Resolved = "RESOLVED"
|
|
128555
129543
|
}
|
|
129544
|
+
export declare type StakeholderCommsIncidentTemplate = {
|
|
129545
|
+
__typename?: 'StakeholderCommsIncidentTemplate';
|
|
129546
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
129547
|
+
createAt?: Maybe<Scalars['String']['output']>;
|
|
129548
|
+
groupId?: Maybe<Scalars['String']['output']>;
|
|
129549
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
129550
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
129551
|
+
pageId?: Maybe<Scalars['String']['output']>;
|
|
129552
|
+
shouldSendNotifications?: Maybe<Scalars['Boolean']['output']>;
|
|
129553
|
+
shouldTweet?: Maybe<Scalars['Boolean']['output']>;
|
|
129554
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
129555
|
+
updateStatus?: Maybe<Scalars['String']['output']>;
|
|
129556
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
129557
|
+
};
|
|
129558
|
+
export declare type StakeholderCommsIncidentTemplateResponse = {
|
|
129559
|
+
__typename?: 'StakeholderCommsIncidentTemplateResponse';
|
|
129560
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
129561
|
+
incidentTemplate?: Maybe<StakeholderCommsIncidentTemplate>;
|
|
129562
|
+
};
|
|
128556
129563
|
export declare type StakeholderCommsIncidentUpdate = {
|
|
128557
129564
|
__typename?: 'StakeholderCommsIncidentUpdate';
|
|
128558
129565
|
affectedComponents?: Maybe<Array<Maybe<StakeholderCommsIncidentComponentStatus>>>;
|
|
@@ -128630,6 +129637,11 @@ export declare type StakeholderCommsListIncidentResponse = {
|
|
|
128630
129637
|
error?: Maybe<Scalars['String']['output']>;
|
|
128631
129638
|
incidentNodes?: Maybe<Array<Maybe<StakeholderCommsIncidentWithUpdates>>>;
|
|
128632
129639
|
};
|
|
129640
|
+
export declare type StakeholderCommsListIncidentTemplateResponse = {
|
|
129641
|
+
__typename?: 'StakeholderCommsListIncidentTemplateResponse';
|
|
129642
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
129643
|
+
incidentTemplates?: Maybe<Array<Maybe<StakeholderCommsIncidentTemplate>>>;
|
|
129644
|
+
};
|
|
128633
129645
|
export declare type StakeholderCommsMediaToken = {
|
|
128634
129646
|
__typename?: 'StakeholderCommsMediaToken';
|
|
128635
129647
|
error?: Maybe<Scalars['String']['output']>;
|
|
@@ -128757,6 +129769,7 @@ export declare type StakeholderCommsPage = {
|
|
|
128757
129769
|
colours?: Maybe<StakeholderCommsColoursType>;
|
|
128758
129770
|
components?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
128759
129771
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
129772
|
+
createdBy?: Maybe<Scalars['String']['output']>;
|
|
128760
129773
|
customCss?: Maybe<Scalars['String']['output']>;
|
|
128761
129774
|
customFooterHtml?: Maybe<Scalars['String']['output']>;
|
|
128762
129775
|
customHeaderHtml?: Maybe<Scalars['String']['output']>;
|
|
@@ -128790,6 +129803,11 @@ export declare type StakeholderCommsPageComponentsWithUptimeResponse = {
|
|
|
128790
129803
|
pageComponentsUptime?: Maybe<Array<Maybe<StakeholderCommsNestedComponentWithUptime>>>;
|
|
128791
129804
|
pageUptime?: Maybe<StakeholderCommsPageUptime>;
|
|
128792
129805
|
};
|
|
129806
|
+
export declare type StakeholderCommsPageDeleteResponse = {
|
|
129807
|
+
__typename?: 'StakeholderCommsPageDeleteResponse';
|
|
129808
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
129809
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
129810
|
+
};
|
|
128793
129811
|
export declare type StakeholderCommsPageDraftComponentResponse = {
|
|
128794
129812
|
__typename?: 'StakeholderCommsPageDraftComponentResponse';
|
|
128795
129813
|
components?: Maybe<Array<Maybe<StakeholderCommsNestedComponent>>>;
|
|
@@ -130302,6 +131320,16 @@ export declare type TeamV2MembersArgs = {
|
|
|
130302
131320
|
first?: Scalars['Int']['input'];
|
|
130303
131321
|
state?: Array<TeamMembershipState>;
|
|
130304
131322
|
};
|
|
131323
|
+
export declare enum TeamworkGraphUserViewedEntityType {
|
|
131324
|
+
ConfluenceBlogpost = "ConfluenceBlogpost",
|
|
131325
|
+
ConfluencePage = "ConfluencePage",
|
|
131326
|
+
JiraIssue = "JiraIssue",
|
|
131327
|
+
LoomVideo = "LoomVideo",
|
|
131328
|
+
TownsquareGoal = "TownsquareGoal",
|
|
131329
|
+
TownsquareGoalUpdate = "TownsquareGoalUpdate",
|
|
131330
|
+
TownsquareProject = "TownsquareProject",
|
|
131331
|
+
TownsquareProjectUpdate = "TownsquareProjectUpdate"
|
|
131332
|
+
}
|
|
130305
131333
|
export declare type TemplateBody = {
|
|
130306
131334
|
__typename?: 'TemplateBody';
|
|
130307
131335
|
body: ContentBody;
|
|
@@ -131146,6 +132174,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
131146
132174
|
status?: Maybe<TownsquareStatus>;
|
|
131147
132175
|
subGoalSuggestions?: Maybe<TownsquareGoalConnection>;
|
|
131148
132176
|
subGoals?: Maybe<TownsquareGoalConnection>;
|
|
132177
|
+
successMeasures?: Maybe<TownsquareGoalConnection>;
|
|
131149
132178
|
tags?: Maybe<TownsquareTagConnection>;
|
|
131150
132179
|
targetDate?: Maybe<TownsquareTargetDate>;
|
|
131151
132180
|
teams?: Maybe<TownsquareGoalTeamConnection>;
|
|
@@ -131202,6 +132231,10 @@ export declare type TownsquareGoalSubGoalsArgs = {
|
|
|
131202
132231
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131203
132232
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131204
132233
|
};
|
|
132234
|
+
export declare type TownsquareGoalSuccessMeasuresArgs = {
|
|
132235
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
132236
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132237
|
+
};
|
|
131205
132238
|
export declare type TownsquareGoalTagsArgs = {
|
|
131206
132239
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131207
132240
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -131433,6 +132466,15 @@ export declare type TownsquareGoalsAddGoalTeamLinkPayload = {
|
|
|
131433
132466
|
goalTeamEdge?: Maybe<TownsquareGoalTeamEdge>;
|
|
131434
132467
|
success: Scalars['Boolean']['output'];
|
|
131435
132468
|
};
|
|
132469
|
+
export declare type TownsquareGoalsArchiveMetricInput = {
|
|
132470
|
+
metricId: Scalars['ID']['input'];
|
|
132471
|
+
};
|
|
132472
|
+
export declare type TownsquareGoalsArchiveMetricPayload = {
|
|
132473
|
+
__typename?: 'TownsquareGoalsArchiveMetricPayload';
|
|
132474
|
+
errors?: Maybe<Array<MutationError>>;
|
|
132475
|
+
metric?: Maybe<TownsquareMetric>;
|
|
132476
|
+
success: Scalars['Boolean']['output'];
|
|
132477
|
+
};
|
|
131436
132478
|
export declare type TownsquareGoalsCloneInput = {
|
|
131437
132479
|
addProjects?: InputMaybe<Scalars['Boolean']['input']>;
|
|
131438
132480
|
addWatchers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -131460,6 +132502,7 @@ export declare type TownsquareGoalsCreateAddMetricTargetPayload = {
|
|
|
131460
132502
|
};
|
|
131461
132503
|
export declare type TownsquareGoalsCreateUpdateInput = {
|
|
131462
132504
|
goalId: Scalars['ID']['input'];
|
|
132505
|
+
metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateInput>>>;
|
|
131463
132506
|
score?: InputMaybe<Scalars['Int']['input']>;
|
|
131464
132507
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
131465
132508
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -131482,6 +132525,16 @@ export declare type TownsquareGoalsDeleteLatestUpdatePayload = {
|
|
|
131482
132525
|
success: Scalars['Boolean']['output'];
|
|
131483
132526
|
updateId?: Maybe<Scalars['ID']['output']>;
|
|
131484
132527
|
};
|
|
132528
|
+
export declare type TownsquareGoalsEditCommentInput = {
|
|
132529
|
+
commentId: Scalars['ID']['input'];
|
|
132530
|
+
commentText: Scalars['String']['input'];
|
|
132531
|
+
};
|
|
132532
|
+
export declare type TownsquareGoalsEditCommentPayload = {
|
|
132533
|
+
__typename?: 'TownsquareGoalsEditCommentPayload';
|
|
132534
|
+
comment?: Maybe<TownsquareComment>;
|
|
132535
|
+
errors?: Maybe<Array<MutationError>>;
|
|
132536
|
+
success: Scalars['Boolean']['output'];
|
|
132537
|
+
};
|
|
131485
132538
|
export declare type TownsquareGoalsEditMetricInput = {
|
|
131486
132539
|
externalEntityId?: InputMaybe<Scalars['String']['input']>;
|
|
131487
132540
|
metricId: Scalars['ID']['input'];
|
|
@@ -131510,6 +132563,7 @@ export declare type TownsquareGoalsEditMetricTargetPayload = {
|
|
|
131510
132563
|
};
|
|
131511
132564
|
export declare type TownsquareGoalsEditUpdateInput = {
|
|
131512
132565
|
goalUpdateId: Scalars['ID']['input'];
|
|
132566
|
+
metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateEditInput>>>;
|
|
131513
132567
|
score?: InputMaybe<Scalars['Int']['input']>;
|
|
131514
132568
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
131515
132569
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -131522,6 +132576,16 @@ export declare type TownsquareGoalsEditUpdatePayload = {
|
|
|
131522
132576
|
success: Scalars['Boolean']['output'];
|
|
131523
132577
|
update?: Maybe<TownsquareGoalUpdate>;
|
|
131524
132578
|
};
|
|
132579
|
+
export declare type TownsquareGoalsLinkWorkItemInput = {
|
|
132580
|
+
goalId: Scalars['ID']['input'];
|
|
132581
|
+
workItemId: Scalars['ID']['input'];
|
|
132582
|
+
};
|
|
132583
|
+
export declare type TownsquareGoalsLinkWorkItemPayload = {
|
|
132584
|
+
__typename?: 'TownsquareGoalsLinkWorkItemPayload';
|
|
132585
|
+
errors?: Maybe<Array<MutationError>>;
|
|
132586
|
+
goal?: Maybe<TownsquareGoal>;
|
|
132587
|
+
success: Scalars['Boolean']['output'];
|
|
132588
|
+
};
|
|
131525
132589
|
export declare type TownsquareGoalsRemoveGoalTeamLinkInput = {
|
|
131526
132590
|
goalId: Scalars['ID']['input'];
|
|
131527
132591
|
teamId: Scalars['ID']['input'];
|
|
@@ -131533,6 +132597,16 @@ export declare type TownsquareGoalsRemoveGoalTeamLinkPayload = {
|
|
|
131533
132597
|
success: Scalars['Boolean']['output'];
|
|
131534
132598
|
team?: Maybe<TeamV2>;
|
|
131535
132599
|
};
|
|
132600
|
+
export declare type TownsquareGoalsRemoveMetricTargetInput = {
|
|
132601
|
+
goalId: Scalars['ID']['input'];
|
|
132602
|
+
metricTargetId: Scalars['ID']['input'];
|
|
132603
|
+
};
|
|
132604
|
+
export declare type TownsquareGoalsRemoveMetricTargetPayload = {
|
|
132605
|
+
__typename?: 'TownsquareGoalsRemoveMetricTargetPayload';
|
|
132606
|
+
errors?: Maybe<Array<MutationError>>;
|
|
132607
|
+
goal?: Maybe<TownsquareGoal>;
|
|
132608
|
+
success: Scalars['Boolean']['output'];
|
|
132609
|
+
};
|
|
131536
132610
|
export declare type TownsquareGoalsSetWatchingGoalInput = {
|
|
131537
132611
|
goalId: Scalars['ID']['input'];
|
|
131538
132612
|
isWatching: Scalars['Boolean']['input'];
|
|
@@ -131556,6 +132630,16 @@ export declare type TownsquareGoalsShareGoalPayload = {
|
|
|
131556
132630
|
success: Scalars['Boolean']['output'];
|
|
131557
132631
|
usersAdded?: Maybe<Array<User>>;
|
|
131558
132632
|
};
|
|
132633
|
+
export declare type TownsquareGoalsUnlinkWorkItemInput = {
|
|
132634
|
+
goalId: Scalars['ID']['input'];
|
|
132635
|
+
workItemId: Scalars['ID']['input'];
|
|
132636
|
+
};
|
|
132637
|
+
export declare type TownsquareGoalsUnlinkWorkItemPayload = {
|
|
132638
|
+
__typename?: 'TownsquareGoalsUnlinkWorkItemPayload';
|
|
132639
|
+
errors?: Maybe<Array<MutationError>>;
|
|
132640
|
+
goal?: Maybe<TownsquareGoal>;
|
|
132641
|
+
success: Scalars['Boolean']['output'];
|
|
132642
|
+
};
|
|
131559
132643
|
export declare type TownsquareHighlight = {
|
|
131560
132644
|
creationDate?: Maybe<Scalars['DateTime']['output']>;
|
|
131561
132645
|
creator?: Maybe<User>;
|
|
@@ -131710,6 +132794,14 @@ export declare enum TownsquareMetricType {
|
|
|
131710
132794
|
Numeric = "NUMERIC",
|
|
131711
132795
|
Percentage = "PERCENTAGE"
|
|
131712
132796
|
}
|
|
132797
|
+
export declare type TownsquareMetricUpdateEditInput = {
|
|
132798
|
+
metricId: Scalars['ID']['input'];
|
|
132799
|
+
newValue: Scalars['Float']['input'];
|
|
132800
|
+
};
|
|
132801
|
+
export declare type TownsquareMetricUpdateInput = {
|
|
132802
|
+
newValue: Scalars['Float']['input'];
|
|
132803
|
+
targetId: Scalars['ID']['input'];
|
|
132804
|
+
};
|
|
131713
132805
|
export declare type TownsquareMetricValue = Node & {
|
|
131714
132806
|
__typename?: 'TownsquareMetricValue';
|
|
131715
132807
|
id: Scalars['ID']['output'];
|
|
@@ -135168,6 +136260,7 @@ export declare type TrelloMutationApi = {
|
|
|
135168
136260
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
135169
136261
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
135170
136262
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
136263
|
+
resetCardCover?: Maybe<TrelloResetCardCoverPayload>;
|
|
135171
136264
|
smartScheduleCards?: Maybe<TrelloProposedSmartSchedule>;
|
|
135172
136265
|
smartScheduleCardsWithSmartSelection?: Maybe<TrelloProposedSmartSchedule>;
|
|
135173
136266
|
sortInboxCards?: Maybe<TrelloSortInboxCardsPayload>;
|
|
@@ -135270,6 +136363,9 @@ export declare type TrelloMutationApiRemoveMemberFromWorkspaceArgs = {
|
|
|
135270
136363
|
export declare type TrelloMutationApiRemoveWorkspaceTagFromBoardArgs = {
|
|
135271
136364
|
input: TrelloRemoveWorkspaceTagFromBoardInput;
|
|
135272
136365
|
};
|
|
136366
|
+
export declare type TrelloMutationApiResetCardCoverArgs = {
|
|
136367
|
+
input: TrelloResetCardCoverInput;
|
|
136368
|
+
};
|
|
135273
136369
|
export declare type TrelloMutationApiSmartScheduleCardsArgs = {
|
|
135274
136370
|
input: TrelloSmartScheduleCardsInput;
|
|
135275
136371
|
};
|
|
@@ -136125,6 +137221,15 @@ export declare type TrelloRemoveWorkspaceTagFromBoardPayload = Payload & {
|
|
|
136125
137221
|
errors?: Maybe<Array<MutationError>>;
|
|
136126
137222
|
success: Scalars['Boolean']['output'];
|
|
136127
137223
|
};
|
|
137224
|
+
export declare type TrelloResetCardCoverInput = {
|
|
137225
|
+
cardId: Scalars['ID']['input'];
|
|
137226
|
+
};
|
|
137227
|
+
export declare type TrelloResetCardCoverPayload = Payload & {
|
|
137228
|
+
__typename?: 'TrelloResetCardCoverPayload';
|
|
137229
|
+
cardId: Scalars['ID']['output'];
|
|
137230
|
+
errors?: Maybe<Array<MutationError>>;
|
|
137231
|
+
success: Scalars['Boolean']['output'];
|
|
137232
|
+
};
|
|
136128
137233
|
export declare type TrelloScaleProps = {
|
|
136129
137234
|
__typename?: 'TrelloScaleProps';
|
|
136130
137235
|
height?: Maybe<Scalars['Int']['output']>;
|
|
@@ -136308,6 +137413,7 @@ export declare type TrelloUpdateBoardBackgroundInput = {
|
|
|
136308
137413
|
};
|
|
136309
137414
|
export declare type TrelloUpdateBoardBackgroundPayload = Payload & {
|
|
136310
137415
|
__typename?: 'TrelloUpdateBoardBackgroundPayload';
|
|
137416
|
+
boardId?: Maybe<Scalars['ID']['output']>;
|
|
136311
137417
|
errors?: Maybe<Array<MutationError>>;
|
|
136312
137418
|
prefs?: Maybe<TrelloBoardPrefs>;
|
|
136313
137419
|
success: Scalars['Boolean']['output'];
|
|
@@ -136557,6 +137663,7 @@ export declare type TrelloUpdateInboxBackgroundInput = {
|
|
|
136557
137663
|
export declare type TrelloUpdateInboxBackgroundPayload = Payload & {
|
|
136558
137664
|
__typename?: 'TrelloUpdateInboxBackgroundPayload';
|
|
136559
137665
|
errors?: Maybe<Array<MutationError>>;
|
|
137666
|
+
memberId?: Maybe<Scalars['ID']['output']>;
|
|
136560
137667
|
prefs?: Maybe<TrelloInboxPrefs>;
|
|
136561
137668
|
success: Scalars['Boolean']['output'];
|
|
136562
137669
|
};
|