@forge/cli-shared 6.5.3-next.1 → 6.5.3
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 +17 -0
- package/out/graphql/graphql-types.d.ts +116 -16
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +22 -8
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.5.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- cda6bc5: Add new tunnel warning messages
|
|
8
|
+
- Updated dependencies [7ec49ae]
|
|
9
|
+
- Updated dependencies [5293f4a]
|
|
10
|
+
- Updated dependencies [f93c4d3]
|
|
11
|
+
- @forge/manifest@8.5.0
|
|
12
|
+
|
|
13
|
+
## 6.5.3-next.2
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [5293f4a]
|
|
18
|
+
- @forge/manifest@8.5.0-next.2
|
|
19
|
+
|
|
3
20
|
## 6.5.3-next.1
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -709,12 +709,14 @@ export declare type AgentAiContextPanelResponse = {
|
|
|
709
709
|
suggestedEscalation?: Maybe<Scalars['String']['output']>;
|
|
710
710
|
summary?: Maybe<Scalars['String']['output']>;
|
|
711
711
|
};
|
|
712
|
+
export declare type AgentAiContextPanelResult = AgentAiContextPanelResponse | QueryError;
|
|
712
713
|
export declare type AgentAiIssueSummary = {
|
|
713
714
|
__typename?: 'AgentAIIssueSummary';
|
|
714
715
|
createdAt?: Maybe<Scalars['Long']['output']>;
|
|
715
716
|
id?: Maybe<Scalars['String']['output']>;
|
|
716
717
|
summary?: Maybe<AgentAiSummary>;
|
|
717
718
|
};
|
|
719
|
+
export declare type AgentAiIssueSummaryResult = AgentAiIssueSummary | QueryError;
|
|
718
720
|
export declare type AgentAiSuggestAction = {
|
|
719
721
|
__typename?: 'AgentAISuggestAction';
|
|
720
722
|
content?: Maybe<AgentAiSuggestedActionContent>;
|
|
@@ -855,6 +857,7 @@ export declare type Anonymous = Person & {
|
|
|
855
857
|
links?: Maybe<LinksContextBase>;
|
|
856
858
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
857
859
|
permissionType?: Maybe<SitePermissionType>;
|
|
860
|
+
profilePicture?: Maybe<Icon>;
|
|
858
861
|
type?: Maybe<Scalars['String']['output']>;
|
|
859
862
|
};
|
|
860
863
|
export declare type AnonymousWithPermissionsInput = {
|
|
@@ -2651,6 +2654,13 @@ export declare type BulkMutationErrorExtension = MutationErrorExtension & {
|
|
|
2651
2654
|
id: Scalars['ID']['output'];
|
|
2652
2655
|
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
2653
2656
|
};
|
|
2657
|
+
export declare type BulkPermittedResponse = {
|
|
2658
|
+
__typename?: 'BulkPermittedResponse';
|
|
2659
|
+
permissionId?: Maybe<Scalars['String']['output']>;
|
|
2660
|
+
permitted?: Maybe<Scalars['Boolean']['output']>;
|
|
2661
|
+
principalId?: Maybe<Scalars['String']['output']>;
|
|
2662
|
+
resourceId?: Maybe<Scalars['String']['output']>;
|
|
2663
|
+
};
|
|
2654
2664
|
export declare type BulkUpdateCompassComponentsInput = {
|
|
2655
2665
|
ids: Array<Scalars['ID']['input']>;
|
|
2656
2666
|
state?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14629,6 +14639,7 @@ export declare type ConfluencePerson = Person & {
|
|
|
14629
14639
|
email?: Maybe<Scalars['String']['output']>;
|
|
14630
14640
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
14631
14641
|
permissionType?: Maybe<SitePermissionType>;
|
|
14642
|
+
profilePicture?: Maybe<Icon>;
|
|
14632
14643
|
publicName?: Maybe<Scalars['String']['output']>;
|
|
14633
14644
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
14634
14645
|
type?: Maybe<Scalars['String']['output']>;
|
|
@@ -14951,6 +14962,10 @@ export declare type ConfluenceStorage = {
|
|
|
14951
14962
|
gracePeriodEndDate?: Maybe<Scalars['String']['output']>;
|
|
14952
14963
|
isStorageEnforcementGracePeriodComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
14953
14964
|
};
|
|
14965
|
+
export declare type ConfluenceTeamPresence = {
|
|
14966
|
+
__typename?: 'ConfluenceTeamPresence';
|
|
14967
|
+
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
14968
|
+
};
|
|
14954
14969
|
export declare type ConfluenceTeamPresenceSpaceSettings = {
|
|
14955
14970
|
__typename?: 'ConfluenceTeamPresenceSpaceSettings';
|
|
14956
14971
|
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
@@ -14980,6 +14995,14 @@ export declare type ConfluenceTrashPagePayload = Payload & {
|
|
|
14980
14995
|
errors?: Maybe<Array<MutationError>>;
|
|
14981
14996
|
success: Scalars['Boolean']['output'];
|
|
14982
14997
|
};
|
|
14998
|
+
export declare type ConfluenceUnwatchSubCalendarInput = {
|
|
14999
|
+
subCalendarId: Scalars['ID']['input'];
|
|
15000
|
+
};
|
|
15001
|
+
export declare type ConfluenceUnwatchSubCalendarPayload = {
|
|
15002
|
+
__typename?: 'ConfluenceUnwatchSubCalendarPayload';
|
|
15003
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
15004
|
+
success: Scalars['Boolean']['output'];
|
|
15005
|
+
};
|
|
14983
15006
|
export declare type ConfluenceUpdateCommentInput = {
|
|
14984
15007
|
body: ConfluenceContentBodyInput;
|
|
14985
15008
|
id: Scalars['ID']['input'];
|
|
@@ -15647,6 +15670,14 @@ export declare type ConfluenceValidateSpaceKeyResponse = {
|
|
|
15647
15670
|
generatedUniqueKey?: Maybe<Scalars['String']['output']>;
|
|
15648
15671
|
isValid: Scalars['Boolean']['output'];
|
|
15649
15672
|
};
|
|
15673
|
+
export declare type ConfluenceWatchSubCalendarInput = {
|
|
15674
|
+
subCalendarId: Scalars['ID']['input'];
|
|
15675
|
+
};
|
|
15676
|
+
export declare type ConfluenceWatchSubCalendarPayload = {
|
|
15677
|
+
__typename?: 'ConfluenceWatchSubCalendarPayload';
|
|
15678
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
15679
|
+
success: Scalars['Boolean']['output'];
|
|
15680
|
+
};
|
|
15650
15681
|
export declare type ConfluenceWhiteboard = {
|
|
15651
15682
|
__typename?: 'ConfluenceWhiteboard';
|
|
15652
15683
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
@@ -19717,7 +19748,7 @@ export declare type DeleteAppResponse = Payload & {
|
|
|
19717
19748
|
success: Scalars['Boolean']['output'];
|
|
19718
19749
|
};
|
|
19719
19750
|
export declare type DeleteAppStoredCustomEntityMutationInput = {
|
|
19720
|
-
contextAri
|
|
19751
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
19721
19752
|
entityName: Scalars['String']['input'];
|
|
19722
19753
|
key: Scalars['ID']['input'];
|
|
19723
19754
|
};
|
|
@@ -19727,7 +19758,7 @@ export declare type DeleteAppStoredCustomEntityPayload = Payload & {
|
|
|
19727
19758
|
success: Scalars['Boolean']['output'];
|
|
19728
19759
|
};
|
|
19729
19760
|
export declare type DeleteAppStoredEntityMutationInput = {
|
|
19730
|
-
contextAri
|
|
19761
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
19731
19762
|
encrypted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19732
19763
|
key: Scalars['ID']['input'];
|
|
19733
19764
|
};
|
|
@@ -26433,6 +26464,7 @@ export declare type GraphQlUserInfo = {
|
|
|
26433
26464
|
__typename?: 'GraphQLUserInfo';
|
|
26434
26465
|
accountId: Scalars['String']['output'];
|
|
26435
26466
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
26467
|
+
profilePicture?: Maybe<Icon>;
|
|
26436
26468
|
type: ConfluenceUserType;
|
|
26437
26469
|
};
|
|
26438
26470
|
export declare type GraphQueryMetadataProjectAssociatedBuildInput = {
|
|
@@ -48769,6 +48801,7 @@ export declare enum JiraBoardType {
|
|
|
48769
48801
|
}
|
|
48770
48802
|
export declare type JiraBoardView = {
|
|
48771
48803
|
__typename?: 'JiraBoardView';
|
|
48804
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
48772
48805
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
48773
48806
|
columns?: Maybe<JiraBoardViewColumnConnection>;
|
|
48774
48807
|
completedIssueSearchCutOffInDays?: Maybe<Scalars['Int']['output']>;
|
|
@@ -48776,6 +48809,8 @@ export declare type JiraBoardView = {
|
|
|
48776
48809
|
filterConfig?: Maybe<JiraViewFilterConfig>;
|
|
48777
48810
|
groupByConfig?: Maybe<JiraViewGroupByConfig>;
|
|
48778
48811
|
id: Scalars['ID']['output'];
|
|
48812
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
48813
|
+
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
48779
48814
|
};
|
|
48780
48815
|
export declare type JiraBoardViewCardOptionsArgs = {
|
|
48781
48816
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -48864,6 +48899,14 @@ export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & {
|
|
|
48864
48899
|
id: Scalars['ID']['output'];
|
|
48865
48900
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
48866
48901
|
};
|
|
48902
|
+
export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
48903
|
+
__typename?: 'JiraBoardViewSyntheticFieldCardOption';
|
|
48904
|
+
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
48905
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
48906
|
+
id: Scalars['ID']['output'];
|
|
48907
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
48908
|
+
type?: Maybe<JiraSyntheticFieldCardOptionType>;
|
|
48909
|
+
};
|
|
48867
48910
|
export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
48868
48911
|
__typename?: 'JiraBooleanField';
|
|
48869
48912
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -61855,6 +61898,10 @@ export declare type JiraSuggestedIssueInput = {
|
|
|
61855
61898
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
61856
61899
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
61857
61900
|
};
|
|
61901
|
+
export declare enum JiraSyntheticFieldCardOptionType {
|
|
61902
|
+
CardCover = "CARD_COVER",
|
|
61903
|
+
Pages = "PAGES"
|
|
61904
|
+
}
|
|
61858
61905
|
export declare type JiraSystemFilter = JiraFilter & Node & {
|
|
61859
61906
|
__typename?: 'JiraSystemFilter';
|
|
61860
61907
|
filterId: Scalars['String']['output'];
|
|
@@ -65404,6 +65451,7 @@ export declare type KnownUser = Person & {
|
|
|
65404
65451
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
65405
65452
|
permissionType?: Maybe<SitePermissionType>;
|
|
65406
65453
|
personalSpace?: Maybe<Space>;
|
|
65454
|
+
profilePicture?: Maybe<Icon>;
|
|
65407
65455
|
publicName?: Maybe<Scalars['String']['output']>;
|
|
65408
65456
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
65409
65457
|
type?: Maybe<Scalars['String']['output']>;
|
|
@@ -68053,6 +68101,7 @@ export declare type MercuryCreateCommentPayload = Payload & {
|
|
|
68053
68101
|
};
|
|
68054
68102
|
export declare type MercuryCreateFocusAreaInput = {
|
|
68055
68103
|
cloudId: Scalars['ID']['input'];
|
|
68104
|
+
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
68056
68105
|
focusAreaTypeId: Scalars['ID']['input'];
|
|
68057
68106
|
name: Scalars['String']['input'];
|
|
68058
68107
|
parentFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -69672,8 +69721,10 @@ export declare type Mutation = {
|
|
|
69672
69721
|
confluence_deleteSubCalendarHiddenEvents?: Maybe<ConfluenceDeleteSubCalendarHiddenEventsPayload>;
|
|
69673
69722
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
69674
69723
|
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
69724
|
+
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
69675
69725
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
69676
69726
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
69727
|
+
confluence_watchSubCalendar?: Maybe<ConfluenceWatchSubCalendarPayload>;
|
|
69677
69728
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
69678
69729
|
connectionManager_createOAuthConnectionForJiraProject?: Maybe<ConnectionManagerCreateOAuthConnectionForJiraProjectPayload>;
|
|
69679
69730
|
connectionManager_deleteApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload>;
|
|
@@ -70525,6 +70576,10 @@ export declare type MutationConfluence_InviteUsersArgs = {
|
|
|
70525
70576
|
cloudId: Scalars['ID']['input'];
|
|
70526
70577
|
input: ConfluenceInviteUserInput;
|
|
70527
70578
|
};
|
|
70579
|
+
export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
70580
|
+
cloudId: Scalars['ID']['input'];
|
|
70581
|
+
input: ConfluenceUnwatchSubCalendarInput;
|
|
70582
|
+
};
|
|
70528
70583
|
export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
70529
70584
|
cloudId: Scalars['ID']['input'];
|
|
70530
70585
|
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
@@ -70533,6 +70588,10 @@ export declare type MutationConfluence_UpdateTeamPresenceSpaceSettingsArgs = {
|
|
|
70533
70588
|
cloudId: Scalars['ID']['input'];
|
|
70534
70589
|
input: ConfluenceUpdateTeamPresenceSpaceSettingsInput;
|
|
70535
70590
|
};
|
|
70591
|
+
export declare type MutationConfluence_WatchSubCalendarArgs = {
|
|
70592
|
+
cloudId: Scalars['ID']['input'];
|
|
70593
|
+
input: ConfluenceWatchSubCalendarInput;
|
|
70594
|
+
};
|
|
70536
70595
|
export declare type MutationConnectionManager_CreateApiTokenConnectionForJiraProjectArgs = {
|
|
70537
70596
|
createApiTokenConnectionInput?: InputMaybe<ConnectionManagerCreateApiTokenConnectionInput>;
|
|
70538
70597
|
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -72909,6 +72968,7 @@ export declare type Person = {
|
|
|
72909
72968
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
72910
72969
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
72911
72970
|
permissionType?: Maybe<SitePermissionType>;
|
|
72971
|
+
profilePicture?: Maybe<Icon>;
|
|
72912
72972
|
type?: Maybe<Scalars['String']['output']>;
|
|
72913
72973
|
};
|
|
72914
72974
|
export declare type PersonEdge = {
|
|
@@ -73927,8 +73987,8 @@ export declare type Query = {
|
|
|
73927
73987
|
adminAnnouncementBannerSettings?: Maybe<Array<Maybe<ConfluenceAdminAnnouncementBannerSetting>>>;
|
|
73928
73988
|
adminAnnouncementBannerSettingsByCriteria?: Maybe<AdminAnnouncementBannerSettingConnection>;
|
|
73929
73989
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
73930
|
-
agentAI_contextPanel?: Maybe<
|
|
73931
|
-
agentAI_summarizeIssue?: Maybe<
|
|
73990
|
+
agentAI_contextPanel?: Maybe<AgentAiContextPanelResult>;
|
|
73991
|
+
agentAI_summarizeIssue?: Maybe<AgentAiIssueSummaryResult>;
|
|
73932
73992
|
allIndividualSpaces?: Maybe<SpaceInfoConnection>;
|
|
73933
73993
|
allTemplates?: Maybe<PaginatedTemplateInfoList>;
|
|
73934
73994
|
allUpdatesFeed?: Maybe<PaginatedAllUpdatesFeed>;
|
|
@@ -73959,6 +74019,7 @@ export declare type Query = {
|
|
|
73959
74019
|
bitbucketRepositoriesAvailableToLinkWithNewDevOpsService?: Maybe<BitbucketRepositoryIdConnection>;
|
|
73960
74020
|
blockedAccessRestrictions?: Maybe<BlockedAccessRestrictions>;
|
|
73961
74021
|
boardScope?: Maybe<BoardScope>;
|
|
74022
|
+
bulkPermitted?: Maybe<Array<Maybe<BulkPermittedResponse>>>;
|
|
73962
74023
|
canSplitIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
73963
74024
|
canvasToken?: Maybe<CanvasToken>;
|
|
73964
74025
|
catchupEditMetadataForContent?: Maybe<CatchupEditMetadataForContent>;
|
|
@@ -74201,6 +74262,7 @@ export declare type Query = {
|
|
|
74201
74262
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
74202
74263
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
74203
74264
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
74265
|
+
confluence_teamPresence?: Maybe<ConfluenceTeamPresence>;
|
|
74204
74266
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
74205
74267
|
confluence_template?: Maybe<ContentTemplate>;
|
|
74206
74268
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
@@ -74431,6 +74493,7 @@ export declare type Query = {
|
|
|
74431
74493
|
partnerEarlyAccess?: Maybe<PeapQueryApi>;
|
|
74432
74494
|
paywallContentToDisable?: Maybe<PaywallContentSingle>;
|
|
74433
74495
|
paywallStatus?: Maybe<PaywallStatus>;
|
|
74496
|
+
permitted?: Maybe<Scalars['Boolean']['output']>;
|
|
74434
74497
|
permsReportDownloadLinkForTask?: Maybe<PermsReportDownloadLink>;
|
|
74435
74498
|
playbook_jiraPlaybook?: Maybe<JiraPlaybookQueryPayload>;
|
|
74436
74499
|
playbook_jiraPlaybookInstancesForIssue?: Maybe<JiraPlaybookInstanceConnection>;
|
|
@@ -74683,7 +74746,7 @@ export declare type QueryAppStorage_SqlDatabaseArgs = {
|
|
|
74683
74746
|
input: AppStorageSqlDatabaseInput;
|
|
74684
74747
|
};
|
|
74685
74748
|
export declare type QueryAppStoredCustomEntitiesArgs = {
|
|
74686
|
-
contextAri
|
|
74749
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
74687
74750
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
74688
74751
|
entityName: Scalars['String']['input'];
|
|
74689
74752
|
filters?: InputMaybe<AppStoredCustomEntityFilters>;
|
|
@@ -74694,24 +74757,24 @@ export declare type QueryAppStoredCustomEntitiesArgs = {
|
|
|
74694
74757
|
sort?: InputMaybe<SortOrder>;
|
|
74695
74758
|
};
|
|
74696
74759
|
export declare type QueryAppStoredCustomEntityArgs = {
|
|
74697
|
-
contextAri
|
|
74760
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
74698
74761
|
entityName: Scalars['String']['input'];
|
|
74699
74762
|
key: Scalars['ID']['input'];
|
|
74700
74763
|
};
|
|
74701
74764
|
export declare type QueryAppStoredEntitiesArgs = {
|
|
74702
74765
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74703
|
-
contextAri
|
|
74766
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
74704
74767
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74705
74768
|
where?: InputMaybe<Array<AppStoredEntityFilter>>;
|
|
74706
74769
|
};
|
|
74707
74770
|
export declare type QueryAppStoredEntitiesForCleanupArgs = {
|
|
74708
74771
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74709
|
-
contextAri
|
|
74772
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
74710
74773
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74711
74774
|
where?: InputMaybe<Array<AppStoredEntityFilter>>;
|
|
74712
74775
|
};
|
|
74713
74776
|
export declare type QueryAppStoredEntityArgs = {
|
|
74714
|
-
contextAri
|
|
74777
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
74715
74778
|
encrypted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
74716
74779
|
key: Scalars['ID']['input'];
|
|
74717
74780
|
};
|
|
@@ -74743,6 +74806,12 @@ export declare type QueryBoardScopeArgs = {
|
|
|
74743
74806
|
boardId: Scalars['ID']['input'];
|
|
74744
74807
|
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
74745
74808
|
};
|
|
74809
|
+
export declare type QueryBulkPermittedArgs = {
|
|
74810
|
+
dontRequirePrincipalsInSite?: InputMaybe<Array<InputMaybe<Scalars['Boolean']['input']>>>;
|
|
74811
|
+
permissionIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
74812
|
+
principalIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
74813
|
+
resourceIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
74814
|
+
};
|
|
74746
74815
|
export declare type QueryCanSplitIssueArgs = {
|
|
74747
74816
|
boardId: Scalars['ID']['input'];
|
|
74748
74817
|
cardId: Scalars['ID']['input'];
|
|
@@ -75784,6 +75853,10 @@ export declare type QueryConfluence_SearchUserArgs = {
|
|
|
75784
75853
|
export declare type QueryConfluence_StorageArgs = {
|
|
75785
75854
|
cloudId: Scalars['ID']['input'];
|
|
75786
75855
|
};
|
|
75856
|
+
export declare type QueryConfluence_TeamPresenceArgs = {
|
|
75857
|
+
cloudId: Scalars['ID']['input'];
|
|
75858
|
+
spaceId: Scalars['Long']['input'];
|
|
75859
|
+
};
|
|
75787
75860
|
export declare type QueryConfluence_TeamPresenceSpaceSettingsArgs = {
|
|
75788
75861
|
cloudId: Scalars['ID']['input'];
|
|
75789
75862
|
spaceId: Scalars['Long']['input'];
|
|
@@ -76592,6 +76665,12 @@ export declare type QueryPaywallContentToDisableArgs = {
|
|
|
76592
76665
|
export declare type QueryPaywallStatusArgs = {
|
|
76593
76666
|
id: Scalars['ID']['input'];
|
|
76594
76667
|
};
|
|
76668
|
+
export declare type QueryPermittedArgs = {
|
|
76669
|
+
dontRequirePrincipalInSite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
76670
|
+
permissionId?: InputMaybe<Scalars['String']['input']>;
|
|
76671
|
+
principalId?: InputMaybe<Scalars['String']['input']>;
|
|
76672
|
+
resourceId?: InputMaybe<Scalars['String']['input']>;
|
|
76673
|
+
};
|
|
76595
76674
|
export declare type QueryPermsReportDownloadLinkForTaskArgs = {
|
|
76596
76675
|
id: Scalars['ID']['input'];
|
|
76597
76676
|
};
|
|
@@ -79875,7 +79954,7 @@ export declare type SetAppEnvironmentVariablePayload = Payload & {
|
|
|
79875
79954
|
success: Scalars['Boolean']['output'];
|
|
79876
79955
|
};
|
|
79877
79956
|
export declare type SetAppStoredCustomEntityMutationInput = {
|
|
79878
|
-
contextAri
|
|
79957
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
79879
79958
|
entityName: Scalars['String']['input'];
|
|
79880
79959
|
key: Scalars['ID']['input'];
|
|
79881
79960
|
value: Scalars['JSON']['input'];
|
|
@@ -79886,7 +79965,7 @@ export declare type SetAppStoredCustomEntityPayload = Payload & {
|
|
|
79886
79965
|
success: Scalars['Boolean']['output'];
|
|
79887
79966
|
};
|
|
79888
79967
|
export declare type SetAppStoredEntityMutationInput = {
|
|
79889
|
-
contextAri
|
|
79968
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
79890
79969
|
encrypted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
79891
79970
|
key: Scalars['ID']['input'];
|
|
79892
79971
|
value: Scalars['JSON']['input'];
|
|
@@ -82046,6 +82125,7 @@ export declare type Space = {
|
|
|
82046
82125
|
homepageId?: Maybe<Scalars['ID']['output']>;
|
|
82047
82126
|
homepageV2?: Maybe<Content>;
|
|
82048
82127
|
homepageWebSections?: Maybe<Array<Maybe<WebSection>>>;
|
|
82128
|
+
icon?: Maybe<Icon>;
|
|
82049
82129
|
id?: Maybe<Scalars['ID']['output']>;
|
|
82050
82130
|
identifiers?: Maybe<GlobalSpaceIdentifier>;
|
|
82051
82131
|
isBlogToggledOffByPTL: Scalars['Boolean']['output'];
|
|
@@ -82269,6 +82349,7 @@ export declare type SpaceOrContent = {
|
|
|
82269
82349
|
history?: Maybe<History>;
|
|
82270
82350
|
homepage?: Maybe<Content>;
|
|
82271
82351
|
homepageId?: Maybe<Scalars['ID']['output']>;
|
|
82352
|
+
icon?: Maybe<Icon>;
|
|
82272
82353
|
id?: Maybe<Scalars['ID']['output']>;
|
|
82273
82354
|
identifiers?: Maybe<GlobalSpaceIdentifier>;
|
|
82274
82355
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -82457,6 +82538,7 @@ export declare type SpaceRoleGuestPrincipal = SpaceRolePrincipal & {
|
|
|
82457
82538
|
displayName: Scalars['String']['output'];
|
|
82458
82539
|
email?: Maybe<Scalars['String']['output']>;
|
|
82459
82540
|
principalId: Scalars['ID']['output'];
|
|
82541
|
+
profilePicture?: Maybe<Icon>;
|
|
82460
82542
|
};
|
|
82461
82543
|
export declare type SpaceRolePageInfo = {
|
|
82462
82544
|
__typename?: 'SpaceRolePageInfo';
|
|
@@ -82477,6 +82559,7 @@ export declare type SpaceRoleUserPrincipal = SpaceRolePrincipal & {
|
|
|
82477
82559
|
displayName: Scalars['String']['output'];
|
|
82478
82560
|
email?: Maybe<Scalars['String']['output']>;
|
|
82479
82561
|
principalId: Scalars['ID']['output'];
|
|
82562
|
+
profilePicture?: Maybe<Icon>;
|
|
82480
82563
|
};
|
|
82481
82564
|
export declare type SpaceSettings = {
|
|
82482
82565
|
__typename?: 'SpaceSettings';
|
|
@@ -82495,6 +82578,7 @@ export declare type SpaceSidebarLink = {
|
|
|
82495
82578
|
__typename?: 'SpaceSidebarLink';
|
|
82496
82579
|
canHide?: Maybe<Scalars['Boolean']['output']>;
|
|
82497
82580
|
hidden: Scalars['Boolean']['output'];
|
|
82581
|
+
icon?: Maybe<Icon>;
|
|
82498
82582
|
iconClass?: Maybe<Scalars['String']['output']>;
|
|
82499
82583
|
id: Scalars['ID']['output'];
|
|
82500
82584
|
linkIdentifier?: Maybe<Scalars['String']['output']>;
|
|
@@ -82558,6 +82642,7 @@ export declare enum SpaceViewsPersistenceOption {
|
|
|
82558
82642
|
export declare type SpaceWithExemption = {
|
|
82559
82643
|
__typename?: 'SpaceWithExemption';
|
|
82560
82644
|
alias?: Maybe<Scalars['String']['output']>;
|
|
82645
|
+
icon?: Maybe<Icon>;
|
|
82561
82646
|
id?: Maybe<Scalars['Long']['output']>;
|
|
82562
82647
|
key?: Maybe<Scalars['String']['output']>;
|
|
82563
82648
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -83695,6 +83780,7 @@ export declare type TestingSubscriptionOnTestingActivityItemUpdateEnrichJiraArgs
|
|
|
83695
83780
|
export declare type Theme = {
|
|
83696
83781
|
__typename?: 'Theme';
|
|
83697
83782
|
description?: Maybe<Scalars['String']['output']>;
|
|
83783
|
+
icon?: Maybe<Icon>;
|
|
83698
83784
|
links?: Maybe<LinksContextBase>;
|
|
83699
83785
|
name?: Maybe<Scalars['String']['output']>;
|
|
83700
83786
|
themeKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -85511,6 +85597,9 @@ export declare type TrelloCustomFieldOptionValue = {
|
|
|
85511
85597
|
__typename?: 'TrelloCustomFieldOptionValue';
|
|
85512
85598
|
text?: Maybe<Scalars['String']['output']>;
|
|
85513
85599
|
};
|
|
85600
|
+
export declare enum TrelloDataSourceHandler {
|
|
85601
|
+
LinkingPlatform = "LINKING_PLATFORM"
|
|
85602
|
+
}
|
|
85514
85603
|
export declare type TrelloDeletePlannerCalendarEventInput = {
|
|
85515
85604
|
plannerCalendarEventId: Scalars['ID']['input'];
|
|
85516
85605
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -85641,6 +85730,7 @@ export declare type TrelloList = Node & {
|
|
|
85641
85730
|
closed: Scalars['Boolean']['output'];
|
|
85642
85731
|
color?: Maybe<Scalars['String']['output']>;
|
|
85643
85732
|
creationMethod: Scalars['String']['output'];
|
|
85733
|
+
datasource?: Maybe<TrelloListDataSource>;
|
|
85644
85734
|
id: Scalars['ID']['output'];
|
|
85645
85735
|
limits?: Maybe<TrelloListLimits>;
|
|
85646
85736
|
name: Scalars['String']['output'];
|
|
@@ -85648,6 +85738,7 @@ export declare type TrelloList = Node & {
|
|
|
85648
85738
|
position: Scalars['Float']['output'];
|
|
85649
85739
|
softLimit?: Maybe<Scalars['Int']['output']>;
|
|
85650
85740
|
suggestedCardName?: Maybe<Scalars['String']['output']>;
|
|
85741
|
+
type?: Maybe<TrelloListType>;
|
|
85651
85742
|
viewer?: Maybe<TrelloListViewer>;
|
|
85652
85743
|
};
|
|
85653
85744
|
export declare type TrelloListCardsArgs = {
|
|
@@ -85669,6 +85760,12 @@ export declare type TrelloListConnection = {
|
|
|
85669
85760
|
nodes?: Maybe<Array<TrelloList>>;
|
|
85670
85761
|
pageInfo: PageInfo;
|
|
85671
85762
|
};
|
|
85763
|
+
export declare type TrelloListDataSource = {
|
|
85764
|
+
__typename?: 'TrelloListDataSource';
|
|
85765
|
+
filter: Scalars['Boolean']['output'];
|
|
85766
|
+
handler: TrelloDataSourceHandler;
|
|
85767
|
+
link: Scalars['URL']['output'];
|
|
85768
|
+
};
|
|
85672
85769
|
export declare type TrelloListEdge = {
|
|
85673
85770
|
__typename?: 'TrelloListEdge';
|
|
85674
85771
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -85681,6 +85778,9 @@ export declare type TrelloListLimits = {
|
|
|
85681
85778
|
__typename?: 'TrelloListLimits';
|
|
85682
85779
|
cards?: Maybe<TrelloListCardLimits>;
|
|
85683
85780
|
};
|
|
85781
|
+
export declare enum TrelloListType {
|
|
85782
|
+
Datasource = "DATASOURCE"
|
|
85783
|
+
}
|
|
85684
85784
|
export declare type TrelloListUpdated = {
|
|
85685
85785
|
__typename?: 'TrelloListUpdated';
|
|
85686
85786
|
cards?: Maybe<TrelloCardUpdatedConnection>;
|
|
@@ -85898,6 +85998,7 @@ export declare type TrelloPlannerCalendarAccount = Node & {
|
|
|
85898
85998
|
accountType?: Maybe<TrelloSupportedPlannerProviders>;
|
|
85899
85999
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
85900
86000
|
enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
86001
|
+
hasRequiredScopes?: Maybe<Scalars['Boolean']['output']>;
|
|
85901
86002
|
id: Scalars['ID']['output'];
|
|
85902
86003
|
outboundAuthId?: Maybe<Scalars['ID']['output']>;
|
|
85903
86004
|
providerCalendars?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
@@ -86279,6 +86380,7 @@ export declare type TrelloScaleProps = {
|
|
|
86279
86380
|
export declare type TrelloSticker = {
|
|
86280
86381
|
__typename?: 'TrelloSticker';
|
|
86281
86382
|
image?: Maybe<Scalars['String']['output']>;
|
|
86383
|
+
imageScaled?: Maybe<Array<TrelloImagePreview>>;
|
|
86282
86384
|
left?: Maybe<Scalars['Float']['output']>;
|
|
86283
86385
|
objectId: Scalars['ID']['output'];
|
|
86284
86386
|
rotate?: Maybe<Scalars['Float']['output']>;
|
|
@@ -87194,6 +87296,7 @@ export declare type UnknownUser = Person & {
|
|
|
87194
87296
|
email?: Maybe<Scalars['String']['output']>;
|
|
87195
87297
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
87196
87298
|
permissionType?: Maybe<SitePermissionType>;
|
|
87299
|
+
profilePicture?: Maybe<Icon>;
|
|
87197
87300
|
publicName?: Maybe<Scalars['String']['output']>;
|
|
87198
87301
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
87199
87302
|
type?: Maybe<Scalars['String']['output']>;
|
|
@@ -88112,6 +88215,7 @@ export declare type UserWithRestrictions = {
|
|
|
88112
88215
|
hasSpaceViewPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
88113
88216
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
88114
88217
|
permissionType?: Maybe<SitePermissionType>;
|
|
88218
|
+
profilePicture?: Maybe<Icon>;
|
|
88115
88219
|
publicName?: Maybe<Scalars['String']['output']>;
|
|
88116
88220
|
restrictingContent?: Maybe<Content>;
|
|
88117
88221
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
@@ -88759,6 +88863,7 @@ export declare type WebItem = {
|
|
|
88759
88863
|
accessKey?: Maybe<Scalars['String']['output']>;
|
|
88760
88864
|
completeKey?: Maybe<Scalars['String']['output']>;
|
|
88761
88865
|
hasCondition?: Maybe<Scalars['Boolean']['output']>;
|
|
88866
|
+
icon?: Maybe<Icon>;
|
|
88762
88867
|
id?: Maybe<Scalars['String']['output']>;
|
|
88763
88868
|
label?: Maybe<Scalars['String']['output']>;
|
|
88764
88869
|
moduleKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -88962,7 +89067,6 @@ export declare type WorkSuggestionsByProjectsResponse = {
|
|
|
88962
89067
|
__typename?: 'WorkSuggestionsByProjectsResponse';
|
|
88963
89068
|
autoDevJobsSuggestions?: Maybe<Array<WorkSuggestionsAutoDevJobTask>>;
|
|
88964
89069
|
blockingIssueSuggestions?: Maybe<Array<WorkSuggestionsBlockingIssueTask>>;
|
|
88965
|
-
commonSuggestions?: Maybe<WorkSuggestionsConnection>;
|
|
88966
89070
|
compassSuggestions?: Maybe<Array<WorkSuggestionsCompassTask>>;
|
|
88967
89071
|
draftPRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestDraftTask>>;
|
|
88968
89072
|
inactivePRSuggestions?: Maybe<Array<WorkSuggestionsPullRequestInactiveTask>>;
|
|
@@ -88976,10 +89080,6 @@ export declare type WorkSuggestionsByProjectsResponseAutoDevJobsSuggestionsArgs
|
|
|
88976
89080
|
export declare type WorkSuggestionsByProjectsResponseBlockingIssueSuggestionsArgs = {
|
|
88977
89081
|
input?: InputMaybe<WorkSuggestionsInput>;
|
|
88978
89082
|
};
|
|
88979
|
-
export declare type WorkSuggestionsByProjectsResponseCommonSuggestionsArgs = {
|
|
88980
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
88981
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88982
|
-
};
|
|
88983
89083
|
export declare type WorkSuggestionsByProjectsResponseCompassSuggestionsArgs = {
|
|
88984
89084
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88985
89085
|
};
|