@forge/cli-shared 8.8.2-next.5 → 8.9.0-next.10-experimental-994fcd3
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 +52 -0
- package/out/graphql/graphql-types.d.ts +1238 -113
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +150 -50
- package/out/tunnel/docker-compose-lifecycle.d.ts.map +1 -1
- package/out/tunnel/docker-compose-lifecycle.js +7 -4
- 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
|
@@ -549,6 +549,7 @@ export declare type AvpDashboardTemplateInput = {
|
|
|
549
549
|
fromTemplate: Scalars['String']['input'];
|
|
550
550
|
integrationId?: InputMaybe<AvpIntegrationId>;
|
|
551
551
|
productWorkspaceList?: InputMaybe<Array<AvpProductWorkspaceMapEntry>>;
|
|
552
|
+
templatePlaceholderReplacements?: InputMaybe<Array<AvpTemplatePlaceholderReplacement>>;
|
|
552
553
|
templateVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
553
554
|
};
|
|
554
555
|
export declare type AvpDatasourceLocator = {
|
|
@@ -603,14 +604,6 @@ export declare type AvpEnvVar = {
|
|
|
603
604
|
name?: Maybe<Scalars['String']['output']>;
|
|
604
605
|
operator?: Maybe<Scalars['String']['output']>;
|
|
605
606
|
};
|
|
606
|
-
export declare enum AvpEnvVarChartType {
|
|
607
|
-
Calendar = "CALENDAR",
|
|
608
|
-
CategoricalDropdown = "CATEGORICAL_DROPDOWN",
|
|
609
|
-
DateBucket = "DATE_BUCKET",
|
|
610
|
-
DateSlider = "DATE_SLIDER",
|
|
611
|
-
InputWidget = "INPUT_WIDGET",
|
|
612
|
-
RangeInput = "RANGE_INPUT"
|
|
613
|
-
}
|
|
614
607
|
export declare enum AvpEnvVarDataType {
|
|
615
608
|
Boolean = "BOOLEAN",
|
|
616
609
|
Date = "DATE",
|
|
@@ -638,11 +631,6 @@ export declare type AvpFilterEnvVarInput = {
|
|
|
638
631
|
metadata?: InputMaybe<Scalars['String']['input']>;
|
|
639
632
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
640
633
|
};
|
|
641
|
-
export declare type AvpFilterResponse = {
|
|
642
|
-
__typename?: 'AVPFilterResponse';
|
|
643
|
-
chart?: Maybe<AvpChart>;
|
|
644
|
-
envVar?: Maybe<AvpEnvVarWithChart>;
|
|
645
|
-
};
|
|
646
634
|
export declare type AvpGetDashboardTemplatesInput = {
|
|
647
635
|
cloudId: Scalars['ID']['input'];
|
|
648
636
|
productKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -769,6 +757,10 @@ export declare type AvpRemoveDashboardRowPayload = Payload & {
|
|
|
769
757
|
errors?: Maybe<Array<MutationError>>;
|
|
770
758
|
success: Scalars['Boolean']['output'];
|
|
771
759
|
};
|
|
760
|
+
export declare type AvpTemplatePlaceholderReplacement = {
|
|
761
|
+
placeholderName: Scalars['String']['input'];
|
|
762
|
+
replacementValue: Scalars['String']['input'];
|
|
763
|
+
};
|
|
772
764
|
export declare type AvpToggleCanvasElementExpandedInput = {
|
|
773
765
|
dashboardAri: Scalars['ID']['input'];
|
|
774
766
|
elementId: Scalars['ID']['input'];
|
|
@@ -1563,7 +1555,6 @@ export declare enum AdminAnnouncementBannerSettingsByCriteriaOrder {
|
|
|
1563
1555
|
export declare type AdminAppFoundryManifest = {
|
|
1564
1556
|
__typename?: 'AdminAppFoundryManifest';
|
|
1565
1557
|
appId: Scalars['String']['output'];
|
|
1566
|
-
modules: Array<AdminAppModule>;
|
|
1567
1558
|
version: Scalars['String']['output'];
|
|
1568
1559
|
};
|
|
1569
1560
|
export declare type AdminAppManifest = {
|
|
@@ -1572,8 +1563,20 @@ export declare type AdminAppManifest = {
|
|
|
1572
1563
|
version: Scalars['String']['output'];
|
|
1573
1564
|
};
|
|
1574
1565
|
export declare type AdminAppModule = {
|
|
1566
|
+
__typename?: 'AdminAppModule';
|
|
1567
|
+
configuration: Scalars['JSON']['output'];
|
|
1575
1568
|
key: Scalars['String']['output'];
|
|
1576
|
-
|
|
1569
|
+
manifest: AdminAppFoundryManifest;
|
|
1570
|
+
};
|
|
1571
|
+
export declare type AdminAppModuleConnection = {
|
|
1572
|
+
__typename?: 'AdminAppModuleConnection';
|
|
1573
|
+
edges?: Maybe<Array<AdminAppModuleEdge>>;
|
|
1574
|
+
pageInfo: PageInfo;
|
|
1575
|
+
};
|
|
1576
|
+
export declare type AdminAppModuleEdge = {
|
|
1577
|
+
__typename?: 'AdminAppModuleEdge';
|
|
1578
|
+
cursor: Scalars['String']['output'];
|
|
1579
|
+
node: AdminAppModule;
|
|
1577
1580
|
};
|
|
1578
1581
|
export declare type AdminApplicationErrorExtension = AdminErrorExtension & MutationErrorExtension & QueryErrorExtension & {
|
|
1579
1582
|
__typename?: 'AdminApplicationErrorExtension';
|
|
@@ -1769,11 +1772,6 @@ export declare type AdminFreezeWindowsFeature = {
|
|
|
1769
1772
|
__typename?: 'AdminFreezeWindowsFeature';
|
|
1770
1773
|
isEntitled?: Maybe<Scalars['Boolean']['output']>;
|
|
1771
1774
|
};
|
|
1772
|
-
export declare type AdminGenericAppModule = AdminAppModule & {
|
|
1773
|
-
__typename?: 'AdminGenericAppModule';
|
|
1774
|
-
key: Scalars['String']['output'];
|
|
1775
|
-
typeName: Scalars['String']['output'];
|
|
1776
|
-
};
|
|
1777
1775
|
export declare type AdminGroup = {
|
|
1778
1776
|
__typename?: 'AdminGroup';
|
|
1779
1777
|
counts?: Maybe<AdminGroupCounts>;
|
|
@@ -1984,9 +1982,16 @@ export declare type AdminLicenseDataEdge = {
|
|
|
1984
1982
|
cursor: Scalars['String']['output'];
|
|
1985
1983
|
node: AdminLicenseData;
|
|
1986
1984
|
};
|
|
1985
|
+
export declare type AdminLicenseGroupInput = {
|
|
1986
|
+
groupId: Scalars['String']['input'];
|
|
1987
|
+
resourceIds: Array<Scalars['String']['input']>;
|
|
1988
|
+
};
|
|
1987
1989
|
export declare type AdminLicenseInput = {
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
+
groups?: InputMaybe<Array<AdminLicenseGroupInput>>;
|
|
1991
|
+
resources?: InputMaybe<Array<AdminLicenseResourceInput>>;
|
|
1992
|
+
};
|
|
1993
|
+
export declare type AdminLicenseResourceInput = {
|
|
1994
|
+
resourceId: Scalars['String']['input'];
|
|
1990
1995
|
};
|
|
1991
1996
|
export declare type AdminLimit = {
|
|
1992
1997
|
__typename?: 'AdminLimit';
|
|
@@ -2779,10 +2784,12 @@ export declare type AgentStudioCreateScenarioPayload = Payload & {
|
|
|
2779
2784
|
};
|
|
2780
2785
|
export declare type AgentStudioDataset = {
|
|
2781
2786
|
__typename?: 'AgentStudioDataset';
|
|
2787
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
2782
2788
|
createdAt: Scalars['String']['output'];
|
|
2783
2789
|
id: Scalars['ID']['output'];
|
|
2784
2790
|
name: Scalars['String']['output'];
|
|
2785
2791
|
projectId: Scalars['String']['output'];
|
|
2792
|
+
updatedAt: Scalars['String']['output'];
|
|
2786
2793
|
};
|
|
2787
2794
|
export declare type AgentStudioDatasetEdge = {
|
|
2788
2795
|
__typename?: 'AgentStudioDatasetEdge';
|
|
@@ -2926,7 +2933,8 @@ export declare enum AgentStudioJobRunStatus {
|
|
|
2926
2933
|
Completed = "COMPLETED",
|
|
2927
2934
|
Failed = "FAILED",
|
|
2928
2935
|
Pending = "PENDING",
|
|
2929
|
-
Running = "RUNNING"
|
|
2936
|
+
Running = "RUNNING",
|
|
2937
|
+
Timeout = "TIMEOUT"
|
|
2930
2938
|
}
|
|
2931
2939
|
export declare type AgentStudioJsmKnowledgeFilter = {
|
|
2932
2940
|
__typename?: 'AgentStudioJsmKnowledgeFilter';
|
|
@@ -3462,6 +3470,7 @@ export declare enum ApiContext {
|
|
|
3462
3470
|
}
|
|
3463
3471
|
export declare enum ApiGroup {
|
|
3464
3472
|
Actions = "ACTIONS",
|
|
3473
|
+
AdminUnit = "ADMIN_UNIT",
|
|
3465
3474
|
AgentStudio = "AGENT_STUDIO",
|
|
3466
3475
|
AppRecommendations = "APP_RECOMMENDATIONS",
|
|
3467
3476
|
AtlassianStudio = "ATLASSIAN_STUDIO",
|
|
@@ -10750,12 +10759,14 @@ export declare type CompassComponent = Node & {
|
|
|
10750
10759
|
eventSources?: Maybe<Array<EventSource>>;
|
|
10751
10760
|
events?: Maybe<CompassEventsQueryResult>;
|
|
10752
10761
|
externalAliases?: Maybe<Array<CompassExternalAlias>>;
|
|
10762
|
+
fieldSuggestions?: Maybe<ComponentFieldSuggestions>;
|
|
10753
10763
|
fields?: Maybe<Array<CompassField>>;
|
|
10754
10764
|
id: Scalars['ID']['output'];
|
|
10755
10765
|
labels?: Maybe<Array<CompassComponentLabel>>;
|
|
10756
10766
|
links?: Maybe<Array<CompassLink>>;
|
|
10757
10767
|
metricSources?: Maybe<CompassComponentMetricSourcesQueryResult>;
|
|
10758
10768
|
name: Scalars['String']['output'];
|
|
10769
|
+
onCallSchedules?: Maybe<CompassComponentOnCallScheduleConnection>;
|
|
10759
10770
|
ownerId?: Maybe<Scalars['ID']['output']>;
|
|
10760
10771
|
ownerTeam?: Maybe<TeamV2>;
|
|
10761
10772
|
packageDependencies?: Maybe<CompassComponentPackageDependencyConnection>;
|
|
@@ -10787,6 +10798,10 @@ export declare type CompassComponentEventsArgs = {
|
|
|
10787
10798
|
export declare type CompassComponentMetricSourcesArgs = {
|
|
10788
10799
|
query?: InputMaybe<CompassComponentMetricSourcesQuery>;
|
|
10789
10800
|
};
|
|
10801
|
+
export declare type CompassComponentOnCallSchedulesArgs = {
|
|
10802
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
10803
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
10804
|
+
};
|
|
10790
10805
|
export declare type CompassComponentPackageDependenciesArgs = {
|
|
10791
10806
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
10792
10807
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -11035,6 +11050,47 @@ export declare type CompassComponentMetricSourcesQuery = {
|
|
|
11035
11050
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
11036
11051
|
};
|
|
11037
11052
|
export declare type CompassComponentMetricSourcesQueryResult = CompassComponentMetricSourcesConnection | QueryError;
|
|
11053
|
+
export declare type CompassComponentOnCallResponder = {
|
|
11054
|
+
__typename?: 'CompassComponentOnCallResponder';
|
|
11055
|
+
atlassianUserId?: Maybe<Scalars['String']['output']>;
|
|
11056
|
+
user?: Maybe<User>;
|
|
11057
|
+
};
|
|
11058
|
+
export declare type CompassComponentOnCallResponderConnection = {
|
|
11059
|
+
__typename?: 'CompassComponentOnCallResponderConnection';
|
|
11060
|
+
edges?: Maybe<Array<CompassComponentOnCallResponderEdge>>;
|
|
11061
|
+
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
11062
|
+
nodes?: Maybe<Array<CompassComponentOnCallResponder>>;
|
|
11063
|
+
pageInfo?: Maybe<PageInfo>;
|
|
11064
|
+
};
|
|
11065
|
+
export declare type CompassComponentOnCallResponderEdge = {
|
|
11066
|
+
__typename?: 'CompassComponentOnCallResponderEdge';
|
|
11067
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
11068
|
+
node?: Maybe<CompassComponentOnCallResponder>;
|
|
11069
|
+
};
|
|
11070
|
+
export declare type CompassComponentOnCallSchedule = {
|
|
11071
|
+
__typename?: 'CompassComponentOnCallSchedule';
|
|
11072
|
+
currentResponders?: Maybe<CompassComponentOnCallResponderConnection>;
|
|
11073
|
+
scheduleId?: Maybe<Scalars['ID']['output']>;
|
|
11074
|
+
scheduleLink?: Maybe<Scalars['String']['output']>;
|
|
11075
|
+
scheduleName?: Maybe<Scalars['String']['output']>;
|
|
11076
|
+
scheduleTimezoneName?: Maybe<Scalars['String']['output']>;
|
|
11077
|
+
};
|
|
11078
|
+
export declare type CompassComponentOnCallScheduleCurrentRespondersArgs = {
|
|
11079
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
11080
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
11081
|
+
};
|
|
11082
|
+
export declare type CompassComponentOnCallScheduleConnection = {
|
|
11083
|
+
__typename?: 'CompassComponentOnCallScheduleConnection';
|
|
11084
|
+
edges?: Maybe<Array<CompassComponentOnCallScheduleEdge>>;
|
|
11085
|
+
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
11086
|
+
nodes?: Maybe<Array<CompassComponentOnCallSchedule>>;
|
|
11087
|
+
pageInfo?: Maybe<PageInfo>;
|
|
11088
|
+
};
|
|
11089
|
+
export declare type CompassComponentOnCallScheduleEdge = {
|
|
11090
|
+
__typename?: 'CompassComponentOnCallScheduleEdge';
|
|
11091
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
11092
|
+
node?: Maybe<CompassComponentOnCallSchedule>;
|
|
11093
|
+
};
|
|
11038
11094
|
export declare type CompassComponentPackageDependencyConnection = {
|
|
11039
11095
|
__typename?: 'CompassComponentPackageDependencyConnection';
|
|
11040
11096
|
edges?: Maybe<Array<CompassComponentPackageDependencyEdge>>;
|
|
@@ -12257,6 +12313,7 @@ export declare type CompassDeploymentEventEnvironmentInput = {
|
|
|
12257
12313
|
};
|
|
12258
12314
|
export declare type CompassDeploymentEventFilters = {
|
|
12259
12315
|
environments?: InputMaybe<Array<CompassDeploymentEventEnvironmentCategory>>;
|
|
12316
|
+
states?: InputMaybe<Array<CompassDeploymentEventState>>;
|
|
12260
12317
|
};
|
|
12261
12318
|
export declare type CompassDeploymentEventPipeline = {
|
|
12262
12319
|
__typename?: 'CompassDeploymentEventPipeline';
|
|
@@ -14988,6 +15045,10 @@ export declare type ComponentApiUpload = {
|
|
|
14988
15045
|
specUrl: Scalars['String']['output'];
|
|
14989
15046
|
uploadId: Scalars['ID']['output'];
|
|
14990
15047
|
};
|
|
15048
|
+
export declare type ComponentFieldSuggestions = {
|
|
15049
|
+
__typename?: 'ComponentFieldSuggestions';
|
|
15050
|
+
ownerIds: Array<Scalars['ID']['output']>;
|
|
15051
|
+
};
|
|
14991
15052
|
export declare type ComponentReferenceInput = {
|
|
14992
15053
|
ari?: InputMaybe<Scalars['ID']['input']>;
|
|
14993
15054
|
slug?: InputMaybe<ComponentSlugReferenceInput>;
|
|
@@ -15033,6 +15094,24 @@ export declare type ConfluenceAddCustomApplicationLinkPayload = Payload & {
|
|
|
15033
15094
|
errors?: Maybe<Array<MutationError>>;
|
|
15034
15095
|
success: Scalars['Boolean']['output'];
|
|
15035
15096
|
};
|
|
15097
|
+
export declare type ConfluenceAddTrackInput = {
|
|
15098
|
+
top?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15099
|
+
track: ConfluenceTrackInput;
|
|
15100
|
+
};
|
|
15101
|
+
export declare type ConfluenceAddTrackPayload = {
|
|
15102
|
+
__typename?: 'ConfluenceAddTrackPayload';
|
|
15103
|
+
errors?: Maybe<Array<ConfluenceAddTrackPayloadError>>;
|
|
15104
|
+
success: Scalars['Boolean']['output'];
|
|
15105
|
+
};
|
|
15106
|
+
export declare type ConfluenceAddTrackPayloadError = {
|
|
15107
|
+
__typename?: 'ConfluenceAddTrackPayloadError';
|
|
15108
|
+
extensions?: Maybe<ConfluenceAddTrackPayloadErrorExtension>;
|
|
15109
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
15110
|
+
};
|
|
15111
|
+
export declare type ConfluenceAddTrackPayloadErrorExtension = {
|
|
15112
|
+
__typename?: 'ConfluenceAddTrackPayloadErrorExtension';
|
|
15113
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
15114
|
+
};
|
|
15036
15115
|
export declare type ConfluenceAdminAnnouncementBanner = {
|
|
15037
15116
|
__typename?: 'ConfluenceAdminAnnouncementBanner';
|
|
15038
15117
|
appearance: Scalars['String']['output'];
|
|
@@ -17143,6 +17222,11 @@ export declare type ConfluenceLanguage = {
|
|
|
17143
17222
|
language?: Maybe<Scalars['String']['output']>;
|
|
17144
17223
|
name?: Maybe<Scalars['String']['output']>;
|
|
17145
17224
|
};
|
|
17225
|
+
export declare type ConfluenceLatestPendingRequests = {
|
|
17226
|
+
__typename?: 'ConfluenceLatestPendingRequests';
|
|
17227
|
+
latestPendingRequest?: Maybe<Array<Maybe<ConfluenceContentAccessRequest>>>;
|
|
17228
|
+
start?: Maybe<Scalars['String']['output']>;
|
|
17229
|
+
};
|
|
17146
17230
|
export declare type ConfluenceLegacyEditorReportDownloadLink = {
|
|
17147
17231
|
__typename?: 'ConfluenceLegacyEditorReportDownloadLink';
|
|
17148
17232
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -17151,6 +17235,11 @@ export declare enum ConfluenceLegacyEditorReportType {
|
|
|
17151
17235
|
Page = "PAGE",
|
|
17152
17236
|
Template = "TEMPLATE"
|
|
17153
17237
|
}
|
|
17238
|
+
export declare enum ConfluenceLength {
|
|
17239
|
+
Long = "LONG",
|
|
17240
|
+
Medium = "MEDIUM",
|
|
17241
|
+
Short = "SHORT"
|
|
17242
|
+
}
|
|
17154
17243
|
export declare type ConfluenceLike = {
|
|
17155
17244
|
__typename?: 'ConfluenceLike';
|
|
17156
17245
|
likedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -17914,6 +18003,12 @@ export declare type ConfluencePageViewerSummary = {
|
|
|
17914
18003
|
lastSeenAt?: Maybe<Scalars['DateTime']['output']>;
|
|
17915
18004
|
scheduledPublishSummary?: Maybe<ConfluenceScheduledPublishSummary>;
|
|
17916
18005
|
};
|
|
18006
|
+
export declare type ConfluencePaginatedTracks = {
|
|
18007
|
+
__typename?: 'ConfluencePaginatedTracks';
|
|
18008
|
+
edges: Array<ConfluenceTrackEdge>;
|
|
18009
|
+
nodes: Array<ConfluenceTrack>;
|
|
18010
|
+
pageInfo: ConfluencePlaylistPageInfo;
|
|
18011
|
+
};
|
|
17917
18012
|
export declare type ConfluencePatchCalendarInput = {
|
|
17918
18013
|
color?: InputMaybe<Scalars['String']['input']>;
|
|
17919
18014
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -18191,6 +18286,31 @@ export declare type ConfluencePersonWithPermissionsConnection = {
|
|
|
18191
18286
|
nodes?: Maybe<Array<Maybe<ConfluencePerson>>>;
|
|
18192
18287
|
pageInfo?: Maybe<PageInfo>;
|
|
18193
18288
|
};
|
|
18289
|
+
export declare type ConfluencePlaylist = {
|
|
18290
|
+
__typename?: 'ConfluencePlaylist';
|
|
18291
|
+
accountId: Scalars['ID']['output'];
|
|
18292
|
+
preference: ConfluencePlaylistPreference;
|
|
18293
|
+
tracks: ConfluencePaginatedTracks;
|
|
18294
|
+
user?: Maybe<Person>;
|
|
18295
|
+
};
|
|
18296
|
+
export declare type ConfluencePlaylistTracksArgs = {
|
|
18297
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
18298
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
18299
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
18300
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
18301
|
+
};
|
|
18302
|
+
export declare type ConfluencePlaylistPageInfo = {
|
|
18303
|
+
__typename?: 'ConfluencePlaylistPageInfo';
|
|
18304
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
18305
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
18306
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
18307
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
18308
|
+
};
|
|
18309
|
+
export declare type ConfluencePlaylistPreference = {
|
|
18310
|
+
__typename?: 'ConfluencePlaylistPreference';
|
|
18311
|
+
length: ConfluenceLength;
|
|
18312
|
+
tone: ConfluenceTone;
|
|
18313
|
+
};
|
|
18194
18314
|
export declare enum ConfluencePolicyEnabledStatus {
|
|
18195
18315
|
Disabled = "DISABLED",
|
|
18196
18316
|
Enabled = "ENABLED",
|
|
@@ -18549,6 +18669,20 @@ export declare type ConfluenceRedactionMetadataEdge = {
|
|
|
18549
18669
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
18550
18670
|
node?: Maybe<ConfluenceRedactionMetadata>;
|
|
18551
18671
|
};
|
|
18672
|
+
export declare type ConfluenceRemoveTrackPayload = {
|
|
18673
|
+
__typename?: 'ConfluenceRemoveTrackPayload';
|
|
18674
|
+
errors?: Maybe<Array<ConfluenceRemoveTrackPayloadError>>;
|
|
18675
|
+
success: Scalars['Boolean']['output'];
|
|
18676
|
+
};
|
|
18677
|
+
export declare type ConfluenceRemoveTrackPayloadError = {
|
|
18678
|
+
__typename?: 'ConfluenceRemoveTrackPayloadError';
|
|
18679
|
+
extensions?: Maybe<ConfluenceRemoveTrackPayloadErrorExtension>;
|
|
18680
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
18681
|
+
};
|
|
18682
|
+
export declare type ConfluenceRemoveTrackPayloadErrorExtension = {
|
|
18683
|
+
__typename?: 'ConfluenceRemoveTrackPayloadErrorExtension';
|
|
18684
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
18685
|
+
};
|
|
18552
18686
|
export declare type ConfluenceRendererInlineCommentCreated = {
|
|
18553
18687
|
__typename?: 'ConfluenceRendererInlineCommentCreated';
|
|
18554
18688
|
adfBodyContent?: Maybe<Scalars['String']['output']>;
|
|
@@ -18573,6 +18707,24 @@ export declare type ConfluenceReopenInlineCommentPayload = {
|
|
|
18573
18707
|
errors?: Maybe<Array<MutationError>>;
|
|
18574
18708
|
success: Scalars['Boolean']['output'];
|
|
18575
18709
|
};
|
|
18710
|
+
export declare type ConfluenceReorderTrackInput = {
|
|
18711
|
+
referenceTrack?: InputMaybe<ConfluenceTrackInput>;
|
|
18712
|
+
targetTrack: ConfluenceTrackInput;
|
|
18713
|
+
};
|
|
18714
|
+
export declare type ConfluenceReorderTrackPayload = {
|
|
18715
|
+
__typename?: 'ConfluenceReorderTrackPayload';
|
|
18716
|
+
errors?: Maybe<Array<ConfluenceReorderTrackPayloadError>>;
|
|
18717
|
+
success: Scalars['Boolean']['output'];
|
|
18718
|
+
};
|
|
18719
|
+
export declare type ConfluenceReorderTrackPayloadError = {
|
|
18720
|
+
__typename?: 'ConfluenceReorderTrackPayloadError';
|
|
18721
|
+
extensions?: Maybe<ConfluenceReorderTrackPayloadErrorExtension>;
|
|
18722
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
18723
|
+
};
|
|
18724
|
+
export declare type ConfluenceReorderTrackPayloadErrorExtension = {
|
|
18725
|
+
__typename?: 'ConfluenceReorderTrackPayloadErrorExtension';
|
|
18726
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
18727
|
+
};
|
|
18576
18728
|
export declare type ConfluenceRepairJiraMacroAppLinksInput = {
|
|
18577
18729
|
appLinkMapping: Array<ConfluenceAppLinkMapping>;
|
|
18578
18730
|
};
|
|
@@ -19116,6 +19268,12 @@ export declare type ConfluenceThemesCurrentSpaceThemeArgs = {
|
|
|
19116
19268
|
export declare type ConfluenceThemesSpaceThemesArgs = {
|
|
19117
19269
|
spaceId: Scalars['Long']['input'];
|
|
19118
19270
|
};
|
|
19271
|
+
export declare enum ConfluenceTone {
|
|
19272
|
+
Conversational = "CONVERSATIONAL",
|
|
19273
|
+
Playful = "PLAYFUL",
|
|
19274
|
+
Professional = "PROFESSIONAL",
|
|
19275
|
+
Surprise = "SURPRISE"
|
|
19276
|
+
}
|
|
19119
19277
|
export declare type ConfluenceTopic = {
|
|
19120
19278
|
__typename?: 'ConfluenceTopic';
|
|
19121
19279
|
creator?: Maybe<Scalars['ID']['output']>;
|
|
@@ -19138,6 +19296,29 @@ export declare type ConfluenceTopicEdge = {
|
|
|
19138
19296
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
19139
19297
|
node?: Maybe<ConfluenceTopic>;
|
|
19140
19298
|
};
|
|
19299
|
+
export declare type ConfluenceTrack = {
|
|
19300
|
+
__typename?: 'ConfluenceTrack';
|
|
19301
|
+
id: Scalars['ID']['output'];
|
|
19302
|
+
mainContent?: Maybe<Content>;
|
|
19303
|
+
mainSource: Scalars['ID']['output'];
|
|
19304
|
+
supportingContent?: Maybe<Array<Maybe<Content>>>;
|
|
19305
|
+
supportingSources?: Maybe<Array<Scalars['ID']['output']>>;
|
|
19306
|
+
type: ConfluenceTrackType;
|
|
19307
|
+
};
|
|
19308
|
+
export declare type ConfluenceTrackEdge = {
|
|
19309
|
+
__typename?: 'ConfluenceTrackEdge';
|
|
19310
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
19311
|
+
node: ConfluenceTrack;
|
|
19312
|
+
};
|
|
19313
|
+
export declare type ConfluenceTrackInput = {
|
|
19314
|
+
mainSource: Scalars['ID']['input'];
|
|
19315
|
+
supportingSources?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
19316
|
+
trackType: ConfluenceTrackType;
|
|
19317
|
+
};
|
|
19318
|
+
export declare enum ConfluenceTrackType {
|
|
19319
|
+
Briefing = "BRIEFING",
|
|
19320
|
+
Narration = "NARRATION"
|
|
19321
|
+
}
|
|
19141
19322
|
export declare type ConfluenceTrashBlogPostInput = {
|
|
19142
19323
|
id: Scalars['ID']['input'];
|
|
19143
19324
|
};
|
|
@@ -22139,43 +22320,23 @@ export declare type ConvertPageToLiveEditValidationResult = {
|
|
|
22139
22320
|
isValid: Scalars['Boolean']['output'];
|
|
22140
22321
|
message?: Maybe<Scalars['String']['output']>;
|
|
22141
22322
|
};
|
|
22323
|
+
export declare enum ConvoAiActionStatus {
|
|
22324
|
+
Cancelled = "CANCELLED",
|
|
22325
|
+
Errored = "ERRORED",
|
|
22326
|
+
Finished = "FINISHED",
|
|
22327
|
+
Planned = "PLANNED",
|
|
22328
|
+
Started = "STARTED"
|
|
22329
|
+
}
|
|
22142
22330
|
export declare type ConvoAiAgentAction = {
|
|
22143
22331
|
__typename?: 'ConvoAiAgentAction';
|
|
22144
22332
|
actionId?: Maybe<Scalars['String']['output']>;
|
|
22145
22333
|
data: Scalars['JSON']['output'];
|
|
22146
22334
|
invocationId: Scalars['String']['output'];
|
|
22147
22335
|
key: Scalars['String']['output'];
|
|
22148
|
-
status
|
|
22149
|
-
};
|
|
22150
|
-
export declare type ConvoAiAgentConversationChannelDataMessage = ConvoAiAgentMessage & {
|
|
22151
|
-
__typename?: 'ConvoAiAgentConversationChannelDataMessage';
|
|
22152
|
-
actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
|
|
22153
|
-
contentSummary: Scalars['String']['output'];
|
|
22154
|
-
messageMetadata?: Maybe<Scalars['JSON']['output']>;
|
|
22155
|
-
status: ConvoAiAgentSessionStatus;
|
|
22156
|
-
timeCreated: Scalars['DateTime']['output'];
|
|
22157
|
-
};
|
|
22158
|
-
export declare type ConvoAiAgentEarlyStopMessage = ConvoAiAgentMessage & {
|
|
22159
|
-
__typename?: 'ConvoAiAgentEarlyStopMessage';
|
|
22160
|
-
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22161
|
-
status: ConvoAiAgentSessionStatus;
|
|
22162
|
-
timeCreated: Scalars['DateTime']['output'];
|
|
22163
|
-
};
|
|
22164
|
-
export declare type ConvoAiAgentErrorMessage = ConvoAiAgentMessage & {
|
|
22165
|
-
__typename?: 'ConvoAiAgentErrorMessage';
|
|
22166
|
-
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22167
|
-
status: ConvoAiAgentSessionStatus;
|
|
22168
|
-
timeCreated: Scalars['DateTime']['output'];
|
|
22169
|
-
};
|
|
22170
|
-
export declare type ConvoAiAgentFinalResponseMessage = ConvoAiAgentMessage & {
|
|
22171
|
-
__typename?: 'ConvoAiAgentFinalResponseMessage';
|
|
22172
|
-
actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
|
|
22173
|
-
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22174
|
-
status: ConvoAiAgentSessionStatus;
|
|
22175
|
-
timeCreated: Scalars['DateTime']['output'];
|
|
22336
|
+
status?: Maybe<ConvoAiActionStatus>;
|
|
22176
22337
|
};
|
|
22177
22338
|
export declare type ConvoAiAgentMessage = {
|
|
22178
|
-
|
|
22339
|
+
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22179
22340
|
timeCreated: Scalars['DateTime']['output'];
|
|
22180
22341
|
};
|
|
22181
22342
|
export declare enum ConvoAiAgentMessageType {
|
|
@@ -22192,14 +22353,7 @@ export declare enum ConvoAiAgentSessionStatus {
|
|
|
22192
22353
|
Unknown = "UNKNOWN",
|
|
22193
22354
|
Working = "WORKING"
|
|
22194
22355
|
}
|
|
22195
|
-
export declare type ConvoAiAgentSessionUpdate =
|
|
22196
|
-
export declare type ConvoAiAgentTraceMessage = ConvoAiAgentMessage & {
|
|
22197
|
-
__typename?: 'ConvoAiAgentTraceMessage';
|
|
22198
|
-
contentSummary: Scalars['String']['output'];
|
|
22199
|
-
messageTemplate: Scalars['String']['output'];
|
|
22200
|
-
status: ConvoAiAgentSessionStatus;
|
|
22201
|
-
timeCreated: Scalars['DateTime']['output'];
|
|
22202
|
-
};
|
|
22356
|
+
export declare type ConvoAiAgentSessionUpdate = ConvoAiConversationMessage | ConvoAiEmptyConversation | ConvoAiErrorMessage | ConvoAiTraceMessage;
|
|
22203
22357
|
export declare type ConvoAiAsyncAgentUpdate = {
|
|
22204
22358
|
__typename?: 'ConvoAiAsyncAgentUpdate';
|
|
22205
22359
|
actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
|
|
@@ -22218,9 +22372,24 @@ export declare type ConvoAiConfluenceSpaceRecommendation = {
|
|
|
22218
22372
|
name: Scalars['String']['output'];
|
|
22219
22373
|
spaceDetails?: Maybe<Space>;
|
|
22220
22374
|
};
|
|
22375
|
+
export declare type ConvoAiConversationMessage = ConvoAiAgentMessage & {
|
|
22376
|
+
__typename?: 'ConvoAiConversationMessage';
|
|
22377
|
+
actions?: Maybe<Array<Maybe<ConvoAiAgentAction>>>;
|
|
22378
|
+
authorId?: Maybe<Scalars['String']['output']>;
|
|
22379
|
+
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22380
|
+
messageId?: Maybe<Scalars['String']['output']>;
|
|
22381
|
+
messageMetadata?: Maybe<Scalars['JSON']['output']>;
|
|
22382
|
+
role: ConvoAiMessageAuthorRole;
|
|
22383
|
+
timeCreated: Scalars['DateTime']['output'];
|
|
22384
|
+
};
|
|
22221
22385
|
export declare type ConvoAiEmptyConversation = ConvoAiAgentMessage & {
|
|
22222
22386
|
__typename?: 'ConvoAiEmptyConversation';
|
|
22223
|
-
|
|
22387
|
+
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22388
|
+
timeCreated: Scalars['DateTime']['output'];
|
|
22389
|
+
};
|
|
22390
|
+
export declare type ConvoAiErrorMessage = ConvoAiAgentMessage & {
|
|
22391
|
+
__typename?: 'ConvoAiErrorMessage';
|
|
22392
|
+
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22224
22393
|
timeCreated: Scalars['DateTime']['output'];
|
|
22225
22394
|
};
|
|
22226
22395
|
export declare type ConvoAiHomeThread = {
|
|
@@ -22235,8 +22404,17 @@ export declare type ConvoAiHomeThreadSource = ConvoAiHomeThreadsFirstPartySource
|
|
|
22235
22404
|
export declare type ConvoAiHomeThreadSuggestedAction = {
|
|
22236
22405
|
__typename?: 'ConvoAiHomeThreadSuggestedAction';
|
|
22237
22406
|
action?: Maybe<ConvoAiHomeThreadSuggestedActionType>;
|
|
22407
|
+
origin?: Maybe<ConvoAiHomeThreadSuggestedActionOriginType>;
|
|
22238
22408
|
source?: Maybe<ConvoAiHomeThreadSource>;
|
|
22239
22409
|
};
|
|
22410
|
+
export declare enum ConvoAiHomeThreadSuggestedActionOriginType {
|
|
22411
|
+
CommentRule = "COMMENT_RULE",
|
|
22412
|
+
ConfluencePageRule = "CONFLUENCE_PAGE_RULE",
|
|
22413
|
+
JiraIssueRule = "JIRA_ISSUE_RULE",
|
|
22414
|
+
Llm = "LLM",
|
|
22415
|
+
LoomVideoRule = "LOOM_VIDEO_RULE",
|
|
22416
|
+
PullRequestRule = "PULL_REQUEST_RULE"
|
|
22417
|
+
}
|
|
22240
22418
|
export declare enum ConvoAiHomeThreadSuggestedActionType {
|
|
22241
22419
|
Delete = "DELETE",
|
|
22242
22420
|
Reply = "REPLY",
|
|
@@ -22337,6 +22515,11 @@ export declare type ConvoAiJiraSimilarWorkItemsInput = {
|
|
|
22337
22515
|
export declare type ConvoAiJiraSimilarWorkItemsSimilarityConfig = {
|
|
22338
22516
|
minimumSimScore?: InputMaybe<Scalars['Float']['input']>;
|
|
22339
22517
|
};
|
|
22518
|
+
export declare enum ConvoAiMessageAuthorRole {
|
|
22519
|
+
Agent = "AGENT",
|
|
22520
|
+
Assistant = "ASSISTANT",
|
|
22521
|
+
Human = "HUMAN"
|
|
22522
|
+
}
|
|
22340
22523
|
export declare type ConvoAiThirdPartyRelatedLink = {
|
|
22341
22524
|
__typename?: 'ConvoAiThirdPartyRelatedLink';
|
|
22342
22525
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -22345,6 +22528,12 @@ export declare type ConvoAiThirdPartyRelatedLink = {
|
|
|
22345
22528
|
productSource?: Maybe<Scalars['String']['output']>;
|
|
22346
22529
|
url: Scalars['String']['output'];
|
|
22347
22530
|
};
|
|
22531
|
+
export declare type ConvoAiTraceMessage = ConvoAiAgentMessage & {
|
|
22532
|
+
__typename?: 'ConvoAiTraceMessage';
|
|
22533
|
+
contentSummary?: Maybe<Scalars['String']['output']>;
|
|
22534
|
+
messageTemplate: Scalars['String']['output'];
|
|
22535
|
+
timeCreated: Scalars['DateTime']['output'];
|
|
22536
|
+
};
|
|
22348
22537
|
export declare type CopyPolarisInsightsContainerInput = {
|
|
22349
22538
|
container?: InputMaybe<Scalars['ID']['input']>;
|
|
22350
22539
|
project: Scalars['ID']['input'];
|
|
@@ -22416,8 +22605,7 @@ export declare type CountUsersGroupByPageItem = {
|
|
|
22416
22605
|
user: Scalars['Int']['output'];
|
|
22417
22606
|
};
|
|
22418
22607
|
export declare type CplsAddContributionInput = {
|
|
22419
|
-
contributorDataId
|
|
22420
|
-
contributorId?: InputMaybe<Scalars['ID']['input']>;
|
|
22608
|
+
contributorDataId: Scalars['ID']['input'];
|
|
22421
22609
|
endDate: Scalars['Date']['input'];
|
|
22422
22610
|
startDate: Scalars['Date']['input'];
|
|
22423
22611
|
value: Scalars['Float']['input'];
|
|
@@ -22437,8 +22625,7 @@ export declare type CplsAddContributionsPayload = Payload & {
|
|
|
22437
22625
|
};
|
|
22438
22626
|
export declare type CplsAddContributorScopeAssociationInput = {
|
|
22439
22627
|
cloudId: Scalars['ID']['input'];
|
|
22440
|
-
contributorDataIds
|
|
22441
|
-
contributorIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
22628
|
+
contributorDataIds: Array<Scalars['ID']['input']>;
|
|
22442
22629
|
scopeId: Scalars['ID']['input'];
|
|
22443
22630
|
};
|
|
22444
22631
|
export declare type CplsAddContributorScopeAssociationPayload = Payload & {
|
|
@@ -22498,7 +22685,6 @@ export declare type CplsContributor = {
|
|
|
22498
22685
|
contributionAggregations: Array<CplsContributionAggregation>;
|
|
22499
22686
|
contributorData?: Maybe<CplsContributorData>;
|
|
22500
22687
|
contributorDataId?: Maybe<Scalars['ID']['output']>;
|
|
22501
|
-
contributorId: Scalars['ID']['output'];
|
|
22502
22688
|
contributorWork: CplsContributorWorkConnection;
|
|
22503
22689
|
id: Scalars['ID']['output'];
|
|
22504
22690
|
worksByIds: Array<CplsContributorWorkEdge>;
|
|
@@ -22524,8 +22710,7 @@ export declare type CplsContributorEdge = {
|
|
|
22524
22710
|
node: CplsContributor;
|
|
22525
22711
|
};
|
|
22526
22712
|
export declare type CplsContributorWorkAssociation = {
|
|
22527
|
-
contributorDataId
|
|
22528
|
-
contributorId?: InputMaybe<Scalars['ID']['input']>;
|
|
22713
|
+
contributorDataId: Scalars['ID']['input'];
|
|
22529
22714
|
workId: Scalars['ID']['input'];
|
|
22530
22715
|
};
|
|
22531
22716
|
export declare type CplsContributorWorkConnection = HasPageInfo & {
|
|
@@ -22551,8 +22736,7 @@ export declare type CplsCreateCustomContributionTargetPayload = Payload & {
|
|
|
22551
22736
|
};
|
|
22552
22737
|
export declare type CplsCreateCustomContributionTargetWithWorkAssociationInput = {
|
|
22553
22738
|
cloudId: Scalars['ID']['input'];
|
|
22554
|
-
contributorDataId
|
|
22555
|
-
contributorId?: InputMaybe<Scalars['ID']['input']>;
|
|
22739
|
+
contributorDataId: Scalars['ID']['input'];
|
|
22556
22740
|
name: Scalars['String']['input'];
|
|
22557
22741
|
};
|
|
22558
22742
|
export declare type CplsCreateCustomContributionTargetWithWorkAssociationPayload = Payload & {
|
|
@@ -22578,8 +22762,7 @@ export declare type CplsCustomContributionTargetEdge = {
|
|
|
22578
22762
|
};
|
|
22579
22763
|
export declare type CplsDeleteContributorScopeAssociationInput = {
|
|
22580
22764
|
cloudId: Scalars['ID']['input'];
|
|
22581
|
-
contributorDataIds
|
|
22582
|
-
contributorIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
22765
|
+
contributorDataIds: Array<Scalars['ID']['input']>;
|
|
22583
22766
|
scopeId: Scalars['ID']['input'];
|
|
22584
22767
|
};
|
|
22585
22768
|
export declare type CplsDeleteContributorScopeAssociationPayload = Payload & {
|
|
@@ -26427,6 +26610,12 @@ export declare type DevAiRovoDevCreateSessionPayload = Payload & {
|
|
|
26427
26610
|
session?: Maybe<DevAiRovoDevSession>;
|
|
26428
26611
|
success: Scalars['Boolean']['output'];
|
|
26429
26612
|
};
|
|
26613
|
+
export declare type DevAiRovoDevIssueViewResponse = {
|
|
26614
|
+
__typename?: 'DevAiRovoDevIssueViewResponse';
|
|
26615
|
+
checks?: Maybe<DevAiEntitlementCheckResultResponse>;
|
|
26616
|
+
isFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
26617
|
+
sessions?: Maybe<DevAiRovoDevSessionConnection>;
|
|
26618
|
+
};
|
|
26430
26619
|
export declare enum DevAiRovoDevPrStatus {
|
|
26431
26620
|
Declined = "DECLINED",
|
|
26432
26621
|
Draft = "DRAFT",
|
|
@@ -26678,13 +26867,13 @@ export declare type DevConsoleAppResourceUsageFiltersInput = {
|
|
|
26678
26867
|
export declare type DevConsoleAppResourceUsageFlatResponse = {
|
|
26679
26868
|
__typename?: 'DevConsoleAppResourceUsageFlatResponse';
|
|
26680
26869
|
error?: Maybe<QueryError>;
|
|
26681
|
-
pagination
|
|
26870
|
+
pagination?: Maybe<DevConsolePagination>;
|
|
26682
26871
|
resourceUsage: Array<DevConsoleResourceUsage>;
|
|
26683
26872
|
};
|
|
26684
26873
|
export declare type DevConsoleAppResourceUsageGroupedResponse = {
|
|
26685
26874
|
__typename?: 'DevConsoleAppResourceUsageGroupedResponse';
|
|
26686
26875
|
error?: Maybe<QueryError>;
|
|
26687
|
-
pagination
|
|
26876
|
+
pagination?: Maybe<DevConsolePagination>;
|
|
26688
26877
|
resourceUsage: Array<DevConsoleResourceUsagePeriod>;
|
|
26689
26878
|
};
|
|
26690
26879
|
export declare type DevConsoleAppResourceUsageResponse = DevConsoleAppResourceUsageFlatResponse | DevConsoleAppResourceUsageGroupedResponse;
|
|
@@ -26697,6 +26886,15 @@ export declare type DevConsoleAppUsageOverviewResponse = {
|
|
|
26697
26886
|
error?: Maybe<QueryError>;
|
|
26698
26887
|
resourceUsage?: Maybe<DevConsoleResourceUsageData>;
|
|
26699
26888
|
};
|
|
26889
|
+
export declare type DevConsoleAppUsageTopSitesFiltersInput = {
|
|
26890
|
+
interval: DevConsoleDateIntervalInput;
|
|
26891
|
+
resource: DevConsoleResource;
|
|
26892
|
+
};
|
|
26893
|
+
export declare type DevConsoleAppUsageTopSitesResponse = {
|
|
26894
|
+
__typename?: 'DevConsoleAppUsageTopSitesResponse';
|
|
26895
|
+
error?: Maybe<QueryError>;
|
|
26896
|
+
resourceUsage?: Maybe<Array<DevConsoleResourceUsageTopSite>>;
|
|
26897
|
+
};
|
|
26700
26898
|
export declare type DevConsoleAppsWithoutConsentResponse = {
|
|
26701
26899
|
__typename?: 'DevConsoleAppsWithoutConsentResponse';
|
|
26702
26900
|
appIds: Array<Scalars['String']['output']>;
|
|
@@ -26818,6 +27016,11 @@ export declare enum DevConsoleGroupBy {
|
|
|
26818
27016
|
ContextAri = "CONTEXT_ARI",
|
|
26819
27017
|
EnvironmentId = "ENVIRONMENT_ID"
|
|
26820
27018
|
}
|
|
27019
|
+
export declare type DevConsoleHasConsoleAdminResponse = {
|
|
27020
|
+
__typename?: 'DevConsoleHasConsoleAdminResponse';
|
|
27021
|
+
error?: Maybe<QueryError>;
|
|
27022
|
+
result: Scalars['Boolean']['output'];
|
|
27023
|
+
};
|
|
26821
27024
|
export declare type DevConsoleMutation = {
|
|
26822
27025
|
__typename?: 'DevConsoleMutation';
|
|
26823
27026
|
acceptAppBillingConsent: DevConsoleResponsePayload;
|
|
@@ -26864,6 +27067,7 @@ export declare type DevConsoleQuery = {
|
|
|
26864
27067
|
appResourceUsage: DevConsoleAppResourceUsageResponse;
|
|
26865
27068
|
appResourceUsageDetailedView: DevConsoleAppResourceUsageDetailedViewResponse;
|
|
26866
27069
|
appUsageOverview: DevConsoleAppUsageOverviewResponse;
|
|
27070
|
+
appUsageTopSites: DevConsoleAppUsageTopSitesResponse;
|
|
26867
27071
|
getAppsWithoutConsent: DevConsoleAppsWithoutConsentResponse;
|
|
26868
27072
|
getDeveloperSpaceDetails?: Maybe<DevConsoleBulkDeveloperSpaceDetailsResponse>;
|
|
26869
27073
|
getDeveloperSpaceMembers?: Maybe<DevConsoleDeveloperSpaceMembersResponse>;
|
|
@@ -26871,6 +27075,7 @@ export declare type DevConsoleQuery = {
|
|
|
26871
27075
|
getDeveloperSpaceUserPermissions: DevConsoleDeveloperSpaceUserPermissionsResponse;
|
|
26872
27076
|
getDeveloperSpaceWithLinkingAccess?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
26873
27077
|
getDeveloperSpaceWithRoles: Array<DevConsoleDeveloperSpaceWithRole>;
|
|
27078
|
+
hasAnyConsoleAdmin?: Maybe<DevConsoleHasConsoleAdminResponse>;
|
|
26874
27079
|
tenantContexts: Array<Maybe<DevConsoleTenantContext>>;
|
|
26875
27080
|
};
|
|
26876
27081
|
export declare type DevConsoleQueryAppResourceUsageArgs = {
|
|
@@ -26886,6 +27091,10 @@ export declare type DevConsoleQueryAppUsageOverviewArgs = {
|
|
|
26886
27091
|
appId: Scalars['ID']['input'];
|
|
26887
27092
|
filters: DevConsoleAppUsageFiltersInput;
|
|
26888
27093
|
};
|
|
27094
|
+
export declare type DevConsoleQueryAppUsageTopSitesArgs = {
|
|
27095
|
+
appId: Scalars['ID']['input'];
|
|
27096
|
+
filters: DevConsoleAppUsageTopSitesFiltersInput;
|
|
27097
|
+
};
|
|
26889
27098
|
export declare type DevConsoleQueryGetAppsWithoutConsentArgs = {
|
|
26890
27099
|
developerSpaceId: Scalars['String']['input'];
|
|
26891
27100
|
};
|
|
@@ -26901,6 +27110,9 @@ export declare type DevConsoleQueryGetDeveloperSpaceTransactionAccountArgs = {
|
|
|
26901
27110
|
export declare type DevConsoleQueryGetDeveloperSpaceUserPermissionsArgs = {
|
|
26902
27111
|
developerSpaceId: Scalars['String']['input'];
|
|
26903
27112
|
};
|
|
27113
|
+
export declare type DevConsoleQueryHasAnyConsoleAdminArgs = {
|
|
27114
|
+
developerSpaceId: Scalars['String']['input'];
|
|
27115
|
+
};
|
|
26904
27116
|
export declare type DevConsoleQueryTenantContextsArgs = {
|
|
26905
27117
|
ids: Array<Scalars['ID']['input']>;
|
|
26906
27118
|
};
|
|
@@ -26947,6 +27159,13 @@ export declare type DevConsoleResourceUsagePeriod = {
|
|
|
26947
27159
|
period: Scalars['String']['output'];
|
|
26948
27160
|
resolution: DevConsoleUsageResolution;
|
|
26949
27161
|
};
|
|
27162
|
+
export declare type DevConsoleResourceUsageTopSite = {
|
|
27163
|
+
__typename?: 'DevConsoleResourceUsageTopSite';
|
|
27164
|
+
contextAri: Scalars['String']['output'];
|
|
27165
|
+
hostName?: Maybe<Scalars['String']['output']>;
|
|
27166
|
+
totalUsage: Scalars['String']['output'];
|
|
27167
|
+
unit: Scalars['String']['output'];
|
|
27168
|
+
};
|
|
26950
27169
|
export declare type DevConsoleResponsePayload = Payload & {
|
|
26951
27170
|
__typename?: 'DevConsoleResponsePayload';
|
|
26952
27171
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -26962,12 +27181,23 @@ export declare type DevConsoleTenantContext = {
|
|
|
26962
27181
|
export declare type DevConsoleTransactionAccountData = {
|
|
26963
27182
|
__typename?: 'DevConsoleTransactionAccountData';
|
|
26964
27183
|
invoiceGroupId?: Maybe<Scalars['String']['output']>;
|
|
26965
|
-
status: Scalars['String']['output'];
|
|
26966
27184
|
txnAccountId?: Maybe<Scalars['String']['output']>;
|
|
26967
27185
|
};
|
|
27186
|
+
export declare type DevConsoleTransactionAccountPaymentMethod = {
|
|
27187
|
+
__typename?: 'DevConsoleTransactionAccountPaymentMethod';
|
|
27188
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
27189
|
+
status?: Maybe<DevConsoleTransactionAccountPaymentMethodStatus>;
|
|
27190
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
27191
|
+
};
|
|
27192
|
+
export declare enum DevConsoleTransactionAccountPaymentMethodStatus {
|
|
27193
|
+
Active = "ACTIVE",
|
|
27194
|
+
NotFound = "NOT_FOUND",
|
|
27195
|
+
NotPermitted = "NOT_PERMITTED"
|
|
27196
|
+
}
|
|
26968
27197
|
export declare type DevConsoleTransactionAccountResponse = {
|
|
26969
27198
|
__typename?: 'DevConsoleTransactionAccountResponse';
|
|
26970
27199
|
error?: Maybe<QueryError>;
|
|
27200
|
+
paymentMethod?: Maybe<DevConsoleTransactionAccountPaymentMethod>;
|
|
26971
27201
|
transactionAccount?: Maybe<DevConsoleTransactionAccountData>;
|
|
26972
27202
|
};
|
|
26973
27203
|
export declare type DevConsoleUpdateDeveloperSpaceMemberInput = {
|
|
@@ -31333,6 +31563,11 @@ export declare type ForgeContextToken = {
|
|
|
31333
31563
|
expiresAt: Scalars['String']['output'];
|
|
31334
31564
|
jwt: Scalars['String']['output'];
|
|
31335
31565
|
};
|
|
31566
|
+
export declare type ForgeInvocationToken = {
|
|
31567
|
+
__typename?: 'ForgeInvocationToken';
|
|
31568
|
+
expiresAt: Scalars['String']['output'];
|
|
31569
|
+
jwt: Scalars['String']['output'];
|
|
31570
|
+
};
|
|
31336
31571
|
export declare type ForgeMetricsApiRequestCountData = ForgeMetricsData & {
|
|
31337
31572
|
__typename?: 'ForgeMetricsApiRequestCountData';
|
|
31338
31573
|
interval: ForgeMetricsIntervalRange;
|
|
@@ -36673,6 +36908,8 @@ export declare type GraphStore = {
|
|
|
36673
36908
|
userFavoritedFocusAreaBatch?: Maybe<GraphStoreBatchUserFavoritedFocusAreaConnection>;
|
|
36674
36909
|
userFavoritedFocusAreaInverse?: Maybe<GraphStoreSimplifiedUserFavoritedFocusAreaInverseConnection>;
|
|
36675
36910
|
userFavoritedFocusAreaInverseBatch?: Maybe<GraphStoreBatchUserFavoritedFocusAreaConnection>;
|
|
36911
|
+
userFavoritedTownsquareProject?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection>;
|
|
36912
|
+
userFavoritedTownsquareProjectInverse?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseConnection>;
|
|
36676
36913
|
userHasExternalPosition?: Maybe<GraphStoreSimplifiedUserHasExternalPositionConnection>;
|
|
36677
36914
|
userHasExternalPositionInverse?: Maybe<GraphStoreSimplifiedUserHasExternalPositionInverseConnection>;
|
|
36678
36915
|
userHasRelevantProject?: Maybe<GraphStoreSimplifiedUserHasRelevantProjectConnection>;
|
|
@@ -41209,6 +41446,20 @@ export declare type GraphStoreUserFavoritedFocusAreaInverseBatchArgs = {
|
|
|
41209
41446
|
ids: Array<Scalars['ID']['input']>;
|
|
41210
41447
|
sort?: InputMaybe<GraphStoreUserFavoritedFocusAreaSortInput>;
|
|
41211
41448
|
};
|
|
41449
|
+
export declare type GraphStoreUserFavoritedTownsquareProjectArgs = {
|
|
41450
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41451
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41452
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41453
|
+
id: Scalars['ID']['input'];
|
|
41454
|
+
sort?: InputMaybe<GraphStoreUserFavoritedTownsquareProjectSortInput>;
|
|
41455
|
+
};
|
|
41456
|
+
export declare type GraphStoreUserFavoritedTownsquareProjectInverseArgs = {
|
|
41457
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
41458
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
41459
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
41460
|
+
id: Scalars['ID']['input'];
|
|
41461
|
+
sort?: InputMaybe<GraphStoreUserFavoritedTownsquareProjectSortInput>;
|
|
41462
|
+
};
|
|
41212
41463
|
export declare type GraphStoreUserHasExternalPositionArgs = {
|
|
41213
41464
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
41214
41465
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -44122,6 +44373,20 @@ export declare type GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagRelations
|
|
|
44122
44373
|
to: Scalars['ID']['input'];
|
|
44123
44374
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
44124
44375
|
};
|
|
44376
|
+
export declare type GraphStoreCreateUserFavoritedTownsquareProjectInput = {
|
|
44377
|
+
relationships: Array<GraphStoreCreateUserFavoritedTownsquareProjectRelationshipInput>;
|
|
44378
|
+
};
|
|
44379
|
+
export declare type GraphStoreCreateUserFavoritedTownsquareProjectPayload = Payload & {
|
|
44380
|
+
__typename?: 'GraphStoreCreateUserFavoritedTownsquareProjectPayload';
|
|
44381
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44382
|
+
success: Scalars['Boolean']['output'];
|
|
44383
|
+
};
|
|
44384
|
+
export declare type GraphStoreCreateUserFavoritedTownsquareProjectRelationshipInput = {
|
|
44385
|
+
from: Scalars['ID']['input'];
|
|
44386
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
44387
|
+
to: Scalars['ID']['input'];
|
|
44388
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
44389
|
+
};
|
|
44125
44390
|
export declare type GraphStoreCreateUserHasRelevantProjectInput = {
|
|
44126
44391
|
relationships: Array<GraphStoreCreateUserHasRelevantProjectRelationshipInput>;
|
|
44127
44392
|
};
|
|
@@ -44709,6 +44974,19 @@ export declare type GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagRelations
|
|
|
44709
44974
|
from: Scalars['ID']['input'];
|
|
44710
44975
|
to: Scalars['ID']['input'];
|
|
44711
44976
|
};
|
|
44977
|
+
export declare type GraphStoreDeleteUserFavoritedTownsquareProjectInput = {
|
|
44978
|
+
relationships: Array<GraphStoreDeleteUserFavoritedTownsquareProjectRelationshipInput>;
|
|
44979
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
44980
|
+
};
|
|
44981
|
+
export declare type GraphStoreDeleteUserFavoritedTownsquareProjectPayload = Payload & {
|
|
44982
|
+
__typename?: 'GraphStoreDeleteUserFavoritedTownsquareProjectPayload';
|
|
44983
|
+
errors?: Maybe<Array<MutationError>>;
|
|
44984
|
+
success: Scalars['Boolean']['output'];
|
|
44985
|
+
};
|
|
44986
|
+
export declare type GraphStoreDeleteUserFavoritedTownsquareProjectRelationshipInput = {
|
|
44987
|
+
from: Scalars['ID']['input'];
|
|
44988
|
+
to: Scalars['ID']['input'];
|
|
44989
|
+
};
|
|
44712
44990
|
export declare type GraphStoreDeleteUserHasRelevantProjectInput = {
|
|
44713
44991
|
relationships: Array<GraphStoreDeleteUserHasRelevantProjectRelationshipInput>;
|
|
44714
44992
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -48685,6 +48963,7 @@ export declare type GraphStoreMutation = {
|
|
|
48685
48963
|
createTeamConnectedToContainer?: Maybe<GraphStoreCreateTeamConnectedToContainerPayload>;
|
|
48686
48964
|
createTestPerfhammerRelationship?: Maybe<GraphStoreCreateTestPerfhammerRelationshipPayload>;
|
|
48687
48965
|
createTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagPayload>;
|
|
48966
|
+
createUserFavoritedTownsquareProject?: Maybe<GraphStoreCreateUserFavoritedTownsquareProjectPayload>;
|
|
48688
48967
|
createUserHasRelevantProject?: Maybe<GraphStoreCreateUserHasRelevantProjectPayload>;
|
|
48689
48968
|
createVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreCreateVersionUserAssociatedFeatureFlagPayload>;
|
|
48690
48969
|
createVulnerabilityAssociatedIssue?: Maybe<GraphStoreCreateVulnerabilityAssociatedIssuePayload>;
|
|
@@ -48713,6 +48992,7 @@ export declare type GraphStoreMutation = {
|
|
|
48713
48992
|
deleteTeamConnectedToContainer?: Maybe<GraphStoreDeleteTeamConnectedToContainerPayload>;
|
|
48714
48993
|
deleteTestPerfhammerRelationship?: Maybe<GraphStoreDeleteTestPerfhammerRelationshipPayload>;
|
|
48715
48994
|
deleteTownsquareTagIsAliasOfTownsquareTag?: Maybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagPayload>;
|
|
48995
|
+
deleteUserFavoritedTownsquareProject?: Maybe<GraphStoreDeleteUserFavoritedTownsquareProjectPayload>;
|
|
48716
48996
|
deleteUserHasRelevantProject?: Maybe<GraphStoreDeleteUserHasRelevantProjectPayload>;
|
|
48717
48997
|
deleteVersionUserAssociatedFeatureFlag?: Maybe<GraphStoreDeleteVersionUserAssociatedFeatureFlagPayload>;
|
|
48718
48998
|
deleteVulnerabilityAssociatedIssue?: Maybe<GraphStoreDeleteVulnerabilityAssociatedIssuePayload>;
|
|
@@ -48792,6 +49072,9 @@ export declare type GraphStoreMutationCreateTestPerfhammerRelationshipArgs = {
|
|
|
48792
49072
|
export declare type GraphStoreMutationCreateTownsquareTagIsAliasOfTownsquareTagArgs = {
|
|
48793
49073
|
input?: InputMaybe<GraphStoreCreateTownsquareTagIsAliasOfTownsquareTagInput>;
|
|
48794
49074
|
};
|
|
49075
|
+
export declare type GraphStoreMutationCreateUserFavoritedTownsquareProjectArgs = {
|
|
49076
|
+
input?: InputMaybe<GraphStoreCreateUserFavoritedTownsquareProjectInput>;
|
|
49077
|
+
};
|
|
48795
49078
|
export declare type GraphStoreMutationCreateUserHasRelevantProjectArgs = {
|
|
48796
49079
|
input?: InputMaybe<GraphStoreCreateUserHasRelevantProjectInput>;
|
|
48797
49080
|
};
|
|
@@ -48876,6 +49159,9 @@ export declare type GraphStoreMutationDeleteTestPerfhammerRelationshipArgs = {
|
|
|
48876
49159
|
export declare type GraphStoreMutationDeleteTownsquareTagIsAliasOfTownsquareTagArgs = {
|
|
48877
49160
|
input?: InputMaybe<GraphStoreDeleteTownsquareTagIsAliasOfTownsquareTagInput>;
|
|
48878
49161
|
};
|
|
49162
|
+
export declare type GraphStoreMutationDeleteUserFavoritedTownsquareProjectArgs = {
|
|
49163
|
+
input?: InputMaybe<GraphStoreDeleteUserFavoritedTownsquareProjectInput>;
|
|
49164
|
+
};
|
|
48879
49165
|
export declare type GraphStoreMutationDeleteUserHasRelevantProjectArgs = {
|
|
48880
49166
|
input?: InputMaybe<GraphStoreDeleteUserHasRelevantProjectInput>;
|
|
48881
49167
|
};
|
|
@@ -56217,6 +56503,38 @@ export declare type GraphStoreSimplifiedUserFavoritedFocusAreaInverseEdge = {
|
|
|
56217
56503
|
};
|
|
56218
56504
|
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56219
56505
|
export declare type GraphStoreSimplifiedUserFavoritedFocusAreaUnion = MercuryFocusArea;
|
|
56506
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection = HasPageInfo & HasTotal & {
|
|
56507
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareProjectConnection';
|
|
56508
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectEdge>>>;
|
|
56509
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
56510
|
+
pageInfo: PageInfo;
|
|
56511
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
56512
|
+
};
|
|
56513
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectEdge = {
|
|
56514
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareProjectEdge';
|
|
56515
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56516
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56517
|
+
id: Scalars['ID']['output'];
|
|
56518
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56519
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectUnion>;
|
|
56520
|
+
};
|
|
56521
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseConnection = HasPageInfo & HasTotal & {
|
|
56522
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseConnection';
|
|
56523
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseEdge>>>;
|
|
56524
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
56525
|
+
pageInfo: PageInfo;
|
|
56526
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
56527
|
+
};
|
|
56528
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseEdge = {
|
|
56529
|
+
__typename?: 'GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseEdge';
|
|
56530
|
+
createdAt: Scalars['DateTime']['output'];
|
|
56531
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
56532
|
+
id: Scalars['ID']['output'];
|
|
56533
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
56534
|
+
node?: Maybe<GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseUnion>;
|
|
56535
|
+
};
|
|
56536
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
56537
|
+
export declare type GraphStoreSimplifiedUserFavoritedTownsquareProjectUnion = TownsquareProject;
|
|
56220
56538
|
export declare type GraphStoreSimplifiedUserHasExternalPositionConnection = HasPageInfo & HasTotal & {
|
|
56221
56539
|
__typename?: 'GraphStoreSimplifiedUserHasExternalPositionConnection';
|
|
56222
56540
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserHasExternalPositionEdge>>>;
|
|
@@ -58669,6 +58987,12 @@ export declare type GraphStoreUserFavoritedConfluenceWhiteboardSortInput = {
|
|
|
58669
58987
|
export declare type GraphStoreUserFavoritedFocusAreaSortInput = {
|
|
58670
58988
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58671
58989
|
};
|
|
58990
|
+
export declare type GraphStoreUserFavoritedTownsquareProjectSortInput = {
|
|
58991
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
58992
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
58993
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
58994
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
58995
|
+
};
|
|
58672
58996
|
export declare type GraphStoreUserHasExternalPositionSortInput = {
|
|
58673
58997
|
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
58674
58998
|
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -62472,6 +62796,10 @@ export declare type InvocationResponsePayload = {
|
|
|
62472
62796
|
async: Scalars['Boolean']['output'];
|
|
62473
62797
|
body: Scalars['JSON']['output'];
|
|
62474
62798
|
};
|
|
62799
|
+
export declare type InvocationTokenForUiMetadata = {
|
|
62800
|
+
__typename?: 'InvocationTokenForUIMetadata';
|
|
62801
|
+
baseUrl: Scalars['String']['output'];
|
|
62802
|
+
};
|
|
62475
62803
|
export declare type InvokeAuxEffectsInput = {
|
|
62476
62804
|
contextIds: Array<Scalars['ID']['input']>;
|
|
62477
62805
|
entryPoint?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -62883,6 +63211,19 @@ export declare type JiraActivityFieldValueKeyValuePairInput = {
|
|
|
62883
63211
|
key: Scalars['String']['input'];
|
|
62884
63212
|
value: Array<InputMaybe<Scalars['String']['input']>>;
|
|
62885
63213
|
};
|
|
63214
|
+
export declare enum JiraActivityFilter {
|
|
63215
|
+
AnyComment = "ANY_COMMENT",
|
|
63216
|
+
Approval = "APPROVAL",
|
|
63217
|
+
HiddenCustomEntries = "HIDDEN_CUSTOM_ENTRIES",
|
|
63218
|
+
History = "HISTORY",
|
|
63219
|
+
HistoryIncludeIssueCreated = "HISTORY_INCLUDE_ISSUE_CREATED",
|
|
63220
|
+
IccSessionDetails = "ICC_SESSION_DETAILS",
|
|
63221
|
+
IccSessionLifecycle = "ICC_SESSION_LIFECYCLE",
|
|
63222
|
+
Incident = "INCIDENT",
|
|
63223
|
+
ResponderAlert = "RESPONDER_ALERT",
|
|
63224
|
+
StakeholderUpdate = "STAKEHOLDER_UPDATE",
|
|
63225
|
+
WorkLog = "WORK_LOG"
|
|
63226
|
+
}
|
|
62886
63227
|
export declare type JiraActivitySortOrderPayload = Payload & {
|
|
62887
63228
|
__typename?: 'JiraActivitySortOrderPayload';
|
|
62888
63229
|
activitySortOrder?: Maybe<JiraIssueViewActivityFeedSortOrder>;
|
|
@@ -63240,6 +63581,22 @@ export declare type JiraAlignAggSite = {
|
|
|
63240
63581
|
jiraAlignSiteUrl: Scalars['String']['output'];
|
|
63241
63582
|
workspaceId?: Maybe<Scalars['String']['output']>;
|
|
63242
63583
|
};
|
|
63584
|
+
export declare type JiraAllActivityFeedConnection = {
|
|
63585
|
+
__typename?: 'JiraAllActivityFeedConnection';
|
|
63586
|
+
edges?: Maybe<Array<JiraAllActivityFeedEdge>>;
|
|
63587
|
+
pageInfo?: Maybe<PageInfo>;
|
|
63588
|
+
};
|
|
63589
|
+
export declare type JiraAllActivityFeedEdge = {
|
|
63590
|
+
__typename?: 'JiraAllActivityFeedEdge';
|
|
63591
|
+
cursor: Scalars['String']['output'];
|
|
63592
|
+
node?: Maybe<JiraAllActivityFeedItem>;
|
|
63593
|
+
};
|
|
63594
|
+
export declare type JiraAllActivityFeedItem = {
|
|
63595
|
+
__typename?: 'JiraAllActivityFeedItem';
|
|
63596
|
+
item?: Maybe<JiraAllActivityFeedItemUnion>;
|
|
63597
|
+
timestamp?: Maybe<Scalars['Long']['output']>;
|
|
63598
|
+
};
|
|
63599
|
+
export declare type JiraAllActivityFeedItemUnion = JiraApprovalItem | JiraCommentItem | JiraHiddenCommentItem | JiraHistoryItem | JiraWorklogItem;
|
|
63243
63600
|
export declare enum JiraAllowedFieldFormatConfig {
|
|
63244
63601
|
NumberFieldFormatConfig = "NUMBER_FIELD_FORMAT_CONFIG"
|
|
63245
63602
|
}
|
|
@@ -63410,10 +63767,47 @@ export declare type JiraApplySuggestionActionsPayload = Payload & {
|
|
|
63410
63767
|
success: Scalars['Boolean']['output'];
|
|
63411
63768
|
suggestions?: Maybe<Array<Maybe<JiraSuggestion>>>;
|
|
63412
63769
|
};
|
|
63770
|
+
export declare type JiraApprovalActivityFeedConnection = {
|
|
63771
|
+
__typename?: 'JiraApprovalActivityFeedConnection';
|
|
63772
|
+
nodes: Array<JiraApprovalActivityItem>;
|
|
63773
|
+
pageInfo?: Maybe<PageInfo>;
|
|
63774
|
+
};
|
|
63775
|
+
export declare type JiraApprovalActivityItem = {
|
|
63776
|
+
__typename?: 'JiraApprovalActivityItem';
|
|
63777
|
+
approvalName?: Maybe<Scalars['String']['output']>;
|
|
63778
|
+
date: Scalars['Long']['output'];
|
|
63779
|
+
friendlyDate?: Maybe<Scalars['String']['output']>;
|
|
63780
|
+
id: Scalars['ID']['output'];
|
|
63781
|
+
value?: Maybe<JiraApprovalActivityValueUnion>;
|
|
63782
|
+
};
|
|
63783
|
+
export declare type JiraApprovalActivityValueUnion = JiraApprovalCompleted | JiraApprovalCreated | JiraApproverDecision;
|
|
63784
|
+
export declare type JiraApprovalCompleted = {
|
|
63785
|
+
__typename?: 'JiraApprovalCompleted';
|
|
63786
|
+
outcome?: Maybe<Scalars['String']['output']>;
|
|
63787
|
+
systemDecided?: Maybe<Scalars['Boolean']['output']>;
|
|
63788
|
+
};
|
|
63789
|
+
export declare type JiraApprovalConfiguration = {
|
|
63790
|
+
__typename?: 'JiraApprovalConfiguration';
|
|
63791
|
+
approverFieldId?: Maybe<Scalars['String']['output']>;
|
|
63792
|
+
approverFieldType?: Maybe<Scalars['String']['output']>;
|
|
63793
|
+
conditionType?: Maybe<Scalars['String']['output']>;
|
|
63794
|
+
conditionValue?: Maybe<Scalars['String']['output']>;
|
|
63795
|
+
translatedApproverFieldName?: Maybe<Scalars['String']['output']>;
|
|
63796
|
+
};
|
|
63797
|
+
export declare type JiraApprovalCreated = {
|
|
63798
|
+
__typename?: 'JiraApprovalCreated';
|
|
63799
|
+
approvalConfigurations?: Maybe<Array<Maybe<JiraApprovalConfiguration>>>;
|
|
63800
|
+
excludedFields?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
63801
|
+
statusCategory?: Maybe<JiraStatusCategory>;
|
|
63802
|
+
};
|
|
63413
63803
|
export declare enum JiraApprovalDecision {
|
|
63414
63804
|
Approved = "APPROVED",
|
|
63415
63805
|
Rejected = "REJECTED"
|
|
63416
63806
|
}
|
|
63807
|
+
export declare type JiraApprovalItem = {
|
|
63808
|
+
__typename?: 'JiraApprovalItem';
|
|
63809
|
+
approvalItem?: Maybe<JiraApprovalActivityItem>;
|
|
63810
|
+
};
|
|
63417
63811
|
export declare type JiraApproveJiraBitbucketWorkspaceAccessRequestInput = {
|
|
63418
63812
|
approvalLocation?: InputMaybe<JiraOrganizationApprovalLocation>;
|
|
63419
63813
|
workspaceId: Scalars['ID']['input'];
|
|
@@ -63423,6 +63817,11 @@ export declare type JiraApproveJiraBitbucketWorkspaceAccessRequestPayload = Payl
|
|
|
63423
63817
|
errors?: Maybe<Array<MutationError>>;
|
|
63424
63818
|
success: Scalars['Boolean']['output'];
|
|
63425
63819
|
};
|
|
63820
|
+
export declare type JiraApproverDecision = {
|
|
63821
|
+
__typename?: 'JiraApproverDecision';
|
|
63822
|
+
approver?: Maybe<User>;
|
|
63823
|
+
decision?: Maybe<Scalars['String']['output']>;
|
|
63824
|
+
};
|
|
63426
63825
|
export declare type JiraArchiveJourneyConfigurationInput = {
|
|
63427
63826
|
etag?: InputMaybe<Scalars['String']['input']>;
|
|
63428
63827
|
id: Scalars['ID']['input'];
|
|
@@ -64641,7 +65040,7 @@ export declare enum JiraBoardType {
|
|
|
64641
65040
|
Kanban = "KANBAN",
|
|
64642
65041
|
Scrum = "SCRUM"
|
|
64643
65042
|
}
|
|
64644
|
-
export declare type JiraBoardView = {
|
|
65043
|
+
export declare type JiraBoardView = JiraView & Node & {
|
|
64645
65044
|
__typename?: 'JiraBoardView';
|
|
64646
65045
|
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
64647
65046
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -64922,9 +65321,10 @@ export declare type JiraBulkCreateIssueLinksInput = {
|
|
|
64922
65321
|
};
|
|
64923
65322
|
export declare type JiraBulkCreateIssueLinksPayload = Payload & {
|
|
64924
65323
|
__typename?: 'JiraBulkCreateIssueLinksPayload';
|
|
65324
|
+
destinationIssues?: Maybe<Array<JiraIssue>>;
|
|
64925
65325
|
errors?: Maybe<Array<MutationError>>;
|
|
64926
65326
|
issueLinkEdges?: Maybe<Array<JiraIssueLinkEdge>>;
|
|
64927
|
-
|
|
65327
|
+
sourceIssue?: Maybe<JiraIssue>;
|
|
64928
65328
|
success: Scalars['Boolean']['output'];
|
|
64929
65329
|
};
|
|
64930
65330
|
export declare type JiraBulkDeleteInput = {
|
|
@@ -65388,7 +65788,9 @@ export declare type JiraCalendarPermissionEdge = {
|
|
|
65388
65788
|
node?: Maybe<JiraCalendarPermission>;
|
|
65389
65789
|
};
|
|
65390
65790
|
export declare enum JiraCalendarPermissionKey {
|
|
65391
|
-
|
|
65791
|
+
CreateIssuePermission = "CREATE_ISSUE_PERMISSION",
|
|
65792
|
+
ManageSprintsPermission = "MANAGE_SPRINTS_PERMISSION",
|
|
65793
|
+
ScheduleIssuePermission = "SCHEDULE_ISSUE_PERMISSION"
|
|
65392
65794
|
}
|
|
65393
65795
|
export declare type JiraCalendarSprintsInput = {
|
|
65394
65796
|
sprintStates?: InputMaybe<Array<JiraSprintState>>;
|
|
@@ -66065,6 +66467,10 @@ export declare type JiraCommentEdge = {
|
|
|
66065
66467
|
cursor: Scalars['String']['output'];
|
|
66066
66468
|
node?: Maybe<JiraComment>;
|
|
66067
66469
|
};
|
|
66470
|
+
export declare type JiraCommentItem = {
|
|
66471
|
+
__typename?: 'JiraCommentItem';
|
|
66472
|
+
commentItem?: Maybe<JiraComment>;
|
|
66473
|
+
};
|
|
66068
66474
|
export declare enum JiraCommentSortField {
|
|
66069
66475
|
Created = "CREATED"
|
|
66070
66476
|
}
|
|
@@ -67190,6 +67596,23 @@ export declare type JiraDateFieldPayload = Payload & {
|
|
|
67190
67596
|
field?: Maybe<JiraDatePickerField>;
|
|
67191
67597
|
success: Scalars['Boolean']['output'];
|
|
67192
67598
|
};
|
|
67599
|
+
export declare type JiraDateFormulaField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
67600
|
+
__typename?: 'JiraDateFormulaField';
|
|
67601
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
67602
|
+
dateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
67603
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
67604
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
67605
|
+
fieldId: Scalars['String']['output'];
|
|
67606
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
67607
|
+
id: Scalars['ID']['output'];
|
|
67608
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
67609
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
67610
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
67611
|
+
issue?: Maybe<JiraIssue>;
|
|
67612
|
+
name: Scalars['String']['output'];
|
|
67613
|
+
type: Scalars['String']['output'];
|
|
67614
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
67615
|
+
};
|
|
67193
67616
|
export declare type JiraDateInput = {
|
|
67194
67617
|
formattedDate: Scalars['String']['input'];
|
|
67195
67618
|
};
|
|
@@ -67365,10 +67788,11 @@ export declare type JiraDeleteFormattingRulePayload = Payload & {
|
|
|
67365
67788
|
export declare type JiraDeleteIssueLinkPayload = Payload & {
|
|
67366
67789
|
__typename?: 'JiraDeleteIssueLinkPayload';
|
|
67367
67790
|
deletedIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
67791
|
+
destinationIssue?: Maybe<JiraIssue>;
|
|
67368
67792
|
errors?: Maybe<Array<MutationError>>;
|
|
67369
67793
|
id?: Maybe<Scalars['ID']['output']>;
|
|
67370
|
-
issueLinkField?: Maybe<JiraIssueLinkField>;
|
|
67371
67794
|
issueLinkId?: Maybe<Scalars['ID']['output']>;
|
|
67795
|
+
sourceIssue?: Maybe<JiraIssue>;
|
|
67372
67796
|
success: Scalars['Boolean']['output'];
|
|
67373
67797
|
};
|
|
67374
67798
|
export declare type JiraDeleteIssueSearchFormattingRuleInput = {
|
|
@@ -67845,6 +68269,18 @@ export declare type JiraDiscardUserIssueSearchConfigPayload = {
|
|
|
67845
68269
|
export declare type JiraDiscardUserViewConfigInput = {
|
|
67846
68270
|
viewId: Scalars['ID']['input'];
|
|
67847
68271
|
};
|
|
68272
|
+
export declare type JiraDismissAiAgentSessionInput = {
|
|
68273
|
+
agentIdentityAccountId: Scalars['String']['input'];
|
|
68274
|
+
cloudId: Scalars['ID']['input'];
|
|
68275
|
+
conversationId: Scalars['ID']['input'];
|
|
68276
|
+
issueId: Scalars['String']['input'];
|
|
68277
|
+
userAccountId: Scalars['String']['input'];
|
|
68278
|
+
};
|
|
68279
|
+
export declare type JiraDismissAiAgentSessionPayload = Payload & {
|
|
68280
|
+
__typename?: 'JiraDismissAiAgentSessionPayload';
|
|
68281
|
+
errors?: Maybe<Array<MutationError>>;
|
|
68282
|
+
success: Scalars['Boolean']['output'];
|
|
68283
|
+
};
|
|
67848
68284
|
export declare type JiraDismissBitbucketPendingAccessRequestBannerInput = {
|
|
67849
68285
|
isDismissed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
67850
68286
|
};
|
|
@@ -69586,6 +70022,10 @@ export declare type JiraHasSelectableValueOptionsSelectableValueOptionsArgs = {
|
|
|
69586
70022
|
export declare type JiraHasSingleSelectedValue = {
|
|
69587
70023
|
selectedValue?: Maybe<JiraSelectableValue>;
|
|
69588
70024
|
};
|
|
70025
|
+
export declare type JiraHiddenCommentItem = {
|
|
70026
|
+
__typename?: 'JiraHiddenCommentItem';
|
|
70027
|
+
hiddenCommentItem?: Maybe<JiraComment>;
|
|
70028
|
+
};
|
|
69589
70029
|
export declare type JiraHierarchyConfigError = {
|
|
69590
70030
|
__typename?: 'JiraHierarchyConfigError';
|
|
69591
70031
|
code?: Maybe<Scalars['String']['output']>;
|
|
@@ -69631,6 +70071,10 @@ export declare type JiraHistoryGenericFieldValue = {
|
|
|
69631
70071
|
formattedValue?: Maybe<Scalars['String']['output']>;
|
|
69632
70072
|
value?: Maybe<Scalars['String']['output']>;
|
|
69633
70073
|
};
|
|
70074
|
+
export declare type JiraHistoryItem = {
|
|
70075
|
+
__typename?: 'JiraHistoryItem';
|
|
70076
|
+
historyItem?: Maybe<JiraHistoryActivityFeedItem>;
|
|
70077
|
+
};
|
|
69634
70078
|
export declare type JiraHistoryPriorityFieldValue = {
|
|
69635
70079
|
__typename?: 'JiraHistoryPriorityFieldValue';
|
|
69636
70080
|
absoluteIconUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -69703,15 +70147,10 @@ export declare type JiraInitializeProjectNotificationPreferencesPayload = Payloa
|
|
|
69703
70147
|
};
|
|
69704
70148
|
export declare type JiraInlineIssueCreateField = {
|
|
69705
70149
|
__typename?: 'JiraInlineIssueCreateField';
|
|
69706
|
-
|
|
70150
|
+
errors?: Maybe<Array<MutationError>>;
|
|
69707
70151
|
fieldId: Scalars['String']['output'];
|
|
69708
70152
|
fieldName?: Maybe<Scalars['String']['output']>;
|
|
69709
70153
|
};
|
|
69710
|
-
export declare type JiraInlineIssueCreateFieldError = {
|
|
69711
|
-
__typename?: 'JiraInlineIssueCreateFieldError';
|
|
69712
|
-
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
69713
|
-
errorType?: Maybe<Scalars['String']['output']>;
|
|
69714
|
-
};
|
|
69715
70154
|
export declare type JiraInlineIssueCreateInput = {
|
|
69716
70155
|
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
69717
70156
|
fields: JiraIssueFieldsInput;
|
|
@@ -69757,6 +70196,7 @@ export declare type JiraInviterActivityRecommendation = JiraProjectRecommendatio
|
|
|
69757
70196
|
export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike & Node & {
|
|
69758
70197
|
__typename?: 'JiraIssue';
|
|
69759
70198
|
aiAgentSessions?: Maybe<JiraAiAgentSessionConnection>;
|
|
70199
|
+
allActivities?: Maybe<JiraAllActivityFeedConnection>;
|
|
69760
70200
|
archivedBy?: Maybe<User>;
|
|
69761
70201
|
archivedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
69762
70202
|
assigneeField?: Maybe<JiraSingleSelectUserPickerField>;
|
|
@@ -69818,6 +70258,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
69818
70258
|
isResolved?: Maybe<Scalars['Boolean']['output']>;
|
|
69819
70259
|
issueColorField?: Maybe<JiraColorField>;
|
|
69820
70260
|
issueId: Scalars['String']['output'];
|
|
70261
|
+
issueLinkField?: Maybe<JiraIssueLinkField>;
|
|
69821
70262
|
issueLinks?: Maybe<JiraIssueLinkConnection>;
|
|
69822
70263
|
issuePropertyByKey?: Maybe<Scalars['JSON']['output']>;
|
|
69823
70264
|
issueRestrictionField?: Maybe<JiraIssueRestrictionField>;
|
|
@@ -69897,6 +70338,13 @@ export declare type JiraIssueAiAgentSessionsArgs = {
|
|
|
69897
70338
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
69898
70339
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
69899
70340
|
};
|
|
70341
|
+
export declare type JiraIssueAllActivitiesArgs = {
|
|
70342
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70343
|
+
cloudId: Scalars['ID']['input'];
|
|
70344
|
+
filterBy?: InputMaybe<Array<JiraActivityFilter>>;
|
|
70345
|
+
first: Scalars['Int']['input'];
|
|
70346
|
+
orderBy?: InputMaybe<Scalars['String']['input']>;
|
|
70347
|
+
};
|
|
69900
70348
|
export declare type JiraIssueAttachmentsArgs = {
|
|
69901
70349
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69902
70350
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -71205,7 +71653,10 @@ export declare enum JiraIssueModuleType {
|
|
|
71205
71653
|
}
|
|
71206
71654
|
export declare type JiraIssueMutatedStreamHubPayload = {
|
|
71207
71655
|
__typename?: 'JiraIssueMutatedStreamHubPayload';
|
|
71656
|
+
actionerAccountId?: Maybe<Scalars['String']['output']>;
|
|
71657
|
+
project?: Maybe<JiraIssueStreamHubEventPayloadProject>;
|
|
71208
71658
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
71659
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
71209
71660
|
};
|
|
71210
71661
|
export declare type JiraIssueNavigatorJqlHistoryDeletePayload = Payload & {
|
|
71211
71662
|
__typename?: 'JiraIssueNavigatorJQLHistoryDeletePayload';
|
|
@@ -71633,6 +72084,7 @@ export declare type JiraIssueSearchStatus = {
|
|
|
71633
72084
|
export declare type JiraIssueSearchTimelineViewConfigSettings = {
|
|
71634
72085
|
__typename?: 'JiraIssueSearchTimelineViewConfigSettings';
|
|
71635
72086
|
aggregationConfig?: Maybe<JiraIssueSearchAggregationConfigSettings>;
|
|
72087
|
+
hideWarnings?: Maybe<Scalars['Boolean']['output']>;
|
|
71636
72088
|
};
|
|
71637
72089
|
export declare type JiraIssueSearchView = JiraIssueSearchViewMetadata & Node & {
|
|
71638
72090
|
__typename?: 'JiraIssueSearchView';
|
|
@@ -71920,6 +72372,7 @@ export declare type JiraIssueType = MercuryProjectType & Node & {
|
|
|
71920
72372
|
__typename?: 'JiraIssueType';
|
|
71921
72373
|
avatar?: Maybe<JiraAvatar>;
|
|
71922
72374
|
description?: Maybe<Scalars['String']['output']>;
|
|
72375
|
+
fieldsConfiguration?: Maybe<JiraIssueFieldConnection>;
|
|
71923
72376
|
hierarchy?: Maybe<JiraIssueTypeHierarchyLevel>;
|
|
71924
72377
|
id: Scalars['ID']['output'];
|
|
71925
72378
|
issueTypeId?: Maybe<Scalars['String']['output']>;
|
|
@@ -74840,6 +75293,24 @@ export declare type JiraNumberFieldPayload = Payload & {
|
|
|
74840
75293
|
field?: Maybe<JiraNumberField>;
|
|
74841
75294
|
success: Scalars['Boolean']['output'];
|
|
74842
75295
|
};
|
|
75296
|
+
export declare type JiraNumberFormulaField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
75297
|
+
__typename?: 'JiraNumberFormulaField';
|
|
75298
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
75299
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
75300
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
75301
|
+
fieldId: Scalars['String']['output'];
|
|
75302
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
75303
|
+
formatConfig?: Maybe<JiraNumberFieldFormatConfig>;
|
|
75304
|
+
id: Scalars['ID']['output'];
|
|
75305
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
75306
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
75307
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
75308
|
+
issue?: Maybe<JiraIssue>;
|
|
75309
|
+
name: Scalars['String']['output'];
|
|
75310
|
+
number?: Maybe<Scalars['Float']['output']>;
|
|
75311
|
+
type: Scalars['String']['output'];
|
|
75312
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
75313
|
+
};
|
|
74843
75314
|
export declare type JiraOAuthAppsApp = {
|
|
74844
75315
|
__typename?: 'JiraOAuthAppsApp';
|
|
74845
75316
|
buildsModule?: Maybe<JiraOAuthAppsBuildsModule>;
|
|
@@ -76908,7 +77379,8 @@ export declare enum JiraProjectSortField {
|
|
|
76908
77379
|
Key = "KEY",
|
|
76909
77380
|
LastIssueUpdatedTime = "LAST_ISSUE_UPDATED_TIME",
|
|
76910
77381
|
Lead = "LEAD",
|
|
76911
|
-
Name = "NAME"
|
|
77382
|
+
Name = "NAME",
|
|
77383
|
+
Recommendation = "RECOMMENDATION"
|
|
76912
77384
|
}
|
|
76913
77385
|
export declare type JiraProjectSortInput = {
|
|
76914
77386
|
order?: InputMaybe<SortDirection>;
|
|
@@ -78952,6 +79424,7 @@ export declare type JiraResource = {
|
|
|
78952
79424
|
hasRestrictedParent?: Maybe<Scalars['Boolean']['output']>;
|
|
78953
79425
|
id: Scalars['ID']['output'];
|
|
78954
79426
|
integration?: Maybe<JiraResourceIntegration>;
|
|
79427
|
+
isExternallyLinked?: Maybe<Scalars['Boolean']['output']>;
|
|
78955
79428
|
parent?: Maybe<JiraResourceParentName>;
|
|
78956
79429
|
parentId?: Maybe<Scalars['String']['output']>;
|
|
78957
79430
|
};
|
|
@@ -79103,6 +79576,7 @@ export declare type JiraResourcesResult = {
|
|
|
79103
79576
|
edges?: Maybe<Array<Maybe<JiraResourceNode>>>;
|
|
79104
79577
|
next?: Maybe<Scalars['String']['output']>;
|
|
79105
79578
|
totalCount?: Maybe<Scalars['Long']['output']>;
|
|
79579
|
+
totalLinks?: Maybe<Scalars['Long']['output']>;
|
|
79106
79580
|
};
|
|
79107
79581
|
export declare enum JiraResourcesSortDirection {
|
|
79108
79582
|
Asc = "ASC",
|
|
@@ -80867,6 +81341,15 @@ export declare type JiraSetIssueSearchHideDoneItemsPayload = Payload & {
|
|
|
80867
81341
|
errors?: Maybe<Array<MutationError>>;
|
|
80868
81342
|
success: Scalars['Boolean']['output'];
|
|
80869
81343
|
};
|
|
81344
|
+
export declare type JiraSetIssueSearchHideWarningsInput = {
|
|
81345
|
+
hideWarnings: Scalars['Boolean']['input'];
|
|
81346
|
+
viewId: Scalars['ID']['input'];
|
|
81347
|
+
};
|
|
81348
|
+
export declare type JiraSetIssueSearchHideWarningsPayload = Payload & {
|
|
81349
|
+
__typename?: 'JiraSetIssueSearchHideWarningsPayload';
|
|
81350
|
+
errors?: Maybe<Array<MutationError>>;
|
|
81351
|
+
success: Scalars['Boolean']['output'];
|
|
81352
|
+
};
|
|
80870
81353
|
export declare type JiraSetIssueSearchHierarchyEnabledInput = {
|
|
80871
81354
|
hierarchyEnabled: Scalars['Boolean']['input'];
|
|
80872
81355
|
viewId: Scalars['ID']['input'];
|
|
@@ -82186,6 +82669,23 @@ export declare type JiraTenantActivityRecommendation = JiraProjectRecommendation
|
|
|
82186
82669
|
__typename?: 'JiraTenantActivityRecommendation';
|
|
82187
82670
|
recommendationType?: Maybe<JiraProjectRecommendationType>;
|
|
82188
82671
|
};
|
|
82672
|
+
export declare type JiraTextFormulaField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
82673
|
+
__typename?: 'JiraTextFormulaField';
|
|
82674
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
82675
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
82676
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
82677
|
+
fieldId: Scalars['String']['output'];
|
|
82678
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
82679
|
+
id: Scalars['ID']['output'];
|
|
82680
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
82681
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
82682
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
82683
|
+
issue?: Maybe<JiraIssue>;
|
|
82684
|
+
name: Scalars['String']['output'];
|
|
82685
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
82686
|
+
type: Scalars['String']['output'];
|
|
82687
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
82688
|
+
};
|
|
82189
82689
|
export declare enum JiraTimeFormat {
|
|
82190
82690
|
Days = "DAYS",
|
|
82191
82691
|
Hours = "HOURS",
|
|
@@ -82420,6 +82920,16 @@ export declare enum JiraTransitionSortOption {
|
|
|
82420
82920
|
OpsBar = "OPS_BAR",
|
|
82421
82921
|
OpsBarThenStatusCategory = "OPS_BAR_THEN_STATUS_CATEGORY"
|
|
82422
82922
|
}
|
|
82923
|
+
export declare type JiraTrashCustomFieldsInput = {
|
|
82924
|
+
fieldIds: Array<Scalars['String']['input']>;
|
|
82925
|
+
};
|
|
82926
|
+
export declare type JiraTrashCustomFieldsPayload = Payload & {
|
|
82927
|
+
__typename?: 'JiraTrashCustomFieldsPayload';
|
|
82928
|
+
errors?: Maybe<Array<MutationError>>;
|
|
82929
|
+
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
82930
|
+
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
82931
|
+
success: Scalars['Boolean']['output'];
|
|
82932
|
+
};
|
|
82423
82933
|
export declare type JiraTrashGlobalCustomFieldsInput = {
|
|
82424
82934
|
fieldIds: Array<Scalars['String']['input']>;
|
|
82425
82935
|
};
|
|
@@ -84568,6 +85078,10 @@ export declare type JiraWorklogFieldOperationInputForIssueTransitions = {
|
|
|
84568
85078
|
startedTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
84569
85079
|
timeSpentInMinutes?: InputMaybe<Scalars['Long']['input']>;
|
|
84570
85080
|
};
|
|
85081
|
+
export declare type JiraWorklogItem = {
|
|
85082
|
+
__typename?: 'JiraWorklogItem';
|
|
85083
|
+
worklogItem?: Maybe<JiraWorklog>;
|
|
85084
|
+
};
|
|
84571
85085
|
export declare type JiraWorklogPayload = Payload & {
|
|
84572
85086
|
__typename?: 'JiraWorklogPayload';
|
|
84573
85087
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -84759,12 +85273,10 @@ export declare type JsmChannelsExperienceConfiguration = {
|
|
|
84759
85273
|
__typename?: 'JsmChannelsExperienceConfiguration';
|
|
84760
85274
|
filter?: Maybe<JsmChannelsFilterConfiguration>;
|
|
84761
85275
|
isEnabled: Scalars['Boolean']['output'];
|
|
84762
|
-
mode?: Maybe<JsmChannelsExperienceMode>;
|
|
84763
85276
|
};
|
|
84764
85277
|
export declare type JsmChannelsExperienceConfigurationInput = {
|
|
84765
85278
|
filter?: InputMaybe<JsmChannelsFilterConfigurationInput>;
|
|
84766
85279
|
isEnabled: Scalars['Boolean']['input'];
|
|
84767
|
-
mode?: InputMaybe<JsmChannelsExperienceMode>;
|
|
84768
85280
|
};
|
|
84769
85281
|
export declare type JsmChannelsExperienceConfigurationPayload = Payload & {
|
|
84770
85282
|
__typename?: 'JsmChannelsExperienceConfigurationPayload';
|
|
@@ -84773,23 +85285,13 @@ export declare type JsmChannelsExperienceConfigurationPayload = Payload & {
|
|
|
84773
85285
|
success: Scalars['Boolean']['output'];
|
|
84774
85286
|
};
|
|
84775
85287
|
export declare type JsmChannelsExperienceConfigurationResult = JsmChannelsExperienceConfiguration | QueryError;
|
|
84776
|
-
export declare enum JsmChannelsExperienceMode {
|
|
84777
|
-
Autonomous = "AUTONOMOUS",
|
|
84778
|
-
Supervised = "SUPERVISED"
|
|
84779
|
-
}
|
|
84780
85288
|
export declare type JsmChannelsFilterConfiguration = {
|
|
84781
85289
|
__typename?: 'JsmChannelsFilterConfiguration';
|
|
84782
|
-
requestTypes?: Maybe<Array<
|
|
84783
|
-
requestTypesMode?: Maybe<JsmChannelsFilterRequestTypesMode>;
|
|
85290
|
+
requestTypes?: Maybe<Array<JsmChannelsRequestTypes>>;
|
|
84784
85291
|
};
|
|
84785
85292
|
export declare type JsmChannelsFilterConfigurationInput = {
|
|
84786
|
-
requestTypes?: InputMaybe<Array<
|
|
84787
|
-
requestTypesMode?: InputMaybe<JsmChannelsFilterRequestTypesMode>;
|
|
85293
|
+
requestTypes?: InputMaybe<Array<JsmChannelsRequestTypesInput>>;
|
|
84788
85294
|
};
|
|
84789
|
-
export declare enum JsmChannelsFilterRequestTypesMode {
|
|
84790
|
-
All = "ALL",
|
|
84791
|
-
Specific = "SPECIFIC"
|
|
84792
|
-
}
|
|
84793
85295
|
export declare type JsmChannelsOrchestratorConversation = Node & {
|
|
84794
85296
|
__typename?: 'JsmChannelsOrchestratorConversation';
|
|
84795
85297
|
action?: Maybe<JsmChannelsOrchestratorConversationActionType>;
|
|
@@ -84846,6 +85348,22 @@ export declare type JsmChannelsOrchestratorConversationsFilter = {
|
|
|
84846
85348
|
startDate: Scalars['DateTime']['input'];
|
|
84847
85349
|
states?: InputMaybe<Array<JsmChannelsOrchestratorConversationState>>;
|
|
84848
85350
|
};
|
|
85351
|
+
export declare enum JsmChannelsRequestTypeExecutionMode {
|
|
85352
|
+
Assistive = "ASSISTIVE",
|
|
85353
|
+
Autonomous = "AUTONOMOUS",
|
|
85354
|
+
Disabled = "DISABLED",
|
|
85355
|
+
Smart = "SMART",
|
|
85356
|
+
Supervised = "SUPERVISED"
|
|
85357
|
+
}
|
|
85358
|
+
export declare type JsmChannelsRequestTypes = {
|
|
85359
|
+
__typename?: 'JsmChannelsRequestTypes';
|
|
85360
|
+
id: Scalars['String']['output'];
|
|
85361
|
+
mode: JsmChannelsRequestTypeExecutionMode;
|
|
85362
|
+
};
|
|
85363
|
+
export declare type JsmChannelsRequestTypesInput = {
|
|
85364
|
+
id: Scalars['String']['input'];
|
|
85365
|
+
mode: JsmChannelsRequestTypeExecutionMode;
|
|
85366
|
+
};
|
|
84849
85367
|
export declare type JsmChannelsServiceAgentResolutionPlan = {
|
|
84850
85368
|
__typename?: 'JsmChannelsServiceAgentResolutionPlan';
|
|
84851
85369
|
planId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -87993,6 +88511,11 @@ export declare type MarketplaceConsoleArtifactFileInfo = {
|
|
|
87993
88511
|
logicalFileName: Scalars['String']['output'];
|
|
87994
88512
|
size: Scalars['Int']['output'];
|
|
87995
88513
|
};
|
|
88514
|
+
export declare type MarketplaceConsoleBulkProductMigration = {
|
|
88515
|
+
__typename?: 'MarketplaceConsoleBulkProductMigration';
|
|
88516
|
+
products: Array<Maybe<MarketplaceConsoleProductMigration>>;
|
|
88517
|
+
};
|
|
88518
|
+
export declare type MarketplaceConsoleBulkProductMigrationResponse = MarketplaceConsoleBulkProductMigration | MarketplaceConsoleProductMigrationError;
|
|
87996
88519
|
export declare type MarketplaceConsoleCanMakeServerVersionPublicInput = {
|
|
87997
88520
|
dcAppSoftwareId?: InputMaybe<Scalars['ID']['input']>;
|
|
87998
88521
|
serverAppSoftwareId: Scalars['ID']['input'];
|
|
@@ -88004,6 +88527,11 @@ export declare enum MarketplaceConsoleCloudComplianceBoundary {
|
|
|
88004
88527
|
FedrampModerate = "FEDRAMP_MODERATE",
|
|
88005
88528
|
IsolatedCloud = "ISOLATED_CLOUD"
|
|
88006
88529
|
}
|
|
88530
|
+
export declare type MarketplaceConsoleCompatibilityRanges = {
|
|
88531
|
+
__typename?: 'MarketplaceConsoleCompatibilityRanges';
|
|
88532
|
+
end?: Maybe<Scalars['String']['output']>;
|
|
88533
|
+
start?: Maybe<Scalars['String']['output']>;
|
|
88534
|
+
};
|
|
88007
88535
|
export declare type MarketplaceConsoleConnectFrameworkAttributes = {
|
|
88008
88536
|
__typename?: 'MarketplaceConsoleConnectFrameworkAttributes';
|
|
88009
88537
|
artifact?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
@@ -88368,6 +88896,16 @@ export declare type MarketplaceConsoleImageMediaAsset = {
|
|
|
88368
88896
|
uri: Scalars['String']['output'];
|
|
88369
88897
|
width: Scalars['Int']['output'];
|
|
88370
88898
|
};
|
|
88899
|
+
export declare type MarketplaceConsoleJsonPatchOperation = {
|
|
88900
|
+
op: MarketplaceConsoleJsonPatchOperationType;
|
|
88901
|
+
path: Scalars['String']['input'];
|
|
88902
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
88903
|
+
};
|
|
88904
|
+
export declare enum MarketplaceConsoleJsonPatchOperationType {
|
|
88905
|
+
Add = "ADD",
|
|
88906
|
+
Remove = "REMOVE",
|
|
88907
|
+
Replace = "REPLACE"
|
|
88908
|
+
}
|
|
88371
88909
|
export declare type MarketplaceConsoleKnownError = MarketplaceConsoleError & {
|
|
88372
88910
|
__typename?: 'MarketplaceConsoleKnownError';
|
|
88373
88911
|
id: Scalars['ID']['output'];
|
|
@@ -88542,6 +89080,7 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
88542
89080
|
editAppVersion?: Maybe<MarketplaceConsoleEditVersionMutationResponse>;
|
|
88543
89081
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
88544
89082
|
makeAppVersionPublic?: Maybe<MarketplaceConsoleMakeAppVersionPublicMutationOutput>;
|
|
89083
|
+
patchProductMigration?: Maybe<MarketplaceConsoleProductMigrationResponse>;
|
|
88545
89084
|
updateAppDetails?: Maybe<MarketplaceConsoleUpdateAppDetailsResponse>;
|
|
88546
89085
|
updateMakerContact?: Maybe<MarketplaceConsoleMakerContactResponse>;
|
|
88547
89086
|
validateArtifactUrl?: Maybe<MarketplaceConsoleSoftwareArtifact>;
|
|
@@ -88589,6 +89128,10 @@ export declare type MarketplaceConsoleMutationApiEditionsArgs = {
|
|
|
88589
89128
|
export declare type MarketplaceConsoleMutationApiMakeAppVersionPublicArgs = {
|
|
88590
89129
|
makeAppVersionPublicRequest: MarketplaceConsoleMakeAppVersionPublicRequest;
|
|
88591
89130
|
};
|
|
89131
|
+
export declare type MarketplaceConsoleMutationApiPatchProductMigrationArgs = {
|
|
89132
|
+
operations: Array<MarketplaceConsoleJsonPatchOperation>;
|
|
89133
|
+
productId: Scalars['ID']['input'];
|
|
89134
|
+
};
|
|
88592
89135
|
export declare type MarketplaceConsoleMutationApiUpdateAppDetailsArgs = {
|
|
88593
89136
|
updateAppDetailsRequest: MarketplaceConsoleUpdateAppDetailsRequest;
|
|
88594
89137
|
};
|
|
@@ -88828,6 +89371,30 @@ export declare type MarketplaceConsoleProductMetadata = {
|
|
|
88828
89371
|
productId: Scalars['ID']['output'];
|
|
88829
89372
|
vendorId: Scalars['ID']['output'];
|
|
88830
89373
|
};
|
|
89374
|
+
export declare type MarketplaceConsoleProductMigration = {
|
|
89375
|
+
__typename?: 'MarketplaceConsoleProductMigration';
|
|
89376
|
+
addonKey?: Maybe<Scalars['String']['output']>;
|
|
89377
|
+
addonName?: Maybe<Scalars['String']['output']>;
|
|
89378
|
+
cloudAddonKey?: Maybe<Scalars['String']['output']>;
|
|
89379
|
+
cloudMigrationAssistantCompatibility?: Maybe<Scalars['String']['output']>;
|
|
89380
|
+
cloudMigrationAssistantCompatibilityRanges?: Maybe<Array<Maybe<MarketplaceConsoleCompatibilityRanges>>>;
|
|
89381
|
+
cloudVersionAvailability?: Maybe<Scalars['String']['output']>;
|
|
89382
|
+
cloudVersionDevelopmentRoadmap?: Maybe<Scalars['String']['output']>;
|
|
89383
|
+
developerId?: Maybe<Scalars['ID']['output']>;
|
|
89384
|
+
featureDifferenceDocumentation?: Maybe<Scalars['String']['output']>;
|
|
89385
|
+
isDualLicenseOptedIn?: Maybe<Scalars['Boolean']['output']>;
|
|
89386
|
+
migrationDocumentation?: Maybe<Scalars['String']['output']>;
|
|
89387
|
+
migrationPath?: Maybe<Scalars['String']['output']>;
|
|
89388
|
+
migrationRoadmapTicketLink?: Maybe<Scalars['String']['output']>;
|
|
89389
|
+
productId?: Maybe<Scalars['ID']['output']>;
|
|
89390
|
+
};
|
|
89391
|
+
export declare type MarketplaceConsoleProductMigrationError = MarketplaceConsoleError & {
|
|
89392
|
+
__typename?: 'MarketplaceConsoleProductMigrationError';
|
|
89393
|
+
id: Scalars['ID']['output'];
|
|
89394
|
+
message: Scalars['String']['output'];
|
|
89395
|
+
subCode?: Maybe<Scalars['String']['output']>;
|
|
89396
|
+
};
|
|
89397
|
+
export declare type MarketplaceConsoleProductMigrationResponse = MarketplaceConsoleProductMigration | MarketplaceConsoleProductMigrationError;
|
|
88831
89398
|
export declare type MarketplaceConsoleProductTag = {
|
|
88832
89399
|
__typename?: 'MarketplaceConsoleProductTag';
|
|
88833
89400
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -88858,6 +89425,7 @@ export declare type MarketplaceConsoleQueryApi = {
|
|
|
88858
89425
|
developerSpaceByAppId?: Maybe<MarketplaceConsoleDevSpace>;
|
|
88859
89426
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEdition>>>;
|
|
88860
89427
|
editionsActivationStatus?: Maybe<MarketplaceConsoleEditionsActivationResponse>;
|
|
89428
|
+
getBulkProductMigration?: Maybe<MarketplaceConsoleBulkProductMigrationResponse>;
|
|
88861
89429
|
makeAppVersionPublicChecks?: Maybe<MarketplaceConsoleMakeAppVersionPublicChecks>;
|
|
88862
89430
|
offerings?: Maybe<Array<Maybe<MarketplaceConsoleOffering>>>;
|
|
88863
89431
|
parentProductPricing?: Maybe<MarketplaceConsoleParentSoftwarePricing>;
|
|
@@ -88916,6 +89484,9 @@ export declare type MarketplaceConsoleQueryApiEditionsArgs = {
|
|
|
88916
89484
|
export declare type MarketplaceConsoleQueryApiEditionsActivationStatusArgs = {
|
|
88917
89485
|
product: MarketplaceConsoleEditionsInput;
|
|
88918
89486
|
};
|
|
89487
|
+
export declare type MarketplaceConsoleQueryApiGetBulkProductMigrationArgs = {
|
|
89488
|
+
productIds: Array<Scalars['ID']['input']>;
|
|
89489
|
+
};
|
|
88919
89490
|
export declare type MarketplaceConsoleQueryApiMakeAppVersionPublicChecksArgs = {
|
|
88920
89491
|
appId: Scalars['ID']['input'];
|
|
88921
89492
|
buildNumber: Scalars['ID']['input'];
|
|
@@ -89269,6 +89840,10 @@ export declare type MarketplaceStoreAnonymousUserLinks = {
|
|
|
89269
89840
|
__typename?: 'MarketplaceStoreAnonymousUserLinks';
|
|
89270
89841
|
login: Scalars['String']['output'];
|
|
89271
89842
|
};
|
|
89843
|
+
export declare type MarketplaceStoreAppDetailInput = {
|
|
89844
|
+
appId: Scalars['ID']['input'];
|
|
89845
|
+
appKey: Scalars['String']['input'];
|
|
89846
|
+
};
|
|
89272
89847
|
export declare type MarketplaceStoreAppDetails = MarketplaceStoreMultiInstanceDetails & {
|
|
89273
89848
|
__typename?: 'MarketplaceStoreAppDetails';
|
|
89274
89849
|
id: Scalars['ID']['output'];
|
|
@@ -89277,6 +89852,19 @@ export declare type MarketplaceStoreAppDetails = MarketplaceStoreMultiInstanceDe
|
|
|
89277
89852
|
multiInstanceEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
89278
89853
|
status?: Maybe<Scalars['String']['output']>;
|
|
89279
89854
|
};
|
|
89855
|
+
export declare type MarketplaceStoreAppInstallationNode = {
|
|
89856
|
+
__typename?: 'MarketplaceStoreAppInstallationNode';
|
|
89857
|
+
appId: Scalars['String']['output'];
|
|
89858
|
+
appKey: Scalars['String']['output'];
|
|
89859
|
+
createdByAccountId?: Maybe<Scalars['String']['output']>;
|
|
89860
|
+
id: Scalars['ID']['output'];
|
|
89861
|
+
installationContext: Scalars['String']['output'];
|
|
89862
|
+
};
|
|
89863
|
+
export declare type MarketplaceStoreAppInstallationsByAppResponse = {
|
|
89864
|
+
__typename?: 'MarketplaceStoreAppInstallationsByAppResponse';
|
|
89865
|
+
nodes: Array<MarketplaceStoreAppInstallationNode>;
|
|
89866
|
+
pageInfo: MarketplaceStorePageInfo;
|
|
89867
|
+
};
|
|
89280
89868
|
export declare type MarketplaceStoreAppSoftwareVersionListingLinks = {
|
|
89281
89869
|
__typename?: 'MarketplaceStoreAppSoftwareVersionListingLinks';
|
|
89282
89870
|
bonTermsSupported?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -89409,6 +89997,11 @@ export declare type MarketplaceStoreCollectionUsecasesValues = {
|
|
|
89409
89997
|
image?: Maybe<MarketplaceStoreCollectionUsecasesImage>;
|
|
89410
89998
|
title: Scalars['String']['output'];
|
|
89411
89999
|
};
|
|
90000
|
+
export declare type MarketplaceStoreCompatibilityRanges = {
|
|
90001
|
+
__typename?: 'MarketplaceStoreCompatibilityRanges';
|
|
90002
|
+
end?: Maybe<Scalars['String']['output']>;
|
|
90003
|
+
start?: Maybe<Scalars['String']['output']>;
|
|
90004
|
+
};
|
|
89412
90005
|
export declare type MarketplaceStoreCompatibleProducts = {
|
|
89413
90006
|
__typename?: 'MarketplaceStoreCompatibleProducts';
|
|
89414
90007
|
entitlementDetails?: Maybe<Array<Maybe<MarketplaceStoreEntitlementDetails>>>;
|
|
@@ -89530,6 +90123,11 @@ export declare type MarketplaceStoreGeoIpResponse = {
|
|
|
89530
90123
|
__typename?: 'MarketplaceStoreGeoIPResponse';
|
|
89531
90124
|
countryCode: Scalars['String']['output'];
|
|
89532
90125
|
};
|
|
90126
|
+
export declare type MarketplaceStoreGetUserPreferencesResponse = {
|
|
90127
|
+
__typename?: 'MarketplaceStoreGetUserPreferencesResponse';
|
|
90128
|
+
preferences: MarketplaceStoreUserPreferences;
|
|
90129
|
+
version: Scalars['Int']['output'];
|
|
90130
|
+
};
|
|
89533
90131
|
export declare type MarketplaceStoreHomePageFeaturedSection = MarketplaceStoreHomePageSection & {
|
|
89534
90132
|
__typename?: 'MarketplaceStoreHomePageFeaturedSection';
|
|
89535
90133
|
description: Scalars['String']['output'];
|
|
@@ -89720,6 +90318,7 @@ export declare type MarketplaceStoreMutationApi = {
|
|
|
89720
90318
|
updateReviewDownvote: MarketplaceStoreUpdateReviewVoteResponse;
|
|
89721
90319
|
updateReviewFlag: MarketplaceStoreUpdateReviewFlagResponse;
|
|
89722
90320
|
updateReviewUpvote: MarketplaceStoreUpdateReviewVoteResponse;
|
|
90321
|
+
updateUserPreferences: MarketplaceStoreUpdateUserPreferencesResponse;
|
|
89723
90322
|
};
|
|
89724
90323
|
export declare type MarketplaceStoreMutationApiCreateOrUpdateReviewArgs = {
|
|
89725
90324
|
input: MarketplaceStoreCreateOrUpdateReviewInput;
|
|
@@ -89745,6 +90344,9 @@ export declare type MarketplaceStoreMutationApiUpdateReviewFlagArgs = {
|
|
|
89745
90344
|
export declare type MarketplaceStoreMutationApiUpdateReviewUpvoteArgs = {
|
|
89746
90345
|
input: MarketplaceStoreUpdateReviewVoteInput;
|
|
89747
90346
|
};
|
|
90347
|
+
export declare type MarketplaceStoreMutationApiUpdateUserPreferencesArgs = {
|
|
90348
|
+
input: MarketplaceStoreUpdateUserPreferencesInput;
|
|
90349
|
+
};
|
|
89748
90350
|
export declare type MarketplaceStoreOfferingDetails = {
|
|
89749
90351
|
__typename?: 'MarketplaceStoreOfferingDetails';
|
|
89750
90352
|
id: Scalars['ID']['output'];
|
|
@@ -89769,6 +90371,11 @@ export declare type MarketplaceStoreOrgMultiInstanceEntitlement = {
|
|
|
89769
90371
|
cloudId: Scalars['String']['output'];
|
|
89770
90372
|
orgDetails?: Maybe<MarketplaceStoreOrgDetails>;
|
|
89771
90373
|
};
|
|
90374
|
+
export declare type MarketplaceStorePageInfo = {
|
|
90375
|
+
__typename?: 'MarketplaceStorePageInfo';
|
|
90376
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
90377
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
90378
|
+
};
|
|
89772
90379
|
export declare type MarketplaceStorePartnerAddress = {
|
|
89773
90380
|
__typename?: 'MarketplaceStorePartnerAddress';
|
|
89774
90381
|
city?: Maybe<Scalars['String']['output']>;
|
|
@@ -89908,8 +90515,33 @@ export declare type MarketplaceStoreProductListingScreenshot = {
|
|
|
89908
90515
|
caption?: Maybe<Scalars['String']['output']>;
|
|
89909
90516
|
image: MarketplaceStoreProductListingImage;
|
|
89910
90517
|
};
|
|
90518
|
+
export declare type MarketplaceStoreProductMigration = {
|
|
90519
|
+
__typename?: 'MarketplaceStoreProductMigration';
|
|
90520
|
+
addonKey?: Maybe<Scalars['String']['output']>;
|
|
90521
|
+
addonName?: Maybe<Scalars['String']['output']>;
|
|
90522
|
+
cloudAddonKey?: Maybe<Scalars['String']['output']>;
|
|
90523
|
+
cloudMigrationAssistantCompatibility?: Maybe<Scalars['String']['output']>;
|
|
90524
|
+
cloudMigrationAssistantCompatibilityRanges?: Maybe<Array<Maybe<MarketplaceStoreCompatibilityRanges>>>;
|
|
90525
|
+
cloudVersionAvailability?: Maybe<Scalars['String']['output']>;
|
|
90526
|
+
cloudVersionDevelopmentRoadmap?: Maybe<Scalars['String']['output']>;
|
|
90527
|
+
developerId?: Maybe<Scalars['ID']['output']>;
|
|
90528
|
+
featureDifferenceDocumentation?: Maybe<Scalars['String']['output']>;
|
|
90529
|
+
isDualLicenseOptedIn?: Maybe<Scalars['Boolean']['output']>;
|
|
90530
|
+
migrationDocumentation?: Maybe<Scalars['String']['output']>;
|
|
90531
|
+
migrationPath?: Maybe<Scalars['String']['output']>;
|
|
90532
|
+
migrationRoadmapTicketLink?: Maybe<Scalars['String']['output']>;
|
|
90533
|
+
productId?: Maybe<Scalars['ID']['output']>;
|
|
90534
|
+
};
|
|
90535
|
+
export declare type MarketplaceStoreProductMigrationError = {
|
|
90536
|
+
__typename?: 'MarketplaceStoreProductMigrationError';
|
|
90537
|
+
id: Scalars['ID']['output'];
|
|
90538
|
+
message: Scalars['String']['output'];
|
|
90539
|
+
subCode?: Maybe<Scalars['String']['output']>;
|
|
90540
|
+
};
|
|
90541
|
+
export declare type MarketplaceStoreProductMigrationResponse = MarketplaceStoreProductMigration | MarketplaceStoreProductMigrationError;
|
|
89911
90542
|
export declare type MarketplaceStoreQueryApi = {
|
|
89912
90543
|
__typename?: 'MarketplaceStoreQueryApi';
|
|
90544
|
+
appInstallationsByApp: MarketplaceStoreAppInstallationsByAppResponse;
|
|
89913
90545
|
appReviewById?: Maybe<MarketplaceStoreReviewByIdResponse>;
|
|
89914
90546
|
appReviewsByAppId: MarketplaceStoreReviewsResponse;
|
|
89915
90547
|
appReviewsByAppKey: MarketplaceStoreReviewsResponse;
|
|
@@ -89925,6 +90557,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
89925
90557
|
editionsByAppKey: Array<MarketplaceStoreEdition>;
|
|
89926
90558
|
eligibleOfferingsForApp: MarketplaceStoreEligibleAppOfferingsResponse;
|
|
89927
90559
|
geoip: MarketplaceStoreGeoIpResponse;
|
|
90560
|
+
getProductMigration: MarketplaceStoreProductMigrationResponse;
|
|
89928
90561
|
homePage: MarketplaceStoreHomePageResponse;
|
|
89929
90562
|
hostStatus: MarketplaceStoreHostStatusResponse;
|
|
89930
90563
|
installAppStatus: MarketplaceStoreInstallAppResponse;
|
|
@@ -89935,8 +90568,13 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
89935
90568
|
orgId: MarketplaceStoreOrgIdResponse;
|
|
89936
90569
|
partner: MarketplaceStorePartnerResponse;
|
|
89937
90570
|
siteDetails: MarketplaceStoreSiteDetailsResponse;
|
|
90571
|
+
userPreferences: MarketplaceStoreGetUserPreferencesResponse;
|
|
89938
90572
|
userProfile: MarketplaceStoreUserProfileResponse;
|
|
89939
90573
|
};
|
|
90574
|
+
export declare type MarketplaceStoreQueryApiAppInstallationsByAppArgs = {
|
|
90575
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90576
|
+
appDetails: Array<MarketplaceStoreAppDetailInput>;
|
|
90577
|
+
};
|
|
89940
90578
|
export declare type MarketplaceStoreQueryApiAppReviewByIdArgs = {
|
|
89941
90579
|
appKey: Scalars['String']['input'];
|
|
89942
90580
|
reviewId: Scalars['ID']['input'];
|
|
@@ -89987,6 +90625,9 @@ export declare type MarketplaceStoreQueryApiEditionsByAppKeyArgs = {
|
|
|
89987
90625
|
export declare type MarketplaceStoreQueryApiEligibleOfferingsForAppArgs = {
|
|
89988
90626
|
input: MarketplaceStoreEligibleAppOfferingsInput;
|
|
89989
90627
|
};
|
|
90628
|
+
export declare type MarketplaceStoreQueryApiGetProductMigrationArgs = {
|
|
90629
|
+
productId: Scalars['ID']['input'];
|
|
90630
|
+
};
|
|
89990
90631
|
export declare type MarketplaceStoreQueryApiHomePageArgs = {
|
|
89991
90632
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
89992
90633
|
};
|
|
@@ -90104,6 +90745,26 @@ export declare type MarketplaceStoreUpdateReviewVoteResponse = {
|
|
|
90104
90745
|
id: Scalars['ID']['output'];
|
|
90105
90746
|
status?: Maybe<Scalars['String']['output']>;
|
|
90106
90747
|
};
|
|
90748
|
+
export declare type MarketplaceStoreUpdateUserPreferencesInput = {
|
|
90749
|
+
preferences: MarketplaceStoreUserPreferencesInput;
|
|
90750
|
+
version: Scalars['Int']['input'];
|
|
90751
|
+
};
|
|
90752
|
+
export declare type MarketplaceStoreUpdateUserPreferencesResponse = {
|
|
90753
|
+
__typename?: 'MarketplaceStoreUpdateUserPreferencesResponse';
|
|
90754
|
+
status: Scalars['String']['output'];
|
|
90755
|
+
version: Scalars['Int']['output'];
|
|
90756
|
+
};
|
|
90757
|
+
export declare type MarketplaceStoreUserPreferences = {
|
|
90758
|
+
__typename?: 'MarketplaceStoreUserPreferences';
|
|
90759
|
+
notifyOnAppArchivalSchedule?: Maybe<Scalars['Boolean']['output']>;
|
|
90760
|
+
notifyOnAppUninstallDisableFeedback?: Maybe<Scalars['Boolean']['output']>;
|
|
90761
|
+
notifyOnReviewResponseOrUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
90762
|
+
};
|
|
90763
|
+
export declare type MarketplaceStoreUserPreferencesInput = {
|
|
90764
|
+
notifyOnAppArchivalSchedule: Scalars['Boolean']['input'];
|
|
90765
|
+
notifyOnAppUninstallDisableFeedback: Scalars['Boolean']['input'];
|
|
90766
|
+
notifyOnReviewResponseOrUpdate: Scalars['Boolean']['input'];
|
|
90767
|
+
};
|
|
90107
90768
|
export declare type MarketplaceStoreUserProfileResponse = {
|
|
90108
90769
|
__typename?: 'MarketplaceStoreUserProfileResponse';
|
|
90109
90770
|
developerSpaces?: Maybe<Array<MarketplaceStoreLoggedInUserDeveloperSpace>>;
|
|
@@ -90258,6 +90919,16 @@ export declare type MercuryArchiveFocusAreaValidationPayload = Payload & {
|
|
|
90258
90919
|
errors?: Maybe<Array<MutationError>>;
|
|
90259
90920
|
success: Scalars['Boolean']['output'];
|
|
90260
90921
|
};
|
|
90922
|
+
export declare type MercuryAssignUserAccessToFocusAreaInput = {
|
|
90923
|
+
focusAreaAri: Scalars['ID']['input'];
|
|
90924
|
+
focusAreaUserAccessAssignment: Array<InputMaybe<MercuryFocusAreaUserAccessInput>>;
|
|
90925
|
+
};
|
|
90926
|
+
export declare type MercuryAssignUserAccessToFocusAreaPayload = Payload & {
|
|
90927
|
+
__typename?: 'MercuryAssignUserAccessToFocusAreaPayload';
|
|
90928
|
+
errors?: Maybe<Array<MutationError>>;
|
|
90929
|
+
focusAreaUserAccessAssignment?: Maybe<Array<Maybe<MercuryFocusAreaUserAccessMutation>>>;
|
|
90930
|
+
success: Scalars['Boolean']['output'];
|
|
90931
|
+
};
|
|
90261
90932
|
export declare type MercuryBudgetAggregation = {
|
|
90262
90933
|
__typename?: 'MercuryBudgetAggregation';
|
|
90263
90934
|
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
@@ -91430,6 +92101,34 @@ export declare type MercuryFocusAreaType = {
|
|
|
91430
92101
|
id: Scalars['ID']['output'];
|
|
91431
92102
|
name: Scalars['String']['output'];
|
|
91432
92103
|
};
|
|
92104
|
+
export declare type MercuryFocusAreaUserAccess = {
|
|
92105
|
+
__typename?: 'MercuryFocusAreaUserAccess';
|
|
92106
|
+
accessLevel?: Maybe<MercuryFocusAreaUserAccessLevel>;
|
|
92107
|
+
accessReason?: Maybe<MercuryFocusAreaUserAccessReason>;
|
|
92108
|
+
hasAccess: Scalars['Boolean']['output'];
|
|
92109
|
+
user?: Maybe<User>;
|
|
92110
|
+
};
|
|
92111
|
+
export declare type MercuryFocusAreaUserAccessInput = {
|
|
92112
|
+
accessLevel?: InputMaybe<MercuryFocusAreaUserAccessLevel>;
|
|
92113
|
+
addAsFollower?: InputMaybe<Scalars['Boolean']['input']>;
|
|
92114
|
+
principalId: Scalars['ID']['input'];
|
|
92115
|
+
};
|
|
92116
|
+
export declare enum MercuryFocusAreaUserAccessLevel {
|
|
92117
|
+
Edit = "EDIT",
|
|
92118
|
+
View = "VIEW"
|
|
92119
|
+
}
|
|
92120
|
+
export declare type MercuryFocusAreaUserAccessMutation = {
|
|
92121
|
+
__typename?: 'MercuryFocusAreaUserAccessMutation';
|
|
92122
|
+
addedAsFollower?: Maybe<Scalars['Boolean']['output']>;
|
|
92123
|
+
userAccess?: Maybe<MercuryFocusAreaUserAccess>;
|
|
92124
|
+
};
|
|
92125
|
+
export declare enum MercuryFocusAreaUserAccessReason {
|
|
92126
|
+
AccessGranted = "ACCESS_GRANTED",
|
|
92127
|
+
AlreadyHasAccess = "ALREADY_HAS_ACCESS",
|
|
92128
|
+
RequiresAppAccess = "REQUIRES_APP_ACCESS",
|
|
92129
|
+
RequiresNewProductRole = "REQUIRES_NEW_PRODUCT_ROLE",
|
|
92130
|
+
RequiresSiteAccess = "REQUIRES_SITE_ACCESS"
|
|
92131
|
+
}
|
|
91433
92132
|
export declare type MercuryFocusAreaWorkContext = {
|
|
91434
92133
|
__typename?: 'MercuryFocusAreaWorkContext';
|
|
91435
92134
|
focusAreaLinkedWorkContext?: Maybe<Array<Maybe<MercuryFocusAreaLinkedWorkContextData>>>;
|
|
@@ -91473,6 +92172,9 @@ export declare type MercuryFundsMutationApi = {
|
|
|
91473
92172
|
deleteCostSubtype?: Maybe<MercuryDeleteCostSubtypePayload>;
|
|
91474
92173
|
deleteInvestmentCategory?: Maybe<MercuryDeleteInvestmentCategoryPayload>;
|
|
91475
92174
|
deleteInvestmentCategorySet?: Maybe<MercuryDeleteInvestmentCategorySetPayload>;
|
|
92175
|
+
updateCostSubtypeDescription?: Maybe<MercuryUpdateCostSubtypePayload>;
|
|
92176
|
+
updateCostSubtypeKey?: Maybe<MercuryUpdateCostSubtypePayload>;
|
|
92177
|
+
updateCostSubtypeName?: Maybe<MercuryUpdateCostSubtypePayload>;
|
|
91476
92178
|
updateInvestmentCategoryDescription?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
91477
92179
|
updateInvestmentCategoryKey?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
91478
92180
|
updateInvestmentCategoryName?: Maybe<MercuryUpdateInvestmentCategoryPayload>;
|
|
@@ -91499,6 +92201,15 @@ export declare type MercuryFundsMutationApiDeleteInvestmentCategoryArgs = {
|
|
|
91499
92201
|
export declare type MercuryFundsMutationApiDeleteInvestmentCategorySetArgs = {
|
|
91500
92202
|
input: MercuryDeleteInvestmentCategorySetInput;
|
|
91501
92203
|
};
|
|
92204
|
+
export declare type MercuryFundsMutationApiUpdateCostSubtypeDescriptionArgs = {
|
|
92205
|
+
input: MercuryUpdateCostSubtypeDescriptionInput;
|
|
92206
|
+
};
|
|
92207
|
+
export declare type MercuryFundsMutationApiUpdateCostSubtypeKeyArgs = {
|
|
92208
|
+
input: MercuryUpdateCostSubtypeKeyInput;
|
|
92209
|
+
};
|
|
92210
|
+
export declare type MercuryFundsMutationApiUpdateCostSubtypeNameArgs = {
|
|
92211
|
+
input: MercuryUpdateCostSubtypeNameInput;
|
|
92212
|
+
};
|
|
91502
92213
|
export declare type MercuryFundsMutationApiUpdateInvestmentCategoryDescriptionArgs = {
|
|
91503
92214
|
input: MercuryUpdateInvestmentCategoryDescriptionInput;
|
|
91504
92215
|
};
|
|
@@ -91513,6 +92224,7 @@ export declare type MercuryFundsMutationApiUpdateInvestmentCategorySetNameArgs =
|
|
|
91513
92224
|
};
|
|
91514
92225
|
export declare type MercuryFundsQueryApi = {
|
|
91515
92226
|
__typename?: 'MercuryFundsQueryApi';
|
|
92227
|
+
activeFiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
91516
92228
|
costSubtypes?: Maybe<Array<Maybe<MercuryCostSubtype>>>;
|
|
91517
92229
|
costSubtypesSearch?: Maybe<MercuryCostSubtypeConnection>;
|
|
91518
92230
|
fiscalCalendarConfiguration?: Maybe<MercuryFiscalCalendarConfiguration>;
|
|
@@ -91522,6 +92234,9 @@ export declare type MercuryFundsQueryApi = {
|
|
|
91522
92234
|
investmentCategorySets?: Maybe<Array<Maybe<MercuryInvestmentCategorySet>>>;
|
|
91523
92235
|
investmentCategorySetsSearch?: Maybe<MercuryInvestmentCategorySetConnection>;
|
|
91524
92236
|
};
|
|
92237
|
+
export declare type MercuryFundsQueryApiActiveFiscalCalendarConfigurationArgs = {
|
|
92238
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
92239
|
+
};
|
|
91525
92240
|
export declare type MercuryFundsQueryApiCostSubtypesArgs = {
|
|
91526
92241
|
ids: Array<Scalars['ID']['input']>;
|
|
91527
92242
|
};
|
|
@@ -91540,7 +92255,7 @@ export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsArgs = {
|
|
|
91540
92255
|
};
|
|
91541
92256
|
export declare type MercuryFundsQueryApiFiscalCalendarConfigurationsSearchArgs = {
|
|
91542
92257
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91543
|
-
cloudId
|
|
92258
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
91544
92259
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91545
92260
|
sort?: InputMaybe<Array<InputMaybe<MercuryFiscalCalendarConfigurationSort>>>;
|
|
91546
92261
|
};
|
|
@@ -91779,6 +92494,7 @@ export declare type MercuryMutationApi = {
|
|
|
91779
92494
|
__typename?: 'MercuryMutationApi';
|
|
91780
92495
|
addWatcherToFocusArea?: Maybe<MercuryAddWatcherToFocusAreaPayload>;
|
|
91781
92496
|
archiveFocusArea?: Maybe<MercuryArchiveFocusAreaPayload>;
|
|
92497
|
+
assignUserAccessToFocusArea?: Maybe<MercuryAssignUserAccessToFocusAreaPayload>;
|
|
91782
92498
|
createComment?: Maybe<MercuryCreateCommentPayload>;
|
|
91783
92499
|
createFocusArea?: Maybe<MercuryCreateFocusAreaPayload>;
|
|
91784
92500
|
createFocusAreaCustomFieldDefinition?: Maybe<MercuryCreateCustomFieldDefinitionPayload>;
|
|
@@ -91800,6 +92516,7 @@ export declare type MercuryMutationApi = {
|
|
|
91800
92516
|
linkGoalsToFocusArea?: Maybe<MercuryLinkGoalsToFocusAreaPayload>;
|
|
91801
92517
|
publishFocusArea?: Maybe<MercuryPublishFocusAreaPayload>;
|
|
91802
92518
|
recreatePortfolioFocusAreas?: Maybe<MercuryUpdatePortfolioPayload>;
|
|
92519
|
+
removeUserAccessToFocusArea?: Maybe<MercuryRemoveUserAccessToFocusAreaPayload>;
|
|
91803
92520
|
removeWatcherFromFocusArea?: Maybe<MercuryRemoveWatcherFromFocusAreaPayload>;
|
|
91804
92521
|
setFocusAreaCustomFieldValue?: Maybe<MercurySetFocusAreaCustomFieldPayload>;
|
|
91805
92522
|
setPreference?: Maybe<MercurySetPreferencePayload>;
|
|
@@ -91807,6 +92524,7 @@ export declare type MercuryMutationApi = {
|
|
|
91807
92524
|
unarchiveFocusArea?: Maybe<MercuryUnarchiveFocusAreaPayload>;
|
|
91808
92525
|
updateComment?: Maybe<MercuryUpdateCommentPayload>;
|
|
91809
92526
|
updateFocusAreaAboutContent?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
92527
|
+
updateFocusAreaCustomFieldDefinitionDescription?: Maybe<MercuryUpdateCustomFieldDefinitionDescriptionPayload>;
|
|
91810
92528
|
updateFocusAreaCustomFieldDefinitionName?: Maybe<MercuryUpdateCustomFieldDefinitionNamePayload>;
|
|
91811
92529
|
updateFocusAreaName?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
91812
92530
|
updateFocusAreaOwner?: Maybe<MercuryUpdateFocusAreaPayload>;
|
|
@@ -91822,6 +92540,9 @@ export declare type MercuryMutationApiAddWatcherToFocusAreaArgs = {
|
|
|
91822
92540
|
export declare type MercuryMutationApiArchiveFocusAreaArgs = {
|
|
91823
92541
|
input: MercuryArchiveFocusAreaInput;
|
|
91824
92542
|
};
|
|
92543
|
+
export declare type MercuryMutationApiAssignUserAccessToFocusAreaArgs = {
|
|
92544
|
+
input: MercuryAssignUserAccessToFocusAreaInput;
|
|
92545
|
+
};
|
|
91825
92546
|
export declare type MercuryMutationApiCreateCommentArgs = {
|
|
91826
92547
|
input: MercuryCreateCommentInput;
|
|
91827
92548
|
};
|
|
@@ -91885,6 +92606,9 @@ export declare type MercuryMutationApiPublishFocusAreaArgs = {
|
|
|
91885
92606
|
export declare type MercuryMutationApiRecreatePortfolioFocusAreasArgs = {
|
|
91886
92607
|
input: MercuryRecreatePortfolioFocusAreasInput;
|
|
91887
92608
|
};
|
|
92609
|
+
export declare type MercuryMutationApiRemoveUserAccessToFocusAreaArgs = {
|
|
92610
|
+
input: MercuryRemoveUserAccessToFocusAreaInput;
|
|
92611
|
+
};
|
|
91888
92612
|
export declare type MercuryMutationApiRemoveWatcherFromFocusAreaArgs = {
|
|
91889
92613
|
input: MercuryRemoveWatcherFromFocusAreaInput;
|
|
91890
92614
|
};
|
|
@@ -91906,6 +92630,9 @@ export declare type MercuryMutationApiUpdateCommentArgs = {
|
|
|
91906
92630
|
export declare type MercuryMutationApiUpdateFocusAreaAboutContentArgs = {
|
|
91907
92631
|
input: MercuryUpdateFocusAreaAboutContentInput;
|
|
91908
92632
|
};
|
|
92633
|
+
export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionDescriptionArgs = {
|
|
92634
|
+
input: MercuryUpdateCustomFieldDefinitionDescriptionInput;
|
|
92635
|
+
};
|
|
91909
92636
|
export declare type MercuryMutationApiUpdateFocusAreaCustomFieldDefinitionNameArgs = {
|
|
91910
92637
|
input: MercuryUpdateCustomFieldDefinitionNameInput;
|
|
91911
92638
|
};
|
|
@@ -92478,6 +93205,15 @@ export declare type MercuryRemoveTagsFromProposalPayload = Payload & {
|
|
|
92478
93205
|
success: Scalars['Boolean']['output'];
|
|
92479
93206
|
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
92480
93207
|
};
|
|
93208
|
+
export declare type MercuryRemoveUserAccessToFocusAreaInput = {
|
|
93209
|
+
focusAreaAri: Scalars['ID']['input'];
|
|
93210
|
+
principalIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
93211
|
+
};
|
|
93212
|
+
export declare type MercuryRemoveUserAccessToFocusAreaPayload = Payload & {
|
|
93213
|
+
__typename?: 'MercuryRemoveUserAccessToFocusAreaPayload';
|
|
93214
|
+
errors?: Maybe<Array<MutationError>>;
|
|
93215
|
+
success: Scalars['Boolean']['output'];
|
|
93216
|
+
};
|
|
92481
93217
|
export declare type MercuryRemoveWatcherFromFocusAreaInput = {
|
|
92482
93218
|
cloudId: Scalars['ID']['input'];
|
|
92483
93219
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -93193,6 +93929,34 @@ export declare type MercuryUpdateCommentPayload = Payload & {
|
|
|
93193
93929
|
success: Scalars['Boolean']['output'];
|
|
93194
93930
|
updatedComment?: Maybe<MercuryComment>;
|
|
93195
93931
|
};
|
|
93932
|
+
export declare type MercuryUpdateCostSubtypeDescriptionInput = {
|
|
93933
|
+
description: Scalars['String']['input'];
|
|
93934
|
+
id: Scalars['ID']['input'];
|
|
93935
|
+
};
|
|
93936
|
+
export declare type MercuryUpdateCostSubtypeKeyInput = {
|
|
93937
|
+
id: Scalars['ID']['input'];
|
|
93938
|
+
key: Scalars['String']['input'];
|
|
93939
|
+
};
|
|
93940
|
+
export declare type MercuryUpdateCostSubtypeNameInput = {
|
|
93941
|
+
id: Scalars['ID']['input'];
|
|
93942
|
+
name: Scalars['String']['input'];
|
|
93943
|
+
};
|
|
93944
|
+
export declare type MercuryUpdateCostSubtypePayload = Payload & {
|
|
93945
|
+
__typename?: 'MercuryUpdateCostSubtypePayload';
|
|
93946
|
+
errors?: Maybe<Array<MutationError>>;
|
|
93947
|
+
success: Scalars['Boolean']['output'];
|
|
93948
|
+
updatedCostSubtype?: Maybe<MercuryCostSubtype>;
|
|
93949
|
+
};
|
|
93950
|
+
export declare type MercuryUpdateCustomFieldDefinitionDescriptionInput = {
|
|
93951
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
93952
|
+
id: Scalars['ID']['input'];
|
|
93953
|
+
};
|
|
93954
|
+
export declare type MercuryUpdateCustomFieldDefinitionDescriptionPayload = Payload & {
|
|
93955
|
+
__typename?: 'MercuryUpdateCustomFieldDefinitionDescriptionPayload';
|
|
93956
|
+
customFieldDefinition?: Maybe<MercuryCustomFieldDefinition>;
|
|
93957
|
+
errors?: Maybe<Array<MutationError>>;
|
|
93958
|
+
success: Scalars['Boolean']['output'];
|
|
93959
|
+
};
|
|
93196
93960
|
export declare type MercuryUpdateCustomFieldDefinitionNameInput = {
|
|
93197
93961
|
id: Scalars['ID']['input'];
|
|
93198
93962
|
name: Scalars['String']['input'];
|
|
@@ -93760,6 +94524,7 @@ export declare type Mutation = {
|
|
|
93760
94524
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
93761
94525
|
confluence_acceptAnswer?: Maybe<ConfluenceAcceptAnswerPayload>;
|
|
93762
94526
|
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
94527
|
+
confluence_addTrack?: Maybe<ConfluenceAddTrackPayload>;
|
|
93763
94528
|
confluence_batchFollowTeammates?: Maybe<ConfluenceBatchFollowTeammatesPayload>;
|
|
93764
94529
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
93765
94530
|
confluence_convertNote?: Maybe<ConfluenceConvertNotePayload>;
|
|
@@ -93806,7 +94571,9 @@ export declare type Mutation = {
|
|
|
93806
94571
|
confluence_nbmStartVerificationLongTask?: Maybe<ConfluenceNbmStartVerificationLongTaskPayload>;
|
|
93807
94572
|
confluence_patchCalendar?: Maybe<ConfluencePatchCalendarPayload>;
|
|
93808
94573
|
confluence_publishBlueprintSharedDraft?: Maybe<ConfluencePublishBlueprintSharedDraftPayload>;
|
|
94574
|
+
confluence_removeTrack?: Maybe<ConfluenceRemoveTrackPayload>;
|
|
93809
94575
|
confluence_reopenComment?: Maybe<ConfluenceReopenCommentPayload>;
|
|
94576
|
+
confluence_reorderTracks?: Maybe<ConfluenceReorderTrackPayload>;
|
|
93810
94577
|
confluence_resolveComments?: Maybe<ConfluenceResolveCommentsPayload>;
|
|
93811
94578
|
confluence_resolveCommentsByContentId?: Maybe<ConfluenceResolveCommentByContentIdPayload>;
|
|
93812
94579
|
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
@@ -94001,15 +94768,21 @@ export declare type Mutation = {
|
|
|
94001
94768
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
94002
94769
|
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
94003
94770
|
goals_addProjectLink?: Maybe<TownsquareAddProjectLinkPayload>;
|
|
94771
|
+
goals_archiveMetric?: Maybe<TownsquareGoalsArchiveMetricPayload>;
|
|
94004
94772
|
goals_clone?: Maybe<TownsquareGoalsClonePayload>;
|
|
94005
94773
|
goals_createAndAddMetricTarget?: Maybe<TownsquareGoalsCreateAddMetricTargetPayload>;
|
|
94774
|
+
goals_createDecision?: Maybe<TownsquareGoalsCreateDecisionPayload>;
|
|
94775
|
+
goals_createLearning?: Maybe<TownsquareGoalsCreateLearningPayload>;
|
|
94776
|
+
goals_createRisk?: Maybe<TownsquareGoalsCreateRiskPayload>;
|
|
94006
94777
|
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
94007
94778
|
goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
|
|
94779
|
+
goals_editComment?: Maybe<TownsquareGoalsEditCommentPayload>;
|
|
94008
94780
|
goals_editMetric?: Maybe<TownsquareGoalsEditMetricPayload>;
|
|
94009
94781
|
goals_editMetricTarget?: Maybe<TownsquareGoalsEditMetricTargetPayload>;
|
|
94010
94782
|
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
94011
94783
|
goals_linkWorkItem?: Maybe<TownsquareGoalsLinkWorkItemPayload>;
|
|
94012
94784
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
94785
|
+
goals_removeMetricTarget?: Maybe<TownsquareGoalsRemoveMetricTargetPayload>;
|
|
94013
94786
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
94014
94787
|
goals_shareGoal?: Maybe<TownsquareGoalsShareGoalPayload>;
|
|
94015
94788
|
goals_unlinkWorkItem?: Maybe<TownsquareGoalsUnlinkWorkItemPayload>;
|
|
@@ -94069,6 +94842,7 @@ export declare type Mutation = {
|
|
|
94069
94842
|
jira_deleteIssueType?: Maybe<JiraDeleteIssueTypePayload>;
|
|
94070
94843
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
94071
94844
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
94845
|
+
jira_dismissAiAgentSession?: Maybe<JiraDismissAiAgentSessionPayload>;
|
|
94072
94846
|
jira_dismissSuggestions?: Maybe<JiraDismissSuggestionActionsPayload>;
|
|
94073
94847
|
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
94074
94848
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
@@ -94116,12 +94890,14 @@ export declare type Mutation = {
|
|
|
94116
94890
|
jira_setIssueSearchFieldSets?: Maybe<JiraSetIssueSearchFieldSetsPayload>;
|
|
94117
94891
|
jira_setIssueSearchGroupBy?: Maybe<JiraSetIssueSearchGroupByPayload>;
|
|
94118
94892
|
jira_setIssueSearchHideDoneItems?: Maybe<JiraSetIssueSearchHideDoneItemsPayload>;
|
|
94893
|
+
jira_setIssueSearchHideWarnings?: Maybe<JiraSetIssueSearchHideWarningsPayload>;
|
|
94119
94894
|
jira_setIssueSearchHierarchyEnabled?: Maybe<JiraSetIssueSearchHierarchyEnabledPayload>;
|
|
94120
94895
|
jira_setIssueSearchJql?: Maybe<JiraSetIssueSearchJqlPayload>;
|
|
94121
94896
|
jira_setIssueSearchViewLayout?: Maybe<JiraSetIssueSearchViewLayoutPayload>;
|
|
94122
94897
|
jira_setShowUnscheduledIssuesCalendarPanel?: Maybe<JiraShowUnscheduledIssuesCalendarMutationPayload>;
|
|
94123
94898
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
94124
94899
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
94900
|
+
jira_trashCustomFields?: Maybe<JiraTrashCustomFieldsPayload>;
|
|
94125
94901
|
jira_trashGlobalCustomFields?: Maybe<JiraTrashGlobalCustomFieldsPayload>;
|
|
94126
94902
|
jira_unarchiveIssue?: Maybe<JiraIssueUnarchivePayload>;
|
|
94127
94903
|
jira_updateFieldToFieldConfigSchemeAssociations?: Maybe<JiraFieldToFieldConfigSchemeAssociationsPayload>;
|
|
@@ -94247,7 +95023,7 @@ export declare type Mutation = {
|
|
|
94247
95023
|
revertToLegacyEditor?: Maybe<RevertToLegacyEditorResult>;
|
|
94248
95024
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
94249
95025
|
runImport?: Maybe<RunImportPayload>;
|
|
94250
|
-
sendMessage
|
|
95026
|
+
sendMessage?: Maybe<AquaMessage>;
|
|
94251
95027
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
94252
95028
|
setAppLicenseId?: Maybe<SetAppLicenseIdResponse>;
|
|
94253
95029
|
setBatchedTaskStatus?: Maybe<GraphQlMutationResponse>;
|
|
@@ -94284,6 +95060,7 @@ export declare type Mutation = {
|
|
|
94284
95060
|
shardedGraphStore?: Maybe<ShardedGraphStoreMutation>;
|
|
94285
95061
|
shareResource?: Maybe<ShareResourcePayload>;
|
|
94286
95062
|
shepherd?: Maybe<ShepherdMutation>;
|
|
95063
|
+
signInvocationTokenForUI?: Maybe<SignInvocationTokenForUiResponse>;
|
|
94287
95064
|
softDeleteSpace?: Maybe<SoftDeleteSpacePayload>;
|
|
94288
95065
|
spf_attachAskLink?: Maybe<SpfAttachAskLinkPayload>;
|
|
94289
95066
|
spf_createAsk?: Maybe<SpfUpsertAskPayload>;
|
|
@@ -94879,6 +95656,10 @@ export declare type MutationConfluence_AddReactionArgs = {
|
|
|
94879
95656
|
cloudId: Scalars['ID']['input'];
|
|
94880
95657
|
input: ConfluenceReactionInput;
|
|
94881
95658
|
};
|
|
95659
|
+
export declare type MutationConfluence_AddTrackArgs = {
|
|
95660
|
+
cloudId: Scalars['ID']['input'];
|
|
95661
|
+
input: ConfluenceAddTrackInput;
|
|
95662
|
+
};
|
|
94882
95663
|
export declare type MutationConfluence_BatchFollowTeammatesArgs = {
|
|
94883
95664
|
cloudId: Scalars['ID']['input'];
|
|
94884
95665
|
input: ConfluenceBatchFollowTeammatesInput;
|
|
@@ -95060,10 +95841,18 @@ export declare type MutationConfluence_PublishBlueprintSharedDraftArgs = {
|
|
|
95060
95841
|
cloudId: Scalars['ID']['input'];
|
|
95061
95842
|
input?: InputMaybe<ConfluencePublishBlueprintSharedDraftInput>;
|
|
95062
95843
|
};
|
|
95844
|
+
export declare type MutationConfluence_RemoveTrackArgs = {
|
|
95845
|
+
cloudId: Scalars['ID']['input'];
|
|
95846
|
+
input: ConfluenceTrackInput;
|
|
95847
|
+
};
|
|
95063
95848
|
export declare type MutationConfluence_ReopenCommentArgs = {
|
|
95064
95849
|
cloudId: Scalars['ID']['input'];
|
|
95065
95850
|
commentId: Scalars['ID']['input'];
|
|
95066
95851
|
};
|
|
95852
|
+
export declare type MutationConfluence_ReorderTracksArgs = {
|
|
95853
|
+
cloudId: Scalars['ID']['input'];
|
|
95854
|
+
input: ConfluenceReorderTrackInput;
|
|
95855
|
+
};
|
|
95067
95856
|
export declare type MutationConfluence_ResolveCommentsArgs = {
|
|
95068
95857
|
cloudId: Scalars['ID']['input'];
|
|
95069
95858
|
commentIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
@@ -95755,18 +96544,33 @@ export declare type MutationGoals_AddGoalTeamLinkArgs = {
|
|
|
95755
96544
|
export declare type MutationGoals_AddProjectLinkArgs = {
|
|
95756
96545
|
input: TownsquareAddProjectLinkInput;
|
|
95757
96546
|
};
|
|
96547
|
+
export declare type MutationGoals_ArchiveMetricArgs = {
|
|
96548
|
+
input: TownsquareGoalsArchiveMetricInput;
|
|
96549
|
+
};
|
|
95758
96550
|
export declare type MutationGoals_CloneArgs = {
|
|
95759
96551
|
input: TownsquareGoalsCloneInput;
|
|
95760
96552
|
};
|
|
95761
96553
|
export declare type MutationGoals_CreateAndAddMetricTargetArgs = {
|
|
95762
96554
|
input: TownsquareGoalsCreateAddMetricTargetInput;
|
|
95763
96555
|
};
|
|
96556
|
+
export declare type MutationGoals_CreateDecisionArgs = {
|
|
96557
|
+
input: TownsquareGoalsCreateDecisionInput;
|
|
96558
|
+
};
|
|
96559
|
+
export declare type MutationGoals_CreateLearningArgs = {
|
|
96560
|
+
input: TownsquareGoalsCreateLearningInput;
|
|
96561
|
+
};
|
|
96562
|
+
export declare type MutationGoals_CreateRiskArgs = {
|
|
96563
|
+
input: TownsquareGoalsCreateRiskInput;
|
|
96564
|
+
};
|
|
95764
96565
|
export declare type MutationGoals_CreateUpdateArgs = {
|
|
95765
96566
|
input?: InputMaybe<TownsquareGoalsCreateUpdateInput>;
|
|
95766
96567
|
};
|
|
95767
96568
|
export declare type MutationGoals_DeleteLatestUpdateArgs = {
|
|
95768
96569
|
input?: InputMaybe<TownsquareGoalsDeleteLatestUpdateInput>;
|
|
95769
96570
|
};
|
|
96571
|
+
export declare type MutationGoals_EditCommentArgs = {
|
|
96572
|
+
input: TownsquareGoalsEditCommentInput;
|
|
96573
|
+
};
|
|
95770
96574
|
export declare type MutationGoals_EditMetricArgs = {
|
|
95771
96575
|
input: TownsquareGoalsEditMetricInput;
|
|
95772
96576
|
};
|
|
@@ -95782,6 +96586,9 @@ export declare type MutationGoals_LinkWorkItemArgs = {
|
|
|
95782
96586
|
export declare type MutationGoals_RemoveGoalTeamLinkArgs = {
|
|
95783
96587
|
input?: InputMaybe<TownsquareGoalsRemoveGoalTeamLinkInput>;
|
|
95784
96588
|
};
|
|
96589
|
+
export declare type MutationGoals_RemoveMetricTargetArgs = {
|
|
96590
|
+
input: TownsquareGoalsRemoveMetricTargetInput;
|
|
96591
|
+
};
|
|
95785
96592
|
export declare type MutationGoals_SetWatchingGoalArgs = {
|
|
95786
96593
|
input?: InputMaybe<TownsquareGoalsSetWatchingGoalInput>;
|
|
95787
96594
|
};
|
|
@@ -95952,6 +96759,9 @@ export declare type MutationJira_DiscardUserBoardViewConfigArgs = {
|
|
|
95952
96759
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
95953
96760
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
95954
96761
|
};
|
|
96762
|
+
export declare type MutationJira_DismissAiAgentSessionArgs = {
|
|
96763
|
+
input?: InputMaybe<JiraDismissAiAgentSessionInput>;
|
|
96764
|
+
};
|
|
95955
96765
|
export declare type MutationJira_DismissSuggestionsArgs = {
|
|
95956
96766
|
input: JiraDismissSuggestionsInput;
|
|
95957
96767
|
};
|
|
@@ -96099,6 +96909,9 @@ export declare type MutationJira_SetIssueSearchGroupByArgs = {
|
|
|
96099
96909
|
export declare type MutationJira_SetIssueSearchHideDoneItemsArgs = {
|
|
96100
96910
|
input: JiraSetIssueSearchHideDoneItemsInput;
|
|
96101
96911
|
};
|
|
96912
|
+
export declare type MutationJira_SetIssueSearchHideWarningsArgs = {
|
|
96913
|
+
input: JiraSetIssueSearchHideWarningsInput;
|
|
96914
|
+
};
|
|
96102
96915
|
export declare type MutationJira_SetIssueSearchHierarchyEnabledArgs = {
|
|
96103
96916
|
input: JiraSetIssueSearchHierarchyEnabledInput;
|
|
96104
96917
|
};
|
|
@@ -96118,6 +96931,10 @@ export declare type MutationJira_SetViewFilterArgs = {
|
|
|
96118
96931
|
export declare type MutationJira_SetViewGroupByArgs = {
|
|
96119
96932
|
input: JiraSetViewGroupByInput;
|
|
96120
96933
|
};
|
|
96934
|
+
export declare type MutationJira_TrashCustomFieldsArgs = {
|
|
96935
|
+
cloudId: Scalars['ID']['input'];
|
|
96936
|
+
input: JiraTrashCustomFieldsInput;
|
|
96937
|
+
};
|
|
96121
96938
|
export declare type MutationJira_TrashGlobalCustomFieldsArgs = {
|
|
96122
96939
|
cloudId: Scalars['ID']['input'];
|
|
96123
96940
|
input: JiraTrashGlobalCustomFieldsInput;
|
|
@@ -96609,6 +97426,9 @@ export declare type MutationSettings_UpdateUserPreferencesWorkspaceArgs = {
|
|
|
96609
97426
|
export declare type MutationShareResourceArgs = {
|
|
96610
97427
|
shareResourceInput: ShareResourceInput;
|
|
96611
97428
|
};
|
|
97429
|
+
export declare type MutationSignInvocationTokenForUiArgs = {
|
|
97430
|
+
input: SignInvocationTokenForUiInput;
|
|
97431
|
+
};
|
|
96612
97432
|
export declare type MutationSoftDeleteSpaceArgs = {
|
|
96613
97433
|
spaceKey: Scalars['String']['input'];
|
|
96614
97434
|
};
|
|
@@ -99906,7 +100726,7 @@ export declare type Query = {
|
|
|
99906
100726
|
adminAnnouncementBannerSettingsByCriteria?: Maybe<AdminAnnouncementBannerSettingConnection>;
|
|
99907
100727
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
99908
100728
|
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
99909
|
-
admin_appModules?: Maybe<
|
|
100729
|
+
admin_appModules?: Maybe<AdminAppModuleConnection>;
|
|
99910
100730
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
99911
100731
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
99912
100732
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
@@ -99945,6 +100765,7 @@ export declare type Query = {
|
|
|
99945
100765
|
agentStudio_evaluationProject?: Maybe<AgentStudioBatchEvaluationProject>;
|
|
99946
100766
|
agentStudio_getAgentActorRoles?: Maybe<AgentStudioActorRoles>;
|
|
99947
100767
|
agentStudio_getAgents?: Maybe<AgentStudioAgentsConnection>;
|
|
100768
|
+
agentStudio_getAgentsByIds?: Maybe<Array<Maybe<AgentStudioAgent>>>;
|
|
99948
100769
|
agentStudio_getByExternalReference?: Maybe<AgentStudioAgentResult>;
|
|
99949
100770
|
agentStudio_getCreateAgentPermissions?: Maybe<AgentStudioAgentCreatePermissionsConnection>;
|
|
99950
100771
|
agentStudio_getToolsByIdAndSource?: Maybe<Array<AgentStudioTool>>;
|
|
@@ -100109,6 +100930,8 @@ export declare type Query = {
|
|
|
100109
100930
|
confluence_generateSpaceKey?: Maybe<ConfluenceGeneratedSpaceKey>;
|
|
100110
100931
|
confluence_getAllApps?: Maybe<ConfluenceAppConnection>;
|
|
100111
100932
|
confluence_getCustomContentPermissionAssignments?: Maybe<ConfluenceCustomContentPermissionAssignmentConnection>;
|
|
100933
|
+
confluence_getLatestPendingRequests?: Maybe<ConfluenceLatestPendingRequests>;
|
|
100934
|
+
confluence_getPlaylist?: Maybe<ConfluencePlaylist>;
|
|
100112
100935
|
confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
|
|
100113
100936
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
100114
100937
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -100261,6 +101084,7 @@ export declare type Query = {
|
|
|
100261
101084
|
devai_autodevJobsByAri?: Maybe<Array<Maybe<JiraAutodevJob>>>;
|
|
100262
101085
|
devai_autodevJobsForIssue?: Maybe<JiraAutodevJobConnection>;
|
|
100263
101086
|
devai_autodevRovoAgents?: Maybe<DevAiRovoAgentConnection>;
|
|
101087
|
+
devai_checkEntitlements: Scalars['Boolean']['output'];
|
|
100264
101088
|
devai_codePlannerJobsForIssue?: Maybe<DevAiTechnicalPlannerJobConnection>;
|
|
100265
101089
|
devai_containerConfig?: Maybe<DevAiContainerConfig>;
|
|
100266
101090
|
devai_flowGetRepositories?: Maybe<DevAiFlowRepositoryConnection>;
|
|
@@ -100275,6 +101099,7 @@ export declare type Query = {
|
|
|
100275
101099
|
devai_rovoDevAgentsUser?: Maybe<DevAiUser>;
|
|
100276
101100
|
devai_rovoDevAgentsWorkspace?: Maybe<DevAiWorkspace>;
|
|
100277
101101
|
devai_rovoDevEntitlements?: Maybe<DevAiEntitlementCheckResultResponse>;
|
|
101102
|
+
devai_rovodevIssueViewQuery?: Maybe<DevAiRovoDevIssueViewResponse>;
|
|
100278
101103
|
devai_rovodevSessionById?: Maybe<DevAiRovoDevSession>;
|
|
100279
101104
|
devai_rovodevSessions?: Maybe<DevAiRovoDevSessionConnection>;
|
|
100280
101105
|
devai_rovodevSessionsByAri?: Maybe<Array<DevAiRovoDevSession>>;
|
|
@@ -100336,8 +101161,10 @@ export declare type Query = {
|
|
|
100336
101161
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
100337
101162
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
100338
101163
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
101164
|
+
goals_appSettings?: Maybe<TownsquareGoalsAppSettings>;
|
|
100339
101165
|
goals_byId?: Maybe<TownsquareGoal>;
|
|
100340
101166
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
101167
|
+
goals_metricSearch?: Maybe<TownsquareMetricConnection>;
|
|
100341
101168
|
goals_metricTargetsByIds?: Maybe<Array<Maybe<TownsquareMetricTarget>>>;
|
|
100342
101169
|
goals_metricValuesByIds?: Maybe<Array<Maybe<TownsquareMetricValue>>>;
|
|
100343
101170
|
goals_metricsByIds?: Maybe<Array<Maybe<TownsquareMetric>>>;
|
|
@@ -100421,6 +101248,7 @@ export declare type Query = {
|
|
|
100421
101248
|
jira_fieldSchemeAvailableFields?: Maybe<JiraFieldConnection>;
|
|
100422
101249
|
jira_fieldSchemes?: Maybe<JiraFieldSchemesConnection>;
|
|
100423
101250
|
jira_fieldSchemesByARIs?: Maybe<Array<Maybe<JiraFieldScheme>>>;
|
|
101251
|
+
jira_fieldsPerSchemeLimit?: Maybe<Scalars['Int']['output']>;
|
|
100424
101252
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
100425
101253
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
100426
101254
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -100559,6 +101387,7 @@ export declare type Query = {
|
|
|
100559
101387
|
pricings: ContentPlatformPricingSearchConnection;
|
|
100560
101388
|
productListing?: Maybe<ProductListingResult>;
|
|
100561
101389
|
productListings: Array<ProductListingResult>;
|
|
101390
|
+
projects_appSettings?: Maybe<TownsquareProjectsAppSettings>;
|
|
100562
101391
|
projects_byAri?: Maybe<TownsquareProject>;
|
|
100563
101392
|
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
100564
101393
|
projects_byId?: Maybe<TownsquareProject>;
|
|
@@ -100652,6 +101481,7 @@ export declare type Query = {
|
|
|
100652
101481
|
spf_askLinksByIds?: Maybe<Array<Maybe<SpfAskLink>>>;
|
|
100653
101482
|
spf_asks?: Maybe<SpfAskConnection>;
|
|
100654
101483
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
101484
|
+
spf_getMediaToken?: Maybe<SpfMediaTokenResult>;
|
|
100655
101485
|
spf_resolveImpactedWorkUrl?: Maybe<SpfResolveImpactedWorkUrlPayload>;
|
|
100656
101486
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
100657
101487
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
@@ -100668,6 +101498,7 @@ export declare type Query = {
|
|
|
100668
101498
|
stakeholderComms_getFileReadMediaToken?: Maybe<StakeholderCommsMediaToken>;
|
|
100669
101499
|
stakeholderComms_getFlattenedStakeholdersList?: Maybe<StakeholderCommsGetStakeholderListResponse>;
|
|
100670
101500
|
stakeholderComms_getIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
101501
|
+
stakeholderComms_getIncidentTemplate?: Maybe<StakeholderCommsIncidentTemplateResponse>;
|
|
100671
101502
|
stakeholderComms_getLicenseUsageLimit?: Maybe<StakeholderCommsLicenseUsage>;
|
|
100672
101503
|
stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
|
|
100673
101504
|
stakeholderComms_getPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
@@ -100693,6 +101524,7 @@ export declare type Query = {
|
|
|
100693
101524
|
stakeholderComms_isPageNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
100694
101525
|
stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
100695
101526
|
stakeholderComms_isUniqueSubdomainAvailable?: Maybe<Scalars['Boolean']['output']>;
|
|
101527
|
+
stakeholderComms_listIncidentTemplates?: Maybe<StakeholderCommsListIncidentTemplateResponse>;
|
|
100696
101528
|
stakeholderComms_listIncidents?: Maybe<StakeholderCommsListIncidentResponse>;
|
|
100697
101529
|
stakeholderComms_listIncidentsV2?: Maybe<StakeholderCommsIncidentWithUpdatesConnection>;
|
|
100698
101530
|
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
@@ -100705,10 +101537,15 @@ export declare type Query = {
|
|
|
100705
101537
|
team?: Maybe<TeamQuery>;
|
|
100706
101538
|
teamCalendarSettings?: Maybe<TeamCalendarSettings>;
|
|
100707
101539
|
teamLabels?: Maybe<PaginatedLabelList>;
|
|
101540
|
+
teamworkGraph_getProjectContext?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
100708
101541
|
teamworkGraph_projectUpdates?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
101542
|
+
teamworkGraph_teamProjects?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
100709
101543
|
teamworkGraph_teamUsers?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
100710
101544
|
teamworkGraph_userCommented?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
100711
101545
|
teamworkGraph_userCreated?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
101546
|
+
teamworkGraph_userDirectReports?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
101547
|
+
teamworkGraph_userManager?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
101548
|
+
teamworkGraph_userReportChain?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
100712
101549
|
teamworkGraph_userTaggedIn?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
100713
101550
|
teamworkGraph_userTeams?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
100714
101551
|
teamworkGraph_userTopRecentMentioners?: Maybe<GraphStoreCypherQueryV2Connection>;
|
|
@@ -100779,8 +101616,12 @@ export declare type QueryAdmin_AccessUrlsArgs = {
|
|
|
100779
101616
|
orgId: Scalars['ID']['input'];
|
|
100780
101617
|
};
|
|
100781
101618
|
export declare type QueryAdmin_AppModulesArgs = {
|
|
101619
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
100782
101620
|
ari: Scalars['String']['input'];
|
|
100783
|
-
|
|
101621
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
101622
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101623
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
101624
|
+
moduleKeys: Array<Scalars['String']['input']>;
|
|
100784
101625
|
};
|
|
100785
101626
|
export declare type QueryAdmin_CheckLicensesCapacityArgs = {
|
|
100786
101627
|
input: AdminLicenseInput;
|
|
@@ -100928,6 +101769,7 @@ export declare type QueryAgentAi_SummarizeIssueArgs = {
|
|
|
100928
101769
|
};
|
|
100929
101770
|
export declare type QueryAgentStudio_AgentByIdArgs = {
|
|
100930
101771
|
id: Scalars['ID']['input'];
|
|
101772
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
100931
101773
|
};
|
|
100932
101774
|
export declare type QueryAgentStudio_AgentByIdentityAccountIdArgs = {
|
|
100933
101775
|
cloudId: Scalars['String']['input'];
|
|
@@ -101007,6 +101849,9 @@ export declare type QueryAgentStudio_GetAgentsArgs = {
|
|
|
101007
101849
|
input?: InputMaybe<AgentStudioAgentQueryInput>;
|
|
101008
101850
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
101009
101851
|
};
|
|
101852
|
+
export declare type QueryAgentStudio_GetAgentsByIdsArgs = {
|
|
101853
|
+
ids: Array<Scalars['ID']['input']>;
|
|
101854
|
+
};
|
|
101010
101855
|
export declare type QueryAgentStudio_GetByExternalReferenceArgs = {
|
|
101011
101856
|
cloudId: Scalars['String']['input'];
|
|
101012
101857
|
externalReference: Scalars['String']['input'];
|
|
@@ -101050,12 +101895,14 @@ export declare type QueryAgentStudio_ToolIntegrationsArgs = {
|
|
|
101050
101895
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101051
101896
|
cloudId: Scalars['String']['input'];
|
|
101052
101897
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101898
|
+
scenarioVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
101053
101899
|
};
|
|
101054
101900
|
export declare type QueryAgentStudio_ToolsArgs = {
|
|
101055
101901
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101056
101902
|
cloudId: Scalars['String']['input'];
|
|
101057
101903
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101058
101904
|
integrationKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
101905
|
+
scenarioVersion?: InputMaybe<Scalars['Int']['input']>;
|
|
101059
101906
|
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
101060
101907
|
};
|
|
101061
101908
|
export declare type QueryAgentStudio_ValidateScenarioArgs = {
|
|
@@ -101766,6 +102613,20 @@ export declare type QueryConfluence_GetCustomContentPermissionAssignmentsArgs =
|
|
|
101766
102613
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101767
102614
|
spaceId: Scalars['ID']['input'];
|
|
101768
102615
|
};
|
|
102616
|
+
export declare type QueryConfluence_GetLatestPendingRequestsArgs = {
|
|
102617
|
+
cloudId: Scalars['ID']['input'];
|
|
102618
|
+
contentId: Scalars['ID']['input'];
|
|
102619
|
+
duration?: InputMaybe<Scalars['Int']['input']>;
|
|
102620
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
102621
|
+
start?: InputMaybe<Scalars['String']['input']>;
|
|
102622
|
+
};
|
|
102623
|
+
export declare type QueryConfluence_GetPlaylistArgs = {
|
|
102624
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
102625
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
102626
|
+
cloudId: Scalars['ID']['input'];
|
|
102627
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
102628
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
102629
|
+
};
|
|
101769
102630
|
export declare type QueryConfluence_GetWacTemplateArgs = {
|
|
101770
102631
|
cloudId: Scalars['ID']['input'];
|
|
101771
102632
|
};
|
|
@@ -102521,6 +103382,10 @@ export declare type QueryDevai_AutodevRovoAgentsArgs = {
|
|
|
102521
103382
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
102522
103383
|
templatesFilter?: InputMaybe<DevAiRovoAgentTemplateFilter>;
|
|
102523
103384
|
};
|
|
103385
|
+
export declare type QueryDevai_CheckEntitlementsArgs = {
|
|
103386
|
+
cloudId: Scalars['ID']['input'];
|
|
103387
|
+
xid: Scalars['String']['input'];
|
|
103388
|
+
};
|
|
102524
103389
|
export declare type QueryDevai_CodePlannerJobsForIssueArgs = {
|
|
102525
103390
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
102526
103391
|
cloudId: Scalars['ID']['input'];
|
|
@@ -102582,6 +103447,12 @@ export declare type QueryDevai_RovoDevEntitlementsArgs = {
|
|
|
102582
103447
|
cloudId: Scalars['ID']['input'];
|
|
102583
103448
|
includeUserProductAccess?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102584
103449
|
};
|
|
103450
|
+
export declare type QueryDevai_RovodevIssueViewQueryArgs = {
|
|
103451
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103452
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
103453
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103454
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
103455
|
+
};
|
|
102585
103456
|
export declare type QueryDevai_RovodevSessionByIdArgs = {
|
|
102586
103457
|
id: Scalars['ID']['input'];
|
|
102587
103458
|
};
|
|
@@ -102798,12 +103669,22 @@ export declare type QueryGetSummaryArgs = {
|
|
|
102798
103669
|
lastUpdatedTimeSeconds: Scalars['Long']['input'];
|
|
102799
103670
|
responseType?: InputMaybe<ResponseType>;
|
|
102800
103671
|
};
|
|
103672
|
+
export declare type QueryGoals_AppSettingsArgs = {
|
|
103673
|
+
containerId: Scalars['ID']['input'];
|
|
103674
|
+
};
|
|
102801
103675
|
export declare type QueryGoals_ByIdArgs = {
|
|
102802
103676
|
goalId: Scalars['ID']['input'];
|
|
102803
103677
|
};
|
|
102804
103678
|
export declare type QueryGoals_ByIdsArgs = {
|
|
102805
103679
|
goalIds: Array<Scalars['ID']['input']>;
|
|
102806
103680
|
};
|
|
103681
|
+
export declare type QueryGoals_MetricSearchArgs = {
|
|
103682
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
103683
|
+
containerId: Scalars['ID']['input'];
|
|
103684
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
103685
|
+
searchString: Scalars['String']['input'];
|
|
103686
|
+
sort?: InputMaybe<Array<InputMaybe<TownsquareMetricSortEnum>>>;
|
|
103687
|
+
};
|
|
102807
103688
|
export declare type QueryGoals_MetricTargetsByIdsArgs = {
|
|
102808
103689
|
metricTargetIds: Array<Scalars['ID']['input']>;
|
|
102809
103690
|
};
|
|
@@ -103102,6 +103983,9 @@ export declare type QueryJira_FieldSchemesArgs = {
|
|
|
103102
103983
|
export declare type QueryJira_FieldSchemesByArIsArgs = {
|
|
103103
103984
|
ids: Array<Scalars['ID']['input']>;
|
|
103104
103985
|
};
|
|
103986
|
+
export declare type QueryJira_FieldsPerSchemeLimitArgs = {
|
|
103987
|
+
cloudId: Scalars['ID']['input'];
|
|
103988
|
+
};
|
|
103105
103989
|
export declare type QueryJira_IsRovoLlmEnabledArgs = {
|
|
103106
103990
|
cloudId: Scalars['ID']['input'];
|
|
103107
103991
|
};
|
|
@@ -103546,6 +104430,9 @@ export declare type QueryProductListingsArgs = {
|
|
|
103546
104430
|
ids: Array<Scalars['ID']['input']>;
|
|
103547
104431
|
locales?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
103548
104432
|
};
|
|
104433
|
+
export declare type QueryProjects_AppSettingsArgs = {
|
|
104434
|
+
containerId: Scalars['ID']['input'];
|
|
104435
|
+
};
|
|
103549
104436
|
export declare type QueryProjects_ByAriArgs = {
|
|
103550
104437
|
ari: Scalars['String']['input'];
|
|
103551
104438
|
};
|
|
@@ -103937,6 +104824,11 @@ export declare type QuerySpf_AsksArgs = {
|
|
|
103937
104824
|
export declare type QuerySpf_AsksByIdsArgs = {
|
|
103938
104825
|
ids: Array<Scalars['ID']['input']>;
|
|
103939
104826
|
};
|
|
104827
|
+
export declare type QuerySpf_GetMediaTokenArgs = {
|
|
104828
|
+
cloudId: Scalars['ID']['input'];
|
|
104829
|
+
id: Scalars['ID']['input'];
|
|
104830
|
+
usageType: SpfMediaTokenUsageType;
|
|
104831
|
+
};
|
|
103940
104832
|
export declare type QuerySpf_ResolveImpactedWorkUrlArgs = {
|
|
103941
104833
|
cloudId: Scalars['ID']['input'];
|
|
103942
104834
|
url: Scalars['String']['input'];
|
|
@@ -103996,6 +104888,9 @@ export declare type QueryStakeholderComms_GetFlattenedStakeholdersListArgs = {
|
|
|
103996
104888
|
export declare type QueryStakeholderComms_GetIncidentArgs = {
|
|
103997
104889
|
getIncidentInput?: InputMaybe<StakeholderCommsGetIncidentInput>;
|
|
103998
104890
|
};
|
|
104891
|
+
export declare type QueryStakeholderComms_GetIncidentTemplateArgs = {
|
|
104892
|
+
incidentTemplateId: Scalars['String']['input'];
|
|
104893
|
+
};
|
|
103999
104894
|
export declare type QueryStakeholderComms_GetLicenseUsageLimitArgs = {
|
|
104000
104895
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
104001
104896
|
};
|
|
@@ -104074,6 +104969,9 @@ export declare type QueryStakeholderComms_IsStakeholderGroupNameUniqueArgs = {
|
|
|
104074
104969
|
export declare type QueryStakeholderComms_IsUniqueSubdomainAvailableArgs = {
|
|
104075
104970
|
subdomain: Scalars['String']['input'];
|
|
104076
104971
|
};
|
|
104972
|
+
export declare type QueryStakeholderComms_ListIncidentTemplatesArgs = {
|
|
104973
|
+
pageId?: InputMaybe<Scalars['String']['input']>;
|
|
104974
|
+
};
|
|
104077
104975
|
export declare type QueryStakeholderComms_ListIncidentsArgs = {
|
|
104078
104976
|
listIncidentInput?: InputMaybe<StakeholderCommsListIncidentInput>;
|
|
104079
104977
|
};
|
|
@@ -104110,6 +105008,11 @@ export declare type QueryTeamLabelsArgs = {
|
|
|
104110
105008
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
104111
105009
|
start?: InputMaybe<Scalars['Int']['input']>;
|
|
104112
105010
|
};
|
|
105011
|
+
export declare type QueryTeamworkGraph_GetProjectContextArgs = {
|
|
105012
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
105013
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
105014
|
+
projectId: Scalars['ID']['input'];
|
|
105015
|
+
};
|
|
104113
105016
|
export declare type QueryTeamworkGraph_ProjectUpdatesArgs = {
|
|
104114
105017
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
104115
105018
|
endDate: Scalars['DateTime']['input'];
|
|
@@ -104117,6 +105020,13 @@ export declare type QueryTeamworkGraph_ProjectUpdatesArgs = {
|
|
|
104117
105020
|
projectId: Scalars['String']['input'];
|
|
104118
105021
|
startDate: Scalars['DateTime']['input'];
|
|
104119
105022
|
};
|
|
105023
|
+
export declare type QueryTeamworkGraph_TeamProjectsArgs = {
|
|
105024
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
105025
|
+
endDate: Scalars['DateTime']['input'];
|
|
105026
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
105027
|
+
startDate: Scalars['DateTime']['input'];
|
|
105028
|
+
teamId: Scalars['ID']['input'];
|
|
105029
|
+
};
|
|
104120
105030
|
export declare type QueryTeamworkGraph_TeamUsersArgs = {
|
|
104121
105031
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
104122
105032
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -104130,6 +105040,15 @@ export declare type QueryTeamworkGraph_UserCreatedArgs = {
|
|
|
104130
105040
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
104131
105041
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
104132
105042
|
};
|
|
105043
|
+
export declare type QueryTeamworkGraph_UserDirectReportsArgs = {
|
|
105044
|
+
userId: Scalars['ID']['input'];
|
|
105045
|
+
};
|
|
105046
|
+
export declare type QueryTeamworkGraph_UserManagerArgs = {
|
|
105047
|
+
userId: Scalars['ID']['input'];
|
|
105048
|
+
};
|
|
105049
|
+
export declare type QueryTeamworkGraph_UserReportChainArgs = {
|
|
105050
|
+
userId: Scalars['ID']['input'];
|
|
105051
|
+
};
|
|
104133
105052
|
export declare type QueryTeamworkGraph_UserTaggedInArgs = {
|
|
104134
105053
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
104135
105054
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -104149,7 +105068,11 @@ export declare type QueryTeamworkGraph_UserTopRecentReferencersArgs = {
|
|
|
104149
105068
|
};
|
|
104150
105069
|
export declare type QueryTeamworkGraph_UserViewedArgs = {
|
|
104151
105070
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
105071
|
+
endDate: Scalars['DateTime']['input'];
|
|
104152
105072
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
105073
|
+
startDate: Scalars['DateTime']['input'];
|
|
105074
|
+
userId: Scalars['ID']['input'];
|
|
105075
|
+
viewedEntityTypes?: Array<TeamworkGraphUserViewedEntityType>;
|
|
104153
105076
|
};
|
|
104154
105077
|
export declare type QueryTeamworkGraph_UserWorkMentionedArgs = {
|
|
104155
105078
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -106895,6 +107818,13 @@ export declare type SearchDefaultResult = SearchResult & {
|
|
|
106895
107818
|
type: SearchResultType;
|
|
106896
107819
|
url: Scalars['String']['output'];
|
|
106897
107820
|
};
|
|
107821
|
+
export declare type SearchError = {
|
|
107822
|
+
__typename?: 'SearchError';
|
|
107823
|
+
integration?: Maybe<Scalars['String']['output']>;
|
|
107824
|
+
message: Scalars['String']['output'];
|
|
107825
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
107826
|
+
statusCode: Scalars['Int']['output'];
|
|
107827
|
+
};
|
|
106898
107828
|
export declare type SearchExperimentContextInput = {
|
|
106899
107829
|
experimentId?: InputMaybe<Scalars['String']['input']>;
|
|
106900
107830
|
experimentLayers?: InputMaybe<Array<InputMaybe<SearchExperimentLayer>>>;
|
|
@@ -106969,13 +107899,17 @@ export declare type SearchInterleaverScrapingResult = {
|
|
|
106969
107899
|
};
|
|
106970
107900
|
export declare enum SearchIssueStatusCategory {
|
|
106971
107901
|
Done = "DONE",
|
|
106972
|
-
|
|
107902
|
+
Indeterminate = "INDETERMINATE",
|
|
107903
|
+
New = "NEW",
|
|
107904
|
+
Open = "OPEN",
|
|
107905
|
+
Undefined = "UNDEFINED"
|
|
106973
107906
|
}
|
|
106974
107907
|
export declare type SearchItemConnection = {
|
|
106975
107908
|
__typename?: 'SearchItemConnection';
|
|
106976
107909
|
abTest?: Maybe<SearchAbTest>;
|
|
106977
107910
|
deferredEdges?: Maybe<Array<SearchResultItemEdge>>;
|
|
106978
107911
|
edges: Array<SearchResultItemEdge>;
|
|
107912
|
+
errors?: Maybe<Array<SearchError>>;
|
|
106979
107913
|
interleaverScrapingResult?: Maybe<SearchInterleaverScrapingResult>;
|
|
106980
107914
|
pageInfo: PageInfo;
|
|
106981
107915
|
queryInfo?: Maybe<SearchQueryInfo>;
|
|
@@ -126678,6 +127612,17 @@ export declare type ShepherdWorkspaceUpdateCustomDetectionInput = {
|
|
|
126678
127612
|
export declare type ShepherdWorkspaceUpdateInput = {
|
|
126679
127613
|
shouldOnboard: Scalars['Boolean']['input'];
|
|
126680
127614
|
};
|
|
127615
|
+
export declare type SignInvocationTokenForUiInput = {
|
|
127616
|
+
forgeContextToken: Scalars['String']['input'];
|
|
127617
|
+
remoteKey: Scalars['String']['input'];
|
|
127618
|
+
};
|
|
127619
|
+
export declare type SignInvocationTokenForUiResponse = Payload & {
|
|
127620
|
+
__typename?: 'SignInvocationTokenForUIResponse';
|
|
127621
|
+
errors?: Maybe<Array<MutationError>>;
|
|
127622
|
+
forgeInvocationToken?: Maybe<ForgeInvocationToken>;
|
|
127623
|
+
metadata?: Maybe<InvocationTokenForUiMetadata>;
|
|
127624
|
+
success: Scalars['Boolean']['output'];
|
|
127625
|
+
};
|
|
126681
127626
|
export declare type SignUpProperties = {
|
|
126682
127627
|
__typename?: 'SignUpProperties';
|
|
126683
127628
|
reverseTrial?: Maybe<ReverseTrialCohort>;
|
|
@@ -128156,6 +129101,15 @@ export declare type SpfDeleteAskUpdatePayload = Payload & {
|
|
|
128156
129101
|
success: Scalars['Boolean']['output'];
|
|
128157
129102
|
};
|
|
128158
129103
|
export declare type SpfImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
129104
|
+
export declare type SpfMediaToken = {
|
|
129105
|
+
__typename?: 'SpfMediaToken';
|
|
129106
|
+
value: Scalars['String']['output'];
|
|
129107
|
+
};
|
|
129108
|
+
export declare type SpfMediaTokenResult = QueryError | SpfMediaToken;
|
|
129109
|
+
export declare enum SpfMediaTokenUsageType {
|
|
129110
|
+
Read = "READ",
|
|
129111
|
+
Write = "WRITE"
|
|
129112
|
+
}
|
|
128159
129113
|
export declare type SpfResolveImpactedWorkUrlPayload = {
|
|
128160
129114
|
__typename?: 'SpfResolveImpactedWorkUrlPayload';
|
|
128161
129115
|
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
@@ -128518,6 +129472,7 @@ export declare type StakeholderCommsCreatePageInputType = {
|
|
|
128518
129472
|
colours?: InputMaybe<StakeholderCommsColoursInput>;
|
|
128519
129473
|
components?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
128520
129474
|
createdAt?: InputMaybe<Scalars['String']['input']>;
|
|
129475
|
+
createdBy?: InputMaybe<Scalars['String']['input']>;
|
|
128521
129476
|
customCss?: InputMaybe<Scalars['String']['input']>;
|
|
128522
129477
|
customFooterHtml?: InputMaybe<Scalars['String']['input']>;
|
|
128523
129478
|
customHeaderHtml?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -128682,6 +129637,7 @@ export declare type StakeholderCommsIncidentResponse = {
|
|
|
128682
129637
|
__typename?: 'StakeholderCommsIncidentResponse';
|
|
128683
129638
|
error?: Maybe<Scalars['String']['output']>;
|
|
128684
129639
|
incidentWithUpdates?: Maybe<StakeholderCommsIncidentWithUpdates>;
|
|
129640
|
+
page?: Maybe<StakeholderCommsPage>;
|
|
128685
129641
|
};
|
|
128686
129642
|
export declare enum StakeholderCommsIncidentStatus {
|
|
128687
129643
|
Identified = "IDENTIFIED",
|
|
@@ -128689,6 +129645,25 @@ export declare enum StakeholderCommsIncidentStatus {
|
|
|
128689
129645
|
Monitoring = "MONITORING",
|
|
128690
129646
|
Resolved = "RESOLVED"
|
|
128691
129647
|
}
|
|
129648
|
+
export declare type StakeholderCommsIncidentTemplate = {
|
|
129649
|
+
__typename?: 'StakeholderCommsIncidentTemplate';
|
|
129650
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
129651
|
+
createAt?: Maybe<Scalars['String']['output']>;
|
|
129652
|
+
groupId?: Maybe<Scalars['String']['output']>;
|
|
129653
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
129654
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
129655
|
+
pageId?: Maybe<Scalars['String']['output']>;
|
|
129656
|
+
shouldSendNotifications?: Maybe<Scalars['Boolean']['output']>;
|
|
129657
|
+
shouldTweet?: Maybe<Scalars['Boolean']['output']>;
|
|
129658
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
129659
|
+
updateStatus?: Maybe<Scalars['String']['output']>;
|
|
129660
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
129661
|
+
};
|
|
129662
|
+
export declare type StakeholderCommsIncidentTemplateResponse = {
|
|
129663
|
+
__typename?: 'StakeholderCommsIncidentTemplateResponse';
|
|
129664
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
129665
|
+
incidentTemplate?: Maybe<StakeholderCommsIncidentTemplate>;
|
|
129666
|
+
};
|
|
128692
129667
|
export declare type StakeholderCommsIncidentUpdate = {
|
|
128693
129668
|
__typename?: 'StakeholderCommsIncidentUpdate';
|
|
128694
129669
|
affectedComponents?: Maybe<Array<Maybe<StakeholderCommsIncidentComponentStatus>>>;
|
|
@@ -128766,6 +129741,11 @@ export declare type StakeholderCommsListIncidentResponse = {
|
|
|
128766
129741
|
error?: Maybe<Scalars['String']['output']>;
|
|
128767
129742
|
incidentNodes?: Maybe<Array<Maybe<StakeholderCommsIncidentWithUpdates>>>;
|
|
128768
129743
|
};
|
|
129744
|
+
export declare type StakeholderCommsListIncidentTemplateResponse = {
|
|
129745
|
+
__typename?: 'StakeholderCommsListIncidentTemplateResponse';
|
|
129746
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
129747
|
+
incidentTemplates?: Maybe<Array<Maybe<StakeholderCommsIncidentTemplate>>>;
|
|
129748
|
+
};
|
|
128769
129749
|
export declare type StakeholderCommsMediaToken = {
|
|
128770
129750
|
__typename?: 'StakeholderCommsMediaToken';
|
|
128771
129751
|
error?: Maybe<Scalars['String']['output']>;
|
|
@@ -128893,6 +129873,7 @@ export declare type StakeholderCommsPage = {
|
|
|
128893
129873
|
colours?: Maybe<StakeholderCommsColoursType>;
|
|
128894
129874
|
components?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
128895
129875
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
129876
|
+
createdBy?: Maybe<Scalars['String']['output']>;
|
|
128896
129877
|
customCss?: Maybe<Scalars['String']['output']>;
|
|
128897
129878
|
customFooterHtml?: Maybe<Scalars['String']['output']>;
|
|
128898
129879
|
customHeaderHtml?: Maybe<Scalars['String']['output']>;
|
|
@@ -130443,6 +131424,16 @@ export declare type TeamV2MembersArgs = {
|
|
|
130443
131424
|
first?: Scalars['Int']['input'];
|
|
130444
131425
|
state?: Array<TeamMembershipState>;
|
|
130445
131426
|
};
|
|
131427
|
+
export declare enum TeamworkGraphUserViewedEntityType {
|
|
131428
|
+
ConfluenceBlogpost = "ConfluenceBlogpost",
|
|
131429
|
+
ConfluencePage = "ConfluencePage",
|
|
131430
|
+
JiraIssue = "JiraIssue",
|
|
131431
|
+
LoomVideo = "LoomVideo",
|
|
131432
|
+
TownsquareGoal = "TownsquareGoal",
|
|
131433
|
+
TownsquareGoalUpdate = "TownsquareGoalUpdate",
|
|
131434
|
+
TownsquareProject = "TownsquareProject",
|
|
131435
|
+
TownsquareProjectUpdate = "TownsquareProjectUpdate"
|
|
131436
|
+
}
|
|
130446
131437
|
export declare type TemplateBody = {
|
|
130447
131438
|
__typename?: 'TemplateBody';
|
|
130448
131439
|
body: ContentBody;
|
|
@@ -131287,6 +132278,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
131287
132278
|
status?: Maybe<TownsquareStatus>;
|
|
131288
132279
|
subGoalSuggestions?: Maybe<TownsquareGoalConnection>;
|
|
131289
132280
|
subGoals?: Maybe<TownsquareGoalConnection>;
|
|
132281
|
+
successMeasures?: Maybe<TownsquareGoalConnection>;
|
|
131290
132282
|
tags?: Maybe<TownsquareTagConnection>;
|
|
131291
132283
|
targetDate?: Maybe<TownsquareTargetDate>;
|
|
131292
132284
|
teams?: Maybe<TownsquareGoalTeamConnection>;
|
|
@@ -131343,6 +132335,10 @@ export declare type TownsquareGoalSubGoalsArgs = {
|
|
|
131343
132335
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131344
132336
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131345
132337
|
};
|
|
132338
|
+
export declare type TownsquareGoalSuccessMeasuresArgs = {
|
|
132339
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
132340
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132341
|
+
};
|
|
131346
132342
|
export declare type TownsquareGoalTagsArgs = {
|
|
131347
132343
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131348
132344
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -131574,6 +132570,20 @@ export declare type TownsquareGoalsAddGoalTeamLinkPayload = {
|
|
|
131574
132570
|
goalTeamEdge?: Maybe<TownsquareGoalTeamEdge>;
|
|
131575
132571
|
success: Scalars['Boolean']['output'];
|
|
131576
132572
|
};
|
|
132573
|
+
export declare type TownsquareGoalsAppSettings = {
|
|
132574
|
+
__typename?: 'TownsquareGoalsAppSettings';
|
|
132575
|
+
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
132576
|
+
scoringMode?: Maybe<TownsquareGoalScoringMode>;
|
|
132577
|
+
};
|
|
132578
|
+
export declare type TownsquareGoalsArchiveMetricInput = {
|
|
132579
|
+
metricId: Scalars['ID']['input'];
|
|
132580
|
+
};
|
|
132581
|
+
export declare type TownsquareGoalsArchiveMetricPayload = {
|
|
132582
|
+
__typename?: 'TownsquareGoalsArchiveMetricPayload';
|
|
132583
|
+
errors?: Maybe<Array<MutationError>>;
|
|
132584
|
+
metric?: Maybe<TownsquareMetric>;
|
|
132585
|
+
success: Scalars['Boolean']['output'];
|
|
132586
|
+
};
|
|
131577
132587
|
export declare type TownsquareGoalsCloneInput = {
|
|
131578
132588
|
addProjects?: InputMaybe<Scalars['Boolean']['input']>;
|
|
131579
132589
|
addWatchers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -131599,8 +132609,42 @@ export declare type TownsquareGoalsCreateAddMetricTargetPayload = {
|
|
|
131599
132609
|
goal?: Maybe<TownsquareGoal>;
|
|
131600
132610
|
success: Scalars['Boolean']['output'];
|
|
131601
132611
|
};
|
|
132612
|
+
export declare type TownsquareGoalsCreateDecisionInput = {
|
|
132613
|
+
description: Scalars['String']['input'];
|
|
132614
|
+
goalId: Scalars['ID']['input'];
|
|
132615
|
+
summary: Scalars['String']['input'];
|
|
132616
|
+
};
|
|
132617
|
+
export declare type TownsquareGoalsCreateDecisionPayload = {
|
|
132618
|
+
__typename?: 'TownsquareGoalsCreateDecisionPayload';
|
|
132619
|
+
decision?: Maybe<TownsquareDecision>;
|
|
132620
|
+
errors?: Maybe<Array<MutationError>>;
|
|
132621
|
+
success: Scalars['Boolean']['output'];
|
|
132622
|
+
};
|
|
132623
|
+
export declare type TownsquareGoalsCreateLearningInput = {
|
|
132624
|
+
description: Scalars['String']['input'];
|
|
132625
|
+
goalId: Scalars['ID']['input'];
|
|
132626
|
+
summary: Scalars['String']['input'];
|
|
132627
|
+
};
|
|
132628
|
+
export declare type TownsquareGoalsCreateLearningPayload = {
|
|
132629
|
+
__typename?: 'TownsquareGoalsCreateLearningPayload';
|
|
132630
|
+
errors?: Maybe<Array<MutationError>>;
|
|
132631
|
+
learning?: Maybe<TownsquareLearning>;
|
|
132632
|
+
success: Scalars['Boolean']['output'];
|
|
132633
|
+
};
|
|
132634
|
+
export declare type TownsquareGoalsCreateRiskInput = {
|
|
132635
|
+
description: Scalars['String']['input'];
|
|
132636
|
+
goalId: Scalars['ID']['input'];
|
|
132637
|
+
summary: Scalars['String']['input'];
|
|
132638
|
+
};
|
|
132639
|
+
export declare type TownsquareGoalsCreateRiskPayload = {
|
|
132640
|
+
__typename?: 'TownsquareGoalsCreateRiskPayload';
|
|
132641
|
+
errors?: Maybe<Array<MutationError>>;
|
|
132642
|
+
risk?: Maybe<TownsquareRisk>;
|
|
132643
|
+
success: Scalars['Boolean']['output'];
|
|
132644
|
+
};
|
|
131602
132645
|
export declare type TownsquareGoalsCreateUpdateInput = {
|
|
131603
132646
|
goalId: Scalars['ID']['input'];
|
|
132647
|
+
metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateInput>>>;
|
|
131604
132648
|
score?: InputMaybe<Scalars['Int']['input']>;
|
|
131605
132649
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
131606
132650
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -131623,6 +132667,16 @@ export declare type TownsquareGoalsDeleteLatestUpdatePayload = {
|
|
|
131623
132667
|
success: Scalars['Boolean']['output'];
|
|
131624
132668
|
updateId?: Maybe<Scalars['ID']['output']>;
|
|
131625
132669
|
};
|
|
132670
|
+
export declare type TownsquareGoalsEditCommentInput = {
|
|
132671
|
+
commentId: Scalars['ID']['input'];
|
|
132672
|
+
commentText: Scalars['String']['input'];
|
|
132673
|
+
};
|
|
132674
|
+
export declare type TownsquareGoalsEditCommentPayload = {
|
|
132675
|
+
__typename?: 'TownsquareGoalsEditCommentPayload';
|
|
132676
|
+
comment?: Maybe<TownsquareComment>;
|
|
132677
|
+
errors?: Maybe<Array<MutationError>>;
|
|
132678
|
+
success: Scalars['Boolean']['output'];
|
|
132679
|
+
};
|
|
131626
132680
|
export declare type TownsquareGoalsEditMetricInput = {
|
|
131627
132681
|
externalEntityId?: InputMaybe<Scalars['String']['input']>;
|
|
131628
132682
|
metricId: Scalars['ID']['input'];
|
|
@@ -131651,6 +132705,7 @@ export declare type TownsquareGoalsEditMetricTargetPayload = {
|
|
|
131651
132705
|
};
|
|
131652
132706
|
export declare type TownsquareGoalsEditUpdateInput = {
|
|
131653
132707
|
goalUpdateId: Scalars['ID']['input'];
|
|
132708
|
+
metricUpdate?: InputMaybe<Array<InputMaybe<TownsquareMetricUpdateEditInput>>>;
|
|
131654
132709
|
score?: InputMaybe<Scalars['Int']['input']>;
|
|
131655
132710
|
status?: InputMaybe<Scalars['String']['input']>;
|
|
131656
132711
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -131684,6 +132739,17 @@ export declare type TownsquareGoalsRemoveGoalTeamLinkPayload = {
|
|
|
131684
132739
|
success: Scalars['Boolean']['output'];
|
|
131685
132740
|
team?: Maybe<TeamV2>;
|
|
131686
132741
|
};
|
|
132742
|
+
export declare type TownsquareGoalsRemoveMetricTargetInput = {
|
|
132743
|
+
goalId: Scalars['ID']['input'];
|
|
132744
|
+
metricTargetId: Scalars['ID']['input'];
|
|
132745
|
+
};
|
|
132746
|
+
export declare type TownsquareGoalsRemoveMetricTargetPayload = {
|
|
132747
|
+
__typename?: 'TownsquareGoalsRemoveMetricTargetPayload';
|
|
132748
|
+
deletedMetricTargetId?: Maybe<Scalars['ID']['output']>;
|
|
132749
|
+
errors?: Maybe<Array<MutationError>>;
|
|
132750
|
+
goal?: Maybe<TownsquareGoal>;
|
|
132751
|
+
success: Scalars['Boolean']['output'];
|
|
132752
|
+
};
|
|
131687
132753
|
export declare type TownsquareGoalsSetWatchingGoalInput = {
|
|
131688
132754
|
goalId: Scalars['ID']['input'];
|
|
131689
132755
|
isWatching: Scalars['Boolean']['input'];
|
|
@@ -131848,6 +132914,22 @@ export declare type TownsquareMetricValuesArgs = {
|
|
|
131848
132914
|
sort?: InputMaybe<Array<InputMaybe<TownsquareMetricValueSortEnum>>>;
|
|
131849
132915
|
startDate?: InputMaybe<Scalars['DateTime']['input']>;
|
|
131850
132916
|
};
|
|
132917
|
+
export declare type TownsquareMetricConnection = {
|
|
132918
|
+
__typename?: 'TownsquareMetricConnection';
|
|
132919
|
+
edges?: Maybe<Array<Maybe<TownsquareMetricEdge>>>;
|
|
132920
|
+
pageInfo: PageInfo;
|
|
132921
|
+
};
|
|
132922
|
+
export declare type TownsquareMetricEdge = {
|
|
132923
|
+
__typename?: 'TownsquareMetricEdge';
|
|
132924
|
+
cursor: Scalars['String']['output'];
|
|
132925
|
+
node?: Maybe<TownsquareMetric>;
|
|
132926
|
+
};
|
|
132927
|
+
export declare enum TownsquareMetricSortEnum {
|
|
132928
|
+
IdAsc = "ID_ASC",
|
|
132929
|
+
IdDesc = "ID_DESC",
|
|
132930
|
+
NameAsc = "NAME_ASC",
|
|
132931
|
+
NameDesc = "NAME_DESC"
|
|
132932
|
+
}
|
|
131851
132933
|
export declare type TownsquareMetricTarget = Node & {
|
|
131852
132934
|
__typename?: 'TownsquareMetricTarget';
|
|
131853
132935
|
id: Scalars['ID']['output'];
|
|
@@ -131871,6 +132953,14 @@ export declare enum TownsquareMetricType {
|
|
|
131871
132953
|
Numeric = "NUMERIC",
|
|
131872
132954
|
Percentage = "PERCENTAGE"
|
|
131873
132955
|
}
|
|
132956
|
+
export declare type TownsquareMetricUpdateEditInput = {
|
|
132957
|
+
metricId: Scalars['ID']['input'];
|
|
132958
|
+
newValue: Scalars['Float']['input'];
|
|
132959
|
+
};
|
|
132960
|
+
export declare type TownsquareMetricUpdateInput = {
|
|
132961
|
+
newValue: Scalars['Float']['input'];
|
|
132962
|
+
targetId: Scalars['ID']['input'];
|
|
132963
|
+
};
|
|
131874
132964
|
export declare type TownsquareMetricValue = Node & {
|
|
131875
132965
|
__typename?: 'TownsquareMetricValue';
|
|
131876
132966
|
id: Scalars['ID']['output'];
|
|
@@ -132308,6 +133398,10 @@ export declare type TownsquareProjectsAddTeamContributorsPayload = {
|
|
|
132308
133398
|
project?: Maybe<TownsquareProject>;
|
|
132309
133399
|
success: Scalars['Boolean']['output'];
|
|
132310
133400
|
};
|
|
133401
|
+
export declare type TownsquareProjectsAppSettings = {
|
|
133402
|
+
__typename?: 'TownsquareProjectsAppSettings';
|
|
133403
|
+
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
133404
|
+
};
|
|
132311
133405
|
export declare type TownsquareProjectsCanCreateProjectFusionInput = {
|
|
132312
133406
|
issueId: Scalars['ID']['input'];
|
|
132313
133407
|
projectId: Scalars['ID']['input'];
|
|
@@ -133132,6 +134226,16 @@ export declare type TrelloAddChecklistToCardDisplayEntities = {
|
|
|
133132
134226
|
checklist?: Maybe<TrelloActionChecklistEntity>;
|
|
133133
134227
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
133134
134228
|
};
|
|
134229
|
+
export declare type TrelloAddLabelsToCardInput = {
|
|
134230
|
+
cardId: Scalars['ID']['input'];
|
|
134231
|
+
labelIds: Array<Scalars['ID']['input']>;
|
|
134232
|
+
};
|
|
134233
|
+
export declare type TrelloAddLabelsToCardPayload = Payload & {
|
|
134234
|
+
__typename?: 'TrelloAddLabelsToCardPayload';
|
|
134235
|
+
card?: Maybe<TrelloCard>;
|
|
134236
|
+
errors?: Maybe<Array<MutationError>>;
|
|
134237
|
+
success: Scalars['Boolean']['output'];
|
|
134238
|
+
};
|
|
133135
134239
|
export declare type TrelloAddMemberInput = {
|
|
133136
134240
|
cardId: Scalars['ID']['input'];
|
|
133137
134241
|
userId: Scalars['ID']['input'];
|
|
@@ -135305,6 +136409,7 @@ export declare type TrelloMovePlannerCalendarEventTargetOptions = {
|
|
|
135305
136409
|
export declare type TrelloMutationApi = {
|
|
135306
136410
|
__typename?: 'TrelloMutationApi';
|
|
135307
136411
|
addBoardStar?: Maybe<TrelloAddBoardStarPayload>;
|
|
136412
|
+
addLabelsToCard?: Maybe<TrelloAddLabelsToCardPayload>;
|
|
135308
136413
|
addMemberToCard?: Maybe<TrelloAddMemberToCardPayload>;
|
|
135309
136414
|
addWorkspaceTagToBoard?: Maybe<TrelloAddWorkspaceTagToBoardPayload>;
|
|
135310
136415
|
archiveCard?: Maybe<TrelloArchiveCardPayload>;
|
|
@@ -135326,6 +136431,7 @@ export declare type TrelloMutationApi = {
|
|
|
135326
136431
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
135327
136432
|
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
135328
136433
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
136434
|
+
removeLabelsFromCard?: Maybe<TrelloRemoveLabelsFromCardPayload>;
|
|
135329
136435
|
removeMemberFromCard?: Maybe<TrelloRemoveMemberFromCardPayload>;
|
|
135330
136436
|
removeMemberFromWorkspace?: Maybe<TrelloRemoveMemberFromWorkspacePayload>;
|
|
135331
136437
|
removeWorkspaceTagFromBoard?: Maybe<TrelloRemoveWorkspaceTagFromBoardPayload>;
|
|
@@ -135360,6 +136466,9 @@ export declare type TrelloMutationApi = {
|
|
|
135360
136466
|
export declare type TrelloMutationApiAddBoardStarArgs = {
|
|
135361
136467
|
input: TrelloAddBoardStarInput;
|
|
135362
136468
|
};
|
|
136469
|
+
export declare type TrelloMutationApiAddLabelsToCardArgs = {
|
|
136470
|
+
input: TrelloAddLabelsToCardInput;
|
|
136471
|
+
};
|
|
135363
136472
|
export declare type TrelloMutationApiAddMemberToCardArgs = {
|
|
135364
136473
|
input: TrelloAddMemberInput;
|
|
135365
136474
|
};
|
|
@@ -135423,6 +136532,9 @@ export declare type TrelloMutationApiRemoveBoardStarArgs = {
|
|
|
135423
136532
|
export declare type TrelloMutationApiRemoveCardFromPlannerCalendarEventArgs = {
|
|
135424
136533
|
input: TrelloRemoveCardFromPlannerCalendarEventInput;
|
|
135425
136534
|
};
|
|
136535
|
+
export declare type TrelloMutationApiRemoveLabelsFromCardArgs = {
|
|
136536
|
+
input: TrelloRemoveLabelsFromCardInput;
|
|
136537
|
+
};
|
|
135426
136538
|
export declare type TrelloMutationApiRemoveMemberFromCardArgs = {
|
|
135427
136539
|
input: TrelloRemoveMemberInput;
|
|
135428
136540
|
};
|
|
@@ -135513,6 +136625,13 @@ export declare type TrelloMutationApiUpdateWorkspaceTagArgs = {
|
|
|
135513
136625
|
export declare type TrelloMutationApiWatchCardArgs = {
|
|
135514
136626
|
input: TrelloWatchCardInput;
|
|
135515
136627
|
};
|
|
136628
|
+
export declare type TrelloMutationErrorExtension = MutationErrorExtension & {
|
|
136629
|
+
__typename?: 'TrelloMutationErrorExtension';
|
|
136630
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
136631
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
136632
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
136633
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
136634
|
+
};
|
|
135516
136635
|
export declare type TrelloNotification = TrelloQuickCaptureNotification;
|
|
135517
136636
|
export declare type TrelloNotificationConnection = {
|
|
135518
136637
|
__typename?: 'TrelloNotificationConnection';
|
|
@@ -135531,6 +136650,10 @@ export declare type TrelloNotificationFilter = {
|
|
|
135531
136650
|
};
|
|
135532
136651
|
export declare type TrelloOAuth2Client = {
|
|
135533
136652
|
__typename?: 'TrelloOAuth2Client';
|
|
136653
|
+
appContactLink?: Maybe<Scalars['String']['output']>;
|
|
136654
|
+
appDescription?: Maybe<Scalars['String']['output']>;
|
|
136655
|
+
appLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
136656
|
+
appVendorName?: Maybe<Scalars['String']['output']>;
|
|
135534
136657
|
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
135535
136658
|
clientId: Scalars['String']['output'];
|
|
135536
136659
|
clientSecret?: Maybe<Scalars['String']['output']>;
|
|
@@ -136245,6 +137368,16 @@ export declare type TrelloRemoveChecklistFromCardDisplayEntities = {
|
|
|
136245
137368
|
checklist?: Maybe<TrelloActionChecklistEntity>;
|
|
136246
137369
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
136247
137370
|
};
|
|
137371
|
+
export declare type TrelloRemoveLabelsFromCardInput = {
|
|
137372
|
+
cardId: Scalars['ID']['input'];
|
|
137373
|
+
labelIds: Array<Scalars['ID']['input']>;
|
|
137374
|
+
};
|
|
137375
|
+
export declare type TrelloRemoveLabelsFromCardPayload = Payload & {
|
|
137376
|
+
__typename?: 'TrelloRemoveLabelsFromCardPayload';
|
|
137377
|
+
card?: Maybe<TrelloCard>;
|
|
137378
|
+
errors?: Maybe<Array<MutationError>>;
|
|
137379
|
+
success: Scalars['Boolean']['output'];
|
|
137380
|
+
};
|
|
136248
137381
|
export declare type TrelloRemoveMemberFromCardAction = TrelloAction & TrelloCardActionData & {
|
|
136249
137382
|
__typename?: 'TrelloRemoveMemberFromCardAction';
|
|
136250
137383
|
appCreator?: Maybe<TrelloAppCreator>;
|
|
@@ -136757,16 +137890,8 @@ export declare type TrelloUpdateOAuth2ClientInput = {
|
|
|
136757
137890
|
};
|
|
136758
137891
|
export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
|
|
136759
137892
|
__typename?: 'TrelloUpdateOAuth2ClientPayload';
|
|
136760
|
-
appContactLink?: Maybe<Scalars['String']['output']>;
|
|
136761
|
-
appDescription?: Maybe<Scalars['String']['output']>;
|
|
136762
|
-
appLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
136763
|
-
appVendorName?: Maybe<Scalars['String']['output']>;
|
|
136764
137893
|
application?: Maybe<TrelloApplication>;
|
|
136765
|
-
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
136766
|
-
clientType?: Maybe<Scalars['String']['output']>;
|
|
136767
137894
|
errors?: Maybe<Array<MutationError>>;
|
|
136768
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
136769
|
-
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
136770
137895
|
success: Scalars['Boolean']['output'];
|
|
136771
137896
|
};
|
|
136772
137897
|
export declare type TrelloUpdatePrimaryPlannerAccountInput = {
|