@forge/cli-shared 8.9.0-next.12 → 8.9.0-next.13
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
CHANGED
|
@@ -3902,6 +3902,7 @@ export declare type AppFeaturesExposedCredentialsInput = {
|
|
|
3902
3902
|
export declare type AppFeaturesInput = {
|
|
3903
3903
|
hasCustomLifecycle?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3904
3904
|
hasExposedCredentials?: InputMaybe<AppFeaturesExposedCredentialsInput>;
|
|
3905
|
+
hasResourceRestrictedToken?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3905
3906
|
};
|
|
3906
3907
|
export declare type AppHostService = {
|
|
3907
3908
|
__typename?: 'AppHostService';
|
|
@@ -18963,6 +18964,7 @@ export declare type ConfluenceSpaceDetailsSpaceOwner = {
|
|
|
18963
18964
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
18964
18965
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
18965
18966
|
ownerType?: Maybe<ConfluenceSpaceOwnerType>;
|
|
18967
|
+
usageType?: Maybe<ConfluenceGroupUsageType>;
|
|
18966
18968
|
};
|
|
18967
18969
|
export declare type ConfluenceSpaceDetailsSpaceOwnerInput = {
|
|
18968
18970
|
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -22404,8 +22406,17 @@ export declare type ConvoAiHomeThreadSource = ConvoAiHomeThreadsFirstPartySource
|
|
|
22404
22406
|
export declare type ConvoAiHomeThreadSuggestedAction = {
|
|
22405
22407
|
__typename?: 'ConvoAiHomeThreadSuggestedAction';
|
|
22406
22408
|
action?: Maybe<ConvoAiHomeThreadSuggestedActionType>;
|
|
22409
|
+
origin?: Maybe<ConvoAiHomeThreadSuggestedActionOriginType>;
|
|
22407
22410
|
source?: Maybe<ConvoAiHomeThreadSource>;
|
|
22408
22411
|
};
|
|
22412
|
+
export declare enum ConvoAiHomeThreadSuggestedActionOriginType {
|
|
22413
|
+
CommentRule = "COMMENT_RULE",
|
|
22414
|
+
ConfluencePageRule = "CONFLUENCE_PAGE_RULE",
|
|
22415
|
+
JiraIssueRule = "JIRA_ISSUE_RULE",
|
|
22416
|
+
Llm = "LLM",
|
|
22417
|
+
LoomVideoRule = "LOOM_VIDEO_RULE",
|
|
22418
|
+
PullRequestRule = "PULL_REQUEST_RULE"
|
|
22419
|
+
}
|
|
22409
22420
|
export declare enum ConvoAiHomeThreadSuggestedActionType {
|
|
22410
22421
|
Delete = "DELETE",
|
|
22411
22422
|
Reply = "REPLY",
|
|
@@ -22864,6 +22875,7 @@ export declare type CreateAppEnvironmentResponse = Payload & {
|
|
|
22864
22875
|
};
|
|
22865
22876
|
export declare type CreateAppInput = {
|
|
22866
22877
|
appFeatures?: InputMaybe<AppFeaturesInput>;
|
|
22878
|
+
billingConsent?: InputMaybe<Scalars['Boolean']['input']>;
|
|
22867
22879
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
22868
22880
|
developerSpaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
22869
22881
|
name: Scalars['String']['input'];
|
|
@@ -26607,6 +26619,12 @@ export declare type DevAiRovoDevIssueViewResponse = {
|
|
|
26607
26619
|
isFeatureEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
26608
26620
|
sessions?: Maybe<DevAiRovoDevSessionConnection>;
|
|
26609
26621
|
};
|
|
26622
|
+
export declare type DevAiRovoDevIssueViewResponseSessionsArgs = {
|
|
26623
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
26624
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
26625
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
26626
|
+
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
26627
|
+
};
|
|
26610
26628
|
export declare enum DevAiRovoDevPrStatus {
|
|
26611
26629
|
Declined = "DECLINED",
|
|
26612
26630
|
Draft = "DRAFT",
|
|
@@ -26922,6 +26940,7 @@ export declare type DevConsoleDeveloperSpace = {
|
|
|
26922
26940
|
publishStatus: DevConsoleDeveloperSpacePublishStatus;
|
|
26923
26941
|
status: Scalars['String']['output'];
|
|
26924
26942
|
type: DevConsoleDeveloperSpaceType;
|
|
26943
|
+
vendorId: Scalars['String']['output'];
|
|
26925
26944
|
version: Scalars['Int']['output'];
|
|
26926
26945
|
versionId: Scalars['Int']['output'];
|
|
26927
26946
|
};
|
|
@@ -26930,6 +26949,7 @@ export declare type DevConsoleDeveloperSpaceDetails = {
|
|
|
26930
26949
|
logo?: Maybe<Scalars['String']['output']>;
|
|
26931
26950
|
name: Scalars['String']['output'];
|
|
26932
26951
|
publishStatus: DevConsoleDeveloperSpacePublishStatus;
|
|
26952
|
+
vendorId: Scalars['String']['output'];
|
|
26933
26953
|
};
|
|
26934
26954
|
export declare type DevConsoleDeveloperSpaceDetailsResult = {
|
|
26935
26955
|
__typename?: 'DevConsoleDeveloperSpaceDetailsResult';
|
|
@@ -26943,21 +26963,13 @@ export declare type DevConsoleDeveloperSpaceMember = {
|
|
|
26943
26963
|
email?: Maybe<Scalars['String']['output']>;
|
|
26944
26964
|
name?: Maybe<Scalars['String']['output']>;
|
|
26945
26965
|
picture?: Maybe<Scalars['String']['output']>;
|
|
26946
|
-
|
|
26947
|
-
export declare type DevConsoleDeveloperSpaceMemberInput = {
|
|
26948
|
-
developerSpaceId: Scalars['String']['input'];
|
|
26949
|
-
memberEmail: Scalars['String']['input'];
|
|
26950
|
-
role: DevConsoleDeveloperSpaceMemberRole;
|
|
26966
|
+
roles?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
26951
26967
|
};
|
|
26952
26968
|
export declare type DevConsoleDeveloperSpaceMemberPayload = Payload & {
|
|
26953
26969
|
__typename?: 'DevConsoleDeveloperSpaceMemberPayload';
|
|
26954
|
-
devSpace?: Maybe<DevConsoleDeveloperSpace>;
|
|
26955
26970
|
errors?: Maybe<Array<MutationError>>;
|
|
26956
26971
|
success: Scalars['Boolean']['output'];
|
|
26957
26972
|
};
|
|
26958
|
-
export declare enum DevConsoleDeveloperSpaceMemberRole {
|
|
26959
|
-
Admin = "ADMIN"
|
|
26960
|
-
}
|
|
26961
26973
|
export declare type DevConsoleDeveloperSpaceMembersResponse = {
|
|
26962
26974
|
__typename?: 'DevConsoleDeveloperSpaceMembersResponse';
|
|
26963
26975
|
errors?: Maybe<Array<QueryError>>;
|
|
@@ -26986,7 +26998,6 @@ export declare enum DevConsoleDeveloperSpacePublishStatus {
|
|
|
26986
26998
|
}
|
|
26987
26999
|
export declare type DevConsoleDeveloperSpaceSettingsPayload = Payload & {
|
|
26988
27000
|
__typename?: 'DevConsoleDeveloperSpaceSettingsPayload';
|
|
26989
|
-
devSpace?: Maybe<DevConsoleDeveloperSpace>;
|
|
26990
27001
|
errors?: Maybe<Array<MutationError>>;
|
|
26991
27002
|
success: Scalars['Boolean']['output'];
|
|
26992
27003
|
};
|
|
@@ -27015,21 +27026,16 @@ export declare type DevConsoleHasConsoleAdminResponse = {
|
|
|
27015
27026
|
export declare type DevConsoleMutation = {
|
|
27016
27027
|
__typename?: 'DevConsoleMutation';
|
|
27017
27028
|
acceptAppBillingConsent: DevConsoleResponsePayload;
|
|
27018
|
-
addDeveloperSpaceMember?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
|
|
27019
27029
|
archiveDeveloperSpace: DevConsoleResponsePayload;
|
|
27020
27030
|
assignDeveloperSpace?: Maybe<DevConsoleAssignDeveloperSpacePayload>;
|
|
27021
27031
|
createDeveloperSpace?: Maybe<DevConsoleDeveloperSpacePayload>;
|
|
27022
|
-
|
|
27023
|
-
updateDeveloperSpaceMember?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
|
|
27032
|
+
updateDeveloperSpaceMemberRoles?: Maybe<DevConsoleDeveloperSpaceMemberPayload>;
|
|
27024
27033
|
updateDeveloperSpaceSettings?: Maybe<DevConsoleDeveloperSpaceSettingsPayload>;
|
|
27025
27034
|
};
|
|
27026
27035
|
export declare type DevConsoleMutationAcceptAppBillingConsentArgs = {
|
|
27027
27036
|
appIds: Array<Scalars['String']['input']>;
|
|
27028
27037
|
developerSpaceId: Scalars['String']['input'];
|
|
27029
27038
|
};
|
|
27030
|
-
export declare type DevConsoleMutationAddDeveloperSpaceMemberArgs = {
|
|
27031
|
-
input: DevConsoleDeveloperSpaceMemberInput;
|
|
27032
|
-
};
|
|
27033
27039
|
export declare type DevConsoleMutationArchiveDeveloperSpaceArgs = {
|
|
27034
27040
|
input: DevConsoleArchiveDeveloperSpaceInput;
|
|
27035
27041
|
};
|
|
@@ -27039,11 +27045,8 @@ export declare type DevConsoleMutationAssignDeveloperSpaceArgs = {
|
|
|
27039
27045
|
export declare type DevConsoleMutationCreateDeveloperSpaceArgs = {
|
|
27040
27046
|
input: DevConsoleCreateDeveloperSpaceInput;
|
|
27041
27047
|
};
|
|
27042
|
-
export declare type
|
|
27043
|
-
input:
|
|
27044
|
-
};
|
|
27045
|
-
export declare type DevConsoleMutationUpdateDeveloperSpaceMemberArgs = {
|
|
27046
|
-
input: DevConsoleUpdateDeveloperSpaceMemberInput;
|
|
27048
|
+
export declare type DevConsoleMutationUpdateDeveloperSpaceMemberRolesArgs = {
|
|
27049
|
+
input: DevConsoleUpdateDeveloperSpaceMemberRolesInput;
|
|
27047
27050
|
};
|
|
27048
27051
|
export declare type DevConsoleMutationUpdateDeveloperSpaceSettingsArgs = {
|
|
27049
27052
|
input: DevConsoleUpdateDeveloperSpaceSettingsInput;
|
|
@@ -27107,10 +27110,6 @@ export declare type DevConsoleQueryHasAnyConsoleAdminArgs = {
|
|
|
27107
27110
|
export declare type DevConsoleQueryTenantContextsArgs = {
|
|
27108
27111
|
ids: Array<Scalars['ID']['input']>;
|
|
27109
27112
|
};
|
|
27110
|
-
export declare type DevConsoleRemoveDeveloperSpaceMemberInput = {
|
|
27111
|
-
developerSpaceId: Scalars['String']['input'];
|
|
27112
|
-
memberId: Scalars['String']['input'];
|
|
27113
|
-
};
|
|
27114
27113
|
export declare enum DevConsoleResource {
|
|
27115
27114
|
FunctionCompute = "FUNCTION_COMPUTE",
|
|
27116
27115
|
KvsRead = "KVS_READ",
|
|
@@ -27191,10 +27190,12 @@ export declare type DevConsoleTransactionAccountResponse = {
|
|
|
27191
27190
|
paymentMethod?: Maybe<DevConsoleTransactionAccountPaymentMethod>;
|
|
27192
27191
|
transactionAccount?: Maybe<DevConsoleTransactionAccountData>;
|
|
27193
27192
|
};
|
|
27194
|
-
export declare type
|
|
27193
|
+
export declare type DevConsoleUpdateDeveloperSpaceMemberRolesInput = {
|
|
27194
|
+
addRoles: Array<Scalars['String']['input']>;
|
|
27195
27195
|
developerSpaceId: Scalars['String']['input'];
|
|
27196
|
-
|
|
27197
|
-
|
|
27196
|
+
memberEmail?: InputMaybe<Scalars['String']['input']>;
|
|
27197
|
+
memberId?: InputMaybe<Scalars['String']['input']>;
|
|
27198
|
+
removeRoles: Array<Scalars['String']['input']>;
|
|
27198
27199
|
};
|
|
27199
27200
|
export declare type DevConsoleUpdateDeveloperSpaceSettingsInput = {
|
|
27200
27201
|
developerSpaceId: Scalars['String']['input'];
|
|
@@ -36987,6 +36988,7 @@ export declare type GraphStore = {
|
|
|
36987
36988
|
userUpdatedIssueBatch?: Maybe<GraphStoreBatchUserUpdatedIssueConnection>;
|
|
36988
36989
|
userUpdatedIssueInverse?: Maybe<GraphStoreSimplifiedUserUpdatedIssueInverseConnection>;
|
|
36989
36990
|
userUpdatedIssueInverseBatch?: Maybe<GraphStoreBatchUserUpdatedIssueConnection>;
|
|
36991
|
+
userViewed3pRemoteLinkInverse?: Maybe<GraphStoreSimplifiedUserViewed3pRemoteLinkInverseConnection>;
|
|
36990
36992
|
userViewedAtlasGoal?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalConnection>;
|
|
36991
36993
|
userViewedAtlasGoalInverse?: Maybe<GraphStoreSimplifiedUserViewedAtlasGoalInverseConnection>;
|
|
36992
36994
|
userViewedAtlasProject?: Maybe<GraphStoreSimplifiedUserViewedAtlasProjectConnection>;
|
|
@@ -42055,6 +42057,13 @@ export declare type GraphStoreUserUpdatedIssueInverseBatchArgs = {
|
|
|
42055
42057
|
ids: Array<Scalars['ID']['input']>;
|
|
42056
42058
|
sort?: InputMaybe<GraphStoreUserUpdatedIssueSortInput>;
|
|
42057
42059
|
};
|
|
42060
|
+
export declare type GraphStoreUserViewed3pRemoteLinkInverseArgs = {
|
|
42061
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
42062
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
42063
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
42064
|
+
id: Scalars['ID']['input'];
|
|
42065
|
+
sort?: InputMaybe<GraphStoreUserViewed3pRemoteLinkSortInput>;
|
|
42066
|
+
};
|
|
42058
42067
|
export declare type GraphStoreUserViewedAtlasGoalArgs = {
|
|
42059
42068
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
42060
42069
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -57718,6 +57727,20 @@ export declare type GraphStoreSimplifiedUserUpdatedIssueInverseEdge = {
|
|
|
57718
57727
|
};
|
|
57719
57728
|
export declare type GraphStoreSimplifiedUserUpdatedIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
57720
57729
|
export declare type GraphStoreSimplifiedUserUpdatedIssueUnion = JiraIssue;
|
|
57730
|
+
export declare type GraphStoreSimplifiedUserViewed3pRemoteLinkInverseConnection = HasPageInfo & {
|
|
57731
|
+
__typename?: 'GraphStoreSimplifiedUserViewed3pRemoteLinkInverseConnection';
|
|
57732
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewed3pRemoteLinkInverseEdge>>>;
|
|
57733
|
+
pageInfo: PageInfo;
|
|
57734
|
+
};
|
|
57735
|
+
export declare type GraphStoreSimplifiedUserViewed3pRemoteLinkInverseEdge = {
|
|
57736
|
+
__typename?: 'GraphStoreSimplifiedUserViewed3pRemoteLinkInverseEdge';
|
|
57737
|
+
createdAt: Scalars['DateTime']['output'];
|
|
57738
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
57739
|
+
id: Scalars['ID']['output'];
|
|
57740
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
57741
|
+
node?: Maybe<GraphStoreSimplifiedUserViewed3pRemoteLinkInverseUnion>;
|
|
57742
|
+
};
|
|
57743
|
+
export declare type GraphStoreSimplifiedUserViewed3pRemoteLinkInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
57721
57744
|
export declare type GraphStoreSimplifiedUserViewedAtlasGoalConnection = HasPageInfo & {
|
|
57722
57745
|
__typename?: 'GraphStoreSimplifiedUserViewedAtlasGoalConnection';
|
|
57723
57746
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedAtlasGoalEdge>>>;
|
|
@@ -59150,6 +59173,9 @@ export declare type GraphStoreUserUpdatedGraphDocumentSortInput = {
|
|
|
59150
59173
|
export declare type GraphStoreUserUpdatedIssueSortInput = {
|
|
59151
59174
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59152
59175
|
};
|
|
59176
|
+
export declare type GraphStoreUserViewed3pRemoteLinkSortInput = {
|
|
59177
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59178
|
+
};
|
|
59153
59179
|
export declare type GraphStoreUserViewedAtlasGoalSortInput = {
|
|
59154
59180
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
59155
59181
|
};
|
|
@@ -70048,6 +70074,7 @@ export declare type JiraHistoryAssigneeFieldValue = {
|
|
|
70048
70074
|
avatarUrl?: Maybe<Scalars['String']['output']>;
|
|
70049
70075
|
displayValue?: Maybe<Scalars['String']['output']>;
|
|
70050
70076
|
formattedValue?: Maybe<Scalars['String']['output']>;
|
|
70077
|
+
user?: Maybe<User>;
|
|
70051
70078
|
value?: Maybe<Scalars['String']['output']>;
|
|
70052
70079
|
};
|
|
70053
70080
|
export declare type JiraHistoryFieldSchema = {
|
|
@@ -70197,6 +70224,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
70197
70224
|
autodevIssueScopingResult?: Maybe<DevAiIssueScopingResult>;
|
|
70198
70225
|
canBeExported?: Maybe<Scalars['Boolean']['output']>;
|
|
70199
70226
|
canCreateSubtask?: Maybe<Scalars['Boolean']['output']>;
|
|
70227
|
+
canDownloadAttachment?: Maybe<Scalars['Boolean']['output']>;
|
|
70200
70228
|
canHaveChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
70201
70229
|
childIssues?: Maybe<JiraChildIssues>;
|
|
70202
70230
|
commandPaletteActions?: Maybe<JiraIssueCommandPaletteActionConnection>;
|
|
@@ -77701,6 +77729,7 @@ export declare type JiraQuery = {
|
|
|
77701
77729
|
jwmViewItems?: Maybe<JiraWorkManagementViewItemConnectionResult>;
|
|
77702
77730
|
labelsFieldOptions?: Maybe<JiraLabelConnection>;
|
|
77703
77731
|
labelsInBoard?: Maybe<JiraLabelConnection>;
|
|
77732
|
+
limitValues?: Maybe<Array<Maybe<JiraResourceUsageMetricLimitValue>>>;
|
|
77704
77733
|
linkedWorkItems?: Maybe<JiraIssueConnection>;
|
|
77705
77734
|
lockedIssueTypeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
77706
77735
|
mediaClientId?: Maybe<Scalars['String']['output']>;
|
|
@@ -78483,6 +78512,10 @@ export declare type JiraQueryLabelsFieldOptionsArgs = {
|
|
|
78483
78512
|
export declare type JiraQueryLabelsInBoardArgs = {
|
|
78484
78513
|
boardId: Scalars['ID']['input'];
|
|
78485
78514
|
};
|
|
78515
|
+
export declare type JiraQueryLimitValuesArgs = {
|
|
78516
|
+
cloudId: Scalars['ID']['input'];
|
|
78517
|
+
filterKeys?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
78518
|
+
};
|
|
78486
78519
|
export declare type JiraQueryLinkedWorkItemsArgs = {
|
|
78487
78520
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
78488
78521
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -79509,6 +79542,11 @@ export declare type JiraResourceUsageMetricEdgeV2 = {
|
|
|
79509
79542
|
cursor: Scalars['String']['output'];
|
|
79510
79543
|
node?: Maybe<JiraResourceUsageMetricV2>;
|
|
79511
79544
|
};
|
|
79545
|
+
export declare type JiraResourceUsageMetricLimitValue = {
|
|
79546
|
+
__typename?: 'JiraResourceUsageMetricLimitValue';
|
|
79547
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
79548
|
+
limitValue?: Maybe<Scalars['Int']['output']>;
|
|
79549
|
+
};
|
|
79512
79550
|
export declare type JiraResourceUsageMetricV2 = {
|
|
79513
79551
|
cleanupValue?: Maybe<Scalars['Long']['output']>;
|
|
79514
79552
|
currentValue?: Maybe<Scalars['Long']['output']>;
|
|
@@ -79573,6 +79611,16 @@ export declare enum JiraResourcesSortDirection {
|
|
|
79573
79611
|
Asc = "ASC",
|
|
79574
79612
|
Desc = "DESC"
|
|
79575
79613
|
}
|
|
79614
|
+
export declare type JiraRestoreCustomFieldsInput = {
|
|
79615
|
+
fieldIds: Array<Scalars['String']['input']>;
|
|
79616
|
+
};
|
|
79617
|
+
export declare type JiraRestoreCustomFieldsPayload = Payload & {
|
|
79618
|
+
__typename?: 'JiraRestoreCustomFieldsPayload';
|
|
79619
|
+
errors?: Maybe<Array<MutationError>>;
|
|
79620
|
+
failedFieldIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
79621
|
+
succeededNodeIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
79622
|
+
success: Scalars['Boolean']['output'];
|
|
79623
|
+
};
|
|
79576
79624
|
export declare type JiraRestoreGlobalCustomFieldsInput = {
|
|
79577
79625
|
fieldIds: Array<Scalars['String']['input']>;
|
|
79578
79626
|
};
|
|
@@ -94847,6 +94895,7 @@ export declare type Mutation = {
|
|
|
94847
94895
|
jira_renameBoardViewStatusColumn?: Maybe<JiraRenameBoardViewStatusColumnPayload>;
|
|
94848
94896
|
jira_reorderBoardViewColumn?: Maybe<JiraReorderBoardViewColumnPayload>;
|
|
94849
94897
|
jira_reorderProjectsSidebarMenuItem?: Maybe<JiraProjectsSidebarMenu>;
|
|
94898
|
+
jira_restoreCustomFields?: Maybe<JiraRestoreCustomFieldsPayload>;
|
|
94850
94899
|
jira_restoreGlobalCustomFields?: Maybe<JiraRestoreGlobalCustomFieldsPayload>;
|
|
94851
94900
|
jira_scheduleTimelineItem?: Maybe<JiraScheduleTimelineItemPayload>;
|
|
94852
94901
|
jira_setBacklogViewAssigneeFilters?: Maybe<JiraSetBacklogViewPayload>;
|
|
@@ -95084,6 +95133,7 @@ export declare type Mutation = {
|
|
|
95084
95133
|
stakeholderComms_createPage?: Maybe<StakeholderCommsPageResponse>;
|
|
95085
95134
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
95086
95135
|
stakeholderComms_createStakeholderGroupAndMembers?: Maybe<StakeholderCommsStakeholderGroupsAndStakeholders>;
|
|
95136
|
+
stakeholderComms_createSubscriber?: Maybe<StakeholderCommsSubscriberResponse>;
|
|
95087
95137
|
stakeholderComms_deleteDraftPage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
95088
95138
|
stakeholderComms_deletePage?: Maybe<StakeholderCommsPageDeleteResponse>;
|
|
95089
95139
|
stakeholderComms_deleteStakeholder?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
@@ -95093,6 +95143,7 @@ export declare type Mutation = {
|
|
|
95093
95143
|
stakeholderComms_removeStakeholderGroups?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
95094
95144
|
stakeholderComms_removeStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
95095
95145
|
stakeholderComms_resendStakeholderInvite?: Maybe<StakeholderCommsResendInviteResponse>;
|
|
95146
|
+
stakeholderComms_unsubscribeSubscriber?: Maybe<StakeholderCommsUnsubscribeSubscriberResponse>;
|
|
95096
95147
|
stakeholderComms_updateDraftPage?: Maybe<StakeholderCommsPageResponse>;
|
|
95097
95148
|
stakeholderComms_updateIncident?: Maybe<StakeholderCommsIncidentResponse>;
|
|
95098
95149
|
stakeholderComms_updatePage?: Maybe<StakeholderCommsPageResponse>;
|
|
@@ -96795,6 +96846,10 @@ export declare type MutationJira_ReorderBoardViewColumnArgs = {
|
|
|
96795
96846
|
export declare type MutationJira_ReorderProjectsSidebarMenuItemArgs = {
|
|
96796
96847
|
input: JiraReorderSidebarMenuItemInput;
|
|
96797
96848
|
};
|
|
96849
|
+
export declare type MutationJira_RestoreCustomFieldsArgs = {
|
|
96850
|
+
cloudId: Scalars['ID']['input'];
|
|
96851
|
+
input: JiraRestoreCustomFieldsInput;
|
|
96852
|
+
};
|
|
96798
96853
|
export declare type MutationJira_RestoreGlobalCustomFieldsArgs = {
|
|
96799
96854
|
cloudId: Scalars['ID']['input'];
|
|
96800
96855
|
input: JiraRestoreGlobalCustomFieldsInput;
|
|
@@ -97520,6 +97575,9 @@ export declare type MutationStakeholderComms_CreateStakeholderGroupAndMembersArg
|
|
|
97520
97575
|
stakeholderGroupInput: StakeholderCommsCreateStakeholderGroupInput;
|
|
97521
97576
|
stakeholders?: InputMaybe<Array<InputMaybe<StakeholderCommsCreateStakeholderInput>>>;
|
|
97522
97577
|
};
|
|
97578
|
+
export declare type MutationStakeholderComms_CreateSubscriberArgs = {
|
|
97579
|
+
subscriptionRequest: StakeholderCommsSubscriptionRequest;
|
|
97580
|
+
};
|
|
97523
97581
|
export declare type MutationStakeholderComms_DeleteDraftPageArgs = {
|
|
97524
97582
|
pageId: Scalars['String']['input'];
|
|
97525
97583
|
};
|
|
@@ -97548,6 +97606,9 @@ export declare type MutationStakeholderComms_RemoveStakeholderMembersArgs = {
|
|
|
97548
97606
|
export declare type MutationStakeholderComms_ResendStakeholderInviteArgs = {
|
|
97549
97607
|
resendInviteInput: StakeholderCommsResendInviteInput;
|
|
97550
97608
|
};
|
|
97609
|
+
export declare type MutationStakeholderComms_UnsubscribeSubscriberArgs = {
|
|
97610
|
+
subscriberId: Scalars['String']['input'];
|
|
97611
|
+
};
|
|
97551
97612
|
export declare type MutationStakeholderComms_UpdateDraftPageArgs = {
|
|
97552
97613
|
page: StakeholderCommsUpdatePageInputType;
|
|
97553
97614
|
};
|
|
@@ -104845,13 +104906,13 @@ export declare type QueryStakeholderComms_GetComponentUptimePercentageArgs = {
|
|
|
104845
104906
|
};
|
|
104846
104907
|
export declare type QueryStakeholderComms_GetComponentWithUptimeByComponentIdArgs = {
|
|
104847
104908
|
componentId: Scalars['String']['input'];
|
|
104848
|
-
endDate
|
|
104849
|
-
startDate
|
|
104909
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
104910
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
104850
104911
|
};
|
|
104851
104912
|
export declare type QueryStakeholderComms_GetComponentsWithUptimeByPageIdArgs = {
|
|
104852
|
-
endDate
|
|
104913
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
104853
104914
|
pageId: Scalars['String']['input'];
|
|
104854
|
-
startDate
|
|
104915
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
104855
104916
|
};
|
|
104856
104917
|
export declare type QueryStakeholderComms_GetComponentsWithUptimeByPageIdV2Args = {
|
|
104857
104918
|
nestedComponentWithUptimeConnectionInput: StakeholderCommsNestedComponentWithUptimeConnectionInput;
|
|
@@ -108003,6 +108064,7 @@ export declare type SearchProductInfo = {
|
|
|
108003
108064
|
};
|
|
108004
108065
|
export declare enum SearchProjectType {
|
|
108005
108066
|
Business = "business",
|
|
108067
|
+
CustomerService = "customer_service",
|
|
108006
108068
|
ProductDiscovery = "product_discovery",
|
|
108007
108069
|
ServiceDesk = "service_desk",
|
|
108008
108070
|
Software = "software"
|
|
@@ -108628,6 +108690,7 @@ export declare type SearchThirdPartyProduct = {
|
|
|
108628
108690
|
connectorSources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
108629
108691
|
containerTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
108630
108692
|
datasourceId?: InputMaybe<Scalars['String']['input']>;
|
|
108693
|
+
entities?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
108631
108694
|
integrationId?: InputMaybe<Scalars['String']['input']>;
|
|
108632
108695
|
linkedEntityGranularity?: InputMaybe<SearchLinkedEntityGranularity>;
|
|
108633
108696
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -129807,12 +129870,12 @@ export declare type StakeholderCommsNestedComponentWithUptimeConnection = {
|
|
|
129807
129870
|
export declare type StakeholderCommsNestedComponentWithUptimeConnectionInput = {
|
|
129808
129871
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
129809
129872
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
129810
|
-
endDate
|
|
129873
|
+
endDate?: InputMaybe<Scalars['String']['input']>;
|
|
129811
129874
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129812
129875
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
129813
129876
|
pageId: Scalars['String']['input'];
|
|
129814
129877
|
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
129815
|
-
startDate
|
|
129878
|
+
startDate?: InputMaybe<Scalars['String']['input']>;
|
|
129816
129879
|
statusFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
129817
129880
|
};
|
|
129818
129881
|
export declare type StakeholderCommsNestedComponentWithUptimeEdge = {
|
|
@@ -130235,6 +130298,60 @@ export declare enum StakeholderCommsStakeholderType {
|
|
|
130235
130298
|
Internal = "INTERNAL",
|
|
130236
130299
|
Team = "TEAM"
|
|
130237
130300
|
}
|
|
130301
|
+
export declare type StakeholderCommsSubscriber = {
|
|
130302
|
+
__typename?: 'StakeholderCommsSubscriber';
|
|
130303
|
+
additionalInformation?: Maybe<Array<Scalars['String']['output']>>;
|
|
130304
|
+
componentIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
130305
|
+
confirmationCode?: Maybe<Scalars['String']['output']>;
|
|
130306
|
+
confirmedAt?: Maybe<Scalars['String']['output']>;
|
|
130307
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
130308
|
+
deactivatedAt?: Maybe<Scalars['String']['output']>;
|
|
130309
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
130310
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
130311
|
+
itemId?: Maybe<Scalars['String']['output']>;
|
|
130312
|
+
lastRemindedAt?: Maybe<Scalars['String']['output']>;
|
|
130313
|
+
orphanedAt?: Maybe<Scalars['String']['output']>;
|
|
130314
|
+
pageAccessUserId?: Maybe<Scalars['String']['output']>;
|
|
130315
|
+
phoneCountry?: Maybe<Scalars['String']['output']>;
|
|
130316
|
+
phoneNumber?: Maybe<Scalars['String']['output']>;
|
|
130317
|
+
phoneNumberDisplay?: Maybe<Scalars['String']['output']>;
|
|
130318
|
+
quarantinedAt?: Maybe<Scalars['String']['output']>;
|
|
130319
|
+
shortCodeSubscriptionId?: Maybe<Scalars['String']['output']>;
|
|
130320
|
+
skipConfirmation?: Maybe<Scalars['Boolean']['output']>;
|
|
130321
|
+
slackChannelId?: Maybe<Scalars['String']['output']>;
|
|
130322
|
+
slackUserId?: Maybe<Scalars['String']['output']>;
|
|
130323
|
+
subscriptionType?: Maybe<Scalars['String']['output']>;
|
|
130324
|
+
type?: Maybe<StakeholderCommsSubscriberItemType>;
|
|
130325
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
130326
|
+
webhookEndpoint?: Maybe<Scalars['String']['output']>;
|
|
130327
|
+
};
|
|
130328
|
+
export declare enum StakeholderCommsSubscriberItemType {
|
|
130329
|
+
ComponentSubscriber = "COMPONENT_SUBSCRIBER",
|
|
130330
|
+
IncidentSubscriber = "INCIDENT_SUBSCRIBER",
|
|
130331
|
+
PageSubscriber = "PAGE_SUBSCRIBER"
|
|
130332
|
+
}
|
|
130333
|
+
export declare type StakeholderCommsSubscriberResponse = {
|
|
130334
|
+
__typename?: 'StakeholderCommsSubscriberResponse';
|
|
130335
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
130336
|
+
subscriber?: Maybe<StakeholderCommsSubscriber>;
|
|
130337
|
+
};
|
|
130338
|
+
export declare enum StakeholderCommsSubscriptionChannel {
|
|
130339
|
+
Email = "EMAIL",
|
|
130340
|
+
Slack = "SLACK",
|
|
130341
|
+
Sms = "SMS",
|
|
130342
|
+
Webhook = "WEBHOOK"
|
|
130343
|
+
}
|
|
130344
|
+
export declare type StakeholderCommsSubscriptionData = {
|
|
130345
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
130346
|
+
phoneCountry?: InputMaybe<Scalars['String']['input']>;
|
|
130347
|
+
phoneNumber?: InputMaybe<Scalars['String']['input']>;
|
|
130348
|
+
};
|
|
130349
|
+
export declare type StakeholderCommsSubscriptionRequest = {
|
|
130350
|
+
itemId: Scalars['String']['input'];
|
|
130351
|
+
itemType: StakeholderCommsSubscriberItemType;
|
|
130352
|
+
subscriptionData?: InputMaybe<StakeholderCommsSubscriptionData>;
|
|
130353
|
+
subscriptionType: StakeholderCommsSubscriptionChannel;
|
|
130354
|
+
};
|
|
130238
130355
|
export declare type StakeholderCommsUnifiedSearchInput = {
|
|
130239
130356
|
filters?: InputMaybe<Array<InputMaybe<StakeholderCommsSearchFilterType>>>;
|
|
130240
130357
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -130246,6 +130363,11 @@ export declare type StakeholderCommsUnifiedSearchResults = {
|
|
|
130246
130363
|
error?: Maybe<Scalars['String']['output']>;
|
|
130247
130364
|
results?: Maybe<Array<Maybe<StakeholderCommsSearchResult>>>;
|
|
130248
130365
|
};
|
|
130366
|
+
export declare type StakeholderCommsUnsubscribeSubscriberResponse = {
|
|
130367
|
+
__typename?: 'StakeholderCommsUnsubscribeSubscriberResponse';
|
|
130368
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
130369
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
130370
|
+
};
|
|
130249
130371
|
export declare type StakeholderCommsUpdatePageInputType = {
|
|
130250
130372
|
activityScore?: InputMaybe<Scalars['Int']['input']>;
|
|
130251
130373
|
allowPageSubscribers?: InputMaybe<Scalars['Boolean']['input']>;
|