@forge/cli-shared 5.2.0-next.9 → 5.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +32 -0
- package/out/graphql/graphql-types.d.ts +141 -32
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +17 -8
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 5.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- a15c732: Add --major-version option to enable users to deploy updates to previous major versions of their apps.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [c1292da]
|
|
12
|
+
- Updated dependencies [2278ad7]
|
|
13
|
+
- Updated dependencies [8073ca4]
|
|
14
|
+
- Updated dependencies [2b5d6f2]
|
|
15
|
+
- Updated dependencies [a05ba05]
|
|
16
|
+
- Updated dependencies [22687bd]
|
|
17
|
+
- Updated dependencies [99fb753]
|
|
18
|
+
- Updated dependencies [8a08e11]
|
|
19
|
+
- Updated dependencies [fad12fb]
|
|
20
|
+
- Updated dependencies [8c3a153]
|
|
21
|
+
- Updated dependencies [23cc3d6]
|
|
22
|
+
- Updated dependencies [42e7ad7]
|
|
23
|
+
- @forge/manifest@7.5.0
|
|
24
|
+
- @forge/util@1.4.4
|
|
25
|
+
|
|
26
|
+
## 5.2.0-next.10
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- Updated dependencies [99fb753]
|
|
31
|
+
- Updated dependencies [42e7ad7]
|
|
32
|
+
- @forge/util@1.4.4-next.0
|
|
33
|
+
- @forge/manifest@7.5.0-next.9
|
|
34
|
+
|
|
3
35
|
## 5.2.0-next.9
|
|
4
36
|
|
|
5
37
|
### Patch Changes
|
|
@@ -129,33 +129,36 @@ export declare type ActionsAction = {
|
|
|
129
129
|
__typename?: 'ActionsAction';
|
|
130
130
|
actionType: Scalars['String']['output'];
|
|
131
131
|
auth: Array<ActionsAuthType>;
|
|
132
|
+
inputs?: Maybe<Array<ActionsActionInputTuple>>;
|
|
132
133
|
};
|
|
133
|
-
export declare type
|
|
134
|
-
__typename?: '
|
|
135
|
-
description?: Maybe<ActionsDescription>;
|
|
136
|
-
displayName: Scalars['String']['output'];
|
|
137
|
-
entityType?: Maybe<Scalars['String']['output']>;
|
|
138
|
-
inputs?: Maybe<Array<ActionsActionTypeInputTuple>>;
|
|
139
|
-
key: Scalars['String']['output'];
|
|
140
|
-
outputs?: Maybe<Array<ActionsActionTypeOutputTuple>>;
|
|
141
|
-
};
|
|
142
|
-
export declare type ActionsActionTypeInput = {
|
|
143
|
-
__typename?: 'ActionsActionTypeInput';
|
|
134
|
+
export declare type ActionsActionInput = {
|
|
135
|
+
__typename?: 'ActionsActionInput';
|
|
144
136
|
default?: Maybe<Scalars['JSON']['output']>;
|
|
145
137
|
description?: Maybe<ActionsDescription>;
|
|
146
|
-
items?: Maybe<
|
|
138
|
+
items?: Maybe<ActionsActionInputItems>;
|
|
147
139
|
pattern?: Maybe<Scalars['String']['output']>;
|
|
148
140
|
required: Scalars['Boolean']['output'];
|
|
149
141
|
type: Scalars['String']['output'];
|
|
150
142
|
};
|
|
151
|
-
export declare type
|
|
152
|
-
__typename?: '
|
|
143
|
+
export declare type ActionsActionInputItems = {
|
|
144
|
+
__typename?: 'ActionsActionInputItems';
|
|
153
145
|
type: Scalars['String']['output'];
|
|
154
146
|
};
|
|
155
|
-
export declare type
|
|
156
|
-
__typename?: '
|
|
147
|
+
export declare type ActionsActionInputTuple = {
|
|
148
|
+
__typename?: 'ActionsActionInputTuple';
|
|
149
|
+
key: Scalars['String']['output'];
|
|
150
|
+
value: ActionsActionInput;
|
|
151
|
+
};
|
|
152
|
+
export declare type ActionsActionType = {
|
|
153
|
+
__typename?: 'ActionsActionType';
|
|
154
|
+
contextEntityType?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
155
|
+
description?: Maybe<ActionsDescription>;
|
|
156
|
+
displayName: Scalars['String']['output'];
|
|
157
|
+
entityProperty?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
158
|
+
entityType?: Maybe<Scalars['String']['output']>;
|
|
159
|
+
inputs?: Maybe<Array<ActionsActionInputTuple>>;
|
|
157
160
|
key: Scalars['String']['output'];
|
|
158
|
-
|
|
161
|
+
outputs?: Maybe<Array<ActionsActionTypeOutputTuple>>;
|
|
159
162
|
};
|
|
160
163
|
export declare type ActionsActionTypeOutput = {
|
|
161
164
|
__typename?: 'ActionsActionTypeOutput';
|
|
@@ -191,7 +194,10 @@ export declare type ActionsActionableAppEdge = {
|
|
|
191
194
|
export declare type ActionsActionableAppsFilter = {
|
|
192
195
|
byActionType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
193
196
|
byCapability?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
197
|
+
byContextEntityType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
198
|
+
byEntityProperty?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
194
199
|
byEntityType?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
200
|
+
byIntegrationKey?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
195
201
|
byProviderID?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
196
202
|
};
|
|
197
203
|
export declare enum ActionsAuthType {
|
|
@@ -211,12 +217,18 @@ export declare type ActionsExecuteActionFilter = {
|
|
|
211
217
|
export declare type ActionsExecuteActionInput = {
|
|
212
218
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
213
219
|
inputs?: InputMaybe<Scalars['JSON']['input']>;
|
|
220
|
+
target?: InputMaybe<ActionsExecuteTargetInput>;
|
|
214
221
|
};
|
|
215
222
|
export declare type ActionsExecuteResponse = {
|
|
216
223
|
__typename?: 'ActionsExecuteResponse';
|
|
217
224
|
outputs?: Maybe<Scalars['JSON']['output']>;
|
|
218
225
|
status?: Maybe<Scalars['Int']['output']>;
|
|
219
226
|
};
|
|
227
|
+
export declare type ActionsExecuteTargetInput = {
|
|
228
|
+
ari?: InputMaybe<Scalars['String']['input']>;
|
|
229
|
+
ids?: InputMaybe<Scalars['JSON']['input']>;
|
|
230
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
231
|
+
};
|
|
220
232
|
export declare type ActionsMutation = {
|
|
221
233
|
__typename?: 'ActionsMutation';
|
|
222
234
|
execute?: Maybe<ActionsExecuteResponse>;
|
|
@@ -2288,8 +2300,8 @@ export declare type CfdIssueColumnChangeEntry = {
|
|
|
2288
2300
|
timestamp: Scalars['String']['output'];
|
|
2289
2301
|
};
|
|
2290
2302
|
export declare enum CapabilitySet {
|
|
2291
|
-
|
|
2292
|
-
|
|
2303
|
+
CapabilitySetAdvanced = "capabilitySetAdvanced",
|
|
2304
|
+
CapabilitySetStandard = "capabilitySetStandard"
|
|
2293
2305
|
}
|
|
2294
2306
|
export declare type CardCoverMedia = {
|
|
2295
2307
|
__typename?: 'CardCoverMedia';
|
|
@@ -2490,6 +2502,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
2490
2502
|
featureOverrides?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
2491
2503
|
featureVariables?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
2492
2504
|
id: Scalars['ID']['output'];
|
|
2505
|
+
latestUsageForChargeElement?: Maybe<Scalars['Int']['output']>;
|
|
2493
2506
|
metadata?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
2494
2507
|
offering?: Maybe<CcpOffering>;
|
|
2495
2508
|
offeringKey?: Maybe<Scalars['ID']['output']>;
|
|
@@ -2506,6 +2519,9 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
2506
2519
|
updatedAt?: Maybe<Scalars['Float']['output']>;
|
|
2507
2520
|
version?: Maybe<Scalars['Int']['output']>;
|
|
2508
2521
|
};
|
|
2522
|
+
export declare type CcpEntitlementLatestUsageForChargeElementArgs = {
|
|
2523
|
+
chargeElement?: InputMaybe<Scalars['String']['input']>;
|
|
2524
|
+
};
|
|
2509
2525
|
export declare type CcpEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
|
|
2510
2526
|
__typename?: 'CcpEntitlementExperienceCapabilities';
|
|
2511
2527
|
changeOffering?: Maybe<CcpExperienceCapability>;
|
|
@@ -2941,11 +2957,15 @@ export declare type CommerceChargeQuantity = {
|
|
|
2941
2957
|
export declare type CommerceEntitlement = {
|
|
2942
2958
|
experienceCapabilities?: Maybe<CommerceEntitlementExperienceCapabilities>;
|
|
2943
2959
|
id: Scalars['ID']['output'];
|
|
2960
|
+
latestUsageForChargeElement?: Maybe<Scalars['Int']['output']>;
|
|
2944
2961
|
offering?: Maybe<CommerceOffering>;
|
|
2945
2962
|
preDunning?: Maybe<CommerceEntitlementPreDunning>;
|
|
2946
2963
|
subscription?: Maybe<CommerceSubscription>;
|
|
2947
2964
|
transactionAccount?: Maybe<CommerceTransactionAccount>;
|
|
2948
2965
|
};
|
|
2966
|
+
export declare type CommerceEntitlementLatestUsageForChargeElementArgs = {
|
|
2967
|
+
chargeElement?: InputMaybe<Scalars['String']['input']>;
|
|
2968
|
+
};
|
|
2949
2969
|
export declare type CommerceEntitlementExperienceCapabilities = {
|
|
2950
2970
|
changeOffering?: Maybe<CommerceExperienceCapability>;
|
|
2951
2971
|
changeOfferingV2?: Maybe<CommerceExperienceCapability>;
|
|
@@ -5438,6 +5458,7 @@ export declare type CompassScorecard = Node & {
|
|
|
5438
5458
|
scorecardScoreDurationStatistics?: Maybe<CompassScorecardScoreDurationStatisticsResult>;
|
|
5439
5459
|
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
5440
5460
|
type: Scalars['String']['output'];
|
|
5461
|
+
viewerPermissions?: Maybe<CompassScorecardInstancePermissions>;
|
|
5441
5462
|
};
|
|
5442
5463
|
export declare type CompassScorecardAppliedToComponentsArgs = {
|
|
5443
5464
|
query?: InputMaybe<CompassScorecardAppliedToComponentsQuery>;
|
|
@@ -5646,6 +5667,10 @@ export declare enum CompassScorecardImportance {
|
|
|
5646
5667
|
Required = "REQUIRED",
|
|
5647
5668
|
UserDefined = "USER_DEFINED"
|
|
5648
5669
|
}
|
|
5670
|
+
export declare type CompassScorecardInstancePermissions = {
|
|
5671
|
+
__typename?: 'CompassScorecardInstancePermissions';
|
|
5672
|
+
canModify?: Maybe<CompassPermissionResult>;
|
|
5673
|
+
};
|
|
5649
5674
|
export declare type CompassScorecardManualApplicationModel = CompassScorecardApplicationModel & {
|
|
5650
5675
|
__typename?: 'CompassScorecardManualApplicationModel';
|
|
5651
5676
|
applicationType: Scalars['String']['output'];
|
|
@@ -6633,10 +6658,6 @@ export declare type ConfluenceLabel = {
|
|
|
6633
6658
|
label?: Maybe<Scalars['String']['output']>;
|
|
6634
6659
|
prefix?: Maybe<Scalars['String']['output']>;
|
|
6635
6660
|
};
|
|
6636
|
-
export declare type ConfluenceLegacyCloudId = {
|
|
6637
|
-
__typename?: 'ConfluenceLegacyCloudId';
|
|
6638
|
-
cloudId: Scalars['String']['output'];
|
|
6639
|
-
};
|
|
6640
6661
|
export declare enum ConfluenceLegacy_AccessStatus {
|
|
6641
6662
|
AnonymousAccess = "ANONYMOUS_ACCESS",
|
|
6642
6663
|
ExternalCollaboratorAccess = "EXTERNAL_COLLABORATOR_ACCESS",
|
|
@@ -6945,6 +6966,10 @@ export declare type ConfluenceLegacy_ChildContentTypesAvailable = {
|
|
|
6945
6966
|
comment?: Maybe<Scalars['Boolean']['output']>;
|
|
6946
6967
|
page?: Maybe<Scalars['Boolean']['output']>;
|
|
6947
6968
|
};
|
|
6969
|
+
export declare type ConfluenceLegacy_CloudId = {
|
|
6970
|
+
__typename?: 'ConfluenceLegacy_CloudId';
|
|
6971
|
+
cloudId: Scalars['ID']['output'];
|
|
6972
|
+
};
|
|
6948
6973
|
export declare type ConfluenceLegacy_CollabTokenResponse = {
|
|
6949
6974
|
__typename?: 'ConfluenceLegacy_CollabTokenResponse';
|
|
6950
6975
|
token: Scalars['String']['output'];
|
|
@@ -31362,6 +31387,7 @@ export declare type HamsEntitlement = CommerceEntitlement & {
|
|
|
31362
31387
|
futureEdition?: Maybe<Scalars['String']['output']>;
|
|
31363
31388
|
futureEditionTransition?: Maybe<Scalars['String']['output']>;
|
|
31364
31389
|
id: Scalars['ID']['output'];
|
|
31390
|
+
latestUsageForChargeElement?: Maybe<Scalars['Int']['output']>;
|
|
31365
31391
|
name?: Maybe<Scalars['String']['output']>;
|
|
31366
31392
|
offering?: Maybe<HamsOffering>;
|
|
31367
31393
|
overriddenEdition?: Maybe<Scalars['String']['output']>;
|
|
@@ -31379,6 +31405,9 @@ export declare type HamsEntitlement = CommerceEntitlement & {
|
|
|
31379
31405
|
trialEditionEndDate?: Maybe<Scalars['String']['output']>;
|
|
31380
31406
|
trialEndDate?: Maybe<Scalars['String']['output']>;
|
|
31381
31407
|
};
|
|
31408
|
+
export declare type HamsEntitlementLatestUsageForChargeElementArgs = {
|
|
31409
|
+
chargeElement?: InputMaybe<Scalars['String']['input']>;
|
|
31410
|
+
};
|
|
31382
31411
|
export declare type HamsEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
|
|
31383
31412
|
__typename?: 'HamsEntitlementExperienceCapabilities';
|
|
31384
31413
|
changeOffering?: Maybe<HamsExperienceCapability>;
|
|
@@ -34843,7 +34872,7 @@ export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
34843
34872
|
};
|
|
34844
34873
|
export declare type JiraBulkCleanupProjectsInput = {
|
|
34845
34874
|
projectCleanupAction?: InputMaybe<JiraProjectCleanupRecommendationAction>;
|
|
34846
|
-
recommendationIds?: InputMaybe<Array<Scalars['
|
|
34875
|
+
recommendationIds?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
34847
34876
|
};
|
|
34848
34877
|
export declare type JiraBulkCleanupProjectsPayload = Payload & {
|
|
34849
34878
|
__typename?: 'JiraBulkCleanupProjectsPayload';
|
|
@@ -40000,6 +40029,7 @@ export declare type JiraMutationSaveVersionIssueTableColumnHiddenStateArgs = {
|
|
|
40000
40029
|
input: JiraVersionIssueTableColumnHiddenStateInput;
|
|
40001
40030
|
};
|
|
40002
40031
|
export declare type JiraMutationScheduleBulkExecuteProjectCleanupRecommendationsArgs = {
|
|
40032
|
+
cloudId: Scalars['ID']['input'];
|
|
40003
40033
|
input: JiraBulkCleanupProjectsInput;
|
|
40004
40034
|
};
|
|
40005
40035
|
export declare type JiraMutationScheduleCalendarIssueArgs = {
|
|
@@ -41547,6 +41577,17 @@ export declare enum JiraProjectCleanupRecommendationStaleSince {
|
|
|
41547
41577
|
SixMonths = "SIX_MONTHS",
|
|
41548
41578
|
TwoYears = "TWO_YEARS"
|
|
41549
41579
|
}
|
|
41580
|
+
export declare type JiraProjectCleanupTaskStatus = {
|
|
41581
|
+
__typename?: 'JiraProjectCleanupTaskStatus';
|
|
41582
|
+
status?: Maybe<JiraProjectCleanupTaskStatusType>;
|
|
41583
|
+
};
|
|
41584
|
+
export declare enum JiraProjectCleanupTaskStatusType {
|
|
41585
|
+
Complete = "COMPLETE",
|
|
41586
|
+
Error = "ERROR",
|
|
41587
|
+
InProgress = "IN_PROGRESS",
|
|
41588
|
+
Pending = "PENDING",
|
|
41589
|
+
TerminalError = "TERMINAL_ERROR"
|
|
41590
|
+
}
|
|
41550
41591
|
export declare type JiraProjectConnection = HasPageInfo & HasTotal & {
|
|
41551
41592
|
__typename?: 'JiraProjectConnection';
|
|
41552
41593
|
edges?: Maybe<Array<Maybe<JiraProjectEdge>>>;
|
|
@@ -45152,6 +45193,7 @@ export declare type JiraSubscription = {
|
|
|
45152
45193
|
onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
45153
45194
|
onJwmIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
45154
45195
|
onJwmIssueUpdatedByProject?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
45196
|
+
onProjectCleanupTaskStatusChange?: Maybe<JiraProjectCleanupTaskStatus>;
|
|
45155
45197
|
onSuggestedChildIssue?: Maybe<JiraOnSuggestedChildIssueResult>;
|
|
45156
45198
|
};
|
|
45157
45199
|
export declare type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
|
|
@@ -45193,6 +45235,9 @@ export declare type JiraSubscriptionOnJwmIssueUpdatedByProjectArgs = {
|
|
|
45193
45235
|
cloudId: Scalars['ID']['input'];
|
|
45194
45236
|
projectId: Scalars['String']['input'];
|
|
45195
45237
|
};
|
|
45238
|
+
export declare type JiraSubscriptionOnProjectCleanupTaskStatusChangeArgs = {
|
|
45239
|
+
cloudId: Scalars['ID']['input'];
|
|
45240
|
+
};
|
|
45196
45241
|
export declare type JiraSubscriptionOnSuggestedChildIssueArgs = {
|
|
45197
45242
|
additionalContext?: InputMaybe<Scalars['String']['input']>;
|
|
45198
45243
|
channelId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -47155,6 +47200,10 @@ export declare type JsmChatAppendixActionItem = {
|
|
|
47155
47200
|
id: Scalars['String']['output'];
|
|
47156
47201
|
label: Scalars['String']['output'];
|
|
47157
47202
|
};
|
|
47203
|
+
export declare type JsmChatAssistConfig = {
|
|
47204
|
+
__typename?: 'JsmChatAssistConfig';
|
|
47205
|
+
accountId: Scalars['String']['output'];
|
|
47206
|
+
};
|
|
47158
47207
|
export declare enum JsmChatChannelExperienceId {
|
|
47159
47208
|
Helpcenter = "HELPCENTER",
|
|
47160
47209
|
Widget = "WIDGET"
|
|
@@ -47450,11 +47499,15 @@ export declare type JsmChatProjectSettingsSlack = {
|
|
|
47450
47499
|
};
|
|
47451
47500
|
export declare type JsmChatQuery = {
|
|
47452
47501
|
__typename?: 'JsmChatQuery';
|
|
47502
|
+
getAssistConfig: JsmChatAssistConfig;
|
|
47453
47503
|
getMsTeamsChatConfig?: Maybe<JsmChatMsTeamsConfig>;
|
|
47454
47504
|
getSlackChatConfig?: Maybe<JsmChatSlackConfig>;
|
|
47455
47505
|
initializeConfig: JsmChatInitializeConfigResponse;
|
|
47456
47506
|
initializeNativeConfig: JsmChatInitializeNativeConfigResponse;
|
|
47457
47507
|
};
|
|
47508
|
+
export declare type JsmChatQueryGetAssistConfigArgs = {
|
|
47509
|
+
cloudId: Scalars['ID']['input'];
|
|
47510
|
+
};
|
|
47458
47511
|
export declare type JsmChatQueryGetMsTeamsChatConfigArgs = {
|
|
47459
47512
|
jiraProjectAri: Scalars['ID']['input'];
|
|
47460
47513
|
paginationConfig?: InputMaybe<JsmChatPaginationConfig>;
|
|
@@ -47622,6 +47675,7 @@ export declare type JswCardColorConfig = {
|
|
|
47622
47675
|
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
47623
47676
|
cardColorStrategies?: Maybe<Array<Maybe<JswCardColorStrategy>>>;
|
|
47624
47677
|
cardColorStrategy?: Maybe<Scalars['String']['output']>;
|
|
47678
|
+
current?: Maybe<JswCardColorStrategy>;
|
|
47625
47679
|
};
|
|
47626
47680
|
export declare type JswCardColorConfigCardColorStrategiesArgs = {
|
|
47627
47681
|
strategies?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -47974,8 +48028,34 @@ export declare enum KnowledgeDiscoveryDefinitionScope {
|
|
|
47974
48028
|
Blogpost = "BLOGPOST",
|
|
47975
48029
|
Organization = "ORGANIZATION",
|
|
47976
48030
|
Page = "PAGE",
|
|
48031
|
+
Project = "PROJECT",
|
|
47977
48032
|
Space = "SPACE"
|
|
47978
48033
|
}
|
|
48034
|
+
export declare type KnowledgeDiscoveryDefinitionScopeIdConfluence = {
|
|
48035
|
+
contentId?: InputMaybe<Scalars['String']['input']>;
|
|
48036
|
+
spaceId?: InputMaybe<Scalars['String']['input']>;
|
|
48037
|
+
};
|
|
48038
|
+
export declare type KnowledgeDiscoveryDefinitionScopeIdJira = {
|
|
48039
|
+
projectId?: InputMaybe<Scalars['String']['input']>;
|
|
48040
|
+
};
|
|
48041
|
+
export declare type KnowledgeDiscoveryDeleteBookmarkInput = {
|
|
48042
|
+
bookmarkAdminhubId: Scalars['ID']['input'];
|
|
48043
|
+
cloudId: Scalars['ID']['input'];
|
|
48044
|
+
keyPhrases?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
48045
|
+
orgId: Scalars['ID']['input'];
|
|
48046
|
+
url: Scalars['String']['input'];
|
|
48047
|
+
};
|
|
48048
|
+
export declare type KnowledgeDiscoveryDeleteBookmarksInput = {
|
|
48049
|
+
deleteRequests?: InputMaybe<Array<KnowledgeDiscoveryDeleteBookmarkInput>>;
|
|
48050
|
+
workspaceId: Scalars['String']['input'];
|
|
48051
|
+
};
|
|
48052
|
+
export declare type KnowledgeDiscoveryDeleteBookmarksPayload = Payload & {
|
|
48053
|
+
__typename?: 'KnowledgeDiscoveryDeleteBookmarksPayload';
|
|
48054
|
+
errors?: Maybe<Array<MutationError>>;
|
|
48055
|
+
retriableIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
48056
|
+
success: Scalars['Boolean']['output'];
|
|
48057
|
+
successCount?: Maybe<Scalars['Int']['output']>;
|
|
48058
|
+
};
|
|
47979
48059
|
export declare type KnowledgeDiscoveryEntity = {
|
|
47980
48060
|
id: Scalars['ID']['output'];
|
|
47981
48061
|
};
|
|
@@ -48015,10 +48095,14 @@ export declare type KnowledgeDiscoveryKeyPhrasesResult = KnowledgeDiscoveryKeyPh
|
|
|
48015
48095
|
export declare type KnowledgeDiscoveryMutationApi = {
|
|
48016
48096
|
__typename?: 'KnowledgeDiscoveryMutationApi';
|
|
48017
48097
|
createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
|
|
48098
|
+
deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
|
|
48018
48099
|
};
|
|
48019
48100
|
export declare type KnowledgeDiscoveryMutationApiCreateDefinitionArgs = {
|
|
48020
48101
|
input: KnowledgeDiscoveryCreateDefinitionInput;
|
|
48021
48102
|
};
|
|
48103
|
+
export declare type KnowledgeDiscoveryMutationApiDeleteBookmarksArgs = {
|
|
48104
|
+
input: KnowledgeDiscoveryDeleteBookmarksInput;
|
|
48105
|
+
};
|
|
48022
48106
|
export declare type KnowledgeDiscoveryPageInfo = {
|
|
48023
48107
|
__typename?: 'KnowledgeDiscoveryPageInfo';
|
|
48024
48108
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -48042,15 +48126,19 @@ export declare type KnowledgeDiscoveryQueryApiBookmarkArgs = {
|
|
|
48042
48126
|
workspaceId: Scalars['String']['input'];
|
|
48043
48127
|
};
|
|
48044
48128
|
export declare type KnowledgeDiscoveryQueryApiDefinitionArgs = {
|
|
48045
|
-
|
|
48129
|
+
confluenceScopeId?: InputMaybe<KnowledgeDiscoveryDefinitionScopeIdConfluence>;
|
|
48130
|
+
contentId?: InputMaybe<Scalars['String']['input']>;
|
|
48131
|
+
jiraScopeId?: InputMaybe<KnowledgeDiscoveryDefinitionScopeIdJira>;
|
|
48046
48132
|
keyPhrase: Scalars['String']['input'];
|
|
48047
|
-
spaceId
|
|
48133
|
+
spaceId?: InputMaybe<Scalars['String']['input']>;
|
|
48048
48134
|
workspaceId: Scalars['String']['input'];
|
|
48049
48135
|
};
|
|
48050
48136
|
export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryArgs = {
|
|
48051
|
-
|
|
48137
|
+
confluenceScopeId?: InputMaybe<KnowledgeDiscoveryDefinitionScopeIdConfluence>;
|
|
48138
|
+
contentId?: InputMaybe<Scalars['String']['input']>;
|
|
48139
|
+
jiraScopeId?: InputMaybe<KnowledgeDiscoveryDefinitionScopeIdJira>;
|
|
48052
48140
|
keyPhrase: Scalars['String']['input'];
|
|
48053
|
-
spaceId
|
|
48141
|
+
spaceId?: InputMaybe<Scalars['String']['input']>;
|
|
48054
48142
|
workspaceId: Scalars['String']['input'];
|
|
48055
48143
|
};
|
|
48056
48144
|
export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
|
|
@@ -50261,6 +50349,7 @@ export declare type Mutation = {
|
|
|
50261
50349
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
50262
50350
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
50263
50351
|
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
50352
|
+
setCardColorStrategy?: Maybe<SetCardColorStrategyOutput>;
|
|
50264
50353
|
setColumnLimit?: Maybe<SetColumnLimitOutput>;
|
|
50265
50354
|
setColumnName?: Maybe<SetColumnNameOutput>;
|
|
50266
50355
|
setEstimationType?: Maybe<GenericMutationResponse>;
|
|
@@ -51032,6 +51121,9 @@ export declare type MutationSetAppEnvironmentVariableArgs = {
|
|
|
51032
51121
|
export declare type MutationSetBoardEstimationTypeArgs = {
|
|
51033
51122
|
input?: InputMaybe<SetBoardEstimationTypeInput>;
|
|
51034
51123
|
};
|
|
51124
|
+
export declare type MutationSetCardColorStrategyArgs = {
|
|
51125
|
+
input?: InputMaybe<SetCardColorStrategyInput>;
|
|
51126
|
+
};
|
|
51035
51127
|
export declare type MutationSetColumnLimitArgs = {
|
|
51036
51128
|
input?: InputMaybe<SetColumnLimitInput>;
|
|
51037
51129
|
};
|
|
@@ -53465,7 +53557,6 @@ export declare type Query = {
|
|
|
53465
53557
|
codeInJira?: Maybe<CodeInJira>;
|
|
53466
53558
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
53467
53559
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
53468
|
-
confluenceLegacyCloudId?: Maybe<ConfluenceLegacyCloudId>;
|
|
53469
53560
|
confluenceLegacy_abTestCohorts?: Maybe<Scalars['String']['output']>;
|
|
53470
53561
|
confluenceLegacy_adminAnnouncementBanner?: Maybe<ConfluenceLegacy_AdminAnnouncementBanner>;
|
|
53471
53562
|
confluenceLegacy_adminAnnouncementBannerSetting?: Maybe<ConfluenceLegacy_AdminAnnouncementBannerSetting>;
|
|
@@ -53477,6 +53568,7 @@ export declare type Query = {
|
|
|
53477
53568
|
confluenceLegacy_canvasToken?: Maybe<ConfluenceLegacy_CanvasToken>;
|
|
53478
53569
|
confluenceLegacy_classificationLevel?: Maybe<ConfluenceLegacy_ContentDataClassificationLevel>;
|
|
53479
53570
|
confluenceLegacy_classificationLevels?: Maybe<Array<ConfluenceLegacy_ContentDataClassificationLevel>>;
|
|
53571
|
+
confluenceLegacy_cloudId?: Maybe<ConfluenceLegacy_CloudId>;
|
|
53480
53572
|
confluenceLegacy_collabToken?: Maybe<ConfluenceLegacy_CollabTokenResponse>;
|
|
53481
53573
|
confluenceLegacy_comment?: Maybe<ConfluenceLegacy_Comment>;
|
|
53482
53574
|
confluenceLegacy_comments?: Maybe<ConfluenceLegacy_PaginatedCommentList>;
|
|
@@ -53917,9 +54009,6 @@ export declare type QueryCanSplitIssueArgs = {
|
|
|
53917
54009
|
export declare type QueryCodeInJiraArgs = {
|
|
53918
54010
|
cloudId: Scalars['ID']['input'];
|
|
53919
54011
|
};
|
|
53920
|
-
export declare type QueryConfluenceLegacyCloudIdArgs = {
|
|
53921
|
-
cloudId: Scalars['ID']['input'];
|
|
53922
|
-
};
|
|
53923
54012
|
export declare type QueryConfluenceLegacy_AdminAnnouncementBannerSettingArgs = {
|
|
53924
54013
|
id: Scalars['String']['input'];
|
|
53925
54014
|
};
|
|
@@ -53945,6 +54034,9 @@ export declare type QueryConfluenceLegacy_CanvasTokenArgs = {
|
|
|
53945
54034
|
export declare type QueryConfluenceLegacy_ClassificationLevelArgs = {
|
|
53946
54035
|
id: Scalars['String']['input'];
|
|
53947
54036
|
};
|
|
54037
|
+
export declare type QueryConfluenceLegacy_CloudIdArgs = {
|
|
54038
|
+
cloudId: Scalars['ID']['input'];
|
|
54039
|
+
};
|
|
53948
54040
|
export declare type QueryConfluenceLegacy_CollabTokenArgs = {
|
|
53949
54041
|
draftShareId?: InputMaybe<Scalars['String']['input']>;
|
|
53950
54042
|
id: Scalars['ID']['input'];
|
|
@@ -56537,6 +56629,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
56537
56629
|
analytics?: InputMaybe<SearchAnalyticsInput>;
|
|
56538
56630
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
56539
56631
|
enableHighlighting?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56632
|
+
enableRelevanceDebugging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56540
56633
|
experience: Scalars['String']['input'];
|
|
56541
56634
|
experimentContext?: InputMaybe<SearchExperimentContextInput>;
|
|
56542
56635
|
filters: SearchFilterInput;
|
|
@@ -56941,6 +57034,18 @@ export declare type SetBoardEstimationTypeInput = {
|
|
|
56941
57034
|
estimationType: Scalars['String']['input'];
|
|
56942
57035
|
featureId: Scalars['String']['input'];
|
|
56943
57036
|
};
|
|
57037
|
+
export declare type SetCardColorStrategyInput = {
|
|
57038
|
+
boardId: Scalars['ID']['input'];
|
|
57039
|
+
strategy: Scalars['String']['input'];
|
|
57040
|
+
};
|
|
57041
|
+
export declare type SetCardColorStrategyOutput = MutationResponse & {
|
|
57042
|
+
__typename?: 'SetCardColorStrategyOutput';
|
|
57043
|
+
clientMutationId?: Maybe<Scalars['ID']['output']>;
|
|
57044
|
+
message: Scalars['String']['output'];
|
|
57045
|
+
newCardColorStrategy?: Maybe<JswCardColorStrategy>;
|
|
57046
|
+
statusCode: Scalars['Int']['output'];
|
|
57047
|
+
success: Scalars['Boolean']['output'];
|
|
57048
|
+
};
|
|
56944
57049
|
export declare type SetColumnLimitInput = {
|
|
56945
57050
|
boardId: Scalars['ID']['input'];
|
|
56946
57051
|
columnId: Scalars['ID']['input'];
|
|
@@ -61479,8 +61584,12 @@ export declare type UnifiedForumsGroup = UnifiedINode & {
|
|
|
61479
61584
|
avatar?: Maybe<UnifiedForumsGroupAvatar>;
|
|
61480
61585
|
description?: Maybe<Scalars['String']['output']>;
|
|
61481
61586
|
groupMemberCount?: Maybe<Scalars['Int']['output']>;
|
|
61587
|
+
hasHiddenAncestor?: Maybe<Scalars['Boolean']['output']>;
|
|
61482
61588
|
id: Scalars['ID']['output'];
|
|
61589
|
+
joinDate?: Maybe<Scalars['String']['output']>;
|
|
61590
|
+
membershipType?: Maybe<Scalars['String']['output']>;
|
|
61483
61591
|
title?: Maybe<Scalars['String']['output']>;
|
|
61592
|
+
topicsCount?: Maybe<Scalars['Int']['output']>;
|
|
61484
61593
|
viewHref?: Maybe<Scalars['String']['output']>;
|
|
61485
61594
|
};
|
|
61486
61595
|
export declare type UnifiedForumsGroupAvatar = {
|