@forge/cli-shared 5.2.0-next.8 → 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 +39 -0
- package/out/graphql/graphql-types.d.ts +156 -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,44 @@
|
|
|
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
|
+
|
|
35
|
+
## 5.2.0-next.9
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- Updated dependencies [22687bd]
|
|
40
|
+
- @forge/manifest@7.5.0-next.8
|
|
41
|
+
|
|
3
42
|
## 5.2.0-next.8
|
|
4
43
|
|
|
5
44
|
### Minor 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';
|
|
157
149
|
key: Scalars['String']['output'];
|
|
158
|
-
value:
|
|
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>>;
|
|
160
|
+
key: Scalars['String']['output'];
|
|
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>;
|
|
@@ -3497,6 +3517,7 @@ export declare type CompassCatalogQueryApi = {
|
|
|
3497
3517
|
teamCheckins?: Maybe<Array<CompassTeamCheckin>>;
|
|
3498
3518
|
teamData?: Maybe<CompassTeamDataResult>;
|
|
3499
3519
|
userDefinedParameters?: Maybe<CompassUserDefinedParametersConnection>;
|
|
3520
|
+
viewerGlobalPermissions?: Maybe<CompassGlobalPermissionsResult>;
|
|
3500
3521
|
};
|
|
3501
3522
|
export declare type CompassCatalogQueryApiApplicationManagedComponentsArgs = {
|
|
3502
3523
|
query: CompassApplicationManagedComponentsQuery;
|
|
@@ -3616,6 +3637,9 @@ export declare type CompassCatalogQueryApiUserDefinedParametersArgs = {
|
|
|
3616
3637
|
componentId: Scalars['ID']['input'];
|
|
3617
3638
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
3618
3639
|
};
|
|
3640
|
+
export declare type CompassCatalogQueryApiViewerGlobalPermissionsArgs = {
|
|
3641
|
+
cloudId: Scalars['ID']['input'];
|
|
3642
|
+
};
|
|
3619
3643
|
export declare type CompassChangeMetadata = {
|
|
3620
3644
|
__typename?: 'CompassChangeMetadata';
|
|
3621
3645
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -4827,6 +4851,11 @@ export declare type CompassFreeformUserDefinedParameter = CompassUserDefinedPara
|
|
|
4827
4851
|
name: Scalars['String']['output'];
|
|
4828
4852
|
type: Scalars['String']['output'];
|
|
4829
4853
|
};
|
|
4854
|
+
export declare type CompassGlobalPermissions = {
|
|
4855
|
+
__typename?: 'CompassGlobalPermissions';
|
|
4856
|
+
createScorecards?: Maybe<CompassPermissionResult>;
|
|
4857
|
+
};
|
|
4858
|
+
export declare type CompassGlobalPermissionsResult = CompassGlobalPermissions | QueryError;
|
|
4830
4859
|
export declare type CompassHasCustomBooleanFieldScorecardCriteria = CompassCustomFieldScorecardCriteria & CompassScorecardCriteria & {
|
|
4831
4860
|
__typename?: 'CompassHasCustomBooleanFieldScorecardCriteria';
|
|
4832
4861
|
booleanComparator?: Maybe<CompassCriteriaBooleanComparatorOptions>;
|
|
@@ -5209,6 +5238,11 @@ export declare type CompassMetricValuesTimeseries = {
|
|
|
5209
5238
|
values?: Maybe<Array<Maybe<CompassMetricValue>>>;
|
|
5210
5239
|
};
|
|
5211
5240
|
export declare type CompassMetricValuesTimeseriesResult = CompassMetricValuesTimeseries | QueryError;
|
|
5241
|
+
export declare type CompassPermissionResult = {
|
|
5242
|
+
__typename?: 'CompassPermissionResult';
|
|
5243
|
+
allowed: Scalars['Boolean']['output'];
|
|
5244
|
+
denialReasons: Array<Scalars['String']['output']>;
|
|
5245
|
+
};
|
|
5212
5246
|
export declare type CompassPlainMetricSourceConfigurationInput = {
|
|
5213
5247
|
query: Scalars['String']['input'];
|
|
5214
5248
|
};
|
|
@@ -5424,6 +5458,7 @@ export declare type CompassScorecard = Node & {
|
|
|
5424
5458
|
scorecardScoreDurationStatistics?: Maybe<CompassScorecardScoreDurationStatisticsResult>;
|
|
5425
5459
|
scorecardScoreStatisticsHistories?: Maybe<CompassScorecardScoreStatisticsHistoryConnection>;
|
|
5426
5460
|
type: Scalars['String']['output'];
|
|
5461
|
+
viewerPermissions?: Maybe<CompassScorecardInstancePermissions>;
|
|
5427
5462
|
};
|
|
5428
5463
|
export declare type CompassScorecardAppliedToComponentsArgs = {
|
|
5429
5464
|
query?: InputMaybe<CompassScorecardAppliedToComponentsQuery>;
|
|
@@ -5632,6 +5667,10 @@ export declare enum CompassScorecardImportance {
|
|
|
5632
5667
|
Required = "REQUIRED",
|
|
5633
5668
|
UserDefined = "USER_DEFINED"
|
|
5634
5669
|
}
|
|
5670
|
+
export declare type CompassScorecardInstancePermissions = {
|
|
5671
|
+
__typename?: 'CompassScorecardInstancePermissions';
|
|
5672
|
+
canModify?: Maybe<CompassPermissionResult>;
|
|
5673
|
+
};
|
|
5635
5674
|
export declare type CompassScorecardManualApplicationModel = CompassScorecardApplicationModel & {
|
|
5636
5675
|
__typename?: 'CompassScorecardManualApplicationModel';
|
|
5637
5676
|
applicationType: Scalars['String']['output'];
|
|
@@ -6619,10 +6658,6 @@ export declare type ConfluenceLabel = {
|
|
|
6619
6658
|
label?: Maybe<Scalars['String']['output']>;
|
|
6620
6659
|
prefix?: Maybe<Scalars['String']['output']>;
|
|
6621
6660
|
};
|
|
6622
|
-
export declare type ConfluenceLegacyCloudId = {
|
|
6623
|
-
__typename?: 'ConfluenceLegacyCloudId';
|
|
6624
|
-
cloudId: Scalars['String']['output'];
|
|
6625
|
-
};
|
|
6626
6661
|
export declare enum ConfluenceLegacy_AccessStatus {
|
|
6627
6662
|
AnonymousAccess = "ANONYMOUS_ACCESS",
|
|
6628
6663
|
ExternalCollaboratorAccess = "EXTERNAL_COLLABORATOR_ACCESS",
|
|
@@ -6931,6 +6966,10 @@ export declare type ConfluenceLegacy_ChildContentTypesAvailable = {
|
|
|
6931
6966
|
comment?: Maybe<Scalars['Boolean']['output']>;
|
|
6932
6967
|
page?: Maybe<Scalars['Boolean']['output']>;
|
|
6933
6968
|
};
|
|
6969
|
+
export declare type ConfluenceLegacy_CloudId = {
|
|
6970
|
+
__typename?: 'ConfluenceLegacy_CloudId';
|
|
6971
|
+
cloudId: Scalars['ID']['output'];
|
|
6972
|
+
};
|
|
6934
6973
|
export declare type ConfluenceLegacy_CollabTokenResponse = {
|
|
6935
6974
|
__typename?: 'ConfluenceLegacy_CollabTokenResponse';
|
|
6936
6975
|
token: Scalars['String']['output'];
|
|
@@ -31348,6 +31387,7 @@ export declare type HamsEntitlement = CommerceEntitlement & {
|
|
|
31348
31387
|
futureEdition?: Maybe<Scalars['String']['output']>;
|
|
31349
31388
|
futureEditionTransition?: Maybe<Scalars['String']['output']>;
|
|
31350
31389
|
id: Scalars['ID']['output'];
|
|
31390
|
+
latestUsageForChargeElement?: Maybe<Scalars['Int']['output']>;
|
|
31351
31391
|
name?: Maybe<Scalars['String']['output']>;
|
|
31352
31392
|
offering?: Maybe<HamsOffering>;
|
|
31353
31393
|
overriddenEdition?: Maybe<Scalars['String']['output']>;
|
|
@@ -31365,6 +31405,9 @@ export declare type HamsEntitlement = CommerceEntitlement & {
|
|
|
31365
31405
|
trialEditionEndDate?: Maybe<Scalars['String']['output']>;
|
|
31366
31406
|
trialEndDate?: Maybe<Scalars['String']['output']>;
|
|
31367
31407
|
};
|
|
31408
|
+
export declare type HamsEntitlementLatestUsageForChargeElementArgs = {
|
|
31409
|
+
chargeElement?: InputMaybe<Scalars['String']['input']>;
|
|
31410
|
+
};
|
|
31368
31411
|
export declare type HamsEntitlementExperienceCapabilities = CommerceEntitlementExperienceCapabilities & {
|
|
31369
31412
|
__typename?: 'HamsEntitlementExperienceCapabilities';
|
|
31370
31413
|
changeOffering?: Maybe<HamsExperienceCapability>;
|
|
@@ -34829,7 +34872,7 @@ export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfigurat
|
|
|
34829
34872
|
};
|
|
34830
34873
|
export declare type JiraBulkCleanupProjectsInput = {
|
|
34831
34874
|
projectCleanupAction?: InputMaybe<JiraProjectCleanupRecommendationAction>;
|
|
34832
|
-
recommendationIds?: InputMaybe<Array<Scalars['
|
|
34875
|
+
recommendationIds?: InputMaybe<Array<Scalars['Long']['input']>>;
|
|
34833
34876
|
};
|
|
34834
34877
|
export declare type JiraBulkCleanupProjectsPayload = Payload & {
|
|
34835
34878
|
__typename?: 'JiraBulkCleanupProjectsPayload';
|
|
@@ -39986,6 +40029,7 @@ export declare type JiraMutationSaveVersionIssueTableColumnHiddenStateArgs = {
|
|
|
39986
40029
|
input: JiraVersionIssueTableColumnHiddenStateInput;
|
|
39987
40030
|
};
|
|
39988
40031
|
export declare type JiraMutationScheduleBulkExecuteProjectCleanupRecommendationsArgs = {
|
|
40032
|
+
cloudId: Scalars['ID']['input'];
|
|
39989
40033
|
input: JiraBulkCleanupProjectsInput;
|
|
39990
40034
|
};
|
|
39991
40035
|
export declare type JiraMutationScheduleCalendarIssueArgs = {
|
|
@@ -41533,6 +41577,17 @@ export declare enum JiraProjectCleanupRecommendationStaleSince {
|
|
|
41533
41577
|
SixMonths = "SIX_MONTHS",
|
|
41534
41578
|
TwoYears = "TWO_YEARS"
|
|
41535
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
|
+
}
|
|
41536
41591
|
export declare type JiraProjectConnection = HasPageInfo & HasTotal & {
|
|
41537
41592
|
__typename?: 'JiraProjectConnection';
|
|
41538
41593
|
edges?: Maybe<Array<Maybe<JiraProjectEdge>>>;
|
|
@@ -45138,6 +45193,7 @@ export declare type JiraSubscription = {
|
|
|
45138
45193
|
onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
45139
45194
|
onJwmIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
45140
45195
|
onJwmIssueUpdatedByProject?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
45196
|
+
onProjectCleanupTaskStatusChange?: Maybe<JiraProjectCleanupTaskStatus>;
|
|
45141
45197
|
onSuggestedChildIssue?: Maybe<JiraOnSuggestedChildIssueResult>;
|
|
45142
45198
|
};
|
|
45143
45199
|
export declare type JiraSubscriptionOnAttachmentCreatedByProjectsArgs = {
|
|
@@ -45179,6 +45235,9 @@ export declare type JiraSubscriptionOnJwmIssueUpdatedByProjectArgs = {
|
|
|
45179
45235
|
cloudId: Scalars['ID']['input'];
|
|
45180
45236
|
projectId: Scalars['String']['input'];
|
|
45181
45237
|
};
|
|
45238
|
+
export declare type JiraSubscriptionOnProjectCleanupTaskStatusChangeArgs = {
|
|
45239
|
+
cloudId: Scalars['ID']['input'];
|
|
45240
|
+
};
|
|
45182
45241
|
export declare type JiraSubscriptionOnSuggestedChildIssueArgs = {
|
|
45183
45242
|
additionalContext?: InputMaybe<Scalars['String']['input']>;
|
|
45184
45243
|
channelId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -47141,6 +47200,10 @@ export declare type JsmChatAppendixActionItem = {
|
|
|
47141
47200
|
id: Scalars['String']['output'];
|
|
47142
47201
|
label: Scalars['String']['output'];
|
|
47143
47202
|
};
|
|
47203
|
+
export declare type JsmChatAssistConfig = {
|
|
47204
|
+
__typename?: 'JsmChatAssistConfig';
|
|
47205
|
+
accountId: Scalars['String']['output'];
|
|
47206
|
+
};
|
|
47144
47207
|
export declare enum JsmChatChannelExperienceId {
|
|
47145
47208
|
Helpcenter = "HELPCENTER",
|
|
47146
47209
|
Widget = "WIDGET"
|
|
@@ -47436,11 +47499,15 @@ export declare type JsmChatProjectSettingsSlack = {
|
|
|
47436
47499
|
};
|
|
47437
47500
|
export declare type JsmChatQuery = {
|
|
47438
47501
|
__typename?: 'JsmChatQuery';
|
|
47502
|
+
getAssistConfig: JsmChatAssistConfig;
|
|
47439
47503
|
getMsTeamsChatConfig?: Maybe<JsmChatMsTeamsConfig>;
|
|
47440
47504
|
getSlackChatConfig?: Maybe<JsmChatSlackConfig>;
|
|
47441
47505
|
initializeConfig: JsmChatInitializeConfigResponse;
|
|
47442
47506
|
initializeNativeConfig: JsmChatInitializeNativeConfigResponse;
|
|
47443
47507
|
};
|
|
47508
|
+
export declare type JsmChatQueryGetAssistConfigArgs = {
|
|
47509
|
+
cloudId: Scalars['ID']['input'];
|
|
47510
|
+
};
|
|
47444
47511
|
export declare type JsmChatQueryGetMsTeamsChatConfigArgs = {
|
|
47445
47512
|
jiraProjectAri: Scalars['ID']['input'];
|
|
47446
47513
|
paginationConfig?: InputMaybe<JsmChatPaginationConfig>;
|
|
@@ -47608,6 +47675,7 @@ export declare type JswCardColorConfig = {
|
|
|
47608
47675
|
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
47609
47676
|
cardColorStrategies?: Maybe<Array<Maybe<JswCardColorStrategy>>>;
|
|
47610
47677
|
cardColorStrategy?: Maybe<Scalars['String']['output']>;
|
|
47678
|
+
current?: Maybe<JswCardColorStrategy>;
|
|
47611
47679
|
};
|
|
47612
47680
|
export declare type JswCardColorConfigCardColorStrategiesArgs = {
|
|
47613
47681
|
strategies?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
@@ -47960,8 +48028,34 @@ export declare enum KnowledgeDiscoveryDefinitionScope {
|
|
|
47960
48028
|
Blogpost = "BLOGPOST",
|
|
47961
48029
|
Organization = "ORGANIZATION",
|
|
47962
48030
|
Page = "PAGE",
|
|
48031
|
+
Project = "PROJECT",
|
|
47963
48032
|
Space = "SPACE"
|
|
47964
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
|
+
};
|
|
47965
48059
|
export declare type KnowledgeDiscoveryEntity = {
|
|
47966
48060
|
id: Scalars['ID']['output'];
|
|
47967
48061
|
};
|
|
@@ -48001,10 +48095,14 @@ export declare type KnowledgeDiscoveryKeyPhrasesResult = KnowledgeDiscoveryKeyPh
|
|
|
48001
48095
|
export declare type KnowledgeDiscoveryMutationApi = {
|
|
48002
48096
|
__typename?: 'KnowledgeDiscoveryMutationApi';
|
|
48003
48097
|
createDefinition?: Maybe<KnowledgeDiscoveryCreateDefinitionPayload>;
|
|
48098
|
+
deleteBookmarks?: Maybe<KnowledgeDiscoveryDeleteBookmarksPayload>;
|
|
48004
48099
|
};
|
|
48005
48100
|
export declare type KnowledgeDiscoveryMutationApiCreateDefinitionArgs = {
|
|
48006
48101
|
input: KnowledgeDiscoveryCreateDefinitionInput;
|
|
48007
48102
|
};
|
|
48103
|
+
export declare type KnowledgeDiscoveryMutationApiDeleteBookmarksArgs = {
|
|
48104
|
+
input: KnowledgeDiscoveryDeleteBookmarksInput;
|
|
48105
|
+
};
|
|
48008
48106
|
export declare type KnowledgeDiscoveryPageInfo = {
|
|
48009
48107
|
__typename?: 'KnowledgeDiscoveryPageInfo';
|
|
48010
48108
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -48028,15 +48126,19 @@ export declare type KnowledgeDiscoveryQueryApiBookmarkArgs = {
|
|
|
48028
48126
|
workspaceId: Scalars['String']['input'];
|
|
48029
48127
|
};
|
|
48030
48128
|
export declare type KnowledgeDiscoveryQueryApiDefinitionArgs = {
|
|
48031
|
-
|
|
48129
|
+
confluenceScopeId?: InputMaybe<KnowledgeDiscoveryDefinitionScopeIdConfluence>;
|
|
48130
|
+
contentId?: InputMaybe<Scalars['String']['input']>;
|
|
48131
|
+
jiraScopeId?: InputMaybe<KnowledgeDiscoveryDefinitionScopeIdJira>;
|
|
48032
48132
|
keyPhrase: Scalars['String']['input'];
|
|
48033
|
-
spaceId
|
|
48133
|
+
spaceId?: InputMaybe<Scalars['String']['input']>;
|
|
48034
48134
|
workspaceId: Scalars['String']['input'];
|
|
48035
48135
|
};
|
|
48036
48136
|
export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryArgs = {
|
|
48037
|
-
|
|
48137
|
+
confluenceScopeId?: InputMaybe<KnowledgeDiscoveryDefinitionScopeIdConfluence>;
|
|
48138
|
+
contentId?: InputMaybe<Scalars['String']['input']>;
|
|
48139
|
+
jiraScopeId?: InputMaybe<KnowledgeDiscoveryDefinitionScopeIdJira>;
|
|
48038
48140
|
keyPhrase: Scalars['String']['input'];
|
|
48039
|
-
spaceId
|
|
48141
|
+
spaceId?: InputMaybe<Scalars['String']['input']>;
|
|
48040
48142
|
workspaceId: Scalars['String']['input'];
|
|
48041
48143
|
};
|
|
48042
48144
|
export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
|
|
@@ -50247,6 +50349,7 @@ export declare type Mutation = {
|
|
|
50247
50349
|
roadmaps?: Maybe<RoadmapsMutation>;
|
|
50248
50350
|
setAppEnvironmentVariable?: Maybe<SetAppEnvironmentVariablePayload>;
|
|
50249
50351
|
setBoardEstimationType?: Maybe<ToggleBoardFeatureOutput>;
|
|
50352
|
+
setCardColorStrategy?: Maybe<SetCardColorStrategyOutput>;
|
|
50250
50353
|
setColumnLimit?: Maybe<SetColumnLimitOutput>;
|
|
50251
50354
|
setColumnName?: Maybe<SetColumnNameOutput>;
|
|
50252
50355
|
setEstimationType?: Maybe<GenericMutationResponse>;
|
|
@@ -51018,6 +51121,9 @@ export declare type MutationSetAppEnvironmentVariableArgs = {
|
|
|
51018
51121
|
export declare type MutationSetBoardEstimationTypeArgs = {
|
|
51019
51122
|
input?: InputMaybe<SetBoardEstimationTypeInput>;
|
|
51020
51123
|
};
|
|
51124
|
+
export declare type MutationSetCardColorStrategyArgs = {
|
|
51125
|
+
input?: InputMaybe<SetCardColorStrategyInput>;
|
|
51126
|
+
};
|
|
51021
51127
|
export declare type MutationSetColumnLimitArgs = {
|
|
51022
51128
|
input?: InputMaybe<SetColumnLimitInput>;
|
|
51023
51129
|
};
|
|
@@ -53310,6 +53416,7 @@ export declare type PolarisViewSet = {
|
|
|
53310
53416
|
name: Scalars['String']['output'];
|
|
53311
53417
|
rank: Scalars['Int']['output'];
|
|
53312
53418
|
type?: Maybe<PolarisViewSetType>;
|
|
53419
|
+
uuid: Scalars['ID']['output'];
|
|
53313
53420
|
views: Array<PolarisView>;
|
|
53314
53421
|
viewsets: Array<PolarisViewSet>;
|
|
53315
53422
|
};
|
|
@@ -53450,7 +53557,6 @@ export declare type Query = {
|
|
|
53450
53557
|
codeInJira?: Maybe<CodeInJira>;
|
|
53451
53558
|
compass?: Maybe<CompassCatalogQueryApi>;
|
|
53452
53559
|
confluence?: Maybe<ConfluenceQueryApi>;
|
|
53453
|
-
confluenceLegacyCloudId?: Maybe<ConfluenceLegacyCloudId>;
|
|
53454
53560
|
confluenceLegacy_abTestCohorts?: Maybe<Scalars['String']['output']>;
|
|
53455
53561
|
confluenceLegacy_adminAnnouncementBanner?: Maybe<ConfluenceLegacy_AdminAnnouncementBanner>;
|
|
53456
53562
|
confluenceLegacy_adminAnnouncementBannerSetting?: Maybe<ConfluenceLegacy_AdminAnnouncementBannerSetting>;
|
|
@@ -53462,6 +53568,7 @@ export declare type Query = {
|
|
|
53462
53568
|
confluenceLegacy_canvasToken?: Maybe<ConfluenceLegacy_CanvasToken>;
|
|
53463
53569
|
confluenceLegacy_classificationLevel?: Maybe<ConfluenceLegacy_ContentDataClassificationLevel>;
|
|
53464
53570
|
confluenceLegacy_classificationLevels?: Maybe<Array<ConfluenceLegacy_ContentDataClassificationLevel>>;
|
|
53571
|
+
confluenceLegacy_cloudId?: Maybe<ConfluenceLegacy_CloudId>;
|
|
53465
53572
|
confluenceLegacy_collabToken?: Maybe<ConfluenceLegacy_CollabTokenResponse>;
|
|
53466
53573
|
confluenceLegacy_comment?: Maybe<ConfluenceLegacy_Comment>;
|
|
53467
53574
|
confluenceLegacy_comments?: Maybe<ConfluenceLegacy_PaginatedCommentList>;
|
|
@@ -53902,9 +54009,6 @@ export declare type QueryCanSplitIssueArgs = {
|
|
|
53902
54009
|
export declare type QueryCodeInJiraArgs = {
|
|
53903
54010
|
cloudId: Scalars['ID']['input'];
|
|
53904
54011
|
};
|
|
53905
|
-
export declare type QueryConfluenceLegacyCloudIdArgs = {
|
|
53906
|
-
cloudId: Scalars['ID']['input'];
|
|
53907
|
-
};
|
|
53908
54012
|
export declare type QueryConfluenceLegacy_AdminAnnouncementBannerSettingArgs = {
|
|
53909
54013
|
id: Scalars['String']['input'];
|
|
53910
54014
|
};
|
|
@@ -53930,6 +54034,9 @@ export declare type QueryConfluenceLegacy_CanvasTokenArgs = {
|
|
|
53930
54034
|
export declare type QueryConfluenceLegacy_ClassificationLevelArgs = {
|
|
53931
54035
|
id: Scalars['String']['input'];
|
|
53932
54036
|
};
|
|
54037
|
+
export declare type QueryConfluenceLegacy_CloudIdArgs = {
|
|
54038
|
+
cloudId: Scalars['ID']['input'];
|
|
54039
|
+
};
|
|
53933
54040
|
export declare type QueryConfluenceLegacy_CollabTokenArgs = {
|
|
53934
54041
|
draftShareId?: InputMaybe<Scalars['String']['input']>;
|
|
53935
54042
|
id: Scalars['ID']['input'];
|
|
@@ -56522,6 +56629,7 @@ export declare type SearchQueryApiSearchArgs = {
|
|
|
56522
56629
|
analytics?: InputMaybe<SearchAnalyticsInput>;
|
|
56523
56630
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
56524
56631
|
enableHighlighting?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56632
|
+
enableRelevanceDebugging?: InputMaybe<Scalars['Boolean']['input']>;
|
|
56525
56633
|
experience: Scalars['String']['input'];
|
|
56526
56634
|
experimentContext?: InputMaybe<SearchExperimentContextInput>;
|
|
56527
56635
|
filters: SearchFilterInput;
|
|
@@ -56926,6 +57034,18 @@ export declare type SetBoardEstimationTypeInput = {
|
|
|
56926
57034
|
estimationType: Scalars['String']['input'];
|
|
56927
57035
|
featureId: Scalars['String']['input'];
|
|
56928
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
|
+
};
|
|
56929
57049
|
export declare type SetColumnLimitInput = {
|
|
56930
57050
|
boardId: Scalars['ID']['input'];
|
|
56931
57051
|
columnId: Scalars['ID']['input'];
|
|
@@ -61464,8 +61584,12 @@ export declare type UnifiedForumsGroup = UnifiedINode & {
|
|
|
61464
61584
|
avatar?: Maybe<UnifiedForumsGroupAvatar>;
|
|
61465
61585
|
description?: Maybe<Scalars['String']['output']>;
|
|
61466
61586
|
groupMemberCount?: Maybe<Scalars['Int']['output']>;
|
|
61587
|
+
hasHiddenAncestor?: Maybe<Scalars['Boolean']['output']>;
|
|
61467
61588
|
id: Scalars['ID']['output'];
|
|
61589
|
+
joinDate?: Maybe<Scalars['String']['output']>;
|
|
61590
|
+
membershipType?: Maybe<Scalars['String']['output']>;
|
|
61468
61591
|
title?: Maybe<Scalars['String']['output']>;
|
|
61592
|
+
topicsCount?: Maybe<Scalars['Int']['output']>;
|
|
61469
61593
|
viewHref?: Maybe<Scalars['String']['output']>;
|
|
61470
61594
|
};
|
|
61471
61595
|
export declare type UnifiedForumsGroupAvatar = {
|