@forge/cli-shared 8.3.1-next.1 → 8.3.1-next.1-experimental-b695d2e
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/out/graphql/graphql-types.d.ts +2045 -85
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +142 -26
- package/out/ui/text.d.ts +5 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +5 -0
- package/package.json +2 -2
|
@@ -104,6 +104,10 @@ export declare type Scalars = {
|
|
|
104
104
|
input: any;
|
|
105
105
|
output: any;
|
|
106
106
|
};
|
|
107
|
+
TrelloCardPosition: {
|
|
108
|
+
input: any;
|
|
109
|
+
output: any;
|
|
110
|
+
};
|
|
107
111
|
TrelloShortLink: {
|
|
108
112
|
input: any;
|
|
109
113
|
output: any;
|
|
@@ -1162,7 +1166,7 @@ export declare type ActivityObject = {
|
|
|
1162
1166
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
1163
1167
|
type: Scalars['String']['output'];
|
|
1164
1168
|
};
|
|
1165
|
-
export declare type ActivityObjectData = BitbucketPullRequest | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalRemoteLink | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | LoomVideo | MercuryFocusArea | MercuryPortfolio | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
1169
|
+
export declare type ActivityObjectData = AssetsObject | AssetsObjectType | AssetsSchema | BitbucketPullRequest | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalRemoteLink | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | LoomVideo | MercuryFocusArea | MercuryPortfolio | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
1166
1170
|
export declare enum ActivityObjectType {
|
|
1167
1171
|
Blogpost = "BLOGPOST",
|
|
1168
1172
|
Comment = "COMMENT",
|
|
@@ -1547,6 +1551,7 @@ export declare type AgentStudioDeleteAgentPayload = Payload & {
|
|
|
1547
1551
|
export declare type AgentStudioDeleteScenarioPayload = Payload & {
|
|
1548
1552
|
__typename?: 'AgentStudioDeleteScenarioPayload';
|
|
1549
1553
|
errors?: Maybe<Array<MutationError>>;
|
|
1554
|
+
scenarioId?: Maybe<Scalars['ID']['output']>;
|
|
1550
1555
|
success: Scalars['Boolean']['output'];
|
|
1551
1556
|
};
|
|
1552
1557
|
export declare type AgentStudioEmailChannel = AgentStudioChannel & {
|
|
@@ -1733,6 +1738,41 @@ export declare type AgentStudioTeamsChannelDetails = {
|
|
|
1733
1738
|
channelName?: Maybe<Scalars['String']['output']>;
|
|
1734
1739
|
channelUrl?: Maybe<Scalars['String']['output']>;
|
|
1735
1740
|
};
|
|
1741
|
+
export declare type AgentStudioTool = {
|
|
1742
|
+
__typename?: 'AgentStudioTool';
|
|
1743
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
1744
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
1745
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
1746
|
+
id: Scalars['ID']['output'];
|
|
1747
|
+
integrationKey?: Maybe<Scalars['String']['output']>;
|
|
1748
|
+
};
|
|
1749
|
+
export declare type AgentStudioToolEdge = {
|
|
1750
|
+
__typename?: 'AgentStudioToolEdge';
|
|
1751
|
+
cursor: Scalars['String']['output'];
|
|
1752
|
+
node?: Maybe<AgentStudioTool>;
|
|
1753
|
+
};
|
|
1754
|
+
export declare type AgentStudioToolIntegration = {
|
|
1755
|
+
__typename?: 'AgentStudioToolIntegration';
|
|
1756
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
1757
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
1758
|
+
id: Scalars['ID']['output'];
|
|
1759
|
+
integrationKey?: Maybe<Scalars['String']['output']>;
|
|
1760
|
+
};
|
|
1761
|
+
export declare type AgentStudioToolIntegrationEdge = {
|
|
1762
|
+
__typename?: 'AgentStudioToolIntegrationEdge';
|
|
1763
|
+
cursor: Scalars['String']['output'];
|
|
1764
|
+
node?: Maybe<AgentStudioToolIntegration>;
|
|
1765
|
+
};
|
|
1766
|
+
export declare type AgentStudioToolIntegrationsConnection = {
|
|
1767
|
+
__typename?: 'AgentStudioToolIntegrationsConnection';
|
|
1768
|
+
edges: Array<AgentStudioToolIntegrationEdge>;
|
|
1769
|
+
pageInfo: PageInfo;
|
|
1770
|
+
};
|
|
1771
|
+
export declare type AgentStudioToolsConnection = {
|
|
1772
|
+
__typename?: 'AgentStudioToolsConnection';
|
|
1773
|
+
edges: Array<AgentStudioToolEdge>;
|
|
1774
|
+
pageInfo: PageInfo;
|
|
1775
|
+
};
|
|
1736
1776
|
export declare type AgentStudioUpdateAgentActionsPayload = Payload & {
|
|
1737
1777
|
__typename?: 'AgentStudioUpdateAgentActionsPayload';
|
|
1738
1778
|
agent?: Maybe<AgentStudioAgent>;
|
|
@@ -3477,19 +3517,147 @@ export declare type AssetsDmDataSource = {
|
|
|
3477
3517
|
noOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
3478
3518
|
statusText?: Maybe<Scalars['String']['output']>;
|
|
3479
3519
|
};
|
|
3520
|
+
export declare type AssetsDmDataSourceCleansingReason = {
|
|
3521
|
+
__typename?: 'AssetsDMDataSourceCleansingReason';
|
|
3522
|
+
reason: Scalars['String']['output'];
|
|
3523
|
+
reasonCode: Scalars['Int']['output'];
|
|
3524
|
+
reasonId: Scalars['ID']['output'];
|
|
3525
|
+
tenantId: Scalars['ID']['output'];
|
|
3526
|
+
};
|
|
3527
|
+
export declare type AssetsDmDataSourceCleansingReasonInput = {
|
|
3528
|
+
reason: Scalars['String']['input'];
|
|
3529
|
+
reasonCode: Scalars['Int']['input'];
|
|
3530
|
+
reasonId: Scalars['ID']['input'];
|
|
3531
|
+
tenantId: Scalars['ID']['input'];
|
|
3532
|
+
};
|
|
3533
|
+
export declare type AssetsDmDataSourceCleansingRule = {
|
|
3534
|
+
__typename?: 'AssetsDMDataSourceCleansingRule';
|
|
3535
|
+
dataSourceId: Scalars['ID']['output'];
|
|
3536
|
+
defFunction: AssetsDmDataSourceCleansingRuleDefFunction;
|
|
3537
|
+
defFunctionId: Scalars['ID']['output'];
|
|
3538
|
+
enabled: Scalars['Boolean']['output'];
|
|
3539
|
+
functionId: Scalars['ID']['output'];
|
|
3540
|
+
functionParameters: Array<AssetsDmDataSourceCleansingRuleFunctionParameter>;
|
|
3541
|
+
priority: Scalars['Int']['output'];
|
|
3542
|
+
reason: AssetsDmDataSourceCleansingReason;
|
|
3543
|
+
reasonId: Scalars['ID']['output'];
|
|
3544
|
+
};
|
|
3545
|
+
export declare type AssetsDmDataSourceCleansingRuleDefFunction = {
|
|
3546
|
+
__typename?: 'AssetsDMDataSourceCleansingRuleDefFunction';
|
|
3547
|
+
defFunctionId: Scalars['ID']['output'];
|
|
3548
|
+
defFunctionParameters: Array<AssetsDmDataSourceCleansingRuleDefFunctionParameter>;
|
|
3549
|
+
description: Scalars['String']['output'];
|
|
3550
|
+
name: Scalars['String']['output'];
|
|
3551
|
+
type: Scalars['String']['output'];
|
|
3552
|
+
};
|
|
3553
|
+
export declare type AssetsDmDataSourceCleansingRuleDefFunctionInput = {
|
|
3554
|
+
defFunctionId: Scalars['ID']['input'];
|
|
3555
|
+
defFunctionParameters: Array<AssetsDmDataSourceCleansingRuleDefFunctionParameterInput>;
|
|
3556
|
+
description: Scalars['String']['input'];
|
|
3557
|
+
name: Scalars['String']['input'];
|
|
3558
|
+
type: Scalars['String']['input'];
|
|
3559
|
+
};
|
|
3560
|
+
export declare type AssetsDmDataSourceCleansingRuleDefFunctionParameter = {
|
|
3561
|
+
__typename?: 'AssetsDMDataSourceCleansingRuleDefFunctionParameter';
|
|
3562
|
+
dataType: Scalars['Int']['output'];
|
|
3563
|
+
defFunctionId: Scalars['ID']['output'];
|
|
3564
|
+
defFunctionParameterId: Scalars['ID']['output'];
|
|
3565
|
+
description: Scalars['String']['output'];
|
|
3566
|
+
displayName: Scalars['String']['output'];
|
|
3567
|
+
displayOrder: Scalars['Int']['output'];
|
|
3568
|
+
isColumn: Scalars['Boolean']['output'];
|
|
3569
|
+
name: Scalars['String']['output'];
|
|
3570
|
+
required: Scalars['Boolean']['output'];
|
|
3571
|
+
type: Scalars['Int']['output'];
|
|
3572
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
3573
|
+
};
|
|
3574
|
+
export declare type AssetsDmDataSourceCleansingRuleDefFunctionParameterInput = {
|
|
3575
|
+
dataType: Scalars['Int']['input'];
|
|
3576
|
+
defFunctionId: Scalars['ID']['input'];
|
|
3577
|
+
defFunctionParameterId: Scalars['ID']['input'];
|
|
3578
|
+
description: Scalars['String']['input'];
|
|
3579
|
+
displayName: Scalars['String']['input'];
|
|
3580
|
+
displayOrder: Scalars['Int']['input'];
|
|
3581
|
+
isColumn: Scalars['Boolean']['input'];
|
|
3582
|
+
name: Scalars['String']['input'];
|
|
3583
|
+
required: Scalars['Boolean']['input'];
|
|
3584
|
+
type: Scalars['Int']['input'];
|
|
3585
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
3586
|
+
};
|
|
3587
|
+
export declare type AssetsDmDataSourceCleansingRuleFunctionParameter = {
|
|
3588
|
+
__typename?: 'AssetsDMDataSourceCleansingRuleFunctionParameter';
|
|
3589
|
+
defFunctionParameter: AssetsDmDataSourceCleansingRuleDefFunctionParameter;
|
|
3590
|
+
defFunctionParameterId: Scalars['ID']['output'];
|
|
3591
|
+
functionId: Scalars['ID']['output'];
|
|
3592
|
+
functionParameterId: Scalars['ID']['output'];
|
|
3593
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
3594
|
+
};
|
|
3595
|
+
export declare type AssetsDmDataSourceCleansingRuleFunctionParameterInput = {
|
|
3596
|
+
defFunctionParameter: AssetsDmDataSourceCleansingRuleDefFunctionParameterInput;
|
|
3597
|
+
defFunctionParameterId: Scalars['ID']['input'];
|
|
3598
|
+
functionId: Scalars['ID']['input'];
|
|
3599
|
+
functionParameterId: Scalars['ID']['input'];
|
|
3600
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
3601
|
+
};
|
|
3602
|
+
export declare type AssetsDmDataSourceCleansingRuleInput = {
|
|
3603
|
+
dataSourceId: Scalars['ID']['input'];
|
|
3604
|
+
defFunction: AssetsDmDataSourceCleansingRuleDefFunctionInput;
|
|
3605
|
+
defFunctionId: Scalars['ID']['input'];
|
|
3606
|
+
enabled: Scalars['Boolean']['input'];
|
|
3607
|
+
functionId: Scalars['ID']['input'];
|
|
3608
|
+
functionParameters: Array<AssetsDmDataSourceCleansingRuleFunctionParameterInput>;
|
|
3609
|
+
priority: Scalars['Int']['input'];
|
|
3610
|
+
reason: AssetsDmDataSourceCleansingReasonInput;
|
|
3611
|
+
reasonId: Scalars['ID']['input'];
|
|
3612
|
+
};
|
|
3613
|
+
export declare type AssetsDmDataSourceCleansingRulesConfigureResponse = {
|
|
3614
|
+
__typename?: 'AssetsDMDataSourceCleansingRulesConfigureResponse';
|
|
3615
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
3616
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3617
|
+
};
|
|
3618
|
+
export declare type AssetsDmDataSourceCleansingRulesResponse = {
|
|
3619
|
+
__typename?: 'AssetsDMDataSourceCleansingRulesResponse';
|
|
3620
|
+
cleansingRules?: Maybe<Array<AssetsDmDataSourceCleansingRule>>;
|
|
3621
|
+
columns?: Maybe<Array<Scalars['String']['output']>>;
|
|
3622
|
+
defaultCleansingRules?: Maybe<Array<AssetsDmDataSourceCleansingRuleDefFunction>>;
|
|
3623
|
+
reasons?: Maybe<Array<AssetsDmDataSourceCleansingReason>>;
|
|
3624
|
+
};
|
|
3480
3625
|
export declare type AssetsDmDataSourceConfig = {
|
|
3481
3626
|
__typename?: 'AssetsDMDataSourceConfig';
|
|
3482
3627
|
adapterType?: Maybe<Scalars['String']['output']>;
|
|
3483
3628
|
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
3484
3629
|
objectClassType?: Maybe<AssetsDmObjectClassEnum>;
|
|
3485
3630
|
};
|
|
3631
|
+
export declare type AssetsDmDataSourceConfigureMappingInput = {
|
|
3632
|
+
columnType: Scalars['Int']['input'];
|
|
3633
|
+
columnTypeName: Scalars['String']['input'];
|
|
3634
|
+
dataSourceId: Scalars['ID']['input'];
|
|
3635
|
+
destinationColumnName: Scalars['String']['input'];
|
|
3636
|
+
isChanged: Scalars['Boolean']['input'];
|
|
3637
|
+
isNew: Scalars['Boolean']['input'];
|
|
3638
|
+
isPkElsewhere: Scalars['Boolean']['input'];
|
|
3639
|
+
isPrimaryKey: Scalars['Boolean']['input'];
|
|
3640
|
+
isRemoved: Scalars['Boolean']['input'];
|
|
3641
|
+
isSecondaryKey: Scalars['Boolean']['input'];
|
|
3642
|
+
objectAttributeId?: InputMaybe<Scalars['ID']['input']>;
|
|
3643
|
+
objectAttributeMappingId: Scalars['ID']['input'];
|
|
3644
|
+
objectAttributeName?: InputMaybe<Scalars['String']['input']>;
|
|
3645
|
+
sourceColumnName: Scalars['String']['input'];
|
|
3646
|
+
};
|
|
3647
|
+
export declare type AssetsDmDataSourceConfigureMappingResponse = {
|
|
3648
|
+
__typename?: 'AssetsDMDataSourceConfigureMappingResponse';
|
|
3649
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
3650
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3651
|
+
};
|
|
3486
3652
|
export declare type AssetsDmDataSourceDefaultTransformFunctionParameter = {
|
|
3487
3653
|
__typename?: 'AssetsDMDataSourceDefaultTransformFunctionParameter';
|
|
3488
3654
|
defFunctionParameterId: Scalars['ID']['output'];
|
|
3489
3655
|
description: Scalars['String']['output'];
|
|
3490
3656
|
displayName: Scalars['String']['output'];
|
|
3657
|
+
isSelectField: Scalars['Boolean']['output'];
|
|
3491
3658
|
name: Scalars['String']['output'];
|
|
3492
3659
|
required: Scalars['Boolean']['output'];
|
|
3660
|
+
selectFieldType?: Maybe<AssetsDmDataSourceTransformSelectFieldType>;
|
|
3493
3661
|
type: AssetsDmDataSourceTransformParameterType;
|
|
3494
3662
|
value?: Maybe<Scalars['String']['output']>;
|
|
3495
3663
|
};
|
|
@@ -3536,9 +3704,43 @@ export declare type AssetsDmDataSourceJobs = {
|
|
|
3536
3704
|
jobId: Scalars['String']['output'];
|
|
3537
3705
|
name: Scalars['String']['output'];
|
|
3538
3706
|
};
|
|
3707
|
+
export declare type AssetsDmDataSourceMapping = {
|
|
3708
|
+
__typename?: 'AssetsDMDataSourceMapping';
|
|
3709
|
+
columnType: Scalars['Int']['output'];
|
|
3710
|
+
columnTypeName: Scalars['String']['output'];
|
|
3711
|
+
dataSourceId: Scalars['ID']['output'];
|
|
3712
|
+
destinationColumnName: Scalars['String']['output'];
|
|
3713
|
+
isChanged: Scalars['Boolean']['output'];
|
|
3714
|
+
isNew: Scalars['Boolean']['output'];
|
|
3715
|
+
isPkElsewhere: Scalars['Boolean']['output'];
|
|
3716
|
+
isPrimaryKey: Scalars['Boolean']['output'];
|
|
3717
|
+
isRemoved: Scalars['Boolean']['output'];
|
|
3718
|
+
isSecondaryKey: Scalars['Boolean']['output'];
|
|
3719
|
+
objectAttributeId?: Maybe<Scalars['ID']['output']>;
|
|
3720
|
+
objectAttributeMappingId: Scalars['ID']['output'];
|
|
3721
|
+
objectAttributeName?: Maybe<Scalars['String']['output']>;
|
|
3722
|
+
objectAttributesModel: Array<AssetsDmDataSourceMappingObjectAttributeModel>;
|
|
3723
|
+
sourceColumnName: Scalars['String']['output'];
|
|
3724
|
+
};
|
|
3725
|
+
export declare type AssetsDmDataSourceMappingObjectAttributeModel = {
|
|
3726
|
+
__typename?: 'AssetsDMDataSourceMappingObjectAttributeModel';
|
|
3727
|
+
dropdownDisplayName: Scalars['String']['output'];
|
|
3728
|
+
name: Scalars['String']['output'];
|
|
3729
|
+
};
|
|
3730
|
+
export declare type AssetsDmDataSourceMergeResponse = {
|
|
3731
|
+
__typename?: 'AssetsDMDataSourceMergeResponse';
|
|
3732
|
+
cleansedDataCount: Scalars['Int']['output'];
|
|
3733
|
+
dataSourceId: Scalars['String']['output'];
|
|
3734
|
+
dataSourceName: Scalars['String']['output'];
|
|
3735
|
+
dataSourceType: Scalars['String']['output'];
|
|
3736
|
+
objectClassName: Scalars['String']['output'];
|
|
3737
|
+
rawDataCount: Scalars['Int']['output'];
|
|
3738
|
+
transformedDataCount: Scalars['Int']['output'];
|
|
3739
|
+
};
|
|
3539
3740
|
export declare enum AssetsDmDataSourceOperationEnum {
|
|
3540
3741
|
Create = "Create",
|
|
3541
|
-
Update = "Update"
|
|
3742
|
+
Update = "Update",
|
|
3743
|
+
UpdateTransform = "UpdateTransform"
|
|
3542
3744
|
}
|
|
3543
3745
|
export declare type AssetsDmDataSourceResponse = {
|
|
3544
3746
|
__typename?: 'AssetsDMDataSourceResponse';
|
|
@@ -3546,6 +3748,16 @@ export declare type AssetsDmDataSourceResponse = {
|
|
|
3546
3748
|
message?: Maybe<Scalars['String']['output']>;
|
|
3547
3749
|
success: Scalars['Boolean']['output'];
|
|
3548
3750
|
};
|
|
3751
|
+
export declare type AssetsDmDataSourceRunMergeResponse = {
|
|
3752
|
+
__typename?: 'AssetsDMDataSourceRunMergeResponse';
|
|
3753
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
3754
|
+
message: Scalars['String']['output'];
|
|
3755
|
+
};
|
|
3756
|
+
export declare type AssetsDmDataSourceRunTransformResponse = {
|
|
3757
|
+
__typename?: 'AssetsDMDataSourceRunTransformResponse';
|
|
3758
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
3759
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3760
|
+
};
|
|
3549
3761
|
export declare type AssetsDmDataSourceSteps = {
|
|
3550
3762
|
__typename?: 'AssetsDMDataSourceSteps';
|
|
3551
3763
|
cleanse: AssetsDmStep;
|
|
@@ -3556,10 +3768,23 @@ export declare type AssetsDmDataSourceSteps = {
|
|
|
3556
3768
|
};
|
|
3557
3769
|
export declare type AssetsDmDataSourceTransform = {
|
|
3558
3770
|
__typename?: 'AssetsDMDataSourceTransform';
|
|
3771
|
+
adapterType: Scalars['String']['output'];
|
|
3559
3772
|
dataSourceTypeId: Scalars['Int']['output'];
|
|
3560
3773
|
defaultFunctions: Array<AssetsDmDataSourceDefaultTransformFunctions>;
|
|
3561
3774
|
functions: Array<AssetsDmDataSourceTransformFunctions>;
|
|
3562
3775
|
isTemplate: Scalars['Boolean']['output'];
|
|
3776
|
+
objectClassType: AssetsDmObjectClassEnum;
|
|
3777
|
+
options: AssetsDmDataSourceTransformOptions;
|
|
3778
|
+
};
|
|
3779
|
+
export declare type AssetsDmDataSourceTransformColumn = {
|
|
3780
|
+
__typename?: 'AssetsDMDataSourceTransformColumn';
|
|
3781
|
+
name: Scalars['String']['output'];
|
|
3782
|
+
type: Scalars['String']['output'];
|
|
3783
|
+
};
|
|
3784
|
+
export declare type AssetsDmDataSourceTransformColumnType = {
|
|
3785
|
+
__typename?: 'AssetsDMDataSourceTransformColumnType';
|
|
3786
|
+
format: Scalars['String']['output'];
|
|
3787
|
+
name: Scalars['String']['output'];
|
|
3563
3788
|
};
|
|
3564
3789
|
export declare type AssetsDmDataSourceTransformFunctionParameter = {
|
|
3565
3790
|
__typename?: 'AssetsDMDataSourceTransformFunctionParameter';
|
|
@@ -3567,9 +3792,11 @@ export declare type AssetsDmDataSourceTransformFunctionParameter = {
|
|
|
3567
3792
|
description: Scalars['String']['output'];
|
|
3568
3793
|
displayName: Scalars['String']['output'];
|
|
3569
3794
|
functionParameterId: Scalars['ID']['output'];
|
|
3795
|
+
isSelectField: Scalars['Boolean']['output'];
|
|
3570
3796
|
name: Scalars['String']['output'];
|
|
3571
3797
|
placeholder: Scalars['String']['output'];
|
|
3572
3798
|
required: Scalars['Boolean']['output'];
|
|
3799
|
+
selectFieldType?: Maybe<AssetsDmDataSourceTransformSelectFieldType>;
|
|
3573
3800
|
type: AssetsDmDataSourceTransformParameterType;
|
|
3574
3801
|
value: Scalars['String']['output'];
|
|
3575
3802
|
};
|
|
@@ -3583,12 +3810,34 @@ export declare type AssetsDmDataSourceTransformFunctions = {
|
|
|
3583
3810
|
functionParameters: Array<AssetsDmDataSourceTransformFunctionParameter>;
|
|
3584
3811
|
priority: Scalars['Int']['output'];
|
|
3585
3812
|
};
|
|
3813
|
+
export declare type AssetsDmDataSourceTransformInterval = {
|
|
3814
|
+
__typename?: 'AssetsDMDataSourceTransformInterval';
|
|
3815
|
+
name: Scalars['String']['output'];
|
|
3816
|
+
value: Scalars['String']['output'];
|
|
3817
|
+
};
|
|
3818
|
+
export declare type AssetsDmDataSourceTransformOptions = {
|
|
3819
|
+
__typename?: 'AssetsDMDataSourceTransformOptions';
|
|
3820
|
+
columnTypes?: Maybe<Array<AssetsDmDataSourceTransformColumnType>>;
|
|
3821
|
+
columns?: Maybe<Array<AssetsDmDataSourceTransformColumn>>;
|
|
3822
|
+
columnsWithDateTime?: Maybe<Array<AssetsDmDataSourceTransformColumn>>;
|
|
3823
|
+
dateFormats?: Maybe<Array<AssetsDmDateFormats>>;
|
|
3824
|
+
intervals?: Maybe<Array<AssetsDmDataSourceTransformInterval>>;
|
|
3825
|
+
jobs?: Maybe<Array<AssetsDmDataSourceJobs>>;
|
|
3826
|
+
};
|
|
3586
3827
|
export declare enum AssetsDmDataSourceTransformParameterType {
|
|
3587
3828
|
Date = "date",
|
|
3588
3829
|
Numeric = "numeric",
|
|
3589
3830
|
Select = "select",
|
|
3590
3831
|
String = "string"
|
|
3591
3832
|
}
|
|
3833
|
+
export declare enum AssetsDmDataSourceTransformSelectFieldType {
|
|
3834
|
+
ColumnTypes = "columnTypes",
|
|
3835
|
+
Columns = "columns",
|
|
3836
|
+
ColumnsWithDateTime = "columnsWithDateTime",
|
|
3837
|
+
DateFormats = "dateFormats",
|
|
3838
|
+
Intervals = "intervals",
|
|
3839
|
+
Jobs = "jobs"
|
|
3840
|
+
}
|
|
3592
3841
|
export declare type AssetsDmDataSourceTypes = {
|
|
3593
3842
|
__typename?: 'AssetsDMDataSourceTypes';
|
|
3594
3843
|
dataSourceTypeId: Scalars['ID']['output'];
|
|
@@ -3655,31 +3904,43 @@ export declare type AssetsDmObjectSchema = {
|
|
|
3655
3904
|
};
|
|
3656
3905
|
export declare type AssetsDmObjectTag = {
|
|
3657
3906
|
__typename?: 'AssetsDMObjectTag';
|
|
3907
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
3908
|
+
name: Scalars['String']['output'];
|
|
3658
3909
|
objectId: Scalars['ID']['output'];
|
|
3659
3910
|
tagCode: Scalars['Int']['output'];
|
|
3660
|
-
tagDescription?: Maybe<Scalars['String']['output']>;
|
|
3661
3911
|
tagId: Scalars['ID']['output'];
|
|
3662
|
-
|
|
3912
|
+
};
|
|
3913
|
+
export declare type AssetsDmObjectTagCreateInput = {
|
|
3914
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
3915
|
+
name: Scalars['String']['input'];
|
|
3916
|
+
objectId: Scalars['ID']['input'];
|
|
3917
|
+
};
|
|
3918
|
+
export declare type AssetsDmObjectTagCreateResponse = {
|
|
3919
|
+
__typename?: 'AssetsDMObjectTagCreateResponse';
|
|
3920
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
3921
|
+
message: Scalars['String']['output'];
|
|
3922
|
+
};
|
|
3923
|
+
export declare type AssetsDmObjectTagDeleteResponse = {
|
|
3924
|
+
__typename?: 'AssetsDMObjectTagDeleteResponse';
|
|
3925
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
3926
|
+
message: Scalars['String']['output'];
|
|
3663
3927
|
};
|
|
3664
3928
|
export declare type AssetsDmObjectTags = {
|
|
3665
3929
|
__typename?: 'AssetsDMObjectTags';
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
};
|
|
3669
|
-
export declare type AssetsDmObjectTagsArgs = {
|
|
3670
|
-
cloudId: Scalars['ID']['input'];
|
|
3671
|
-
objectId: Scalars['ID']['input'];
|
|
3672
|
-
workspaceId: Scalars['ID']['input'];
|
|
3930
|
+
count: Scalars['Int']['output'];
|
|
3931
|
+
data: Array<AssetsDmObjectTag>;
|
|
3673
3932
|
};
|
|
3674
3933
|
export declare enum AssetsDmObjectsListColumnType {
|
|
3675
3934
|
Boolean = "BOOLEAN",
|
|
3676
3935
|
Datetime = "DATETIME",
|
|
3677
3936
|
Icon = "ICON",
|
|
3937
|
+
Number = "NUMBER",
|
|
3678
3938
|
String = "STRING",
|
|
3679
3939
|
Tag = "TAG"
|
|
3680
3940
|
}
|
|
3681
3941
|
export declare type AssetsDmObjectsListColumns = {
|
|
3682
3942
|
__typename?: 'AssetsDMObjectsListColumns';
|
|
3943
|
+
columnsCount: Scalars['Int']['output'];
|
|
3683
3944
|
dataColumns: Array<AssetsDmObjectsListDataColumn>;
|
|
3684
3945
|
};
|
|
3685
3946
|
export declare type AssetsDmObjectsListDataColumn = {
|
|
@@ -3795,37 +4056,69 @@ export declare enum AssetsDmStepStatus {
|
|
|
3795
4056
|
NotStarted = "NOT_STARTED",
|
|
3796
4057
|
Outdated = "OUTDATED"
|
|
3797
4058
|
}
|
|
4059
|
+
export declare type AssetsDmTransformedDataFilter = {
|
|
4060
|
+
__typename?: 'AssetsDMTransformedDataFilter';
|
|
4061
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
4062
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
4063
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
4064
|
+
valueTo?: Maybe<Scalars['String']['output']>;
|
|
4065
|
+
};
|
|
4066
|
+
export declare type AssetsDmTransformedDataFilterInput = {
|
|
4067
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
4068
|
+
type?: InputMaybe<Scalars['String']['input']>;
|
|
4069
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
4070
|
+
valueTo?: InputMaybe<Scalars['String']['input']>;
|
|
4071
|
+
};
|
|
4072
|
+
export declare type AssetsDmTransformedDataResponse = {
|
|
4073
|
+
__typename?: 'AssetsDMTransformedDataResponse';
|
|
4074
|
+
data: Array<Scalars['JSON']['output']>;
|
|
4075
|
+
filters: Array<AssetsDmTransformedDataFilter>;
|
|
4076
|
+
pagination: AssetsDmPaginationInfo;
|
|
4077
|
+
};
|
|
3798
4078
|
export declare type AssetsIcon = {
|
|
3799
4079
|
__typename?: 'AssetsIcon';
|
|
3800
4080
|
id?: Maybe<Scalars['String']['output']>;
|
|
3801
4081
|
url16?: Maybe<Scalars['String']['output']>;
|
|
3802
4082
|
url48?: Maybe<Scalars['String']['output']>;
|
|
3803
4083
|
};
|
|
4084
|
+
export declare type AssetsLinks = {
|
|
4085
|
+
__typename?: 'AssetsLinks';
|
|
4086
|
+
web?: Maybe<Scalars['String']['output']>;
|
|
4087
|
+
};
|
|
3804
4088
|
export declare type AssetsObject = Node & {
|
|
3805
4089
|
__typename?: 'AssetsObject';
|
|
3806
4090
|
avatar?: Maybe<AssetsAvatar>;
|
|
3807
4091
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
4092
|
+
displayTypename?: Maybe<Scalars['String']['output']>;
|
|
3808
4093
|
id: Scalars['ID']['output'];
|
|
3809
4094
|
label?: Maybe<Scalars['String']['output']>;
|
|
4095
|
+
links?: Maybe<AssetsLinks>;
|
|
3810
4096
|
objectKey?: Maybe<Scalars['String']['output']>;
|
|
3811
4097
|
objectType?: Maybe<AssetsObjectType>;
|
|
4098
|
+
sequentialId?: Maybe<Scalars['String']['output']>;
|
|
3812
4099
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
3813
4100
|
};
|
|
3814
4101
|
export declare type AssetsObjectType = Node & {
|
|
3815
4102
|
__typename?: 'AssetsObjectType';
|
|
3816
4103
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
4104
|
+
displayTypename?: Maybe<Scalars['String']['output']>;
|
|
3817
4105
|
icon?: Maybe<AssetsIcon>;
|
|
3818
4106
|
id: Scalars['ID']['output'];
|
|
4107
|
+
links?: Maybe<AssetsLinks>;
|
|
3819
4108
|
name?: Maybe<Scalars['String']['output']>;
|
|
3820
4109
|
schema?: Maybe<AssetsSchema>;
|
|
4110
|
+
sequentialId?: Maybe<Scalars['String']['output']>;
|
|
3821
4111
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
3822
4112
|
};
|
|
3823
4113
|
export declare type AssetsSchema = Node & {
|
|
3824
4114
|
__typename?: 'AssetsSchema';
|
|
3825
4115
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
4116
|
+
displayTypename?: Maybe<Scalars['String']['output']>;
|
|
3826
4117
|
id: Scalars['ID']['output'];
|
|
3827
4118
|
key?: Maybe<Scalars['String']['output']>;
|
|
4119
|
+
links?: Maybe<AssetsLinks>;
|
|
3828
4120
|
name?: Maybe<Scalars['String']['output']>;
|
|
4121
|
+
sequentialId?: Maybe<Scalars['String']['output']>;
|
|
3829
4122
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
3830
4123
|
};
|
|
3831
4124
|
export declare type AssignIssueParentInput = {
|
|
@@ -5101,6 +5394,7 @@ export declare type CcpEntitlement = CommerceEntitlement & Node & {
|
|
|
5101
5394
|
defaultStandaloneOfferingTransitions?: Maybe<Array<Maybe<CcpEntitlementOfferingTransition>>>;
|
|
5102
5395
|
enableAbuseProneFeatures?: Maybe<Scalars['Boolean']['output']>;
|
|
5103
5396
|
entitlementId?: Maybe<Scalars['ID']['output']>;
|
|
5397
|
+
entitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
5104
5398
|
entitlementTemplate?: Maybe<CcpEntitlementTemplate>;
|
|
5105
5399
|
experienceCapabilities?: Maybe<CcpEntitlementExperienceCapabilities>;
|
|
5106
5400
|
featureOverrides?: Maybe<Array<Maybe<CcpMapEntry>>>;
|
|
@@ -5374,6 +5668,15 @@ export declare type CcpMultipleProductUpgradesExperienceCapability = CommerceExp
|
|
|
5374
5668
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
5375
5669
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
5376
5670
|
};
|
|
5671
|
+
export declare type CcpMutationApi = {
|
|
5672
|
+
__typename?: 'CcpMutationApi';
|
|
5673
|
+
updateLicenseServerId?: Maybe<CcpUpdateLicenseServerIdResult>;
|
|
5674
|
+
};
|
|
5675
|
+
export declare type CcpMutationApiUpdateLicenseServerIdArgs = {
|
|
5676
|
+
entitlementId: Scalars['ID']['input'];
|
|
5677
|
+
serverId: Scalars['ID']['input'];
|
|
5678
|
+
transactionAccountId: Scalars['ID']['input'];
|
|
5679
|
+
};
|
|
5377
5680
|
export declare type CcpOffering = CommerceOffering & Node & {
|
|
5378
5681
|
__typename?: 'CcpOffering';
|
|
5379
5682
|
allowReactivationOnDifferentOffering?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -5436,6 +5739,8 @@ export declare type CcpOfferingChargeElement = {
|
|
|
5436
5739
|
};
|
|
5437
5740
|
export declare type CcpOfferingChargeElementUsageConfig = {
|
|
5438
5741
|
__typename?: 'CcpOfferingChargeElementUsageConfig';
|
|
5742
|
+
consumerKeyType?: Maybe<Scalars['String']['output']>;
|
|
5743
|
+
scale?: Maybe<CcpUsageConfigScale>;
|
|
5439
5744
|
usageKey?: Maybe<Scalars['String']['output']>;
|
|
5440
5745
|
};
|
|
5441
5746
|
export declare type CcpOfferingGroup = {
|
|
@@ -5449,7 +5754,8 @@ export declare type CcpOfferingGroup = {
|
|
|
5449
5754
|
slug?: Maybe<Scalars['String']['output']>;
|
|
5450
5755
|
};
|
|
5451
5756
|
export declare enum CcpOfferingHostingType {
|
|
5452
|
-
Cloud = "CLOUD"
|
|
5757
|
+
Cloud = "CLOUD",
|
|
5758
|
+
Datacenter = "DATACENTER"
|
|
5453
5759
|
}
|
|
5454
5760
|
export declare type CcpOfferingRelationship = {
|
|
5455
5761
|
__typename?: 'CcpOfferingRelationship';
|
|
@@ -6581,6 +6887,19 @@ export declare enum CcpTrialEndBehaviour {
|
|
|
6581
6887
|
BillingPlan = "BILLING_PLAN",
|
|
6582
6888
|
TrialPlan = "TRIAL_PLAN"
|
|
6583
6889
|
}
|
|
6890
|
+
export declare type CcpUpdateLicenseServerIdResult = {
|
|
6891
|
+
__typename?: 'CcpUpdateLicenseServerIdResult';
|
|
6892
|
+
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
6893
|
+
license?: Maybe<CcpLicense>;
|
|
6894
|
+
success: Scalars['Boolean']['output'];
|
|
6895
|
+
};
|
|
6896
|
+
export declare type CcpUsageConfigScale = {
|
|
6897
|
+
__typename?: 'CcpUsageConfigScale';
|
|
6898
|
+
output?: Maybe<Scalars['String']['output']>;
|
|
6899
|
+
ratio?: Maybe<Scalars['String']['output']>;
|
|
6900
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
6901
|
+
unit?: Maybe<Scalars['String']['output']>;
|
|
6902
|
+
};
|
|
6584
6903
|
export declare type CcpUsageQueryBucket = {
|
|
6585
6904
|
__typename?: 'CcpUsageQueryBucket';
|
|
6586
6905
|
end?: Maybe<Scalars['Float']['output']>;
|
|
@@ -7139,6 +7458,7 @@ export declare type CommerceChargeQuantity = {
|
|
|
7139
7458
|
quantity?: Maybe<Scalars['Float']['output']>;
|
|
7140
7459
|
};
|
|
7141
7460
|
export declare type CommerceEntitlement = {
|
|
7461
|
+
entitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
7142
7462
|
experienceCapabilities?: Maybe<CommerceEntitlementExperienceCapabilities>;
|
|
7143
7463
|
id: Scalars['ID']['output'];
|
|
7144
7464
|
latestUsageForChargeElement?: Maybe<Scalars['Int']['output']>;
|
|
@@ -12451,6 +12771,18 @@ export declare enum ComponentSyncEventStatus {
|
|
|
12451
12771
|
Success = "SUCCESS",
|
|
12452
12772
|
UserError = "USER_ERROR"
|
|
12453
12773
|
}
|
|
12774
|
+
export declare type ConfluenceAddCustomApplicationLinkInput = {
|
|
12775
|
+
allowedGroups?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
12776
|
+
displayName: Scalars['String']['input'];
|
|
12777
|
+
isHidden: Scalars['Boolean']['input'];
|
|
12778
|
+
url: Scalars['String']['input'];
|
|
12779
|
+
};
|
|
12780
|
+
export declare type ConfluenceAddCustomApplicationLinkPayload = Payload & {
|
|
12781
|
+
__typename?: 'ConfluenceAddCustomApplicationLinkPayload';
|
|
12782
|
+
applicationLink?: Maybe<ConfluenceCustomApplicationLink>;
|
|
12783
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12784
|
+
success: Scalars['Boolean']['output'];
|
|
12785
|
+
};
|
|
12454
12786
|
export declare type ConfluenceAdminAnnouncementBanner = {
|
|
12455
12787
|
__typename?: 'ConfluenceAdminAnnouncementBanner';
|
|
12456
12788
|
appearance: Scalars['String']['output'];
|
|
@@ -12515,12 +12847,32 @@ export declare type ConfluenceAncestor = ConfluenceDatabase | ConfluenceEmbed |
|
|
|
12515
12847
|
export declare type ConfluenceAppInstallationLicense = {
|
|
12516
12848
|
__typename?: 'ConfluenceAppInstallationLicense';
|
|
12517
12849
|
active: Scalars['Boolean']['output'];
|
|
12850
|
+
billingPeriod?: Maybe<Scalars['String']['output']>;
|
|
12518
12851
|
capabilitySet?: Maybe<ConfluenceAppInstallationLicenseCapabilitySet>;
|
|
12852
|
+
ccpEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
12853
|
+
ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
|
|
12854
|
+
isEvaluation?: Maybe<Scalars['Boolean']['output']>;
|
|
12855
|
+
subscriptionEndDate?: Maybe<Scalars['String']['output']>;
|
|
12856
|
+
trialEndDate?: Maybe<Scalars['String']['output']>;
|
|
12857
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
12519
12858
|
};
|
|
12520
12859
|
export declare enum ConfluenceAppInstallationLicenseCapabilitySet {
|
|
12521
12860
|
CapabilityAdvanced = "CAPABILITY_ADVANCED",
|
|
12522
12861
|
CapabilityStandard = "CAPABILITY_STANDARD"
|
|
12523
12862
|
}
|
|
12863
|
+
export declare type ConfluenceAppLinkMapping = {
|
|
12864
|
+
newAppLink: ConfluenceAppLinkMetadataInput;
|
|
12865
|
+
oldAppLink: ConfluenceAppLinkMetadataInput;
|
|
12866
|
+
};
|
|
12867
|
+
export declare type ConfluenceAppLinkMetaData = {
|
|
12868
|
+
__typename?: 'ConfluenceAppLinkMetaData';
|
|
12869
|
+
serverId: Scalars['ID']['output'];
|
|
12870
|
+
serverName: Scalars['String']['output'];
|
|
12871
|
+
};
|
|
12872
|
+
export declare type ConfluenceAppLinkMetadataInput = {
|
|
12873
|
+
serverId: Scalars['ID']['input'];
|
|
12874
|
+
serverName: Scalars['String']['input'];
|
|
12875
|
+
};
|
|
12524
12876
|
export declare type ConfluenceApplicationLink = {
|
|
12525
12877
|
__typename?: 'ConfluenceApplicationLink';
|
|
12526
12878
|
applicationId: Scalars['String']['output'];
|
|
@@ -12532,6 +12884,17 @@ export declare type ConfluenceApplicationLink = {
|
|
|
12532
12884
|
rpcUrl?: Maybe<Scalars['String']['output']>;
|
|
12533
12885
|
typeId: Scalars['String']['output'];
|
|
12534
12886
|
};
|
|
12887
|
+
export declare enum ConfluenceAttachmentSecurityLevel {
|
|
12888
|
+
Insecure = "INSECURE",
|
|
12889
|
+
Secure = "SECURE",
|
|
12890
|
+
Smart = "SMART"
|
|
12891
|
+
}
|
|
12892
|
+
export declare type ConfluenceAttachmentSettings = {
|
|
12893
|
+
__typename?: 'ConfluenceAttachmentSettings';
|
|
12894
|
+
attachmentSecurityLevel?: Maybe<ConfluenceAttachmentSecurityLevel>;
|
|
12895
|
+
maxAttachmentSize?: Maybe<Scalars['Long']['output']>;
|
|
12896
|
+
maxAttachmentsPerUpload?: Maybe<Scalars['Int']['output']>;
|
|
12897
|
+
};
|
|
12535
12898
|
export declare type ConfluenceBlockedAccessAssignableSpaceRole = {
|
|
12536
12899
|
__typename?: 'ConfluenceBlockedAccessAssignableSpaceRole';
|
|
12537
12900
|
roleDescription: Scalars['String']['output'];
|
|
@@ -12673,6 +13036,16 @@ export declare type ConfluenceCalendarTimezones = {
|
|
|
12673
13036
|
__typename?: 'ConfluenceCalendarTimezones';
|
|
12674
13037
|
timezones?: Maybe<Array<Maybe<ConfluenceCalendarTimeZone>>>;
|
|
12675
13038
|
};
|
|
13039
|
+
export declare type ConfluenceChangeOrderOfCustomApplicationLinkInput = {
|
|
13040
|
+
id: Scalars['ID']['input'];
|
|
13041
|
+
idAfter?: InputMaybe<Scalars['ID']['input']>;
|
|
13042
|
+
isMoveToBeginning?: InputMaybe<Scalars['Boolean']['input']>;
|
|
13043
|
+
};
|
|
13044
|
+
export declare type ConfluenceChangeOrderOfCustomApplicationLinkPayload = Payload & {
|
|
13045
|
+
__typename?: 'ConfluenceChangeOrderOfCustomApplicationLinkPayload';
|
|
13046
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13047
|
+
success: Scalars['Boolean']['output'];
|
|
13048
|
+
};
|
|
12676
13049
|
export declare type ConfluenceChildContent = {
|
|
12677
13050
|
__typename?: 'ConfluenceChildContent';
|
|
12678
13051
|
attachment: PaginatedContentList;
|
|
@@ -12903,6 +13276,12 @@ export declare enum ConfluenceContentStatus {
|
|
|
12903
13276
|
Historical = "HISTORICAL",
|
|
12904
13277
|
Trashed = "TRASHED"
|
|
12905
13278
|
}
|
|
13279
|
+
export declare type ConfluenceContentTemplateRef = {
|
|
13280
|
+
__typename?: 'ConfluenceContentTemplateRef';
|
|
13281
|
+
id: Scalars['ID']['output'];
|
|
13282
|
+
moduleCompleteKey?: Maybe<Scalars['String']['output']>;
|
|
13283
|
+
templateId?: Maybe<Scalars['ID']['output']>;
|
|
13284
|
+
};
|
|
12906
13285
|
export declare type ConfluenceContentTitleEmoji = {
|
|
12907
13286
|
__typename?: 'ConfluenceContentTitleEmoji';
|
|
12908
13287
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -12950,6 +13329,20 @@ export declare type ConfluenceConvertContentToFolderPayload = {
|
|
|
12950
13329
|
__typename?: 'ConfluenceConvertContentToFolderPayload';
|
|
12951
13330
|
content?: Maybe<Content>;
|
|
12952
13331
|
};
|
|
13332
|
+
export declare type ConfluenceConvertNoteInput = {
|
|
13333
|
+
containerId?: InputMaybe<Scalars['ID']['input']>;
|
|
13334
|
+
contentType: NotesContentType;
|
|
13335
|
+
id: Scalars['ID']['input'];
|
|
13336
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
13337
|
+
product: NotesProduct;
|
|
13338
|
+
};
|
|
13339
|
+
export declare type ConfluenceConvertNotePayload = {
|
|
13340
|
+
__typename?: 'ConfluenceConvertNotePayload';
|
|
13341
|
+
errors?: Maybe<Array<NoteMutationError>>;
|
|
13342
|
+
id: Scalars['ID']['output'];
|
|
13343
|
+
success: Scalars['Boolean']['output'];
|
|
13344
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
13345
|
+
};
|
|
12953
13346
|
export declare type ConfluenceCopyPageTaskResult = {
|
|
12954
13347
|
__typename?: 'ConfluenceCopyPageTaskResult';
|
|
12955
13348
|
page?: Maybe<ConfluencePage>;
|
|
@@ -13116,6 +13509,28 @@ export declare type ConfluenceCurrentContentNativeProperties = {
|
|
|
13116
13509
|
__typename?: 'ConfluenceCurrentContentNativeProperties';
|
|
13117
13510
|
contentState?: Maybe<ConfluenceContentState>;
|
|
13118
13511
|
};
|
|
13512
|
+
export declare type ConfluenceCustomApplicationLink = {
|
|
13513
|
+
__typename?: 'ConfluenceCustomApplicationLink';
|
|
13514
|
+
allowedGroups?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
13515
|
+
applicationType?: Maybe<Scalars['String']['output']>;
|
|
13516
|
+
displayName: Scalars['String']['output'];
|
|
13517
|
+
id: Scalars['ID']['output'];
|
|
13518
|
+
isEditable: Scalars['Boolean']['output'];
|
|
13519
|
+
isHidden: Scalars['Boolean']['output'];
|
|
13520
|
+
sourceApplicationName?: Maybe<Scalars['String']['output']>;
|
|
13521
|
+
sourceApplicationUrl?: Maybe<Scalars['String']['output']>;
|
|
13522
|
+
url: Scalars['String']['output'];
|
|
13523
|
+
};
|
|
13524
|
+
export declare type ConfluenceCustomPageSettings = {
|
|
13525
|
+
__typename?: 'ConfluenceCustomPageSettings';
|
|
13526
|
+
footerText?: Maybe<Scalars['String']['output']>;
|
|
13527
|
+
headerText?: Maybe<Scalars['String']['output']>;
|
|
13528
|
+
};
|
|
13529
|
+
export declare type ConfluenceCustomPageSpaceSettings = {
|
|
13530
|
+
__typename?: 'ConfluenceCustomPageSpaceSettings';
|
|
13531
|
+
footerText?: Maybe<Scalars['String']['output']>;
|
|
13532
|
+
headerText?: Maybe<Scalars['String']['output']>;
|
|
13533
|
+
};
|
|
13119
13534
|
export declare type ConfluenceDataLifecycleManagementPolicy = {
|
|
13120
13535
|
__typename?: 'ConfluenceDataLifecycleManagementPolicy';
|
|
13121
13536
|
dataRetentionPolicyDetailsForWorkspace: ConfluenceDataRetentionPolicyStatus;
|
|
@@ -13151,6 +13566,13 @@ export declare type ConfluenceDate = {
|
|
|
13151
13566
|
__typename?: 'ConfluenceDate';
|
|
13152
13567
|
value: Scalars['String']['output'];
|
|
13153
13568
|
};
|
|
13569
|
+
export declare type ConfluenceDefaultSpaceLogo = {
|
|
13570
|
+
__typename?: 'ConfluenceDefaultSpaceLogo';
|
|
13571
|
+
clientId?: Maybe<Scalars['ID']['output']>;
|
|
13572
|
+
isLogoDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
13573
|
+
mediaFileId?: Maybe<Scalars['ID']['output']>;
|
|
13574
|
+
token?: Maybe<Scalars['String']['output']>;
|
|
13575
|
+
};
|
|
13154
13576
|
export declare type ConfluenceDeleteBlogPostPropertyInput = {
|
|
13155
13577
|
blogPostId: Scalars['ID']['input'];
|
|
13156
13578
|
key: Scalars['String']['input'];
|
|
@@ -13177,6 +13599,14 @@ export declare type ConfluenceDeleteCommentPayload = {
|
|
|
13177
13599
|
errors?: Maybe<Array<MutationError>>;
|
|
13178
13600
|
success: Scalars['Boolean']['output'];
|
|
13179
13601
|
};
|
|
13602
|
+
export declare type ConfluenceDeleteCustomApplicationLinkInput = {
|
|
13603
|
+
id: Scalars['ID']['input'];
|
|
13604
|
+
};
|
|
13605
|
+
export declare type ConfluenceDeleteCustomApplicationLinkPayload = Payload & {
|
|
13606
|
+
__typename?: 'ConfluenceDeleteCustomApplicationLinkPayload';
|
|
13607
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13608
|
+
success: Scalars['Boolean']['output'];
|
|
13609
|
+
};
|
|
13180
13610
|
export declare type ConfluenceDeleteCustomRoleInput = {
|
|
13181
13611
|
anonymousRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
13182
13612
|
guestRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -13205,6 +13635,14 @@ export declare type ConfluenceDeleteDraftPagePayload = Payload & {
|
|
|
13205
13635
|
errors?: Maybe<Array<MutationError>>;
|
|
13206
13636
|
success: Scalars['Boolean']['output'];
|
|
13207
13637
|
};
|
|
13638
|
+
export declare type ConfluenceDeleteGlobalPageTemplateInput = {
|
|
13639
|
+
id: Scalars['ID']['input'];
|
|
13640
|
+
};
|
|
13641
|
+
export declare type ConfluenceDeleteGlobalPageTemplatePayload = Payload & {
|
|
13642
|
+
__typename?: 'ConfluenceDeleteGlobalPageTemplatePayload';
|
|
13643
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13644
|
+
success: Scalars['Boolean']['output'];
|
|
13645
|
+
};
|
|
13208
13646
|
export declare type ConfluenceDeletePagePropertyInput = {
|
|
13209
13647
|
key: Scalars['String']['input'];
|
|
13210
13648
|
pageId: Scalars['ID']['input'];
|
|
@@ -13214,6 +13652,10 @@ export declare type ConfluenceDeletePagePropertyPayload = Payload & {
|
|
|
13214
13652
|
errors?: Maybe<Array<MutationError>>;
|
|
13215
13653
|
success: Scalars['Boolean']['output'];
|
|
13216
13654
|
};
|
|
13655
|
+
export declare type ConfluenceDeleteSpacePageTemplateInput = {
|
|
13656
|
+
id: Scalars['ID']['input'];
|
|
13657
|
+
spaceId: Scalars['Long']['input'];
|
|
13658
|
+
};
|
|
13217
13659
|
export declare type ConfluenceDeleteSubCalendarAllFutureEventsInput = {
|
|
13218
13660
|
recurUntil?: InputMaybe<Scalars['String']['input']>;
|
|
13219
13661
|
subCalendarId: Scalars['ID']['input'];
|
|
@@ -13289,6 +13731,12 @@ export declare type ConfluenceEditorSettings = {
|
|
|
13289
13731
|
export declare type ConfluenceEditorSettingsInput = {
|
|
13290
13732
|
toolbarDockingInitialPosition?: InputMaybe<Scalars['String']['input']>;
|
|
13291
13733
|
};
|
|
13734
|
+
export declare type ConfluenceEmailSettings = {
|
|
13735
|
+
__typename?: 'ConfluenceEmailSettings';
|
|
13736
|
+
customDomainEmails?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
13737
|
+
defaultEmail?: Maybe<Scalars['String']['output']>;
|
|
13738
|
+
email?: Maybe<SiteEmailAddress>;
|
|
13739
|
+
};
|
|
13292
13740
|
export declare type ConfluenceEmbed = Node & {
|
|
13293
13741
|
__typename?: 'ConfluenceEmbed';
|
|
13294
13742
|
allAncestors?: Maybe<Array<Maybe<ConfluenceAncestor>>>;
|
|
@@ -13316,6 +13764,23 @@ export declare type ConfluenceEmbedUpdated = {
|
|
|
13316
13764
|
isBlankStateUpdate?: Maybe<Scalars['Boolean']['output']>;
|
|
13317
13765
|
product?: Maybe<Scalars['String']['output']>;
|
|
13318
13766
|
};
|
|
13767
|
+
export declare type ConfluenceEnableBlueprintInput = {
|
|
13768
|
+
id: Scalars['ID']['input'];
|
|
13769
|
+
spaceId: Scalars['Long']['input'];
|
|
13770
|
+
};
|
|
13771
|
+
export declare type ConfluenceEnableBlueprintPayload = Payload & {
|
|
13772
|
+
__typename?: 'ConfluenceEnableBlueprintPayload';
|
|
13773
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13774
|
+
success: Scalars['Boolean']['output'];
|
|
13775
|
+
};
|
|
13776
|
+
export declare type ConfluenceEnableGlobalPageBlueprintInput = {
|
|
13777
|
+
id: Scalars['ID']['input'];
|
|
13778
|
+
};
|
|
13779
|
+
export declare type ConfluenceEnableGlobalPageBlueprintPayload = Payload & {
|
|
13780
|
+
__typename?: 'ConfluenceEnableGlobalPageBlueprintPayload';
|
|
13781
|
+
errors?: Maybe<Array<MutationError>>;
|
|
13782
|
+
success: Scalars['Boolean']['output'];
|
|
13783
|
+
};
|
|
13319
13784
|
export declare type ConfluenceExpandTypeFromJira = {
|
|
13320
13785
|
__typename?: 'ConfluenceExpandTypeFromJira';
|
|
13321
13786
|
confluenceExpandTypeFromJira?: Maybe<Scalars['String']['output']>;
|
|
@@ -13365,6 +13830,7 @@ export declare type ConfluenceExtensionPrincipal = {
|
|
|
13365
13830
|
id?: Maybe<Scalars['ID']['output']>;
|
|
13366
13831
|
};
|
|
13367
13832
|
export declare type ConfluenceExtensionRenderingContextInput = {
|
|
13833
|
+
contentId?: InputMaybe<Scalars['Long']['input']>;
|
|
13368
13834
|
spaceId?: InputMaybe<Scalars['Long']['input']>;
|
|
13369
13835
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
13370
13836
|
};
|
|
@@ -13453,10 +13919,12 @@ export declare type ConfluenceForgeExtension = {
|
|
|
13453
13919
|
appId: Scalars['ID']['output'];
|
|
13454
13920
|
appOwner?: Maybe<Scalars['String']['output']>;
|
|
13455
13921
|
appVersion?: Maybe<Scalars['String']['output']>;
|
|
13922
|
+
confluenceUserAccess?: Maybe<ConfluenceUserAccess>;
|
|
13456
13923
|
consentUrl?: Maybe<Scalars['String']['output']>;
|
|
13457
13924
|
definitionId: Scalars['ID']['output'];
|
|
13458
13925
|
egress?: Maybe<Array<ConfluenceExtensionEgressDeclaration>>;
|
|
13459
13926
|
environmentId: Scalars['ID']['output'];
|
|
13927
|
+
environmentKey?: Maybe<Scalars['String']['output']>;
|
|
13460
13928
|
environmentType: Scalars['String']['output'];
|
|
13461
13929
|
hiddenBy?: Maybe<ConfluenceExtensionVisibilityControlMechanism>;
|
|
13462
13930
|
id: Scalars['ID']['output'];
|
|
@@ -13489,10 +13957,49 @@ export declare type ConfluenceForgePayloadContext = {
|
|
|
13489
13957
|
localId?: InputMaybe<Scalars['String']['input']>;
|
|
13490
13958
|
moduleKey?: InputMaybe<Scalars['String']['input']>;
|
|
13491
13959
|
};
|
|
13960
|
+
export declare type ConfluenceFormattingSettings = {
|
|
13961
|
+
__typename?: 'ConfluenceFormattingSettings';
|
|
13962
|
+
dateFormat?: Maybe<Scalars['String']['output']>;
|
|
13963
|
+
dateTimeFormat?: Maybe<Scalars['String']['output']>;
|
|
13964
|
+
decimalNumberFormat?: Maybe<Scalars['String']['output']>;
|
|
13965
|
+
longNumberFormat?: Maybe<Scalars['String']['output']>;
|
|
13966
|
+
timeFormat?: Maybe<Scalars['String']['output']>;
|
|
13967
|
+
};
|
|
13492
13968
|
export declare type ConfluenceGeneratedSpaceKey = {
|
|
13493
13969
|
__typename?: 'ConfluenceGeneratedSpaceKey';
|
|
13494
13970
|
key?: Maybe<Scalars['String']['output']>;
|
|
13495
13971
|
};
|
|
13972
|
+
export declare type ConfluenceGlobalBlueprint = {
|
|
13973
|
+
__typename?: 'ConfluenceGlobalBlueprint';
|
|
13974
|
+
contentTemplateRefs?: Maybe<Array<Maybe<ConfluenceContentTemplateRef>>>;
|
|
13975
|
+
id: Scalars['ID']['output'];
|
|
13976
|
+
indexKey?: Maybe<Scalars['String']['output']>;
|
|
13977
|
+
indexPageTemplateRef?: Maybe<ConfluenceContentTemplateRef>;
|
|
13978
|
+
isEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
13979
|
+
isIndexDisabled?: Maybe<Scalars['Boolean']['output']>;
|
|
13980
|
+
isPromoted?: Maybe<Scalars['Boolean']['output']>;
|
|
13981
|
+
moduleCompleteKey?: Maybe<Scalars['String']['output']>;
|
|
13982
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
13983
|
+
spaceKey?: Maybe<Scalars['String']['output']>;
|
|
13984
|
+
};
|
|
13985
|
+
export declare type ConfluenceGlobalBlueprintSettings = {
|
|
13986
|
+
__typename?: 'ConfluenceGlobalBlueprintSettings';
|
|
13987
|
+
globalBlueprints?: Maybe<Array<Maybe<ConfluenceGlobalBlueprint>>>;
|
|
13988
|
+
isOnDemand?: Maybe<Scalars['Boolean']['output']>;
|
|
13989
|
+
isToggleModulesPermitted?: Maybe<Scalars['Boolean']['output']>;
|
|
13990
|
+
};
|
|
13991
|
+
export declare type ConfluenceGlobalPageTemplate = {
|
|
13992
|
+
__typename?: 'ConfluenceGlobalPageTemplate';
|
|
13993
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
13994
|
+
eligibilityStatus?: Maybe<Scalars['String']['output']>;
|
|
13995
|
+
id: Scalars['ID']['output'];
|
|
13996
|
+
isPromoted?: Maybe<Scalars['Boolean']['output']>;
|
|
13997
|
+
isSpaceAdministrator?: Maybe<Scalars['Boolean']['output']>;
|
|
13998
|
+
isSpaceCreator?: Maybe<Scalars['Boolean']['output']>;
|
|
13999
|
+
lastUpdatedDate?: Maybe<Scalars['String']['output']>;
|
|
14000
|
+
lastUpdater?: Maybe<ConfluenceUser>;
|
|
14001
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14002
|
+
};
|
|
13496
14003
|
export declare enum ConfluenceGraphQlDefaultTitleEmoji {
|
|
13497
14004
|
LivePageDefault = "LIVE_PAGE_DEFAULT",
|
|
13498
14005
|
None = "NONE"
|
|
@@ -13508,6 +14015,23 @@ export declare enum ConfluenceGroupUsageType {
|
|
|
13508
14015
|
TeamCollaboration = "TEAM_COLLABORATION",
|
|
13509
14016
|
UserbaseGroup = "USERBASE_GROUP"
|
|
13510
14017
|
}
|
|
14018
|
+
export declare type ConfluenceImportSpaceConfiguration = {
|
|
14019
|
+
__typename?: 'ConfluenceImportSpaceConfiguration';
|
|
14020
|
+
clientId?: Maybe<Scalars['ID']['output']>;
|
|
14021
|
+
isJiraProjectEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
14022
|
+
jiraProjectLinks?: Maybe<Array<Maybe<ConfluenceJiraProjectLink>>>;
|
|
14023
|
+
mediaToken?: Maybe<MediaToken>;
|
|
14024
|
+
};
|
|
14025
|
+
export declare type ConfluenceImportSpaceInput = {
|
|
14026
|
+
jiraProjectKey?: InputMaybe<Scalars['String']['input']>;
|
|
14027
|
+
mediaFileId: Scalars['ID']['input'];
|
|
14028
|
+
};
|
|
14029
|
+
export declare type ConfluenceImportSpacePayload = Payload & {
|
|
14030
|
+
__typename?: 'ConfluenceImportSpacePayload';
|
|
14031
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14032
|
+
success: Scalars['Boolean']['output'];
|
|
14033
|
+
taskId?: Maybe<Scalars['ID']['output']>;
|
|
14034
|
+
};
|
|
13511
14035
|
export declare type ConfluenceInlineComment = ConfluenceComment & Node & {
|
|
13512
14036
|
__typename?: 'ConfluenceInlineComment';
|
|
13513
14037
|
author?: Maybe<ConfluenceUserInfo>;
|
|
@@ -13629,6 +14153,31 @@ export declare type ConfluenceInviteUserPayload = {
|
|
|
13629
14153
|
errors?: Maybe<Array<MutationError>>;
|
|
13630
14154
|
success: Scalars['Boolean']['output'];
|
|
13631
14155
|
};
|
|
14156
|
+
export declare type ConfluenceJiraMacroAppLinksScanningStatus = {
|
|
14157
|
+
__typename?: 'ConfluenceJiraMacroAppLinksScanningStatus';
|
|
14158
|
+
additionalMessage?: Maybe<Scalars['String']['output']>;
|
|
14159
|
+
problems?: Maybe<ConfluenceJiraMacroAppLinksValidatorResult>;
|
|
14160
|
+
status: ConfluenceJiraMacroAppLinksValidationStatus;
|
|
14161
|
+
};
|
|
14162
|
+
export declare enum ConfluenceJiraMacroAppLinksValidationStatus {
|
|
14163
|
+
Done = "DONE",
|
|
14164
|
+
Error = "ERROR",
|
|
14165
|
+
Fixing = "FIXING",
|
|
14166
|
+
NotStarted = "NOT_STARTED",
|
|
14167
|
+
NoApplink = "NO_APPLINK",
|
|
14168
|
+
Scanning = "SCANNING",
|
|
14169
|
+
WaitForConfig = "WAIT_FOR_CONFIG"
|
|
14170
|
+
}
|
|
14171
|
+
export declare type ConfluenceJiraMacroAppLinksValidatorResult = {
|
|
14172
|
+
__typename?: 'ConfluenceJiraMacroAppLinksValidatorResult';
|
|
14173
|
+
brokenAppLinks?: Maybe<Array<Maybe<ConfluenceAppLinkMetaData>>>;
|
|
14174
|
+
existingAppLinks?: Maybe<Array<Maybe<ConfluenceAppLinkMetaData>>>;
|
|
14175
|
+
};
|
|
14176
|
+
export declare type ConfluenceJiraProjectLink = {
|
|
14177
|
+
__typename?: 'ConfluenceJiraProjectLink';
|
|
14178
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
14179
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
14180
|
+
};
|
|
13632
14181
|
export declare type ConfluenceLabel = {
|
|
13633
14182
|
__typename?: 'ConfluenceLabel';
|
|
13634
14183
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -13649,6 +14198,15 @@ export declare type ConfluenceLabelWatchStatus = {
|
|
|
13649
14198
|
__typename?: 'ConfluenceLabelWatchStatus';
|
|
13650
14199
|
isWatching: Scalars['Boolean']['output'];
|
|
13651
14200
|
};
|
|
14201
|
+
export declare type ConfluenceLanguage = {
|
|
14202
|
+
__typename?: 'ConfluenceLanguage';
|
|
14203
|
+
country?: Maybe<Scalars['String']['output']>;
|
|
14204
|
+
displayLanguage?: Maybe<Scalars['String']['output']>;
|
|
14205
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
14206
|
+
encoding?: Maybe<Scalars['String']['output']>;
|
|
14207
|
+
language?: Maybe<Scalars['String']['output']>;
|
|
14208
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
14209
|
+
};
|
|
13652
14210
|
export declare type ConfluenceLike = {
|
|
13653
14211
|
__typename?: 'ConfluenceLike';
|
|
13654
14212
|
likedAt?: Maybe<Scalars['String']['output']>;
|
|
@@ -13659,6 +14217,11 @@ export declare type ConfluenceLikesSummary = {
|
|
|
13659
14217
|
count?: Maybe<Scalars['Int']['output']>;
|
|
13660
14218
|
likes?: Maybe<Array<Maybe<ConfluenceLike>>>;
|
|
13661
14219
|
};
|
|
14220
|
+
export declare type ConfluenceLoginSettings = {
|
|
14221
|
+
__typename?: 'ConfluenceLoginSettings';
|
|
14222
|
+
enableElevatedSecurityCheck?: Maybe<Scalars['Boolean']['output']>;
|
|
14223
|
+
loginAttemptsThreshold?: Maybe<Scalars['Int']['output']>;
|
|
14224
|
+
};
|
|
13662
14225
|
export declare type ConfluenceLongTask = {
|
|
13663
14226
|
__typename?: 'ConfluenceLongTask';
|
|
13664
14227
|
id: Scalars['ID']['output'];
|
|
@@ -13692,6 +14255,16 @@ export declare type ConfluenceLoomEntryPoints = {
|
|
|
13692
14255
|
__typename?: 'ConfluenceLoomEntryPoints';
|
|
13693
14256
|
isLoomEntryPointsEnabled: Scalars['Boolean']['output'];
|
|
13694
14257
|
};
|
|
14258
|
+
export declare type ConfluenceMacro = {
|
|
14259
|
+
__typename?: 'ConfluenceMacro';
|
|
14260
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
14261
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
14262
|
+
};
|
|
14263
|
+
export declare type ConfluenceMacroUsage = {
|
|
14264
|
+
__typename?: 'ConfluenceMacroUsage';
|
|
14265
|
+
unusedPluginMacros?: Maybe<Array<Maybe<ConfluenceUnusedPluginMacro>>>;
|
|
14266
|
+
usedPluginMacros?: Maybe<Array<Maybe<ConfluenceUsedPluginMacro>>>;
|
|
14267
|
+
};
|
|
13695
14268
|
export declare type ConfluenceMakeSubCalendarPrivateUrlInput = {
|
|
13696
14269
|
subCalendarId: Scalars['ID']['input'];
|
|
13697
14270
|
};
|
|
@@ -13720,6 +14293,8 @@ export declare type ConfluenceMarkCommentAsDanglingPayload = Payload & {
|
|
|
13720
14293
|
};
|
|
13721
14294
|
export declare type ConfluenceMutationApi = {
|
|
13722
14295
|
__typename?: 'ConfluenceMutationApi';
|
|
14296
|
+
addCustomApplicationLink?: Maybe<ConfluenceAddCustomApplicationLinkPayload>;
|
|
14297
|
+
changeOrderOfCustomApplicationLink?: Maybe<ConfluenceChangeOrderOfCustomApplicationLinkPayload>;
|
|
13723
14298
|
createBlogPost?: Maybe<ConfluenceCreateBlogPostPayload>;
|
|
13724
14299
|
createBlogPostProperty?: Maybe<ConfluenceCreateBlogPostPropertyPayload>;
|
|
13725
14300
|
createFooterCommentOnBlogPost?: Maybe<ConfluenceCreateFooterCommentOnBlogPostPayload>;
|
|
@@ -13729,28 +14304,53 @@ export declare type ConfluenceMutationApi = {
|
|
|
13729
14304
|
createSpace?: Maybe<ConfluenceCreateSpacePayload>;
|
|
13730
14305
|
deleteBlogPostProperty?: Maybe<ConfluenceDeleteBlogPostPropertyPayload>;
|
|
13731
14306
|
deleteComment?: Maybe<ConfluenceDeleteCommentPayload>;
|
|
14307
|
+
deleteCustomApplicationLink?: Maybe<ConfluenceDeleteCustomApplicationLinkPayload>;
|
|
13732
14308
|
deleteDraftBlogPost?: Maybe<ConfluenceDeleteDraftBlogPostPayload>;
|
|
13733
14309
|
deleteDraftPage?: Maybe<ConfluenceDeleteDraftPagePayload>;
|
|
14310
|
+
deleteGlobalPageTemplate?: Maybe<ConfluenceDeleteGlobalPageTemplatePayload>;
|
|
13734
14311
|
deletePageProperty?: Maybe<ConfluenceDeletePagePropertyPayload>;
|
|
14312
|
+
deleteSpacePageTemplate?: Maybe<ConfluenceDeleteGlobalPageTemplatePayload>;
|
|
14313
|
+
enableBlueprint?: Maybe<ConfluenceEnableBlueprintPayload>;
|
|
14314
|
+
enableGlobalBlueprint?: Maybe<ConfluenceEnableGlobalPageBlueprintPayload>;
|
|
14315
|
+
importSpace?: Maybe<ConfluenceImportSpacePayload>;
|
|
14316
|
+
promoteBlueprint?: Maybe<ConfluencePromoteBlueprintPayload>;
|
|
14317
|
+
promotePageTemplate?: Maybe<ConfluencePromotePageTemplatePayload>;
|
|
13735
14318
|
publishBlogPost?: Maybe<ConfluencePublishBlogPostPayload>;
|
|
13736
14319
|
publishPage?: Maybe<ConfluencePublishPagePayload>;
|
|
13737
14320
|
purgeBlogPost?: Maybe<ConfluencePurgeBlogPostPayload>;
|
|
13738
14321
|
purgePage?: Maybe<ConfluencePurgePagePayload>;
|
|
13739
14322
|
reopenInlineComment?: Maybe<ConfluenceReopenInlineCommentPayload>;
|
|
14323
|
+
repairJiraMacroAppLinks?: Maybe<ConfluenceRepairJiraMacroAppLinksPayload>;
|
|
13740
14324
|
replyToComment?: Maybe<ConfluenceReplyToCommentPayload>;
|
|
14325
|
+
requestSpaceAccess?: Maybe<ConfluenceRequestSpaceAccessPayload>;
|
|
13741
14326
|
resolveInlineComment?: Maybe<ConfluenceResolveInlineCommentPayload>;
|
|
14327
|
+
saveOrUpdateSpaceOwner?: Maybe<ConfluenceSaveOrUpdateSpaceOwnerPayload>;
|
|
13742
14328
|
trashBlogPost?: Maybe<ConfluenceTrashBlogPostPayload>;
|
|
13743
14329
|
trashPage?: Maybe<ConfluenceTrashPagePayload>;
|
|
14330
|
+
unpromoteBlueprint?: Maybe<ConfluenceUnpromoteBlueprintPayload>;
|
|
14331
|
+
unpromotePageTemplate?: Maybe<ConfluenceUnpromotePageTemplatePayload>;
|
|
13744
14332
|
updateComment?: Maybe<ConfluenceUpdateCommentPayload>;
|
|
13745
14333
|
updateCurrentBlogPost?: Maybe<ConfluenceUpdateCurrentBlogPostPayload>;
|
|
13746
14334
|
updateCurrentPage?: Maybe<ConfluenceUpdateCurrentPagePayload>;
|
|
14335
|
+
updateCustomApplicationLink?: Maybe<ConfluenceUpdateCustomApplicationLinkPayload>;
|
|
13747
14336
|
updateDraftBlogPost?: Maybe<ConfluenceUpdateDraftBlogPostPayload>;
|
|
13748
14337
|
updateDraftPage?: Maybe<ConfluenceUpdateDraftPagePayload>;
|
|
14338
|
+
updateGlobalDefaultLanguageConfiguration?: Maybe<ConfluenceUpdateGlobalDefaultLocaleConfigurationPayload>;
|
|
14339
|
+
updateGlobalPageTemplateDescription?: Maybe<ConfluenceUpdateGlobalPageTemplateDescriptionPayload>;
|
|
14340
|
+
updateIndexingLanguageConfiguration?: Maybe<ConfluenceUpdateIndexingLanguageConfigurationPayload>;
|
|
14341
|
+
updateSiteConfiguration?: Maybe<ConfluenceUpdateSiteConfigurationPayload>;
|
|
13749
14342
|
updateSpace?: Maybe<ConfluenceUpdateSpacePayload>;
|
|
14343
|
+
updateSpacePageTemplateDescription?: Maybe<ConfluenceUpdateGlobalPageTemplateDescriptionPayload>;
|
|
13750
14344
|
updateSpaceSettings?: Maybe<ConfluenceUpdateSpaceSettingsPayload>;
|
|
13751
14345
|
updateValueBlogPostProperty?: Maybe<ConfluenceUpdateValueBlogPostPropertyPayload>;
|
|
13752
14346
|
updateValuePageProperty?: Maybe<ConfluenceUpdateValuePagePropertyPayload>;
|
|
13753
14347
|
};
|
|
14348
|
+
export declare type ConfluenceMutationApiAddCustomApplicationLinkArgs = {
|
|
14349
|
+
input: ConfluenceAddCustomApplicationLinkInput;
|
|
14350
|
+
};
|
|
14351
|
+
export declare type ConfluenceMutationApiChangeOrderOfCustomApplicationLinkArgs = {
|
|
14352
|
+
input: ConfluenceChangeOrderOfCustomApplicationLinkInput;
|
|
14353
|
+
};
|
|
13754
14354
|
export declare type ConfluenceMutationApiCreateBlogPostArgs = {
|
|
13755
14355
|
input: ConfluenceCreateBlogPostInput;
|
|
13756
14356
|
};
|
|
@@ -13779,15 +14379,39 @@ export declare type ConfluenceMutationApiDeleteBlogPostPropertyArgs = {
|
|
|
13779
14379
|
export declare type ConfluenceMutationApiDeleteCommentArgs = {
|
|
13780
14380
|
input: ConfluenceDeleteCommentInput;
|
|
13781
14381
|
};
|
|
14382
|
+
export declare type ConfluenceMutationApiDeleteCustomApplicationLinkArgs = {
|
|
14383
|
+
input: ConfluenceDeleteCustomApplicationLinkInput;
|
|
14384
|
+
};
|
|
13782
14385
|
export declare type ConfluenceMutationApiDeleteDraftBlogPostArgs = {
|
|
13783
14386
|
input: ConfluenceDeleteDraftBlogPostInput;
|
|
13784
14387
|
};
|
|
13785
14388
|
export declare type ConfluenceMutationApiDeleteDraftPageArgs = {
|
|
13786
14389
|
input: ConfluenceDeleteDraftPageInput;
|
|
13787
14390
|
};
|
|
14391
|
+
export declare type ConfluenceMutationApiDeleteGlobalPageTemplateArgs = {
|
|
14392
|
+
input: ConfluenceDeleteGlobalPageTemplateInput;
|
|
14393
|
+
};
|
|
13788
14394
|
export declare type ConfluenceMutationApiDeletePagePropertyArgs = {
|
|
13789
14395
|
input: ConfluenceDeletePagePropertyInput;
|
|
13790
14396
|
};
|
|
14397
|
+
export declare type ConfluenceMutationApiDeleteSpacePageTemplateArgs = {
|
|
14398
|
+
input: ConfluenceDeleteSpacePageTemplateInput;
|
|
14399
|
+
};
|
|
14400
|
+
export declare type ConfluenceMutationApiEnableBlueprintArgs = {
|
|
14401
|
+
input: ConfluenceEnableBlueprintInput;
|
|
14402
|
+
};
|
|
14403
|
+
export declare type ConfluenceMutationApiEnableGlobalBlueprintArgs = {
|
|
14404
|
+
input: ConfluenceEnableGlobalPageBlueprintInput;
|
|
14405
|
+
};
|
|
14406
|
+
export declare type ConfluenceMutationApiImportSpaceArgs = {
|
|
14407
|
+
input: ConfluenceImportSpaceInput;
|
|
14408
|
+
};
|
|
14409
|
+
export declare type ConfluenceMutationApiPromoteBlueprintArgs = {
|
|
14410
|
+
input: ConfluencePromoteBlueprintInput;
|
|
14411
|
+
};
|
|
14412
|
+
export declare type ConfluenceMutationApiPromotePageTemplateArgs = {
|
|
14413
|
+
input: ConfluencePromotePageTemplateInput;
|
|
14414
|
+
};
|
|
13791
14415
|
export declare type ConfluenceMutationApiPublishBlogPostArgs = {
|
|
13792
14416
|
input: ConfluencePublishBlogPostInput;
|
|
13793
14417
|
};
|
|
@@ -13803,18 +14427,33 @@ export declare type ConfluenceMutationApiPurgePageArgs = {
|
|
|
13803
14427
|
export declare type ConfluenceMutationApiReopenInlineCommentArgs = {
|
|
13804
14428
|
input: ConfluenceReopenInlineCommentInput;
|
|
13805
14429
|
};
|
|
14430
|
+
export declare type ConfluenceMutationApiRepairJiraMacroAppLinksArgs = {
|
|
14431
|
+
input: ConfluenceRepairJiraMacroAppLinksInput;
|
|
14432
|
+
};
|
|
13806
14433
|
export declare type ConfluenceMutationApiReplyToCommentArgs = {
|
|
13807
14434
|
input: ConfluenceReplyToCommentInput;
|
|
13808
14435
|
};
|
|
14436
|
+
export declare type ConfluenceMutationApiRequestSpaceAccessArgs = {
|
|
14437
|
+
confluenceRequestSpaceAccessInput: ConfluenceRequestSpaceAccessInput;
|
|
14438
|
+
};
|
|
13809
14439
|
export declare type ConfluenceMutationApiResolveInlineCommentArgs = {
|
|
13810
14440
|
input: ConfluenceResolveInlineCommentInput;
|
|
13811
14441
|
};
|
|
14442
|
+
export declare type ConfluenceMutationApiSaveOrUpdateSpaceOwnerArgs = {
|
|
14443
|
+
input: ConfluenceSaveOrUpdateSpaceOwnerInput;
|
|
14444
|
+
};
|
|
13812
14445
|
export declare type ConfluenceMutationApiTrashBlogPostArgs = {
|
|
13813
14446
|
input: ConfluenceTrashBlogPostInput;
|
|
13814
14447
|
};
|
|
13815
14448
|
export declare type ConfluenceMutationApiTrashPageArgs = {
|
|
13816
14449
|
input: ConfluenceTrashPageInput;
|
|
13817
14450
|
};
|
|
14451
|
+
export declare type ConfluenceMutationApiUnpromoteBlueprintArgs = {
|
|
14452
|
+
input: ConfluenceUnpromoteBlueprintInput;
|
|
14453
|
+
};
|
|
14454
|
+
export declare type ConfluenceMutationApiUnpromotePageTemplateArgs = {
|
|
14455
|
+
input: ConfluenceUnpromotePageTemplateInput;
|
|
14456
|
+
};
|
|
13818
14457
|
export declare type ConfluenceMutationApiUpdateCommentArgs = {
|
|
13819
14458
|
input: ConfluenceUpdateCommentInput;
|
|
13820
14459
|
};
|
|
@@ -13824,15 +14463,33 @@ export declare type ConfluenceMutationApiUpdateCurrentBlogPostArgs = {
|
|
|
13824
14463
|
export declare type ConfluenceMutationApiUpdateCurrentPageArgs = {
|
|
13825
14464
|
input: ConfluenceUpdateCurrentPageInput;
|
|
13826
14465
|
};
|
|
14466
|
+
export declare type ConfluenceMutationApiUpdateCustomApplicationLinkArgs = {
|
|
14467
|
+
input: ConfluenceUpdateCustomApplicationLinkInput;
|
|
14468
|
+
};
|
|
13827
14469
|
export declare type ConfluenceMutationApiUpdateDraftBlogPostArgs = {
|
|
13828
14470
|
input: ConfluenceUpdateDraftBlogPostInput;
|
|
13829
14471
|
};
|
|
13830
14472
|
export declare type ConfluenceMutationApiUpdateDraftPageArgs = {
|
|
13831
14473
|
input: ConfluenceUpdateDraftPageInput;
|
|
13832
14474
|
};
|
|
14475
|
+
export declare type ConfluenceMutationApiUpdateGlobalDefaultLanguageConfigurationArgs = {
|
|
14476
|
+
input: ConfluenceUpdateGlobalDefaultLocaleConfigurationInput;
|
|
14477
|
+
};
|
|
14478
|
+
export declare type ConfluenceMutationApiUpdateGlobalPageTemplateDescriptionArgs = {
|
|
14479
|
+
input: ConfluenceUpdateGlobalPageTemplateDescriptionInput;
|
|
14480
|
+
};
|
|
14481
|
+
export declare type ConfluenceMutationApiUpdateIndexingLanguageConfigurationArgs = {
|
|
14482
|
+
input: ConfluenceUpdateIndexingLanguageConfigurationInput;
|
|
14483
|
+
};
|
|
14484
|
+
export declare type ConfluenceMutationApiUpdateSiteConfigurationArgs = {
|
|
14485
|
+
input: ConfluenceUpdateSiteConfigurationInput;
|
|
14486
|
+
};
|
|
13833
14487
|
export declare type ConfluenceMutationApiUpdateSpaceArgs = {
|
|
13834
14488
|
input: ConfluenceUpdateSpaceInput;
|
|
13835
14489
|
};
|
|
14490
|
+
export declare type ConfluenceMutationApiUpdateSpacePageTemplateDescriptionArgs = {
|
|
14491
|
+
input: ConfluenceUpdateSpacePageTemplateDescriptionInput;
|
|
14492
|
+
};
|
|
13836
14493
|
export declare type ConfluenceMutationApiUpdateSpaceSettingsArgs = {
|
|
13837
14494
|
input: ConfluenceUpdateSpaceSettingsInput;
|
|
13838
14495
|
};
|
|
@@ -13846,6 +14503,37 @@ export declare enum ConfluenceMutationContentStatus {
|
|
|
13846
14503
|
Current = "CURRENT",
|
|
13847
14504
|
Draft = "DRAFT"
|
|
13848
14505
|
}
|
|
14506
|
+
export declare type ConfluenceNewCodeMacro = {
|
|
14507
|
+
__typename?: 'ConfluenceNewCodeMacro';
|
|
14508
|
+
languages?: Maybe<Array<Maybe<ConfluenceNewCodeMacroLanguage>>>;
|
|
14509
|
+
selectedLanguage?: Maybe<ConfluenceNewCodeMacroLanguage>;
|
|
14510
|
+
selectedTheme?: Maybe<ConfluenceNewCodeMacroTheme>;
|
|
14511
|
+
themes?: Maybe<Array<Maybe<ConfluenceNewCodeMacroTheme>>>;
|
|
14512
|
+
};
|
|
14513
|
+
export declare type ConfluenceNewCodeMacroLanguage = {
|
|
14514
|
+
__typename?: 'ConfluenceNewCodeMacroLanguage';
|
|
14515
|
+
aliases: Array<Maybe<Scalars['String']['output']>>;
|
|
14516
|
+
builtIn: Scalars['Boolean']['output'];
|
|
14517
|
+
friendlyName: Scalars['String']['output'];
|
|
14518
|
+
name: Scalars['String']['output'];
|
|
14519
|
+
webResource: Scalars['String']['output'];
|
|
14520
|
+
};
|
|
14521
|
+
export declare type ConfluenceNewCodeMacroTheme = {
|
|
14522
|
+
__typename?: 'ConfluenceNewCodeMacroTheme';
|
|
14523
|
+
builtIn: Scalars['Boolean']['output'];
|
|
14524
|
+
defaultLayout: Array<Maybe<MapOfStringToString>>;
|
|
14525
|
+
name: Scalars['String']['output'];
|
|
14526
|
+
styleSheetUrl: Scalars['String']['output'];
|
|
14527
|
+
webResource: Scalars['String']['output'];
|
|
14528
|
+
};
|
|
14529
|
+
export declare enum ConfluenceNotesOrdering {
|
|
14530
|
+
DateLastModifiedAsc = "DATE_LAST_MODIFIED_ASC",
|
|
14531
|
+
DateLastModifiedDesc = "DATE_LAST_MODIFIED_DESC"
|
|
14532
|
+
}
|
|
14533
|
+
export declare type ConfluenceNotificationsSettings = {
|
|
14534
|
+
__typename?: 'ConfluenceNotificationsSettings';
|
|
14535
|
+
emailSettings?: Maybe<ConfluenceEmailSettings>;
|
|
14536
|
+
};
|
|
13849
14537
|
export declare type ConfluenceOperationCheck = {
|
|
13850
14538
|
__typename?: 'ConfluenceOperationCheck';
|
|
13851
14539
|
operation?: Maybe<ConfluenceOperationName>;
|
|
@@ -13978,6 +14666,20 @@ export declare type ConfluencePdfExportDownloadLink = {
|
|
|
13978
14666
|
__typename?: 'ConfluencePdfExportDownloadLink';
|
|
13979
14667
|
link?: Maybe<Scalars['String']['output']>;
|
|
13980
14668
|
};
|
|
14669
|
+
export declare type ConfluencePdfExportSettings = {
|
|
14670
|
+
__typename?: 'ConfluencePdfExportSettings';
|
|
14671
|
+
footer?: Maybe<Scalars['String']['output']>;
|
|
14672
|
+
header?: Maybe<Scalars['String']['output']>;
|
|
14673
|
+
style?: Maybe<Scalars['String']['output']>;
|
|
14674
|
+
titlePage?: Maybe<Scalars['String']['output']>;
|
|
14675
|
+
};
|
|
14676
|
+
export declare type ConfluencePdfExportSpaceSettings = {
|
|
14677
|
+
__typename?: 'ConfluencePdfExportSpaceSettings';
|
|
14678
|
+
footer?: Maybe<Scalars['String']['output']>;
|
|
14679
|
+
header?: Maybe<Scalars['String']['output']>;
|
|
14680
|
+
style?: Maybe<Scalars['String']['output']>;
|
|
14681
|
+
titlePage?: Maybe<Scalars['String']['output']>;
|
|
14682
|
+
};
|
|
13981
14683
|
export declare enum ConfluencePdfExportState {
|
|
13982
14684
|
Done = "DONE",
|
|
13983
14685
|
Failed = "FAILED",
|
|
@@ -14041,6 +14743,24 @@ export declare type ConfluencePrivacyMode = {
|
|
|
14041
14743
|
__typename?: 'ConfluencePrivacyMode';
|
|
14042
14744
|
isPrivacyModeEnabled: Scalars['Boolean']['output'];
|
|
14043
14745
|
};
|
|
14746
|
+
export declare type ConfluencePromoteBlueprintInput = {
|
|
14747
|
+
id: Scalars['ID']['input'];
|
|
14748
|
+
spaceId: Scalars['Long']['input'];
|
|
14749
|
+
};
|
|
14750
|
+
export declare type ConfluencePromoteBlueprintPayload = Payload & {
|
|
14751
|
+
__typename?: 'ConfluencePromoteBlueprintPayload';
|
|
14752
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14753
|
+
success: Scalars['Boolean']['output'];
|
|
14754
|
+
};
|
|
14755
|
+
export declare type ConfluencePromotePageTemplateInput = {
|
|
14756
|
+
id: Scalars['ID']['input'];
|
|
14757
|
+
spaceId: Scalars['Long']['input'];
|
|
14758
|
+
};
|
|
14759
|
+
export declare type ConfluencePromotePageTemplatePayload = Payload & {
|
|
14760
|
+
__typename?: 'ConfluencePromotePageTemplatePayload';
|
|
14761
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14762
|
+
success: Scalars['Boolean']['output'];
|
|
14763
|
+
};
|
|
14044
14764
|
export declare type ConfluencePublishBlogPostInput = {
|
|
14045
14765
|
id: Scalars['ID']['input'];
|
|
14046
14766
|
publishTitle?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -14089,20 +14809,35 @@ export declare type ConfluenceQueryApi = {
|
|
|
14089
14809
|
blogPosts?: Maybe<Array<Maybe<ConfluenceBlogPost>>>;
|
|
14090
14810
|
comment?: Maybe<ConfluenceComment>;
|
|
14091
14811
|
comments?: Maybe<Array<Maybe<ConfluenceComment>>>;
|
|
14812
|
+
customPageSpaceSettings?: Maybe<ConfluenceCustomPageSpaceSettings>;
|
|
14092
14813
|
database?: Maybe<ConfluenceDatabase>;
|
|
14093
14814
|
databases?: Maybe<Array<Maybe<ConfluenceDatabase>>>;
|
|
14815
|
+
defaultSpaceLogo?: Maybe<ConfluenceDefaultSpaceLogo>;
|
|
14094
14816
|
embed?: Maybe<ConfluenceEmbed>;
|
|
14095
14817
|
embeds?: Maybe<Array<Maybe<ConfluenceEmbed>>>;
|
|
14096
14818
|
findSpaces?: Maybe<ConfluenceSpaceConnection>;
|
|
14097
14819
|
folder?: Maybe<ConfluenceFolder>;
|
|
14098
14820
|
folders?: Maybe<Array<Maybe<ConfluenceFolder>>>;
|
|
14821
|
+
globalBlueprintSettings?: Maybe<ConfluenceGlobalBlueprintSettings>;
|
|
14822
|
+
globalSpaceBlueprintSettings?: Maybe<ConfluenceGlobalBlueprintSettings>;
|
|
14823
|
+
importSpaceConfiguration?: Maybe<ConfluenceImportSpaceConfiguration>;
|
|
14099
14824
|
inlineTask?: Maybe<ConfluenceInlineTask>;
|
|
14825
|
+
jiraMacroAppLinksScanningStatus?: Maybe<ConfluenceJiraMacroAppLinksScanningStatus>;
|
|
14100
14826
|
longTask?: Maybe<ConfluenceLongTask>;
|
|
14827
|
+
macroUsage?: Maybe<ConfluenceMacroUsage>;
|
|
14828
|
+
newCodeMacro?: Maybe<ConfluenceNewCodeMacro>;
|
|
14829
|
+
notificationsSettings?: Maybe<ConfluenceNotificationsSettings>;
|
|
14101
14830
|
page?: Maybe<ConfluencePage>;
|
|
14102
14831
|
pages?: Maybe<Array<Maybe<ConfluencePage>>>;
|
|
14832
|
+
pdfExportSpaceSettings?: Maybe<ConfluencePdfExportSpaceSettings>;
|
|
14103
14833
|
searchLabels?: Maybe<ConfluenceLabelSearchResults>;
|
|
14834
|
+
siteConfiguration?: Maybe<ConfluenceSiteConfiguration>;
|
|
14104
14835
|
space?: Maybe<ConfluenceSpace>;
|
|
14105
14836
|
spaces?: Maybe<Array<Maybe<ConfluenceSpace>>>;
|
|
14837
|
+
systemTemplates?: Maybe<Array<Maybe<ConfluenceSystemTemplate>>>;
|
|
14838
|
+
teamCalendar?: Maybe<ConfluenceTeamCalendar>;
|
|
14839
|
+
templates?: Maybe<ConfluenceTemplates>;
|
|
14840
|
+
themes?: Maybe<ConfluenceThemes>;
|
|
14106
14841
|
validateSpaceKey?: Maybe<ConfluenceValidateSpaceKeyResponse>;
|
|
14107
14842
|
whiteboard?: Maybe<ConfluenceWhiteboard>;
|
|
14108
14843
|
whiteboards?: Maybe<Array<Maybe<ConfluenceWhiteboard>>>;
|
|
@@ -14119,6 +14854,9 @@ export declare type ConfluenceQueryApiCommentArgs = {
|
|
|
14119
14854
|
export declare type ConfluenceQueryApiCommentsArgs = {
|
|
14120
14855
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
14121
14856
|
};
|
|
14857
|
+
export declare type ConfluenceQueryApiCustomPageSpaceSettingsArgs = {
|
|
14858
|
+
spaceId: Scalars['Long']['input'];
|
|
14859
|
+
};
|
|
14122
14860
|
export declare type ConfluenceQueryApiDatabaseArgs = {
|
|
14123
14861
|
id: Scalars['ID']['input'];
|
|
14124
14862
|
};
|
|
@@ -14143,6 +14881,9 @@ export declare type ConfluenceQueryApiFolderArgs = {
|
|
|
14143
14881
|
export declare type ConfluenceQueryApiFoldersArgs = {
|
|
14144
14882
|
ids: Array<Scalars['ID']['input']>;
|
|
14145
14883
|
};
|
|
14884
|
+
export declare type ConfluenceQueryApiGlobalSpaceBlueprintSettingsArgs = {
|
|
14885
|
+
spaceId: Scalars['Long']['input'];
|
|
14886
|
+
};
|
|
14146
14887
|
export declare type ConfluenceQueryApiInlineTaskArgs = {
|
|
14147
14888
|
id: Scalars['ID']['input'];
|
|
14148
14889
|
};
|
|
@@ -14155,6 +14896,9 @@ export declare type ConfluenceQueryApiPageArgs = {
|
|
|
14155
14896
|
export declare type ConfluenceQueryApiPagesArgs = {
|
|
14156
14897
|
ids: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
14157
14898
|
};
|
|
14899
|
+
export declare type ConfluenceQueryApiPdfExportSpaceSettingsArgs = {
|
|
14900
|
+
spaceId: Scalars['Long']['input'];
|
|
14901
|
+
};
|
|
14158
14902
|
export declare type ConfluenceQueryApiSearchLabelsArgs = {
|
|
14159
14903
|
cloudId: Scalars['ID']['input'];
|
|
14160
14904
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -14285,6 +15029,14 @@ export declare type ConfluenceReopenInlineCommentPayload = {
|
|
|
14285
15029
|
errors?: Maybe<Array<MutationError>>;
|
|
14286
15030
|
success: Scalars['Boolean']['output'];
|
|
14287
15031
|
};
|
|
15032
|
+
export declare type ConfluenceRepairJiraMacroAppLinksInput = {
|
|
15033
|
+
appLinkMapping: Array<ConfluenceAppLinkMapping>;
|
|
15034
|
+
};
|
|
15035
|
+
export declare type ConfluenceRepairJiraMacroAppLinksPayload = Payload & {
|
|
15036
|
+
__typename?: 'ConfluenceRepairJiraMacroAppLinksPayload';
|
|
15037
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15038
|
+
success: Scalars['Boolean']['output'];
|
|
15039
|
+
};
|
|
14288
15040
|
export declare type ConfluenceReplyToCommentInput = {
|
|
14289
15041
|
body: ConfluenceContentBodyInput;
|
|
14290
15042
|
parentCommentId: Scalars['ID']['input'];
|
|
@@ -14299,6 +15051,15 @@ export declare enum ConfluenceRequestAccessApprovalDecision {
|
|
|
14299
15051
|
Approve = "APPROVE",
|
|
14300
15052
|
Deny = "DENY"
|
|
14301
15053
|
}
|
|
15054
|
+
export declare type ConfluenceRequestSpaceAccessInput = {
|
|
15055
|
+
spaceKey: Scalars['String']['input'];
|
|
15056
|
+
};
|
|
15057
|
+
export declare type ConfluenceRequestSpaceAccessPayload = Payload & {
|
|
15058
|
+
__typename?: 'ConfluenceRequestSpaceAccessPayload';
|
|
15059
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15060
|
+
spaceKey: Scalars['String']['output'];
|
|
15061
|
+
success: Scalars['Boolean']['output'];
|
|
15062
|
+
};
|
|
14302
15063
|
export declare type ConfluenceResolveCommentByContentIdPayload = Payload & {
|
|
14303
15064
|
__typename?: 'ConfluenceResolveCommentByContentIdPayload';
|
|
14304
15065
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -14329,6 +15090,16 @@ export declare enum ConfluenceRoleAssignabilityCode {
|
|
|
14329
15090
|
NoManageNonlicensedUsersPermNotAssignable = "NO_MANAGE_NONLICENSED_USERS_PERM_NOT_ASSIGNABLE",
|
|
14330
15091
|
PrincipalInvalidRole = "PRINCIPAL_INVALID_ROLE"
|
|
14331
15092
|
}
|
|
15093
|
+
export declare type ConfluenceSaveOrUpdateSpaceOwnerInput = {
|
|
15094
|
+
ownerId: Scalars['ID']['input'];
|
|
15095
|
+
spaceId: Scalars['Long']['input'];
|
|
15096
|
+
spaceOwnerType: ConfluenceSpaceOwnerType;
|
|
15097
|
+
};
|
|
15098
|
+
export declare type ConfluenceSaveOrUpdateSpaceOwnerPayload = Payload & {
|
|
15099
|
+
__typename?: 'ConfluenceSaveOrUpdateSpaceOwnerPayload';
|
|
15100
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15101
|
+
success: Scalars['Boolean']['output'];
|
|
15102
|
+
};
|
|
14332
15103
|
export declare type ConfluenceSchedulePublished = {
|
|
14333
15104
|
__typename?: 'ConfluenceSchedulePublished';
|
|
14334
15105
|
confVersion?: Maybe<Scalars['Int']['output']>;
|
|
@@ -14386,6 +15157,49 @@ export declare type ConfluenceSetSubCalendarReminderPayload = {
|
|
|
14386
15157
|
subCalendarReminder?: Maybe<ConfluenceSubCalendarReminder>;
|
|
14387
15158
|
success: Scalars['Boolean']['output'];
|
|
14388
15159
|
};
|
|
15160
|
+
export declare type ConfluenceSiteConfiguration = {
|
|
15161
|
+
__typename?: 'ConfluenceSiteConfiguration';
|
|
15162
|
+
attachmentSettings?: Maybe<ConfluenceAttachmentSettings>;
|
|
15163
|
+
connectionTimeout?: Maybe<Scalars['Int']['output']>;
|
|
15164
|
+
contactAdministratorsMessage?: Maybe<Scalars['String']['output']>;
|
|
15165
|
+
customPageSettings?: Maybe<ConfluenceCustomPageSettings>;
|
|
15166
|
+
formattingSettings?: Maybe<ConfluenceFormattingSettings>;
|
|
15167
|
+
globalDefaultLocale?: Maybe<ConfluenceLanguage>;
|
|
15168
|
+
indexingLanguage?: Maybe<Scalars['String']['output']>;
|
|
15169
|
+
installedLocales?: Maybe<Array<Maybe<ConfluenceLanguage>>>;
|
|
15170
|
+
isAddWildcardsToUserAndGroupSearchesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15171
|
+
isAnonymousAccessToRemoteApiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15172
|
+
isContactAdministratorsFormEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15173
|
+
isEditorConversionForSiteEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15174
|
+
isEditorFullWidthEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15175
|
+
isEmailNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15176
|
+
isExternalConnectionEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15177
|
+
isLikesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15178
|
+
isLoomEntryPointsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15179
|
+
isMentionReminderSlackNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15180
|
+
isNofollowExternalLinksEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15181
|
+
isPrivacyModeEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15182
|
+
isPushNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15183
|
+
isRecommendedEmailNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15184
|
+
isRecommendedSlackNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15185
|
+
isRecommendedTeamsNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15186
|
+
isSystemAdminEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15187
|
+
isXsrfAddCommentsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15188
|
+
loginSettings?: Maybe<ConfluenceLoginSettings>;
|
|
15189
|
+
maxRssItems?: Maybe<Scalars['Int']['output']>;
|
|
15190
|
+
pageTimeout?: Maybe<Scalars['Int']['output']>;
|
|
15191
|
+
pdfExportSettings?: Maybe<ConfluencePdfExportSettings>;
|
|
15192
|
+
rssTimeout?: Maybe<Scalars['Int']['output']>;
|
|
15193
|
+
siteHomePage?: Maybe<Scalars['String']['output']>;
|
|
15194
|
+
siteTitle?: Maybe<Scalars['String']['output']>;
|
|
15195
|
+
socketTimeout?: Maybe<Scalars['Int']['output']>;
|
|
15196
|
+
teamPresenceSettings?: Maybe<ConfluenceTeamPresenceSettings>;
|
|
15197
|
+
};
|
|
15198
|
+
export declare enum ConfluenceSiteEmailAddressStatus {
|
|
15199
|
+
Active = "ACTIVE",
|
|
15200
|
+
Inactive = "INACTIVE",
|
|
15201
|
+
SiteEmailAddressNotPresent = "SITE_EMAIL_ADDRESS_NOT_PRESENT"
|
|
15202
|
+
}
|
|
14389
15203
|
export declare type ConfluenceSpace = Node & {
|
|
14390
15204
|
__typename?: 'ConfluenceSpace';
|
|
14391
15205
|
alias?: Maybe<Scalars['String']['output']>;
|
|
@@ -14561,15 +15375,71 @@ export declare enum ConfluenceSubscriptionContentType {
|
|
|
14561
15375
|
Page = "PAGE",
|
|
14562
15376
|
Whiteboard = "WHITEBOARD"
|
|
14563
15377
|
}
|
|
15378
|
+
export declare type ConfluenceSystemTemplate = {
|
|
15379
|
+
__typename?: 'ConfluenceSystemTemplate';
|
|
15380
|
+
id: Scalars['ID']['output'];
|
|
15381
|
+
moduleCompleteKey?: Maybe<Scalars['String']['output']>;
|
|
15382
|
+
moduleKey?: Maybe<Scalars['String']['output']>;
|
|
15383
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
15384
|
+
pluginKey?: Maybe<Scalars['String']['output']>;
|
|
15385
|
+
};
|
|
15386
|
+
export declare type ConfluenceTeamCalendar = {
|
|
15387
|
+
__typename?: 'ConfluenceTeamCalendar';
|
|
15388
|
+
globalSettings?: Maybe<ConfluenceTeamCalendarGlobalSettings>;
|
|
15389
|
+
};
|
|
15390
|
+
export declare type ConfluenceTeamCalendarDaysOfWeekOptions = {
|
|
15391
|
+
__typename?: 'ConfluenceTeamCalendarDaysOfWeekOptions';
|
|
15392
|
+
key?: Maybe<ConfluenceTeamCalendarWeekValues>;
|
|
15393
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
15394
|
+
};
|
|
15395
|
+
export declare type ConfluenceTeamCalendarGlobalSettings = {
|
|
15396
|
+
__typename?: 'ConfluenceTeamCalendarGlobalSettings';
|
|
15397
|
+
allowSiteAdmin?: Maybe<Scalars['Boolean']['output']>;
|
|
15398
|
+
daysOfWeekOptions?: Maybe<Array<Maybe<ConfluenceTeamCalendarDaysOfWeekOptions>>>;
|
|
15399
|
+
disablePrivateUrls?: Maybe<Scalars['Boolean']['output']>;
|
|
15400
|
+
displayWeekNumbers?: Maybe<Scalars['Boolean']['output']>;
|
|
15401
|
+
startDayOfWeek?: Maybe<ConfluenceTeamCalendarWeekValues>;
|
|
15402
|
+
timeFormat?: Maybe<ConfluenceTeamCalendarTimeFormatTypes>;
|
|
15403
|
+
};
|
|
15404
|
+
export declare enum ConfluenceTeamCalendarTimeFormatTypes {
|
|
15405
|
+
DisplayTimeFormat_12 = "DISPLAY_TIME_FORMAT_12",
|
|
15406
|
+
DisplayTimeFormat_24 = "DISPLAY_TIME_FORMAT_24"
|
|
15407
|
+
}
|
|
15408
|
+
export declare enum ConfluenceTeamCalendarWeekValues {
|
|
15409
|
+
Default = "DEFAULT",
|
|
15410
|
+
Five = "FIVE",
|
|
15411
|
+
Four = "FOUR",
|
|
15412
|
+
One = "ONE",
|
|
15413
|
+
Seven = "SEVEN",
|
|
15414
|
+
Six = "SIX",
|
|
15415
|
+
Three = "THREE",
|
|
15416
|
+
Two = "TWO"
|
|
15417
|
+
}
|
|
14564
15418
|
export declare type ConfluenceTeamPresence = {
|
|
14565
15419
|
__typename?: 'ConfluenceTeamPresence';
|
|
14566
15420
|
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
14567
15421
|
};
|
|
15422
|
+
export declare type ConfluenceTeamPresenceSettings = {
|
|
15423
|
+
__typename?: 'ConfluenceTeamPresenceSettings';
|
|
15424
|
+
isEnabledOnContentView?: Maybe<Scalars['Boolean']['output']>;
|
|
15425
|
+
};
|
|
14568
15426
|
export declare type ConfluenceTeamPresenceSpaceSettings = {
|
|
14569
15427
|
__typename?: 'ConfluenceTeamPresenceSpaceSettings';
|
|
14570
15428
|
isEnabledOnContentView: Scalars['Boolean']['output'];
|
|
14571
15429
|
isEnabledOnContentViewForSite: Scalars['Boolean']['output'];
|
|
14572
15430
|
};
|
|
15431
|
+
export declare type ConfluenceTemplates = {
|
|
15432
|
+
__typename?: 'ConfluenceTemplates';
|
|
15433
|
+
globalPageTemplates?: Maybe<Array<Maybe<ConfluenceGlobalPageTemplate>>>;
|
|
15434
|
+
spacePageTemplates?: Maybe<Array<Maybe<ConfluenceGlobalPageTemplate>>>;
|
|
15435
|
+
spaceTemplates?: Maybe<Array<Maybe<ConfluenceGlobalPageTemplate>>>;
|
|
15436
|
+
};
|
|
15437
|
+
export declare type ConfluenceTemplatesSpacePageTemplatesArgs = {
|
|
15438
|
+
spaceId: Scalars['Long']['input'];
|
|
15439
|
+
};
|
|
15440
|
+
export declare type ConfluenceTemplatesSpaceTemplatesArgs = {
|
|
15441
|
+
spaceId: Scalars['Long']['input'];
|
|
15442
|
+
};
|
|
14573
15443
|
export declare type ConfluenceTenantContext = {
|
|
14574
15444
|
__typename?: 'ConfluenceTenantContext';
|
|
14575
15445
|
baseUrl: Scalars['String']['output'];
|
|
@@ -14580,6 +15450,29 @@ export declare type ConfluenceTenantContext = {
|
|
|
14580
15450
|
licensedProducts: Array<LicensedProduct>;
|
|
14581
15451
|
timeZone?: Maybe<Scalars['String']['output']>;
|
|
14582
15452
|
};
|
|
15453
|
+
export declare type ConfluenceTheme = {
|
|
15454
|
+
__typename?: 'ConfluenceTheme';
|
|
15455
|
+
completeKey?: Maybe<Scalars['String']['output']>;
|
|
15456
|
+
configPath?: Maybe<Scalars['String']['output']>;
|
|
15457
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
15458
|
+
i18nDescriptionKey?: Maybe<Scalars['String']['output']>;
|
|
15459
|
+
i18nNameKey?: Maybe<Scalars['String']['output']>;
|
|
15460
|
+
iconLocation?: Maybe<Scalars['String']['output']>;
|
|
15461
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
15462
|
+
};
|
|
15463
|
+
export declare type ConfluenceThemes = {
|
|
15464
|
+
__typename?: 'ConfluenceThemes';
|
|
15465
|
+
currentGlobalTheme?: Maybe<ConfluenceTheme>;
|
|
15466
|
+
currentSpaceTheme?: Maybe<ConfluenceTheme>;
|
|
15467
|
+
globalThemes?: Maybe<Array<Maybe<ConfluenceTheme>>>;
|
|
15468
|
+
spaceThemes?: Maybe<Array<Maybe<ConfluenceTheme>>>;
|
|
15469
|
+
};
|
|
15470
|
+
export declare type ConfluenceThemesCurrentSpaceThemeArgs = {
|
|
15471
|
+
spaceId: Scalars['Long']['input'];
|
|
15472
|
+
};
|
|
15473
|
+
export declare type ConfluenceThemesSpaceThemesArgs = {
|
|
15474
|
+
spaceId: Scalars['Long']['input'];
|
|
15475
|
+
};
|
|
14583
15476
|
export declare type ConfluenceTopic = {
|
|
14584
15477
|
__typename?: 'ConfluenceTopic';
|
|
14585
15478
|
creator?: Maybe<Scalars['ID']['output']>;
|
|
@@ -14626,6 +15519,30 @@ export declare type ConfluenceUnmarkCommentAsDanglingPayload = Payload & {
|
|
|
14626
15519
|
errors: Array<MutationError>;
|
|
14627
15520
|
success: Scalars['Boolean']['output'];
|
|
14628
15521
|
};
|
|
15522
|
+
export declare type ConfluenceUnpromoteBlueprintInput = {
|
|
15523
|
+
id: Scalars['ID']['input'];
|
|
15524
|
+
spaceId: Scalars['Long']['input'];
|
|
15525
|
+
};
|
|
15526
|
+
export declare type ConfluenceUnpromoteBlueprintPayload = Payload & {
|
|
15527
|
+
__typename?: 'ConfluenceUnpromoteBlueprintPayload';
|
|
15528
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15529
|
+
success: Scalars['Boolean']['output'];
|
|
15530
|
+
};
|
|
15531
|
+
export declare type ConfluenceUnpromotePageTemplateInput = {
|
|
15532
|
+
id: Scalars['ID']['input'];
|
|
15533
|
+
spaceId: Scalars['Long']['input'];
|
|
15534
|
+
};
|
|
15535
|
+
export declare type ConfluenceUnpromotePageTemplatePayload = Payload & {
|
|
15536
|
+
__typename?: 'ConfluenceUnpromotePageTemplatePayload';
|
|
15537
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15538
|
+
success: Scalars['Boolean']['output'];
|
|
15539
|
+
};
|
|
15540
|
+
export declare type ConfluenceUnusedPluginMacro = {
|
|
15541
|
+
__typename?: 'ConfluenceUnusedPluginMacro';
|
|
15542
|
+
macroNames?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
15543
|
+
pluginKey?: Maybe<Scalars['String']['output']>;
|
|
15544
|
+
pluginName?: Maybe<Scalars['String']['output']>;
|
|
15545
|
+
};
|
|
14629
15546
|
export declare type ConfluenceUnwatchSubCalendarInput = {
|
|
14630
15547
|
subCalendarId: Scalars['ID']['input'];
|
|
14631
15548
|
};
|
|
@@ -14646,6 +15563,15 @@ export declare type ConfluenceUpdateAdminAnnouncementBannerInput = {
|
|
|
14646
15563
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
14647
15564
|
visibility?: InputMaybe<ConfluenceAdminAnnouncementBannerVisibilityType>;
|
|
14648
15565
|
};
|
|
15566
|
+
export declare type ConfluenceUpdateCalendarViewInput = {
|
|
15567
|
+
view: Scalars['String']['input'];
|
|
15568
|
+
};
|
|
15569
|
+
export declare type ConfluenceUpdateCalendarViewPayload = {
|
|
15570
|
+
__typename?: 'ConfluenceUpdateCalendarViewPayload';
|
|
15571
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15572
|
+
success: Scalars['Boolean']['output'];
|
|
15573
|
+
userCalendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
15574
|
+
};
|
|
14649
15575
|
export declare type ConfluenceUpdateCommentInput = {
|
|
14650
15576
|
body: ConfluenceContentBodyInput;
|
|
14651
15577
|
id: Scalars['ID']['input'];
|
|
@@ -14697,6 +15623,19 @@ export declare type ConfluenceUpdateCurrentPagePayload = Payload & {
|
|
|
14697
15623
|
page?: Maybe<ConfluencePage>;
|
|
14698
15624
|
success: Scalars['Boolean']['output'];
|
|
14699
15625
|
};
|
|
15626
|
+
export declare type ConfluenceUpdateCustomApplicationLinkInput = {
|
|
15627
|
+
allowedGroups?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
15628
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
15629
|
+
id: Scalars['ID']['input'];
|
|
15630
|
+
isHidden: Scalars['Boolean']['input'];
|
|
15631
|
+
url?: InputMaybe<Scalars['String']['input']>;
|
|
15632
|
+
};
|
|
15633
|
+
export declare type ConfluenceUpdateCustomApplicationLinkPayload = Payload & {
|
|
15634
|
+
__typename?: 'ConfluenceUpdateCustomApplicationLinkPayload';
|
|
15635
|
+
applicationLink?: Maybe<ConfluenceCustomApplicationLink>;
|
|
15636
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15637
|
+
success: Scalars['Boolean']['output'];
|
|
15638
|
+
};
|
|
14700
15639
|
export declare type ConfluenceUpdateCustomRoleInput = {
|
|
14701
15640
|
anonymousReassignmentRoleId?: InputMaybe<Scalars['ID']['input']>;
|
|
14702
15641
|
description: Scalars['String']['input'];
|
|
@@ -14744,6 +15683,32 @@ export declare type ConfluenceUpdateDraftPagePayload = Payload & {
|
|
|
14744
15683
|
page?: Maybe<ConfluencePage>;
|
|
14745
15684
|
success: Scalars['Boolean']['output'];
|
|
14746
15685
|
};
|
|
15686
|
+
export declare type ConfluenceUpdateGlobalDefaultLocaleConfigurationInput = {
|
|
15687
|
+
globalDefaultLocale: Scalars['String']['input'];
|
|
15688
|
+
};
|
|
15689
|
+
export declare type ConfluenceUpdateGlobalDefaultLocaleConfigurationPayload = Payload & {
|
|
15690
|
+
__typename?: 'ConfluenceUpdateGlobalDefaultLocaleConfigurationPayload';
|
|
15691
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15692
|
+
success: Scalars['Boolean']['output'];
|
|
15693
|
+
};
|
|
15694
|
+
export declare type ConfluenceUpdateGlobalPageTemplateDescriptionInput = {
|
|
15695
|
+
description: Scalars['String']['input'];
|
|
15696
|
+
id: Scalars['ID']['input'];
|
|
15697
|
+
};
|
|
15698
|
+
export declare type ConfluenceUpdateGlobalPageTemplateDescriptionPayload = Payload & {
|
|
15699
|
+
__typename?: 'ConfluenceUpdateGlobalPageTemplateDescriptionPayload';
|
|
15700
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15701
|
+
globalPageTemplate?: Maybe<ConfluenceGlobalPageTemplate>;
|
|
15702
|
+
success: Scalars['Boolean']['output'];
|
|
15703
|
+
};
|
|
15704
|
+
export declare type ConfluenceUpdateIndexingLanguageConfigurationInput = {
|
|
15705
|
+
indexingLanguage: Scalars['String']['input'];
|
|
15706
|
+
};
|
|
15707
|
+
export declare type ConfluenceUpdateIndexingLanguageConfigurationPayload = Payload & {
|
|
15708
|
+
__typename?: 'ConfluenceUpdateIndexingLanguageConfigurationPayload';
|
|
15709
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15710
|
+
success: Scalars['Boolean']['output'];
|
|
15711
|
+
};
|
|
14747
15712
|
export declare type ConfluenceUpdateNav4OptInInput = {
|
|
14748
15713
|
enableNav4: Scalars['Boolean']['input'];
|
|
14749
15714
|
};
|
|
@@ -14752,10 +15717,44 @@ export declare type ConfluenceUpdateNav4OptInPayload = Payload & {
|
|
|
14752
15717
|
errors?: Maybe<Array<MutationError>>;
|
|
14753
15718
|
success: Scalars['Boolean']['output'];
|
|
14754
15719
|
};
|
|
15720
|
+
export declare type ConfluenceUpdateSiteConfigurationInput = {
|
|
15721
|
+
connectionTimeout: Scalars['Int']['input'];
|
|
15722
|
+
customContactMessage: Scalars['String']['input'];
|
|
15723
|
+
dateFormat: Scalars['String']['input'];
|
|
15724
|
+
dateTimeFormat: Scalars['String']['input'];
|
|
15725
|
+
decimalNumberFormat: Scalars['String']['input'];
|
|
15726
|
+
globalDefaultLocale: Scalars['String']['input'];
|
|
15727
|
+
indexingLanguage: Scalars['String']['input'];
|
|
15728
|
+
isContactAdministratorsFormEnabled: Scalars['Boolean']['input'];
|
|
15729
|
+
isEditorConversionForSiteEnabled: Scalars['Boolean']['input'];
|
|
15730
|
+
isEditorFullWidthEnabled: Scalars['Boolean']['input'];
|
|
15731
|
+
isEmailNotificationEnabled: Scalars['Boolean']['input'];
|
|
15732
|
+
isExternalConnectionsEnabled: Scalars['Boolean']['input'];
|
|
15733
|
+
isLikesEnabled: Scalars['Boolean']['input'];
|
|
15734
|
+
isNav4OptedIn?: InputMaybe<Scalars['Boolean']['input']>;
|
|
15735
|
+
isPushNotificationEnabled: Scalars['Boolean']['input'];
|
|
15736
|
+
longNumberFormat: Scalars['String']['input'];
|
|
15737
|
+
maxAttachmentSize: Scalars['Long']['input'];
|
|
15738
|
+
maxNumberOfAttachmentsPerUpload: Scalars['Int']['input'];
|
|
15739
|
+
siteHomePage: Scalars['String']['input'];
|
|
15740
|
+
siteTitle: Scalars['String']['input'];
|
|
15741
|
+
socketTimeout: Scalars['Int']['input'];
|
|
15742
|
+
timeFormat: Scalars['String']['input'];
|
|
15743
|
+
};
|
|
15744
|
+
export declare type ConfluenceUpdateSiteConfigurationPayload = Payload & {
|
|
15745
|
+
__typename?: 'ConfluenceUpdateSiteConfigurationPayload';
|
|
15746
|
+
errors?: Maybe<Array<MutationError>>;
|
|
15747
|
+
success: Scalars['Boolean']['output'];
|
|
15748
|
+
};
|
|
14755
15749
|
export declare type ConfluenceUpdateSpaceInput = {
|
|
14756
15750
|
id: Scalars['ID']['input'];
|
|
14757
15751
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
14758
15752
|
};
|
|
15753
|
+
export declare type ConfluenceUpdateSpacePageTemplateDescriptionInput = {
|
|
15754
|
+
description: Scalars['String']['input'];
|
|
15755
|
+
id: Scalars['ID']['input'];
|
|
15756
|
+
spaceId: Scalars['Long']['input'];
|
|
15757
|
+
};
|
|
14759
15758
|
export declare type ConfluenceUpdateSpacePayload = Payload & {
|
|
14760
15759
|
__typename?: 'ConfluenceUpdateSpacePayload';
|
|
14761
15760
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -14826,6 +15825,12 @@ export declare type ConfluenceUpdateValuePagePropertyPayload = Payload & {
|
|
|
14826
15825
|
pageProperty?: Maybe<ConfluencePageProperty>;
|
|
14827
15826
|
success: Scalars['Boolean']['output'];
|
|
14828
15827
|
};
|
|
15828
|
+
export declare type ConfluenceUsedPluginMacro = {
|
|
15829
|
+
__typename?: 'ConfluenceUsedPluginMacro';
|
|
15830
|
+
macros?: Maybe<Array<ConfluenceMacro>>;
|
|
15831
|
+
pageCount?: Maybe<Scalars['Int']['output']>;
|
|
15832
|
+
pluginName?: Maybe<Scalars['String']['output']>;
|
|
15833
|
+
};
|
|
14829
15834
|
export declare type ConfluenceUser = {
|
|
14830
15835
|
__typename?: 'ConfluenceUser';
|
|
14831
15836
|
accessStatus: AccessStatus;
|
|
@@ -14842,6 +15847,11 @@ export declare type ConfluenceUser = {
|
|
|
14842
15847
|
space?: Maybe<Space>;
|
|
14843
15848
|
userKey?: Maybe<Scalars['String']['output']>;
|
|
14844
15849
|
};
|
|
15850
|
+
export declare type ConfluenceUserAccess = {
|
|
15851
|
+
__typename?: 'ConfluenceUserAccess';
|
|
15852
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15853
|
+
hasAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
15854
|
+
};
|
|
14845
15855
|
export declare type ConfluenceUserClass = {
|
|
14846
15856
|
__typename?: 'ConfluenceUserClass';
|
|
14847
15857
|
displayName: Scalars['String']['output'];
|
|
@@ -17281,8 +18291,91 @@ export declare type CountUsersGroupByPageItem = {
|
|
|
17281
18291
|
};
|
|
17282
18292
|
export declare type CplsCapacityPlanningPeopleView = {
|
|
17283
18293
|
__typename?: 'CplsCapacityPlanningPeopleView';
|
|
18294
|
+
contributors: CplsContributorConnection;
|
|
17284
18295
|
id: Scalars['ID']['output'];
|
|
18296
|
+
timeCells: Array<CplsTimeCell>;
|
|
18297
|
+
viewSettings: CplsViewSettings;
|
|
17285
18298
|
};
|
|
18299
|
+
export declare type CplsCapacityPlanningPeopleViewContributorsArgs = {
|
|
18300
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
18301
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
18302
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
18303
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
18304
|
+
};
|
|
18305
|
+
export declare type CplsContribution = {
|
|
18306
|
+
__typename?: 'CplsContribution';
|
|
18307
|
+
endDate: Scalars['Date']['output'];
|
|
18308
|
+
startDate: Scalars['Date']['output'];
|
|
18309
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
18310
|
+
valueType: CplsContributionValueType;
|
|
18311
|
+
};
|
|
18312
|
+
export declare type CplsContributionAggregation = {
|
|
18313
|
+
__typename?: 'CplsContributionAggregation';
|
|
18314
|
+
availability: Scalars['Float']['output'];
|
|
18315
|
+
endDate: Scalars['Date']['output'];
|
|
18316
|
+
startDate: Scalars['Date']['output'];
|
|
18317
|
+
totalContributionHours: Scalars['Float']['output'];
|
|
18318
|
+
};
|
|
18319
|
+
export declare enum CplsContributionValueType {
|
|
18320
|
+
Hours = "HOURS",
|
|
18321
|
+
Percentage = "PERCENTAGE"
|
|
18322
|
+
}
|
|
18323
|
+
export declare type CplsContributor = {
|
|
18324
|
+
__typename?: 'CplsContributor';
|
|
18325
|
+
contributionAggregations: Array<CplsContributionAggregation>;
|
|
18326
|
+
contributorData?: Maybe<CplsContributorData>;
|
|
18327
|
+
contributorWork: CplsContributorWorkConnection;
|
|
18328
|
+
};
|
|
18329
|
+
export declare type CplsContributorContributorWorkArgs = {
|
|
18330
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
18331
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
18332
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
18333
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
18334
|
+
};
|
|
18335
|
+
export declare type CplsContributorConnection = HasPageInfo & {
|
|
18336
|
+
__typename?: 'CplsContributorConnection';
|
|
18337
|
+
edges: Array<CplsContributorEdge>;
|
|
18338
|
+
pageInfo: PageInfo;
|
|
18339
|
+
};
|
|
18340
|
+
export declare type CplsContributorData = AppUser | AtlassianAccountUser | CustomerUser;
|
|
18341
|
+
export declare type CplsContributorEdge = {
|
|
18342
|
+
__typename?: 'CplsContributorEdge';
|
|
18343
|
+
cursor: Scalars['String']['output'];
|
|
18344
|
+
node: CplsContributor;
|
|
18345
|
+
};
|
|
18346
|
+
export declare type CplsContributorWorkConnection = HasPageInfo & {
|
|
18347
|
+
__typename?: 'CplsContributorWorkConnection';
|
|
18348
|
+
edges: Array<CplsContributorWorkEdge>;
|
|
18349
|
+
pageInfo: PageInfo;
|
|
18350
|
+
};
|
|
18351
|
+
export declare type CplsContributorWorkEdge = {
|
|
18352
|
+
__typename?: 'CplsContributorWorkEdge';
|
|
18353
|
+
contributions: Array<CplsContribution>;
|
|
18354
|
+
contributorId: Scalars['ID']['output'];
|
|
18355
|
+
cursor: Scalars['String']['output'];
|
|
18356
|
+
workData?: Maybe<CplsWorkData>;
|
|
18357
|
+
workId: Scalars['ID']['output'];
|
|
18358
|
+
};
|
|
18359
|
+
export declare type CplsCustomContributionTarget = {
|
|
18360
|
+
__typename?: 'CplsCustomContributionTarget';
|
|
18361
|
+
id: Scalars['ID']['output'];
|
|
18362
|
+
name: Scalars['String']['output'];
|
|
18363
|
+
};
|
|
18364
|
+
export declare type CplsTimeCell = {
|
|
18365
|
+
__typename?: 'CplsTimeCell';
|
|
18366
|
+
endDate: Scalars['Date']['output'];
|
|
18367
|
+
startDate: Scalars['Date']['output'];
|
|
18368
|
+
};
|
|
18369
|
+
export declare enum CplsTimeScaleType {
|
|
18370
|
+
Weekly = "WEEKLY"
|
|
18371
|
+
}
|
|
18372
|
+
export declare type CplsViewSettings = {
|
|
18373
|
+
__typename?: 'CplsViewSettings';
|
|
18374
|
+
alwaysShowNumbersInGraph: Scalars['Boolean']['output'];
|
|
18375
|
+
contributionValueType: CplsContributionValueType;
|
|
18376
|
+
timeScale: CplsTimeScaleType;
|
|
18377
|
+
};
|
|
18378
|
+
export declare type CplsWorkData = CplsCustomContributionTarget | JiraIssue;
|
|
17286
18379
|
export declare type CreateAppContainerPayload = Payload & {
|
|
17287
18380
|
__typename?: 'CreateAppContainerPayload';
|
|
17288
18381
|
container?: Maybe<AppContainer>;
|
|
@@ -17854,6 +18947,7 @@ export declare type CreateMetadataInput = {
|
|
|
17854
18947
|
productLink?: InputMaybe<Scalars['String']['input']>;
|
|
17855
18948
|
};
|
|
17856
18949
|
export declare type CreateNoteInput = {
|
|
18950
|
+
backgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
17857
18951
|
body?: InputMaybe<Scalars['String']['input']>;
|
|
17858
18952
|
metadata?: InputMaybe<CreateMetadataInput>;
|
|
17859
18953
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -20089,12 +21183,14 @@ export declare type DeleteLabelPayload = {
|
|
|
20089
21183
|
label: Scalars['String']['output'];
|
|
20090
21184
|
};
|
|
20091
21185
|
export declare type DeleteNoteInput = {
|
|
20092
|
-
ari
|
|
21186
|
+
ari?: InputMaybe<Scalars['String']['input']>;
|
|
21187
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
20093
21188
|
};
|
|
20094
21189
|
export declare type DeleteNotePayload = {
|
|
20095
21190
|
__typename?: 'DeleteNotePayload';
|
|
20096
21191
|
ari?: Maybe<Scalars['String']['output']>;
|
|
20097
21192
|
errors?: Maybe<Array<NoteMutationError>>;
|
|
21193
|
+
id: Scalars['ID']['output'];
|
|
20098
21194
|
success: Scalars['Boolean']['output'];
|
|
20099
21195
|
};
|
|
20100
21196
|
export declare type DeletePagesInput = {
|
|
@@ -20792,9 +21888,17 @@ export declare type DevAiRovoDevBulkCreateSessionByCloudIdInput = {
|
|
|
20792
21888
|
export declare type DevAiRovoDevBulkCreateSessionPayload = Payload & {
|
|
20793
21889
|
__typename?: 'DevAiRovoDevBulkCreateSessionPayload';
|
|
20794
21890
|
errors?: Maybe<Array<MutationError>>;
|
|
21891
|
+
failedSessions?: Maybe<Array<DevAiRovoDevBulkSessionResult>>;
|
|
20795
21892
|
sessions?: Maybe<Array<Maybe<DevAiRovoDevSession>>>;
|
|
21893
|
+
succeededSessions?: Maybe<Array<DevAiRovoDevBulkSessionResult>>;
|
|
20796
21894
|
success: Scalars['Boolean']['output'];
|
|
20797
21895
|
};
|
|
21896
|
+
export declare type DevAiRovoDevBulkSessionResult = {
|
|
21897
|
+
__typename?: 'DevAiRovoDevBulkSessionResult';
|
|
21898
|
+
errors?: Maybe<Array<MutationError>>;
|
|
21899
|
+
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
21900
|
+
session?: Maybe<DevAiRovoDevSession>;
|
|
21901
|
+
};
|
|
20798
21902
|
export declare type DevAiRovoDevCreateSessionByCloudIdInput = {
|
|
20799
21903
|
cloudId: Scalars['ID']['input'];
|
|
20800
21904
|
links?: InputMaybe<Array<DevAiRovoDevSessionLinkInput>>;
|
|
@@ -20820,6 +21924,12 @@ export declare type DevAiRovoDevCreateSessionPayload = Payload & {
|
|
|
20820
21924
|
session?: Maybe<DevAiRovoDevSession>;
|
|
20821
21925
|
success: Scalars['Boolean']['output'];
|
|
20822
21926
|
};
|
|
21927
|
+
export declare enum DevAiRovoDevPrStatus {
|
|
21928
|
+
Declined = "DECLINED",
|
|
21929
|
+
Draft = "DRAFT",
|
|
21930
|
+
Merged = "MERGED",
|
|
21931
|
+
Open = "OPEN"
|
|
21932
|
+
}
|
|
20823
21933
|
export declare enum DevAiRovoDevRaisePullRequestOption {
|
|
20824
21934
|
Always = "ALWAYS",
|
|
20825
21935
|
Draft = "DRAFT",
|
|
@@ -20846,7 +21956,10 @@ export declare type DevAiRovoDevSession = Node & {
|
|
|
20846
21956
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
20847
21957
|
id: Scalars['ID']['output'];
|
|
20848
21958
|
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
21959
|
+
issue?: Maybe<JiraIssue>;
|
|
21960
|
+
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
20849
21961
|
options?: Maybe<DevAiRovoDevSessionOptions>;
|
|
21962
|
+
prStatus?: Maybe<DevAiRovoDevPrStatus>;
|
|
20850
21963
|
promptAdf?: Maybe<Scalars['JSON']['output']>;
|
|
20851
21964
|
repository?: Maybe<DevAiRovoDevRepository>;
|
|
20852
21965
|
sessionStatus?: Maybe<DevAiRovoDevSessionStatus>;
|
|
@@ -21647,6 +22760,12 @@ export declare type DevOpsMetricsPerProjectPrCycleTimeMetricsArgs = {
|
|
|
21647
22760
|
filter: DevOpsMetricsPerProjectPrCycleTimeMetricsFilter;
|
|
21648
22761
|
first: Scalars['Int']['input'];
|
|
21649
22762
|
};
|
|
22763
|
+
export declare enum DevOpsMetricsComparisonOperator {
|
|
22764
|
+
EqualTo = "EQUAL_TO",
|
|
22765
|
+
GreaterThan = "GREATER_THAN",
|
|
22766
|
+
LessThan = "LESS_THAN",
|
|
22767
|
+
NotEqualTo = "NOT_EQUAL_TO"
|
|
22768
|
+
}
|
|
21650
22769
|
export declare type DevOpsMetricsCycleTime = {
|
|
21651
22770
|
__typename?: 'DevOpsMetricsCycleTime';
|
|
21652
22771
|
cycleTimeMetrics?: Maybe<Array<Maybe<DevOpsMetricsCycleTimeMetrics>>>;
|
|
@@ -21661,6 +22780,9 @@ export declare type DevOpsMetricsCycleTimeData = {
|
|
|
21661
22780
|
dateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
21662
22781
|
issuesShippedCount?: Maybe<Scalars['Int']['output']>;
|
|
21663
22782
|
};
|
|
22783
|
+
export declare type DevOpsMetricsCycleTimeInsight = {
|
|
22784
|
+
type: Scalars['String']['output'];
|
|
22785
|
+
};
|
|
21664
22786
|
export declare type DevOpsMetricsCycleTimeMean = DevOpsMetricsCycleTimeMetrics & {
|
|
21665
22787
|
__typename?: 'DevOpsMetricsCycleTimeMean';
|
|
21666
22788
|
aggregateData?: Maybe<Scalars['Long']['output']>;
|
|
@@ -21670,6 +22792,14 @@ export declare type DevOpsMetricsCycleTimeMetrics = {
|
|
|
21670
22792
|
aggregateData?: Maybe<Scalars['Long']['output']>;
|
|
21671
22793
|
data?: Maybe<Array<Maybe<DevOpsMetricsCycleTimeData>>>;
|
|
21672
22794
|
};
|
|
22795
|
+
export declare type DevOpsMetricsCycleTimePercentChangeTrendAlert = DevOpsMetricsCycleTimeInsight & {
|
|
22796
|
+
__typename?: 'DevOpsMetricsCycleTimePercentChangeTrendAlert';
|
|
22797
|
+
criterion: DevOpsMetricsTrendAlertCriterion;
|
|
22798
|
+
evaluationPeriod: DevOpsMetricsTrendAlertEvaluationPeriod;
|
|
22799
|
+
percentChange: Scalars['Float']['output'];
|
|
22800
|
+
percentOfTotalCycleTime: Scalars['Float']['output'];
|
|
22801
|
+
type: Scalars['String']['output'];
|
|
22802
|
+
};
|
|
21673
22803
|
export declare type DevOpsMetricsCycleTimePercentile = DevOpsMetricsCycleTimeMetrics & {
|
|
21674
22804
|
__typename?: 'DevOpsMetricsCycleTimePercentile';
|
|
21675
22805
|
aggregateData?: Maybe<Scalars['Long']['output']>;
|
|
@@ -21782,6 +22912,7 @@ export declare enum DevOpsMetricsPerPrCycleTimeBreakdownPhase {
|
|
|
21782
22912
|
}
|
|
21783
22913
|
export declare type DevOpsMetricsPerPrCycleTimeBreakdownPhaseMetrics = {
|
|
21784
22914
|
__typename?: 'DevOpsMetricsPerPRCycleTimeBreakdownPhaseMetrics';
|
|
22915
|
+
insights?: Maybe<Array<DevOpsMetricsCycleTimeInsight>>;
|
|
21785
22916
|
medianHistoricalPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
21786
22917
|
medianPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
21787
22918
|
phase?: Maybe<DevOpsMetricsPerPrCycleTimeBreakdownPhase>;
|
|
@@ -21831,6 +22962,16 @@ export declare type DevOpsMetricsRollupType = {
|
|
|
21831
22962
|
percentile?: InputMaybe<Scalars['Int']['input']>;
|
|
21832
22963
|
type: DevOpsMetricsRollupOption;
|
|
21833
22964
|
};
|
|
22965
|
+
export declare type DevOpsMetricsTrendAlertCriterion = {
|
|
22966
|
+
__typename?: 'DevOpsMetricsTrendAlertCriterion';
|
|
22967
|
+
operator?: Maybe<DevOpsMetricsComparisonOperator>;
|
|
22968
|
+
threshold: Scalars['Float']['output'];
|
|
22969
|
+
};
|
|
22970
|
+
export declare type DevOpsMetricsTrendAlertEvaluationPeriod = {
|
|
22971
|
+
__typename?: 'DevOpsMetricsTrendAlertEvaluationPeriod';
|
|
22972
|
+
endAtExclusive?: Maybe<Scalars['DateTime']['output']>;
|
|
22973
|
+
startFromInclusive?: Maybe<Scalars['DateTime']['output']>;
|
|
22974
|
+
};
|
|
21834
22975
|
export declare type DevOpsMutation = {
|
|
21835
22976
|
__typename?: 'DevOpsMutation';
|
|
21836
22977
|
_empty?: Maybe<Scalars['String']['output']>;
|
|
@@ -22577,10 +23718,6 @@ export declare type EarliestOnboardedProjectForCloudId = {
|
|
|
22577
23718
|
datetime?: Maybe<Scalars['String']['output']>;
|
|
22578
23719
|
template?: Maybe<Scalars['String']['output']>;
|
|
22579
23720
|
};
|
|
22580
|
-
export declare type EarliestViewViewedForUser = {
|
|
22581
|
-
__typename?: 'EarliestViewViewedForUser';
|
|
22582
|
-
datetime?: Maybe<Scalars['String']['output']>;
|
|
22583
|
-
};
|
|
22584
23721
|
export declare type EcosystemApp = App | EcosystemConnectApp;
|
|
22585
23722
|
export declare type EcosystemAppInstallationConfigExtension = {
|
|
22586
23723
|
__typename?: 'EcosystemAppInstallationConfigExtension';
|
|
@@ -23498,7 +24635,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
23498
24635
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23499
24636
|
node?: Maybe<ExternalAssociation>;
|
|
23500
24637
|
};
|
|
23501
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
24638
|
+
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
23502
24639
|
export declare type ExternalAttachment = {
|
|
23503
24640
|
__typename?: 'ExternalAttachment';
|
|
23504
24641
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -23994,12 +25131,15 @@ export declare type ExternalEntities = {
|
|
|
23994
25131
|
softwareService?: Maybe<Array<Maybe<ExternalSoftwareService>>>;
|
|
23995
25132
|
space?: Maybe<Array<Maybe<ExternalSpace>>>;
|
|
23996
25133
|
test?: Maybe<Array<Maybe<ExternalTest>>>;
|
|
25134
|
+
testExecution?: Maybe<Array<Maybe<ExternalTestExecution>>>;
|
|
25135
|
+
testPlan?: Maybe<Array<Maybe<ExternalTestPlan>>>;
|
|
25136
|
+
testRun?: Maybe<Array<Maybe<ExternalTestRun>>>;
|
|
23997
25137
|
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
23998
25138
|
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
23999
25139
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
24000
25140
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
24001
25141
|
};
|
|
24002
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
25142
|
+
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTest | ExternalTestExecution | ExternalTestPlan | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
24003
25143
|
export declare type ExternalEnvironment = {
|
|
24004
25144
|
__typename?: 'ExternalEnvironment';
|
|
24005
25145
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -24416,6 +25556,28 @@ export declare type ExternalTest = Node & {
|
|
|
24416
25556
|
url?: Maybe<Scalars['String']['output']>;
|
|
24417
25557
|
version?: Maybe<Scalars['String']['output']>;
|
|
24418
25558
|
};
|
|
25559
|
+
export declare type ExternalTestExecution = Node & {
|
|
25560
|
+
__typename?: 'ExternalTestExecution';
|
|
25561
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
25562
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
25563
|
+
createdBy?: Maybe<ExternalUser>;
|
|
25564
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
25565
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
25566
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
25567
|
+
id: Scalars['ID']['output'];
|
|
25568
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
25569
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
25570
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
25571
|
+
parent?: Maybe<ExternalEntity>;
|
|
25572
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
25573
|
+
provider?: Maybe<ExternalProvider>;
|
|
25574
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
25575
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
25576
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
25577
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
25578
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
25579
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
25580
|
+
};
|
|
24419
25581
|
export declare type ExternalTestInfo = {
|
|
24420
25582
|
__typename?: 'ExternalTestInfo';
|
|
24421
25583
|
numberFailed?: Maybe<Scalars['Int']['output']>;
|
|
@@ -24423,6 +25585,50 @@ export declare type ExternalTestInfo = {
|
|
|
24423
25585
|
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
24424
25586
|
totalNumber?: Maybe<Scalars['Int']['output']>;
|
|
24425
25587
|
};
|
|
25588
|
+
export declare type ExternalTestPlan = Node & {
|
|
25589
|
+
__typename?: 'ExternalTestPlan';
|
|
25590
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
25591
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
25592
|
+
createdBy?: Maybe<ExternalUser>;
|
|
25593
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
25594
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
25595
|
+
id: Scalars['ID']['output'];
|
|
25596
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
25597
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
25598
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
25599
|
+
parent?: Maybe<ExternalEntity>;
|
|
25600
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
25601
|
+
provider?: Maybe<ExternalProvider>;
|
|
25602
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
25603
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
25604
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
25605
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
25606
|
+
};
|
|
25607
|
+
export declare type ExternalTestRun = Node & {
|
|
25608
|
+
__typename?: 'ExternalTestRun';
|
|
25609
|
+
assignee?: Maybe<ExternalUser>;
|
|
25610
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
25611
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
25612
|
+
createdBy?: Maybe<ExternalUser>;
|
|
25613
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
25614
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
25615
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
25616
|
+
finishedAt?: Maybe<Scalars['String']['output']>;
|
|
25617
|
+
id: Scalars['ID']['output'];
|
|
25618
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
25619
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
25620
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
25621
|
+
parent?: Maybe<ExternalEntity>;
|
|
25622
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
25623
|
+
provider?: Maybe<ExternalProvider>;
|
|
25624
|
+
startedAt?: Maybe<Scalars['String']['output']>;
|
|
25625
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
25626
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
25627
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
25628
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
25629
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
25630
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
25631
|
+
};
|
|
24426
25632
|
export declare type ExternalThumbnail = {
|
|
24427
25633
|
__typename?: 'ExternalThumbnail';
|
|
24428
25634
|
externalUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -27010,6 +28216,110 @@ export declare type GraphIntegrationDirectoryItemEdge = {
|
|
|
27010
28216
|
export declare enum GraphIntegrationDirectoryItemType {
|
|
27011
28217
|
McpTool = "MCP_TOOL"
|
|
27012
28218
|
}
|
|
28219
|
+
export declare type GraphIntegrationMcpAdminManagementMcpServerConnection = {
|
|
28220
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerConnection';
|
|
28221
|
+
edges?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpServerEdge>>;
|
|
28222
|
+
nodes?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpServerNode>>;
|
|
28223
|
+
pageInfo: PageInfo;
|
|
28224
|
+
};
|
|
28225
|
+
export declare type GraphIntegrationMcpAdminManagementMcpServerEdge = {
|
|
28226
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerEdge';
|
|
28227
|
+
cursor: Scalars['String']['output'];
|
|
28228
|
+
node?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
|
|
28229
|
+
};
|
|
28230
|
+
export declare type GraphIntegrationMcpAdminManagementMcpServerNode = {
|
|
28231
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpServerNode';
|
|
28232
|
+
authConsentUrl?: Maybe<Scalars['URL']['output']>;
|
|
28233
|
+
baseUrl: Scalars['URL']['output'];
|
|
28234
|
+
displayName: Scalars['String']['output'];
|
|
28235
|
+
endpointPath?: Maybe<Scalars['String']['output']>;
|
|
28236
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
28237
|
+
id: Scalars['ID']['output'];
|
|
28238
|
+
serverType: GraphIntegrationMcpAdminManagementMcpServerType;
|
|
28239
|
+
status: GraphIntegrationMcpAdminManagementMcpServerStatus;
|
|
28240
|
+
};
|
|
28241
|
+
export declare enum GraphIntegrationMcpAdminManagementMcpServerStatus {
|
|
28242
|
+
Deleting = "DELETING",
|
|
28243
|
+
Provisioning = "PROVISIONING",
|
|
28244
|
+
Registered = "REGISTERED",
|
|
28245
|
+
Suspended = "SUSPENDED"
|
|
28246
|
+
}
|
|
28247
|
+
export declare enum GraphIntegrationMcpAdminManagementMcpServerType {
|
|
28248
|
+
Http = "HTTP",
|
|
28249
|
+
Sse = "SSE"
|
|
28250
|
+
}
|
|
28251
|
+
export declare type GraphIntegrationMcpAdminManagementMcpToolConfiguration = {
|
|
28252
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpToolConfiguration';
|
|
28253
|
+
status: GraphIntegrationMcpAdminManagementMcpToolStatus;
|
|
28254
|
+
};
|
|
28255
|
+
export declare type GraphIntegrationMcpAdminManagementMcpToolConfigurationInput = {
|
|
28256
|
+
status?: InputMaybe<GraphIntegrationMcpAdminManagementMcpToolStatus>;
|
|
28257
|
+
toolId: Scalars['ID']['input'];
|
|
28258
|
+
};
|
|
28259
|
+
export declare type GraphIntegrationMcpAdminManagementMcpToolConnection = {
|
|
28260
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpToolConnection';
|
|
28261
|
+
edges?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpToolEdge>>;
|
|
28262
|
+
nodes?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpToolNode>>;
|
|
28263
|
+
pageInfo: PageInfo;
|
|
28264
|
+
};
|
|
28265
|
+
export declare type GraphIntegrationMcpAdminManagementMcpToolEdge = {
|
|
28266
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpToolEdge';
|
|
28267
|
+
cursor: Scalars['String']['output'];
|
|
28268
|
+
node?: Maybe<GraphIntegrationMcpAdminManagementMcpToolNode>;
|
|
28269
|
+
};
|
|
28270
|
+
export declare type GraphIntegrationMcpAdminManagementMcpToolNode = {
|
|
28271
|
+
__typename?: 'GraphIntegrationMcpAdminManagementMcpToolNode';
|
|
28272
|
+
configuration?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConfiguration>;
|
|
28273
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
28274
|
+
displayName: Scalars['String']['output'];
|
|
28275
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
28276
|
+
id: Scalars['ID']['output'];
|
|
28277
|
+
mcpServer: GraphIntegrationMcpAdminManagementMcpServerNode;
|
|
28278
|
+
name: Scalars['String']['output'];
|
|
28279
|
+
};
|
|
28280
|
+
export declare enum GraphIntegrationMcpAdminManagementMcpToolStatus {
|
|
28281
|
+
Allow = "ALLOW",
|
|
28282
|
+
Deny = "DENY",
|
|
28283
|
+
NewToolDeny = "NEW_TOOL_DENY"
|
|
28284
|
+
}
|
|
28285
|
+
export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerInput = {
|
|
28286
|
+
cloudId: Scalars['ID']['input'];
|
|
28287
|
+
displayName: Scalars['String']['input'];
|
|
28288
|
+
endpointPath?: InputMaybe<Scalars['String']['input']>;
|
|
28289
|
+
icon?: InputMaybe<Scalars['String']['input']>;
|
|
28290
|
+
serverType?: InputMaybe<GraphIntegrationMcpAdminManagementMcpServerType>;
|
|
28291
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
28292
|
+
url: Scalars['URL']['input'];
|
|
28293
|
+
};
|
|
28294
|
+
export declare type GraphIntegrationMcpAdminManagementRegisterMcpServerPayload = Payload & {
|
|
28295
|
+
__typename?: 'GraphIntegrationMcpAdminManagementRegisterMcpServerPayload';
|
|
28296
|
+
authConsentUrl?: Maybe<Scalars['URL']['output']>;
|
|
28297
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28298
|
+
serverId?: Maybe<Scalars['ID']['output']>;
|
|
28299
|
+
success: Scalars['Boolean']['output'];
|
|
28300
|
+
};
|
|
28301
|
+
export declare type GraphIntegrationMcpAdminManagementUnregisterMcpServerInput = {
|
|
28302
|
+
cloudId: Scalars['ID']['input'];
|
|
28303
|
+
serverId: Scalars['ID']['input'];
|
|
28304
|
+
};
|
|
28305
|
+
export declare type GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload = Payload & {
|
|
28306
|
+
__typename?: 'GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload';
|
|
28307
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28308
|
+
serverId?: Maybe<Scalars['ID']['output']>;
|
|
28309
|
+
success: Scalars['Boolean']['output'];
|
|
28310
|
+
};
|
|
28311
|
+
export declare type GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationInput = {
|
|
28312
|
+
cloudId: Scalars['ID']['input'];
|
|
28313
|
+
serverId: Scalars['ID']['input'];
|
|
28314
|
+
toolConfigurations: Array<GraphIntegrationMcpAdminManagementMcpToolConfigurationInput>;
|
|
28315
|
+
};
|
|
28316
|
+
export declare type GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload = Payload & {
|
|
28317
|
+
__typename?: 'GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload';
|
|
28318
|
+
errors?: Maybe<Array<MutationError>>;
|
|
28319
|
+
serverId?: Maybe<Scalars['ID']['output']>;
|
|
28320
|
+
success: Scalars['Boolean']['output'];
|
|
28321
|
+
updatedTools?: Maybe<Array<GraphIntegrationMcpAdminManagementMcpToolNode>>;
|
|
28322
|
+
};
|
|
27013
28323
|
export declare type GraphIntegrationMcpServer = {
|
|
27014
28324
|
__typename?: 'GraphIntegrationMcpServer';
|
|
27015
28325
|
displayName: Scalars['String']['output'];
|
|
@@ -30029,6 +31339,8 @@ export declare type GraphStore = {
|
|
|
30029
31339
|
parentIssueHasChildIssueRelationship?: Maybe<GraphStoreFullParentIssueHasChildIssueConnection>;
|
|
30030
31340
|
parentMessageHasChildMessage?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageConnection>;
|
|
30031
31341
|
parentMessageHasChildMessageInverse?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection>;
|
|
31342
|
+
parentTeamHasChildTeam?: Maybe<GraphStoreSimplifiedParentTeamHasChildTeamConnection>;
|
|
31343
|
+
parentTeamHasChildTeamInverse?: Maybe<GraphStoreSimplifiedParentTeamHasChildTeamInverseConnection>;
|
|
30032
31344
|
positionAllocatedToFocusArea?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection>;
|
|
30033
31345
|
positionAllocatedToFocusAreaInverse?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection>;
|
|
30034
31346
|
positionAssociatedExternalPosition?: Maybe<GraphStoreSimplifiedPositionAssociatedExternalPositionConnection>;
|
|
@@ -32690,6 +34002,20 @@ export declare type GraphStoreParentMessageHasChildMessageInverseArgs = {
|
|
|
32690
34002
|
id: Scalars['ID']['input'];
|
|
32691
34003
|
sort?: InputMaybe<GraphStoreParentMessageHasChildMessageSortInput>;
|
|
32692
34004
|
};
|
|
34005
|
+
export declare type GraphStoreParentTeamHasChildTeamArgs = {
|
|
34006
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34007
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34008
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34009
|
+
id: Scalars['ID']['input'];
|
|
34010
|
+
sort?: InputMaybe<GraphStoreParentTeamHasChildTeamSortInput>;
|
|
34011
|
+
};
|
|
34012
|
+
export declare type GraphStoreParentTeamHasChildTeamInverseArgs = {
|
|
34013
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
34014
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
34015
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
34016
|
+
id: Scalars['ID']['input'];
|
|
34017
|
+
sort?: InputMaybe<GraphStoreParentTeamHasChildTeamSortInput>;
|
|
34018
|
+
};
|
|
32693
34019
|
export declare type GraphStorePositionAllocatedToFocusAreaArgs = {
|
|
32694
34020
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32695
34021
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37027,6 +38353,20 @@ export declare type GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderRe
|
|
|
37027
38353
|
to: Scalars['ID']['input'];
|
|
37028
38354
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
37029
38355
|
};
|
|
38356
|
+
export declare type GraphStoreCreateParentTeamHasChildTeamInput = {
|
|
38357
|
+
relationships: Array<GraphStoreCreateParentTeamHasChildTeamRelationshipInput>;
|
|
38358
|
+
};
|
|
38359
|
+
export declare type GraphStoreCreateParentTeamHasChildTeamPayload = Payload & {
|
|
38360
|
+
__typename?: 'GraphStoreCreateParentTeamHasChildTeamPayload';
|
|
38361
|
+
errors?: Maybe<Array<MutationError>>;
|
|
38362
|
+
success: Scalars['Boolean']['output'];
|
|
38363
|
+
};
|
|
38364
|
+
export declare type GraphStoreCreateParentTeamHasChildTeamRelationshipInput = {
|
|
38365
|
+
from: Scalars['ID']['input'];
|
|
38366
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
38367
|
+
to: Scalars['ID']['input'];
|
|
38368
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
38369
|
+
};
|
|
37030
38370
|
export declare type GraphStoreCreateProjectAssociatedOpsgenieTeamInput = {
|
|
37031
38371
|
relationships: Array<GraphStoreCreateProjectAssociatedOpsgenieTeamRelationshipInput>;
|
|
37032
38372
|
};
|
|
@@ -37405,6 +38745,7 @@ export declare type GraphStoreCypherQueryV2BatchConnection = {
|
|
|
37405
38745
|
};
|
|
37406
38746
|
export declare type GraphStoreCypherQueryV2BatchEdge = {
|
|
37407
38747
|
__typename?: 'GraphStoreCypherQueryV2BatchEdge';
|
|
38748
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37408
38749
|
node: GraphStoreCypherQueryV2BatchNode;
|
|
37409
38750
|
};
|
|
37410
38751
|
export declare type GraphStoreCypherQueryV2BatchFloatObject = {
|
|
@@ -37460,6 +38801,7 @@ export declare type GraphStoreCypherQueryV2Connection = {
|
|
|
37460
38801
|
};
|
|
37461
38802
|
export declare type GraphStoreCypherQueryV2Edge = {
|
|
37462
38803
|
__typename?: 'GraphStoreCypherQueryV2Edge';
|
|
38804
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37463
38805
|
node: GraphStoreCypherQueryV2Node;
|
|
37464
38806
|
};
|
|
37465
38807
|
export declare type GraphStoreCypherQueryV2FloatObject = {
|
|
@@ -37614,6 +38956,19 @@ export declare type GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderRe
|
|
|
37614
38956
|
from: Scalars['ID']['input'];
|
|
37615
38957
|
to: Scalars['ID']['input'];
|
|
37616
38958
|
};
|
|
38959
|
+
export declare type GraphStoreDeleteParentTeamHasChildTeamInput = {
|
|
38960
|
+
relationships: Array<GraphStoreDeleteParentTeamHasChildTeamRelationshipInput>;
|
|
38961
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38962
|
+
};
|
|
38963
|
+
export declare type GraphStoreDeleteParentTeamHasChildTeamPayload = Payload & {
|
|
38964
|
+
__typename?: 'GraphStoreDeleteParentTeamHasChildTeamPayload';
|
|
38965
|
+
errors?: Maybe<Array<MutationError>>;
|
|
38966
|
+
success: Scalars['Boolean']['output'];
|
|
38967
|
+
};
|
|
38968
|
+
export declare type GraphStoreDeleteParentTeamHasChildTeamRelationshipInput = {
|
|
38969
|
+
from: Scalars['ID']['input'];
|
|
38970
|
+
to: Scalars['ID']['input'];
|
|
38971
|
+
};
|
|
37617
38972
|
export declare type GraphStoreDeleteProjectAssociatedOpsgenieTeamInput = {
|
|
37618
38973
|
relationships: Array<GraphStoreDeleteProjectAssociatedOpsgenieTeamRelationshipInput>;
|
|
37619
38974
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -41753,6 +43108,7 @@ export declare type GraphStoreMutation = {
|
|
|
41753
43108
|
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
41754
43109
|
createLoomVideoHasConfluencePage?: Maybe<GraphStoreCreateLoomVideoHasConfluencePagePayload>;
|
|
41755
43110
|
createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
43111
|
+
createParentTeamHasChildTeam?: Maybe<GraphStoreCreateParentTeamHasChildTeamPayload>;
|
|
41756
43112
|
createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
|
|
41757
43113
|
createProjectAssociatedToSecurityContainer?: Maybe<GraphStoreCreateProjectAssociatedToSecurityContainerPayload>;
|
|
41758
43114
|
createProjectDisassociatedRepo?: Maybe<GraphStoreCreateProjectDisassociatedRepoPayload>;
|
|
@@ -41779,6 +43135,7 @@ export declare type GraphStoreMutation = {
|
|
|
41779
43135
|
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
41780
43136
|
deleteLoomVideoHasConfluencePage?: Maybe<GraphStoreDeleteLoomVideoHasConfluencePagePayload>;
|
|
41781
43137
|
deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
43138
|
+
deleteParentTeamHasChildTeam?: Maybe<GraphStoreDeleteParentTeamHasChildTeamPayload>;
|
|
41782
43139
|
deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
|
|
41783
43140
|
deleteProjectAssociatedToSecurityContainer?: Maybe<GraphStoreDeleteProjectAssociatedToSecurityContainerPayload>;
|
|
41784
43141
|
deleteProjectDisassociatedRepo?: Maybe<GraphStoreDeleteProjectDisassociatedRepoPayload>;
|
|
@@ -41824,6 +43181,9 @@ export declare type GraphStoreMutationCreateLoomVideoHasConfluencePageArgs = {
|
|
|
41824
43181
|
export declare type GraphStoreMutationCreateMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
41825
43182
|
input?: InputMaybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
41826
43183
|
};
|
|
43184
|
+
export declare type GraphStoreMutationCreateParentTeamHasChildTeamArgs = {
|
|
43185
|
+
input?: InputMaybe<GraphStoreCreateParentTeamHasChildTeamInput>;
|
|
43186
|
+
};
|
|
41827
43187
|
export declare type GraphStoreMutationCreateProjectAssociatedOpsgenieTeamArgs = {
|
|
41828
43188
|
input?: InputMaybe<GraphStoreCreateProjectAssociatedOpsgenieTeamInput>;
|
|
41829
43189
|
};
|
|
@@ -41902,6 +43262,9 @@ export declare type GraphStoreMutationDeleteLoomVideoHasConfluencePageArgs = {
|
|
|
41902
43262
|
export declare type GraphStoreMutationDeleteMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
41903
43263
|
input?: InputMaybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
41904
43264
|
};
|
|
43265
|
+
export declare type GraphStoreMutationDeleteParentTeamHasChildTeamArgs = {
|
|
43266
|
+
input?: InputMaybe<GraphStoreDeleteParentTeamHasChildTeamInput>;
|
|
43267
|
+
};
|
|
41905
43268
|
export declare type GraphStoreMutationDeleteProjectAssociatedOpsgenieTeamArgs = {
|
|
41906
43269
|
input?: InputMaybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamInput>;
|
|
41907
43270
|
};
|
|
@@ -41974,6 +43337,12 @@ export declare type GraphStoreParentIssueHasChildIssueSortInput = {
|
|
|
41974
43337
|
export declare type GraphStoreParentMessageHasChildMessageSortInput = {
|
|
41975
43338
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41976
43339
|
};
|
|
43340
|
+
export declare type GraphStoreParentTeamHasChildTeamSortInput = {
|
|
43341
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
43342
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
43343
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
43344
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
43345
|
+
};
|
|
41977
43346
|
export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
41978
43347
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41979
43348
|
};
|
|
@@ -45867,6 +47236,38 @@ export declare type GraphStoreSimplifiedParentMessageHasChildMessageInverseEdge
|
|
|
45867
47236
|
};
|
|
45868
47237
|
export declare type GraphStoreSimplifiedParentMessageHasChildMessageInverseUnion = ExternalMessage;
|
|
45869
47238
|
export declare type GraphStoreSimplifiedParentMessageHasChildMessageUnion = ExternalMessage;
|
|
47239
|
+
export declare type GraphStoreSimplifiedParentTeamHasChildTeamConnection = HasPageInfo & HasTotal & {
|
|
47240
|
+
__typename?: 'GraphStoreSimplifiedParentTeamHasChildTeamConnection';
|
|
47241
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentTeamHasChildTeamEdge>>>;
|
|
47242
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
47243
|
+
pageInfo: PageInfo;
|
|
47244
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
47245
|
+
};
|
|
47246
|
+
export declare type GraphStoreSimplifiedParentTeamHasChildTeamEdge = {
|
|
47247
|
+
__typename?: 'GraphStoreSimplifiedParentTeamHasChildTeamEdge';
|
|
47248
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47249
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47250
|
+
id: Scalars['ID']['output'];
|
|
47251
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47252
|
+
node?: Maybe<GraphStoreSimplifiedParentTeamHasChildTeamUnion>;
|
|
47253
|
+
};
|
|
47254
|
+
export declare type GraphStoreSimplifiedParentTeamHasChildTeamInverseConnection = HasPageInfo & HasTotal & {
|
|
47255
|
+
__typename?: 'GraphStoreSimplifiedParentTeamHasChildTeamInverseConnection';
|
|
47256
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentTeamHasChildTeamInverseEdge>>>;
|
|
47257
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
47258
|
+
pageInfo: PageInfo;
|
|
47259
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
47260
|
+
};
|
|
47261
|
+
export declare type GraphStoreSimplifiedParentTeamHasChildTeamInverseEdge = {
|
|
47262
|
+
__typename?: 'GraphStoreSimplifiedParentTeamHasChildTeamInverseEdge';
|
|
47263
|
+
createdAt: Scalars['DateTime']['output'];
|
|
47264
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
47265
|
+
id: Scalars['ID']['output'];
|
|
47266
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
47267
|
+
node?: Maybe<GraphStoreSimplifiedParentTeamHasChildTeamInverseUnion>;
|
|
47268
|
+
};
|
|
47269
|
+
export declare type GraphStoreSimplifiedParentTeamHasChildTeamInverseUnion = TeamV2;
|
|
47270
|
+
export declare type GraphStoreSimplifiedParentTeamHasChildTeamUnion = TeamV2;
|
|
45870
47271
|
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection = HasPageInfo & {
|
|
45871
47272
|
__typename?: 'GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection';
|
|
45872
47273
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaEdge>>>;
|
|
@@ -51888,6 +53289,18 @@ export declare type GrowthUnifiedProfileConfluenceUserActivityContext = {
|
|
|
51888
53289
|
__typename?: 'GrowthUnifiedProfileConfluenceUserActivityContext';
|
|
51889
53290
|
r28PageDwells?: Maybe<Scalars['Int']['output']>;
|
|
51890
53291
|
};
|
|
53292
|
+
export declare type GrowthUnifiedProfileCreateEntitlementProfileInput = {
|
|
53293
|
+
entitlementId: Scalars['ID']['input'];
|
|
53294
|
+
firstProductOnSite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53295
|
+
trial?: InputMaybe<GrowthUnifiedProfileEntitlementContextTrialInput>;
|
|
53296
|
+
};
|
|
53297
|
+
export declare type GrowthUnifiedProfileCreateEntitlementProfileResponse = {
|
|
53298
|
+
__typename?: 'GrowthUnifiedProfileCreateEntitlementProfileResponse';
|
|
53299
|
+
entitlementId: Scalars['ID']['output'];
|
|
53300
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
53301
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
53302
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
53303
|
+
};
|
|
51891
53304
|
export declare type GrowthUnifiedProfileCreateOrgProfileInput = {
|
|
51892
53305
|
orgId: Scalars['ID']['input'];
|
|
51893
53306
|
twcOnboardingContext?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileTwcOnboardingContextInput>>>;
|
|
@@ -51915,6 +53328,23 @@ export declare enum GrowthUnifiedProfileEnterpriseAccountStatus {
|
|
|
51915
53328
|
Platimun = "PLATIMUN",
|
|
51916
53329
|
Silver = "SILVER"
|
|
51917
53330
|
}
|
|
53331
|
+
export declare type GrowthUnifiedProfileEntitlementContextTrialInput = {
|
|
53332
|
+
trialEndTimeStamp?: InputMaybe<Scalars['Float']['input']>;
|
|
53333
|
+
trialTrigger?: InputMaybe<GrowthUnifiedProfileTrialTrigger>;
|
|
53334
|
+
trialType?: InputMaybe<GrowthUnifiedProfileTrialType>;
|
|
53335
|
+
};
|
|
53336
|
+
export declare type GrowthUnifiedProfileEntitlementContextTrialResult = {
|
|
53337
|
+
__typename?: 'GrowthUnifiedProfileEntitlementContextTrialResult';
|
|
53338
|
+
trialEndTimeStamp?: Maybe<Scalars['Float']['output']>;
|
|
53339
|
+
trialTrigger?: Maybe<GrowthUnifiedProfileTrialTrigger>;
|
|
53340
|
+
trialType?: Maybe<GrowthUnifiedProfileTrialType>;
|
|
53341
|
+
};
|
|
53342
|
+
export declare type GrowthUnifiedProfileEntitlementProfileResult = {
|
|
53343
|
+
__typename?: 'GrowthUnifiedProfileEntitlementProfileResult';
|
|
53344
|
+
entitlementId: Scalars['ID']['output'];
|
|
53345
|
+
firstProductOnSite?: Maybe<Scalars['Boolean']['output']>;
|
|
53346
|
+
lastKnownTrial?: Maybe<GrowthUnifiedProfileEntitlementContextTrialResult>;
|
|
53347
|
+
};
|
|
51918
53348
|
export declare enum GrowthUnifiedProfileEntityType {
|
|
51919
53349
|
AjsAnonymousUser = "AJS_ANONYMOUS_USER",
|
|
51920
53350
|
AtlassianAccount = "ATLASSIAN_ACCOUNT",
|
|
@@ -52214,6 +53644,7 @@ export declare enum GrowthUnifiedProfileTeamType {
|
|
|
52214
53644
|
}
|
|
52215
53645
|
export declare type GrowthUnifiedProfileTrialContext = {
|
|
52216
53646
|
__typename?: 'GrowthUnifiedProfileTrialContext';
|
|
53647
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
52217
53648
|
paymentDetailsOnFile?: Maybe<Scalars['Boolean']['output']>;
|
|
52218
53649
|
trialEndTimeStamp?: Maybe<Scalars['String']['output']>;
|
|
52219
53650
|
trialTrigger?: Maybe<GrowthUnifiedProfileTrialTrigger>;
|
|
@@ -52304,6 +53735,7 @@ export declare enum GrowthUnifiedProfileUserIdType {
|
|
|
52304
53735
|
export declare type GrowthUnifiedProfileUserProfile = {
|
|
52305
53736
|
__typename?: 'GrowthUnifiedProfileUserProfile';
|
|
52306
53737
|
domainType?: Maybe<GrowthUnifiedProfileDomainType>;
|
|
53738
|
+
jobFunction?: Maybe<Scalars['String']['output']>;
|
|
52307
53739
|
teamType?: Maybe<Scalars['String']['output']>;
|
|
52308
53740
|
userType?: Maybe<GrowthUnifiedProfileEntryType>;
|
|
52309
53741
|
};
|
|
@@ -52367,6 +53799,7 @@ export declare type HamsEntitlement = CommerceEntitlement & {
|
|
|
52367
53799
|
entitlementGroupId?: Maybe<Scalars['String']['output']>;
|
|
52368
53800
|
entitlementId?: Maybe<Scalars['String']['output']>;
|
|
52369
53801
|
entitlementMigrationEvaluation?: Maybe<HamsEntitlementMigrationEvaluation>;
|
|
53802
|
+
entitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
52370
53803
|
entitlementSource?: Maybe<Scalars['String']['output']>;
|
|
52371
53804
|
experienceCapabilities?: Maybe<HamsEntitlementExperienceCapabilities>;
|
|
52372
53805
|
futureEdition?: Maybe<Scalars['String']['output']>;
|
|
@@ -52535,6 +53968,7 @@ export declare type HelpCenter = Node & {
|
|
|
52535
53968
|
pages?: Maybe<Array<Maybe<HelpCenterPage>>>;
|
|
52536
53969
|
permissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
|
|
52537
53970
|
portals?: Maybe<HelpCenterPortals>;
|
|
53971
|
+
productEntityImages?: Maybe<Array<HelpCenterProductEntityImages>>;
|
|
52538
53972
|
projectMappingData?: Maybe<HelpCenterProjectMappingData>;
|
|
52539
53973
|
siteDefaultLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
52540
53974
|
slug?: Maybe<Scalars['String']['output']>;
|
|
@@ -52551,6 +53985,9 @@ export declare type HelpCenterPortalsArgs = {
|
|
|
52551
53985
|
portalsFilter?: InputMaybe<HelpCenterPortalFilter>;
|
|
52552
53986
|
sortOrder?: InputMaybe<HelpCenterPortalsSortOrder>;
|
|
52553
53987
|
};
|
|
53988
|
+
export declare type HelpCenterProductEntityImagesArgs = {
|
|
53989
|
+
filter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
53990
|
+
};
|
|
52554
53991
|
export declare enum HelpCenterAccessControlType {
|
|
52555
53992
|
External = "EXTERNAL",
|
|
52556
53993
|
GroupBased = "GROUP_BASED",
|
|
@@ -52756,7 +54193,8 @@ export declare type HelpCenterMediaConfig = {
|
|
|
52756
54193
|
};
|
|
52757
54194
|
export declare enum HelpCenterMediaConfigOperationType {
|
|
52758
54195
|
BannerUpload = "BANNER_UPLOAD",
|
|
52759
|
-
LogoUpload = "LOGO_UPLOAD"
|
|
54196
|
+
LogoUpload = "LOGO_UPLOAD",
|
|
54197
|
+
Read = "READ"
|
|
52760
54198
|
}
|
|
52761
54199
|
export declare type HelpCenterMutationApi = {
|
|
52762
54200
|
__typename?: 'HelpCenterMutationApi';
|
|
@@ -52986,6 +54424,21 @@ export declare enum HelpCenterPortalsType {
|
|
|
52986
54424
|
Hidden = "HIDDEN",
|
|
52987
54425
|
Visible = "VISIBLE"
|
|
52988
54426
|
}
|
|
54427
|
+
export declare type HelpCenterProductEntityImageInput = {
|
|
54428
|
+
entityId: Scalars['String']['input'];
|
|
54429
|
+
entityType: HelpCenterProductEntityType;
|
|
54430
|
+
fileId?: InputMaybe<Scalars['String']['input']>;
|
|
54431
|
+
imageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
54432
|
+
};
|
|
54433
|
+
export declare type HelpCenterProductEntityImages = {
|
|
54434
|
+
__typename?: 'HelpCenterProductEntityImages';
|
|
54435
|
+
entityId?: Maybe<Scalars['String']['output']>;
|
|
54436
|
+
entityType?: Maybe<HelpCenterProductEntityType>;
|
|
54437
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
54438
|
+
};
|
|
54439
|
+
export declare enum HelpCenterProductEntityType {
|
|
54440
|
+
KnowledgeCards = "KNOWLEDGE_CARDS"
|
|
54441
|
+
}
|
|
52989
54442
|
export declare type HelpCenterProjectMappingData = {
|
|
52990
54443
|
__typename?: 'HelpCenterProjectMappingData';
|
|
52991
54444
|
projectMapping?: Maybe<Array<HelpCenterProjectMappingEntry>>;
|
|
@@ -53030,6 +54483,7 @@ export declare type HelpCenterQueryApi = {
|
|
|
53030
54483
|
helpCentersByProjectId?: Maybe<HelpCenterQueryResultConnection>;
|
|
53031
54484
|
helpCentersConfig?: Maybe<HelpCentersConfigResult>;
|
|
53032
54485
|
helpCentersList?: Maybe<HelpCentersListQueryResult>;
|
|
54486
|
+
hubMediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
53033
54487
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
53034
54488
|
};
|
|
53035
54489
|
export declare type HelpCenterQueryApiHelpCenterByHoistedProjectIdArgs = {
|
|
@@ -53090,6 +54544,10 @@ export declare type HelpCenterQueryApiHelpCentersListArgs = {
|
|
|
53090
54544
|
sortOrder: HelpCenterSortOrder;
|
|
53091
54545
|
workspaceAri: Scalars['ID']['input'];
|
|
53092
54546
|
};
|
|
54547
|
+
export declare type HelpCenterQueryApiHubMediaConfigArgs = {
|
|
54548
|
+
ari: Scalars['ID']['input'];
|
|
54549
|
+
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
54550
|
+
};
|
|
53093
54551
|
export declare type HelpCenterQueryApiMediaConfigArgs = {
|
|
53094
54552
|
helpCenterAri: Scalars['ID']['input'];
|
|
53095
54553
|
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
@@ -53201,6 +54659,7 @@ export declare type HelpCenterUpdateInput = {
|
|
|
53201
54659
|
helpCenterBranding?: InputMaybe<HelpCenterBrandingInput>;
|
|
53202
54660
|
homePageLayout?: InputMaybe<HelpCenterHomePageLayoutInput>;
|
|
53203
54661
|
name?: InputMaybe<HelpCenterNameInput>;
|
|
54662
|
+
productEntityImages?: InputMaybe<Array<HelpCenterProductEntityImageInput>>;
|
|
53204
54663
|
slug?: InputMaybe<Scalars['String']['input']>;
|
|
53205
54664
|
virtualAgentEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53206
54665
|
};
|
|
@@ -58435,6 +59894,13 @@ export declare type JiraCreateGlobalCustomFieldPayload = Payload & {
|
|
|
58435
59894
|
field?: Maybe<JiraIssueFieldConfig>;
|
|
58436
59895
|
success: Scalars['Boolean']['output'];
|
|
58437
59896
|
};
|
|
59897
|
+
export declare type JiraCreateGlobalCustomFieldV2Input = {
|
|
59898
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
59899
|
+
formatConfig?: InputMaybe<JiraFieldFormatConfigInput>;
|
|
59900
|
+
name: Scalars['String']['input'];
|
|
59901
|
+
options?: InputMaybe<Array<JiraCreateGlobalCustomFieldOptionInput>>;
|
|
59902
|
+
typeKey: Scalars['String']['input'];
|
|
59903
|
+
};
|
|
58438
59904
|
export declare type JiraCreateIssueSearchFormattingRuleInput = {
|
|
58439
59905
|
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
58440
59906
|
expression: JiraFormattingRuleExpressionInput;
|
|
@@ -58442,11 +59908,11 @@ export declare type JiraCreateIssueSearchFormattingRuleInput = {
|
|
|
58442
59908
|
formattingColor?: InputMaybe<JiraColorInput>;
|
|
58443
59909
|
viewId: Scalars['ID']['input'];
|
|
58444
59910
|
};
|
|
58445
|
-
export declare type JiraCreateIssueSearchFormattingRulePayload = {
|
|
59911
|
+
export declare type JiraCreateIssueSearchFormattingRulePayload = Payload & {
|
|
58446
59912
|
__typename?: 'JiraCreateIssueSearchFormattingRulePayload';
|
|
58447
|
-
createdRule?: Maybe<JiraFormattingRule>;
|
|
58448
59913
|
errors?: Maybe<Array<MutationError>>;
|
|
58449
59914
|
success: Scalars['Boolean']['output'];
|
|
59915
|
+
view?: Maybe<JiraView>;
|
|
58450
59916
|
};
|
|
58451
59917
|
export declare type JiraCreateIssueTypeInput = {
|
|
58452
59918
|
avatarId: Scalars['String']['input'];
|
|
@@ -58965,11 +60431,11 @@ export declare type JiraDeleteIssueSearchFormattingRuleInput = {
|
|
|
58965
60431
|
ruleId: Scalars['ID']['input'];
|
|
58966
60432
|
viewId: Scalars['ID']['input'];
|
|
58967
60433
|
};
|
|
58968
|
-
export declare type JiraDeleteIssueSearchFormattingRulePayload = {
|
|
60434
|
+
export declare type JiraDeleteIssueSearchFormattingRulePayload = Payload & {
|
|
58969
60435
|
__typename?: 'JiraDeleteIssueSearchFormattingRulePayload';
|
|
58970
|
-
deletedRuleId?: Maybe<Scalars['ID']['output']>;
|
|
58971
60436
|
errors?: Maybe<Array<MutationError>>;
|
|
58972
60437
|
success: Scalars['Boolean']['output'];
|
|
60438
|
+
view?: Maybe<JiraView>;
|
|
58973
60439
|
};
|
|
58974
60440
|
export declare type JiraDeleteIssueTypeInput = {
|
|
58975
60441
|
cloudId: Scalars['ID']['input'];
|
|
@@ -59445,6 +60911,18 @@ export declare type JiraDismissInContextConfigPromptPayload = Payload & {
|
|
|
59445
60911
|
errors?: Maybe<Array<MutationError>>;
|
|
59446
60912
|
success: Scalars['Boolean']['output'];
|
|
59447
60913
|
};
|
|
60914
|
+
export declare type JiraDragAndDropBoardViewIssueInput = {
|
|
60915
|
+
destinationCellId?: InputMaybe<Scalars['ID']['input']>;
|
|
60916
|
+
id: Scalars['ID']['input'];
|
|
60917
|
+
rank?: InputMaybe<JiraIssueRankInput>;
|
|
60918
|
+
transitionId?: InputMaybe<Scalars['Int']['input']>;
|
|
60919
|
+
};
|
|
60920
|
+
export declare type JiraDragAndDropBoardViewIssuePayload = {
|
|
60921
|
+
__typename?: 'JiraDragAndDropBoardViewIssuePayload';
|
|
60922
|
+
errors?: Maybe<Array<MutationError>>;
|
|
60923
|
+
issue?: Maybe<JiraIssue>;
|
|
60924
|
+
success: Scalars['Boolean']['output'];
|
|
60925
|
+
};
|
|
59448
60926
|
export declare type JiraDuplicateJourneyConfigurationInput = {
|
|
59449
60927
|
id: Scalars['ID']['input'];
|
|
59450
60928
|
};
|
|
@@ -59869,6 +61347,15 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
59869
61347
|
Allow = "ALLOW",
|
|
59870
61348
|
Exclude = "EXCLUDE"
|
|
59871
61349
|
}
|
|
61350
|
+
export declare type JiraFieldScheme = Node & {
|
|
61351
|
+
__typename?: 'JiraFieldScheme';
|
|
61352
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
61353
|
+
fieldsCount?: Maybe<Scalars['Int']['output']>;
|
|
61354
|
+
id: Scalars['ID']['output'];
|
|
61355
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
61356
|
+
projectsCount?: Maybe<Scalars['Int']['output']>;
|
|
61357
|
+
schemeId?: Maybe<Scalars['ID']['output']>;
|
|
61358
|
+
};
|
|
59872
61359
|
export declare type JiraFieldSchemeAssociatedField = {
|
|
59873
61360
|
__typename?: 'JiraFieldSchemeAssociatedField';
|
|
59874
61361
|
field?: Maybe<JiraField>;
|
|
@@ -59886,19 +61373,29 @@ export declare type JiraFieldSchemeAssociatedFieldsEdge = {
|
|
|
59886
61373
|
node?: Maybe<JiraFieldSchemeAssociatedField>;
|
|
59887
61374
|
};
|
|
59888
61375
|
export declare type JiraFieldSchemeAssociatedFieldsInput = {
|
|
59889
|
-
|
|
61376
|
+
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
59890
61377
|
schemeId: Scalars['ID']['input'];
|
|
59891
61378
|
};
|
|
59892
61379
|
export declare type JiraFieldSchemeAvailableFieldsInput = {
|
|
59893
|
-
|
|
61380
|
+
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
59894
61381
|
schemeId: Scalars['ID']['input'];
|
|
59895
61382
|
};
|
|
59896
61383
|
export declare type JiraFieldSchemePayload = Payload & {
|
|
59897
61384
|
__typename?: 'JiraFieldSchemePayload';
|
|
59898
61385
|
errors?: Maybe<Array<MutationError>>;
|
|
59899
|
-
fieldScheme?: Maybe<
|
|
61386
|
+
fieldScheme?: Maybe<JiraFieldScheme>;
|
|
59900
61387
|
success: Scalars['Boolean']['output'];
|
|
59901
61388
|
};
|
|
61389
|
+
export declare type JiraFieldSchemesConnection = {
|
|
61390
|
+
__typename?: 'JiraFieldSchemesConnection';
|
|
61391
|
+
edges?: Maybe<Array<Maybe<JiraFieldSchemesEdge>>>;
|
|
61392
|
+
pageInfo: PageInfo;
|
|
61393
|
+
};
|
|
61394
|
+
export declare type JiraFieldSchemesEdge = {
|
|
61395
|
+
__typename?: 'JiraFieldSchemesEdge';
|
|
61396
|
+
cursor: Scalars['String']['output'];
|
|
61397
|
+
node?: Maybe<JiraFieldScheme>;
|
|
61398
|
+
};
|
|
59902
61399
|
export declare type JiraFieldSchemesInput = {
|
|
59903
61400
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
59904
61401
|
};
|
|
@@ -60121,6 +61618,10 @@ export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
60121
61618
|
type: Scalars['String']['output'];
|
|
60122
61619
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
60123
61620
|
};
|
|
61621
|
+
export declare enum JiraFlagOperations {
|
|
61622
|
+
Add = "ADD",
|
|
61623
|
+
Remove = "REMOVE"
|
|
61624
|
+
}
|
|
60124
61625
|
export declare type JiraForgeAppEgressDeclaration = {
|
|
60125
61626
|
__typename?: 'JiraForgeAppEgressDeclaration';
|
|
60126
61627
|
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -61080,6 +62581,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
61080
62581
|
updatedField?: Maybe<JiraDateTimePickerField>;
|
|
61081
62582
|
votesField?: Maybe<JiraVotesField>;
|
|
61082
62583
|
watchesField?: Maybe<JiraWatchesField>;
|
|
62584
|
+
webLinks?: Maybe<JiraWebRemoteIssueLinkConnection>;
|
|
61083
62585
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
61084
62586
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
61085
62587
|
};
|
|
@@ -61266,6 +62768,12 @@ export declare type JiraIssueStartDateViewFieldArgs = {
|
|
|
61266
62768
|
export declare type JiraIssueSuggestFieldValuesArgs = {
|
|
61267
62769
|
filterProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
61268
62770
|
};
|
|
62771
|
+
export declare type JiraIssueWebLinksArgs = {
|
|
62772
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
62773
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
62774
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
62775
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
62776
|
+
};
|
|
61269
62777
|
export declare type JiraIssueWorklogsArgs = {
|
|
61270
62778
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61271
62779
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -61843,6 +63351,7 @@ export declare type JiraIssueFieldsInput = {
|
|
|
61843
63351
|
priority?: InputMaybe<JiraPriorityInput>;
|
|
61844
63352
|
projectFields?: InputMaybe<Array<JiraProjectFieldInput>>;
|
|
61845
63353
|
resolution?: InputMaybe<JiraResolutionInput>;
|
|
63354
|
+
respondersField?: InputMaybe<JiraServiceManagementRespondersFieldInput>;
|
|
61846
63355
|
richTextFields?: InputMaybe<Array<JiraRichTextFieldInput>>;
|
|
61847
63356
|
security?: InputMaybe<JiraSecurityLevelInput>;
|
|
61848
63357
|
singleGroupPickerFields?: InputMaybe<Array<JiraSingleGroupPickerFieldInput>>;
|
|
@@ -62196,6 +63705,10 @@ export declare type JiraIssuePullRequests = {
|
|
|
62196
63705
|
export declare type JiraIssuePullRequestsInput = {
|
|
62197
63706
|
filterLegacy?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62198
63707
|
};
|
|
63708
|
+
export declare type JiraIssueRankInput = {
|
|
63709
|
+
afterIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
63710
|
+
beforeIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
63711
|
+
};
|
|
62199
63712
|
export declare type JiraIssueRemoteIssueLink = {
|
|
62200
63713
|
__typename?: 'JiraIssueRemoteIssueLink';
|
|
62201
63714
|
href?: Maybe<Scalars['String']['output']>;
|
|
@@ -63180,6 +64693,9 @@ export declare enum JiraJqlAutocompleteType {
|
|
|
63180
64693
|
User = "USER",
|
|
63181
64694
|
Version = "VERSION"
|
|
63182
64695
|
}
|
|
64696
|
+
export declare type JiraJqlBacklogInput = {
|
|
64697
|
+
boardId: Scalars['Long']['input'];
|
|
64698
|
+
};
|
|
63183
64699
|
export declare type JiraJqlBoardInput = {
|
|
63184
64700
|
boardId: Scalars['Long']['input'];
|
|
63185
64701
|
swimlaneStrategy?: InputMaybe<JiraBoardSwimlaneStrategy>;
|
|
@@ -63611,6 +65127,7 @@ export declare type JiraJqlResolutionFieldValue = JiraJqlFieldValue & {
|
|
|
63611
65127
|
resolution?: Maybe<JiraResolution>;
|
|
63612
65128
|
};
|
|
63613
65129
|
export declare type JiraJqlScopeInput = {
|
|
65130
|
+
backlog?: InputMaybe<JiraJqlBacklogInput>;
|
|
63614
65131
|
board?: InputMaybe<JiraJqlBoardInput>;
|
|
63615
65132
|
plan?: InputMaybe<JiraJqlPlanInput>;
|
|
63616
65133
|
};
|
|
@@ -64447,6 +65964,7 @@ export declare type JiraMutation = {
|
|
|
64447
65964
|
updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
|
|
64448
65965
|
updateEntitlementField?: Maybe<JiraServiceManagementEntitlementFieldPayload>;
|
|
64449
65966
|
updateFieldSetsView?: Maybe<JiraFieldSetsViewPayload>;
|
|
65967
|
+
updateFlagField?: Maybe<JiraUpdateFlagFieldPayload>;
|
|
64450
65968
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
64451
65969
|
updateFormattingRule?: Maybe<JiraUpdateFormattingRulePayload>;
|
|
64452
65970
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
@@ -64525,6 +66043,7 @@ export declare type JiraMutation = {
|
|
|
64525
66043
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
64526
66044
|
updateVotesField?: Maybe<JiraVotesFieldPayload>;
|
|
64527
66045
|
updateWatchesField?: Maybe<JiraWatchesFieldPayload>;
|
|
66046
|
+
updateWorklog?: Maybe<JiraUpdateWorklogPayload>;
|
|
64528
66047
|
userPreferences?: Maybe<JiraUserPreferencesMutation>;
|
|
64529
66048
|
};
|
|
64530
66049
|
export declare type JiraMutationAddFieldsToProjectArgs = {
|
|
@@ -64977,6 +66496,9 @@ export declare type JiraMutationUpdateFieldSetsViewArgs = {
|
|
|
64977
66496
|
id: Scalars['ID']['input'];
|
|
64978
66497
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
64979
66498
|
};
|
|
66499
|
+
export declare type JiraMutationUpdateFlagFieldArgs = {
|
|
66500
|
+
input: JiraUpdateFlagFieldInput;
|
|
66501
|
+
};
|
|
64980
66502
|
export declare type JiraMutationUpdateForgeObjectFieldArgs = {
|
|
64981
66503
|
input: JiraUpdateForgeObjectFieldInput;
|
|
64982
66504
|
};
|
|
@@ -65230,6 +66752,9 @@ export declare type JiraMutationUpdateVotesFieldArgs = {
|
|
|
65230
66752
|
export declare type JiraMutationUpdateWatchesFieldArgs = {
|
|
65231
66753
|
input: JiraUpdateWatchesFieldInput;
|
|
65232
66754
|
};
|
|
66755
|
+
export declare type JiraMutationUpdateWorklogArgs = {
|
|
66756
|
+
input: JiraUpdateWorklogInput;
|
|
66757
|
+
};
|
|
65233
66758
|
export declare type JiraMutationUserPreferencesArgs = {
|
|
65234
66759
|
cloudId: Scalars['ID']['input'];
|
|
65235
66760
|
};
|
|
@@ -65408,7 +66933,6 @@ export declare type JiraNotificationPreferences = {
|
|
|
65408
66933
|
issueUpdated?: Maybe<JiraNotificationPreference>;
|
|
65409
66934
|
mentionsCombined?: Maybe<JiraNotificationPreference>;
|
|
65410
66935
|
miscellaneousIssueEventCombined?: Maybe<JiraNotificationPreference>;
|
|
65411
|
-
projectInviterNotification?: Maybe<JiraNotificationPreference>;
|
|
65412
66936
|
worklogCombined?: Maybe<JiraNotificationPreference>;
|
|
65413
66937
|
};
|
|
65414
66938
|
export declare type JiraNotificationProjectPreferenceConnection = HasPageInfo & HasTotal & {
|
|
@@ -65435,7 +66959,6 @@ export declare enum JiraNotificationType {
|
|
|
65435
66959
|
IssueUpdated = "ISSUE_UPDATED",
|
|
65436
66960
|
MentionsCombined = "MENTIONS_COMBINED",
|
|
65437
66961
|
MiscellaneousIssueEventCombined = "MISCELLANEOUS_ISSUE_EVENT_COMBINED",
|
|
65438
|
-
ProjectInviterNotification = "PROJECT_INVITER_NOTIFICATION",
|
|
65439
66962
|
WorklogCombined = "WORKLOG_COMBINED"
|
|
65440
66963
|
}
|
|
65441
66964
|
export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
@@ -65899,6 +67422,17 @@ export declare type JiraOrderFormattingRulePayloadRulesArgs = {
|
|
|
65899
67422
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65900
67423
|
scope: Scalars['ID']['input'];
|
|
65901
67424
|
};
|
|
67425
|
+
export declare type JiraOrderIssueSearchFormattingRuleInput = {
|
|
67426
|
+
afterRuleId?: InputMaybe<Scalars['ID']['input']>;
|
|
67427
|
+
ruleId: Scalars['ID']['input'];
|
|
67428
|
+
viewId: Scalars['ID']['input'];
|
|
67429
|
+
};
|
|
67430
|
+
export declare type JiraOrderIssueSearchFormattingRulePayload = Payload & {
|
|
67431
|
+
__typename?: 'JiraOrderIssueSearchFormattingRulePayload';
|
|
67432
|
+
errors?: Maybe<Array<MutationError>>;
|
|
67433
|
+
success: Scalars['Boolean']['output'];
|
|
67434
|
+
view?: Maybe<JiraView>;
|
|
67435
|
+
};
|
|
65902
67436
|
export declare enum JiraOrganizationApprovalLocation {
|
|
65903
67437
|
DuringInstallationFlow = "DURING_INSTALLATION_FLOW",
|
|
65904
67438
|
DuringProvisioning = "DURING_PROVISIONING",
|
|
@@ -66671,6 +68205,13 @@ export declare type JiraPriorityFieldPayload = Payload & {
|
|
|
66671
68205
|
export declare type JiraPriorityInput = {
|
|
66672
68206
|
priorityId: Scalars['ID']['input'];
|
|
66673
68207
|
};
|
|
68208
|
+
export declare type JiraProductDiscoveryIssueEventPayload = {
|
|
68209
|
+
__typename?: 'JiraProductDiscoveryIssueEventPayload';
|
|
68210
|
+
actionerAccountId?: Maybe<Scalars['String']['output']>;
|
|
68211
|
+
project: JiraIssueStreamHubEventPayloadProject;
|
|
68212
|
+
resource: Scalars['String']['output'];
|
|
68213
|
+
type: Scalars['String']['output'];
|
|
68214
|
+
};
|
|
66674
68215
|
export declare enum JiraProductEnum {
|
|
66675
68216
|
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
66676
68217
|
JiraServiceManagement = "JIRA_SERVICE_MANAGEMENT",
|
|
@@ -69253,6 +70794,8 @@ export declare type JiraReport = {
|
|
|
69253
70794
|
description?: Maybe<Scalars['String']['output']>;
|
|
69254
70795
|
id: Scalars['ID']['output'];
|
|
69255
70796
|
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
70797
|
+
isNotApplicableDesc?: Maybe<Scalars['String']['output']>;
|
|
70798
|
+
isNotApplicableReason?: Maybe<Scalars['String']['output']>;
|
|
69256
70799
|
key?: Maybe<Scalars['String']['output']>;
|
|
69257
70800
|
name?: Maybe<Scalars['String']['output']>;
|
|
69258
70801
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -70817,6 +72360,9 @@ export declare type JiraServiceManagementResponderEdge = {
|
|
|
70817
72360
|
cursor: Scalars['String']['output'];
|
|
70818
72361
|
node?: Maybe<JiraServiceManagementResponder>;
|
|
70819
72362
|
};
|
|
72363
|
+
export declare type JiraServiceManagementResponderFieldInput = {
|
|
72364
|
+
responderId: Scalars['ID']['input'];
|
|
72365
|
+
};
|
|
70820
72366
|
export declare type JiraServiceManagementRespondersField = JiraIssueField & JiraIssueFieldConfiguration & Node & {
|
|
70821
72367
|
__typename?: 'JiraServiceManagementRespondersField';
|
|
70822
72368
|
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -70840,6 +72386,11 @@ export declare type JiraServiceManagementRespondersFieldRespondersConnectionArgs
|
|
|
70840
72386
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
70841
72387
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
70842
72388
|
};
|
|
72389
|
+
export declare type JiraServiceManagementRespondersFieldInput = {
|
|
72390
|
+
bulkEditMultiSelectFieldOption?: InputMaybe<JiraBulkEditMultiSelectFieldOptions>;
|
|
72391
|
+
fieldId: Scalars['ID']['input'];
|
|
72392
|
+
responders: Array<JiraServiceManagementResponderFieldInput>;
|
|
72393
|
+
};
|
|
70843
72394
|
export declare type JiraServiceManagementSelectPreviewField = JiraServiceManagementRequestTypeFieldCommon & {
|
|
70844
72395
|
__typename?: 'JiraServiceManagementSelectPreviewField';
|
|
70845
72396
|
description?: Maybe<Scalars['String']['output']>;
|
|
@@ -72037,6 +73588,7 @@ export declare type JiraSubscription = {
|
|
|
72037
73588
|
onIssueUpdatedByProjectsNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
72038
73589
|
onJirtBoardIssueSubscription?: Maybe<JiraJirtBoardScoreIssueEventPayload>;
|
|
72039
73590
|
onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
|
|
73591
|
+
onJpdIssueSubscription?: Maybe<JiraProductDiscoveryIssueEventPayload>;
|
|
72040
73592
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
72041
73593
|
onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
72042
73594
|
onJwmIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
@@ -72131,6 +73683,12 @@ export declare type JiraSubscriptionOnJirtIssueSubscriptionArgs = {
|
|
|
72131
73683
|
events: Array<Scalars['String']['input']>;
|
|
72132
73684
|
projectIds: Array<Scalars['String']['input']>;
|
|
72133
73685
|
};
|
|
73686
|
+
export declare type JiraSubscriptionOnJpdIssueSubscriptionArgs = {
|
|
73687
|
+
atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
73688
|
+
cloudId: Scalars['ID']['input'];
|
|
73689
|
+
events: Array<Scalars['String']['input']>;
|
|
73690
|
+
projectIds: Array<Scalars['String']['input']>;
|
|
73691
|
+
};
|
|
72134
73692
|
export declare type JiraSubscriptionOnJwmFieldMutationArgs = {
|
|
72135
73693
|
siteId: Scalars['ID']['input'];
|
|
72136
73694
|
};
|
|
@@ -72462,6 +74020,7 @@ export declare type JiraTimelineField = JiraIssueField & JiraIssueFieldConfigura
|
|
|
72462
74020
|
};
|
|
72463
74021
|
export declare type JiraTimelineIssueLinkOperationPayload = {
|
|
72464
74022
|
__typename?: 'JiraTimelineIssueLinkOperationPayload';
|
|
74023
|
+
dependencyId?: Maybe<Scalars['ID']['output']>;
|
|
72465
74024
|
errors?: Maybe<Array<MutationError>>;
|
|
72466
74025
|
inwardItem?: Maybe<JiraIssue>;
|
|
72467
74026
|
outwardItem?: Maybe<JiraIssue>;
|
|
@@ -72705,6 +74264,25 @@ export declare type JiraUpdateFieldSetPreferencesInput = {
|
|
|
72705
74264
|
isFrozen?: InputMaybe<Scalars['Boolean']['input']>;
|
|
72706
74265
|
width?: InputMaybe<Scalars['Int']['input']>;
|
|
72707
74266
|
};
|
|
74267
|
+
export declare type JiraUpdateFlagCommentInput = {
|
|
74268
|
+
content?: InputMaybe<JiraAdfInput>;
|
|
74269
|
+
property?: InputMaybe<Scalars['String']['input']>;
|
|
74270
|
+
visibility?: InputMaybe<Scalars['String']['input']>;
|
|
74271
|
+
};
|
|
74272
|
+
export declare type JiraUpdateFlagFieldInput = {
|
|
74273
|
+
comment?: InputMaybe<JiraUpdateFlagCommentInput>;
|
|
74274
|
+
id: Scalars['ID']['input'];
|
|
74275
|
+
operation: JiraUpdateFlagFieldOperationInput;
|
|
74276
|
+
};
|
|
74277
|
+
export declare type JiraUpdateFlagFieldOperationInput = {
|
|
74278
|
+
operation: JiraFlagOperations;
|
|
74279
|
+
};
|
|
74280
|
+
export declare type JiraUpdateFlagFieldPayload = {
|
|
74281
|
+
__typename?: 'JiraUpdateFlagFieldPayload';
|
|
74282
|
+
errors?: Maybe<Array<MutationError>>;
|
|
74283
|
+
field?: Maybe<JiraFlagField>;
|
|
74284
|
+
success: Scalars['Boolean']['output'];
|
|
74285
|
+
};
|
|
72708
74286
|
export declare type JiraUpdateForgeMultipleGroupPickerFieldInput = {
|
|
72709
74287
|
id: Scalars['ID']['input'];
|
|
72710
74288
|
operations: Array<JiraForgeMultipleGroupPickerFieldOperationInput>;
|
|
@@ -72774,16 +74352,16 @@ export declare type JiraUpdateIssueLinkRelationshipTypeFieldPayload = Payload &
|
|
|
72774
74352
|
};
|
|
72775
74353
|
export declare type JiraUpdateIssueSearchFormattingRuleInput = {
|
|
72776
74354
|
expression?: InputMaybe<JiraFormattingRuleExpressionInput>;
|
|
72777
|
-
|
|
74355
|
+
formattingArea?: InputMaybe<JiraFormattingArea>;
|
|
72778
74356
|
formattingColor?: InputMaybe<JiraColorInput>;
|
|
72779
74357
|
ruleId: Scalars['ID']['input'];
|
|
72780
74358
|
viewId: Scalars['ID']['input'];
|
|
72781
74359
|
};
|
|
72782
|
-
export declare type JiraUpdateIssueSearchFormattingRulePayload = {
|
|
74360
|
+
export declare type JiraUpdateIssueSearchFormattingRulePayload = Payload & {
|
|
72783
74361
|
__typename?: 'JiraUpdateIssueSearchFormattingRulePayload';
|
|
72784
74362
|
errors?: Maybe<Array<MutationError>>;
|
|
72785
74363
|
success: Scalars['Boolean']['output'];
|
|
72786
|
-
|
|
74364
|
+
view?: Maybe<JiraView>;
|
|
72787
74365
|
};
|
|
72788
74366
|
export declare type JiraUpdateIssueTransitionInput = {
|
|
72789
74367
|
comment?: InputMaybe<JiraIssueTransitionCommentInput>;
|
|
@@ -73125,6 +74703,21 @@ export declare type JiraUpdateWorklogFieldInputForIssueTransitions = {
|
|
|
73125
74703
|
id: Scalars['ID']['input'];
|
|
73126
74704
|
operation: JiraWorklogFieldOperationInputForIssueTransitions;
|
|
73127
74705
|
};
|
|
74706
|
+
export declare type JiraUpdateWorklogInput = {
|
|
74707
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
74708
|
+
issue?: InputMaybe<Scalars['ID']['input']>;
|
|
74709
|
+
remainingEstimate?: InputMaybe<JiraEstimateInput>;
|
|
74710
|
+
startedTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
74711
|
+
timeSpent?: InputMaybe<JiraEstimateInput>;
|
|
74712
|
+
workDescription?: InputMaybe<JiraAdfInput>;
|
|
74713
|
+
};
|
|
74714
|
+
export declare type JiraUpdateWorklogPayload = {
|
|
74715
|
+
__typename?: 'JiraUpdateWorklogPayload';
|
|
74716
|
+
errors?: Maybe<Array<MutationError>>;
|
|
74717
|
+
field?: Maybe<JiraTimeTrackingField>;
|
|
74718
|
+
success: Scalars['Boolean']['output'];
|
|
74719
|
+
worklog?: Maybe<JiraWorklog>;
|
|
74720
|
+
};
|
|
73128
74721
|
export declare type JiraUpsertIssueTypePayload = Payload & {
|
|
73129
74722
|
__typename?: 'JiraUpsertIssueTypePayload';
|
|
73130
74723
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -73867,6 +75460,7 @@ export declare type JiraVersionUpdateApproverDescriptionPayload = Payload & {
|
|
|
73867
75460
|
};
|
|
73868
75461
|
export declare type JiraVersionUpdateApproverStatusInput = {
|
|
73869
75462
|
approverId: Scalars['ID']['input'];
|
|
75463
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
73870
75464
|
status?: InputMaybe<JiraVersionApproverStatus>;
|
|
73871
75465
|
};
|
|
73872
75466
|
export declare type JiraVersionUpdateApproverStatusPayload = Payload & {
|
|
@@ -74036,12 +75630,27 @@ export declare enum JiraWatchesOperations {
|
|
|
74036
75630
|
}
|
|
74037
75631
|
export declare type JiraWebRemoteIssueLink = {
|
|
74038
75632
|
__typename?: 'JiraWebRemoteIssueLink';
|
|
75633
|
+
applicationName?: Maybe<Scalars['String']['output']>;
|
|
75634
|
+
applicationType?: Maybe<Scalars['String']['output']>;
|
|
74039
75635
|
href?: Maybe<Scalars['String']['output']>;
|
|
74040
75636
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
74041
75637
|
id: Scalars['ID']['output'];
|
|
75638
|
+
relationship?: Maybe<Scalars['String']['output']>;
|
|
75639
|
+
resolved?: Maybe<Scalars['Boolean']['output']>;
|
|
74042
75640
|
summary?: Maybe<Scalars['String']['output']>;
|
|
74043
75641
|
title?: Maybe<Scalars['String']['output']>;
|
|
74044
75642
|
};
|
|
75643
|
+
export declare type JiraWebRemoteIssueLinkConnection = {
|
|
75644
|
+
__typename?: 'JiraWebRemoteIssueLinkConnection';
|
|
75645
|
+
edges?: Maybe<Array<Maybe<JiraWebRemoteIssueLinkEdge>>>;
|
|
75646
|
+
pageInfo: PageInfo;
|
|
75647
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
75648
|
+
};
|
|
75649
|
+
export declare type JiraWebRemoteIssueLinkEdge = {
|
|
75650
|
+
__typename?: 'JiraWebRemoteIssueLinkEdge';
|
|
75651
|
+
cursor: Scalars['String']['output'];
|
|
75652
|
+
node?: Maybe<JiraWebRemoteIssueLink>;
|
|
75653
|
+
};
|
|
74045
75654
|
export declare type JiraWorkCategory = {
|
|
74046
75655
|
__typename?: 'JiraWorkCategory';
|
|
74047
75656
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -77359,7 +78968,6 @@ export declare type MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput =
|
|
|
77359
78968
|
frameworkId: Scalars['ID']['input'];
|
|
77360
78969
|
};
|
|
77361
78970
|
export declare type MarketplaceConsoleAppSoftwareVersionInput = {
|
|
77362
|
-
appStatusPageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
77363
78971
|
bonTermsSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77364
78972
|
buildNumber?: InputMaybe<Scalars['String']['input']>;
|
|
77365
78973
|
communityEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -77368,31 +78976,24 @@ export declare type MarketplaceConsoleAppSoftwareVersionInput = {
|
|
|
77368
78976
|
documentationUrl?: InputMaybe<Scalars['String']['input']>;
|
|
77369
78977
|
editionDetails?: InputMaybe<MarketplaceConsoleEditionDetailsInput>;
|
|
77370
78978
|
eulaUrl?: InputMaybe<Scalars['String']['input']>;
|
|
77371
|
-
forumsUrl?: InputMaybe<Scalars['String']['input']>;
|
|
77372
78979
|
frameworkDetails: MarketplaceConsoleAppSoftwareVersionFrameworkDetailsInput;
|
|
77373
78980
|
heroImageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
77374
78981
|
highlights?: InputMaybe<Array<MarketplaceConsoleListingHighLightInput>>;
|
|
77375
78982
|
isBeta?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77376
78983
|
isSupported?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77377
|
-
issueTrackerUrl?: InputMaybe<Scalars['String']['input']>;
|
|
77378
78984
|
learnMoreUrl?: InputMaybe<Scalars['String']['input']>;
|
|
77379
78985
|
licenseType?: InputMaybe<MarketplaceConsoleAppSoftwareVersionLicenseTypeId>;
|
|
77380
78986
|
moreDetails?: InputMaybe<Scalars['String']['input']>;
|
|
77381
78987
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
77382
78988
|
partnerSpecificTerms?: InputMaybe<Scalars['String']['input']>;
|
|
77383
78989
|
paymentModel?: InputMaybe<MarketplaceConsolePaymentModel>;
|
|
77384
|
-
privacyUrl?: InputMaybe<Scalars['String']['input']>;
|
|
77385
78990
|
productId?: InputMaybe<Scalars['String']['input']>;
|
|
77386
78991
|
purchaseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
77387
78992
|
releaseNotes?: InputMaybe<Scalars['String']['input']>;
|
|
77388
78993
|
releaseSummary?: InputMaybe<Scalars['String']['input']>;
|
|
77389
78994
|
screenshots?: InputMaybe<Array<MarketplaceConsoleListingScreenshotInput>>;
|
|
77390
|
-
segmentWriteKey?: InputMaybe<Scalars['String']['input']>;
|
|
77391
78995
|
sourceCodeLicenseUrl?: InputMaybe<Scalars['String']['input']>;
|
|
77392
78996
|
status: MarketplaceConsoleVersionType;
|
|
77393
|
-
statusAfterApproval?: InputMaybe<MarketplaceConsoleLegacyMongoStatus>;
|
|
77394
|
-
summary?: InputMaybe<Scalars['String']['input']>;
|
|
77395
|
-
supportTicketSystemUrl?: InputMaybe<Scalars['String']['input']>;
|
|
77396
78997
|
versionNumber?: InputMaybe<Scalars['String']['input']>;
|
|
77397
78998
|
youtubeId?: InputMaybe<Scalars['String']['input']>;
|
|
77398
78999
|
};
|
|
@@ -77688,7 +79289,9 @@ export declare type MarketplaceConsoleEdition = {
|
|
|
77688
79289
|
__typename?: 'MarketplaceConsoleEdition';
|
|
77689
79290
|
features: Array<MarketplaceConsoleFeature>;
|
|
77690
79291
|
id: Scalars['ID']['output'];
|
|
79292
|
+
isDecoupled?: Maybe<Scalars['Boolean']['output']>;
|
|
77691
79293
|
isDefault: Scalars['Boolean']['output'];
|
|
79294
|
+
parentProduct?: Maybe<Scalars['String']['output']>;
|
|
77692
79295
|
pricingPlan: MarketplaceConsolePricingPlan;
|
|
77693
79296
|
type: MarketplaceConsoleEditionType;
|
|
77694
79297
|
};
|
|
@@ -77698,7 +79301,9 @@ export declare type MarketplaceConsoleEditionDetailsInput = {
|
|
|
77698
79301
|
export declare type MarketplaceConsoleEditionInput = {
|
|
77699
79302
|
features: Array<MarketplaceConsoleFeatureInput>;
|
|
77700
79303
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
79304
|
+
isDecoupled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77701
79305
|
isDefault: Scalars['Boolean']['input'];
|
|
79306
|
+
parentProduct?: InputMaybe<Scalars['String']['input']>;
|
|
77702
79307
|
pricingPlan: MarketplaceConsolePricingPlanInput;
|
|
77703
79308
|
type: MarketplaceConsoleEditionType;
|
|
77704
79309
|
};
|
|
@@ -78202,6 +79807,7 @@ export declare type MarketplaceConsolePricingPlanInput = {
|
|
|
78202
79807
|
tieredPricing: Array<MarketplaceConsolePricingItemInput>;
|
|
78203
79808
|
};
|
|
78204
79809
|
export declare enum MarketplaceConsolePricingPlanStatus {
|
|
79810
|
+
AtNotice = "AT_NOTICE",
|
|
78205
79811
|
Draft = "DRAFT",
|
|
78206
79812
|
Live = "LIVE",
|
|
78207
79813
|
Pending = "PENDING"
|
|
@@ -79580,6 +81186,16 @@ export declare type MenusLookAndFeel = {
|
|
|
79580
81186
|
hoverOrFocus?: Maybe<Array<Maybe<MapOfStringToString>>>;
|
|
79581
81187
|
};
|
|
79582
81188
|
export declare type MercuryActivityHistoryData = AppUser | AtlassianAccountUser | CustomerUser | JiraIssue | TownsquareGoal | TownsquareProject;
|
|
81189
|
+
export declare type MercuryAddTagsToProposalInput = {
|
|
81190
|
+
changeProposalId: Scalars['ID']['input'];
|
|
81191
|
+
tagIds: Array<Scalars['ID']['input']>;
|
|
81192
|
+
};
|
|
81193
|
+
export declare type MercuryAddTagsToProposalPayload = Payload & {
|
|
81194
|
+
__typename?: 'MercuryAddTagsToProposalPayload';
|
|
81195
|
+
errors?: Maybe<Array<MutationError>>;
|
|
81196
|
+
success: Scalars['Boolean']['output'];
|
|
81197
|
+
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
81198
|
+
};
|
|
79583
81199
|
export declare type MercuryAddWatcherToFocusAreaInput = {
|
|
79584
81200
|
cloudId: Scalars['ID']['input'];
|
|
79585
81201
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -79768,6 +81384,7 @@ export declare type MercuryChangeProposalImpact = {
|
|
|
79768
81384
|
};
|
|
79769
81385
|
export declare type MercuryChangeProposalPositionDetails = {
|
|
79770
81386
|
__typename?: 'MercuryChangeProposalPositionDetails';
|
|
81387
|
+
positionsImpacted?: Maybe<Scalars['Int']['output']>;
|
|
79771
81388
|
positionsMoved?: Maybe<Scalars['Int']['output']>;
|
|
79772
81389
|
positionsRequested?: Maybe<Scalars['Int']['output']>;
|
|
79773
81390
|
};
|
|
@@ -79808,12 +81425,15 @@ export declare type MercuryChangeProposalSummaryByStatus = {
|
|
|
79808
81425
|
export declare type MercuryChangeProposalSummaryForStrategicEvent = {
|
|
79809
81426
|
__typename?: 'MercuryChangeProposalSummaryForStrategicEvent';
|
|
79810
81427
|
changeProposal?: Maybe<MercuryChangeProposalSummaryByStatus>;
|
|
81428
|
+
impactedPositions?: Maybe<MercuryImpactedPositionSummaryByChangeProposalStatus>;
|
|
81429
|
+
movedPositions?: Maybe<MercuryMovedPositionSummaryByChangeProposalStatus>;
|
|
79811
81430
|
newFunds?: Maybe<MercuryNewFundSummaryByChangeProposalStatus>;
|
|
79812
81431
|
newPositions?: Maybe<MercuryNewPositionSummaryByChangeProposalStatus>;
|
|
79813
81432
|
strategicEventId: Scalars['ID']['output'];
|
|
79814
81433
|
};
|
|
79815
81434
|
export declare type MercuryChangeProposalUpdate = {
|
|
79816
81435
|
__typename?: 'MercuryChangeProposalUpdate';
|
|
81436
|
+
event?: Maybe<Scalars['String']['output']>;
|
|
79817
81437
|
id: Scalars['ID']['output'];
|
|
79818
81438
|
updatedFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
79819
81439
|
};
|
|
@@ -80015,6 +81635,15 @@ export declare type MercuryDeleteChangeProposalCommentPayload = Payload & {
|
|
|
80015
81635
|
errors?: Maybe<Array<MutationError>>;
|
|
80016
81636
|
success: Scalars['Boolean']['output'];
|
|
80017
81637
|
};
|
|
81638
|
+
export declare type MercuryDeleteChangeProposalGoalLinksInput = {
|
|
81639
|
+
changeProposalAri: Scalars['ID']['input'];
|
|
81640
|
+
goalAris: Array<Scalars['ID']['input']>;
|
|
81641
|
+
};
|
|
81642
|
+
export declare type MercuryDeleteChangeProposalGoalLinksPayload = Payload & {
|
|
81643
|
+
__typename?: 'MercuryDeleteChangeProposalGoalLinksPayload';
|
|
81644
|
+
errors?: Maybe<Array<MutationError>>;
|
|
81645
|
+
success: Scalars['Boolean']['output'];
|
|
81646
|
+
};
|
|
80018
81647
|
export declare type MercuryDeleteChangeProposalInput = {
|
|
80019
81648
|
id: Scalars['ID']['input'];
|
|
80020
81649
|
};
|
|
@@ -80567,6 +82196,11 @@ export declare type MercuryHumanResourcesAllocation = {
|
|
|
80567
82196
|
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
80568
82197
|
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
80569
82198
|
};
|
|
82199
|
+
export declare type MercuryImpactedPositionSummaryByChangeProposalStatus = {
|
|
82200
|
+
__typename?: 'MercuryImpactedPositionSummaryByChangeProposalStatus';
|
|
82201
|
+
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
82202
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
82203
|
+
};
|
|
80570
82204
|
export declare type MercuryJiraAlignProjectType = {
|
|
80571
82205
|
__typename?: 'MercuryJiraAlignProjectType';
|
|
80572
82206
|
displayName: Scalars['String']['output'];
|
|
@@ -80617,6 +82251,15 @@ export declare type MercuryLinkFocusAreasToPortfolioPayload = Payload & {
|
|
|
80617
82251
|
errors?: Maybe<Array<MutationError>>;
|
|
80618
82252
|
success: Scalars['Boolean']['output'];
|
|
80619
82253
|
};
|
|
82254
|
+
export declare type MercuryLinkGoalsToChangeProposalInput = {
|
|
82255
|
+
changeProposalAri: Scalars['ID']['input'];
|
|
82256
|
+
goalAris: Array<Scalars['ID']['input']>;
|
|
82257
|
+
};
|
|
82258
|
+
export declare type MercuryLinkGoalsToChangeProposalPayload = Payload & {
|
|
82259
|
+
__typename?: 'MercuryLinkGoalsToChangeProposalPayload';
|
|
82260
|
+
errors?: Maybe<Array<MutationError>>;
|
|
82261
|
+
success: Scalars['Boolean']['output'];
|
|
82262
|
+
};
|
|
80620
82263
|
export declare type MercuryLinkGoalsToFocusAreaInput = {
|
|
80621
82264
|
atlasGoalAris: Array<Scalars['String']['input']>;
|
|
80622
82265
|
focusAreaAri: Scalars['String']['input'];
|
|
@@ -80690,6 +82333,11 @@ export declare type MercuryMovePositionsChangeInput = {
|
|
|
80690
82333
|
sourceFocusAreaId: Scalars['ID']['input'];
|
|
80691
82334
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
80692
82335
|
};
|
|
82336
|
+
export declare type MercuryMovedPositionSummaryByChangeProposalStatus = {
|
|
82337
|
+
__typename?: 'MercuryMovedPositionSummaryByChangeProposalStatus';
|
|
82338
|
+
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
82339
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
82340
|
+
};
|
|
80693
82341
|
export declare type MercuryMutationApi = {
|
|
80694
82342
|
__typename?: 'MercuryMutationApi';
|
|
80695
82343
|
addWatcherToFocusArea?: Maybe<MercuryAddWatcherToFocusAreaPayload>;
|
|
@@ -80849,18 +82497,6 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
|
|
|
80849
82497
|
countByStatus?: Maybe<Array<Maybe<MercuryNewPositionCountByStatus>>>;
|
|
80850
82498
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
80851
82499
|
};
|
|
80852
|
-
export declare type MercuryOnCreateChangeProposalPayload = Payload & {
|
|
80853
|
-
__typename?: 'MercuryOnCreateChangeProposalPayload';
|
|
80854
|
-
errors?: Maybe<Array<MutationError>>;
|
|
80855
|
-
id: Scalars['ID']['output'];
|
|
80856
|
-
success: Scalars['Boolean']['output'];
|
|
80857
|
-
};
|
|
80858
|
-
export declare type MercuryOnDeleteChangeProposalPayload = Payload & {
|
|
80859
|
-
__typename?: 'MercuryOnDeleteChangeProposalPayload';
|
|
80860
|
-
errors?: Maybe<Array<MutationError>>;
|
|
80861
|
-
id: Scalars['ID']['output'];
|
|
80862
|
-
success: Scalars['Boolean']['output'];
|
|
80863
|
-
};
|
|
80864
82500
|
export declare type MercuryOnUpdateChangeProposalsPayload = Payload & {
|
|
80865
82501
|
__typename?: 'MercuryOnUpdateChangeProposalsPayload';
|
|
80866
82502
|
changeProposals?: Maybe<Array<MercuryChangeProposalUpdate>>;
|
|
@@ -80960,6 +82596,11 @@ export declare type MercuryPositionChangeSummaryFields = {
|
|
|
80960
82596
|
deltaByStatus?: Maybe<Array<Maybe<MercuryPositionDeltaByStatus>>>;
|
|
80961
82597
|
deltaTotal?: Maybe<Scalars['Int']['output']>;
|
|
80962
82598
|
};
|
|
82599
|
+
export declare type MercuryPositionCountByStatus = {
|
|
82600
|
+
__typename?: 'MercuryPositionCountByStatus';
|
|
82601
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
82602
|
+
status?: Maybe<MercuryChangeProposalStatus>;
|
|
82603
|
+
};
|
|
80963
82604
|
export declare type MercuryPositionDeltaByStatus = {
|
|
80964
82605
|
__typename?: 'MercuryPositionDeltaByStatus';
|
|
80965
82606
|
positionDelta?: Maybe<Scalars['Int']['output']>;
|
|
@@ -81211,6 +82852,7 @@ export declare type MercuryQueryApi = {
|
|
|
81211
82852
|
focusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
81212
82853
|
focusAreaHierarchy?: Maybe<Array<Maybe<MercuryFocusAreaHierarchyNode>>>;
|
|
81213
82854
|
focusAreaStatusTransitions?: Maybe<Array<MercuryFocusAreaStatusTransition>>;
|
|
82855
|
+
focusAreaStatusUpdatesByAris?: Maybe<Array<MercuryFocusAreaStatusUpdate>>;
|
|
81214
82856
|
focusAreaTeamAllocations?: Maybe<MercuryFocusAreaTeamAllocationAggregationConnection>;
|
|
81215
82857
|
focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
|
|
81216
82858
|
focusAreaTypesByAris?: Maybe<Array<Maybe<MercuryFocusAreaType>>>;
|
|
@@ -81268,6 +82910,9 @@ export declare type MercuryQueryApiFocusAreaHierarchyArgs = {
|
|
|
81268
82910
|
export declare type MercuryQueryApiFocusAreaStatusTransitionsArgs = {
|
|
81269
82911
|
cloudId: Scalars['ID']['input'];
|
|
81270
82912
|
};
|
|
82913
|
+
export declare type MercuryQueryApiFocusAreaStatusUpdatesByArisArgs = {
|
|
82914
|
+
aris: Array<Scalars['ID']['input']>;
|
|
82915
|
+
};
|
|
81271
82916
|
export declare type MercuryQueryApiFocusAreaTeamAllocationsArgs = {
|
|
81272
82917
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
81273
82918
|
cloudId: Scalars['ID']['input'];
|
|
@@ -81351,6 +82996,16 @@ export declare type MercuryRecreatePortfolioFocusAreasInput = {
|
|
|
81351
82996
|
id: Scalars['ID']['input'];
|
|
81352
82997
|
rankVersion?: InputMaybe<Scalars['String']['input']>;
|
|
81353
82998
|
};
|
|
82999
|
+
export declare type MercuryRemoveTagsFromProposalInput = {
|
|
83000
|
+
changeProposalId: Scalars['ID']['input'];
|
|
83001
|
+
tagIds: Array<Scalars['ID']['input']>;
|
|
83002
|
+
};
|
|
83003
|
+
export declare type MercuryRemoveTagsFromProposalPayload = Payload & {
|
|
83004
|
+
__typename?: 'MercuryRemoveTagsFromProposalPayload';
|
|
83005
|
+
errors?: Maybe<Array<MutationError>>;
|
|
83006
|
+
success: Scalars['Boolean']['output'];
|
|
83007
|
+
updatedChangeProposal?: Maybe<MercuryChangeProposal>;
|
|
83008
|
+
};
|
|
81354
83009
|
export declare type MercuryRemoveWatcherFromFocusAreaInput = {
|
|
81355
83010
|
cloudId: Scalars['ID']['input'];
|
|
81356
83011
|
focusAreaId: Scalars['ID']['input'];
|
|
@@ -81530,16 +83185,20 @@ export declare type MercuryStrategicEventStatusTransitions = {
|
|
|
81530
83185
|
};
|
|
81531
83186
|
export declare type MercuryStrategicEventsMutationApi = {
|
|
81532
83187
|
__typename?: 'MercuryStrategicEventsMutationApi';
|
|
83188
|
+
addTagsToChangeProposal?: Maybe<MercuryAddTagsToProposalPayload>;
|
|
81533
83189
|
createChangeProposal?: Maybe<MercuryCreateChangeProposalPayload>;
|
|
81534
83190
|
createChangeProposalComment?: Maybe<MercuryCreateChangeProposalCommentPayload>;
|
|
81535
83191
|
createStrategicEvent?: Maybe<MercuryCreateStrategicEventPayload>;
|
|
81536
83192
|
createStrategicEventComment?: Maybe<MercuryCreateStrategicEventCommentPayload>;
|
|
81537
83193
|
deleteChangeProposal?: Maybe<MercuryDeleteChangeProposalPayload>;
|
|
81538
83194
|
deleteChangeProposalComment?: Maybe<MercuryDeleteChangeProposalCommentPayload>;
|
|
83195
|
+
deleteChangeProposalGoalLinks?: Maybe<MercuryDeleteChangeProposalGoalLinksPayload>;
|
|
81539
83196
|
deleteChanges?: Maybe<MercuryDeleteChangesPayload>;
|
|
81540
83197
|
deleteStrategicEventComment?: Maybe<MercuryDeleteStrategicEventCommentPayload>;
|
|
83198
|
+
linkGoalsToChangeProposal?: Maybe<MercuryLinkGoalsToChangeProposalPayload>;
|
|
81541
83199
|
moveChanges?: Maybe<MercuryMoveChangesPayload>;
|
|
81542
83200
|
proposeChanges?: Maybe<MercuryProposeChangesPayload>;
|
|
83201
|
+
removeTagsFromChangeProposal?: Maybe<MercuryRemoveTagsFromProposalPayload>;
|
|
81543
83202
|
transitionChangeProposalStatus?: Maybe<MercuryTransitionChangeProposalPayload>;
|
|
81544
83203
|
transitionStrategicEventStatus?: Maybe<MercuryTransitionStrategicEventPayload>;
|
|
81545
83204
|
updateChangeProposalComment?: Maybe<MercuryUpdateChangeProposalCommentPayload>;
|
|
@@ -81559,6 +83218,9 @@ export declare type MercuryStrategicEventsMutationApi = {
|
|
|
81559
83218
|
updateStrategicEventOwner?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
81560
83219
|
updateStrategicEventTargetDate?: Maybe<MercuryUpdateStrategicEventPayload>;
|
|
81561
83220
|
};
|
|
83221
|
+
export declare type MercuryStrategicEventsMutationApiAddTagsToChangeProposalArgs = {
|
|
83222
|
+
input: MercuryAddTagsToProposalInput;
|
|
83223
|
+
};
|
|
81562
83224
|
export declare type MercuryStrategicEventsMutationApiCreateChangeProposalArgs = {
|
|
81563
83225
|
input: MercuryCreateChangeProposalInput;
|
|
81564
83226
|
};
|
|
@@ -81577,18 +83239,27 @@ export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalArgs =
|
|
|
81577
83239
|
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalCommentArgs = {
|
|
81578
83240
|
input: MercuryDeleteChangeProposalCommentInput;
|
|
81579
83241
|
};
|
|
83242
|
+
export declare type MercuryStrategicEventsMutationApiDeleteChangeProposalGoalLinksArgs = {
|
|
83243
|
+
input: MercuryDeleteChangeProposalGoalLinksInput;
|
|
83244
|
+
};
|
|
81580
83245
|
export declare type MercuryStrategicEventsMutationApiDeleteChangesArgs = {
|
|
81581
83246
|
input?: InputMaybe<MercuryDeleteChangesInput>;
|
|
81582
83247
|
};
|
|
81583
83248
|
export declare type MercuryStrategicEventsMutationApiDeleteStrategicEventCommentArgs = {
|
|
81584
83249
|
input: MercuryDeleteStrategicEventCommentInput;
|
|
81585
83250
|
};
|
|
83251
|
+
export declare type MercuryStrategicEventsMutationApiLinkGoalsToChangeProposalArgs = {
|
|
83252
|
+
input: MercuryLinkGoalsToChangeProposalInput;
|
|
83253
|
+
};
|
|
81586
83254
|
export declare type MercuryStrategicEventsMutationApiMoveChangesArgs = {
|
|
81587
83255
|
input: MercuryMoveChangesInput;
|
|
81588
83256
|
};
|
|
81589
83257
|
export declare type MercuryStrategicEventsMutationApiProposeChangesArgs = {
|
|
81590
83258
|
input: MercuryProposeChangesInput;
|
|
81591
83259
|
};
|
|
83260
|
+
export declare type MercuryStrategicEventsMutationApiRemoveTagsFromChangeProposalArgs = {
|
|
83261
|
+
input: MercuryRemoveTagsFromProposalInput;
|
|
83262
|
+
};
|
|
81592
83263
|
export declare type MercuryStrategicEventsMutationApiTransitionChangeProposalStatusArgs = {
|
|
81593
83264
|
input: MercuryTransitionChangeProposalStatusInput;
|
|
81594
83265
|
};
|
|
@@ -81750,18 +83421,9 @@ export declare type MercuryStrategicEventsQueryApiStrategicEventsSearchArgs = {
|
|
|
81750
83421
|
};
|
|
81751
83422
|
export declare type MercurySubscriptionApi = {
|
|
81752
83423
|
__typename?: 'MercurySubscriptionApi';
|
|
81753
|
-
onCreateChangeProposal?: Maybe<MercuryOnCreateChangeProposalPayload>;
|
|
81754
|
-
onDeleteChangeProposal?: Maybe<MercuryOnDeleteChangeProposalPayload>;
|
|
81755
83424
|
onUpdateChangeProposals?: Maybe<MercuryOnUpdateChangeProposalsPayload>;
|
|
81756
83425
|
onUpdateStrategicEvent?: Maybe<MercuryOnUpdateStrategicEventPayload>;
|
|
81757
83426
|
};
|
|
81758
|
-
export declare type MercurySubscriptionApiOnCreateChangeProposalArgs = {
|
|
81759
|
-
strategicEventId: Scalars['ID']['input'];
|
|
81760
|
-
};
|
|
81761
|
-
export declare type MercurySubscriptionApiOnDeleteChangeProposalArgs = {
|
|
81762
|
-
id: Scalars['ID']['input'];
|
|
81763
|
-
strategicEventId: Scalars['ID']['input'];
|
|
81764
|
-
};
|
|
81765
83427
|
export declare type MercurySubscriptionApiOnUpdateChangeProposalsArgs = {
|
|
81766
83428
|
strategicEventId: Scalars['ID']['input'];
|
|
81767
83429
|
};
|
|
@@ -82357,7 +84019,13 @@ export declare type Mutation = {
|
|
|
82357
84019
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
82358
84020
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
82359
84021
|
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
84022
|
+
assetsDM_configureDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
84023
|
+
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
82360
84024
|
assetsDM_dataSource?: Maybe<AssetsDmDataSourceResponse>;
|
|
84025
|
+
assetsDM_dataSourceCleansingRulesConfigure?: Maybe<AssetsDmDataSourceCleansingRulesConfigureResponse>;
|
|
84026
|
+
assetsDM_dataSourceRunMerge?: Maybe<AssetsDmDataSourceRunMergeResponse>;
|
|
84027
|
+
assetsDM_dataSourceRunTransform?: Maybe<AssetsDmDataSourceRunTransformResponse>;
|
|
84028
|
+
assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
|
|
82361
84029
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
82362
84030
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
82363
84031
|
attachDanglingComment?: Maybe<Comment>;
|
|
@@ -82387,6 +84055,7 @@ export declare type Mutation = {
|
|
|
82387
84055
|
bulkUnarchivePages?: Maybe<BulkArchivePagePayload>;
|
|
82388
84056
|
bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
|
|
82389
84057
|
bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
|
|
84058
|
+
ccp?: Maybe<CcpMutationApi>;
|
|
82390
84059
|
channelPlatform_assignAgentToContact?: Maybe<ChannelPlatformMutationStatus>;
|
|
82391
84060
|
channelPlatform_createAttendee?: Maybe<ChannelPlatformConnectionData>;
|
|
82392
84061
|
channelPlatform_createMeetingDetails?: Maybe<ChannelPlatformMeeting>;
|
|
@@ -82399,6 +84068,7 @@ export declare type Mutation = {
|
|
|
82399
84068
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
82400
84069
|
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
82401
84070
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
84071
|
+
confluence_convertNote?: Maybe<ConfluenceConvertNotePayload>;
|
|
82402
84072
|
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
82403
84073
|
confluence_createCsvExportTask?: Maybe<ConfluenceCreateCsvExportTaskPayload>;
|
|
82404
84074
|
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
@@ -82428,6 +84098,7 @@ export declare type Mutation = {
|
|
|
82428
84098
|
confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
|
|
82429
84099
|
confluence_unwatchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
82430
84100
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
84101
|
+
confluence_updateCalendarView?: Maybe<ConfluenceUpdateCalendarViewPayload>;
|
|
82431
84102
|
confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
|
|
82432
84103
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
82433
84104
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
@@ -82580,10 +84251,16 @@ export declare type Mutation = {
|
|
|
82580
84251
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
82581
84252
|
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
82582
84253
|
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
84254
|
+
goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
|
|
84255
|
+
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
82583
84256
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
82584
84257
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
82585
84258
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
84259
|
+
graphIntegration_mcpAdminManagementRegisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementRegisterMcpServerPayload>;
|
|
84260
|
+
graphIntegration_mcpAdminManagementUnregisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload>;
|
|
84261
|
+
graphIntegration_mcpAdminManagementUpdateMcpToolConfiguration?: Maybe<GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationPayload>;
|
|
82586
84262
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
84263
|
+
growthUnifiedProfile_createEntitlementProfile?: Maybe<GrowthUnifiedProfileCreateEntitlementProfileResponse>;
|
|
82587
84264
|
growthUnifiedProfile_createOrgProfile?: Maybe<GrowthUnifiedProfileTwcCreateOrgProfileResponse>;
|
|
82588
84265
|
growthUnifiedProfile_createUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
82589
84266
|
hardDeleteSpace?: Maybe<HardDeleteSpacePayload>;
|
|
@@ -82609,6 +84286,7 @@ export declare type Mutation = {
|
|
|
82609
84286
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
82610
84287
|
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
82611
84288
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
84289
|
+
jira_createGlobalCustomFieldV2?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
82612
84290
|
jira_createIssueSearchFormattingRule?: Maybe<JiraCreateIssueSearchFormattingRulePayload>;
|
|
82613
84291
|
jira_createIssueType?: Maybe<JiraUpsertIssueTypePayload>;
|
|
82614
84292
|
jira_customizeProjectLevelSidebarMenuItem?: Maybe<JiraProjectLevelSidebarMenuCustomization>;
|
|
@@ -82621,7 +84299,9 @@ export declare type Mutation = {
|
|
|
82621
84299
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
82622
84300
|
jira_discardUserCalendarViewConfig?: Maybe<JiraUpdateCalendarViewConfigPayload>;
|
|
82623
84301
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
84302
|
+
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
82624
84303
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
84304
|
+
jira_orderIssueSearchFormattingRule?: Maybe<JiraOrderIssueSearchFormattingRulePayload>;
|
|
82625
84305
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
82626
84306
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
82627
84307
|
jira_removeFieldsFromFieldScheme?: Maybe<JiraRemoveFieldsFromFieldSchemePayload>;
|
|
@@ -82713,7 +84393,9 @@ export declare type Mutation = {
|
|
|
82713
84393
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
82714
84394
|
projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
|
|
82715
84395
|
projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
|
|
84396
|
+
projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
|
|
82716
84397
|
projects_removeMember?: Maybe<TownsquareProjectsRemoveMemberPayload>;
|
|
84398
|
+
projects_removeTeamContributors?: Maybe<TownsquareProjectsRemoveTeamContributorsPayload>;
|
|
82717
84399
|
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
82718
84400
|
projects_setWatchingProject?: Maybe<TownsquareProjectsSetWatchingProjectPayload>;
|
|
82719
84401
|
projects_shareProject?: Maybe<TownsquareProjectsShareProjectPayload>;
|
|
@@ -83015,6 +84697,17 @@ export declare type MutationAssetsDm_AutoColumnMappingArgs = {
|
|
|
83015
84697
|
cloudId: Scalars['ID']['input'];
|
|
83016
84698
|
workspaceId: Scalars['ID']['input'];
|
|
83017
84699
|
};
|
|
84700
|
+
export declare type MutationAssetsDm_ConfigureDataSourceMappingArgs = {
|
|
84701
|
+
cloudId: Scalars['ID']['input'];
|
|
84702
|
+
dataSourceId: Scalars['ID']['input'];
|
|
84703
|
+
mappings: Array<AssetsDmDataSourceConfigureMappingInput>;
|
|
84704
|
+
workspaceId: Scalars['ID']['input'];
|
|
84705
|
+
};
|
|
84706
|
+
export declare type MutationAssetsDm_CreateObjectTagArgs = {
|
|
84707
|
+
cloudId: Scalars['ID']['input'];
|
|
84708
|
+
input: AssetsDmObjectTagCreateInput;
|
|
84709
|
+
workspaceId: Scalars['ID']['input'];
|
|
84710
|
+
};
|
|
83018
84711
|
export declare type MutationAssetsDm_DataSourceArgs = {
|
|
83019
84712
|
cloudId: Scalars['ID']['input'];
|
|
83020
84713
|
dataSourceId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -83023,6 +84716,27 @@ export declare type MutationAssetsDm_DataSourceArgs = {
|
|
|
83023
84716
|
operation?: InputMaybe<AssetsDmDataSourceOperationEnum>;
|
|
83024
84717
|
workspaceId: Scalars['ID']['input'];
|
|
83025
84718
|
};
|
|
84719
|
+
export declare type MutationAssetsDm_DataSourceCleansingRulesConfigureArgs = {
|
|
84720
|
+
cleansingRules: Array<AssetsDmDataSourceCleansingRuleInput>;
|
|
84721
|
+
cloudId: Scalars['ID']['input'];
|
|
84722
|
+
dataSourceId: Scalars['ID']['input'];
|
|
84723
|
+
workspaceId: Scalars['ID']['input'];
|
|
84724
|
+
};
|
|
84725
|
+
export declare type MutationAssetsDm_DataSourceRunMergeArgs = {
|
|
84726
|
+
cloudId: Scalars['ID']['input'];
|
|
84727
|
+
dataSourceIds: Array<Scalars['ID']['input']>;
|
|
84728
|
+
workspaceId: Scalars['ID']['input'];
|
|
84729
|
+
};
|
|
84730
|
+
export declare type MutationAssetsDm_DataSourceRunTransformArgs = {
|
|
84731
|
+
cloudId: Scalars['ID']['input'];
|
|
84732
|
+
jobId: Scalars['ID']['input'];
|
|
84733
|
+
workspaceId: Scalars['ID']['input'];
|
|
84734
|
+
};
|
|
84735
|
+
export declare type MutationAssetsDm_DeleteObjectTagArgs = {
|
|
84736
|
+
cloudId: Scalars['ID']['input'];
|
|
84737
|
+
tagId: Scalars['ID']['input'];
|
|
84738
|
+
workspaceId: Scalars['ID']['input'];
|
|
84739
|
+
};
|
|
83026
84740
|
export declare type MutationAssetsDm_GenerateAdapterTokenArgs = {
|
|
83027
84741
|
cloudId: Scalars['ID']['input'];
|
|
83028
84742
|
generateTokenInput: AssetsDmGenerateAdapterTokenInput;
|
|
@@ -83144,6 +84858,9 @@ export declare type MutationClearRestrictionsForFreeArgs = {
|
|
|
83144
84858
|
export declare type MutationCompleteSprintArgs = {
|
|
83145
84859
|
input?: InputMaybe<CompleteSprintInput>;
|
|
83146
84860
|
};
|
|
84861
|
+
export declare type MutationConfluenceArgs = {
|
|
84862
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
84863
|
+
};
|
|
83147
84864
|
export declare type MutationConfluence_AddReactionArgs = {
|
|
83148
84865
|
cloudId: Scalars['ID']['input'];
|
|
83149
84866
|
input: ConfluenceReactionInput;
|
|
@@ -83152,6 +84869,9 @@ export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
|
83152
84869
|
cloudId: Scalars['ID']['input'];
|
|
83153
84870
|
input: Array<InputMaybe<NestedPageInput>>;
|
|
83154
84871
|
};
|
|
84872
|
+
export declare type MutationConfluence_ConvertNoteArgs = {
|
|
84873
|
+
input: ConfluenceConvertNoteInput;
|
|
84874
|
+
};
|
|
83155
84875
|
export declare type MutationConfluence_CopySpaceSecurityConfigurationArgs = {
|
|
83156
84876
|
cloudId: Scalars['ID']['input'];
|
|
83157
84877
|
input: ConfluenceCopySpaceSecurityConfigurationInput;
|
|
@@ -83266,6 +84986,10 @@ export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
|
83266
84986
|
cloudId: Scalars['ID']['input'];
|
|
83267
84987
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
83268
84988
|
};
|
|
84989
|
+
export declare type MutationConfluence_UpdateCalendarViewArgs = {
|
|
84990
|
+
cloudId: Scalars['ID']['input'];
|
|
84991
|
+
input: ConfluenceUpdateCalendarViewInput;
|
|
84992
|
+
};
|
|
83269
84993
|
export declare type MutationConfluence_UpdateContentAccessRequestArgs = {
|
|
83270
84994
|
cloudId: Scalars['ID']['input'];
|
|
83271
84995
|
updateContentAccessRequestInput: ConfluenceUpdateContentAccessRequestInput;
|
|
@@ -83788,6 +85512,12 @@ export declare type MutationGoals_AddGoalTeamLinkArgs = {
|
|
|
83788
85512
|
export declare type MutationGoals_CreateUpdateArgs = {
|
|
83789
85513
|
input?: InputMaybe<TownsquareGoalsCreateUpdateInput>;
|
|
83790
85514
|
};
|
|
85515
|
+
export declare type MutationGoals_DeleteLatestUpdateArgs = {
|
|
85516
|
+
input?: InputMaybe<TownsquareGoalsDeleteLatestUpdateInput>;
|
|
85517
|
+
};
|
|
85518
|
+
export declare type MutationGoals_EditUpdateArgs = {
|
|
85519
|
+
input?: InputMaybe<TownsquareGoalsEditUpdateInput>;
|
|
85520
|
+
};
|
|
83791
85521
|
export declare type MutationGoals_RemoveGoalTeamLinkArgs = {
|
|
83792
85522
|
input?: InputMaybe<TownsquareGoalsRemoveGoalTeamLinkInput>;
|
|
83793
85523
|
};
|
|
@@ -83797,6 +85527,18 @@ export declare type MutationGoals_SetWatchingGoalArgs = {
|
|
|
83797
85527
|
export declare type MutationGrantContentAccessArgs = {
|
|
83798
85528
|
grantContentAccessInput: GrantContentAccessInput;
|
|
83799
85529
|
};
|
|
85530
|
+
export declare type MutationGraphIntegration_McpAdminManagementRegisterMcpServerArgs = {
|
|
85531
|
+
input: GraphIntegrationMcpAdminManagementRegisterMcpServerInput;
|
|
85532
|
+
};
|
|
85533
|
+
export declare type MutationGraphIntegration_McpAdminManagementUnregisterMcpServerArgs = {
|
|
85534
|
+
input: GraphIntegrationMcpAdminManagementUnregisterMcpServerInput;
|
|
85535
|
+
};
|
|
85536
|
+
export declare type MutationGraphIntegration_McpAdminManagementUpdateMcpToolConfigurationArgs = {
|
|
85537
|
+
input: GraphIntegrationMcpAdminManagementUpdateMcpToolConfigurationInput;
|
|
85538
|
+
};
|
|
85539
|
+
export declare type MutationGrowthUnifiedProfile_CreateEntitlementProfileArgs = {
|
|
85540
|
+
profile: GrowthUnifiedProfileCreateEntitlementProfileInput;
|
|
85541
|
+
};
|
|
83800
85542
|
export declare type MutationGrowthUnifiedProfile_CreateOrgProfileArgs = {
|
|
83801
85543
|
profile: GrowthUnifiedProfileCreateOrgProfileInput;
|
|
83802
85544
|
};
|
|
@@ -83864,6 +85606,10 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
83864
85606
|
cloudId: Scalars['ID']['input'];
|
|
83865
85607
|
input: JiraCreateGlobalCustomFieldInput;
|
|
83866
85608
|
};
|
|
85609
|
+
export declare type MutationJira_CreateGlobalCustomFieldV2Args = {
|
|
85610
|
+
cloudId: Scalars['ID']['input'];
|
|
85611
|
+
input: JiraCreateGlobalCustomFieldV2Input;
|
|
85612
|
+
};
|
|
83867
85613
|
export declare type MutationJira_CreateIssueSearchFormattingRuleArgs = {
|
|
83868
85614
|
input: JiraCreateIssueSearchFormattingRuleInput;
|
|
83869
85615
|
};
|
|
@@ -83901,10 +85647,16 @@ export declare type MutationJira_DiscardUserCalendarViewConfigArgs = {
|
|
|
83901
85647
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
83902
85648
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
83903
85649
|
};
|
|
85650
|
+
export declare type MutationJira_DragAndDropBoardViewIssueArgs = {
|
|
85651
|
+
input: JiraDragAndDropBoardViewIssueInput;
|
|
85652
|
+
};
|
|
83904
85653
|
export declare type MutationJira_EditFieldSchemeArgs = {
|
|
83905
85654
|
cloudId: Scalars['ID']['input'];
|
|
83906
85655
|
input: JiraEditFieldSchemeInput;
|
|
83907
85656
|
};
|
|
85657
|
+
export declare type MutationJira_OrderIssueSearchFormattingRuleArgs = {
|
|
85658
|
+
input: JiraOrderIssueSearchFormattingRuleInput;
|
|
85659
|
+
};
|
|
83908
85660
|
export declare type MutationJira_PublishBoardViewConfigArgs = {
|
|
83909
85661
|
input: JiraPublishBoardViewConfigInput;
|
|
83910
85662
|
};
|
|
@@ -84161,9 +85913,15 @@ export declare type MutationProjects_EditLinkArgs = {
|
|
|
84161
85913
|
export declare type MutationProjects_EditUpdateArgs = {
|
|
84162
85914
|
input?: InputMaybe<TownsquareProjectsEditUpdateInput>;
|
|
84163
85915
|
};
|
|
85916
|
+
export declare type MutationProjects_RemoveGoalLinkArgs = {
|
|
85917
|
+
input: TownsquareProjectsRemoveGoalLinkInput;
|
|
85918
|
+
};
|
|
84164
85919
|
export declare type MutationProjects_RemoveMemberArgs = {
|
|
84165
85920
|
input: TownsquareProjectsRemoveMemberInput;
|
|
84166
85921
|
};
|
|
85922
|
+
export declare type MutationProjects_RemoveTeamContributorsArgs = {
|
|
85923
|
+
input: TownsquareProjectsRemoveTeamContributorsInput;
|
|
85924
|
+
};
|
|
84167
85925
|
export declare type MutationProjects_SetDependencyArgs = {
|
|
84168
85926
|
input?: InputMaybe<TownsquareProjectsSetDependencyInput>;
|
|
84169
85927
|
};
|
|
@@ -85036,6 +86794,7 @@ export declare type NoteConnection = {
|
|
|
85036
86794
|
edges?: Maybe<Array<Maybe<NoteEdge>>>;
|
|
85037
86795
|
nodes?: Maybe<Array<Maybe<NoteResponse>>>;
|
|
85038
86796
|
noteInfo: NoteInfo;
|
|
86797
|
+
pageInfo: PageInfo;
|
|
85039
86798
|
};
|
|
85040
86799
|
export declare type NoteEdge = {
|
|
85041
86800
|
__typename?: 'NoteEdge';
|
|
@@ -85062,11 +86821,13 @@ export declare type NoteMutationErrorExtension = {
|
|
|
85062
86821
|
export declare type NoteResponse = {
|
|
85063
86822
|
__typename?: 'NoteResponse';
|
|
85064
86823
|
ari: Scalars['String']['output'];
|
|
86824
|
+
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
85065
86825
|
body?: Maybe<Scalars['String']['output']>;
|
|
85066
86826
|
bodyExcerpt?: Maybe<Scalars['String']['output']>;
|
|
85067
86827
|
collectionName: Scalars['String']['output'];
|
|
85068
86828
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
85069
86829
|
extraProps?: Maybe<Array<Prop>>;
|
|
86830
|
+
id: Scalars['ID']['output'];
|
|
85070
86831
|
isPinned: Scalars['Boolean']['output'];
|
|
85071
86832
|
labels?: Maybe<Array<Scalars['String']['output']>>;
|
|
85072
86833
|
productLink?: Maybe<Scalars['String']['output']>;
|
|
@@ -85085,6 +86846,13 @@ export declare type NotesByCreatorInput = {
|
|
|
85085
86846
|
export declare enum NotesByDateLastModifiedOrder {
|
|
85086
86847
|
DateLastModified = "DATE_LAST_MODIFIED"
|
|
85087
86848
|
}
|
|
86849
|
+
export declare enum NotesContentType {
|
|
86850
|
+
Livedoc = "LIVEDOC",
|
|
86851
|
+
Page = "PAGE"
|
|
86852
|
+
}
|
|
86853
|
+
export declare enum NotesProduct {
|
|
86854
|
+
Confluence = "CONFLUENCE"
|
|
86855
|
+
}
|
|
85088
86856
|
export declare enum NotificationAction {
|
|
85089
86857
|
DontNotify = "DONT_NOTIFY",
|
|
85090
86858
|
Notify = "NOTIFY"
|
|
@@ -87020,7 +88788,6 @@ export declare type PolarisView = {
|
|
|
87020
88788
|
immutable?: Maybe<Scalars['Boolean']['output']>;
|
|
87021
88789
|
jql?: Maybe<Scalars['String']['output']>;
|
|
87022
88790
|
lastCommentsViewedTimestamp?: Maybe<Scalars['String']['output']>;
|
|
87023
|
-
lastViewed?: Maybe<Array<Maybe<PolarisViewLastViewed>>>;
|
|
87024
88791
|
layoutType?: Maybe<PolarisViewLayoutType>;
|
|
87025
88792
|
matrixConfig?: Maybe<PolarisMatrixConfig>;
|
|
87026
88793
|
name: Scalars['String']['output'];
|
|
@@ -87109,12 +88876,6 @@ export declare type PolarisViewFilterValueInput = {
|
|
|
87109
88876
|
text?: InputMaybe<Scalars['String']['input']>;
|
|
87110
88877
|
value?: InputMaybe<Scalars['Float']['input']>;
|
|
87111
88878
|
};
|
|
87112
|
-
export declare type PolarisViewLastViewed = {
|
|
87113
|
-
__typename?: 'PolarisViewLastViewed';
|
|
87114
|
-
aaid: Scalars['String']['output'];
|
|
87115
|
-
account?: Maybe<User>;
|
|
87116
|
-
timestamp: Scalars['String']['output'];
|
|
87117
|
-
};
|
|
87118
88879
|
export declare enum PolarisViewLayoutType {
|
|
87119
88880
|
Compact = "COMPACT",
|
|
87120
88881
|
Detailed = "DETAILED",
|
|
@@ -87570,6 +89331,8 @@ export declare type Query = {
|
|
|
87570
89331
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
87571
89332
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
87572
89333
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
89334
|
+
agentStudio_toolIntegrations?: Maybe<AgentStudioToolIntegrationsConnection>;
|
|
89335
|
+
agentStudio_tools?: Maybe<AgentStudioToolsConnection>;
|
|
87573
89336
|
agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
|
|
87574
89337
|
agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
|
|
87575
89338
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
@@ -87608,12 +89371,16 @@ export declare type Query = {
|
|
|
87608
89371
|
assetsDM_dataSourceConfig?: Maybe<AssetsDmDataSourceConfig>;
|
|
87609
89372
|
assetsDM_dataSourceDetails?: Maybe<AssetsDmDataSourceDetails>;
|
|
87610
89373
|
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
89374
|
+
assetsDM_dataSourceMapping?: Maybe<Array<AssetsDmDataSourceMapping>>;
|
|
89375
|
+
assetsDM_dataSourceMerge?: Maybe<AssetsDmDataSourceMergeResponse>;
|
|
87611
89376
|
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
89377
|
+
assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
|
|
87612
89378
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
87613
89379
|
assetsDM_objectTags?: Maybe<AssetsDmObjectTags>;
|
|
87614
89380
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
87615
89381
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
87616
89382
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
89383
|
+
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
87617
89384
|
assets_objectTypesByIds?: Maybe<Array<Maybe<AssetsObjectType>>>;
|
|
87618
89385
|
assets_objectsByIds?: Maybe<Array<Maybe<AssetsObject>>>;
|
|
87619
89386
|
assets_schemasByIds?: Maybe<Array<Maybe<AssetsSchema>>>;
|
|
@@ -87691,6 +89458,7 @@ export declare type Query = {
|
|
|
87691
89458
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
87692
89459
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
87693
89460
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
89461
|
+
confluence_note?: Maybe<NoteResponse>;
|
|
87694
89462
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
87695
89463
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
87696
89464
|
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
@@ -87761,6 +89529,7 @@ export declare type Query = {
|
|
|
87761
89529
|
countGroupByUser?: Maybe<CountGroupByUser>;
|
|
87762
89530
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
87763
89531
|
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
89532
|
+
cpls_customContributionTargets: Array<CplsCustomContributionTarget>;
|
|
87764
89533
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
87765
89534
|
csmAi_generateCoachingTriggeringCondition: Scalars['String']['output'];
|
|
87766
89535
|
csmAi_getAgentVersion?: Maybe<CsmAiAgentVersionResult>;
|
|
@@ -87872,8 +89641,11 @@ export declare type Query = {
|
|
|
87872
89641
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
87873
89642
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
87874
89643
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
87875
|
-
|
|
87876
|
-
|
|
89644
|
+
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
89645
|
+
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
89646
|
+
graphIntegration_mcpAdminManagementMcpServer?: Maybe<GraphIntegrationMcpAdminManagementMcpServerNode>;
|
|
89647
|
+
graphIntegration_mcpAdminManagementMcpServers?: Maybe<GraphIntegrationMcpAdminManagementMcpServerConnection>;
|
|
89648
|
+
graphIntegration_mcpAdminManagementMcpTools?: Maybe<GraphIntegrationMcpAdminManagementMcpToolConnection>;
|
|
87877
89649
|
graphStore?: Maybe<GraphStore>;
|
|
87878
89650
|
group?: Maybe<Group>;
|
|
87879
89651
|
groupCounts?: Maybe<GraphQlGroupCountsResult>;
|
|
@@ -87882,6 +89654,7 @@ export declare type Query = {
|
|
|
87882
89654
|
groupsUserSpaceAccess?: Maybe<PaginatedGroupList>;
|
|
87883
89655
|
groupsWithContentRestrictions?: Maybe<Array<Maybe<GroupWithRestrictions>>>;
|
|
87884
89656
|
growthRecommendations?: Maybe<GrowthRecQuery>;
|
|
89657
|
+
growthUnifiedProfile_getEntitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
87885
89658
|
growthUnifiedProfile_getOrgProfile?: Maybe<GrowthUnifiedProfileOrgProfileResult>;
|
|
87886
89659
|
growthUnifiedProfile_getUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
87887
89660
|
growthUnifiedProfile_getUnifiedUserProfile?: Maybe<GrowthUnifiedProfileUserProfileResult>;
|
|
@@ -87932,7 +89705,8 @@ export declare type Query = {
|
|
|
87932
89705
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
87933
89706
|
jira_fieldSchemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
87934
89707
|
jira_fieldSchemeAvailableFields?: Maybe<JiraFieldConnection>;
|
|
87935
|
-
jira_fieldSchemes?: Maybe<
|
|
89708
|
+
jira_fieldSchemes?: Maybe<JiraFieldSchemesConnection>;
|
|
89709
|
+
jira_fieldSchemesByARIs?: Maybe<Array<Maybe<JiraFieldScheme>>>;
|
|
87936
89710
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
87937
89711
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
87938
89712
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -88046,7 +89820,6 @@ export declare type Query = {
|
|
|
88046
89820
|
polarisCollabToken?: Maybe<PolarisDelegationToken>;
|
|
88047
89821
|
polarisGetDetailedReaction?: Maybe<PolarisReactionSummary>;
|
|
88048
89822
|
polarisGetEarliestOnboardedProjectForCloudId?: Maybe<EarliestOnboardedProjectForCloudId>;
|
|
88049
|
-
polarisGetEarliestViewViewedForUser?: Maybe<EarliestViewViewedForUser>;
|
|
88050
89823
|
polarisGetReactions?: Maybe<Array<Maybe<PolarisReaction>>>;
|
|
88051
89824
|
polarisIdeaTemplates?: Maybe<Array<PolarisIdeaTemplate>>;
|
|
88052
89825
|
polarisInsight?: Maybe<PolarisInsight>;
|
|
@@ -88142,8 +89915,10 @@ export declare type Query = {
|
|
|
88142
89915
|
spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
|
|
88143
89916
|
spf_ask?: Maybe<SpfAskResult>;
|
|
88144
89917
|
spf_askCommentsByIds?: Maybe<Array<Maybe<SpfAskComment>>>;
|
|
89918
|
+
spf_askLinksByIds?: Maybe<Array<Maybe<SpfAskLink>>>;
|
|
88145
89919
|
spf_asks?: Maybe<SpfAskConnection>;
|
|
88146
89920
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
89921
|
+
spf_resolveImpactedWorkUrl?: Maybe<SpfResolveImpactedWorkUrlPayload>;
|
|
88147
89922
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
88148
89923
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
88149
89924
|
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
@@ -88274,6 +90049,18 @@ export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
|
88274
90049
|
cloudId: Scalars['String']['input'];
|
|
88275
90050
|
input: AgentStudioSuggestConversationStartersInput;
|
|
88276
90051
|
};
|
|
90052
|
+
export declare type QueryAgentStudio_ToolIntegrationsArgs = {
|
|
90053
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90054
|
+
cloudId: Scalars['String']['input'];
|
|
90055
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90056
|
+
};
|
|
90057
|
+
export declare type QueryAgentStudio_ToolsArgs = {
|
|
90058
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90059
|
+
cloudId: Scalars['String']['input'];
|
|
90060
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90061
|
+
integrationKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
90062
|
+
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
90063
|
+
};
|
|
88277
90064
|
export declare type QueryAgentStudio_ValidateScenarioArgs = {
|
|
88278
90065
|
cloudId: Scalars['String']['input'];
|
|
88279
90066
|
containerId: Scalars['ID']['input'];
|
|
@@ -88457,6 +90244,18 @@ export declare type QueryAssetsDm_DataSourceFormFieldsArgs = {
|
|
|
88457
90244
|
schemaId?: InputMaybe<Scalars['String']['input']>;
|
|
88458
90245
|
workspaceId: Scalars['ID']['input'];
|
|
88459
90246
|
};
|
|
90247
|
+
export declare type QueryAssetsDm_DataSourceMappingArgs = {
|
|
90248
|
+
cloudId: Scalars['ID']['input'];
|
|
90249
|
+
dataSourceId: Scalars['ID']['input'];
|
|
90250
|
+
objectClassName: Scalars['String']['input'];
|
|
90251
|
+
workspaceId: Scalars['ID']['input'];
|
|
90252
|
+
};
|
|
90253
|
+
export declare type QueryAssetsDm_DataSourceMergeArgs = {
|
|
90254
|
+
cloudId: Scalars['ID']['input'];
|
|
90255
|
+
dataSourceId: Scalars['ID']['input'];
|
|
90256
|
+
jobId: Scalars['ID']['input'];
|
|
90257
|
+
workspaceId: Scalars['ID']['input'];
|
|
90258
|
+
};
|
|
88460
90259
|
export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
88461
90260
|
cloudID: Scalars['ID']['input'];
|
|
88462
90261
|
dataSourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -88465,12 +90264,19 @@ export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
|
88465
90264
|
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
88466
90265
|
workspaceId: Scalars['ID']['input'];
|
|
88467
90266
|
};
|
|
90267
|
+
export declare type QueryAssetsDm_DatasourceCleansingRulesArgs = {
|
|
90268
|
+
cloudId: Scalars['ID']['input'];
|
|
90269
|
+
dataSourceId: Scalars['ID']['input'];
|
|
90270
|
+
workspaceId: Scalars['ID']['input'];
|
|
90271
|
+
};
|
|
88468
90272
|
export declare type QueryAssetsDm_ObjectClassesArgs = {
|
|
88469
90273
|
cloudId: Scalars['ID']['input'];
|
|
88470
90274
|
workspaceId: Scalars['ID']['input'];
|
|
88471
90275
|
};
|
|
88472
90276
|
export declare type QueryAssetsDm_ObjectTagsArgs = {
|
|
88473
|
-
|
|
90277
|
+
cloudId: Scalars['ID']['input'];
|
|
90278
|
+
objectId: Scalars['ID']['input'];
|
|
90279
|
+
workspaceId: Scalars['ID']['input'];
|
|
88474
90280
|
};
|
|
88475
90281
|
export declare type QueryAssetsDm_ObjectsListColumnsArgs = {
|
|
88476
90282
|
cloudId: Scalars['ID']['input'];
|
|
@@ -88491,6 +90297,13 @@ export declare type QueryAssetsDm_RawDataArgs = {
|
|
|
88491
90297
|
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
88492
90298
|
workspaceId: Scalars['ID']['input'];
|
|
88493
90299
|
};
|
|
90300
|
+
export declare type QueryAssetsDm_TransformedDataArgs = {
|
|
90301
|
+
cloudId: Scalars['ID']['input'];
|
|
90302
|
+
dataSourceId: Scalars['ID']['input'];
|
|
90303
|
+
filters?: InputMaybe<Array<AssetsDmTransformedDataFilterInput>>;
|
|
90304
|
+
pagination?: InputMaybe<AssetsDmPaginationInput>;
|
|
90305
|
+
workspaceId: Scalars['ID']['input'];
|
|
90306
|
+
};
|
|
88494
90307
|
export declare type QueryAssets_ObjectTypesByIdsArgs = {
|
|
88495
90308
|
ids: Array<Scalars['ID']['input']>;
|
|
88496
90309
|
};
|
|
@@ -88651,6 +90464,9 @@ export declare type QueryCommentsArgs = {
|
|
|
88651
90464
|
singleThreaded?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88652
90465
|
type?: InputMaybe<Array<InputMaybe<CommentType>>>;
|
|
88653
90466
|
};
|
|
90467
|
+
export declare type QueryConfluenceArgs = {
|
|
90468
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
90469
|
+
};
|
|
88654
90470
|
export declare type QueryConfluenceUsersArgs = {
|
|
88655
90471
|
accountIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
88656
90472
|
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -88816,6 +90632,9 @@ export declare type QueryConfluence_MacrosByIdsArgs = {
|
|
|
88816
90632
|
contentId: Scalars['ID']['input'];
|
|
88817
90633
|
macroIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
88818
90634
|
};
|
|
90635
|
+
export declare type QueryConfluence_NoteArgs = {
|
|
90636
|
+
id: Scalars['ID']['input'];
|
|
90637
|
+
};
|
|
88819
90638
|
export declare type QueryConfluence_PdfExportDownloadLinkArgs = {
|
|
88820
90639
|
cloudId: Scalars['ID']['input'];
|
|
88821
90640
|
id: Scalars['ID']['input'];
|
|
@@ -89214,6 +91033,9 @@ export declare type QueryCountUsersGroupByPageArgs = {
|
|
|
89214
91033
|
export declare type QueryCpls_CapacityPlanningPeopleViewArgs = {
|
|
89215
91034
|
id: Scalars['ID']['input'];
|
|
89216
91035
|
};
|
|
91036
|
+
export declare type QueryCpls_CustomContributionTargetsArgs = {
|
|
91037
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91038
|
+
};
|
|
89217
91039
|
export declare type QueryCsmAi_GenerateCoachingTriggeringConditionArgs = {
|
|
89218
91040
|
conversationId: Scalars['ID']['input'];
|
|
89219
91041
|
helpCenterAri: Scalars['ID']['input'];
|
|
@@ -89633,18 +91455,36 @@ export declare type QueryGetSummaryArgs = {
|
|
|
89633
91455
|
lastUpdatedTimeSeconds: Scalars['Long']['input'];
|
|
89634
91456
|
responseType?: InputMaybe<ResponseType>;
|
|
89635
91457
|
};
|
|
89636
|
-
export declare type
|
|
91458
|
+
export declare type QueryGraphIntegration_ComponentDirectoryDimensionsArgs = {
|
|
89637
91459
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91460
|
+
cloudId: Scalars['ID']['input'];
|
|
89638
91461
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89639
91462
|
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
89640
91463
|
};
|
|
89641
|
-
export declare type
|
|
91464
|
+
export declare type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
|
|
89642
91465
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
91466
|
+
cloudId: Scalars['ID']['input'];
|
|
89643
91467
|
dimensionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89644
91468
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89645
91469
|
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
89646
91470
|
searchKeyword?: InputMaybe<Scalars['String']['input']>;
|
|
89647
91471
|
};
|
|
91472
|
+
export declare type QueryGraphIntegration_McpAdminManagementMcpServerArgs = {
|
|
91473
|
+
cloudId: Scalars['ID']['input'];
|
|
91474
|
+
serverId: Scalars['ID']['input'];
|
|
91475
|
+
};
|
|
91476
|
+
export declare type QueryGraphIntegration_McpAdminManagementMcpServersArgs = {
|
|
91477
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91478
|
+
cloudId: Scalars['ID']['input'];
|
|
91479
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91480
|
+
};
|
|
91481
|
+
export declare type QueryGraphIntegration_McpAdminManagementMcpToolsArgs = {
|
|
91482
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91483
|
+
cloudId: Scalars['ID']['input'];
|
|
91484
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
91485
|
+
searchKeyword?: InputMaybe<Scalars['String']['input']>;
|
|
91486
|
+
serverId: Scalars['ID']['input'];
|
|
91487
|
+
};
|
|
89648
91488
|
export declare type QueryGroupArgs = {
|
|
89649
91489
|
groupId?: InputMaybe<Scalars['String']['input']>;
|
|
89650
91490
|
groupName?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -89672,6 +91512,9 @@ export declare type QueryGroupsWithContentRestrictionsArgs = {
|
|
|
89672
91512
|
contentId: Scalars['ID']['input'];
|
|
89673
91513
|
groupIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
89674
91514
|
};
|
|
91515
|
+
export declare type QueryGrowthUnifiedProfile_GetEntitlementProfileArgs = {
|
|
91516
|
+
entitlementId: Scalars['ID']['input'];
|
|
91517
|
+
};
|
|
89675
91518
|
export declare type QueryGrowthUnifiedProfile_GetOrgProfileArgs = {
|
|
89676
91519
|
filter?: InputMaybe<GrowthUnifiedProfileOrgProfileFilterInput>;
|
|
89677
91520
|
orgId: Scalars['ID']['input'];
|
|
@@ -89839,6 +91682,9 @@ export declare type QueryJira_FieldSchemesArgs = {
|
|
|
89839
91682
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89840
91683
|
input?: InputMaybe<JiraFieldSchemesInput>;
|
|
89841
91684
|
};
|
|
91685
|
+
export declare type QueryJira_FieldSchemesByArIsArgs = {
|
|
91686
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91687
|
+
};
|
|
89842
91688
|
export declare type QueryJira_IsRovoLlmEnabledArgs = {
|
|
89843
91689
|
cloudId: Scalars['ID']['input'];
|
|
89844
91690
|
};
|
|
@@ -90059,7 +91905,11 @@ export declare type QueryNodeArgs = {
|
|
|
90059
91905
|
id: Scalars['ID']['input'];
|
|
90060
91906
|
};
|
|
90061
91907
|
export declare type QueryNotesByCreatorArgs = {
|
|
91908
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
91909
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
91910
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90062
91911
|
input?: InputMaybe<NotesByCreatorInput>;
|
|
91912
|
+
orderBy?: InputMaybe<ConfluenceNotesOrdering>;
|
|
90063
91913
|
};
|
|
90064
91914
|
export declare type QueryObjectRecommendationsArgs = {
|
|
90065
91915
|
context: CollaborationGraphRequestContext;
|
|
@@ -90188,9 +92038,6 @@ export declare type QueryPolarisGetDetailedReactionArgs = {
|
|
|
90188
92038
|
export declare type QueryPolarisGetEarliestOnboardedProjectForCloudIdArgs = {
|
|
90189
92039
|
id: Scalars['ID']['input'];
|
|
90190
92040
|
};
|
|
90191
|
-
export declare type QueryPolarisGetEarliestViewViewedForUserArgs = {
|
|
90192
|
-
id: Scalars['ID']['input'];
|
|
90193
|
-
};
|
|
90194
92041
|
export declare type QueryPolarisGetReactionsArgs = {
|
|
90195
92042
|
input: PolarisGetReactionsInput;
|
|
90196
92043
|
};
|
|
@@ -90477,6 +92324,9 @@ export declare type QuerySingleContentArgs = {
|
|
|
90477
92324
|
status?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
90478
92325
|
validatedShareToken?: InputMaybe<Scalars['String']['input']>;
|
|
90479
92326
|
};
|
|
92327
|
+
export declare type QuerySiteOperationsArgs = {
|
|
92328
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
92329
|
+
};
|
|
90480
92330
|
export declare type QuerySitePermissionsArgs = {
|
|
90481
92331
|
operations?: InputMaybe<Array<InputMaybe<SitePermissionOperationType>>>;
|
|
90482
92332
|
permissionTypes?: InputMaybe<Array<InputMaybe<SitePermissionType>>>;
|
|
@@ -90586,6 +92436,9 @@ export declare type QuerySpf_AskArgs = {
|
|
|
90586
92436
|
export declare type QuerySpf_AskCommentsByIdsArgs = {
|
|
90587
92437
|
ids: Array<Scalars['ID']['input']>;
|
|
90588
92438
|
};
|
|
92439
|
+
export declare type QuerySpf_AskLinksByIdsArgs = {
|
|
92440
|
+
ids: Array<Scalars['ID']['input']>;
|
|
92441
|
+
};
|
|
90589
92442
|
export declare type QuerySpf_AsksArgs = {
|
|
90590
92443
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90591
92444
|
cloudId: Scalars['ID']['input'];
|
|
@@ -90595,6 +92448,10 @@ export declare type QuerySpf_AsksArgs = {
|
|
|
90595
92448
|
export declare type QuerySpf_AsksByIdsArgs = {
|
|
90596
92449
|
ids: Array<Scalars['ID']['input']>;
|
|
90597
92450
|
};
|
|
92451
|
+
export declare type QuerySpf_ResolveImpactedWorkUrlArgs = {
|
|
92452
|
+
cloudId: Scalars['ID']['input'];
|
|
92453
|
+
url: Scalars['String']['input'];
|
|
92454
|
+
};
|
|
90598
92455
|
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
90599
92456
|
appId: Scalars['ID']['input'];
|
|
90600
92457
|
installationId: Scalars['ID']['input'];
|
|
@@ -91391,6 +93248,7 @@ export declare type RankColumnOutput = MutationResponse & {
|
|
|
91391
93248
|
export declare type RankCustomFilterInput = {
|
|
91392
93249
|
afterFilterId?: InputMaybe<Scalars['String']['input']>;
|
|
91393
93250
|
boardId: Scalars['ID']['input'];
|
|
93251
|
+
customFilterIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
91394
93252
|
id: Scalars['String']['input'];
|
|
91395
93253
|
};
|
|
91396
93254
|
export declare type RankItem = {
|
|
@@ -93860,6 +95718,7 @@ export declare type SearchThirdPartyFilter = {
|
|
|
93860
95718
|
};
|
|
93861
95719
|
export declare type SearchThirdPartyProduct = {
|
|
93862
95720
|
connectorSources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
95721
|
+
containerTypes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
93863
95722
|
integrationId?: InputMaybe<Scalars['String']['input']>;
|
|
93864
95723
|
linkedEntityGranularity?: InputMaybe<SearchLinkedEntityGranularity>;
|
|
93865
95724
|
product?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -95733,6 +97592,11 @@ export declare type SiteDescription = {
|
|
|
95733
97592
|
__typename?: 'SiteDescription';
|
|
95734
97593
|
logoUrl?: Maybe<Scalars['String']['output']>;
|
|
95735
97594
|
};
|
|
97595
|
+
export declare type SiteEmailAddress = {
|
|
97596
|
+
__typename?: 'SiteEmailAddress';
|
|
97597
|
+
emailAddress?: Maybe<Scalars['String']['output']>;
|
|
97598
|
+
emailAddressStatus?: Maybe<ConfluenceSiteEmailAddressStatus>;
|
|
97599
|
+
};
|
|
95736
97600
|
export declare type SiteLookAndFeel = {
|
|
95737
97601
|
__typename?: 'SiteLookAndFeel';
|
|
95738
97602
|
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
@@ -96969,7 +98833,7 @@ export declare type SpfAskEdge = {
|
|
|
96969
98833
|
cursor: Scalars['String']['output'];
|
|
96970
98834
|
node?: Maybe<SpfAskResult>;
|
|
96971
98835
|
};
|
|
96972
|
-
export declare type SpfAskLink = {
|
|
98836
|
+
export declare type SpfAskLink = Node & {
|
|
96973
98837
|
__typename?: 'SpfAskLink';
|
|
96974
98838
|
askId: Scalars['String']['output'];
|
|
96975
98839
|
attachedByUser?: Maybe<User>;
|
|
@@ -97139,6 +99003,10 @@ export declare type SpfDeleteAskUpdatePayload = Payload & {
|
|
|
97139
99003
|
success: Scalars['Boolean']['output'];
|
|
97140
99004
|
};
|
|
97141
99005
|
export declare type SpfImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
99006
|
+
export declare type SpfResolveImpactedWorkUrlPayload = {
|
|
99007
|
+
__typename?: 'SpfResolveImpactedWorkUrlPayload';
|
|
99008
|
+
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
99009
|
+
};
|
|
97142
99010
|
export declare type SpfUpdateAskCommentDataInput = {
|
|
97143
99011
|
data: Scalars['String']['input'];
|
|
97144
99012
|
id: Scalars['ID']['input'];
|
|
@@ -97367,7 +99235,7 @@ export declare type StakeholderCommsCreateStakeholderInput = {
|
|
|
97367
99235
|
};
|
|
97368
99236
|
export declare type StakeholderCommsGroups = {
|
|
97369
99237
|
__typename?: 'StakeholderCommsGroups';
|
|
97370
|
-
|
|
99238
|
+
avatar?: Maybe<Scalars['String']['output']>;
|
|
97371
99239
|
id?: Maybe<Scalars['ID']['output']>;
|
|
97372
99240
|
name?: Maybe<Scalars['String']['output']>;
|
|
97373
99241
|
};
|
|
@@ -97718,6 +99586,7 @@ export declare type Subscription = {
|
|
|
97718
99586
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
97719
99587
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
97720
99588
|
devai_onAutodevJobLogsUpdated?: Maybe<DevAiAutodevLogEdge>;
|
|
99589
|
+
devai_onBoysenberrySessionUpdated?: Maybe<DevAiRovoDevSession>;
|
|
97721
99590
|
devai_onTechnicalPlannerJobUpdated?: Maybe<DevAiTechnicalPlannerJob>;
|
|
97722
99591
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
97723
99592
|
jira?: Maybe<JiraSubscription>;
|
|
@@ -97745,6 +99614,9 @@ export declare type SubscriptionDevai_OnAutodevJobLogsUpdatedArgs = {
|
|
|
97745
99614
|
cloudId: Scalars['ID']['input'];
|
|
97746
99615
|
jobId: Scalars['ID']['input'];
|
|
97747
99616
|
};
|
|
99617
|
+
export declare type SubscriptionDevai_OnBoysenberrySessionUpdatedArgs = {
|
|
99618
|
+
sessionAri: Scalars['ID']['input'];
|
|
99619
|
+
};
|
|
97748
99620
|
export declare type SubscriptionDevai_OnTechnicalPlannerJobUpdatedArgs = {
|
|
97749
99621
|
cloudId: Scalars['ID']['input'];
|
|
97750
99622
|
jobId: Scalars['ID']['input'];
|
|
@@ -98511,6 +100383,7 @@ export declare type TeamV2 = Node & {
|
|
|
98511
100383
|
members?: Maybe<TeamMemberConnectionV2>;
|
|
98512
100384
|
membershipSettings?: Maybe<TeamMembershipSettings>;
|
|
98513
100385
|
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
100386
|
+
profileUrl?: Maybe<Scalars['String']['output']>;
|
|
98514
100387
|
smallAvatarImageUrl?: Maybe<Scalars['String']['output']>;
|
|
98515
100388
|
smallHeaderImageUrl?: Maybe<Scalars['String']['output']>;
|
|
98516
100389
|
state?: Maybe<TeamStateV2>;
|
|
@@ -99324,6 +101197,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
99324
101197
|
isArchived: Scalars['Boolean']['output'];
|
|
99325
101198
|
isWatching?: Maybe<Scalars['Boolean']['output']>;
|
|
99326
101199
|
key: Scalars['String']['output'];
|
|
101200
|
+
latestUpdateDate?: Maybe<Scalars['DateTime']['output']>;
|
|
99327
101201
|
name: Scalars['String']['output'];
|
|
99328
101202
|
owner?: Maybe<User>;
|
|
99329
101203
|
parentGoal?: Maybe<TownsquareGoal>;
|
|
@@ -99587,6 +101461,30 @@ export declare type TownsquareGoalsCreateUpdatePayload = {
|
|
|
99587
101461
|
success: Scalars['Boolean']['output'];
|
|
99588
101462
|
update?: Maybe<TownsquareGoalUpdate>;
|
|
99589
101463
|
};
|
|
101464
|
+
export declare type TownsquareGoalsDeleteLatestUpdateInput = {
|
|
101465
|
+
updateId: Scalars['ID']['input'];
|
|
101466
|
+
};
|
|
101467
|
+
export declare type TownsquareGoalsDeleteLatestUpdatePayload = {
|
|
101468
|
+
__typename?: 'TownsquareGoalsDeleteLatestUpdatePayload';
|
|
101469
|
+
errors?: Maybe<Array<MutationError>>;
|
|
101470
|
+
goal?: Maybe<TownsquareGoal>;
|
|
101471
|
+
success: Scalars['Boolean']['output'];
|
|
101472
|
+
updateId?: Maybe<Scalars['ID']['output']>;
|
|
101473
|
+
};
|
|
101474
|
+
export declare type TownsquareGoalsEditUpdateInput = {
|
|
101475
|
+
goalUpdateId: Scalars['ID']['input'];
|
|
101476
|
+
score?: InputMaybe<Scalars['Int']['input']>;
|
|
101477
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
101478
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
101479
|
+
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
101480
|
+
updateNotes?: InputMaybe<Array<InputMaybe<TownsquareUpdateNoteInput>>>;
|
|
101481
|
+
};
|
|
101482
|
+
export declare type TownsquareGoalsEditUpdatePayload = {
|
|
101483
|
+
__typename?: 'TownsquareGoalsEditUpdatePayload';
|
|
101484
|
+
errors?: Maybe<Array<MutationError>>;
|
|
101485
|
+
success: Scalars['Boolean']['output'];
|
|
101486
|
+
update?: Maybe<TownsquareGoalUpdate>;
|
|
101487
|
+
};
|
|
99590
101488
|
export declare type TownsquareGoalsRemoveGoalTeamLinkInput = {
|
|
99591
101489
|
goalId: Scalars['ID']['input'];
|
|
99592
101490
|
teamId: Scalars['ID']['input'];
|
|
@@ -100203,6 +102101,17 @@ export declare type TownsquareProjectsEditUpdatePayload = {
|
|
|
100203
102101
|
success: Scalars['Boolean']['output'];
|
|
100204
102102
|
update?: Maybe<TownsquareProjectUpdate>;
|
|
100205
102103
|
};
|
|
102104
|
+
export declare type TownsquareProjectsRemoveGoalLinkInput = {
|
|
102105
|
+
goalId: Scalars['ID']['input'];
|
|
102106
|
+
projectId: Scalars['ID']['input'];
|
|
102107
|
+
};
|
|
102108
|
+
export declare type TownsquareProjectsRemoveGoalLinkPayload = {
|
|
102109
|
+
__typename?: 'TownsquareProjectsRemoveGoalLinkPayload';
|
|
102110
|
+
errors?: Maybe<Array<MutationError>>;
|
|
102111
|
+
goal?: Maybe<TownsquareGoal>;
|
|
102112
|
+
project?: Maybe<TownsquareProject>;
|
|
102113
|
+
success: Scalars['Boolean']['output'];
|
|
102114
|
+
};
|
|
100206
102115
|
export declare type TownsquareProjectsRemoveMemberInput = {
|
|
100207
102116
|
projectId: Scalars['ID']['input'];
|
|
100208
102117
|
userId: Scalars['ID']['input'];
|
|
@@ -100213,6 +102122,17 @@ export declare type TownsquareProjectsRemoveMemberPayload = {
|
|
|
100213
102122
|
success: Scalars['Boolean']['output'];
|
|
100214
102123
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
100215
102124
|
};
|
|
102125
|
+
export declare type TownsquareProjectsRemoveTeamContributorsInput = {
|
|
102126
|
+
projectId: Scalars['ID']['input'];
|
|
102127
|
+
teamId: Scalars['ID']['input'];
|
|
102128
|
+
};
|
|
102129
|
+
export declare type TownsquareProjectsRemoveTeamContributorsPayload = {
|
|
102130
|
+
__typename?: 'TownsquareProjectsRemoveTeamContributorsPayload';
|
|
102131
|
+
errors?: Maybe<Array<MutationError>>;
|
|
102132
|
+
project?: Maybe<TownsquareProject>;
|
|
102133
|
+
success: Scalars['Boolean']['output'];
|
|
102134
|
+
team?: Maybe<TeamV2>;
|
|
102135
|
+
};
|
|
100216
102136
|
export declare type TownsquareProjectsSetDependencyInput = {
|
|
100217
102137
|
incomingProjectId: Scalars['ID']['input'];
|
|
100218
102138
|
outgoingProjectId: Scalars['ID']['input'];
|
|
@@ -100634,18 +102554,19 @@ export declare type TrelloAction = {
|
|
|
100634
102554
|
};
|
|
100635
102555
|
export declare type TrelloActionAttachmentEntity = {
|
|
100636
102556
|
__typename?: 'TrelloActionAttachmentEntity';
|
|
100637
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
100638
102557
|
link?: Maybe<Scalars['Boolean']['output']>;
|
|
100639
102558
|
name?: Maybe<Scalars['String']['output']>;
|
|
102559
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
100640
102560
|
previewUrl?: Maybe<Scalars['String']['output']>;
|
|
100641
102561
|
previewUrl2x?: Maybe<Scalars['String']['output']>;
|
|
102562
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
100642
102563
|
type?: Maybe<Scalars['String']['output']>;
|
|
100643
102564
|
url?: Maybe<Scalars['String']['output']>;
|
|
100644
102565
|
};
|
|
100645
102566
|
export declare type TrelloActionAttachmentPreviewEntity = {
|
|
100646
102567
|
__typename?: 'TrelloActionAttachmentPreviewEntity';
|
|
100647
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
100648
102568
|
name?: Maybe<Scalars['String']['output']>;
|
|
102569
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
100649
102570
|
originalUrl?: Maybe<Scalars['URL']['output']>;
|
|
100650
102571
|
previewUrl?: Maybe<Scalars['URL']['output']>;
|
|
100651
102572
|
previewUrl2x?: Maybe<Scalars['URL']['output']>;
|
|
@@ -100675,6 +102596,7 @@ export declare type TrelloActionCardEntity = {
|
|
|
100675
102596
|
shortId?: Maybe<Scalars['Int']['output']>;
|
|
100676
102597
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
100677
102598
|
start?: Maybe<Scalars['DateTime']['output']>;
|
|
102599
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
100678
102600
|
type?: Maybe<Scalars['String']['output']>;
|
|
100679
102601
|
};
|
|
100680
102602
|
export declare type TrelloActionCheckItemEntity = {
|
|
@@ -100692,6 +102614,7 @@ export declare type TrelloActionChecklistEntity = {
|
|
|
100692
102614
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
100693
102615
|
name?: Maybe<Scalars['String']['output']>;
|
|
100694
102616
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
102617
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
100695
102618
|
type?: Maybe<Scalars['String']['output']>;
|
|
100696
102619
|
};
|
|
100697
102620
|
export declare type TrelloActionCommentEntity = {
|
|
@@ -100718,6 +102641,7 @@ export declare type TrelloActionListEntity = {
|
|
|
100718
102641
|
__typename?: 'TrelloActionListEntity';
|
|
100719
102642
|
name?: Maybe<Scalars['String']['output']>;
|
|
100720
102643
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
102644
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
100721
102645
|
type?: Maybe<Scalars['String']['output']>;
|
|
100722
102646
|
};
|
|
100723
102647
|
export declare type TrelloActionMemberEntity = {
|
|
@@ -101174,6 +103098,7 @@ export declare type TrelloBoardMirrorCardsMirrorCardsArgs = {
|
|
|
101174
103098
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101175
103099
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101176
103100
|
};
|
|
103101
|
+
export declare type TrelloBoardOrInbox = TrelloBoard | TrelloInbox;
|
|
101177
103102
|
export declare type TrelloBoardPowerUpConnection = {
|
|
101178
103103
|
__typename?: 'TrelloBoardPowerUpConnection';
|
|
101179
103104
|
edges?: Maybe<Array<TrelloBoardPowerUpEdge>>;
|
|
@@ -101605,6 +103530,7 @@ export declare type TrelloCardEdgeUpdated = {
|
|
|
101605
103530
|
};
|
|
101606
103531
|
export declare enum TrelloCardExternalSource {
|
|
101607
103532
|
Email = "EMAIL",
|
|
103533
|
+
Loom = "LOOM",
|
|
101608
103534
|
Msteams = "MSTEAMS",
|
|
101609
103535
|
Siri = "SIRI",
|
|
101610
103536
|
Slack = "SLACK"
|
|
@@ -101789,6 +103715,7 @@ export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionDat
|
|
|
101789
103715
|
card?: Maybe<TrelloCard>;
|
|
101790
103716
|
creator?: Maybe<TrelloMember>;
|
|
101791
103717
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
103718
|
+
dateLastEdited?: Maybe<Scalars['DateTime']['output']>;
|
|
101792
103719
|
displayEntities?: Maybe<TrelloCommentCardActionDisplayEntities>;
|
|
101793
103720
|
displayKey?: Maybe<Scalars['String']['output']>;
|
|
101794
103721
|
id: Scalars['ID']['output'];
|
|
@@ -101957,8 +103884,11 @@ export declare type TrelloCreateCardFromEmailActionDisplayEntities = {
|
|
|
101957
103884
|
memberCreator?: Maybe<TrelloActionMemberEntity>;
|
|
101958
103885
|
};
|
|
101959
103886
|
export declare type TrelloCreateCardInput = {
|
|
103887
|
+
externalSource?: InputMaybe<TrelloCardExternalSource>;
|
|
101960
103888
|
listId: Scalars['ID']['input'];
|
|
101961
103889
|
name: Scalars['String']['input'];
|
|
103890
|
+
position?: InputMaybe<Scalars['TrelloCardPosition']['input']>;
|
|
103891
|
+
urlSource?: InputMaybe<Scalars['String']['input']>;
|
|
101962
103892
|
};
|
|
101963
103893
|
export declare type TrelloCreateCardPayload = Payload & {
|
|
101964
103894
|
__typename?: 'TrelloCreateCardPayload';
|
|
@@ -102583,6 +104513,7 @@ export declare type TrelloMutationApi = {
|
|
|
102583
104513
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
102584
104514
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
102585
104515
|
updateOAuth2AppCallbackUrls?: Maybe<TrelloUpdateOAuth2AppCallbackUrlsPayload>;
|
|
104516
|
+
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
102586
104517
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
102587
104518
|
};
|
|
102588
104519
|
export declare type TrelloMutationApiAddBoardStarArgs = {
|
|
@@ -102678,6 +104609,9 @@ export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
|
102678
104609
|
export declare type TrelloMutationApiUpdateOAuth2AppCallbackUrlsArgs = {
|
|
102679
104610
|
input: TrelloUpdateOAuth2AppCallbackUrlsInput;
|
|
102680
104611
|
};
|
|
104612
|
+
export declare type TrelloMutationApiUpdateOAuth2ClientArgs = {
|
|
104613
|
+
input: TrelloUpdateOAuth2ClientInput;
|
|
104614
|
+
};
|
|
102681
104615
|
export declare type TrelloMutationApiWatchCardArgs = {
|
|
102682
104616
|
input: TrelloWatchCardInput;
|
|
102683
104617
|
};
|
|
@@ -102686,6 +104620,7 @@ export declare type TrelloOAuth2Client = {
|
|
|
102686
104620
|
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
102687
104621
|
clientId: Scalars['String']['output'];
|
|
102688
104622
|
clientSecret: Scalars['String']['output'];
|
|
104623
|
+
clientType: Scalars['String']['output'];
|
|
102689
104624
|
profile: Scalars['String']['output'];
|
|
102690
104625
|
scopes?: Maybe<Array<TrelloOAuth2Scope>>;
|
|
102691
104626
|
};
|
|
@@ -103165,6 +105100,7 @@ export declare type TrelloQueryApi = {
|
|
|
103165
105100
|
labelsById?: Maybe<Array<Maybe<TrelloLabel>>>;
|
|
103166
105101
|
list?: Maybe<TrelloList>;
|
|
103167
105102
|
listsById?: Maybe<Array<Maybe<TrelloList>>>;
|
|
105103
|
+
me?: Maybe<TrelloMember>;
|
|
103168
105104
|
member?: Maybe<TrelloMember>;
|
|
103169
105105
|
plannerAccountsByMemberId?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
103170
105106
|
plannerByWorkspaceId?: Maybe<TrelloPlanner>;
|
|
@@ -103724,6 +105660,29 @@ export declare type TrelloUpdateOAuth2AppCallbackUrlsPayload = Payload & {
|
|
|
103724
105660
|
id?: Maybe<Scalars['ID']['output']>;
|
|
103725
105661
|
success: Scalars['Boolean']['output'];
|
|
103726
105662
|
};
|
|
105663
|
+
export declare type TrelloUpdateOAuth2ClientInput = {
|
|
105664
|
+
appContactLink?: InputMaybe<Scalars['String']['input']>;
|
|
105665
|
+
appDescription?: InputMaybe<Scalars['String']['input']>;
|
|
105666
|
+
appLogoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
105667
|
+
appVendorName?: InputMaybe<Scalars['String']['input']>;
|
|
105668
|
+
callbackUrls?: InputMaybe<Array<Scalars['URL']['input']>>;
|
|
105669
|
+
clientType?: InputMaybe<Scalars['String']['input']>;
|
|
105670
|
+
id: Scalars['ID']['input'];
|
|
105671
|
+
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
105672
|
+
};
|
|
105673
|
+
export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
|
|
105674
|
+
__typename?: 'TrelloUpdateOAuth2ClientPayload';
|
|
105675
|
+
appContactLink?: Maybe<Scalars['String']['output']>;
|
|
105676
|
+
appDescription?: Maybe<Scalars['String']['output']>;
|
|
105677
|
+
appLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
105678
|
+
appVendorName?: Maybe<Scalars['String']['output']>;
|
|
105679
|
+
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
105680
|
+
clientType?: Maybe<Scalars['String']['output']>;
|
|
105681
|
+
errors?: Maybe<Array<MutationError>>;
|
|
105682
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
105683
|
+
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
105684
|
+
success: Scalars['Boolean']['output'];
|
|
105685
|
+
};
|
|
103727
105686
|
export declare type TrelloUploadedBackground = {
|
|
103728
105687
|
__typename?: 'TrelloUploadedBackground';
|
|
103729
105688
|
objectId: Scalars['ID']['output'];
|
|
@@ -105590,7 +107549,7 @@ export declare type UpdateJiraPlaybookStepInput = {
|
|
|
105590
107549
|
type: JiraPlaybookStepType;
|
|
105591
107550
|
};
|
|
105592
107551
|
export declare type UpdateMetadataInput = {
|
|
105593
|
-
ari
|
|
107552
|
+
ari?: InputMaybe<Scalars['String']['input']>;
|
|
105594
107553
|
extraProps?: InputMaybe<Array<PropInput>>;
|
|
105595
107554
|
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
105596
107555
|
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -105605,8 +107564,10 @@ export declare type UpdateNestedPageOwnersPayload = Payload & {
|
|
|
105605
107564
|
warnings?: Maybe<Array<Maybe<ChangeOwnerWarning>>>;
|
|
105606
107565
|
};
|
|
105607
107566
|
export declare type UpdateNoteInput = {
|
|
107567
|
+
backgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
105608
107568
|
body?: InputMaybe<Scalars['String']['input']>;
|
|
105609
|
-
|
|
107569
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
107570
|
+
metadata?: InputMaybe<UpdateMetadataInput>;
|
|
105610
107571
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
105611
107572
|
};
|
|
105612
107573
|
export declare type UpdateNotePayload = {
|
|
@@ -105781,7 +107742,6 @@ export declare type UpdatePolarisViewInput = {
|
|
|
105781
107742
|
hideEmptyGroups?: InputMaybe<Scalars['Boolean']['input']>;
|
|
105782
107743
|
jql?: InputMaybe<Scalars['String']['input']>;
|
|
105783
107744
|
lastCommentsViewedTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
105784
|
-
lastViewedTimestamp?: InputMaybe<Scalars['String']['input']>;
|
|
105785
107745
|
layoutType?: InputMaybe<PolarisViewLayoutType>;
|
|
105786
107746
|
matrixConfig?: InputMaybe<UpdatePolarisMatrixConfig>;
|
|
105787
107747
|
name?: InputMaybe<Scalars['String']['input']>;
|