@forge/cli-shared 6.6.1-next.4 → 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
CHANGED
|
@@ -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",
|
|
@@ -21145,6 +21223,7 @@ export declare type DevAiPhaseStartedAutodevLog = DevAiAutodevLog & {
|
|
|
21145
21223
|
priority?: Maybe<DevAiAutodevLogPriority>;
|
|
21146
21224
|
status?: Maybe<DevAiAutodevLogStatus>;
|
|
21147
21225
|
timestamp?: Maybe<Scalars['DateTime']['output']>;
|
|
21226
|
+
userCommand?: Maybe<Scalars['String']['output']>;
|
|
21148
21227
|
};
|
|
21149
21228
|
export declare type DevAiPlaintextAutodevLog = DevAiAutodevLog & {
|
|
21150
21229
|
__typename?: 'DevAiPlaintextAutodevLog';
|
|
@@ -22944,6 +23023,11 @@ export declare type EarliestViewViewedForUser = {
|
|
|
22944
23023
|
datetime?: Maybe<Scalars['String']['output']>;
|
|
22945
23024
|
};
|
|
22946
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
|
+
};
|
|
22947
23031
|
export declare enum EcosystemAppInstallationConfigIdType {
|
|
22948
23032
|
Cloud = "CLOUD",
|
|
22949
23033
|
Installation = "INSTALLATION"
|
|
@@ -23616,6 +23700,7 @@ export declare type Extension = {
|
|
|
23616
23700
|
environmentType: Scalars['String']['output'];
|
|
23617
23701
|
id: Scalars['ID']['output'];
|
|
23618
23702
|
installation?: Maybe<AppInstallationSummary>;
|
|
23703
|
+
installationConfig?: Maybe<Array<EcosystemAppInstallationConfigExtension>>;
|
|
23619
23704
|
installationId: Scalars['String']['output'];
|
|
23620
23705
|
key: Scalars['String']['output'];
|
|
23621
23706
|
license?: Maybe<AppInstallationLicense>;
|
|
@@ -23623,6 +23708,7 @@ export declare type Extension = {
|
|
|
23623
23708
|
migrationKey?: Maybe<Scalars['String']['output']>;
|
|
23624
23709
|
name?: Maybe<Scalars['String']['output']>;
|
|
23625
23710
|
oauthClientId: Scalars['ID']['output'];
|
|
23711
|
+
overrides?: Maybe<Scalars['JSON']['output']>;
|
|
23626
23712
|
principal?: Maybe<AppPrincipal>;
|
|
23627
23713
|
properties: Scalars['JSON']['output'];
|
|
23628
23714
|
remoteInstallationRegion?: Maybe<Scalars['String']['output']>;
|
|
@@ -29572,6 +29658,8 @@ export declare type GraphStore = {
|
|
|
29572
29658
|
atlasProjectHasFollowerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasFollowerInverseConnection>;
|
|
29573
29659
|
atlasProjectHasOwner?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerConnection>;
|
|
29574
29660
|
atlasProjectHasOwnerInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasOwnerInverseConnection>;
|
|
29661
|
+
atlasProjectHasUpdate?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateConnection>;
|
|
29662
|
+
atlasProjectHasUpdateInverse?: Maybe<GraphStoreSimplifiedAtlasProjectHasUpdateInverseConnection>;
|
|
29575
29663
|
atlasProjectIsRelatedToAtlasProject?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection>;
|
|
29576
29664
|
atlasProjectIsRelatedToAtlasProjectInverse?: Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectInverseConnection>;
|
|
29577
29665
|
atlasProjectIsTrackedOnJiraEpic?: Maybe<GraphStoreSimplifiedAtlasProjectIsTrackedOnJiraEpicConnection>;
|
|
@@ -30305,6 +30393,20 @@ export declare type GraphStoreAtlasProjectHasOwnerInverseArgs = {
|
|
|
30305
30393
|
id: Scalars['ID']['input'];
|
|
30306
30394
|
sort?: InputMaybe<GraphStoreAtlasProjectHasOwnerSortInput>;
|
|
30307
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
|
+
};
|
|
30308
30410
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectArgs = {
|
|
30309
30411
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30310
30412
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34125,6 +34227,9 @@ export declare type GraphStoreAtlasProjectHasFollowerSortInput = {
|
|
|
34125
34227
|
export declare type GraphStoreAtlasProjectHasOwnerSortInput = {
|
|
34126
34228
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34127
34229
|
};
|
|
34230
|
+
export declare type GraphStoreAtlasProjectHasUpdateSortInput = {
|
|
34231
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34232
|
+
};
|
|
34128
34233
|
export declare type GraphStoreAtlasProjectIsRelatedToAtlasProjectSortInput = {
|
|
34129
34234
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
34130
34235
|
};
|
|
@@ -35252,7 +35357,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
35252
35357
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
35253
35358
|
id: Scalars['ID']['output'];
|
|
35254
35359
|
};
|
|
35255
|
-
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;
|
|
35256
35361
|
export declare type GraphStoreCypherQueryNode = {
|
|
35257
35362
|
__typename?: 'GraphStoreCypherQueryNode';
|
|
35258
35363
|
from: GraphStoreCypherQueryFromNode;
|
|
@@ -35277,8 +35382,8 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
35277
35382
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
35278
35383
|
id: Scalars['ID']['output'];
|
|
35279
35384
|
};
|
|
35280
|
-
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;
|
|
35281
|
-
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;
|
|
35282
35387
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
35283
35388
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
35284
35389
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -40305,6 +40410,34 @@ export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseEdge = {
|
|
|
40305
40410
|
};
|
|
40306
40411
|
export declare type GraphStoreSimplifiedAtlasProjectHasOwnerInverseUnion = TownsquareProject;
|
|
40307
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;
|
|
40308
40441
|
export declare type GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection = HasPageInfo & {
|
|
40309
40442
|
__typename?: 'GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectConnection';
|
|
40310
40443
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasProjectIsRelatedToAtlasProjectEdge>>>;
|
|
@@ -71945,6 +72078,8 @@ export declare type Mutation = {
|
|
|
71945
72078
|
addLabels?: Maybe<AddLabelsPayload>;
|
|
71946
72079
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
71947
72080
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
72081
|
+
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
72082
|
+
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
71948
72083
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
71949
72084
|
appStorage?: Maybe<AppStorageMutation>;
|
|
71950
72085
|
appStorageCustomEntity?: Maybe<AppStorageCustomEntityMutation>;
|
|
@@ -72495,6 +72630,14 @@ export declare type MutationAddReactionArgs = {
|
|
|
72495
72630
|
contentType: GraphQlReactionContentType;
|
|
72496
72631
|
emojiId: Scalars['String']['input'];
|
|
72497
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
|
+
};
|
|
72498
72641
|
export declare type MutationApplyPolarisProjectTemplateArgs = {
|
|
72499
72642
|
input: ApplyPolarisProjectTemplateInput;
|
|
72500
72643
|
};
|
|
@@ -78947,6 +79090,8 @@ export declare type QueryDevai_TechnicalPlannerJobByIdArgs = {
|
|
|
78947
79090
|
jobId: Scalars['ID']['input'];
|
|
78948
79091
|
};
|
|
78949
79092
|
export declare type QueryDevai_TechnicalPlannerJobsForIssueArgs = {
|
|
79093
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
79094
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
78950
79095
|
issueAri: Scalars['ID']['input'];
|
|
78951
79096
|
};
|
|
78952
79097
|
export declare type QueryDeveloperLogAccessArgs = {
|
|
@@ -79778,6 +79923,7 @@ export declare type QuerySpacesArgs = {
|
|
|
79778
79923
|
assignedToGroupId?: InputMaybe<Scalars['String']['input']>;
|
|
79779
79924
|
assignedToGroupName?: InputMaybe<Scalars['String']['input']>;
|
|
79780
79925
|
assignedToUser?: InputMaybe<Scalars['String']['input']>;
|
|
79926
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
79781
79927
|
creatorAccountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
79782
79928
|
excludeTypes?: InputMaybe<Scalars['String']['input']>;
|
|
79783
79929
|
favourite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -82144,9 +82290,8 @@ export declare type SearchExperimentContextInput = {
|
|
|
82144
82290
|
experimentLayers?: InputMaybe<Array<InputMaybe<SearchExperimentLayer>>>;
|
|
82145
82291
|
};
|
|
82146
82292
|
export declare type SearchExperimentLayer = {
|
|
82147
|
-
|
|
82293
|
+
definitions?: InputMaybe<Array<InputMaybe<SearchLayerDefinition>>>;
|
|
82148
82294
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
82149
|
-
shadowId?: InputMaybe<Scalars['String']['input']>;
|
|
82150
82295
|
};
|
|
82151
82296
|
export declare type SearchExternalContainerFilter = {
|
|
82152
82297
|
type: Scalars['String']['input'];
|
|
@@ -82232,6 +82377,12 @@ export declare type SearchL2Feature = {
|
|
|
82232
82377
|
export declare type SearchL2FeatureProvider = {
|
|
82233
82378
|
l2Features?: Maybe<Array<Maybe<SearchL2Feature>>>;
|
|
82234
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
|
+
};
|
|
82235
82386
|
export declare type SearchMercuryFilter = {
|
|
82236
82387
|
focusAreaTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
82237
82388
|
owners?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -87197,8 +87348,10 @@ export declare type TownsquareGoal = Node & {
|
|
|
87197
87348
|
name: Scalars['String']['output'];
|
|
87198
87349
|
owner?: Maybe<User>;
|
|
87199
87350
|
parentGoal?: Maybe<TownsquareGoal>;
|
|
87351
|
+
parentGoalSuggestions?: Maybe<TownsquareGoalConnection>;
|
|
87200
87352
|
state?: Maybe<TownsquareGoalState>;
|
|
87201
87353
|
status?: Maybe<TownsquareStatus>;
|
|
87354
|
+
subGoalSuggestions?: Maybe<TownsquareGoalConnection>;
|
|
87202
87355
|
subGoals?: Maybe<TownsquareGoalConnection>;
|
|
87203
87356
|
targetDate?: Maybe<TownsquareTargetDate>;
|
|
87204
87357
|
updates?: Maybe<TownsquareGoalUpdateConnection>;
|
|
@@ -87206,6 +87359,16 @@ export declare type TownsquareGoal = Node & {
|
|
|
87206
87359
|
uuid: Scalars['String']['output'];
|
|
87207
87360
|
watchers?: Maybe<TownsquareUserConnection>;
|
|
87208
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
|
+
};
|
|
87209
87372
|
export declare type TownsquareGoalSubGoalsArgs = {
|
|
87210
87373
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87211
87374
|
first?: InputMaybe<Scalars['Int']['input']>;
|