@forge/cli-shared 6.6.1-next.11 → 6.6.1-next.12-experimental-edac07a
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 +31 -0
- package/out/graphql/graphql-types.d.ts +174 -20
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +28 -21
- package/out/shared/product.d.ts +1 -1
- package/out/shared/product.d.ts.map +1 -1
- package/out/shared/product.js +5 -5
- package/out/ui/command-line-ui.d.ts +1 -0
- package/out/ui/command-line-ui.d.ts.map +1 -1
- package/out/ui/command-line-ui.js +3 -0
- package/out/ui/text.d.ts +2 -1
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +4 -3
- package/out/ui/ui.d.ts +1 -0
- package/out/ui/ui.d.ts.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @forge/cli-shared
|
|
2
2
|
|
|
3
|
+
## 6.6.1-next.12-experimental-edac07a
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 091886c: prepare installations product field to accept multiple products
|
|
8
|
+
- d1b6fd5: Refactoring of SupportedProductsService.
|
|
9
|
+
- 71dc617: update primaryProduct to requiredProducts
|
|
10
|
+
- 321db2e: enable serial install execution
|
|
11
|
+
- 2086b3d: Remove node-fetch as a dependency
|
|
12
|
+
- b3b1250: enable multiselect for XPA apps
|
|
13
|
+
- 2319dc4: Improve multi-select product table UI
|
|
14
|
+
- 29e8c8b: Change message to deprecated
|
|
15
|
+
- Updated dependencies [48d2f56]
|
|
16
|
+
- Updated dependencies [dec434a]
|
|
17
|
+
- Updated dependencies [6b8b6e2]
|
|
18
|
+
- Updated dependencies [ba58c3a]
|
|
19
|
+
- Updated dependencies [3302cc2]
|
|
20
|
+
- Updated dependencies [2086b3d]
|
|
21
|
+
- Updated dependencies [55df193]
|
|
22
|
+
- Updated dependencies [ddc0256]
|
|
23
|
+
- Updated dependencies [4b050d8]
|
|
24
|
+
- Updated dependencies [de16df9]
|
|
25
|
+
- @forge/manifest@8.7.0-next.6-experimental-edac07a
|
|
26
|
+
- @forge/util@1.4.8-next.0-experimental-edac07a
|
|
27
|
+
|
|
28
|
+
## 6.6.1-next.12
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- 321db2e: enable serial install execution
|
|
33
|
+
|
|
3
34
|
## 6.6.1-next.11
|
|
4
35
|
|
|
5
36
|
### Patch Changes
|
|
@@ -893,6 +893,12 @@ export declare type AgentStudioUpdateAgentDetailsPayload = Payload & {
|
|
|
893
893
|
errors?: Maybe<Array<MutationError>>;
|
|
894
894
|
success: Scalars['Boolean']['output'];
|
|
895
895
|
};
|
|
896
|
+
export declare type AgentStudioUpdateAgentKnowledgeSourcesPayload = Payload & {
|
|
897
|
+
__typename?: 'AgentStudioUpdateAgentKnowledgeSourcesPayload';
|
|
898
|
+
agent?: Maybe<AgentStudioAgent>;
|
|
899
|
+
errors?: Maybe<Array<MutationError>>;
|
|
900
|
+
success: Scalars['Boolean']['output'];
|
|
901
|
+
};
|
|
896
902
|
export declare type AgentStudioUpdateConversationStartersInput = {
|
|
897
903
|
conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
898
904
|
};
|
|
@@ -16528,14 +16534,6 @@ export declare type ConnectAppScope = {
|
|
|
16528
16534
|
name: Scalars['String']['output'];
|
|
16529
16535
|
scopeId: Scalars['ID']['output'];
|
|
16530
16536
|
};
|
|
16531
|
-
export declare type ConnectedDataQuery = {
|
|
16532
|
-
__typename?: 'ConnectedDataQuery';
|
|
16533
|
-
services?: Maybe<DevOpsService>;
|
|
16534
|
-
};
|
|
16535
|
-
export declare type ConnectedDataQueryServicesArgs = {
|
|
16536
|
-
cloudId: Scalars['ID']['input'];
|
|
16537
|
-
id: Scalars['ID']['input'];
|
|
16538
|
-
};
|
|
16539
16537
|
export declare type ConnectionManagerConfiguration = {
|
|
16540
16538
|
__typename?: 'ConnectionManagerConfiguration';
|
|
16541
16539
|
parameters?: Maybe<Scalars['String']['output']>;
|
|
@@ -17559,8 +17557,6 @@ export declare type ContentPlatformIpmAnchored = {
|
|
|
17559
17557
|
anchoredElement?: Maybe<Scalars['String']['output']>;
|
|
17560
17558
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
17561
17559
|
id: Scalars['String']['output'];
|
|
17562
|
-
relativeX?: Maybe<Scalars['Int']['output']>;
|
|
17563
|
-
relativeY?: Maybe<Scalars['Int']['output']>;
|
|
17564
17560
|
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
17565
17561
|
};
|
|
17566
17562
|
export declare type ContentPlatformIpmAnchoredAndIpmPositionUnion = ContentPlatformIpmAnchored | ContentPlatformIpmPosition;
|
|
@@ -23304,6 +23300,7 @@ export declare type EcosystemMarketplaceCloudAppDeployment = EcosystemMarketplac
|
|
|
23304
23300
|
cloudAppId?: Maybe<Scalars['ID']['output']>;
|
|
23305
23301
|
cloudAppVersionId: Scalars['ID']['output'];
|
|
23306
23302
|
frameworkId: Scalars['String']['output'];
|
|
23303
|
+
scopes?: Maybe<Array<Maybe<AppHostServiceScope>>>;
|
|
23307
23304
|
};
|
|
23308
23305
|
export declare type EcosystemMarketplaceConnectAppDeployment = EcosystemMarketplaceAppDeployment & {
|
|
23309
23306
|
__typename?: 'EcosystemMarketplaceConnectAppDeployment';
|
|
@@ -30483,8 +30480,12 @@ export declare type GraphStore = {
|
|
|
30483
30480
|
userViewedConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluenceBlogpostInverseConnection>;
|
|
30484
30481
|
userViewedConfluencePage?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageConnection>;
|
|
30485
30482
|
userViewedConfluencePageInverse?: Maybe<GraphStoreSimplifiedUserViewedConfluencePageInverseConnection>;
|
|
30483
|
+
userViewedGoalUpdate?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateConnection>;
|
|
30484
|
+
userViewedGoalUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection>;
|
|
30486
30485
|
userViewedJiraIssue?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueConnection>;
|
|
30487
30486
|
userViewedJiraIssueInverse?: Maybe<GraphStoreSimplifiedUserViewedJiraIssueInverseConnection>;
|
|
30487
|
+
userViewedProjectUpdate?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateConnection>;
|
|
30488
|
+
userViewedProjectUpdateInverse?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateInverseConnection>;
|
|
30488
30489
|
userWatchesConfluenceBlogpost?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection>;
|
|
30489
30490
|
userWatchesConfluenceBlogpostInverse?: Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostInverseConnection>;
|
|
30490
30491
|
userWatchesConfluencePage?: Maybe<GraphStoreSimplifiedUserWatchesConfluencePageConnection>;
|
|
@@ -34340,6 +34341,20 @@ export declare type GraphStoreUserViewedConfluencePageInverseArgs = {
|
|
|
34340
34341
|
id: Scalars['ID']['input'];
|
|
34341
34342
|
sort?: InputMaybe<GraphStoreUserViewedConfluencePageSortInput>;
|
|
34342
34343
|
};
|
|
34344
|
+
export declare type GraphStoreUserViewedGoalUpdateArgs = {
|
|
34345
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34346
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34347
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34348
|
+
id: Scalars['ID']['input'];
|
|
34349
|
+
sort?: InputMaybe<GraphStoreUserViewedGoalUpdateSortInput>;
|
|
34350
|
+
};
|
|
34351
|
+
export declare type GraphStoreUserViewedGoalUpdateInverseArgs = {
|
|
34352
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34353
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34354
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34355
|
+
id: Scalars['ID']['input'];
|
|
34356
|
+
sort?: InputMaybe<GraphStoreUserViewedGoalUpdateSortInput>;
|
|
34357
|
+
};
|
|
34343
34358
|
export declare type GraphStoreUserViewedJiraIssueArgs = {
|
|
34344
34359
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34345
34360
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -34354,6 +34369,20 @@ export declare type GraphStoreUserViewedJiraIssueInverseArgs = {
|
|
|
34354
34369
|
id: Scalars['ID']['input'];
|
|
34355
34370
|
sort?: InputMaybe<GraphStoreUserViewedJiraIssueSortInput>;
|
|
34356
34371
|
};
|
|
34372
|
+
export declare type GraphStoreUserViewedProjectUpdateArgs = {
|
|
34373
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34374
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34375
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34376
|
+
id: Scalars['ID']['input'];
|
|
34377
|
+
sort?: InputMaybe<GraphStoreUserViewedProjectUpdateSortInput>;
|
|
34378
|
+
};
|
|
34379
|
+
export declare type GraphStoreUserViewedProjectUpdateInverseArgs = {
|
|
34380
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34381
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34382
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34383
|
+
id: Scalars['ID']['input'];
|
|
34384
|
+
sort?: InputMaybe<GraphStoreUserViewedProjectUpdateSortInput>;
|
|
34385
|
+
};
|
|
34357
34386
|
export declare type GraphStoreUserWatchesConfluenceBlogpostArgs = {
|
|
34358
34387
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
34359
34388
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -38029,6 +38058,7 @@ export declare type GraphStoreFullProjectAssociatedBuildRelationshipMetadataOutp
|
|
|
38029
38058
|
issueAri?: Maybe<Scalars['String']['output']>;
|
|
38030
38059
|
issueLastUpdatedOn?: Maybe<Scalars['Long']['output']>;
|
|
38031
38060
|
reporterAri?: Maybe<Scalars['String']['output']>;
|
|
38061
|
+
sprintAris?: Maybe<Scalars['String']['output']>;
|
|
38032
38062
|
statusAri?: Maybe<Scalars['String']['output']>;
|
|
38033
38063
|
};
|
|
38034
38064
|
export declare type GraphStoreFullProjectAssociatedBuildRelationshipObjectMetadataOutput = {
|
|
@@ -40515,6 +40545,7 @@ export declare type GraphStoreProjectAssociatedBuildConditionalFilterInput = {
|
|
|
40515
40545
|
relationship_issueAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
40516
40546
|
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreLongFilterInput>;
|
|
40517
40547
|
relationship_reporterAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
40548
|
+
relationship_sprintAris?: InputMaybe<GraphStoreAriFilterInput>;
|
|
40518
40549
|
relationship_statusAri?: InputMaybe<GraphStoreAriFilterInput>;
|
|
40519
40550
|
toAti?: InputMaybe<GraphStoreAtiFilterInput>;
|
|
40520
40551
|
to_state?: InputMaybe<GraphStoreProjectAssociatedBuildBuildStateFilterInput>;
|
|
@@ -40533,6 +40564,7 @@ export declare type GraphStoreProjectAssociatedBuildSortInput = {
|
|
|
40533
40564
|
relationship_issueAri?: InputMaybe<GraphStoreSortInput>;
|
|
40534
40565
|
relationship_issueLastUpdatedOn?: InputMaybe<GraphStoreSortInput>;
|
|
40535
40566
|
relationship_reporterAri?: InputMaybe<GraphStoreSortInput>;
|
|
40567
|
+
relationship_sprintAris?: InputMaybe<GraphStoreSortInput>;
|
|
40536
40568
|
relationship_statusAri?: InputMaybe<GraphStoreSortInput>;
|
|
40537
40569
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
40538
40570
|
to_state?: InputMaybe<GraphStoreSortInput>;
|
|
@@ -46767,6 +46799,34 @@ export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseEdge = {
|
|
|
46767
46799
|
};
|
|
46768
46800
|
export declare type GraphStoreSimplifiedUserViewedConfluencePageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46769
46801
|
export declare type GraphStoreSimplifiedUserViewedConfluencePageUnion = ConfluencePage;
|
|
46802
|
+
export declare type GraphStoreSimplifiedUserViewedGoalUpdateConnection = HasPageInfo & {
|
|
46803
|
+
__typename?: 'GraphStoreSimplifiedUserViewedGoalUpdateConnection';
|
|
46804
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedGoalUpdateEdge>>>;
|
|
46805
|
+
pageInfo: PageInfo;
|
|
46806
|
+
};
|
|
46807
|
+
export declare type GraphStoreSimplifiedUserViewedGoalUpdateEdge = {
|
|
46808
|
+
__typename?: 'GraphStoreSimplifiedUserViewedGoalUpdateEdge';
|
|
46809
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46810
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46811
|
+
id: Scalars['ID']['output'];
|
|
46812
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46813
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateUnion>;
|
|
46814
|
+
};
|
|
46815
|
+
export declare type GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection = HasPageInfo & {
|
|
46816
|
+
__typename?: 'GraphStoreSimplifiedUserViewedGoalUpdateInverseConnection';
|
|
46817
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseEdge>>>;
|
|
46818
|
+
pageInfo: PageInfo;
|
|
46819
|
+
};
|
|
46820
|
+
export declare type GraphStoreSimplifiedUserViewedGoalUpdateInverseEdge = {
|
|
46821
|
+
__typename?: 'GraphStoreSimplifiedUserViewedGoalUpdateInverseEdge';
|
|
46822
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46823
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46824
|
+
id: Scalars['ID']['output'];
|
|
46825
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46826
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedGoalUpdateInverseUnion>;
|
|
46827
|
+
};
|
|
46828
|
+
export declare type GraphStoreSimplifiedUserViewedGoalUpdateInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46829
|
+
export declare type GraphStoreSimplifiedUserViewedGoalUpdateUnion = TownsquareGoalUpdate;
|
|
46770
46830
|
export declare type GraphStoreSimplifiedUserViewedJiraIssueConnection = HasPageInfo & {
|
|
46771
46831
|
__typename?: 'GraphStoreSimplifiedUserViewedJiraIssueConnection';
|
|
46772
46832
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedJiraIssueEdge>>>;
|
|
@@ -46795,6 +46855,34 @@ export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseEdge = {
|
|
|
46795
46855
|
};
|
|
46796
46856
|
export declare type GraphStoreSimplifiedUserViewedJiraIssueInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46797
46857
|
export declare type GraphStoreSimplifiedUserViewedJiraIssueUnion = JiraIssue;
|
|
46858
|
+
export declare type GraphStoreSimplifiedUserViewedProjectUpdateConnection = HasPageInfo & {
|
|
46859
|
+
__typename?: 'GraphStoreSimplifiedUserViewedProjectUpdateConnection';
|
|
46860
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedProjectUpdateEdge>>>;
|
|
46861
|
+
pageInfo: PageInfo;
|
|
46862
|
+
};
|
|
46863
|
+
export declare type GraphStoreSimplifiedUserViewedProjectUpdateEdge = {
|
|
46864
|
+
__typename?: 'GraphStoreSimplifiedUserViewedProjectUpdateEdge';
|
|
46865
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46866
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46867
|
+
id: Scalars['ID']['output'];
|
|
46868
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46869
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateUnion>;
|
|
46870
|
+
};
|
|
46871
|
+
export declare type GraphStoreSimplifiedUserViewedProjectUpdateInverseConnection = HasPageInfo & {
|
|
46872
|
+
__typename?: 'GraphStoreSimplifiedUserViewedProjectUpdateInverseConnection';
|
|
46873
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserViewedProjectUpdateInverseEdge>>>;
|
|
46874
|
+
pageInfo: PageInfo;
|
|
46875
|
+
};
|
|
46876
|
+
export declare type GraphStoreSimplifiedUserViewedProjectUpdateInverseEdge = {
|
|
46877
|
+
__typename?: 'GraphStoreSimplifiedUserViewedProjectUpdateInverseEdge';
|
|
46878
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46879
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46880
|
+
id: Scalars['ID']['output'];
|
|
46881
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46882
|
+
node?: Maybe<GraphStoreSimplifiedUserViewedProjectUpdateInverseUnion>;
|
|
46883
|
+
};
|
|
46884
|
+
export declare type GraphStoreSimplifiedUserViewedProjectUpdateInverseUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
46885
|
+
export declare type GraphStoreSimplifiedUserViewedProjectUpdateUnion = TownsquareProjectUpdate;
|
|
46798
46886
|
export declare type GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection = HasPageInfo & {
|
|
46799
46887
|
__typename?: 'GraphStoreSimplifiedUserWatchesConfluenceBlogpostConnection';
|
|
46800
46888
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserWatchesConfluenceBlogpostEdge>>>;
|
|
@@ -47848,9 +47936,15 @@ export declare type GraphStoreUserViewedConfluenceBlogpostSortInput = {
|
|
|
47848
47936
|
export declare type GraphStoreUserViewedConfluencePageSortInput = {
|
|
47849
47937
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47850
47938
|
};
|
|
47939
|
+
export declare type GraphStoreUserViewedGoalUpdateSortInput = {
|
|
47940
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47941
|
+
};
|
|
47851
47942
|
export declare type GraphStoreUserViewedJiraIssueSortInput = {
|
|
47852
47943
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47853
47944
|
};
|
|
47945
|
+
export declare type GraphStoreUserViewedProjectUpdateSortInput = {
|
|
47946
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47947
|
+
};
|
|
47854
47948
|
export declare type GraphStoreUserWatchesConfluenceBlogpostSortInput = {
|
|
47855
47949
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
47856
47950
|
};
|
|
@@ -48205,6 +48299,7 @@ export declare type GrowthUnifiedProfileJiraOnboardingContext = {
|
|
|
48205
48299
|
jiraFamiliarity?: Maybe<GrowthUnifiedProfileJiraFamiliarity>;
|
|
48206
48300
|
jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
|
|
48207
48301
|
persona?: Maybe<Scalars['String']['output']>;
|
|
48302
|
+
projectLandingSelection?: Maybe<GrowthUnifiedProfileOnboardingContextProjectLandingSelection>;
|
|
48208
48303
|
projectName?: Maybe<Scalars['String']['output']>;
|
|
48209
48304
|
statusNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
48210
48305
|
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
@@ -48216,6 +48311,7 @@ export declare type GrowthUnifiedProfileJiraOnboardingContextInput = {
|
|
|
48216
48311
|
jiraFamiliarity?: InputMaybe<GrowthUnifiedProfileJiraFamiliarity>;
|
|
48217
48312
|
jobsToBeDone?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileJtbd>>>;
|
|
48218
48313
|
persona?: InputMaybe<Scalars['String']['input']>;
|
|
48314
|
+
projectLandingSelection?: InputMaybe<GrowthUnifiedProfileOnboardingContextProjectLandingSelection>;
|
|
48219
48315
|
projectName?: InputMaybe<Scalars['String']['input']>;
|
|
48220
48316
|
statusNames?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
48221
48317
|
teamType?: InputMaybe<GrowthUnifiedProfileTeamType>;
|
|
@@ -48235,6 +48331,10 @@ export declare type GrowthUnifiedProfileOnboardingContextInput = {
|
|
|
48235
48331
|
confluence?: InputMaybe<GrowthUnifiedProfileConfluenceOnboardingContextInput>;
|
|
48236
48332
|
jira?: InputMaybe<GrowthUnifiedProfileJiraOnboardingContextInput>;
|
|
48237
48333
|
};
|
|
48334
|
+
export declare enum GrowthUnifiedProfileOnboardingContextProjectLandingSelection {
|
|
48335
|
+
CreateProject = "CREATE_PROJECT",
|
|
48336
|
+
SampleProject = "SAMPLE_PROJECT"
|
|
48337
|
+
}
|
|
48238
48338
|
export declare type GrowthUnifiedProfilePaidChannelContext = {
|
|
48239
48339
|
__typename?: 'GrowthUnifiedProfilePaidChannelContext';
|
|
48240
48340
|
anchor?: Maybe<GrowthUnifiedProfileAnchor>;
|
|
@@ -57617,7 +57717,9 @@ export declare type JiraJourneyStatusDependency = JiraJourneyItemCommon & {
|
|
|
57617
57717
|
name?: Maybe<Scalars['String']['output']>;
|
|
57618
57718
|
statusIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
57619
57719
|
statusType?: Maybe<JiraJourneyStatusDependencyType>;
|
|
57720
|
+
statuses?: Maybe<Array<JiraJourneyStatusDependencyStatus>>;
|
|
57620
57721
|
workItemIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
57722
|
+
workItems?: Maybe<Array<JiraJourneyWorkItem>>;
|
|
57621
57723
|
};
|
|
57622
57724
|
export declare type JiraJourneyStatusDependencyConfigurationInput = {
|
|
57623
57725
|
statuses?: InputMaybe<Array<JiraJourneyStatusDependencyConfigurationStatusInput>>;
|
|
@@ -57627,6 +57729,12 @@ export declare type JiraJourneyStatusDependencyConfigurationStatusInput = {
|
|
|
57627
57729
|
id: Scalars['ID']['input'];
|
|
57628
57730
|
type: JiraJourneyStatusDependencyType;
|
|
57629
57731
|
};
|
|
57732
|
+
export declare type JiraJourneyStatusDependencyStatus = {
|
|
57733
|
+
__typename?: 'JiraJourneyStatusDependencyStatus';
|
|
57734
|
+
id: Scalars['ID']['output'];
|
|
57735
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
57736
|
+
type?: Maybe<JiraJourneyStatusDependencyType>;
|
|
57737
|
+
};
|
|
57630
57738
|
export declare enum JiraJourneyStatusDependencyType {
|
|
57631
57739
|
Status = "STATUS",
|
|
57632
57740
|
StatusCategory = "STATUS_CATEGORY"
|
|
@@ -66565,6 +66673,8 @@ export declare type JiraUserPreferences = {
|
|
|
66565
66673
|
colorSchemeThemeSetting?: Maybe<JiraColorSchemeThemeSetting>;
|
|
66566
66674
|
globalIssueCreateView?: Maybe<JiraGlobalIssueCreateView>;
|
|
66567
66675
|
isAdvancedRoadmapsSidebarLayoutEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
66676
|
+
isCustomNavBarThemeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
66677
|
+
isCustomNavBarThemeSectionMessageDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
66568
66678
|
isIssueViewAttachmentReferenceFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
66569
66679
|
isIssueViewChildIssuesLimitBestPracticeFlagDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
66570
66680
|
isIssueViewCrossFlowBannerDismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -68694,6 +68804,47 @@ export declare type KnowledgeBaseArticleCountSource = {
|
|
|
68694
68804
|
container: Scalars['ID']['output'];
|
|
68695
68805
|
count: Scalars['Int']['output'];
|
|
68696
68806
|
};
|
|
68807
|
+
export declare type KnowledgeBaseArticleSearchInput = {
|
|
68808
|
+
articleContainers?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
68809
|
+
cloudId: Scalars['ID']['input'];
|
|
68810
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
68811
|
+
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
68812
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
68813
|
+
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
68814
|
+
sortByKey?: InputMaybe<KnowledgeBaseArticleSearchSortByKey>;
|
|
68815
|
+
sortOrder?: InputMaybe<KnowledgeBaseArticleSearchSortOrder>;
|
|
68816
|
+
};
|
|
68817
|
+
export declare type KnowledgeBaseArticleSearchResponse = KnowledgeBaseCrossSiteSearchConnection | QueryError;
|
|
68818
|
+
export declare enum KnowledgeBaseArticleSearchSortByKey {
|
|
68819
|
+
LastModified = "LAST_MODIFIED",
|
|
68820
|
+
Title = "TITLE"
|
|
68821
|
+
}
|
|
68822
|
+
export declare enum KnowledgeBaseArticleSearchSortOrder {
|
|
68823
|
+
Asc = "ASC",
|
|
68824
|
+
Desc = "DESC"
|
|
68825
|
+
}
|
|
68826
|
+
export declare type KnowledgeBaseCrossSiteArticle = {
|
|
68827
|
+
__typename?: 'KnowledgeBaseCrossSiteArticle';
|
|
68828
|
+
friendlyLastModified?: Maybe<Scalars['String']['output']>;
|
|
68829
|
+
id: Scalars['ID']['output'];
|
|
68830
|
+
lastModified?: Maybe<Scalars['String']['output']>;
|
|
68831
|
+
spaceAri?: Maybe<Scalars['ID']['output']>;
|
|
68832
|
+
spaceName?: Maybe<Scalars['String']['output']>;
|
|
68833
|
+
spaceUrl?: Maybe<Scalars['String']['output']>;
|
|
68834
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
68835
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
68836
|
+
};
|
|
68837
|
+
export declare type KnowledgeBaseCrossSiteArticleEdge = {
|
|
68838
|
+
__typename?: 'KnowledgeBaseCrossSiteArticleEdge';
|
|
68839
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
68840
|
+
node?: Maybe<KnowledgeBaseCrossSiteArticle>;
|
|
68841
|
+
};
|
|
68842
|
+
export declare type KnowledgeBaseCrossSiteSearchConnection = {
|
|
68843
|
+
__typename?: 'KnowledgeBaseCrossSiteSearchConnection';
|
|
68844
|
+
edges?: Maybe<Array<KnowledgeBaseCrossSiteArticleEdge>>;
|
|
68845
|
+
nodes?: Maybe<Array<Maybe<KnowledgeBaseCrossSiteArticle>>>;
|
|
68846
|
+
pageInfo: PageInfo;
|
|
68847
|
+
};
|
|
68697
68848
|
export declare type KnowledgeBaseLinkResponse = {
|
|
68698
68849
|
__typename?: 'KnowledgeBaseLinkResponse';
|
|
68699
68850
|
knowledgeBaseSource?: Maybe<KnowledgeBaseSource>;
|
|
@@ -68729,7 +68880,7 @@ export declare type KnowledgeBaseSource = {
|
|
|
68729
68880
|
__typename?: 'KnowledgeBaseSource';
|
|
68730
68881
|
containerAri: Scalars['ID']['output'];
|
|
68731
68882
|
entityReference: Scalars['String']['output'];
|
|
68732
|
-
id
|
|
68883
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
68733
68884
|
name: Scalars['String']['output'];
|
|
68734
68885
|
permissions?: Maybe<KnowledgeBaseSourcePermissions>;
|
|
68735
68886
|
sourceType?: Maybe<Scalars['String']['output']>;
|
|
@@ -73480,6 +73631,7 @@ export declare type Mutation = {
|
|
|
73480
73631
|
agentStudio_createAgent?: Maybe<AgentStudioCreateAgentPayload>;
|
|
73481
73632
|
agentStudio_updateAgentActions?: Maybe<AgentStudioUpdateAgentActionsPayload>;
|
|
73482
73633
|
agentStudio_updateAgentDetails?: Maybe<AgentStudioUpdateAgentDetailsPayload>;
|
|
73634
|
+
agentStudio_updateAgentKnowledgeSources?: Maybe<AgentStudioUpdateAgentKnowledgeSourcesPayload>;
|
|
73483
73635
|
agentStudio_updateConversationStarters?: Maybe<AgentStudioUpdateConversationStartersPayload>;
|
|
73484
73636
|
appRecommendations?: Maybe<AppRecMutation>;
|
|
73485
73637
|
appStorage?: Maybe<AppStorageMutation>;
|
|
@@ -74048,6 +74200,10 @@ export declare type MutationAgentStudio_UpdateAgentDetailsArgs = {
|
|
|
74048
74200
|
id: Scalars['ID']['input'];
|
|
74049
74201
|
input: AgentStudioUpdateAgentDetailsInput;
|
|
74050
74202
|
};
|
|
74203
|
+
export declare type MutationAgentStudio_UpdateAgentKnowledgeSourcesArgs = {
|
|
74204
|
+
id: Scalars['ID']['input'];
|
|
74205
|
+
input: AgentStudioKnowledgeConfigurationInput;
|
|
74206
|
+
};
|
|
74051
74207
|
export declare type MutationAgentStudio_UpdateConversationStartersArgs = {
|
|
74052
74208
|
id: Scalars['ID']['input'];
|
|
74053
74209
|
input: AgentStudioUpdateConversationStartersInput;
|
|
@@ -78549,7 +78705,6 @@ export declare type Query = {
|
|
|
78549
78705
|
confluence_tenantContext?: Maybe<ConfluenceTenantContext>;
|
|
78550
78706
|
confluence_userContentAccess?: Maybe<ConfluenceUserContentAccessResult>;
|
|
78551
78707
|
confluence_validateCalendarJql?: Maybe<ConfluenceCalendarJqlValidationResult>;
|
|
78552
|
-
connectedData?: Maybe<ConnectedDataQuery>;
|
|
78553
78708
|
connectionManager_connectionsByJiraProject?: Maybe<ConnectionManagerConnectionsByJiraProjectResult>;
|
|
78554
78709
|
contactAdminPageConfig?: Maybe<ContactAdminPageConfig>;
|
|
78555
78710
|
content?: Maybe<PaginatedContentListWithChild>;
|
|
@@ -78725,6 +78880,7 @@ export declare type Query = {
|
|
|
78725
78880
|
jsw?: Maybe<JswQuery>;
|
|
78726
78881
|
knowledgeBase?: Maybe<KnowledgeBaseQueryApi>;
|
|
78727
78882
|
knowledgeBaseSpacePermission_bulkQuery: Array<Maybe<KnowledgeBaseSpacePermissionQueryResponse>>;
|
|
78883
|
+
knowledgeBase_searchArticles?: Maybe<KnowledgeBaseArticleSearchResponse>;
|
|
78728
78884
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
78729
78885
|
labelSearch?: Maybe<LabelSearchResults>;
|
|
78730
78886
|
license?: Maybe<License>;
|
|
@@ -79101,6 +79257,8 @@ export declare type QueryBlockedAccessRestrictionsArgs = {
|
|
|
79101
79257
|
};
|
|
79102
79258
|
export declare type QueryBoardScopeArgs = {
|
|
79103
79259
|
boardId: Scalars['ID']['input'];
|
|
79260
|
+
customFilterIds?: InputMaybe<Array<InputMaybe<Scalars['ID']['input']>>>;
|
|
79261
|
+
filterJql?: InputMaybe<Scalars['String']['input']>;
|
|
79104
79262
|
isCMP?: InputMaybe<Scalars['Boolean']['input']>;
|
|
79105
79263
|
};
|
|
79106
79264
|
export declare type QueryBulkPermittedArgs = {
|
|
@@ -80849,6 +81007,9 @@ export declare type QueryKnowledgeBaseSpacePermission_BulkQueryArgs = {
|
|
|
80849
81007
|
cloudId: Scalars['ID']['input'];
|
|
80850
81008
|
spaceAris: Array<Scalars['ID']['input']>;
|
|
80851
81009
|
};
|
|
81010
|
+
export declare type QueryKnowledgeBase_SearchArticlesArgs = {
|
|
81011
|
+
searchInput?: InputMaybe<KnowledgeBaseArticleSearchInput>;
|
|
81012
|
+
};
|
|
80852
81013
|
export declare type QueryLabelSearchArgs = {
|
|
80853
81014
|
contentId?: InputMaybe<Scalars['ID']['input']>;
|
|
80854
81015
|
ignoreRelated?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -84433,13 +84594,6 @@ export declare type SecurityWorkspace = {
|
|
|
84433
84594
|
providerName?: Maybe<Scalars['String']['output']>;
|
|
84434
84595
|
url?: Maybe<Scalars['URL']['output']>;
|
|
84435
84596
|
};
|
|
84436
|
-
export declare enum Segment {
|
|
84437
|
-
Enterprise = "ENTERPRISE",
|
|
84438
|
-
Free = "FREE",
|
|
84439
|
-
Premium = "PREMIUM",
|
|
84440
|
-
Standard = "STANDARD",
|
|
84441
|
-
Unknown = "UNKNOWN"
|
|
84442
|
-
}
|
|
84443
84597
|
export declare type ServiceProvider = {
|
|
84444
84598
|
__typename?: 'ServiceProvider';
|
|
84445
84599
|
endUserDataTypes?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -86476,6 +86630,7 @@ export declare type SoftwareBoard = {
|
|
|
86476
86630
|
columns?: Maybe<Array<Maybe<Column>>>;
|
|
86477
86631
|
customSwimlaneConfig?: Maybe<JswCustomSwimlaneConnection>;
|
|
86478
86632
|
editConfig?: Maybe<BoardEditConfig>;
|
|
86633
|
+
filteredCardIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
86479
86634
|
hasClearedCards?: Maybe<Scalars['Boolean']['output']>;
|
|
86480
86635
|
id?: Maybe<Scalars['ID']['output']>;
|
|
86481
86636
|
inlineCardCreate?: Maybe<InlineCardCreateConfig>;
|
|
@@ -88283,7 +88438,6 @@ export declare type Tenant = {
|
|
|
88283
88438
|
cloudId: Scalars['ID']['output'];
|
|
88284
88439
|
editions?: Maybe<ConfluenceEditions>;
|
|
88285
88440
|
environment: Environment;
|
|
88286
|
-
segment?: Maybe<Segment>;
|
|
88287
88441
|
shard: Scalars['String']['output'];
|
|
88288
88442
|
};
|
|
88289
88443
|
export declare type TenantContext = {
|