@forge/cli-shared 6.5.3-next.1 → 6.5.3-next.2
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
|
@@ -855,6 +855,7 @@ export declare type Anonymous = Person & {
|
|
|
855
855
|
links?: Maybe<LinksContextBase>;
|
|
856
856
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
857
857
|
permissionType?: Maybe<SitePermissionType>;
|
|
858
|
+
profilePicture?: Maybe<Icon>;
|
|
858
859
|
type?: Maybe<Scalars['String']['output']>;
|
|
859
860
|
};
|
|
860
861
|
export declare type AnonymousWithPermissionsInput = {
|
|
@@ -14629,6 +14630,7 @@ export declare type ConfluencePerson = Person & {
|
|
|
14629
14630
|
email?: Maybe<Scalars['String']['output']>;
|
|
14630
14631
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
14631
14632
|
permissionType?: Maybe<SitePermissionType>;
|
|
14633
|
+
profilePicture?: Maybe<Icon>;
|
|
14632
14634
|
publicName?: Maybe<Scalars['String']['output']>;
|
|
14633
14635
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
14634
14636
|
type?: Maybe<Scalars['String']['output']>;
|
|
@@ -14951,6 +14953,10 @@ export declare type ConfluenceStorage = {
|
|
|
14951
14953
|
gracePeriodEndDate?: Maybe<Scalars['String']['output']>;
|
|
14952
14954
|
isStorageEnforcementGracePeriodComplete?: Maybe<Scalars['Boolean']['output']>;
|
|
14953
14955
|
};
|
|
14956
|
+
export declare type ConfluenceTeamPresence = {
|
|
14957
|
+
__typename?: 'ConfluenceTeamPresence';
|
|
14958
|
+
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
14959
|
+
};
|
|
14954
14960
|
export declare type ConfluenceTeamPresenceSpaceSettings = {
|
|
14955
14961
|
__typename?: 'ConfluenceTeamPresenceSpaceSettings';
|
|
14956
14962
|
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
@@ -14980,6 +14986,14 @@ export declare type ConfluenceTrashPagePayload = Payload & {
|
|
|
14980
14986
|
errors?: Maybe<Array<MutationError>>;
|
|
14981
14987
|
success: Scalars['Boolean']['output'];
|
|
14982
14988
|
};
|
|
14989
|
+
export declare type ConfluenceUnwatchSubCalendarInput = {
|
|
14990
|
+
subCalendarId: Scalars['ID']['input'];
|
|
14991
|
+
};
|
|
14992
|
+
export declare type ConfluenceUnwatchSubCalendarPayload = {
|
|
14993
|
+
__typename?: 'ConfluenceUnwatchSubCalendarPayload';
|
|
14994
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
14995
|
+
success: Scalars['Boolean']['output'];
|
|
14996
|
+
};
|
|
14983
14997
|
export declare type ConfluenceUpdateCommentInput = {
|
|
14984
14998
|
body: ConfluenceContentBodyInput;
|
|
14985
14999
|
id: Scalars['ID']['input'];
|
|
@@ -15647,6 +15661,14 @@ export declare type ConfluenceValidateSpaceKeyResponse = {
|
|
|
15647
15661
|
generatedUniqueKey?: Maybe<Scalars['String']['output']>;
|
|
15648
15662
|
isValid: Scalars['Boolean']['output'];
|
|
15649
15663
|
};
|
|
15664
|
+
export declare type ConfluenceWatchSubCalendarInput = {
|
|
15665
|
+
subCalendarId: Scalars['ID']['input'];
|
|
15666
|
+
};
|
|
15667
|
+
export declare type ConfluenceWatchSubCalendarPayload = {
|
|
15668
|
+
__typename?: 'ConfluenceWatchSubCalendarPayload';
|
|
15669
|
+
errors?: Maybe<Array<ConfluenceConflictedMutationError>>;
|
|
15670
|
+
success: Scalars['Boolean']['output'];
|
|
15671
|
+
};
|
|
15650
15672
|
export declare type ConfluenceWhiteboard = {
|
|
15651
15673
|
__typename?: 'ConfluenceWhiteboard';
|
|
15652
15674
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
@@ -19717,7 +19739,7 @@ export declare type DeleteAppResponse = Payload & {
|
|
|
19717
19739
|
success: Scalars['Boolean']['output'];
|
|
19718
19740
|
};
|
|
19719
19741
|
export declare type DeleteAppStoredCustomEntityMutationInput = {
|
|
19720
|
-
contextAri
|
|
19742
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
19721
19743
|
entityName: Scalars['String']['input'];
|
|
19722
19744
|
key: Scalars['ID']['input'];
|
|
19723
19745
|
};
|
|
@@ -19727,7 +19749,7 @@ export declare type DeleteAppStoredCustomEntityPayload = Payload & {
|
|
|
19727
19749
|
success: Scalars['Boolean']['output'];
|
|
19728
19750
|
};
|
|
19729
19751
|
export declare type DeleteAppStoredEntityMutationInput = {
|
|
19730
|
-
contextAri
|
|
19752
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
19731
19753
|
encrypted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
19732
19754
|
key: Scalars['ID']['input'];
|
|
19733
19755
|
};
|
|
@@ -26433,6 +26455,7 @@ export declare type GraphQlUserInfo = {
|
|
|
26433
26455
|
__typename?: 'GraphQLUserInfo';
|
|
26434
26456
|
accountId: Scalars['String']['output'];
|
|
26435
26457
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
26458
|
+
profilePicture?: Maybe<Icon>;
|
|
26436
26459
|
type: ConfluenceUserType;
|
|
26437
26460
|
};
|
|
26438
26461
|
export declare type GraphQueryMetadataProjectAssociatedBuildInput = {
|
|
@@ -48769,6 +48792,7 @@ export declare enum JiraBoardType {
|
|
|
48769
48792
|
}
|
|
48770
48793
|
export declare type JiraBoardView = {
|
|
48771
48794
|
__typename?: 'JiraBoardView';
|
|
48795
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
48772
48796
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
48773
48797
|
columns?: Maybe<JiraBoardViewColumnConnection>;
|
|
48774
48798
|
completedIssueSearchCutOffInDays?: Maybe<Scalars['Int']['output']>;
|
|
@@ -48776,6 +48800,8 @@ export declare type JiraBoardView = {
|
|
|
48776
48800
|
filterConfig?: Maybe<JiraViewFilterConfig>;
|
|
48777
48801
|
groupByConfig?: Maybe<JiraViewGroupByConfig>;
|
|
48778
48802
|
id: Scalars['ID']['output'];
|
|
48803
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
48804
|
+
selectedWorkflowId?: Maybe<Scalars['ID']['output']>;
|
|
48779
48805
|
};
|
|
48780
48806
|
export declare type JiraBoardViewCardOptionsArgs = {
|
|
48781
48807
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -48864,6 +48890,14 @@ export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & {
|
|
|
48864
48890
|
id: Scalars['ID']['output'];
|
|
48865
48891
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
48866
48892
|
};
|
|
48893
|
+
export declare type JiraBoardViewSyntheticFieldCardOption = JiraBoardViewCardOption & {
|
|
48894
|
+
__typename?: 'JiraBoardViewSyntheticFieldCardOption';
|
|
48895
|
+
canToggle?: Maybe<Scalars['Boolean']['output']>;
|
|
48896
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
48897
|
+
id: Scalars['ID']['output'];
|
|
48898
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
48899
|
+
type?: Maybe<JiraSyntheticFieldCardOptionType>;
|
|
48900
|
+
};
|
|
48867
48901
|
export declare type JiraBooleanField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
48868
48902
|
__typename?: 'JiraBooleanField';
|
|
48869
48903
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -61855,6 +61889,10 @@ export declare type JiraSuggestedIssueInput = {
|
|
|
61855
61889
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
61856
61890
|
summary?: InputMaybe<Scalars['String']['input']>;
|
|
61857
61891
|
};
|
|
61892
|
+
export declare enum JiraSyntheticFieldCardOptionType {
|
|
61893
|
+
CardCover = "CARD_COVER",
|
|
61894
|
+
Pages = "PAGES"
|
|
61895
|
+
}
|
|
61858
61896
|
export declare type JiraSystemFilter = JiraFilter & Node & {
|
|
61859
61897
|
__typename?: 'JiraSystemFilter';
|
|
61860
61898
|
filterId: Scalars['String']['output'];
|
|
@@ -65404,6 +65442,7 @@ export declare type KnownUser = Person & {
|
|
|
65404
65442
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
65405
65443
|
permissionType?: Maybe<SitePermissionType>;
|
|
65406
65444
|
personalSpace?: Maybe<Space>;
|
|
65445
|
+
profilePicture?: Maybe<Icon>;
|
|
65407
65446
|
publicName?: Maybe<Scalars['String']['output']>;
|
|
65408
65447
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
65409
65448
|
type?: Maybe<Scalars['String']['output']>;
|
|
@@ -68053,6 +68092,7 @@ export declare type MercuryCreateCommentPayload = Payload & {
|
|
|
68053
68092
|
};
|
|
68054
68093
|
export declare type MercuryCreateFocusAreaInput = {
|
|
68055
68094
|
cloudId: Scalars['ID']['input'];
|
|
68095
|
+
externalId?: InputMaybe<Scalars['String']['input']>;
|
|
68056
68096
|
focusAreaTypeId: Scalars['ID']['input'];
|
|
68057
68097
|
name: Scalars['String']['input'];
|
|
68058
68098
|
parentFocusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -69672,8 +69712,10 @@ export declare type Mutation = {
|
|
|
69672
69712
|
confluence_deleteSubCalendarHiddenEvents?: Maybe<ConfluenceDeleteSubCalendarHiddenEventsPayload>;
|
|
69673
69713
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
69674
69714
|
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
69715
|
+
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
69675
69716
|
confluence_updateSubCalendarHiddenEvents?: Maybe<ConfluenceUpdateSubCalendarHiddenEventsPayload>;
|
|
69676
69717
|
confluence_updateTeamPresenceSpaceSettings?: Maybe<ConfluenceUpdateTeamPresenceSpaceSettingsPayload>;
|
|
69718
|
+
confluence_watchSubCalendar?: Maybe<ConfluenceWatchSubCalendarPayload>;
|
|
69677
69719
|
connectionManager_createApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerCreateApiTokenConnectionForJiraProjectPayload>;
|
|
69678
69720
|
connectionManager_createOAuthConnectionForJiraProject?: Maybe<ConnectionManagerCreateOAuthConnectionForJiraProjectPayload>;
|
|
69679
69721
|
connectionManager_deleteApiTokenConnectionForJiraProject?: Maybe<ConnectionManagerDeleteApiTokenConnectionForJiraProjectPayload>;
|
|
@@ -70525,6 +70567,10 @@ export declare type MutationConfluence_InviteUsersArgs = {
|
|
|
70525
70567
|
cloudId: Scalars['ID']['input'];
|
|
70526
70568
|
input: ConfluenceInviteUserInput;
|
|
70527
70569
|
};
|
|
70570
|
+
export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
70571
|
+
cloudId: Scalars['ID']['input'];
|
|
70572
|
+
input: ConfluenceUnwatchSubCalendarInput;
|
|
70573
|
+
};
|
|
70528
70574
|
export declare type MutationConfluence_UpdateSubCalendarHiddenEventsArgs = {
|
|
70529
70575
|
cloudId: Scalars['ID']['input'];
|
|
70530
70576
|
input: Array<ConfluenceUpdateSubCalendarHiddenEventsInput>;
|
|
@@ -70533,6 +70579,10 @@ export declare type MutationConfluence_UpdateTeamPresenceSpaceSettingsArgs = {
|
|
|
70533
70579
|
cloudId: Scalars['ID']['input'];
|
|
70534
70580
|
input: ConfluenceUpdateTeamPresenceSpaceSettingsInput;
|
|
70535
70581
|
};
|
|
70582
|
+
export declare type MutationConfluence_WatchSubCalendarArgs = {
|
|
70583
|
+
cloudId: Scalars['ID']['input'];
|
|
70584
|
+
input: ConfluenceWatchSubCalendarInput;
|
|
70585
|
+
};
|
|
70536
70586
|
export declare type MutationConnectionManager_CreateApiTokenConnectionForJiraProjectArgs = {
|
|
70537
70587
|
createApiTokenConnectionInput?: InputMaybe<ConnectionManagerCreateApiTokenConnectionInput>;
|
|
70538
70588
|
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -72909,6 +72959,7 @@ export declare type Person = {
|
|
|
72909
72959
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
72910
72960
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
72911
72961
|
permissionType?: Maybe<SitePermissionType>;
|
|
72962
|
+
profilePicture?: Maybe<Icon>;
|
|
72912
72963
|
type?: Maybe<Scalars['String']['output']>;
|
|
72913
72964
|
};
|
|
72914
72965
|
export declare type PersonEdge = {
|
|
@@ -74201,6 +74252,7 @@ export declare type Query = {
|
|
|
74201
74252
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
74202
74253
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
74203
74254
|
confluence_storage?: Maybe<ConfluenceStorage>;
|
|
74255
|
+
confluence_teamPresence?: Maybe<ConfluenceTeamPresence>;
|
|
74204
74256
|
confluence_teamPresenceSpaceSettings?: Maybe<ConfluenceTeamPresenceSpaceSettings>;
|
|
74205
74257
|
confluence_template?: Maybe<ContentTemplate>;
|
|
74206
74258
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
@@ -74683,7 +74735,7 @@ export declare type QueryAppStorage_SqlDatabaseArgs = {
|
|
|
74683
74735
|
input: AppStorageSqlDatabaseInput;
|
|
74684
74736
|
};
|
|
74685
74737
|
export declare type QueryAppStoredCustomEntitiesArgs = {
|
|
74686
|
-
contextAri
|
|
74738
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
74687
74739
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
74688
74740
|
entityName: Scalars['String']['input'];
|
|
74689
74741
|
filters?: InputMaybe<AppStoredCustomEntityFilters>;
|
|
@@ -74694,24 +74746,24 @@ export declare type QueryAppStoredCustomEntitiesArgs = {
|
|
|
74694
74746
|
sort?: InputMaybe<SortOrder>;
|
|
74695
74747
|
};
|
|
74696
74748
|
export declare type QueryAppStoredCustomEntityArgs = {
|
|
74697
|
-
contextAri
|
|
74749
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
74698
74750
|
entityName: Scalars['String']['input'];
|
|
74699
74751
|
key: Scalars['ID']['input'];
|
|
74700
74752
|
};
|
|
74701
74753
|
export declare type QueryAppStoredEntitiesArgs = {
|
|
74702
74754
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74703
|
-
contextAri
|
|
74755
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
74704
74756
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74705
74757
|
where?: InputMaybe<Array<AppStoredEntityFilter>>;
|
|
74706
74758
|
};
|
|
74707
74759
|
export declare type QueryAppStoredEntitiesForCleanupArgs = {
|
|
74708
74760
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
74709
|
-
contextAri
|
|
74761
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
74710
74762
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
74711
74763
|
where?: InputMaybe<Array<AppStoredEntityFilter>>;
|
|
74712
74764
|
};
|
|
74713
74765
|
export declare type QueryAppStoredEntityArgs = {
|
|
74714
|
-
contextAri
|
|
74766
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
74715
74767
|
encrypted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
74716
74768
|
key: Scalars['ID']['input'];
|
|
74717
74769
|
};
|
|
@@ -75784,6 +75836,10 @@ export declare type QueryConfluence_SearchUserArgs = {
|
|
|
75784
75836
|
export declare type QueryConfluence_StorageArgs = {
|
|
75785
75837
|
cloudId: Scalars['ID']['input'];
|
|
75786
75838
|
};
|
|
75839
|
+
export declare type QueryConfluence_TeamPresenceArgs = {
|
|
75840
|
+
cloudId: Scalars['ID']['input'];
|
|
75841
|
+
spaceId: Scalars['Long']['input'];
|
|
75842
|
+
};
|
|
75787
75843
|
export declare type QueryConfluence_TeamPresenceSpaceSettingsArgs = {
|
|
75788
75844
|
cloudId: Scalars['ID']['input'];
|
|
75789
75845
|
spaceId: Scalars['Long']['input'];
|
|
@@ -79875,7 +79931,7 @@ export declare type SetAppEnvironmentVariablePayload = Payload & {
|
|
|
79875
79931
|
success: Scalars['Boolean']['output'];
|
|
79876
79932
|
};
|
|
79877
79933
|
export declare type SetAppStoredCustomEntityMutationInput = {
|
|
79878
|
-
contextAri
|
|
79934
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
79879
79935
|
entityName: Scalars['String']['input'];
|
|
79880
79936
|
key: Scalars['ID']['input'];
|
|
79881
79937
|
value: Scalars['JSON']['input'];
|
|
@@ -79886,7 +79942,7 @@ export declare type SetAppStoredCustomEntityPayload = Payload & {
|
|
|
79886
79942
|
success: Scalars['Boolean']['output'];
|
|
79887
79943
|
};
|
|
79888
79944
|
export declare type SetAppStoredEntityMutationInput = {
|
|
79889
|
-
contextAri
|
|
79945
|
+
contextAri?: InputMaybe<Scalars['ID']['input']>;
|
|
79890
79946
|
encrypted?: InputMaybe<Scalars['Boolean']['input']>;
|
|
79891
79947
|
key: Scalars['ID']['input'];
|
|
79892
79948
|
value: Scalars['JSON']['input'];
|
|
@@ -82046,6 +82102,7 @@ export declare type Space = {
|
|
|
82046
82102
|
homepageId?: Maybe<Scalars['ID']['output']>;
|
|
82047
82103
|
homepageV2?: Maybe<Content>;
|
|
82048
82104
|
homepageWebSections?: Maybe<Array<Maybe<WebSection>>>;
|
|
82105
|
+
icon?: Maybe<Icon>;
|
|
82049
82106
|
id?: Maybe<Scalars['ID']['output']>;
|
|
82050
82107
|
identifiers?: Maybe<GlobalSpaceIdentifier>;
|
|
82051
82108
|
isBlogToggledOffByPTL: Scalars['Boolean']['output'];
|
|
@@ -82269,6 +82326,7 @@ export declare type SpaceOrContent = {
|
|
|
82269
82326
|
history?: Maybe<History>;
|
|
82270
82327
|
homepage?: Maybe<Content>;
|
|
82271
82328
|
homepageId?: Maybe<Scalars['ID']['output']>;
|
|
82329
|
+
icon?: Maybe<Icon>;
|
|
82272
82330
|
id?: Maybe<Scalars['ID']['output']>;
|
|
82273
82331
|
identifiers?: Maybe<GlobalSpaceIdentifier>;
|
|
82274
82332
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -82457,6 +82515,7 @@ export declare type SpaceRoleGuestPrincipal = SpaceRolePrincipal & {
|
|
|
82457
82515
|
displayName: Scalars['String']['output'];
|
|
82458
82516
|
email?: Maybe<Scalars['String']['output']>;
|
|
82459
82517
|
principalId: Scalars['ID']['output'];
|
|
82518
|
+
profilePicture?: Maybe<Icon>;
|
|
82460
82519
|
};
|
|
82461
82520
|
export declare type SpaceRolePageInfo = {
|
|
82462
82521
|
__typename?: 'SpaceRolePageInfo';
|
|
@@ -82477,6 +82536,7 @@ export declare type SpaceRoleUserPrincipal = SpaceRolePrincipal & {
|
|
|
82477
82536
|
displayName: Scalars['String']['output'];
|
|
82478
82537
|
email?: Maybe<Scalars['String']['output']>;
|
|
82479
82538
|
principalId: Scalars['ID']['output'];
|
|
82539
|
+
profilePicture?: Maybe<Icon>;
|
|
82480
82540
|
};
|
|
82481
82541
|
export declare type SpaceSettings = {
|
|
82482
82542
|
__typename?: 'SpaceSettings';
|
|
@@ -82495,6 +82555,7 @@ export declare type SpaceSidebarLink = {
|
|
|
82495
82555
|
__typename?: 'SpaceSidebarLink';
|
|
82496
82556
|
canHide?: Maybe<Scalars['Boolean']['output']>;
|
|
82497
82557
|
hidden: Scalars['Boolean']['output'];
|
|
82558
|
+
icon?: Maybe<Icon>;
|
|
82498
82559
|
iconClass?: Maybe<Scalars['String']['output']>;
|
|
82499
82560
|
id: Scalars['ID']['output'];
|
|
82500
82561
|
linkIdentifier?: Maybe<Scalars['String']['output']>;
|
|
@@ -82558,6 +82619,7 @@ export declare enum SpaceViewsPersistenceOption {
|
|
|
82558
82619
|
export declare type SpaceWithExemption = {
|
|
82559
82620
|
__typename?: 'SpaceWithExemption';
|
|
82560
82621
|
alias?: Maybe<Scalars['String']['output']>;
|
|
82622
|
+
icon?: Maybe<Icon>;
|
|
82561
82623
|
id?: Maybe<Scalars['Long']['output']>;
|
|
82562
82624
|
key?: Maybe<Scalars['String']['output']>;
|
|
82563
82625
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -83695,6 +83757,7 @@ export declare type TestingSubscriptionOnTestingActivityItemUpdateEnrichJiraArgs
|
|
|
83695
83757
|
export declare type Theme = {
|
|
83696
83758
|
__typename?: 'Theme';
|
|
83697
83759
|
description?: Maybe<Scalars['String']['output']>;
|
|
83760
|
+
icon?: Maybe<Icon>;
|
|
83698
83761
|
links?: Maybe<LinksContextBase>;
|
|
83699
83762
|
name?: Maybe<Scalars['String']['output']>;
|
|
83700
83763
|
themeKey?: Maybe<Scalars['String']['output']>;
|
|
@@ -85511,6 +85574,9 @@ export declare type TrelloCustomFieldOptionValue = {
|
|
|
85511
85574
|
__typename?: 'TrelloCustomFieldOptionValue';
|
|
85512
85575
|
text?: Maybe<Scalars['String']['output']>;
|
|
85513
85576
|
};
|
|
85577
|
+
export declare enum TrelloDataSourceHandler {
|
|
85578
|
+
LinkingPlatform = "LINKING_PLATFORM"
|
|
85579
|
+
}
|
|
85514
85580
|
export declare type TrelloDeletePlannerCalendarEventInput = {
|
|
85515
85581
|
plannerCalendarEventId: Scalars['ID']['input'];
|
|
85516
85582
|
plannerCalendarId: Scalars['ID']['input'];
|
|
@@ -85641,6 +85707,7 @@ export declare type TrelloList = Node & {
|
|
|
85641
85707
|
closed: Scalars['Boolean']['output'];
|
|
85642
85708
|
color?: Maybe<Scalars['String']['output']>;
|
|
85643
85709
|
creationMethod: Scalars['String']['output'];
|
|
85710
|
+
datasource?: Maybe<TrelloListDataSource>;
|
|
85644
85711
|
id: Scalars['ID']['output'];
|
|
85645
85712
|
limits?: Maybe<TrelloListLimits>;
|
|
85646
85713
|
name: Scalars['String']['output'];
|
|
@@ -85648,6 +85715,7 @@ export declare type TrelloList = Node & {
|
|
|
85648
85715
|
position: Scalars['Float']['output'];
|
|
85649
85716
|
softLimit?: Maybe<Scalars['Int']['output']>;
|
|
85650
85717
|
suggestedCardName?: Maybe<Scalars['String']['output']>;
|
|
85718
|
+
type?: Maybe<TrelloListType>;
|
|
85651
85719
|
viewer?: Maybe<TrelloListViewer>;
|
|
85652
85720
|
};
|
|
85653
85721
|
export declare type TrelloListCardsArgs = {
|
|
@@ -85669,6 +85737,12 @@ export declare type TrelloListConnection = {
|
|
|
85669
85737
|
nodes?: Maybe<Array<TrelloList>>;
|
|
85670
85738
|
pageInfo: PageInfo;
|
|
85671
85739
|
};
|
|
85740
|
+
export declare type TrelloListDataSource = {
|
|
85741
|
+
__typename?: 'TrelloListDataSource';
|
|
85742
|
+
filter: Scalars['Boolean']['output'];
|
|
85743
|
+
handler: TrelloDataSourceHandler;
|
|
85744
|
+
link: Scalars['URL']['output'];
|
|
85745
|
+
};
|
|
85672
85746
|
export declare type TrelloListEdge = {
|
|
85673
85747
|
__typename?: 'TrelloListEdge';
|
|
85674
85748
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -85681,6 +85755,9 @@ export declare type TrelloListLimits = {
|
|
|
85681
85755
|
__typename?: 'TrelloListLimits';
|
|
85682
85756
|
cards?: Maybe<TrelloListCardLimits>;
|
|
85683
85757
|
};
|
|
85758
|
+
export declare enum TrelloListType {
|
|
85759
|
+
Datasource = "DATASOURCE"
|
|
85760
|
+
}
|
|
85684
85761
|
export declare type TrelloListUpdated = {
|
|
85685
85762
|
__typename?: 'TrelloListUpdated';
|
|
85686
85763
|
cards?: Maybe<TrelloCardUpdatedConnection>;
|
|
@@ -85898,6 +85975,7 @@ export declare type TrelloPlannerCalendarAccount = Node & {
|
|
|
85898
85975
|
accountType?: Maybe<TrelloSupportedPlannerProviders>;
|
|
85899
85976
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
85900
85977
|
enabledCalendars?: Maybe<TrelloPlannerCalendarConnection>;
|
|
85978
|
+
hasRequiredScopes?: Maybe<Scalars['Boolean']['output']>;
|
|
85901
85979
|
id: Scalars['ID']['output'];
|
|
85902
85980
|
outboundAuthId?: Maybe<Scalars['ID']['output']>;
|
|
85903
85981
|
providerCalendars?: Maybe<TrelloPlannerProviderCalendarConnection>;
|
|
@@ -86279,6 +86357,7 @@ export declare type TrelloScaleProps = {
|
|
|
86279
86357
|
export declare type TrelloSticker = {
|
|
86280
86358
|
__typename?: 'TrelloSticker';
|
|
86281
86359
|
image?: Maybe<Scalars['String']['output']>;
|
|
86360
|
+
imageScaled?: Maybe<Array<TrelloImagePreview>>;
|
|
86282
86361
|
left?: Maybe<Scalars['Float']['output']>;
|
|
86283
86362
|
objectId: Scalars['ID']['output'];
|
|
86284
86363
|
rotate?: Maybe<Scalars['Float']['output']>;
|
|
@@ -87194,6 +87273,7 @@ export declare type UnknownUser = Person & {
|
|
|
87194
87273
|
email?: Maybe<Scalars['String']['output']>;
|
|
87195
87274
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
87196
87275
|
permissionType?: Maybe<SitePermissionType>;
|
|
87276
|
+
profilePicture?: Maybe<Icon>;
|
|
87197
87277
|
publicName?: Maybe<Scalars['String']['output']>;
|
|
87198
87278
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
87199
87279
|
type?: Maybe<Scalars['String']['output']>;
|
|
@@ -88112,6 +88192,7 @@ export declare type UserWithRestrictions = {
|
|
|
88112
88192
|
hasSpaceViewPermission?: Maybe<Scalars['Boolean']['output']>;
|
|
88113
88193
|
operations?: Maybe<Array<Maybe<OperationCheckResult>>>;
|
|
88114
88194
|
permissionType?: Maybe<SitePermissionType>;
|
|
88195
|
+
profilePicture?: Maybe<Icon>;
|
|
88115
88196
|
publicName?: Maybe<Scalars['String']['output']>;
|
|
88116
88197
|
restrictingContent?: Maybe<Content>;
|
|
88117
88198
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
@@ -88759,6 +88840,7 @@ export declare type WebItem = {
|
|
|
88759
88840
|
accessKey?: Maybe<Scalars['String']['output']>;
|
|
88760
88841
|
completeKey?: Maybe<Scalars['String']['output']>;
|
|
88761
88842
|
hasCondition?: Maybe<Scalars['Boolean']['output']>;
|
|
88843
|
+
icon?: Maybe<Icon>;
|
|
88762
88844
|
id?: Maybe<Scalars['String']['output']>;
|
|
88763
88845
|
label?: Maybe<Scalars['String']['output']>;
|
|
88764
88846
|
moduleKey?: Maybe<Scalars['String']['output']>;
|