@forge/cli-shared 9.0.0 → 9.0.1-next.1
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 +14 -0
- package/out/graphql/graphql-types.d.ts +231 -3
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +28 -18
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 9.0.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [caa7518]
|
|
8
|
+
- @forge/manifest@13.1.0-next.1
|
|
9
|
+
|
|
10
|
+
## 9.0.1-next.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [4cd2242]
|
|
15
|
+
- @forge/manifest@13.1.0-next.0
|
|
16
|
+
|
|
3
17
|
## 9.0.0
|
|
4
18
|
|
|
5
19
|
### Major Changes
|
|
@@ -1589,6 +1589,9 @@ export type AvpAnalyticsPrincipalPermissionInput = {
|
|
|
1589
1589
|
principalAri: Scalars['ID']['input'];
|
|
1590
1590
|
principalPermissionType: AvpAnalyticsPermissionType;
|
|
1591
1591
|
};
|
|
1592
|
+
export type AvpAnalyticsPurgeMetricInput = {
|
|
1593
|
+
metricId: Scalars['ID']['input'];
|
|
1594
|
+
};
|
|
1592
1595
|
export type AvpAnalyticsRangeValue = {
|
|
1593
1596
|
__typename?: 'AVPAnalyticsRangeValue';
|
|
1594
1597
|
fromExpression?: Maybe<Scalars['String']['output']>;
|
|
@@ -2608,6 +2611,7 @@ export declare enum AvpPermissionsCapabilityFailureType {
|
|
|
2608
2611
|
CustomCheckFailed = "CUSTOM_CHECK_FAILED",
|
|
2609
2612
|
EditionUnavailable = "EDITION_UNAVAILABLE",
|
|
2610
2613
|
None = "NONE",
|
|
2614
|
+
PerimeterDenied = "PERIMETER_DENIED",
|
|
2611
2615
|
PermissionDenied = "PERMISSION_DENIED",
|
|
2612
2616
|
ProductRequired = "PRODUCT_REQUIRED"
|
|
2613
2617
|
}
|
|
@@ -9195,6 +9199,7 @@ export type AiCoreApiRsaKbGapItem = {
|
|
|
9195
9199
|
requestType?: Maybe<Scalars['String']['output']>;
|
|
9196
9200
|
requestTypeId?: Maybe<Scalars['String']['output']>;
|
|
9197
9201
|
suggestedTopic?: Maybe<Scalars['String']['output']>;
|
|
9202
|
+
workItemIds: Array<Scalars['String']['output']>;
|
|
9198
9203
|
};
|
|
9199
9204
|
export type AiCoreApiRsaKbGapResult = {
|
|
9200
9205
|
__typename?: 'AiCoreApiRsaKbGapResult';
|
|
@@ -19520,6 +19525,18 @@ export type CheckConsentPermissionByOAuthClientIdInput = {
|
|
|
19520
19525
|
scopes: Array<Scalars['String']['input']>;
|
|
19521
19526
|
userId: Scalars['ID']['input'];
|
|
19522
19527
|
};
|
|
19528
|
+
export type ChecklistItem = {
|
|
19529
|
+
__typename?: 'ChecklistItem';
|
|
19530
|
+
done: Scalars['Boolean']['output'];
|
|
19531
|
+
itemId: Scalars['ID']['output'];
|
|
19532
|
+
label: Scalars['String']['output'];
|
|
19533
|
+
order: Scalars['Int']['output'];
|
|
19534
|
+
};
|
|
19535
|
+
export type ChecklistItemInput = {
|
|
19536
|
+
itemId?: InputMaybe<Scalars['ID']['input']>;
|
|
19537
|
+
label: Scalars['String']['input'];
|
|
19538
|
+
order: Scalars['Int']['input'];
|
|
19539
|
+
};
|
|
19523
19540
|
export type ChildCardsMetadata = {
|
|
19524
19541
|
__typename?: 'ChildCardsMetadata';
|
|
19525
19542
|
complete?: Maybe<Scalars['Int']['output']>;
|
|
@@ -31015,6 +31032,14 @@ export type ConfluenceCreateSpacePayload = Payload & {
|
|
|
31015
31032
|
space?: Maybe<ConfluenceSpace>;
|
|
31016
31033
|
success: Scalars['Boolean']['output'];
|
|
31017
31034
|
};
|
|
31035
|
+
export type ConfluenceCreateSpaceSmartLinkEmbedInput = {
|
|
31036
|
+
embedIconUrl?: InputMaybe<Scalars['String']['input']>;
|
|
31037
|
+
embedUrl: Scalars['String']['input'];
|
|
31038
|
+
extensionKey?: InputMaybe<Scalars['String']['input']>;
|
|
31039
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
31040
|
+
resourceType?: InputMaybe<Scalars['String']['input']>;
|
|
31041
|
+
title: Scalars['String']['input'];
|
|
31042
|
+
};
|
|
31018
31043
|
export type ConfluenceCreateTopicInput = {
|
|
31019
31044
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
31020
31045
|
featured?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -39380,6 +39405,7 @@ export type CreateJiraPlaybookPayload = Payload & {
|
|
|
39380
39405
|
};
|
|
39381
39406
|
export type CreateJiraPlaybookStepInput = {
|
|
39382
39407
|
automationTemplateId?: InputMaybe<Scalars['String']['input']>;
|
|
39408
|
+
checklistItems?: InputMaybe<Array<ChecklistItemInput>>;
|
|
39383
39409
|
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
39384
39410
|
name: Scalars['String']['input'];
|
|
39385
39411
|
ruleId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -39567,6 +39593,7 @@ export type CreateSpaceInput = {
|
|
|
39567
39593
|
spaceLogoDataURI?: InputMaybe<Scalars['String']['input']>;
|
|
39568
39594
|
spaceName: Scalars['String']['input'];
|
|
39569
39595
|
spaceTemplateKey?: InputMaybe<Scalars['String']['input']>;
|
|
39596
|
+
thirdPartyFileEmbeds?: InputMaybe<Array<ConfluenceCreateSpaceSmartLinkEmbedInput>>;
|
|
39570
39597
|
};
|
|
39571
39598
|
export type CreateSpaceJiraProjectInput = {
|
|
39572
39599
|
jiraProjectKey: Scalars['String']['input'];
|
|
@@ -46417,6 +46444,7 @@ export type EcosystemMutation = {
|
|
|
46417
46444
|
devConsole?: Maybe<DevConsoleMutation>;
|
|
46418
46445
|
forgeAlerts?: Maybe<ForgeAlertsMutation>;
|
|
46419
46446
|
forgeMetrics?: Maybe<ForgeMetricsMutation>;
|
|
46447
|
+
forgeObservability?: Maybe<ForgeObservabilityMutation>;
|
|
46420
46448
|
publishRealtimeChannel?: Maybe<EcosystemRealtimePublishBody>;
|
|
46421
46449
|
removeAppContributors?: Maybe<RemoveAppContributorsResponsePayload>;
|
|
46422
46450
|
updateAppContributorRole?: Maybe<UpdateAppContributorRoleResponsePayload>;
|
|
@@ -50402,6 +50430,25 @@ export type ForgeMetricsSuccessRateValueData = ForgeMetricsData & {
|
|
|
50402
50430
|
type: ForgeMetricsDataType;
|
|
50403
50431
|
};
|
|
50404
50432
|
export type ForgeMetricsSuccessRateValueResult = ForgeMetricsSuccessRateValueData | QueryError;
|
|
50433
|
+
export type ForgeObservabilityMutation = {
|
|
50434
|
+
__typename?: 'ForgeObservabilityMutation';
|
|
50435
|
+
publishFrontendCustomMetric?: Maybe<ForgeObservabilityPublishFrontendCustomMetricResponse>;
|
|
50436
|
+
};
|
|
50437
|
+
export type ForgeObservabilityMutationPublishFrontendCustomMetricArgs = {
|
|
50438
|
+
input: ForgeObservabilityPublishFrontendCustomMetricInput;
|
|
50439
|
+
};
|
|
50440
|
+
export type ForgeObservabilityPublishFrontendCustomMetricInput = {
|
|
50441
|
+
appId: Scalars['ID']['input'];
|
|
50442
|
+
contextAri: Scalars['ID']['input'];
|
|
50443
|
+
customMetricName: Scalars['String']['input'];
|
|
50444
|
+
installationId: Scalars['ID']['input'];
|
|
50445
|
+
moduleKey: Scalars['String']['input'];
|
|
50446
|
+
value?: InputMaybe<Scalars['Float']['input']>;
|
|
50447
|
+
};
|
|
50448
|
+
export type ForgeObservabilityPublishFrontendCustomMetricResponse = {
|
|
50449
|
+
__typename?: 'ForgeObservabilityPublishFrontendCustomMetricResponse';
|
|
50450
|
+
success: Scalars['Boolean']['output'];
|
|
50451
|
+
};
|
|
50405
50452
|
export declare enum FormStatus {
|
|
50406
50453
|
Approved = "APPROVED",
|
|
50407
50454
|
Rejected = "REJECTED",
|
|
@@ -119921,6 +119968,7 @@ export type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
|
119921
119968
|
};
|
|
119922
119969
|
export type JiraBoardViewWorkflow = {
|
|
119923
119970
|
__typename?: 'JiraBoardViewWorkflow';
|
|
119971
|
+
canEdit?: Maybe<Scalars['Boolean']['output']>;
|
|
119924
119972
|
eligibleTransitions?: Maybe<JiraTransitionConnection>;
|
|
119925
119973
|
id: Scalars['ID']['output'];
|
|
119926
119974
|
issueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
@@ -128466,6 +128514,26 @@ export type JiraIssueSection = {
|
|
|
128466
128514
|
msg?: Maybe<Scalars['String']['output']>;
|
|
128467
128515
|
sub?: Maybe<Scalars['String']['output']>;
|
|
128468
128516
|
};
|
|
128517
|
+
export type JiraIssueSecurityLevelUsageMetric = JiraResourceUsageMetricV2 & Node & {
|
|
128518
|
+
__typename?: 'JiraIssueSecurityLevelUsageMetric';
|
|
128519
|
+
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
128520
|
+
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
128521
|
+
id: Scalars['ID']['output'];
|
|
128522
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
128523
|
+
projectsOverLimit?: Maybe<Scalars['Int']['output']>;
|
|
128524
|
+
projectsReachingLimit?: Maybe<Scalars['Int']['output']>;
|
|
128525
|
+
thresholdValue?: Maybe<Scalars['Long']['output']>;
|
|
128526
|
+
values?: Maybe<JiraResourceUsageMetricValueConnection>;
|
|
128527
|
+
warningValue?: Maybe<Scalars['Long']['output']>;
|
|
128528
|
+
};
|
|
128529
|
+
export type JiraIssueSecurityLevelUsageMetricValuesArgs = {
|
|
128530
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
128531
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
128532
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
128533
|
+
fromDate?: InputMaybe<Scalars['Date']['input']>;
|
|
128534
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
128535
|
+
toDate?: InputMaybe<Scalars['Date']['input']>;
|
|
128536
|
+
};
|
|
128469
128537
|
export type JiraIssueStreamHubEventPayloadComment = {
|
|
128470
128538
|
__typename?: 'JiraIssueStreamHubEventPayloadComment';
|
|
128471
128539
|
id: Scalars['Int']['output'];
|
|
@@ -133277,6 +133345,7 @@ export declare enum JiraPlaybookStateField {
|
|
|
133277
133345
|
export type JiraPlaybookStep = {
|
|
133278
133346
|
__typename?: 'JiraPlaybookStep';
|
|
133279
133347
|
automationTemplateId?: Maybe<Scalars['String']['output']>;
|
|
133348
|
+
checklistItems?: Maybe<Array<ChecklistItem>>;
|
|
133280
133349
|
description?: Maybe<Scalars['JSON']['output']>;
|
|
133281
133350
|
name?: Maybe<Scalars['String']['output']>;
|
|
133282
133351
|
ruleId?: Maybe<Scalars['String']['output']>;
|
|
@@ -133704,6 +133773,7 @@ export type JiraProject = Node & {
|
|
|
133704
133773
|
shouldShowGuestUserFlag?: Maybe<Scalars['Boolean']['output']>;
|
|
133705
133774
|
sidebarConnectAddons?: Maybe<JiraProjectSidebarConnectAddonConnection>;
|
|
133706
133775
|
similarIssues?: Maybe<JiraSimilarIssues>;
|
|
133776
|
+
slaMetricsConfiguration?: Maybe<JiraServiceManagementProjectSlaMetricsConfiguration>;
|
|
133707
133777
|
softwareBoardCount?: Maybe<Scalars['Long']['output']>;
|
|
133708
133778
|
softwareBoards?: Maybe<BoardScopeConnection>;
|
|
133709
133779
|
status?: Maybe<JiraProjectStatus>;
|
|
@@ -135042,6 +135112,7 @@ export type JiraQuery = {
|
|
|
135042
135112
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
135043
135113
|
jpdGlobalViewFields?: Maybe<JiraPolarisGlobalViewFields>;
|
|
135044
135114
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
135115
|
+
jsmChatEnabled?: Maybe<JiraServiceManagementChatEnabled>;
|
|
135045
135116
|
jsmCustomerWidget?: Maybe<JiraServiceManagementCustomerWidget>;
|
|
135046
135117
|
jsmEmails?: Maybe<JiraServiceManagementEmailsConnection>;
|
|
135047
135118
|
jsmPortal?: Maybe<JiraServiceManagementPortal>;
|
|
@@ -135960,6 +136031,10 @@ export type JiraQueryJpdGlobalViewFieldsArgs = {
|
|
|
135960
136031
|
export type JiraQueryJqlBuilderArgs = {
|
|
135961
136032
|
cloudId: Scalars['ID']['input'];
|
|
135962
136033
|
};
|
|
136034
|
+
export type JiraQueryJsmChatEnabledArgs = {
|
|
136035
|
+
cloudId: Scalars['ID']['input'];
|
|
136036
|
+
projectId: Scalars['ID']['input'];
|
|
136037
|
+
};
|
|
135963
136038
|
export type JiraQueryJsmCustomerWidgetArgs = {
|
|
135964
136039
|
cloudId: Scalars['ID']['input'];
|
|
135965
136040
|
projectId: Scalars['ID']['input'];
|
|
@@ -136694,6 +136769,39 @@ export type JiraRelatedLinkSuggestionsItemsArgs = {
|
|
|
136694
136769
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
136695
136770
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
136696
136771
|
};
|
|
136772
|
+
export type JiraReleaseHistoryConnection = {
|
|
136773
|
+
__typename?: 'JiraReleaseHistoryConnection';
|
|
136774
|
+
edges: Array<JiraReleaseHistoryEdge>;
|
|
136775
|
+
pageInfo: PageInfo;
|
|
136776
|
+
};
|
|
136777
|
+
export type JiraReleaseHistoryEdge = {
|
|
136778
|
+
__typename?: 'JiraReleaseHistoryEdge';
|
|
136779
|
+
node: JiraReleaseHistoryItem;
|
|
136780
|
+
};
|
|
136781
|
+
export type JiraReleaseHistoryGenericFieldValue = {
|
|
136782
|
+
__typename?: 'JiraReleaseHistoryGenericFieldValue';
|
|
136783
|
+
displayValue?: Maybe<Scalars['String']['output']>;
|
|
136784
|
+
};
|
|
136785
|
+
export type JiraReleaseHistoryItem = {
|
|
136786
|
+
__typename?: 'JiraReleaseHistoryItem';
|
|
136787
|
+
actor?: Maybe<User>;
|
|
136788
|
+
fieldId?: Maybe<Scalars['String']['output']>;
|
|
136789
|
+
from?: Maybe<JiraReleaseHistoryValue>;
|
|
136790
|
+
i18nDescription?: Maybe<Scalars['String']['output']>;
|
|
136791
|
+
id: Scalars['ID']['output'];
|
|
136792
|
+
timestamp?: Maybe<Scalars['Long']['output']>;
|
|
136793
|
+
to?: Maybe<JiraReleaseHistoryValue>;
|
|
136794
|
+
};
|
|
136795
|
+
export type JiraReleaseHistoryStatusFieldValue = {
|
|
136796
|
+
__typename?: 'JiraReleaseHistoryStatusFieldValue';
|
|
136797
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
136798
|
+
};
|
|
136799
|
+
export type JiraReleaseHistoryUserFieldValue = {
|
|
136800
|
+
__typename?: 'JiraReleaseHistoryUserFieldValue';
|
|
136801
|
+
user?: Maybe<User>;
|
|
136802
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
136803
|
+
};
|
|
136804
|
+
export type JiraReleaseHistoryValue = JiraReleaseHistoryGenericFieldValue | JiraReleaseHistoryStatusFieldValue | JiraReleaseHistoryUserFieldValue;
|
|
136697
136805
|
export type JiraReleaseNotesConfiguration = {
|
|
136698
136806
|
__typename?: 'JiraReleaseNotesConfiguration';
|
|
136699
136807
|
issueFieldIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
@@ -137770,6 +137878,7 @@ export type JiraRightPanelStateEdge = {
|
|
|
137770
137878
|
};
|
|
137771
137879
|
export type JiraRole = Node & {
|
|
137772
137880
|
__typename?: 'JiraRole';
|
|
137881
|
+
allowedOperations?: Maybe<Array<JiraRoleAllowedOperation>>;
|
|
137773
137882
|
description?: Maybe<Scalars['String']['output']>;
|
|
137774
137883
|
id: Scalars['ID']['output'];
|
|
137775
137884
|
isAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -137780,6 +137889,12 @@ export type JiraRole = Node & {
|
|
|
137780
137889
|
roleId: Scalars['String']['output'];
|
|
137781
137890
|
translatedName?: Maybe<Scalars['String']['output']>;
|
|
137782
137891
|
};
|
|
137892
|
+
export declare enum JiraRoleAllowedOperation {
|
|
137893
|
+
Delete = "DELETE",
|
|
137894
|
+
Edit = "EDIT",
|
|
137895
|
+
ManageMembers = "MANAGE_MEMBERS",
|
|
137896
|
+
View = "VIEW"
|
|
137897
|
+
}
|
|
137783
137898
|
export type JiraRoleConnection = {
|
|
137784
137899
|
__typename?: 'JiraRoleConnection';
|
|
137785
137900
|
edges?: Maybe<Array<Maybe<JiraRoleEdge>>>;
|
|
@@ -138391,6 +138506,10 @@ export type JiraServiceManagementChannelSourceFieldChannelSourcesArgs = {
|
|
|
138391
138506
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
138392
138507
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
138393
138508
|
};
|
|
138509
|
+
export type JiraServiceManagementChatEnabled = {
|
|
138510
|
+
__typename?: 'JiraServiceManagementChatEnabled';
|
|
138511
|
+
enabled: Scalars['Boolean']['output'];
|
|
138512
|
+
};
|
|
138394
138513
|
export type JiraServiceManagementComment = JiraComment & Node & {
|
|
138395
138514
|
__typename?: 'JiraServiceManagementComment';
|
|
138396
138515
|
author?: Maybe<User>;
|
|
@@ -138954,6 +139073,70 @@ export type JiraServiceManagementProjectQueueConnection = {
|
|
|
138954
139073
|
pageInfo: PageInfo;
|
|
138955
139074
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
138956
139075
|
};
|
|
139076
|
+
export type JiraServiceManagementProjectSlaCalendarReference = {
|
|
139077
|
+
__typename?: 'JiraServiceManagementProjectSlaCalendarReference';
|
|
139078
|
+
id: Scalars['Int']['output'];
|
|
139079
|
+
isDefault: Scalars['Boolean']['output'];
|
|
139080
|
+
name: Scalars['String']['output'];
|
|
139081
|
+
};
|
|
139082
|
+
export type JiraServiceManagementProjectSlaCondition = {
|
|
139083
|
+
__typename?: 'JiraServiceManagementProjectSlaCondition';
|
|
139084
|
+
conditionId: Scalars['String']['output'];
|
|
139085
|
+
factoryKey: Scalars['String']['output'];
|
|
139086
|
+
missing: Scalars['Boolean']['output'];
|
|
139087
|
+
name: Scalars['String']['output'];
|
|
139088
|
+
pluginKey: Scalars['String']['output'];
|
|
139089
|
+
type: Scalars['String']['output'];
|
|
139090
|
+
};
|
|
139091
|
+
export type JiraServiceManagementProjectSlaConditions = {
|
|
139092
|
+
__typename?: 'JiraServiceManagementProjectSlaConditions';
|
|
139093
|
+
inconsistent: Scalars['Boolean']['output'];
|
|
139094
|
+
pause: Array<JiraServiceManagementProjectSlaCondition>;
|
|
139095
|
+
start: Array<JiraServiceManagementProjectSlaCondition>;
|
|
139096
|
+
stop: Array<JiraServiceManagementProjectSlaCondition>;
|
|
139097
|
+
};
|
|
139098
|
+
export type JiraServiceManagementProjectSlaGoal = {
|
|
139099
|
+
__typename?: 'JiraServiceManagementProjectSlaGoal';
|
|
139100
|
+
calendarId?: Maybe<Scalars['Int']['output']>;
|
|
139101
|
+
defaultGoal: Scalars['Boolean']['output'];
|
|
139102
|
+
duration?: Maybe<Scalars['Long']['output']>;
|
|
139103
|
+
id: Scalars['ID']['output'];
|
|
139104
|
+
jqlQuery?: Maybe<Scalars['String']['output']>;
|
|
139105
|
+
subGoals: Array<JiraServiceManagementProjectSlaSubGoal>;
|
|
139106
|
+
};
|
|
139107
|
+
export type JiraServiceManagementProjectSlaMetricsConfiguration = {
|
|
139108
|
+
__typename?: 'JiraServiceManagementProjectSlaMetricsConfiguration';
|
|
139109
|
+
calendarRefs: Array<JiraServiceManagementProjectSlaCalendarReference>;
|
|
139110
|
+
canCreateMetrics: Scalars['Boolean']['output'];
|
|
139111
|
+
canManageFields: Scalars['Boolean']['output'];
|
|
139112
|
+
jqlHelpUrl: Scalars['String']['output'];
|
|
139113
|
+
metricCount: Scalars['Int']['output'];
|
|
139114
|
+
timeMetrics: Array<JiraServiceManagementProjectSlaTimeMetric>;
|
|
139115
|
+
};
|
|
139116
|
+
export type JiraServiceManagementProjectSlaSubGoal = {
|
|
139117
|
+
__typename?: 'JiraServiceManagementProjectSlaSubGoal';
|
|
139118
|
+
calendarId?: Maybe<Scalars['Int']['output']>;
|
|
139119
|
+
defaultGoal: Scalars['Boolean']['output'];
|
|
139120
|
+
duration?: Maybe<Scalars['Long']['output']>;
|
|
139121
|
+
goalId: Scalars['ID']['output'];
|
|
139122
|
+
id: Scalars['ID']['output'];
|
|
139123
|
+
jqlQuery?: Maybe<Scalars['String']['output']>;
|
|
139124
|
+
};
|
|
139125
|
+
export type JiraServiceManagementProjectSlaTimeMetric = {
|
|
139126
|
+
__typename?: 'JiraServiceManagementProjectSlaTimeMetric';
|
|
139127
|
+
config?: Maybe<JiraServiceManagementProjectSlaTimeMetricConfig>;
|
|
139128
|
+
customFieldId: Scalars['Long']['output'];
|
|
139129
|
+
goalCount: Scalars['Int']['output'];
|
|
139130
|
+
id: Scalars['ID']['output'];
|
|
139131
|
+
name: Scalars['String']['output'];
|
|
139132
|
+
projectKey: Scalars['String']['output'];
|
|
139133
|
+
};
|
|
139134
|
+
export type JiraServiceManagementProjectSlaTimeMetricConfig = {
|
|
139135
|
+
__typename?: 'JiraServiceManagementProjectSlaTimeMetricConfig';
|
|
139136
|
+
definition: JiraServiceManagementProjectSlaConditions;
|
|
139137
|
+
goals: Array<JiraServiceManagementProjectSlaGoal>;
|
|
139138
|
+
slaDisplayFormat: Scalars['String']['output'];
|
|
139139
|
+
};
|
|
138957
139140
|
export type JiraServiceManagementProjectTeamType = {
|
|
138958
139141
|
__typename?: 'JiraServiceManagementProjectTeamType';
|
|
138959
139142
|
teamType?: Maybe<Scalars['String']['output']>;
|
|
@@ -140888,6 +141071,7 @@ export type JiraSprintFieldPayload = Payload & {
|
|
|
140888
141071
|
export type JiraSprintFilterInput = {
|
|
140889
141072
|
activeWithin?: InputMaybe<JiraDateTimeWindow>;
|
|
140890
141073
|
boardIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
141074
|
+
context?: InputMaybe<JiraSoftwareIssueSearchCustomInputContext>;
|
|
140891
141075
|
projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
140892
141076
|
projectKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
140893
141077
|
states?: InputMaybe<Array<JiraSprintState>>;
|
|
@@ -143091,6 +143275,7 @@ export type JiraVersion = JiraScenarioVersionLike & JiraSelectableValue & Node &
|
|
|
143091
143275
|
driverData?: Maybe<JiraVersionDriverResult>;
|
|
143092
143276
|
epicsForFilter?: Maybe<JiraIssueConnection>;
|
|
143093
143277
|
hasReleaseNote?: Maybe<Scalars['Boolean']['output']>;
|
|
143278
|
+
history?: Maybe<JiraReleaseHistoryConnection>;
|
|
143094
143279
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
143095
143280
|
id: Scalars['ID']['output'];
|
|
143096
143281
|
issueAssociatedDesigns?: Maybe<GraphStoreSimplifiedVersionAssociatedDesignConnection>;
|
|
@@ -143147,6 +143332,10 @@ export type JiraVersionCrossProjectVersionArgs = {
|
|
|
143147
143332
|
export type JiraVersionEpicsForFilterArgs = {
|
|
143148
143333
|
searchStr?: InputMaybe<Scalars['String']['input']>;
|
|
143149
143334
|
};
|
|
143335
|
+
export type JiraVersionHistoryArgs = {
|
|
143336
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
143337
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
143338
|
+
};
|
|
143150
143339
|
export type JiraVersionIssueAssociatedDesignsArgs = {
|
|
143151
143340
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
143152
143341
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -144996,6 +145185,7 @@ export type JsmAdaptiveLanguageGlossary = {
|
|
|
144996
145185
|
__typename?: 'JsmAdaptiveLanguageGlossary';
|
|
144997
145186
|
brandExceptions?: Maybe<Scalars['String']['output']>;
|
|
144998
145187
|
compiledGlossary?: Maybe<Scalars['String']['output']>;
|
|
145188
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
144999
145189
|
domainId?: Maybe<Scalars['String']['output']>;
|
|
145000
145190
|
locale?: Maybe<Scalars['String']['output']>;
|
|
145001
145191
|
matchOrder?: Maybe<Scalars['String']['output']>;
|
|
@@ -155918,6 +156108,14 @@ export type MercuryDeleteCustomFieldDefinitionPayload = {
|
|
|
155918
156108
|
errors?: Maybe<Array<MutationError>>;
|
|
155919
156109
|
success: Scalars['Boolean']['output'];
|
|
155920
156110
|
};
|
|
156111
|
+
export type MercuryDeleteDraftPlanInput = {
|
|
156112
|
+
planId: Scalars['ID']['input'];
|
|
156113
|
+
};
|
|
156114
|
+
export type MercuryDeleteDraftPlanPayload = Payload & {
|
|
156115
|
+
__typename?: 'MercuryDeleteDraftPlanPayload';
|
|
156116
|
+
errors?: Maybe<Array<MutationError>>;
|
|
156117
|
+
success: Scalars['Boolean']['output'];
|
|
156118
|
+
};
|
|
155921
156119
|
export type MercuryDeleteFocusAreaBudgetInput = {
|
|
155922
156120
|
id: Scalars['ID']['input'];
|
|
155923
156121
|
};
|
|
@@ -159408,16 +159606,24 @@ export declare enum MercuryPlanType {
|
|
|
159408
159606
|
export type MercuryPlansMutationApi = {
|
|
159409
159607
|
__typename?: 'MercuryPlansMutationApi';
|
|
159410
159608
|
createDraftPlan?: Maybe<MercuryCreateDraftPlanPayload>;
|
|
159609
|
+
deleteDraftPlan?: Maybe<MercuryDeleteDraftPlanPayload>;
|
|
159411
159610
|
linkFocusAreasToPlan?: Maybe<MercuryLinkFocusAreasToPlanPayload>;
|
|
159611
|
+
setPlanBaseline?: Maybe<MercurySetPlanBaselinePayload>;
|
|
159412
159612
|
setPlanMemberCountAllocations?: Maybe<MercurySetMemberCountAllocationsPayload>;
|
|
159413
159613
|
unlinkFocusAreasFromPlan?: Maybe<MercuryUnlinkFocusAreasFromPlanPayload>;
|
|
159414
159614
|
};
|
|
159415
159615
|
export type MercuryPlansMutationApiCreateDraftPlanArgs = {
|
|
159416
159616
|
input: MercuryCreateDraftPlanInput;
|
|
159417
159617
|
};
|
|
159618
|
+
export type MercuryPlansMutationApiDeleteDraftPlanArgs = {
|
|
159619
|
+
input: MercuryDeleteDraftPlanInput;
|
|
159620
|
+
};
|
|
159418
159621
|
export type MercuryPlansMutationApiLinkFocusAreasToPlanArgs = {
|
|
159419
159622
|
input: MercuryLinkFocusAreasToPlanInput;
|
|
159420
159623
|
};
|
|
159624
|
+
export type MercuryPlansMutationApiSetPlanBaselineArgs = {
|
|
159625
|
+
input: MercurySetPlanBaselineInput;
|
|
159626
|
+
};
|
|
159421
159627
|
export type MercuryPlansMutationApiSetPlanMemberCountAllocationsArgs = {
|
|
159422
159628
|
input: MercurySetMemberCountAllocationsInput;
|
|
159423
159629
|
};
|
|
@@ -160780,6 +160986,14 @@ export type MercurySetOrganizationCustomFieldsPayload = Payload & {
|
|
|
160780
160986
|
errors?: Maybe<Array<MutationError>>;
|
|
160781
160987
|
success: Scalars['Boolean']['output'];
|
|
160782
160988
|
};
|
|
160989
|
+
export type MercurySetPlanBaselineInput = {
|
|
160990
|
+
planId: Scalars['ID']['input'];
|
|
160991
|
+
};
|
|
160992
|
+
export type MercurySetPlanBaselinePayload = Payload & {
|
|
160993
|
+
__typename?: 'MercurySetPlanBaselinePayload';
|
|
160994
|
+
errors?: Maybe<Array<MutationError>>;
|
|
160995
|
+
success: Scalars['Boolean']['output'];
|
|
160996
|
+
};
|
|
160783
160997
|
export type MercurySetPreferenceInput = {
|
|
160784
160998
|
cloudId: Scalars['ID']['input'];
|
|
160785
160999
|
key: Scalars['String']['input'];
|
|
@@ -163003,6 +163217,7 @@ export type Mutation = {
|
|
|
163003
163217
|
avpanalytics_deleteModel?: Maybe<AvpAnalyticsDeleteModelPayload>;
|
|
163004
163218
|
avpanalytics_discardMetricUpdates?: Maybe<AvpAnalyticsDiscardMetricUpdatesPayload>;
|
|
163005
163219
|
avpanalytics_discardModelUpdates?: Maybe<AvpAnalyticsDiscardModelUpdatesPayload>;
|
|
163220
|
+
avpanalytics_purgeMetric?: Maybe<AvpAnalyticsDeleteMetricPayload>;
|
|
163006
163221
|
avpanalytics_updateMetric?: Maybe<AvpAnalyticsUpdateMetricPayload>;
|
|
163007
163222
|
avpanalytics_updateModel?: Maybe<AvpAnalyticsUpdateModelPayload>;
|
|
163008
163223
|
avpanalytics_updatePermission?: Maybe<AvpAnalyticsUpdatePermissionPayload>;
|
|
@@ -165383,6 +165598,10 @@ export type MutationAvpanalytics_DiscardModelUpdatesArgs = {
|
|
|
165383
165598
|
cloudId: Scalars['ID']['input'];
|
|
165384
165599
|
input?: InputMaybe<AvpAnalyticsDiscardModelUpdatesInput>;
|
|
165385
165600
|
};
|
|
165601
|
+
export type MutationAvpanalytics_PurgeMetricArgs = {
|
|
165602
|
+
cloudId: Scalars['ID']['input'];
|
|
165603
|
+
input: AvpAnalyticsPurgeMetricInput;
|
|
165604
|
+
};
|
|
165386
165605
|
export type MutationAvpanalytics_UpdateMetricArgs = {
|
|
165387
165606
|
cloudId: Scalars['ID']['input'];
|
|
165388
165607
|
input: AvpAnalyticsUpdateMetricInput;
|
|
@@ -168542,6 +168761,7 @@ export type MutationLiveChat_SendUserMessageArgs = {
|
|
|
168542
168761
|
liveChatSendUserMessageInput: LiveChatSendUserMessageInput;
|
|
168543
168762
|
};
|
|
168544
168763
|
export type MutationLoom_AcceptOrganizationInviteArgs = {
|
|
168764
|
+
extraLoomProperties?: InputMaybe<Scalars['JSON']['input']>;
|
|
168545
168765
|
flowTraceId?: InputMaybe<Scalars['String']['input']>;
|
|
168546
168766
|
inviteLinkId?: InputMaybe<Scalars['ID']['input']>;
|
|
168547
168767
|
orgToken?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -168550,6 +168770,7 @@ export type MutationLoom_DeleteVideosArgs = {
|
|
|
168550
168770
|
ids: Array<Scalars['ID']['input']>;
|
|
168551
168771
|
};
|
|
168552
168772
|
export type MutationLoom_JoinWorkspaceArgs = {
|
|
168773
|
+
extraLoomProperties?: InputMaybe<Scalars['JSON']['input']>;
|
|
168553
168774
|
flowTraceId?: InputMaybe<Scalars['String']['input']>;
|
|
168554
168775
|
workspaceId: Scalars['String']['input'];
|
|
168555
168776
|
};
|
|
@@ -198886,7 +199107,7 @@ export declare enum RadarMetricType {
|
|
|
198886
199107
|
}
|
|
198887
199108
|
export type RadarMetricValue = {
|
|
198888
199109
|
__typename?: 'RadarMetricValue';
|
|
198889
|
-
dimensionName
|
|
199110
|
+
dimensionName?: Maybe<Scalars['String']['output']>;
|
|
198890
199111
|
id: Scalars['ID']['output'];
|
|
198891
199112
|
scopeId: Scalars['String']['output'];
|
|
198892
199113
|
scopeType: RadarMetricScopeType;
|
|
@@ -198894,7 +199115,7 @@ export type RadarMetricValue = {
|
|
|
198894
199115
|
tolerance?: Maybe<Scalars['Float']['output']>;
|
|
198895
199116
|
};
|
|
198896
199117
|
export type RadarMetricValueInput = {
|
|
198897
|
-
dimensionName
|
|
199118
|
+
dimensionName?: InputMaybe<Scalars['String']['input']>;
|
|
198898
199119
|
scopeId: Scalars['String']['input'];
|
|
198899
199120
|
scopeType: RadarMetricScopeType;
|
|
198900
199121
|
target: Scalars['Float']['input'];
|
|
@@ -200993,6 +201214,7 @@ export declare enum Scope {
|
|
|
200993
201214
|
ReadFeedbackJob = "READ_FEEDBACK_JOB",
|
|
200994
201215
|
ReadFeedbackSource = "READ_FEEDBACK_SOURCE",
|
|
200995
201216
|
ReadFeedbackSpace = "READ_FEEDBACK_SPACE",
|
|
201217
|
+
ReadFeedbackTwgCli = "READ_FEEDBACK_TWG_CLI",
|
|
200996
201218
|
ReadFeedbackView = "READ_FEEDBACK_VIEW",
|
|
200997
201219
|
ReadGoal = "READ_GOAL",
|
|
200998
201220
|
ReadGoalAccess = "READ_GOAL_ACCESS",
|
|
@@ -201165,6 +201387,7 @@ export declare enum Scope {
|
|
|
201165
201387
|
WriteFeedbackInsight = "WRITE_FEEDBACK_INSIGHT",
|
|
201166
201388
|
WriteFeedbackJob = "WRITE_FEEDBACK_JOB",
|
|
201167
201389
|
WriteFeedbackSpace = "WRITE_FEEDBACK_SPACE",
|
|
201390
|
+
WriteFeedbackTwgCli = "WRITE_FEEDBACK_TWG_CLI",
|
|
201168
201391
|
WriteFeedbackView = "WRITE_FEEDBACK_VIEW",
|
|
201169
201392
|
WriteGoal = "WRITE_GOAL",
|
|
201170
201393
|
WriteGoalChatIntegration = "WRITE_GOAL_CHAT_INTEGRATION",
|
|
@@ -202349,6 +202572,7 @@ export type SearchResultMercuryOrganization = SearchResult & {
|
|
|
202349
202572
|
lifecycleStatus?: Maybe<Scalars['String']['output']>;
|
|
202350
202573
|
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
202351
202574
|
navBoostScore?: Maybe<Scalars['Float']['output']>;
|
|
202575
|
+
organization?: Maybe<MercuryOrganization>;
|
|
202352
202576
|
organizationTypeAri: Scalars['ID']['output'];
|
|
202353
202577
|
ownerAri: Scalars['ID']['output'];
|
|
202354
202578
|
parentOrganizationAri?: Maybe<Scalars['ID']['output']>;
|
|
@@ -202371,6 +202595,7 @@ export type SearchResultMercuryOrganizationStatusUpdate = SearchResult & {
|
|
|
202371
202595
|
newTargetDateAt?: Maybe<Scalars['String']['output']>;
|
|
202372
202596
|
newTargetDateType?: Maybe<Scalars['String']['output']>;
|
|
202373
202597
|
organizationAri: Scalars['ID']['output'];
|
|
202598
|
+
organizationStatusUpdate?: Maybe<MercuryOrganizationStatusUpdate>;
|
|
202374
202599
|
ownerAri: Scalars['ID']['output'];
|
|
202375
202600
|
previousTargetDateAt?: Maybe<Scalars['String']['output']>;
|
|
202376
202601
|
previousTargetDateType?: Maybe<Scalars['String']['output']>;
|
|
@@ -236127,7 +236352,7 @@ export type TrelloMoveCardInput = {
|
|
|
236127
236352
|
boardId?: InputMaybe<Scalars['ID']['input']>;
|
|
236128
236353
|
cardId: Scalars['ID']['input'];
|
|
236129
236354
|
listId: Scalars['ID']['input'];
|
|
236130
|
-
position?: InputMaybe<
|
|
236355
|
+
position?: InputMaybe<Scalars['TrelloCardPosition']['input']>;
|
|
236131
236356
|
};
|
|
236132
236357
|
export type TrelloMoveCardPayload = Payload & {
|
|
236133
236358
|
__typename?: 'TrelloMoveCardPayload';
|
|
@@ -241262,6 +241487,7 @@ export type UpdateJiraPlaybookStatePayload = Payload & {
|
|
|
241262
241487
|
success: Scalars['Boolean']['output'];
|
|
241263
241488
|
};
|
|
241264
241489
|
export type UpdateJiraPlaybookStepInput = {
|
|
241490
|
+
checklistItems?: InputMaybe<Array<ChecklistItemInput>>;
|
|
241265
241491
|
description?: InputMaybe<Scalars['JSON']['input']>;
|
|
241266
241492
|
name: Scalars['String']['input'];
|
|
241267
241493
|
ruleId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -241798,6 +242024,7 @@ export type UserPreferences = {
|
|
|
241798
242024
|
highlightOptionPanelEnabled: Scalars['Boolean']['output'];
|
|
241799
242025
|
homePagesDisplayView: PagesDisplayPersistenceOption;
|
|
241800
242026
|
homeWidgets: Array<HomeWidget>;
|
|
242027
|
+
isCommentsPanelAutomaticSummariesEnabled: Scalars['Boolean']['output'];
|
|
241801
242028
|
isHomeOnboardingDismissed: Scalars['Boolean']['output'];
|
|
241802
242029
|
keyboardShortcutDisabled: Scalars['Boolean']['output'];
|
|
241803
242030
|
missionControlFeatureDiscoverySuggestions: Array<Maybe<MissionControlFeatureDiscoverySuggestionState>>;
|
|
@@ -241849,6 +242076,7 @@ export type UserPreferencesInput = {
|
|
|
241849
242076
|
globalPageCardAppearancePreference?: InputMaybe<PagesDisplayPersistenceOption>;
|
|
241850
242077
|
homePagesDisplayView?: InputMaybe<PagesDisplayPersistenceOption>;
|
|
241851
242078
|
homeWidget?: InputMaybe<HomeWidgetInput>;
|
|
242079
|
+
isCommentsPanelAutomaticSummariesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
241852
242080
|
isHomeOnboardingDismissed?: InputMaybe<Scalars['Boolean']['input']>;
|
|
241853
242081
|
keyboardShortcutDisabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
241854
242082
|
missionControlFeatureDiscoverySuggestion?: InputMaybe<MissionControlFeatureDiscoverySuggestionInput>;
|