@forge/cli-shared 8.3.1-next.0 → 8.3.1-next.1-experimental-b4d61da
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 +20 -0
- package/out/graphql/graphql-types.d.ts +1186 -52
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +85 -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
|
@@ -1162,7 +1162,7 @@ export declare type ActivityObject = {
|
|
|
1162
1162
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
1163
1163
|
type: Scalars['String']['output'];
|
|
1164
1164
|
};
|
|
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;
|
|
1165
|
+
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
1166
|
export declare enum ActivityObjectType {
|
|
1167
1167
|
Blogpost = "BLOGPOST",
|
|
1168
1168
|
Comment = "COMMENT",
|
|
@@ -1547,6 +1547,7 @@ export declare type AgentStudioDeleteAgentPayload = Payload & {
|
|
|
1547
1547
|
export declare type AgentStudioDeleteScenarioPayload = Payload & {
|
|
1548
1548
|
__typename?: 'AgentStudioDeleteScenarioPayload';
|
|
1549
1549
|
errors?: Maybe<Array<MutationError>>;
|
|
1550
|
+
scenarioId?: Maybe<Scalars['ID']['output']>;
|
|
1550
1551
|
success: Scalars['Boolean']['output'];
|
|
1551
1552
|
};
|
|
1552
1553
|
export declare type AgentStudioEmailChannel = AgentStudioChannel & {
|
|
@@ -1733,6 +1734,41 @@ export declare type AgentStudioTeamsChannelDetails = {
|
|
|
1733
1734
|
channelName?: Maybe<Scalars['String']['output']>;
|
|
1734
1735
|
channelUrl?: Maybe<Scalars['String']['output']>;
|
|
1735
1736
|
};
|
|
1737
|
+
export declare type AgentStudioTool = {
|
|
1738
|
+
__typename?: 'AgentStudioTool';
|
|
1739
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
1740
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
1741
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
1742
|
+
id: Scalars['ID']['output'];
|
|
1743
|
+
integrationKey?: Maybe<Scalars['String']['output']>;
|
|
1744
|
+
};
|
|
1745
|
+
export declare type AgentStudioToolEdge = {
|
|
1746
|
+
__typename?: 'AgentStudioToolEdge';
|
|
1747
|
+
cursor: Scalars['String']['output'];
|
|
1748
|
+
node?: Maybe<AgentStudioTool>;
|
|
1749
|
+
};
|
|
1750
|
+
export declare type AgentStudioToolIntegration = {
|
|
1751
|
+
__typename?: 'AgentStudioToolIntegration';
|
|
1752
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
1753
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
1754
|
+
id: Scalars['ID']['output'];
|
|
1755
|
+
integrationKey?: Maybe<Scalars['String']['output']>;
|
|
1756
|
+
};
|
|
1757
|
+
export declare type AgentStudioToolIntegrationEdge = {
|
|
1758
|
+
__typename?: 'AgentStudioToolIntegrationEdge';
|
|
1759
|
+
cursor: Scalars['String']['output'];
|
|
1760
|
+
node?: Maybe<AgentStudioToolIntegration>;
|
|
1761
|
+
};
|
|
1762
|
+
export declare type AgentStudioToolIntegrationsConnection = {
|
|
1763
|
+
__typename?: 'AgentStudioToolIntegrationsConnection';
|
|
1764
|
+
edges: Array<AgentStudioToolIntegrationEdge>;
|
|
1765
|
+
pageInfo: PageInfo;
|
|
1766
|
+
};
|
|
1767
|
+
export declare type AgentStudioToolsConnection = {
|
|
1768
|
+
__typename?: 'AgentStudioToolsConnection';
|
|
1769
|
+
edges: Array<AgentStudioToolEdge>;
|
|
1770
|
+
pageInfo: PageInfo;
|
|
1771
|
+
};
|
|
1736
1772
|
export declare type AgentStudioUpdateAgentActionsPayload = Payload & {
|
|
1737
1773
|
__typename?: 'AgentStudioUpdateAgentActionsPayload';
|
|
1738
1774
|
agent?: Maybe<AgentStudioAgent>;
|
|
@@ -3477,19 +3513,147 @@ export declare type AssetsDmDataSource = {
|
|
|
3477
3513
|
noOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
3478
3514
|
statusText?: Maybe<Scalars['String']['output']>;
|
|
3479
3515
|
};
|
|
3516
|
+
export declare type AssetsDmDataSourceCleansingReason = {
|
|
3517
|
+
__typename?: 'AssetsDMDataSourceCleansingReason';
|
|
3518
|
+
reason: Scalars['String']['output'];
|
|
3519
|
+
reasonCode: Scalars['Int']['output'];
|
|
3520
|
+
reasonId: Scalars['ID']['output'];
|
|
3521
|
+
tenantId: Scalars['ID']['output'];
|
|
3522
|
+
};
|
|
3523
|
+
export declare type AssetsDmDataSourceCleansingReasonInput = {
|
|
3524
|
+
reason: Scalars['String']['input'];
|
|
3525
|
+
reasonCode: Scalars['Int']['input'];
|
|
3526
|
+
reasonId: Scalars['ID']['input'];
|
|
3527
|
+
tenantId: Scalars['ID']['input'];
|
|
3528
|
+
};
|
|
3529
|
+
export declare type AssetsDmDataSourceCleansingRule = {
|
|
3530
|
+
__typename?: 'AssetsDMDataSourceCleansingRule';
|
|
3531
|
+
dataSourceId: Scalars['ID']['output'];
|
|
3532
|
+
defFunction: AssetsDmDataSourceCleansingRuleDefFunction;
|
|
3533
|
+
defFunctionId: Scalars['ID']['output'];
|
|
3534
|
+
enabled: Scalars['Boolean']['output'];
|
|
3535
|
+
functionId: Scalars['ID']['output'];
|
|
3536
|
+
functionParameters: Array<AssetsDmDataSourceCleansingRuleFunctionParameter>;
|
|
3537
|
+
priority: Scalars['Int']['output'];
|
|
3538
|
+
reason: AssetsDmDataSourceCleansingReason;
|
|
3539
|
+
reasonId: Scalars['ID']['output'];
|
|
3540
|
+
};
|
|
3541
|
+
export declare type AssetsDmDataSourceCleansingRuleDefFunction = {
|
|
3542
|
+
__typename?: 'AssetsDMDataSourceCleansingRuleDefFunction';
|
|
3543
|
+
defFunctionId: Scalars['ID']['output'];
|
|
3544
|
+
defFunctionParameters: Array<AssetsDmDataSourceCleansingRuleDefFunctionParameter>;
|
|
3545
|
+
description: Scalars['String']['output'];
|
|
3546
|
+
name: Scalars['String']['output'];
|
|
3547
|
+
type: Scalars['String']['output'];
|
|
3548
|
+
};
|
|
3549
|
+
export declare type AssetsDmDataSourceCleansingRuleDefFunctionInput = {
|
|
3550
|
+
defFunctionId: Scalars['ID']['input'];
|
|
3551
|
+
defFunctionParameters: Array<AssetsDmDataSourceCleansingRuleDefFunctionParameterInput>;
|
|
3552
|
+
description: Scalars['String']['input'];
|
|
3553
|
+
name: Scalars['String']['input'];
|
|
3554
|
+
type: Scalars['String']['input'];
|
|
3555
|
+
};
|
|
3556
|
+
export declare type AssetsDmDataSourceCleansingRuleDefFunctionParameter = {
|
|
3557
|
+
__typename?: 'AssetsDMDataSourceCleansingRuleDefFunctionParameter';
|
|
3558
|
+
dataType: Scalars['Int']['output'];
|
|
3559
|
+
defFunctionId: Scalars['ID']['output'];
|
|
3560
|
+
defFunctionParameterId: Scalars['ID']['output'];
|
|
3561
|
+
description: Scalars['String']['output'];
|
|
3562
|
+
displayName: Scalars['String']['output'];
|
|
3563
|
+
displayOrder: Scalars['Int']['output'];
|
|
3564
|
+
isColumn: Scalars['Boolean']['output'];
|
|
3565
|
+
name: Scalars['String']['output'];
|
|
3566
|
+
required: Scalars['Boolean']['output'];
|
|
3567
|
+
type: Scalars['Int']['output'];
|
|
3568
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
3569
|
+
};
|
|
3570
|
+
export declare type AssetsDmDataSourceCleansingRuleDefFunctionParameterInput = {
|
|
3571
|
+
dataType: Scalars['Int']['input'];
|
|
3572
|
+
defFunctionId: Scalars['ID']['input'];
|
|
3573
|
+
defFunctionParameterId: Scalars['ID']['input'];
|
|
3574
|
+
description: Scalars['String']['input'];
|
|
3575
|
+
displayName: Scalars['String']['input'];
|
|
3576
|
+
displayOrder: Scalars['Int']['input'];
|
|
3577
|
+
isColumn: Scalars['Boolean']['input'];
|
|
3578
|
+
name: Scalars['String']['input'];
|
|
3579
|
+
required: Scalars['Boolean']['input'];
|
|
3580
|
+
type: Scalars['Int']['input'];
|
|
3581
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
3582
|
+
};
|
|
3583
|
+
export declare type AssetsDmDataSourceCleansingRuleFunctionParameter = {
|
|
3584
|
+
__typename?: 'AssetsDMDataSourceCleansingRuleFunctionParameter';
|
|
3585
|
+
defFunctionParameter: AssetsDmDataSourceCleansingRuleDefFunctionParameter;
|
|
3586
|
+
defFunctionParameterId: Scalars['ID']['output'];
|
|
3587
|
+
functionId: Scalars['ID']['output'];
|
|
3588
|
+
functionParameterId: Scalars['ID']['output'];
|
|
3589
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
3590
|
+
};
|
|
3591
|
+
export declare type AssetsDmDataSourceCleansingRuleFunctionParameterInput = {
|
|
3592
|
+
defFunctionParameter: AssetsDmDataSourceCleansingRuleDefFunctionParameterInput;
|
|
3593
|
+
defFunctionParameterId: Scalars['ID']['input'];
|
|
3594
|
+
functionId: Scalars['ID']['input'];
|
|
3595
|
+
functionParameterId: Scalars['ID']['input'];
|
|
3596
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
3597
|
+
};
|
|
3598
|
+
export declare type AssetsDmDataSourceCleansingRuleInput = {
|
|
3599
|
+
dataSourceId: Scalars['ID']['input'];
|
|
3600
|
+
defFunction: AssetsDmDataSourceCleansingRuleDefFunctionInput;
|
|
3601
|
+
defFunctionId: Scalars['ID']['input'];
|
|
3602
|
+
enabled: Scalars['Boolean']['input'];
|
|
3603
|
+
functionId: Scalars['ID']['input'];
|
|
3604
|
+
functionParameters: Array<AssetsDmDataSourceCleansingRuleFunctionParameterInput>;
|
|
3605
|
+
priority: Scalars['Int']['input'];
|
|
3606
|
+
reason: AssetsDmDataSourceCleansingReasonInput;
|
|
3607
|
+
reasonId: Scalars['ID']['input'];
|
|
3608
|
+
};
|
|
3609
|
+
export declare type AssetsDmDataSourceCleansingRulesConfigureResponse = {
|
|
3610
|
+
__typename?: 'AssetsDMDataSourceCleansingRulesConfigureResponse';
|
|
3611
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
3612
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3613
|
+
};
|
|
3614
|
+
export declare type AssetsDmDataSourceCleansingRulesResponse = {
|
|
3615
|
+
__typename?: 'AssetsDMDataSourceCleansingRulesResponse';
|
|
3616
|
+
cleansingRules?: Maybe<Array<AssetsDmDataSourceCleansingRule>>;
|
|
3617
|
+
columns?: Maybe<Array<Scalars['String']['output']>>;
|
|
3618
|
+
defaultCleansingRules?: Maybe<Array<AssetsDmDataSourceCleansingRuleDefFunction>>;
|
|
3619
|
+
reasons?: Maybe<Array<AssetsDmDataSourceCleansingReason>>;
|
|
3620
|
+
};
|
|
3480
3621
|
export declare type AssetsDmDataSourceConfig = {
|
|
3481
3622
|
__typename?: 'AssetsDMDataSourceConfig';
|
|
3482
3623
|
adapterType?: Maybe<Scalars['String']['output']>;
|
|
3483
3624
|
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
3484
3625
|
objectClassType?: Maybe<AssetsDmObjectClassEnum>;
|
|
3485
3626
|
};
|
|
3627
|
+
export declare type AssetsDmDataSourceConfigureMappingInput = {
|
|
3628
|
+
columnType: Scalars['Int']['input'];
|
|
3629
|
+
columnTypeName: Scalars['String']['input'];
|
|
3630
|
+
dataSourceId: Scalars['ID']['input'];
|
|
3631
|
+
destinationColumnName: Scalars['String']['input'];
|
|
3632
|
+
isChanged: Scalars['Boolean']['input'];
|
|
3633
|
+
isNew: Scalars['Boolean']['input'];
|
|
3634
|
+
isPkElsewhere: Scalars['Boolean']['input'];
|
|
3635
|
+
isPrimaryKey: Scalars['Boolean']['input'];
|
|
3636
|
+
isRemoved: Scalars['Boolean']['input'];
|
|
3637
|
+
isSecondaryKey: Scalars['Boolean']['input'];
|
|
3638
|
+
objectAttributeId?: InputMaybe<Scalars['ID']['input']>;
|
|
3639
|
+
objectAttributeMappingId: Scalars['ID']['input'];
|
|
3640
|
+
objectAttributeName?: InputMaybe<Scalars['String']['input']>;
|
|
3641
|
+
sourceColumnName: Scalars['String']['input'];
|
|
3642
|
+
};
|
|
3643
|
+
export declare type AssetsDmDataSourceConfigureMappingResponse = {
|
|
3644
|
+
__typename?: 'AssetsDMDataSourceConfigureMappingResponse';
|
|
3645
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
3646
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3647
|
+
};
|
|
3486
3648
|
export declare type AssetsDmDataSourceDefaultTransformFunctionParameter = {
|
|
3487
3649
|
__typename?: 'AssetsDMDataSourceDefaultTransformFunctionParameter';
|
|
3488
3650
|
defFunctionParameterId: Scalars['ID']['output'];
|
|
3489
3651
|
description: Scalars['String']['output'];
|
|
3490
3652
|
displayName: Scalars['String']['output'];
|
|
3653
|
+
isSelectField: Scalars['Boolean']['output'];
|
|
3491
3654
|
name: Scalars['String']['output'];
|
|
3492
3655
|
required: Scalars['Boolean']['output'];
|
|
3656
|
+
selectFieldType?: Maybe<AssetsDmDataSourceTransformSelectFieldType>;
|
|
3493
3657
|
type: AssetsDmDataSourceTransformParameterType;
|
|
3494
3658
|
value?: Maybe<Scalars['String']['output']>;
|
|
3495
3659
|
};
|
|
@@ -3536,9 +3700,33 @@ export declare type AssetsDmDataSourceJobs = {
|
|
|
3536
3700
|
jobId: Scalars['String']['output'];
|
|
3537
3701
|
name: Scalars['String']['output'];
|
|
3538
3702
|
};
|
|
3703
|
+
export declare type AssetsDmDataSourceMapping = {
|
|
3704
|
+
__typename?: 'AssetsDMDataSourceMapping';
|
|
3705
|
+
columnType: Scalars['Int']['output'];
|
|
3706
|
+
columnTypeName: Scalars['String']['output'];
|
|
3707
|
+
dataSourceId: Scalars['ID']['output'];
|
|
3708
|
+
destinationColumnName: Scalars['String']['output'];
|
|
3709
|
+
isChanged: Scalars['Boolean']['output'];
|
|
3710
|
+
isNew: Scalars['Boolean']['output'];
|
|
3711
|
+
isPkElsewhere: Scalars['Boolean']['output'];
|
|
3712
|
+
isPrimaryKey: Scalars['Boolean']['output'];
|
|
3713
|
+
isRemoved: Scalars['Boolean']['output'];
|
|
3714
|
+
isSecondaryKey: Scalars['Boolean']['output'];
|
|
3715
|
+
objectAttributeId?: Maybe<Scalars['ID']['output']>;
|
|
3716
|
+
objectAttributeMappingId: Scalars['ID']['output'];
|
|
3717
|
+
objectAttributeName?: Maybe<Scalars['String']['output']>;
|
|
3718
|
+
objectAttributesModel: Array<AssetsDmDataSourceMappingObjectAttributeModel>;
|
|
3719
|
+
sourceColumnName: Scalars['String']['output'];
|
|
3720
|
+
};
|
|
3721
|
+
export declare type AssetsDmDataSourceMappingObjectAttributeModel = {
|
|
3722
|
+
__typename?: 'AssetsDMDataSourceMappingObjectAttributeModel';
|
|
3723
|
+
dropdownDisplayName: Scalars['String']['output'];
|
|
3724
|
+
name: Scalars['String']['output'];
|
|
3725
|
+
};
|
|
3539
3726
|
export declare enum AssetsDmDataSourceOperationEnum {
|
|
3540
3727
|
Create = "Create",
|
|
3541
|
-
Update = "Update"
|
|
3728
|
+
Update = "Update",
|
|
3729
|
+
UpdateTransform = "UpdateTransform"
|
|
3542
3730
|
}
|
|
3543
3731
|
export declare type AssetsDmDataSourceResponse = {
|
|
3544
3732
|
__typename?: 'AssetsDMDataSourceResponse';
|
|
@@ -3546,6 +3734,11 @@ export declare type AssetsDmDataSourceResponse = {
|
|
|
3546
3734
|
message?: Maybe<Scalars['String']['output']>;
|
|
3547
3735
|
success: Scalars['Boolean']['output'];
|
|
3548
3736
|
};
|
|
3737
|
+
export declare type AssetsDmDataSourceRunTransformResponse = {
|
|
3738
|
+
__typename?: 'AssetsDMDataSourceRunTransformResponse';
|
|
3739
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
3740
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3741
|
+
};
|
|
3549
3742
|
export declare type AssetsDmDataSourceSteps = {
|
|
3550
3743
|
__typename?: 'AssetsDMDataSourceSteps';
|
|
3551
3744
|
cleanse: AssetsDmStep;
|
|
@@ -3556,10 +3749,23 @@ export declare type AssetsDmDataSourceSteps = {
|
|
|
3556
3749
|
};
|
|
3557
3750
|
export declare type AssetsDmDataSourceTransform = {
|
|
3558
3751
|
__typename?: 'AssetsDMDataSourceTransform';
|
|
3752
|
+
adapterType: Scalars['String']['output'];
|
|
3559
3753
|
dataSourceTypeId: Scalars['Int']['output'];
|
|
3560
3754
|
defaultFunctions: Array<AssetsDmDataSourceDefaultTransformFunctions>;
|
|
3561
3755
|
functions: Array<AssetsDmDataSourceTransformFunctions>;
|
|
3562
3756
|
isTemplate: Scalars['Boolean']['output'];
|
|
3757
|
+
objectClassType: AssetsDmObjectClassEnum;
|
|
3758
|
+
options: AssetsDmDataSourceTransformOptions;
|
|
3759
|
+
};
|
|
3760
|
+
export declare type AssetsDmDataSourceTransformColumn = {
|
|
3761
|
+
__typename?: 'AssetsDMDataSourceTransformColumn';
|
|
3762
|
+
name: Scalars['String']['output'];
|
|
3763
|
+
type: Scalars['String']['output'];
|
|
3764
|
+
};
|
|
3765
|
+
export declare type AssetsDmDataSourceTransformColumnType = {
|
|
3766
|
+
__typename?: 'AssetsDMDataSourceTransformColumnType';
|
|
3767
|
+
format: Scalars['String']['output'];
|
|
3768
|
+
name: Scalars['String']['output'];
|
|
3563
3769
|
};
|
|
3564
3770
|
export declare type AssetsDmDataSourceTransformFunctionParameter = {
|
|
3565
3771
|
__typename?: 'AssetsDMDataSourceTransformFunctionParameter';
|
|
@@ -3567,9 +3773,11 @@ export declare type AssetsDmDataSourceTransformFunctionParameter = {
|
|
|
3567
3773
|
description: Scalars['String']['output'];
|
|
3568
3774
|
displayName: Scalars['String']['output'];
|
|
3569
3775
|
functionParameterId: Scalars['ID']['output'];
|
|
3776
|
+
isSelectField: Scalars['Boolean']['output'];
|
|
3570
3777
|
name: Scalars['String']['output'];
|
|
3571
3778
|
placeholder: Scalars['String']['output'];
|
|
3572
3779
|
required: Scalars['Boolean']['output'];
|
|
3780
|
+
selectFieldType?: Maybe<AssetsDmDataSourceTransformSelectFieldType>;
|
|
3573
3781
|
type: AssetsDmDataSourceTransformParameterType;
|
|
3574
3782
|
value: Scalars['String']['output'];
|
|
3575
3783
|
};
|
|
@@ -3583,12 +3791,34 @@ export declare type AssetsDmDataSourceTransformFunctions = {
|
|
|
3583
3791
|
functionParameters: Array<AssetsDmDataSourceTransformFunctionParameter>;
|
|
3584
3792
|
priority: Scalars['Int']['output'];
|
|
3585
3793
|
};
|
|
3794
|
+
export declare type AssetsDmDataSourceTransformInterval = {
|
|
3795
|
+
__typename?: 'AssetsDMDataSourceTransformInterval';
|
|
3796
|
+
name: Scalars['String']['output'];
|
|
3797
|
+
value: Scalars['String']['output'];
|
|
3798
|
+
};
|
|
3799
|
+
export declare type AssetsDmDataSourceTransformOptions = {
|
|
3800
|
+
__typename?: 'AssetsDMDataSourceTransformOptions';
|
|
3801
|
+
columnTypes?: Maybe<Array<AssetsDmDataSourceTransformColumnType>>;
|
|
3802
|
+
columns?: Maybe<Array<AssetsDmDataSourceTransformColumn>>;
|
|
3803
|
+
columnsWithDateTime?: Maybe<Array<AssetsDmDataSourceTransformColumn>>;
|
|
3804
|
+
dateFormats?: Maybe<Array<AssetsDmDateFormats>>;
|
|
3805
|
+
intervals?: Maybe<Array<AssetsDmDataSourceTransformInterval>>;
|
|
3806
|
+
jobs?: Maybe<Array<AssetsDmDataSourceJobs>>;
|
|
3807
|
+
};
|
|
3586
3808
|
export declare enum AssetsDmDataSourceTransformParameterType {
|
|
3587
3809
|
Date = "date",
|
|
3588
3810
|
Numeric = "numeric",
|
|
3589
3811
|
Select = "select",
|
|
3590
3812
|
String = "string"
|
|
3591
3813
|
}
|
|
3814
|
+
export declare enum AssetsDmDataSourceTransformSelectFieldType {
|
|
3815
|
+
ColumnTypes = "columnTypes",
|
|
3816
|
+
Columns = "columns",
|
|
3817
|
+
ColumnsWithDateTime = "columnsWithDateTime",
|
|
3818
|
+
DateFormats = "dateFormats",
|
|
3819
|
+
Intervals = "intervals",
|
|
3820
|
+
Jobs = "jobs"
|
|
3821
|
+
}
|
|
3592
3822
|
export declare type AssetsDmDataSourceTypes = {
|
|
3593
3823
|
__typename?: 'AssetsDMDataSourceTypes';
|
|
3594
3824
|
dataSourceTypeId: Scalars['ID']['output'];
|
|
@@ -3653,15 +3883,45 @@ export declare type AssetsDmObjectSchema = {
|
|
|
3653
3883
|
name: Scalars['String']['output'];
|
|
3654
3884
|
objectCount: Scalars['Int']['output'];
|
|
3655
3885
|
};
|
|
3886
|
+
export declare type AssetsDmObjectTag = {
|
|
3887
|
+
__typename?: 'AssetsDMObjectTag';
|
|
3888
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
3889
|
+
name: Scalars['String']['output'];
|
|
3890
|
+
objectId: Scalars['ID']['output'];
|
|
3891
|
+
tagCode: Scalars['Int']['output'];
|
|
3892
|
+
tagId: Scalars['ID']['output'];
|
|
3893
|
+
};
|
|
3894
|
+
export declare type AssetsDmObjectTagCreateInput = {
|
|
3895
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
3896
|
+
name: Scalars['String']['input'];
|
|
3897
|
+
objectId: Scalars['ID']['input'];
|
|
3898
|
+
};
|
|
3899
|
+
export declare type AssetsDmObjectTagCreateResponse = {
|
|
3900
|
+
__typename?: 'AssetsDMObjectTagCreateResponse';
|
|
3901
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
3902
|
+
message: Scalars['String']['output'];
|
|
3903
|
+
};
|
|
3904
|
+
export declare type AssetsDmObjectTagDeleteResponse = {
|
|
3905
|
+
__typename?: 'AssetsDMObjectTagDeleteResponse';
|
|
3906
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
3907
|
+
message: Scalars['String']['output'];
|
|
3908
|
+
};
|
|
3909
|
+
export declare type AssetsDmObjectTags = {
|
|
3910
|
+
__typename?: 'AssetsDMObjectTags';
|
|
3911
|
+
count: Scalars['Int']['output'];
|
|
3912
|
+
data: Array<AssetsDmObjectTag>;
|
|
3913
|
+
};
|
|
3656
3914
|
export declare enum AssetsDmObjectsListColumnType {
|
|
3657
3915
|
Boolean = "BOOLEAN",
|
|
3658
3916
|
Datetime = "DATETIME",
|
|
3659
3917
|
Icon = "ICON",
|
|
3918
|
+
Number = "NUMBER",
|
|
3660
3919
|
String = "STRING",
|
|
3661
3920
|
Tag = "TAG"
|
|
3662
3921
|
}
|
|
3663
3922
|
export declare type AssetsDmObjectsListColumns = {
|
|
3664
3923
|
__typename?: 'AssetsDMObjectsListColumns';
|
|
3924
|
+
columnsCount: Scalars['Int']['output'];
|
|
3665
3925
|
dataColumns: Array<AssetsDmObjectsListDataColumn>;
|
|
3666
3926
|
};
|
|
3667
3927
|
export declare type AssetsDmObjectsListDataColumn = {
|
|
@@ -3783,12 +4043,17 @@ export declare type AssetsIcon = {
|
|
|
3783
4043
|
url16?: Maybe<Scalars['String']['output']>;
|
|
3784
4044
|
url48?: Maybe<Scalars['String']['output']>;
|
|
3785
4045
|
};
|
|
4046
|
+
export declare type AssetsLinks = {
|
|
4047
|
+
__typename?: 'AssetsLinks';
|
|
4048
|
+
web?: Maybe<Scalars['String']['output']>;
|
|
4049
|
+
};
|
|
3786
4050
|
export declare type AssetsObject = Node & {
|
|
3787
4051
|
__typename?: 'AssetsObject';
|
|
3788
4052
|
avatar?: Maybe<AssetsAvatar>;
|
|
3789
4053
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
3790
4054
|
id: Scalars['ID']['output'];
|
|
3791
4055
|
label?: Maybe<Scalars['String']['output']>;
|
|
4056
|
+
links?: Maybe<AssetsLinks>;
|
|
3792
4057
|
objectKey?: Maybe<Scalars['String']['output']>;
|
|
3793
4058
|
objectType?: Maybe<AssetsObjectType>;
|
|
3794
4059
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -3798,6 +4063,7 @@ export declare type AssetsObjectType = Node & {
|
|
|
3798
4063
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
3799
4064
|
icon?: Maybe<AssetsIcon>;
|
|
3800
4065
|
id: Scalars['ID']['output'];
|
|
4066
|
+
links?: Maybe<AssetsLinks>;
|
|
3801
4067
|
name?: Maybe<Scalars['String']['output']>;
|
|
3802
4068
|
schema?: Maybe<AssetsSchema>;
|
|
3803
4069
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -3807,6 +4073,7 @@ export declare type AssetsSchema = Node & {
|
|
|
3807
4073
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
3808
4074
|
id: Scalars['ID']['output'];
|
|
3809
4075
|
key?: Maybe<Scalars['String']['output']>;
|
|
4076
|
+
links?: Maybe<AssetsLinks>;
|
|
3810
4077
|
name?: Maybe<Scalars['String']['output']>;
|
|
3811
4078
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
3812
4079
|
};
|
|
@@ -5356,6 +5623,15 @@ export declare type CcpMultipleProductUpgradesExperienceCapability = CommerceExp
|
|
|
5356
5623
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
5357
5624
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
5358
5625
|
};
|
|
5626
|
+
export declare type CcpMutationApi = {
|
|
5627
|
+
__typename?: 'CcpMutationApi';
|
|
5628
|
+
updateLicenseServerId?: Maybe<CcpUpdateLicenseServerIdResult>;
|
|
5629
|
+
};
|
|
5630
|
+
export declare type CcpMutationApiUpdateLicenseServerIdArgs = {
|
|
5631
|
+
entitlementId: Scalars['ID']['input'];
|
|
5632
|
+
serverId: Scalars['ID']['input'];
|
|
5633
|
+
transactionAccountId: Scalars['ID']['input'];
|
|
5634
|
+
};
|
|
5359
5635
|
export declare type CcpOffering = CommerceOffering & Node & {
|
|
5360
5636
|
__typename?: 'CcpOffering';
|
|
5361
5637
|
allowReactivationOnDifferentOffering?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -5418,6 +5694,8 @@ export declare type CcpOfferingChargeElement = {
|
|
|
5418
5694
|
};
|
|
5419
5695
|
export declare type CcpOfferingChargeElementUsageConfig = {
|
|
5420
5696
|
__typename?: 'CcpOfferingChargeElementUsageConfig';
|
|
5697
|
+
consumerKeyType?: Maybe<Scalars['String']['output']>;
|
|
5698
|
+
scale?: Maybe<CcpUsageConfigScale>;
|
|
5421
5699
|
usageKey?: Maybe<Scalars['String']['output']>;
|
|
5422
5700
|
};
|
|
5423
5701
|
export declare type CcpOfferingGroup = {
|
|
@@ -5431,7 +5709,8 @@ export declare type CcpOfferingGroup = {
|
|
|
5431
5709
|
slug?: Maybe<Scalars['String']['output']>;
|
|
5432
5710
|
};
|
|
5433
5711
|
export declare enum CcpOfferingHostingType {
|
|
5434
|
-
Cloud = "CLOUD"
|
|
5712
|
+
Cloud = "CLOUD",
|
|
5713
|
+
Datacenter = "DATACENTER"
|
|
5435
5714
|
}
|
|
5436
5715
|
export declare type CcpOfferingRelationship = {
|
|
5437
5716
|
__typename?: 'CcpOfferingRelationship';
|
|
@@ -6563,6 +6842,19 @@ export declare enum CcpTrialEndBehaviour {
|
|
|
6563
6842
|
BillingPlan = "BILLING_PLAN",
|
|
6564
6843
|
TrialPlan = "TRIAL_PLAN"
|
|
6565
6844
|
}
|
|
6845
|
+
export declare type CcpUpdateLicenseServerIdResult = {
|
|
6846
|
+
__typename?: 'CcpUpdateLicenseServerIdResult';
|
|
6847
|
+
errors?: Maybe<Array<Scalars['String']['output']>>;
|
|
6848
|
+
license?: Maybe<CcpLicense>;
|
|
6849
|
+
success: Scalars['Boolean']['output'];
|
|
6850
|
+
};
|
|
6851
|
+
export declare type CcpUsageConfigScale = {
|
|
6852
|
+
__typename?: 'CcpUsageConfigScale';
|
|
6853
|
+
output?: Maybe<Scalars['String']['output']>;
|
|
6854
|
+
ratio?: Maybe<Scalars['String']['output']>;
|
|
6855
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
6856
|
+
unit?: Maybe<Scalars['String']['output']>;
|
|
6857
|
+
};
|
|
6566
6858
|
export declare type CcpUsageQueryBucket = {
|
|
6567
6859
|
__typename?: 'CcpUsageQueryBucket';
|
|
6568
6860
|
end?: Maybe<Scalars['Float']['output']>;
|
|
@@ -12497,7 +12789,14 @@ export declare type ConfluenceAncestor = ConfluenceDatabase | ConfluenceEmbed |
|
|
|
12497
12789
|
export declare type ConfluenceAppInstallationLicense = {
|
|
12498
12790
|
__typename?: 'ConfluenceAppInstallationLicense';
|
|
12499
12791
|
active: Scalars['Boolean']['output'];
|
|
12792
|
+
billingPeriod?: Maybe<Scalars['String']['output']>;
|
|
12500
12793
|
capabilitySet?: Maybe<ConfluenceAppInstallationLicenseCapabilitySet>;
|
|
12794
|
+
ccpEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
12795
|
+
ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
|
|
12796
|
+
isEvaluation?: Maybe<Scalars['Boolean']['output']>;
|
|
12797
|
+
subscriptionEndDate?: Maybe<Scalars['String']['output']>;
|
|
12798
|
+
trialEndDate?: Maybe<Scalars['String']['output']>;
|
|
12799
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
12501
12800
|
};
|
|
12502
12801
|
export declare enum ConfluenceAppInstallationLicenseCapabilitySet {
|
|
12503
12802
|
CapabilityAdvanced = "CAPABILITY_ADVANCED",
|
|
@@ -12932,6 +13231,20 @@ export declare type ConfluenceConvertContentToFolderPayload = {
|
|
|
12932
13231
|
__typename?: 'ConfluenceConvertContentToFolderPayload';
|
|
12933
13232
|
content?: Maybe<Content>;
|
|
12934
13233
|
};
|
|
13234
|
+
export declare type ConfluenceConvertNoteInput = {
|
|
13235
|
+
containerId?: InputMaybe<Scalars['ID']['input']>;
|
|
13236
|
+
contentType: NotesContentType;
|
|
13237
|
+
id: Scalars['ID']['input'];
|
|
13238
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
13239
|
+
product: NotesProduct;
|
|
13240
|
+
};
|
|
13241
|
+
export declare type ConfluenceConvertNotePayload = {
|
|
13242
|
+
__typename?: 'ConfluenceConvertNotePayload';
|
|
13243
|
+
errors?: Maybe<Array<NoteMutationError>>;
|
|
13244
|
+
id: Scalars['ID']['output'];
|
|
13245
|
+
success: Scalars['Boolean']['output'];
|
|
13246
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
13247
|
+
};
|
|
12935
13248
|
export declare type ConfluenceCopyPageTaskResult = {
|
|
12936
13249
|
__typename?: 'ConfluenceCopyPageTaskResult';
|
|
12937
13250
|
page?: Maybe<ConfluencePage>;
|
|
@@ -13347,6 +13660,7 @@ export declare type ConfluenceExtensionPrincipal = {
|
|
|
13347
13660
|
id?: Maybe<Scalars['ID']['output']>;
|
|
13348
13661
|
};
|
|
13349
13662
|
export declare type ConfluenceExtensionRenderingContextInput = {
|
|
13663
|
+
contentId?: InputMaybe<Scalars['Long']['input']>;
|
|
13350
13664
|
spaceId?: InputMaybe<Scalars['Long']['input']>;
|
|
13351
13665
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
13352
13666
|
};
|
|
@@ -13435,10 +13749,12 @@ export declare type ConfluenceForgeExtension = {
|
|
|
13435
13749
|
appId: Scalars['ID']['output'];
|
|
13436
13750
|
appOwner?: Maybe<Scalars['String']['output']>;
|
|
13437
13751
|
appVersion?: Maybe<Scalars['String']['output']>;
|
|
13752
|
+
confluenceUserAccess?: Maybe<ConfluenceUserAccess>;
|
|
13438
13753
|
consentUrl?: Maybe<Scalars['String']['output']>;
|
|
13439
13754
|
definitionId: Scalars['ID']['output'];
|
|
13440
13755
|
egress?: Maybe<Array<ConfluenceExtensionEgressDeclaration>>;
|
|
13441
13756
|
environmentId: Scalars['ID']['output'];
|
|
13757
|
+
environmentKey?: Maybe<Scalars['String']['output']>;
|
|
13442
13758
|
environmentType: Scalars['String']['output'];
|
|
13443
13759
|
hiddenBy?: Maybe<ConfluenceExtensionVisibilityControlMechanism>;
|
|
13444
13760
|
id: Scalars['ID']['output'];
|
|
@@ -13828,6 +14144,10 @@ export declare enum ConfluenceMutationContentStatus {
|
|
|
13828
14144
|
Current = "CURRENT",
|
|
13829
14145
|
Draft = "DRAFT"
|
|
13830
14146
|
}
|
|
14147
|
+
export declare enum ConfluenceNotesOrdering {
|
|
14148
|
+
DateLastModifiedAsc = "DATE_LAST_MODIFIED_ASC",
|
|
14149
|
+
DateLastModifiedDesc = "DATE_LAST_MODIFIED_DESC"
|
|
14150
|
+
}
|
|
13831
14151
|
export declare type ConfluenceOperationCheck = {
|
|
13832
14152
|
__typename?: 'ConfluenceOperationCheck';
|
|
13833
14153
|
operation?: Maybe<ConfluenceOperationName>;
|
|
@@ -14628,6 +14948,15 @@ export declare type ConfluenceUpdateAdminAnnouncementBannerInput = {
|
|
|
14628
14948
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
14629
14949
|
visibility?: InputMaybe<ConfluenceAdminAnnouncementBannerVisibilityType>;
|
|
14630
14950
|
};
|
|
14951
|
+
export declare type ConfluenceUpdateCalendarViewInput = {
|
|
14952
|
+
view: Scalars['String']['input'];
|
|
14953
|
+
};
|
|
14954
|
+
export declare type ConfluenceUpdateCalendarViewPayload = {
|
|
14955
|
+
__typename?: 'ConfluenceUpdateCalendarViewPayload';
|
|
14956
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14957
|
+
success: Scalars['Boolean']['output'];
|
|
14958
|
+
userCalendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
14959
|
+
};
|
|
14631
14960
|
export declare type ConfluenceUpdateCommentInput = {
|
|
14632
14961
|
body: ConfluenceContentBodyInput;
|
|
14633
14962
|
id: Scalars['ID']['input'];
|
|
@@ -14824,6 +15153,11 @@ export declare type ConfluenceUser = {
|
|
|
14824
15153
|
space?: Maybe<Space>;
|
|
14825
15154
|
userKey?: Maybe<Scalars['String']['output']>;
|
|
14826
15155
|
};
|
|
15156
|
+
export declare type ConfluenceUserAccess = {
|
|
15157
|
+
__typename?: 'ConfluenceUserAccess';
|
|
15158
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15159
|
+
hasAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
15160
|
+
};
|
|
14827
15161
|
export declare type ConfluenceUserClass = {
|
|
14828
15162
|
__typename?: 'ConfluenceUserClass';
|
|
14829
15163
|
displayName: Scalars['String']['output'];
|
|
@@ -17263,11 +17597,94 @@ export declare type CountUsersGroupByPageItem = {
|
|
|
17263
17597
|
};
|
|
17264
17598
|
export declare type CplsCapacityPlanningPeopleView = {
|
|
17265
17599
|
__typename?: 'CplsCapacityPlanningPeopleView';
|
|
17600
|
+
contributors: CplsContributorConnection;
|
|
17601
|
+
id: Scalars['ID']['output'];
|
|
17602
|
+
timeCells: Array<CplsTimeCell>;
|
|
17603
|
+
viewSettings: CplsViewSettings;
|
|
17604
|
+
};
|
|
17605
|
+
export declare type CplsCapacityPlanningPeopleViewContributorsArgs = {
|
|
17606
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17607
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
17608
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17609
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
17610
|
+
};
|
|
17611
|
+
export declare type CplsContribution = {
|
|
17612
|
+
__typename?: 'CplsContribution';
|
|
17613
|
+
endDate: Scalars['Date']['output'];
|
|
17614
|
+
startDate: Scalars['Date']['output'];
|
|
17615
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
17616
|
+
valueType: CplsContributionValueType;
|
|
17617
|
+
};
|
|
17618
|
+
export declare type CplsContributionAggregation = {
|
|
17619
|
+
__typename?: 'CplsContributionAggregation';
|
|
17620
|
+
availability: Scalars['Float']['output'];
|
|
17621
|
+
endDate: Scalars['Date']['output'];
|
|
17622
|
+
startDate: Scalars['Date']['output'];
|
|
17623
|
+
totalContributionHours: Scalars['Float']['output'];
|
|
17624
|
+
};
|
|
17625
|
+
export declare enum CplsContributionValueType {
|
|
17626
|
+
Hours = "HOURS",
|
|
17627
|
+
Percentage = "PERCENTAGE"
|
|
17628
|
+
}
|
|
17629
|
+
export declare type CplsContributor = {
|
|
17630
|
+
__typename?: 'CplsContributor';
|
|
17631
|
+
contributionAggregations: Array<CplsContributionAggregation>;
|
|
17632
|
+
contributorData?: Maybe<CplsContributorData>;
|
|
17633
|
+
contributorWork: CplsContributorWorkConnection;
|
|
17634
|
+
};
|
|
17635
|
+
export declare type CplsContributorContributorWorkArgs = {
|
|
17636
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17637
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
17638
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17639
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
17640
|
+
};
|
|
17641
|
+
export declare type CplsContributorConnection = HasPageInfo & {
|
|
17642
|
+
__typename?: 'CplsContributorConnection';
|
|
17643
|
+
edges: Array<CplsContributorEdge>;
|
|
17644
|
+
pageInfo: PageInfo;
|
|
17645
|
+
};
|
|
17646
|
+
export declare type CplsContributorData = AppUser | AtlassianAccountUser | CustomerUser;
|
|
17647
|
+
export declare type CplsContributorEdge = {
|
|
17648
|
+
__typename?: 'CplsContributorEdge';
|
|
17649
|
+
cursor: Scalars['String']['output'];
|
|
17650
|
+
node: CplsContributor;
|
|
17651
|
+
};
|
|
17652
|
+
export declare type CplsContributorWorkConnection = HasPageInfo & {
|
|
17653
|
+
__typename?: 'CplsContributorWorkConnection';
|
|
17654
|
+
edges: Array<CplsContributorWorkEdge>;
|
|
17655
|
+
pageInfo: PageInfo;
|
|
17656
|
+
};
|
|
17657
|
+
export declare type CplsContributorWorkEdge = {
|
|
17658
|
+
__typename?: 'CplsContributorWorkEdge';
|
|
17659
|
+
contributions: Array<CplsContribution>;
|
|
17660
|
+
contributorId: Scalars['ID']['output'];
|
|
17661
|
+
cursor: Scalars['String']['output'];
|
|
17662
|
+
workData?: Maybe<CplsWorkData>;
|
|
17663
|
+
workId: Scalars['ID']['output'];
|
|
17664
|
+
};
|
|
17665
|
+
export declare type CplsCustomContributionTarget = {
|
|
17666
|
+
__typename?: 'CplsCustomContributionTarget';
|
|
17266
17667
|
id: Scalars['ID']['output'];
|
|
17668
|
+
name: Scalars['String']['output'];
|
|
17267
17669
|
};
|
|
17670
|
+
export declare type CplsTimeCell = {
|
|
17671
|
+
__typename?: 'CplsTimeCell';
|
|
17672
|
+
endDate: Scalars['Date']['output'];
|
|
17673
|
+
startDate: Scalars['Date']['output'];
|
|
17674
|
+
};
|
|
17675
|
+
export declare enum CplsTimeScaleType {
|
|
17676
|
+
Weekly = "WEEKLY"
|
|
17677
|
+
}
|
|
17678
|
+
export declare type CplsViewSettings = {
|
|
17679
|
+
__typename?: 'CplsViewSettings';
|
|
17680
|
+
alwaysShowNumbersInGraph: Scalars['Boolean']['output'];
|
|
17681
|
+
contributionValueType: CplsContributionValueType;
|
|
17682
|
+
timeScale: CplsTimeScaleType;
|
|
17683
|
+
};
|
|
17684
|
+
export declare type CplsWorkData = CplsCustomContributionTarget | JiraIssue;
|
|
17268
17685
|
export declare type CreateAppContainerPayload = Payload & {
|
|
17269
17686
|
__typename?: 'CreateAppContainerPayload';
|
|
17270
|
-
container
|
|
17687
|
+
container?: Maybe<AppContainer>;
|
|
17271
17688
|
errors?: Maybe<Array<MutationError>>;
|
|
17272
17689
|
success: Scalars['Boolean']['output'];
|
|
17273
17690
|
};
|
|
@@ -17836,6 +18253,7 @@ export declare type CreateMetadataInput = {
|
|
|
17836
18253
|
productLink?: InputMaybe<Scalars['String']['input']>;
|
|
17837
18254
|
};
|
|
17838
18255
|
export declare type CreateNoteInput = {
|
|
18256
|
+
backgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
17839
18257
|
body?: InputMaybe<Scalars['String']['input']>;
|
|
17840
18258
|
metadata?: InputMaybe<CreateMetadataInput>;
|
|
17841
18259
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -20071,12 +20489,14 @@ export declare type DeleteLabelPayload = {
|
|
|
20071
20489
|
label: Scalars['String']['output'];
|
|
20072
20490
|
};
|
|
20073
20491
|
export declare type DeleteNoteInput = {
|
|
20074
|
-
ari
|
|
20492
|
+
ari?: InputMaybe<Scalars['String']['input']>;
|
|
20493
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
20075
20494
|
};
|
|
20076
20495
|
export declare type DeleteNotePayload = {
|
|
20077
20496
|
__typename?: 'DeleteNotePayload';
|
|
20078
20497
|
ari?: Maybe<Scalars['String']['output']>;
|
|
20079
20498
|
errors?: Maybe<Array<NoteMutationError>>;
|
|
20499
|
+
id: Scalars['ID']['output'];
|
|
20080
20500
|
success: Scalars['Boolean']['output'];
|
|
20081
20501
|
};
|
|
20082
20502
|
export declare type DeletePagesInput = {
|
|
@@ -20802,6 +21222,12 @@ export declare type DevAiRovoDevCreateSessionPayload = Payload & {
|
|
|
20802
21222
|
session?: Maybe<DevAiRovoDevSession>;
|
|
20803
21223
|
success: Scalars['Boolean']['output'];
|
|
20804
21224
|
};
|
|
21225
|
+
export declare enum DevAiRovoDevPrStatus {
|
|
21226
|
+
Declined = "DECLINED",
|
|
21227
|
+
Draft = "DRAFT",
|
|
21228
|
+
Merged = "MERGED",
|
|
21229
|
+
Open = "OPEN"
|
|
21230
|
+
}
|
|
20805
21231
|
export declare enum DevAiRovoDevRaisePullRequestOption {
|
|
20806
21232
|
Always = "ALWAYS",
|
|
20807
21233
|
Draft = "DRAFT",
|
|
@@ -20828,7 +21254,10 @@ export declare type DevAiRovoDevSession = Node & {
|
|
|
20828
21254
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
20829
21255
|
id: Scalars['ID']['output'];
|
|
20830
21256
|
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
21257
|
+
issue?: Maybe<JiraIssue>;
|
|
21258
|
+
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
20831
21259
|
options?: Maybe<DevAiRovoDevSessionOptions>;
|
|
21260
|
+
prStatus?: Maybe<DevAiRovoDevPrStatus>;
|
|
20832
21261
|
promptAdf?: Maybe<Scalars['JSON']['output']>;
|
|
20833
21262
|
repository?: Maybe<DevAiRovoDevRepository>;
|
|
20834
21263
|
sessionStatus?: Maybe<DevAiRovoDevSessionStatus>;
|
|
@@ -21629,6 +22058,12 @@ export declare type DevOpsMetricsPerProjectPrCycleTimeMetricsArgs = {
|
|
|
21629
22058
|
filter: DevOpsMetricsPerProjectPrCycleTimeMetricsFilter;
|
|
21630
22059
|
first: Scalars['Int']['input'];
|
|
21631
22060
|
};
|
|
22061
|
+
export declare enum DevOpsMetricsComparisonOperator {
|
|
22062
|
+
EqualTo = "EQUAL_TO",
|
|
22063
|
+
GreaterThan = "GREATER_THAN",
|
|
22064
|
+
LessThan = "LESS_THAN",
|
|
22065
|
+
NotEqualTo = "NOT_EQUAL_TO"
|
|
22066
|
+
}
|
|
21632
22067
|
export declare type DevOpsMetricsCycleTime = {
|
|
21633
22068
|
__typename?: 'DevOpsMetricsCycleTime';
|
|
21634
22069
|
cycleTimeMetrics?: Maybe<Array<Maybe<DevOpsMetricsCycleTimeMetrics>>>;
|
|
@@ -21643,6 +22078,9 @@ export declare type DevOpsMetricsCycleTimeData = {
|
|
|
21643
22078
|
dateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
21644
22079
|
issuesShippedCount?: Maybe<Scalars['Int']['output']>;
|
|
21645
22080
|
};
|
|
22081
|
+
export declare type DevOpsMetricsCycleTimeInsight = {
|
|
22082
|
+
type: Scalars['String']['output'];
|
|
22083
|
+
};
|
|
21646
22084
|
export declare type DevOpsMetricsCycleTimeMean = DevOpsMetricsCycleTimeMetrics & {
|
|
21647
22085
|
__typename?: 'DevOpsMetricsCycleTimeMean';
|
|
21648
22086
|
aggregateData?: Maybe<Scalars['Long']['output']>;
|
|
@@ -21652,6 +22090,14 @@ export declare type DevOpsMetricsCycleTimeMetrics = {
|
|
|
21652
22090
|
aggregateData?: Maybe<Scalars['Long']['output']>;
|
|
21653
22091
|
data?: Maybe<Array<Maybe<DevOpsMetricsCycleTimeData>>>;
|
|
21654
22092
|
};
|
|
22093
|
+
export declare type DevOpsMetricsCycleTimePercentChangeTrendAlert = DevOpsMetricsCycleTimeInsight & {
|
|
22094
|
+
__typename?: 'DevOpsMetricsCycleTimePercentChangeTrendAlert';
|
|
22095
|
+
criterion: DevOpsMetricsTrendAlertCriterion;
|
|
22096
|
+
evaluationPeriod: DevOpsMetricsTrendAlertEvaluationPeriod;
|
|
22097
|
+
percentChange: Scalars['Float']['output'];
|
|
22098
|
+
percentOfTotalCycleTime: Scalars['Float']['output'];
|
|
22099
|
+
type: Scalars['String']['output'];
|
|
22100
|
+
};
|
|
21655
22101
|
export declare type DevOpsMetricsCycleTimePercentile = DevOpsMetricsCycleTimeMetrics & {
|
|
21656
22102
|
__typename?: 'DevOpsMetricsCycleTimePercentile';
|
|
21657
22103
|
aggregateData?: Maybe<Scalars['Long']['output']>;
|
|
@@ -21764,6 +22210,7 @@ export declare enum DevOpsMetricsPerPrCycleTimeBreakdownPhase {
|
|
|
21764
22210
|
}
|
|
21765
22211
|
export declare type DevOpsMetricsPerPrCycleTimeBreakdownPhaseMetrics = {
|
|
21766
22212
|
__typename?: 'DevOpsMetricsPerPRCycleTimeBreakdownPhaseMetrics';
|
|
22213
|
+
insights?: Maybe<Array<DevOpsMetricsCycleTimeInsight>>;
|
|
21767
22214
|
medianHistoricalPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
21768
22215
|
medianPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
21769
22216
|
phase?: Maybe<DevOpsMetricsPerPrCycleTimeBreakdownPhase>;
|
|
@@ -21813,6 +22260,16 @@ export declare type DevOpsMetricsRollupType = {
|
|
|
21813
22260
|
percentile?: InputMaybe<Scalars['Int']['input']>;
|
|
21814
22261
|
type: DevOpsMetricsRollupOption;
|
|
21815
22262
|
};
|
|
22263
|
+
export declare type DevOpsMetricsTrendAlertCriterion = {
|
|
22264
|
+
__typename?: 'DevOpsMetricsTrendAlertCriterion';
|
|
22265
|
+
operator?: Maybe<DevOpsMetricsComparisonOperator>;
|
|
22266
|
+
threshold: Scalars['Float']['output'];
|
|
22267
|
+
};
|
|
22268
|
+
export declare type DevOpsMetricsTrendAlertEvaluationPeriod = {
|
|
22269
|
+
__typename?: 'DevOpsMetricsTrendAlertEvaluationPeriod';
|
|
22270
|
+
endAtExclusive?: Maybe<Scalars['DateTime']['output']>;
|
|
22271
|
+
startFromInclusive?: Maybe<Scalars['DateTime']['output']>;
|
|
22272
|
+
};
|
|
21816
22273
|
export declare type DevOpsMutation = {
|
|
21817
22274
|
__typename?: 'DevOpsMutation';
|
|
21818
22275
|
_empty?: Maybe<Scalars['String']['output']>;
|
|
@@ -23480,7 +23937,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
23480
23937
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23481
23938
|
node?: Maybe<ExternalAssociation>;
|
|
23482
23939
|
};
|
|
23483
|
-
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;
|
|
23940
|
+
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;
|
|
23484
23941
|
export declare type ExternalAttachment = {
|
|
23485
23942
|
__typename?: 'ExternalAttachment';
|
|
23486
23943
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -23976,12 +24433,15 @@ export declare type ExternalEntities = {
|
|
|
23976
24433
|
softwareService?: Maybe<Array<Maybe<ExternalSoftwareService>>>;
|
|
23977
24434
|
space?: Maybe<Array<Maybe<ExternalSpace>>>;
|
|
23978
24435
|
test?: Maybe<Array<Maybe<ExternalTest>>>;
|
|
24436
|
+
testExecution?: Maybe<Array<Maybe<ExternalTestExecution>>>;
|
|
24437
|
+
testPlan?: Maybe<Array<Maybe<ExternalTestPlan>>>;
|
|
24438
|
+
testRun?: Maybe<Array<Maybe<ExternalTestRun>>>;
|
|
23979
24439
|
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
23980
24440
|
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
23981
24441
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
23982
24442
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
23983
24443
|
};
|
|
23984
|
-
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;
|
|
24444
|
+
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;
|
|
23985
24445
|
export declare type ExternalEnvironment = {
|
|
23986
24446
|
__typename?: 'ExternalEnvironment';
|
|
23987
24447
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -24398,6 +24858,28 @@ export declare type ExternalTest = Node & {
|
|
|
24398
24858
|
url?: Maybe<Scalars['String']['output']>;
|
|
24399
24859
|
version?: Maybe<Scalars['String']['output']>;
|
|
24400
24860
|
};
|
|
24861
|
+
export declare type ExternalTestExecution = Node & {
|
|
24862
|
+
__typename?: 'ExternalTestExecution';
|
|
24863
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
24864
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
24865
|
+
createdBy?: Maybe<ExternalUser>;
|
|
24866
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
24867
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
24868
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
24869
|
+
id: Scalars['ID']['output'];
|
|
24870
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
24871
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
24872
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
24873
|
+
parent?: Maybe<ExternalEntity>;
|
|
24874
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
24875
|
+
provider?: Maybe<ExternalProvider>;
|
|
24876
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
24877
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
24878
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
24879
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
24880
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
24881
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
24882
|
+
};
|
|
24401
24883
|
export declare type ExternalTestInfo = {
|
|
24402
24884
|
__typename?: 'ExternalTestInfo';
|
|
24403
24885
|
numberFailed?: Maybe<Scalars['Int']['output']>;
|
|
@@ -24405,6 +24887,50 @@ export declare type ExternalTestInfo = {
|
|
|
24405
24887
|
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
24406
24888
|
totalNumber?: Maybe<Scalars['Int']['output']>;
|
|
24407
24889
|
};
|
|
24890
|
+
export declare type ExternalTestPlan = Node & {
|
|
24891
|
+
__typename?: 'ExternalTestPlan';
|
|
24892
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
24893
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
24894
|
+
createdBy?: Maybe<ExternalUser>;
|
|
24895
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
24896
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
24897
|
+
id: Scalars['ID']['output'];
|
|
24898
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
24899
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
24900
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
24901
|
+
parent?: Maybe<ExternalEntity>;
|
|
24902
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
24903
|
+
provider?: Maybe<ExternalProvider>;
|
|
24904
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
24905
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
24906
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
24907
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
24908
|
+
};
|
|
24909
|
+
export declare type ExternalTestRun = Node & {
|
|
24910
|
+
__typename?: 'ExternalTestRun';
|
|
24911
|
+
assignee?: Maybe<ExternalUser>;
|
|
24912
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
24913
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
24914
|
+
createdBy?: Maybe<ExternalUser>;
|
|
24915
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
24916
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
24917
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
24918
|
+
finishedAt?: Maybe<Scalars['String']['output']>;
|
|
24919
|
+
id: Scalars['ID']['output'];
|
|
24920
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
24921
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
24922
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
24923
|
+
parent?: Maybe<ExternalEntity>;
|
|
24924
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
24925
|
+
provider?: Maybe<ExternalProvider>;
|
|
24926
|
+
startedAt?: Maybe<Scalars['String']['output']>;
|
|
24927
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
24928
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
24929
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
24930
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
24931
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
24932
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
24933
|
+
};
|
|
24408
24934
|
export declare type ExternalThumbnail = {
|
|
24409
24935
|
__typename?: 'ExternalThumbnail';
|
|
24410
24936
|
externalUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -30011,6 +30537,8 @@ export declare type GraphStore = {
|
|
|
30011
30537
|
parentIssueHasChildIssueRelationship?: Maybe<GraphStoreFullParentIssueHasChildIssueConnection>;
|
|
30012
30538
|
parentMessageHasChildMessage?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageConnection>;
|
|
30013
30539
|
parentMessageHasChildMessageInverse?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection>;
|
|
30540
|
+
parentTeamHasChildTeam?: Maybe<GraphStoreSimplifiedParentTeamHasChildTeamConnection>;
|
|
30541
|
+
parentTeamHasChildTeamInverse?: Maybe<GraphStoreSimplifiedParentTeamHasChildTeamInverseConnection>;
|
|
30014
30542
|
positionAllocatedToFocusArea?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection>;
|
|
30015
30543
|
positionAllocatedToFocusAreaInverse?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection>;
|
|
30016
30544
|
positionAssociatedExternalPosition?: Maybe<GraphStoreSimplifiedPositionAssociatedExternalPositionConnection>;
|
|
@@ -32672,6 +33200,20 @@ export declare type GraphStoreParentMessageHasChildMessageInverseArgs = {
|
|
|
32672
33200
|
id: Scalars['ID']['input'];
|
|
32673
33201
|
sort?: InputMaybe<GraphStoreParentMessageHasChildMessageSortInput>;
|
|
32674
33202
|
};
|
|
33203
|
+
export declare type GraphStoreParentTeamHasChildTeamArgs = {
|
|
33204
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33205
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33206
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33207
|
+
id: Scalars['ID']['input'];
|
|
33208
|
+
sort?: InputMaybe<GraphStoreParentTeamHasChildTeamSortInput>;
|
|
33209
|
+
};
|
|
33210
|
+
export declare type GraphStoreParentTeamHasChildTeamInverseArgs = {
|
|
33211
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33212
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33213
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33214
|
+
id: Scalars['ID']['input'];
|
|
33215
|
+
sort?: InputMaybe<GraphStoreParentTeamHasChildTeamSortInput>;
|
|
33216
|
+
};
|
|
32675
33217
|
export declare type GraphStorePositionAllocatedToFocusAreaArgs = {
|
|
32676
33218
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32677
33219
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37009,6 +37551,20 @@ export declare type GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderRe
|
|
|
37009
37551
|
to: Scalars['ID']['input'];
|
|
37010
37552
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
37011
37553
|
};
|
|
37554
|
+
export declare type GraphStoreCreateParentTeamHasChildTeamInput = {
|
|
37555
|
+
relationships: Array<GraphStoreCreateParentTeamHasChildTeamRelationshipInput>;
|
|
37556
|
+
};
|
|
37557
|
+
export declare type GraphStoreCreateParentTeamHasChildTeamPayload = Payload & {
|
|
37558
|
+
__typename?: 'GraphStoreCreateParentTeamHasChildTeamPayload';
|
|
37559
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37560
|
+
success: Scalars['Boolean']['output'];
|
|
37561
|
+
};
|
|
37562
|
+
export declare type GraphStoreCreateParentTeamHasChildTeamRelationshipInput = {
|
|
37563
|
+
from: Scalars['ID']['input'];
|
|
37564
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
37565
|
+
to: Scalars['ID']['input'];
|
|
37566
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
37567
|
+
};
|
|
37012
37568
|
export declare type GraphStoreCreateProjectAssociatedOpsgenieTeamInput = {
|
|
37013
37569
|
relationships: Array<GraphStoreCreateProjectAssociatedOpsgenieTeamRelationshipInput>;
|
|
37014
37570
|
};
|
|
@@ -37387,6 +37943,7 @@ export declare type GraphStoreCypherQueryV2BatchConnection = {
|
|
|
37387
37943
|
};
|
|
37388
37944
|
export declare type GraphStoreCypherQueryV2BatchEdge = {
|
|
37389
37945
|
__typename?: 'GraphStoreCypherQueryV2BatchEdge';
|
|
37946
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37390
37947
|
node: GraphStoreCypherQueryV2BatchNode;
|
|
37391
37948
|
};
|
|
37392
37949
|
export declare type GraphStoreCypherQueryV2BatchFloatObject = {
|
|
@@ -37442,6 +37999,7 @@ export declare type GraphStoreCypherQueryV2Connection = {
|
|
|
37442
37999
|
};
|
|
37443
38000
|
export declare type GraphStoreCypherQueryV2Edge = {
|
|
37444
38001
|
__typename?: 'GraphStoreCypherQueryV2Edge';
|
|
38002
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37445
38003
|
node: GraphStoreCypherQueryV2Node;
|
|
37446
38004
|
};
|
|
37447
38005
|
export declare type GraphStoreCypherQueryV2FloatObject = {
|
|
@@ -37596,6 +38154,19 @@ export declare type GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderRe
|
|
|
37596
38154
|
from: Scalars['ID']['input'];
|
|
37597
38155
|
to: Scalars['ID']['input'];
|
|
37598
38156
|
};
|
|
38157
|
+
export declare type GraphStoreDeleteParentTeamHasChildTeamInput = {
|
|
38158
|
+
relationships: Array<GraphStoreDeleteParentTeamHasChildTeamRelationshipInput>;
|
|
38159
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38160
|
+
};
|
|
38161
|
+
export declare type GraphStoreDeleteParentTeamHasChildTeamPayload = Payload & {
|
|
38162
|
+
__typename?: 'GraphStoreDeleteParentTeamHasChildTeamPayload';
|
|
38163
|
+
errors?: Maybe<Array<MutationError>>;
|
|
38164
|
+
success: Scalars['Boolean']['output'];
|
|
38165
|
+
};
|
|
38166
|
+
export declare type GraphStoreDeleteParentTeamHasChildTeamRelationshipInput = {
|
|
38167
|
+
from: Scalars['ID']['input'];
|
|
38168
|
+
to: Scalars['ID']['input'];
|
|
38169
|
+
};
|
|
37599
38170
|
export declare type GraphStoreDeleteProjectAssociatedOpsgenieTeamInput = {
|
|
37600
38171
|
relationships: Array<GraphStoreDeleteProjectAssociatedOpsgenieTeamRelationshipInput>;
|
|
37601
38172
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -41735,6 +42306,7 @@ export declare type GraphStoreMutation = {
|
|
|
41735
42306
|
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
41736
42307
|
createLoomVideoHasConfluencePage?: Maybe<GraphStoreCreateLoomVideoHasConfluencePagePayload>;
|
|
41737
42308
|
createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
42309
|
+
createParentTeamHasChildTeam?: Maybe<GraphStoreCreateParentTeamHasChildTeamPayload>;
|
|
41738
42310
|
createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
|
|
41739
42311
|
createProjectAssociatedToSecurityContainer?: Maybe<GraphStoreCreateProjectAssociatedToSecurityContainerPayload>;
|
|
41740
42312
|
createProjectDisassociatedRepo?: Maybe<GraphStoreCreateProjectDisassociatedRepoPayload>;
|
|
@@ -41761,6 +42333,7 @@ export declare type GraphStoreMutation = {
|
|
|
41761
42333
|
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
41762
42334
|
deleteLoomVideoHasConfluencePage?: Maybe<GraphStoreDeleteLoomVideoHasConfluencePagePayload>;
|
|
41763
42335
|
deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
42336
|
+
deleteParentTeamHasChildTeam?: Maybe<GraphStoreDeleteParentTeamHasChildTeamPayload>;
|
|
41764
42337
|
deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
|
|
41765
42338
|
deleteProjectAssociatedToSecurityContainer?: Maybe<GraphStoreDeleteProjectAssociatedToSecurityContainerPayload>;
|
|
41766
42339
|
deleteProjectDisassociatedRepo?: Maybe<GraphStoreDeleteProjectDisassociatedRepoPayload>;
|
|
@@ -41806,6 +42379,9 @@ export declare type GraphStoreMutationCreateLoomVideoHasConfluencePageArgs = {
|
|
|
41806
42379
|
export declare type GraphStoreMutationCreateMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
41807
42380
|
input?: InputMaybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
41808
42381
|
};
|
|
42382
|
+
export declare type GraphStoreMutationCreateParentTeamHasChildTeamArgs = {
|
|
42383
|
+
input?: InputMaybe<GraphStoreCreateParentTeamHasChildTeamInput>;
|
|
42384
|
+
};
|
|
41809
42385
|
export declare type GraphStoreMutationCreateProjectAssociatedOpsgenieTeamArgs = {
|
|
41810
42386
|
input?: InputMaybe<GraphStoreCreateProjectAssociatedOpsgenieTeamInput>;
|
|
41811
42387
|
};
|
|
@@ -41884,6 +42460,9 @@ export declare type GraphStoreMutationDeleteLoomVideoHasConfluencePageArgs = {
|
|
|
41884
42460
|
export declare type GraphStoreMutationDeleteMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
41885
42461
|
input?: InputMaybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
41886
42462
|
};
|
|
42463
|
+
export declare type GraphStoreMutationDeleteParentTeamHasChildTeamArgs = {
|
|
42464
|
+
input?: InputMaybe<GraphStoreDeleteParentTeamHasChildTeamInput>;
|
|
42465
|
+
};
|
|
41887
42466
|
export declare type GraphStoreMutationDeleteProjectAssociatedOpsgenieTeamArgs = {
|
|
41888
42467
|
input?: InputMaybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamInput>;
|
|
41889
42468
|
};
|
|
@@ -41956,6 +42535,12 @@ export declare type GraphStoreParentIssueHasChildIssueSortInput = {
|
|
|
41956
42535
|
export declare type GraphStoreParentMessageHasChildMessageSortInput = {
|
|
41957
42536
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41958
42537
|
};
|
|
42538
|
+
export declare type GraphStoreParentTeamHasChildTeamSortInput = {
|
|
42539
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
42540
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
42541
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42542
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
42543
|
+
};
|
|
41959
42544
|
export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
41960
42545
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41961
42546
|
};
|
|
@@ -45849,6 +46434,38 @@ export declare type GraphStoreSimplifiedParentMessageHasChildMessageInverseEdge
|
|
|
45849
46434
|
};
|
|
45850
46435
|
export declare type GraphStoreSimplifiedParentMessageHasChildMessageInverseUnion = ExternalMessage;
|
|
45851
46436
|
export declare type GraphStoreSimplifiedParentMessageHasChildMessageUnion = ExternalMessage;
|
|
46437
|
+
export declare type GraphStoreSimplifiedParentTeamHasChildTeamConnection = HasPageInfo & HasTotal & {
|
|
46438
|
+
__typename?: 'GraphStoreSimplifiedParentTeamHasChildTeamConnection';
|
|
46439
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentTeamHasChildTeamEdge>>>;
|
|
46440
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
46441
|
+
pageInfo: PageInfo;
|
|
46442
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
46443
|
+
};
|
|
46444
|
+
export declare type GraphStoreSimplifiedParentTeamHasChildTeamEdge = {
|
|
46445
|
+
__typename?: 'GraphStoreSimplifiedParentTeamHasChildTeamEdge';
|
|
46446
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46447
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46448
|
+
id: Scalars['ID']['output'];
|
|
46449
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46450
|
+
node?: Maybe<GraphStoreSimplifiedParentTeamHasChildTeamUnion>;
|
|
46451
|
+
};
|
|
46452
|
+
export declare type GraphStoreSimplifiedParentTeamHasChildTeamInverseConnection = HasPageInfo & HasTotal & {
|
|
46453
|
+
__typename?: 'GraphStoreSimplifiedParentTeamHasChildTeamInverseConnection';
|
|
46454
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentTeamHasChildTeamInverseEdge>>>;
|
|
46455
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
46456
|
+
pageInfo: PageInfo;
|
|
46457
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
46458
|
+
};
|
|
46459
|
+
export declare type GraphStoreSimplifiedParentTeamHasChildTeamInverseEdge = {
|
|
46460
|
+
__typename?: 'GraphStoreSimplifiedParentTeamHasChildTeamInverseEdge';
|
|
46461
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46462
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46463
|
+
id: Scalars['ID']['output'];
|
|
46464
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46465
|
+
node?: Maybe<GraphStoreSimplifiedParentTeamHasChildTeamInverseUnion>;
|
|
46466
|
+
};
|
|
46467
|
+
export declare type GraphStoreSimplifiedParentTeamHasChildTeamInverseUnion = TeamV2;
|
|
46468
|
+
export declare type GraphStoreSimplifiedParentTeamHasChildTeamUnion = TeamV2;
|
|
45852
46469
|
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection = HasPageInfo & {
|
|
45853
46470
|
__typename?: 'GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection';
|
|
45854
46471
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaEdge>>>;
|
|
@@ -51870,6 +52487,18 @@ export declare type GrowthUnifiedProfileConfluenceUserActivityContext = {
|
|
|
51870
52487
|
__typename?: 'GrowthUnifiedProfileConfluenceUserActivityContext';
|
|
51871
52488
|
r28PageDwells?: Maybe<Scalars['Int']['output']>;
|
|
51872
52489
|
};
|
|
52490
|
+
export declare type GrowthUnifiedProfileCreateEntitlementProfileInput = {
|
|
52491
|
+
entitlementId: Scalars['ID']['input'];
|
|
52492
|
+
firstProductOnSite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
52493
|
+
trial?: InputMaybe<GrowthUnifiedProfileEntitlementContextTrialInput>;
|
|
52494
|
+
};
|
|
52495
|
+
export declare type GrowthUnifiedProfileCreateEntitlementProfileResponse = {
|
|
52496
|
+
__typename?: 'GrowthUnifiedProfileCreateEntitlementProfileResponse';
|
|
52497
|
+
entitlementId: Scalars['ID']['output'];
|
|
52498
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
52499
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
52500
|
+
success?: Maybe<Scalars['Boolean']['output']>;
|
|
52501
|
+
};
|
|
51873
52502
|
export declare type GrowthUnifiedProfileCreateOrgProfileInput = {
|
|
51874
52503
|
orgId: Scalars['ID']['input'];
|
|
51875
52504
|
twcOnboardingContext?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileTwcOnboardingContextInput>>>;
|
|
@@ -51897,6 +52526,23 @@ export declare enum GrowthUnifiedProfileEnterpriseAccountStatus {
|
|
|
51897
52526
|
Platimun = "PLATIMUN",
|
|
51898
52527
|
Silver = "SILVER"
|
|
51899
52528
|
}
|
|
52529
|
+
export declare type GrowthUnifiedProfileEntitlementContextTrialInput = {
|
|
52530
|
+
trialEndTimeStamp?: InputMaybe<Scalars['Float']['input']>;
|
|
52531
|
+
trialTrigger?: InputMaybe<GrowthUnifiedProfileTrialTrigger>;
|
|
52532
|
+
trialType?: InputMaybe<GrowthUnifiedProfileTrialType>;
|
|
52533
|
+
};
|
|
52534
|
+
export declare type GrowthUnifiedProfileEntitlementContextTrialResult = {
|
|
52535
|
+
__typename?: 'GrowthUnifiedProfileEntitlementContextTrialResult';
|
|
52536
|
+
trialEndTimeStamp?: Maybe<Scalars['Float']['output']>;
|
|
52537
|
+
trialTrigger?: Maybe<GrowthUnifiedProfileTrialTrigger>;
|
|
52538
|
+
trialType?: Maybe<GrowthUnifiedProfileTrialType>;
|
|
52539
|
+
};
|
|
52540
|
+
export declare type GrowthUnifiedProfileEntitlementProfileResult = {
|
|
52541
|
+
__typename?: 'GrowthUnifiedProfileEntitlementProfileResult';
|
|
52542
|
+
entitlementId: Scalars['ID']['output'];
|
|
52543
|
+
firstProductOnSite?: Maybe<Scalars['Boolean']['output']>;
|
|
52544
|
+
lastKnownTrial?: Maybe<GrowthUnifiedProfileEntitlementContextTrialResult>;
|
|
52545
|
+
};
|
|
51900
52546
|
export declare enum GrowthUnifiedProfileEntityType {
|
|
51901
52547
|
AjsAnonymousUser = "AJS_ANONYMOUS_USER",
|
|
51902
52548
|
AtlassianAccount = "ATLASSIAN_ACCOUNT",
|
|
@@ -52196,6 +52842,7 @@ export declare enum GrowthUnifiedProfileTeamType {
|
|
|
52196
52842
|
}
|
|
52197
52843
|
export declare type GrowthUnifiedProfileTrialContext = {
|
|
52198
52844
|
__typename?: 'GrowthUnifiedProfileTrialContext';
|
|
52845
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
52199
52846
|
paymentDetailsOnFile?: Maybe<Scalars['Boolean']['output']>;
|
|
52200
52847
|
trialEndTimeStamp?: Maybe<Scalars['String']['output']>;
|
|
52201
52848
|
trialTrigger?: Maybe<GrowthUnifiedProfileTrialTrigger>;
|
|
@@ -52517,6 +53164,7 @@ export declare type HelpCenter = Node & {
|
|
|
52517
53164
|
pages?: Maybe<Array<Maybe<HelpCenterPage>>>;
|
|
52518
53165
|
permissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
|
|
52519
53166
|
portals?: Maybe<HelpCenterPortals>;
|
|
53167
|
+
productEntityImages?: Maybe<Array<HelpCenterProductEntityImages>>;
|
|
52520
53168
|
projectMappingData?: Maybe<HelpCenterProjectMappingData>;
|
|
52521
53169
|
siteDefaultLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
52522
53170
|
slug?: Maybe<Scalars['String']['output']>;
|
|
@@ -52533,6 +53181,9 @@ export declare type HelpCenterPortalsArgs = {
|
|
|
52533
53181
|
portalsFilter?: InputMaybe<HelpCenterPortalFilter>;
|
|
52534
53182
|
sortOrder?: InputMaybe<HelpCenterPortalsSortOrder>;
|
|
52535
53183
|
};
|
|
53184
|
+
export declare type HelpCenterProductEntityImagesArgs = {
|
|
53185
|
+
filter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
53186
|
+
};
|
|
52536
53187
|
export declare enum HelpCenterAccessControlType {
|
|
52537
53188
|
External = "EXTERNAL",
|
|
52538
53189
|
GroupBased = "GROUP_BASED",
|
|
@@ -52738,7 +53389,8 @@ export declare type HelpCenterMediaConfig = {
|
|
|
52738
53389
|
};
|
|
52739
53390
|
export declare enum HelpCenterMediaConfigOperationType {
|
|
52740
53391
|
BannerUpload = "BANNER_UPLOAD",
|
|
52741
|
-
LogoUpload = "LOGO_UPLOAD"
|
|
53392
|
+
LogoUpload = "LOGO_UPLOAD",
|
|
53393
|
+
Read = "READ"
|
|
52742
53394
|
}
|
|
52743
53395
|
export declare type HelpCenterMutationApi = {
|
|
52744
53396
|
__typename?: 'HelpCenterMutationApi';
|
|
@@ -52968,6 +53620,21 @@ export declare enum HelpCenterPortalsType {
|
|
|
52968
53620
|
Hidden = "HIDDEN",
|
|
52969
53621
|
Visible = "VISIBLE"
|
|
52970
53622
|
}
|
|
53623
|
+
export declare type HelpCenterProductEntityImageInput = {
|
|
53624
|
+
entityId: Scalars['String']['input'];
|
|
53625
|
+
entityType: HelpCenterProductEntityType;
|
|
53626
|
+
fileId?: InputMaybe<Scalars['String']['input']>;
|
|
53627
|
+
imageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
53628
|
+
};
|
|
53629
|
+
export declare type HelpCenterProductEntityImages = {
|
|
53630
|
+
__typename?: 'HelpCenterProductEntityImages';
|
|
53631
|
+
entityId?: Maybe<Scalars['String']['output']>;
|
|
53632
|
+
entityType?: Maybe<HelpCenterProductEntityType>;
|
|
53633
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
53634
|
+
};
|
|
53635
|
+
export declare enum HelpCenterProductEntityType {
|
|
53636
|
+
KnowledgeCards = "KNOWLEDGE_CARDS"
|
|
53637
|
+
}
|
|
52971
53638
|
export declare type HelpCenterProjectMappingData = {
|
|
52972
53639
|
__typename?: 'HelpCenterProjectMappingData';
|
|
52973
53640
|
projectMapping?: Maybe<Array<HelpCenterProjectMappingEntry>>;
|
|
@@ -53012,6 +53679,7 @@ export declare type HelpCenterQueryApi = {
|
|
|
53012
53679
|
helpCentersByProjectId?: Maybe<HelpCenterQueryResultConnection>;
|
|
53013
53680
|
helpCentersConfig?: Maybe<HelpCentersConfigResult>;
|
|
53014
53681
|
helpCentersList?: Maybe<HelpCentersListQueryResult>;
|
|
53682
|
+
hubMediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
53015
53683
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
53016
53684
|
};
|
|
53017
53685
|
export declare type HelpCenterQueryApiHelpCenterByHoistedProjectIdArgs = {
|
|
@@ -53072,6 +53740,10 @@ export declare type HelpCenterQueryApiHelpCentersListArgs = {
|
|
|
53072
53740
|
sortOrder: HelpCenterSortOrder;
|
|
53073
53741
|
workspaceAri: Scalars['ID']['input'];
|
|
53074
53742
|
};
|
|
53743
|
+
export declare type HelpCenterQueryApiHubMediaConfigArgs = {
|
|
53744
|
+
ari: Scalars['ID']['input'];
|
|
53745
|
+
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
53746
|
+
};
|
|
53075
53747
|
export declare type HelpCenterQueryApiMediaConfigArgs = {
|
|
53076
53748
|
helpCenterAri: Scalars['ID']['input'];
|
|
53077
53749
|
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
@@ -53183,6 +53855,7 @@ export declare type HelpCenterUpdateInput = {
|
|
|
53183
53855
|
helpCenterBranding?: InputMaybe<HelpCenterBrandingInput>;
|
|
53184
53856
|
homePageLayout?: InputMaybe<HelpCenterHomePageLayoutInput>;
|
|
53185
53857
|
name?: InputMaybe<HelpCenterNameInput>;
|
|
53858
|
+
productEntityImages?: InputMaybe<Array<HelpCenterProductEntityImageInput>>;
|
|
53186
53859
|
slug?: InputMaybe<Scalars['String']['input']>;
|
|
53187
53860
|
virtualAgentEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53188
53861
|
};
|
|
@@ -58417,6 +59090,13 @@ export declare type JiraCreateGlobalCustomFieldPayload = Payload & {
|
|
|
58417
59090
|
field?: Maybe<JiraIssueFieldConfig>;
|
|
58418
59091
|
success: Scalars['Boolean']['output'];
|
|
58419
59092
|
};
|
|
59093
|
+
export declare type JiraCreateGlobalCustomFieldV2Input = {
|
|
59094
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
59095
|
+
formatConfig?: InputMaybe<JiraFieldFormatConfigInput>;
|
|
59096
|
+
name: Scalars['String']['input'];
|
|
59097
|
+
options?: InputMaybe<Array<JiraCreateGlobalCustomFieldOptionInput>>;
|
|
59098
|
+
typeKey: Scalars['String']['input'];
|
|
59099
|
+
};
|
|
58420
59100
|
export declare type JiraCreateIssueSearchFormattingRuleInput = {
|
|
58421
59101
|
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
58422
59102
|
expression: JiraFormattingRuleExpressionInput;
|
|
@@ -58424,11 +59104,11 @@ export declare type JiraCreateIssueSearchFormattingRuleInput = {
|
|
|
58424
59104
|
formattingColor?: InputMaybe<JiraColorInput>;
|
|
58425
59105
|
viewId: Scalars['ID']['input'];
|
|
58426
59106
|
};
|
|
58427
|
-
export declare type JiraCreateIssueSearchFormattingRulePayload = {
|
|
59107
|
+
export declare type JiraCreateIssueSearchFormattingRulePayload = Payload & {
|
|
58428
59108
|
__typename?: 'JiraCreateIssueSearchFormattingRulePayload';
|
|
58429
|
-
createdRule?: Maybe<JiraFormattingRule>;
|
|
58430
59109
|
errors?: Maybe<Array<MutationError>>;
|
|
58431
59110
|
success: Scalars['Boolean']['output'];
|
|
59111
|
+
view?: Maybe<JiraView>;
|
|
58432
59112
|
};
|
|
58433
59113
|
export declare type JiraCreateIssueTypeInput = {
|
|
58434
59114
|
avatarId: Scalars['String']['input'];
|
|
@@ -58947,11 +59627,11 @@ export declare type JiraDeleteIssueSearchFormattingRuleInput = {
|
|
|
58947
59627
|
ruleId: Scalars['ID']['input'];
|
|
58948
59628
|
viewId: Scalars['ID']['input'];
|
|
58949
59629
|
};
|
|
58950
|
-
export declare type JiraDeleteIssueSearchFormattingRulePayload = {
|
|
59630
|
+
export declare type JiraDeleteIssueSearchFormattingRulePayload = Payload & {
|
|
58951
59631
|
__typename?: 'JiraDeleteIssueSearchFormattingRulePayload';
|
|
58952
|
-
deletedRuleId?: Maybe<Scalars['ID']['output']>;
|
|
58953
59632
|
errors?: Maybe<Array<MutationError>>;
|
|
58954
59633
|
success: Scalars['Boolean']['output'];
|
|
59634
|
+
view?: Maybe<JiraView>;
|
|
58955
59635
|
};
|
|
58956
59636
|
export declare type JiraDeleteIssueTypeInput = {
|
|
58957
59637
|
cloudId: Scalars['ID']['input'];
|
|
@@ -59427,6 +60107,18 @@ export declare type JiraDismissInContextConfigPromptPayload = Payload & {
|
|
|
59427
60107
|
errors?: Maybe<Array<MutationError>>;
|
|
59428
60108
|
success: Scalars['Boolean']['output'];
|
|
59429
60109
|
};
|
|
60110
|
+
export declare type JiraDragAndDropBoardViewIssueInput = {
|
|
60111
|
+
destinationCellId?: InputMaybe<Scalars['ID']['input']>;
|
|
60112
|
+
id: Scalars['ID']['input'];
|
|
60113
|
+
rank?: InputMaybe<JiraIssueRankInput>;
|
|
60114
|
+
transitionId?: InputMaybe<Scalars['Int']['input']>;
|
|
60115
|
+
};
|
|
60116
|
+
export declare type JiraDragAndDropBoardViewIssuePayload = {
|
|
60117
|
+
__typename?: 'JiraDragAndDropBoardViewIssuePayload';
|
|
60118
|
+
errors?: Maybe<Array<MutationError>>;
|
|
60119
|
+
issue?: Maybe<JiraIssue>;
|
|
60120
|
+
success: Scalars['Boolean']['output'];
|
|
60121
|
+
};
|
|
59430
60122
|
export declare type JiraDuplicateJourneyConfigurationInput = {
|
|
59431
60123
|
id: Scalars['ID']['input'];
|
|
59432
60124
|
};
|
|
@@ -59851,6 +60543,15 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
59851
60543
|
Allow = "ALLOW",
|
|
59852
60544
|
Exclude = "EXCLUDE"
|
|
59853
60545
|
}
|
|
60546
|
+
export declare type JiraFieldScheme = Node & {
|
|
60547
|
+
__typename?: 'JiraFieldScheme';
|
|
60548
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
60549
|
+
fieldsCount?: Maybe<Scalars['Int']['output']>;
|
|
60550
|
+
id: Scalars['ID']['output'];
|
|
60551
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
60552
|
+
projectsCount?: Maybe<Scalars['Int']['output']>;
|
|
60553
|
+
schemeId?: Maybe<Scalars['ID']['output']>;
|
|
60554
|
+
};
|
|
59854
60555
|
export declare type JiraFieldSchemeAssociatedField = {
|
|
59855
60556
|
__typename?: 'JiraFieldSchemeAssociatedField';
|
|
59856
60557
|
field?: Maybe<JiraField>;
|
|
@@ -59868,19 +60569,29 @@ export declare type JiraFieldSchemeAssociatedFieldsEdge = {
|
|
|
59868
60569
|
node?: Maybe<JiraFieldSchemeAssociatedField>;
|
|
59869
60570
|
};
|
|
59870
60571
|
export declare type JiraFieldSchemeAssociatedFieldsInput = {
|
|
59871
|
-
|
|
60572
|
+
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
59872
60573
|
schemeId: Scalars['ID']['input'];
|
|
59873
60574
|
};
|
|
59874
60575
|
export declare type JiraFieldSchemeAvailableFieldsInput = {
|
|
59875
|
-
|
|
60576
|
+
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
59876
60577
|
schemeId: Scalars['ID']['input'];
|
|
59877
60578
|
};
|
|
59878
60579
|
export declare type JiraFieldSchemePayload = Payload & {
|
|
59879
60580
|
__typename?: 'JiraFieldSchemePayload';
|
|
59880
60581
|
errors?: Maybe<Array<MutationError>>;
|
|
59881
|
-
fieldScheme?: Maybe<
|
|
60582
|
+
fieldScheme?: Maybe<JiraFieldScheme>;
|
|
59882
60583
|
success: Scalars['Boolean']['output'];
|
|
59883
60584
|
};
|
|
60585
|
+
export declare type JiraFieldSchemesConnection = {
|
|
60586
|
+
__typename?: 'JiraFieldSchemesConnection';
|
|
60587
|
+
edges?: Maybe<Array<Maybe<JiraFieldSchemesEdge>>>;
|
|
60588
|
+
pageInfo: PageInfo;
|
|
60589
|
+
};
|
|
60590
|
+
export declare type JiraFieldSchemesEdge = {
|
|
60591
|
+
__typename?: 'JiraFieldSchemesEdge';
|
|
60592
|
+
cursor: Scalars['String']['output'];
|
|
60593
|
+
node?: Maybe<JiraFieldScheme>;
|
|
60594
|
+
};
|
|
59884
60595
|
export declare type JiraFieldSchemesInput = {
|
|
59885
60596
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
59886
60597
|
};
|
|
@@ -60103,6 +60814,10 @@ export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
60103
60814
|
type: Scalars['String']['output'];
|
|
60104
60815
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
60105
60816
|
};
|
|
60817
|
+
export declare enum JiraFlagOperations {
|
|
60818
|
+
Add = "ADD",
|
|
60819
|
+
Remove = "REMOVE"
|
|
60820
|
+
}
|
|
60106
60821
|
export declare type JiraForgeAppEgressDeclaration = {
|
|
60107
60822
|
__typename?: 'JiraForgeAppEgressDeclaration';
|
|
60108
60823
|
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -60849,6 +61564,7 @@ export declare type JiraGroupedListViewGroupsArgs = {
|
|
|
60849
61564
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
60850
61565
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60851
61566
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61567
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
60852
61568
|
};
|
|
60853
61569
|
export declare type JiraGroupedListViewHasDefaultFieldSetsArgs = {
|
|
60854
61570
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
@@ -61061,6 +61777,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
61061
61777
|
updatedField?: Maybe<JiraDateTimePickerField>;
|
|
61062
61778
|
votesField?: Maybe<JiraVotesField>;
|
|
61063
61779
|
watchesField?: Maybe<JiraWatchesField>;
|
|
61780
|
+
webLinks?: Maybe<JiraWebRemoteIssueLinkConnection>;
|
|
61064
61781
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
61065
61782
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
61066
61783
|
};
|
|
@@ -61247,6 +61964,12 @@ export declare type JiraIssueStartDateViewFieldArgs = {
|
|
|
61247
61964
|
export declare type JiraIssueSuggestFieldValuesArgs = {
|
|
61248
61965
|
filterProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
61249
61966
|
};
|
|
61967
|
+
export declare type JiraIssueWebLinksArgs = {
|
|
61968
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61969
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
61970
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61971
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61972
|
+
};
|
|
61250
61973
|
export declare type JiraIssueWorklogsArgs = {
|
|
61251
61974
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61252
61975
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -61462,6 +62185,15 @@ export declare type JiraIssueCreatedStreamHubPayload = {
|
|
|
61462
62185
|
__typename?: 'JiraIssueCreatedStreamHubPayload';
|
|
61463
62186
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
61464
62187
|
};
|
|
62188
|
+
export declare type JiraIssueDeleteInput = {
|
|
62189
|
+
deleteSubtasks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62190
|
+
id: Scalars['ID']['input'];
|
|
62191
|
+
};
|
|
62192
|
+
export declare type JiraIssueDeletePayload = {
|
|
62193
|
+
__typename?: 'JiraIssueDeletePayload';
|
|
62194
|
+
errors?: Maybe<Array<MutationError>>;
|
|
62195
|
+
success: Scalars['Boolean']['output'];
|
|
62196
|
+
};
|
|
61465
62197
|
export declare type JiraIssueDeletedStreamHubPayload = {
|
|
61466
62198
|
__typename?: 'JiraIssueDeletedStreamHubPayload';
|
|
61467
62199
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
@@ -62168,6 +62900,10 @@ export declare type JiraIssuePullRequests = {
|
|
|
62168
62900
|
export declare type JiraIssuePullRequestsInput = {
|
|
62169
62901
|
filterLegacy?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62170
62902
|
};
|
|
62903
|
+
export declare type JiraIssueRankInput = {
|
|
62904
|
+
afterIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
62905
|
+
beforeIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
62906
|
+
};
|
|
62171
62907
|
export declare type JiraIssueRemoteIssueLink = {
|
|
62172
62908
|
__typename?: 'JiraIssueRemoteIssueLink';
|
|
62173
62909
|
href?: Maybe<Scalars['String']['output']>;
|
|
@@ -63152,6 +63888,9 @@ export declare enum JiraJqlAutocompleteType {
|
|
|
63152
63888
|
User = "USER",
|
|
63153
63889
|
Version = "VERSION"
|
|
63154
63890
|
}
|
|
63891
|
+
export declare type JiraJqlBacklogInput = {
|
|
63892
|
+
boardId: Scalars['Long']['input'];
|
|
63893
|
+
};
|
|
63155
63894
|
export declare type JiraJqlBoardInput = {
|
|
63156
63895
|
boardId: Scalars['Long']['input'];
|
|
63157
63896
|
swimlaneStrategy?: InputMaybe<JiraBoardSwimlaneStrategy>;
|
|
@@ -63583,6 +64322,7 @@ export declare type JiraJqlResolutionFieldValue = JiraJqlFieldValue & {
|
|
|
63583
64322
|
resolution?: Maybe<JiraResolution>;
|
|
63584
64323
|
};
|
|
63585
64324
|
export declare type JiraJqlScopeInput = {
|
|
64325
|
+
backlog?: InputMaybe<JiraJqlBacklogInput>;
|
|
63586
64326
|
board?: InputMaybe<JiraJqlBoardInput>;
|
|
63587
64327
|
plan?: InputMaybe<JiraJqlPlanInput>;
|
|
63588
64328
|
};
|
|
@@ -64419,6 +65159,7 @@ export declare type JiraMutation = {
|
|
|
64419
65159
|
updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
|
|
64420
65160
|
updateEntitlementField?: Maybe<JiraServiceManagementEntitlementFieldPayload>;
|
|
64421
65161
|
updateFieldSetsView?: Maybe<JiraFieldSetsViewPayload>;
|
|
65162
|
+
updateFlagField?: Maybe<JiraUpdateFlagFieldPayload>;
|
|
64422
65163
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
64423
65164
|
updateFormattingRule?: Maybe<JiraUpdateFormattingRulePayload>;
|
|
64424
65165
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
@@ -64497,6 +65238,7 @@ export declare type JiraMutation = {
|
|
|
64497
65238
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
64498
65239
|
updateVotesField?: Maybe<JiraVotesFieldPayload>;
|
|
64499
65240
|
updateWatchesField?: Maybe<JiraWatchesFieldPayload>;
|
|
65241
|
+
updateWorklog?: Maybe<JiraUpdateWorklogPayload>;
|
|
64500
65242
|
userPreferences?: Maybe<JiraUserPreferencesMutation>;
|
|
64501
65243
|
};
|
|
64502
65244
|
export declare type JiraMutationAddFieldsToProjectArgs = {
|
|
@@ -64949,6 +65691,9 @@ export declare type JiraMutationUpdateFieldSetsViewArgs = {
|
|
|
64949
65691
|
id: Scalars['ID']['input'];
|
|
64950
65692
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
64951
65693
|
};
|
|
65694
|
+
export declare type JiraMutationUpdateFlagFieldArgs = {
|
|
65695
|
+
input: JiraUpdateFlagFieldInput;
|
|
65696
|
+
};
|
|
64952
65697
|
export declare type JiraMutationUpdateForgeObjectFieldArgs = {
|
|
64953
65698
|
input: JiraUpdateForgeObjectFieldInput;
|
|
64954
65699
|
};
|
|
@@ -65202,6 +65947,9 @@ export declare type JiraMutationUpdateVotesFieldArgs = {
|
|
|
65202
65947
|
export declare type JiraMutationUpdateWatchesFieldArgs = {
|
|
65203
65948
|
input: JiraUpdateWatchesFieldInput;
|
|
65204
65949
|
};
|
|
65950
|
+
export declare type JiraMutationUpdateWorklogArgs = {
|
|
65951
|
+
input: JiraUpdateWorklogInput;
|
|
65952
|
+
};
|
|
65205
65953
|
export declare type JiraMutationUserPreferencesArgs = {
|
|
65206
65954
|
cloudId: Scalars['ID']['input'];
|
|
65207
65955
|
};
|
|
@@ -65380,7 +66128,6 @@ export declare type JiraNotificationPreferences = {
|
|
|
65380
66128
|
issueUpdated?: Maybe<JiraNotificationPreference>;
|
|
65381
66129
|
mentionsCombined?: Maybe<JiraNotificationPreference>;
|
|
65382
66130
|
miscellaneousIssueEventCombined?: Maybe<JiraNotificationPreference>;
|
|
65383
|
-
projectInviterNotification?: Maybe<JiraNotificationPreference>;
|
|
65384
66131
|
worklogCombined?: Maybe<JiraNotificationPreference>;
|
|
65385
66132
|
};
|
|
65386
66133
|
export declare type JiraNotificationProjectPreferenceConnection = HasPageInfo & HasTotal & {
|
|
@@ -65407,7 +66154,6 @@ export declare enum JiraNotificationType {
|
|
|
65407
66154
|
IssueUpdated = "ISSUE_UPDATED",
|
|
65408
66155
|
MentionsCombined = "MENTIONS_COMBINED",
|
|
65409
66156
|
MiscellaneousIssueEventCombined = "MISCELLANEOUS_ISSUE_EVENT_COMBINED",
|
|
65410
|
-
ProjectInviterNotification = "PROJECT_INVITER_NOTIFICATION",
|
|
65411
66157
|
WorklogCombined = "WORKLOG_COMBINED"
|
|
65412
66158
|
}
|
|
65413
66159
|
export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
@@ -65871,6 +66617,17 @@ export declare type JiraOrderFormattingRulePayloadRulesArgs = {
|
|
|
65871
66617
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65872
66618
|
scope: Scalars['ID']['input'];
|
|
65873
66619
|
};
|
|
66620
|
+
export declare type JiraOrderIssueSearchFormattingRuleInput = {
|
|
66621
|
+
afterRuleId?: InputMaybe<Scalars['ID']['input']>;
|
|
66622
|
+
ruleId: Scalars['ID']['input'];
|
|
66623
|
+
viewId: Scalars['ID']['input'];
|
|
66624
|
+
};
|
|
66625
|
+
export declare type JiraOrderIssueSearchFormattingRulePayload = Payload & {
|
|
66626
|
+
__typename?: 'JiraOrderIssueSearchFormattingRulePayload';
|
|
66627
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66628
|
+
success: Scalars['Boolean']['output'];
|
|
66629
|
+
view?: Maybe<JiraView>;
|
|
66630
|
+
};
|
|
65874
66631
|
export declare enum JiraOrganizationApprovalLocation {
|
|
65875
66632
|
DuringInstallationFlow = "DURING_INSTALLATION_FLOW",
|
|
65876
66633
|
DuringProvisioning = "DURING_PROVISIONING",
|
|
@@ -66643,6 +67400,13 @@ export declare type JiraPriorityFieldPayload = Payload & {
|
|
|
66643
67400
|
export declare type JiraPriorityInput = {
|
|
66644
67401
|
priorityId: Scalars['ID']['input'];
|
|
66645
67402
|
};
|
|
67403
|
+
export declare type JiraProductDiscoveryIssueEventPayload = {
|
|
67404
|
+
__typename?: 'JiraProductDiscoveryIssueEventPayload';
|
|
67405
|
+
actionerAccountId?: Maybe<Scalars['String']['output']>;
|
|
67406
|
+
project: JiraIssueStreamHubEventPayloadProject;
|
|
67407
|
+
resource: Scalars['String']['output'];
|
|
67408
|
+
type: Scalars['String']['output'];
|
|
67409
|
+
};
|
|
66646
67410
|
export declare enum JiraProductEnum {
|
|
66647
67411
|
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
66648
67412
|
JiraServiceManagement = "JIRA_SERVICE_MANAGEMENT",
|
|
@@ -69225,6 +69989,8 @@ export declare type JiraReport = {
|
|
|
69225
69989
|
description?: Maybe<Scalars['String']['output']>;
|
|
69226
69990
|
id: Scalars['ID']['output'];
|
|
69227
69991
|
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
69992
|
+
isNotApplicableDesc?: Maybe<Scalars['String']['output']>;
|
|
69993
|
+
isNotApplicableReason?: Maybe<Scalars['String']['output']>;
|
|
69228
69994
|
key?: Maybe<Scalars['String']['output']>;
|
|
69229
69995
|
name?: Maybe<Scalars['String']['output']>;
|
|
69230
69996
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -72009,6 +72775,7 @@ export declare type JiraSubscription = {
|
|
|
72009
72775
|
onIssueUpdatedByProjectsNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
72010
72776
|
onJirtBoardIssueSubscription?: Maybe<JiraJirtBoardScoreIssueEventPayload>;
|
|
72011
72777
|
onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
|
|
72778
|
+
onJpdIssueSubscription?: Maybe<JiraProductDiscoveryIssueEventPayload>;
|
|
72012
72779
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
72013
72780
|
onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
72014
72781
|
onJwmIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
@@ -72103,6 +72870,12 @@ export declare type JiraSubscriptionOnJirtIssueSubscriptionArgs = {
|
|
|
72103
72870
|
events: Array<Scalars['String']['input']>;
|
|
72104
72871
|
projectIds: Array<Scalars['String']['input']>;
|
|
72105
72872
|
};
|
|
72873
|
+
export declare type JiraSubscriptionOnJpdIssueSubscriptionArgs = {
|
|
72874
|
+
atlassianAccountId?: InputMaybe<Scalars['String']['input']>;
|
|
72875
|
+
cloudId: Scalars['ID']['input'];
|
|
72876
|
+
events: Array<Scalars['String']['input']>;
|
|
72877
|
+
projectIds: Array<Scalars['String']['input']>;
|
|
72878
|
+
};
|
|
72106
72879
|
export declare type JiraSubscriptionOnJwmFieldMutationArgs = {
|
|
72107
72880
|
siteId: Scalars['ID']['input'];
|
|
72108
72881
|
};
|
|
@@ -72677,6 +73450,25 @@ export declare type JiraUpdateFieldSetPreferencesInput = {
|
|
|
72677
73450
|
isFrozen?: InputMaybe<Scalars['Boolean']['input']>;
|
|
72678
73451
|
width?: InputMaybe<Scalars['Int']['input']>;
|
|
72679
73452
|
};
|
|
73453
|
+
export declare type JiraUpdateFlagCommentInput = {
|
|
73454
|
+
content?: InputMaybe<JiraAdfInput>;
|
|
73455
|
+
property?: InputMaybe<Scalars['String']['input']>;
|
|
73456
|
+
visibility?: InputMaybe<Scalars['String']['input']>;
|
|
73457
|
+
};
|
|
73458
|
+
export declare type JiraUpdateFlagFieldInput = {
|
|
73459
|
+
comment?: InputMaybe<JiraUpdateFlagCommentInput>;
|
|
73460
|
+
id: Scalars['ID']['input'];
|
|
73461
|
+
operation: JiraUpdateFlagFieldOperationInput;
|
|
73462
|
+
};
|
|
73463
|
+
export declare type JiraUpdateFlagFieldOperationInput = {
|
|
73464
|
+
operation: JiraFlagOperations;
|
|
73465
|
+
};
|
|
73466
|
+
export declare type JiraUpdateFlagFieldPayload = {
|
|
73467
|
+
__typename?: 'JiraUpdateFlagFieldPayload';
|
|
73468
|
+
errors?: Maybe<Array<MutationError>>;
|
|
73469
|
+
field?: Maybe<JiraFlagField>;
|
|
73470
|
+
success: Scalars['Boolean']['output'];
|
|
73471
|
+
};
|
|
72680
73472
|
export declare type JiraUpdateForgeMultipleGroupPickerFieldInput = {
|
|
72681
73473
|
id: Scalars['ID']['input'];
|
|
72682
73474
|
operations: Array<JiraForgeMultipleGroupPickerFieldOperationInput>;
|
|
@@ -72746,16 +73538,16 @@ export declare type JiraUpdateIssueLinkRelationshipTypeFieldPayload = Payload &
|
|
|
72746
73538
|
};
|
|
72747
73539
|
export declare type JiraUpdateIssueSearchFormattingRuleInput = {
|
|
72748
73540
|
expression?: InputMaybe<JiraFormattingRuleExpressionInput>;
|
|
72749
|
-
|
|
73541
|
+
formattingArea?: InputMaybe<JiraFormattingArea>;
|
|
72750
73542
|
formattingColor?: InputMaybe<JiraColorInput>;
|
|
72751
73543
|
ruleId: Scalars['ID']['input'];
|
|
72752
73544
|
viewId: Scalars['ID']['input'];
|
|
72753
73545
|
};
|
|
72754
|
-
export declare type JiraUpdateIssueSearchFormattingRulePayload = {
|
|
73546
|
+
export declare type JiraUpdateIssueSearchFormattingRulePayload = Payload & {
|
|
72755
73547
|
__typename?: 'JiraUpdateIssueSearchFormattingRulePayload';
|
|
72756
73548
|
errors?: Maybe<Array<MutationError>>;
|
|
72757
73549
|
success: Scalars['Boolean']['output'];
|
|
72758
|
-
|
|
73550
|
+
view?: Maybe<JiraView>;
|
|
72759
73551
|
};
|
|
72760
73552
|
export declare type JiraUpdateIssueTransitionInput = {
|
|
72761
73553
|
comment?: InputMaybe<JiraIssueTransitionCommentInput>;
|
|
@@ -73097,6 +73889,21 @@ export declare type JiraUpdateWorklogFieldInputForIssueTransitions = {
|
|
|
73097
73889
|
id: Scalars['ID']['input'];
|
|
73098
73890
|
operation: JiraWorklogFieldOperationInputForIssueTransitions;
|
|
73099
73891
|
};
|
|
73892
|
+
export declare type JiraUpdateWorklogInput = {
|
|
73893
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
73894
|
+
issue?: InputMaybe<Scalars['ID']['input']>;
|
|
73895
|
+
remainingEstimate?: InputMaybe<JiraEstimateInput>;
|
|
73896
|
+
startedTime?: InputMaybe<Scalars['DateTime']['input']>;
|
|
73897
|
+
timeSpent?: InputMaybe<JiraEstimateInput>;
|
|
73898
|
+
workDescription?: InputMaybe<JiraAdfInput>;
|
|
73899
|
+
};
|
|
73900
|
+
export declare type JiraUpdateWorklogPayload = {
|
|
73901
|
+
__typename?: 'JiraUpdateWorklogPayload';
|
|
73902
|
+
errors?: Maybe<Array<MutationError>>;
|
|
73903
|
+
field?: Maybe<JiraTimeTrackingField>;
|
|
73904
|
+
success: Scalars['Boolean']['output'];
|
|
73905
|
+
worklog?: Maybe<JiraWorklog>;
|
|
73906
|
+
};
|
|
73100
73907
|
export declare type JiraUpsertIssueTypePayload = Payload & {
|
|
73101
73908
|
__typename?: 'JiraUpsertIssueTypePayload';
|
|
73102
73909
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -73839,6 +74646,7 @@ export declare type JiraVersionUpdateApproverDescriptionPayload = Payload & {
|
|
|
73839
74646
|
};
|
|
73840
74647
|
export declare type JiraVersionUpdateApproverStatusInput = {
|
|
73841
74648
|
approverId: Scalars['ID']['input'];
|
|
74649
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
73842
74650
|
status?: InputMaybe<JiraVersionApproverStatus>;
|
|
73843
74651
|
};
|
|
73844
74652
|
export declare type JiraVersionUpdateApproverStatusPayload = Payload & {
|
|
@@ -74008,12 +74816,27 @@ export declare enum JiraWatchesOperations {
|
|
|
74008
74816
|
}
|
|
74009
74817
|
export declare type JiraWebRemoteIssueLink = {
|
|
74010
74818
|
__typename?: 'JiraWebRemoteIssueLink';
|
|
74819
|
+
applicationName?: Maybe<Scalars['String']['output']>;
|
|
74820
|
+
applicationType?: Maybe<Scalars['String']['output']>;
|
|
74011
74821
|
href?: Maybe<Scalars['String']['output']>;
|
|
74012
74822
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
74013
74823
|
id: Scalars['ID']['output'];
|
|
74824
|
+
relationship?: Maybe<Scalars['String']['output']>;
|
|
74825
|
+
resolved?: Maybe<Scalars['Boolean']['output']>;
|
|
74014
74826
|
summary?: Maybe<Scalars['String']['output']>;
|
|
74015
74827
|
title?: Maybe<Scalars['String']['output']>;
|
|
74016
74828
|
};
|
|
74829
|
+
export declare type JiraWebRemoteIssueLinkConnection = {
|
|
74830
|
+
__typename?: 'JiraWebRemoteIssueLinkConnection';
|
|
74831
|
+
edges?: Maybe<Array<Maybe<JiraWebRemoteIssueLinkEdge>>>;
|
|
74832
|
+
pageInfo: PageInfo;
|
|
74833
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
74834
|
+
};
|
|
74835
|
+
export declare type JiraWebRemoteIssueLinkEdge = {
|
|
74836
|
+
__typename?: 'JiraWebRemoteIssueLinkEdge';
|
|
74837
|
+
cursor: Scalars['String']['output'];
|
|
74838
|
+
node?: Maybe<JiraWebRemoteIssueLink>;
|
|
74839
|
+
};
|
|
74017
74840
|
export declare type JiraWorkCategory = {
|
|
74018
74841
|
__typename?: 'JiraWorkCategory';
|
|
74019
74842
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -77660,7 +78483,9 @@ export declare type MarketplaceConsoleEdition = {
|
|
|
77660
78483
|
__typename?: 'MarketplaceConsoleEdition';
|
|
77661
78484
|
features: Array<MarketplaceConsoleFeature>;
|
|
77662
78485
|
id: Scalars['ID']['output'];
|
|
78486
|
+
isDecoupled?: Maybe<Scalars['Boolean']['output']>;
|
|
77663
78487
|
isDefault: Scalars['Boolean']['output'];
|
|
78488
|
+
parentProduct?: Maybe<Scalars['String']['output']>;
|
|
77664
78489
|
pricingPlan: MarketplaceConsolePricingPlan;
|
|
77665
78490
|
type: MarketplaceConsoleEditionType;
|
|
77666
78491
|
};
|
|
@@ -77670,7 +78495,9 @@ export declare type MarketplaceConsoleEditionDetailsInput = {
|
|
|
77670
78495
|
export declare type MarketplaceConsoleEditionInput = {
|
|
77671
78496
|
features: Array<MarketplaceConsoleFeatureInput>;
|
|
77672
78497
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
78498
|
+
isDecoupled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77673
78499
|
isDefault: Scalars['Boolean']['input'];
|
|
78500
|
+
parentProduct?: InputMaybe<Scalars['String']['input']>;
|
|
77674
78501
|
pricingPlan: MarketplaceConsolePricingPlanInput;
|
|
77675
78502
|
type: MarketplaceConsoleEditionType;
|
|
77676
78503
|
};
|
|
@@ -78174,6 +79001,7 @@ export declare type MarketplaceConsolePricingPlanInput = {
|
|
|
78174
79001
|
tieredPricing: Array<MarketplaceConsolePricingItemInput>;
|
|
78175
79002
|
};
|
|
78176
79003
|
export declare enum MarketplaceConsolePricingPlanStatus {
|
|
79004
|
+
AtNotice = "AT_NOTICE",
|
|
78177
79005
|
Draft = "DRAFT",
|
|
78178
79006
|
Live = "LIVE",
|
|
78179
79007
|
Pending = "PENDING"
|
|
@@ -79740,6 +80568,7 @@ export declare type MercuryChangeProposalImpact = {
|
|
|
79740
80568
|
};
|
|
79741
80569
|
export declare type MercuryChangeProposalPositionDetails = {
|
|
79742
80570
|
__typename?: 'MercuryChangeProposalPositionDetails';
|
|
80571
|
+
positionsImpacted?: Maybe<Scalars['Int']['output']>;
|
|
79743
80572
|
positionsMoved?: Maybe<Scalars['Int']['output']>;
|
|
79744
80573
|
positionsRequested?: Maybe<Scalars['Int']['output']>;
|
|
79745
80574
|
};
|
|
@@ -79780,12 +80609,15 @@ export declare type MercuryChangeProposalSummaryByStatus = {
|
|
|
79780
80609
|
export declare type MercuryChangeProposalSummaryForStrategicEvent = {
|
|
79781
80610
|
__typename?: 'MercuryChangeProposalSummaryForStrategicEvent';
|
|
79782
80611
|
changeProposal?: Maybe<MercuryChangeProposalSummaryByStatus>;
|
|
80612
|
+
impactedPositions?: Maybe<MercuryImpactedPositionSummaryByChangeProposalStatus>;
|
|
80613
|
+
movedPositions?: Maybe<MercuryMovedPositionSummaryByChangeProposalStatus>;
|
|
79783
80614
|
newFunds?: Maybe<MercuryNewFundSummaryByChangeProposalStatus>;
|
|
79784
80615
|
newPositions?: Maybe<MercuryNewPositionSummaryByChangeProposalStatus>;
|
|
79785
80616
|
strategicEventId: Scalars['ID']['output'];
|
|
79786
80617
|
};
|
|
79787
80618
|
export declare type MercuryChangeProposalUpdate = {
|
|
79788
80619
|
__typename?: 'MercuryChangeProposalUpdate';
|
|
80620
|
+
event?: Maybe<Scalars['String']['output']>;
|
|
79789
80621
|
id: Scalars['ID']['output'];
|
|
79790
80622
|
updatedFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
79791
80623
|
};
|
|
@@ -80539,6 +81371,11 @@ export declare type MercuryHumanResourcesAllocation = {
|
|
|
80539
81371
|
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
80540
81372
|
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
80541
81373
|
};
|
|
81374
|
+
export declare type MercuryImpactedPositionSummaryByChangeProposalStatus = {
|
|
81375
|
+
__typename?: 'MercuryImpactedPositionSummaryByChangeProposalStatus';
|
|
81376
|
+
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
81377
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
81378
|
+
};
|
|
80542
81379
|
export declare type MercuryJiraAlignProjectType = {
|
|
80543
81380
|
__typename?: 'MercuryJiraAlignProjectType';
|
|
80544
81381
|
displayName: Scalars['String']['output'];
|
|
@@ -80662,6 +81499,11 @@ export declare type MercuryMovePositionsChangeInput = {
|
|
|
80662
81499
|
sourceFocusAreaId: Scalars['ID']['input'];
|
|
80663
81500
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
80664
81501
|
};
|
|
81502
|
+
export declare type MercuryMovedPositionSummaryByChangeProposalStatus = {
|
|
81503
|
+
__typename?: 'MercuryMovedPositionSummaryByChangeProposalStatus';
|
|
81504
|
+
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
81505
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
81506
|
+
};
|
|
80665
81507
|
export declare type MercuryMutationApi = {
|
|
80666
81508
|
__typename?: 'MercuryMutationApi';
|
|
80667
81509
|
addWatcherToFocusArea?: Maybe<MercuryAddWatcherToFocusAreaPayload>;
|
|
@@ -80821,18 +81663,6 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
|
|
|
80821
81663
|
countByStatus?: Maybe<Array<Maybe<MercuryNewPositionCountByStatus>>>;
|
|
80822
81664
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
80823
81665
|
};
|
|
80824
|
-
export declare type MercuryOnCreateChangeProposalPayload = Payload & {
|
|
80825
|
-
__typename?: 'MercuryOnCreateChangeProposalPayload';
|
|
80826
|
-
errors?: Maybe<Array<MutationError>>;
|
|
80827
|
-
id: Scalars['ID']['output'];
|
|
80828
|
-
success: Scalars['Boolean']['output'];
|
|
80829
|
-
};
|
|
80830
|
-
export declare type MercuryOnDeleteChangeProposalPayload = Payload & {
|
|
80831
|
-
__typename?: 'MercuryOnDeleteChangeProposalPayload';
|
|
80832
|
-
errors?: Maybe<Array<MutationError>>;
|
|
80833
|
-
id: Scalars['ID']['output'];
|
|
80834
|
-
success: Scalars['Boolean']['output'];
|
|
80835
|
-
};
|
|
80836
81666
|
export declare type MercuryOnUpdateChangeProposalsPayload = Payload & {
|
|
80837
81667
|
__typename?: 'MercuryOnUpdateChangeProposalsPayload';
|
|
80838
81668
|
changeProposals?: Maybe<Array<MercuryChangeProposalUpdate>>;
|
|
@@ -80932,6 +81762,11 @@ export declare type MercuryPositionChangeSummaryFields = {
|
|
|
80932
81762
|
deltaByStatus?: Maybe<Array<Maybe<MercuryPositionDeltaByStatus>>>;
|
|
80933
81763
|
deltaTotal?: Maybe<Scalars['Int']['output']>;
|
|
80934
81764
|
};
|
|
81765
|
+
export declare type MercuryPositionCountByStatus = {
|
|
81766
|
+
__typename?: 'MercuryPositionCountByStatus';
|
|
81767
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
81768
|
+
status?: Maybe<MercuryChangeProposalStatus>;
|
|
81769
|
+
};
|
|
80935
81770
|
export declare type MercuryPositionDeltaByStatus = {
|
|
80936
81771
|
__typename?: 'MercuryPositionDeltaByStatus';
|
|
80937
81772
|
positionDelta?: Maybe<Scalars['Int']['output']>;
|
|
@@ -81183,6 +82018,7 @@ export declare type MercuryQueryApi = {
|
|
|
81183
82018
|
focusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
81184
82019
|
focusAreaHierarchy?: Maybe<Array<Maybe<MercuryFocusAreaHierarchyNode>>>;
|
|
81185
82020
|
focusAreaStatusTransitions?: Maybe<Array<MercuryFocusAreaStatusTransition>>;
|
|
82021
|
+
focusAreaStatusUpdatesByAris?: Maybe<Array<MercuryFocusAreaStatusUpdate>>;
|
|
81186
82022
|
focusAreaTeamAllocations?: Maybe<MercuryFocusAreaTeamAllocationAggregationConnection>;
|
|
81187
82023
|
focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
|
|
81188
82024
|
focusAreaTypesByAris?: Maybe<Array<Maybe<MercuryFocusAreaType>>>;
|
|
@@ -81240,6 +82076,9 @@ export declare type MercuryQueryApiFocusAreaHierarchyArgs = {
|
|
|
81240
82076
|
export declare type MercuryQueryApiFocusAreaStatusTransitionsArgs = {
|
|
81241
82077
|
cloudId: Scalars['ID']['input'];
|
|
81242
82078
|
};
|
|
82079
|
+
export declare type MercuryQueryApiFocusAreaStatusUpdatesByArisArgs = {
|
|
82080
|
+
aris: Array<Scalars['ID']['input']>;
|
|
82081
|
+
};
|
|
81243
82082
|
export declare type MercuryQueryApiFocusAreaTeamAllocationsArgs = {
|
|
81244
82083
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
81245
82084
|
cloudId: Scalars['ID']['input'];
|
|
@@ -81722,18 +82561,9 @@ export declare type MercuryStrategicEventsQueryApiStrategicEventsSearchArgs = {
|
|
|
81722
82561
|
};
|
|
81723
82562
|
export declare type MercurySubscriptionApi = {
|
|
81724
82563
|
__typename?: 'MercurySubscriptionApi';
|
|
81725
|
-
onCreateChangeProposal?: Maybe<MercuryOnCreateChangeProposalPayload>;
|
|
81726
|
-
onDeleteChangeProposal?: Maybe<MercuryOnDeleteChangeProposalPayload>;
|
|
81727
82564
|
onUpdateChangeProposals?: Maybe<MercuryOnUpdateChangeProposalsPayload>;
|
|
81728
82565
|
onUpdateStrategicEvent?: Maybe<MercuryOnUpdateStrategicEventPayload>;
|
|
81729
82566
|
};
|
|
81730
|
-
export declare type MercurySubscriptionApiOnCreateChangeProposalArgs = {
|
|
81731
|
-
strategicEventId: Scalars['ID']['input'];
|
|
81732
|
-
};
|
|
81733
|
-
export declare type MercurySubscriptionApiOnDeleteChangeProposalArgs = {
|
|
81734
|
-
id: Scalars['ID']['input'];
|
|
81735
|
-
strategicEventId: Scalars['ID']['input'];
|
|
81736
|
-
};
|
|
81737
82567
|
export declare type MercurySubscriptionApiOnUpdateChangeProposalsArgs = {
|
|
81738
82568
|
strategicEventId: Scalars['ID']['input'];
|
|
81739
82569
|
};
|
|
@@ -82329,7 +83159,12 @@ export declare type Mutation = {
|
|
|
82329
83159
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
82330
83160
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
82331
83161
|
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
83162
|
+
assetsDM_configureDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
83163
|
+
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
82332
83164
|
assetsDM_dataSource?: Maybe<AssetsDmDataSourceResponse>;
|
|
83165
|
+
assetsDM_dataSourceCleansingRulesConfigure?: Maybe<AssetsDmDataSourceCleansingRulesConfigureResponse>;
|
|
83166
|
+
assetsDM_dataSourceRunTransform?: Maybe<AssetsDmDataSourceRunTransformResponse>;
|
|
83167
|
+
assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
|
|
82333
83168
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
82334
83169
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
82335
83170
|
attachDanglingComment?: Maybe<Comment>;
|
|
@@ -82359,6 +83194,7 @@ export declare type Mutation = {
|
|
|
82359
83194
|
bulkUnarchivePages?: Maybe<BulkArchivePagePayload>;
|
|
82360
83195
|
bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
|
|
82361
83196
|
bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
|
|
83197
|
+
ccp?: Maybe<CcpMutationApi>;
|
|
82362
83198
|
channelPlatform_assignAgentToContact?: Maybe<ChannelPlatformMutationStatus>;
|
|
82363
83199
|
channelPlatform_createAttendee?: Maybe<ChannelPlatformConnectionData>;
|
|
82364
83200
|
channelPlatform_createMeetingDetails?: Maybe<ChannelPlatformMeeting>;
|
|
@@ -82371,6 +83207,7 @@ export declare type Mutation = {
|
|
|
82371
83207
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
82372
83208
|
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
82373
83209
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
83210
|
+
confluence_convertNote?: Maybe<ConfluenceConvertNotePayload>;
|
|
82374
83211
|
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
82375
83212
|
confluence_createCsvExportTask?: Maybe<ConfluenceCreateCsvExportTaskPayload>;
|
|
82376
83213
|
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
@@ -82400,6 +83237,7 @@ export declare type Mutation = {
|
|
|
82400
83237
|
confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
|
|
82401
83238
|
confluence_unwatchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
82402
83239
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
83240
|
+
confluence_updateCalendarView?: Maybe<ConfluenceUpdateCalendarViewPayload>;
|
|
82403
83241
|
confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
|
|
82404
83242
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
82405
83243
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
@@ -82551,10 +83389,14 @@ export declare type Mutation = {
|
|
|
82551
83389
|
generateAdminReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
82552
83390
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
82553
83391
|
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
83392
|
+
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
83393
|
+
goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
|
|
83394
|
+
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
82554
83395
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
82555
83396
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
82556
83397
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
82557
83398
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
83399
|
+
growthUnifiedProfile_createEntitlementProfile?: Maybe<GrowthUnifiedProfileCreateEntitlementProfileResponse>;
|
|
82558
83400
|
growthUnifiedProfile_createOrgProfile?: Maybe<GrowthUnifiedProfileTwcCreateOrgProfileResponse>;
|
|
82559
83401
|
growthUnifiedProfile_createUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
82560
83402
|
hardDeleteSpace?: Maybe<HardDeleteSpacePayload>;
|
|
@@ -82580,18 +83422,22 @@ export declare type Mutation = {
|
|
|
82580
83422
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
82581
83423
|
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
82582
83424
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
83425
|
+
jira_createGlobalCustomFieldV2?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
82583
83426
|
jira_createIssueSearchFormattingRule?: Maybe<JiraCreateIssueSearchFormattingRulePayload>;
|
|
82584
83427
|
jira_createIssueType?: Maybe<JiraUpsertIssueTypePayload>;
|
|
82585
83428
|
jira_customizeProjectLevelSidebarMenuItem?: Maybe<JiraProjectLevelSidebarMenuCustomization>;
|
|
82586
83429
|
jira_deleteBoardViewStatusColumn?: Maybe<JiraDeleteBoardViewStatusColumnPayload>;
|
|
82587
83430
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
82588
83431
|
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
83432
|
+
jira_deleteIssue?: Maybe<JiraIssueDeletePayload>;
|
|
82589
83433
|
jira_deleteIssueSearchFormattingRule?: Maybe<JiraDeleteIssueSearchFormattingRulePayload>;
|
|
82590
83434
|
jira_deleteIssueType?: Maybe<JiraDeleteIssueTypePayload>;
|
|
82591
83435
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
82592
83436
|
jira_discardUserCalendarViewConfig?: Maybe<JiraUpdateCalendarViewConfigPayload>;
|
|
82593
83437
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
83438
|
+
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
82594
83439
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
83440
|
+
jira_orderIssueSearchFormattingRule?: Maybe<JiraOrderIssueSearchFormattingRulePayload>;
|
|
82595
83441
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
82596
83442
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
82597
83443
|
jira_removeFieldsFromFieldScheme?: Maybe<JiraRemoveFieldsFromFieldSchemePayload>;
|
|
@@ -82682,7 +83528,10 @@ export declare type Mutation = {
|
|
|
82682
83528
|
projects_deleteLink?: Maybe<TownsquareProjectsDeleteLinkPayload>;
|
|
82683
83529
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
82684
83530
|
projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
|
|
83531
|
+
projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
|
|
83532
|
+
projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
|
|
82685
83533
|
projects_removeMember?: Maybe<TownsquareProjectsRemoveMemberPayload>;
|
|
83534
|
+
projects_removeTeamContributors?: Maybe<TownsquareProjectsRemoveTeamContributorsPayload>;
|
|
82686
83535
|
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
82687
83536
|
projects_setWatchingProject?: Maybe<TownsquareProjectsSetWatchingProjectPayload>;
|
|
82688
83537
|
projects_shareProject?: Maybe<TownsquareProjectsShareProjectPayload>;
|
|
@@ -82984,6 +83833,17 @@ export declare type MutationAssetsDm_AutoColumnMappingArgs = {
|
|
|
82984
83833
|
cloudId: Scalars['ID']['input'];
|
|
82985
83834
|
workspaceId: Scalars['ID']['input'];
|
|
82986
83835
|
};
|
|
83836
|
+
export declare type MutationAssetsDm_ConfigureDataSourceMappingArgs = {
|
|
83837
|
+
cloudId: Scalars['ID']['input'];
|
|
83838
|
+
dataSourceId: Scalars['ID']['input'];
|
|
83839
|
+
mappings: Array<AssetsDmDataSourceConfigureMappingInput>;
|
|
83840
|
+
workspaceId: Scalars['ID']['input'];
|
|
83841
|
+
};
|
|
83842
|
+
export declare type MutationAssetsDm_CreateObjectTagArgs = {
|
|
83843
|
+
cloudId: Scalars['ID']['input'];
|
|
83844
|
+
input: AssetsDmObjectTagCreateInput;
|
|
83845
|
+
workspaceId: Scalars['ID']['input'];
|
|
83846
|
+
};
|
|
82987
83847
|
export declare type MutationAssetsDm_DataSourceArgs = {
|
|
82988
83848
|
cloudId: Scalars['ID']['input'];
|
|
82989
83849
|
dataSourceId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -82992,6 +83852,22 @@ export declare type MutationAssetsDm_DataSourceArgs = {
|
|
|
82992
83852
|
operation?: InputMaybe<AssetsDmDataSourceOperationEnum>;
|
|
82993
83853
|
workspaceId: Scalars['ID']['input'];
|
|
82994
83854
|
};
|
|
83855
|
+
export declare type MutationAssetsDm_DataSourceCleansingRulesConfigureArgs = {
|
|
83856
|
+
cleansingRules: Array<AssetsDmDataSourceCleansingRuleInput>;
|
|
83857
|
+
cloudId: Scalars['ID']['input'];
|
|
83858
|
+
dataSourceId: Scalars['ID']['input'];
|
|
83859
|
+
workspaceId: Scalars['ID']['input'];
|
|
83860
|
+
};
|
|
83861
|
+
export declare type MutationAssetsDm_DataSourceRunTransformArgs = {
|
|
83862
|
+
cloudId: Scalars['ID']['input'];
|
|
83863
|
+
jobId: Scalars['ID']['input'];
|
|
83864
|
+
workspaceId: Scalars['ID']['input'];
|
|
83865
|
+
};
|
|
83866
|
+
export declare type MutationAssetsDm_DeleteObjectTagArgs = {
|
|
83867
|
+
cloudId: Scalars['ID']['input'];
|
|
83868
|
+
tagId: Scalars['ID']['input'];
|
|
83869
|
+
workspaceId: Scalars['ID']['input'];
|
|
83870
|
+
};
|
|
82995
83871
|
export declare type MutationAssetsDm_GenerateAdapterTokenArgs = {
|
|
82996
83872
|
cloudId: Scalars['ID']['input'];
|
|
82997
83873
|
generateTokenInput: AssetsDmGenerateAdapterTokenInput;
|
|
@@ -83121,6 +83997,9 @@ export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
|
83121
83997
|
cloudId: Scalars['ID']['input'];
|
|
83122
83998
|
input: Array<InputMaybe<NestedPageInput>>;
|
|
83123
83999
|
};
|
|
84000
|
+
export declare type MutationConfluence_ConvertNoteArgs = {
|
|
84001
|
+
input: ConfluenceConvertNoteInput;
|
|
84002
|
+
};
|
|
83124
84003
|
export declare type MutationConfluence_CopySpaceSecurityConfigurationArgs = {
|
|
83125
84004
|
cloudId: Scalars['ID']['input'];
|
|
83126
84005
|
input: ConfluenceCopySpaceSecurityConfigurationInput;
|
|
@@ -83235,6 +84114,10 @@ export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
|
83235
84114
|
cloudId: Scalars['ID']['input'];
|
|
83236
84115
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
83237
84116
|
};
|
|
84117
|
+
export declare type MutationConfluence_UpdateCalendarViewArgs = {
|
|
84118
|
+
cloudId: Scalars['ID']['input'];
|
|
84119
|
+
input: ConfluenceUpdateCalendarViewInput;
|
|
84120
|
+
};
|
|
83238
84121
|
export declare type MutationConfluence_UpdateContentAccessRequestArgs = {
|
|
83239
84122
|
cloudId: Scalars['ID']['input'];
|
|
83240
84123
|
updateContentAccessRequestInput: ConfluenceUpdateContentAccessRequestInput;
|
|
@@ -83754,6 +84637,15 @@ export declare type MutationGeneratePermsReportArgs = {
|
|
|
83754
84637
|
export declare type MutationGoals_AddGoalTeamLinkArgs = {
|
|
83755
84638
|
input?: InputMaybe<TownsquareGoalsAddGoalTeamLinkInput>;
|
|
83756
84639
|
};
|
|
84640
|
+
export declare type MutationGoals_CreateUpdateArgs = {
|
|
84641
|
+
input?: InputMaybe<TownsquareGoalsCreateUpdateInput>;
|
|
84642
|
+
};
|
|
84643
|
+
export declare type MutationGoals_DeleteLatestUpdateArgs = {
|
|
84644
|
+
input?: InputMaybe<TownsquareGoalsDeleteLatestUpdateInput>;
|
|
84645
|
+
};
|
|
84646
|
+
export declare type MutationGoals_EditUpdateArgs = {
|
|
84647
|
+
input?: InputMaybe<TownsquareGoalsEditUpdateInput>;
|
|
84648
|
+
};
|
|
83757
84649
|
export declare type MutationGoals_RemoveGoalTeamLinkArgs = {
|
|
83758
84650
|
input?: InputMaybe<TownsquareGoalsRemoveGoalTeamLinkInput>;
|
|
83759
84651
|
};
|
|
@@ -83763,6 +84655,9 @@ export declare type MutationGoals_SetWatchingGoalArgs = {
|
|
|
83763
84655
|
export declare type MutationGrantContentAccessArgs = {
|
|
83764
84656
|
grantContentAccessInput: GrantContentAccessInput;
|
|
83765
84657
|
};
|
|
84658
|
+
export declare type MutationGrowthUnifiedProfile_CreateEntitlementProfileArgs = {
|
|
84659
|
+
profile: GrowthUnifiedProfileCreateEntitlementProfileInput;
|
|
84660
|
+
};
|
|
83766
84661
|
export declare type MutationGrowthUnifiedProfile_CreateOrgProfileArgs = {
|
|
83767
84662
|
profile: GrowthUnifiedProfileCreateOrgProfileInput;
|
|
83768
84663
|
};
|
|
@@ -83830,6 +84725,10 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
83830
84725
|
cloudId: Scalars['ID']['input'];
|
|
83831
84726
|
input: JiraCreateGlobalCustomFieldInput;
|
|
83832
84727
|
};
|
|
84728
|
+
export declare type MutationJira_CreateGlobalCustomFieldV2Args = {
|
|
84729
|
+
cloudId: Scalars['ID']['input'];
|
|
84730
|
+
input: JiraCreateGlobalCustomFieldV2Input;
|
|
84731
|
+
};
|
|
83833
84732
|
export declare type MutationJira_CreateIssueSearchFormattingRuleArgs = {
|
|
83834
84733
|
input: JiraCreateIssueSearchFormattingRuleInput;
|
|
83835
84734
|
};
|
|
@@ -83849,6 +84748,9 @@ export declare type MutationJira_DeleteFieldSchemeArgs = {
|
|
|
83849
84748
|
cloudId: Scalars['ID']['input'];
|
|
83850
84749
|
input: JiraDeleteFieldSchemeInput;
|
|
83851
84750
|
};
|
|
84751
|
+
export declare type MutationJira_DeleteIssueArgs = {
|
|
84752
|
+
input: JiraIssueDeleteInput;
|
|
84753
|
+
};
|
|
83852
84754
|
export declare type MutationJira_DeleteIssueSearchFormattingRuleArgs = {
|
|
83853
84755
|
input: JiraDeleteIssueSearchFormattingRuleInput;
|
|
83854
84756
|
};
|
|
@@ -83864,10 +84766,16 @@ export declare type MutationJira_DiscardUserCalendarViewConfigArgs = {
|
|
|
83864
84766
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
83865
84767
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
83866
84768
|
};
|
|
84769
|
+
export declare type MutationJira_DragAndDropBoardViewIssueArgs = {
|
|
84770
|
+
input: JiraDragAndDropBoardViewIssueInput;
|
|
84771
|
+
};
|
|
83867
84772
|
export declare type MutationJira_EditFieldSchemeArgs = {
|
|
83868
84773
|
cloudId: Scalars['ID']['input'];
|
|
83869
84774
|
input: JiraEditFieldSchemeInput;
|
|
83870
84775
|
};
|
|
84776
|
+
export declare type MutationJira_OrderIssueSearchFormattingRuleArgs = {
|
|
84777
|
+
input: JiraOrderIssueSearchFormattingRuleInput;
|
|
84778
|
+
};
|
|
83871
84779
|
export declare type MutationJira_PublishBoardViewConfigArgs = {
|
|
83872
84780
|
input: JiraPublishBoardViewConfigInput;
|
|
83873
84781
|
};
|
|
@@ -84121,9 +85029,18 @@ export declare type MutationProjects_EditArgs = {
|
|
|
84121
85029
|
export declare type MutationProjects_EditLinkArgs = {
|
|
84122
85030
|
input?: InputMaybe<TownsquareProjectsEditLinkInput>;
|
|
84123
85031
|
};
|
|
85032
|
+
export declare type MutationProjects_EditUpdateArgs = {
|
|
85033
|
+
input?: InputMaybe<TownsquareProjectsEditUpdateInput>;
|
|
85034
|
+
};
|
|
85035
|
+
export declare type MutationProjects_RemoveGoalLinkArgs = {
|
|
85036
|
+
input: TownsquareProjectsRemoveGoalLinkInput;
|
|
85037
|
+
};
|
|
84124
85038
|
export declare type MutationProjects_RemoveMemberArgs = {
|
|
84125
85039
|
input: TownsquareProjectsRemoveMemberInput;
|
|
84126
85040
|
};
|
|
85041
|
+
export declare type MutationProjects_RemoveTeamContributorsArgs = {
|
|
85042
|
+
input: TownsquareProjectsRemoveTeamContributorsInput;
|
|
85043
|
+
};
|
|
84127
85044
|
export declare type MutationProjects_SetDependencyArgs = {
|
|
84128
85045
|
input?: InputMaybe<TownsquareProjectsSetDependencyInput>;
|
|
84129
85046
|
};
|
|
@@ -84996,6 +85913,7 @@ export declare type NoteConnection = {
|
|
|
84996
85913
|
edges?: Maybe<Array<Maybe<NoteEdge>>>;
|
|
84997
85914
|
nodes?: Maybe<Array<Maybe<NoteResponse>>>;
|
|
84998
85915
|
noteInfo: NoteInfo;
|
|
85916
|
+
pageInfo: PageInfo;
|
|
84999
85917
|
};
|
|
85000
85918
|
export declare type NoteEdge = {
|
|
85001
85919
|
__typename?: 'NoteEdge';
|
|
@@ -85022,11 +85940,13 @@ export declare type NoteMutationErrorExtension = {
|
|
|
85022
85940
|
export declare type NoteResponse = {
|
|
85023
85941
|
__typename?: 'NoteResponse';
|
|
85024
85942
|
ari: Scalars['String']['output'];
|
|
85943
|
+
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
85025
85944
|
body?: Maybe<Scalars['String']['output']>;
|
|
85026
85945
|
bodyExcerpt?: Maybe<Scalars['String']['output']>;
|
|
85027
85946
|
collectionName: Scalars['String']['output'];
|
|
85028
85947
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
85029
85948
|
extraProps?: Maybe<Array<Prop>>;
|
|
85949
|
+
id: Scalars['ID']['output'];
|
|
85030
85950
|
isPinned: Scalars['Boolean']['output'];
|
|
85031
85951
|
labels?: Maybe<Array<Scalars['String']['output']>>;
|
|
85032
85952
|
productLink?: Maybe<Scalars['String']['output']>;
|
|
@@ -85045,6 +85965,13 @@ export declare type NotesByCreatorInput = {
|
|
|
85045
85965
|
export declare enum NotesByDateLastModifiedOrder {
|
|
85046
85966
|
DateLastModified = "DATE_LAST_MODIFIED"
|
|
85047
85967
|
}
|
|
85968
|
+
export declare enum NotesContentType {
|
|
85969
|
+
Livedoc = "LIVEDOC",
|
|
85970
|
+
Page = "PAGE"
|
|
85971
|
+
}
|
|
85972
|
+
export declare enum NotesProduct {
|
|
85973
|
+
Confluence = "CONFLUENCE"
|
|
85974
|
+
}
|
|
85048
85975
|
export declare enum NotificationAction {
|
|
85049
85976
|
DontNotify = "DONT_NOTIFY",
|
|
85050
85977
|
Notify = "NOTIFY"
|
|
@@ -87530,6 +88457,8 @@ export declare type Query = {
|
|
|
87530
88457
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
87531
88458
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
87532
88459
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
88460
|
+
agentStudio_toolIntegrations?: Maybe<AgentStudioToolIntegrationsConnection>;
|
|
88461
|
+
agentStudio_tools?: Maybe<AgentStudioToolsConnection>;
|
|
87533
88462
|
agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
|
|
87534
88463
|
agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
|
|
87535
88464
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
@@ -87568,8 +88497,11 @@ export declare type Query = {
|
|
|
87568
88497
|
assetsDM_dataSourceConfig?: Maybe<AssetsDmDataSourceConfig>;
|
|
87569
88498
|
assetsDM_dataSourceDetails?: Maybe<AssetsDmDataSourceDetails>;
|
|
87570
88499
|
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
88500
|
+
assetsDM_dataSourceMapping?: Maybe<Array<AssetsDmDataSourceMapping>>;
|
|
87571
88501
|
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
88502
|
+
assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
|
|
87572
88503
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
88504
|
+
assetsDM_objectTags?: Maybe<AssetsDmObjectTags>;
|
|
87573
88505
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
87574
88506
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
87575
88507
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
@@ -87650,6 +88582,7 @@ export declare type Query = {
|
|
|
87650
88582
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
87651
88583
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
87652
88584
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
88585
|
+
confluence_note?: Maybe<NoteResponse>;
|
|
87653
88586
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
87654
88587
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
87655
88588
|
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
@@ -87720,6 +88653,7 @@ export declare type Query = {
|
|
|
87720
88653
|
countGroupByUser?: Maybe<CountGroupByUser>;
|
|
87721
88654
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
87722
88655
|
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
88656
|
+
cpls_customContributionTargets: Array<CplsCustomContributionTarget>;
|
|
87723
88657
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
87724
88658
|
csmAi_generateCoachingTriggeringCondition: Scalars['String']['output'];
|
|
87725
88659
|
csmAi_getAgentVersion?: Maybe<CsmAiAgentVersionResult>;
|
|
@@ -87831,8 +88765,8 @@ export declare type Query = {
|
|
|
87831
88765
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
87832
88766
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
87833
88767
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
87834
|
-
|
|
87835
|
-
|
|
88768
|
+
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
88769
|
+
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
87836
88770
|
graphStore?: Maybe<GraphStore>;
|
|
87837
88771
|
group?: Maybe<Group>;
|
|
87838
88772
|
groupCounts?: Maybe<GraphQlGroupCountsResult>;
|
|
@@ -87841,6 +88775,7 @@ export declare type Query = {
|
|
|
87841
88775
|
groupsUserSpaceAccess?: Maybe<PaginatedGroupList>;
|
|
87842
88776
|
groupsWithContentRestrictions?: Maybe<Array<Maybe<GroupWithRestrictions>>>;
|
|
87843
88777
|
growthRecommendations?: Maybe<GrowthRecQuery>;
|
|
88778
|
+
growthUnifiedProfile_getEntitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
87844
88779
|
growthUnifiedProfile_getOrgProfile?: Maybe<GrowthUnifiedProfileOrgProfileResult>;
|
|
87845
88780
|
growthUnifiedProfile_getUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
87846
88781
|
growthUnifiedProfile_getUnifiedUserProfile?: Maybe<GrowthUnifiedProfileUserProfileResult>;
|
|
@@ -87891,7 +88826,8 @@ export declare type Query = {
|
|
|
87891
88826
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
87892
88827
|
jira_fieldSchemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
87893
88828
|
jira_fieldSchemeAvailableFields?: Maybe<JiraFieldConnection>;
|
|
87894
|
-
jira_fieldSchemes?: Maybe<
|
|
88829
|
+
jira_fieldSchemes?: Maybe<JiraFieldSchemesConnection>;
|
|
88830
|
+
jira_fieldSchemesByARIs?: Maybe<Array<Maybe<JiraFieldScheme>>>;
|
|
87895
88831
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
87896
88832
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
87897
88833
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -88101,8 +89037,10 @@ export declare type Query = {
|
|
|
88101
89037
|
spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
|
|
88102
89038
|
spf_ask?: Maybe<SpfAskResult>;
|
|
88103
89039
|
spf_askCommentsByIds?: Maybe<Array<Maybe<SpfAskComment>>>;
|
|
89040
|
+
spf_askLinksByIds?: Maybe<Array<Maybe<SpfAskLink>>>;
|
|
88104
89041
|
spf_asks?: Maybe<SpfAskConnection>;
|
|
88105
89042
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
89043
|
+
spf_resolveImpactedWorkUrl?: Maybe<SpfResolveImpactedWorkUrlPayload>;
|
|
88106
89044
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
88107
89045
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
88108
89046
|
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
@@ -88116,6 +89054,7 @@ export declare type Query = {
|
|
|
88116
89054
|
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
88117
89055
|
stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
88118
89056
|
stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
89057
|
+
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
88119
89058
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
88120
89059
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
88121
89060
|
suggestedSpaces?: Maybe<PaginatedSpaceList>;
|
|
@@ -88203,6 +89142,7 @@ export declare type QueryAgentStudio_GetAgentsArgs = {
|
|
|
88203
89142
|
cloudId: Scalars['String']['input'];
|
|
88204
89143
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88205
89144
|
input?: InputMaybe<AgentStudioAgentQueryInput>;
|
|
89145
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
88206
89146
|
};
|
|
88207
89147
|
export declare type QueryAgentStudio_GetByExternalReferenceArgs = {
|
|
88208
89148
|
cloudId: Scalars['String']['input'];
|
|
@@ -88231,6 +89171,18 @@ export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
|
88231
89171
|
cloudId: Scalars['String']['input'];
|
|
88232
89172
|
input: AgentStudioSuggestConversationStartersInput;
|
|
88233
89173
|
};
|
|
89174
|
+
export declare type QueryAgentStudio_ToolIntegrationsArgs = {
|
|
89175
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89176
|
+
cloudId: Scalars['String']['input'];
|
|
89177
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89178
|
+
};
|
|
89179
|
+
export declare type QueryAgentStudio_ToolsArgs = {
|
|
89180
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
89181
|
+
cloudId: Scalars['String']['input'];
|
|
89182
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89183
|
+
integrationKeys?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
89184
|
+
searchQuery?: InputMaybe<Scalars['String']['input']>;
|
|
89185
|
+
};
|
|
88234
89186
|
export declare type QueryAgentStudio_ValidateScenarioArgs = {
|
|
88235
89187
|
cloudId: Scalars['String']['input'];
|
|
88236
89188
|
containerId: Scalars['ID']['input'];
|
|
@@ -88414,6 +89366,12 @@ export declare type QueryAssetsDm_DataSourceFormFieldsArgs = {
|
|
|
88414
89366
|
schemaId?: InputMaybe<Scalars['String']['input']>;
|
|
88415
89367
|
workspaceId: Scalars['ID']['input'];
|
|
88416
89368
|
};
|
|
89369
|
+
export declare type QueryAssetsDm_DataSourceMappingArgs = {
|
|
89370
|
+
cloudId: Scalars['ID']['input'];
|
|
89371
|
+
dataSourceId: Scalars['ID']['input'];
|
|
89372
|
+
objectClassName: Scalars['String']['input'];
|
|
89373
|
+
workspaceId: Scalars['ID']['input'];
|
|
89374
|
+
};
|
|
88417
89375
|
export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
88418
89376
|
cloudID: Scalars['ID']['input'];
|
|
88419
89377
|
dataSourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -88422,10 +89380,20 @@ export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
|
88422
89380
|
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
88423
89381
|
workspaceId: Scalars['ID']['input'];
|
|
88424
89382
|
};
|
|
89383
|
+
export declare type QueryAssetsDm_DatasourceCleansingRulesArgs = {
|
|
89384
|
+
cloudId: Scalars['ID']['input'];
|
|
89385
|
+
dataSourceId: Scalars['ID']['input'];
|
|
89386
|
+
workspaceId: Scalars['ID']['input'];
|
|
89387
|
+
};
|
|
88425
89388
|
export declare type QueryAssetsDm_ObjectClassesArgs = {
|
|
88426
89389
|
cloudId: Scalars['ID']['input'];
|
|
88427
89390
|
workspaceId: Scalars['ID']['input'];
|
|
88428
89391
|
};
|
|
89392
|
+
export declare type QueryAssetsDm_ObjectTagsArgs = {
|
|
89393
|
+
cloudId: Scalars['ID']['input'];
|
|
89394
|
+
objectId: Scalars['ID']['input'];
|
|
89395
|
+
workspaceId: Scalars['ID']['input'];
|
|
89396
|
+
};
|
|
88429
89397
|
export declare type QueryAssetsDm_ObjectsListColumnsArgs = {
|
|
88430
89398
|
cloudId: Scalars['ID']['input'];
|
|
88431
89399
|
objectId: Scalars['ID']['input'];
|
|
@@ -88770,6 +89738,9 @@ export declare type QueryConfluence_MacrosByIdsArgs = {
|
|
|
88770
89738
|
contentId: Scalars['ID']['input'];
|
|
88771
89739
|
macroIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
88772
89740
|
};
|
|
89741
|
+
export declare type QueryConfluence_NoteArgs = {
|
|
89742
|
+
id: Scalars['ID']['input'];
|
|
89743
|
+
};
|
|
88773
89744
|
export declare type QueryConfluence_PdfExportDownloadLinkArgs = {
|
|
88774
89745
|
cloudId: Scalars['ID']['input'];
|
|
88775
89746
|
id: Scalars['ID']['input'];
|
|
@@ -89168,6 +90139,9 @@ export declare type QueryCountUsersGroupByPageArgs = {
|
|
|
89168
90139
|
export declare type QueryCpls_CapacityPlanningPeopleViewArgs = {
|
|
89169
90140
|
id: Scalars['ID']['input'];
|
|
89170
90141
|
};
|
|
90142
|
+
export declare type QueryCpls_CustomContributionTargetsArgs = {
|
|
90143
|
+
ids: Array<Scalars['ID']['input']>;
|
|
90144
|
+
};
|
|
89171
90145
|
export declare type QueryCsmAi_GenerateCoachingTriggeringConditionArgs = {
|
|
89172
90146
|
conversationId: Scalars['ID']['input'];
|
|
89173
90147
|
helpCenterAri: Scalars['ID']['input'];
|
|
@@ -89587,13 +90561,15 @@ export declare type QueryGetSummaryArgs = {
|
|
|
89587
90561
|
lastUpdatedTimeSeconds: Scalars['Long']['input'];
|
|
89588
90562
|
responseType?: InputMaybe<ResponseType>;
|
|
89589
90563
|
};
|
|
89590
|
-
export declare type
|
|
90564
|
+
export declare type QueryGraphIntegration_ComponentDirectoryDimensionsArgs = {
|
|
89591
90565
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90566
|
+
cloudId: Scalars['ID']['input'];
|
|
89592
90567
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89593
90568
|
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
89594
90569
|
};
|
|
89595
|
-
export declare type
|
|
90570
|
+
export declare type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
|
|
89596
90571
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90572
|
+
cloudId: Scalars['ID']['input'];
|
|
89597
90573
|
dimensionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89598
90574
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89599
90575
|
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
@@ -89626,6 +90602,9 @@ export declare type QueryGroupsWithContentRestrictionsArgs = {
|
|
|
89626
90602
|
contentId: Scalars['ID']['input'];
|
|
89627
90603
|
groupIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
89628
90604
|
};
|
|
90605
|
+
export declare type QueryGrowthUnifiedProfile_GetEntitlementProfileArgs = {
|
|
90606
|
+
entitlementId: Scalars['ID']['input'];
|
|
90607
|
+
};
|
|
89629
90608
|
export declare type QueryGrowthUnifiedProfile_GetOrgProfileArgs = {
|
|
89630
90609
|
filter?: InputMaybe<GrowthUnifiedProfileOrgProfileFilterInput>;
|
|
89631
90610
|
orgId: Scalars['ID']['input'];
|
|
@@ -89793,6 +90772,9 @@ export declare type QueryJira_FieldSchemesArgs = {
|
|
|
89793
90772
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89794
90773
|
input?: InputMaybe<JiraFieldSchemesInput>;
|
|
89795
90774
|
};
|
|
90775
|
+
export declare type QueryJira_FieldSchemesByArIsArgs = {
|
|
90776
|
+
ids: Array<Scalars['ID']['input']>;
|
|
90777
|
+
};
|
|
89796
90778
|
export declare type QueryJira_IsRovoLlmEnabledArgs = {
|
|
89797
90779
|
cloudId: Scalars['ID']['input'];
|
|
89798
90780
|
};
|
|
@@ -90013,7 +90995,11 @@ export declare type QueryNodeArgs = {
|
|
|
90013
90995
|
id: Scalars['ID']['input'];
|
|
90014
90996
|
};
|
|
90015
90997
|
export declare type QueryNotesByCreatorArgs = {
|
|
90998
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90999
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
91000
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90016
91001
|
input?: InputMaybe<NotesByCreatorInput>;
|
|
91002
|
+
orderBy?: InputMaybe<ConfluenceNotesOrdering>;
|
|
90017
91003
|
};
|
|
90018
91004
|
export declare type QueryObjectRecommendationsArgs = {
|
|
90019
91005
|
context: CollaborationGraphRequestContext;
|
|
@@ -90431,6 +91417,9 @@ export declare type QuerySingleContentArgs = {
|
|
|
90431
91417
|
status?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
90432
91418
|
validatedShareToken?: InputMaybe<Scalars['String']['input']>;
|
|
90433
91419
|
};
|
|
91420
|
+
export declare type QuerySiteOperationsArgs = {
|
|
91421
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
91422
|
+
};
|
|
90434
91423
|
export declare type QuerySitePermissionsArgs = {
|
|
90435
91424
|
operations?: InputMaybe<Array<InputMaybe<SitePermissionOperationType>>>;
|
|
90436
91425
|
permissionTypes?: InputMaybe<Array<InputMaybe<SitePermissionType>>>;
|
|
@@ -90540,6 +91529,9 @@ export declare type QuerySpf_AskArgs = {
|
|
|
90540
91529
|
export declare type QuerySpf_AskCommentsByIdsArgs = {
|
|
90541
91530
|
ids: Array<Scalars['ID']['input']>;
|
|
90542
91531
|
};
|
|
91532
|
+
export declare type QuerySpf_AskLinksByIdsArgs = {
|
|
91533
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91534
|
+
};
|
|
90543
91535
|
export declare type QuerySpf_AsksArgs = {
|
|
90544
91536
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90545
91537
|
cloudId: Scalars['ID']['input'];
|
|
@@ -90549,6 +91541,10 @@ export declare type QuerySpf_AsksArgs = {
|
|
|
90549
91541
|
export declare type QuerySpf_AsksByIdsArgs = {
|
|
90550
91542
|
ids: Array<Scalars['ID']['input']>;
|
|
90551
91543
|
};
|
|
91544
|
+
export declare type QuerySpf_ResolveImpactedWorkUrlArgs = {
|
|
91545
|
+
cloudId: Scalars['ID']['input'];
|
|
91546
|
+
url: Scalars['String']['input'];
|
|
91547
|
+
};
|
|
90552
91548
|
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
90553
91549
|
appId: Scalars['ID']['input'];
|
|
90554
91550
|
installationId: Scalars['ID']['input'];
|
|
@@ -90595,6 +91591,9 @@ export declare type QueryStakeholderComms_GetStakeholdersByAssignmentV2Args = {
|
|
|
90595
91591
|
export declare type QueryStakeholderComms_IsStakeholderGroupNameUniqueArgs = {
|
|
90596
91592
|
name: Scalars['String']['input'];
|
|
90597
91593
|
};
|
|
91594
|
+
export declare type QueryStakeholderComms_ListStakeholdersArgs = {
|
|
91595
|
+
listStakeholderConnectionInput: StakeholderCommsListStakeholderConnectionInput;
|
|
91596
|
+
};
|
|
90598
91597
|
export declare type QueryStalePagesArgs = {
|
|
90599
91598
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
90600
91599
|
includePagesWithChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -91342,6 +92341,7 @@ export declare type RankColumnOutput = MutationResponse & {
|
|
|
91342
92341
|
export declare type RankCustomFilterInput = {
|
|
91343
92342
|
afterFilterId?: InputMaybe<Scalars['String']['input']>;
|
|
91344
92343
|
boardId: Scalars['ID']['input'];
|
|
92344
|
+
customFilterIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
91345
92345
|
id: Scalars['String']['input'];
|
|
91346
92346
|
};
|
|
91347
92347
|
export declare type RankItem = {
|
|
@@ -96920,7 +97920,7 @@ export declare type SpfAskEdge = {
|
|
|
96920
97920
|
cursor: Scalars['String']['output'];
|
|
96921
97921
|
node?: Maybe<SpfAskResult>;
|
|
96922
97922
|
};
|
|
96923
|
-
export declare type SpfAskLink = {
|
|
97923
|
+
export declare type SpfAskLink = Node & {
|
|
96924
97924
|
__typename?: 'SpfAskLink';
|
|
96925
97925
|
askId: Scalars['String']['output'];
|
|
96926
97926
|
attachedByUser?: Maybe<User>;
|
|
@@ -97090,6 +98090,10 @@ export declare type SpfDeleteAskUpdatePayload = Payload & {
|
|
|
97090
98090
|
success: Scalars['Boolean']['output'];
|
|
97091
98091
|
};
|
|
97092
98092
|
export declare type SpfImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
98093
|
+
export declare type SpfResolveImpactedWorkUrlPayload = {
|
|
98094
|
+
__typename?: 'SpfResolveImpactedWorkUrlPayload';
|
|
98095
|
+
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
98096
|
+
};
|
|
97093
98097
|
export declare type SpfUpdateAskCommentDataInput = {
|
|
97094
98098
|
data: Scalars['String']['input'];
|
|
97095
98099
|
id: Scalars['ID']['input'];
|
|
@@ -97250,6 +98254,7 @@ export declare enum StakeholderCommsAddedFromType {
|
|
|
97250
98254
|
export declare type StakeholderCommsAssignment = {
|
|
97251
98255
|
__typename?: 'StakeholderCommsAssignment';
|
|
97252
98256
|
addedFrom?: Maybe<StakeholderCommsAddedFromType>;
|
|
98257
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
97253
98258
|
assignmentType?: Maybe<StakeholderCommsAssignmentType>;
|
|
97254
98259
|
externalAssignmentId?: Maybe<Scalars['String']['output']>;
|
|
97255
98260
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -97278,6 +98283,7 @@ export declare type StakeholderCommsAssignmentEdge = {
|
|
|
97278
98283
|
node: StakeholderCommsAssignment;
|
|
97279
98284
|
};
|
|
97280
98285
|
export declare type StakeholderCommsAssignmentIdInput = {
|
|
98286
|
+
ari?: InputMaybe<Scalars['String']['input']>;
|
|
97281
98287
|
assignmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
97282
98288
|
assignmentType?: InputMaybe<StakeholderCommsAssignmentType>;
|
|
97283
98289
|
externalAssignmentId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -97316,10 +98322,17 @@ export declare type StakeholderCommsCreateStakeholderInput = {
|
|
|
97316
98322
|
};
|
|
97317
98323
|
export declare type StakeholderCommsGroups = {
|
|
97318
98324
|
__typename?: 'StakeholderCommsGroups';
|
|
97319
|
-
|
|
98325
|
+
avatar?: Maybe<Scalars['String']['output']>;
|
|
97320
98326
|
id?: Maybe<Scalars['ID']['output']>;
|
|
97321
98327
|
name?: Maybe<Scalars['String']['output']>;
|
|
97322
98328
|
};
|
|
98329
|
+
export declare type StakeholderCommsListStakeholderConnectionInput = {
|
|
98330
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98331
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
98332
|
+
filter?: InputMaybe<StakeholderCommsStakeholderConnectionFilter>;
|
|
98333
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98334
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
98335
|
+
};
|
|
97323
98336
|
export declare type StakeholderCommsModePreference = {
|
|
97324
98337
|
__typename?: 'StakeholderCommsModePreference';
|
|
97325
98338
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -97390,6 +98403,7 @@ export declare type StakeholderCommsPreferencesInput = {
|
|
|
97390
98403
|
export declare type StakeholderCommsStakeholder = {
|
|
97391
98404
|
__typename?: 'StakeholderCommsStakeholder';
|
|
97392
98405
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
98406
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
97393
98407
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
97394
98408
|
groups?: Maybe<Array<StakeholderCommsGroups>>;
|
|
97395
98409
|
id: Scalars['ID']['output'];
|
|
@@ -97421,6 +98435,10 @@ export declare type StakeholderCommsStakeholderConnection = {
|
|
|
97421
98435
|
pageInfo: StakeholderCommsPageInfo;
|
|
97422
98436
|
totalCount: Scalars['Int']['output'];
|
|
97423
98437
|
};
|
|
98438
|
+
export declare type StakeholderCommsStakeholderConnectionFilter = {
|
|
98439
|
+
status?: InputMaybe<Array<StakeholderCommsStakeholderStatus>>;
|
|
98440
|
+
type?: InputMaybe<Array<StakeholderCommsStakeholderType>>;
|
|
98441
|
+
};
|
|
97424
98442
|
export declare type StakeholderCommsStakeholderConnectionInput = {
|
|
97425
98443
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
97426
98444
|
assignmentIdInput: StakeholderCommsAssignmentIdInput;
|
|
@@ -97490,6 +98508,7 @@ export declare type StakeholderCommsStakeholderGroupsAndMemberships = {
|
|
|
97490
98508
|
};
|
|
97491
98509
|
export declare type StakeholderCommsStakeholderIdInput = {
|
|
97492
98510
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
98511
|
+
ari?: InputMaybe<Scalars['String']['input']>;
|
|
97493
98512
|
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
97494
98513
|
stakeholderId?: InputMaybe<Scalars['ID']['input']>;
|
|
97495
98514
|
stakeholderType?: InputMaybe<StakeholderCommsStakeholderType>;
|
|
@@ -97654,6 +98673,7 @@ export declare type Subscription = {
|
|
|
97654
98673
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
97655
98674
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
97656
98675
|
devai_onAutodevJobLogsUpdated?: Maybe<DevAiAutodevLogEdge>;
|
|
98676
|
+
devai_onBoysenberrySessionUpdated?: Maybe<DevAiRovoDevSession>;
|
|
97657
98677
|
devai_onTechnicalPlannerJobUpdated?: Maybe<DevAiTechnicalPlannerJob>;
|
|
97658
98678
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
97659
98679
|
jira?: Maybe<JiraSubscription>;
|
|
@@ -97681,6 +98701,9 @@ export declare type SubscriptionDevai_OnAutodevJobLogsUpdatedArgs = {
|
|
|
97681
98701
|
cloudId: Scalars['ID']['input'];
|
|
97682
98702
|
jobId: Scalars['ID']['input'];
|
|
97683
98703
|
};
|
|
98704
|
+
export declare type SubscriptionDevai_OnBoysenberrySessionUpdatedArgs = {
|
|
98705
|
+
sessionAri: Scalars['ID']['input'];
|
|
98706
|
+
};
|
|
97684
98707
|
export declare type SubscriptionDevai_OnTechnicalPlannerJobUpdatedArgs = {
|
|
97685
98708
|
cloudId: Scalars['ID']['input'];
|
|
97686
98709
|
jobId: Scalars['ID']['input'];
|
|
@@ -98447,6 +99470,7 @@ export declare type TeamV2 = Node & {
|
|
|
98447
99470
|
members?: Maybe<TeamMemberConnectionV2>;
|
|
98448
99471
|
membershipSettings?: Maybe<TeamMembershipSettings>;
|
|
98449
99472
|
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
99473
|
+
profileUrl?: Maybe<Scalars['String']['output']>;
|
|
98450
99474
|
smallAvatarImageUrl?: Maybe<Scalars['String']['output']>;
|
|
98451
99475
|
smallHeaderImageUrl?: Maybe<Scalars['String']['output']>;
|
|
98452
99476
|
state?: Maybe<TeamStateV2>;
|
|
@@ -99509,6 +100533,44 @@ export declare type TownsquareGoalsAddGoalTeamLinkPayload = {
|
|
|
99509
100533
|
goalTeamEdge?: Maybe<TownsquareGoalTeamEdge>;
|
|
99510
100534
|
success: Scalars['Boolean']['output'];
|
|
99511
100535
|
};
|
|
100536
|
+
export declare type TownsquareGoalsCreateUpdateInput = {
|
|
100537
|
+
goalId: Scalars['ID']['input'];
|
|
100538
|
+
score?: InputMaybe<Scalars['Int']['input']>;
|
|
100539
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
100540
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
100541
|
+
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
100542
|
+
updateNotes?: InputMaybe<Array<InputMaybe<TownsquareUpdateNoteInput>>>;
|
|
100543
|
+
};
|
|
100544
|
+
export declare type TownsquareGoalsCreateUpdatePayload = {
|
|
100545
|
+
__typename?: 'TownsquareGoalsCreateUpdatePayload';
|
|
100546
|
+
errors?: Maybe<Array<MutationError>>;
|
|
100547
|
+
success: Scalars['Boolean']['output'];
|
|
100548
|
+
update?: Maybe<TownsquareGoalUpdate>;
|
|
100549
|
+
};
|
|
100550
|
+
export declare type TownsquareGoalsDeleteLatestUpdateInput = {
|
|
100551
|
+
updateId: Scalars['ID']['input'];
|
|
100552
|
+
};
|
|
100553
|
+
export declare type TownsquareGoalsDeleteLatestUpdatePayload = {
|
|
100554
|
+
__typename?: 'TownsquareGoalsDeleteLatestUpdatePayload';
|
|
100555
|
+
errors?: Maybe<Array<MutationError>>;
|
|
100556
|
+
goal?: Maybe<TownsquareGoal>;
|
|
100557
|
+
success: Scalars['Boolean']['output'];
|
|
100558
|
+
updateId?: Maybe<Scalars['ID']['output']>;
|
|
100559
|
+
};
|
|
100560
|
+
export declare type TownsquareGoalsEditUpdateInput = {
|
|
100561
|
+
goalUpdateId: Scalars['ID']['input'];
|
|
100562
|
+
score?: InputMaybe<Scalars['Int']['input']>;
|
|
100563
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
100564
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
100565
|
+
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
100566
|
+
updateNotes?: InputMaybe<Array<InputMaybe<TownsquareUpdateNoteInput>>>;
|
|
100567
|
+
};
|
|
100568
|
+
export declare type TownsquareGoalsEditUpdatePayload = {
|
|
100569
|
+
__typename?: 'TownsquareGoalsEditUpdatePayload';
|
|
100570
|
+
errors?: Maybe<Array<MutationError>>;
|
|
100571
|
+
success: Scalars['Boolean']['output'];
|
|
100572
|
+
update?: Maybe<TownsquareGoalUpdate>;
|
|
100573
|
+
};
|
|
99512
100574
|
export declare type TownsquareGoalsRemoveGoalTeamLinkInput = {
|
|
99513
100575
|
goalId: Scalars['ID']['input'];
|
|
99514
100576
|
teamId: Scalars['ID']['input'];
|
|
@@ -100111,6 +101173,31 @@ export declare type TownsquareProjectsEditPayload = {
|
|
|
100111
101173
|
project?: Maybe<TownsquareProject>;
|
|
100112
101174
|
success: Scalars['Boolean']['output'];
|
|
100113
101175
|
};
|
|
101176
|
+
export declare type TownsquareProjectsEditUpdateInput = {
|
|
101177
|
+
highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
|
|
101178
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
101179
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
101180
|
+
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
101181
|
+
updateId: Scalars['ID']['input'];
|
|
101182
|
+
updateNotes?: InputMaybe<Array<InputMaybe<TownsquareUpdateNoteInput>>>;
|
|
101183
|
+
};
|
|
101184
|
+
export declare type TownsquareProjectsEditUpdatePayload = {
|
|
101185
|
+
__typename?: 'TownsquareProjectsEditUpdatePayload';
|
|
101186
|
+
errors?: Maybe<Array<MutationError>>;
|
|
101187
|
+
success: Scalars['Boolean']['output'];
|
|
101188
|
+
update?: Maybe<TownsquareProjectUpdate>;
|
|
101189
|
+
};
|
|
101190
|
+
export declare type TownsquareProjectsRemoveGoalLinkInput = {
|
|
101191
|
+
goalId: Scalars['ID']['input'];
|
|
101192
|
+
projectId: Scalars['ID']['input'];
|
|
101193
|
+
};
|
|
101194
|
+
export declare type TownsquareProjectsRemoveGoalLinkPayload = {
|
|
101195
|
+
__typename?: 'TownsquareProjectsRemoveGoalLinkPayload';
|
|
101196
|
+
errors?: Maybe<Array<MutationError>>;
|
|
101197
|
+
goal?: Maybe<TownsquareGoal>;
|
|
101198
|
+
project?: Maybe<TownsquareProject>;
|
|
101199
|
+
success: Scalars['Boolean']['output'];
|
|
101200
|
+
};
|
|
100114
101201
|
export declare type TownsquareProjectsRemoveMemberInput = {
|
|
100115
101202
|
projectId: Scalars['ID']['input'];
|
|
100116
101203
|
userId: Scalars['ID']['input'];
|
|
@@ -100121,6 +101208,17 @@ export declare type TownsquareProjectsRemoveMemberPayload = {
|
|
|
100121
101208
|
success: Scalars['Boolean']['output'];
|
|
100122
101209
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
100123
101210
|
};
|
|
101211
|
+
export declare type TownsquareProjectsRemoveTeamContributorsInput = {
|
|
101212
|
+
projectId: Scalars['ID']['input'];
|
|
101213
|
+
teamId: Scalars['ID']['input'];
|
|
101214
|
+
};
|
|
101215
|
+
export declare type TownsquareProjectsRemoveTeamContributorsPayload = {
|
|
101216
|
+
__typename?: 'TownsquareProjectsRemoveTeamContributorsPayload';
|
|
101217
|
+
errors?: Maybe<Array<MutationError>>;
|
|
101218
|
+
project?: Maybe<TownsquareProject>;
|
|
101219
|
+
success: Scalars['Boolean']['output'];
|
|
101220
|
+
team?: Maybe<TeamV2>;
|
|
101221
|
+
};
|
|
100124
101222
|
export declare type TownsquareProjectsSetDependencyInput = {
|
|
100125
101223
|
incomingProjectId: Scalars['ID']['input'];
|
|
100126
101224
|
outgoingProjectId: Scalars['ID']['input'];
|
|
@@ -100542,9 +101640,9 @@ export declare type TrelloAction = {
|
|
|
100542
101640
|
};
|
|
100543
101641
|
export declare type TrelloActionAttachmentEntity = {
|
|
100544
101642
|
__typename?: 'TrelloActionAttachmentEntity';
|
|
100545
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
100546
101643
|
link?: Maybe<Scalars['Boolean']['output']>;
|
|
100547
101644
|
name?: Maybe<Scalars['String']['output']>;
|
|
101645
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
100548
101646
|
previewUrl?: Maybe<Scalars['String']['output']>;
|
|
100549
101647
|
previewUrl2x?: Maybe<Scalars['String']['output']>;
|
|
100550
101648
|
type?: Maybe<Scalars['String']['output']>;
|
|
@@ -100552,8 +101650,8 @@ export declare type TrelloActionAttachmentEntity = {
|
|
|
100552
101650
|
};
|
|
100553
101651
|
export declare type TrelloActionAttachmentPreviewEntity = {
|
|
100554
101652
|
__typename?: 'TrelloActionAttachmentPreviewEntity';
|
|
100555
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
100556
101653
|
name?: Maybe<Scalars['String']['output']>;
|
|
101654
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
100557
101655
|
originalUrl?: Maybe<Scalars['URL']['output']>;
|
|
100558
101656
|
previewUrl?: Maybe<Scalars['URL']['output']>;
|
|
100559
101657
|
previewUrl2x?: Maybe<Scalars['URL']['output']>;
|
|
@@ -100583,6 +101681,7 @@ export declare type TrelloActionCardEntity = {
|
|
|
100583
101681
|
shortId?: Maybe<Scalars['Int']['output']>;
|
|
100584
101682
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
100585
101683
|
start?: Maybe<Scalars['DateTime']['output']>;
|
|
101684
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
100586
101685
|
type?: Maybe<Scalars['String']['output']>;
|
|
100587
101686
|
};
|
|
100588
101687
|
export declare type TrelloActionCheckItemEntity = {
|
|
@@ -100600,6 +101699,7 @@ export declare type TrelloActionChecklistEntity = {
|
|
|
100600
101699
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
100601
101700
|
name?: Maybe<Scalars['String']['output']>;
|
|
100602
101701
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
101702
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
100603
101703
|
type?: Maybe<Scalars['String']['output']>;
|
|
100604
101704
|
};
|
|
100605
101705
|
export declare type TrelloActionCommentEntity = {
|
|
@@ -100626,6 +101726,7 @@ export declare type TrelloActionListEntity = {
|
|
|
100626
101726
|
__typename?: 'TrelloActionListEntity';
|
|
100627
101727
|
name?: Maybe<Scalars['String']['output']>;
|
|
100628
101728
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
101729
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
100629
101730
|
type?: Maybe<Scalars['String']['output']>;
|
|
100630
101731
|
};
|
|
100631
101732
|
export declare type TrelloActionMemberEntity = {
|
|
@@ -101082,6 +102183,7 @@ export declare type TrelloBoardMirrorCardsMirrorCardsArgs = {
|
|
|
101082
102183
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101083
102184
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101084
102185
|
};
|
|
102186
|
+
export declare type TrelloBoardOrInbox = TrelloBoard | TrelloInbox;
|
|
101085
102187
|
export declare type TrelloBoardPowerUpConnection = {
|
|
101086
102188
|
__typename?: 'TrelloBoardPowerUpConnection';
|
|
101087
102189
|
edges?: Maybe<Array<TrelloBoardPowerUpEdge>>;
|
|
@@ -101697,6 +102799,7 @@ export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionDat
|
|
|
101697
102799
|
card?: Maybe<TrelloCard>;
|
|
101698
102800
|
creator?: Maybe<TrelloMember>;
|
|
101699
102801
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
102802
|
+
dateLastEdited?: Maybe<Scalars['DateTime']['output']>;
|
|
101700
102803
|
displayEntities?: Maybe<TrelloCommentCardActionDisplayEntities>;
|
|
101701
102804
|
displayKey?: Maybe<Scalars['String']['output']>;
|
|
101702
102805
|
id: Scalars['ID']['output'];
|
|
@@ -102491,6 +103594,7 @@ export declare type TrelloMutationApi = {
|
|
|
102491
103594
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
102492
103595
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
102493
103596
|
updateOAuth2AppCallbackUrls?: Maybe<TrelloUpdateOAuth2AppCallbackUrlsPayload>;
|
|
103597
|
+
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
102494
103598
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
102495
103599
|
};
|
|
102496
103600
|
export declare type TrelloMutationApiAddBoardStarArgs = {
|
|
@@ -102586,6 +103690,9 @@ export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
|
102586
103690
|
export declare type TrelloMutationApiUpdateOAuth2AppCallbackUrlsArgs = {
|
|
102587
103691
|
input: TrelloUpdateOAuth2AppCallbackUrlsInput;
|
|
102588
103692
|
};
|
|
103693
|
+
export declare type TrelloMutationApiUpdateOAuth2ClientArgs = {
|
|
103694
|
+
input: TrelloUpdateOAuth2ClientInput;
|
|
103695
|
+
};
|
|
102589
103696
|
export declare type TrelloMutationApiWatchCardArgs = {
|
|
102590
103697
|
input: TrelloWatchCardInput;
|
|
102591
103698
|
};
|
|
@@ -102594,6 +103701,7 @@ export declare type TrelloOAuth2Client = {
|
|
|
102594
103701
|
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
102595
103702
|
clientId: Scalars['String']['output'];
|
|
102596
103703
|
clientSecret: Scalars['String']['output'];
|
|
103704
|
+
clientType: Scalars['String']['output'];
|
|
102597
103705
|
profile: Scalars['String']['output'];
|
|
102598
103706
|
scopes?: Maybe<Array<TrelloOAuth2Scope>>;
|
|
102599
103707
|
};
|
|
@@ -103073,6 +104181,7 @@ export declare type TrelloQueryApi = {
|
|
|
103073
104181
|
labelsById?: Maybe<Array<Maybe<TrelloLabel>>>;
|
|
103074
104182
|
list?: Maybe<TrelloList>;
|
|
103075
104183
|
listsById?: Maybe<Array<Maybe<TrelloList>>>;
|
|
104184
|
+
me?: Maybe<TrelloMember>;
|
|
103076
104185
|
member?: Maybe<TrelloMember>;
|
|
103077
104186
|
plannerAccountsByMemberId?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
103078
104187
|
plannerByWorkspaceId?: Maybe<TrelloPlanner>;
|
|
@@ -103632,6 +104741,29 @@ export declare type TrelloUpdateOAuth2AppCallbackUrlsPayload = Payload & {
|
|
|
103632
104741
|
id?: Maybe<Scalars['ID']['output']>;
|
|
103633
104742
|
success: Scalars['Boolean']['output'];
|
|
103634
104743
|
};
|
|
104744
|
+
export declare type TrelloUpdateOAuth2ClientInput = {
|
|
104745
|
+
appContactLink?: InputMaybe<Scalars['String']['input']>;
|
|
104746
|
+
appDescription?: InputMaybe<Scalars['String']['input']>;
|
|
104747
|
+
appLogoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
104748
|
+
appVendorName?: InputMaybe<Scalars['String']['input']>;
|
|
104749
|
+
callbackUrls?: InputMaybe<Array<Scalars['URL']['input']>>;
|
|
104750
|
+
clientType?: InputMaybe<Scalars['String']['input']>;
|
|
104751
|
+
id: Scalars['ID']['input'];
|
|
104752
|
+
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
104753
|
+
};
|
|
104754
|
+
export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
|
|
104755
|
+
__typename?: 'TrelloUpdateOAuth2ClientPayload';
|
|
104756
|
+
appContactLink?: Maybe<Scalars['String']['output']>;
|
|
104757
|
+
appDescription?: Maybe<Scalars['String']['output']>;
|
|
104758
|
+
appLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
104759
|
+
appVendorName?: Maybe<Scalars['String']['output']>;
|
|
104760
|
+
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
104761
|
+
clientType?: Maybe<Scalars['String']['output']>;
|
|
104762
|
+
errors?: Maybe<Array<MutationError>>;
|
|
104763
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
104764
|
+
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
104765
|
+
success: Scalars['Boolean']['output'];
|
|
104766
|
+
};
|
|
103635
104767
|
export declare type TrelloUploadedBackground = {
|
|
103636
104768
|
__typename?: 'TrelloUploadedBackground';
|
|
103637
104769
|
objectId: Scalars['ID']['output'];
|
|
@@ -105498,7 +106630,7 @@ export declare type UpdateJiraPlaybookStepInput = {
|
|
|
105498
106630
|
type: JiraPlaybookStepType;
|
|
105499
106631
|
};
|
|
105500
106632
|
export declare type UpdateMetadataInput = {
|
|
105501
|
-
ari
|
|
106633
|
+
ari?: InputMaybe<Scalars['String']['input']>;
|
|
105502
106634
|
extraProps?: InputMaybe<Array<PropInput>>;
|
|
105503
106635
|
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
105504
106636
|
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -105513,8 +106645,10 @@ export declare type UpdateNestedPageOwnersPayload = Payload & {
|
|
|
105513
106645
|
warnings?: Maybe<Array<Maybe<ChangeOwnerWarning>>>;
|
|
105514
106646
|
};
|
|
105515
106647
|
export declare type UpdateNoteInput = {
|
|
106648
|
+
backgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
105516
106649
|
body?: InputMaybe<Scalars['String']['input']>;
|
|
105517
|
-
|
|
106650
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
106651
|
+
metadata?: InputMaybe<UpdateMetadataInput>;
|
|
105518
106652
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
105519
106653
|
};
|
|
105520
106654
|
export declare type UpdateNotePayload = {
|