@forge/cli-shared 8.3.1-next.1 → 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 +13 -0
- package/out/graphql/graphql-types.d.ts +1103 -61
- 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'];
|
|
@@ -3655,31 +3885,43 @@ export declare type AssetsDmObjectSchema = {
|
|
|
3655
3885
|
};
|
|
3656
3886
|
export declare type AssetsDmObjectTag = {
|
|
3657
3887
|
__typename?: 'AssetsDMObjectTag';
|
|
3888
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
3889
|
+
name: Scalars['String']['output'];
|
|
3658
3890
|
objectId: Scalars['ID']['output'];
|
|
3659
3891
|
tagCode: Scalars['Int']['output'];
|
|
3660
|
-
tagDescription?: Maybe<Scalars['String']['output']>;
|
|
3661
3892
|
tagId: Scalars['ID']['output'];
|
|
3662
|
-
|
|
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'];
|
|
3663
3908
|
};
|
|
3664
3909
|
export declare type AssetsDmObjectTags = {
|
|
3665
3910
|
__typename?: 'AssetsDMObjectTags';
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
};
|
|
3669
|
-
export declare type AssetsDmObjectTagsArgs = {
|
|
3670
|
-
cloudId: Scalars['ID']['input'];
|
|
3671
|
-
objectId: Scalars['ID']['input'];
|
|
3672
|
-
workspaceId: Scalars['ID']['input'];
|
|
3911
|
+
count: Scalars['Int']['output'];
|
|
3912
|
+
data: Array<AssetsDmObjectTag>;
|
|
3673
3913
|
};
|
|
3674
3914
|
export declare enum AssetsDmObjectsListColumnType {
|
|
3675
3915
|
Boolean = "BOOLEAN",
|
|
3676
3916
|
Datetime = "DATETIME",
|
|
3677
3917
|
Icon = "ICON",
|
|
3918
|
+
Number = "NUMBER",
|
|
3678
3919
|
String = "STRING",
|
|
3679
3920
|
Tag = "TAG"
|
|
3680
3921
|
}
|
|
3681
3922
|
export declare type AssetsDmObjectsListColumns = {
|
|
3682
3923
|
__typename?: 'AssetsDMObjectsListColumns';
|
|
3924
|
+
columnsCount: Scalars['Int']['output'];
|
|
3683
3925
|
dataColumns: Array<AssetsDmObjectsListDataColumn>;
|
|
3684
3926
|
};
|
|
3685
3927
|
export declare type AssetsDmObjectsListDataColumn = {
|
|
@@ -3801,12 +4043,17 @@ export declare type AssetsIcon = {
|
|
|
3801
4043
|
url16?: Maybe<Scalars['String']['output']>;
|
|
3802
4044
|
url48?: Maybe<Scalars['String']['output']>;
|
|
3803
4045
|
};
|
|
4046
|
+
export declare type AssetsLinks = {
|
|
4047
|
+
__typename?: 'AssetsLinks';
|
|
4048
|
+
web?: Maybe<Scalars['String']['output']>;
|
|
4049
|
+
};
|
|
3804
4050
|
export declare type AssetsObject = Node & {
|
|
3805
4051
|
__typename?: 'AssetsObject';
|
|
3806
4052
|
avatar?: Maybe<AssetsAvatar>;
|
|
3807
4053
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
3808
4054
|
id: Scalars['ID']['output'];
|
|
3809
4055
|
label?: Maybe<Scalars['String']['output']>;
|
|
4056
|
+
links?: Maybe<AssetsLinks>;
|
|
3810
4057
|
objectKey?: Maybe<Scalars['String']['output']>;
|
|
3811
4058
|
objectType?: Maybe<AssetsObjectType>;
|
|
3812
4059
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -3816,6 +4063,7 @@ export declare type AssetsObjectType = Node & {
|
|
|
3816
4063
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
3817
4064
|
icon?: Maybe<AssetsIcon>;
|
|
3818
4065
|
id: Scalars['ID']['output'];
|
|
4066
|
+
links?: Maybe<AssetsLinks>;
|
|
3819
4067
|
name?: Maybe<Scalars['String']['output']>;
|
|
3820
4068
|
schema?: Maybe<AssetsSchema>;
|
|
3821
4069
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -3825,6 +4073,7 @@ export declare type AssetsSchema = Node & {
|
|
|
3825
4073
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
3826
4074
|
id: Scalars['ID']['output'];
|
|
3827
4075
|
key?: Maybe<Scalars['String']['output']>;
|
|
4076
|
+
links?: Maybe<AssetsLinks>;
|
|
3828
4077
|
name?: Maybe<Scalars['String']['output']>;
|
|
3829
4078
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
3830
4079
|
};
|
|
@@ -5374,6 +5623,15 @@ export declare type CcpMultipleProductUpgradesExperienceCapability = CommerceExp
|
|
|
5374
5623
|
experienceUrl?: Maybe<Scalars['String']['output']>;
|
|
5375
5624
|
isAvailableToUser?: Maybe<Scalars['Boolean']['output']>;
|
|
5376
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
|
+
};
|
|
5377
5635
|
export declare type CcpOffering = CommerceOffering & Node & {
|
|
5378
5636
|
__typename?: 'CcpOffering';
|
|
5379
5637
|
allowReactivationOnDifferentOffering?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -5436,6 +5694,8 @@ export declare type CcpOfferingChargeElement = {
|
|
|
5436
5694
|
};
|
|
5437
5695
|
export declare type CcpOfferingChargeElementUsageConfig = {
|
|
5438
5696
|
__typename?: 'CcpOfferingChargeElementUsageConfig';
|
|
5697
|
+
consumerKeyType?: Maybe<Scalars['String']['output']>;
|
|
5698
|
+
scale?: Maybe<CcpUsageConfigScale>;
|
|
5439
5699
|
usageKey?: Maybe<Scalars['String']['output']>;
|
|
5440
5700
|
};
|
|
5441
5701
|
export declare type CcpOfferingGroup = {
|
|
@@ -5449,7 +5709,8 @@ export declare type CcpOfferingGroup = {
|
|
|
5449
5709
|
slug?: Maybe<Scalars['String']['output']>;
|
|
5450
5710
|
};
|
|
5451
5711
|
export declare enum CcpOfferingHostingType {
|
|
5452
|
-
Cloud = "CLOUD"
|
|
5712
|
+
Cloud = "CLOUD",
|
|
5713
|
+
Datacenter = "DATACENTER"
|
|
5453
5714
|
}
|
|
5454
5715
|
export declare type CcpOfferingRelationship = {
|
|
5455
5716
|
__typename?: 'CcpOfferingRelationship';
|
|
@@ -6581,6 +6842,19 @@ export declare enum CcpTrialEndBehaviour {
|
|
|
6581
6842
|
BillingPlan = "BILLING_PLAN",
|
|
6582
6843
|
TrialPlan = "TRIAL_PLAN"
|
|
6583
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
|
+
};
|
|
6584
6858
|
export declare type CcpUsageQueryBucket = {
|
|
6585
6859
|
__typename?: 'CcpUsageQueryBucket';
|
|
6586
6860
|
end?: Maybe<Scalars['Float']['output']>;
|
|
@@ -12515,7 +12789,14 @@ export declare type ConfluenceAncestor = ConfluenceDatabase | ConfluenceEmbed |
|
|
|
12515
12789
|
export declare type ConfluenceAppInstallationLicense = {
|
|
12516
12790
|
__typename?: 'ConfluenceAppInstallationLicense';
|
|
12517
12791
|
active: Scalars['Boolean']['output'];
|
|
12792
|
+
billingPeriod?: Maybe<Scalars['String']['output']>;
|
|
12518
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']>;
|
|
12519
12800
|
};
|
|
12520
12801
|
export declare enum ConfluenceAppInstallationLicenseCapabilitySet {
|
|
12521
12802
|
CapabilityAdvanced = "CAPABILITY_ADVANCED",
|
|
@@ -12950,6 +13231,20 @@ export declare type ConfluenceConvertContentToFolderPayload = {
|
|
|
12950
13231
|
__typename?: 'ConfluenceConvertContentToFolderPayload';
|
|
12951
13232
|
content?: Maybe<Content>;
|
|
12952
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
|
+
};
|
|
12953
13248
|
export declare type ConfluenceCopyPageTaskResult = {
|
|
12954
13249
|
__typename?: 'ConfluenceCopyPageTaskResult';
|
|
12955
13250
|
page?: Maybe<ConfluencePage>;
|
|
@@ -13365,6 +13660,7 @@ export declare type ConfluenceExtensionPrincipal = {
|
|
|
13365
13660
|
id?: Maybe<Scalars['ID']['output']>;
|
|
13366
13661
|
};
|
|
13367
13662
|
export declare type ConfluenceExtensionRenderingContextInput = {
|
|
13663
|
+
contentId?: InputMaybe<Scalars['Long']['input']>;
|
|
13368
13664
|
spaceId?: InputMaybe<Scalars['Long']['input']>;
|
|
13369
13665
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
13370
13666
|
};
|
|
@@ -13453,10 +13749,12 @@ export declare type ConfluenceForgeExtension = {
|
|
|
13453
13749
|
appId: Scalars['ID']['output'];
|
|
13454
13750
|
appOwner?: Maybe<Scalars['String']['output']>;
|
|
13455
13751
|
appVersion?: Maybe<Scalars['String']['output']>;
|
|
13752
|
+
confluenceUserAccess?: Maybe<ConfluenceUserAccess>;
|
|
13456
13753
|
consentUrl?: Maybe<Scalars['String']['output']>;
|
|
13457
13754
|
definitionId: Scalars['ID']['output'];
|
|
13458
13755
|
egress?: Maybe<Array<ConfluenceExtensionEgressDeclaration>>;
|
|
13459
13756
|
environmentId: Scalars['ID']['output'];
|
|
13757
|
+
environmentKey?: Maybe<Scalars['String']['output']>;
|
|
13460
13758
|
environmentType: Scalars['String']['output'];
|
|
13461
13759
|
hiddenBy?: Maybe<ConfluenceExtensionVisibilityControlMechanism>;
|
|
13462
13760
|
id: Scalars['ID']['output'];
|
|
@@ -13846,6 +14144,10 @@ export declare enum ConfluenceMutationContentStatus {
|
|
|
13846
14144
|
Current = "CURRENT",
|
|
13847
14145
|
Draft = "DRAFT"
|
|
13848
14146
|
}
|
|
14147
|
+
export declare enum ConfluenceNotesOrdering {
|
|
14148
|
+
DateLastModifiedAsc = "DATE_LAST_MODIFIED_ASC",
|
|
14149
|
+
DateLastModifiedDesc = "DATE_LAST_MODIFIED_DESC"
|
|
14150
|
+
}
|
|
13849
14151
|
export declare type ConfluenceOperationCheck = {
|
|
13850
14152
|
__typename?: 'ConfluenceOperationCheck';
|
|
13851
14153
|
operation?: Maybe<ConfluenceOperationName>;
|
|
@@ -14646,6 +14948,15 @@ export declare type ConfluenceUpdateAdminAnnouncementBannerInput = {
|
|
|
14646
14948
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
14647
14949
|
visibility?: InputMaybe<ConfluenceAdminAnnouncementBannerVisibilityType>;
|
|
14648
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
|
+
};
|
|
14649
14960
|
export declare type ConfluenceUpdateCommentInput = {
|
|
14650
14961
|
body: ConfluenceContentBodyInput;
|
|
14651
14962
|
id: Scalars['ID']['input'];
|
|
@@ -14842,6 +15153,11 @@ export declare type ConfluenceUser = {
|
|
|
14842
15153
|
space?: Maybe<Space>;
|
|
14843
15154
|
userKey?: Maybe<Scalars['String']['output']>;
|
|
14844
15155
|
};
|
|
15156
|
+
export declare type ConfluenceUserAccess = {
|
|
15157
|
+
__typename?: 'ConfluenceUserAccess';
|
|
15158
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15159
|
+
hasAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
15160
|
+
};
|
|
14845
15161
|
export declare type ConfluenceUserClass = {
|
|
14846
15162
|
__typename?: 'ConfluenceUserClass';
|
|
14847
15163
|
displayName: Scalars['String']['output'];
|
|
@@ -17281,8 +17597,91 @@ export declare type CountUsersGroupByPageItem = {
|
|
|
17281
17597
|
};
|
|
17282
17598
|
export declare type CplsCapacityPlanningPeopleView = {
|
|
17283
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';
|
|
17284
17667
|
id: Scalars['ID']['output'];
|
|
17668
|
+
name: Scalars['String']['output'];
|
|
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;
|
|
17285
17683
|
};
|
|
17684
|
+
export declare type CplsWorkData = CplsCustomContributionTarget | JiraIssue;
|
|
17286
17685
|
export declare type CreateAppContainerPayload = Payload & {
|
|
17287
17686
|
__typename?: 'CreateAppContainerPayload';
|
|
17288
17687
|
container?: Maybe<AppContainer>;
|
|
@@ -17854,6 +18253,7 @@ export declare type CreateMetadataInput = {
|
|
|
17854
18253
|
productLink?: InputMaybe<Scalars['String']['input']>;
|
|
17855
18254
|
};
|
|
17856
18255
|
export declare type CreateNoteInput = {
|
|
18256
|
+
backgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
17857
18257
|
body?: InputMaybe<Scalars['String']['input']>;
|
|
17858
18258
|
metadata?: InputMaybe<CreateMetadataInput>;
|
|
17859
18259
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -20089,12 +20489,14 @@ export declare type DeleteLabelPayload = {
|
|
|
20089
20489
|
label: Scalars['String']['output'];
|
|
20090
20490
|
};
|
|
20091
20491
|
export declare type DeleteNoteInput = {
|
|
20092
|
-
ari
|
|
20492
|
+
ari?: InputMaybe<Scalars['String']['input']>;
|
|
20493
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
20093
20494
|
};
|
|
20094
20495
|
export declare type DeleteNotePayload = {
|
|
20095
20496
|
__typename?: 'DeleteNotePayload';
|
|
20096
20497
|
ari?: Maybe<Scalars['String']['output']>;
|
|
20097
20498
|
errors?: Maybe<Array<NoteMutationError>>;
|
|
20499
|
+
id: Scalars['ID']['output'];
|
|
20098
20500
|
success: Scalars['Boolean']['output'];
|
|
20099
20501
|
};
|
|
20100
20502
|
export declare type DeletePagesInput = {
|
|
@@ -20820,6 +21222,12 @@ export declare type DevAiRovoDevCreateSessionPayload = Payload & {
|
|
|
20820
21222
|
session?: Maybe<DevAiRovoDevSession>;
|
|
20821
21223
|
success: Scalars['Boolean']['output'];
|
|
20822
21224
|
};
|
|
21225
|
+
export declare enum DevAiRovoDevPrStatus {
|
|
21226
|
+
Declined = "DECLINED",
|
|
21227
|
+
Draft = "DRAFT",
|
|
21228
|
+
Merged = "MERGED",
|
|
21229
|
+
Open = "OPEN"
|
|
21230
|
+
}
|
|
20823
21231
|
export declare enum DevAiRovoDevRaisePullRequestOption {
|
|
20824
21232
|
Always = "ALWAYS",
|
|
20825
21233
|
Draft = "DRAFT",
|
|
@@ -20846,7 +21254,10 @@ export declare type DevAiRovoDevSession = Node & {
|
|
|
20846
21254
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
20847
21255
|
id: Scalars['ID']['output'];
|
|
20848
21256
|
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
21257
|
+
issue?: Maybe<JiraIssue>;
|
|
21258
|
+
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
20849
21259
|
options?: Maybe<DevAiRovoDevSessionOptions>;
|
|
21260
|
+
prStatus?: Maybe<DevAiRovoDevPrStatus>;
|
|
20850
21261
|
promptAdf?: Maybe<Scalars['JSON']['output']>;
|
|
20851
21262
|
repository?: Maybe<DevAiRovoDevRepository>;
|
|
20852
21263
|
sessionStatus?: Maybe<DevAiRovoDevSessionStatus>;
|
|
@@ -21647,6 +22058,12 @@ export declare type DevOpsMetricsPerProjectPrCycleTimeMetricsArgs = {
|
|
|
21647
22058
|
filter: DevOpsMetricsPerProjectPrCycleTimeMetricsFilter;
|
|
21648
22059
|
first: Scalars['Int']['input'];
|
|
21649
22060
|
};
|
|
22061
|
+
export declare enum DevOpsMetricsComparisonOperator {
|
|
22062
|
+
EqualTo = "EQUAL_TO",
|
|
22063
|
+
GreaterThan = "GREATER_THAN",
|
|
22064
|
+
LessThan = "LESS_THAN",
|
|
22065
|
+
NotEqualTo = "NOT_EQUAL_TO"
|
|
22066
|
+
}
|
|
21650
22067
|
export declare type DevOpsMetricsCycleTime = {
|
|
21651
22068
|
__typename?: 'DevOpsMetricsCycleTime';
|
|
21652
22069
|
cycleTimeMetrics?: Maybe<Array<Maybe<DevOpsMetricsCycleTimeMetrics>>>;
|
|
@@ -21661,6 +22078,9 @@ export declare type DevOpsMetricsCycleTimeData = {
|
|
|
21661
22078
|
dateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
21662
22079
|
issuesShippedCount?: Maybe<Scalars['Int']['output']>;
|
|
21663
22080
|
};
|
|
22081
|
+
export declare type DevOpsMetricsCycleTimeInsight = {
|
|
22082
|
+
type: Scalars['String']['output'];
|
|
22083
|
+
};
|
|
21664
22084
|
export declare type DevOpsMetricsCycleTimeMean = DevOpsMetricsCycleTimeMetrics & {
|
|
21665
22085
|
__typename?: 'DevOpsMetricsCycleTimeMean';
|
|
21666
22086
|
aggregateData?: Maybe<Scalars['Long']['output']>;
|
|
@@ -21670,6 +22090,14 @@ export declare type DevOpsMetricsCycleTimeMetrics = {
|
|
|
21670
22090
|
aggregateData?: Maybe<Scalars['Long']['output']>;
|
|
21671
22091
|
data?: Maybe<Array<Maybe<DevOpsMetricsCycleTimeData>>>;
|
|
21672
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
|
+
};
|
|
21673
22101
|
export declare type DevOpsMetricsCycleTimePercentile = DevOpsMetricsCycleTimeMetrics & {
|
|
21674
22102
|
__typename?: 'DevOpsMetricsCycleTimePercentile';
|
|
21675
22103
|
aggregateData?: Maybe<Scalars['Long']['output']>;
|
|
@@ -21782,6 +22210,7 @@ export declare enum DevOpsMetricsPerPrCycleTimeBreakdownPhase {
|
|
|
21782
22210
|
}
|
|
21783
22211
|
export declare type DevOpsMetricsPerPrCycleTimeBreakdownPhaseMetrics = {
|
|
21784
22212
|
__typename?: 'DevOpsMetricsPerPRCycleTimeBreakdownPhaseMetrics';
|
|
22213
|
+
insights?: Maybe<Array<DevOpsMetricsCycleTimeInsight>>;
|
|
21785
22214
|
medianHistoricalPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
21786
22215
|
medianPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
21787
22216
|
phase?: Maybe<DevOpsMetricsPerPrCycleTimeBreakdownPhase>;
|
|
@@ -21831,6 +22260,16 @@ export declare type DevOpsMetricsRollupType = {
|
|
|
21831
22260
|
percentile?: InputMaybe<Scalars['Int']['input']>;
|
|
21832
22261
|
type: DevOpsMetricsRollupOption;
|
|
21833
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
|
+
};
|
|
21834
22273
|
export declare type DevOpsMutation = {
|
|
21835
22274
|
__typename?: 'DevOpsMutation';
|
|
21836
22275
|
_empty?: Maybe<Scalars['String']['output']>;
|
|
@@ -23498,7 +23937,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
23498
23937
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23499
23938
|
node?: Maybe<ExternalAssociation>;
|
|
23500
23939
|
};
|
|
23501
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
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;
|
|
23502
23941
|
export declare type ExternalAttachment = {
|
|
23503
23942
|
__typename?: 'ExternalAttachment';
|
|
23504
23943
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -23994,12 +24433,15 @@ export declare type ExternalEntities = {
|
|
|
23994
24433
|
softwareService?: Maybe<Array<Maybe<ExternalSoftwareService>>>;
|
|
23995
24434
|
space?: Maybe<Array<Maybe<ExternalSpace>>>;
|
|
23996
24435
|
test?: Maybe<Array<Maybe<ExternalTest>>>;
|
|
24436
|
+
testExecution?: Maybe<Array<Maybe<ExternalTestExecution>>>;
|
|
24437
|
+
testPlan?: Maybe<Array<Maybe<ExternalTestPlan>>>;
|
|
24438
|
+
testRun?: Maybe<Array<Maybe<ExternalTestRun>>>;
|
|
23997
24439
|
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
23998
24440
|
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
23999
24441
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
24000
24442
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
24001
24443
|
};
|
|
24002
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
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;
|
|
24003
24445
|
export declare type ExternalEnvironment = {
|
|
24004
24446
|
__typename?: 'ExternalEnvironment';
|
|
24005
24447
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -24416,6 +24858,28 @@ export declare type ExternalTest = Node & {
|
|
|
24416
24858
|
url?: Maybe<Scalars['String']['output']>;
|
|
24417
24859
|
version?: Maybe<Scalars['String']['output']>;
|
|
24418
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
|
+
};
|
|
24419
24883
|
export declare type ExternalTestInfo = {
|
|
24420
24884
|
__typename?: 'ExternalTestInfo';
|
|
24421
24885
|
numberFailed?: Maybe<Scalars['Int']['output']>;
|
|
@@ -24423,6 +24887,50 @@ export declare type ExternalTestInfo = {
|
|
|
24423
24887
|
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
24424
24888
|
totalNumber?: Maybe<Scalars['Int']['output']>;
|
|
24425
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
|
+
};
|
|
24426
24934
|
export declare type ExternalThumbnail = {
|
|
24427
24935
|
__typename?: 'ExternalThumbnail';
|
|
24428
24936
|
externalUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -30029,6 +30537,8 @@ export declare type GraphStore = {
|
|
|
30029
30537
|
parentIssueHasChildIssueRelationship?: Maybe<GraphStoreFullParentIssueHasChildIssueConnection>;
|
|
30030
30538
|
parentMessageHasChildMessage?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageConnection>;
|
|
30031
30539
|
parentMessageHasChildMessageInverse?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection>;
|
|
30540
|
+
parentTeamHasChildTeam?: Maybe<GraphStoreSimplifiedParentTeamHasChildTeamConnection>;
|
|
30541
|
+
parentTeamHasChildTeamInverse?: Maybe<GraphStoreSimplifiedParentTeamHasChildTeamInverseConnection>;
|
|
30032
30542
|
positionAllocatedToFocusArea?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection>;
|
|
30033
30543
|
positionAllocatedToFocusAreaInverse?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection>;
|
|
30034
30544
|
positionAssociatedExternalPosition?: Maybe<GraphStoreSimplifiedPositionAssociatedExternalPositionConnection>;
|
|
@@ -32690,6 +33200,20 @@ export declare type GraphStoreParentMessageHasChildMessageInverseArgs = {
|
|
|
32690
33200
|
id: Scalars['ID']['input'];
|
|
32691
33201
|
sort?: InputMaybe<GraphStoreParentMessageHasChildMessageSortInput>;
|
|
32692
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
|
+
};
|
|
32693
33217
|
export declare type GraphStorePositionAllocatedToFocusAreaArgs = {
|
|
32694
33218
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32695
33219
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37027,6 +37551,20 @@ export declare type GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderRe
|
|
|
37027
37551
|
to: Scalars['ID']['input'];
|
|
37028
37552
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
37029
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
|
+
};
|
|
37030
37568
|
export declare type GraphStoreCreateProjectAssociatedOpsgenieTeamInput = {
|
|
37031
37569
|
relationships: Array<GraphStoreCreateProjectAssociatedOpsgenieTeamRelationshipInput>;
|
|
37032
37570
|
};
|
|
@@ -37405,6 +37943,7 @@ export declare type GraphStoreCypherQueryV2BatchConnection = {
|
|
|
37405
37943
|
};
|
|
37406
37944
|
export declare type GraphStoreCypherQueryV2BatchEdge = {
|
|
37407
37945
|
__typename?: 'GraphStoreCypherQueryV2BatchEdge';
|
|
37946
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37408
37947
|
node: GraphStoreCypherQueryV2BatchNode;
|
|
37409
37948
|
};
|
|
37410
37949
|
export declare type GraphStoreCypherQueryV2BatchFloatObject = {
|
|
@@ -37460,6 +37999,7 @@ export declare type GraphStoreCypherQueryV2Connection = {
|
|
|
37460
37999
|
};
|
|
37461
38000
|
export declare type GraphStoreCypherQueryV2Edge = {
|
|
37462
38001
|
__typename?: 'GraphStoreCypherQueryV2Edge';
|
|
38002
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37463
38003
|
node: GraphStoreCypherQueryV2Node;
|
|
37464
38004
|
};
|
|
37465
38005
|
export declare type GraphStoreCypherQueryV2FloatObject = {
|
|
@@ -37614,6 +38154,19 @@ export declare type GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderRe
|
|
|
37614
38154
|
from: Scalars['ID']['input'];
|
|
37615
38155
|
to: Scalars['ID']['input'];
|
|
37616
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
|
+
};
|
|
37617
38170
|
export declare type GraphStoreDeleteProjectAssociatedOpsgenieTeamInput = {
|
|
37618
38171
|
relationships: Array<GraphStoreDeleteProjectAssociatedOpsgenieTeamRelationshipInput>;
|
|
37619
38172
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -41753,6 +42306,7 @@ export declare type GraphStoreMutation = {
|
|
|
41753
42306
|
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
41754
42307
|
createLoomVideoHasConfluencePage?: Maybe<GraphStoreCreateLoomVideoHasConfluencePagePayload>;
|
|
41755
42308
|
createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
42309
|
+
createParentTeamHasChildTeam?: Maybe<GraphStoreCreateParentTeamHasChildTeamPayload>;
|
|
41756
42310
|
createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
|
|
41757
42311
|
createProjectAssociatedToSecurityContainer?: Maybe<GraphStoreCreateProjectAssociatedToSecurityContainerPayload>;
|
|
41758
42312
|
createProjectDisassociatedRepo?: Maybe<GraphStoreCreateProjectDisassociatedRepoPayload>;
|
|
@@ -41779,6 +42333,7 @@ export declare type GraphStoreMutation = {
|
|
|
41779
42333
|
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
41780
42334
|
deleteLoomVideoHasConfluencePage?: Maybe<GraphStoreDeleteLoomVideoHasConfluencePagePayload>;
|
|
41781
42335
|
deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
42336
|
+
deleteParentTeamHasChildTeam?: Maybe<GraphStoreDeleteParentTeamHasChildTeamPayload>;
|
|
41782
42337
|
deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
|
|
41783
42338
|
deleteProjectAssociatedToSecurityContainer?: Maybe<GraphStoreDeleteProjectAssociatedToSecurityContainerPayload>;
|
|
41784
42339
|
deleteProjectDisassociatedRepo?: Maybe<GraphStoreDeleteProjectDisassociatedRepoPayload>;
|
|
@@ -41824,6 +42379,9 @@ export declare type GraphStoreMutationCreateLoomVideoHasConfluencePageArgs = {
|
|
|
41824
42379
|
export declare type GraphStoreMutationCreateMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
41825
42380
|
input?: InputMaybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
41826
42381
|
};
|
|
42382
|
+
export declare type GraphStoreMutationCreateParentTeamHasChildTeamArgs = {
|
|
42383
|
+
input?: InputMaybe<GraphStoreCreateParentTeamHasChildTeamInput>;
|
|
42384
|
+
};
|
|
41827
42385
|
export declare type GraphStoreMutationCreateProjectAssociatedOpsgenieTeamArgs = {
|
|
41828
42386
|
input?: InputMaybe<GraphStoreCreateProjectAssociatedOpsgenieTeamInput>;
|
|
41829
42387
|
};
|
|
@@ -41902,6 +42460,9 @@ export declare type GraphStoreMutationDeleteLoomVideoHasConfluencePageArgs = {
|
|
|
41902
42460
|
export declare type GraphStoreMutationDeleteMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
41903
42461
|
input?: InputMaybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
41904
42462
|
};
|
|
42463
|
+
export declare type GraphStoreMutationDeleteParentTeamHasChildTeamArgs = {
|
|
42464
|
+
input?: InputMaybe<GraphStoreDeleteParentTeamHasChildTeamInput>;
|
|
42465
|
+
};
|
|
41905
42466
|
export declare type GraphStoreMutationDeleteProjectAssociatedOpsgenieTeamArgs = {
|
|
41906
42467
|
input?: InputMaybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamInput>;
|
|
41907
42468
|
};
|
|
@@ -41974,6 +42535,12 @@ export declare type GraphStoreParentIssueHasChildIssueSortInput = {
|
|
|
41974
42535
|
export declare type GraphStoreParentMessageHasChildMessageSortInput = {
|
|
41975
42536
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41976
42537
|
};
|
|
42538
|
+
export declare type GraphStoreParentTeamHasChildTeamSortInput = {
|
|
42539
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
42540
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
42541
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42542
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
42543
|
+
};
|
|
41977
42544
|
export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
41978
42545
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41979
42546
|
};
|
|
@@ -45867,6 +46434,38 @@ export declare type GraphStoreSimplifiedParentMessageHasChildMessageInverseEdge
|
|
|
45867
46434
|
};
|
|
45868
46435
|
export declare type GraphStoreSimplifiedParentMessageHasChildMessageInverseUnion = ExternalMessage;
|
|
45869
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;
|
|
45870
46469
|
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection = HasPageInfo & {
|
|
45871
46470
|
__typename?: 'GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection';
|
|
45872
46471
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaEdge>>>;
|
|
@@ -51888,6 +52487,18 @@ export declare type GrowthUnifiedProfileConfluenceUserActivityContext = {
|
|
|
51888
52487
|
__typename?: 'GrowthUnifiedProfileConfluenceUserActivityContext';
|
|
51889
52488
|
r28PageDwells?: Maybe<Scalars['Int']['output']>;
|
|
51890
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
|
+
};
|
|
51891
52502
|
export declare type GrowthUnifiedProfileCreateOrgProfileInput = {
|
|
51892
52503
|
orgId: Scalars['ID']['input'];
|
|
51893
52504
|
twcOnboardingContext?: InputMaybe<Array<InputMaybe<GrowthUnifiedProfileTwcOnboardingContextInput>>>;
|
|
@@ -51915,6 +52526,23 @@ export declare enum GrowthUnifiedProfileEnterpriseAccountStatus {
|
|
|
51915
52526
|
Platimun = "PLATIMUN",
|
|
51916
52527
|
Silver = "SILVER"
|
|
51917
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
|
+
};
|
|
51918
52546
|
export declare enum GrowthUnifiedProfileEntityType {
|
|
51919
52547
|
AjsAnonymousUser = "AJS_ANONYMOUS_USER",
|
|
51920
52548
|
AtlassianAccount = "ATLASSIAN_ACCOUNT",
|
|
@@ -52214,6 +52842,7 @@ export declare enum GrowthUnifiedProfileTeamType {
|
|
|
52214
52842
|
}
|
|
52215
52843
|
export declare type GrowthUnifiedProfileTrialContext = {
|
|
52216
52844
|
__typename?: 'GrowthUnifiedProfileTrialContext';
|
|
52845
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
52217
52846
|
paymentDetailsOnFile?: Maybe<Scalars['Boolean']['output']>;
|
|
52218
52847
|
trialEndTimeStamp?: Maybe<Scalars['String']['output']>;
|
|
52219
52848
|
trialTrigger?: Maybe<GrowthUnifiedProfileTrialTrigger>;
|
|
@@ -52535,6 +53164,7 @@ export declare type HelpCenter = Node & {
|
|
|
52535
53164
|
pages?: Maybe<Array<Maybe<HelpCenterPage>>>;
|
|
52536
53165
|
permissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
|
|
52537
53166
|
portals?: Maybe<HelpCenterPortals>;
|
|
53167
|
+
productEntityImages?: Maybe<Array<HelpCenterProductEntityImages>>;
|
|
52538
53168
|
projectMappingData?: Maybe<HelpCenterProjectMappingData>;
|
|
52539
53169
|
siteDefaultLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
52540
53170
|
slug?: Maybe<Scalars['String']['output']>;
|
|
@@ -52551,6 +53181,9 @@ export declare type HelpCenterPortalsArgs = {
|
|
|
52551
53181
|
portalsFilter?: InputMaybe<HelpCenterPortalFilter>;
|
|
52552
53182
|
sortOrder?: InputMaybe<HelpCenterPortalsSortOrder>;
|
|
52553
53183
|
};
|
|
53184
|
+
export declare type HelpCenterProductEntityImagesArgs = {
|
|
53185
|
+
filter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
53186
|
+
};
|
|
52554
53187
|
export declare enum HelpCenterAccessControlType {
|
|
52555
53188
|
External = "EXTERNAL",
|
|
52556
53189
|
GroupBased = "GROUP_BASED",
|
|
@@ -52756,7 +53389,8 @@ export declare type HelpCenterMediaConfig = {
|
|
|
52756
53389
|
};
|
|
52757
53390
|
export declare enum HelpCenterMediaConfigOperationType {
|
|
52758
53391
|
BannerUpload = "BANNER_UPLOAD",
|
|
52759
|
-
LogoUpload = "LOGO_UPLOAD"
|
|
53392
|
+
LogoUpload = "LOGO_UPLOAD",
|
|
53393
|
+
Read = "READ"
|
|
52760
53394
|
}
|
|
52761
53395
|
export declare type HelpCenterMutationApi = {
|
|
52762
53396
|
__typename?: 'HelpCenterMutationApi';
|
|
@@ -52986,6 +53620,21 @@ export declare enum HelpCenterPortalsType {
|
|
|
52986
53620
|
Hidden = "HIDDEN",
|
|
52987
53621
|
Visible = "VISIBLE"
|
|
52988
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
|
+
}
|
|
52989
53638
|
export declare type HelpCenterProjectMappingData = {
|
|
52990
53639
|
__typename?: 'HelpCenterProjectMappingData';
|
|
52991
53640
|
projectMapping?: Maybe<Array<HelpCenterProjectMappingEntry>>;
|
|
@@ -53030,6 +53679,7 @@ export declare type HelpCenterQueryApi = {
|
|
|
53030
53679
|
helpCentersByProjectId?: Maybe<HelpCenterQueryResultConnection>;
|
|
53031
53680
|
helpCentersConfig?: Maybe<HelpCentersConfigResult>;
|
|
53032
53681
|
helpCentersList?: Maybe<HelpCentersListQueryResult>;
|
|
53682
|
+
hubMediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
53033
53683
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
53034
53684
|
};
|
|
53035
53685
|
export declare type HelpCenterQueryApiHelpCenterByHoistedProjectIdArgs = {
|
|
@@ -53090,6 +53740,10 @@ export declare type HelpCenterQueryApiHelpCentersListArgs = {
|
|
|
53090
53740
|
sortOrder: HelpCenterSortOrder;
|
|
53091
53741
|
workspaceAri: Scalars['ID']['input'];
|
|
53092
53742
|
};
|
|
53743
|
+
export declare type HelpCenterQueryApiHubMediaConfigArgs = {
|
|
53744
|
+
ari: Scalars['ID']['input'];
|
|
53745
|
+
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
53746
|
+
};
|
|
53093
53747
|
export declare type HelpCenterQueryApiMediaConfigArgs = {
|
|
53094
53748
|
helpCenterAri: Scalars['ID']['input'];
|
|
53095
53749
|
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
@@ -53201,6 +53855,7 @@ export declare type HelpCenterUpdateInput = {
|
|
|
53201
53855
|
helpCenterBranding?: InputMaybe<HelpCenterBrandingInput>;
|
|
53202
53856
|
homePageLayout?: InputMaybe<HelpCenterHomePageLayoutInput>;
|
|
53203
53857
|
name?: InputMaybe<HelpCenterNameInput>;
|
|
53858
|
+
productEntityImages?: InputMaybe<Array<HelpCenterProductEntityImageInput>>;
|
|
53204
53859
|
slug?: InputMaybe<Scalars['String']['input']>;
|
|
53205
53860
|
virtualAgentEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53206
53861
|
};
|
|
@@ -58435,6 +59090,13 @@ export declare type JiraCreateGlobalCustomFieldPayload = Payload & {
|
|
|
58435
59090
|
field?: Maybe<JiraIssueFieldConfig>;
|
|
58436
59091
|
success: Scalars['Boolean']['output'];
|
|
58437
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
|
+
};
|
|
58438
59100
|
export declare type JiraCreateIssueSearchFormattingRuleInput = {
|
|
58439
59101
|
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
58440
59102
|
expression: JiraFormattingRuleExpressionInput;
|
|
@@ -58442,11 +59104,11 @@ export declare type JiraCreateIssueSearchFormattingRuleInput = {
|
|
|
58442
59104
|
formattingColor?: InputMaybe<JiraColorInput>;
|
|
58443
59105
|
viewId: Scalars['ID']['input'];
|
|
58444
59106
|
};
|
|
58445
|
-
export declare type JiraCreateIssueSearchFormattingRulePayload = {
|
|
59107
|
+
export declare type JiraCreateIssueSearchFormattingRulePayload = Payload & {
|
|
58446
59108
|
__typename?: 'JiraCreateIssueSearchFormattingRulePayload';
|
|
58447
|
-
createdRule?: Maybe<JiraFormattingRule>;
|
|
58448
59109
|
errors?: Maybe<Array<MutationError>>;
|
|
58449
59110
|
success: Scalars['Boolean']['output'];
|
|
59111
|
+
view?: Maybe<JiraView>;
|
|
58450
59112
|
};
|
|
58451
59113
|
export declare type JiraCreateIssueTypeInput = {
|
|
58452
59114
|
avatarId: Scalars['String']['input'];
|
|
@@ -58965,11 +59627,11 @@ export declare type JiraDeleteIssueSearchFormattingRuleInput = {
|
|
|
58965
59627
|
ruleId: Scalars['ID']['input'];
|
|
58966
59628
|
viewId: Scalars['ID']['input'];
|
|
58967
59629
|
};
|
|
58968
|
-
export declare type JiraDeleteIssueSearchFormattingRulePayload = {
|
|
59630
|
+
export declare type JiraDeleteIssueSearchFormattingRulePayload = Payload & {
|
|
58969
59631
|
__typename?: 'JiraDeleteIssueSearchFormattingRulePayload';
|
|
58970
|
-
deletedRuleId?: Maybe<Scalars['ID']['output']>;
|
|
58971
59632
|
errors?: Maybe<Array<MutationError>>;
|
|
58972
59633
|
success: Scalars['Boolean']['output'];
|
|
59634
|
+
view?: Maybe<JiraView>;
|
|
58973
59635
|
};
|
|
58974
59636
|
export declare type JiraDeleteIssueTypeInput = {
|
|
58975
59637
|
cloudId: Scalars['ID']['input'];
|
|
@@ -59445,6 +60107,18 @@ export declare type JiraDismissInContextConfigPromptPayload = Payload & {
|
|
|
59445
60107
|
errors?: Maybe<Array<MutationError>>;
|
|
59446
60108
|
success: Scalars['Boolean']['output'];
|
|
59447
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
|
+
};
|
|
59448
60122
|
export declare type JiraDuplicateJourneyConfigurationInput = {
|
|
59449
60123
|
id: Scalars['ID']['input'];
|
|
59450
60124
|
};
|
|
@@ -59869,6 +60543,15 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
59869
60543
|
Allow = "ALLOW",
|
|
59870
60544
|
Exclude = "EXCLUDE"
|
|
59871
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
|
+
};
|
|
59872
60555
|
export declare type JiraFieldSchemeAssociatedField = {
|
|
59873
60556
|
__typename?: 'JiraFieldSchemeAssociatedField';
|
|
59874
60557
|
field?: Maybe<JiraField>;
|
|
@@ -59886,19 +60569,29 @@ export declare type JiraFieldSchemeAssociatedFieldsEdge = {
|
|
|
59886
60569
|
node?: Maybe<JiraFieldSchemeAssociatedField>;
|
|
59887
60570
|
};
|
|
59888
60571
|
export declare type JiraFieldSchemeAssociatedFieldsInput = {
|
|
59889
|
-
|
|
60572
|
+
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
59890
60573
|
schemeId: Scalars['ID']['input'];
|
|
59891
60574
|
};
|
|
59892
60575
|
export declare type JiraFieldSchemeAvailableFieldsInput = {
|
|
59893
|
-
|
|
60576
|
+
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
59894
60577
|
schemeId: Scalars['ID']['input'];
|
|
59895
60578
|
};
|
|
59896
60579
|
export declare type JiraFieldSchemePayload = Payload & {
|
|
59897
60580
|
__typename?: 'JiraFieldSchemePayload';
|
|
59898
60581
|
errors?: Maybe<Array<MutationError>>;
|
|
59899
|
-
fieldScheme?: Maybe<
|
|
60582
|
+
fieldScheme?: Maybe<JiraFieldScheme>;
|
|
59900
60583
|
success: Scalars['Boolean']['output'];
|
|
59901
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
|
+
};
|
|
59902
60595
|
export declare type JiraFieldSchemesInput = {
|
|
59903
60596
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
59904
60597
|
};
|
|
@@ -60121,6 +60814,10 @@ export declare type JiraFlagField = JiraIssueField & JiraIssueFieldConfiguration
|
|
|
60121
60814
|
type: Scalars['String']['output'];
|
|
60122
60815
|
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
60123
60816
|
};
|
|
60817
|
+
export declare enum JiraFlagOperations {
|
|
60818
|
+
Add = "ADD",
|
|
60819
|
+
Remove = "REMOVE"
|
|
60820
|
+
}
|
|
60124
60821
|
export declare type JiraForgeAppEgressDeclaration = {
|
|
60125
60822
|
__typename?: 'JiraForgeAppEgressDeclaration';
|
|
60126
60823
|
addresses?: Maybe<Array<Scalars['String']['output']>>;
|
|
@@ -61080,6 +61777,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
61080
61777
|
updatedField?: Maybe<JiraDateTimePickerField>;
|
|
61081
61778
|
votesField?: Maybe<JiraVotesField>;
|
|
61082
61779
|
watchesField?: Maybe<JiraWatchesField>;
|
|
61780
|
+
webLinks?: Maybe<JiraWebRemoteIssueLinkConnection>;
|
|
61083
61781
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
61084
61782
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
61085
61783
|
};
|
|
@@ -61266,6 +61964,12 @@ export declare type JiraIssueStartDateViewFieldArgs = {
|
|
|
61266
61964
|
export declare type JiraIssueSuggestFieldValuesArgs = {
|
|
61267
61965
|
filterProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
61268
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
|
+
};
|
|
61269
61973
|
export declare type JiraIssueWorklogsArgs = {
|
|
61270
61974
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61271
61975
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -62196,6 +62900,10 @@ export declare type JiraIssuePullRequests = {
|
|
|
62196
62900
|
export declare type JiraIssuePullRequestsInput = {
|
|
62197
62901
|
filterLegacy?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62198
62902
|
};
|
|
62903
|
+
export declare type JiraIssueRankInput = {
|
|
62904
|
+
afterIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
62905
|
+
beforeIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
62906
|
+
};
|
|
62199
62907
|
export declare type JiraIssueRemoteIssueLink = {
|
|
62200
62908
|
__typename?: 'JiraIssueRemoteIssueLink';
|
|
62201
62909
|
href?: Maybe<Scalars['String']['output']>;
|
|
@@ -63180,6 +63888,9 @@ export declare enum JiraJqlAutocompleteType {
|
|
|
63180
63888
|
User = "USER",
|
|
63181
63889
|
Version = "VERSION"
|
|
63182
63890
|
}
|
|
63891
|
+
export declare type JiraJqlBacklogInput = {
|
|
63892
|
+
boardId: Scalars['Long']['input'];
|
|
63893
|
+
};
|
|
63183
63894
|
export declare type JiraJqlBoardInput = {
|
|
63184
63895
|
boardId: Scalars['Long']['input'];
|
|
63185
63896
|
swimlaneStrategy?: InputMaybe<JiraBoardSwimlaneStrategy>;
|
|
@@ -63611,6 +64322,7 @@ export declare type JiraJqlResolutionFieldValue = JiraJqlFieldValue & {
|
|
|
63611
64322
|
resolution?: Maybe<JiraResolution>;
|
|
63612
64323
|
};
|
|
63613
64324
|
export declare type JiraJqlScopeInput = {
|
|
64325
|
+
backlog?: InputMaybe<JiraJqlBacklogInput>;
|
|
63614
64326
|
board?: InputMaybe<JiraJqlBoardInput>;
|
|
63615
64327
|
plan?: InputMaybe<JiraJqlPlanInput>;
|
|
63616
64328
|
};
|
|
@@ -64447,6 +65159,7 @@ export declare type JiraMutation = {
|
|
|
64447
65159
|
updateDateTimeField?: Maybe<JiraDateTimeFieldPayload>;
|
|
64448
65160
|
updateEntitlementField?: Maybe<JiraServiceManagementEntitlementFieldPayload>;
|
|
64449
65161
|
updateFieldSetsView?: Maybe<JiraFieldSetsViewPayload>;
|
|
65162
|
+
updateFlagField?: Maybe<JiraUpdateFlagFieldPayload>;
|
|
64450
65163
|
updateForgeObjectField?: Maybe<JiraForgeObjectFieldPayload>;
|
|
64451
65164
|
updateFormattingRule?: Maybe<JiraUpdateFormattingRulePayload>;
|
|
64452
65165
|
updateGlobalNotificationOptions?: Maybe<JiraUpdateNotificationOptionsPayload>;
|
|
@@ -64525,6 +65238,7 @@ export declare type JiraMutation = {
|
|
|
64525
65238
|
updateVersionWarningConfig?: Maybe<JiraUpdateVersionWarningConfigPayload>;
|
|
64526
65239
|
updateVotesField?: Maybe<JiraVotesFieldPayload>;
|
|
64527
65240
|
updateWatchesField?: Maybe<JiraWatchesFieldPayload>;
|
|
65241
|
+
updateWorklog?: Maybe<JiraUpdateWorklogPayload>;
|
|
64528
65242
|
userPreferences?: Maybe<JiraUserPreferencesMutation>;
|
|
64529
65243
|
};
|
|
64530
65244
|
export declare type JiraMutationAddFieldsToProjectArgs = {
|
|
@@ -64977,6 +65691,9 @@ export declare type JiraMutationUpdateFieldSetsViewArgs = {
|
|
|
64977
65691
|
id: Scalars['ID']['input'];
|
|
64978
65692
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
64979
65693
|
};
|
|
65694
|
+
export declare type JiraMutationUpdateFlagFieldArgs = {
|
|
65695
|
+
input: JiraUpdateFlagFieldInput;
|
|
65696
|
+
};
|
|
64980
65697
|
export declare type JiraMutationUpdateForgeObjectFieldArgs = {
|
|
64981
65698
|
input: JiraUpdateForgeObjectFieldInput;
|
|
64982
65699
|
};
|
|
@@ -65230,6 +65947,9 @@ export declare type JiraMutationUpdateVotesFieldArgs = {
|
|
|
65230
65947
|
export declare type JiraMutationUpdateWatchesFieldArgs = {
|
|
65231
65948
|
input: JiraUpdateWatchesFieldInput;
|
|
65232
65949
|
};
|
|
65950
|
+
export declare type JiraMutationUpdateWorklogArgs = {
|
|
65951
|
+
input: JiraUpdateWorklogInput;
|
|
65952
|
+
};
|
|
65233
65953
|
export declare type JiraMutationUserPreferencesArgs = {
|
|
65234
65954
|
cloudId: Scalars['ID']['input'];
|
|
65235
65955
|
};
|
|
@@ -65408,7 +66128,6 @@ export declare type JiraNotificationPreferences = {
|
|
|
65408
66128
|
issueUpdated?: Maybe<JiraNotificationPreference>;
|
|
65409
66129
|
mentionsCombined?: Maybe<JiraNotificationPreference>;
|
|
65410
66130
|
miscellaneousIssueEventCombined?: Maybe<JiraNotificationPreference>;
|
|
65411
|
-
projectInviterNotification?: Maybe<JiraNotificationPreference>;
|
|
65412
66131
|
worklogCombined?: Maybe<JiraNotificationPreference>;
|
|
65413
66132
|
};
|
|
65414
66133
|
export declare type JiraNotificationProjectPreferenceConnection = HasPageInfo & HasTotal & {
|
|
@@ -65435,7 +66154,6 @@ export declare enum JiraNotificationType {
|
|
|
65435
66154
|
IssueUpdated = "ISSUE_UPDATED",
|
|
65436
66155
|
MentionsCombined = "MENTIONS_COMBINED",
|
|
65437
66156
|
MiscellaneousIssueEventCombined = "MISCELLANEOUS_ISSUE_EVENT_COMBINED",
|
|
65438
|
-
ProjectInviterNotification = "PROJECT_INVITER_NOTIFICATION",
|
|
65439
66157
|
WorklogCombined = "WORKLOG_COMBINED"
|
|
65440
66158
|
}
|
|
65441
66159
|
export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
@@ -65899,6 +66617,17 @@ export declare type JiraOrderFormattingRulePayloadRulesArgs = {
|
|
|
65899
66617
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65900
66618
|
scope: Scalars['ID']['input'];
|
|
65901
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
|
+
};
|
|
65902
66631
|
export declare enum JiraOrganizationApprovalLocation {
|
|
65903
66632
|
DuringInstallationFlow = "DURING_INSTALLATION_FLOW",
|
|
65904
66633
|
DuringProvisioning = "DURING_PROVISIONING",
|
|
@@ -66671,6 +67400,13 @@ export declare type JiraPriorityFieldPayload = Payload & {
|
|
|
66671
67400
|
export declare type JiraPriorityInput = {
|
|
66672
67401
|
priorityId: Scalars['ID']['input'];
|
|
66673
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
|
+
};
|
|
66674
67410
|
export declare enum JiraProductEnum {
|
|
66675
67411
|
JiraProductDiscovery = "JIRA_PRODUCT_DISCOVERY",
|
|
66676
67412
|
JiraServiceManagement = "JIRA_SERVICE_MANAGEMENT",
|
|
@@ -69253,6 +69989,8 @@ export declare type JiraReport = {
|
|
|
69253
69989
|
description?: Maybe<Scalars['String']['output']>;
|
|
69254
69990
|
id: Scalars['ID']['output'];
|
|
69255
69991
|
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
69992
|
+
isNotApplicableDesc?: Maybe<Scalars['String']['output']>;
|
|
69993
|
+
isNotApplicableReason?: Maybe<Scalars['String']['output']>;
|
|
69256
69994
|
key?: Maybe<Scalars['String']['output']>;
|
|
69257
69995
|
name?: Maybe<Scalars['String']['output']>;
|
|
69258
69996
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -72037,6 +72775,7 @@ export declare type JiraSubscription = {
|
|
|
72037
72775
|
onIssueUpdatedByProjectsNoEnrichment?: Maybe<JiraIssueUpdatedStreamHubPayload>;
|
|
72038
72776
|
onJirtBoardIssueSubscription?: Maybe<JiraJirtBoardScoreIssueEventPayload>;
|
|
72039
72777
|
onJirtIssueSubscription?: Maybe<JiraJirtEventPayload>;
|
|
72778
|
+
onJpdIssueSubscription?: Maybe<JiraProductDiscoveryIssueEventPayload>;
|
|
72040
72779
|
onJwmFieldMutation?: Maybe<JiraJwmField>;
|
|
72041
72780
|
onJwmIssueCreatedByProject?: Maybe<JiraIssueCreatedStreamHubPayload>;
|
|
72042
72781
|
onJwmIssueDeletedByProject?: Maybe<JiraIssueDeletedStreamHubPayload>;
|
|
@@ -72131,6 +72870,12 @@ export declare type JiraSubscriptionOnJirtIssueSubscriptionArgs = {
|
|
|
72131
72870
|
events: Array<Scalars['String']['input']>;
|
|
72132
72871
|
projectIds: Array<Scalars['String']['input']>;
|
|
72133
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
|
+
};
|
|
72134
72879
|
export declare type JiraSubscriptionOnJwmFieldMutationArgs = {
|
|
72135
72880
|
siteId: Scalars['ID']['input'];
|
|
72136
72881
|
};
|
|
@@ -72705,6 +73450,25 @@ export declare type JiraUpdateFieldSetPreferencesInput = {
|
|
|
72705
73450
|
isFrozen?: InputMaybe<Scalars['Boolean']['input']>;
|
|
72706
73451
|
width?: InputMaybe<Scalars['Int']['input']>;
|
|
72707
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
|
+
};
|
|
72708
73472
|
export declare type JiraUpdateForgeMultipleGroupPickerFieldInput = {
|
|
72709
73473
|
id: Scalars['ID']['input'];
|
|
72710
73474
|
operations: Array<JiraForgeMultipleGroupPickerFieldOperationInput>;
|
|
@@ -72774,16 +73538,16 @@ export declare type JiraUpdateIssueLinkRelationshipTypeFieldPayload = Payload &
|
|
|
72774
73538
|
};
|
|
72775
73539
|
export declare type JiraUpdateIssueSearchFormattingRuleInput = {
|
|
72776
73540
|
expression?: InputMaybe<JiraFormattingRuleExpressionInput>;
|
|
72777
|
-
|
|
73541
|
+
formattingArea?: InputMaybe<JiraFormattingArea>;
|
|
72778
73542
|
formattingColor?: InputMaybe<JiraColorInput>;
|
|
72779
73543
|
ruleId: Scalars['ID']['input'];
|
|
72780
73544
|
viewId: Scalars['ID']['input'];
|
|
72781
73545
|
};
|
|
72782
|
-
export declare type JiraUpdateIssueSearchFormattingRulePayload = {
|
|
73546
|
+
export declare type JiraUpdateIssueSearchFormattingRulePayload = Payload & {
|
|
72783
73547
|
__typename?: 'JiraUpdateIssueSearchFormattingRulePayload';
|
|
72784
73548
|
errors?: Maybe<Array<MutationError>>;
|
|
72785
73549
|
success: Scalars['Boolean']['output'];
|
|
72786
|
-
|
|
73550
|
+
view?: Maybe<JiraView>;
|
|
72787
73551
|
};
|
|
72788
73552
|
export declare type JiraUpdateIssueTransitionInput = {
|
|
72789
73553
|
comment?: InputMaybe<JiraIssueTransitionCommentInput>;
|
|
@@ -73125,6 +73889,21 @@ export declare type JiraUpdateWorklogFieldInputForIssueTransitions = {
|
|
|
73125
73889
|
id: Scalars['ID']['input'];
|
|
73126
73890
|
operation: JiraWorklogFieldOperationInputForIssueTransitions;
|
|
73127
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
|
+
};
|
|
73128
73907
|
export declare type JiraUpsertIssueTypePayload = Payload & {
|
|
73129
73908
|
__typename?: 'JiraUpsertIssueTypePayload';
|
|
73130
73909
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -73867,6 +74646,7 @@ export declare type JiraVersionUpdateApproverDescriptionPayload = Payload & {
|
|
|
73867
74646
|
};
|
|
73868
74647
|
export declare type JiraVersionUpdateApproverStatusInput = {
|
|
73869
74648
|
approverId: Scalars['ID']['input'];
|
|
74649
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
73870
74650
|
status?: InputMaybe<JiraVersionApproverStatus>;
|
|
73871
74651
|
};
|
|
73872
74652
|
export declare type JiraVersionUpdateApproverStatusPayload = Payload & {
|
|
@@ -74036,12 +74816,27 @@ export declare enum JiraWatchesOperations {
|
|
|
74036
74816
|
}
|
|
74037
74817
|
export declare type JiraWebRemoteIssueLink = {
|
|
74038
74818
|
__typename?: 'JiraWebRemoteIssueLink';
|
|
74819
|
+
applicationName?: Maybe<Scalars['String']['output']>;
|
|
74820
|
+
applicationType?: Maybe<Scalars['String']['output']>;
|
|
74039
74821
|
href?: Maybe<Scalars['String']['output']>;
|
|
74040
74822
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
74041
74823
|
id: Scalars['ID']['output'];
|
|
74824
|
+
relationship?: Maybe<Scalars['String']['output']>;
|
|
74825
|
+
resolved?: Maybe<Scalars['Boolean']['output']>;
|
|
74042
74826
|
summary?: Maybe<Scalars['String']['output']>;
|
|
74043
74827
|
title?: Maybe<Scalars['String']['output']>;
|
|
74044
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
|
+
};
|
|
74045
74840
|
export declare type JiraWorkCategory = {
|
|
74046
74841
|
__typename?: 'JiraWorkCategory';
|
|
74047
74842
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -77688,7 +78483,9 @@ export declare type MarketplaceConsoleEdition = {
|
|
|
77688
78483
|
__typename?: 'MarketplaceConsoleEdition';
|
|
77689
78484
|
features: Array<MarketplaceConsoleFeature>;
|
|
77690
78485
|
id: Scalars['ID']['output'];
|
|
78486
|
+
isDecoupled?: Maybe<Scalars['Boolean']['output']>;
|
|
77691
78487
|
isDefault: Scalars['Boolean']['output'];
|
|
78488
|
+
parentProduct?: Maybe<Scalars['String']['output']>;
|
|
77692
78489
|
pricingPlan: MarketplaceConsolePricingPlan;
|
|
77693
78490
|
type: MarketplaceConsoleEditionType;
|
|
77694
78491
|
};
|
|
@@ -77698,7 +78495,9 @@ export declare type MarketplaceConsoleEditionDetailsInput = {
|
|
|
77698
78495
|
export declare type MarketplaceConsoleEditionInput = {
|
|
77699
78496
|
features: Array<MarketplaceConsoleFeatureInput>;
|
|
77700
78497
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
78498
|
+
isDecoupled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77701
78499
|
isDefault: Scalars['Boolean']['input'];
|
|
78500
|
+
parentProduct?: InputMaybe<Scalars['String']['input']>;
|
|
77702
78501
|
pricingPlan: MarketplaceConsolePricingPlanInput;
|
|
77703
78502
|
type: MarketplaceConsoleEditionType;
|
|
77704
78503
|
};
|
|
@@ -78202,6 +79001,7 @@ export declare type MarketplaceConsolePricingPlanInput = {
|
|
|
78202
79001
|
tieredPricing: Array<MarketplaceConsolePricingItemInput>;
|
|
78203
79002
|
};
|
|
78204
79003
|
export declare enum MarketplaceConsolePricingPlanStatus {
|
|
79004
|
+
AtNotice = "AT_NOTICE",
|
|
78205
79005
|
Draft = "DRAFT",
|
|
78206
79006
|
Live = "LIVE",
|
|
78207
79007
|
Pending = "PENDING"
|
|
@@ -79768,6 +80568,7 @@ export declare type MercuryChangeProposalImpact = {
|
|
|
79768
80568
|
};
|
|
79769
80569
|
export declare type MercuryChangeProposalPositionDetails = {
|
|
79770
80570
|
__typename?: 'MercuryChangeProposalPositionDetails';
|
|
80571
|
+
positionsImpacted?: Maybe<Scalars['Int']['output']>;
|
|
79771
80572
|
positionsMoved?: Maybe<Scalars['Int']['output']>;
|
|
79772
80573
|
positionsRequested?: Maybe<Scalars['Int']['output']>;
|
|
79773
80574
|
};
|
|
@@ -79808,12 +80609,15 @@ export declare type MercuryChangeProposalSummaryByStatus = {
|
|
|
79808
80609
|
export declare type MercuryChangeProposalSummaryForStrategicEvent = {
|
|
79809
80610
|
__typename?: 'MercuryChangeProposalSummaryForStrategicEvent';
|
|
79810
80611
|
changeProposal?: Maybe<MercuryChangeProposalSummaryByStatus>;
|
|
80612
|
+
impactedPositions?: Maybe<MercuryImpactedPositionSummaryByChangeProposalStatus>;
|
|
80613
|
+
movedPositions?: Maybe<MercuryMovedPositionSummaryByChangeProposalStatus>;
|
|
79811
80614
|
newFunds?: Maybe<MercuryNewFundSummaryByChangeProposalStatus>;
|
|
79812
80615
|
newPositions?: Maybe<MercuryNewPositionSummaryByChangeProposalStatus>;
|
|
79813
80616
|
strategicEventId: Scalars['ID']['output'];
|
|
79814
80617
|
};
|
|
79815
80618
|
export declare type MercuryChangeProposalUpdate = {
|
|
79816
80619
|
__typename?: 'MercuryChangeProposalUpdate';
|
|
80620
|
+
event?: Maybe<Scalars['String']['output']>;
|
|
79817
80621
|
id: Scalars['ID']['output'];
|
|
79818
80622
|
updatedFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
79819
80623
|
};
|
|
@@ -80567,6 +81371,11 @@ export declare type MercuryHumanResourcesAllocation = {
|
|
|
80567
81371
|
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
80568
81372
|
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
80569
81373
|
};
|
|
81374
|
+
export declare type MercuryImpactedPositionSummaryByChangeProposalStatus = {
|
|
81375
|
+
__typename?: 'MercuryImpactedPositionSummaryByChangeProposalStatus';
|
|
81376
|
+
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
81377
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
81378
|
+
};
|
|
80570
81379
|
export declare type MercuryJiraAlignProjectType = {
|
|
80571
81380
|
__typename?: 'MercuryJiraAlignProjectType';
|
|
80572
81381
|
displayName: Scalars['String']['output'];
|
|
@@ -80690,6 +81499,11 @@ export declare type MercuryMovePositionsChangeInput = {
|
|
|
80690
81499
|
sourceFocusAreaId: Scalars['ID']['input'];
|
|
80691
81500
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
80692
81501
|
};
|
|
81502
|
+
export declare type MercuryMovedPositionSummaryByChangeProposalStatus = {
|
|
81503
|
+
__typename?: 'MercuryMovedPositionSummaryByChangeProposalStatus';
|
|
81504
|
+
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
81505
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
81506
|
+
};
|
|
80693
81507
|
export declare type MercuryMutationApi = {
|
|
80694
81508
|
__typename?: 'MercuryMutationApi';
|
|
80695
81509
|
addWatcherToFocusArea?: Maybe<MercuryAddWatcherToFocusAreaPayload>;
|
|
@@ -80849,18 +81663,6 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
|
|
|
80849
81663
|
countByStatus?: Maybe<Array<Maybe<MercuryNewPositionCountByStatus>>>;
|
|
80850
81664
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
80851
81665
|
};
|
|
80852
|
-
export declare type MercuryOnCreateChangeProposalPayload = Payload & {
|
|
80853
|
-
__typename?: 'MercuryOnCreateChangeProposalPayload';
|
|
80854
|
-
errors?: Maybe<Array<MutationError>>;
|
|
80855
|
-
id: Scalars['ID']['output'];
|
|
80856
|
-
success: Scalars['Boolean']['output'];
|
|
80857
|
-
};
|
|
80858
|
-
export declare type MercuryOnDeleteChangeProposalPayload = Payload & {
|
|
80859
|
-
__typename?: 'MercuryOnDeleteChangeProposalPayload';
|
|
80860
|
-
errors?: Maybe<Array<MutationError>>;
|
|
80861
|
-
id: Scalars['ID']['output'];
|
|
80862
|
-
success: Scalars['Boolean']['output'];
|
|
80863
|
-
};
|
|
80864
81666
|
export declare type MercuryOnUpdateChangeProposalsPayload = Payload & {
|
|
80865
81667
|
__typename?: 'MercuryOnUpdateChangeProposalsPayload';
|
|
80866
81668
|
changeProposals?: Maybe<Array<MercuryChangeProposalUpdate>>;
|
|
@@ -80960,6 +81762,11 @@ export declare type MercuryPositionChangeSummaryFields = {
|
|
|
80960
81762
|
deltaByStatus?: Maybe<Array<Maybe<MercuryPositionDeltaByStatus>>>;
|
|
80961
81763
|
deltaTotal?: Maybe<Scalars['Int']['output']>;
|
|
80962
81764
|
};
|
|
81765
|
+
export declare type MercuryPositionCountByStatus = {
|
|
81766
|
+
__typename?: 'MercuryPositionCountByStatus';
|
|
81767
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
81768
|
+
status?: Maybe<MercuryChangeProposalStatus>;
|
|
81769
|
+
};
|
|
80963
81770
|
export declare type MercuryPositionDeltaByStatus = {
|
|
80964
81771
|
__typename?: 'MercuryPositionDeltaByStatus';
|
|
80965
81772
|
positionDelta?: Maybe<Scalars['Int']['output']>;
|
|
@@ -81211,6 +82018,7 @@ export declare type MercuryQueryApi = {
|
|
|
81211
82018
|
focusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
81212
82019
|
focusAreaHierarchy?: Maybe<Array<Maybe<MercuryFocusAreaHierarchyNode>>>;
|
|
81213
82020
|
focusAreaStatusTransitions?: Maybe<Array<MercuryFocusAreaStatusTransition>>;
|
|
82021
|
+
focusAreaStatusUpdatesByAris?: Maybe<Array<MercuryFocusAreaStatusUpdate>>;
|
|
81214
82022
|
focusAreaTeamAllocations?: Maybe<MercuryFocusAreaTeamAllocationAggregationConnection>;
|
|
81215
82023
|
focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
|
|
81216
82024
|
focusAreaTypesByAris?: Maybe<Array<Maybe<MercuryFocusAreaType>>>;
|
|
@@ -81268,6 +82076,9 @@ export declare type MercuryQueryApiFocusAreaHierarchyArgs = {
|
|
|
81268
82076
|
export declare type MercuryQueryApiFocusAreaStatusTransitionsArgs = {
|
|
81269
82077
|
cloudId: Scalars['ID']['input'];
|
|
81270
82078
|
};
|
|
82079
|
+
export declare type MercuryQueryApiFocusAreaStatusUpdatesByArisArgs = {
|
|
82080
|
+
aris: Array<Scalars['ID']['input']>;
|
|
82081
|
+
};
|
|
81271
82082
|
export declare type MercuryQueryApiFocusAreaTeamAllocationsArgs = {
|
|
81272
82083
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
81273
82084
|
cloudId: Scalars['ID']['input'];
|
|
@@ -81750,18 +82561,9 @@ export declare type MercuryStrategicEventsQueryApiStrategicEventsSearchArgs = {
|
|
|
81750
82561
|
};
|
|
81751
82562
|
export declare type MercurySubscriptionApi = {
|
|
81752
82563
|
__typename?: 'MercurySubscriptionApi';
|
|
81753
|
-
onCreateChangeProposal?: Maybe<MercuryOnCreateChangeProposalPayload>;
|
|
81754
|
-
onDeleteChangeProposal?: Maybe<MercuryOnDeleteChangeProposalPayload>;
|
|
81755
82564
|
onUpdateChangeProposals?: Maybe<MercuryOnUpdateChangeProposalsPayload>;
|
|
81756
82565
|
onUpdateStrategicEvent?: Maybe<MercuryOnUpdateStrategicEventPayload>;
|
|
81757
82566
|
};
|
|
81758
|
-
export declare type MercurySubscriptionApiOnCreateChangeProposalArgs = {
|
|
81759
|
-
strategicEventId: Scalars['ID']['input'];
|
|
81760
|
-
};
|
|
81761
|
-
export declare type MercurySubscriptionApiOnDeleteChangeProposalArgs = {
|
|
81762
|
-
id: Scalars['ID']['input'];
|
|
81763
|
-
strategicEventId: Scalars['ID']['input'];
|
|
81764
|
-
};
|
|
81765
82567
|
export declare type MercurySubscriptionApiOnUpdateChangeProposalsArgs = {
|
|
81766
82568
|
strategicEventId: Scalars['ID']['input'];
|
|
81767
82569
|
};
|
|
@@ -82357,7 +83159,12 @@ export declare type Mutation = {
|
|
|
82357
83159
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
82358
83160
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
82359
83161
|
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
83162
|
+
assetsDM_configureDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
83163
|
+
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
82360
83164
|
assetsDM_dataSource?: Maybe<AssetsDmDataSourceResponse>;
|
|
83165
|
+
assetsDM_dataSourceCleansingRulesConfigure?: Maybe<AssetsDmDataSourceCleansingRulesConfigureResponse>;
|
|
83166
|
+
assetsDM_dataSourceRunTransform?: Maybe<AssetsDmDataSourceRunTransformResponse>;
|
|
83167
|
+
assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
|
|
82361
83168
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
82362
83169
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
82363
83170
|
attachDanglingComment?: Maybe<Comment>;
|
|
@@ -82387,6 +83194,7 @@ export declare type Mutation = {
|
|
|
82387
83194
|
bulkUnarchivePages?: Maybe<BulkArchivePagePayload>;
|
|
82388
83195
|
bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
|
|
82389
83196
|
bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
|
|
83197
|
+
ccp?: Maybe<CcpMutationApi>;
|
|
82390
83198
|
channelPlatform_assignAgentToContact?: Maybe<ChannelPlatformMutationStatus>;
|
|
82391
83199
|
channelPlatform_createAttendee?: Maybe<ChannelPlatformConnectionData>;
|
|
82392
83200
|
channelPlatform_createMeetingDetails?: Maybe<ChannelPlatformMeeting>;
|
|
@@ -82399,6 +83207,7 @@ export declare type Mutation = {
|
|
|
82399
83207
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
82400
83208
|
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
82401
83209
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
83210
|
+
confluence_convertNote?: Maybe<ConfluenceConvertNotePayload>;
|
|
82402
83211
|
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
82403
83212
|
confluence_createCsvExportTask?: Maybe<ConfluenceCreateCsvExportTaskPayload>;
|
|
82404
83213
|
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
@@ -82428,6 +83237,7 @@ export declare type Mutation = {
|
|
|
82428
83237
|
confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
|
|
82429
83238
|
confluence_unwatchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
82430
83239
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
83240
|
+
confluence_updateCalendarView?: Maybe<ConfluenceUpdateCalendarViewPayload>;
|
|
82431
83241
|
confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
|
|
82432
83242
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
82433
83243
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
@@ -82580,10 +83390,13 @@ export declare type Mutation = {
|
|
|
82580
83390
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
82581
83391
|
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
82582
83392
|
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
83393
|
+
goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
|
|
83394
|
+
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
82583
83395
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
82584
83396
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
82585
83397
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
82586
83398
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
83399
|
+
growthUnifiedProfile_createEntitlementProfile?: Maybe<GrowthUnifiedProfileCreateEntitlementProfileResponse>;
|
|
82587
83400
|
growthUnifiedProfile_createOrgProfile?: Maybe<GrowthUnifiedProfileTwcCreateOrgProfileResponse>;
|
|
82588
83401
|
growthUnifiedProfile_createUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
82589
83402
|
hardDeleteSpace?: Maybe<HardDeleteSpacePayload>;
|
|
@@ -82609,6 +83422,7 @@ export declare type Mutation = {
|
|
|
82609
83422
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
82610
83423
|
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
82611
83424
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
83425
|
+
jira_createGlobalCustomFieldV2?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
82612
83426
|
jira_createIssueSearchFormattingRule?: Maybe<JiraCreateIssueSearchFormattingRulePayload>;
|
|
82613
83427
|
jira_createIssueType?: Maybe<JiraUpsertIssueTypePayload>;
|
|
82614
83428
|
jira_customizeProjectLevelSidebarMenuItem?: Maybe<JiraProjectLevelSidebarMenuCustomization>;
|
|
@@ -82621,7 +83435,9 @@ export declare type Mutation = {
|
|
|
82621
83435
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
82622
83436
|
jira_discardUserCalendarViewConfig?: Maybe<JiraUpdateCalendarViewConfigPayload>;
|
|
82623
83437
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
83438
|
+
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
82624
83439
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
83440
|
+
jira_orderIssueSearchFormattingRule?: Maybe<JiraOrderIssueSearchFormattingRulePayload>;
|
|
82625
83441
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
82626
83442
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
82627
83443
|
jira_removeFieldsFromFieldScheme?: Maybe<JiraRemoveFieldsFromFieldSchemePayload>;
|
|
@@ -82713,7 +83529,9 @@ export declare type Mutation = {
|
|
|
82713
83529
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
82714
83530
|
projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
|
|
82715
83531
|
projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
|
|
83532
|
+
projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
|
|
82716
83533
|
projects_removeMember?: Maybe<TownsquareProjectsRemoveMemberPayload>;
|
|
83534
|
+
projects_removeTeamContributors?: Maybe<TownsquareProjectsRemoveTeamContributorsPayload>;
|
|
82717
83535
|
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
82718
83536
|
projects_setWatchingProject?: Maybe<TownsquareProjectsSetWatchingProjectPayload>;
|
|
82719
83537
|
projects_shareProject?: Maybe<TownsquareProjectsShareProjectPayload>;
|
|
@@ -83015,6 +83833,17 @@ export declare type MutationAssetsDm_AutoColumnMappingArgs = {
|
|
|
83015
83833
|
cloudId: Scalars['ID']['input'];
|
|
83016
83834
|
workspaceId: Scalars['ID']['input'];
|
|
83017
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
|
+
};
|
|
83018
83847
|
export declare type MutationAssetsDm_DataSourceArgs = {
|
|
83019
83848
|
cloudId: Scalars['ID']['input'];
|
|
83020
83849
|
dataSourceId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -83023,6 +83852,22 @@ export declare type MutationAssetsDm_DataSourceArgs = {
|
|
|
83023
83852
|
operation?: InputMaybe<AssetsDmDataSourceOperationEnum>;
|
|
83024
83853
|
workspaceId: Scalars['ID']['input'];
|
|
83025
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
|
+
};
|
|
83026
83871
|
export declare type MutationAssetsDm_GenerateAdapterTokenArgs = {
|
|
83027
83872
|
cloudId: Scalars['ID']['input'];
|
|
83028
83873
|
generateTokenInput: AssetsDmGenerateAdapterTokenInput;
|
|
@@ -83152,6 +83997,9 @@ export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
|
83152
83997
|
cloudId: Scalars['ID']['input'];
|
|
83153
83998
|
input: Array<InputMaybe<NestedPageInput>>;
|
|
83154
83999
|
};
|
|
84000
|
+
export declare type MutationConfluence_ConvertNoteArgs = {
|
|
84001
|
+
input: ConfluenceConvertNoteInput;
|
|
84002
|
+
};
|
|
83155
84003
|
export declare type MutationConfluence_CopySpaceSecurityConfigurationArgs = {
|
|
83156
84004
|
cloudId: Scalars['ID']['input'];
|
|
83157
84005
|
input: ConfluenceCopySpaceSecurityConfigurationInput;
|
|
@@ -83266,6 +84114,10 @@ export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
|
83266
84114
|
cloudId: Scalars['ID']['input'];
|
|
83267
84115
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
83268
84116
|
};
|
|
84117
|
+
export declare type MutationConfluence_UpdateCalendarViewArgs = {
|
|
84118
|
+
cloudId: Scalars['ID']['input'];
|
|
84119
|
+
input: ConfluenceUpdateCalendarViewInput;
|
|
84120
|
+
};
|
|
83269
84121
|
export declare type MutationConfluence_UpdateContentAccessRequestArgs = {
|
|
83270
84122
|
cloudId: Scalars['ID']['input'];
|
|
83271
84123
|
updateContentAccessRequestInput: ConfluenceUpdateContentAccessRequestInput;
|
|
@@ -83788,6 +84640,12 @@ export declare type MutationGoals_AddGoalTeamLinkArgs = {
|
|
|
83788
84640
|
export declare type MutationGoals_CreateUpdateArgs = {
|
|
83789
84641
|
input?: InputMaybe<TownsquareGoalsCreateUpdateInput>;
|
|
83790
84642
|
};
|
|
84643
|
+
export declare type MutationGoals_DeleteLatestUpdateArgs = {
|
|
84644
|
+
input?: InputMaybe<TownsquareGoalsDeleteLatestUpdateInput>;
|
|
84645
|
+
};
|
|
84646
|
+
export declare type MutationGoals_EditUpdateArgs = {
|
|
84647
|
+
input?: InputMaybe<TownsquareGoalsEditUpdateInput>;
|
|
84648
|
+
};
|
|
83791
84649
|
export declare type MutationGoals_RemoveGoalTeamLinkArgs = {
|
|
83792
84650
|
input?: InputMaybe<TownsquareGoalsRemoveGoalTeamLinkInput>;
|
|
83793
84651
|
};
|
|
@@ -83797,6 +84655,9 @@ export declare type MutationGoals_SetWatchingGoalArgs = {
|
|
|
83797
84655
|
export declare type MutationGrantContentAccessArgs = {
|
|
83798
84656
|
grantContentAccessInput: GrantContentAccessInput;
|
|
83799
84657
|
};
|
|
84658
|
+
export declare type MutationGrowthUnifiedProfile_CreateEntitlementProfileArgs = {
|
|
84659
|
+
profile: GrowthUnifiedProfileCreateEntitlementProfileInput;
|
|
84660
|
+
};
|
|
83800
84661
|
export declare type MutationGrowthUnifiedProfile_CreateOrgProfileArgs = {
|
|
83801
84662
|
profile: GrowthUnifiedProfileCreateOrgProfileInput;
|
|
83802
84663
|
};
|
|
@@ -83864,6 +84725,10 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
83864
84725
|
cloudId: Scalars['ID']['input'];
|
|
83865
84726
|
input: JiraCreateGlobalCustomFieldInput;
|
|
83866
84727
|
};
|
|
84728
|
+
export declare type MutationJira_CreateGlobalCustomFieldV2Args = {
|
|
84729
|
+
cloudId: Scalars['ID']['input'];
|
|
84730
|
+
input: JiraCreateGlobalCustomFieldV2Input;
|
|
84731
|
+
};
|
|
83867
84732
|
export declare type MutationJira_CreateIssueSearchFormattingRuleArgs = {
|
|
83868
84733
|
input: JiraCreateIssueSearchFormattingRuleInput;
|
|
83869
84734
|
};
|
|
@@ -83901,10 +84766,16 @@ export declare type MutationJira_DiscardUserCalendarViewConfigArgs = {
|
|
|
83901
84766
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
83902
84767
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
83903
84768
|
};
|
|
84769
|
+
export declare type MutationJira_DragAndDropBoardViewIssueArgs = {
|
|
84770
|
+
input: JiraDragAndDropBoardViewIssueInput;
|
|
84771
|
+
};
|
|
83904
84772
|
export declare type MutationJira_EditFieldSchemeArgs = {
|
|
83905
84773
|
cloudId: Scalars['ID']['input'];
|
|
83906
84774
|
input: JiraEditFieldSchemeInput;
|
|
83907
84775
|
};
|
|
84776
|
+
export declare type MutationJira_OrderIssueSearchFormattingRuleArgs = {
|
|
84777
|
+
input: JiraOrderIssueSearchFormattingRuleInput;
|
|
84778
|
+
};
|
|
83908
84779
|
export declare type MutationJira_PublishBoardViewConfigArgs = {
|
|
83909
84780
|
input: JiraPublishBoardViewConfigInput;
|
|
83910
84781
|
};
|
|
@@ -84161,9 +85032,15 @@ export declare type MutationProjects_EditLinkArgs = {
|
|
|
84161
85032
|
export declare type MutationProjects_EditUpdateArgs = {
|
|
84162
85033
|
input?: InputMaybe<TownsquareProjectsEditUpdateInput>;
|
|
84163
85034
|
};
|
|
85035
|
+
export declare type MutationProjects_RemoveGoalLinkArgs = {
|
|
85036
|
+
input: TownsquareProjectsRemoveGoalLinkInput;
|
|
85037
|
+
};
|
|
84164
85038
|
export declare type MutationProjects_RemoveMemberArgs = {
|
|
84165
85039
|
input: TownsquareProjectsRemoveMemberInput;
|
|
84166
85040
|
};
|
|
85041
|
+
export declare type MutationProjects_RemoveTeamContributorsArgs = {
|
|
85042
|
+
input: TownsquareProjectsRemoveTeamContributorsInput;
|
|
85043
|
+
};
|
|
84167
85044
|
export declare type MutationProjects_SetDependencyArgs = {
|
|
84168
85045
|
input?: InputMaybe<TownsquareProjectsSetDependencyInput>;
|
|
84169
85046
|
};
|
|
@@ -85036,6 +85913,7 @@ export declare type NoteConnection = {
|
|
|
85036
85913
|
edges?: Maybe<Array<Maybe<NoteEdge>>>;
|
|
85037
85914
|
nodes?: Maybe<Array<Maybe<NoteResponse>>>;
|
|
85038
85915
|
noteInfo: NoteInfo;
|
|
85916
|
+
pageInfo: PageInfo;
|
|
85039
85917
|
};
|
|
85040
85918
|
export declare type NoteEdge = {
|
|
85041
85919
|
__typename?: 'NoteEdge';
|
|
@@ -85062,11 +85940,13 @@ export declare type NoteMutationErrorExtension = {
|
|
|
85062
85940
|
export declare type NoteResponse = {
|
|
85063
85941
|
__typename?: 'NoteResponse';
|
|
85064
85942
|
ari: Scalars['String']['output'];
|
|
85943
|
+
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
85065
85944
|
body?: Maybe<Scalars['String']['output']>;
|
|
85066
85945
|
bodyExcerpt?: Maybe<Scalars['String']['output']>;
|
|
85067
85946
|
collectionName: Scalars['String']['output'];
|
|
85068
85947
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
85069
85948
|
extraProps?: Maybe<Array<Prop>>;
|
|
85949
|
+
id: Scalars['ID']['output'];
|
|
85070
85950
|
isPinned: Scalars['Boolean']['output'];
|
|
85071
85951
|
labels?: Maybe<Array<Scalars['String']['output']>>;
|
|
85072
85952
|
productLink?: Maybe<Scalars['String']['output']>;
|
|
@@ -85085,6 +85965,13 @@ export declare type NotesByCreatorInput = {
|
|
|
85085
85965
|
export declare enum NotesByDateLastModifiedOrder {
|
|
85086
85966
|
DateLastModified = "DATE_LAST_MODIFIED"
|
|
85087
85967
|
}
|
|
85968
|
+
export declare enum NotesContentType {
|
|
85969
|
+
Livedoc = "LIVEDOC",
|
|
85970
|
+
Page = "PAGE"
|
|
85971
|
+
}
|
|
85972
|
+
export declare enum NotesProduct {
|
|
85973
|
+
Confluence = "CONFLUENCE"
|
|
85974
|
+
}
|
|
85088
85975
|
export declare enum NotificationAction {
|
|
85089
85976
|
DontNotify = "DONT_NOTIFY",
|
|
85090
85977
|
Notify = "NOTIFY"
|
|
@@ -87570,6 +88457,8 @@ export declare type Query = {
|
|
|
87570
88457
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
87571
88458
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
87572
88459
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
88460
|
+
agentStudio_toolIntegrations?: Maybe<AgentStudioToolIntegrationsConnection>;
|
|
88461
|
+
agentStudio_tools?: Maybe<AgentStudioToolsConnection>;
|
|
87573
88462
|
agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
|
|
87574
88463
|
agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
|
|
87575
88464
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
@@ -87608,7 +88497,9 @@ export declare type Query = {
|
|
|
87608
88497
|
assetsDM_dataSourceConfig?: Maybe<AssetsDmDataSourceConfig>;
|
|
87609
88498
|
assetsDM_dataSourceDetails?: Maybe<AssetsDmDataSourceDetails>;
|
|
87610
88499
|
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
88500
|
+
assetsDM_dataSourceMapping?: Maybe<Array<AssetsDmDataSourceMapping>>;
|
|
87611
88501
|
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
88502
|
+
assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
|
|
87612
88503
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
87613
88504
|
assetsDM_objectTags?: Maybe<AssetsDmObjectTags>;
|
|
87614
88505
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
@@ -87691,6 +88582,7 @@ export declare type Query = {
|
|
|
87691
88582
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
87692
88583
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
87693
88584
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
88585
|
+
confluence_note?: Maybe<NoteResponse>;
|
|
87694
88586
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
87695
88587
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
87696
88588
|
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
@@ -87761,6 +88653,7 @@ export declare type Query = {
|
|
|
87761
88653
|
countGroupByUser?: Maybe<CountGroupByUser>;
|
|
87762
88654
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
87763
88655
|
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
88656
|
+
cpls_customContributionTargets: Array<CplsCustomContributionTarget>;
|
|
87764
88657
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
87765
88658
|
csmAi_generateCoachingTriggeringCondition: Scalars['String']['output'];
|
|
87766
88659
|
csmAi_getAgentVersion?: Maybe<CsmAiAgentVersionResult>;
|
|
@@ -87872,8 +88765,8 @@ export declare type Query = {
|
|
|
87872
88765
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
87873
88766
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
87874
88767
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
87875
|
-
|
|
87876
|
-
|
|
88768
|
+
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
88769
|
+
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
87877
88770
|
graphStore?: Maybe<GraphStore>;
|
|
87878
88771
|
group?: Maybe<Group>;
|
|
87879
88772
|
groupCounts?: Maybe<GraphQlGroupCountsResult>;
|
|
@@ -87882,6 +88775,7 @@ export declare type Query = {
|
|
|
87882
88775
|
groupsUserSpaceAccess?: Maybe<PaginatedGroupList>;
|
|
87883
88776
|
groupsWithContentRestrictions?: Maybe<Array<Maybe<GroupWithRestrictions>>>;
|
|
87884
88777
|
growthRecommendations?: Maybe<GrowthRecQuery>;
|
|
88778
|
+
growthUnifiedProfile_getEntitlementProfile?: Maybe<GrowthUnifiedProfileEntitlementProfileResult>;
|
|
87885
88779
|
growthUnifiedProfile_getOrgProfile?: Maybe<GrowthUnifiedProfileOrgProfileResult>;
|
|
87886
88780
|
growthUnifiedProfile_getUnifiedProfile?: Maybe<GrowthUnifiedProfileResult>;
|
|
87887
88781
|
growthUnifiedProfile_getUnifiedUserProfile?: Maybe<GrowthUnifiedProfileUserProfileResult>;
|
|
@@ -87932,7 +88826,8 @@ export declare type Query = {
|
|
|
87932
88826
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
87933
88827
|
jira_fieldSchemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
87934
88828
|
jira_fieldSchemeAvailableFields?: Maybe<JiraFieldConnection>;
|
|
87935
|
-
jira_fieldSchemes?: Maybe<
|
|
88829
|
+
jira_fieldSchemes?: Maybe<JiraFieldSchemesConnection>;
|
|
88830
|
+
jira_fieldSchemesByARIs?: Maybe<Array<Maybe<JiraFieldScheme>>>;
|
|
87936
88831
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
87937
88832
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
87938
88833
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -88142,8 +89037,10 @@ export declare type Query = {
|
|
|
88142
89037
|
spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
|
|
88143
89038
|
spf_ask?: Maybe<SpfAskResult>;
|
|
88144
89039
|
spf_askCommentsByIds?: Maybe<Array<Maybe<SpfAskComment>>>;
|
|
89040
|
+
spf_askLinksByIds?: Maybe<Array<Maybe<SpfAskLink>>>;
|
|
88145
89041
|
spf_asks?: Maybe<SpfAskConnection>;
|
|
88146
89042
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
89043
|
+
spf_resolveImpactedWorkUrl?: Maybe<SpfResolveImpactedWorkUrlPayload>;
|
|
88147
89044
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
88148
89045
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
88149
89046
|
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
@@ -88274,6 +89171,18 @@ export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
|
88274
89171
|
cloudId: Scalars['String']['input'];
|
|
88275
89172
|
input: AgentStudioSuggestConversationStartersInput;
|
|
88276
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
|
+
};
|
|
88277
89186
|
export declare type QueryAgentStudio_ValidateScenarioArgs = {
|
|
88278
89187
|
cloudId: Scalars['String']['input'];
|
|
88279
89188
|
containerId: Scalars['ID']['input'];
|
|
@@ -88457,6 +89366,12 @@ export declare type QueryAssetsDm_DataSourceFormFieldsArgs = {
|
|
|
88457
89366
|
schemaId?: InputMaybe<Scalars['String']['input']>;
|
|
88458
89367
|
workspaceId: Scalars['ID']['input'];
|
|
88459
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
|
+
};
|
|
88460
89375
|
export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
88461
89376
|
cloudID: Scalars['ID']['input'];
|
|
88462
89377
|
dataSourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -88465,12 +89380,19 @@ export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
|
88465
89380
|
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
88466
89381
|
workspaceId: Scalars['ID']['input'];
|
|
88467
89382
|
};
|
|
89383
|
+
export declare type QueryAssetsDm_DatasourceCleansingRulesArgs = {
|
|
89384
|
+
cloudId: Scalars['ID']['input'];
|
|
89385
|
+
dataSourceId: Scalars['ID']['input'];
|
|
89386
|
+
workspaceId: Scalars['ID']['input'];
|
|
89387
|
+
};
|
|
88468
89388
|
export declare type QueryAssetsDm_ObjectClassesArgs = {
|
|
88469
89389
|
cloudId: Scalars['ID']['input'];
|
|
88470
89390
|
workspaceId: Scalars['ID']['input'];
|
|
88471
89391
|
};
|
|
88472
89392
|
export declare type QueryAssetsDm_ObjectTagsArgs = {
|
|
88473
|
-
|
|
89393
|
+
cloudId: Scalars['ID']['input'];
|
|
89394
|
+
objectId: Scalars['ID']['input'];
|
|
89395
|
+
workspaceId: Scalars['ID']['input'];
|
|
88474
89396
|
};
|
|
88475
89397
|
export declare type QueryAssetsDm_ObjectsListColumnsArgs = {
|
|
88476
89398
|
cloudId: Scalars['ID']['input'];
|
|
@@ -88816,6 +89738,9 @@ export declare type QueryConfluence_MacrosByIdsArgs = {
|
|
|
88816
89738
|
contentId: Scalars['ID']['input'];
|
|
88817
89739
|
macroIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
88818
89740
|
};
|
|
89741
|
+
export declare type QueryConfluence_NoteArgs = {
|
|
89742
|
+
id: Scalars['ID']['input'];
|
|
89743
|
+
};
|
|
88819
89744
|
export declare type QueryConfluence_PdfExportDownloadLinkArgs = {
|
|
88820
89745
|
cloudId: Scalars['ID']['input'];
|
|
88821
89746
|
id: Scalars['ID']['input'];
|
|
@@ -89214,6 +90139,9 @@ export declare type QueryCountUsersGroupByPageArgs = {
|
|
|
89214
90139
|
export declare type QueryCpls_CapacityPlanningPeopleViewArgs = {
|
|
89215
90140
|
id: Scalars['ID']['input'];
|
|
89216
90141
|
};
|
|
90142
|
+
export declare type QueryCpls_CustomContributionTargetsArgs = {
|
|
90143
|
+
ids: Array<Scalars['ID']['input']>;
|
|
90144
|
+
};
|
|
89217
90145
|
export declare type QueryCsmAi_GenerateCoachingTriggeringConditionArgs = {
|
|
89218
90146
|
conversationId: Scalars['ID']['input'];
|
|
89219
90147
|
helpCenterAri: Scalars['ID']['input'];
|
|
@@ -89633,13 +90561,15 @@ export declare type QueryGetSummaryArgs = {
|
|
|
89633
90561
|
lastUpdatedTimeSeconds: Scalars['Long']['input'];
|
|
89634
90562
|
responseType?: InputMaybe<ResponseType>;
|
|
89635
90563
|
};
|
|
89636
|
-
export declare type
|
|
90564
|
+
export declare type QueryGraphIntegration_ComponentDirectoryDimensionsArgs = {
|
|
89637
90565
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90566
|
+
cloudId: Scalars['ID']['input'];
|
|
89638
90567
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89639
90568
|
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
89640
90569
|
};
|
|
89641
|
-
export declare type
|
|
90570
|
+
export declare type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
|
|
89642
90571
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90572
|
+
cloudId: Scalars['ID']['input'];
|
|
89643
90573
|
dimensionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89644
90574
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89645
90575
|
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
@@ -89672,6 +90602,9 @@ export declare type QueryGroupsWithContentRestrictionsArgs = {
|
|
|
89672
90602
|
contentId: Scalars['ID']['input'];
|
|
89673
90603
|
groupIds: Array<InputMaybe<Scalars['String']['input']>>;
|
|
89674
90604
|
};
|
|
90605
|
+
export declare type QueryGrowthUnifiedProfile_GetEntitlementProfileArgs = {
|
|
90606
|
+
entitlementId: Scalars['ID']['input'];
|
|
90607
|
+
};
|
|
89675
90608
|
export declare type QueryGrowthUnifiedProfile_GetOrgProfileArgs = {
|
|
89676
90609
|
filter?: InputMaybe<GrowthUnifiedProfileOrgProfileFilterInput>;
|
|
89677
90610
|
orgId: Scalars['ID']['input'];
|
|
@@ -89839,6 +90772,9 @@ export declare type QueryJira_FieldSchemesArgs = {
|
|
|
89839
90772
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89840
90773
|
input?: InputMaybe<JiraFieldSchemesInput>;
|
|
89841
90774
|
};
|
|
90775
|
+
export declare type QueryJira_FieldSchemesByArIsArgs = {
|
|
90776
|
+
ids: Array<Scalars['ID']['input']>;
|
|
90777
|
+
};
|
|
89842
90778
|
export declare type QueryJira_IsRovoLlmEnabledArgs = {
|
|
89843
90779
|
cloudId: Scalars['ID']['input'];
|
|
89844
90780
|
};
|
|
@@ -90059,7 +90995,11 @@ export declare type QueryNodeArgs = {
|
|
|
90059
90995
|
id: Scalars['ID']['input'];
|
|
90060
90996
|
};
|
|
90061
90997
|
export declare type QueryNotesByCreatorArgs = {
|
|
90998
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90999
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
91000
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90062
91001
|
input?: InputMaybe<NotesByCreatorInput>;
|
|
91002
|
+
orderBy?: InputMaybe<ConfluenceNotesOrdering>;
|
|
90063
91003
|
};
|
|
90064
91004
|
export declare type QueryObjectRecommendationsArgs = {
|
|
90065
91005
|
context: CollaborationGraphRequestContext;
|
|
@@ -90477,6 +91417,9 @@ export declare type QuerySingleContentArgs = {
|
|
|
90477
91417
|
status?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
90478
91418
|
validatedShareToken?: InputMaybe<Scalars['String']['input']>;
|
|
90479
91419
|
};
|
|
91420
|
+
export declare type QuerySiteOperationsArgs = {
|
|
91421
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
91422
|
+
};
|
|
90480
91423
|
export declare type QuerySitePermissionsArgs = {
|
|
90481
91424
|
operations?: InputMaybe<Array<InputMaybe<SitePermissionOperationType>>>;
|
|
90482
91425
|
permissionTypes?: InputMaybe<Array<InputMaybe<SitePermissionType>>>;
|
|
@@ -90586,6 +91529,9 @@ export declare type QuerySpf_AskArgs = {
|
|
|
90586
91529
|
export declare type QuerySpf_AskCommentsByIdsArgs = {
|
|
90587
91530
|
ids: Array<Scalars['ID']['input']>;
|
|
90588
91531
|
};
|
|
91532
|
+
export declare type QuerySpf_AskLinksByIdsArgs = {
|
|
91533
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91534
|
+
};
|
|
90589
91535
|
export declare type QuerySpf_AsksArgs = {
|
|
90590
91536
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90591
91537
|
cloudId: Scalars['ID']['input'];
|
|
@@ -90595,6 +91541,10 @@ export declare type QuerySpf_AsksArgs = {
|
|
|
90595
91541
|
export declare type QuerySpf_AsksByIdsArgs = {
|
|
90596
91542
|
ids: Array<Scalars['ID']['input']>;
|
|
90597
91543
|
};
|
|
91544
|
+
export declare type QuerySpf_ResolveImpactedWorkUrlArgs = {
|
|
91545
|
+
cloudId: Scalars['ID']['input'];
|
|
91546
|
+
url: Scalars['String']['input'];
|
|
91547
|
+
};
|
|
90598
91548
|
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
90599
91549
|
appId: Scalars['ID']['input'];
|
|
90600
91550
|
installationId: Scalars['ID']['input'];
|
|
@@ -91391,6 +92341,7 @@ export declare type RankColumnOutput = MutationResponse & {
|
|
|
91391
92341
|
export declare type RankCustomFilterInput = {
|
|
91392
92342
|
afterFilterId?: InputMaybe<Scalars['String']['input']>;
|
|
91393
92343
|
boardId: Scalars['ID']['input'];
|
|
92344
|
+
customFilterIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
91394
92345
|
id: Scalars['String']['input'];
|
|
91395
92346
|
};
|
|
91396
92347
|
export declare type RankItem = {
|
|
@@ -96969,7 +97920,7 @@ export declare type SpfAskEdge = {
|
|
|
96969
97920
|
cursor: Scalars['String']['output'];
|
|
96970
97921
|
node?: Maybe<SpfAskResult>;
|
|
96971
97922
|
};
|
|
96972
|
-
export declare type SpfAskLink = {
|
|
97923
|
+
export declare type SpfAskLink = Node & {
|
|
96973
97924
|
__typename?: 'SpfAskLink';
|
|
96974
97925
|
askId: Scalars['String']['output'];
|
|
96975
97926
|
attachedByUser?: Maybe<User>;
|
|
@@ -97139,6 +98090,10 @@ export declare type SpfDeleteAskUpdatePayload = Payload & {
|
|
|
97139
98090
|
success: Scalars['Boolean']['output'];
|
|
97140
98091
|
};
|
|
97141
98092
|
export declare type SpfImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
98093
|
+
export declare type SpfResolveImpactedWorkUrlPayload = {
|
|
98094
|
+
__typename?: 'SpfResolveImpactedWorkUrlPayload';
|
|
98095
|
+
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
98096
|
+
};
|
|
97142
98097
|
export declare type SpfUpdateAskCommentDataInput = {
|
|
97143
98098
|
data: Scalars['String']['input'];
|
|
97144
98099
|
id: Scalars['ID']['input'];
|
|
@@ -97367,7 +98322,7 @@ export declare type StakeholderCommsCreateStakeholderInput = {
|
|
|
97367
98322
|
};
|
|
97368
98323
|
export declare type StakeholderCommsGroups = {
|
|
97369
98324
|
__typename?: 'StakeholderCommsGroups';
|
|
97370
|
-
|
|
98325
|
+
avatar?: Maybe<Scalars['String']['output']>;
|
|
97371
98326
|
id?: Maybe<Scalars['ID']['output']>;
|
|
97372
98327
|
name?: Maybe<Scalars['String']['output']>;
|
|
97373
98328
|
};
|
|
@@ -97718,6 +98673,7 @@ export declare type Subscription = {
|
|
|
97718
98673
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
97719
98674
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
97720
98675
|
devai_onAutodevJobLogsUpdated?: Maybe<DevAiAutodevLogEdge>;
|
|
98676
|
+
devai_onBoysenberrySessionUpdated?: Maybe<DevAiRovoDevSession>;
|
|
97721
98677
|
devai_onTechnicalPlannerJobUpdated?: Maybe<DevAiTechnicalPlannerJob>;
|
|
97722
98678
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
97723
98679
|
jira?: Maybe<JiraSubscription>;
|
|
@@ -97745,6 +98701,9 @@ export declare type SubscriptionDevai_OnAutodevJobLogsUpdatedArgs = {
|
|
|
97745
98701
|
cloudId: Scalars['ID']['input'];
|
|
97746
98702
|
jobId: Scalars['ID']['input'];
|
|
97747
98703
|
};
|
|
98704
|
+
export declare type SubscriptionDevai_OnBoysenberrySessionUpdatedArgs = {
|
|
98705
|
+
sessionAri: Scalars['ID']['input'];
|
|
98706
|
+
};
|
|
97748
98707
|
export declare type SubscriptionDevai_OnTechnicalPlannerJobUpdatedArgs = {
|
|
97749
98708
|
cloudId: Scalars['ID']['input'];
|
|
97750
98709
|
jobId: Scalars['ID']['input'];
|
|
@@ -98511,6 +99470,7 @@ export declare type TeamV2 = Node & {
|
|
|
98511
99470
|
members?: Maybe<TeamMemberConnectionV2>;
|
|
98512
99471
|
membershipSettings?: Maybe<TeamMembershipSettings>;
|
|
98513
99472
|
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
99473
|
+
profileUrl?: Maybe<Scalars['String']['output']>;
|
|
98514
99474
|
smallAvatarImageUrl?: Maybe<Scalars['String']['output']>;
|
|
98515
99475
|
smallHeaderImageUrl?: Maybe<Scalars['String']['output']>;
|
|
98516
99476
|
state?: Maybe<TeamStateV2>;
|
|
@@ -99587,6 +100547,30 @@ export declare type TownsquareGoalsCreateUpdatePayload = {
|
|
|
99587
100547
|
success: Scalars['Boolean']['output'];
|
|
99588
100548
|
update?: Maybe<TownsquareGoalUpdate>;
|
|
99589
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
|
+
};
|
|
99590
100574
|
export declare type TownsquareGoalsRemoveGoalTeamLinkInput = {
|
|
99591
100575
|
goalId: Scalars['ID']['input'];
|
|
99592
100576
|
teamId: Scalars['ID']['input'];
|
|
@@ -100203,6 +101187,17 @@ export declare type TownsquareProjectsEditUpdatePayload = {
|
|
|
100203
101187
|
success: Scalars['Boolean']['output'];
|
|
100204
101188
|
update?: Maybe<TownsquareProjectUpdate>;
|
|
100205
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
|
+
};
|
|
100206
101201
|
export declare type TownsquareProjectsRemoveMemberInput = {
|
|
100207
101202
|
projectId: Scalars['ID']['input'];
|
|
100208
101203
|
userId: Scalars['ID']['input'];
|
|
@@ -100213,6 +101208,17 @@ export declare type TownsquareProjectsRemoveMemberPayload = {
|
|
|
100213
101208
|
success: Scalars['Boolean']['output'];
|
|
100214
101209
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
100215
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
|
+
};
|
|
100216
101222
|
export declare type TownsquareProjectsSetDependencyInput = {
|
|
100217
101223
|
incomingProjectId: Scalars['ID']['input'];
|
|
100218
101224
|
outgoingProjectId: Scalars['ID']['input'];
|
|
@@ -100634,9 +101640,9 @@ export declare type TrelloAction = {
|
|
|
100634
101640
|
};
|
|
100635
101641
|
export declare type TrelloActionAttachmentEntity = {
|
|
100636
101642
|
__typename?: 'TrelloActionAttachmentEntity';
|
|
100637
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
100638
101643
|
link?: Maybe<Scalars['Boolean']['output']>;
|
|
100639
101644
|
name?: Maybe<Scalars['String']['output']>;
|
|
101645
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
100640
101646
|
previewUrl?: Maybe<Scalars['String']['output']>;
|
|
100641
101647
|
previewUrl2x?: Maybe<Scalars['String']['output']>;
|
|
100642
101648
|
type?: Maybe<Scalars['String']['output']>;
|
|
@@ -100644,8 +101650,8 @@ export declare type TrelloActionAttachmentEntity = {
|
|
|
100644
101650
|
};
|
|
100645
101651
|
export declare type TrelloActionAttachmentPreviewEntity = {
|
|
100646
101652
|
__typename?: 'TrelloActionAttachmentPreviewEntity';
|
|
100647
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
100648
101653
|
name?: Maybe<Scalars['String']['output']>;
|
|
101654
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
100649
101655
|
originalUrl?: Maybe<Scalars['URL']['output']>;
|
|
100650
101656
|
previewUrl?: Maybe<Scalars['URL']['output']>;
|
|
100651
101657
|
previewUrl2x?: Maybe<Scalars['URL']['output']>;
|
|
@@ -100675,6 +101681,7 @@ export declare type TrelloActionCardEntity = {
|
|
|
100675
101681
|
shortId?: Maybe<Scalars['Int']['output']>;
|
|
100676
101682
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
100677
101683
|
start?: Maybe<Scalars['DateTime']['output']>;
|
|
101684
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
100678
101685
|
type?: Maybe<Scalars['String']['output']>;
|
|
100679
101686
|
};
|
|
100680
101687
|
export declare type TrelloActionCheckItemEntity = {
|
|
@@ -100692,6 +101699,7 @@ export declare type TrelloActionChecklistEntity = {
|
|
|
100692
101699
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
100693
101700
|
name?: Maybe<Scalars['String']['output']>;
|
|
100694
101701
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
101702
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
100695
101703
|
type?: Maybe<Scalars['String']['output']>;
|
|
100696
101704
|
};
|
|
100697
101705
|
export declare type TrelloActionCommentEntity = {
|
|
@@ -100718,6 +101726,7 @@ export declare type TrelloActionListEntity = {
|
|
|
100718
101726
|
__typename?: 'TrelloActionListEntity';
|
|
100719
101727
|
name?: Maybe<Scalars['String']['output']>;
|
|
100720
101728
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
101729
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
100721
101730
|
type?: Maybe<Scalars['String']['output']>;
|
|
100722
101731
|
};
|
|
100723
101732
|
export declare type TrelloActionMemberEntity = {
|
|
@@ -101174,6 +102183,7 @@ export declare type TrelloBoardMirrorCardsMirrorCardsArgs = {
|
|
|
101174
102183
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101175
102184
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101176
102185
|
};
|
|
102186
|
+
export declare type TrelloBoardOrInbox = TrelloBoard | TrelloInbox;
|
|
101177
102187
|
export declare type TrelloBoardPowerUpConnection = {
|
|
101178
102188
|
__typename?: 'TrelloBoardPowerUpConnection';
|
|
101179
102189
|
edges?: Maybe<Array<TrelloBoardPowerUpEdge>>;
|
|
@@ -101789,6 +102799,7 @@ export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionDat
|
|
|
101789
102799
|
card?: Maybe<TrelloCard>;
|
|
101790
102800
|
creator?: Maybe<TrelloMember>;
|
|
101791
102801
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
102802
|
+
dateLastEdited?: Maybe<Scalars['DateTime']['output']>;
|
|
101792
102803
|
displayEntities?: Maybe<TrelloCommentCardActionDisplayEntities>;
|
|
101793
102804
|
displayKey?: Maybe<Scalars['String']['output']>;
|
|
101794
102805
|
id: Scalars['ID']['output'];
|
|
@@ -102583,6 +103594,7 @@ export declare type TrelloMutationApi = {
|
|
|
102583
103594
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
102584
103595
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
102585
103596
|
updateOAuth2AppCallbackUrls?: Maybe<TrelloUpdateOAuth2AppCallbackUrlsPayload>;
|
|
103597
|
+
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
102586
103598
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
102587
103599
|
};
|
|
102588
103600
|
export declare type TrelloMutationApiAddBoardStarArgs = {
|
|
@@ -102678,6 +103690,9 @@ export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
|
102678
103690
|
export declare type TrelloMutationApiUpdateOAuth2AppCallbackUrlsArgs = {
|
|
102679
103691
|
input: TrelloUpdateOAuth2AppCallbackUrlsInput;
|
|
102680
103692
|
};
|
|
103693
|
+
export declare type TrelloMutationApiUpdateOAuth2ClientArgs = {
|
|
103694
|
+
input: TrelloUpdateOAuth2ClientInput;
|
|
103695
|
+
};
|
|
102681
103696
|
export declare type TrelloMutationApiWatchCardArgs = {
|
|
102682
103697
|
input: TrelloWatchCardInput;
|
|
102683
103698
|
};
|
|
@@ -102686,6 +103701,7 @@ export declare type TrelloOAuth2Client = {
|
|
|
102686
103701
|
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
102687
103702
|
clientId: Scalars['String']['output'];
|
|
102688
103703
|
clientSecret: Scalars['String']['output'];
|
|
103704
|
+
clientType: Scalars['String']['output'];
|
|
102689
103705
|
profile: Scalars['String']['output'];
|
|
102690
103706
|
scopes?: Maybe<Array<TrelloOAuth2Scope>>;
|
|
102691
103707
|
};
|
|
@@ -103165,6 +104181,7 @@ export declare type TrelloQueryApi = {
|
|
|
103165
104181
|
labelsById?: Maybe<Array<Maybe<TrelloLabel>>>;
|
|
103166
104182
|
list?: Maybe<TrelloList>;
|
|
103167
104183
|
listsById?: Maybe<Array<Maybe<TrelloList>>>;
|
|
104184
|
+
me?: Maybe<TrelloMember>;
|
|
103168
104185
|
member?: Maybe<TrelloMember>;
|
|
103169
104186
|
plannerAccountsByMemberId?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
103170
104187
|
plannerByWorkspaceId?: Maybe<TrelloPlanner>;
|
|
@@ -103724,6 +104741,29 @@ export declare type TrelloUpdateOAuth2AppCallbackUrlsPayload = Payload & {
|
|
|
103724
104741
|
id?: Maybe<Scalars['ID']['output']>;
|
|
103725
104742
|
success: Scalars['Boolean']['output'];
|
|
103726
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
|
+
};
|
|
103727
104767
|
export declare type TrelloUploadedBackground = {
|
|
103728
104768
|
__typename?: 'TrelloUploadedBackground';
|
|
103729
104769
|
objectId: Scalars['ID']['output'];
|
|
@@ -105590,7 +106630,7 @@ export declare type UpdateJiraPlaybookStepInput = {
|
|
|
105590
106630
|
type: JiraPlaybookStepType;
|
|
105591
106631
|
};
|
|
105592
106632
|
export declare type UpdateMetadataInput = {
|
|
105593
|
-
ari
|
|
106633
|
+
ari?: InputMaybe<Scalars['String']['input']>;
|
|
105594
106634
|
extraProps?: InputMaybe<Array<PropInput>>;
|
|
105595
106635
|
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
105596
106636
|
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -105605,8 +106645,10 @@ export declare type UpdateNestedPageOwnersPayload = Payload & {
|
|
|
105605
106645
|
warnings?: Maybe<Array<Maybe<ChangeOwnerWarning>>>;
|
|
105606
106646
|
};
|
|
105607
106647
|
export declare type UpdateNoteInput = {
|
|
106648
|
+
backgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
105608
106649
|
body?: InputMaybe<Scalars['String']['input']>;
|
|
105609
|
-
|
|
106650
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
106651
|
+
metadata?: InputMaybe<UpdateMetadataInput>;
|
|
105610
106652
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
105611
106653
|
};
|
|
105612
106654
|
export declare type UpdateNotePayload = {
|