@forge/cli-shared 8.5.0-next.3 → 8.5.0-next.3-experimental-5ae8c1c
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 +572 -17
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +94 -27
- package/package.json +2 -2
|
@@ -1780,6 +1780,24 @@ export declare type AdminUnitConnection = {
|
|
|
1780
1780
|
pageInfo: PageInfo;
|
|
1781
1781
|
totalCount: Scalars['Int']['output'];
|
|
1782
1782
|
};
|
|
1783
|
+
export declare type AdminUnitCreateInput = {
|
|
1784
|
+
name: Scalars['String']['input'];
|
|
1785
|
+
};
|
|
1786
|
+
export declare type AdminUnitCreatePayload = {
|
|
1787
|
+
__typename?: 'AdminUnitCreatePayload';
|
|
1788
|
+
errors?: Maybe<Array<MutationError>>;
|
|
1789
|
+
requestId: Scalars['ID']['output'];
|
|
1790
|
+
success: Scalars['Boolean']['output'];
|
|
1791
|
+
};
|
|
1792
|
+
export declare type AdminUnitCreateStatus = {
|
|
1793
|
+
__typename?: 'AdminUnitCreateStatus';
|
|
1794
|
+
status: AdminUnitCreateStatusEnum;
|
|
1795
|
+
};
|
|
1796
|
+
export declare enum AdminUnitCreateStatusEnum {
|
|
1797
|
+
Failed = "FAILED",
|
|
1798
|
+
InProgress = "IN_PROGRESS",
|
|
1799
|
+
Success = "SUCCESS"
|
|
1800
|
+
}
|
|
1783
1801
|
export declare type AdminUnitEdge = {
|
|
1784
1802
|
__typename?: 'AdminUnitEdge';
|
|
1785
1803
|
cursor: Scalars['String']['output'];
|
|
@@ -2222,6 +2240,7 @@ export declare type AgentStudioScenarioInput = {
|
|
|
2222
2240
|
};
|
|
2223
2241
|
export declare type AgentStudioScenarioResult = AgentStudioAssistantScenario | QueryError;
|
|
2224
2242
|
export declare type AgentStudioScenarioValidateInput = {
|
|
2243
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
|
2225
2244
|
invocationDescription: Scalars['String']['input'];
|
|
2226
2245
|
isActive: Scalars['Boolean']['input'];
|
|
2227
2246
|
isDefault: Scalars['Boolean']['input'];
|
|
@@ -2237,6 +2256,7 @@ export declare type AgentStudioScenarioValidateModeOutput = {
|
|
|
2237
2256
|
};
|
|
2238
2257
|
export declare type AgentStudioScenarioValidateOutput = {
|
|
2239
2258
|
__typename?: 'AgentStudioScenarioValidateOutput';
|
|
2259
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
|
2240
2260
|
invocationDescription: Scalars['String']['output'];
|
|
2241
2261
|
isActive: Scalars['Boolean']['output'];
|
|
2242
2262
|
isDefault: Scalars['Boolean']['output'];
|
|
@@ -7669,6 +7689,11 @@ export declare type ChannelPlatformGetChannelTokenResponse = {
|
|
|
7669
7689
|
participantToken?: Maybe<Scalars['String']['output']>;
|
|
7670
7690
|
region?: Maybe<Scalars['String']['output']>;
|
|
7671
7691
|
};
|
|
7692
|
+
export declare type ChannelPlatformListQuickResponsesResult = {
|
|
7693
|
+
__typename?: 'ChannelPlatformListQuickResponsesResult';
|
|
7694
|
+
nextToken?: Maybe<Scalars['String']['output']>;
|
|
7695
|
+
quickResponses: Array<Maybe<ChannelPlatformQuickResponseSummary>>;
|
|
7696
|
+
};
|
|
7672
7697
|
export declare type ChannelPlatformMediaPlacement = {
|
|
7673
7698
|
__typename?: 'ChannelPlatformMediaPlacement';
|
|
7674
7699
|
audioFallbackUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -7709,6 +7734,65 @@ export declare type ChannelPlatformPluginActionResponse = {
|
|
|
7709
7734
|
__typename?: 'ChannelPlatformPluginActionResponse';
|
|
7710
7735
|
response?: Maybe<Scalars['JSON']['output']>;
|
|
7711
7736
|
};
|
|
7737
|
+
export declare type ChannelPlatformQuickResponse = {
|
|
7738
|
+
__typename?: 'ChannelPlatformQuickResponse';
|
|
7739
|
+
content: Scalars['String']['output'];
|
|
7740
|
+
lastModifiedTime?: Maybe<Scalars['String']['output']>;
|
|
7741
|
+
name: Scalars['String']['output'];
|
|
7742
|
+
quickResponseId: Scalars['String']['output'];
|
|
7743
|
+
status: Scalars['String']['output'];
|
|
7744
|
+
tags?: Maybe<Scalars['JSON']['output']>;
|
|
7745
|
+
};
|
|
7746
|
+
export declare type ChannelPlatformQuickResponseFilter = {
|
|
7747
|
+
includeNoExistence?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7748
|
+
name: Scalars['String']['input'];
|
|
7749
|
+
operator: ChannelPlatformQuickResponseFilterOperator;
|
|
7750
|
+
values: Array<Scalars['String']['input']>;
|
|
7751
|
+
};
|
|
7752
|
+
export declare enum ChannelPlatformQuickResponseFilterOperator {
|
|
7753
|
+
Equals = "EQUALS",
|
|
7754
|
+
Prefix = "PREFIX"
|
|
7755
|
+
}
|
|
7756
|
+
export declare enum ChannelPlatformQuickResponseOrder {
|
|
7757
|
+
Asc = "ASC",
|
|
7758
|
+
Desc = "DESC"
|
|
7759
|
+
}
|
|
7760
|
+
export declare type ChannelPlatformQuickResponseOrderField = {
|
|
7761
|
+
name: Scalars['String']['input'];
|
|
7762
|
+
order: ChannelPlatformQuickResponseOrder;
|
|
7763
|
+
};
|
|
7764
|
+
export declare type ChannelPlatformQuickResponseQuery = {
|
|
7765
|
+
allowFuzziness?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7766
|
+
name: Scalars['String']['input'];
|
|
7767
|
+
operator: ChannelPlatformQuickResponseQueryOperator;
|
|
7768
|
+
values: Array<Scalars['String']['input']>;
|
|
7769
|
+
};
|
|
7770
|
+
export declare enum ChannelPlatformQuickResponseQueryOperator {
|
|
7771
|
+
Contains = "CONTAINS",
|
|
7772
|
+
ContainsAndPrefix = "CONTAINS_AND_PREFIX"
|
|
7773
|
+
}
|
|
7774
|
+
export declare type ChannelPlatformQuickResponseSearchExpression = {
|
|
7775
|
+
filters?: InputMaybe<Array<ChannelPlatformQuickResponseFilter>>;
|
|
7776
|
+
orderOnField?: InputMaybe<ChannelPlatformQuickResponseOrderField>;
|
|
7777
|
+
queries?: InputMaybe<Array<ChannelPlatformQuickResponseQuery>>;
|
|
7778
|
+
};
|
|
7779
|
+
export declare type ChannelPlatformQuickResponseSearchRequest = {
|
|
7780
|
+
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
7781
|
+
nextToken?: InputMaybe<Scalars['String']['input']>;
|
|
7782
|
+
searchExpression: ChannelPlatformQuickResponseSearchExpression;
|
|
7783
|
+
};
|
|
7784
|
+
export declare type ChannelPlatformQuickResponseSummary = {
|
|
7785
|
+
__typename?: 'ChannelPlatformQuickResponseSummary';
|
|
7786
|
+
lastModifiedTime?: Maybe<Scalars['String']['output']>;
|
|
7787
|
+
name: Scalars['String']['output'];
|
|
7788
|
+
quickResponseId: Scalars['String']['output'];
|
|
7789
|
+
tags?: Maybe<Scalars['JSON']['output']>;
|
|
7790
|
+
};
|
|
7791
|
+
export declare type ChannelPlatformQuickResponsesSearchResult = {
|
|
7792
|
+
__typename?: 'ChannelPlatformQuickResponsesSearchResult';
|
|
7793
|
+
nextToken?: Maybe<Scalars['String']['output']>;
|
|
7794
|
+
quickResponses: Array<Maybe<ChannelPlatformQuickResponseSummary>>;
|
|
7795
|
+
};
|
|
7712
7796
|
export declare enum ChannelPlatformRole {
|
|
7713
7797
|
Agent = "AGENT",
|
|
7714
7798
|
Customer = "CUSTOMER"
|
|
@@ -19927,6 +20011,12 @@ export declare type CsmAiAgentVersionConnection = {
|
|
|
19927
20011
|
nodes?: Maybe<Array<CsmAiAgentVersion>>;
|
|
19928
20012
|
pageInfo: PageInfo;
|
|
19929
20013
|
};
|
|
20014
|
+
export declare type CsmAiAgentVersionPayload = Payload & {
|
|
20015
|
+
__typename?: 'CsmAiAgentVersionPayload';
|
|
20016
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20017
|
+
success: Scalars['Boolean']['output'];
|
|
20018
|
+
version?: Maybe<CsmAiAgentVersion>;
|
|
20019
|
+
};
|
|
19930
20020
|
export declare type CsmAiAgentVersionResult = CsmAiAgentVersion | QueryError;
|
|
19931
20021
|
export declare type CsmAiApiOperation = {
|
|
19932
20022
|
__typename?: 'CsmAiApiOperation';
|
|
@@ -54776,6 +54866,7 @@ export declare type GrowthUnifiedProfileSiteOnboardingInsightsResult = {
|
|
|
54776
54866
|
bestPerformingTarget?: Maybe<Array<Maybe<GrowthUnifiedProfileBestPerformingTarget>>>;
|
|
54777
54867
|
completionRate?: Maybe<Scalars['Float']['output']>;
|
|
54778
54868
|
completionRateSeries?: Maybe<Array<Maybe<GrowthUnifiedProfileCompletionRateSeries>>>;
|
|
54869
|
+
completionSeries?: Maybe<Array<Maybe<GrowthUnifiedProfileCompletionSeries>>>;
|
|
54779
54870
|
completionsSeries?: Maybe<Array<Maybe<GrowthUnifiedProfileCompletionSeries>>>;
|
|
54780
54871
|
dataSufficiencyPercentage?: Maybe<Scalars['Float']['output']>;
|
|
54781
54872
|
dateRangeDays?: Maybe<Scalars['Int']['output']>;
|
|
@@ -54788,6 +54879,7 @@ export declare type GrowthUnifiedProfileSiteOnboardingInsightsResult = {
|
|
|
54788
54879
|
totalDataDays?: Maybe<Scalars['Int']['output']>;
|
|
54789
54880
|
totalEngagements?: Maybe<Scalars['Int']['output']>;
|
|
54790
54881
|
totalViews?: Maybe<Scalars['Int']['output']>;
|
|
54882
|
+
viewSeries?: Maybe<Array<Maybe<GrowthUnifiedProfileViewSeries>>>;
|
|
54791
54883
|
viewsSeries?: Maybe<Array<Maybe<GrowthUnifiedProfileViewSeries>>>;
|
|
54792
54884
|
};
|
|
54793
54885
|
export declare type GrowthUnifiedProfileSiteProfileResult = {
|
|
@@ -58590,6 +58682,11 @@ export declare type JiraAssignableUsersEdge = {
|
|
|
58590
58682
|
cursor: Scalars['String']['output'];
|
|
58591
58683
|
node?: Maybe<User>;
|
|
58592
58684
|
};
|
|
58685
|
+
export declare type JiraAssociateProjectToFieldSchemeInput = {
|
|
58686
|
+
fieldConfigSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
58687
|
+
fieldSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
58688
|
+
projectId: Scalars['ID']['input'];
|
|
58689
|
+
};
|
|
58593
58690
|
export declare type JiraAtlassianIntelligenceAction = JiraAccessAtlassianIntelligenceFeature | JiraContactOrgAdminToEnableAtlassianIntelligence | JiraEnableAtlassianIntelligenceDeepLink;
|
|
58594
58691
|
export declare enum JiraAtlassianIntelligenceFeatureEnum {
|
|
58595
58692
|
AiMate = "AI_MATE",
|
|
@@ -60963,6 +61060,10 @@ export declare type JiraConfigurableNavigationItemInput = {
|
|
|
60963
61060
|
isVisible: Scalars['Boolean']['input'];
|
|
60964
61061
|
menuId: Scalars['String']['input'];
|
|
60965
61062
|
};
|
|
61063
|
+
export declare enum JiraConfluenceContentRelationshipType {
|
|
61064
|
+
Linked = "LINKED",
|
|
61065
|
+
MentionedIn = "MENTIONED_IN"
|
|
61066
|
+
}
|
|
60966
61067
|
export declare type JiraConfluencePageContent = JiraConfluencePageContentDetails | JiraConfluencePageContentError;
|
|
60967
61068
|
export declare type JiraConfluencePageContentDetails = {
|
|
60968
61069
|
__typename?: 'JiraConfluencePageContentDetails';
|
|
@@ -64008,6 +64109,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
64008
64109
|
commandPaletteFields?: Maybe<JiraIssueFieldConnection>;
|
|
64009
64110
|
comments?: Maybe<JiraCommentConnection>;
|
|
64010
64111
|
configurationUrl?: Maybe<Scalars['URL']['output']>;
|
|
64112
|
+
confluenceLinks?: Maybe<JiraConfluenceRemoteIssueLinkConnection>;
|
|
64011
64113
|
confluenceMentionedLinks?: Maybe<JiraConfluenceRemoteIssueLinkConnection>;
|
|
64012
64114
|
contentPanels?: Maybe<JiraIssueContentPanelConnection>;
|
|
64013
64115
|
coverMedia?: Maybe<JiraWorkManagementBackground>;
|
|
@@ -64150,6 +64252,13 @@ export declare type JiraIssueCommentsArgs = {
|
|
|
64150
64252
|
sortBy?: InputMaybe<JiraCommentSortInput>;
|
|
64151
64253
|
targetId?: InputMaybe<Scalars['String']['input']>;
|
|
64152
64254
|
};
|
|
64255
|
+
export declare type JiraIssueConfluenceLinksArgs = {
|
|
64256
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
64257
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
64258
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
64259
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
64260
|
+
relationship?: InputMaybe<JiraConfluenceContentRelationshipType>;
|
|
64261
|
+
};
|
|
64153
64262
|
export declare type JiraIssueConfluenceMentionedLinksArgs = {
|
|
64154
64263
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
64155
64264
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -65256,6 +65365,38 @@ export declare type JiraIssueRemoteIssueLink = {
|
|
|
65256
65365
|
relationship?: Maybe<Scalars['String']['output']>;
|
|
65257
65366
|
title?: Maybe<Scalars['String']['output']>;
|
|
65258
65367
|
};
|
|
65368
|
+
export declare type JiraIssueRemoteIssueLinkInput = {
|
|
65369
|
+
applicationName?: InputMaybe<Scalars['String']['input']>;
|
|
65370
|
+
applicationType?: InputMaybe<Scalars['String']['input']>;
|
|
65371
|
+
globalId?: InputMaybe<Scalars['String']['input']>;
|
|
65372
|
+
iconTitle?: InputMaybe<Scalars['String']['input']>;
|
|
65373
|
+
iconUrl?: InputMaybe<Scalars['String']['input']>;
|
|
65374
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
65375
|
+
relationship?: InputMaybe<Scalars['String']['input']>;
|
|
65376
|
+
resolved?: InputMaybe<Scalars['Boolean']['input']>;
|
|
65377
|
+
statusIconLink?: InputMaybe<Scalars['String']['input']>;
|
|
65378
|
+
statusIconTitle?: InputMaybe<Scalars['String']['input']>;
|
|
65379
|
+
statusIconUrl?: InputMaybe<Scalars['String']['input']>;
|
|
65380
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
65381
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
65382
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
65383
|
+
};
|
|
65384
|
+
export declare type JiraIssueRemoteIssueLinkPayload = Payload & {
|
|
65385
|
+
__typename?: 'JiraIssueRemoteIssueLinkPayload';
|
|
65386
|
+
errors?: Maybe<Array<MutationError>>;
|
|
65387
|
+
remoteLink?: Maybe<JiraRemoteIssueLink>;
|
|
65388
|
+
success: Scalars['Boolean']['output'];
|
|
65389
|
+
};
|
|
65390
|
+
export declare type JiraIssueRemoteLinkInput = {
|
|
65391
|
+
issueId: Scalars['ID']['input'];
|
|
65392
|
+
operation: JiraIssueRemoteLinkOperations;
|
|
65393
|
+
remoteLink?: InputMaybe<JiraIssueRemoteIssueLinkInput>;
|
|
65394
|
+
};
|
|
65395
|
+
export declare enum JiraIssueRemoteLinkOperations {
|
|
65396
|
+
Add = "ADD",
|
|
65397
|
+
Remove = "REMOVE",
|
|
65398
|
+
Set = "SET"
|
|
65399
|
+
}
|
|
65259
65400
|
export declare type JiraIssueRestrictionField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
65260
65401
|
__typename?: 'JiraIssueRestrictionField';
|
|
65261
65402
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -67434,6 +67575,7 @@ export declare type JiraMutation = {
|
|
|
67434
67575
|
forge: JiraForgeMutation;
|
|
67435
67576
|
grantGlobalPermission?: Maybe<JiraGlobalPermissionAddGroupGrantPayload>;
|
|
67436
67577
|
initializeProjectNotificationPreferences?: Maybe<JiraInitializeProjectNotificationPreferencesPayload>;
|
|
67578
|
+
issueRemoteLinkMutation?: Maybe<JiraIssueRemoteIssueLinkPayload>;
|
|
67437
67579
|
jiraFilterMutation?: Maybe<JiraFilterMutation>;
|
|
67438
67580
|
jiraServiceManagementCreateRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryPayload>;
|
|
67439
67581
|
jiraServiceManagementDeleteRequestTypeCategory?: Maybe<JiraServiceManagementRequestTypeCategoryDefaultPayload>;
|
|
@@ -67801,6 +67943,9 @@ export declare type JiraMutationInitializeProjectNotificationPreferencesArgs = {
|
|
|
67801
67943
|
cloudId: Scalars['ID']['input'];
|
|
67802
67944
|
input: JiraInitializeProjectNotificationPreferencesInput;
|
|
67803
67945
|
};
|
|
67946
|
+
export declare type JiraMutationIssueRemoteLinkMutationArgs = {
|
|
67947
|
+
input: JiraIssueRemoteLinkInput;
|
|
67948
|
+
};
|
|
67804
67949
|
export declare type JiraMutationJiraServiceManagementCreateRequestTypeCategoryArgs = {
|
|
67805
67950
|
cloudId: Scalars['ID']['input'];
|
|
67806
67951
|
input: JiraServiceManagementCreateRequestTypeCategoryInput;
|
|
@@ -69789,9 +69934,13 @@ export declare type JiraProject = Node & {
|
|
|
69789
69934
|
activeBackground?: Maybe<JiraBackground>;
|
|
69790
69935
|
assignableUsers?: Maybe<JiraAssignableUsersConnection>;
|
|
69791
69936
|
associatedComponents?: Maybe<GraphGenericConnection>;
|
|
69937
|
+
associatedFieldConfigScheme?: Maybe<JiraFieldConfigScheme>;
|
|
69938
|
+
associatedFieldScheme?: Maybe<JiraFieldScheme>;
|
|
69792
69939
|
associatedIssueLayoutFields?: Maybe<JiraFieldConnection>;
|
|
69793
69940
|
associatedJsmProjectsByComponent?: Maybe<GraphJiraProjectConnection>;
|
|
69794
69941
|
associatedServices?: Maybe<GraphProjectServiceConnection>;
|
|
69942
|
+
availableFieldConfigSchemes?: Maybe<JiraFieldConfigSchemesConnection>;
|
|
69943
|
+
availableFieldSchemes?: Maybe<JiraFieldSchemesConnection>;
|
|
69795
69944
|
avatar?: Maybe<JiraAvatar>;
|
|
69796
69945
|
background?: Maybe<JiraActiveBackgroundDetailsResult>;
|
|
69797
69946
|
boards?: Maybe<JiraBoardConnection>;
|
|
@@ -69887,6 +70036,16 @@ export declare type JiraProjectAssociatedComponentsArgs = {
|
|
|
69887
70036
|
export declare type JiraProjectAssociatedIssueLayoutFieldsArgs = {
|
|
69888
70037
|
input?: InputMaybe<JiraProjectAssociatedFieldsInput>;
|
|
69889
70038
|
};
|
|
70039
|
+
export declare type JiraProjectAvailableFieldConfigSchemesArgs = {
|
|
70040
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70041
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70042
|
+
input?: InputMaybe<JiraFieldConfigSchemesInput>;
|
|
70043
|
+
};
|
|
70044
|
+
export declare type JiraProjectAvailableFieldSchemesArgs = {
|
|
70045
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
70046
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70047
|
+
input?: InputMaybe<JiraFieldSchemesInput>;
|
|
70048
|
+
};
|
|
69890
70049
|
export declare type JiraProjectBoardsArgs = {
|
|
69891
70050
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
69892
70051
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -82375,6 +82534,7 @@ export declare type MarketplaceStoreOfferingDetails = {
|
|
|
82375
82534
|
id: Scalars['ID']['output'];
|
|
82376
82535
|
isInstance?: Maybe<Scalars['Boolean']['output']>;
|
|
82377
82536
|
isSandbox?: Maybe<Scalars['Boolean']['output']>;
|
|
82537
|
+
isUserTierDecoupled?: Maybe<Scalars['Boolean']['output']>;
|
|
82378
82538
|
name: Scalars['String']['output'];
|
|
82379
82539
|
};
|
|
82380
82540
|
export declare type MarketplaceStoreOrgDetails = MarketplaceStoreMultiInstanceDetails & {
|
|
@@ -83055,6 +83215,11 @@ export declare type MercuryChangeProposalSummaryForStrategicEvent = {
|
|
|
83055
83215
|
newPositions?: Maybe<MercuryNewPositionSummaryByChangeProposalStatus>;
|
|
83056
83216
|
strategicEventId: Scalars['ID']['output'];
|
|
83057
83217
|
};
|
|
83218
|
+
export declare type MercuryChangeProposalTag = {
|
|
83219
|
+
__typename?: 'MercuryChangeProposalTag';
|
|
83220
|
+
id: Scalars['ID']['output'];
|
|
83221
|
+
tag?: Maybe<TownsquareTag>;
|
|
83222
|
+
};
|
|
83058
83223
|
export declare type MercuryChangeProposalTagConnection = {
|
|
83059
83224
|
__typename?: 'MercuryChangeProposalTagConnection';
|
|
83060
83225
|
edges?: Maybe<Array<Maybe<MercuryChangeProposalTagEdge>>>;
|
|
@@ -83064,7 +83229,7 @@ export declare type MercuryChangeProposalTagConnection = {
|
|
|
83064
83229
|
export declare type MercuryChangeProposalTagEdge = {
|
|
83065
83230
|
__typename?: 'MercuryChangeProposalTagEdge';
|
|
83066
83231
|
cursor: Scalars['String']['output'];
|
|
83067
|
-
node?: Maybe<
|
|
83232
|
+
node?: Maybe<MercuryChangeProposalTag>;
|
|
83068
83233
|
};
|
|
83069
83234
|
export declare type MercuryChangeProposalUpdate = {
|
|
83070
83235
|
__typename?: 'MercuryChangeProposalUpdate';
|
|
@@ -83310,15 +83475,6 @@ export declare type MercuryDeleteChangeProposalCommentPayload = Payload & {
|
|
|
83310
83475
|
errors?: Maybe<Array<MutationError>>;
|
|
83311
83476
|
success: Scalars['Boolean']['output'];
|
|
83312
83477
|
};
|
|
83313
|
-
export declare type MercuryDeleteChangeProposalGoalLinksInput = {
|
|
83314
|
-
changeProposalAri: Scalars['ID']['input'];
|
|
83315
|
-
goalAris: Array<Scalars['ID']['input']>;
|
|
83316
|
-
};
|
|
83317
|
-
export declare type MercuryDeleteChangeProposalGoalLinksPayload = Payload & {
|
|
83318
|
-
__typename?: 'MercuryDeleteChangeProposalGoalLinksPayload';
|
|
83319
|
-
errors?: Maybe<Array<MutationError>>;
|
|
83320
|
-
success: Scalars['Boolean']['output'];
|
|
83321
|
-
};
|
|
83322
83478
|
export declare type MercuryDeleteChangeProposalInput = {
|
|
83323
83479
|
id: Scalars['ID']['input'];
|
|
83324
83480
|
};
|
|
@@ -84882,7 +85038,6 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
84882
85038
|
createStrategicEventComment?: Maybe<MercuryCreateStrategicEventCommentPayload>;
|
|
84883
85039
|
deleteChangeProposal?: Maybe<MercuryDeleteChangeProposalPayload>;
|
|
84884
85040
|
deleteChangeProposalComment?: Maybe<MercuryDeleteChangeProposalCommentPayload>;
|
|
84885
|
-
deleteChangeProposalGoalLinks?: Maybe<MercuryDeleteChangeProposalGoalLinksPayload>;
|
|
84886
85041
|
deleteChangeProposalsViewSetting?: Maybe<MercuryDeleteChangeProposalsViewPayload>;
|
|
84887
85042
|
deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
|
|
84888
85043
|
deleteStrategicEventComment?: Maybe<MercuryDeleteStrategicEventCommentPayload>;
|
|
@@ -84892,6 +85047,7 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
84892
85047
|
removeTagsFromChangeProposal?: Maybe<MercuryRemoveTagsFromProposalPayload>;
|
|
84893
85048
|
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
84894
85049
|
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
85050
|
+
unlinkGoalsFromChangeProposal?: Maybe<MercuryUnlinkGoalsFromChangeProposalPayload>;
|
|
84895
85051
|
updateChangeProposalComment?: Maybe<MercuryUpdateChangeProposalCommentPayload>;
|
|
84896
85052
|
updateChangeProposalDescription?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
84897
85053
|
updateChangeProposalFocusArea?: Maybe<MercuryUpdateChangeProposalPayload>;
|
|
@@ -84934,9 +85090,6 @@ export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalArgs =
|
|
|
84934
85090
|
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalCommentArgs = {
|
|
84935
85091
|
input: MercuryDeleteChangeProposalCommentInput;
|
|
84936
85092
|
};
|
|
84937
|
-
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalGoalLinksArgs = {
|
|
84938
|
-
input: MercuryDeleteChangeProposalGoalLinksInput;
|
|
84939
|
-
};
|
|
84940
85093
|
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalsViewSettingArgs = {
|
|
84941
85094
|
input: MercuryDeleteChangeProposalsViewInput;
|
|
84942
85095
|
};
|
|
@@ -84964,6 +85117,9 @@ export declare type MercuryStrategicEventsMutationApiTransitionChangeProposalSta
|
|
|
84964
85117
|
export declare type MercuryStrategicEventsMutationApiTransitionStrategicEventStatusArgs = {
|
|
84965
85118
|
input: MercuryTransitionStrategicEventStatusInput;
|
|
84966
85119
|
};
|
|
85120
|
+
export declare type MercuryStrategicEventsMutationApiUnlinkGoalsFromChangeProposalArgs = {
|
|
85121
|
+
input: MercuryUnlinkGoalsFromChangeProposalInput;
|
|
85122
|
+
};
|
|
84967
85123
|
export declare type MercuryStrategicEventsMutationApiUpdateChangeProposalCommentArgs = {
|
|
84968
85124
|
input: MercuryUpdateChangeProposalCommentInput;
|
|
84969
85125
|
};
|
|
@@ -85246,6 +85402,15 @@ export declare type MercuryUnarchiveFocusAreaPayload = Payload & {
|
|
|
85246
85402
|
errors?: Maybe<Array<MutationError>>;
|
|
85247
85403
|
success: Scalars['Boolean']['output'];
|
|
85248
85404
|
};
|
|
85405
|
+
export declare type MercuryUnlinkGoalsFromChangeProposalInput = {
|
|
85406
|
+
changeProposalAri: Scalars['ID']['input'];
|
|
85407
|
+
goalAris: Array<Scalars['ID']['input']>;
|
|
85408
|
+
};
|
|
85409
|
+
export declare type MercuryUnlinkGoalsFromChangeProposalPayload = Payload & {
|
|
85410
|
+
__typename?: 'MercuryUnlinkGoalsFromChangeProposalPayload';
|
|
85411
|
+
errors?: Maybe<Array<MutationError>>;
|
|
85412
|
+
success: Scalars['Boolean']['output'];
|
|
85413
|
+
};
|
|
85249
85414
|
export declare type MercuryUpdateChangeFocusAreaInput = {
|
|
85250
85415
|
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
85251
85416
|
};
|
|
@@ -85497,6 +85662,7 @@ export declare type MercuryWorkspaceConnectionStatus = {
|
|
|
85497
85662
|
};
|
|
85498
85663
|
export declare type MercuryWorkspaceContext = {
|
|
85499
85664
|
__typename?: 'MercuryWorkspaceContext';
|
|
85665
|
+
activationDate?: Maybe<Scalars['String']['output']>;
|
|
85500
85666
|
activationId: Scalars['String']['output'];
|
|
85501
85667
|
aiEnabled: Scalars['Boolean']['output'];
|
|
85502
85668
|
cloudId: Scalars['String']['output'];
|
|
@@ -85739,6 +85905,7 @@ export declare type Mutation = {
|
|
|
85739
85905
|
admin_releaseImpersonationUser?: Maybe<AdminReleaseImpersonationResponsePayload>;
|
|
85740
85906
|
admin_removeUser?: Maybe<AdminRemoveUserResponsePayload>;
|
|
85741
85907
|
admin_revokeRole?: Maybe<AdminRevokeRoleResponsePayload>;
|
|
85908
|
+
admin_unitCreate?: Maybe<AdminUnitCreatePayload>;
|
|
85742
85909
|
agentStudio_addGroupsToCreatePermission?: Maybe<AgentStudioAddGroupsToCreatePermissionPayload>;
|
|
85743
85910
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
85744
85911
|
agentStudio_createScenario?: Maybe<AgentStudioCreateScenarioPayload>;
|
|
@@ -85915,6 +86082,9 @@ export declare type Mutation = {
|
|
|
85915
86082
|
csmAi_createCoachingContent?: Maybe<CsmAiCreateCoachingContentPayload>;
|
|
85916
86083
|
csmAi_deleteAction?: Maybe<CsmAiDeleteActionPayload>;
|
|
85917
86084
|
csmAi_deleteCoachingContent?: Maybe<CsmAiDeleteCoachingContentPayload>;
|
|
86085
|
+
csmAi_publishAgent?: Maybe<CsmAiAgentVersionPayload>;
|
|
86086
|
+
csmAi_restoreAgentVersionAsDraft?: Maybe<CsmAiAgentVersionPayload>;
|
|
86087
|
+
csmAi_restoreFromAgentVersion?: Maybe<CsmAiAgentVersionPayload>;
|
|
85918
86088
|
csmAi_updateAction?: Maybe<CsmAiUpdateActionPayload>;
|
|
85919
86089
|
csmAi_updateAgent?: Maybe<CsmAiUpdateAgentPayload>;
|
|
85920
86090
|
csmAi_updateCoachingContent?: Maybe<CsmAiUpdateCoachingContentPayload>;
|
|
@@ -86250,12 +86420,14 @@ export declare type Mutation = {
|
|
|
86250
86420
|
spf_updateAskUpdateTargetDate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
86251
86421
|
splitIssue?: Maybe<SplitIssueOutput>;
|
|
86252
86422
|
stakeholderComms_addStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
86423
|
+
stakeholderComms_createPage?: Maybe<StakeholderCommsPageResponse>;
|
|
86253
86424
|
stakeholderComms_createStakeholder?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
86254
86425
|
stakeholderComms_createStakeholderGroupAndMembers?: Maybe<StakeholderCommsStakeholderGroupsAndMemberships>;
|
|
86255
86426
|
stakeholderComms_removeStakeholderAssignment?: Maybe<StakeholderCommsStakeholderAssignmentResponse>;
|
|
86256
86427
|
stakeholderComms_removeStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
86257
86428
|
stakeholderComms_removeStakeholderGroups?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
86258
86429
|
stakeholderComms_removeStakeholderMembers?: Maybe<StakeholderCommsStakeholderGroupMutationResponse>;
|
|
86430
|
+
stakeholderComms_updatePage?: Maybe<StakeholderCommsPageResponse>;
|
|
86259
86431
|
stakeholderComms_updateStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
86260
86432
|
stakeholderComms_updateStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroup>;
|
|
86261
86433
|
startSprint?: Maybe<SprintResponse>;
|
|
@@ -86399,6 +86571,10 @@ export declare type MutationAdmin_RevokeRoleArgs = {
|
|
|
86399
86571
|
orgId: Scalars['ID']['input'];
|
|
86400
86572
|
revokeRoleInput?: InputMaybe<AdminRevokeRoleInput>;
|
|
86401
86573
|
};
|
|
86574
|
+
export declare type MutationAdmin_UnitCreateArgs = {
|
|
86575
|
+
orgId: Scalars['ID']['input'];
|
|
86576
|
+
unit: AdminUnitCreateInput;
|
|
86577
|
+
};
|
|
86402
86578
|
export declare type MutationAgentStudio_AddGroupsToCreatePermissionArgs = {
|
|
86403
86579
|
cloudId: Scalars['ID']['input'];
|
|
86404
86580
|
groupARIs: Array<Scalars['ID']['input']>;
|
|
@@ -87033,6 +87209,20 @@ export declare type MutationCsmAi_DeleteCoachingContentArgs = {
|
|
|
87033
87209
|
csmAiHubId: Scalars['ID']['input'];
|
|
87034
87210
|
helpCenterAri: Scalars['ID']['input'];
|
|
87035
87211
|
};
|
|
87212
|
+
export declare type MutationCsmAi_PublishAgentArgs = {
|
|
87213
|
+
csmAgentId: Scalars['ID']['input'];
|
|
87214
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
87215
|
+
};
|
|
87216
|
+
export declare type MutationCsmAi_RestoreAgentVersionAsDraftArgs = {
|
|
87217
|
+
csmAgentId: Scalars['ID']['input'];
|
|
87218
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
87219
|
+
versionId: Scalars['ID']['input'];
|
|
87220
|
+
};
|
|
87221
|
+
export declare type MutationCsmAi_RestoreFromAgentVersionArgs = {
|
|
87222
|
+
csmAgentId: Scalars['ID']['input'];
|
|
87223
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
87224
|
+
versionId: Scalars['ID']['input'];
|
|
87225
|
+
};
|
|
87036
87226
|
export declare type MutationCsmAi_UpdateActionArgs = {
|
|
87037
87227
|
csmAiActionId: Scalars['ID']['input'];
|
|
87038
87228
|
csmAiHubId: Scalars['ID']['input'];
|
|
@@ -88058,6 +88248,9 @@ export declare type MutationStakeholderComms_AddStakeholderMembersArgs = {
|
|
|
88058
88248
|
groupId: Scalars['String']['input'];
|
|
88059
88249
|
stakeholders?: InputMaybe<Array<StakeholderCommsCreateStakeholderInput>>;
|
|
88060
88250
|
};
|
|
88251
|
+
export declare type MutationStakeholderComms_CreatePageArgs = {
|
|
88252
|
+
page: StakeholderCommsCreatePageInputType;
|
|
88253
|
+
};
|
|
88061
88254
|
export declare type MutationStakeholderComms_CreateStakeholderArgs = {
|
|
88062
88255
|
stakeholder: StakeholderCommsCreateStakeholderInput;
|
|
88063
88256
|
};
|
|
@@ -88078,6 +88271,9 @@ export declare type MutationStakeholderComms_RemoveStakeholderMembersArgs = {
|
|
|
88078
88271
|
groupId: Scalars['String']['input'];
|
|
88079
88272
|
stakeholderIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
88080
88273
|
};
|
|
88274
|
+
export declare type MutationStakeholderComms_UpdatePageArgs = {
|
|
88275
|
+
page: StakeholderCommsUpdatePageInputType;
|
|
88276
|
+
};
|
|
88081
88277
|
export declare type MutationStakeholderComms_UpdateStakeholderArgs = {
|
|
88082
88278
|
updateStakeholderInput: StakeholderCommsUpdateStakeholderInput;
|
|
88083
88279
|
};
|
|
@@ -91151,6 +91347,7 @@ export declare type Query = {
|
|
|
91151
91347
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
91152
91348
|
admin_org?: Maybe<AdminOrganization>;
|
|
91153
91349
|
admin_permissions?: Maybe<Array<AdminPermission>>;
|
|
91350
|
+
admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
|
|
91154
91351
|
admin_user?: Maybe<AdminUser>;
|
|
91155
91352
|
admin_userStats?: Maybe<AdminUserStats>;
|
|
91156
91353
|
admin_users?: Maybe<AdminUserConnection>;
|
|
@@ -91247,10 +91444,13 @@ export declare type Query = {
|
|
|
91247
91444
|
channelPlatform_getConnectDetails?: Maybe<ChannelPlatformConnectDetails>;
|
|
91248
91445
|
channelPlatform_getContactDetails?: Maybe<Array<Maybe<ChannelPlatformContact>>>;
|
|
91249
91446
|
channelPlatform_getQueue?: Maybe<ChannelPlatformConnectQueue>;
|
|
91447
|
+
channelPlatform_getQuickResponse?: Maybe<ChannelPlatformQuickResponse>;
|
|
91250
91448
|
channelPlatform_getSurveyLink?: Maybe<ChannelPlatformSurveyLinkResponse>;
|
|
91251
91449
|
channelPlatform_getTranscript?: Maybe<ChannelPlatformTranscriptResponse>;
|
|
91252
91450
|
channelPlatform_listQueues?: Maybe<Array<Maybe<ChannelPlatformConnectQueue>>>;
|
|
91451
|
+
channelPlatform_listQuickResponses?: Maybe<ChannelPlatformListQuickResponsesResult>;
|
|
91253
91452
|
channelPlatform_sampleQueueById?: Maybe<ChannelPlatformSampleQueue>;
|
|
91453
|
+
channelPlatform_searchQuickResponses?: Maybe<ChannelPlatformQuickResponsesSearchResult>;
|
|
91254
91454
|
channelPlatform_submitRequest?: Maybe<ChannelPlatformSubmitRequestResponse>;
|
|
91255
91455
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
91256
91456
|
classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
@@ -91769,6 +91969,7 @@ export declare type Query = {
|
|
|
91769
91969
|
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
91770
91970
|
stakeholderComms_getAssignmentsByStakeholderV2?: Maybe<StakeholderCommsAssignmentConnection>;
|
|
91771
91971
|
stakeholderComms_getMemberships?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroupMembership>>>;
|
|
91972
|
+
stakeholderComms_getPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
91772
91973
|
stakeholderComms_getStakeholder?: Maybe<StakeholderCommsStakeholderResponse>;
|
|
91773
91974
|
stakeholderComms_getStakeholderGroup?: Maybe<StakeholderCommsStakeholderGroup>;
|
|
91774
91975
|
stakeholderComms_getStakeholderGroupByMembership?: Maybe<Array<Maybe<StakeholderCommsStakeholderGroup>>>;
|
|
@@ -91882,6 +92083,10 @@ export declare type QueryAdmin_PermissionsArgs = {
|
|
|
91882
92083
|
principalId: Scalars['ID']['input'];
|
|
91883
92084
|
resourceId: Scalars['ID']['input'];
|
|
91884
92085
|
};
|
|
92086
|
+
export declare type QueryAdmin_UnitCreateStatusArgs = {
|
|
92087
|
+
orgId: Scalars['ID']['input'];
|
|
92088
|
+
requestId: Scalars['ID']['input'];
|
|
92089
|
+
};
|
|
91885
92090
|
export declare type QueryAdmin_UserArgs = {
|
|
91886
92091
|
input?: InputMaybe<AdminFetchUserInput>;
|
|
91887
92092
|
};
|
|
@@ -92330,6 +92535,9 @@ export declare type QueryChannelPlatform_GetContactDetailsArgs = {
|
|
|
92330
92535
|
export declare type QueryChannelPlatform_GetQueueArgs = {
|
|
92331
92536
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
92332
92537
|
};
|
|
92538
|
+
export declare type QueryChannelPlatform_GetQuickResponseArgs = {
|
|
92539
|
+
quickResponseId: Scalars['String']['input'];
|
|
92540
|
+
};
|
|
92333
92541
|
export declare type QueryChannelPlatform_GetSurveyLinkArgs = {
|
|
92334
92542
|
conversationId?: InputMaybe<Scalars['String']['input']>;
|
|
92335
92543
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -92337,9 +92545,16 @@ export declare type QueryChannelPlatform_GetSurveyLinkArgs = {
|
|
|
92337
92545
|
export declare type QueryChannelPlatform_GetTranscriptArgs = {
|
|
92338
92546
|
request?: InputMaybe<ChannelPlatformTranscriptRequest>;
|
|
92339
92547
|
};
|
|
92548
|
+
export declare type QueryChannelPlatform_ListQuickResponsesArgs = {
|
|
92549
|
+
maxResults?: InputMaybe<Scalars['Int']['input']>;
|
|
92550
|
+
nextToken?: InputMaybe<Scalars['String']['input']>;
|
|
92551
|
+
};
|
|
92340
92552
|
export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
|
|
92341
92553
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
92342
92554
|
};
|
|
92555
|
+
export declare type QueryChannelPlatform_SearchQuickResponsesArgs = {
|
|
92556
|
+
request: ChannelPlatformQuickResponseSearchRequest;
|
|
92557
|
+
};
|
|
92343
92558
|
export declare type QueryChannelPlatform_SubmitRequestArgs = {
|
|
92344
92559
|
request?: InputMaybe<ChannelPlatformSubmitRequestInput>;
|
|
92345
92560
|
requestType?: InputMaybe<ChannelPlatformChannelType>;
|
|
@@ -93666,7 +93881,8 @@ export declare type QueryJira_ProjectByIdOrKeyArgs = {
|
|
|
93666
93881
|
};
|
|
93667
93882
|
export declare type QueryJira_ProjectLevelSidebarMenuCustomizationArgs = {
|
|
93668
93883
|
cloudId: Scalars['ID']['input'];
|
|
93669
|
-
projectId
|
|
93884
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
93885
|
+
projectKey?: InputMaybe<Scalars['ID']['input']>;
|
|
93670
93886
|
};
|
|
93671
93887
|
export declare type QueryJira_ProjectTypesByIdsArgs = {
|
|
93672
93888
|
ids: Array<Scalars['ID']['input']>;
|
|
@@ -94422,6 +94638,9 @@ export declare type QueryStakeholderComms_GetAssignmentsByStakeholderV2Args = {
|
|
|
94422
94638
|
export declare type QueryStakeholderComms_GetMembershipsArgs = {
|
|
94423
94639
|
groupId: Scalars['String']['input'];
|
|
94424
94640
|
};
|
|
94641
|
+
export declare type QueryStakeholderComms_GetPageByIdArgs = {
|
|
94642
|
+
pageId: Scalars['String']['input'];
|
|
94643
|
+
};
|
|
94425
94644
|
export declare type QueryStakeholderComms_GetStakeholderArgs = {
|
|
94426
94645
|
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
94427
94646
|
};
|
|
@@ -96981,6 +97200,7 @@ export declare type SearchConfluencePageBlogAttachment = SearchL2FeatureProvider
|
|
|
96981
97200
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
96982
97201
|
latestUserAction?: Maybe<Scalars['String']['output']>;
|
|
96983
97202
|
latestUserActionTs?: Maybe<Scalars['String']['output']>;
|
|
97203
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
96984
97204
|
pageEntity?: Maybe<ConfluencePage>;
|
|
96985
97205
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
96986
97206
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
@@ -97023,6 +97243,7 @@ export declare type SearchConfluenceSpace = SearchL2FeatureProvider & SearchResu
|
|
|
97023
97243
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
97024
97244
|
lastModified?: Maybe<Scalars['DateTime']['output']>;
|
|
97025
97245
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97246
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97026
97247
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97027
97248
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
97028
97249
|
spaceEntity?: Maybe<ConfluenceSpace>;
|
|
@@ -97044,6 +97265,7 @@ export declare type SearchDefaultResult = SearchResult & {
|
|
|
97044
97265
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97045
97266
|
id: Scalars['ID']['output'];
|
|
97046
97267
|
lastModifiedDate?: Maybe<Scalars['DateTime']['output']>;
|
|
97268
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97047
97269
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97048
97270
|
title: Scalars['String']['output'];
|
|
97049
97271
|
type: SearchResultType;
|
|
@@ -97162,6 +97384,27 @@ export declare enum SearchLinkedEntityGranularity {
|
|
|
97162
97384
|
Default = "DEFAULT",
|
|
97163
97385
|
FullThread = "FULL_THREAD"
|
|
97164
97386
|
}
|
|
97387
|
+
export declare type SearchLinkedResult = SearchResult & {
|
|
97388
|
+
__typename?: 'SearchLinkedResult';
|
|
97389
|
+
category: SearchLinkedResultCategory;
|
|
97390
|
+
description: Scalars['String']['output'];
|
|
97391
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97392
|
+
id: Scalars['ID']['output'];
|
|
97393
|
+
integrationId?: Maybe<Scalars['String']['output']>;
|
|
97394
|
+
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97395
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97396
|
+
providerId?: Maybe<Scalars['String']['output']>;
|
|
97397
|
+
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97398
|
+
subtype?: Maybe<Scalars['String']['output']>;
|
|
97399
|
+
title: Scalars['String']['output'];
|
|
97400
|
+
type: SearchResultType;
|
|
97401
|
+
url: Scalars['URL']['output'];
|
|
97402
|
+
};
|
|
97403
|
+
export declare enum SearchLinkedResultCategory {
|
|
97404
|
+
MentionedBy = "mentionedBy",
|
|
97405
|
+
Mentions = "mentions",
|
|
97406
|
+
Similar = "similar"
|
|
97407
|
+
}
|
|
97165
97408
|
export declare type SearchMercuryFilter = {
|
|
97166
97409
|
ancestorIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
97167
97410
|
focusAreaTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -97237,6 +97480,7 @@ export declare type SearchResult = {
|
|
|
97237
97480
|
description: Scalars['String']['output'];
|
|
97238
97481
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97239
97482
|
id: Scalars['ID']['output'];
|
|
97483
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97240
97484
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97241
97485
|
title: Scalars['String']['output'];
|
|
97242
97486
|
type: SearchResultType;
|
|
@@ -97249,6 +97493,7 @@ export declare type SearchResultAtlasGoal = SearchResult & {
|
|
|
97249
97493
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97250
97494
|
id: Scalars['ID']['output'];
|
|
97251
97495
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97496
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97252
97497
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97253
97498
|
title: Scalars['String']['output'];
|
|
97254
97499
|
type: SearchResultType;
|
|
@@ -97260,6 +97505,7 @@ export declare type SearchResultAtlasGoalUpdate = SearchResult & {
|
|
|
97260
97505
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97261
97506
|
id: Scalars['ID']['output'];
|
|
97262
97507
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97508
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97263
97509
|
score?: Maybe<Scalars['Float']['output']>;
|
|
97264
97510
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97265
97511
|
title: Scalars['String']['output'];
|
|
@@ -97272,6 +97518,7 @@ export declare type SearchResultAtlasProject = SearchResult & {
|
|
|
97272
97518
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97273
97519
|
id: Scalars['ID']['output'];
|
|
97274
97520
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97521
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97275
97522
|
project?: Maybe<TownsquareProject>;
|
|
97276
97523
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97277
97524
|
title: Scalars['String']['output'];
|
|
@@ -97284,6 +97531,7 @@ export declare type SearchResultAtlasProjectUpdate = SearchResult & {
|
|
|
97284
97531
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97285
97532
|
id: Scalars['ID']['output'];
|
|
97286
97533
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97534
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97287
97535
|
score?: Maybe<Scalars['Float']['output']>;
|
|
97288
97536
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97289
97537
|
title: Scalars['String']['output'];
|
|
@@ -97297,6 +97545,7 @@ export declare type SearchResultBitbucketRepository = SearchResult & {
|
|
|
97297
97545
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97298
97546
|
id: Scalars['ID']['output'];
|
|
97299
97547
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97548
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97300
97549
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97301
97550
|
title: Scalars['String']['output'];
|
|
97302
97551
|
type: SearchResultType;
|
|
@@ -97310,6 +97559,7 @@ export declare type SearchResultCompassComponent = SearchResult & {
|
|
|
97310
97559
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97311
97560
|
id: Scalars['ID']['output'];
|
|
97312
97561
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97562
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97313
97563
|
ownerId?: Maybe<Scalars['String']['output']>;
|
|
97314
97564
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97315
97565
|
tier?: Maybe<Scalars['String']['output']>;
|
|
@@ -97325,6 +97575,7 @@ export declare type SearchResultFederated = SearchResult & {
|
|
|
97325
97575
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97326
97576
|
id: Scalars['ID']['output'];
|
|
97327
97577
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97578
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97328
97579
|
score?: Maybe<Scalars['Float']['output']>;
|
|
97329
97580
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97330
97581
|
title: Scalars['String']['output'];
|
|
@@ -97340,6 +97591,7 @@ export declare type SearchResultGoogleDocument = SearchL2FeatureProvider & Searc
|
|
|
97340
97591
|
id: Scalars['ID']['output'];
|
|
97341
97592
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
97342
97593
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97594
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97343
97595
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
97344
97596
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97345
97597
|
title: Scalars['String']['output'];
|
|
@@ -97355,6 +97607,7 @@ export declare type SearchResultGooglePresentation = SearchL2FeatureProvider & S
|
|
|
97355
97607
|
id: Scalars['ID']['output'];
|
|
97356
97608
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
97357
97609
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97610
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97358
97611
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
97359
97612
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97360
97613
|
title: Scalars['String']['output'];
|
|
@@ -97370,6 +97623,7 @@ export declare type SearchResultGoogleSpreadsheet = SearchL2FeatureProvider & Se
|
|
|
97370
97623
|
id: Scalars['ID']['output'];
|
|
97371
97624
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
97372
97625
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97626
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97373
97627
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
97374
97628
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97375
97629
|
title: Scalars['String']['output'];
|
|
@@ -97391,6 +97645,7 @@ export declare type SearchResultGraphDocument = SearchL2FeatureProvider & Search
|
|
|
97391
97645
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
97392
97646
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97393
97647
|
linkedEntities?: Maybe<Array<SearchResultGraphDocument>>;
|
|
97648
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97394
97649
|
owner?: Maybe<ThirdPartyUser>;
|
|
97395
97650
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
97396
97651
|
providerId?: Maybe<Scalars['String']['output']>;
|
|
@@ -97415,6 +97670,7 @@ export declare type SearchResultJiraBoard = SearchResult & {
|
|
|
97415
97670
|
id: Scalars['ID']['output'];
|
|
97416
97671
|
isSimpleBoard: Scalars['Boolean']['output'];
|
|
97417
97672
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97673
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97418
97674
|
product: SearchBoardProductType;
|
|
97419
97675
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97420
97676
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
@@ -97445,6 +97701,7 @@ export declare type SearchResultJiraDashboard = SearchResult & {
|
|
|
97445
97701
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97446
97702
|
id: Scalars['ID']['output'];
|
|
97447
97703
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97704
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97448
97705
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97449
97706
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
97450
97707
|
title: Scalars['String']['output'];
|
|
@@ -97461,6 +97718,7 @@ export declare type SearchResultJiraFilter = SearchResult & {
|
|
|
97461
97718
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97462
97719
|
id: Scalars['ID']['output'];
|
|
97463
97720
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97721
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97464
97722
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97465
97723
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
97466
97724
|
title: Scalars['String']['output'];
|
|
@@ -97478,6 +97736,7 @@ export declare type SearchResultJiraIssue = SearchResult & {
|
|
|
97478
97736
|
issue?: Maybe<JiraIssue>;
|
|
97479
97737
|
issueTypeId: Scalars['String']['output'];
|
|
97480
97738
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97739
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97481
97740
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97482
97741
|
socialSignal?: Maybe<SocialSignalSearch>;
|
|
97483
97742
|
status?: Maybe<SearchResultJiraIssueStatus>;
|
|
@@ -97508,6 +97767,7 @@ export declare type SearchResultJiraPlan = SearchResult & {
|
|
|
97508
97767
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97509
97768
|
id: Scalars['ID']['output'];
|
|
97510
97769
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97770
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97511
97771
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97512
97772
|
title: Scalars['String']['output'];
|
|
97513
97773
|
type: SearchResultType;
|
|
@@ -97521,6 +97781,7 @@ export declare type SearchResultJiraProject = SearchResult & {
|
|
|
97521
97781
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97522
97782
|
id: Scalars['ID']['output'];
|
|
97523
97783
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97784
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97524
97785
|
project?: Maybe<JiraProject>;
|
|
97525
97786
|
projectId: Scalars['String']['output'];
|
|
97526
97787
|
projectKey: Scalars['String']['output'];
|
|
@@ -97543,6 +97804,7 @@ export declare type SearchResultMercuryFocusArea = SearchResult & {
|
|
|
97543
97804
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97544
97805
|
id: Scalars['ID']['output'];
|
|
97545
97806
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97807
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97546
97808
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97547
97809
|
title: Scalars['String']['output'];
|
|
97548
97810
|
type: SearchResultType;
|
|
@@ -97555,6 +97817,7 @@ export declare type SearchResultMercuryFocusAreaStatusUpdate = SearchResult & {
|
|
|
97555
97817
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97556
97818
|
id: Scalars['ID']['output'];
|
|
97557
97819
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97820
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97558
97821
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97559
97822
|
title: Scalars['String']['output'];
|
|
97560
97823
|
type: SearchResultType;
|
|
@@ -97569,6 +97832,7 @@ export declare type SearchResultMicrosoftDocument = SearchL2FeatureProvider & Se
|
|
|
97569
97832
|
id: Scalars['ID']['output'];
|
|
97570
97833
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
97571
97834
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97835
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97572
97836
|
permissionLevel?: Maybe<Scalars['String']['output']>;
|
|
97573
97837
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97574
97838
|
title: Scalars['String']['output'];
|
|
@@ -97585,6 +97849,7 @@ export declare type SearchResultSlackMessage = SearchL2FeatureProvider & SearchR
|
|
|
97585
97849
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
97586
97850
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97587
97851
|
linkedEntities?: Maybe<Array<SearchResultSlackMessage>>;
|
|
97852
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97588
97853
|
mentions?: Maybe<Array<ThirdPartyUser>>;
|
|
97589
97854
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97590
97855
|
subtype?: Maybe<Scalars['String']['output']>;
|
|
@@ -97598,6 +97863,7 @@ export declare type SearchResultTrelloBoard = SearchResult & {
|
|
|
97598
97863
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97599
97864
|
id: Scalars['ID']['output'];
|
|
97600
97865
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97866
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97601
97867
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97602
97868
|
title: Scalars['String']['output'];
|
|
97603
97869
|
type: SearchResultType;
|
|
@@ -97611,6 +97877,7 @@ export declare type SearchResultTrelloCard = SearchResult & {
|
|
|
97611
97877
|
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
97612
97878
|
id: Scalars['ID']['output'];
|
|
97613
97879
|
lastModifiedDate?: Maybe<Scalars['String']['output']>;
|
|
97880
|
+
linkedResults?: Maybe<Array<SearchLinkedResult>>;
|
|
97614
97881
|
scoreL2Ranker?: Maybe<Scalars['Float']['output']>;
|
|
97615
97882
|
title: Scalars['String']['output'];
|
|
97616
97883
|
type: SearchResultType;
|
|
@@ -101181,6 +101448,94 @@ export declare enum StakeholderCommsAssignmentType {
|
|
|
101181
101448
|
Services = "SERVICES",
|
|
101182
101449
|
Site = "SITE"
|
|
101183
101450
|
}
|
|
101451
|
+
export declare type StakeholderCommsBodyConfigInput = {
|
|
101452
|
+
componentStyle?: InputMaybe<StakeholderCommsComponentStyle>;
|
|
101453
|
+
componentUptimeDisplay?: InputMaybe<Scalars['String']['input']>;
|
|
101454
|
+
componentUptimeRange?: InputMaybe<Scalars['Int']['input']>;
|
|
101455
|
+
enableSearchAndFilter?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101456
|
+
numberOfCardsPerRow?: InputMaybe<Scalars['Int']['input']>;
|
|
101457
|
+
overallUptimeDisplay?: InputMaybe<Scalars['String']['input']>;
|
|
101458
|
+
overallUptimeRange?: InputMaybe<Scalars['Int']['input']>;
|
|
101459
|
+
uptimeStyle?: InputMaybe<StakeholderCommsUptimeStyle>;
|
|
101460
|
+
};
|
|
101461
|
+
export declare type StakeholderCommsBodyConfigType = {
|
|
101462
|
+
__typename?: 'StakeholderCommsBodyConfigType';
|
|
101463
|
+
componentStyle?: Maybe<StakeholderCommsComponentStyle>;
|
|
101464
|
+
componentUptimeDisplay?: Maybe<Scalars['String']['output']>;
|
|
101465
|
+
componentUptimeRange?: Maybe<Scalars['Int']['output']>;
|
|
101466
|
+
enableSearchAndFilter?: Maybe<Scalars['Boolean']['output']>;
|
|
101467
|
+
numberOfCardsPerRow?: Maybe<Scalars['Int']['output']>;
|
|
101468
|
+
overallUptimeDisplay?: Maybe<Scalars['String']['output']>;
|
|
101469
|
+
overallUptimeRange?: Maybe<Scalars['Int']['output']>;
|
|
101470
|
+
uptimeStyle?: Maybe<StakeholderCommsUptimeStyle>;
|
|
101471
|
+
};
|
|
101472
|
+
export declare type StakeholderCommsColoursInput = {
|
|
101473
|
+
cssBlueColor?: InputMaybe<Scalars['String']['input']>;
|
|
101474
|
+
cssBodyBackgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
101475
|
+
cssBorderColor?: InputMaybe<Scalars['String']['input']>;
|
|
101476
|
+
cssFontColor?: InputMaybe<Scalars['String']['input']>;
|
|
101477
|
+
cssGraphColor?: InputMaybe<Scalars['String']['input']>;
|
|
101478
|
+
cssGreenColor?: InputMaybe<Scalars['String']['input']>;
|
|
101479
|
+
cssLightFontColor?: InputMaybe<Scalars['String']['input']>;
|
|
101480
|
+
cssLinkColor?: InputMaybe<Scalars['String']['input']>;
|
|
101481
|
+
cssNoDataColor?: InputMaybe<Scalars['String']['input']>;
|
|
101482
|
+
cssOrangeColor?: InputMaybe<Scalars['String']['input']>;
|
|
101483
|
+
cssRedColor?: InputMaybe<Scalars['String']['input']>;
|
|
101484
|
+
cssYellowColor?: InputMaybe<Scalars['String']['input']>;
|
|
101485
|
+
};
|
|
101486
|
+
export declare type StakeholderCommsColoursType = {
|
|
101487
|
+
__typename?: 'StakeholderCommsColoursType';
|
|
101488
|
+
cssBlueColor?: Maybe<Scalars['String']['output']>;
|
|
101489
|
+
cssBodyBackgroundColor?: Maybe<Scalars['String']['output']>;
|
|
101490
|
+
cssBorderColor?: Maybe<Scalars['String']['output']>;
|
|
101491
|
+
cssFontColor?: Maybe<Scalars['String']['output']>;
|
|
101492
|
+
cssGraphColor?: Maybe<Scalars['String']['output']>;
|
|
101493
|
+
cssGreenColor?: Maybe<Scalars['String']['output']>;
|
|
101494
|
+
cssLightFontColor?: Maybe<Scalars['String']['output']>;
|
|
101495
|
+
cssLinkColor?: Maybe<Scalars['String']['output']>;
|
|
101496
|
+
cssNoDataColor?: Maybe<Scalars['String']['output']>;
|
|
101497
|
+
cssOrangeColor?: Maybe<Scalars['String']['output']>;
|
|
101498
|
+
cssRedColor?: Maybe<Scalars['String']['output']>;
|
|
101499
|
+
cssYellowColor?: Maybe<Scalars['String']['output']>;
|
|
101500
|
+
};
|
|
101501
|
+
export declare enum StakeholderCommsComponentStyle {
|
|
101502
|
+
Card = "CARD",
|
|
101503
|
+
Table = "TABLE"
|
|
101504
|
+
}
|
|
101505
|
+
export declare type StakeholderCommsCreatePageInputType = {
|
|
101506
|
+
activityScore?: InputMaybe<Scalars['Int']['input']>;
|
|
101507
|
+
allowPageSubscribers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101508
|
+
allowRssAtomFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101509
|
+
blackHole?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101510
|
+
bodyConfig?: InputMaybe<StakeholderCommsBodyConfigInput>;
|
|
101511
|
+
colours?: InputMaybe<StakeholderCommsColoursInput>;
|
|
101512
|
+
components?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
101513
|
+
createdAt?: InputMaybe<Scalars['String']['input']>;
|
|
101514
|
+
customCss?: InputMaybe<Scalars['String']['input']>;
|
|
101515
|
+
customFooterHtml?: InputMaybe<Scalars['String']['input']>;
|
|
101516
|
+
customHeaderHtml?: InputMaybe<Scalars['String']['input']>;
|
|
101517
|
+
deletedAt?: InputMaybe<Scalars['String']['input']>;
|
|
101518
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
101519
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
101520
|
+
externalAccounts?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
101521
|
+
footerData?: InputMaybe<StakeholderCommsFooterDataInput>;
|
|
101522
|
+
googleAnalyticsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101523
|
+
googleAnalyticsTrackingId?: InputMaybe<Scalars['String']['input']>;
|
|
101524
|
+
headerData?: InputMaybe<StakeholderCommsHeaderDataInput>;
|
|
101525
|
+
helpCenterUrl?: InputMaybe<Scalars['String']['input']>;
|
|
101526
|
+
hiddenFromSearch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101527
|
+
id?: InputMaybe<Scalars['String']['input']>;
|
|
101528
|
+
name: Scalars['String']['input'];
|
|
101529
|
+
pageTheme?: InputMaybe<StakeholderCommsPageTheme>;
|
|
101530
|
+
pageThemeMode?: InputMaybe<StakeholderCommsPageThemeMode>;
|
|
101531
|
+
privacyPolicyUrl?: InputMaybe<Scalars['String']['input']>;
|
|
101532
|
+
seoConfig?: InputMaybe<StakeholderCommsSeoConfigInput>;
|
|
101533
|
+
statusEmbedEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101534
|
+
subdomain?: InputMaybe<Scalars['String']['input']>;
|
|
101535
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
101536
|
+
updatedAt?: InputMaybe<Scalars['String']['input']>;
|
|
101537
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
101538
|
+
};
|
|
101184
101539
|
export declare type StakeholderCommsCreateStakeholderGroupInput = {
|
|
101185
101540
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
101186
101541
|
insertedAt?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -101204,12 +101559,53 @@ export declare type StakeholderCommsCreateStakeholderInput = {
|
|
|
101204
101559
|
stakeholderType: StakeholderCommsStakeholderType;
|
|
101205
101560
|
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
101206
101561
|
};
|
|
101562
|
+
export declare type StakeholderCommsFooterDataInput = {
|
|
101563
|
+
copyrightText?: InputMaybe<Scalars['String']['input']>;
|
|
101564
|
+
footerLogoId?: InputMaybe<Scalars['String']['input']>;
|
|
101565
|
+
footerText?: InputMaybe<Scalars['String']['input']>;
|
|
101566
|
+
links?: InputMaybe<Array<InputMaybe<StakeholderCommsLinkInput>>>;
|
|
101567
|
+
};
|
|
101568
|
+
export declare type StakeholderCommsFooterDataType = {
|
|
101569
|
+
__typename?: 'StakeholderCommsFooterDataType';
|
|
101570
|
+
copyrightText?: Maybe<Scalars['String']['output']>;
|
|
101571
|
+
footerLogoId?: Maybe<Scalars['String']['output']>;
|
|
101572
|
+
footerText?: Maybe<Scalars['String']['output']>;
|
|
101573
|
+
links?: Maybe<Array<Maybe<StakeholderCommsLinkType>>>;
|
|
101574
|
+
};
|
|
101207
101575
|
export declare type StakeholderCommsGroups = {
|
|
101208
101576
|
__typename?: 'StakeholderCommsGroups';
|
|
101209
101577
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
101210
101578
|
id?: Maybe<Scalars['ID']['output']>;
|
|
101211
101579
|
name?: Maybe<Scalars['String']['output']>;
|
|
101212
101580
|
};
|
|
101581
|
+
export declare type StakeholderCommsHeaderDataInput = {
|
|
101582
|
+
coverImageId?: InputMaybe<Scalars['String']['input']>;
|
|
101583
|
+
coverImageImmersive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101584
|
+
faviconIconId?: InputMaybe<Scalars['String']['input']>;
|
|
101585
|
+
headerLogoId?: InputMaybe<Scalars['String']['input']>;
|
|
101586
|
+
headerText?: InputMaybe<Scalars['String']['input']>;
|
|
101587
|
+
links?: InputMaybe<Array<InputMaybe<StakeholderCommsLinkInput>>>;
|
|
101588
|
+
};
|
|
101589
|
+
export declare type StakeholderCommsHeaderDataType = {
|
|
101590
|
+
__typename?: 'StakeholderCommsHeaderDataType';
|
|
101591
|
+
coverImageId?: Maybe<Scalars['String']['output']>;
|
|
101592
|
+
coverImageImmersive?: Maybe<Scalars['Boolean']['output']>;
|
|
101593
|
+
faviconIconId?: Maybe<Scalars['String']['output']>;
|
|
101594
|
+
headerLogoId?: Maybe<Scalars['String']['output']>;
|
|
101595
|
+
headerText?: Maybe<Scalars['String']['output']>;
|
|
101596
|
+
links?: Maybe<Array<Maybe<StakeholderCommsLinkType>>>;
|
|
101597
|
+
};
|
|
101598
|
+
export declare type StakeholderCommsLinkInput = {
|
|
101599
|
+
label?: InputMaybe<Scalars['String']['input']>;
|
|
101600
|
+
position?: InputMaybe<Scalars['Int']['input']>;
|
|
101601
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
101602
|
+
};
|
|
101603
|
+
export declare type StakeholderCommsLinkType = {
|
|
101604
|
+
__typename?: 'StakeholderCommsLinkType';
|
|
101605
|
+
label?: Maybe<Scalars['String']['output']>;
|
|
101606
|
+
position?: Maybe<Scalars['Int']['output']>;
|
|
101607
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
101608
|
+
};
|
|
101213
101609
|
export declare type StakeholderCommsListStakeholderConnectionInput = {
|
|
101214
101610
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101215
101611
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -101242,6 +101638,42 @@ export declare type StakeholderCommsNotificationPreferenceInput = {
|
|
|
101242
101638
|
preference?: InputMaybe<StakeholderCommsPreferencesInput>;
|
|
101243
101639
|
webhook?: InputMaybe<Scalars['String']['input']>;
|
|
101244
101640
|
};
|
|
101641
|
+
export declare type StakeholderCommsPage = {
|
|
101642
|
+
__typename?: 'StakeholderCommsPage';
|
|
101643
|
+
activityScore?: Maybe<Scalars['Int']['output']>;
|
|
101644
|
+
allowPageSubscribers?: Maybe<Scalars['Boolean']['output']>;
|
|
101645
|
+
allowRssAtomFields?: Maybe<Scalars['Boolean']['output']>;
|
|
101646
|
+
blackHole?: Maybe<Scalars['Boolean']['output']>;
|
|
101647
|
+
bodyConfig?: Maybe<StakeholderCommsBodyConfigType>;
|
|
101648
|
+
colours?: Maybe<StakeholderCommsColoursType>;
|
|
101649
|
+
components?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
101650
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
101651
|
+
customCss?: Maybe<Scalars['String']['output']>;
|
|
101652
|
+
customFooterHtml?: Maybe<Scalars['String']['output']>;
|
|
101653
|
+
customHeaderHtml?: Maybe<Scalars['String']['output']>;
|
|
101654
|
+
deletedAt?: Maybe<Scalars['String']['output']>;
|
|
101655
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
101656
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
101657
|
+
externalAccounts?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
101658
|
+
footerData?: Maybe<StakeholderCommsFooterDataType>;
|
|
101659
|
+
googleAnalyticsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
101660
|
+
googleAnalyticsTrackingId?: Maybe<Scalars['String']['output']>;
|
|
101661
|
+
headerData?: Maybe<StakeholderCommsHeaderDataType>;
|
|
101662
|
+
helpCenterUrl?: Maybe<Scalars['String']['output']>;
|
|
101663
|
+
hiddenFromSearch?: Maybe<Scalars['Boolean']['output']>;
|
|
101664
|
+
id: Scalars['String']['output'];
|
|
101665
|
+
name: Scalars['String']['output'];
|
|
101666
|
+
pageTheme?: Maybe<StakeholderCommsPageTheme>;
|
|
101667
|
+
pageThemeMode?: Maybe<StakeholderCommsPageThemeMode>;
|
|
101668
|
+
privacyPolicyUrl?: Maybe<Scalars['String']['output']>;
|
|
101669
|
+
seoConfig?: Maybe<StakeholderCommsSeoConfigType>;
|
|
101670
|
+
statusEmbedEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
101671
|
+
subdomain?: Maybe<Scalars['String']['output']>;
|
|
101672
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
101673
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
101674
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
101675
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
101676
|
+
};
|
|
101245
101677
|
export declare type StakeholderCommsPageInfo = {
|
|
101246
101678
|
__typename?: 'StakeholderCommsPageInfo';
|
|
101247
101679
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -101249,6 +101681,21 @@ export declare type StakeholderCommsPageInfo = {
|
|
|
101249
101681
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
101250
101682
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
101251
101683
|
};
|
|
101684
|
+
export declare type StakeholderCommsPageResponse = {
|
|
101685
|
+
__typename?: 'StakeholderCommsPageResponse';
|
|
101686
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
101687
|
+
page?: Maybe<StakeholderCommsPage>;
|
|
101688
|
+
};
|
|
101689
|
+
export declare enum StakeholderCommsPageTheme {
|
|
101690
|
+
AllSystemsGlow = "ALL_SYSTEMS_GLOW",
|
|
101691
|
+
Blank = "BLANK",
|
|
101692
|
+
ClearSkies = "CLEAR_SKIES",
|
|
101693
|
+
UpAndRunning = "UP_AND_RUNNING"
|
|
101694
|
+
}
|
|
101695
|
+
export declare enum StakeholderCommsPageThemeMode {
|
|
101696
|
+
Dark = "DARK",
|
|
101697
|
+
Light = "LIGHT"
|
|
101698
|
+
}
|
|
101252
101699
|
export declare type StakeholderCommsPaginatedAssignmentByStakeholderInput = {
|
|
101253
101700
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
101254
101701
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -101284,6 +101731,19 @@ export declare type StakeholderCommsPreferencesInput = {
|
|
|
101284
101731
|
sms?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
101285
101732
|
webhook?: InputMaybe<StakeholderCommsModePreferenceInput>;
|
|
101286
101733
|
};
|
|
101734
|
+
export declare type StakeholderCommsSeoConfigInput = {
|
|
101735
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
101736
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101737
|
+
keywords?: InputMaybe<Scalars['String']['input']>;
|
|
101738
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
101739
|
+
};
|
|
101740
|
+
export declare type StakeholderCommsSeoConfigType = {
|
|
101741
|
+
__typename?: 'StakeholderCommsSeoConfigType';
|
|
101742
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
101743
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
101744
|
+
keywords?: Maybe<Scalars['String']['output']>;
|
|
101745
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
101746
|
+
};
|
|
101287
101747
|
export declare type StakeholderCommsStakeholder = {
|
|
101288
101748
|
__typename?: 'StakeholderCommsStakeholder';
|
|
101289
101749
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
@@ -101412,6 +101872,41 @@ export declare enum StakeholderCommsStakeholderType {
|
|
|
101412
101872
|
Internal = "INTERNAL",
|
|
101413
101873
|
Team = "TEAM"
|
|
101414
101874
|
}
|
|
101875
|
+
export declare type StakeholderCommsUpdatePageInputType = {
|
|
101876
|
+
activityScore?: InputMaybe<Scalars['Int']['input']>;
|
|
101877
|
+
allowPageSubscribers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101878
|
+
allowRssAtomFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101879
|
+
blackHole?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101880
|
+
bodyConfig?: InputMaybe<StakeholderCommsBodyConfigInput>;
|
|
101881
|
+
colours?: InputMaybe<StakeholderCommsColoursInput>;
|
|
101882
|
+
components?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
101883
|
+
createdAt?: InputMaybe<Scalars['String']['input']>;
|
|
101884
|
+
customCss?: InputMaybe<Scalars['String']['input']>;
|
|
101885
|
+
customFooterHtml?: InputMaybe<Scalars['String']['input']>;
|
|
101886
|
+
customHeaderHtml?: InputMaybe<Scalars['String']['input']>;
|
|
101887
|
+
deletedAt?: InputMaybe<Scalars['String']['input']>;
|
|
101888
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
101889
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
101890
|
+
externalAccounts?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
101891
|
+
footerData?: InputMaybe<StakeholderCommsFooterDataInput>;
|
|
101892
|
+
googleAnalyticsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101893
|
+
googleAnalyticsTrackingId?: InputMaybe<Scalars['String']['input']>;
|
|
101894
|
+
headerData?: InputMaybe<StakeholderCommsHeaderDataInput>;
|
|
101895
|
+
helpCenterUrl?: InputMaybe<Scalars['String']['input']>;
|
|
101896
|
+
hiddenFromSearch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101897
|
+
id: Scalars['String']['input'];
|
|
101898
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
101899
|
+
pageTheme?: InputMaybe<StakeholderCommsPageTheme>;
|
|
101900
|
+
pageThemeMode?: InputMaybe<StakeholderCommsPageThemeMode>;
|
|
101901
|
+
privacyPolicyUrl?: InputMaybe<Scalars['String']['input']>;
|
|
101902
|
+
seoConfig?: InputMaybe<StakeholderCommsSeoConfigInput>;
|
|
101903
|
+
statusEmbedEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
101904
|
+
subdomain?: InputMaybe<Scalars['String']['input']>;
|
|
101905
|
+
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
101906
|
+
updatedAt?: InputMaybe<Scalars['String']['input']>;
|
|
101907
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
101908
|
+
version?: InputMaybe<Scalars['Int']['input']>;
|
|
101909
|
+
};
|
|
101415
101910
|
export declare type StakeholderCommsUpdateStakeholderGroupInput = {
|
|
101416
101911
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
101417
101912
|
id: Scalars['String']['input'];
|
|
@@ -101428,6 +101923,10 @@ export declare type StakeholderCommsUpdateStakeholderInput = {
|
|
|
101428
101923
|
stakeholderIdInput: StakeholderCommsStakeholderIdInput;
|
|
101429
101924
|
status?: InputMaybe<StakeholderCommsStakeholderStatus>;
|
|
101430
101925
|
};
|
|
101926
|
+
export declare enum StakeholderCommsUptimeStyle {
|
|
101927
|
+
DetailCard = "DETAIL_CARD",
|
|
101928
|
+
OnlyStatus = "ONLY_STATUS"
|
|
101929
|
+
}
|
|
101431
101930
|
export declare type StalePagePayload = {
|
|
101432
101931
|
__typename?: 'StalePagePayload';
|
|
101433
101932
|
lastActivityDate: Scalars['String']['output'];
|
|
@@ -102153,6 +102652,39 @@ export declare type TeamCalendarSettings = {
|
|
|
102153
102652
|
__typename?: 'TeamCalendarSettings';
|
|
102154
102653
|
startDayOfWeek: TeamCalendarDayOfWeek;
|
|
102155
102654
|
};
|
|
102655
|
+
export declare type TeamChildrenConnection = {
|
|
102656
|
+
__typename?: 'TeamChildrenConnection';
|
|
102657
|
+
edges?: Maybe<Array<TeamChildrenEdge>>;
|
|
102658
|
+
nodes?: Maybe<Array<TeamV2>>;
|
|
102659
|
+
pageInfo: PageInfo;
|
|
102660
|
+
};
|
|
102661
|
+
export declare type TeamChildrenEdge = {
|
|
102662
|
+
__typename?: 'TeamChildrenEdge';
|
|
102663
|
+
cursor: Scalars['String']['output'];
|
|
102664
|
+
node?: Maybe<TeamV2>;
|
|
102665
|
+
};
|
|
102666
|
+
export declare type TeamHierarchy = {
|
|
102667
|
+
__typename?: 'TeamHierarchy';
|
|
102668
|
+
ancestorErrors?: Maybe<Array<TeamHierarchyErrors>>;
|
|
102669
|
+
ancestors?: Maybe<Array<TeamV2>>;
|
|
102670
|
+
children?: Maybe<TeamChildrenConnection>;
|
|
102671
|
+
parent?: Maybe<TeamV2>;
|
|
102672
|
+
};
|
|
102673
|
+
export declare type TeamHierarchyChildrenArgs = {
|
|
102674
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
102675
|
+
first?: Scalars['Int']['input'];
|
|
102676
|
+
};
|
|
102677
|
+
export declare enum TeamHierarchyErrorCode {
|
|
102678
|
+
AncestorHierarchyExceedsMaxDepth = "ANCESTOR_HIERARCHY_EXCEEDS_MAX_DEPTH",
|
|
102679
|
+
AncestorInCycle = "ANCESTOR_IN_CYCLE",
|
|
102680
|
+
InvalidAncestorInHierarchy = "INVALID_ANCESTOR_IN_HIERARCHY",
|
|
102681
|
+
TeamInCycle = "TEAM_IN_CYCLE"
|
|
102682
|
+
}
|
|
102683
|
+
export declare type TeamHierarchyErrors = {
|
|
102684
|
+
__typename?: 'TeamHierarchyErrors';
|
|
102685
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
102686
|
+
reason: TeamHierarchyErrorCode;
|
|
102687
|
+
};
|
|
102156
102688
|
export declare type TeamMember = {
|
|
102157
102689
|
__typename?: 'TeamMember';
|
|
102158
102690
|
member?: Maybe<User>;
|
|
@@ -102206,8 +102738,31 @@ export declare enum TeamMembershipState {
|
|
|
102206
102738
|
}
|
|
102207
102739
|
export declare type TeamMutation = {
|
|
102208
102740
|
__typename?: 'TeamMutation';
|
|
102741
|
+
addChild?: Maybe<TeamV2>;
|
|
102742
|
+
addParent?: Maybe<TeamV2>;
|
|
102743
|
+
removeChild?: Maybe<TeamV2>;
|
|
102744
|
+
removeParent?: Maybe<TeamV2>;
|
|
102209
102745
|
updateRoleAssignments?: Maybe<TeamUpdateRoleAssignmentsResponse>;
|
|
102210
102746
|
};
|
|
102747
|
+
export declare type TeamMutationAddChildArgs = {
|
|
102748
|
+
childId: Scalars['ID']['input'];
|
|
102749
|
+
siteId: Scalars['ID']['input'];
|
|
102750
|
+
teamId: Scalars['ID']['input'];
|
|
102751
|
+
};
|
|
102752
|
+
export declare type TeamMutationAddParentArgs = {
|
|
102753
|
+
parentId: Scalars['ID']['input'];
|
|
102754
|
+
siteId: Scalars['ID']['input'];
|
|
102755
|
+
teamId: Scalars['ID']['input'];
|
|
102756
|
+
};
|
|
102757
|
+
export declare type TeamMutationRemoveChildArgs = {
|
|
102758
|
+
childId: Scalars['ID']['input'];
|
|
102759
|
+
siteId: Scalars['ID']['input'];
|
|
102760
|
+
teamId: Scalars['ID']['input'];
|
|
102761
|
+
};
|
|
102762
|
+
export declare type TeamMutationRemoveParentArgs = {
|
|
102763
|
+
siteId: Scalars['ID']['input'];
|
|
102764
|
+
teamId: Scalars['ID']['input'];
|
|
102765
|
+
};
|
|
102211
102766
|
export declare type TeamMutationUpdateRoleAssignmentsArgs = {
|
|
102212
102767
|
organizationId: Scalars['ID']['input'];
|
|
102213
102768
|
principalsToAdd: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
@@ -102347,6 +102902,7 @@ export declare type TeamV2 = Node & {
|
|
|
102347
102902
|
creator?: Maybe<User>;
|
|
102348
102903
|
description?: Maybe<Scalars['String']['output']>;
|
|
102349
102904
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
102905
|
+
hierarchy?: Maybe<TeamHierarchy>;
|
|
102350
102906
|
id: Scalars['ID']['output'];
|
|
102351
102907
|
isVerified?: Maybe<Scalars['Boolean']['output']>;
|
|
102352
102908
|
largeAvatarImageUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -105843,9 +106399,8 @@ export declare type TrelloCreateApplicationInput = {
|
|
|
105843
106399
|
};
|
|
105844
106400
|
export declare type TrelloCreateApplicationPayload = Payload & {
|
|
105845
106401
|
__typename?: 'TrelloCreateApplicationPayload';
|
|
106402
|
+
application?: Maybe<TrelloApplication>;
|
|
105846
106403
|
errors?: Maybe<Array<MutationError>>;
|
|
105847
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
105848
|
-
oauth2Client?: Maybe<TrelloOAuth2Client>;
|
|
105849
106404
|
success: Scalars['Boolean']['output'];
|
|
105850
106405
|
};
|
|
105851
106406
|
export declare type TrelloCreateCardAction = TrelloAction & TrelloCardActionData & {
|