@forge/cli-shared 8.15.1-next.0 → 8.15.1-next.0-experimental-5b18257
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 +6 -0
- package/out/graphql/graphql-types.d.ts +231 -17
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +54 -28
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2681,6 +2681,19 @@ export declare type AdminSiteAppInstallationsArgs = {
|
|
|
2681
2681
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
2682
2682
|
owner: Scalars['ID']['input'];
|
|
2683
2683
|
};
|
|
2684
|
+
export declare type AdminSiteRef = {
|
|
2685
|
+
__typename?: 'AdminSiteRef';
|
|
2686
|
+
id: Scalars['ID']['output'];
|
|
2687
|
+
};
|
|
2688
|
+
export declare type AdminSiteRefConnection = {
|
|
2689
|
+
__typename?: 'AdminSiteRefConnection';
|
|
2690
|
+
edges?: Maybe<Array<Maybe<AdminSiteRefEdge>>>;
|
|
2691
|
+
pageInfo: PageInfo;
|
|
2692
|
+
};
|
|
2693
|
+
export declare type AdminSiteRefEdge = {
|
|
2694
|
+
__typename?: 'AdminSiteRefEdge';
|
|
2695
|
+
node: AdminSiteRef;
|
|
2696
|
+
};
|
|
2684
2697
|
export declare type AdminSortBy = {
|
|
2685
2698
|
direction: SortDirection;
|
|
2686
2699
|
fieldName: Scalars['String']['input'];
|
|
@@ -7309,6 +7322,12 @@ export declare type AssetsDmDeleteDataSourceArgs = {
|
|
|
7309
7322
|
input: AssetsDmDeleteDataSourceInput;
|
|
7310
7323
|
workspaceId: Scalars['ID']['input'];
|
|
7311
7324
|
};
|
|
7325
|
+
export declare type AssetsDmDeleteDataSourceConfigPayload = {
|
|
7326
|
+
__typename?: 'AssetsDMDeleteDataSourceConfigPayload';
|
|
7327
|
+
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
7328
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
7329
|
+
success: Scalars['Boolean']['output'];
|
|
7330
|
+
};
|
|
7312
7331
|
export declare type AssetsDmDeleteDataSourceInput = {
|
|
7313
7332
|
dataSourceId: Scalars['ID']['input'];
|
|
7314
7333
|
};
|
|
@@ -18546,6 +18565,22 @@ export declare type ConfluenceContentRestrictionUpdated = {
|
|
|
18546
18565
|
__typename?: 'ConfluenceContentRestrictionUpdated';
|
|
18547
18566
|
contentId?: Maybe<Scalars['ID']['output']>;
|
|
18548
18567
|
};
|
|
18568
|
+
export declare type ConfluenceContentShareMetadata = {
|
|
18569
|
+
altOrigin?: InputMaybe<Scalars['String']['input']>;
|
|
18570
|
+
shareAction?: InputMaybe<Scalars['String']['input']>;
|
|
18571
|
+
};
|
|
18572
|
+
export declare type ConfluenceContentShareRecipient = {
|
|
18573
|
+
email?: InputMaybe<Scalars['String']['input']>;
|
|
18574
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
18575
|
+
recipientType: ConfluenceRecipientType;
|
|
18576
|
+
};
|
|
18577
|
+
export declare type ConfluenceContentShareRequestInput = {
|
|
18578
|
+
comment?: InputMaybe<Scalars['String']['input']>;
|
|
18579
|
+
content: ConfluenceShareContent;
|
|
18580
|
+
contentShareMetadata?: InputMaybe<ConfluenceContentShareMetadata>;
|
|
18581
|
+
recipients?: InputMaybe<Array<InputMaybe<ConfluenceContentShareRecipient>>>;
|
|
18582
|
+
sharerAaid?: InputMaybe<Scalars['String']['input']>;
|
|
18583
|
+
};
|
|
18549
18584
|
export declare type ConfluenceContentState = {
|
|
18550
18585
|
__typename?: 'ConfluenceContentState';
|
|
18551
18586
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -21688,6 +21723,11 @@ export declare type ConfluenceReactionsSummaryResponse = {
|
|
|
21688
21723
|
reactionsCount?: Maybe<Scalars['Int']['output']>;
|
|
21689
21724
|
reactionsSummaryForEmoji?: Maybe<Array<Maybe<ConfluenceReactionsSummaryForEmoji>>>;
|
|
21690
21725
|
};
|
|
21726
|
+
export declare enum ConfluenceRecipientType {
|
|
21727
|
+
Group = "GROUP",
|
|
21728
|
+
Team = "TEAM",
|
|
21729
|
+
User = "USER"
|
|
21730
|
+
}
|
|
21691
21731
|
export declare type ConfluenceRedactionMetadata = {
|
|
21692
21732
|
__typename?: 'ConfluenceRedactionMetadata';
|
|
21693
21733
|
creationDate?: Maybe<Scalars['String']['output']>;
|
|
@@ -21961,6 +22001,16 @@ export declare type ConfluenceShareConfiguration = {
|
|
|
21961
22001
|
__typename?: 'ConfluenceShareConfiguration';
|
|
21962
22002
|
disableSharingToEmails: Scalars['Boolean']['output'];
|
|
21963
22003
|
};
|
|
22004
|
+
export declare type ConfluenceShareContent = {
|
|
22005
|
+
contentId: Scalars['ID']['input'];
|
|
22006
|
+
contentUrl?: InputMaybe<Scalars['String']['input']>;
|
|
22007
|
+
};
|
|
22008
|
+
export declare type ConfluenceShareContentPayload = Payload & {
|
|
22009
|
+
__typename?: 'ConfluenceShareContentPayload';
|
|
22010
|
+
errors: Array<MutationError>;
|
|
22011
|
+
success: Scalars['Boolean']['output'];
|
|
22012
|
+
triggerId?: Maybe<Scalars['String']['output']>;
|
|
22013
|
+
};
|
|
21964
22014
|
export declare type ConfluenceSiteConfiguration = {
|
|
21965
22015
|
__typename?: 'ConfluenceSiteConfiguration';
|
|
21966
22016
|
attachmentSettings?: Maybe<ConfluenceAttachmentSettings>;
|
|
@@ -22396,6 +22446,11 @@ export declare type ConfluenceTemplateInfoInput = {
|
|
|
22396
22446
|
styleClass?: InputMaybe<Scalars['String']['input']>;
|
|
22397
22447
|
templateId?: InputMaybe<Scalars['String']['input']>;
|
|
22398
22448
|
templateType?: InputMaybe<Scalars['String']['input']>;
|
|
22449
|
+
variables?: InputMaybe<Array<InputMaybe<ConfluenceTemplateVariableInput>>>;
|
|
22450
|
+
};
|
|
22451
|
+
export declare type ConfluenceTemplateVariableInput = {
|
|
22452
|
+
key: Scalars['String']['input'];
|
|
22453
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
22399
22454
|
};
|
|
22400
22455
|
export declare type ConfluenceTemplates = {
|
|
22401
22456
|
__typename?: 'ConfluenceTemplates';
|
|
@@ -23668,6 +23723,7 @@ export declare type Content = {
|
|
|
23668
23723
|
schedulePublishDate?: Maybe<Scalars['String']['output']>;
|
|
23669
23724
|
schedulePublishInfo?: Maybe<SchedulePublishInfo>;
|
|
23670
23725
|
smartFeatures?: Maybe<SmartPageFeatures>;
|
|
23726
|
+
smartFeaturesV2?: Maybe<SmartPageFeatures>;
|
|
23671
23727
|
space?: Maybe<Space>;
|
|
23672
23728
|
status?: Maybe<Scalars['String']['output']>;
|
|
23673
23729
|
subType?: Maybe<Scalars['String']['output']>;
|
|
@@ -30376,6 +30432,7 @@ export declare type DevAiRovoDevIssueViewResponseSessionsArgs = {
|
|
|
30376
30432
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
30377
30433
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30378
30434
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
30435
|
+
statusCategoryFilter?: InputMaybe<DevAiSessionStatusCategoryFilter>;
|
|
30379
30436
|
};
|
|
30380
30437
|
export declare enum DevAiRovoDevPrStatus {
|
|
30381
30438
|
Declined = "DECLINED",
|
|
@@ -30506,6 +30563,12 @@ export declare enum DevAiScanIntervalUnit {
|
|
|
30506
30563
|
Months = "MONTHS",
|
|
30507
30564
|
Weeks = "WEEKS"
|
|
30508
30565
|
}
|
|
30566
|
+
export declare enum DevAiSessionStatusCategoryFilter {
|
|
30567
|
+
All = "ALL",
|
|
30568
|
+
Completed = "COMPLETED",
|
|
30569
|
+
Deleted = "DELETED",
|
|
30570
|
+
Working = "WORKING"
|
|
30571
|
+
}
|
|
30509
30572
|
export declare type DevAiSetAutofixConfigurationForRepositoryInput = {
|
|
30510
30573
|
codeCoverageCommand: Scalars['String']['input'];
|
|
30511
30574
|
codeCoverageReportPath: Scalars['String']['input'];
|
|
@@ -35443,6 +35506,14 @@ export declare type ForgeAuditLogEdge = {
|
|
|
35443
35506
|
cursor: Scalars['String']['output'];
|
|
35444
35507
|
node?: Maybe<ForgeAuditLog>;
|
|
35445
35508
|
};
|
|
35509
|
+
export declare type ForgeAuditLogFeatureFlag = {
|
|
35510
|
+
__typename?: 'ForgeAuditLogFeatureFlag';
|
|
35511
|
+
action: ForgeAuditLogsFeatureFlagsActionType;
|
|
35512
|
+
actorId: Scalars['ID']['output'];
|
|
35513
|
+
changes?: Maybe<ForgeAuditLogsFeatureFlagChanges>;
|
|
35514
|
+
details: Array<Scalars['String']['output']>;
|
|
35515
|
+
timestamp: Scalars['String']['output'];
|
|
35516
|
+
};
|
|
35446
35517
|
export declare enum ForgeAuditLogsActionType {
|
|
35447
35518
|
ContributorAdded = "CONTRIBUTOR_ADDED",
|
|
35448
35519
|
ContributorRemoved = "CONTRIBUTOR_REMOVED",
|
|
@@ -35505,12 +35576,82 @@ export declare type ForgeAuditLogsDaResResponse = {
|
|
|
35505
35576
|
data?: Maybe<Array<Maybe<ForgeAuditLogsDaResAppData>>>;
|
|
35506
35577
|
};
|
|
35507
35578
|
export declare type ForgeAuditLogsDaResResult = ForgeAuditLogsDaResResponse | QueryError;
|
|
35579
|
+
export declare type ForgeAuditLogsFeatureFlagChanges = {
|
|
35580
|
+
__typename?: 'ForgeAuditLogsFeatureFlagChanges';
|
|
35581
|
+
description?: Maybe<ForgeAuditLogsFeatureFlagDescriptionChange>;
|
|
35582
|
+
enabled?: Maybe<ForgeAuditLogsFeatureFlagEnabledChange>;
|
|
35583
|
+
idType?: Maybe<ForgeAuditLogsFeatureFlagIdTypeChange>;
|
|
35584
|
+
rules?: Maybe<ForgeAuditLogsFeatureFlagRules>;
|
|
35585
|
+
};
|
|
35586
|
+
export declare type ForgeAuditLogsFeatureFlagCondition = {
|
|
35587
|
+
__typename?: 'ForgeAuditLogsFeatureFlagCondition';
|
|
35588
|
+
field?: Maybe<Scalars['String']['output']>;
|
|
35589
|
+
operator?: Maybe<Scalars['String']['output']>;
|
|
35590
|
+
order: Scalars['Int']['output'];
|
|
35591
|
+
type: Scalars['String']['output'];
|
|
35592
|
+
values?: Maybe<Scalars['JSON']['output']>;
|
|
35593
|
+
};
|
|
35594
|
+
export declare type ForgeAuditLogsFeatureFlagDescriptionChange = {
|
|
35595
|
+
__typename?: 'ForgeAuditLogsFeatureFlagDescriptionChange';
|
|
35596
|
+
new?: Maybe<Scalars['String']['output']>;
|
|
35597
|
+
old?: Maybe<Scalars['String']['output']>;
|
|
35598
|
+
};
|
|
35599
|
+
export declare type ForgeAuditLogsFeatureFlagEnabledChange = {
|
|
35600
|
+
__typename?: 'ForgeAuditLogsFeatureFlagEnabledChange';
|
|
35601
|
+
new?: Maybe<Scalars['Boolean']['output']>;
|
|
35602
|
+
old?: Maybe<Scalars['Boolean']['output']>;
|
|
35603
|
+
};
|
|
35604
|
+
export declare type ForgeAuditLogsFeatureFlagIdTypeChange = {
|
|
35605
|
+
__typename?: 'ForgeAuditLogsFeatureFlagIdTypeChange';
|
|
35606
|
+
new?: Maybe<Scalars['String']['output']>;
|
|
35607
|
+
old?: Maybe<Scalars['String']['output']>;
|
|
35608
|
+
};
|
|
35609
|
+
export declare type ForgeAuditLogsFeatureFlagReturnValue = {
|
|
35610
|
+
__typename?: 'ForgeAuditLogsFeatureFlagReturnValue';
|
|
35611
|
+
type: Scalars['String']['output'];
|
|
35612
|
+
value: Scalars['String']['output'];
|
|
35613
|
+
};
|
|
35614
|
+
export declare type ForgeAuditLogsFeatureFlagRule = {
|
|
35615
|
+
__typename?: 'ForgeAuditLogsFeatureFlagRule';
|
|
35616
|
+
conditions: Array<ForgeAuditLogsFeatureFlagCondition>;
|
|
35617
|
+
env: Array<Scalars['String']['output']>;
|
|
35618
|
+
name: Scalars['String']['output'];
|
|
35619
|
+
order: Scalars['Int']['output'];
|
|
35620
|
+
passPercentage: Scalars['Int']['output'];
|
|
35621
|
+
returnValue: ForgeAuditLogsFeatureFlagReturnValue;
|
|
35622
|
+
};
|
|
35623
|
+
export declare type ForgeAuditLogsFeatureFlagRules = {
|
|
35624
|
+
__typename?: 'ForgeAuditLogsFeatureFlagRules';
|
|
35625
|
+
new?: Maybe<Array<ForgeAuditLogsFeatureFlagRule>>;
|
|
35626
|
+
old?: Maybe<Array<ForgeAuditLogsFeatureFlagRule>>;
|
|
35627
|
+
};
|
|
35628
|
+
export declare enum ForgeAuditLogsFeatureFlagsActionType {
|
|
35629
|
+
FeatureFlagCreated = "FEATURE_FLAG_CREATED",
|
|
35630
|
+
FeatureFlagDeleted = "FEATURE_FLAG_DELETED",
|
|
35631
|
+
FeatureFlagToggled = "FEATURE_FLAG_TOGGLED",
|
|
35632
|
+
FeatureFlagUpdated = "FEATURE_FLAG_UPDATED"
|
|
35633
|
+
}
|
|
35634
|
+
export declare type ForgeAuditLogsFeatureFlagsQueryInput = {
|
|
35635
|
+
action?: InputMaybe<ForgeAuditLogsFeatureFlagsActionType>;
|
|
35636
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
35637
|
+
endTime?: InputMaybe<Scalars['String']['input']>;
|
|
35638
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
35639
|
+
flagId: Scalars['ID']['input'];
|
|
35640
|
+
startTime?: InputMaybe<Scalars['String']['input']>;
|
|
35641
|
+
};
|
|
35642
|
+
export declare type ForgeAuditLogsFeatureFlagsResponse = {
|
|
35643
|
+
__typename?: 'ForgeAuditLogsFeatureFlagsResponse';
|
|
35644
|
+
data: Array<ForgeAuditLogFeatureFlag>;
|
|
35645
|
+
pageInfo: PageInfo;
|
|
35646
|
+
};
|
|
35647
|
+
export declare type ForgeAuditLogsFeatureFlagsResult = ForgeAuditLogsFeatureFlagsResponse | QueryError;
|
|
35508
35648
|
export declare type ForgeAuditLogsQuery = {
|
|
35509
35649
|
__typename?: 'ForgeAuditLogsQuery';
|
|
35510
35650
|
appId: Scalars['ID']['output'];
|
|
35511
35651
|
auditLogs?: Maybe<ForgeAuditLogsResult>;
|
|
35512
35652
|
contributors?: Maybe<ForgeAuditLogsAppContributorResult>;
|
|
35513
35653
|
daResAuditLogs?: Maybe<ForgeAuditLogsDaResResult>;
|
|
35654
|
+
featureFlagsAuditLogs?: Maybe<ForgeAuditLogsFeatureFlagsResult>;
|
|
35514
35655
|
};
|
|
35515
35656
|
export declare type ForgeAuditLogsQueryAuditLogsArgs = {
|
|
35516
35657
|
input: ForgeAuditLogsQueryInput;
|
|
@@ -35518,6 +35659,9 @@ export declare type ForgeAuditLogsQueryAuditLogsArgs = {
|
|
|
35518
35659
|
export declare type ForgeAuditLogsQueryDaResAuditLogsArgs = {
|
|
35519
35660
|
input: ForgeAuditLogsDaResQueryInput;
|
|
35520
35661
|
};
|
|
35662
|
+
export declare type ForgeAuditLogsQueryFeatureFlagsAuditLogsArgs = {
|
|
35663
|
+
input: ForgeAuditLogsFeatureFlagsQueryInput;
|
|
35664
|
+
};
|
|
35521
35665
|
export declare type ForgeAuditLogsQueryInput = {
|
|
35522
35666
|
actions?: InputMaybe<Array<ForgeAuditLogsActionType>>;
|
|
35523
35667
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -91006,6 +91150,7 @@ export declare type JiraBoardViewFieldSwimlane = JiraBoardViewSwimlane & Node &
|
|
|
91006
91150
|
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
91007
91151
|
field?: Maybe<JiraField>;
|
|
91008
91152
|
id: Scalars['ID']['output'];
|
|
91153
|
+
totalIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
91009
91154
|
value?: Maybe<JiraBoardViewFieldSwimlaneValue>;
|
|
91010
91155
|
};
|
|
91011
91156
|
export declare type JiraBoardViewFieldSwimlaneCellsArgs = {
|
|
@@ -91088,6 +91233,7 @@ export declare type JiraBoardViewStatusEdge = {
|
|
|
91088
91233
|
export declare type JiraBoardViewSwimlane = {
|
|
91089
91234
|
cells?: Maybe<JiraBoardViewCellConnection>;
|
|
91090
91235
|
id: Scalars['ID']['output'];
|
|
91236
|
+
totalIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
91091
91237
|
};
|
|
91092
91238
|
export declare type JiraBoardViewSwimlaneCellsArgs = {
|
|
91093
91239
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -98621,6 +98767,7 @@ export declare type JiraIssueTypeFieldPayload = Payload & {
|
|
|
98621
98767
|
export declare type JiraIssueTypeFilterInput = {
|
|
98622
98768
|
maxHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
98623
98769
|
minHierarchyLevel?: InputMaybe<Scalars['Int']['input']>;
|
|
98770
|
+
parentIssueKey?: InputMaybe<Scalars['String']['input']>;
|
|
98624
98771
|
};
|
|
98625
98772
|
export declare type JiraIssueTypeHierarchyLevel = {
|
|
98626
98773
|
__typename?: 'JiraIssueTypeHierarchyLevel';
|
|
@@ -112260,7 +112407,8 @@ export declare enum JsmChannelsResolutionPlanStepStatus {
|
|
|
112260
112407
|
Completed = "COMPLETED",
|
|
112261
112408
|
Failed = "FAILED",
|
|
112262
112409
|
InProgress = "IN_PROGRESS",
|
|
112263
|
-
Pending = "PENDING"
|
|
112410
|
+
Pending = "PENDING",
|
|
112411
|
+
Waiting = "WAITING"
|
|
112264
112412
|
}
|
|
112265
112413
|
export declare type JsmChannelsServiceAgentResolutionPlan = {
|
|
112266
112414
|
__typename?: 'JsmChannelsServiceAgentResolutionPlan';
|
|
@@ -113367,6 +113515,7 @@ export declare type KitsuneFeedback = Node & {
|
|
|
113367
113515
|
chunks: KitsuneChunkConnection;
|
|
113368
113516
|
content?: Maybe<Scalars['KitsuneADF']['output']>;
|
|
113369
113517
|
id: Scalars['ID']['output'];
|
|
113518
|
+
summary?: Maybe<KitsuneFeedbackSummary>;
|
|
113370
113519
|
title?: Maybe<Scalars['String']['output']>;
|
|
113371
113520
|
};
|
|
113372
113521
|
export declare type KitsuneFeedbackChunksArgs = {
|
|
@@ -113391,11 +113540,16 @@ export declare type KitsuneFeedbackEvent = {
|
|
|
113391
113540
|
sourceCategoryId: Scalars['ID']['output'];
|
|
113392
113541
|
spaceId: Scalars['ID']['output'];
|
|
113393
113542
|
tenantId: Scalars['ID']['output'];
|
|
113394
|
-
title
|
|
113543
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
113395
113544
|
type: Scalars['String']['output'];
|
|
113396
113545
|
updatedAt: Scalars['DateTime']['output'];
|
|
113397
113546
|
url: Scalars['String']['output'];
|
|
113398
113547
|
};
|
|
113548
|
+
export declare type KitsuneFeedbackSummary = {
|
|
113549
|
+
__typename?: 'KitsuneFeedbackSummary';
|
|
113550
|
+
generatedAt: Scalars['DateTime']['output'];
|
|
113551
|
+
text: Scalars['String']['output'];
|
|
113552
|
+
};
|
|
113399
113553
|
export declare type KitsuneNode = {
|
|
113400
113554
|
_id: Scalars['ID']['output'];
|
|
113401
113555
|
};
|
|
@@ -117955,11 +118109,6 @@ export declare type MarketplaceStoreCompatibilityRanges = {
|
|
|
117955
118109
|
end?: Maybe<Scalars['String']['output']>;
|
|
117956
118110
|
start?: Maybe<Scalars['String']['output']>;
|
|
117957
118111
|
};
|
|
117958
|
-
export declare type MarketplaceStoreCompatibleAtlassianProduct = {
|
|
117959
|
-
__typename?: 'MarketplaceStoreCompatibleAtlassianProduct';
|
|
117960
|
-
id: Scalars['ID']['output'];
|
|
117961
|
-
name: Scalars['String']['output'];
|
|
117962
|
-
};
|
|
117963
118112
|
export declare type MarketplaceStoreCompatibleProducts = {
|
|
117964
118113
|
__typename?: 'MarketplaceStoreCompatibleProducts';
|
|
117965
118114
|
entitlementDetails?: Maybe<Array<Maybe<MarketplaceStoreEntitlementDetails>>>;
|
|
@@ -118730,7 +118879,7 @@ export declare type MarketplaceStoreSiteDetailsInput = {
|
|
|
118730
118879
|
};
|
|
118731
118880
|
export declare type MarketplaceStoreSiteDetailsResponse = {
|
|
118732
118881
|
__typename?: 'MarketplaceStoreSiteDetailsResponse';
|
|
118733
|
-
additionalCompatibleProducts?: Maybe<
|
|
118882
|
+
additionalCompatibleProducts?: Maybe<MarketplaceStoreCompatibleProducts>;
|
|
118734
118883
|
cloudId: Scalars['String']['output'];
|
|
118735
118884
|
compatibleProducts?: Maybe<MarketplaceStoreCompatibleProducts>;
|
|
118736
118885
|
installedAppUsers?: Maybe<Scalars['Int']['output']>;
|
|
@@ -119470,6 +119619,7 @@ export declare type MercuryCreateInvestmentCategorySetPayload = Payload & {
|
|
|
119470
119619
|
success: Scalars['Boolean']['output'];
|
|
119471
119620
|
};
|
|
119472
119621
|
export declare type MercuryCreateMultiSelectCustomFieldDefinitionInput = {
|
|
119622
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
119473
119623
|
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
119474
119624
|
};
|
|
119475
119625
|
export declare type MercuryCreateNumberCustomFieldDefinitionInput = {
|
|
@@ -119488,6 +119638,7 @@ export declare type MercuryCreatePortfolioPayload = Payload & {
|
|
|
119488
119638
|
success: Scalars['Boolean']['output'];
|
|
119489
119639
|
};
|
|
119490
119640
|
export declare type MercuryCreateSingleSelectCustomFieldDefinitionInput = {
|
|
119641
|
+
base: MercuryCreateBaseCustomFieldDefinitionInput;
|
|
119491
119642
|
options: Array<MercuryCustomSelectFieldOptionInput>;
|
|
119492
119643
|
};
|
|
119493
119644
|
export declare type MercuryCreateStrategicEventCommentInput = {
|
|
@@ -121373,6 +121524,7 @@ export declare type MercuryProviderOrchestrationQueryApi = {
|
|
|
121373
121524
|
__typename?: 'MercuryProviderOrchestrationQueryApi';
|
|
121374
121525
|
isWorkspaceConnected: Array<MercuryWorkspaceConnectionStatus>;
|
|
121375
121526
|
searchWorkByFocusArea?: Maybe<MercuryProviderWorkSearchConnection>;
|
|
121527
|
+
workStatuses?: Maybe<Array<Maybe<MercuryProviderWorkStatus>>>;
|
|
121376
121528
|
};
|
|
121377
121529
|
export declare type MercuryProviderOrchestrationQueryApiIsWorkspaceConnectedArgs = {
|
|
121378
121530
|
cloudId: Scalars['ID']['input'];
|
|
@@ -121388,6 +121540,9 @@ export declare type MercuryProviderOrchestrationQueryApiSearchWorkByFocusAreaArg
|
|
|
121388
121540
|
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
121389
121541
|
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
121390
121542
|
};
|
|
121543
|
+
export declare type MercuryProviderOrchestrationQueryApiWorkStatusesArgs = {
|
|
121544
|
+
cloudId: Scalars['ID']['input'];
|
|
121545
|
+
};
|
|
121391
121546
|
export declare type MercuryProviderUser = {
|
|
121392
121547
|
id: Scalars['ID']['output'];
|
|
121393
121548
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -121458,6 +121613,7 @@ export declare type MercuryProviderWorkSearchProjectFilters = {
|
|
|
121458
121613
|
export declare type MercuryProviderWorkStatus = {
|
|
121459
121614
|
__typename?: 'MercuryProviderWorkStatus';
|
|
121460
121615
|
color: MercuryProviderWorkStatusColor;
|
|
121616
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
121461
121617
|
name: Scalars['String']['output'];
|
|
121462
121618
|
};
|
|
121463
121619
|
export declare enum MercuryProviderWorkStatusColor {
|
|
@@ -123078,6 +123234,7 @@ export declare type Mutation = {
|
|
|
123078
123234
|
assetsDM_deleteDataDictionaryGroup?: Maybe<AssetsDmDeleteDataDictionaryGroupResponse>;
|
|
123079
123235
|
assetsDM_deleteDataDictionaryGroupValue?: Maybe<AssetsDmDeleteDataDictionaryGroupValueResponse>;
|
|
123080
123236
|
assetsDM_deleteDataSource?: Maybe<AssetsDmUpdateDataSourcePayload>;
|
|
123237
|
+
assetsDM_deleteDataSourceConfig?: Maybe<AssetsDmDeleteDataSourceConfigPayload>;
|
|
123081
123238
|
assetsDM_deleteDataSourceType?: Maybe<AssetsDmDeleteDataSourceTypeResponse>;
|
|
123082
123239
|
assetsDM_deleteDefaultAttributeMapping?: Maybe<AssetsDmDeleteDefaultAttributeMappingResponse>;
|
|
123083
123240
|
assetsDM_deleteDefaultCleansingRule?: Maybe<AssetsDmDeleteDefaultCleansingRuleResponse>;
|
|
@@ -123225,6 +123382,7 @@ export declare type Mutation = {
|
|
|
123225
123382
|
confluence_restoreContentVersion?: Maybe<ConfluenceRestoreContentVersionPayload>;
|
|
123226
123383
|
confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
|
|
123227
123384
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
123385
|
+
confluence_shareContent?: Maybe<ConfluenceShareContentPayload>;
|
|
123228
123386
|
confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
|
|
123229
123387
|
confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
|
|
123230
123388
|
confluence_unschedulePublish?: Maybe<ConfluenceUnschedulePublishPayload>;
|
|
@@ -123638,6 +123796,7 @@ export declare type Mutation = {
|
|
|
123638
123796
|
jsw?: Maybe<JswMutation>;
|
|
123639
123797
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
123640
123798
|
kitsune_createSpace?: Maybe<KitsuneSpace>;
|
|
123799
|
+
kitsune_generateFeedbackSummary?: Maybe<Scalars['Boolean']['output']>;
|
|
123641
123800
|
kitsune_importFeedbackFromCsv?: Maybe<Scalars['Boolean']['output']>;
|
|
123642
123801
|
kitsune_removeFeedback?: Maybe<Scalars['ID']['output']>;
|
|
123643
123802
|
kitsune_suggestSnippets?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -124393,6 +124552,11 @@ export declare type MutationAssetsDm_DeleteDataSourceArgs = {
|
|
|
124393
124552
|
input: AssetsDmDeleteDataSourceInput;
|
|
124394
124553
|
workspaceId: Scalars['ID']['input'];
|
|
124395
124554
|
};
|
|
124555
|
+
export declare type MutationAssetsDm_DeleteDataSourceConfigArgs = {
|
|
124556
|
+
cloudId: Scalars['ID']['input'];
|
|
124557
|
+
jobId: Scalars['ID']['input'];
|
|
124558
|
+
workspaceId: Scalars['ID']['input'];
|
|
124559
|
+
};
|
|
124396
124560
|
export declare type MutationAssetsDm_DeleteDataSourceTypeArgs = {
|
|
124397
124561
|
cloudId: Scalars['String']['input'];
|
|
124398
124562
|
dataSourceTypeId: Scalars['ID']['input'];
|
|
@@ -124937,6 +125101,10 @@ export declare type MutationConfluence_SetSubCalendarReminderArgs = {
|
|
|
124937
125101
|
cloudId: Scalars['ID']['input'];
|
|
124938
125102
|
input: ConfluenceSetSubCalendarReminderInput;
|
|
124939
125103
|
};
|
|
125104
|
+
export declare type MutationConfluence_ShareContentArgs = {
|
|
125105
|
+
ContentShareRequestInput?: InputMaybe<ConfluenceContentShareRequestInput>;
|
|
125106
|
+
cloudId: Scalars['ID']['input'];
|
|
125107
|
+
};
|
|
124940
125108
|
export declare type MutationConfluence_SubscribeCalendarsArgs = {
|
|
124941
125109
|
cloudId: Scalars['ID']['input'];
|
|
124942
125110
|
input: ConfluenceCalendarSubscribeInput;
|
|
@@ -126313,12 +126481,15 @@ export declare type MutationKitsune_CreateFeedbackArgs = {
|
|
|
126313
126481
|
content: Scalars['KitsuneADF']['input'];
|
|
126314
126482
|
source?: InputMaybe<KitsuneSourceInput>;
|
|
126315
126483
|
spaceAri: Scalars['ID']['input'];
|
|
126316
|
-
title
|
|
126484
|
+
title?: InputMaybe<Scalars['String']['input']>;
|
|
126317
126485
|
};
|
|
126318
126486
|
export declare type MutationKitsune_CreateSpaceArgs = {
|
|
126319
126487
|
name: Scalars['String']['input'];
|
|
126320
126488
|
workspaceAri: Scalars['ID']['input'];
|
|
126321
126489
|
};
|
|
126490
|
+
export declare type MutationKitsune_GenerateFeedbackSummaryArgs = {
|
|
126491
|
+
feedbackAri: Scalars['ID']['input'];
|
|
126492
|
+
};
|
|
126322
126493
|
export declare type MutationKitsune_ImportFeedbackFromCsvArgs = {
|
|
126323
126494
|
csv: Scalars['Upload']['input'];
|
|
126324
126495
|
spaceAri: Scalars['ID']['input'];
|
|
@@ -130282,10 +130453,10 @@ export declare type Query = {
|
|
|
130282
130453
|
adminReportStatus?: Maybe<ConfluenceAdminReportStatus>;
|
|
130283
130454
|
admin_accessUrls?: Maybe<AdminAccessUrlConnection>;
|
|
130284
130455
|
admin_appModules?: Maybe<AdminAppModuleConnection>;
|
|
130285
|
-
admin_auditAuditLogEvents?: Maybe<AdminAuditLogEventConnection>;
|
|
130286
130456
|
admin_auditLogEventActions?: Maybe<AdminAuditLogGroupEventActionConnection>;
|
|
130287
130457
|
admin_auditLogEventIpAddresses?: Maybe<AdminAuditLogEventIpAddressConnection>;
|
|
130288
130458
|
admin_auditLogEventLocations?: Maybe<AdminAuditLogEventLocationConnection>;
|
|
130459
|
+
admin_auditLogEvents?: Maybe<AdminAuditLogEventConnection>;
|
|
130289
130460
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
130290
130461
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
130291
130462
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
@@ -130299,6 +130470,8 @@ export declare type Query = {
|
|
|
130299
130470
|
admin_licenseUsage?: Maybe<AdminLicenseDataConnection>;
|
|
130300
130471
|
admin_org?: Maybe<AdminOrganization>;
|
|
130301
130472
|
admin_permissions?: Maybe<Array<AdminPermission>>;
|
|
130473
|
+
admin_siteRefsForUnit?: Maybe<AdminSiteRefConnection>;
|
|
130474
|
+
admin_sitesByIds?: Maybe<Array<Maybe<AdminSite>>>;
|
|
130302
130475
|
admin_tokens?: Maybe<AdminTokenConnection>;
|
|
130303
130476
|
admin_unitCreateStatus?: Maybe<AdminUnitCreateStatus>;
|
|
130304
130477
|
admin_unitProfile?: Maybe<AdminUnit>;
|
|
@@ -131248,6 +131421,7 @@ export declare type Query = {
|
|
|
131248
131421
|
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
131249
131422
|
stakeholderComms_listSubscribers?: Maybe<StakeholderCommsListSubscriberResponse>;
|
|
131250
131423
|
stakeholderComms_listSubscribersConnection?: Maybe<StakeholderCommsSubscriberConnection>;
|
|
131424
|
+
stakeholderComms_subscriptionStats?: Maybe<StakeholderCommsSubscriptionStatsResponse>;
|
|
131251
131425
|
stakeholderComms_unifiedSearch?: Maybe<StakeholderCommsUnifiedSearchResults>;
|
|
131252
131426
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
131253
131427
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
@@ -131349,22 +131523,22 @@ export declare type QueryAdmin_AppModulesArgs = {
|
|
|
131349
131523
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131350
131524
|
moduleKeys: Array<Scalars['String']['input']>;
|
|
131351
131525
|
};
|
|
131352
|
-
export declare type
|
|
131526
|
+
export declare type QueryAdmin_AuditLogEventActionsArgs = {
|
|
131353
131527
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131354
131528
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
131355
131529
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131356
|
-
input?: InputMaybe<AdminFetchAdminAuditLogEventsInput>;
|
|
131357
131530
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131358
131531
|
orgId: Scalars['ID']['input'];
|
|
131359
131532
|
};
|
|
131360
|
-
export declare type
|
|
131533
|
+
export declare type QueryAdmin_AuditLogEventIpAddressesArgs = {
|
|
131361
131534
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131362
131535
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
131536
|
+
filter?: InputMaybe<Scalars['String']['input']>;
|
|
131363
131537
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131364
131538
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131365
131539
|
orgId: Scalars['ID']['input'];
|
|
131366
131540
|
};
|
|
131367
|
-
export declare type
|
|
131541
|
+
export declare type QueryAdmin_AuditLogEventLocationsArgs = {
|
|
131368
131542
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131369
131543
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
131370
131544
|
filter?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -131372,11 +131546,11 @@ export declare type QueryAdmin_AuditLogEventIpAddressesArgs = {
|
|
|
131372
131546
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131373
131547
|
orgId: Scalars['ID']['input'];
|
|
131374
131548
|
};
|
|
131375
|
-
export declare type
|
|
131549
|
+
export declare type QueryAdmin_AuditLogEventsArgs = {
|
|
131376
131550
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131377
131551
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
131378
|
-
filter?: InputMaybe<Scalars['String']['input']>;
|
|
131379
131552
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131553
|
+
input?: InputMaybe<AdminFetchAdminAuditLogEventsInput>;
|
|
131380
131554
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
131381
131555
|
orgId: Scalars['ID']['input'];
|
|
131382
131556
|
};
|
|
@@ -131453,6 +131627,16 @@ export declare type QueryAdmin_PermissionsArgs = {
|
|
|
131453
131627
|
principalId: Scalars['ID']['input'];
|
|
131454
131628
|
resourceId: Scalars['ID']['input'];
|
|
131455
131629
|
};
|
|
131630
|
+
export declare type QueryAdmin_SiteRefsForUnitArgs = {
|
|
131631
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
131632
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131633
|
+
orgId: Scalars['ID']['input'];
|
|
131634
|
+
unitId?: InputMaybe<Scalars['ID']['input']>;
|
|
131635
|
+
};
|
|
131636
|
+
export declare type QueryAdmin_SitesByIdsArgs = {
|
|
131637
|
+
orgId: Scalars['ID']['input'];
|
|
131638
|
+
siteIds: Array<Scalars['ID']['input']>;
|
|
131639
|
+
};
|
|
131456
131640
|
export declare type QueryAdmin_TokensArgs = {
|
|
131457
131641
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
131458
131642
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -133736,6 +133920,7 @@ export declare type QueryDevai_RovodevSessionsByIssueKeyArgs = {
|
|
|
133736
133920
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
133737
133921
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133738
133922
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
133923
|
+
statusCategoryFilter?: InputMaybe<DevAiSessionStatusCategoryFilter>;
|
|
133739
133924
|
};
|
|
133740
133925
|
export declare type QueryDevai_SavedPromptsArgs = {
|
|
133741
133926
|
cloudId: Scalars['ID']['input'];
|
|
@@ -135465,6 +135650,10 @@ export declare type QueryStakeholderComms_ListSubscribersConnectionArgs = {
|
|
|
135465
135650
|
order?: InputMaybe<StakeholderCommsSubscriberConnectionOrder>;
|
|
135466
135651
|
search?: InputMaybe<StakeholderCommsSubscriberConnectionSearch>;
|
|
135467
135652
|
};
|
|
135653
|
+
export declare type QueryStakeholderComms_SubscriptionStatsArgs = {
|
|
135654
|
+
itemId: Scalars['ID']['input'];
|
|
135655
|
+
type: StakeholderCommsSubscriberItemType;
|
|
135656
|
+
};
|
|
135468
135657
|
export declare type QueryStakeholderComms_UnifiedSearchArgs = {
|
|
135469
135658
|
input: StakeholderCommsUnifiedSearchInput;
|
|
135470
135659
|
};
|
|
@@ -159254,15 +159443,19 @@ export declare enum SpacePermissionType {
|
|
|
159254
159443
|
CreateAttachment = "CREATE_ATTACHMENT",
|
|
159255
159444
|
CreateBlog = "CREATE_BLOG",
|
|
159256
159445
|
CreateEditPage = "CREATE_EDIT_PAGE",
|
|
159446
|
+
DeleteOwnComment = "DELETE_OWN_COMMENT",
|
|
159257
159447
|
DeleteSpace = "DELETE_SPACE",
|
|
159258
159448
|
EditBlog = "EDIT_BLOG",
|
|
159259
159449
|
EditNativeContent = "EDIT_NATIVE_CONTENT",
|
|
159260
159450
|
ExportContent = "EXPORT_CONTENT",
|
|
159261
159451
|
ExportPage = "EXPORT_PAGE",
|
|
159262
159452
|
ExportSpace = "EXPORT_SPACE",
|
|
159453
|
+
ManageContent = "MANAGE_CONTENT",
|
|
159263
159454
|
ManageGuestUsers = "MANAGE_GUEST_USERS",
|
|
159455
|
+
ManageLookAndFeel = "MANAGE_LOOK_AND_FEEL",
|
|
159264
159456
|
ManageNonlicensedUsers = "MANAGE_NONLICENSED_USERS",
|
|
159265
159457
|
ManagePublicLinks = "MANAGE_PUBLIC_LINKS",
|
|
159458
|
+
ManageTemplates = "MANAGE_TEMPLATES",
|
|
159266
159459
|
ManageUsers = "MANAGE_USERS",
|
|
159267
159460
|
RemoveAttachment = "REMOVE_ATTACHMENT",
|
|
159268
159461
|
RemoveBlog = "REMOVE_BLOG",
|
|
@@ -161566,6 +161759,11 @@ export declare enum StakeholderCommsSubscriberStatus {
|
|
|
161566
161759
|
Unsubscribed = "UNSUBSCRIBED",
|
|
161567
161760
|
Unverified = "UNVERIFIED"
|
|
161568
161761
|
}
|
|
161762
|
+
export declare type StakeholderCommsSubscriberStatusCount = {
|
|
161763
|
+
__typename?: 'StakeholderCommsSubscriberStatusCount';
|
|
161764
|
+
count: Scalars['String']['output'];
|
|
161765
|
+
status: StakeholderCommsSubscriberStatus;
|
|
161766
|
+
};
|
|
161569
161767
|
export declare enum StakeholderCommsSubscriptionChannel {
|
|
161570
161768
|
Email = "EMAIL",
|
|
161571
161769
|
Slack = "SLACK",
|
|
@@ -161585,6 +161783,20 @@ export declare type StakeholderCommsSubscriptionRequest = {
|
|
|
161585
161783
|
subscriptionData?: InputMaybe<StakeholderCommsSubscriptionData>;
|
|
161586
161784
|
subscriptionType: StakeholderCommsSubscriptionChannel;
|
|
161587
161785
|
};
|
|
161786
|
+
export declare type StakeholderCommsSubscriptionStats = {
|
|
161787
|
+
__typename?: 'StakeholderCommsSubscriptionStats';
|
|
161788
|
+
countsByStatus?: Maybe<Array<Maybe<StakeholderCommsSubscriberStatusCount>>>;
|
|
161789
|
+
insertedAt?: Maybe<Scalars['String']['output']>;
|
|
161790
|
+
itemId?: Maybe<Scalars['String']['output']>;
|
|
161791
|
+
itemType?: Maybe<Scalars['String']['output']>;
|
|
161792
|
+
totalQuotaUsed?: Maybe<Scalars['Int']['output']>;
|
|
161793
|
+
updatedAt?: Maybe<Scalars['String']['output']>;
|
|
161794
|
+
};
|
|
161795
|
+
export declare type StakeholderCommsSubscriptionStatsResponse = {
|
|
161796
|
+
__typename?: 'StakeholderCommsSubscriptionStatsResponse';
|
|
161797
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
161798
|
+
stats?: Maybe<StakeholderCommsSubscriptionStats>;
|
|
161799
|
+
};
|
|
161588
161800
|
export declare enum StakeholderCommsSubscriptionType {
|
|
161589
161801
|
Email = "EMAIL",
|
|
161590
161802
|
MsTeams = "MS_TEAMS",
|
|
@@ -162446,7 +162658,8 @@ export declare enum SwimlaneStrategy {
|
|
|
162446
162658
|
Assignee = "ASSIGNEE",
|
|
162447
162659
|
Issuechildren = "ISSUECHILDREN",
|
|
162448
162660
|
Issueparent = "ISSUEPARENT",
|
|
162449
|
-
None = "NONE"
|
|
162661
|
+
None = "NONE",
|
|
162662
|
+
Townsquareproject = "TOWNSQUAREPROJECT"
|
|
162450
162663
|
}
|
|
162451
162664
|
export declare type SystemSpaceHomepageInput = {
|
|
162452
162665
|
systemSpaceHomepageTemplate: SystemSpaceHomepageTemplate;
|
|
@@ -169769,6 +169982,7 @@ export declare type TrelloPlannerCalendarEvent = Node & {
|
|
|
169769
169982
|
link?: Maybe<Scalars['String']['output']>;
|
|
169770
169983
|
parentEventId?: Maybe<Scalars['ID']['output']>;
|
|
169771
169984
|
plannerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
169985
|
+
providerCalendarId?: Maybe<Scalars['ID']['output']>;
|
|
169772
169986
|
readOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
169773
169987
|
startAt?: Maybe<Scalars['DateTime']['output']>;
|
|
169774
169988
|
status?: Maybe<TrelloPlannerCalendarEventStatus>;
|