@forge/cli-shared 6.6.1-next.21 → 6.6.1-next.23
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 +20 -0
- package/out/graphql/graphql-types.d.ts +166 -44
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +22 -16
- package/package.json +7 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.6.1-next.23
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fa77f8d: Revert the package registry change for the package
|
|
8
|
+
- Updated dependencies [fa77f8d]
|
|
9
|
+
- @forge/manifest@8.7.0-next.12
|
|
10
|
+
- @forge/i18n@0.0.4-next.1
|
|
11
|
+
- @forge/util@1.4.8-next.2
|
|
12
|
+
|
|
13
|
+
## 6.6.1-next.22
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 503e60e: Add publish config
|
|
18
|
+
- Updated dependencies [503e60e]
|
|
19
|
+
- @forge/manifest@8.7.0-next.11
|
|
20
|
+
- @forge/i18n@0.0.4-next.0
|
|
21
|
+
- @forge/util@1.4.8-next.1
|
|
22
|
+
|
|
3
23
|
## 6.6.1-next.21
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
|
@@ -1685,26 +1685,6 @@ export declare type AppPrincipal = {
|
|
|
1685
1685
|
__typename?: 'AppPrincipal';
|
|
1686
1686
|
id?: Maybe<Scalars['ID']['output']>;
|
|
1687
1687
|
};
|
|
1688
|
-
export declare type AppRollout = {
|
|
1689
|
-
__typename?: 'AppRollout';
|
|
1690
|
-
appId: Scalars['ID']['output'];
|
|
1691
|
-
cancelledByAccountId?: Maybe<Scalars['String']['output']>;
|
|
1692
|
-
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1693
|
-
completedUpgradeCount: Scalars['Int']['output'];
|
|
1694
|
-
createdAt: Scalars['DateTime']['output'];
|
|
1695
|
-
createdByAccountId: Scalars['String']['output'];
|
|
1696
|
-
failedUpgradeCount: Scalars['Int']['output'];
|
|
1697
|
-
fromVersionId: Scalars['ID']['output'];
|
|
1698
|
-
id: Scalars['ID']['output'];
|
|
1699
|
-
pendingUpgradeCount: Scalars['Int']['output'];
|
|
1700
|
-
status: AppRolloutStatus;
|
|
1701
|
-
toVersionId: Scalars['ID']['output'];
|
|
1702
|
-
};
|
|
1703
|
-
export declare enum AppRolloutStatus {
|
|
1704
|
-
Cancelled = "CANCELLED",
|
|
1705
|
-
Complete = "COMPLETE",
|
|
1706
|
-
Running = "RUNNING"
|
|
1707
|
-
}
|
|
1708
1688
|
export declare type AppSecurityPoliciesPermission = {
|
|
1709
1689
|
__typename?: 'AppSecurityPoliciesPermission';
|
|
1710
1690
|
policies?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -1944,6 +1924,27 @@ export declare type AppVersionExtensions = {
|
|
|
1944
1924
|
__typename?: 'AppVersionExtensions';
|
|
1945
1925
|
nodes?: Maybe<Array<Maybe<AppVersionExtension>>>;
|
|
1946
1926
|
};
|
|
1927
|
+
export declare type AppVersionRollout = {
|
|
1928
|
+
__typename?: 'AppVersionRollout';
|
|
1929
|
+
appEnvironmentId: Scalars['ID']['output'];
|
|
1930
|
+
appId: Scalars['ID']['output'];
|
|
1931
|
+
cancelledByAccountId?: Maybe<Scalars['String']['output']>;
|
|
1932
|
+
completedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
1933
|
+
completedUpgradeCount: Scalars['Int']['output'];
|
|
1934
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1935
|
+
createdByAccountId: Scalars['String']['output'];
|
|
1936
|
+
failedUpgradeCount: Scalars['Int']['output'];
|
|
1937
|
+
id: Scalars['ID']['output'];
|
|
1938
|
+
pendingUpgradeCount: Scalars['Int']['output'];
|
|
1939
|
+
sourceVersionId: Scalars['ID']['output'];
|
|
1940
|
+
status: AppVersionRolloutStatus;
|
|
1941
|
+
targetVersionId: Scalars['ID']['output'];
|
|
1942
|
+
};
|
|
1943
|
+
export declare enum AppVersionRolloutStatus {
|
|
1944
|
+
Cancelled = "CANCELLED",
|
|
1945
|
+
Complete = "COMPLETE",
|
|
1946
|
+
Running = "RUNNING"
|
|
1947
|
+
}
|
|
1947
1948
|
export declare type ApplyCompassScorecardToComponentPayload = Payload & {
|
|
1948
1949
|
__typename?: 'ApplyCompassScorecardToComponentPayload';
|
|
1949
1950
|
componentDetails?: Maybe<CompassComponent>;
|
|
@@ -3068,11 +3069,11 @@ export declare type CqlDisplayableType = {
|
|
|
3068
3069
|
label?: Maybe<Scalars['String']['output']>;
|
|
3069
3070
|
type?: Maybe<Scalars['String']['output']>;
|
|
3070
3071
|
};
|
|
3071
|
-
export declare type
|
|
3072
|
+
export declare type CancelAppVersionRolloutInput = {
|
|
3072
3073
|
id: Scalars['ID']['input'];
|
|
3073
3074
|
};
|
|
3074
|
-
export declare type
|
|
3075
|
-
__typename?: '
|
|
3075
|
+
export declare type CancelAppVersionRolloutPayload = Payload & {
|
|
3076
|
+
__typename?: 'CancelAppVersionRolloutPayload';
|
|
3076
3077
|
errors?: Maybe<Array<MutationError>>;
|
|
3077
3078
|
success: Scalars['Boolean']['output'];
|
|
3078
3079
|
};
|
|
@@ -8844,11 +8845,13 @@ export declare type ConfluenceBlogPost = {
|
|
|
8844
8845
|
blogPostId: Scalars['ID']['output'];
|
|
8845
8846
|
body?: Maybe<ConfluenceBodies>;
|
|
8846
8847
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
8848
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
8847
8849
|
id: Scalars['ID']['output'];
|
|
8848
8850
|
labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
8849
8851
|
latestVersion?: Maybe<ConfluenceBlogPostVersion>;
|
|
8850
8852
|
links?: Maybe<ConfluenceBlogPostLinks>;
|
|
8851
8853
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
8854
|
+
nativeProperties?: Maybe<ConfluenceContentNativeProperties>;
|
|
8852
8855
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
8853
8856
|
properties?: Maybe<Array<Maybe<ConfluenceBlogPostProperty>>>;
|
|
8854
8857
|
space?: Maybe<ConfluenceSpace>;
|
|
@@ -9048,6 +9051,11 @@ export declare type ConfluenceContentMetadata = {
|
|
|
9048
9051
|
titleEmojiDraft?: Maybe<ConfluenceContentTitleEmoji>;
|
|
9049
9052
|
titleEmojiPublished?: Maybe<ConfluenceContentTitleEmoji>;
|
|
9050
9053
|
};
|
|
9054
|
+
export declare type ConfluenceContentNativeProperties = {
|
|
9055
|
+
__typename?: 'ConfluenceContentNativeProperties';
|
|
9056
|
+
current?: Maybe<ConfluenceCurrentContentNativeProperties>;
|
|
9057
|
+
draft?: Maybe<ConfluenceDraftContentNativeProperties>;
|
|
9058
|
+
};
|
|
9051
9059
|
export declare enum ConfluenceContentRepresentation {
|
|
9052
9060
|
AtlasDocFormat = "ATLAS_DOC_FORMAT",
|
|
9053
9061
|
Editor = "EDITOR",
|
|
@@ -9060,6 +9068,12 @@ export declare enum ConfluenceContentRepresentation {
|
|
|
9060
9068
|
View = "VIEW",
|
|
9061
9069
|
Wiki = "WIKI"
|
|
9062
9070
|
}
|
|
9071
|
+
export declare type ConfluenceContentState = {
|
|
9072
|
+
__typename?: 'ConfluenceContentState';
|
|
9073
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
9074
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
9075
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
9076
|
+
};
|
|
9063
9077
|
export declare type ConfluenceContentTitleEmoji = {
|
|
9064
9078
|
__typename?: 'ConfluenceContentTitleEmoji';
|
|
9065
9079
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -9185,6 +9199,10 @@ export declare type ConfluenceCreateSpacePayload = Payload & {
|
|
|
9185
9199
|
space?: Maybe<ConfluenceSpace>;
|
|
9186
9200
|
success: Scalars['Boolean']['output'];
|
|
9187
9201
|
};
|
|
9202
|
+
export declare type ConfluenceCurrentContentNativeProperties = {
|
|
9203
|
+
__typename?: 'ConfluenceCurrentContentNativeProperties';
|
|
9204
|
+
contentState?: Maybe<ConfluenceContentState>;
|
|
9205
|
+
};
|
|
9188
9206
|
export declare type ConfluenceDatabase = {
|
|
9189
9207
|
__typename?: 'ConfluenceDatabase';
|
|
9190
9208
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
@@ -9300,6 +9318,10 @@ export declare type ConfluenceDeleteSubCalendarSingleEventPayload = Payload & {
|
|
|
9300
9318
|
errors?: Maybe<Array<MutationError>>;
|
|
9301
9319
|
success: Scalars['Boolean']['output'];
|
|
9302
9320
|
};
|
|
9321
|
+
export declare type ConfluenceDraftContentNativeProperties = {
|
|
9322
|
+
__typename?: 'ConfluenceDraftContentNativeProperties';
|
|
9323
|
+
contentState?: Maybe<ConfluenceContentState>;
|
|
9324
|
+
};
|
|
9303
9325
|
export declare enum ConfluenceEdition {
|
|
9304
9326
|
Free = "FREE",
|
|
9305
9327
|
Premium = "PREMIUM",
|
|
@@ -15249,12 +15271,14 @@ export declare type ConfluencePage = {
|
|
|
15249
15271
|
body?: Maybe<ConfluenceBodies>;
|
|
15250
15272
|
commentCountSummary?: Maybe<ConfluenceCommentCountSummary>;
|
|
15251
15273
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
15274
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
15252
15275
|
id: Scalars['ID']['output'];
|
|
15253
15276
|
labels?: Maybe<Array<Maybe<ConfluenceLabel>>>;
|
|
15254
15277
|
latestVersion?: Maybe<ConfluencePageVersion>;
|
|
15255
15278
|
likesSummary?: Maybe<ConfluenceLikesSummary>;
|
|
15256
15279
|
links?: Maybe<ConfluencePageLinks>;
|
|
15257
15280
|
metadata?: Maybe<ConfluenceContentMetadata>;
|
|
15281
|
+
nativeProperties?: Maybe<ConfluenceContentNativeProperties>;
|
|
15258
15282
|
owner?: Maybe<ConfluenceUserInfo>;
|
|
15259
15283
|
pageId: Scalars['ID']['output'];
|
|
15260
15284
|
properties?: Maybe<Array<Maybe<ConfluencePageProperty>>>;
|
|
@@ -18703,17 +18727,6 @@ export declare type CreateAppResponse = Payload & {
|
|
|
18703
18727
|
errors?: Maybe<Array<MutationError>>;
|
|
18704
18728
|
success: Scalars['Boolean']['output'];
|
|
18705
18729
|
};
|
|
18706
|
-
export declare type CreateAppRolloutInput = {
|
|
18707
|
-
appId: Scalars['ID']['input'];
|
|
18708
|
-
fromVersionId: Scalars['ID']['input'];
|
|
18709
|
-
toVersionId: Scalars['ID']['input'];
|
|
18710
|
-
};
|
|
18711
|
-
export declare type CreateAppRolloutPayload = Payload & {
|
|
18712
|
-
__typename?: 'CreateAppRolloutPayload';
|
|
18713
|
-
appRollout?: Maybe<AppRollout>;
|
|
18714
|
-
errors?: Maybe<Array<MutationError>>;
|
|
18715
|
-
success: Scalars['Boolean']['output'];
|
|
18716
|
-
};
|
|
18717
18730
|
export declare type CreateAppTunnelResponse = Payload & {
|
|
18718
18731
|
__typename?: 'CreateAppTunnelResponse';
|
|
18719
18732
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -18727,6 +18740,18 @@ export declare type CreateAppTunnelsInput = {
|
|
|
18727
18740
|
force?: InputMaybe<Scalars['Boolean']['input']>;
|
|
18728
18741
|
tunnelDefinitions: TunnelDefinitionsInput;
|
|
18729
18742
|
};
|
|
18743
|
+
export declare type CreateAppVersionRolloutInput = {
|
|
18744
|
+
appEnvironmentId: Scalars['ID']['input'];
|
|
18745
|
+
appId: Scalars['ID']['input'];
|
|
18746
|
+
sourceVersionId: Scalars['ID']['input'];
|
|
18747
|
+
targetVersionId: Scalars['ID']['input'];
|
|
18748
|
+
};
|
|
18749
|
+
export declare type CreateAppVersionRolloutPayload = Payload & {
|
|
18750
|
+
__typename?: 'CreateAppVersionRolloutPayload';
|
|
18751
|
+
appVersionRollout?: Maybe<AppVersionRollout>;
|
|
18752
|
+
errors?: Maybe<Array<MutationError>>;
|
|
18753
|
+
success: Scalars['Boolean']['output'];
|
|
18754
|
+
};
|
|
18730
18755
|
export declare type CreateCardsOutput = {
|
|
18731
18756
|
__typename?: 'CreateCardsOutput';
|
|
18732
18757
|
boardScope?: Maybe<BoardScope>;
|
|
@@ -23419,9 +23444,9 @@ export declare type EcosystemMutation = {
|
|
|
23419
23444
|
__typename?: 'EcosystemMutation';
|
|
23420
23445
|
addAppContributor?: Maybe<AddAppContributorResponsePayload>;
|
|
23421
23446
|
addMultipleAppContributor?: Maybe<AddMultipleAppContributorResponsePayload>;
|
|
23422
|
-
|
|
23447
|
+
cancelAppVersionRollout?: Maybe<CancelAppVersionRolloutPayload>;
|
|
23423
23448
|
createAppEnvironment?: Maybe<CreateAppEnvironmentResponse>;
|
|
23424
|
-
|
|
23449
|
+
createAppVersionRollout?: Maybe<CreateAppVersionRolloutPayload>;
|
|
23425
23450
|
deleteAppEnvironment?: Maybe<DeleteAppEnvironmentResponse>;
|
|
23426
23451
|
deleteUserGrant?: Maybe<DeleteUserGrantPayload>;
|
|
23427
23452
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
@@ -23443,14 +23468,14 @@ export declare type EcosystemMutationAddAppContributorArgs = {
|
|
|
23443
23468
|
export declare type EcosystemMutationAddMultipleAppContributorArgs = {
|
|
23444
23469
|
input: AddMultipleAppContributorInput;
|
|
23445
23470
|
};
|
|
23446
|
-
export declare type
|
|
23447
|
-
input:
|
|
23471
|
+
export declare type EcosystemMutationCancelAppVersionRolloutArgs = {
|
|
23472
|
+
input: CancelAppVersionRolloutInput;
|
|
23448
23473
|
};
|
|
23449
23474
|
export declare type EcosystemMutationCreateAppEnvironmentArgs = {
|
|
23450
23475
|
input: CreateAppEnvironmentInput;
|
|
23451
23476
|
};
|
|
23452
|
-
export declare type
|
|
23453
|
-
input:
|
|
23477
|
+
export declare type EcosystemMutationCreateAppVersionRolloutArgs = {
|
|
23478
|
+
input: CreateAppVersionRolloutInput;
|
|
23454
23479
|
};
|
|
23455
23480
|
export declare type EcosystemMutationDeleteAppEnvironmentArgs = {
|
|
23456
23481
|
input: DeleteAppEnvironmentInput;
|
|
@@ -23515,7 +23540,7 @@ export declare type EcosystemQuery = {
|
|
|
23515
23540
|
appInstallationsByApp?: Maybe<AppInstallationByIndexConnection>;
|
|
23516
23541
|
appInstallationsByContext?: Maybe<AppInstallationByIndexConnection>;
|
|
23517
23542
|
appPoliciesByAppIds?: Maybe<Array<EcosystemAppPoliciesByAppId>>;
|
|
23518
|
-
|
|
23543
|
+
appVersionRollout?: Maybe<AppVersionRollout>;
|
|
23519
23544
|
appsInstalledInContexts: EcosystemAppsInstalledInContextsConnection;
|
|
23520
23545
|
checkConsentPermissionByOAuthClientId?: Maybe<PermissionToConsentByOauthId>;
|
|
23521
23546
|
dataClassifications?: Maybe<EcosystemDataClassificationsContext>;
|
|
@@ -23553,7 +23578,7 @@ export declare type EcosystemQueryAppInstallationsByContextArgs = {
|
|
|
23553
23578
|
export declare type EcosystemQueryAppPoliciesByAppIdsArgs = {
|
|
23554
23579
|
appIds: Array<Scalars['ID']['input']>;
|
|
23555
23580
|
};
|
|
23556
|
-
export declare type
|
|
23581
|
+
export declare type EcosystemQueryAppVersionRolloutArgs = {
|
|
23557
23582
|
id: Scalars['ID']['input'];
|
|
23558
23583
|
};
|
|
23559
23584
|
export declare type EcosystemQueryAppsInstalledInContextsArgs = {
|
|
@@ -30505,6 +30530,8 @@ export declare type GraphStore = {
|
|
|
30505
30530
|
userViewedGoalUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
|
|
30506
30531
|
userViewedJiraIssue?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueConnection>;
|
|
30507
30532
|
userViewedJiraIssueInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseConnection>;
|
|
30533
|
+
userViewedLoomVideo?: Maybe<GraphStoreSimplifiedUserViewedLoomVideoConnection>;
|
|
30534
|
+
userViewedLoomVideoInverse?: Maybe<GraphStoreSimplifiedUserViewedLoomVideoInverseConnection>;
|
|
30508
30535
|
userViewedProjectUpdate?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateConnection>;
|
|
30509
30536
|
userViewedProjectUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateInverseConnection>;
|
|
30510
30537
|
userWatchesConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection>;
|
|
@@ -34455,6 +34482,20 @@ export declare type GraphStoreUserViewedJiraIssueInverseArgs = {
|
|
|
34455
34482
|
id: Scalars['ID']['input'];
|
|
34456
34483
|
sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
|
|
34457
34484
|
};
|
|
34485
|
+
export declare type GraphStoreUserViewedLoomVideoArgs = {
|
|
34486
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34487
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34488
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34489
|
+
id: Scalars['ID']['input'];
|
|
34490
|
+
sort?: InputMaybe<GraphStoreUserViewedLoomVideoSortInput>;
|
|
34491
|
+
};
|
|
34492
|
+
export declare type GraphStoreUserViewedLoomVideoInverseArgs = {
|
|
34493
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34494
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34495
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34496
|
+
id: Scalars['ID']['input'];
|
|
34497
|
+
sort?: InputMaybe<GraphStoreUserViewedLoomVideoSortInput>;
|
|
34498
|
+
};
|
|
34458
34499
|
export declare type GraphStoreUserViewedProjectUpdateArgs = {
|
|
34459
34500
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34460
34501
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -47148,6 +47189,34 @@ export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseEdge = {
|
|
|
47148
47189
|
};
|
|
47149
47190
|
export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47150
47191
|
export declare type GraphStoreSimplifiedUserViewedJiraIssueUnion = JiraIssue;
|
|
47192
|
+
export declare type GraphStoreSimplifiedUserViewedLoomVideoConnection = HasPageInfo & {
|
|
47193
|
+
__typename?: 'GraphStoreSimplifiedUserViewedLoomVideoConnection';
|
|
47194
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedLoomVideoEdge>>>;
|
|
47195
|
+
pageInfo: PageInfo;
|
|
47196
|
+
};
|
|
47197
|
+
export declare type GraphStoreSimplifiedUserViewedLoomVideoEdge = {
|
|
47198
|
+
__typename?: 'GraphStoreSimplifiedUserViewedLoomVideoEdge';
|
|
47199
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47200
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47201
|
+
id: Scalars['ID']['output'];
|
|
47202
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47203
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedLoomVideoUnion>;
|
|
47204
|
+
};
|
|
47205
|
+
export declare type GraphStoreSimplifiedUserViewedLoomVideoInverseConnection = HasPageInfo & {
|
|
47206
|
+
__typename?: 'GraphStoreSimplifiedUserViewedLoomVideoInverseConnection';
|
|
47207
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedLoomVideoInverseEdge>>>;
|
|
47208
|
+
pageInfo: PageInfo;
|
|
47209
|
+
};
|
|
47210
|
+
export declare type GraphStoreSimplifiedUserViewedLoomVideoInverseEdge = {
|
|
47211
|
+
__typename?: 'GraphStoreSimplifiedUserViewedLoomVideoInverseEdge';
|
|
47212
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47213
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47214
|
+
id: Scalars['ID']['output'];
|
|
47215
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47216
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedLoomVideoInverseUnion>;
|
|
47217
|
+
};
|
|
47218
|
+
export declare type GraphStoreSimplifiedUserViewedLoomVideoInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
47219
|
+
export declare type GraphStoreSimplifiedUserViewedLoomVideoUnion = LoomVideo;
|
|
47151
47220
|
export declare type GraphStoreSimplifiedUserViewedProjectUpdateConnection = HasPageInfo & {
|
|
47152
47221
|
__typename?: 'GraphStoreSimplifiedUserViewedProjectUpdateConnection';
|
|
47153
47222
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedProjectUpdateEdge>>>;
|
|
@@ -48273,6 +48342,9 @@ export declare type GraphStoreUserViewedGoalUpdateSortInput = {
|
|
|
48273
48342
|
export declare type GraphStoreUserViewedJiraIssueSortInput = {
|
|
48274
48343
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48275
48344
|
};
|
|
48345
|
+
export declare type GraphStoreUserViewedLoomVideoSortInput = {
|
|
48346
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48347
|
+
};
|
|
48276
48348
|
export declare type GraphStoreUserViewedProjectUpdateSortInput = {
|
|
48277
48349
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
48278
48350
|
};
|
|
@@ -61991,6 +62063,28 @@ export declare type JiraProjectsMappedToHelpCenterFilterInput = {
|
|
|
61991
62063
|
helpCenterId: Scalars['ID']['input'];
|
|
61992
62064
|
helpCenterMappingStatus?: InputMaybe<JiraProjectsHelpCenterMappingStatus>;
|
|
61993
62065
|
};
|
|
62066
|
+
export declare type JiraProjectsSidebarMenu = {
|
|
62067
|
+
__typename?: 'JiraProjectsSidebarMenu';
|
|
62068
|
+
current?: Maybe<JiraProject>;
|
|
62069
|
+
displayMode?: Maybe<JiraSidebarMenuDisplayMode>;
|
|
62070
|
+
favouriteLimit?: Maybe<Scalars['Int']['output']>;
|
|
62071
|
+
favourites?: Maybe<JiraProjectConnection>;
|
|
62072
|
+
id: Scalars['ID']['output'];
|
|
62073
|
+
recentLimit?: Maybe<Scalars['Int']['output']>;
|
|
62074
|
+
recents?: Maybe<JiraProjectConnection>;
|
|
62075
|
+
};
|
|
62076
|
+
export declare type JiraProjectsSidebarMenuFavouritesArgs = {
|
|
62077
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62078
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
62079
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62080
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
62081
|
+
};
|
|
62082
|
+
export declare type JiraProjectsSidebarMenuRecentsArgs = {
|
|
62083
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62084
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
62085
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62086
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
62087
|
+
};
|
|
61994
62088
|
export declare type JiraPublishBoardViewConfigInput = {
|
|
61995
62089
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
61996
62090
|
viewId: Scalars['ID']['input'];
|
|
@@ -65419,6 +65513,11 @@ export declare type JiraShortcutNavigationItem = JiraNavigationItem & Node & {
|
|
|
65419
65513
|
typeKey?: Maybe<JiraNavigationItemTypeKey>;
|
|
65420
65514
|
url?: Maybe<Scalars['String']['output']>;
|
|
65421
65515
|
};
|
|
65516
|
+
export declare enum JiraSidebarMenuDisplayMode {
|
|
65517
|
+
MostRecentOnly = "MOST_RECENT_ONLY",
|
|
65518
|
+
Starred = "STARRED",
|
|
65519
|
+
StarredAndRecent = "STARRED_AND_RECENT"
|
|
65520
|
+
}
|
|
65422
65521
|
export declare type JiraSimilarIssues = {
|
|
65423
65522
|
__typename?: 'JiraSimilarIssues';
|
|
65424
65523
|
featureEnabled: Scalars['Boolean']['output'];
|
|
@@ -66800,6 +66899,12 @@ export declare type JiraUpdateShortcutInput = {
|
|
|
66800
66899
|
shortcutData: JiraShortcutDataInput;
|
|
66801
66900
|
shortcutId: Scalars['ID']['input'];
|
|
66802
66901
|
};
|
|
66902
|
+
export declare type JiraUpdateSidebarMenuDisplaySettingInput = {
|
|
66903
|
+
cloudId: Scalars['ID']['input'];
|
|
66904
|
+
displayMode?: InputMaybe<JiraSidebarMenuDisplayMode>;
|
|
66905
|
+
favouriteLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
66906
|
+
recentLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
66907
|
+
};
|
|
66803
66908
|
export declare type JiraUpdateSingleGroupPickerFieldInput = {
|
|
66804
66909
|
id: Scalars['ID']['input'];
|
|
66805
66910
|
operation: JiraSingleGroupPickerFieldOperationInput;
|
|
@@ -72570,7 +72675,7 @@ export declare type MercuryChangeProposal = Node & {
|
|
|
72570
72675
|
id: Scalars['ID']['output'];
|
|
72571
72676
|
name: Scalars['String']['output'];
|
|
72572
72677
|
status?: Maybe<MercuryChangeProposalStatus>;
|
|
72573
|
-
statusTransitions?: Maybe<
|
|
72678
|
+
statusTransitions?: Maybe<MercuryChangeProposalStatusTransitions>;
|
|
72574
72679
|
strategicEvent?: Maybe<MercuryStrategicEvent>;
|
|
72575
72680
|
};
|
|
72576
72681
|
export declare type MercuryChangeProposalConnection = {
|
|
@@ -72604,6 +72709,10 @@ export declare type MercuryChangeProposalStatusTransition = {
|
|
|
72604
72709
|
id: Scalars['ID']['output'];
|
|
72605
72710
|
to: MercuryChangeProposalStatus;
|
|
72606
72711
|
};
|
|
72712
|
+
export declare type MercuryChangeProposalStatusTransitions = {
|
|
72713
|
+
__typename?: 'MercuryChangeProposalStatusTransitions';
|
|
72714
|
+
available: Array<MercuryChangeProposalStatusTransition>;
|
|
72715
|
+
};
|
|
72607
72716
|
export declare type MercuryComment = Node & {
|
|
72608
72717
|
__typename?: 'MercuryComment';
|
|
72609
72718
|
ari: Scalars['String']['output'];
|
|
@@ -73729,7 +73838,7 @@ export declare type MercuryStrategicEvent = Node & {
|
|
|
73729
73838
|
id: Scalars['ID']['output'];
|
|
73730
73839
|
name: Scalars['String']['output'];
|
|
73731
73840
|
status?: Maybe<MercuryStrategicEventStatus>;
|
|
73732
|
-
statusTransitions?: Maybe<
|
|
73841
|
+
statusTransitions?: Maybe<MercuryStrategicEventStatusTransitions>;
|
|
73733
73842
|
targetDate?: Maybe<Scalars['String']['output']>;
|
|
73734
73843
|
};
|
|
73735
73844
|
export declare type MercuryStrategicEventConnection = {
|
|
@@ -73765,6 +73874,10 @@ export declare type MercuryStrategicEventStatusTransition = {
|
|
|
73765
73874
|
id: Scalars['ID']['output'];
|
|
73766
73875
|
to: MercuryStrategicEventStatus;
|
|
73767
73876
|
};
|
|
73877
|
+
export declare type MercuryStrategicEventStatusTransitions = {
|
|
73878
|
+
__typename?: 'MercuryStrategicEventStatusTransitions';
|
|
73879
|
+
available: Array<MercuryStrategicEventStatusTransition>;
|
|
73880
|
+
};
|
|
73768
73881
|
export declare type MercuryStrategicEventsMutationApi = {
|
|
73769
73882
|
__typename?: 'MercuryStrategicEventsMutationApi';
|
|
73770
73883
|
createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
|
|
@@ -74592,6 +74705,7 @@ export declare type Mutation = {
|
|
|
74592
74705
|
jira_setViewFilter?: Maybe<JiraSetViewFilterPayload>;
|
|
74593
74706
|
jira_setViewGroupBy?: Maybe<JiraSetViewGroupByPayload>;
|
|
74594
74707
|
jira_updateProjectBackground?: Maybe<JiraProjectUpdateBackgroundMutationPayload>;
|
|
74708
|
+
jira_updateProjectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
74595
74709
|
jsmChat?: Maybe<JsmChatMutation>;
|
|
74596
74710
|
jsw?: Maybe<JswMutation>;
|
|
74597
74711
|
knowledgeBase?: Maybe<KnowledgeBaseMutationApi>;
|
|
@@ -75884,6 +75998,9 @@ export declare type MutationJira_SetViewGroupByArgs = {
|
|
|
75884
75998
|
export declare type MutationJira_UpdateProjectBackgroundArgs = {
|
|
75885
75999
|
input: JiraUpdateBackgroundInput;
|
|
75886
76000
|
};
|
|
76001
|
+
export declare type MutationJira_UpdateProjectsSidebarMenuArgs = {
|
|
76002
|
+
input: JiraUpdateSidebarMenuDisplaySettingInput;
|
|
76003
|
+
};
|
|
75887
76004
|
export declare type MutationKnowledgeBaseArgs = {
|
|
75888
76005
|
cloudId: Scalars['ID']['input'];
|
|
75889
76006
|
};
|
|
@@ -79501,6 +79618,7 @@ export declare type Query = {
|
|
|
79501
79618
|
jira_boardView?: Maybe<JiraBoardView>;
|
|
79502
79619
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
79503
79620
|
jira_projectByIdOrKey?: Maybe<JiraProject>;
|
|
79621
|
+
jira_projectsSidebarMenu?: Maybe<JiraProjectsSidebarMenu>;
|
|
79504
79622
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
79505
79623
|
jsw?: Maybe<JswQuery>;
|
|
79506
79624
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
@@ -81637,6 +81755,10 @@ export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
|
81637
81755
|
cloudId: Scalars['ID']['input'];
|
|
81638
81756
|
idOrKey: Scalars['String']['input'];
|
|
81639
81757
|
};
|
|
81758
|
+
export declare type QueryJira_ProjectsSidebarMenuArgs = {
|
|
81759
|
+
cloudId: Scalars['ID']['input'];
|
|
81760
|
+
currentURL?: InputMaybe<Scalars['URL']['input']>;
|
|
81761
|
+
};
|
|
81640
81762
|
export declare type QueryKnowledgeBaseArgs = {
|
|
81641
81763
|
cloudId: Scalars['ID']['input'];
|
|
81642
81764
|
};
|