@forge/cli-shared 8.3.0-next.2 → 8.3.1-next.0
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 +23 -0
- package/out/graphql/graphql-types.d.ts +778 -91
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +62 -30
- package/package.json +2 -2
|
@@ -1306,6 +1306,12 @@ export declare type AdminAnnouncementBannerFeature = {
|
|
|
1306
1306
|
__typename?: 'AdminAnnouncementBannerFeature';
|
|
1307
1307
|
isEntitled: Scalars['Boolean']['output'];
|
|
1308
1308
|
};
|
|
1309
|
+
export declare type AdminAnnouncementBannerMutationErrorExtension = MutationErrorExtension & {
|
|
1310
|
+
__typename?: 'AdminAnnouncementBannerMutationErrorExtension';
|
|
1311
|
+
adminAnnouncementBannerList: Array<Maybe<ConfluenceAdminAnnouncementBannerSetting>>;
|
|
1312
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
1313
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
1314
|
+
};
|
|
1309
1315
|
export declare type AdminAnnouncementBannerPageInfo = {
|
|
1310
1316
|
__typename?: 'AdminAnnouncementBannerPageInfo';
|
|
1311
1317
|
endPage?: Maybe<Scalars['String']['output']>;
|
|
@@ -1440,6 +1446,7 @@ export declare type AgentStudioAgentsConnection = {
|
|
|
1440
1446
|
export declare type AgentStudioAssistant = AgentStudioAgent & Node & {
|
|
1441
1447
|
__typename?: 'AgentStudioAssistant';
|
|
1442
1448
|
actions?: Maybe<AgentStudioActionConfiguration>;
|
|
1449
|
+
behaviour?: Maybe<Scalars['String']['output']>;
|
|
1443
1450
|
connectedChannels?: Maybe<AgentStudioConnectedChannels>;
|
|
1444
1451
|
conversationStarters?: Maybe<Array<Scalars['String']['output']>>;
|
|
1445
1452
|
creator?: Maybe<User>;
|
|
@@ -1460,8 +1467,8 @@ export declare type AgentStudioAssistantScenario = AgentStudioScenario & Node &
|
|
|
1460
1467
|
creator?: Maybe<User>;
|
|
1461
1468
|
creatorId: Scalars['ID']['output'];
|
|
1462
1469
|
id: Scalars['ID']['output'];
|
|
1463
|
-
instructions
|
|
1464
|
-
invocationDescription
|
|
1470
|
+
instructions?: Maybe<Scalars['String']['output']>;
|
|
1471
|
+
invocationDescription?: Maybe<Scalars['String']['output']>;
|
|
1465
1472
|
isActive: Scalars['Boolean']['output'];
|
|
1466
1473
|
isDefault: Scalars['Boolean']['output'];
|
|
1467
1474
|
isValid: AgentStudioScenarioValidation;
|
|
@@ -1495,6 +1502,7 @@ export declare type AgentStudioConversationStarterSuggestions = {
|
|
|
1495
1502
|
export declare type AgentStudioCreateAgentInput = {
|
|
1496
1503
|
actions?: InputMaybe<AgentStudioActionConfigurationInput>;
|
|
1497
1504
|
agentType: AgentStudioAgentType;
|
|
1505
|
+
behaviour?: InputMaybe<Scalars['String']['input']>;
|
|
1498
1506
|
conversationStarters?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1499
1507
|
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
1500
1508
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1517,10 +1525,10 @@ export declare enum AgentStudioCreateAgentPermissionMode {
|
|
|
1517
1525
|
export declare type AgentStudioCreateScenarioInput = {
|
|
1518
1526
|
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
1519
1527
|
containerId: Scalars['ID']['input'];
|
|
1520
|
-
instructions
|
|
1521
|
-
invocationDescription
|
|
1522
|
-
isActive
|
|
1523
|
-
isDefault
|
|
1528
|
+
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
1529
|
+
invocationDescription?: InputMaybe<Scalars['String']['input']>;
|
|
1530
|
+
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1531
|
+
isDefault?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1524
1532
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
1525
1533
|
name: Scalars['String']['input'];
|
|
1526
1534
|
};
|
|
@@ -1621,8 +1629,8 @@ export declare type AgentStudioScenario = {
|
|
|
1621
1629
|
actions?: Maybe<Array<AgentStudioAction>>;
|
|
1622
1630
|
creatorId: Scalars['ID']['output'];
|
|
1623
1631
|
id: Scalars['ID']['output'];
|
|
1624
|
-
instructions
|
|
1625
|
-
invocationDescription
|
|
1632
|
+
instructions?: Maybe<Scalars['String']['output']>;
|
|
1633
|
+
invocationDescription?: Maybe<Scalars['String']['output']>;
|
|
1626
1634
|
isActive: Scalars['Boolean']['output'];
|
|
1627
1635
|
isDefault: Scalars['Boolean']['output'];
|
|
1628
1636
|
isValid: AgentStudioScenarioValidation;
|
|
@@ -1630,6 +1638,28 @@ export declare type AgentStudioScenario = {
|
|
|
1630
1638
|
name: Scalars['String']['output'];
|
|
1631
1639
|
};
|
|
1632
1640
|
export declare type AgentStudioScenarioResult = AgentStudioAssistantScenario | QueryError;
|
|
1641
|
+
export declare type AgentStudioScenarioValidateInput = {
|
|
1642
|
+
invocationDescription: Scalars['String']['input'];
|
|
1643
|
+
isActive: Scalars['Boolean']['input'];
|
|
1644
|
+
isDefault: Scalars['Boolean']['input'];
|
|
1645
|
+
isEdited?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1646
|
+
name: Scalars['String']['input'];
|
|
1647
|
+
};
|
|
1648
|
+
export declare type AgentStudioScenarioValidateModeInput = {
|
|
1649
|
+
scenarios?: InputMaybe<Array<AgentStudioScenarioValidateInput>>;
|
|
1650
|
+
};
|
|
1651
|
+
export declare type AgentStudioScenarioValidateModeOutput = {
|
|
1652
|
+
__typename?: 'AgentStudioScenarioValidateModeOutput';
|
|
1653
|
+
scenarios?: Maybe<Array<AgentStudioScenarioValidateOutput>>;
|
|
1654
|
+
};
|
|
1655
|
+
export declare type AgentStudioScenarioValidateOutput = {
|
|
1656
|
+
__typename?: 'AgentStudioScenarioValidateOutput';
|
|
1657
|
+
invocationDescription: Scalars['String']['output'];
|
|
1658
|
+
isActive: Scalars['Boolean']['output'];
|
|
1659
|
+
isDefault: Scalars['Boolean']['output'];
|
|
1660
|
+
isValid: AgentStudioScenarioValidation;
|
|
1661
|
+
name: Scalars['String']['output'];
|
|
1662
|
+
};
|
|
1633
1663
|
export declare type AgentStudioScenarioValidation = {
|
|
1634
1664
|
__typename?: 'AgentStudioScenarioValidation';
|
|
1635
1665
|
message?: Maybe<Array<Maybe<AgentStudioScenarioValidationError>>>;
|
|
@@ -1640,6 +1670,10 @@ export declare type AgentStudioScenarioValidationError = {
|
|
|
1640
1670
|
key: Scalars['String']['output'];
|
|
1641
1671
|
value: Scalars['String']['output'];
|
|
1642
1672
|
};
|
|
1673
|
+
export declare type AgentStudioScenarioValidationPayload = {
|
|
1674
|
+
__typename?: 'AgentStudioScenarioValidationPayload';
|
|
1675
|
+
isValid: AgentStudioScenarioValidation;
|
|
1676
|
+
};
|
|
1643
1677
|
export declare type AgentStudioScenariosEdge = {
|
|
1644
1678
|
__typename?: 'AgentStudioScenariosEdge';
|
|
1645
1679
|
cursor: Scalars['String']['output'];
|
|
@@ -1712,6 +1746,7 @@ export declare type AgentStudioUpdateAgentAsFavouritePayload = Payload & {
|
|
|
1712
1746
|
success: Scalars['Boolean']['output'];
|
|
1713
1747
|
};
|
|
1714
1748
|
export declare type AgentStudioUpdateAgentDetailsInput = {
|
|
1749
|
+
behaviour?: InputMaybe<Scalars['String']['input']>;
|
|
1715
1750
|
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
1716
1751
|
defaultJiraRequestTypeId?: InputMaybe<Scalars['String']['input']>;
|
|
1717
1752
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -1748,13 +1783,13 @@ export declare type AgentStudioUpdateCreatePermissionModePayload = Payload & {
|
|
|
1748
1783
|
export declare type AgentStudioUpdateScenarioInput = {
|
|
1749
1784
|
actions?: InputMaybe<Array<AgentStudioActionInput>>;
|
|
1750
1785
|
containerId: Scalars['ID']['input'];
|
|
1751
|
-
creatorId
|
|
1752
|
-
instructions
|
|
1753
|
-
invocationDescription
|
|
1754
|
-
isActive
|
|
1755
|
-
isDefault
|
|
1786
|
+
creatorId?: InputMaybe<Scalars['ID']['input']>;
|
|
1787
|
+
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
1788
|
+
invocationDescription?: InputMaybe<Scalars['String']['input']>;
|
|
1789
|
+
isActive?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1790
|
+
isDefault?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1756
1791
|
knowledgeSources?: InputMaybe<AgentStudioKnowledgeConfigurationInput>;
|
|
1757
|
-
name
|
|
1792
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
1758
1793
|
};
|
|
1759
1794
|
export declare type AgentStudioUpdateScenarioMappingsPayload = Payload & {
|
|
1760
1795
|
__typename?: 'AgentStudioUpdateScenarioMappingsPayload';
|
|
@@ -3689,6 +3724,39 @@ export declare type AssetsDmObjectsListTag = {
|
|
|
3689
3724
|
tagCode: Scalars['Int']['output'];
|
|
3690
3725
|
tagId: Scalars['ID']['output'];
|
|
3691
3726
|
};
|
|
3727
|
+
export declare type AssetsDmPaginationInfo = {
|
|
3728
|
+
__typename?: 'AssetsDMPaginationInfo';
|
|
3729
|
+
currentPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
3730
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
3731
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
3732
|
+
nextPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
3733
|
+
pageSize: Scalars['Int']['output'];
|
|
3734
|
+
previousPageCursor?: Maybe<Scalars['Int']['output']>;
|
|
3735
|
+
totalPages: Scalars['Int']['output'];
|
|
3736
|
+
};
|
|
3737
|
+
export declare type AssetsDmPaginationInput = {
|
|
3738
|
+
pageCursor?: Scalars['Int']['input'];
|
|
3739
|
+
pageSize?: Scalars['Int']['input'];
|
|
3740
|
+
};
|
|
3741
|
+
export declare type AssetsDmRawDataFilter = {
|
|
3742
|
+
__typename?: 'AssetsDMRawDataFilter';
|
|
3743
|
+
name: Scalars['String']['output'];
|
|
3744
|
+
type: Scalars['String']['output'];
|
|
3745
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
3746
|
+
valueTo?: Maybe<Scalars['String']['output']>;
|
|
3747
|
+
};
|
|
3748
|
+
export declare type AssetsDmRawDataFilterInput = {
|
|
3749
|
+
name: Scalars['String']['input'];
|
|
3750
|
+
type: Scalars['String']['input'];
|
|
3751
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
3752
|
+
valueTo?: InputMaybe<Scalars['String']['input']>;
|
|
3753
|
+
};
|
|
3754
|
+
export declare type AssetsDmRawDataResponse = {
|
|
3755
|
+
__typename?: 'AssetsDMRawDataResponse';
|
|
3756
|
+
data: Array<Scalars['JSON']['output']>;
|
|
3757
|
+
filters: Array<AssetsDmRawDataFilter>;
|
|
3758
|
+
pagination: AssetsDmPaginationInfo;
|
|
3759
|
+
};
|
|
3692
3760
|
export declare type AssetsDmSchemaObjectType = {
|
|
3693
3761
|
__typename?: 'AssetsDMSchemaObjectType';
|
|
3694
3762
|
id: Scalars['ID']['output'];
|
|
@@ -6716,6 +6784,7 @@ export declare type ChannelPlatformTranscriptRequest = {
|
|
|
6716
6784
|
contactId?: InputMaybe<Scalars['String']['input']>;
|
|
6717
6785
|
issueId?: InputMaybe<Scalars['String']['input']>;
|
|
6718
6786
|
role?: InputMaybe<ChannelPlatformRole>;
|
|
6787
|
+
startAfterChatMessageId?: InputMaybe<Scalars['String']['input']>;
|
|
6719
6788
|
};
|
|
6720
6789
|
export declare type ChannelPlatformTranscriptResponse = {
|
|
6721
6790
|
__typename?: 'ChannelPlatformTranscriptResponse';
|
|
@@ -6939,6 +7008,7 @@ export declare type Comment = {
|
|
|
6939
7008
|
commentSource?: Maybe<Platform>;
|
|
6940
7009
|
container: Content;
|
|
6941
7010
|
contentStatus: Scalars['String']['output'];
|
|
7011
|
+
createdAt: ConfluenceDate;
|
|
6942
7012
|
createdAtNonLocalized: Scalars['String']['output'];
|
|
6943
7013
|
excerpt: Scalars['String']['output'];
|
|
6944
7014
|
id: Scalars['ID']['output'];
|
|
@@ -12556,6 +12626,12 @@ export declare type ConfluenceBulkPdfExportContent = {
|
|
|
12556
12626
|
contentId: Scalars['ID']['input'];
|
|
12557
12627
|
excludedChildrenIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
12558
12628
|
};
|
|
12629
|
+
export declare type ConfluenceCalendarJiraDateField = {
|
|
12630
|
+
__typename?: 'ConfluenceCalendarJiraDateField';
|
|
12631
|
+
isCustomField: Scalars['Boolean']['output'];
|
|
12632
|
+
key: Scalars['String']['output'];
|
|
12633
|
+
name: Scalars['String']['output'];
|
|
12634
|
+
};
|
|
12559
12635
|
export declare type ConfluenceCalendarJqlValidationResult = {
|
|
12560
12636
|
__typename?: 'ConfluenceCalendarJqlValidationResult';
|
|
12561
12637
|
errorMessages?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
@@ -12682,6 +12758,7 @@ export declare type ConfluenceContentAccessRequest = {
|
|
|
12682
12758
|
lastModifierAaid?: Maybe<Scalars['ID']['output']>;
|
|
12683
12759
|
requestAccessType: ResourceAccessType;
|
|
12684
12760
|
status: ConfluenceContentAccessRequestStatus;
|
|
12761
|
+
user?: Maybe<AtlassianUser>;
|
|
12685
12762
|
};
|
|
12686
12763
|
export declare type ConfluenceContentAccessRequestConnection = {
|
|
12687
12764
|
__typename?: 'ConfluenceContentAccessRequestConnection';
|
|
@@ -12921,7 +12998,7 @@ export declare type ConfluenceCreateCsvExportTaskPayload = Payload & {
|
|
|
12921
12998
|
success: Scalars['Boolean']['output'];
|
|
12922
12999
|
};
|
|
12923
13000
|
export declare type ConfluenceCreateCustomRoleInput = {
|
|
12924
|
-
description
|
|
13001
|
+
description: Scalars['String']['input'];
|
|
12925
13002
|
name: Scalars['String']['input'];
|
|
12926
13003
|
permissions: Array<InputMaybe<Scalars['String']['input']>>;
|
|
12927
13004
|
};
|
|
@@ -13028,6 +13105,7 @@ export declare type ConfluenceDataLifecycleManagementPolicy = {
|
|
|
13028
13105
|
};
|
|
13029
13106
|
export declare type ConfluenceDataRetentionPolicyStatus = {
|
|
13030
13107
|
__typename?: 'ConfluenceDataRetentionPolicyStatus';
|
|
13108
|
+
disabledOnDate?: Maybe<ConfluenceDate>;
|
|
13031
13109
|
policyEnabledStatus: ConfluencePolicyEnabledStatus;
|
|
13032
13110
|
};
|
|
13033
13111
|
export declare type ConfluenceDatabase = Node & {
|
|
@@ -13051,6 +13129,10 @@ export declare type ConfluenceDatabaseLinks = {
|
|
|
13051
13129
|
base?: Maybe<Scalars['String']['output']>;
|
|
13052
13130
|
webUi?: Maybe<Scalars['String']['output']>;
|
|
13053
13131
|
};
|
|
13132
|
+
export declare type ConfluenceDate = {
|
|
13133
|
+
__typename?: 'ConfluenceDate';
|
|
13134
|
+
value: Scalars['String']['output'];
|
|
13135
|
+
};
|
|
13054
13136
|
export declare type ConfluenceDeleteBlogPostPropertyInput = {
|
|
13055
13137
|
blogPostId: Scalars['ID']['input'];
|
|
13056
13138
|
key: Scalars['String']['input'];
|
|
@@ -13265,7 +13347,13 @@ export declare type ConfluenceExtensionPrincipal = {
|
|
|
13265
13347
|
id?: Maybe<Scalars['ID']['output']>;
|
|
13266
13348
|
};
|
|
13267
13349
|
export declare type ConfluenceExtensionRenderingContextInput = {
|
|
13268
|
-
spaceId
|
|
13350
|
+
spaceId?: InputMaybe<Scalars['Long']['input']>;
|
|
13351
|
+
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
13352
|
+
};
|
|
13353
|
+
export declare type ConfluenceExtensionSpecificContext = {
|
|
13354
|
+
appVersion: Scalars['String']['input'];
|
|
13355
|
+
context: ConfluenceForgePayloadContext;
|
|
13356
|
+
extensionId: Scalars['String']['input'];
|
|
13269
13357
|
};
|
|
13270
13358
|
export declare enum ConfluenceExtensionVisibilityControlMechanism {
|
|
13271
13359
|
AppAccessRules = "APP_ACCESS_RULES",
|
|
@@ -13326,11 +13414,28 @@ export declare type ConfluenceFooterComment = ConfluenceComment & Node & {
|
|
|
13326
13414
|
name?: Maybe<Scalars['String']['output']>;
|
|
13327
13415
|
status?: Maybe<ConfluenceCommentStatus>;
|
|
13328
13416
|
};
|
|
13417
|
+
export declare type ConfluenceForgeContextToken = {
|
|
13418
|
+
__typename?: 'ConfluenceForgeContextToken';
|
|
13419
|
+
expiresAt?: Maybe<Scalars['String']['output']>;
|
|
13420
|
+
extensionId?: Maybe<Scalars['String']['output']>;
|
|
13421
|
+
jwt?: Maybe<Scalars['String']['output']>;
|
|
13422
|
+
};
|
|
13423
|
+
export declare type ConfluenceForgeContextTokenPayload = {
|
|
13424
|
+
__typename?: 'ConfluenceForgeContextTokenPayload';
|
|
13425
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13426
|
+
forgeContextToken?: Maybe<ConfluenceForgeContextToken>;
|
|
13427
|
+
success: Scalars['Boolean']['output'];
|
|
13428
|
+
};
|
|
13429
|
+
export declare type ConfluenceForgeContextTokenRequestInput = {
|
|
13430
|
+
contextIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
13431
|
+
extensionSpecificContexts: ConfluenceExtensionSpecificContext;
|
|
13432
|
+
};
|
|
13329
13433
|
export declare type ConfluenceForgeExtension = {
|
|
13330
13434
|
__typename?: 'ConfluenceForgeExtension';
|
|
13331
13435
|
appId: Scalars['ID']['output'];
|
|
13332
13436
|
appOwner?: Maybe<Scalars['String']['output']>;
|
|
13333
13437
|
appVersion?: Maybe<Scalars['String']['output']>;
|
|
13438
|
+
consentUrl?: Maybe<Scalars['String']['output']>;
|
|
13334
13439
|
definitionId: Scalars['ID']['output'];
|
|
13335
13440
|
egress?: Maybe<Array<ConfluenceExtensionEgressDeclaration>>;
|
|
13336
13441
|
environmentId: Scalars['ID']['output'];
|
|
@@ -13347,6 +13452,25 @@ export declare type ConfluenceForgeExtension = {
|
|
|
13347
13452
|
scopes: Array<Maybe<Scalars['String']['output']>>;
|
|
13348
13453
|
type: Scalars['String']['output'];
|
|
13349
13454
|
};
|
|
13455
|
+
export declare type ConfluenceForgeExtensionData = {
|
|
13456
|
+
content?: InputMaybe<ConfluenceForgeExtensionDataContent>;
|
|
13457
|
+
isConfig?: InputMaybe<Scalars['Boolean']['input']>;
|
|
13458
|
+
space?: InputMaybe<ConfluenceForgeExtensionDataSpace>;
|
|
13459
|
+
type: Scalars['String']['input'];
|
|
13460
|
+
};
|
|
13461
|
+
export declare type ConfluenceForgeExtensionDataContent = {
|
|
13462
|
+
id: Scalars['ID']['input'];
|
|
13463
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
13464
|
+
};
|
|
13465
|
+
export declare type ConfluenceForgeExtensionDataSpace = {
|
|
13466
|
+
id?: InputMaybe<Scalars['Long']['input']>;
|
|
13467
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
|
13468
|
+
};
|
|
13469
|
+
export declare type ConfluenceForgePayloadContext = {
|
|
13470
|
+
extension: ConfluenceForgeExtensionData;
|
|
13471
|
+
localId?: InputMaybe<Scalars['String']['input']>;
|
|
13472
|
+
moduleKey?: InputMaybe<Scalars['String']['input']>;
|
|
13473
|
+
};
|
|
13350
13474
|
export declare type ConfluenceGeneratedSpaceKey = {
|
|
13351
13475
|
__typename?: 'ConfluenceGeneratedSpaceKey';
|
|
13352
13476
|
key?: Maybe<Scalars['String']['output']>;
|
|
@@ -13468,6 +13592,17 @@ export declare enum ConfluenceInlineTaskStatus {
|
|
|
13468
13592
|
Complete = "COMPLETE",
|
|
13469
13593
|
Incomplete = "INCOMPLETE"
|
|
13470
13594
|
}
|
|
13595
|
+
export declare type ConfluenceInsertOfflineVersionInput = {
|
|
13596
|
+
adfContent: Scalars['String']['input'];
|
|
13597
|
+
contentId: Scalars['ID']['input'];
|
|
13598
|
+
versionComment?: InputMaybe<Scalars['String']['input']>;
|
|
13599
|
+
};
|
|
13600
|
+
export declare type ConfluenceInsertOfflineVersionPayload = Payload & {
|
|
13601
|
+
__typename?: 'ConfluenceInsertOfflineVersionPayload';
|
|
13602
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13603
|
+
success: Scalars['Boolean']['output'];
|
|
13604
|
+
versionNumber?: Maybe<Scalars['Int']['output']>;
|
|
13605
|
+
};
|
|
13471
13606
|
export declare type ConfluenceInviteUserInput = {
|
|
13472
13607
|
inviteeIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
13473
13608
|
};
|
|
@@ -14327,6 +14462,11 @@ export declare enum ConfluenceSpaceOwnerType {
|
|
|
14327
14462
|
Group = "GROUP",
|
|
14328
14463
|
User = "USER"
|
|
14329
14464
|
}
|
|
14465
|
+
export declare type ConfluenceSpaceRoleAppPrincipal = SpaceRolePrincipal & {
|
|
14466
|
+
__typename?: 'ConfluenceSpaceRoleAppPrincipal';
|
|
14467
|
+
displayName: Scalars['String']['output'];
|
|
14468
|
+
principalId: Scalars['ID']['output'];
|
|
14469
|
+
};
|
|
14330
14470
|
export declare enum ConfluenceSpaceRoleMode {
|
|
14331
14471
|
PreRoles = "PRE_ROLES",
|
|
14332
14472
|
Roles = "ROLES",
|
|
@@ -14540,9 +14680,11 @@ export declare type ConfluenceUpdateCurrentPagePayload = Payload & {
|
|
|
14540
14680
|
success: Scalars['Boolean']['output'];
|
|
14541
14681
|
};
|
|
14542
14682
|
export declare type ConfluenceUpdateCustomRoleInput = {
|
|
14543
|
-
|
|
14544
|
-
|
|
14545
|
-
|
|
14683
|
+
anonymousReassignmentRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
14684
|
+
description: Scalars['String']['input'];
|
|
14685
|
+
guestReassignmentRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
14686
|
+
name: Scalars['String']['input'];
|
|
14687
|
+
permissions: Array<InputMaybe<Scalars['String']['input']>>;
|
|
14546
14688
|
roleId: Scalars['ID']['input'];
|
|
14547
14689
|
};
|
|
14548
14690
|
export declare type ConfluenceUpdateCustomRolePayload = Payload & {
|
|
@@ -14732,6 +14874,10 @@ export declare enum ConfluenceViewState {
|
|
|
14732
14874
|
Live = "LIVE",
|
|
14733
14875
|
Renderer = "RENDERER"
|
|
14734
14876
|
}
|
|
14877
|
+
export declare type ConfluenceWacTemplate = {
|
|
14878
|
+
__typename?: 'ConfluenceWacTemplate';
|
|
14879
|
+
templateId?: Maybe<Scalars['String']['output']>;
|
|
14880
|
+
};
|
|
14735
14881
|
export declare type ConfluenceWatchSubCalendarInput = {
|
|
14736
14882
|
subCalendarId: Scalars['ID']['input'];
|
|
14737
14883
|
};
|
|
@@ -14952,7 +15098,6 @@ export declare type Content = {
|
|
|
14952
15098
|
children?: Maybe<PaginatedContentList>;
|
|
14953
15099
|
classificationLevelDetails?: Maybe<ClassificationLevelDetails>;
|
|
14954
15100
|
classificationLevelId?: Maybe<Scalars['String']['output']>;
|
|
14955
|
-
classificationLevelMetadata?: Maybe<ContentDataClassificationLevel>;
|
|
14956
15101
|
classificationLevelOverrideId?: Maybe<Scalars['String']['output']>;
|
|
14957
15102
|
comments?: Maybe<PaginatedContentList>;
|
|
14958
15103
|
container?: Maybe<SpaceOrContent>;
|
|
@@ -14962,6 +15107,7 @@ export declare type Content = {
|
|
|
14962
15107
|
contentProperties?: Maybe<ContentProperties>;
|
|
14963
15108
|
contentReactionsSummary?: Maybe<ReactionsSummaryResponse>;
|
|
14964
15109
|
contentState?: Maybe<ContentState>;
|
|
15110
|
+
contentStateLastUpdated?: Maybe<ConfluenceDate>;
|
|
14965
15111
|
creatorId?: Maybe<Scalars['String']['output']>;
|
|
14966
15112
|
currentUserHasAncestorWatchingChildren?: Maybe<Scalars['Boolean']['output']>;
|
|
14967
15113
|
currentUserIsWatching: Scalars['Boolean']['output'];
|
|
@@ -15040,11 +15186,16 @@ export declare type ContentCommentsArgs = {
|
|
|
15040
15186
|
};
|
|
15041
15187
|
export declare type ContentContentAnalyticsViewsByUserArgs = {
|
|
15042
15188
|
accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
15189
|
+
engageTimeThreshold?: InputMaybe<Scalars['Int']['input']>;
|
|
15190
|
+
isPrivacyModeEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15043
15191
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
15044
15192
|
};
|
|
15045
15193
|
export declare type ContentContentStateArgs = {
|
|
15046
15194
|
isDraft?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15047
15195
|
};
|
|
15196
|
+
export declare type ContentContentStateLastUpdatedArgs = {
|
|
15197
|
+
format?: InputMaybe<GraphQlDateFormat>;
|
|
15198
|
+
};
|
|
15048
15199
|
export declare type ContentDynamicMobileBodyArgs = {
|
|
15049
15200
|
imageLazyLoading?: Scalars['Boolean']['input'];
|
|
15050
15201
|
pagePropertiesReportMacroRenderAtServer?: Scalars['Boolean']['input'];
|
|
@@ -17110,8 +17261,8 @@ export declare type CountUsersGroupByPageItem = {
|
|
|
17110
17261
|
page: Scalars['String']['output'];
|
|
17111
17262
|
user: Scalars['Int']['output'];
|
|
17112
17263
|
};
|
|
17113
|
-
export declare type
|
|
17114
|
-
__typename?: '
|
|
17264
|
+
export declare type CplsCapacityPlanningPeopleView = {
|
|
17265
|
+
__typename?: 'CplsCapacityPlanningPeopleView';
|
|
17115
17266
|
id: Scalars['ID']['output'];
|
|
17116
17267
|
};
|
|
17117
17268
|
export declare type CreateAppContainerPayload = Payload & {
|
|
@@ -17951,6 +18102,7 @@ export declare type CsmAiAgentVersion = {
|
|
|
17951
18102
|
agentIdentityConfig?: Maybe<CsmAiAgentIdentityConfigResult>;
|
|
17952
18103
|
coachingContents?: Maybe<Array<CsmAiCoachingContentResult>>;
|
|
17953
18104
|
handoffConfigs?: Maybe<Array<CsmAiHandoffConfigResult>>;
|
|
18105
|
+
knowledgeCollection?: Maybe<CsmAiKnowledgeCollectionResult>;
|
|
17954
18106
|
versionId: Scalars['ID']['output'];
|
|
17955
18107
|
versionNumber?: Maybe<Scalars['Int']['output']>;
|
|
17956
18108
|
versionType?: Maybe<Scalars['String']['output']>;
|
|
@@ -17963,6 +18115,7 @@ export declare type CsmAiAgentVersionConnection = {
|
|
|
17963
18115
|
nodes?: Maybe<Array<CsmAiAgentVersion>>;
|
|
17964
18116
|
pageInfo: PageInfo;
|
|
17965
18117
|
};
|
|
18118
|
+
export declare type CsmAiAgentVersionResult = CsmAiAgentVersion | QueryError;
|
|
17966
18119
|
export declare type CsmAiApiOperation = {
|
|
17967
18120
|
__typename?: 'CsmAiApiOperation';
|
|
17968
18121
|
headers?: Maybe<Array<Maybe<CsmAiKeyValuePair>>>;
|
|
@@ -18001,6 +18154,11 @@ export declare type CsmAiAuthoredCoachingContentInput = {
|
|
|
18001
18154
|
triggerConditionByCoach?: InputMaybe<Scalars['String']['input']>;
|
|
18002
18155
|
};
|
|
18003
18156
|
export declare type CsmAiCoachingContentResult = CsmAiAgentCoachingContent | QueryError;
|
|
18157
|
+
export declare type CsmAiConfluenceKnowledgeFilter = {
|
|
18158
|
+
__typename?: 'CsmAiConfluenceKnowledgeFilter';
|
|
18159
|
+
parentFilter?: Maybe<Array<Scalars['ID']['output']>>;
|
|
18160
|
+
spaceFilter?: Maybe<Array<Scalars['ID']['output']>>;
|
|
18161
|
+
};
|
|
18004
18162
|
export declare type CsmAiConnectorConfiguration = CsmAiMessageHandoff | CsmAiTicketingHandoff;
|
|
18005
18163
|
export declare type CsmAiConnectorConfigurationInput = {
|
|
18006
18164
|
messageHandoff?: InputMaybe<CsmAiMessageHandoffInput>;
|
|
@@ -18098,6 +18256,21 @@ export declare type CsmAiKeyValuePair = {
|
|
|
18098
18256
|
key?: Maybe<Scalars['String']['output']>;
|
|
18099
18257
|
value?: Maybe<Scalars['String']['output']>;
|
|
18100
18258
|
};
|
|
18259
|
+
export declare type CsmAiKnowledgeCollection = {
|
|
18260
|
+
__typename?: 'CsmAiKnowledgeCollection';
|
|
18261
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
18262
|
+
id: Scalars['ID']['output'];
|
|
18263
|
+
sources?: Maybe<Array<CsmAiKnowledgeSource>>;
|
|
18264
|
+
};
|
|
18265
|
+
export declare type CsmAiKnowledgeCollectionResult = CsmAiKnowledgeCollection | QueryError;
|
|
18266
|
+
export declare type CsmAiKnowledgeFilter = CsmAiConfluenceKnowledgeFilter;
|
|
18267
|
+
export declare type CsmAiKnowledgeSource = {
|
|
18268
|
+
__typename?: 'CsmAiKnowledgeSource';
|
|
18269
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
18270
|
+
filters: CsmAiKnowledgeFilter;
|
|
18271
|
+
id: Scalars['ID']['output'];
|
|
18272
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
18273
|
+
};
|
|
18101
18274
|
export declare type CsmAiMessageHandoff = {
|
|
18102
18275
|
__typename?: 'CsmAiMessageHandoff';
|
|
18103
18276
|
message: Scalars['String']['output'];
|
|
@@ -19867,6 +20040,14 @@ export declare type DeleteEventSourcePayload = Payload & {
|
|
|
19867
20040
|
errors?: Maybe<Array<MutationError>>;
|
|
19868
20041
|
success: Scalars['Boolean']['output'];
|
|
19869
20042
|
};
|
|
20043
|
+
export declare type DeleteExCoSpacePermissionsInput = {
|
|
20044
|
+
accountId: Scalars['String']['input'];
|
|
20045
|
+
};
|
|
20046
|
+
export declare type DeleteExCoSpacePermissionsPayload = Payload & {
|
|
20047
|
+
__typename?: 'DeleteExCoSpacePermissionsPayload';
|
|
20048
|
+
errors?: Maybe<Array<MutationError>>;
|
|
20049
|
+
success: Scalars['Boolean']['output'];
|
|
20050
|
+
};
|
|
19870
20051
|
export declare type DeleteInlineCommentInput = {
|
|
19871
20052
|
commentId: Scalars['ID']['input'];
|
|
19872
20053
|
step?: InputMaybe<Step>;
|
|
@@ -25215,51 +25396,6 @@ export declare enum ForgeMetricsApiRequestType {
|
|
|
25215
25396
|
Product = "PRODUCT",
|
|
25216
25397
|
Sql = "SQL"
|
|
25217
25398
|
}
|
|
25218
|
-
export declare type ForgeMetricsChartInsightChoiceData = {
|
|
25219
|
-
__typename?: 'ForgeMetricsChartInsightChoiceData';
|
|
25220
|
-
finishReason: Scalars['String']['output'];
|
|
25221
|
-
index: Scalars['Int']['output'];
|
|
25222
|
-
message: ForgeMetricsChartInsightChoiceMessageData;
|
|
25223
|
-
};
|
|
25224
|
-
export declare type ForgeMetricsChartInsightChoiceMessageData = {
|
|
25225
|
-
__typename?: 'ForgeMetricsChartInsightChoiceMessageData';
|
|
25226
|
-
content: Scalars['String']['output'];
|
|
25227
|
-
role: Scalars['String']['output'];
|
|
25228
|
-
};
|
|
25229
|
-
export declare type ForgeMetricsChartInsightData = {
|
|
25230
|
-
__typename?: 'ForgeMetricsChartInsightData';
|
|
25231
|
-
choices: Array<ForgeMetricsChartInsightChoiceData>;
|
|
25232
|
-
created: Scalars['Int']['output'];
|
|
25233
|
-
id: Scalars['ID']['output'];
|
|
25234
|
-
model: Scalars['String']['output'];
|
|
25235
|
-
object: Scalars['String']['output'];
|
|
25236
|
-
usage: ForgeMetricsChartInsightUsage;
|
|
25237
|
-
};
|
|
25238
|
-
export declare type ForgeMetricsChartInsightQueryInput = {
|
|
25239
|
-
apiRequestChartFilters?: InputMaybe<ForgeMetricsApiRequestQueryFilters>;
|
|
25240
|
-
apiRequestGroupBy?: InputMaybe<Array<ForgeMetricsApiRequestGroupByDimensions>>;
|
|
25241
|
-
chartName?: InputMaybe<ForgeMetricsChartName>;
|
|
25242
|
-
invocationChartFilters?: InputMaybe<ForgeMetricsQueryFilters>;
|
|
25243
|
-
invocationGroupBy?: InputMaybe<Array<ForgeMetricsGroupByDimensions>>;
|
|
25244
|
-
latencyBucketsChartFilters?: InputMaybe<ForgeMetricsLatencyBucketsQueryFilters>;
|
|
25245
|
-
};
|
|
25246
|
-
export declare type ForgeMetricsChartInsightResult = ForgeMetricsChartInsightData | QueryError;
|
|
25247
|
-
export declare type ForgeMetricsChartInsightUsage = {
|
|
25248
|
-
__typename?: 'ForgeMetricsChartInsightUsage';
|
|
25249
|
-
completionTokens: Scalars['Int']['output'];
|
|
25250
|
-
promptTokens: Scalars['Int']['output'];
|
|
25251
|
-
totalTokens: Scalars['Int']['output'];
|
|
25252
|
-
};
|
|
25253
|
-
export declare enum ForgeMetricsChartName {
|
|
25254
|
-
ApiRequestCount_2Xx = "API_REQUEST_COUNT_2XX",
|
|
25255
|
-
ApiRequestCount_4Xx = "API_REQUEST_COUNT_4XX",
|
|
25256
|
-
ApiRequestCount_5Xx = "API_REQUEST_COUNT_5XX",
|
|
25257
|
-
ApiRequestLatency = "API_REQUEST_LATENCY",
|
|
25258
|
-
InvocationCount = "INVOCATION_COUNT",
|
|
25259
|
-
InvocationError = "INVOCATION_ERROR",
|
|
25260
|
-
InvocationLatency = "INVOCATION_LATENCY",
|
|
25261
|
-
InvocationSuccessRate = "INVOCATION_SUCCESS_RATE"
|
|
25262
|
-
}
|
|
25263
25399
|
export declare enum ForgeMetricsContexts {
|
|
25264
25400
|
Compass = "COMPASS",
|
|
25265
25401
|
Confluence = "CONFLUENCE",
|
|
@@ -25487,7 +25623,6 @@ export declare type ForgeMetricsQuery = {
|
|
|
25487
25623
|
appId: Scalars['ID']['output'];
|
|
25488
25624
|
appMetrics: ForgeMetricsOtlpResult;
|
|
25489
25625
|
cacheHitRate: ForgeMetricsSuccessRateResult;
|
|
25490
|
-
chartInsight: ForgeMetricsChartInsightResult;
|
|
25491
25626
|
customMetrics: ForgeMetricsInvocationsResult;
|
|
25492
25627
|
customMetricsMetaData: ForgeMetricsCustomResult;
|
|
25493
25628
|
errors: ForgeMetricsErrorsResult;
|
|
@@ -25522,9 +25657,6 @@ export declare type ForgeMetricsQueryAppMetricsArgs = {
|
|
|
25522
25657
|
export declare type ForgeMetricsQueryCacheHitRateArgs = {
|
|
25523
25658
|
query: ForgeMetricsApiRequestQueryInput;
|
|
25524
25659
|
};
|
|
25525
|
-
export declare type ForgeMetricsQueryChartInsightArgs = {
|
|
25526
|
-
query: ForgeMetricsChartInsightQueryInput;
|
|
25527
|
-
};
|
|
25528
25660
|
export declare type ForgeMetricsQueryCustomMetricsArgs = {
|
|
25529
25661
|
query: ForgeMetricsCustomQueryInput;
|
|
25530
25662
|
};
|
|
@@ -26829,6 +26961,52 @@ export declare type GraphIncidentLinkedJswIssueRelationshipEdge = {
|
|
|
26829
26961
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
26830
26962
|
node: GraphIncidentLinkedJswIssueRelationship;
|
|
26831
26963
|
};
|
|
26964
|
+
export declare type GraphIntegrationDirectoryFilterDimension = {
|
|
26965
|
+
__typename?: 'GraphIntegrationDirectoryFilterDimension';
|
|
26966
|
+
displayName: Scalars['String']['output'];
|
|
26967
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
26968
|
+
id: Scalars['ID']['output'];
|
|
26969
|
+
relevantFor?: Maybe<GraphIntegrationDirectoryItemType>;
|
|
26970
|
+
};
|
|
26971
|
+
export declare type GraphIntegrationDirectoryFilterDimensionConnection = {
|
|
26972
|
+
__typename?: 'GraphIntegrationDirectoryFilterDimensionConnection';
|
|
26973
|
+
edges?: Maybe<Array<GraphIntegrationDirectoryFilterDimensionEdge>>;
|
|
26974
|
+
pageInfo: PageInfo;
|
|
26975
|
+
};
|
|
26976
|
+
export declare type GraphIntegrationDirectoryFilterDimensionEdge = {
|
|
26977
|
+
__typename?: 'GraphIntegrationDirectoryFilterDimensionEdge';
|
|
26978
|
+
cursor: Scalars['String']['output'];
|
|
26979
|
+
node?: Maybe<GraphIntegrationDirectoryFilterDimension>;
|
|
26980
|
+
};
|
|
26981
|
+
export declare type GraphIntegrationDirectoryItem = GraphIntegrationMcpServer | GraphIntegrationMcpTool;
|
|
26982
|
+
export declare type GraphIntegrationDirectoryItemConnection = {
|
|
26983
|
+
__typename?: 'GraphIntegrationDirectoryItemConnection';
|
|
26984
|
+
edges: Array<GraphIntegrationDirectoryItemEdge>;
|
|
26985
|
+
pageInfo: PageInfo;
|
|
26986
|
+
};
|
|
26987
|
+
export declare type GraphIntegrationDirectoryItemEdge = {
|
|
26988
|
+
__typename?: 'GraphIntegrationDirectoryItemEdge';
|
|
26989
|
+
cursor: Scalars['String']['output'];
|
|
26990
|
+
node?: Maybe<GraphIntegrationDirectoryItem>;
|
|
26991
|
+
};
|
|
26992
|
+
export declare enum GraphIntegrationDirectoryItemType {
|
|
26993
|
+
McpTool = "MCP_TOOL"
|
|
26994
|
+
}
|
|
26995
|
+
export declare type GraphIntegrationMcpServer = {
|
|
26996
|
+
__typename?: 'GraphIntegrationMcpServer';
|
|
26997
|
+
displayName: Scalars['String']['output'];
|
|
26998
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
26999
|
+
id: Scalars['ID']['output'];
|
|
27000
|
+
};
|
|
27001
|
+
export declare type GraphIntegrationMcpTool = {
|
|
27002
|
+
__typename?: 'GraphIntegrationMcpTool';
|
|
27003
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
27004
|
+
displayName: Scalars['String']['output'];
|
|
27005
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
27006
|
+
id: Scalars['ID']['output'];
|
|
27007
|
+
mcpServer: GraphIntegrationMcpServer;
|
|
27008
|
+
name: Scalars['String']['output'];
|
|
27009
|
+
};
|
|
26832
27010
|
export declare type GraphIssueAssociatedDesignPayload = Payload & {
|
|
26833
27011
|
__typename?: 'GraphIssueAssociatedDesignPayload';
|
|
26834
27012
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -27236,6 +27414,12 @@ export declare enum GraphQlCoverPictureWidth {
|
|
|
27236
27414
|
Fixed = "FIXED",
|
|
27237
27415
|
Full = "FULL"
|
|
27238
27416
|
}
|
|
27417
|
+
export declare enum GraphQlDateFormat {
|
|
27418
|
+
Global = "GLOBAL",
|
|
27419
|
+
Millis = "MILLIS",
|
|
27420
|
+
User = "USER",
|
|
27421
|
+
UserFriendly = "USER_FRIENDLY"
|
|
27422
|
+
}
|
|
27239
27423
|
export declare enum GraphQlFrontCoverState {
|
|
27240
27424
|
Hidden = "HIDDEN",
|
|
27241
27425
|
Shown = "SHOWN",
|
|
@@ -29491,6 +29675,16 @@ export declare type GraphStore = {
|
|
|
29491
29675
|
appInstallationAssociatedToOperationsWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToOperationsWorkspaceConnection>;
|
|
29492
29676
|
appInstallationAssociatedToSecurityWorkspaceInverseRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
|
|
29493
29677
|
appInstallationAssociatedToSecurityWorkspaceRelationship?: Maybe<GraphStoreFullAppInstallationAssociatedToSecurityWorkspaceConnection>;
|
|
29678
|
+
askHasImpactedWork?: Maybe<GraphStoreSimplifiedAskHasImpactedWorkConnection>;
|
|
29679
|
+
askHasImpactedWorkInverse?: Maybe<GraphStoreSimplifiedAskHasImpactedWorkInverseConnection>;
|
|
29680
|
+
askHasOwner?: Maybe<GraphStoreSimplifiedAskHasOwnerConnection>;
|
|
29681
|
+
askHasOwnerInverse?: Maybe<GraphStoreSimplifiedAskHasOwnerInverseConnection>;
|
|
29682
|
+
askHasReceivingTeam?: Maybe<GraphStoreSimplifiedAskHasReceivingTeamConnection>;
|
|
29683
|
+
askHasReceivingTeamInverse?: Maybe<GraphStoreSimplifiedAskHasReceivingTeamInverseConnection>;
|
|
29684
|
+
askHasSubmitter?: Maybe<GraphStoreSimplifiedAskHasSubmitterConnection>;
|
|
29685
|
+
askHasSubmitterInverse?: Maybe<GraphStoreSimplifiedAskHasSubmitterInverseConnection>;
|
|
29686
|
+
askHasSubmittingTeam?: Maybe<GraphStoreSimplifiedAskHasSubmittingTeamConnection>;
|
|
29687
|
+
askHasSubmittingTeamInverse?: Maybe<GraphStoreSimplifiedAskHasSubmittingTeamInverseConnection>;
|
|
29494
29688
|
atlasGoalHasContributor?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorConnection>;
|
|
29495
29689
|
atlasGoalHasContributorInverse?: Maybe<GraphStoreSimplifiedAtlasGoalHasContributorInverseConnection>;
|
|
29496
29690
|
atlasGoalHasFollower?: Maybe<GraphStoreSimplifiedAtlasGoalHasFollowerConnection>;
|
|
@@ -30283,6 +30477,76 @@ export declare type GraphStoreAppInstallationAssociatedToSecurityWorkspaceRelati
|
|
|
30283
30477
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30284
30478
|
id: Scalars['ID']['input'];
|
|
30285
30479
|
};
|
|
30480
|
+
export declare type GraphStoreAskHasImpactedWorkArgs = {
|
|
30481
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30482
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30483
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30484
|
+
id: Scalars['ID']['input'];
|
|
30485
|
+
sort?: InputMaybe<GraphStoreAskHasImpactedWorkSortInput>;
|
|
30486
|
+
};
|
|
30487
|
+
export declare type GraphStoreAskHasImpactedWorkInverseArgs = {
|
|
30488
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30489
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30490
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30491
|
+
id: Scalars['ID']['input'];
|
|
30492
|
+
sort?: InputMaybe<GraphStoreAskHasImpactedWorkSortInput>;
|
|
30493
|
+
};
|
|
30494
|
+
export declare type GraphStoreAskHasOwnerArgs = {
|
|
30495
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30496
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30497
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30498
|
+
id: Scalars['ID']['input'];
|
|
30499
|
+
sort?: InputMaybe<GraphStoreAskHasOwnerSortInput>;
|
|
30500
|
+
};
|
|
30501
|
+
export declare type GraphStoreAskHasOwnerInverseArgs = {
|
|
30502
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30503
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30504
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30505
|
+
id: Scalars['ID']['input'];
|
|
30506
|
+
sort?: InputMaybe<GraphStoreAskHasOwnerSortInput>;
|
|
30507
|
+
};
|
|
30508
|
+
export declare type GraphStoreAskHasReceivingTeamArgs = {
|
|
30509
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30510
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30511
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30512
|
+
id: Scalars['ID']['input'];
|
|
30513
|
+
sort?: InputMaybe<GraphStoreAskHasReceivingTeamSortInput>;
|
|
30514
|
+
};
|
|
30515
|
+
export declare type GraphStoreAskHasReceivingTeamInverseArgs = {
|
|
30516
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30517
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30518
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30519
|
+
id: Scalars['ID']['input'];
|
|
30520
|
+
sort?: InputMaybe<GraphStoreAskHasReceivingTeamSortInput>;
|
|
30521
|
+
};
|
|
30522
|
+
export declare type GraphStoreAskHasSubmitterArgs = {
|
|
30523
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30524
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30525
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30526
|
+
id: Scalars['ID']['input'];
|
|
30527
|
+
sort?: InputMaybe<GraphStoreAskHasSubmitterSortInput>;
|
|
30528
|
+
};
|
|
30529
|
+
export declare type GraphStoreAskHasSubmitterInverseArgs = {
|
|
30530
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30531
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30532
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30533
|
+
id: Scalars['ID']['input'];
|
|
30534
|
+
sort?: InputMaybe<GraphStoreAskHasSubmitterSortInput>;
|
|
30535
|
+
};
|
|
30536
|
+
export declare type GraphStoreAskHasSubmittingTeamArgs = {
|
|
30537
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30538
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30539
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30540
|
+
id: Scalars['ID']['input'];
|
|
30541
|
+
sort?: InputMaybe<GraphStoreAskHasSubmittingTeamSortInput>;
|
|
30542
|
+
};
|
|
30543
|
+
export declare type GraphStoreAskHasSubmittingTeamInverseArgs = {
|
|
30544
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
30545
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
30546
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
30547
|
+
id: Scalars['ID']['input'];
|
|
30548
|
+
sort?: InputMaybe<GraphStoreAskHasSubmittingTeamSortInput>;
|
|
30549
|
+
};
|
|
30286
30550
|
export declare type GraphStoreAtlasGoalHasContributorArgs = {
|
|
30287
30551
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
30288
30552
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -35445,6 +35709,21 @@ export declare type GraphStoreAriFilterInput = {
|
|
|
35445
35709
|
is?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
35446
35710
|
isNot?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
35447
35711
|
};
|
|
35712
|
+
export declare type GraphStoreAskHasImpactedWorkSortInput = {
|
|
35713
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35714
|
+
};
|
|
35715
|
+
export declare type GraphStoreAskHasOwnerSortInput = {
|
|
35716
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35717
|
+
};
|
|
35718
|
+
export declare type GraphStoreAskHasReceivingTeamSortInput = {
|
|
35719
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35720
|
+
};
|
|
35721
|
+
export declare type GraphStoreAskHasSubmitterSortInput = {
|
|
35722
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35723
|
+
};
|
|
35724
|
+
export declare type GraphStoreAskHasSubmittingTeamSortInput = {
|
|
35725
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
35726
|
+
};
|
|
35448
35727
|
export declare type GraphStoreAtiFilterInput = {
|
|
35449
35728
|
is?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
35450
35729
|
isNot?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -37034,7 +37313,7 @@ export declare type GraphStoreCypherQueryFromNode = {
|
|
|
37034
37313
|
data?: Maybe<GraphStoreCypherQueryFromNodeUnion>;
|
|
37035
37314
|
id: Scalars['ID']['output'];
|
|
37036
37315
|
};
|
|
37037
|
-
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37316
|
+
export declare type GraphStoreCypherQueryFromNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37038
37317
|
export declare type GraphStoreCypherQueryIntObject = {
|
|
37039
37318
|
__typename?: 'GraphStoreCypherQueryIntObject';
|
|
37040
37319
|
value: Scalars['Int']['output'];
|
|
@@ -37069,7 +37348,7 @@ export declare type GraphStoreCypherQueryRowItemNode = {
|
|
|
37069
37348
|
data?: Maybe<GraphStoreCypherQueryRowItemNodeNodeUnion>;
|
|
37070
37349
|
id: Scalars['ID']['output'];
|
|
37071
37350
|
};
|
|
37072
|
-
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37351
|
+
export declare type GraphStoreCypherQueryRowItemNodeNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37073
37352
|
export declare type GraphStoreCypherQueryStringObject = {
|
|
37074
37353
|
__typename?: 'GraphStoreCypherQueryStringObject';
|
|
37075
37354
|
value: Scalars['String']['output'];
|
|
@@ -37079,19 +37358,19 @@ export declare type GraphStoreCypherQueryToNode = {
|
|
|
37079
37358
|
data?: Maybe<GraphStoreCypherQueryToNodeUnion>;
|
|
37080
37359
|
id: Scalars['ID']['output'];
|
|
37081
37360
|
};
|
|
37082
|
-
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37361
|
+
export declare type GraphStoreCypherQueryToNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37083
37362
|
export declare type GraphStoreCypherQueryV2AriNode = {
|
|
37084
37363
|
__typename?: 'GraphStoreCypherQueryV2AriNode';
|
|
37085
37364
|
data?: Maybe<GraphStoreCypherQueryV2AriNodeUnion>;
|
|
37086
37365
|
id: Scalars['ID']['output'];
|
|
37087
37366
|
};
|
|
37088
|
-
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37367
|
+
export declare type GraphStoreCypherQueryV2AriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37089
37368
|
export declare type GraphStoreCypherQueryV2BatchAriNode = {
|
|
37090
37369
|
__typename?: 'GraphStoreCypherQueryV2BatchAriNode';
|
|
37091
37370
|
data?: Maybe<GraphStoreCypherQueryV2BatchAriNodeUnion>;
|
|
37092
37371
|
id: Scalars['ID']['output'];
|
|
37093
37372
|
};
|
|
37094
|
-
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37373
|
+
export declare type GraphStoreCypherQueryV2BatchAriNodeUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37095
37374
|
export declare type GraphStoreCypherQueryV2BatchBooleanObject = {
|
|
37096
37375
|
__typename?: 'GraphStoreCypherQueryV2BatchBooleanObject';
|
|
37097
37376
|
value: Scalars['Boolean']['output'];
|
|
@@ -37190,7 +37469,7 @@ export declare enum GraphStoreCypherQueryV2VersionEnum {
|
|
|
37190
37469
|
V2 = "V2",
|
|
37191
37470
|
V3 = "V3"
|
|
37192
37471
|
}
|
|
37193
|
-
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37472
|
+
export declare type GraphStoreCypherQueryValueItemUnion = AppUser | AtlassianAccountUser | BitbucketRepository | CompassComponent | CompassLinkNode | CompassScorecard | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFolder | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSpace | ConfluenceWhiteboard | CustomerUser | DeploymentSummary | DevOpsDesign | DevOpsDocument | DevOpsFeatureFlag | DevOpsOperationsComponentDetails | DevOpsOperationsIncidentDetails | DevOpsOperationsPostIncidentReviewDetails | DevOpsProjectDetails | DevOpsPullRequestDetails | DevOpsRepository | DevOpsSecurityVulnerabilityDetails | DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | IdentityGroup | JiraAlignAggProject | JiraAutodevJob | JiraBoard | JiraConfluenceRemoteIssueLink | JiraCustomRemoteIssueLink | JiraIssue | JiraIssueRemoteIssueLink | JiraPlatformComment | JiraPostIncidentReviewLink | JiraPriority | JiraProject | JiraServiceManagementComment | JiraSprint | JiraStatus | JiraVersion | JiraWebRemoteIssueLink | JiraWorklog | KnowledgeDiscoveryTopicByAri | LoomComment | LoomMeeting | LoomMeetingRecurrence | LoomSpace | LoomVideo | MercuryChangeProposal | MercuryFocusArea | OpsgenieTeam | RadarPosition | RadarWorker | SpfAsk | TeamV2 | ThirdPartySecurityContainer | ThirdPartyUser | TownsquareComment | TownsquareGoal | TownsquareGoalUpdate | TownsquareProject | TownsquareProjectUpdate;
|
|
37194
37473
|
export declare type GraphStoreCypherQueryValueNode = {
|
|
37195
37474
|
__typename?: 'GraphStoreCypherQueryValueNode';
|
|
37196
37475
|
data?: Maybe<GraphStoreCypherQueryValueItemUnion>;
|
|
@@ -42304,6 +42583,146 @@ export declare type GraphStoreShipit57IssueRecursiveLinksToPageSortInput = {
|
|
|
42304
42583
|
export declare type GraphStoreShipit57PullRequestLinksToPageSortInput = {
|
|
42305
42584
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42306
42585
|
};
|
|
42586
|
+
export declare type GraphStoreSimplifiedAskHasImpactedWorkConnection = HasPageInfo & {
|
|
42587
|
+
__typename?: 'GraphStoreSimplifiedAskHasImpactedWorkConnection';
|
|
42588
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAskHasImpactedWorkEdge>>>;
|
|
42589
|
+
pageInfo: PageInfo;
|
|
42590
|
+
};
|
|
42591
|
+
export declare type GraphStoreSimplifiedAskHasImpactedWorkEdge = {
|
|
42592
|
+
__typename?: 'GraphStoreSimplifiedAskHasImpactedWorkEdge';
|
|
42593
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42594
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42595
|
+
id: Scalars['ID']['output'];
|
|
42596
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42597
|
+
node?: Maybe<GraphStoreSimplifiedAskHasImpactedWorkUnion>;
|
|
42598
|
+
};
|
|
42599
|
+
export declare type GraphStoreSimplifiedAskHasImpactedWorkInverseConnection = HasPageInfo & {
|
|
42600
|
+
__typename?: 'GraphStoreSimplifiedAskHasImpactedWorkInverseConnection';
|
|
42601
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAskHasImpactedWorkInverseEdge>>>;
|
|
42602
|
+
pageInfo: PageInfo;
|
|
42603
|
+
};
|
|
42604
|
+
export declare type GraphStoreSimplifiedAskHasImpactedWorkInverseEdge = {
|
|
42605
|
+
__typename?: 'GraphStoreSimplifiedAskHasImpactedWorkInverseEdge';
|
|
42606
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42607
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42608
|
+
id: Scalars['ID']['output'];
|
|
42609
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42610
|
+
node?: Maybe<GraphStoreSimplifiedAskHasImpactedWorkInverseUnion>;
|
|
42611
|
+
};
|
|
42612
|
+
export declare type GraphStoreSimplifiedAskHasImpactedWorkInverseUnion = SpfAsk;
|
|
42613
|
+
export declare type GraphStoreSimplifiedAskHasImpactedWorkUnion = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
42614
|
+
export declare type GraphStoreSimplifiedAskHasOwnerConnection = HasPageInfo & {
|
|
42615
|
+
__typename?: 'GraphStoreSimplifiedAskHasOwnerConnection';
|
|
42616
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAskHasOwnerEdge>>>;
|
|
42617
|
+
pageInfo: PageInfo;
|
|
42618
|
+
};
|
|
42619
|
+
export declare type GraphStoreSimplifiedAskHasOwnerEdge = {
|
|
42620
|
+
__typename?: 'GraphStoreSimplifiedAskHasOwnerEdge';
|
|
42621
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42622
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42623
|
+
id: Scalars['ID']['output'];
|
|
42624
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42625
|
+
node?: Maybe<GraphStoreSimplifiedAskHasOwnerUnion>;
|
|
42626
|
+
};
|
|
42627
|
+
export declare type GraphStoreSimplifiedAskHasOwnerInverseConnection = HasPageInfo & {
|
|
42628
|
+
__typename?: 'GraphStoreSimplifiedAskHasOwnerInverseConnection';
|
|
42629
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAskHasOwnerInverseEdge>>>;
|
|
42630
|
+
pageInfo: PageInfo;
|
|
42631
|
+
};
|
|
42632
|
+
export declare type GraphStoreSimplifiedAskHasOwnerInverseEdge = {
|
|
42633
|
+
__typename?: 'GraphStoreSimplifiedAskHasOwnerInverseEdge';
|
|
42634
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42635
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42636
|
+
id: Scalars['ID']['output'];
|
|
42637
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42638
|
+
node?: Maybe<GraphStoreSimplifiedAskHasOwnerInverseUnion>;
|
|
42639
|
+
};
|
|
42640
|
+
export declare type GraphStoreSimplifiedAskHasOwnerInverseUnion = SpfAsk;
|
|
42641
|
+
export declare type GraphStoreSimplifiedAskHasOwnerUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42642
|
+
export declare type GraphStoreSimplifiedAskHasReceivingTeamConnection = HasPageInfo & {
|
|
42643
|
+
__typename?: 'GraphStoreSimplifiedAskHasReceivingTeamConnection';
|
|
42644
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAskHasReceivingTeamEdge>>>;
|
|
42645
|
+
pageInfo: PageInfo;
|
|
42646
|
+
};
|
|
42647
|
+
export declare type GraphStoreSimplifiedAskHasReceivingTeamEdge = {
|
|
42648
|
+
__typename?: 'GraphStoreSimplifiedAskHasReceivingTeamEdge';
|
|
42649
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42650
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42651
|
+
id: Scalars['ID']['output'];
|
|
42652
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42653
|
+
node?: Maybe<GraphStoreSimplifiedAskHasReceivingTeamUnion>;
|
|
42654
|
+
};
|
|
42655
|
+
export declare type GraphStoreSimplifiedAskHasReceivingTeamInverseConnection = HasPageInfo & {
|
|
42656
|
+
__typename?: 'GraphStoreSimplifiedAskHasReceivingTeamInverseConnection';
|
|
42657
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAskHasReceivingTeamInverseEdge>>>;
|
|
42658
|
+
pageInfo: PageInfo;
|
|
42659
|
+
};
|
|
42660
|
+
export declare type GraphStoreSimplifiedAskHasReceivingTeamInverseEdge = {
|
|
42661
|
+
__typename?: 'GraphStoreSimplifiedAskHasReceivingTeamInverseEdge';
|
|
42662
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42663
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42664
|
+
id: Scalars['ID']['output'];
|
|
42665
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42666
|
+
node?: Maybe<GraphStoreSimplifiedAskHasReceivingTeamInverseUnion>;
|
|
42667
|
+
};
|
|
42668
|
+
export declare type GraphStoreSimplifiedAskHasReceivingTeamInverseUnion = SpfAsk;
|
|
42669
|
+
export declare type GraphStoreSimplifiedAskHasReceivingTeamUnion = TeamV2;
|
|
42670
|
+
export declare type GraphStoreSimplifiedAskHasSubmitterConnection = HasPageInfo & {
|
|
42671
|
+
__typename?: 'GraphStoreSimplifiedAskHasSubmitterConnection';
|
|
42672
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAskHasSubmitterEdge>>>;
|
|
42673
|
+
pageInfo: PageInfo;
|
|
42674
|
+
};
|
|
42675
|
+
export declare type GraphStoreSimplifiedAskHasSubmitterEdge = {
|
|
42676
|
+
__typename?: 'GraphStoreSimplifiedAskHasSubmitterEdge';
|
|
42677
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42678
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42679
|
+
id: Scalars['ID']['output'];
|
|
42680
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42681
|
+
node?: Maybe<GraphStoreSimplifiedAskHasSubmitterUnion>;
|
|
42682
|
+
};
|
|
42683
|
+
export declare type GraphStoreSimplifiedAskHasSubmitterInverseConnection = HasPageInfo & {
|
|
42684
|
+
__typename?: 'GraphStoreSimplifiedAskHasSubmitterInverseConnection';
|
|
42685
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAskHasSubmitterInverseEdge>>>;
|
|
42686
|
+
pageInfo: PageInfo;
|
|
42687
|
+
};
|
|
42688
|
+
export declare type GraphStoreSimplifiedAskHasSubmitterInverseEdge = {
|
|
42689
|
+
__typename?: 'GraphStoreSimplifiedAskHasSubmitterInverseEdge';
|
|
42690
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42691
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42692
|
+
id: Scalars['ID']['output'];
|
|
42693
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42694
|
+
node?: Maybe<GraphStoreSimplifiedAskHasSubmitterInverseUnion>;
|
|
42695
|
+
};
|
|
42696
|
+
export declare type GraphStoreSimplifiedAskHasSubmitterInverseUnion = SpfAsk;
|
|
42697
|
+
export declare type GraphStoreSimplifiedAskHasSubmitterUnion = AppUser | AtlassianAccountUser | CustomerUser;
|
|
42698
|
+
export declare type GraphStoreSimplifiedAskHasSubmittingTeamConnection = HasPageInfo & {
|
|
42699
|
+
__typename?: 'GraphStoreSimplifiedAskHasSubmittingTeamConnection';
|
|
42700
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAskHasSubmittingTeamEdge>>>;
|
|
42701
|
+
pageInfo: PageInfo;
|
|
42702
|
+
};
|
|
42703
|
+
export declare type GraphStoreSimplifiedAskHasSubmittingTeamEdge = {
|
|
42704
|
+
__typename?: 'GraphStoreSimplifiedAskHasSubmittingTeamEdge';
|
|
42705
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42706
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42707
|
+
id: Scalars['ID']['output'];
|
|
42708
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42709
|
+
node?: Maybe<GraphStoreSimplifiedAskHasSubmittingTeamUnion>;
|
|
42710
|
+
};
|
|
42711
|
+
export declare type GraphStoreSimplifiedAskHasSubmittingTeamInverseConnection = HasPageInfo & {
|
|
42712
|
+
__typename?: 'GraphStoreSimplifiedAskHasSubmittingTeamInverseConnection';
|
|
42713
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAskHasSubmittingTeamInverseEdge>>>;
|
|
42714
|
+
pageInfo: PageInfo;
|
|
42715
|
+
};
|
|
42716
|
+
export declare type GraphStoreSimplifiedAskHasSubmittingTeamInverseEdge = {
|
|
42717
|
+
__typename?: 'GraphStoreSimplifiedAskHasSubmittingTeamInverseEdge';
|
|
42718
|
+
createdAt: Scalars['DateTime']['output'];
|
|
42719
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
42720
|
+
id: Scalars['ID']['output'];
|
|
42721
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
42722
|
+
node?: Maybe<GraphStoreSimplifiedAskHasSubmittingTeamInverseUnion>;
|
|
42723
|
+
};
|
|
42724
|
+
export declare type GraphStoreSimplifiedAskHasSubmittingTeamInverseUnion = SpfAsk;
|
|
42725
|
+
export declare type GraphStoreSimplifiedAskHasSubmittingTeamUnion = TeamV2;
|
|
42307
42726
|
export declare type GraphStoreSimplifiedAtlasGoalHasContributorConnection = HasPageInfo & {
|
|
42308
42727
|
__typename?: 'GraphStoreSimplifiedAtlasGoalHasContributorConnection';
|
|
42309
42728
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlasGoalHasContributorEdge>>>;
|
|
@@ -51427,13 +51846,24 @@ export declare type GrowthUnifiedProfileCompletionSeries = {
|
|
|
51427
51846
|
date?: Maybe<Scalars['String']['output']>;
|
|
51428
51847
|
value?: Maybe<Scalars['Int']['output']>;
|
|
51429
51848
|
};
|
|
51849
|
+
export declare enum GrowthUnifiedProfileConfluenceFamiliarity {
|
|
51850
|
+
Experience = "EXPERIENCE",
|
|
51851
|
+
Middle = "MIDDLE",
|
|
51852
|
+
New = "NEW"
|
|
51853
|
+
}
|
|
51430
51854
|
export declare type GrowthUnifiedProfileConfluenceOnboardingContext = {
|
|
51431
51855
|
__typename?: 'GrowthUnifiedProfileConfluenceOnboardingContext';
|
|
51856
|
+
confluenceFamiliarity?: Maybe<GrowthUnifiedProfileConfluenceFamiliarity>;
|
|
51857
|
+
experienceLevel?: Maybe<Scalars['String']['output']>;
|
|
51432
51858
|
jobsToBeDone?: Maybe<Array<Maybe<GrowthUnifiedProfileJtbd>>>;
|
|
51859
|
+
teamType?: Maybe<GrowthUnifiedProfileTeamType>;
|
|
51433
51860
|
template?: Maybe<Scalars['String']['output']>;
|
|
51434
51861
|
};
|
|
51435
51862
|
export declare type GrowthUnifiedProfileConfluenceOnboardingContextInput = {
|
|
51863
|
+
confluenceFamiliarity?: InputMaybe<GrowthUnifiedProfileConfluenceFamiliarity>;
|
|
51864
|
+
experienceLevel?: InputMaybe<Scalars['String']['input']>;
|
|
51436
51865
|
jobsToBeDone?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileJtbd>>>;
|
|
51866
|
+
teamType?: InputMaybe<GrowthUnifiedProfileTeamType>;
|
|
51437
51867
|
template?: InputMaybe<Scalars['String']['input']>;
|
|
51438
51868
|
};
|
|
51439
51869
|
export declare type GrowthUnifiedProfileConfluenceUserActivityContext = {
|
|
@@ -56458,8 +56888,12 @@ export declare type JiraCmdbFieldSelectedCmdbObjectsConnectionArgs = {
|
|
|
56458
56888
|
};
|
|
56459
56889
|
export declare type JiraCalendar = {
|
|
56460
56890
|
__typename?: 'JiraCalendar';
|
|
56891
|
+
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
56461
56892
|
crossProjectVersions?: Maybe<JiraCrossProjectVersionConnection>;
|
|
56462
56893
|
endDateField?: Maybe<JiraIssueField>;
|
|
56894
|
+
filterConfig?: Maybe<JiraViewFilterConfig>;
|
|
56895
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
56896
|
+
isViewConfigModified?: Maybe<Scalars['Boolean']['output']>;
|
|
56463
56897
|
issue?: Maybe<JiraIssueWithScenario>;
|
|
56464
56898
|
issues?: Maybe<JiraIssueConnection>;
|
|
56465
56899
|
issuesV2?: Maybe<JiraScenarioIssueLikeConnection>;
|
|
@@ -56478,6 +56912,12 @@ export declare type JiraCalendarCrossProjectVersionsArgs = {
|
|
|
56478
56912
|
input?: InputMaybe<JiraCalendarCrossProjectVersionsInput>;
|
|
56479
56913
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
56480
56914
|
};
|
|
56915
|
+
export declare type JiraCalendarFilterConfigArgs = {
|
|
56916
|
+
settings?: InputMaybe<JiraCalendarViewSettings>;
|
|
56917
|
+
};
|
|
56918
|
+
export declare type JiraCalendarIsViewConfigModifiedArgs = {
|
|
56919
|
+
settings?: InputMaybe<JiraCalendarViewSettings>;
|
|
56920
|
+
};
|
|
56481
56921
|
export declare type JiraCalendarIssueArgs = {
|
|
56482
56922
|
id: Scalars['ID']['input'];
|
|
56483
56923
|
issuesInput?: InputMaybe<JiraCalendarIssuesInput>;
|
|
@@ -56539,6 +56979,9 @@ export declare type JiraCalendarCrossProjectVersionsInput = {
|
|
|
56539
56979
|
searchString?: InputMaybe<Scalars['String']['input']>;
|
|
56540
56980
|
statuses?: InputMaybe<Array<InputMaybe<JiraVersionStatus>>>;
|
|
56541
56981
|
};
|
|
56982
|
+
export declare type JiraCalendarInput = {
|
|
56983
|
+
viewInput?: InputMaybe<JiraViewQueryInput>;
|
|
56984
|
+
};
|
|
56542
56985
|
export declare type JiraCalendarIssuesInput = {
|
|
56543
56986
|
additionalFilterQuery?: InputMaybe<Scalars['String']['input']>;
|
|
56544
56987
|
};
|
|
@@ -59425,7 +59868,7 @@ export declare type JiraFieldSchemeAssociatedFieldsEdge = {
|
|
|
59425
59868
|
node?: Maybe<JiraFieldSchemeAssociatedField>;
|
|
59426
59869
|
};
|
|
59427
59870
|
export declare type JiraFieldSchemeAssociatedFieldsInput = {
|
|
59428
|
-
|
|
59871
|
+
nameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
59429
59872
|
schemeId: Scalars['ID']['input'];
|
|
59430
59873
|
};
|
|
59431
59874
|
export declare type JiraFieldSchemeAvailableFieldsInput = {
|
|
@@ -59459,6 +59902,7 @@ export declare type JiraFieldSearcherTemplateEdge = {
|
|
|
59459
59902
|
};
|
|
59460
59903
|
export declare type JiraFieldSetPreferences = {
|
|
59461
59904
|
__typename?: 'JiraFieldSetPreferences';
|
|
59905
|
+
isFrozen?: Maybe<Scalars['Boolean']['output']>;
|
|
59462
59906
|
width?: Maybe<Scalars['Int']['output']>;
|
|
59463
59907
|
};
|
|
59464
59908
|
export declare type JiraFieldSetPreferencesInput = {
|
|
@@ -60508,6 +60952,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
60508
60952
|
attachments?: Maybe<JiraAttachmentConnection>;
|
|
60509
60953
|
autodevIssueScopingResult?: Maybe<DevAiIssueScopingResult>;
|
|
60510
60954
|
canBeExported?: Maybe<Scalars['Boolean']['output']>;
|
|
60955
|
+
canCreateSubtask?: Maybe<Scalars['Boolean']['output']>;
|
|
60511
60956
|
canHaveChildIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
60512
60957
|
childIssues?: Maybe<JiraChildIssues>;
|
|
60513
60958
|
commandPaletteActions?: Maybe<JiraIssueCommandPaletteActionConnection>;
|
|
@@ -63897,6 +64342,7 @@ export declare type JiraMutation = {
|
|
|
63897
64342
|
devOps?: Maybe<JiraDevOpsMutation>;
|
|
63898
64343
|
disableJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
63899
64344
|
discardUnpublishedChangesJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
64345
|
+
discardUserCalendarViewConfig?: Maybe<JiraUpdateCalendarViewConfigPayload>;
|
|
63900
64346
|
duplicateJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
63901
64347
|
editCustomField?: Maybe<JiraEditCustomFieldPayload>;
|
|
63902
64348
|
forge: JiraForgeMutation;
|
|
@@ -63923,6 +64369,7 @@ export declare type JiraMutation = {
|
|
|
63923
64369
|
moveJiraVersionToEnd?: Maybe<JiraUpdateVersionPayload>;
|
|
63924
64370
|
moveJiraVersionToStart?: Maybe<JiraUpdateVersionPayload>;
|
|
63925
64371
|
orderFormatingRule?: Maybe<JiraOrderFormattingRulePayload>;
|
|
64372
|
+
publishCalendarViewConfig?: Maybe<JiraUpdateCalendarViewConfigPayload>;
|
|
63926
64373
|
publishJiraJourneyConfiguration?: Maybe<JiraUpdateJourneyConfigurationPayload>;
|
|
63927
64374
|
rankIssues?: Maybe<JiraRankMutationPayload>;
|
|
63928
64375
|
rankNavigationItem?: Maybe<JiraRankNavigationItemPayload>;
|
|
@@ -64248,6 +64695,9 @@ export declare type JiraMutationDiscardUnpublishedChangesJiraJourneyConfiguratio
|
|
|
64248
64695
|
cloudId: Scalars['ID']['input'];
|
|
64249
64696
|
input: JiraDiscardUnpublishedChangesJourneyConfigurationInput;
|
|
64250
64697
|
};
|
|
64698
|
+
export declare type JiraMutationDiscardUserCalendarViewConfigArgs = {
|
|
64699
|
+
input: JiraDiscardUserViewConfigInput;
|
|
64700
|
+
};
|
|
64251
64701
|
export declare type JiraMutationDuplicateJiraJourneyConfigurationArgs = {
|
|
64252
64702
|
cloudId: Scalars['ID']['input'];
|
|
64253
64703
|
input: JiraDuplicateJourneyConfigurationInput;
|
|
@@ -64329,6 +64779,9 @@ export declare type JiraMutationMoveJiraVersionToStartArgs = {
|
|
|
64329
64779
|
export declare type JiraMutationOrderFormatingRuleArgs = {
|
|
64330
64780
|
input: JiraOrderFormattingRuleInput;
|
|
64331
64781
|
};
|
|
64782
|
+
export declare type JiraMutationPublishCalendarViewConfigArgs = {
|
|
64783
|
+
input: JiraUpdateCalendarViewConfigInput;
|
|
64784
|
+
};
|
|
64332
64785
|
export declare type JiraMutationPublishJiraJourneyConfigurationArgs = {
|
|
64333
64786
|
cloudId: Scalars['ID']['input'];
|
|
64334
64787
|
input: JiraPublishJourneyConfigurationInput;
|
|
@@ -67810,6 +68263,7 @@ export declare type JiraQueryJiraBulkTransitionsScreenDetailsArgs = {
|
|
|
67810
68263
|
};
|
|
67811
68264
|
export declare type JiraQueryJiraCalendarArgs = {
|
|
67812
68265
|
configuration?: InputMaybe<JiraCalendarViewConfigurationInput>;
|
|
68266
|
+
input?: InputMaybe<JiraCalendarInput>;
|
|
67813
68267
|
scope?: InputMaybe<JiraViewScopeInput>;
|
|
67814
68268
|
};
|
|
67815
68269
|
export declare type JiraQueryJiraCustomerOrganizationsByUuiDsArgs = {
|
|
@@ -72132,6 +72586,10 @@ export declare type JiraUpdateBackgroundInput = {
|
|
|
72132
72586
|
dominantColor?: InputMaybe<Scalars['String']['input']>;
|
|
72133
72587
|
entityId: Scalars['ID']['input'];
|
|
72134
72588
|
};
|
|
72589
|
+
export declare type JiraUpdateCalendarViewConfigInput = {
|
|
72590
|
+
settings?: InputMaybe<JiraCalendarViewSettings>;
|
|
72591
|
+
viewId: Scalars['ID']['input'];
|
|
72592
|
+
};
|
|
72135
72593
|
export declare type JiraUpdateCalendarViewConfigPayload = Payload & {
|
|
72136
72594
|
__typename?: 'JiraUpdateCalendarViewConfigPayload';
|
|
72137
72595
|
calendarView?: Maybe<JiraCalendarView>;
|
|
@@ -72216,6 +72674,7 @@ export declare type JiraUpdateDateTimeFieldInput = {
|
|
|
72216
72674
|
};
|
|
72217
72675
|
export declare type JiraUpdateFieldSetPreferencesInput = {
|
|
72218
72676
|
fieldSetId: Scalars['String']['input'];
|
|
72677
|
+
isFrozen?: InputMaybe<Scalars['Boolean']['input']>;
|
|
72219
72678
|
width?: InputMaybe<Scalars['Int']['input']>;
|
|
72220
72679
|
};
|
|
72221
72680
|
export declare type JiraUpdateForgeMultipleGroupPickerFieldInput = {
|
|
@@ -75789,7 +76248,6 @@ export declare type KnowledgeDiscoveryZeroQuery = {
|
|
|
75789
76248
|
type: KnowledgeDiscoveryZeroQueryType;
|
|
75790
76249
|
};
|
|
75791
76250
|
export declare enum KnowledgeDiscoveryZeroQueryType {
|
|
75792
|
-
RecentWork = "RECENT_WORK",
|
|
75793
76251
|
RelatedQuestion = "RELATED_QUESTION",
|
|
75794
76252
|
WhoIs = "WHO_IS"
|
|
75795
76253
|
}
|
|
@@ -79282,6 +79740,7 @@ export declare type MercuryChangeProposalImpact = {
|
|
|
79282
79740
|
};
|
|
79283
79741
|
export declare type MercuryChangeProposalPositionDetails = {
|
|
79284
79742
|
__typename?: 'MercuryChangeProposalPositionDetails';
|
|
79743
|
+
positionsMoved?: Maybe<Scalars['Int']['output']>;
|
|
79285
79744
|
positionsRequested?: Maybe<Scalars['Int']['output']>;
|
|
79286
79745
|
};
|
|
79287
79746
|
export declare type MercuryChangeProposalPositionSummary = {
|
|
@@ -79325,6 +79784,11 @@ export declare type MercuryChangeProposalSummaryForStrategicEvent = {
|
|
|
79325
79784
|
newPositions?: Maybe<MercuryNewPositionSummaryByChangeProposalStatus>;
|
|
79326
79785
|
strategicEventId: Scalars['ID']['output'];
|
|
79327
79786
|
};
|
|
79787
|
+
export declare type MercuryChangeProposalUpdate = {
|
|
79788
|
+
__typename?: 'MercuryChangeProposalUpdate';
|
|
79789
|
+
id: Scalars['ID']['output'];
|
|
79790
|
+
updatedFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
79791
|
+
};
|
|
79328
79792
|
export declare type MercuryChangeSort = {
|
|
79329
79793
|
field: MercuryChangeSortField;
|
|
79330
79794
|
order: SortOrder;
|
|
@@ -80369,10 +80833,11 @@ export declare type MercuryOnDeleteChangeProposalPayload = Payload & {
|
|
|
80369
80833
|
id: Scalars['ID']['output'];
|
|
80370
80834
|
success: Scalars['Boolean']['output'];
|
|
80371
80835
|
};
|
|
80372
|
-
export declare type
|
|
80373
|
-
__typename?: '
|
|
80836
|
+
export declare type MercuryOnUpdateChangeProposalsPayload = Payload & {
|
|
80837
|
+
__typename?: 'MercuryOnUpdateChangeProposalsPayload';
|
|
80838
|
+
changeProposals?: Maybe<Array<MercuryChangeProposalUpdate>>;
|
|
80374
80839
|
errors?: Maybe<Array<MutationError>>;
|
|
80375
|
-
|
|
80840
|
+
strategicEventId: Scalars['ID']['output'];
|
|
80376
80841
|
success: Scalars['Boolean']['output'];
|
|
80377
80842
|
};
|
|
80378
80843
|
export declare type MercuryOnUpdateStrategicEventPayload = Payload & {
|
|
@@ -81259,7 +81724,7 @@ export declare type MercurySubscriptionApi = {
|
|
|
81259
81724
|
__typename?: 'MercurySubscriptionApi';
|
|
81260
81725
|
onCreateChangeProposal?: Maybe<MercuryOnCreateChangeProposalPayload>;
|
|
81261
81726
|
onDeleteChangeProposal?: Maybe<MercuryOnDeleteChangeProposalPayload>;
|
|
81262
|
-
|
|
81727
|
+
onUpdateChangeProposals?: Maybe<MercuryOnUpdateChangeProposalsPayload>;
|
|
81263
81728
|
onUpdateStrategicEvent?: Maybe<MercuryOnUpdateStrategicEventPayload>;
|
|
81264
81729
|
};
|
|
81265
81730
|
export declare type MercurySubscriptionApiOnCreateChangeProposalArgs = {
|
|
@@ -81269,8 +81734,7 @@ export declare type MercurySubscriptionApiOnDeleteChangeProposalArgs = {
|
|
|
81269
81734
|
id: Scalars['ID']['input'];
|
|
81270
81735
|
strategicEventId: Scalars['ID']['input'];
|
|
81271
81736
|
};
|
|
81272
|
-
export declare type
|
|
81273
|
-
id: Scalars['ID']['input'];
|
|
81737
|
+
export declare type MercurySubscriptionApiOnUpdateChangeProposalsArgs = {
|
|
81274
81738
|
strategicEventId: Scalars['ID']['input'];
|
|
81275
81739
|
};
|
|
81276
81740
|
export declare type MercurySubscriptionApiOnUpdateStrategicEventArgs = {
|
|
@@ -81923,6 +82387,8 @@ export declare type Mutation = {
|
|
|
81923
82387
|
confluence_deleteSubCalendarSingleEvent?: Maybe<ConfluenceDeleteSubCalendarSingleEventPayload>;
|
|
81924
82388
|
confluence_deleteTopic?: Maybe<ConfluenceDeleteTopicPayload>;
|
|
81925
82389
|
confluence_experimentInitModernize?: Maybe<ConfluenceExperimentInitModernizePayload>;
|
|
82390
|
+
confluence_generateForgeContextToken?: Maybe<ConfluenceForgeContextTokenPayload>;
|
|
82391
|
+
confluence_insertOfflineVersion?: Maybe<ConfluenceInsertOfflineVersionPayload>;
|
|
81926
82392
|
confluence_inviteUsers?: Maybe<ConfluenceInviteUserPayload>;
|
|
81927
82393
|
confluence_makeSubCalendarPrivateUrl?: Maybe<ConfluenceMakeSubCalendarPrivateUrlPayload>;
|
|
81928
82394
|
confluence_markAllCommentsAsRead?: Maybe<ConfluenceMarkAllCommentsAsReadPayload>;
|
|
@@ -82031,6 +82497,7 @@ export declare type Mutation = {
|
|
|
82031
82497
|
deleteDevOpsServiceAndRepositoryRelationship?: Maybe<DeleteDevOpsServiceAndRepositoryRelationshipPayload>;
|
|
82032
82498
|
deleteDevOpsServiceEntityProperties?: Maybe<DeleteDevOpsServiceEntityPropertiesPayload>;
|
|
82033
82499
|
deleteDevOpsServiceRelationship?: Maybe<DeleteDevOpsServiceRelationshipPayload>;
|
|
82500
|
+
deleteExCoSpacePermissions?: Maybe<Array<Maybe<DeleteExCoSpacePermissionsPayload>>>;
|
|
82034
82501
|
deleteInlineComment?: Maybe<Scalars['Boolean']['output']>;
|
|
82035
82502
|
deleteLabel?: Maybe<DeleteLabelPayload>;
|
|
82036
82503
|
deleteNote?: Maybe<DeleteNotePayload>;
|
|
@@ -82081,6 +82548,7 @@ export declare type Mutation = {
|
|
|
82081
82548
|
favouriteSpace?: Maybe<FavouriteSpacePayload>;
|
|
82082
82549
|
favouriteSpaceBulk?: Maybe<FavouriteSpaceBulkPayload>;
|
|
82083
82550
|
followUser?: Maybe<FollowUserPayload>;
|
|
82551
|
+
generateAdminReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
82084
82552
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
82085
82553
|
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
82086
82554
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
@@ -82095,6 +82563,7 @@ export declare type Mutation = {
|
|
|
82095
82563
|
helpLayout?: Maybe<HelpLayoutMutationApi>;
|
|
82096
82564
|
helpObjectStore?: Maybe<HelpObjectStoreMutationApi>;
|
|
82097
82565
|
home_addTagsById?: Maybe<TownsquareAddTagToEntityPayload>;
|
|
82566
|
+
home_addTagsByName?: Maybe<TownsquareAddTagsByNamePayload>;
|
|
82098
82567
|
home_removeTags?: Maybe<TownsquareRemoveTagsPayload>;
|
|
82099
82568
|
insightsMutation?: Maybe<InsightsMutation>;
|
|
82100
82569
|
installApp?: Maybe<AppInstallationResponse>;
|
|
@@ -82214,6 +82683,7 @@ export declare type Mutation = {
|
|
|
82214
82683
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
82215
82684
|
projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
|
|
82216
82685
|
projects_removeMember?: Maybe<TownsquareProjectsRemoveMemberPayload>;
|
|
82686
|
+
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
82217
82687
|
projects_setWatchingProject?: Maybe<TownsquareProjectsSetWatchingProjectPayload>;
|
|
82218
82688
|
projects_shareProject?: Maybe<TownsquareProjectsShareProjectPayload>;
|
|
82219
82689
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
@@ -82391,7 +82861,9 @@ export declare type Mutation = {
|
|
|
82391
82861
|
updateSpaceDefaultClassificationLevel?: Maybe<UpdateSpaceDefaultClassificationLevelPayload>;
|
|
82392
82862
|
updateSpaceDetails?: Maybe<UpdateSpaceDetailsPayload>;
|
|
82393
82863
|
updateSpacePermissionDefaults?: Maybe<UpdateDefaultSpacePermissionsPayload>;
|
|
82864
|
+
updateSpacePermissionDefaultsV2?: Maybe<UpdateDefaultSpacePermissionsPayloadV2>;
|
|
82394
82865
|
updateSpacePermissions?: Maybe<UpdateSpacePermissionsPayload>;
|
|
82866
|
+
updateSpacePermissionsV2?: Maybe<UpdateSpacePermissionsPayloadV2>;
|
|
82395
82867
|
updateSpaceTypeSettings?: Maybe<UpdateSpaceTypeSettingsPayload>;
|
|
82396
82868
|
updateTemplate?: Maybe<ContentTemplate>;
|
|
82397
82869
|
updateTemplatePropertySet?: Maybe<UpdateTemplatePropertySetPayload>;
|
|
@@ -82710,6 +83182,14 @@ export declare type MutationConfluence_DeleteTopicArgs = {
|
|
|
82710
83182
|
export declare type MutationConfluence_ExperimentInitModernizeArgs = {
|
|
82711
83183
|
cloudId: Scalars['ID']['input'];
|
|
82712
83184
|
};
|
|
83185
|
+
export declare type MutationConfluence_GenerateForgeContextTokenArgs = {
|
|
83186
|
+
cloudId: Scalars['ID']['input'];
|
|
83187
|
+
input: ConfluenceForgeContextTokenRequestInput;
|
|
83188
|
+
};
|
|
83189
|
+
export declare type MutationConfluence_InsertOfflineVersionArgs = {
|
|
83190
|
+
cloudId: Scalars['ID']['input'];
|
|
83191
|
+
input?: InputMaybe<ConfluenceInsertOfflineVersionInput>;
|
|
83192
|
+
};
|
|
82713
83193
|
export declare type MutationConfluence_InviteUsersArgs = {
|
|
82714
83194
|
cloudId: Scalars['ID']['input'];
|
|
82715
83195
|
input: ConfluenceInviteUserInput;
|
|
@@ -83106,6 +83586,9 @@ export declare type MutationDeleteDevOpsServiceEntityPropertiesArgs = {
|
|
|
83106
83586
|
export declare type MutationDeleteDevOpsServiceRelationshipArgs = {
|
|
83107
83587
|
input: DeleteDevOpsServiceRelationshipInput;
|
|
83108
83588
|
};
|
|
83589
|
+
export declare type MutationDeleteExCoSpacePermissionsArgs = {
|
|
83590
|
+
input: Array<InputMaybe<DeleteExCoSpacePermissionsInput>>;
|
|
83591
|
+
};
|
|
83109
83592
|
export declare type MutationDeleteInlineCommentArgs = {
|
|
83110
83593
|
input: DeleteInlineCommentInput;
|
|
83111
83594
|
};
|
|
@@ -83304,6 +83787,9 @@ export declare type MutationHelpObjectStoreArgs = {
|
|
|
83304
83787
|
export declare type MutationHome_AddTagsByIdArgs = {
|
|
83305
83788
|
input: TownsquareAddTagToEntityByIdInput;
|
|
83306
83789
|
};
|
|
83790
|
+
export declare type MutationHome_AddTagsByNameArgs = {
|
|
83791
|
+
input: TownsquareAddTagsByNameInput;
|
|
83792
|
+
};
|
|
83307
83793
|
export declare type MutationHome_RemoveTagsArgs = {
|
|
83308
83794
|
input: TownsquareRemoveTagsInput;
|
|
83309
83795
|
};
|
|
@@ -83638,6 +84124,9 @@ export declare type MutationProjects_EditLinkArgs = {
|
|
|
83638
84124
|
export declare type MutationProjects_RemoveMemberArgs = {
|
|
83639
84125
|
input: TownsquareProjectsRemoveMemberInput;
|
|
83640
84126
|
};
|
|
84127
|
+
export declare type MutationProjects_SetDependencyArgs = {
|
|
84128
|
+
input?: InputMaybe<TownsquareProjectsSetDependencyInput>;
|
|
84129
|
+
};
|
|
83641
84130
|
export declare type MutationProjects_SetWatchingProjectArgs = {
|
|
83642
84131
|
input?: InputMaybe<TownsquareProjectsSetWatchingProjectInput>;
|
|
83643
84132
|
};
|
|
@@ -84212,9 +84701,15 @@ export declare type MutationUpdateSpaceDetailsArgs = {
|
|
|
84212
84701
|
export declare type MutationUpdateSpacePermissionDefaultsArgs = {
|
|
84213
84702
|
input: Array<UpdateDefaultSpacePermissionsInput>;
|
|
84214
84703
|
};
|
|
84704
|
+
export declare type MutationUpdateSpacePermissionDefaultsV2Args = {
|
|
84705
|
+
input: UpdateDefaultSpacePermissionsInputV2;
|
|
84706
|
+
};
|
|
84215
84707
|
export declare type MutationUpdateSpacePermissionsArgs = {
|
|
84216
84708
|
input: UpdateSpacePermissionsInput;
|
|
84217
84709
|
};
|
|
84710
|
+
export declare type MutationUpdateSpacePermissionsV2Args = {
|
|
84711
|
+
input: UpdateSpacePermissionsInputV2;
|
|
84712
|
+
};
|
|
84218
84713
|
export declare type MutationUpdateSpaceTypeSettingsArgs = {
|
|
84219
84714
|
input: UpdateSpaceTypeSettingsInput;
|
|
84220
84715
|
};
|
|
@@ -85034,6 +85529,7 @@ export declare type PtPage = {
|
|
|
85034
85529
|
ancestors?: Maybe<Array<Maybe<PtPage>>>;
|
|
85035
85530
|
blank?: Maybe<Scalars['Boolean']['output']>;
|
|
85036
85531
|
children?: Maybe<PtPaginatedPageList>;
|
|
85532
|
+
createdDate?: Maybe<ConfluenceDate>;
|
|
85037
85533
|
emojiTitleDraft?: Maybe<Scalars['String']['output']>;
|
|
85038
85534
|
emojiTitlePublished?: Maybe<Scalars['String']['output']>;
|
|
85039
85535
|
followingSiblings?: Maybe<PtPaginatedPageList>;
|
|
@@ -85041,6 +85537,7 @@ export declare type PtPage = {
|
|
|
85041
85537
|
hasInheritedRestrictions: Scalars['Boolean']['output'];
|
|
85042
85538
|
hasRestrictions: Scalars['Boolean']['output'];
|
|
85043
85539
|
id: Scalars['ID']['output'];
|
|
85540
|
+
lastUpdatedDate?: Maybe<ConfluenceDate>;
|
|
85044
85541
|
links?: Maybe<Map_LinkType_String>;
|
|
85045
85542
|
nearestAncestors?: Maybe<PtPaginatedPageList>;
|
|
85046
85543
|
page?: Maybe<Page>;
|
|
@@ -85056,11 +85553,17 @@ export declare type PtPageChildrenArgs = {
|
|
|
85056
85553
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85057
85554
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
85058
85555
|
};
|
|
85556
|
+
export declare type PtPageCreatedDateArgs = {
|
|
85557
|
+
format?: InputMaybe<GraphQlDateFormat>;
|
|
85558
|
+
};
|
|
85059
85559
|
export declare type PtPageFollowingSiblingsArgs = {
|
|
85060
85560
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
85061
85561
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85062
85562
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
85063
85563
|
};
|
|
85564
|
+
export declare type PtPageLastUpdatedDateArgs = {
|
|
85565
|
+
format?: InputMaybe<GraphQlDateFormat>;
|
|
85566
|
+
};
|
|
85064
85567
|
export declare type PtPageNearestAncestorsArgs = {
|
|
85065
85568
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
85066
85569
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -85101,6 +85604,7 @@ export declare type Page = {
|
|
|
85101
85604
|
ancestors: Array<Maybe<Page>>;
|
|
85102
85605
|
blank?: Maybe<Scalars['Boolean']['output']>;
|
|
85103
85606
|
children?: Maybe<PaginatedPageList>;
|
|
85607
|
+
createdDate?: Maybe<ConfluenceDate>;
|
|
85104
85608
|
emojiTitleDraft?: Maybe<Scalars['String']['output']>;
|
|
85105
85609
|
emojiTitlePublished?: Maybe<Scalars['String']['output']>;
|
|
85106
85610
|
followingSiblings?: Maybe<PaginatedPageList>;
|
|
@@ -85108,6 +85612,7 @@ export declare type Page = {
|
|
|
85108
85612
|
hasInheritedRestrictions: Scalars['Boolean']['output'];
|
|
85109
85613
|
hasRestrictions: Scalars['Boolean']['output'];
|
|
85110
85614
|
id?: Maybe<Scalars['ID']['output']>;
|
|
85615
|
+
lastUpdatedDate?: Maybe<ConfluenceDate>;
|
|
85111
85616
|
links?: Maybe<Map_LinkType_String>;
|
|
85112
85617
|
nearestAncestors?: Maybe<PaginatedPageList>;
|
|
85113
85618
|
previousSiblings?: Maybe<PaginatedPageList>;
|
|
@@ -85122,11 +85627,17 @@ export declare type PageChildrenArgs = {
|
|
|
85122
85627
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85123
85628
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
85124
85629
|
};
|
|
85630
|
+
export declare type PageCreatedDateArgs = {
|
|
85631
|
+
format?: InputMaybe<GraphQlDateFormat>;
|
|
85632
|
+
};
|
|
85125
85633
|
export declare type PageFollowingSiblingsArgs = {
|
|
85126
85634
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
85127
85635
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
85128
85636
|
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
85129
85637
|
};
|
|
85638
|
+
export declare type PageLastUpdatedDateArgs = {
|
|
85639
|
+
format?: InputMaybe<GraphQlDateFormat>;
|
|
85640
|
+
};
|
|
85130
85641
|
export declare type PageNearestAncestorsArgs = {
|
|
85131
85642
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
85132
85643
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -87019,6 +87530,8 @@ export declare type Query = {
|
|
|
87019
87530
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
87020
87531
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
87021
87532
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
87533
|
+
agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
|
|
87534
|
+
agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
|
|
87022
87535
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
87023
87536
|
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
87024
87537
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
@@ -87059,6 +87572,7 @@ export declare type Query = {
|
|
|
87059
87572
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
87060
87573
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
87061
87574
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
87575
|
+
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
87062
87576
|
assets_objectTypesByIds?: Maybe<Array<Maybe<AssetsObjectType>>>;
|
|
87063
87577
|
assets_objectsByIds?: Maybe<Array<Maybe<AssetsObject>>>;
|
|
87064
87578
|
assets_schemasByIds?: Maybe<Array<Maybe<AssetsSchema>>>;
|
|
@@ -87105,6 +87619,8 @@ export declare type Query = {
|
|
|
87105
87619
|
confluenceUsers?: Maybe<PaginatedPersonList>;
|
|
87106
87620
|
confluence_applicationLinkByOauth2ClientId?: Maybe<ConfluenceApplicationLink>;
|
|
87107
87621
|
confluence_atlassianUser?: Maybe<AtlassianUser>;
|
|
87622
|
+
confluence_calendarJiraDateFieldsByJql?: Maybe<Array<Maybe<ConfluenceCalendarJiraDateField>>>;
|
|
87623
|
+
confluence_calendarJiraDateFieldsBySearchFilter?: Maybe<Array<Maybe<ConfluenceCalendarJiraDateField>>>;
|
|
87108
87624
|
confluence_calendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
87109
87625
|
confluence_calendarTimezones?: Maybe<ConfluenceCalendarTimezones>;
|
|
87110
87626
|
confluence_contentAccessRequestByStatus?: Maybe<ConfluenceContentAccessRequestConnection>;
|
|
@@ -87126,6 +87642,7 @@ export declare type Query = {
|
|
|
87126
87642
|
confluence_externalCollaboratorsByCriteria?: Maybe<ConfluencePersonConnection>;
|
|
87127
87643
|
confluence_forgeExtensionsByType?: Maybe<Array<Maybe<ConfluenceForgeExtension>>>;
|
|
87128
87644
|
confluence_generateSpaceKey?: Maybe<ConfluenceGeneratedSpaceKey>;
|
|
87645
|
+
confluence_getWacTemplate?: Maybe<ConfluenceWacTemplate>;
|
|
87129
87646
|
confluence_hasClearPermissionForSpace?: Maybe<Scalars['Boolean']['output']>;
|
|
87130
87647
|
confluence_hasDivergedFromDefaultSpacePermissions?: Maybe<Scalars['Boolean']['output']>;
|
|
87131
87648
|
confluence_isPrivacyModeEnabled?: Maybe<ConfluencePrivacyMode>;
|
|
@@ -87202,8 +87719,10 @@ export declare type Query = {
|
|
|
87202
87719
|
countGroupBySpace?: Maybe<CountGroupBySpace>;
|
|
87203
87720
|
countGroupByUser?: Maybe<CountGroupByUser>;
|
|
87204
87721
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
87205
|
-
|
|
87722
|
+
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
87206
87723
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
87724
|
+
csmAi_generateCoachingTriggeringCondition: Scalars['String']['output'];
|
|
87725
|
+
csmAi_getAgentVersion?: Maybe<CsmAiAgentVersionResult>;
|
|
87207
87726
|
csmAi_getAiHubByHelpCenterAri?: Maybe<CsmAiHubResult>;
|
|
87208
87727
|
currentConfluenceUser?: Maybe<CurrentConfluenceUser>;
|
|
87209
87728
|
customerService?: Maybe<CustomerServiceQueryApi>;
|
|
@@ -87312,6 +87831,8 @@ export declare type Query = {
|
|
|
87312
87831
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
87313
87832
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
87314
87833
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
87834
|
+
graphIntegration_dimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
87835
|
+
graphIntegration_items?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
87315
87836
|
graphStore?: Maybe<GraphStore>;
|
|
87316
87837
|
group?: Maybe<Group>;
|
|
87317
87838
|
groupCounts?: Maybe<GraphQlGroupCountsResult>;
|
|
@@ -87504,6 +88025,7 @@ export declare type Query = {
|
|
|
87504
88025
|
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
87505
88026
|
projects_byId?: Maybe<TownsquareProject>;
|
|
87506
88027
|
projects_byIds?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
88028
|
+
projects_canCreateProjectFusion?: Maybe<TownsquareProjectsCanCreateProjectFusionPayload>;
|
|
87507
88029
|
projects_linksByIds?: Maybe<Array<Maybe<TownsquareLink>>>;
|
|
87508
88030
|
projects_search?: Maybe<TownsquareProjectConnection>;
|
|
87509
88031
|
projects_updatesByIds?: Maybe<Array<Maybe<TownsquareProjectUpdate>>>;
|
|
@@ -87578,6 +88100,7 @@ export declare type Query = {
|
|
|
87578
88100
|
spaces?: Maybe<PaginatedSpaceList>;
|
|
87579
88101
|
spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
|
|
87580
88102
|
spf_ask?: Maybe<SpfAskResult>;
|
|
88103
|
+
spf_askCommentsByIds?: Maybe<Array<Maybe<SpfAskComment>>>;
|
|
87581
88104
|
spf_asks?: Maybe<SpfAskConnection>;
|
|
87582
88105
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
87583
88106
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
@@ -87708,6 +88231,15 @@ export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
|
87708
88231
|
cloudId: Scalars['String']['input'];
|
|
87709
88232
|
input: AgentStudioSuggestConversationStartersInput;
|
|
87710
88233
|
};
|
|
88234
|
+
export declare type QueryAgentStudio_ValidateScenarioArgs = {
|
|
88235
|
+
cloudId: Scalars['String']['input'];
|
|
88236
|
+
containerId: Scalars['ID']['input'];
|
|
88237
|
+
id: Scalars['ID']['input'];
|
|
88238
|
+
};
|
|
88239
|
+
export declare type QueryAgentStudio_ValidateScenariosArgs = {
|
|
88240
|
+
cloudId: Scalars['String']['input'];
|
|
88241
|
+
input: AgentStudioScenarioValidateModeInput;
|
|
88242
|
+
};
|
|
87711
88243
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
87712
88244
|
projectAri: Scalars['ID']['input'];
|
|
87713
88245
|
};
|
|
@@ -87906,6 +88438,13 @@ export declare type QueryAssetsDm_ObjectsListDataRowsArgs = {
|
|
|
87906
88438
|
sortBy?: InputMaybe<AssetsDmObjectsListSortBy>;
|
|
87907
88439
|
workspaceId: Scalars['ID']['input'];
|
|
87908
88440
|
};
|
|
88441
|
+
export declare type QueryAssetsDm_RawDataArgs = {
|
|
88442
|
+
cloudId: Scalars['ID']['input'];
|
|
88443
|
+
dataSourceId: Scalars['ID']['input'];
|
|
88444
|
+
filters?: InputMaybe<Array<AssetsDmRawDataFilterInput>>;
|
|
88445
|
+
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
88446
|
+
workspaceId: Scalars['ID']['input'];
|
|
88447
|
+
};
|
|
87909
88448
|
export declare type QueryAssets_ObjectTypesByIdsArgs = {
|
|
87910
88449
|
ids: Array<Scalars['ID']['input']>;
|
|
87911
88450
|
};
|
|
@@ -88079,6 +88618,16 @@ export declare type QueryConfluence_AtlassianUserArgs = {
|
|
|
88079
88618
|
current?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88080
88619
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
88081
88620
|
};
|
|
88621
|
+
export declare type QueryConfluence_CalendarJiraDateFieldsByJqlArgs = {
|
|
88622
|
+
applicationId: Scalars['ID']['input'];
|
|
88623
|
+
cloudId: Scalars['ID']['input'];
|
|
88624
|
+
jql: Scalars['String']['input'];
|
|
88625
|
+
};
|
|
88626
|
+
export declare type QueryConfluence_CalendarJiraDateFieldsBySearchFilterArgs = {
|
|
88627
|
+
applicationId: Scalars['ID']['input'];
|
|
88628
|
+
cloudId: Scalars['ID']['input'];
|
|
88629
|
+
searchFilterId: Scalars['ID']['input'];
|
|
88630
|
+
};
|
|
88082
88631
|
export declare type QueryConfluence_CalendarPreferenceArgs = {
|
|
88083
88632
|
cloudId: Scalars['ID']['input'];
|
|
88084
88633
|
};
|
|
@@ -88189,6 +88738,9 @@ export declare type QueryConfluence_GenerateSpaceKeyArgs = {
|
|
|
88189
88738
|
cloudId: Scalars['ID']['input'];
|
|
88190
88739
|
spaceName?: InputMaybe<Scalars['String']['input']>;
|
|
88191
88740
|
};
|
|
88741
|
+
export declare type QueryConfluence_GetWacTemplateArgs = {
|
|
88742
|
+
cloudId: Scalars['ID']['input'];
|
|
88743
|
+
};
|
|
88192
88744
|
export declare type QueryConfluence_HasClearPermissionForSpaceArgs = {
|
|
88193
88745
|
cloudId: Scalars['ID']['input'];
|
|
88194
88746
|
spaceKey: Scalars['String']['input'];
|
|
@@ -88613,9 +89165,19 @@ export declare type QueryCountUsersGroupByPageArgs = {
|
|
|
88613
89165
|
sortOrder?: InputMaybe<Scalars['String']['input']>;
|
|
88614
89166
|
startTime: Scalars['String']['input'];
|
|
88615
89167
|
};
|
|
88616
|
-
export declare type
|
|
89168
|
+
export declare type QueryCpls_CapacityPlanningPeopleViewArgs = {
|
|
88617
89169
|
id: Scalars['ID']['input'];
|
|
88618
89170
|
};
|
|
89171
|
+
export declare type QueryCsmAi_GenerateCoachingTriggeringConditionArgs = {
|
|
89172
|
+
conversationId: Scalars['ID']['input'];
|
|
89173
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
89174
|
+
messageId: Scalars['ID']['input'];
|
|
89175
|
+
};
|
|
89176
|
+
export declare type QueryCsmAi_GetAgentVersionArgs = {
|
|
89177
|
+
agentId: Scalars['ID']['input'];
|
|
89178
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
89179
|
+
versionId?: InputMaybe<Scalars['ID']['input']>;
|
|
89180
|
+
};
|
|
88619
89181
|
export declare type QueryCsmAi_GetAiHubByHelpCenterAriArgs = {
|
|
88620
89182
|
helpCenterAri: Scalars['ID']['input'];
|
|
88621
89183
|
};
|
|
@@ -89025,6 +89587,18 @@ export declare type QueryGetSummaryArgs = {
|
|
|
89025
89587
|
lastUpdatedTimeSeconds: Scalars['Long']['input'];
|
|
89026
89588
|
responseType?: InputMaybe<ResponseType>;
|
|
89027
89589
|
};
|
|
89590
|
+
export declare type QueryGraphIntegration_DimensionsArgs = {
|
|
89591
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89592
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89593
|
+
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
89594
|
+
};
|
|
89595
|
+
export declare type QueryGraphIntegration_ItemsArgs = {
|
|
89596
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89597
|
+
dimensionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89598
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89599
|
+
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
89600
|
+
searchKeyword?: InputMaybe<Scalars['String']['input']>;
|
|
89601
|
+
};
|
|
89028
89602
|
export declare type QueryGroupArgs = {
|
|
89029
89603
|
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
89030
89604
|
groupName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -89638,6 +90212,9 @@ export declare type QueryProjects_ByIdArgs = {
|
|
|
89638
90212
|
export declare type QueryProjects_ByIdsArgs = {
|
|
89639
90213
|
projectIds: Array<Scalars['String']['input']>;
|
|
89640
90214
|
};
|
|
90215
|
+
export declare type QueryProjects_CanCreateProjectFusionArgs = {
|
|
90216
|
+
input: TownsquareProjectsCanCreateProjectFusionInput;
|
|
90217
|
+
};
|
|
89641
90218
|
export declare type QueryProjects_LinksByIdsArgs = {
|
|
89642
90219
|
linkIds: Array<Scalars['ID']['input']>;
|
|
89643
90220
|
};
|
|
@@ -89960,6 +90537,9 @@ export declare type QuerySpacesWithExemptionsArgs = {
|
|
|
89960
90537
|
export declare type QuerySpf_AskArgs = {
|
|
89961
90538
|
id: Scalars['ID']['input'];
|
|
89962
90539
|
};
|
|
90540
|
+
export declare type QuerySpf_AskCommentsByIdsArgs = {
|
|
90541
|
+
ids: Array<Scalars['ID']['input']>;
|
|
90542
|
+
};
|
|
89963
90543
|
export declare type QuerySpf_AsksArgs = {
|
|
89964
90544
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
89965
90545
|
cloudId: Scalars['ID']['input'];
|
|
@@ -91015,6 +91595,7 @@ export declare enum RelationType {
|
|
|
91015
91595
|
}
|
|
91016
91596
|
export declare type RelevantSpaceUsersWrapper = {
|
|
91017
91597
|
__typename?: 'RelevantSpaceUsersWrapper';
|
|
91598
|
+
accountIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
91018
91599
|
id?: Maybe<Scalars['String']['output']>;
|
|
91019
91600
|
users?: Maybe<Array<Maybe<Person>>>;
|
|
91020
91601
|
};
|
|
@@ -91951,6 +92532,9 @@ export declare type RunImportInput = {
|
|
|
91951
92532
|
miroAuthToken?: InputMaybe<Scalars['String']['input']>;
|
|
91952
92533
|
miroProjectId?: InputMaybe<Scalars['String']['input']>;
|
|
91953
92534
|
miroTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
92535
|
+
oauthAccessRefreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
92536
|
+
oauthAccessToken?: InputMaybe<Scalars['String']['input']>;
|
|
92537
|
+
oauthAccessTokenExpiry?: InputMaybe<Scalars['String']['input']>;
|
|
91954
92538
|
orgId: Scalars['String']['input'];
|
|
91955
92539
|
parentId?: InputMaybe<Scalars['String']['input']>;
|
|
91956
92540
|
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -92476,6 +93060,10 @@ export declare enum SearchBoardProductType {
|
|
|
92476
93060
|
Business = "BUSINESS",
|
|
92477
93061
|
Software = "SOFTWARE"
|
|
92478
93062
|
}
|
|
93063
|
+
export declare enum SearchCombinationType {
|
|
93064
|
+
And = "AND",
|
|
93065
|
+
Or = "OR"
|
|
93066
|
+
}
|
|
92479
93067
|
export declare type SearchCommonFilter = {
|
|
92480
93068
|
contributorsFilter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
92481
93069
|
range?: InputMaybe<SearchCommonRangeFilter>;
|
|
@@ -92703,11 +93291,30 @@ export declare type SearchLayerDefinition = {
|
|
|
92703
93291
|
shadowId?: InputMaybe<Scalars['String']['input']>;
|
|
92704
93292
|
subEntity?: InputMaybe<Scalars['String']['input']>;
|
|
92705
93293
|
};
|
|
93294
|
+
export declare enum SearchLinkedEntityGranularity {
|
|
93295
|
+
AllMatchingMessages = "ALL_MATCHING_MESSAGES",
|
|
93296
|
+
Default = "DEFAULT",
|
|
93297
|
+
FullThread = "FULL_THREAD"
|
|
93298
|
+
}
|
|
92706
93299
|
export declare type SearchMercuryFilter = {
|
|
92707
93300
|
ancestorIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
92708
93301
|
focusAreaTypeIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
92709
93302
|
owners?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
92710
93303
|
};
|
|
93304
|
+
export declare type SearchParticipant = {
|
|
93305
|
+
combination: SearchCombinationType;
|
|
93306
|
+
type: SearchParticipantType;
|
|
93307
|
+
users: Array<Scalars['ID']['input']>;
|
|
93308
|
+
};
|
|
93309
|
+
export declare enum SearchParticipantType {
|
|
93310
|
+
Contributor = "CONTRIBUTOR",
|
|
93311
|
+
Mentions = "MENTIONS",
|
|
93312
|
+
Presence = "PRESENCE"
|
|
93313
|
+
}
|
|
93314
|
+
export declare type SearchParticipants = {
|
|
93315
|
+
combination: SearchCombinationType;
|
|
93316
|
+
items: Array<SearchParticipant>;
|
|
93317
|
+
};
|
|
92711
93318
|
export declare type SearchProductCount = {
|
|
92712
93319
|
__typename?: 'SearchProductCount';
|
|
92713
93320
|
count: Scalars['Int']['output'];
|
|
@@ -93195,6 +93802,7 @@ export declare type SearchThirdPartyFilter = {
|
|
|
93195
93802
|
excludeSubtypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
93196
93803
|
integrations?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
93197
93804
|
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
93805
|
+
participants?: InputMaybe<SearchParticipants>;
|
|
93198
93806
|
range?: InputMaybe<Array<InputMaybe<SearchThirdPartyRangeFilter>>>;
|
|
93199
93807
|
subtypes?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
93200
93808
|
thirdPartyProducts?: InputMaybe<Array<SearchThirdPartyProduct>>;
|
|
@@ -93204,6 +93812,7 @@ export declare type SearchThirdPartyFilter = {
|
|
|
93204
93812
|
export declare type SearchThirdPartyProduct = {
|
|
93205
93813
|
connectorSources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
93206
93814
|
integrationId?: InputMaybe<Scalars['String']['input']>;
|
|
93815
|
+
linkedEntityGranularity?: InputMaybe<SearchLinkedEntityGranularity>;
|
|
93207
93816
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
93208
93817
|
providerId?: InputMaybe<Scalars['String']['input']>;
|
|
93209
93818
|
subtypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -96085,6 +96694,10 @@ export declare type SpaceUserMetadata = {
|
|
|
96085
96694
|
isFavourited: Scalars['Boolean']['output'];
|
|
96086
96695
|
isWatched: Scalars['Boolean']['output'];
|
|
96087
96696
|
isWatchingBlogs: Scalars['Boolean']['output'];
|
|
96697
|
+
lastVisitedDate?: Maybe<ConfluenceDate>;
|
|
96698
|
+
};
|
|
96699
|
+
export declare type SpaceUserMetadataLastVisitedDateArgs = {
|
|
96700
|
+
format?: InputMaybe<GraphQlDateFormat>;
|
|
96088
96701
|
};
|
|
96089
96702
|
export declare type SpaceViewsPersistence = {
|
|
96090
96703
|
persistenceOption: SpaceViewsPersistenceOption;
|
|
@@ -96274,7 +96887,7 @@ export declare type SpfAskActivityUpdatedUser = SpfAskActivityUpdatedValue & {
|
|
|
96274
96887
|
export declare type SpfAskActivityUpdatedValue = {
|
|
96275
96888
|
attribute: SpfAskActivityAttribute;
|
|
96276
96889
|
};
|
|
96277
|
-
export declare type SpfAskComment = {
|
|
96890
|
+
export declare type SpfAskComment = Node & {
|
|
96278
96891
|
__typename?: 'SpfAskComment';
|
|
96279
96892
|
askId: Scalars['String']['output'];
|
|
96280
96893
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -96986,6 +97599,11 @@ export declare type SubjectPermissionDeltas = {
|
|
|
96986
97599
|
permissionsToRemove: Array<InputMaybe<SpacePermissionType>>;
|
|
96987
97600
|
subjectKeyInput: UpdatePermissionSubjectKeyInput;
|
|
96988
97601
|
};
|
|
97602
|
+
export declare type SubjectPermissionDeltasV2 = {
|
|
97603
|
+
permissionsToAdd: Array<InputMaybe<Scalars['String']['input']>>;
|
|
97604
|
+
permissionsToRemove: Array<InputMaybe<Scalars['String']['input']>>;
|
|
97605
|
+
principalInput: RoleAssignmentPrincipalInput;
|
|
97606
|
+
};
|
|
96989
97607
|
export declare type SubjectRestrictionHierarchySummary = {
|
|
96990
97608
|
__typename?: 'SubjectRestrictionHierarchySummary';
|
|
96991
97609
|
restrictedResources?: Maybe<Array<Maybe<RestrictedResource>>>;
|
|
@@ -98422,6 +99040,16 @@ export declare type TownsquareAddTagToEntityPayload = {
|
|
|
98422
99040
|
success: Scalars['Boolean']['output'];
|
|
98423
99041
|
tags?: Maybe<Array<Maybe<TownsquareTag>>>;
|
|
98424
99042
|
};
|
|
99043
|
+
export declare type TownsquareAddTagsByNameInput = {
|
|
99044
|
+
nounId: Scalars['ID']['input'];
|
|
99045
|
+
tagNames: Array<Scalars['String']['input']>;
|
|
99046
|
+
};
|
|
99047
|
+
export declare type TownsquareAddTagsByNamePayload = {
|
|
99048
|
+
__typename?: 'TownsquareAddTagsByNamePayload';
|
|
99049
|
+
errors?: Maybe<Array<MutationError>>;
|
|
99050
|
+
success: Scalars['Boolean']['output'];
|
|
99051
|
+
tags?: Maybe<Array<Maybe<TownsquareTag>>>;
|
|
99052
|
+
};
|
|
98425
99053
|
export declare type TownsquareArchiveGoalInput = {
|
|
98426
99054
|
id: Scalars['String']['input'];
|
|
98427
99055
|
};
|
|
@@ -98429,6 +99057,15 @@ export declare type TownsquareArchiveGoalPayload = {
|
|
|
98429
99057
|
__typename?: 'TownsquareArchiveGoalPayload';
|
|
98430
99058
|
goal?: Maybe<TownsquareGoal>;
|
|
98431
99059
|
};
|
|
99060
|
+
export declare enum TownsquareCanCreateFusionResult {
|
|
99061
|
+
CanCreate = "CAN_CREATE",
|
|
99062
|
+
IntegrationNotInstalled = "INTEGRATION_NOT_INSTALLED",
|
|
99063
|
+
IssueAlreadyLinked = "ISSUE_ALREADY_LINKED",
|
|
99064
|
+
NotInSameOrg = "NOT_IN_SAME_ORG",
|
|
99065
|
+
PermissionDenied = "PERMISSION_DENIED",
|
|
99066
|
+
UnexpectedIssueType = "UNEXPECTED_ISSUE_TYPE",
|
|
99067
|
+
UnknownError = "UNKNOWN_ERROR"
|
|
99068
|
+
}
|
|
98432
99069
|
export declare type TownsquareCapability = {
|
|
98433
99070
|
__typename?: 'TownsquareCapability';
|
|
98434
99071
|
capability?: Maybe<TownsquareAccessControlCapability>;
|
|
@@ -98611,6 +99248,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
98611
99248
|
canEditMembers?: Maybe<Scalars['Boolean']['output']>;
|
|
98612
99249
|
canEditUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
98613
99250
|
canPostUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
99251
|
+
comments?: Maybe<TownsquareCommentConnection>;
|
|
98614
99252
|
creationDate: Scalars['DateTime']['output'];
|
|
98615
99253
|
description?: Maybe<Scalars['String']['output']>;
|
|
98616
99254
|
draftUpdate?: Maybe<TownsquareDraftUpdate>;
|
|
@@ -98642,6 +99280,10 @@ export declare type TownsquareGoal = Node & {
|
|
|
98642
99280
|
uuid: Scalars['String']['output'];
|
|
98643
99281
|
watchers?: Maybe<TownsquareUserConnection>;
|
|
98644
99282
|
};
|
|
99283
|
+
export declare type TownsquareGoalCommentsArgs = {
|
|
99284
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
99285
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
99286
|
+
};
|
|
98645
99287
|
export declare type TownsquareGoalParentGoalSuggestionsArgs = {
|
|
98646
99288
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
98647
99289
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -99343,6 +99985,7 @@ export declare type TownsquareProjectsAddMembersPayload = {
|
|
|
99343
99985
|
errors?: Maybe<Array<MutationError>>;
|
|
99344
99986
|
project?: Maybe<TownsquareProject>;
|
|
99345
99987
|
success: Scalars['Boolean']['output'];
|
|
99988
|
+
userContributors?: Maybe<Array<Maybe<TownsquareContributor>>>;
|
|
99346
99989
|
users?: Maybe<Array<User>>;
|
|
99347
99990
|
};
|
|
99348
99991
|
export declare type TownsquareProjectsAddTeamContributorsInput = {
|
|
@@ -99357,6 +100000,15 @@ export declare type TownsquareProjectsAddTeamContributorsPayload = {
|
|
|
99357
100000
|
project?: Maybe<TownsquareProject>;
|
|
99358
100001
|
success: Scalars['Boolean']['output'];
|
|
99359
100002
|
};
|
|
100003
|
+
export declare type TownsquareProjectsCanCreateProjectFusionInput = {
|
|
100004
|
+
issueId: Scalars['ID']['input'];
|
|
100005
|
+
projectId: Scalars['ID']['input'];
|
|
100006
|
+
};
|
|
100007
|
+
export declare type TownsquareProjectsCanCreateProjectFusionPayload = {
|
|
100008
|
+
__typename?: 'TownsquareProjectsCanCreateProjectFusionPayload';
|
|
100009
|
+
canCreateFusionResult?: Maybe<TownsquareCanCreateFusionResult>;
|
|
100010
|
+
issue?: Maybe<JiraIssue>;
|
|
100011
|
+
};
|
|
99360
100012
|
export declare type TownsquareProjectsCloneInput = {
|
|
99361
100013
|
addLinks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
99362
100014
|
addWatchers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -99469,6 +100121,17 @@ export declare type TownsquareProjectsRemoveMemberPayload = {
|
|
|
99469
100121
|
success: Scalars['Boolean']['output'];
|
|
99470
100122
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
99471
100123
|
};
|
|
100124
|
+
export declare type TownsquareProjectsSetDependencyInput = {
|
|
100125
|
+
incomingProjectId: Scalars['ID']['input'];
|
|
100126
|
+
outgoingProjectId: Scalars['ID']['input'];
|
|
100127
|
+
type: TownsquareProjectDependencyRelationship;
|
|
100128
|
+
};
|
|
100129
|
+
export declare type TownsquareProjectsSetDependencyPayload = {
|
|
100130
|
+
__typename?: 'TownsquareProjectsSetDependencyPayload';
|
|
100131
|
+
errors?: Maybe<Array<MutationError>>;
|
|
100132
|
+
projectDependency?: Maybe<TownsquareProjectDependency>;
|
|
100133
|
+
success: Scalars['Boolean']['output'];
|
|
100134
|
+
};
|
|
99472
100135
|
export declare type TownsquareProjectsSetWatchingProjectInput = {
|
|
99473
100136
|
isWatching: Scalars['Boolean']['input'];
|
|
99474
100137
|
projectId: Scalars['ID']['input'];
|
|
@@ -99924,9 +100587,9 @@ export declare type TrelloActionCardEntity = {
|
|
|
99924
100587
|
};
|
|
99925
100588
|
export declare type TrelloActionCheckItemEntity = {
|
|
99926
100589
|
__typename?: 'TrelloActionCheckItemEntity';
|
|
99927
|
-
id: Scalars['ID']['output'];
|
|
99928
100590
|
name?: Maybe<Scalars['String']['output']>;
|
|
99929
100591
|
nameHtml?: Maybe<Scalars['String']['output']>;
|
|
100592
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99930
100593
|
state?: Maybe<Scalars['String']['output']>;
|
|
99931
100594
|
text?: Maybe<Scalars['String']['output']>;
|
|
99932
100595
|
textData?: Maybe<Scalars['String']['output']>;
|
|
@@ -99935,8 +100598,8 @@ export declare type TrelloActionCheckItemEntity = {
|
|
|
99935
100598
|
export declare type TrelloActionChecklistEntity = {
|
|
99936
100599
|
__typename?: 'TrelloActionChecklistEntity';
|
|
99937
100600
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
99938
|
-
id: Scalars['ID']['output'];
|
|
99939
100601
|
name?: Maybe<Scalars['String']['output']>;
|
|
100602
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
99940
100603
|
type?: Maybe<Scalars['String']['output']>;
|
|
99941
100604
|
};
|
|
99942
100605
|
export declare type TrelloActionCommentEntity = {
|
|
@@ -100066,7 +100729,7 @@ export declare type TrelloAddRemoveMemberActionDisplayEntities = {
|
|
|
100066
100729
|
__typename?: 'TrelloAddRemoveMemberActionDisplayEntities';
|
|
100067
100730
|
card?: Maybe<TrelloActionCardEntity>;
|
|
100068
100731
|
member?: Maybe<TrelloActionMemberEntity>;
|
|
100069
|
-
|
|
100732
|
+
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
100070
100733
|
};
|
|
100071
100734
|
export declare type TrelloAiRule = {
|
|
100072
100735
|
__typename?: 'TrelloAiRule';
|
|
@@ -100110,6 +100773,7 @@ export declare type TrelloApplication = {
|
|
|
100110
100773
|
moderatedState?: Maybe<Scalars['String']['output']>;
|
|
100111
100774
|
name?: Maybe<Scalars['String']['output']>;
|
|
100112
100775
|
oauth2Client?: Maybe<TrelloOAuth2Client>;
|
|
100776
|
+
objectId: Scalars['ID']['output'];
|
|
100113
100777
|
privacyUrl?: Maybe<Scalars['URL']['output']>;
|
|
100114
100778
|
public?: Maybe<Scalars['Boolean']['output']>;
|
|
100115
100779
|
supportEmail?: Maybe<Scalars['String']['output']>;
|
|
@@ -100919,6 +101583,7 @@ export declare type TrelloCardUpdated = {
|
|
|
100919
101583
|
name?: Maybe<Scalars['String']['output']>;
|
|
100920
101584
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
100921
101585
|
onChecklistDeleted?: Maybe<Array<TrelloChecklistDeleted>>;
|
|
101586
|
+
onPowerUpDataDeleted?: Maybe<Array<TrelloPowerUpDataDeleted>>;
|
|
100922
101587
|
pinned?: Maybe<Scalars['Boolean']['output']>;
|
|
100923
101588
|
position?: Maybe<Scalars['Float']['output']>;
|
|
100924
101589
|
powerUpData?: Maybe<TrelloPowerUpDataConnectionUpdated>;
|
|
@@ -102336,6 +103001,10 @@ export declare type TrelloPowerUpDataConnectionUpdated = {
|
|
|
102336
103001
|
__typename?: 'TrelloPowerUpDataConnectionUpdated';
|
|
102337
103002
|
edges?: Maybe<Array<TrelloPowerUpDataEdgeUpdated>>;
|
|
102338
103003
|
};
|
|
103004
|
+
export declare type TrelloPowerUpDataDeleted = {
|
|
103005
|
+
__typename?: 'TrelloPowerUpDataDeleted';
|
|
103006
|
+
id: Scalars['ID']['output'];
|
|
103007
|
+
};
|
|
102339
103008
|
export declare type TrelloPowerUpDataEdge = {
|
|
102340
103009
|
__typename?: 'TrelloPowerUpDataEdge';
|
|
102341
103010
|
cursor: Scalars['String']['output'];
|
|
@@ -104647,11 +105316,19 @@ export declare type UpdateDefaultSpacePermissionsInput = {
|
|
|
104647
105316
|
permissionsToRemove: Array<InputMaybe<SpacePermissionType>>;
|
|
104648
105317
|
subjectKeyInput: UpdatePermissionSubjectKeyInput;
|
|
104649
105318
|
};
|
|
105319
|
+
export declare type UpdateDefaultSpacePermissionsInputV2 = {
|
|
105320
|
+
subjectPermissionDeltasListV2: Array<SubjectPermissionDeltasV2>;
|
|
105321
|
+
};
|
|
104650
105322
|
export declare type UpdateDefaultSpacePermissionsPayload = {
|
|
104651
105323
|
__typename?: 'UpdateDefaultSpacePermissionsPayload';
|
|
104652
105324
|
errors?: Maybe<Array<MutationError>>;
|
|
104653
105325
|
success: Scalars['Boolean']['output'];
|
|
104654
105326
|
};
|
|
105327
|
+
export declare type UpdateDefaultSpacePermissionsPayloadV2 = Payload & {
|
|
105328
|
+
__typename?: 'UpdateDefaultSpacePermissionsPayloadV2';
|
|
105329
|
+
errors?: Maybe<Array<MutationError>>;
|
|
105330
|
+
success: Scalars['Boolean']['output'];
|
|
105331
|
+
};
|
|
104655
105332
|
export declare type UpdateDevOpsContainerRelationshipEntityPropertiesInput = {
|
|
104656
105333
|
id: Scalars['ID']['input'];
|
|
104657
105334
|
properties: Array<DevOpsContainerRelationshipEntityPropertyInput>;
|
|
@@ -105125,12 +105802,22 @@ export declare type UpdateSpacePermissionsInput = {
|
|
|
105125
105802
|
spaceKey: Scalars['String']['input'];
|
|
105126
105803
|
subjectPermissionDeltasList: Array<SubjectPermissionDeltas>;
|
|
105127
105804
|
};
|
|
105805
|
+
export declare type UpdateSpacePermissionsInputV2 = {
|
|
105806
|
+
spaceId: Scalars['Long']['input'];
|
|
105807
|
+
subjectPermissionDeltasListV2: Array<SubjectPermissionDeltasV2>;
|
|
105808
|
+
};
|
|
105128
105809
|
export declare type UpdateSpacePermissionsPayload = {
|
|
105129
105810
|
__typename?: 'UpdateSpacePermissionsPayload';
|
|
105130
105811
|
errors?: Maybe<Array<MutationError>>;
|
|
105131
105812
|
spaceKey: Scalars['String']['output'];
|
|
105132
105813
|
success: Scalars['Boolean']['output'];
|
|
105133
105814
|
};
|
|
105815
|
+
export declare type UpdateSpacePermissionsPayloadV2 = Payload & {
|
|
105816
|
+
__typename?: 'UpdateSpacePermissionsPayloadV2';
|
|
105817
|
+
errors?: Maybe<Array<MutationError>>;
|
|
105818
|
+
spaceId: Scalars['Long']['output'];
|
|
105819
|
+
success: Scalars['Boolean']['output'];
|
|
105820
|
+
};
|
|
105134
105821
|
export declare type UpdateSpaceTypeSettingsInput = {
|
|
105135
105822
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
105136
105823
|
spaceTypeSettings?: InputMaybe<SpaceTypeSettingsInput>;
|