@forge/cli-shared 6.6.1-next.3 → 6.6.1-next.5
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 +13 -0
- package/out/graphql/graphql-types.d.ts +171 -83
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +31 -28
- package/out/service/supported-products-service.d.ts +1 -1
- package/out/service/supported-products-service.d.ts.map +1 -1
- package/out/service/supported-products-service.js +3 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.6.1-next.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [3302cc2]
|
|
8
|
+
- @forge/util@1.4.8-next.0
|
|
9
|
+
|
|
10
|
+
## 6.6.1-next.4
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 71dc617: update primaryProduct to requiredProducts
|
|
15
|
+
|
|
3
16
|
## 6.6.1-next.3
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -778,12 +778,21 @@ export declare type AgentStudioActionConfiguration = {
|
|
|
778
778
|
__typename?: 'AgentStudioActionConfiguration';
|
|
779
779
|
actions?: Maybe<Array<AgentStudioAction>>;
|
|
780
780
|
};
|
|
781
|
+
export declare type AgentStudioActionConfigurationInput = {
|
|
782
|
+
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
783
|
+
};
|
|
784
|
+
export declare type AgentStudioActionInput = {
|
|
785
|
+
actionKey: Scalars['String']['input'];
|
|
786
|
+
};
|
|
781
787
|
export declare type AgentStudioAgent = {
|
|
782
788
|
description?: Maybe<Scalars['String']['output']>;
|
|
783
789
|
id: Scalars['ID']['output'];
|
|
784
790
|
name?: Maybe<Scalars['String']['output']>;
|
|
785
791
|
};
|
|
786
792
|
export declare type AgentStudioAgentResult = AgentStudioAssistant | QueryError;
|
|
793
|
+
export declare enum AgentStudioAgentType {
|
|
794
|
+
Assistant = "ASSISTANT"
|
|
795
|
+
}
|
|
787
796
|
export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
788
797
|
__typename?: 'AgentStudioAssistant';
|
|
789
798
|
actions?: Maybe<AgentStudioActionConfiguration>;
|
|
@@ -792,8 +801,77 @@ export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
|
792
801
|
description?: Maybe<Scalars['String']['output']>;
|
|
793
802
|
id: Scalars['ID']['output'];
|
|
794
803
|
instructions?: Maybe<Scalars['String']['output']>;
|
|
804
|
+
knowledgeSources?: Maybe<AgentStudioKnowledgeConfiguration>;
|
|
795
805
|
name?: Maybe<Scalars['String']['output']>;
|
|
796
806
|
};
|
|
807
|
+
export declare type AgentStudioConfluenceKnowledgeFilter = {
|
|
808
|
+
__typename?: 'AgentStudioConfluenceKnowledgeFilter';
|
|
809
|
+
parentFilter?: Maybe<Array<Scalars['ID']['output']>>;
|
|
810
|
+
spaceFilter?: Maybe<Array<Scalars['ID']['output']>>;
|
|
811
|
+
};
|
|
812
|
+
export declare type AgentStudioConfluenceKnowledgeFilterInput = {
|
|
813
|
+
parentFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
814
|
+
spaceFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
815
|
+
};
|
|
816
|
+
export declare type AgentStudioCreateAgentInput = {
|
|
817
|
+
actions?: InputMaybe<AgentStudioActionConfigurationInput>;
|
|
818
|
+
agentType: AgentStudioAgentType;
|
|
819
|
+
conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
820
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
821
|
+
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
822
|
+
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
823
|
+
name: Scalars['String']['input'];
|
|
824
|
+
};
|
|
825
|
+
export declare type AgentStudioCreateAgentPayload = Payload & {
|
|
826
|
+
__typename?: 'AgentStudioCreateAgentPayload';
|
|
827
|
+
agent?: Maybe<AgentStudioAgent>;
|
|
828
|
+
errors?: Maybe<Array<MutationError>>;
|
|
829
|
+
success: Scalars['Boolean']['output'];
|
|
830
|
+
};
|
|
831
|
+
export declare type AgentStudioJiraKnowledgeFilter = {
|
|
832
|
+
__typename?: 'AgentStudioJiraKnowledgeFilter';
|
|
833
|
+
projectFilter?: Maybe<Array<Scalars['ID']['output']>>;
|
|
834
|
+
};
|
|
835
|
+
export declare type AgentStudioJiraKnowledgeFilterInput = {
|
|
836
|
+
projectFilter?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
837
|
+
};
|
|
838
|
+
export declare type AgentStudioKnowledgeConfiguration = {
|
|
839
|
+
__typename?: 'AgentStudioKnowledgeConfiguration';
|
|
840
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
841
|
+
sources?: Maybe<Array<AgentStudioKnowledgeSource>>;
|
|
842
|
+
};
|
|
843
|
+
export declare type AgentStudioKnowledgeConfigurationInput = {
|
|
844
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
845
|
+
sources?: InputMaybe<Array<AgentStudioKnowledgeSourceInput>>;
|
|
846
|
+
};
|
|
847
|
+
export declare type AgentStudioKnowledgeFilter = AgentStudioConfluenceKnowledgeFilter | AgentStudioJiraKnowledgeFilter;
|
|
848
|
+
export declare type AgentStudioKnowledgeFiltersInput = {
|
|
849
|
+
confluenceFilter?: InputMaybe<AgentStudioConfluenceKnowledgeFilterInput>;
|
|
850
|
+
jiraFilter?: InputMaybe<AgentStudioJiraKnowledgeFilterInput>;
|
|
851
|
+
};
|
|
852
|
+
export declare type AgentStudioKnowledgeSource = {
|
|
853
|
+
__typename?: 'AgentStudioKnowledgeSource';
|
|
854
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
855
|
+
filters?: Maybe<AgentStudioKnowledgeFilter>;
|
|
856
|
+
source: Scalars['String']['output'];
|
|
857
|
+
};
|
|
858
|
+
export declare type AgentStudioKnowledgeSourceInput = {
|
|
859
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
860
|
+
filters?: InputMaybe<AgentStudioKnowledgeFiltersInput>;
|
|
861
|
+
source: Scalars['String']['input'];
|
|
862
|
+
};
|
|
863
|
+
export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
864
|
+
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
865
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
866
|
+
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
867
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
868
|
+
};
|
|
869
|
+
export declare type AgentStudioUpdateAgentDetailsPayload = Payload & {
|
|
870
|
+
__typename?: 'AgentStudioUpdateAgentDetailsPayload';
|
|
871
|
+
agent?: Maybe<AgentStudioAgent>;
|
|
872
|
+
errors?: Maybe<Array<MutationError>>;
|
|
873
|
+
success: Scalars['Boolean']['output'];
|
|
874
|
+
};
|
|
797
875
|
export declare enum AlertEventStatus {
|
|
798
876
|
Acknowledged = "ACKNOWLEDGED",
|
|
799
877
|
Closed = "CLOSED",
|
|
@@ -857,13 +935,10 @@ export declare enum AnalyticsEventName {
|
|
|
857
935
|
WhiteboardViewed = "whiteboard_viewed"
|
|
858
936
|
}
|
|
859
937
|
export declare enum AnalyticsMeasuresEventName {
|
|
860
|
-
CurrentBlogpostCountSitestateMeasured = "currentBlogpostCount_sitestate_measured",
|
|
861
938
|
CurrentBlogpostCountSpacestateMeasured = "currentBlogpostCount_spacestate_measured",
|
|
862
|
-
CurrentDatabaseCountSitestateMeasured = "currentDatabaseCount_sitestate_measured",
|
|
863
939
|
CurrentDatabaseCountSpacestateMeasured = "currentDatabaseCount_spacestate_measured",
|
|
864
|
-
|
|
940
|
+
CurrentLivedocsCountSpacestateMeasured = "currentLivedocsCount_spacestate_measured",
|
|
865
941
|
CurrentPageCountSpacestateMeasured = "currentPageCount_spacestate_measured",
|
|
866
|
-
CurrentWhiteboardCountSitestateMeasured = "currentWhiteboardCount_sitestate_measured",
|
|
867
942
|
CurrentWhiteboardCountSpacestateMeasured = "currentWhiteboardCount_spacestate_measured",
|
|
868
943
|
InactivePageCountSitestateMeasured = "inactivePageCount_sitestate_measured",
|
|
869
944
|
InactivePageCountSpacestateMeasured = "inactivePageCount_spacestate_measured",
|
|
@@ -874,6 +949,7 @@ export declare enum AnalyticsMeasuresEventName {
|
|
|
874
949
|
TotalActiveSpacesSitestateMeasured = "totalActiveSpaces_sitestate_measured",
|
|
875
950
|
TotalCurrentBlogpostCountSitestateMeasured = "totalCurrentBlogpostCount_sitestate_measured",
|
|
876
951
|
TotalCurrentDatabaseCountSitestateMeasured = "totalCurrentDatabaseCount_sitestate_measured",
|
|
952
|
+
TotalCurrentLivedocsCountSitestateMeasured = "totalCurrentLivedocsCount_sitestate_measured",
|
|
877
953
|
TotalCurrentPageCountSitestateMeasured = "totalCurrentPageCount_sitestate_measured",
|
|
878
954
|
TotalCurrentWhiteboardCountSitestateMeasured = "totalCurrentWhiteboardCount_sitestate_measured",
|
|
879
955
|
TotalPagesDeactivatedOwnerSitestateMeasured = "totalPagesDeactivatedOwner_sitestate_measured",
|
|
@@ -882,6 +958,7 @@ export declare enum AnalyticsMeasuresEventName {
|
|
|
882
958
|
export declare enum AnalyticsMeasuresSpaceEventName {
|
|
883
959
|
CurrentBlogpostCountSpacestateMeasured = "currentBlogpostCount_spacestate_measured",
|
|
884
960
|
CurrentDatabaseCountSpacestateMeasured = "currentDatabaseCount_spacestate_measured",
|
|
961
|
+
CurrentLivedocsCountSpacestateMeasured = "currentLivedocsCount_spacestate_measured",
|
|
885
962
|
CurrentPageCountSpacestateMeasured = "currentPageCount_spacestate_measured",
|
|
886
963
|
CurrentWhiteboardCountSpacestateMeasured = "currentWhiteboardCount_spacestate_measured",
|
|
887
964
|
InactivePageCountSpacestateMeasured = "inactivePageCount_spacestate_measured",
|
|
@@ -16312,64 +16389,6 @@ export declare type ConfluenceWhiteboardLinks = {
|
|
|
16312
16389
|
base?: Maybe<Scalars['String']['output']>;
|
|
16313
16390
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
16314
16391
|
};
|
|
16315
|
-
export declare type ConfluenceWorkflow = {
|
|
16316
|
-
__typename?: 'ConfluenceWorkflow';
|
|
16317
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
16318
|
-
id: Scalars['ID']['output'];
|
|
16319
|
-
name: Scalars['String']['output'];
|
|
16320
|
-
workflowId: Scalars['ID']['output'];
|
|
16321
|
-
};
|
|
16322
|
-
export declare type ConfluenceWorkflowApplication = {
|
|
16323
|
-
__typename?: 'ConfluenceWorkflowApplication';
|
|
16324
|
-
availableTransitions?: Maybe<Array<Maybe<ConfluenceWorkflowTransition>>>;
|
|
16325
|
-
currentWorkflowStatus?: Maybe<ConfluenceWorkflowStatus>;
|
|
16326
|
-
workflow: ConfluenceWorkflow;
|
|
16327
|
-
};
|
|
16328
|
-
export declare type ConfluenceWorkflowApplicationConnection = {
|
|
16329
|
-
__typename?: 'ConfluenceWorkflowApplicationConnection';
|
|
16330
|
-
edges?: Maybe<Array<Maybe<ConfluenceWorkflowApplicationEdge>>>;
|
|
16331
|
-
nodes?: Maybe<Array<Maybe<ConfluenceWorkflowApplication>>>;
|
|
16332
|
-
pageInfo: ConfluencePageInfo;
|
|
16333
|
-
};
|
|
16334
|
-
export declare type ConfluenceWorkflowApplicationEdge = {
|
|
16335
|
-
__typename?: 'ConfluenceWorkflowApplicationEdge';
|
|
16336
|
-
cursor: Scalars['String']['output'];
|
|
16337
|
-
node?: Maybe<ConfluenceWorkflowApplication>;
|
|
16338
|
-
};
|
|
16339
|
-
export declare type ConfluenceWorkflowConnection = {
|
|
16340
|
-
__typename?: 'ConfluenceWorkflowConnection';
|
|
16341
|
-
edges?: Maybe<Array<Maybe<ConfluenceWorkflowEdge>>>;
|
|
16342
|
-
nodes?: Maybe<Array<Maybe<ConfluenceWorkflow>>>;
|
|
16343
|
-
pageInfo: ConfluencePageInfo;
|
|
16344
|
-
};
|
|
16345
|
-
export declare type ConfluenceWorkflowEdge = {
|
|
16346
|
-
__typename?: 'ConfluenceWorkflowEdge';
|
|
16347
|
-
cursor: Scalars['String']['output'];
|
|
16348
|
-
node?: Maybe<ConfluenceWorkflow>;
|
|
16349
|
-
};
|
|
16350
|
-
export declare type ConfluenceWorkflowStatus = {
|
|
16351
|
-
__typename?: 'ConfluenceWorkflowStatus';
|
|
16352
|
-
displayProperties?: Maybe<ConfluenceWorkflowStatusDisplayProperties>;
|
|
16353
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
16354
|
-
};
|
|
16355
|
-
export declare type ConfluenceWorkflowStatusDisplayProperties = {
|
|
16356
|
-
__typename?: 'ConfluenceWorkflowStatusDisplayProperties';
|
|
16357
|
-
color?: Maybe<Scalars['String']['output']>;
|
|
16358
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
16359
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
16360
|
-
};
|
|
16361
|
-
export declare type ConfluenceWorkflowTransition = {
|
|
16362
|
-
__typename?: 'ConfluenceWorkflowTransition';
|
|
16363
|
-
destinationStatus: ConfluenceWorkflowStatus;
|
|
16364
|
-
displayProperties?: Maybe<ConfluenceWorkflowTransitionDisplayProperties>;
|
|
16365
|
-
id: Scalars['ID']['output'];
|
|
16366
|
-
startStatus?: Maybe<ConfluenceWorkflowStatus>;
|
|
16367
|
-
};
|
|
16368
|
-
export declare type ConfluenceWorkflowTransitionDisplayProperties = {
|
|
16369
|
-
__typename?: 'ConfluenceWorkflowTransitionDisplayProperties';
|
|
16370
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
16371
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
16372
|
-
};
|
|
16373
16392
|
export declare type Confluence_CqlMetaData = {
|
|
16374
16393
|
__typename?: 'Confluence_cqlMetaData';
|
|
16375
16394
|
cqlContentTypes: Array<Maybe<CqlDisplayableType>>;
|
|
@@ -21204,6 +21223,7 @@ export declare type DevAiPhaseStartedAutodevLog = DevAiAutodevLog & {
|
|
|
21204
21223
|
priority?: Maybe<DevAiAutodevLogPriority>;
|
|
21205
21224
|
status?: Maybe<DevAiAutodevLogStatus>;
|
|
21206
21225
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
21226
|
+
userCommand?: Maybe<Scalars['String']['output']>;
|
|
21207
21227
|
};
|
|
21208
21228
|
export declare type DevAiPlaintextAutodevLog = DevAiAutodevLog & {
|
|
21209
21229
|
__typename?: 'DevAiPlaintextAutodevLog';
|
|
@@ -23003,6 +23023,11 @@ export declare type EarliestViewViewedForUser = {
|
|
|
23003
23023
|
datetime?: Maybe<Scalars['String']['output']>;
|
|
23004
23024
|
};
|
|
23005
23025
|
export declare type EcosystemApp = App | EcosystemConnectApp;
|
|
23026
|
+
export declare type EcosystemAppInstallationConfigExtension = {
|
|
23027
|
+
__typename?: 'EcosystemAppInstallationConfigExtension';
|
|
23028
|
+
key: Scalars['String']['output'];
|
|
23029
|
+
value: Scalars['Boolean']['output'];
|
|
23030
|
+
};
|
|
23006
23031
|
export declare enum EcosystemAppInstallationConfigIdType {
|
|
23007
23032
|
Cloud = "CLOUD",
|
|
23008
23033
|
Installation = "INSTALLATION"
|
|
@@ -23675,6 +23700,7 @@ export declare type Extension = {
|
|
|
23675
23700
|
environmentType: Scalars['String']['output'];
|
|
23676
23701
|
id: Scalars['ID']['output'];
|
|
23677
23702
|
installation?: Maybe<AppInstallationSummary>;
|
|
23703
|
+
installationConfig?: Maybe<Array<EcosystemAppInstallationConfigExtension>>;
|
|
23678
23704
|
installationId: Scalars['String']['output'];
|
|
23679
23705
|
key: Scalars['String']['output'];
|
|
23680
23706
|
license?: Maybe<AppInstallationLicense>;
|
|
@@ -23682,6 +23708,7 @@ export declare type Extension = {
|
|
|
23682
23708
|
migrationKey?: Maybe<Scalars['String']['output']>;
|
|
23683
23709
|
name?: Maybe<Scalars['String']['output']>;
|
|
23684
23710
|
oauthClientId: Scalars['ID']['output'];
|
|
23711
|
+
overrides?: Maybe<Scalars['JSON']['output']>;
|
|
23685
23712
|
principal?: Maybe<AppPrincipal>;
|
|
23686
23713
|
properties: Scalars['JSON']['output'];
|
|
23687
23714
|
remoteInstallationRegion?: Maybe<Scalars['String']['output']>;
|
|
@@ -29631,6 +29658,8 @@ export declare type GraphStore = {
|
|
|
29631
29658
|
atlasProjectHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection>;
|
|
29632
29659
|
atlasProjectHasOwner?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerConnection>;
|
|
29633
29660
|
atlasProjectHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection>;
|
|
29661
|
+
atlasProjectHasUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateConnection>;
|
|
29662
|
+
atlasProjectHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection>;
|
|
29634
29663
|
atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
|
|
29635
29664
|
atlasProjectIsRelatedToAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection>;
|
|
29636
29665
|
atlasProjectIsTrackedOnJiraEpic?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
@@ -30364,6 +30393,20 @@ export declare type GraphStoreAtlasProjectHasOwnerInverseArgs = {
|
|
|
30364
30393
|
id: Scalars['ID']['input'];
|
|
30365
30394
|
sort?: InputMaybe<GraphStoreAtlasProjectHasOwnerSortInput>;
|
|
30366
30395
|
};
|
|
30396
|
+
export declare type GraphStoreAtlasProjectHasUpdateArgs = {
|
|
30397
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30398
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30399
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30400
|
+
id: Scalars['ID']['input'];
|
|
30401
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
30402
|
+
};
|
|
30403
|
+
export declare type GraphStoreAtlasProjectHasUpdateInverseArgs = {
|
|
30404
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30405
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30406
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30407
|
+
id: Scalars['ID']['input'];
|
|
30408
|
+
sort?: InputMaybe<GraphStoreAtlasProjectHasUpdateSortInput>;
|
|
30409
|
+
};
|
|
30367
30410
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectArgs = {
|
|
30368
30411
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30369
30412
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34184,6 +34227,9 @@ export declare type GraphStoreAtlasProjectHasFollowerSortInput = {
|
|
|
34184
34227
|
export declare type GraphStoreAtlasProjectHasOwnerSortInput = {
|
|
34185
34228
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34186
34229
|
};
|
|
34230
|
+
export declare type GraphStoreAtlasProjectHasUpdateSortInput = {
|
|
34231
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34232
|
+
};
|
|
34187
34233
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
|
|
34188
34234
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34189
34235
|
};
|
|
@@ -35311,7 +35357,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
35311
35357
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
35312
35358
|
id: Scalars['ID']['output'];
|
|
35313
35359
|
};
|
|
35314
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
35360
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
35315
35361
|
export declare type GraphStoreCypherQueryNode = {
|
|
35316
35362
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
35317
35363
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -35336,8 +35382,8 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
35336
35382
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
35337
35383
|
id: Scalars['ID']['output'];
|
|
35338
35384
|
};
|
|
35339
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
35340
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject;
|
|
35385
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
35386
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | JiraAlignAggProject | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPostIncidentReviewLink | JiraProject | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | MercuryFocusArea | OpsgenieTeam | RadarPosition | TeamV2 | ThirdPartyUser | TownsquareGoal | TownsquareProject | TownsquareProjectUpdate;
|
|
35341
35387
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
35342
35388
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
35343
35389
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -40364,6 +40410,34 @@ export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseEdge = {
|
|
|
40364
40410
|
};
|
|
40365
40411
|
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseUnion = TownsquareProject;
|
|
40366
40412
|
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
40413
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateConnection = HasPageInfo & {
|
|
40414
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateConnection';
|
|
40415
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateEdge>>>;
|
|
40416
|
+
pageInfo: PageInfo;
|
|
40417
|
+
};
|
|
40418
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateEdge = {
|
|
40419
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateEdge';
|
|
40420
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40421
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40422
|
+
id: Scalars['ID']['output'];
|
|
40423
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40424
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateUnion>;
|
|
40425
|
+
};
|
|
40426
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection = HasPageInfo & {
|
|
40427
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection';
|
|
40428
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge>>>;
|
|
40429
|
+
pageInfo: PageInfo;
|
|
40430
|
+
};
|
|
40431
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge = {
|
|
40432
|
+
__typename?: 'GraphStoreSimplifiedAtlasProjectHasUpdateInverseEdge';
|
|
40433
|
+
createdAt: Scalars['DateTime']['output'];
|
|
40434
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
40435
|
+
id: Scalars['ID']['output'];
|
|
40436
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
40437
|
+
node?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion>;
|
|
40438
|
+
};
|
|
40439
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateInverseUnion = TownsquareProject;
|
|
40440
|
+
export declare type GraphStoreSimplifiedAtlasProjectHasUpdateUnion = TownsquareProjectUpdate;
|
|
40367
40441
|
export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection = HasPageInfo & {
|
|
40368
40442
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection';
|
|
40369
40443
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectEdge>>>;
|
|
@@ -72004,6 +72078,8 @@ export declare type Mutation = {
|
|
|
72004
72078
|
addLabels?: Maybe<AddLabelsPayload>;
|
|
72005
72079
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
72006
72080
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
72081
|
+
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
72082
|
+
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
72007
72083
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
72008
72084
|
appStorage?: Maybe<AppStorageMutation>;
|
|
72009
72085
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -72554,6 +72630,14 @@ export declare type MutationAddReactionArgs = {
|
|
|
72554
72630
|
contentType: GraphQlReactionContentType;
|
|
72555
72631
|
emojiId: Scalars['String']['input'];
|
|
72556
72632
|
};
|
|
72633
|
+
export declare type MutationAgentStudio_CreateAgentArgs = {
|
|
72634
|
+
cloudId: Scalars['String']['input'];
|
|
72635
|
+
input: AgentStudioCreateAgentInput;
|
|
72636
|
+
};
|
|
72637
|
+
export declare type MutationAgentStudio_UpdateAgentDetailsArgs = {
|
|
72638
|
+
id: Scalars['ID']['input'];
|
|
72639
|
+
input: AgentStudioUpdateAgentDetailsInput;
|
|
72640
|
+
};
|
|
72557
72641
|
export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
72558
72642
|
input: ApplyPolarisProjectTemplateInput;
|
|
72559
72643
|
};
|
|
@@ -77031,9 +77115,6 @@ export declare type Query = {
|
|
|
77031
77115
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
77032
77116
|
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
77033
77117
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
77034
|
-
confluence_workflow?: Maybe<ConfluenceWorkflow>;
|
|
77035
|
-
confluence_workflowApplicationsByContentId?: Maybe<ConfluenceWorkflowApplicationConnection>;
|
|
77036
|
-
confluence_workflowsAll?: Maybe<ConfluenceWorkflowConnection>;
|
|
77037
77118
|
connectedData?: Maybe<ConnectedDataQuery>;
|
|
77038
77119
|
connectionManager_connectionsByJiraProject?: Maybe<ConnectionManagerConnectionsByJiraProjectResult>;
|
|
77039
77120
|
contactAdminPageConfig?: Maybe<ContactAdminPageConfig>;
|
|
@@ -78664,19 +78745,6 @@ export declare type QueryConfluence_ValidateCalendarJqlArgs = {
|
|
|
78664
78745
|
cloudId: Scalars['ID']['input'];
|
|
78665
78746
|
jql: Scalars['String']['input'];
|
|
78666
78747
|
};
|
|
78667
|
-
export declare type QueryConfluence_WorkflowArgs = {
|
|
78668
|
-
id: Scalars['ID']['input'];
|
|
78669
|
-
};
|
|
78670
|
-
export declare type QueryConfluence_WorkflowApplicationsByContentIdArgs = {
|
|
78671
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
78672
|
-
contentId: Scalars['ID']['input'];
|
|
78673
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
78674
|
-
};
|
|
78675
|
-
export declare type QueryConfluence_WorkflowsAllArgs = {
|
|
78676
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
78677
|
-
cloudId: Scalars['ID']['input'];
|
|
78678
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
78679
|
-
};
|
|
78680
78748
|
export declare type QueryConnectionManager_ConnectionsByJiraProjectArgs = {
|
|
78681
78749
|
filter?: InputMaybe<ConnectionManagerConnectionsFilter>;
|
|
78682
78750
|
jiraProjectARI?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -79022,6 +79090,8 @@ export declare type QueryDevai_TechnicalPlannerJobByIdArgs = {
|
|
|
79022
79090
|
jobId: Scalars['ID']['input'];
|
|
79023
79091
|
};
|
|
79024
79092
|
export declare type QueryDevai_TechnicalPlannerJobsForIssueArgs = {
|
|
79093
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
79094
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
79025
79095
|
issueAri: Scalars['ID']['input'];
|
|
79026
79096
|
};
|
|
79027
79097
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
@@ -79853,6 +79923,7 @@ export declare type QuerySpacesArgs = {
|
|
|
79853
79923
|
assignedToGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
79854
79924
|
assignedToGroupName?: InputMaybe<Scalars['String']['input']>;
|
|
79855
79925
|
assignedToUser?: InputMaybe<Scalars['String']['input']>;
|
|
79926
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
79856
79927
|
creatorAccountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
79857
79928
|
excludeTypes?: InputMaybe<Scalars['String']['input']>;
|
|
79858
79929
|
favourite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -82219,9 +82290,8 @@ export declare type SearchExperimentContextInput = {
|
|
|
82219
82290
|
experimentLayers?: InputMaybe<Array<InputMaybe<SearchExperimentLayer>>>;
|
|
82220
82291
|
};
|
|
82221
82292
|
export declare type SearchExperimentLayer = {
|
|
82222
|
-
|
|
82293
|
+
definitions?: InputMaybe<Array<InputMaybe<SearchLayerDefinition>>>;
|
|
82223
82294
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
82224
|
-
shadowId?: InputMaybe<Scalars['String']['input']>;
|
|
82225
82295
|
};
|
|
82226
82296
|
export declare type SearchExternalContainerFilter = {
|
|
82227
82297
|
type: Scalars['String']['input'];
|
|
@@ -82307,6 +82377,12 @@ export declare type SearchL2Feature = {
|
|
|
82307
82377
|
export declare type SearchL2FeatureProvider = {
|
|
82308
82378
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
82309
82379
|
};
|
|
82380
|
+
export declare type SearchLayerDefinition = {
|
|
82381
|
+
entity?: InputMaybe<Scalars['String']['input']>;
|
|
82382
|
+
layerId?: InputMaybe<Scalars['String']['input']>;
|
|
82383
|
+
shadowId?: InputMaybe<Scalars['String']['input']>;
|
|
82384
|
+
subEntity?: InputMaybe<Scalars['String']['input']>;
|
|
82385
|
+
};
|
|
82310
82386
|
export declare type SearchMercuryFilter = {
|
|
82311
82387
|
focusAreaTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
82312
82388
|
owners?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -87272,8 +87348,10 @@ export declare type TownsquareGoal = Node & {
|
|
|
87272
87348
|
name: Scalars['String']['output'];
|
|
87273
87349
|
owner?: Maybe<User>;
|
|
87274
87350
|
parentGoal?: Maybe<TownsquareGoal>;
|
|
87351
|
+
parentGoalSuggestions?: Maybe<TownsquareGoalConnection>;
|
|
87275
87352
|
state?: Maybe<TownsquareGoalState>;
|
|
87276
87353
|
status?: Maybe<TownsquareStatus>;
|
|
87354
|
+
subGoalSuggestions?: Maybe<TownsquareGoalConnection>;
|
|
87277
87355
|
subGoals?: Maybe<TownsquareGoalConnection>;
|
|
87278
87356
|
targetDate?: Maybe<TownsquareTargetDate>;
|
|
87279
87357
|
updates?: Maybe<TownsquareGoalUpdateConnection>;
|
|
@@ -87281,6 +87359,16 @@ export declare type TownsquareGoal = Node & {
|
|
|
87281
87359
|
uuid: Scalars['String']['output'];
|
|
87282
87360
|
watchers?: Maybe<TownsquareUserConnection>;
|
|
87283
87361
|
};
|
|
87362
|
+
export declare type TownsquareGoalParentGoalSuggestionsArgs = {
|
|
87363
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
87364
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87365
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
87366
|
+
};
|
|
87367
|
+
export declare type TownsquareGoalSubGoalSuggestionsArgs = {
|
|
87368
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
87369
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
87370
|
+
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
87371
|
+
};
|
|
87284
87372
|
export declare type TownsquareGoalSubGoalsArgs = {
|
|
87285
87373
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87286
87374
|
first?: InputMaybe<Scalars['Int']['input']>;
|