@forge/cli-shared 6.8.0 → 6.8.1-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/out/graphql/graphql-types.d.ts +267 -10
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +16 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.8.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [0881ee9]
|
|
8
|
+
- @forge/manifest@9.1.0-next.1
|
|
9
|
+
|
|
10
|
+
## 6.8.1-next.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [680704b]
|
|
15
|
+
- @forge/manifest@9.1.0-next.0
|
|
16
|
+
|
|
3
17
|
## 6.8.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
|
@@ -799,7 +799,8 @@ export declare type AgentStudioAgent = {
|
|
|
799
799
|
};
|
|
800
800
|
export declare type AgentStudioAgentResult = AgentStudioAssistant | AgentStudioServiceAgent | QueryError;
|
|
801
801
|
export declare enum AgentStudioAgentType {
|
|
802
|
-
Assistant = "ASSISTANT"
|
|
802
|
+
Assistant = "ASSISTANT",
|
|
803
|
+
ServiceAgent = "SERVICE_AGENT"
|
|
803
804
|
}
|
|
804
805
|
export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
805
806
|
__typename?: 'AgentStudioAssistant';
|
|
@@ -841,10 +842,12 @@ export declare type AgentStudioCreateAgentInput = {
|
|
|
841
842
|
actions?: InputMaybe<AgentStudioActionConfigurationInput>;
|
|
842
843
|
agentType: AgentStudioAgentType;
|
|
843
844
|
conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
845
|
+
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
844
846
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
845
847
|
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
848
|
+
jiraProjectId?: InputMaybe<Scalars['ID']['input']>;
|
|
846
849
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
847
|
-
name
|
|
850
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
848
851
|
};
|
|
849
852
|
export declare type AgentStudioCreateAgentPayload = Payload & {
|
|
850
853
|
__typename?: 'AgentStudioCreateAgentPayload';
|
|
@@ -4073,6 +4076,17 @@ export declare type ChangeOwnerWarning = {
|
|
|
4073
4076
|
contentId?: Maybe<Scalars['Long']['output']>;
|
|
4074
4077
|
message?: Maybe<Scalars['String']['output']>;
|
|
4075
4078
|
};
|
|
4079
|
+
export declare type ChannelPlatformSampleQueue = {
|
|
4080
|
+
__typename?: 'ChannelPlatformSampleQueue';
|
|
4081
|
+
config?: Maybe<ChannelPlatformSampleQueueConfig>;
|
|
4082
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
4083
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4084
|
+
};
|
|
4085
|
+
export declare type ChannelPlatformSampleQueueConfig = {
|
|
4086
|
+
__typename?: 'ChannelPlatformSampleQueueConfig';
|
|
4087
|
+
maxItems?: Maybe<Scalars['Int']['output']>;
|
|
4088
|
+
queueId?: Maybe<Scalars['ID']['output']>;
|
|
4089
|
+
};
|
|
4076
4090
|
export declare type CheckConsentPermissionByOAuthClientIdInput = {
|
|
4077
4091
|
cloudId: Scalars['ID']['input'];
|
|
4078
4092
|
oauthClientId: Scalars['ID']['input'];
|
|
@@ -15952,7 +15966,7 @@ export declare type ConfluencePdfExportTask = {
|
|
|
15952
15966
|
progressPercent?: Maybe<Scalars['Int']['output']>;
|
|
15953
15967
|
secondsElapsed?: Maybe<Scalars['Long']['output']>;
|
|
15954
15968
|
};
|
|
15955
|
-
export declare type ConfluencePerson =
|
|
15969
|
+
export declare type ConfluencePerson = {
|
|
15956
15970
|
__typename?: 'ConfluencePerson';
|
|
15957
15971
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
15958
15972
|
accountType?: Maybe<Scalars['String']['output']>;
|
|
@@ -31192,6 +31206,8 @@ export declare type GraphStore = {
|
|
|
31192
31206
|
branchInRepoInverse?: Maybe<GraphStoreSimplifiedBranchInRepoInverseConnection>;
|
|
31193
31207
|
calendarHasLinkedDocument?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentConnection>;
|
|
31194
31208
|
calendarHasLinkedDocumentInverse?: Maybe<GraphStoreSimplifiedCalendarHasLinkedDocumentInverseConnection>;
|
|
31209
|
+
commitBelongsToPullRequest?: Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestConnection>;
|
|
31210
|
+
commitBelongsToPullRequestInverse?: Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestInverseConnection>;
|
|
31195
31211
|
commitInRepo?: Maybe<GraphStoreSimplifiedCommitInRepoConnection>;
|
|
31196
31212
|
commitInRepoInverse?: Maybe<GraphStoreSimplifiedCommitInRepoInverseConnection>;
|
|
31197
31213
|
componentAssociatedDocument?: Maybe<GraphStoreSimplifiedComponentAssociatedDocumentConnection>;
|
|
@@ -32122,6 +32138,20 @@ export declare type GraphStoreCalendarHasLinkedDocumentInverseArgs = {
|
|
|
32122
32138
|
id: Scalars['ID']['input'];
|
|
32123
32139
|
sort?: InputMaybe<GraphStoreCalendarHasLinkedDocumentSortInput>;
|
|
32124
32140
|
};
|
|
32141
|
+
export declare type GraphStoreCommitBelongsToPullRequestArgs = {
|
|
32142
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32143
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32144
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32145
|
+
id: Scalars['ID']['input'];
|
|
32146
|
+
sort?: InputMaybe<GraphStoreCommitBelongsToPullRequestSortInput>;
|
|
32147
|
+
};
|
|
32148
|
+
export declare type GraphStoreCommitBelongsToPullRequestInverseArgs = {
|
|
32149
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
32150
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
32151
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
32152
|
+
id: Scalars['ID']['input'];
|
|
32153
|
+
sort?: InputMaybe<GraphStoreCommitBelongsToPullRequestSortInput>;
|
|
32154
|
+
};
|
|
32125
32155
|
export declare type GraphStoreCommitInRepoArgs = {
|
|
32126
32156
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32127
32157
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37259,6 +37289,9 @@ export declare type GraphStoreBranchInRepoSortInput = {
|
|
|
37259
37289
|
export declare type GraphStoreCalendarHasLinkedDocumentSortInput = {
|
|
37260
37290
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37261
37291
|
};
|
|
37292
|
+
export declare type GraphStoreCommitBelongsToPullRequestSortInput = {
|
|
37293
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37294
|
+
};
|
|
37262
37295
|
export declare type GraphStoreCommitInRepoSortInput = {
|
|
37263
37296
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
37264
37297
|
};
|
|
@@ -43370,6 +43403,34 @@ export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseEdge = {
|
|
|
43370
43403
|
};
|
|
43371
43404
|
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentInverseUnion = ExternalCalendarEvent;
|
|
43372
43405
|
export declare type GraphStoreSimplifiedCalendarHasLinkedDocumentUnion = DevOpsDocument | ExternalDocument;
|
|
43406
|
+
export declare type GraphStoreSimplifiedCommitBelongsToPullRequestConnection = HasPageInfo & {
|
|
43407
|
+
__typename?: 'GraphStoreSimplifiedCommitBelongsToPullRequestConnection';
|
|
43408
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestEdge>>>;
|
|
43409
|
+
pageInfo: PageInfo;
|
|
43410
|
+
};
|
|
43411
|
+
export declare type GraphStoreSimplifiedCommitBelongsToPullRequestEdge = {
|
|
43412
|
+
__typename?: 'GraphStoreSimplifiedCommitBelongsToPullRequestEdge';
|
|
43413
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43414
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43415
|
+
id: Scalars['ID']['output'];
|
|
43416
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43417
|
+
node?: Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestUnion>;
|
|
43418
|
+
};
|
|
43419
|
+
export declare type GraphStoreSimplifiedCommitBelongsToPullRequestInverseConnection = HasPageInfo & {
|
|
43420
|
+
__typename?: 'GraphStoreSimplifiedCommitBelongsToPullRequestInverseConnection';
|
|
43421
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestInverseEdge>>>;
|
|
43422
|
+
pageInfo: PageInfo;
|
|
43423
|
+
};
|
|
43424
|
+
export declare type GraphStoreSimplifiedCommitBelongsToPullRequestInverseEdge = {
|
|
43425
|
+
__typename?: 'GraphStoreSimplifiedCommitBelongsToPullRequestInverseEdge';
|
|
43426
|
+
createdAt: Scalars['DateTime']['output'];
|
|
43427
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
43428
|
+
id: Scalars['ID']['output'];
|
|
43429
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
43430
|
+
node?: Maybe<GraphStoreSimplifiedCommitBelongsToPullRequestInverseUnion>;
|
|
43431
|
+
};
|
|
43432
|
+
export declare type GraphStoreSimplifiedCommitBelongsToPullRequestInverseUnion = ExternalCommit;
|
|
43433
|
+
export declare type GraphStoreSimplifiedCommitBelongsToPullRequestUnion = DevOpsPullRequestDetails | ExternalPullRequest;
|
|
43373
43434
|
export declare type GraphStoreSimplifiedCommitInRepoConnection = HasPageInfo & {
|
|
43374
43435
|
__typename?: 'GraphStoreSimplifiedCommitInRepoConnection';
|
|
43375
43436
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedCommitInRepoEdge>>>;
|
|
@@ -50686,6 +50747,10 @@ export declare enum GrowthUnifiedProfileCompanyType {
|
|
|
50686
50747
|
Private = "PRIVATE",
|
|
50687
50748
|
Public = "PUBLIC"
|
|
50688
50749
|
}
|
|
50750
|
+
export declare type GrowthUnifiedProfileConfluenceActivityContext = {
|
|
50751
|
+
__typename?: 'GrowthUnifiedProfileConfluenceActivityContext';
|
|
50752
|
+
r28PageDwells?: Maybe<Scalars['Int']['output']>;
|
|
50753
|
+
};
|
|
50689
50754
|
export declare type GrowthUnifiedProfileConfluenceOnboardingContext = {
|
|
50690
50755
|
__typename?: 'GrowthUnifiedProfileConfluenceOnboardingContext';
|
|
50691
50756
|
jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
|
|
@@ -50806,11 +50871,13 @@ export declare type GrowthUnifiedProfileLinkedEntities = {
|
|
|
50806
50871
|
};
|
|
50807
50872
|
export declare type GrowthUnifiedProfileMarketingContext = {
|
|
50808
50873
|
__typename?: 'GrowthUnifiedProfileMarketingContext';
|
|
50874
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
50809
50875
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
50810
50876
|
sessionId?: Maybe<Scalars['String']['output']>;
|
|
50811
50877
|
utm?: Maybe<GrowthUnifiedProfileMarketingUtm>;
|
|
50812
50878
|
};
|
|
50813
50879
|
export declare type GrowthUnifiedProfileMarketingContextInput = {
|
|
50880
|
+
domain?: InputMaybe<Scalars['String']['input']>;
|
|
50814
50881
|
sessionId?: InputMaybe<Scalars['String']['input']>;
|
|
50815
50882
|
utm?: InputMaybe<GrowthUnifiedProfileMarketingUtmInput>;
|
|
50816
50883
|
};
|
|
@@ -50904,6 +50971,7 @@ export declare type GrowthUnifiedProfileResult = {
|
|
|
50904
50971
|
paidChannelContext?: Maybe<GrowthUnifiedProfilePaidChannelContextByProduct>;
|
|
50905
50972
|
seoContext?: Maybe<GrowthUnifiedProfileSeoContext>;
|
|
50906
50973
|
sites?: Maybe<Array<Maybe<GrowthUnifiedProfileSiteDetails>>>;
|
|
50974
|
+
userActivityContext?: Maybe<GrowthUnifiedProfileUserActivityContext>;
|
|
50907
50975
|
userFootprints?: Maybe<GrowthUnifiedProfileUserFootprints>;
|
|
50908
50976
|
userProfile?: Maybe<GrowthUnifiedProfileUserProfile>;
|
|
50909
50977
|
};
|
|
@@ -50938,6 +51006,15 @@ export declare enum GrowthUnifiedProfileTeamType {
|
|
|
50938
51006
|
SoftwareDevelopment = "SOFTWARE_DEVELOPMENT",
|
|
50939
51007
|
SoftwareEngineering = "SOFTWARE_ENGINEERING"
|
|
50940
51008
|
}
|
|
51009
|
+
export declare type GrowthUnifiedProfileUserActivityContext = {
|
|
51010
|
+
__typename?: 'GrowthUnifiedProfileUserActivityContext';
|
|
51011
|
+
sites?: Maybe<Array<Maybe<GrowthUnifiedProfileUserActivitySiteDetails>>>;
|
|
51012
|
+
};
|
|
51013
|
+
export declare type GrowthUnifiedProfileUserActivitySiteDetails = {
|
|
51014
|
+
__typename?: 'GrowthUnifiedProfileUserActivitySiteDetails';
|
|
51015
|
+
cloudId?: Maybe<Scalars['String']['output']>;
|
|
51016
|
+
confluence?: Maybe<GrowthUnifiedProfileConfluenceActivityContext>;
|
|
51017
|
+
};
|
|
50941
51018
|
export declare type GrowthUnifiedProfileUserFootprints = {
|
|
50942
51019
|
__typename?: 'GrowthUnifiedProfileUserFootprints';
|
|
50943
51020
|
hasAtlassianAccount?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -63798,9 +63875,18 @@ export declare type JiraPlaybookStepRunEdge = {
|
|
|
63798
63875
|
node?: Maybe<JiraPlaybookStepRun>;
|
|
63799
63876
|
};
|
|
63800
63877
|
export declare enum JiraPlaybookStepRunStatus {
|
|
63878
|
+
Aborted = "ABORTED",
|
|
63879
|
+
ConfigChange = "CONFIG_CHANGE",
|
|
63801
63880
|
Failed = "FAILED",
|
|
63881
|
+
Failure = "FAILURE",
|
|
63802
63882
|
InProgress = "IN_PROGRESS",
|
|
63803
|
-
|
|
63883
|
+
Loop = "LOOP",
|
|
63884
|
+
NoActionsPerformed = "NO_ACTIONS_PERFORMED",
|
|
63885
|
+
QueuedForRetry = "QUEUED_FOR_RETRY",
|
|
63886
|
+
SomeErrors = "SOME_ERRORS",
|
|
63887
|
+
Success = "SUCCESS",
|
|
63888
|
+
Throttled = "THROTTLED",
|
|
63889
|
+
Waiting = "WAITING"
|
|
63804
63890
|
}
|
|
63805
63891
|
export declare enum JiraPlaybookStepType {
|
|
63806
63892
|
AutomationRule = "AUTOMATION_RULE",
|
|
@@ -68917,6 +69003,7 @@ export declare type JiraSubscription = {
|
|
|
68917
69003
|
onIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
68918
69004
|
onIssueExported?: Maybe<JiraIssueExportEvent>;
|
|
68919
69005
|
onIssueUpdatedByProject?: Maybe<JiraIssue>;
|
|
69006
|
+
onIssueUpdatedByProjectNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
68920
69007
|
onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
|
|
68921
69008
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
68922
69009
|
onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
@@ -68980,6 +69067,10 @@ export declare type JiraSubscriptionOnIssueUpdatedByProjectArgs = {
|
|
|
68980
69067
|
cloudId: Scalars['ID']['input'];
|
|
68981
69068
|
projectId: Scalars['String']['input'];
|
|
68982
69069
|
};
|
|
69070
|
+
export declare type JiraSubscriptionOnIssueUpdatedByProjectNoEnrichmentArgs = {
|
|
69071
|
+
cloudId: Scalars['ID']['input'];
|
|
69072
|
+
projectId: Scalars['String']['input'];
|
|
69073
|
+
};
|
|
68983
69074
|
export declare type JiraSubscriptionOnJirtIssueSubscriptionArgs = {
|
|
68984
69075
|
atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
68985
69076
|
cloudId: Scalars['ID']['input'];
|
|
@@ -70056,6 +70147,7 @@ export declare type JiraUserPreferencesMutation = {
|
|
|
70056
70147
|
__typename?: 'JiraUserPreferencesMutation';
|
|
70057
70148
|
dismissDateFieldAssociationMessageByIssueKey?: Maybe<JiraDateFieldAssociationMessageMutationPayload>;
|
|
70058
70149
|
saveRequestTypeTableViewSettings?: Maybe<Scalars['String']['output']>;
|
|
70150
|
+
setIsIssueViewHideDoneChildIssuesFilterEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
70059
70151
|
setIssueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayoutMutationPayload>;
|
|
70060
70152
|
setJQLBuilderSearchMode?: Maybe<JiraJqlBuilderSearchModeMutationPayload>;
|
|
70061
70153
|
setNaturalLanguageSpotlightTourEnabled?: Maybe<JiraNaturalLanguageSearchSpotlightTourEnabledMutationPayload>;
|
|
@@ -70071,6 +70163,9 @@ export declare type JiraUserPreferencesMutationSaveRequestTypeTableViewSettingsA
|
|
|
70071
70163
|
projectKey: Scalars['String']['input'];
|
|
70072
70164
|
viewSettings: Scalars['String']['input'];
|
|
70073
70165
|
};
|
|
70166
|
+
export declare type JiraUserPreferencesMutationSetIsIssueViewHideDoneChildIssuesFilterEnabledArgs = {
|
|
70167
|
+
isHideDoneEnabled: Scalars['Boolean']['input'];
|
|
70168
|
+
};
|
|
70074
70169
|
export declare type JiraUserPreferencesMutationSetIssueNavigatorSearchLayoutArgs = {
|
|
70075
70170
|
searchLayout?: InputMaybe<JiraIssueNavigatorSearchLayout>;
|
|
70076
70171
|
};
|
|
@@ -72460,6 +72555,7 @@ export declare type KnowledgeDiscoveryDefinitionList = {
|
|
|
72460
72555
|
export declare type KnowledgeDiscoveryDefinitionResult = KnowledgeDiscoveryDefinition | QueryError;
|
|
72461
72556
|
export declare enum KnowledgeDiscoveryDefinitionScope {
|
|
72462
72557
|
Blogpost = "BLOGPOST",
|
|
72558
|
+
Goal = "GOAL",
|
|
72463
72559
|
Organization = "ORGANIZATION",
|
|
72464
72560
|
Page = "PAGE",
|
|
72465
72561
|
Project = "PROJECT",
|
|
@@ -72605,6 +72701,8 @@ export declare type KnowledgeDiscoveryQueryApi = {
|
|
|
72605
72701
|
bookmark?: Maybe<KnowledgeDiscoveryBookmarkResult>;
|
|
72606
72702
|
definition?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
72607
72703
|
definitionHistory?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
72704
|
+
definitionHistoryV2?: Maybe<KnowledgeDiscoveryDefinitionHistoryResult>;
|
|
72705
|
+
definitionV2?: Maybe<KnowledgeDiscoveryDefinitionResult>;
|
|
72608
72706
|
keyPhrases?: Maybe<KnowledgeDiscoveryKeyPhrasesResult>;
|
|
72609
72707
|
relatedEntities?: Maybe<KnowledgeDiscoveryRelatedEntitiesResult>;
|
|
72610
72708
|
searchRelatedEntities?: Maybe<KnowledgeDiscoverySearchRelatedEntitiesResult>;
|
|
@@ -72650,6 +72748,16 @@ export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryArgs = {
|
|
|
72650
72748
|
spaceId?: InputMaybe<Scalars['String']['input']>;
|
|
72651
72749
|
workspaceId: Scalars['String']['input'];
|
|
72652
72750
|
};
|
|
72751
|
+
export declare type KnowledgeDiscoveryQueryApiDefinitionHistoryV2Args = {
|
|
72752
|
+
keyPhrase: Scalars['String']['input'];
|
|
72753
|
+
scopes?: InputMaybe<Array<KnowledgeDiscoveryScopeInput>>;
|
|
72754
|
+
workspaceId: Scalars['String']['input'];
|
|
72755
|
+
};
|
|
72756
|
+
export declare type KnowledgeDiscoveryQueryApiDefinitionV2Args = {
|
|
72757
|
+
keyPhrase: Scalars['String']['input'];
|
|
72758
|
+
scopes?: InputMaybe<Array<KnowledgeDiscoveryScopeInput>>;
|
|
72759
|
+
workspaceId: Scalars['String']['input'];
|
|
72760
|
+
};
|
|
72653
72761
|
export declare type KnowledgeDiscoveryQueryApiKeyPhrasesArgs = {
|
|
72654
72762
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
72655
72763
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -72718,6 +72826,10 @@ export declare type KnowledgeDiscoveryRelatedEntityRequest = {
|
|
|
72718
72826
|
export declare type KnowledgeDiscoveryRelatedEntityRequests = {
|
|
72719
72827
|
requests?: InputMaybe<Array<KnowledgeDiscoveryRelatedEntityRequest>>;
|
|
72720
72828
|
};
|
|
72829
|
+
export declare type KnowledgeDiscoveryScopeInput = {
|
|
72830
|
+
entityIdInScope: Scalars['String']['input'];
|
|
72831
|
+
scope: KnowledgeDiscoveryDefinitionScope;
|
|
72832
|
+
};
|
|
72721
72833
|
export declare enum KnowledgeDiscoverySearchQueryClassification {
|
|
72722
72834
|
KeywordOrAcronym = "KEYWORD_OR_ACRONYM",
|
|
72723
72835
|
NaturalLanguageQuery = "NATURAL_LANGUAGE_QUERY",
|
|
@@ -74000,6 +74112,43 @@ export declare enum MarketplaceConsoleDevSpaceTier {
|
|
|
74000
74112
|
Platinum = "PLATINUM",
|
|
74001
74113
|
Silver = "SILVER"
|
|
74002
74114
|
}
|
|
74115
|
+
export declare type MarketplaceConsoleEditAppVersionRequest = {
|
|
74116
|
+
appKey: Scalars['ID']['input'];
|
|
74117
|
+
buildNumber: Scalars['ID']['input'];
|
|
74118
|
+
compatibilities?: InputMaybe<Array<MarketplaceConsoleAppSoftwareVersionCompatibilityInput>>;
|
|
74119
|
+
deploymentInstructions?: InputMaybe<Array<MarketplaceConsoleDeploymentInstructionInput>>;
|
|
74120
|
+
documentationUrl?: InputMaybe<Scalars['String']['input']>;
|
|
74121
|
+
eulaUrl?: InputMaybe<Scalars['String']['input']>;
|
|
74122
|
+
heroImageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
74123
|
+
highlights?: InputMaybe<Array<MarketplaceConsoleListingHighLightInput>>;
|
|
74124
|
+
isBeta?: InputMaybe<Scalars['Boolean']['input']>;
|
|
74125
|
+
isSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
74126
|
+
learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
|
|
74127
|
+
licenseType?: InputMaybe<MarketplaceConsoleAppSoftwareVersionLicenseTypeId>;
|
|
74128
|
+
moreDetails?: InputMaybe<Scalars['String']['input']>;
|
|
74129
|
+
purchaseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
74130
|
+
releaseNotes?: InputMaybe<Scalars['String']['input']>;
|
|
74131
|
+
releaseSummary?: InputMaybe<Scalars['String']['input']>;
|
|
74132
|
+
screenshots?: InputMaybe<Array<MarketplaceConsoleListingScreenshotInput>>;
|
|
74133
|
+
sourceCodeLicenseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
74134
|
+
youtubeId?: InputMaybe<Scalars['String']['input']>;
|
|
74135
|
+
};
|
|
74136
|
+
export declare type MarketplaceConsoleEditVersionError = MarketplaceConsoleError & {
|
|
74137
|
+
__typename?: 'MarketplaceConsoleEditVersionError';
|
|
74138
|
+
id: Scalars['ID']['output'];
|
|
74139
|
+
message: Scalars['String']['output'];
|
|
74140
|
+
path?: Maybe<Scalars['String']['output']>;
|
|
74141
|
+
subCode?: Maybe<Scalars['String']['output']>;
|
|
74142
|
+
};
|
|
74143
|
+
export declare type MarketplaceConsoleEditVersionMutationKnownError = {
|
|
74144
|
+
__typename?: 'MarketplaceConsoleEditVersionMutationKnownError';
|
|
74145
|
+
errors?: Maybe<Array<Maybe<MarketplaceConsoleEditVersionError>>>;
|
|
74146
|
+
};
|
|
74147
|
+
export declare type MarketplaceConsoleEditVersionMutationResponse = MarketplaceConsoleEditVersionMutationKnownError | MarketplaceConsoleEditVersionMutationSuccessResponse;
|
|
74148
|
+
export declare type MarketplaceConsoleEditVersionMutationSuccessResponse = {
|
|
74149
|
+
__typename?: 'MarketplaceConsoleEditVersionMutationSuccessResponse';
|
|
74150
|
+
versions?: Maybe<Array<Maybe<MarketplaceConsoleAppSoftwareVersion>>>;
|
|
74151
|
+
};
|
|
74003
74152
|
export declare type MarketplaceConsoleEdition = {
|
|
74004
74153
|
__typename?: 'MarketplaceConsoleEdition';
|
|
74005
74154
|
features: Array<MarketplaceConsoleFeature>;
|
|
@@ -74293,6 +74442,7 @@ export declare type MarketplaceConsoleMutationApi = {
|
|
|
74293
74442
|
createPrivateAppSoftwareVersion?: Maybe<MarketplaceConsoleCreatePrivateAppVersionMutationOutput>;
|
|
74294
74443
|
deleteAppSoftwareToken?: Maybe<MarketplaceConsoleMutationVoidResponse>;
|
|
74295
74444
|
deleteAppVersion?: Maybe<MarketplaceConsoleDeleteAppVersionResponse>;
|
|
74445
|
+
editAppVersion?: Maybe<MarketplaceConsoleEditVersionMutationResponse>;
|
|
74296
74446
|
editions?: Maybe<Array<Maybe<MarketplaceConsoleEditionResponse>>>;
|
|
74297
74447
|
makeAppVersionPublic?: Maybe<MarketplaceConsoleMakeAppVersionPublicMutationOutput>;
|
|
74298
74448
|
updateAppDetails?: Maybe<MarketplaceConsoleUpdateAppDetailsResponse>;
|
|
@@ -74320,6 +74470,9 @@ export declare type MarketplaceConsoleMutationApiDeleteAppSoftwareTokenArgs = {
|
|
|
74320
74470
|
export declare type MarketplaceConsoleMutationApiDeleteAppVersionArgs = {
|
|
74321
74471
|
deleteVersion: MarketplaceConsoleAppVersionDeleteRequestInput;
|
|
74322
74472
|
};
|
|
74473
|
+
export declare type MarketplaceConsoleMutationApiEditAppVersionArgs = {
|
|
74474
|
+
editAppVersionRequest: MarketplaceConsoleEditAppVersionRequest;
|
|
74475
|
+
};
|
|
74323
74476
|
export declare type MarketplaceConsoleMutationApiEditionsArgs = {
|
|
74324
74477
|
editions: Array<MarketplaceConsoleEditionInput>;
|
|
74325
74478
|
product: MarketplaceConsoleEditionsInput;
|
|
@@ -75337,6 +75490,10 @@ export declare type MarketplaceStoreOrgDetails = MarketplaceStoreMultiInstanceDe
|
|
|
75337
75490
|
multiInstanceEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
75338
75491
|
status?: Maybe<Scalars['String']['output']>;
|
|
75339
75492
|
};
|
|
75493
|
+
export declare type MarketplaceStoreOrgIdResponse = {
|
|
75494
|
+
__typename?: 'MarketplaceStoreOrgIdResponse';
|
|
75495
|
+
orgId: Scalars['String']['output'];
|
|
75496
|
+
};
|
|
75340
75497
|
export declare type MarketplaceStoreOrgMultiInstanceEntitlement = {
|
|
75341
75498
|
__typename?: 'MarketplaceStoreOrgMultiInstanceEntitlement';
|
|
75342
75499
|
cloudId: Scalars['String']['output'];
|
|
@@ -75502,6 +75659,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
75502
75659
|
multiInstanceEntitlementForApp: MarketplaceStoreMultiInstanceEntitlementForAppResponse;
|
|
75503
75660
|
multiInstanceEntitlementsForUser: MarketplaceStoreMultiInstanceEntitlementsForUserResponse;
|
|
75504
75661
|
myReview: MarketplaceStoreCurrentUserReviewResponse;
|
|
75662
|
+
orgId: MarketplaceStoreOrgIdResponse;
|
|
75505
75663
|
partner: MarketplaceStorePartnerResponse;
|
|
75506
75664
|
};
|
|
75507
75665
|
export declare type MarketplaceStoreQueryApiAppReviewsByAppIdArgs = {
|
|
@@ -75561,6 +75719,9 @@ export declare type MarketplaceStoreQueryApiMultiInstanceEntitlementsForUserArgs
|
|
|
75561
75719
|
export declare type MarketplaceStoreQueryApiMyReviewArgs = {
|
|
75562
75720
|
appKey: Scalars['String']['input'];
|
|
75563
75721
|
};
|
|
75722
|
+
export declare type MarketplaceStoreQueryApiOrgIdArgs = {
|
|
75723
|
+
cloudId: Scalars['String']['input'];
|
|
75724
|
+
};
|
|
75564
75725
|
export declare type MarketplaceStoreQueryApiPartnerArgs = {
|
|
75565
75726
|
developerId?: InputMaybe<Scalars['ID']['input']>;
|
|
75566
75727
|
vendorId: Scalars['ID']['input'];
|
|
@@ -75722,6 +75883,17 @@ export declare type MercuryAggregatedPortfolioStatusCount = {
|
|
|
75722
75883
|
__typename?: 'MercuryAggregatedPortfolioStatusCount';
|
|
75723
75884
|
children: MercuryFocusAreaStatusCount;
|
|
75724
75885
|
};
|
|
75886
|
+
export declare type MercuryArchiveFocusAreaChange = MercuryChangeInterface & Node & {
|
|
75887
|
+
__typename?: 'MercuryArchiveFocusAreaChange';
|
|
75888
|
+
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
75889
|
+
changeType: MercuryChangeType;
|
|
75890
|
+
createdBy?: Maybe<User>;
|
|
75891
|
+
createdDate: Scalars['DateTime']['output'];
|
|
75892
|
+
id: Scalars['ID']['output'];
|
|
75893
|
+
targetFocusArea?: Maybe<MercuryFocusArea>;
|
|
75894
|
+
updatedBy?: Maybe<User>;
|
|
75895
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
75896
|
+
};
|
|
75725
75897
|
export declare type MercuryArchiveFocusAreaChangeInput = {
|
|
75726
75898
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
75727
75899
|
};
|
|
@@ -75744,7 +75916,7 @@ export declare type MercuryBudgetAggregation = {
|
|
|
75744
75916
|
aggregatedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
75745
75917
|
totalAssignedBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
75746
75918
|
};
|
|
75747
|
-
export declare type MercuryChange = MercuryCreateFocusAreaChange | MercuryPositionAllocationChange;
|
|
75919
|
+
export declare type MercuryChange = MercuryArchiveFocusAreaChange | MercuryCreateFocusAreaChange | MercuryMoveFundsChange | MercuryMovePositionsChange | MercuryPositionAllocationChange | MercuryRequestFundsChange | MercuryRequestPositionsChange;
|
|
75748
75920
|
export declare type MercuryChangeConnection = {
|
|
75749
75921
|
__typename?: 'MercuryChangeConnection';
|
|
75750
75922
|
edges?: Maybe<Array<Maybe<MercuryChangeEdge>>>;
|
|
@@ -75786,6 +75958,8 @@ export declare type MercuryChangeProposalComment = {
|
|
|
75786
75958
|
createdBy?: Maybe<User>;
|
|
75787
75959
|
createdDate: Scalars['String']['output'];
|
|
75788
75960
|
id: Scalars['ID']['output'];
|
|
75961
|
+
updatedBy?: Maybe<User>;
|
|
75962
|
+
updatedDate?: Maybe<Scalars['String']['output']>;
|
|
75789
75963
|
};
|
|
75790
75964
|
export declare type MercuryChangeProposalCommentConnection = {
|
|
75791
75965
|
__typename?: 'MercuryChangeProposalCommentConnection';
|
|
@@ -75841,8 +76015,13 @@ export declare enum MercuryChangeSortField {
|
|
|
75841
76015
|
Type = "TYPE"
|
|
75842
76016
|
}
|
|
75843
76017
|
export declare enum MercuryChangeType {
|
|
76018
|
+
ArchiveFocusArea = "ARCHIVE_FOCUS_AREA",
|
|
75844
76019
|
CreateFocusArea = "CREATE_FOCUS_AREA",
|
|
75845
|
-
|
|
76020
|
+
MoveFunds = "MOVE_FUNDS",
|
|
76021
|
+
MovePositions = "MOVE_POSITIONS",
|
|
76022
|
+
PositionAllocation = "POSITION_ALLOCATION",
|
|
76023
|
+
RequestFunds = "REQUEST_FUNDS",
|
|
76024
|
+
RequestPositions = "REQUEST_POSITIONS"
|
|
75846
76025
|
}
|
|
75847
76026
|
export declare type MercuryComment = Node & {
|
|
75848
76027
|
__typename?: 'MercuryComment';
|
|
@@ -76566,11 +76745,38 @@ export declare type MercuryMediaToken = {
|
|
|
76566
76745
|
__typename?: 'MercuryMediaToken';
|
|
76567
76746
|
token: Scalars['String']['output'];
|
|
76568
76747
|
};
|
|
76748
|
+
export declare type MercuryMoveFundsChange = MercuryChangeInterface & Node & {
|
|
76749
|
+
__typename?: 'MercuryMoveFundsChange';
|
|
76750
|
+
amount: Scalars['BigDecimal']['output'];
|
|
76751
|
+
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
76752
|
+
changeType: MercuryChangeType;
|
|
76753
|
+
createdBy?: Maybe<User>;
|
|
76754
|
+
createdDate: Scalars['DateTime']['output'];
|
|
76755
|
+
id: Scalars['ID']['output'];
|
|
76756
|
+
sourceFocusArea?: Maybe<MercuryFocusArea>;
|
|
76757
|
+
targetFocusArea?: Maybe<MercuryFocusArea>;
|
|
76758
|
+
updatedBy?: Maybe<User>;
|
|
76759
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
76760
|
+
};
|
|
76569
76761
|
export declare type MercuryMoveFundsChangeInput = {
|
|
76570
76762
|
amount: Scalars['BigDecimal']['input'];
|
|
76571
76763
|
sourceFocusAreaId: Scalars['ID']['input'];
|
|
76572
76764
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
76573
76765
|
};
|
|
76766
|
+
export declare type MercuryMovePositionsChange = MercuryChangeInterface & Node & {
|
|
76767
|
+
__typename?: 'MercuryMovePositionsChange';
|
|
76768
|
+
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
76769
|
+
changeType: MercuryChangeType;
|
|
76770
|
+
cost?: Maybe<Scalars['BigDecimal']['output']>;
|
|
76771
|
+
createdBy?: Maybe<User>;
|
|
76772
|
+
createdDate: Scalars['DateTime']['output'];
|
|
76773
|
+
id: Scalars['ID']['output'];
|
|
76774
|
+
positionsAmount: Scalars['Int']['output'];
|
|
76775
|
+
sourceFocusArea?: Maybe<MercuryFocusArea>;
|
|
76776
|
+
targetFocusArea?: Maybe<MercuryFocusArea>;
|
|
76777
|
+
updatedBy?: Maybe<User>;
|
|
76778
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
76779
|
+
};
|
|
76574
76780
|
export declare type MercuryMovePositionsChangeInput = {
|
|
76575
76781
|
cost?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
76576
76782
|
positionsAmount: Scalars['Int']['input'];
|
|
@@ -76809,7 +77015,7 @@ export declare type MercuryProposeChangesInput = {
|
|
|
76809
77015
|
createFocusAreas?: InputMaybe<Array<MercuryCreateFocusAreaChangeInput>>;
|
|
76810
77016
|
moveFunds?: InputMaybe<Array<MercuryMoveFundsChangeInput>>;
|
|
76811
77017
|
movePositions?: InputMaybe<Array<MercuryMovePositionsChangeInput>>;
|
|
76812
|
-
positionAllocations
|
|
77018
|
+
positionAllocations?: InputMaybe<Array<MercuryPositionAllocationChangeInput>>;
|
|
76813
77019
|
requestFunds?: InputMaybe<Array<MercuryRequestFundsChangeInput>>;
|
|
76814
77020
|
requestPositions?: InputMaybe<Array<MercuryRequestPositionsChangeInput>>;
|
|
76815
77021
|
};
|
|
@@ -77161,10 +77367,35 @@ export declare type MercuryRemoveWatcherFromFocusAreaPayload = Payload & {
|
|
|
77161
77367
|
errors?: Maybe<Array<MutationError>>;
|
|
77162
77368
|
success: Scalars['Boolean']['output'];
|
|
77163
77369
|
};
|
|
77370
|
+
export declare type MercuryRequestFundsChange = MercuryChangeInterface & Node & {
|
|
77371
|
+
__typename?: 'MercuryRequestFundsChange';
|
|
77372
|
+
amount: Scalars['BigDecimal']['output'];
|
|
77373
|
+
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
77374
|
+
changeType: MercuryChangeType;
|
|
77375
|
+
createdBy?: Maybe<User>;
|
|
77376
|
+
createdDate: Scalars['DateTime']['output'];
|
|
77377
|
+
id: Scalars['ID']['output'];
|
|
77378
|
+
targetFocusArea?: Maybe<MercuryFocusArea>;
|
|
77379
|
+
updatedBy?: Maybe<User>;
|
|
77380
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
77381
|
+
};
|
|
77164
77382
|
export declare type MercuryRequestFundsChangeInput = {
|
|
77165
77383
|
amount: Scalars['BigDecimal']['input'];
|
|
77166
77384
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
77167
77385
|
};
|
|
77386
|
+
export declare type MercuryRequestPositionsChange = MercuryChangeInterface & Node & {
|
|
77387
|
+
__typename?: 'MercuryRequestPositionsChange';
|
|
77388
|
+
changeProposal?: Maybe<MercuryChangeProposal>;
|
|
77389
|
+
changeType: MercuryChangeType;
|
|
77390
|
+
cost?: Maybe<Scalars['BigDecimal']['output']>;
|
|
77391
|
+
createdBy?: Maybe<User>;
|
|
77392
|
+
createdDate: Scalars['DateTime']['output'];
|
|
77393
|
+
id: Scalars['ID']['output'];
|
|
77394
|
+
positionsAmount: Scalars['Int']['output'];
|
|
77395
|
+
targetFocusArea?: Maybe<MercuryFocusArea>;
|
|
77396
|
+
updatedBy?: Maybe<User>;
|
|
77397
|
+
updatedDate: Scalars['DateTime']['output'];
|
|
77398
|
+
};
|
|
77168
77399
|
export declare type MercuryRequestPositionsChangeInput = {
|
|
77169
77400
|
cost?: InputMaybe<Scalars['BigDecimal']['input']>;
|
|
77170
77401
|
positionsAmount: Scalars['Int']['input'];
|
|
@@ -78308,6 +78539,7 @@ export declare type Mutation = {
|
|
|
78308
78539
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
78309
78540
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
78310
78541
|
publishReleaseNote: ContentPlatformReleaseNote;
|
|
78542
|
+
radar_createCustomField?: Maybe<RadarMutationResponse>;
|
|
78311
78543
|
radar_createRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
78312
78544
|
radar_deleteRoleAssignment?: Maybe<RadarMutationResponse>;
|
|
78313
78545
|
radar_updateFieldSettings?: Maybe<RadarMutationResponse>;
|
|
@@ -79735,6 +79967,10 @@ export declare type MutationPublicLinkSpacesActionArgs = {
|
|
|
79735
79967
|
export declare type MutationPublishReleaseNoteArgs = {
|
|
79736
79968
|
id: Scalars['String']['input'];
|
|
79737
79969
|
};
|
|
79970
|
+
export declare type MutationRadar_CreateCustomFieldArgs = {
|
|
79971
|
+
cloudId: Scalars['ID']['input'];
|
|
79972
|
+
input: RadarCustomFieldInput;
|
|
79973
|
+
};
|
|
79738
79974
|
export declare type MutationRadar_CreateRoleAssignmentArgs = {
|
|
79739
79975
|
cloudId: Scalars['ID']['input'];
|
|
79740
79976
|
input: RadarRoleAssignmentRequest;
|
|
@@ -82862,6 +83098,7 @@ export declare type Query = {
|
|
|
82862
83098
|
catchupGetLastViewedTime?: Maybe<CatchupLastViewedTimeResponse>;
|
|
82863
83099
|
catchupVersionDiffMetadataForContent?: Maybe<CatchupVersionDiffMetadataResponse>;
|
|
82864
83100
|
ccp?: Maybe<CcpQueryApi>;
|
|
83101
|
+
channelPlatform_sampleQueueById?: Maybe<ChannelPlatformSampleQueue>;
|
|
82865
83102
|
classificationLevel?: Maybe<ContentDataClassificationLevel>;
|
|
82866
83103
|
classificationLevels?: Maybe<Array<ContentDataClassificationLevel>>;
|
|
82867
83104
|
codeInJira?: Maybe<CodeInJira>;
|
|
@@ -83736,6 +83973,9 @@ export declare type QueryCatchupVersionDiffMetadataForContentArgs = {
|
|
|
83736
83973
|
originalContentVersion: Scalars['Int']['input'];
|
|
83737
83974
|
revisedContentVersion: Scalars['Int']['input'];
|
|
83738
83975
|
};
|
|
83976
|
+
export declare type QueryChannelPlatform_SampleQueueByIdArgs = {
|
|
83977
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
83978
|
+
};
|
|
83739
83979
|
export declare type QueryClassificationLevelArgs = {
|
|
83740
83980
|
id: Scalars['String']['input'];
|
|
83741
83981
|
};
|
|
@@ -85913,7 +86153,6 @@ export declare type QueryRadar_PositionsSearchArgs = {
|
|
|
85913
86153
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
85914
86154
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
85915
86155
|
cloudId: Scalars['ID']['input'];
|
|
85916
|
-
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
85917
86156
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85918
86157
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
85919
86158
|
rql?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -86423,6 +86662,14 @@ export declare type RadarConnection = {
|
|
|
86423
86662
|
pageInfo: PageInfo;
|
|
86424
86663
|
totalCount: Scalars['Int']['output'];
|
|
86425
86664
|
};
|
|
86665
|
+
export declare type RadarCustomFieldInput = {
|
|
86666
|
+
displayName: Scalars['String']['input'];
|
|
86667
|
+
entity: RadarEntityType;
|
|
86668
|
+
relativeId: Scalars['String']['input'];
|
|
86669
|
+
sensitivityLevel: RadarSensitivityLevel;
|
|
86670
|
+
sourceField: Scalars['String']['input'];
|
|
86671
|
+
type: RadarFieldType;
|
|
86672
|
+
};
|
|
86426
86673
|
export declare type RadarDateFieldValue = {
|
|
86427
86674
|
__typename?: 'RadarDateFieldValue';
|
|
86428
86675
|
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -86445,6 +86692,9 @@ export declare type RadarEntity = {
|
|
|
86445
86692
|
id: Scalars['ID']['output'];
|
|
86446
86693
|
type?: Maybe<RadarEntityType>;
|
|
86447
86694
|
};
|
|
86695
|
+
export declare type RadarEntityFieldValuesArgs = {
|
|
86696
|
+
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
86697
|
+
};
|
|
86448
86698
|
export declare enum RadarEntityType {
|
|
86449
86699
|
FocusArea = "focusArea",
|
|
86450
86700
|
Position = "position",
|
|
@@ -86619,8 +86869,8 @@ export declare type RadarPermissions = {
|
|
|
86619
86869
|
principalsByResourceRoles?: Maybe<Array<RadarPrincipalByResourceRole>>;
|
|
86620
86870
|
};
|
|
86621
86871
|
export declare type RadarPermissionsInput = {
|
|
86622
|
-
canManagersAllocate
|
|
86623
|
-
canManagersViewSensitiveFields
|
|
86872
|
+
canManagersAllocate?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86873
|
+
canManagersViewSensitiveFields?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86624
86874
|
};
|
|
86625
86875
|
export declare type RadarPosition = Node & RadarEntity & {
|
|
86626
86876
|
__typename?: 'RadarPosition';
|
|
@@ -86634,6 +86884,9 @@ export declare type RadarPosition = Node & RadarEntity & {
|
|
|
86634
86884
|
type?: Maybe<RadarEntityType>;
|
|
86635
86885
|
worker?: Maybe<RadarWorker>;
|
|
86636
86886
|
};
|
|
86887
|
+
export declare type RadarPositionFieldValuesArgs = {
|
|
86888
|
+
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
86889
|
+
};
|
|
86637
86890
|
export declare type RadarPositionConnection = RadarConnection & {
|
|
86638
86891
|
__typename?: 'RadarPositionConnection';
|
|
86639
86892
|
edges?: Maybe<Array<RadarPositionEdge>>;
|
|
@@ -86713,6 +86966,9 @@ export declare type RadarWorker = Node & RadarEntity & {
|
|
|
86713
86966
|
type: RadarEntityType;
|
|
86714
86967
|
user?: Maybe<User>;
|
|
86715
86968
|
};
|
|
86969
|
+
export declare type RadarWorkerFieldValuesArgs = {
|
|
86970
|
+
fieldIdIsIn?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
86971
|
+
};
|
|
86716
86972
|
export declare type RadarWorkerConnection = RadarConnection & {
|
|
86717
86973
|
__typename?: 'RadarWorkerConnection';
|
|
86718
86974
|
edges?: Maybe<Array<RadarWorkerEdge>>;
|
|
@@ -89682,6 +89938,7 @@ export declare type ShepherdAlert = Node & {
|
|
|
89682
89938
|
linkedResources?: Maybe<Array<Maybe<ShepherdLinkedResource>>>;
|
|
89683
89939
|
orgId?: Maybe<Scalars['ID']['output']>;
|
|
89684
89940
|
product: ShepherdAtlassianProduct;
|
|
89941
|
+
replacementAlertId?: Maybe<Scalars['ID']['output']>;
|
|
89685
89942
|
status: ShepherdAlertStatus;
|
|
89686
89943
|
statusUpdatedOn?: Maybe<Scalars['DateTime']['output']>;
|
|
89687
89944
|
supportingData?: Maybe<ShepherdAlertSupportingData>;
|