@forge/cli-shared 8.3.1-next.0 → 8.3.1-next.2
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 +14 -0
- package/out/graphql/graphql-types.d.ts +988 -50
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +80 -26
- 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 & {
|
|
@@ -3477,19 +3478,147 @@ export declare type AssetsDmDataSource = {
|
|
|
3477
3478
|
noOfRecords?: Maybe<Scalars['Int']['output']>;
|
|
3478
3479
|
statusText?: Maybe<Scalars['String']['output']>;
|
|
3479
3480
|
};
|
|
3481
|
+
export declare type AssetsDmDataSourceCleansingReason = {
|
|
3482
|
+
__typename?: 'AssetsDMDataSourceCleansingReason';
|
|
3483
|
+
reason: Scalars['String']['output'];
|
|
3484
|
+
reasonCode: Scalars['Int']['output'];
|
|
3485
|
+
reasonId: Scalars['ID']['output'];
|
|
3486
|
+
tenantId: Scalars['ID']['output'];
|
|
3487
|
+
};
|
|
3488
|
+
export declare type AssetsDmDataSourceCleansingReasonInput = {
|
|
3489
|
+
reason: Scalars['String']['input'];
|
|
3490
|
+
reasonCode: Scalars['Int']['input'];
|
|
3491
|
+
reasonId: Scalars['ID']['input'];
|
|
3492
|
+
tenantId: Scalars['ID']['input'];
|
|
3493
|
+
};
|
|
3494
|
+
export declare type AssetsDmDataSourceCleansingRule = {
|
|
3495
|
+
__typename?: 'AssetsDMDataSourceCleansingRule';
|
|
3496
|
+
dataSourceId: Scalars['ID']['output'];
|
|
3497
|
+
defFunction: AssetsDmDataSourceCleansingRuleDefFunction;
|
|
3498
|
+
defFunctionId: Scalars['ID']['output'];
|
|
3499
|
+
enabled: Scalars['Boolean']['output'];
|
|
3500
|
+
functionId: Scalars['ID']['output'];
|
|
3501
|
+
functionParameters: Array<AssetsDmDataSourceCleansingRuleFunctionParameter>;
|
|
3502
|
+
priority: Scalars['Int']['output'];
|
|
3503
|
+
reason: AssetsDmDataSourceCleansingReason;
|
|
3504
|
+
reasonId: Scalars['ID']['output'];
|
|
3505
|
+
};
|
|
3506
|
+
export declare type AssetsDmDataSourceCleansingRuleDefFunction = {
|
|
3507
|
+
__typename?: 'AssetsDMDataSourceCleansingRuleDefFunction';
|
|
3508
|
+
defFunctionId: Scalars['ID']['output'];
|
|
3509
|
+
defFunctionParameters: Array<AssetsDmDataSourceCleansingRuleDefFunctionParameter>;
|
|
3510
|
+
description: Scalars['String']['output'];
|
|
3511
|
+
name: Scalars['String']['output'];
|
|
3512
|
+
type: Scalars['String']['output'];
|
|
3513
|
+
};
|
|
3514
|
+
export declare type AssetsDmDataSourceCleansingRuleDefFunctionInput = {
|
|
3515
|
+
defFunctionId: Scalars['ID']['input'];
|
|
3516
|
+
defFunctionParameters: Array<AssetsDmDataSourceCleansingRuleDefFunctionParameterInput>;
|
|
3517
|
+
description: Scalars['String']['input'];
|
|
3518
|
+
name: Scalars['String']['input'];
|
|
3519
|
+
type: Scalars['String']['input'];
|
|
3520
|
+
};
|
|
3521
|
+
export declare type AssetsDmDataSourceCleansingRuleDefFunctionParameter = {
|
|
3522
|
+
__typename?: 'AssetsDMDataSourceCleansingRuleDefFunctionParameter';
|
|
3523
|
+
dataType: Scalars['Int']['output'];
|
|
3524
|
+
defFunctionId: Scalars['ID']['output'];
|
|
3525
|
+
defFunctionParameterId: Scalars['ID']['output'];
|
|
3526
|
+
description: Scalars['String']['output'];
|
|
3527
|
+
displayName: Scalars['String']['output'];
|
|
3528
|
+
displayOrder: Scalars['Int']['output'];
|
|
3529
|
+
isColumn: Scalars['Boolean']['output'];
|
|
3530
|
+
name: Scalars['String']['output'];
|
|
3531
|
+
required: Scalars['Boolean']['output'];
|
|
3532
|
+
type: Scalars['Int']['output'];
|
|
3533
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
3534
|
+
};
|
|
3535
|
+
export declare type AssetsDmDataSourceCleansingRuleDefFunctionParameterInput = {
|
|
3536
|
+
dataType: Scalars['Int']['input'];
|
|
3537
|
+
defFunctionId: Scalars['ID']['input'];
|
|
3538
|
+
defFunctionParameterId: Scalars['ID']['input'];
|
|
3539
|
+
description: Scalars['String']['input'];
|
|
3540
|
+
displayName: Scalars['String']['input'];
|
|
3541
|
+
displayOrder: Scalars['Int']['input'];
|
|
3542
|
+
isColumn: Scalars['Boolean']['input'];
|
|
3543
|
+
name: Scalars['String']['input'];
|
|
3544
|
+
required: Scalars['Boolean']['input'];
|
|
3545
|
+
type: Scalars['Int']['input'];
|
|
3546
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
3547
|
+
};
|
|
3548
|
+
export declare type AssetsDmDataSourceCleansingRuleFunctionParameter = {
|
|
3549
|
+
__typename?: 'AssetsDMDataSourceCleansingRuleFunctionParameter';
|
|
3550
|
+
defFunctionParameter: AssetsDmDataSourceCleansingRuleDefFunctionParameter;
|
|
3551
|
+
defFunctionParameterId: Scalars['ID']['output'];
|
|
3552
|
+
functionId: Scalars['ID']['output'];
|
|
3553
|
+
functionParameterId: Scalars['ID']['output'];
|
|
3554
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
3555
|
+
};
|
|
3556
|
+
export declare type AssetsDmDataSourceCleansingRuleFunctionParameterInput = {
|
|
3557
|
+
defFunctionParameter: AssetsDmDataSourceCleansingRuleDefFunctionParameterInput;
|
|
3558
|
+
defFunctionParameterId: Scalars['ID']['input'];
|
|
3559
|
+
functionId: Scalars['ID']['input'];
|
|
3560
|
+
functionParameterId: Scalars['ID']['input'];
|
|
3561
|
+
value?: InputMaybe<Scalars['String']['input']>;
|
|
3562
|
+
};
|
|
3563
|
+
export declare type AssetsDmDataSourceCleansingRuleInput = {
|
|
3564
|
+
dataSourceId: Scalars['ID']['input'];
|
|
3565
|
+
defFunction: AssetsDmDataSourceCleansingRuleDefFunctionInput;
|
|
3566
|
+
defFunctionId: Scalars['ID']['input'];
|
|
3567
|
+
enabled: Scalars['Boolean']['input'];
|
|
3568
|
+
functionId: Scalars['ID']['input'];
|
|
3569
|
+
functionParameters: Array<AssetsDmDataSourceCleansingRuleFunctionParameterInput>;
|
|
3570
|
+
priority: Scalars['Int']['input'];
|
|
3571
|
+
reason: AssetsDmDataSourceCleansingReasonInput;
|
|
3572
|
+
reasonId: Scalars['ID']['input'];
|
|
3573
|
+
};
|
|
3574
|
+
export declare type AssetsDmDataSourceCleansingRulesConfigureResponse = {
|
|
3575
|
+
__typename?: 'AssetsDMDataSourceCleansingRulesConfigureResponse';
|
|
3576
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
3577
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3578
|
+
};
|
|
3579
|
+
export declare type AssetsDmDataSourceCleansingRulesResponse = {
|
|
3580
|
+
__typename?: 'AssetsDMDataSourceCleansingRulesResponse';
|
|
3581
|
+
cleansingRules?: Maybe<Array<AssetsDmDataSourceCleansingRule>>;
|
|
3582
|
+
columns?: Maybe<Array<Scalars['String']['output']>>;
|
|
3583
|
+
defaultCleansingRules?: Maybe<Array<AssetsDmDataSourceCleansingRuleDefFunction>>;
|
|
3584
|
+
reasons?: Maybe<Array<AssetsDmDataSourceCleansingReason>>;
|
|
3585
|
+
};
|
|
3480
3586
|
export declare type AssetsDmDataSourceConfig = {
|
|
3481
3587
|
__typename?: 'AssetsDMDataSourceConfig';
|
|
3482
3588
|
adapterType?: Maybe<Scalars['String']['output']>;
|
|
3483
3589
|
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
3484
3590
|
objectClassType?: Maybe<AssetsDmObjectClassEnum>;
|
|
3485
3591
|
};
|
|
3592
|
+
export declare type AssetsDmDataSourceConfigureMappingInput = {
|
|
3593
|
+
columnType: Scalars['Int']['input'];
|
|
3594
|
+
columnTypeName: Scalars['String']['input'];
|
|
3595
|
+
dataSourceId: Scalars['ID']['input'];
|
|
3596
|
+
destinationColumnName: Scalars['String']['input'];
|
|
3597
|
+
isChanged: Scalars['Boolean']['input'];
|
|
3598
|
+
isNew: Scalars['Boolean']['input'];
|
|
3599
|
+
isPkElsewhere: Scalars['Boolean']['input'];
|
|
3600
|
+
isPrimaryKey: Scalars['Boolean']['input'];
|
|
3601
|
+
isRemoved: Scalars['Boolean']['input'];
|
|
3602
|
+
isSecondaryKey: Scalars['Boolean']['input'];
|
|
3603
|
+
objectAttributeId?: InputMaybe<Scalars['ID']['input']>;
|
|
3604
|
+
objectAttributeMappingId: Scalars['ID']['input'];
|
|
3605
|
+
objectAttributeName?: InputMaybe<Scalars['String']['input']>;
|
|
3606
|
+
sourceColumnName: Scalars['String']['input'];
|
|
3607
|
+
};
|
|
3608
|
+
export declare type AssetsDmDataSourceConfigureMappingResponse = {
|
|
3609
|
+
__typename?: 'AssetsDMDataSourceConfigureMappingResponse';
|
|
3610
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
3611
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
3612
|
+
};
|
|
3486
3613
|
export declare type AssetsDmDataSourceDefaultTransformFunctionParameter = {
|
|
3487
3614
|
__typename?: 'AssetsDMDataSourceDefaultTransformFunctionParameter';
|
|
3488
3615
|
defFunctionParameterId: Scalars['ID']['output'];
|
|
3489
3616
|
description: Scalars['String']['output'];
|
|
3490
3617
|
displayName: Scalars['String']['output'];
|
|
3618
|
+
isSelectField: Scalars['Boolean']['output'];
|
|
3491
3619
|
name: Scalars['String']['output'];
|
|
3492
3620
|
required: Scalars['Boolean']['output'];
|
|
3621
|
+
selectFieldType?: Maybe<AssetsDmDataSourceTransformSelectFieldType>;
|
|
3493
3622
|
type: AssetsDmDataSourceTransformParameterType;
|
|
3494
3623
|
value?: Maybe<Scalars['String']['output']>;
|
|
3495
3624
|
};
|
|
@@ -3536,9 +3665,33 @@ export declare type AssetsDmDataSourceJobs = {
|
|
|
3536
3665
|
jobId: Scalars['String']['output'];
|
|
3537
3666
|
name: Scalars['String']['output'];
|
|
3538
3667
|
};
|
|
3668
|
+
export declare type AssetsDmDataSourceMapping = {
|
|
3669
|
+
__typename?: 'AssetsDMDataSourceMapping';
|
|
3670
|
+
columnType: Scalars['Int']['output'];
|
|
3671
|
+
columnTypeName: Scalars['String']['output'];
|
|
3672
|
+
dataSourceId: Scalars['ID']['output'];
|
|
3673
|
+
destinationColumnName: Scalars['String']['output'];
|
|
3674
|
+
isChanged: Scalars['Boolean']['output'];
|
|
3675
|
+
isNew: Scalars['Boolean']['output'];
|
|
3676
|
+
isPkElsewhere: Scalars['Boolean']['output'];
|
|
3677
|
+
isPrimaryKey: Scalars['Boolean']['output'];
|
|
3678
|
+
isRemoved: Scalars['Boolean']['output'];
|
|
3679
|
+
isSecondaryKey: Scalars['Boolean']['output'];
|
|
3680
|
+
objectAttributeId?: Maybe<Scalars['ID']['output']>;
|
|
3681
|
+
objectAttributeMappingId: Scalars['ID']['output'];
|
|
3682
|
+
objectAttributeName?: Maybe<Scalars['String']['output']>;
|
|
3683
|
+
objectAttributesModel: Array<AssetsDmDataSourceMappingObjectAttributeModel>;
|
|
3684
|
+
sourceColumnName: Scalars['String']['output'];
|
|
3685
|
+
};
|
|
3686
|
+
export declare type AssetsDmDataSourceMappingObjectAttributeModel = {
|
|
3687
|
+
__typename?: 'AssetsDMDataSourceMappingObjectAttributeModel';
|
|
3688
|
+
dropdownDisplayName: Scalars['String']['output'];
|
|
3689
|
+
name: Scalars['String']['output'];
|
|
3690
|
+
};
|
|
3539
3691
|
export declare enum AssetsDmDataSourceOperationEnum {
|
|
3540
3692
|
Create = "Create",
|
|
3541
|
-
Update = "Update"
|
|
3693
|
+
Update = "Update",
|
|
3694
|
+
UpdateTransform = "UpdateTransform"
|
|
3542
3695
|
}
|
|
3543
3696
|
export declare type AssetsDmDataSourceResponse = {
|
|
3544
3697
|
__typename?: 'AssetsDMDataSourceResponse';
|
|
@@ -3560,6 +3713,17 @@ export declare type AssetsDmDataSourceTransform = {
|
|
|
3560
3713
|
defaultFunctions: Array<AssetsDmDataSourceDefaultTransformFunctions>;
|
|
3561
3714
|
functions: Array<AssetsDmDataSourceTransformFunctions>;
|
|
3562
3715
|
isTemplate: Scalars['Boolean']['output'];
|
|
3716
|
+
options: AssetsDmDataSourceTransformOptions;
|
|
3717
|
+
};
|
|
3718
|
+
export declare type AssetsDmDataSourceTransformColumn = {
|
|
3719
|
+
__typename?: 'AssetsDMDataSourceTransformColumn';
|
|
3720
|
+
name: Scalars['String']['output'];
|
|
3721
|
+
type: Scalars['String']['output'];
|
|
3722
|
+
};
|
|
3723
|
+
export declare type AssetsDmDataSourceTransformColumnType = {
|
|
3724
|
+
__typename?: 'AssetsDMDataSourceTransformColumnType';
|
|
3725
|
+
format: Scalars['String']['output'];
|
|
3726
|
+
name: Scalars['String']['output'];
|
|
3563
3727
|
};
|
|
3564
3728
|
export declare type AssetsDmDataSourceTransformFunctionParameter = {
|
|
3565
3729
|
__typename?: 'AssetsDMDataSourceTransformFunctionParameter';
|
|
@@ -3567,9 +3731,11 @@ export declare type AssetsDmDataSourceTransformFunctionParameter = {
|
|
|
3567
3731
|
description: Scalars['String']['output'];
|
|
3568
3732
|
displayName: Scalars['String']['output'];
|
|
3569
3733
|
functionParameterId: Scalars['ID']['output'];
|
|
3734
|
+
isSelectField: Scalars['Boolean']['output'];
|
|
3570
3735
|
name: Scalars['String']['output'];
|
|
3571
3736
|
placeholder: Scalars['String']['output'];
|
|
3572
3737
|
required: Scalars['Boolean']['output'];
|
|
3738
|
+
selectFieldType?: Maybe<AssetsDmDataSourceTransformSelectFieldType>;
|
|
3573
3739
|
type: AssetsDmDataSourceTransformParameterType;
|
|
3574
3740
|
value: Scalars['String']['output'];
|
|
3575
3741
|
};
|
|
@@ -3583,12 +3749,34 @@ export declare type AssetsDmDataSourceTransformFunctions = {
|
|
|
3583
3749
|
functionParameters: Array<AssetsDmDataSourceTransformFunctionParameter>;
|
|
3584
3750
|
priority: Scalars['Int']['output'];
|
|
3585
3751
|
};
|
|
3752
|
+
export declare type AssetsDmDataSourceTransformInterval = {
|
|
3753
|
+
__typename?: 'AssetsDMDataSourceTransformInterval';
|
|
3754
|
+
name: Scalars['String']['output'];
|
|
3755
|
+
value: Scalars['String']['output'];
|
|
3756
|
+
};
|
|
3757
|
+
export declare type AssetsDmDataSourceTransformOptions = {
|
|
3758
|
+
__typename?: 'AssetsDMDataSourceTransformOptions';
|
|
3759
|
+
columnTypes?: Maybe<Array<AssetsDmDataSourceTransformColumnType>>;
|
|
3760
|
+
columns?: Maybe<Array<AssetsDmDataSourceTransformColumn>>;
|
|
3761
|
+
columnsWithDateTime?: Maybe<Array<AssetsDmDataSourceTransformColumn>>;
|
|
3762
|
+
dateFormats?: Maybe<Array<AssetsDmDateFormats>>;
|
|
3763
|
+
intervals?: Maybe<Array<AssetsDmDataSourceTransformInterval>>;
|
|
3764
|
+
jobs?: Maybe<Array<AssetsDmDataSourceJobs>>;
|
|
3765
|
+
};
|
|
3586
3766
|
export declare enum AssetsDmDataSourceTransformParameterType {
|
|
3587
3767
|
Date = "date",
|
|
3588
3768
|
Numeric = "numeric",
|
|
3589
3769
|
Select = "select",
|
|
3590
3770
|
String = "string"
|
|
3591
3771
|
}
|
|
3772
|
+
export declare enum AssetsDmDataSourceTransformSelectFieldType {
|
|
3773
|
+
ColumnTypes = "columnTypes",
|
|
3774
|
+
Columns = "columns",
|
|
3775
|
+
ColumnsWithDateTime = "columnsWithDateTime",
|
|
3776
|
+
DateFormats = "dateFormats",
|
|
3777
|
+
Intervals = "intervals",
|
|
3778
|
+
Jobs = "jobs"
|
|
3779
|
+
}
|
|
3592
3780
|
export declare type AssetsDmDataSourceTypes = {
|
|
3593
3781
|
__typename?: 'AssetsDMDataSourceTypes';
|
|
3594
3782
|
dataSourceTypeId: Scalars['ID']['output'];
|
|
@@ -3653,15 +3841,45 @@ export declare type AssetsDmObjectSchema = {
|
|
|
3653
3841
|
name: Scalars['String']['output'];
|
|
3654
3842
|
objectCount: Scalars['Int']['output'];
|
|
3655
3843
|
};
|
|
3844
|
+
export declare type AssetsDmObjectTag = {
|
|
3845
|
+
__typename?: 'AssetsDMObjectTag';
|
|
3846
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
3847
|
+
name: Scalars['String']['output'];
|
|
3848
|
+
objectId: Scalars['ID']['output'];
|
|
3849
|
+
tagCode: Scalars['Int']['output'];
|
|
3850
|
+
tagId: Scalars['ID']['output'];
|
|
3851
|
+
};
|
|
3852
|
+
export declare type AssetsDmObjectTagCreateInput = {
|
|
3853
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
3854
|
+
name: Scalars['String']['input'];
|
|
3855
|
+
objectId: Scalars['ID']['input'];
|
|
3856
|
+
};
|
|
3857
|
+
export declare type AssetsDmObjectTagCreateResponse = {
|
|
3858
|
+
__typename?: 'AssetsDMObjectTagCreateResponse';
|
|
3859
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
3860
|
+
message: Scalars['String']['output'];
|
|
3861
|
+
};
|
|
3862
|
+
export declare type AssetsDmObjectTagDeleteResponse = {
|
|
3863
|
+
__typename?: 'AssetsDMObjectTagDeleteResponse';
|
|
3864
|
+
isSuccessful: Scalars['Boolean']['output'];
|
|
3865
|
+
message: Scalars['String']['output'];
|
|
3866
|
+
};
|
|
3867
|
+
export declare type AssetsDmObjectTags = {
|
|
3868
|
+
__typename?: 'AssetsDMObjectTags';
|
|
3869
|
+
count: Scalars['Int']['output'];
|
|
3870
|
+
data: Array<AssetsDmObjectTag>;
|
|
3871
|
+
};
|
|
3656
3872
|
export declare enum AssetsDmObjectsListColumnType {
|
|
3657
3873
|
Boolean = "BOOLEAN",
|
|
3658
3874
|
Datetime = "DATETIME",
|
|
3659
3875
|
Icon = "ICON",
|
|
3876
|
+
Number = "NUMBER",
|
|
3660
3877
|
String = "STRING",
|
|
3661
3878
|
Tag = "TAG"
|
|
3662
3879
|
}
|
|
3663
3880
|
export declare type AssetsDmObjectsListColumns = {
|
|
3664
3881
|
__typename?: 'AssetsDMObjectsListColumns';
|
|
3882
|
+
columnsCount: Scalars['Int']['output'];
|
|
3665
3883
|
dataColumns: Array<AssetsDmObjectsListDataColumn>;
|
|
3666
3884
|
};
|
|
3667
3885
|
export declare type AssetsDmObjectsListDataColumn = {
|
|
@@ -3783,12 +4001,17 @@ export declare type AssetsIcon = {
|
|
|
3783
4001
|
url16?: Maybe<Scalars['String']['output']>;
|
|
3784
4002
|
url48?: Maybe<Scalars['String']['output']>;
|
|
3785
4003
|
};
|
|
4004
|
+
export declare type AssetsLinks = {
|
|
4005
|
+
__typename?: 'AssetsLinks';
|
|
4006
|
+
web?: Maybe<Scalars['String']['output']>;
|
|
4007
|
+
};
|
|
3786
4008
|
export declare type AssetsObject = Node & {
|
|
3787
4009
|
__typename?: 'AssetsObject';
|
|
3788
4010
|
avatar?: Maybe<AssetsAvatar>;
|
|
3789
4011
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
3790
4012
|
id: Scalars['ID']['output'];
|
|
3791
4013
|
label?: Maybe<Scalars['String']['output']>;
|
|
4014
|
+
links?: Maybe<AssetsLinks>;
|
|
3792
4015
|
objectKey?: Maybe<Scalars['String']['output']>;
|
|
3793
4016
|
objectType?: Maybe<AssetsObjectType>;
|
|
3794
4017
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -3798,6 +4021,7 @@ export declare type AssetsObjectType = Node & {
|
|
|
3798
4021
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
3799
4022
|
icon?: Maybe<AssetsIcon>;
|
|
3800
4023
|
id: Scalars['ID']['output'];
|
|
4024
|
+
links?: Maybe<AssetsLinks>;
|
|
3801
4025
|
name?: Maybe<Scalars['String']['output']>;
|
|
3802
4026
|
schema?: Maybe<AssetsSchema>;
|
|
3803
4027
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -3807,6 +4031,7 @@ export declare type AssetsSchema = Node & {
|
|
|
3807
4031
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
3808
4032
|
id: Scalars['ID']['output'];
|
|
3809
4033
|
key?: Maybe<Scalars['String']['output']>;
|
|
4034
|
+
links?: Maybe<AssetsLinks>;
|
|
3810
4035
|
name?: Maybe<Scalars['String']['output']>;
|
|
3811
4036
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
3812
4037
|
};
|
|
@@ -5418,6 +5643,8 @@ export declare type CcpOfferingChargeElement = {
|
|
|
5418
5643
|
};
|
|
5419
5644
|
export declare type CcpOfferingChargeElementUsageConfig = {
|
|
5420
5645
|
__typename?: 'CcpOfferingChargeElementUsageConfig';
|
|
5646
|
+
consumerKeyType?: Maybe<Scalars['String']['output']>;
|
|
5647
|
+
scale?: Maybe<CcpUsageConfigScale>;
|
|
5421
5648
|
usageKey?: Maybe<Scalars['String']['output']>;
|
|
5422
5649
|
};
|
|
5423
5650
|
export declare type CcpOfferingGroup = {
|
|
@@ -5431,7 +5658,8 @@ export declare type CcpOfferingGroup = {
|
|
|
5431
5658
|
slug?: Maybe<Scalars['String']['output']>;
|
|
5432
5659
|
};
|
|
5433
5660
|
export declare enum CcpOfferingHostingType {
|
|
5434
|
-
Cloud = "CLOUD"
|
|
5661
|
+
Cloud = "CLOUD",
|
|
5662
|
+
Datacenter = "DATACENTER"
|
|
5435
5663
|
}
|
|
5436
5664
|
export declare type CcpOfferingRelationship = {
|
|
5437
5665
|
__typename?: 'CcpOfferingRelationship';
|
|
@@ -6563,6 +6791,13 @@ export declare enum CcpTrialEndBehaviour {
|
|
|
6563
6791
|
BillingPlan = "BILLING_PLAN",
|
|
6564
6792
|
TrialPlan = "TRIAL_PLAN"
|
|
6565
6793
|
}
|
|
6794
|
+
export declare type CcpUsageConfigScale = {
|
|
6795
|
+
__typename?: 'CcpUsageConfigScale';
|
|
6796
|
+
output?: Maybe<Scalars['String']['output']>;
|
|
6797
|
+
ratio?: Maybe<Scalars['String']['output']>;
|
|
6798
|
+
source?: Maybe<Scalars['String']['output']>;
|
|
6799
|
+
unit?: Maybe<Scalars['String']['output']>;
|
|
6800
|
+
};
|
|
6566
6801
|
export declare type CcpUsageQueryBucket = {
|
|
6567
6802
|
__typename?: 'CcpUsageQueryBucket';
|
|
6568
6803
|
end?: Maybe<Scalars['Float']['output']>;
|
|
@@ -12497,7 +12732,14 @@ export declare type ConfluenceAncestor = ConfluenceDatabase | ConfluenceEmbed |
|
|
|
12497
12732
|
export declare type ConfluenceAppInstallationLicense = {
|
|
12498
12733
|
__typename?: 'ConfluenceAppInstallationLicense';
|
|
12499
12734
|
active: Scalars['Boolean']['output'];
|
|
12735
|
+
billingPeriod?: Maybe<Scalars['String']['output']>;
|
|
12500
12736
|
capabilitySet?: Maybe<ConfluenceAppInstallationLicenseCapabilitySet>;
|
|
12737
|
+
ccpEntitlementId?: Maybe<Scalars['String']['output']>;
|
|
12738
|
+
ccpEntitlementSlug?: Maybe<Scalars['String']['output']>;
|
|
12739
|
+
isEvaluation?: Maybe<Scalars['Boolean']['output']>;
|
|
12740
|
+
subscriptionEndDate?: Maybe<Scalars['String']['output']>;
|
|
12741
|
+
trialEndDate?: Maybe<Scalars['String']['output']>;
|
|
12742
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
12501
12743
|
};
|
|
12502
12744
|
export declare enum ConfluenceAppInstallationLicenseCapabilitySet {
|
|
12503
12745
|
CapabilityAdvanced = "CAPABILITY_ADVANCED",
|
|
@@ -12932,6 +13174,20 @@ export declare type ConfluenceConvertContentToFolderPayload = {
|
|
|
12932
13174
|
__typename?: 'ConfluenceConvertContentToFolderPayload';
|
|
12933
13175
|
content?: Maybe<Content>;
|
|
12934
13176
|
};
|
|
13177
|
+
export declare type ConfluenceConvertNoteInput = {
|
|
13178
|
+
containerId?: InputMaybe<Scalars['ID']['input']>;
|
|
13179
|
+
contentType: NotesContentType;
|
|
13180
|
+
id: Scalars['ID']['input'];
|
|
13181
|
+
parentId?: InputMaybe<Scalars['ID']['input']>;
|
|
13182
|
+
product: NotesProduct;
|
|
13183
|
+
};
|
|
13184
|
+
export declare type ConfluenceConvertNotePayload = {
|
|
13185
|
+
__typename?: 'ConfluenceConvertNotePayload';
|
|
13186
|
+
errors?: Maybe<Array<NoteMutationError>>;
|
|
13187
|
+
id: Scalars['ID']['output'];
|
|
13188
|
+
success: Scalars['Boolean']['output'];
|
|
13189
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
13190
|
+
};
|
|
12935
13191
|
export declare type ConfluenceCopyPageTaskResult = {
|
|
12936
13192
|
__typename?: 'ConfluenceCopyPageTaskResult';
|
|
12937
13193
|
page?: Maybe<ConfluencePage>;
|
|
@@ -13347,6 +13603,7 @@ export declare type ConfluenceExtensionPrincipal = {
|
|
|
13347
13603
|
id?: Maybe<Scalars['ID']['output']>;
|
|
13348
13604
|
};
|
|
13349
13605
|
export declare type ConfluenceExtensionRenderingContextInput = {
|
|
13606
|
+
contentId?: InputMaybe<Scalars['Long']['input']>;
|
|
13350
13607
|
spaceId?: InputMaybe<Scalars['Long']['input']>;
|
|
13351
13608
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
13352
13609
|
};
|
|
@@ -13435,10 +13692,12 @@ export declare type ConfluenceForgeExtension = {
|
|
|
13435
13692
|
appId: Scalars['ID']['output'];
|
|
13436
13693
|
appOwner?: Maybe<Scalars['String']['output']>;
|
|
13437
13694
|
appVersion?: Maybe<Scalars['String']['output']>;
|
|
13695
|
+
confluenceUserAccess?: Maybe<ConfluenceUserAccess>;
|
|
13438
13696
|
consentUrl?: Maybe<Scalars['String']['output']>;
|
|
13439
13697
|
definitionId: Scalars['ID']['output'];
|
|
13440
13698
|
egress?: Maybe<Array<ConfluenceExtensionEgressDeclaration>>;
|
|
13441
13699
|
environmentId: Scalars['ID']['output'];
|
|
13700
|
+
environmentKey?: Maybe<Scalars['String']['output']>;
|
|
13442
13701
|
environmentType: Scalars['String']['output'];
|
|
13443
13702
|
hiddenBy?: Maybe<ConfluenceExtensionVisibilityControlMechanism>;
|
|
13444
13703
|
id: Scalars['ID']['output'];
|
|
@@ -13828,6 +14087,10 @@ export declare enum ConfluenceMutationContentStatus {
|
|
|
13828
14087
|
Current = "CURRENT",
|
|
13829
14088
|
Draft = "DRAFT"
|
|
13830
14089
|
}
|
|
14090
|
+
export declare enum ConfluenceNotesOrdering {
|
|
14091
|
+
DateLastModifiedAsc = "DATE_LAST_MODIFIED_ASC",
|
|
14092
|
+
DateLastModifiedDesc = "DATE_LAST_MODIFIED_DESC"
|
|
14093
|
+
}
|
|
13831
14094
|
export declare type ConfluenceOperationCheck = {
|
|
13832
14095
|
__typename?: 'ConfluenceOperationCheck';
|
|
13833
14096
|
operation?: Maybe<ConfluenceOperationName>;
|
|
@@ -14628,6 +14891,15 @@ export declare type ConfluenceUpdateAdminAnnouncementBannerInput = {
|
|
|
14628
14891
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
14629
14892
|
visibility?: InputMaybe<ConfluenceAdminAnnouncementBannerVisibilityType>;
|
|
14630
14893
|
};
|
|
14894
|
+
export declare type ConfluenceUpdateCalendarViewInput = {
|
|
14895
|
+
view: Scalars['String']['input'];
|
|
14896
|
+
};
|
|
14897
|
+
export declare type ConfluenceUpdateCalendarViewPayload = {
|
|
14898
|
+
__typename?: 'ConfluenceUpdateCalendarViewPayload';
|
|
14899
|
+
errors?: Maybe<Array<MutationError>>;
|
|
14900
|
+
success: Scalars['Boolean']['output'];
|
|
14901
|
+
userCalendarPreference?: Maybe<ConfluenceCalendarPreference>;
|
|
14902
|
+
};
|
|
14631
14903
|
export declare type ConfluenceUpdateCommentInput = {
|
|
14632
14904
|
body: ConfluenceContentBodyInput;
|
|
14633
14905
|
id: Scalars['ID']['input'];
|
|
@@ -14824,6 +15096,11 @@ export declare type ConfluenceUser = {
|
|
|
14824
15096
|
space?: Maybe<Space>;
|
|
14825
15097
|
userKey?: Maybe<Scalars['String']['output']>;
|
|
14826
15098
|
};
|
|
15099
|
+
export declare type ConfluenceUserAccess = {
|
|
15100
|
+
__typename?: 'ConfluenceUserAccess';
|
|
15101
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15102
|
+
hasAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
15103
|
+
};
|
|
14827
15104
|
export declare type ConfluenceUserClass = {
|
|
14828
15105
|
__typename?: 'ConfluenceUserClass';
|
|
14829
15106
|
displayName: Scalars['String']['output'];
|
|
@@ -17263,11 +17540,94 @@ export declare type CountUsersGroupByPageItem = {
|
|
|
17263
17540
|
};
|
|
17264
17541
|
export declare type CplsCapacityPlanningPeopleView = {
|
|
17265
17542
|
__typename?: 'CplsCapacityPlanningPeopleView';
|
|
17543
|
+
contributors: CplsContributorConnection;
|
|
17544
|
+
id: Scalars['ID']['output'];
|
|
17545
|
+
timeCells: Array<CplsTimeCell>;
|
|
17546
|
+
viewSettings: CplsViewSettings;
|
|
17547
|
+
};
|
|
17548
|
+
export declare type CplsCapacityPlanningPeopleViewContributorsArgs = {
|
|
17549
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17550
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
17551
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17552
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
17553
|
+
};
|
|
17554
|
+
export declare type CplsContribution = {
|
|
17555
|
+
__typename?: 'CplsContribution';
|
|
17556
|
+
endDate: Scalars['Date']['output'];
|
|
17557
|
+
startDate: Scalars['Date']['output'];
|
|
17558
|
+
value?: Maybe<Scalars['Float']['output']>;
|
|
17559
|
+
valueType: CplsContributionValueType;
|
|
17560
|
+
};
|
|
17561
|
+
export declare type CplsContributionAggregation = {
|
|
17562
|
+
__typename?: 'CplsContributionAggregation';
|
|
17563
|
+
availability: Scalars['Float']['output'];
|
|
17564
|
+
endDate: Scalars['Date']['output'];
|
|
17565
|
+
startDate: Scalars['Date']['output'];
|
|
17566
|
+
totalContributionHours: Scalars['Float']['output'];
|
|
17567
|
+
};
|
|
17568
|
+
export declare enum CplsContributionValueType {
|
|
17569
|
+
Hours = "HOURS",
|
|
17570
|
+
Percentage = "PERCENTAGE"
|
|
17571
|
+
}
|
|
17572
|
+
export declare type CplsContributor = {
|
|
17573
|
+
__typename?: 'CplsContributor';
|
|
17574
|
+
contributionAggregations: Array<CplsContributionAggregation>;
|
|
17575
|
+
contributorData?: Maybe<CplsContributorData>;
|
|
17576
|
+
contributorWork: CplsContributorWorkConnection;
|
|
17577
|
+
};
|
|
17578
|
+
export declare type CplsContributorContributorWorkArgs = {
|
|
17579
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
17580
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
17581
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
17582
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
17583
|
+
};
|
|
17584
|
+
export declare type CplsContributorConnection = HasPageInfo & {
|
|
17585
|
+
__typename?: 'CplsContributorConnection';
|
|
17586
|
+
edges: Array<CplsContributorEdge>;
|
|
17587
|
+
pageInfo: PageInfo;
|
|
17588
|
+
};
|
|
17589
|
+
export declare type CplsContributorData = AppUser | AtlassianAccountUser | CustomerUser;
|
|
17590
|
+
export declare type CplsContributorEdge = {
|
|
17591
|
+
__typename?: 'CplsContributorEdge';
|
|
17592
|
+
cursor: Scalars['String']['output'];
|
|
17593
|
+
node: CplsContributor;
|
|
17594
|
+
};
|
|
17595
|
+
export declare type CplsContributorWorkConnection = HasPageInfo & {
|
|
17596
|
+
__typename?: 'CplsContributorWorkConnection';
|
|
17597
|
+
edges: Array<CplsContributorWorkEdge>;
|
|
17598
|
+
pageInfo: PageInfo;
|
|
17599
|
+
};
|
|
17600
|
+
export declare type CplsContributorWorkEdge = {
|
|
17601
|
+
__typename?: 'CplsContributorWorkEdge';
|
|
17602
|
+
contributions: Array<CplsContribution>;
|
|
17603
|
+
contributorId: Scalars['ID']['output'];
|
|
17604
|
+
cursor: Scalars['String']['output'];
|
|
17605
|
+
workData?: Maybe<CplsWorkData>;
|
|
17606
|
+
workId: Scalars['ID']['output'];
|
|
17607
|
+
};
|
|
17608
|
+
export declare type CplsCustomContributionTarget = {
|
|
17609
|
+
__typename?: 'CplsCustomContributionTarget';
|
|
17266
17610
|
id: Scalars['ID']['output'];
|
|
17611
|
+
name: Scalars['String']['output'];
|
|
17612
|
+
};
|
|
17613
|
+
export declare type CplsTimeCell = {
|
|
17614
|
+
__typename?: 'CplsTimeCell';
|
|
17615
|
+
endDate: Scalars['Date']['output'];
|
|
17616
|
+
startDate: Scalars['Date']['output'];
|
|
17617
|
+
};
|
|
17618
|
+
export declare enum CplsTimeScaleType {
|
|
17619
|
+
Weekly = "WEEKLY"
|
|
17620
|
+
}
|
|
17621
|
+
export declare type CplsViewSettings = {
|
|
17622
|
+
__typename?: 'CplsViewSettings';
|
|
17623
|
+
alwaysShowNumbersInGraph: Scalars['Boolean']['output'];
|
|
17624
|
+
contributionValueType: CplsContributionValueType;
|
|
17625
|
+
timeScale: CplsTimeScaleType;
|
|
17267
17626
|
};
|
|
17627
|
+
export declare type CplsWorkData = CplsCustomContributionTarget | JiraIssue;
|
|
17268
17628
|
export declare type CreateAppContainerPayload = Payload & {
|
|
17269
17629
|
__typename?: 'CreateAppContainerPayload';
|
|
17270
|
-
container
|
|
17630
|
+
container?: Maybe<AppContainer>;
|
|
17271
17631
|
errors?: Maybe<Array<MutationError>>;
|
|
17272
17632
|
success: Scalars['Boolean']['output'];
|
|
17273
17633
|
};
|
|
@@ -17836,6 +18196,7 @@ export declare type CreateMetadataInput = {
|
|
|
17836
18196
|
productLink?: InputMaybe<Scalars['String']['input']>;
|
|
17837
18197
|
};
|
|
17838
18198
|
export declare type CreateNoteInput = {
|
|
18199
|
+
backgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
17839
18200
|
body?: InputMaybe<Scalars['String']['input']>;
|
|
17840
18201
|
metadata?: InputMaybe<CreateMetadataInput>;
|
|
17841
18202
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -20071,12 +20432,14 @@ export declare type DeleteLabelPayload = {
|
|
|
20071
20432
|
label: Scalars['String']['output'];
|
|
20072
20433
|
};
|
|
20073
20434
|
export declare type DeleteNoteInput = {
|
|
20074
|
-
ari
|
|
20435
|
+
ari?: InputMaybe<Scalars['String']['input']>;
|
|
20436
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
20075
20437
|
};
|
|
20076
20438
|
export declare type DeleteNotePayload = {
|
|
20077
20439
|
__typename?: 'DeleteNotePayload';
|
|
20078
20440
|
ari?: Maybe<Scalars['String']['output']>;
|
|
20079
20441
|
errors?: Maybe<Array<NoteMutationError>>;
|
|
20442
|
+
id: Scalars['ID']['output'];
|
|
20080
20443
|
success: Scalars['Boolean']['output'];
|
|
20081
20444
|
};
|
|
20082
20445
|
export declare type DeletePagesInput = {
|
|
@@ -20802,6 +21165,12 @@ export declare type DevAiRovoDevCreateSessionPayload = Payload & {
|
|
|
20802
21165
|
session?: Maybe<DevAiRovoDevSession>;
|
|
20803
21166
|
success: Scalars['Boolean']['output'];
|
|
20804
21167
|
};
|
|
21168
|
+
export declare enum DevAiRovoDevPrStatus {
|
|
21169
|
+
Declined = "DECLINED",
|
|
21170
|
+
Draft = "DRAFT",
|
|
21171
|
+
Merged = "MERGED",
|
|
21172
|
+
Open = "OPEN"
|
|
21173
|
+
}
|
|
20805
21174
|
export declare enum DevAiRovoDevRaisePullRequestOption {
|
|
20806
21175
|
Always = "ALWAYS",
|
|
20807
21176
|
Draft = "DRAFT",
|
|
@@ -20828,7 +21197,10 @@ export declare type DevAiRovoDevSession = Node & {
|
|
|
20828
21197
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
20829
21198
|
id: Scalars['ID']['output'];
|
|
20830
21199
|
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
21200
|
+
issue?: Maybe<JiraIssue>;
|
|
21201
|
+
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
20831
21202
|
options?: Maybe<DevAiRovoDevSessionOptions>;
|
|
21203
|
+
prStatus?: Maybe<DevAiRovoDevPrStatus>;
|
|
20832
21204
|
promptAdf?: Maybe<Scalars['JSON']['output']>;
|
|
20833
21205
|
repository?: Maybe<DevAiRovoDevRepository>;
|
|
20834
21206
|
sessionStatus?: Maybe<DevAiRovoDevSessionStatus>;
|
|
@@ -21629,6 +22001,12 @@ export declare type DevOpsMetricsPerProjectPrCycleTimeMetricsArgs = {
|
|
|
21629
22001
|
filter: DevOpsMetricsPerProjectPrCycleTimeMetricsFilter;
|
|
21630
22002
|
first: Scalars['Int']['input'];
|
|
21631
22003
|
};
|
|
22004
|
+
export declare enum DevOpsMetricsComparisonOperator {
|
|
22005
|
+
EqualTo = "EQUAL_TO",
|
|
22006
|
+
GreaterThan = "GREATER_THAN",
|
|
22007
|
+
LessThan = "LESS_THAN",
|
|
22008
|
+
NotEqualTo = "NOT_EQUAL_TO"
|
|
22009
|
+
}
|
|
21632
22010
|
export declare type DevOpsMetricsCycleTime = {
|
|
21633
22011
|
__typename?: 'DevOpsMetricsCycleTime';
|
|
21634
22012
|
cycleTimeMetrics?: Maybe<Array<Maybe<DevOpsMetricsCycleTimeMetrics>>>;
|
|
@@ -21643,6 +22021,9 @@ export declare type DevOpsMetricsCycleTimeData = {
|
|
|
21643
22021
|
dateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
21644
22022
|
issuesShippedCount?: Maybe<Scalars['Int']['output']>;
|
|
21645
22023
|
};
|
|
22024
|
+
export declare type DevOpsMetricsCycleTimeInsight = {
|
|
22025
|
+
type: Scalars['String']['output'];
|
|
22026
|
+
};
|
|
21646
22027
|
export declare type DevOpsMetricsCycleTimeMean = DevOpsMetricsCycleTimeMetrics & {
|
|
21647
22028
|
__typename?: 'DevOpsMetricsCycleTimeMean';
|
|
21648
22029
|
aggregateData?: Maybe<Scalars['Long']['output']>;
|
|
@@ -21652,6 +22033,14 @@ export declare type DevOpsMetricsCycleTimeMetrics = {
|
|
|
21652
22033
|
aggregateData?: Maybe<Scalars['Long']['output']>;
|
|
21653
22034
|
data?: Maybe<Array<Maybe<DevOpsMetricsCycleTimeData>>>;
|
|
21654
22035
|
};
|
|
22036
|
+
export declare type DevOpsMetricsCycleTimePercentChangeTrendAlert = DevOpsMetricsCycleTimeInsight & {
|
|
22037
|
+
__typename?: 'DevOpsMetricsCycleTimePercentChangeTrendAlert';
|
|
22038
|
+
criterion: DevOpsMetricsTrendAlertCriterion;
|
|
22039
|
+
evaluationPeriod: DevOpsMetricsTrendAlertEvaluationPeriod;
|
|
22040
|
+
percentChange: Scalars['Float']['output'];
|
|
22041
|
+
percentOfTotalCycleTime: Scalars['Float']['output'];
|
|
22042
|
+
type: Scalars['String']['output'];
|
|
22043
|
+
};
|
|
21655
22044
|
export declare type DevOpsMetricsCycleTimePercentile = DevOpsMetricsCycleTimeMetrics & {
|
|
21656
22045
|
__typename?: 'DevOpsMetricsCycleTimePercentile';
|
|
21657
22046
|
aggregateData?: Maybe<Scalars['Long']['output']>;
|
|
@@ -21764,6 +22153,7 @@ export declare enum DevOpsMetricsPerPrCycleTimeBreakdownPhase {
|
|
|
21764
22153
|
}
|
|
21765
22154
|
export declare type DevOpsMetricsPerPrCycleTimeBreakdownPhaseMetrics = {
|
|
21766
22155
|
__typename?: 'DevOpsMetricsPerPRCycleTimeBreakdownPhaseMetrics';
|
|
22156
|
+
insights?: Maybe<Array<DevOpsMetricsCycleTimeInsight>>;
|
|
21767
22157
|
medianHistoricalPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
21768
22158
|
medianPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
21769
22159
|
phase?: Maybe<DevOpsMetricsPerPrCycleTimeBreakdownPhase>;
|
|
@@ -21813,6 +22203,16 @@ export declare type DevOpsMetricsRollupType = {
|
|
|
21813
22203
|
percentile?: InputMaybe<Scalars['Int']['input']>;
|
|
21814
22204
|
type: DevOpsMetricsRollupOption;
|
|
21815
22205
|
};
|
|
22206
|
+
export declare type DevOpsMetricsTrendAlertCriterion = {
|
|
22207
|
+
__typename?: 'DevOpsMetricsTrendAlertCriterion';
|
|
22208
|
+
operator?: Maybe<DevOpsMetricsComparisonOperator>;
|
|
22209
|
+
threshold: Scalars['Float']['output'];
|
|
22210
|
+
};
|
|
22211
|
+
export declare type DevOpsMetricsTrendAlertEvaluationPeriod = {
|
|
22212
|
+
__typename?: 'DevOpsMetricsTrendAlertEvaluationPeriod';
|
|
22213
|
+
endAtExclusive?: Maybe<Scalars['DateTime']['output']>;
|
|
22214
|
+
startFromInclusive?: Maybe<Scalars['DateTime']['output']>;
|
|
22215
|
+
};
|
|
21816
22216
|
export declare type DevOpsMutation = {
|
|
21817
22217
|
__typename?: 'DevOpsMutation';
|
|
21818
22218
|
_empty?: Maybe<Scalars['String']['output']>;
|
|
@@ -23480,7 +23880,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
23480
23880
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23481
23881
|
node?: Maybe<ExternalAssociation>;
|
|
23482
23882
|
};
|
|
23483
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
23883
|
+
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 | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
23484
23884
|
export declare type ExternalAttachment = {
|
|
23485
23885
|
__typename?: 'ExternalAttachment';
|
|
23486
23886
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -23976,12 +24376,14 @@ export declare type ExternalEntities = {
|
|
|
23976
24376
|
softwareService?: Maybe<Array<Maybe<ExternalSoftwareService>>>;
|
|
23977
24377
|
space?: Maybe<Array<Maybe<ExternalSpace>>>;
|
|
23978
24378
|
test?: Maybe<Array<Maybe<ExternalTest>>>;
|
|
24379
|
+
testExecution?: Maybe<Array<Maybe<ExternalTestExecution>>>;
|
|
24380
|
+
testRun?: Maybe<Array<Maybe<ExternalTestRun>>>;
|
|
23979
24381
|
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
23980
24382
|
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
23981
24383
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
23982
24384
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
23983
24385
|
};
|
|
23984
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
24386
|
+
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 | ExternalTestRun | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
23985
24387
|
export declare type ExternalEnvironment = {
|
|
23986
24388
|
__typename?: 'ExternalEnvironment';
|
|
23987
24389
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -24398,6 +24800,28 @@ export declare type ExternalTest = Node & {
|
|
|
24398
24800
|
url?: Maybe<Scalars['String']['output']>;
|
|
24399
24801
|
version?: Maybe<Scalars['String']['output']>;
|
|
24400
24802
|
};
|
|
24803
|
+
export declare type ExternalTestExecution = Node & {
|
|
24804
|
+
__typename?: 'ExternalTestExecution';
|
|
24805
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
24806
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
24807
|
+
createdBy?: Maybe<ExternalUser>;
|
|
24808
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
24809
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
24810
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
24811
|
+
id: Scalars['ID']['output'];
|
|
24812
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
24813
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
24814
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
24815
|
+
parent?: Maybe<ExternalEntity>;
|
|
24816
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
24817
|
+
provider?: Maybe<ExternalProvider>;
|
|
24818
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
24819
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
24820
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
24821
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
24822
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
24823
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
24824
|
+
};
|
|
24401
24825
|
export declare type ExternalTestInfo = {
|
|
24402
24826
|
__typename?: 'ExternalTestInfo';
|
|
24403
24827
|
numberFailed?: Maybe<Scalars['Int']['output']>;
|
|
@@ -24405,6 +24829,31 @@ export declare type ExternalTestInfo = {
|
|
|
24405
24829
|
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
24406
24830
|
totalNumber?: Maybe<Scalars['Int']['output']>;
|
|
24407
24831
|
};
|
|
24832
|
+
export declare type ExternalTestRun = Node & {
|
|
24833
|
+
__typename?: 'ExternalTestRun';
|
|
24834
|
+
assignee?: Maybe<ExternalUser>;
|
|
24835
|
+
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
24836
|
+
createdAt?: Maybe<Scalars['String']['output']>;
|
|
24837
|
+
createdBy?: Maybe<ExternalUser>;
|
|
24838
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
24839
|
+
environment?: Maybe<Scalars['String']['output']>;
|
|
24840
|
+
externalId?: Maybe<Scalars['String']['output']>;
|
|
24841
|
+
finishedAt?: Maybe<Scalars['String']['output']>;
|
|
24842
|
+
id: Scalars['ID']['output'];
|
|
24843
|
+
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
24844
|
+
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
24845
|
+
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
24846
|
+
parent?: Maybe<ExternalEntity>;
|
|
24847
|
+
parentId?: Maybe<Scalars['ID']['output']>;
|
|
24848
|
+
provider?: Maybe<ExternalProvider>;
|
|
24849
|
+
startedAt?: Maybe<Scalars['String']['output']>;
|
|
24850
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
24851
|
+
thirdPartyId?: Maybe<Scalars['String']['output']>;
|
|
24852
|
+
thumbnail?: Maybe<ExternalThumbnail>;
|
|
24853
|
+
updateSequenceNumber?: Maybe<Scalars['Long']['output']>;
|
|
24854
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
24855
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
24856
|
+
};
|
|
24408
24857
|
export declare type ExternalThumbnail = {
|
|
24409
24858
|
__typename?: 'ExternalThumbnail';
|
|
24410
24859
|
externalUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -30011,6 +30460,8 @@ export declare type GraphStore = {
|
|
|
30011
30460
|
parentIssueHasChildIssueRelationship?: Maybe<GraphStoreFullParentIssueHasChildIssueConnection>;
|
|
30012
30461
|
parentMessageHasChildMessage?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageConnection>;
|
|
30013
30462
|
parentMessageHasChildMessageInverse?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection>;
|
|
30463
|
+
parentTeamHasChildTeam?: Maybe<GraphStoreSimplifiedParentTeamHasChildTeamConnection>;
|
|
30464
|
+
parentTeamHasChildTeamInverse?: Maybe<GraphStoreSimplifiedParentTeamHasChildTeamInverseConnection>;
|
|
30014
30465
|
positionAllocatedToFocusArea?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection>;
|
|
30015
30466
|
positionAllocatedToFocusAreaInverse?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection>;
|
|
30016
30467
|
positionAssociatedExternalPosition?: Maybe<GraphStoreSimplifiedPositionAssociatedExternalPositionConnection>;
|
|
@@ -32672,6 +33123,20 @@ export declare type GraphStoreParentMessageHasChildMessageInverseArgs = {
|
|
|
32672
33123
|
id: Scalars['ID']['input'];
|
|
32673
33124
|
sort?: InputMaybe<GraphStoreParentMessageHasChildMessageSortInput>;
|
|
32674
33125
|
};
|
|
33126
|
+
export declare type GraphStoreParentTeamHasChildTeamArgs = {
|
|
33127
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33128
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33129
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33130
|
+
id: Scalars['ID']['input'];
|
|
33131
|
+
sort?: InputMaybe<GraphStoreParentTeamHasChildTeamSortInput>;
|
|
33132
|
+
};
|
|
33133
|
+
export declare type GraphStoreParentTeamHasChildTeamInverseArgs = {
|
|
33134
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
33135
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33136
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
33137
|
+
id: Scalars['ID']['input'];
|
|
33138
|
+
sort?: InputMaybe<GraphStoreParentTeamHasChildTeamSortInput>;
|
|
33139
|
+
};
|
|
32675
33140
|
export declare type GraphStorePositionAllocatedToFocusAreaArgs = {
|
|
32676
33141
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32677
33142
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37009,6 +37474,20 @@ export declare type GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderRe
|
|
|
37009
37474
|
to: Scalars['ID']['input'];
|
|
37010
37475
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
37011
37476
|
};
|
|
37477
|
+
export declare type GraphStoreCreateParentTeamHasChildTeamInput = {
|
|
37478
|
+
relationships: Array<GraphStoreCreateParentTeamHasChildTeamRelationshipInput>;
|
|
37479
|
+
};
|
|
37480
|
+
export declare type GraphStoreCreateParentTeamHasChildTeamPayload = Payload & {
|
|
37481
|
+
__typename?: 'GraphStoreCreateParentTeamHasChildTeamPayload';
|
|
37482
|
+
errors?: Maybe<Array<MutationError>>;
|
|
37483
|
+
success: Scalars['Boolean']['output'];
|
|
37484
|
+
};
|
|
37485
|
+
export declare type GraphStoreCreateParentTeamHasChildTeamRelationshipInput = {
|
|
37486
|
+
from: Scalars['ID']['input'];
|
|
37487
|
+
sequenceNumber?: InputMaybe<Scalars['Long']['input']>;
|
|
37488
|
+
to: Scalars['ID']['input'];
|
|
37489
|
+
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
37490
|
+
};
|
|
37012
37491
|
export declare type GraphStoreCreateProjectAssociatedOpsgenieTeamInput = {
|
|
37013
37492
|
relationships: Array<GraphStoreCreateProjectAssociatedOpsgenieTeamRelationshipInput>;
|
|
37014
37493
|
};
|
|
@@ -37387,6 +37866,7 @@ export declare type GraphStoreCypherQueryV2BatchConnection = {
|
|
|
37387
37866
|
};
|
|
37388
37867
|
export declare type GraphStoreCypherQueryV2BatchEdge = {
|
|
37389
37868
|
__typename?: 'GraphStoreCypherQueryV2BatchEdge';
|
|
37869
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37390
37870
|
node: GraphStoreCypherQueryV2BatchNode;
|
|
37391
37871
|
};
|
|
37392
37872
|
export declare type GraphStoreCypherQueryV2BatchFloatObject = {
|
|
@@ -37442,6 +37922,7 @@ export declare type GraphStoreCypherQueryV2Connection = {
|
|
|
37442
37922
|
};
|
|
37443
37923
|
export declare type GraphStoreCypherQueryV2Edge = {
|
|
37444
37924
|
__typename?: 'GraphStoreCypherQueryV2Edge';
|
|
37925
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37445
37926
|
node: GraphStoreCypherQueryV2Node;
|
|
37446
37927
|
};
|
|
37447
37928
|
export declare type GraphStoreCypherQueryV2FloatObject = {
|
|
@@ -37596,6 +38077,19 @@ export declare type GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderRe
|
|
|
37596
38077
|
from: Scalars['ID']['input'];
|
|
37597
38078
|
to: Scalars['ID']['input'];
|
|
37598
38079
|
};
|
|
38080
|
+
export declare type GraphStoreDeleteParentTeamHasChildTeamInput = {
|
|
38081
|
+
relationships: Array<GraphStoreDeleteParentTeamHasChildTeamRelationshipInput>;
|
|
38082
|
+
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
38083
|
+
};
|
|
38084
|
+
export declare type GraphStoreDeleteParentTeamHasChildTeamPayload = Payload & {
|
|
38085
|
+
__typename?: 'GraphStoreDeleteParentTeamHasChildTeamPayload';
|
|
38086
|
+
errors?: Maybe<Array<MutationError>>;
|
|
38087
|
+
success: Scalars['Boolean']['output'];
|
|
38088
|
+
};
|
|
38089
|
+
export declare type GraphStoreDeleteParentTeamHasChildTeamRelationshipInput = {
|
|
38090
|
+
from: Scalars['ID']['input'];
|
|
38091
|
+
to: Scalars['ID']['input'];
|
|
38092
|
+
};
|
|
37599
38093
|
export declare type GraphStoreDeleteProjectAssociatedOpsgenieTeamInput = {
|
|
37600
38094
|
relationships: Array<GraphStoreDeleteProjectAssociatedOpsgenieTeamRelationshipInput>;
|
|
37601
38095
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -41735,6 +42229,7 @@ export declare type GraphStoreMutation = {
|
|
|
41735
42229
|
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
41736
42230
|
createLoomVideoHasConfluencePage?: Maybe<GraphStoreCreateLoomVideoHasConfluencePagePayload>;
|
|
41737
42231
|
createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
42232
|
+
createParentTeamHasChildTeam?: Maybe<GraphStoreCreateParentTeamHasChildTeamPayload>;
|
|
41738
42233
|
createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
|
|
41739
42234
|
createProjectAssociatedToSecurityContainer?: Maybe<GraphStoreCreateProjectAssociatedToSecurityContainerPayload>;
|
|
41740
42235
|
createProjectDisassociatedRepo?: Maybe<GraphStoreCreateProjectDisassociatedRepoPayload>;
|
|
@@ -41761,6 +42256,7 @@ export declare type GraphStoreMutation = {
|
|
|
41761
42256
|
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
41762
42257
|
deleteLoomVideoHasConfluencePage?: Maybe<GraphStoreDeleteLoomVideoHasConfluencePagePayload>;
|
|
41763
42258
|
deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
42259
|
+
deleteParentTeamHasChildTeam?: Maybe<GraphStoreDeleteParentTeamHasChildTeamPayload>;
|
|
41764
42260
|
deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
|
|
41765
42261
|
deleteProjectAssociatedToSecurityContainer?: Maybe<GraphStoreDeleteProjectAssociatedToSecurityContainerPayload>;
|
|
41766
42262
|
deleteProjectDisassociatedRepo?: Maybe<GraphStoreDeleteProjectDisassociatedRepoPayload>;
|
|
@@ -41806,6 +42302,9 @@ export declare type GraphStoreMutationCreateLoomVideoHasConfluencePageArgs = {
|
|
|
41806
42302
|
export declare type GraphStoreMutationCreateMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
41807
42303
|
input?: InputMaybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
41808
42304
|
};
|
|
42305
|
+
export declare type GraphStoreMutationCreateParentTeamHasChildTeamArgs = {
|
|
42306
|
+
input?: InputMaybe<GraphStoreCreateParentTeamHasChildTeamInput>;
|
|
42307
|
+
};
|
|
41809
42308
|
export declare type GraphStoreMutationCreateProjectAssociatedOpsgenieTeamArgs = {
|
|
41810
42309
|
input?: InputMaybe<GraphStoreCreateProjectAssociatedOpsgenieTeamInput>;
|
|
41811
42310
|
};
|
|
@@ -41884,6 +42383,9 @@ export declare type GraphStoreMutationDeleteLoomVideoHasConfluencePageArgs = {
|
|
|
41884
42383
|
export declare type GraphStoreMutationDeleteMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
41885
42384
|
input?: InputMaybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
41886
42385
|
};
|
|
42386
|
+
export declare type GraphStoreMutationDeleteParentTeamHasChildTeamArgs = {
|
|
42387
|
+
input?: InputMaybe<GraphStoreDeleteParentTeamHasChildTeamInput>;
|
|
42388
|
+
};
|
|
41887
42389
|
export declare type GraphStoreMutationDeleteProjectAssociatedOpsgenieTeamArgs = {
|
|
41888
42390
|
input?: InputMaybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamInput>;
|
|
41889
42391
|
};
|
|
@@ -41956,6 +42458,12 @@ export declare type GraphStoreParentIssueHasChildIssueSortInput = {
|
|
|
41956
42458
|
export declare type GraphStoreParentMessageHasChildMessageSortInput = {
|
|
41957
42459
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41958
42460
|
};
|
|
42461
|
+
export declare type GraphStoreParentTeamHasChildTeamSortInput = {
|
|
42462
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
42463
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
42464
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42465
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
42466
|
+
};
|
|
41959
42467
|
export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
41960
42468
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41961
42469
|
};
|
|
@@ -45849,6 +46357,38 @@ export declare type GraphStoreSimplifiedParentMessageHasChildMessageInverseEdge
|
|
|
45849
46357
|
};
|
|
45850
46358
|
export declare type GraphStoreSimplifiedParentMessageHasChildMessageInverseUnion = ExternalMessage;
|
|
45851
46359
|
export declare type GraphStoreSimplifiedParentMessageHasChildMessageUnion = ExternalMessage;
|
|
46360
|
+
export declare type GraphStoreSimplifiedParentTeamHasChildTeamConnection = HasPageInfo & HasTotal & {
|
|
46361
|
+
__typename?: 'GraphStoreSimplifiedParentTeamHasChildTeamConnection';
|
|
46362
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentTeamHasChildTeamEdge>>>;
|
|
46363
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
46364
|
+
pageInfo: PageInfo;
|
|
46365
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
46366
|
+
};
|
|
46367
|
+
export declare type GraphStoreSimplifiedParentTeamHasChildTeamEdge = {
|
|
46368
|
+
__typename?: 'GraphStoreSimplifiedParentTeamHasChildTeamEdge';
|
|
46369
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46370
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46371
|
+
id: Scalars['ID']['output'];
|
|
46372
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46373
|
+
node?: Maybe<GraphStoreSimplifiedParentTeamHasChildTeamUnion>;
|
|
46374
|
+
};
|
|
46375
|
+
export declare type GraphStoreSimplifiedParentTeamHasChildTeamInverseConnection = HasPageInfo & HasTotal & {
|
|
46376
|
+
__typename?: 'GraphStoreSimplifiedParentTeamHasChildTeamInverseConnection';
|
|
46377
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedParentTeamHasChildTeamInverseEdge>>>;
|
|
46378
|
+
isExactCount?: Maybe<Scalars['Boolean']['output']>;
|
|
46379
|
+
pageInfo: PageInfo;
|
|
46380
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
46381
|
+
};
|
|
46382
|
+
export declare type GraphStoreSimplifiedParentTeamHasChildTeamInverseEdge = {
|
|
46383
|
+
__typename?: 'GraphStoreSimplifiedParentTeamHasChildTeamInverseEdge';
|
|
46384
|
+
createdAt: Scalars['DateTime']['output'];
|
|
46385
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
46386
|
+
id: Scalars['ID']['output'];
|
|
46387
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
46388
|
+
node?: Maybe<GraphStoreSimplifiedParentTeamHasChildTeamInverseUnion>;
|
|
46389
|
+
};
|
|
46390
|
+
export declare type GraphStoreSimplifiedParentTeamHasChildTeamInverseUnion = TeamV2;
|
|
46391
|
+
export declare type GraphStoreSimplifiedParentTeamHasChildTeamUnion = TeamV2;
|
|
45852
46392
|
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection = HasPageInfo & {
|
|
45853
46393
|
__typename?: 'GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection';
|
|
45854
46394
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaEdge>>>;
|
|
@@ -52517,6 +53057,7 @@ export declare type HelpCenter = Node & {
|
|
|
52517
53057
|
pages?: Maybe<Array<Maybe<HelpCenterPage>>>;
|
|
52518
53058
|
permissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
|
|
52519
53059
|
portals?: Maybe<HelpCenterPortals>;
|
|
53060
|
+
productEntityImages?: Maybe<Array<HelpCenterProductEntityImages>>;
|
|
52520
53061
|
projectMappingData?: Maybe<HelpCenterProjectMappingData>;
|
|
52521
53062
|
siteDefaultLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
52522
53063
|
slug?: Maybe<Scalars['String']['output']>;
|
|
@@ -52533,6 +53074,9 @@ export declare type HelpCenterPortalsArgs = {
|
|
|
52533
53074
|
portalsFilter?: InputMaybe<HelpCenterPortalFilter>;
|
|
52534
53075
|
sortOrder?: InputMaybe<HelpCenterPortalsSortOrder>;
|
|
52535
53076
|
};
|
|
53077
|
+
export declare type HelpCenterProductEntityImagesArgs = {
|
|
53078
|
+
filter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
53079
|
+
};
|
|
52536
53080
|
export declare enum HelpCenterAccessControlType {
|
|
52537
53081
|
External = "EXTERNAL",
|
|
52538
53082
|
GroupBased = "GROUP_BASED",
|
|
@@ -52738,7 +53282,8 @@ export declare type HelpCenterMediaConfig = {
|
|
|
52738
53282
|
};
|
|
52739
53283
|
export declare enum HelpCenterMediaConfigOperationType {
|
|
52740
53284
|
BannerUpload = "BANNER_UPLOAD",
|
|
52741
|
-
LogoUpload = "LOGO_UPLOAD"
|
|
53285
|
+
LogoUpload = "LOGO_UPLOAD",
|
|
53286
|
+
Read = "READ"
|
|
52742
53287
|
}
|
|
52743
53288
|
export declare type HelpCenterMutationApi = {
|
|
52744
53289
|
__typename?: 'HelpCenterMutationApi';
|
|
@@ -52968,6 +53513,21 @@ export declare enum HelpCenterPortalsType {
|
|
|
52968
53513
|
Hidden = "HIDDEN",
|
|
52969
53514
|
Visible = "VISIBLE"
|
|
52970
53515
|
}
|
|
53516
|
+
export declare type HelpCenterProductEntityImageInput = {
|
|
53517
|
+
entityId: Scalars['String']['input'];
|
|
53518
|
+
entityType: HelpCenterProductEntityType;
|
|
53519
|
+
fileId?: InputMaybe<Scalars['String']['input']>;
|
|
53520
|
+
imageUrl?: InputMaybe<Scalars['String']['input']>;
|
|
53521
|
+
};
|
|
53522
|
+
export declare type HelpCenterProductEntityImages = {
|
|
53523
|
+
__typename?: 'HelpCenterProductEntityImages';
|
|
53524
|
+
entityId?: Maybe<Scalars['String']['output']>;
|
|
53525
|
+
entityType?: Maybe<HelpCenterProductEntityType>;
|
|
53526
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
53527
|
+
};
|
|
53528
|
+
export declare enum HelpCenterProductEntityType {
|
|
53529
|
+
KnowledgeCards = "KNOWLEDGE_CARDS"
|
|
53530
|
+
}
|
|
52971
53531
|
export declare type HelpCenterProjectMappingData = {
|
|
52972
53532
|
__typename?: 'HelpCenterProjectMappingData';
|
|
52973
53533
|
projectMapping?: Maybe<Array<HelpCenterProjectMappingEntry>>;
|
|
@@ -53012,6 +53572,7 @@ export declare type HelpCenterQueryApi = {
|
|
|
53012
53572
|
helpCentersByProjectId?: Maybe<HelpCenterQueryResultConnection>;
|
|
53013
53573
|
helpCentersConfig?: Maybe<HelpCentersConfigResult>;
|
|
53014
53574
|
helpCentersList?: Maybe<HelpCentersListQueryResult>;
|
|
53575
|
+
hubMediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
53015
53576
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
53016
53577
|
};
|
|
53017
53578
|
export declare type HelpCenterQueryApiHelpCenterByHoistedProjectIdArgs = {
|
|
@@ -53072,6 +53633,10 @@ export declare type HelpCenterQueryApiHelpCentersListArgs = {
|
|
|
53072
53633
|
sortOrder: HelpCenterSortOrder;
|
|
53073
53634
|
workspaceAri: Scalars['ID']['input'];
|
|
53074
53635
|
};
|
|
53636
|
+
export declare type HelpCenterQueryApiHubMediaConfigArgs = {
|
|
53637
|
+
ari: Scalars['ID']['input'];
|
|
53638
|
+
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
53639
|
+
};
|
|
53075
53640
|
export declare type HelpCenterQueryApiMediaConfigArgs = {
|
|
53076
53641
|
helpCenterAri: Scalars['ID']['input'];
|
|
53077
53642
|
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
@@ -53183,6 +53748,7 @@ export declare type HelpCenterUpdateInput = {
|
|
|
53183
53748
|
helpCenterBranding?: InputMaybe<HelpCenterBrandingInput>;
|
|
53184
53749
|
homePageLayout?: InputMaybe<HelpCenterHomePageLayoutInput>;
|
|
53185
53750
|
name?: InputMaybe<HelpCenterNameInput>;
|
|
53751
|
+
productEntityImages?: InputMaybe<Array<HelpCenterProductEntityImageInput>>;
|
|
53186
53752
|
slug?: InputMaybe<Scalars['String']['input']>;
|
|
53187
53753
|
virtualAgentEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53188
53754
|
};
|
|
@@ -58417,6 +58983,13 @@ export declare type JiraCreateGlobalCustomFieldPayload = Payload & {
|
|
|
58417
58983
|
field?: Maybe<JiraIssueFieldConfig>;
|
|
58418
58984
|
success: Scalars['Boolean']['output'];
|
|
58419
58985
|
};
|
|
58986
|
+
export declare type JiraCreateGlobalCustomFieldV2Input = {
|
|
58987
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
58988
|
+
formatConfig?: InputMaybe<JiraFieldFormatConfigInput>;
|
|
58989
|
+
name: Scalars['String']['input'];
|
|
58990
|
+
options?: InputMaybe<Array<JiraCreateGlobalCustomFieldOptionInput>>;
|
|
58991
|
+
typeKey: Scalars['String']['input'];
|
|
58992
|
+
};
|
|
58420
58993
|
export declare type JiraCreateIssueSearchFormattingRuleInput = {
|
|
58421
58994
|
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
58422
58995
|
expression: JiraFormattingRuleExpressionInput;
|
|
@@ -58424,11 +58997,11 @@ export declare type JiraCreateIssueSearchFormattingRuleInput = {
|
|
|
58424
58997
|
formattingColor?: InputMaybe<JiraColorInput>;
|
|
58425
58998
|
viewId: Scalars['ID']['input'];
|
|
58426
58999
|
};
|
|
58427
|
-
export declare type JiraCreateIssueSearchFormattingRulePayload = {
|
|
59000
|
+
export declare type JiraCreateIssueSearchFormattingRulePayload = Payload & {
|
|
58428
59001
|
__typename?: 'JiraCreateIssueSearchFormattingRulePayload';
|
|
58429
|
-
createdRule?: Maybe<JiraFormattingRule>;
|
|
58430
59002
|
errors?: Maybe<Array<MutationError>>;
|
|
58431
59003
|
success: Scalars['Boolean']['output'];
|
|
59004
|
+
view?: Maybe<JiraView>;
|
|
58432
59005
|
};
|
|
58433
59006
|
export declare type JiraCreateIssueTypeInput = {
|
|
58434
59007
|
avatarId: Scalars['String']['input'];
|
|
@@ -58947,11 +59520,11 @@ export declare type JiraDeleteIssueSearchFormattingRuleInput = {
|
|
|
58947
59520
|
ruleId: Scalars['ID']['input'];
|
|
58948
59521
|
viewId: Scalars['ID']['input'];
|
|
58949
59522
|
};
|
|
58950
|
-
export declare type JiraDeleteIssueSearchFormattingRulePayload = {
|
|
59523
|
+
export declare type JiraDeleteIssueSearchFormattingRulePayload = Payload & {
|
|
58951
59524
|
__typename?: 'JiraDeleteIssueSearchFormattingRulePayload';
|
|
58952
|
-
deletedRuleId?: Maybe<Scalars['ID']['output']>;
|
|
58953
59525
|
errors?: Maybe<Array<MutationError>>;
|
|
58954
59526
|
success: Scalars['Boolean']['output'];
|
|
59527
|
+
view?: Maybe<JiraView>;
|
|
58955
59528
|
};
|
|
58956
59529
|
export declare type JiraDeleteIssueTypeInput = {
|
|
58957
59530
|
cloudId: Scalars['ID']['input'];
|
|
@@ -59427,6 +60000,18 @@ export declare type JiraDismissInContextConfigPromptPayload = Payload & {
|
|
|
59427
60000
|
errors?: Maybe<Array<MutationError>>;
|
|
59428
60001
|
success: Scalars['Boolean']['output'];
|
|
59429
60002
|
};
|
|
60003
|
+
export declare type JiraDragAndDropBoardViewIssueInput = {
|
|
60004
|
+
destinationCellId?: InputMaybe<Scalars['ID']['input']>;
|
|
60005
|
+
id: Scalars['ID']['input'];
|
|
60006
|
+
rank?: InputMaybe<JiraIssueRankInput>;
|
|
60007
|
+
transitionId?: InputMaybe<Scalars['Int']['input']>;
|
|
60008
|
+
};
|
|
60009
|
+
export declare type JiraDragAndDropBoardViewIssuePayload = {
|
|
60010
|
+
__typename?: 'JiraDragAndDropBoardViewIssuePayload';
|
|
60011
|
+
errors?: Maybe<Array<MutationError>>;
|
|
60012
|
+
issue?: Maybe<JiraIssue>;
|
|
60013
|
+
success: Scalars['Boolean']['output'];
|
|
60014
|
+
};
|
|
59430
60015
|
export declare type JiraDuplicateJourneyConfigurationInput = {
|
|
59431
60016
|
id: Scalars['ID']['input'];
|
|
59432
60017
|
};
|
|
@@ -59851,6 +60436,15 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
59851
60436
|
Allow = "ALLOW",
|
|
59852
60437
|
Exclude = "EXCLUDE"
|
|
59853
60438
|
}
|
|
60439
|
+
export declare type JiraFieldScheme = Node & {
|
|
60440
|
+
__typename?: 'JiraFieldScheme';
|
|
60441
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
60442
|
+
fieldsCount?: Maybe<Scalars['Int']['output']>;
|
|
60443
|
+
id: Scalars['ID']['output'];
|
|
60444
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
60445
|
+
projectsCount?: Maybe<Scalars['Int']['output']>;
|
|
60446
|
+
schemeId?: Maybe<Scalars['ID']['output']>;
|
|
60447
|
+
};
|
|
59854
60448
|
export declare type JiraFieldSchemeAssociatedField = {
|
|
59855
60449
|
__typename?: 'JiraFieldSchemeAssociatedField';
|
|
59856
60450
|
field?: Maybe<JiraField>;
|
|
@@ -59878,9 +60472,19 @@ export declare type JiraFieldSchemeAvailableFieldsInput = {
|
|
|
59878
60472
|
export declare type JiraFieldSchemePayload = Payload & {
|
|
59879
60473
|
__typename?: 'JiraFieldSchemePayload';
|
|
59880
60474
|
errors?: Maybe<Array<MutationError>>;
|
|
59881
|
-
fieldScheme?: Maybe<
|
|
60475
|
+
fieldScheme?: Maybe<JiraFieldScheme>;
|
|
59882
60476
|
success: Scalars['Boolean']['output'];
|
|
59883
60477
|
};
|
|
60478
|
+
export declare type JiraFieldSchemesConnection = {
|
|
60479
|
+
__typename?: 'JiraFieldSchemesConnection';
|
|
60480
|
+
edges?: Maybe<Array<Maybe<JiraFieldSchemesEdge>>>;
|
|
60481
|
+
pageInfo: PageInfo;
|
|
60482
|
+
};
|
|
60483
|
+
export declare type JiraFieldSchemesEdge = {
|
|
60484
|
+
__typename?: 'JiraFieldSchemesEdge';
|
|
60485
|
+
cursor: Scalars['String']['output'];
|
|
60486
|
+
node?: Maybe<JiraFieldScheme>;
|
|
60487
|
+
};
|
|
59884
60488
|
export declare type JiraFieldSchemesInput = {
|
|
59885
60489
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
59886
60490
|
};
|
|
@@ -60849,6 +61453,7 @@ export declare type JiraGroupedListViewGroupsArgs = {
|
|
|
60849
61453
|
options?: InputMaybe<JiraIssueSearchOptions>;
|
|
60850
61454
|
saveJQLToUserHistory?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60851
61455
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
61456
|
+
settings?: InputMaybe<JiraIssueSearchSettings>;
|
|
60852
61457
|
};
|
|
60853
61458
|
export declare type JiraGroupedListViewHasDefaultFieldSetsArgs = {
|
|
60854
61459
|
scope?: InputMaybe<JiraIssueSearchScope>;
|
|
@@ -61061,6 +61666,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
61061
61666
|
updatedField?: Maybe<JiraDateTimePickerField>;
|
|
61062
61667
|
votesField?: Maybe<JiraVotesField>;
|
|
61063
61668
|
watchesField?: Maybe<JiraWatchesField>;
|
|
61669
|
+
webLinks?: Maybe<JiraWebRemoteIssueLinkConnection>;
|
|
61064
61670
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
61065
61671
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
61066
61672
|
};
|
|
@@ -61247,6 +61853,12 @@ export declare type JiraIssueStartDateViewFieldArgs = {
|
|
|
61247
61853
|
export declare type JiraIssueSuggestFieldValuesArgs = {
|
|
61248
61854
|
filterProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
61249
61855
|
};
|
|
61856
|
+
export declare type JiraIssueWebLinksArgs = {
|
|
61857
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
61858
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
61859
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
61860
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
61861
|
+
};
|
|
61250
61862
|
export declare type JiraIssueWorklogsArgs = {
|
|
61251
61863
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61252
61864
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -61462,6 +62074,15 @@ export declare type JiraIssueCreatedStreamHubPayload = {
|
|
|
61462
62074
|
__typename?: 'JiraIssueCreatedStreamHubPayload';
|
|
61463
62075
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
61464
62076
|
};
|
|
62077
|
+
export declare type JiraIssueDeleteInput = {
|
|
62078
|
+
deleteSubtasks?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62079
|
+
id: Scalars['ID']['input'];
|
|
62080
|
+
};
|
|
62081
|
+
export declare type JiraIssueDeletePayload = {
|
|
62082
|
+
__typename?: 'JiraIssueDeletePayload';
|
|
62083
|
+
errors?: Maybe<Array<MutationError>>;
|
|
62084
|
+
success: Scalars['Boolean']['output'];
|
|
62085
|
+
};
|
|
61465
62086
|
export declare type JiraIssueDeletedStreamHubPayload = {
|
|
61466
62087
|
__typename?: 'JiraIssueDeletedStreamHubPayload';
|
|
61467
62088
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
@@ -62168,6 +62789,10 @@ export declare type JiraIssuePullRequests = {
|
|
|
62168
62789
|
export declare type JiraIssuePullRequestsInput = {
|
|
62169
62790
|
filterLegacy?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62170
62791
|
};
|
|
62792
|
+
export declare type JiraIssueRankInput = {
|
|
62793
|
+
afterIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
62794
|
+
beforeIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
62795
|
+
};
|
|
62171
62796
|
export declare type JiraIssueRemoteIssueLink = {
|
|
62172
62797
|
__typename?: 'JiraIssueRemoteIssueLink';
|
|
62173
62798
|
href?: Maybe<Scalars['String']['output']>;
|
|
@@ -63152,6 +63777,9 @@ export declare enum JiraJqlAutocompleteType {
|
|
|
63152
63777
|
User = "USER",
|
|
63153
63778
|
Version = "VERSION"
|
|
63154
63779
|
}
|
|
63780
|
+
export declare type JiraJqlBacklogInput = {
|
|
63781
|
+
boardId: Scalars['Long']['input'];
|
|
63782
|
+
};
|
|
63155
63783
|
export declare type JiraJqlBoardInput = {
|
|
63156
63784
|
boardId: Scalars['Long']['input'];
|
|
63157
63785
|
swimlaneStrategy?: InputMaybe<JiraBoardSwimlaneStrategy>;
|
|
@@ -63583,6 +64211,7 @@ export declare type JiraJqlResolutionFieldValue = JiraJqlFieldValue & {
|
|
|
63583
64211
|
resolution?: Maybe<JiraResolution>;
|
|
63584
64212
|
};
|
|
63585
64213
|
export declare type JiraJqlScopeInput = {
|
|
64214
|
+
backlog?: InputMaybe<JiraJqlBacklogInput>;
|
|
63586
64215
|
board?: InputMaybe<JiraJqlBoardInput>;
|
|
63587
64216
|
plan?: InputMaybe<JiraJqlPlanInput>;
|
|
63588
64217
|
};
|
|
@@ -65380,7 +66009,6 @@ export declare type JiraNotificationPreferences = {
|
|
|
65380
66009
|
issueUpdated?: Maybe<JiraNotificationPreference>;
|
|
65381
66010
|
mentionsCombined?: Maybe<JiraNotificationPreference>;
|
|
65382
66011
|
miscellaneousIssueEventCombined?: Maybe<JiraNotificationPreference>;
|
|
65383
|
-
projectInviterNotification?: Maybe<JiraNotificationPreference>;
|
|
65384
66012
|
worklogCombined?: Maybe<JiraNotificationPreference>;
|
|
65385
66013
|
};
|
|
65386
66014
|
export declare type JiraNotificationProjectPreferenceConnection = HasPageInfo & HasTotal & {
|
|
@@ -65407,7 +66035,6 @@ export declare enum JiraNotificationType {
|
|
|
65407
66035
|
IssueUpdated = "ISSUE_UPDATED",
|
|
65408
66036
|
MentionsCombined = "MENTIONS_COMBINED",
|
|
65409
66037
|
MiscellaneousIssueEventCombined = "MISCELLANEOUS_ISSUE_EVENT_COMBINED",
|
|
65410
|
-
ProjectInviterNotification = "PROJECT_INVITER_NOTIFICATION",
|
|
65411
66038
|
WorklogCombined = "WORKLOG_COMBINED"
|
|
65412
66039
|
}
|
|
65413
66040
|
export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
@@ -65871,6 +66498,17 @@ export declare type JiraOrderFormattingRulePayloadRulesArgs = {
|
|
|
65871
66498
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65872
66499
|
scope: Scalars['ID']['input'];
|
|
65873
66500
|
};
|
|
66501
|
+
export declare type JiraOrderIssueSearchFormattingRuleInput = {
|
|
66502
|
+
afterRuleId?: InputMaybe<Scalars['ID']['input']>;
|
|
66503
|
+
ruleId: Scalars['ID']['input'];
|
|
66504
|
+
viewId: Scalars['ID']['input'];
|
|
66505
|
+
};
|
|
66506
|
+
export declare type JiraOrderIssueSearchFormattingRulePayload = Payload & {
|
|
66507
|
+
__typename?: 'JiraOrderIssueSearchFormattingRulePayload';
|
|
66508
|
+
errors?: Maybe<Array<MutationError>>;
|
|
66509
|
+
success: Scalars['Boolean']['output'];
|
|
66510
|
+
view?: Maybe<JiraView>;
|
|
66511
|
+
};
|
|
65874
66512
|
export declare enum JiraOrganizationApprovalLocation {
|
|
65875
66513
|
DuringInstallationFlow = "DURING_INSTALLATION_FLOW",
|
|
65876
66514
|
DuringProvisioning = "DURING_PROVISIONING",
|
|
@@ -69225,6 +69863,8 @@ export declare type JiraReport = {
|
|
|
69225
69863
|
description?: Maybe<Scalars['String']['output']>;
|
|
69226
69864
|
id: Scalars['ID']['output'];
|
|
69227
69865
|
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
69866
|
+
isNotApplicableDesc?: Maybe<Scalars['String']['output']>;
|
|
69867
|
+
isNotApplicableReason?: Maybe<Scalars['String']['output']>;
|
|
69228
69868
|
key?: Maybe<Scalars['String']['output']>;
|
|
69229
69869
|
name?: Maybe<Scalars['String']['output']>;
|
|
69230
69870
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -72746,16 +73386,16 @@ export declare type JiraUpdateIssueLinkRelationshipTypeFieldPayload = Payload &
|
|
|
72746
73386
|
};
|
|
72747
73387
|
export declare type JiraUpdateIssueSearchFormattingRuleInput = {
|
|
72748
73388
|
expression?: InputMaybe<JiraFormattingRuleExpressionInput>;
|
|
72749
|
-
|
|
73389
|
+
formattingArea?: InputMaybe<JiraFormattingArea>;
|
|
72750
73390
|
formattingColor?: InputMaybe<JiraColorInput>;
|
|
72751
73391
|
ruleId: Scalars['ID']['input'];
|
|
72752
73392
|
viewId: Scalars['ID']['input'];
|
|
72753
73393
|
};
|
|
72754
|
-
export declare type JiraUpdateIssueSearchFormattingRulePayload = {
|
|
73394
|
+
export declare type JiraUpdateIssueSearchFormattingRulePayload = Payload & {
|
|
72755
73395
|
__typename?: 'JiraUpdateIssueSearchFormattingRulePayload';
|
|
72756
73396
|
errors?: Maybe<Array<MutationError>>;
|
|
72757
73397
|
success: Scalars['Boolean']['output'];
|
|
72758
|
-
|
|
73398
|
+
view?: Maybe<JiraView>;
|
|
72759
73399
|
};
|
|
72760
73400
|
export declare type JiraUpdateIssueTransitionInput = {
|
|
72761
73401
|
comment?: InputMaybe<JiraIssueTransitionCommentInput>;
|
|
@@ -73839,6 +74479,7 @@ export declare type JiraVersionUpdateApproverDescriptionPayload = Payload & {
|
|
|
73839
74479
|
};
|
|
73840
74480
|
export declare type JiraVersionUpdateApproverStatusInput = {
|
|
73841
74481
|
approverId: Scalars['ID']['input'];
|
|
74482
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
73842
74483
|
status?: InputMaybe<JiraVersionApproverStatus>;
|
|
73843
74484
|
};
|
|
73844
74485
|
export declare type JiraVersionUpdateApproverStatusPayload = Payload & {
|
|
@@ -74008,12 +74649,27 @@ export declare enum JiraWatchesOperations {
|
|
|
74008
74649
|
}
|
|
74009
74650
|
export declare type JiraWebRemoteIssueLink = {
|
|
74010
74651
|
__typename?: 'JiraWebRemoteIssueLink';
|
|
74652
|
+
applicationName?: Maybe<Scalars['String']['output']>;
|
|
74653
|
+
applicationType?: Maybe<Scalars['String']['output']>;
|
|
74011
74654
|
href?: Maybe<Scalars['String']['output']>;
|
|
74012
74655
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
74013
74656
|
id: Scalars['ID']['output'];
|
|
74657
|
+
relationship?: Maybe<Scalars['String']['output']>;
|
|
74658
|
+
resolved?: Maybe<Scalars['Boolean']['output']>;
|
|
74014
74659
|
summary?: Maybe<Scalars['String']['output']>;
|
|
74015
74660
|
title?: Maybe<Scalars['String']['output']>;
|
|
74016
74661
|
};
|
|
74662
|
+
export declare type JiraWebRemoteIssueLinkConnection = {
|
|
74663
|
+
__typename?: 'JiraWebRemoteIssueLinkConnection';
|
|
74664
|
+
edges?: Maybe<Array<Maybe<JiraWebRemoteIssueLinkEdge>>>;
|
|
74665
|
+
pageInfo: PageInfo;
|
|
74666
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
74667
|
+
};
|
|
74668
|
+
export declare type JiraWebRemoteIssueLinkEdge = {
|
|
74669
|
+
__typename?: 'JiraWebRemoteIssueLinkEdge';
|
|
74670
|
+
cursor: Scalars['String']['output'];
|
|
74671
|
+
node?: Maybe<JiraWebRemoteIssueLink>;
|
|
74672
|
+
};
|
|
74017
74673
|
export declare type JiraWorkCategory = {
|
|
74018
74674
|
__typename?: 'JiraWorkCategory';
|
|
74019
74675
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -77660,7 +78316,9 @@ export declare type MarketplaceConsoleEdition = {
|
|
|
77660
78316
|
__typename?: 'MarketplaceConsoleEdition';
|
|
77661
78317
|
features: Array<MarketplaceConsoleFeature>;
|
|
77662
78318
|
id: Scalars['ID']['output'];
|
|
78319
|
+
isDecoupled?: Maybe<Scalars['Boolean']['output']>;
|
|
77663
78320
|
isDefault: Scalars['Boolean']['output'];
|
|
78321
|
+
parentProduct?: Maybe<Scalars['String']['output']>;
|
|
77664
78322
|
pricingPlan: MarketplaceConsolePricingPlan;
|
|
77665
78323
|
type: MarketplaceConsoleEditionType;
|
|
77666
78324
|
};
|
|
@@ -77670,7 +78328,9 @@ export declare type MarketplaceConsoleEditionDetailsInput = {
|
|
|
77670
78328
|
export declare type MarketplaceConsoleEditionInput = {
|
|
77671
78329
|
features: Array<MarketplaceConsoleFeatureInput>;
|
|
77672
78330
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
78331
|
+
isDecoupled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77673
78332
|
isDefault: Scalars['Boolean']['input'];
|
|
78333
|
+
parentProduct?: InputMaybe<Scalars['String']['input']>;
|
|
77674
78334
|
pricingPlan: MarketplaceConsolePricingPlanInput;
|
|
77675
78335
|
type: MarketplaceConsoleEditionType;
|
|
77676
78336
|
};
|
|
@@ -78174,6 +78834,7 @@ export declare type MarketplaceConsolePricingPlanInput = {
|
|
|
78174
78834
|
tieredPricing: Array<MarketplaceConsolePricingItemInput>;
|
|
78175
78835
|
};
|
|
78176
78836
|
export declare enum MarketplaceConsolePricingPlanStatus {
|
|
78837
|
+
AtNotice = "AT_NOTICE",
|
|
78177
78838
|
Draft = "DRAFT",
|
|
78178
78839
|
Live = "LIVE",
|
|
78179
78840
|
Pending = "PENDING"
|
|
@@ -79740,6 +80401,7 @@ export declare type MercuryChangeProposalImpact = {
|
|
|
79740
80401
|
};
|
|
79741
80402
|
export declare type MercuryChangeProposalPositionDetails = {
|
|
79742
80403
|
__typename?: 'MercuryChangeProposalPositionDetails';
|
|
80404
|
+
positionsImpacted?: Maybe<Scalars['Int']['output']>;
|
|
79743
80405
|
positionsMoved?: Maybe<Scalars['Int']['output']>;
|
|
79744
80406
|
positionsRequested?: Maybe<Scalars['Int']['output']>;
|
|
79745
80407
|
};
|
|
@@ -79780,12 +80442,15 @@ export declare type MercuryChangeProposalSummaryByStatus = {
|
|
|
79780
80442
|
export declare type MercuryChangeProposalSummaryForStrategicEvent = {
|
|
79781
80443
|
__typename?: 'MercuryChangeProposalSummaryForStrategicEvent';
|
|
79782
80444
|
changeProposal?: Maybe<MercuryChangeProposalSummaryByStatus>;
|
|
80445
|
+
impactedPositions?: Maybe<MercuryImpactedPositionSummaryByChangeProposalStatus>;
|
|
80446
|
+
movedPositions?: Maybe<MercuryMovedPositionSummaryByChangeProposalStatus>;
|
|
79783
80447
|
newFunds?: Maybe<MercuryNewFundSummaryByChangeProposalStatus>;
|
|
79784
80448
|
newPositions?: Maybe<MercuryNewPositionSummaryByChangeProposalStatus>;
|
|
79785
80449
|
strategicEventId: Scalars['ID']['output'];
|
|
79786
80450
|
};
|
|
79787
80451
|
export declare type MercuryChangeProposalUpdate = {
|
|
79788
80452
|
__typename?: 'MercuryChangeProposalUpdate';
|
|
80453
|
+
event?: Maybe<Scalars['String']['output']>;
|
|
79789
80454
|
id: Scalars['ID']['output'];
|
|
79790
80455
|
updatedFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
79791
80456
|
};
|
|
@@ -80539,6 +81204,11 @@ export declare type MercuryHumanResourcesAllocation = {
|
|
|
80539
81204
|
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
80540
81205
|
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
80541
81206
|
};
|
|
81207
|
+
export declare type MercuryImpactedPositionSummaryByChangeProposalStatus = {
|
|
81208
|
+
__typename?: 'MercuryImpactedPositionSummaryByChangeProposalStatus';
|
|
81209
|
+
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
81210
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
81211
|
+
};
|
|
80542
81212
|
export declare type MercuryJiraAlignProjectType = {
|
|
80543
81213
|
__typename?: 'MercuryJiraAlignProjectType';
|
|
80544
81214
|
displayName: Scalars['String']['output'];
|
|
@@ -80662,6 +81332,11 @@ export declare type MercuryMovePositionsChangeInput = {
|
|
|
80662
81332
|
sourceFocusAreaId: Scalars['ID']['input'];
|
|
80663
81333
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
80664
81334
|
};
|
|
81335
|
+
export declare type MercuryMovedPositionSummaryByChangeProposalStatus = {
|
|
81336
|
+
__typename?: 'MercuryMovedPositionSummaryByChangeProposalStatus';
|
|
81337
|
+
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
81338
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
81339
|
+
};
|
|
80665
81340
|
export declare type MercuryMutationApi = {
|
|
80666
81341
|
__typename?: 'MercuryMutationApi';
|
|
80667
81342
|
addWatcherToFocusArea?: Maybe<MercuryAddWatcherToFocusAreaPayload>;
|
|
@@ -80821,18 +81496,6 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
|
|
|
80821
81496
|
countByStatus?: Maybe<Array<Maybe<MercuryNewPositionCountByStatus>>>;
|
|
80822
81497
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
80823
81498
|
};
|
|
80824
|
-
export declare type MercuryOnCreateChangeProposalPayload = Payload & {
|
|
80825
|
-
__typename?: 'MercuryOnCreateChangeProposalPayload';
|
|
80826
|
-
errors?: Maybe<Array<MutationError>>;
|
|
80827
|
-
id: Scalars['ID']['output'];
|
|
80828
|
-
success: Scalars['Boolean']['output'];
|
|
80829
|
-
};
|
|
80830
|
-
export declare type MercuryOnDeleteChangeProposalPayload = Payload & {
|
|
80831
|
-
__typename?: 'MercuryOnDeleteChangeProposalPayload';
|
|
80832
|
-
errors?: Maybe<Array<MutationError>>;
|
|
80833
|
-
id: Scalars['ID']['output'];
|
|
80834
|
-
success: Scalars['Boolean']['output'];
|
|
80835
|
-
};
|
|
80836
81499
|
export declare type MercuryOnUpdateChangeProposalsPayload = Payload & {
|
|
80837
81500
|
__typename?: 'MercuryOnUpdateChangeProposalsPayload';
|
|
80838
81501
|
changeProposals?: Maybe<Array<MercuryChangeProposalUpdate>>;
|
|
@@ -80932,6 +81595,11 @@ export declare type MercuryPositionChangeSummaryFields = {
|
|
|
80932
81595
|
deltaByStatus?: Maybe<Array<Maybe<MercuryPositionDeltaByStatus>>>;
|
|
80933
81596
|
deltaTotal?: Maybe<Scalars['Int']['output']>;
|
|
80934
81597
|
};
|
|
81598
|
+
export declare type MercuryPositionCountByStatus = {
|
|
81599
|
+
__typename?: 'MercuryPositionCountByStatus';
|
|
81600
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
81601
|
+
status?: Maybe<MercuryChangeProposalStatus>;
|
|
81602
|
+
};
|
|
80935
81603
|
export declare type MercuryPositionDeltaByStatus = {
|
|
80936
81604
|
__typename?: 'MercuryPositionDeltaByStatus';
|
|
80937
81605
|
positionDelta?: Maybe<Scalars['Int']['output']>;
|
|
@@ -81183,6 +81851,7 @@ export declare type MercuryQueryApi = {
|
|
|
81183
81851
|
focusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
81184
81852
|
focusAreaHierarchy?: Maybe<Array<Maybe<MercuryFocusAreaHierarchyNode>>>;
|
|
81185
81853
|
focusAreaStatusTransitions?: Maybe<Array<MercuryFocusAreaStatusTransition>>;
|
|
81854
|
+
focusAreaStatusUpdatesByAris?: Maybe<Array<MercuryFocusAreaStatusUpdate>>;
|
|
81186
81855
|
focusAreaTeamAllocations?: Maybe<MercuryFocusAreaTeamAllocationAggregationConnection>;
|
|
81187
81856
|
focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
|
|
81188
81857
|
focusAreaTypesByAris?: Maybe<Array<Maybe<MercuryFocusAreaType>>>;
|
|
@@ -81240,6 +81909,9 @@ export declare type MercuryQueryApiFocusAreaHierarchyArgs = {
|
|
|
81240
81909
|
export declare type MercuryQueryApiFocusAreaStatusTransitionsArgs = {
|
|
81241
81910
|
cloudId: Scalars['ID']['input'];
|
|
81242
81911
|
};
|
|
81912
|
+
export declare type MercuryQueryApiFocusAreaStatusUpdatesByArisArgs = {
|
|
81913
|
+
aris: Array<Scalars['ID']['input']>;
|
|
81914
|
+
};
|
|
81243
81915
|
export declare type MercuryQueryApiFocusAreaTeamAllocationsArgs = {
|
|
81244
81916
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
81245
81917
|
cloudId: Scalars['ID']['input'];
|
|
@@ -81722,18 +82394,9 @@ export declare type MercuryStrategicEventsQueryApiStrategicEventsSearchArgs = {
|
|
|
81722
82394
|
};
|
|
81723
82395
|
export declare type MercurySubscriptionApi = {
|
|
81724
82396
|
__typename?: 'MercurySubscriptionApi';
|
|
81725
|
-
onCreateChangeProposal?: Maybe<MercuryOnCreateChangeProposalPayload>;
|
|
81726
|
-
onDeleteChangeProposal?: Maybe<MercuryOnDeleteChangeProposalPayload>;
|
|
81727
82397
|
onUpdateChangeProposals?: Maybe<MercuryOnUpdateChangeProposalsPayload>;
|
|
81728
82398
|
onUpdateStrategicEvent?: Maybe<MercuryOnUpdateStrategicEventPayload>;
|
|
81729
82399
|
};
|
|
81730
|
-
export declare type MercurySubscriptionApiOnCreateChangeProposalArgs = {
|
|
81731
|
-
strategicEventId: Scalars['ID']['input'];
|
|
81732
|
-
};
|
|
81733
|
-
export declare type MercurySubscriptionApiOnDeleteChangeProposalArgs = {
|
|
81734
|
-
id: Scalars['ID']['input'];
|
|
81735
|
-
strategicEventId: Scalars['ID']['input'];
|
|
81736
|
-
};
|
|
81737
82400
|
export declare type MercurySubscriptionApiOnUpdateChangeProposalsArgs = {
|
|
81738
82401
|
strategicEventId: Scalars['ID']['input'];
|
|
81739
82402
|
};
|
|
@@ -82329,7 +82992,11 @@ export declare type Mutation = {
|
|
|
82329
82992
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
82330
82993
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
82331
82994
|
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
82995
|
+
assetsDM_configureDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
82996
|
+
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
82332
82997
|
assetsDM_dataSource?: Maybe<AssetsDmDataSourceResponse>;
|
|
82998
|
+
assetsDM_dataSourceCleansingRulesConfigure?: Maybe<AssetsDmDataSourceCleansingRulesConfigureResponse>;
|
|
82999
|
+
assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
|
|
82333
83000
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
82334
83001
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
82335
83002
|
attachDanglingComment?: Maybe<Comment>;
|
|
@@ -82371,6 +83038,7 @@ export declare type Mutation = {
|
|
|
82371
83038
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
82372
83039
|
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
82373
83040
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
83041
|
+
confluence_convertNote?: Maybe<ConfluenceConvertNotePayload>;
|
|
82374
83042
|
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
82375
83043
|
confluence_createCsvExportTask?: Maybe<ConfluenceCreateCsvExportTaskPayload>;
|
|
82376
83044
|
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
@@ -82400,6 +83068,7 @@ export declare type Mutation = {
|
|
|
82400
83068
|
confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
|
|
82401
83069
|
confluence_unwatchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
82402
83070
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
83071
|
+
confluence_updateCalendarView?: Maybe<ConfluenceUpdateCalendarViewPayload>;
|
|
82403
83072
|
confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
|
|
82404
83073
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
82405
83074
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
@@ -82551,6 +83220,9 @@ export declare type Mutation = {
|
|
|
82551
83220
|
generateAdminReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
82552
83221
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
82553
83222
|
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
83223
|
+
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
83224
|
+
goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
|
|
83225
|
+
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
82554
83226
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
82555
83227
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
82556
83228
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
@@ -82580,18 +83252,22 @@ export declare type Mutation = {
|
|
|
82580
83252
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
82581
83253
|
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
82582
83254
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
83255
|
+
jira_createGlobalCustomFieldV2?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
82583
83256
|
jira_createIssueSearchFormattingRule?: Maybe<JiraCreateIssueSearchFormattingRulePayload>;
|
|
82584
83257
|
jira_createIssueType?: Maybe<JiraUpsertIssueTypePayload>;
|
|
82585
83258
|
jira_customizeProjectLevelSidebarMenuItem?: Maybe<JiraProjectLevelSidebarMenuCustomization>;
|
|
82586
83259
|
jira_deleteBoardViewStatusColumn?: Maybe<JiraDeleteBoardViewStatusColumnPayload>;
|
|
82587
83260
|
jira_deleteCustomBackground?: Maybe<JiraProjectDeleteCustomBackgroundMutationPayload>;
|
|
82588
83261
|
jira_deleteFieldScheme?: Maybe<JiraDeleteFieldSchemePayload>;
|
|
83262
|
+
jira_deleteIssue?: Maybe<JiraIssueDeletePayload>;
|
|
82589
83263
|
jira_deleteIssueSearchFormattingRule?: Maybe<JiraDeleteIssueSearchFormattingRulePayload>;
|
|
82590
83264
|
jira_deleteIssueType?: Maybe<JiraDeleteIssueTypePayload>;
|
|
82591
83265
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
82592
83266
|
jira_discardUserCalendarViewConfig?: Maybe<JiraUpdateCalendarViewConfigPayload>;
|
|
82593
83267
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
83268
|
+
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
82594
83269
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
83270
|
+
jira_orderIssueSearchFormattingRule?: Maybe<JiraOrderIssueSearchFormattingRulePayload>;
|
|
82595
83271
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
82596
83272
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
82597
83273
|
jira_removeFieldsFromFieldScheme?: Maybe<JiraRemoveFieldsFromFieldSchemePayload>;
|
|
@@ -82682,7 +83358,10 @@ export declare type Mutation = {
|
|
|
82682
83358
|
projects_deleteLink?: Maybe<TownsquareProjectsDeleteLinkPayload>;
|
|
82683
83359
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
82684
83360
|
projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
|
|
83361
|
+
projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
|
|
83362
|
+
projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
|
|
82685
83363
|
projects_removeMember?: Maybe<TownsquareProjectsRemoveMemberPayload>;
|
|
83364
|
+
projects_removeTeamContributors?: Maybe<TownsquareProjectsRemoveTeamContributorsPayload>;
|
|
82686
83365
|
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
82687
83366
|
projects_setWatchingProject?: Maybe<TownsquareProjectsSetWatchingProjectPayload>;
|
|
82688
83367
|
projects_shareProject?: Maybe<TownsquareProjectsShareProjectPayload>;
|
|
@@ -82984,6 +83663,17 @@ export declare type MutationAssetsDm_AutoColumnMappingArgs = {
|
|
|
82984
83663
|
cloudId: Scalars['ID']['input'];
|
|
82985
83664
|
workspaceId: Scalars['ID']['input'];
|
|
82986
83665
|
};
|
|
83666
|
+
export declare type MutationAssetsDm_ConfigureDataSourceMappingArgs = {
|
|
83667
|
+
cloudId: Scalars['ID']['input'];
|
|
83668
|
+
dataSourceId: Scalars['ID']['input'];
|
|
83669
|
+
mappings: Array<AssetsDmDataSourceConfigureMappingInput>;
|
|
83670
|
+
workspaceId: Scalars['ID']['input'];
|
|
83671
|
+
};
|
|
83672
|
+
export declare type MutationAssetsDm_CreateObjectTagArgs = {
|
|
83673
|
+
cloudId: Scalars['ID']['input'];
|
|
83674
|
+
input: AssetsDmObjectTagCreateInput;
|
|
83675
|
+
workspaceId: Scalars['ID']['input'];
|
|
83676
|
+
};
|
|
82987
83677
|
export declare type MutationAssetsDm_DataSourceArgs = {
|
|
82988
83678
|
cloudId: Scalars['ID']['input'];
|
|
82989
83679
|
dataSourceId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -82992,6 +83682,17 @@ export declare type MutationAssetsDm_DataSourceArgs = {
|
|
|
82992
83682
|
operation?: InputMaybe<AssetsDmDataSourceOperationEnum>;
|
|
82993
83683
|
workspaceId: Scalars['ID']['input'];
|
|
82994
83684
|
};
|
|
83685
|
+
export declare type MutationAssetsDm_DataSourceCleansingRulesConfigureArgs = {
|
|
83686
|
+
cleansingRules: Array<AssetsDmDataSourceCleansingRuleInput>;
|
|
83687
|
+
cloudId: Scalars['ID']['input'];
|
|
83688
|
+
dataSourceId: Scalars['ID']['input'];
|
|
83689
|
+
workspaceId: Scalars['ID']['input'];
|
|
83690
|
+
};
|
|
83691
|
+
export declare type MutationAssetsDm_DeleteObjectTagArgs = {
|
|
83692
|
+
cloudId: Scalars['ID']['input'];
|
|
83693
|
+
tagId: Scalars['ID']['input'];
|
|
83694
|
+
workspaceId: Scalars['ID']['input'];
|
|
83695
|
+
};
|
|
82995
83696
|
export declare type MutationAssetsDm_GenerateAdapterTokenArgs = {
|
|
82996
83697
|
cloudId: Scalars['ID']['input'];
|
|
82997
83698
|
generateTokenInput: AssetsDmGenerateAdapterTokenInput;
|
|
@@ -83121,6 +83822,9 @@ export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
|
83121
83822
|
cloudId: Scalars['ID']['input'];
|
|
83122
83823
|
input: Array<InputMaybe<NestedPageInput>>;
|
|
83123
83824
|
};
|
|
83825
|
+
export declare type MutationConfluence_ConvertNoteArgs = {
|
|
83826
|
+
input: ConfluenceConvertNoteInput;
|
|
83827
|
+
};
|
|
83124
83828
|
export declare type MutationConfluence_CopySpaceSecurityConfigurationArgs = {
|
|
83125
83829
|
cloudId: Scalars['ID']['input'];
|
|
83126
83830
|
input: ConfluenceCopySpaceSecurityConfigurationInput;
|
|
@@ -83235,6 +83939,10 @@ export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
|
83235
83939
|
cloudId: Scalars['ID']['input'];
|
|
83236
83940
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
83237
83941
|
};
|
|
83942
|
+
export declare type MutationConfluence_UpdateCalendarViewArgs = {
|
|
83943
|
+
cloudId: Scalars['ID']['input'];
|
|
83944
|
+
input: ConfluenceUpdateCalendarViewInput;
|
|
83945
|
+
};
|
|
83238
83946
|
export declare type MutationConfluence_UpdateContentAccessRequestArgs = {
|
|
83239
83947
|
cloudId: Scalars['ID']['input'];
|
|
83240
83948
|
updateContentAccessRequestInput: ConfluenceUpdateContentAccessRequestInput;
|
|
@@ -83754,6 +84462,15 @@ export declare type MutationGeneratePermsReportArgs = {
|
|
|
83754
84462
|
export declare type MutationGoals_AddGoalTeamLinkArgs = {
|
|
83755
84463
|
input?: InputMaybe<TownsquareGoalsAddGoalTeamLinkInput>;
|
|
83756
84464
|
};
|
|
84465
|
+
export declare type MutationGoals_CreateUpdateArgs = {
|
|
84466
|
+
input?: InputMaybe<TownsquareGoalsCreateUpdateInput>;
|
|
84467
|
+
};
|
|
84468
|
+
export declare type MutationGoals_DeleteLatestUpdateArgs = {
|
|
84469
|
+
input?: InputMaybe<TownsquareGoalsDeleteLatestUpdateInput>;
|
|
84470
|
+
};
|
|
84471
|
+
export declare type MutationGoals_EditUpdateArgs = {
|
|
84472
|
+
input?: InputMaybe<TownsquareGoalsEditUpdateInput>;
|
|
84473
|
+
};
|
|
83757
84474
|
export declare type MutationGoals_RemoveGoalTeamLinkArgs = {
|
|
83758
84475
|
input?: InputMaybe<TownsquareGoalsRemoveGoalTeamLinkInput>;
|
|
83759
84476
|
};
|
|
@@ -83830,6 +84547,10 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
83830
84547
|
cloudId: Scalars['ID']['input'];
|
|
83831
84548
|
input: JiraCreateGlobalCustomFieldInput;
|
|
83832
84549
|
};
|
|
84550
|
+
export declare type MutationJira_CreateGlobalCustomFieldV2Args = {
|
|
84551
|
+
cloudId: Scalars['ID']['input'];
|
|
84552
|
+
input: JiraCreateGlobalCustomFieldV2Input;
|
|
84553
|
+
};
|
|
83833
84554
|
export declare type MutationJira_CreateIssueSearchFormattingRuleArgs = {
|
|
83834
84555
|
input: JiraCreateIssueSearchFormattingRuleInput;
|
|
83835
84556
|
};
|
|
@@ -83849,6 +84570,9 @@ export declare type MutationJira_DeleteFieldSchemeArgs = {
|
|
|
83849
84570
|
cloudId: Scalars['ID']['input'];
|
|
83850
84571
|
input: JiraDeleteFieldSchemeInput;
|
|
83851
84572
|
};
|
|
84573
|
+
export declare type MutationJira_DeleteIssueArgs = {
|
|
84574
|
+
input: JiraIssueDeleteInput;
|
|
84575
|
+
};
|
|
83852
84576
|
export declare type MutationJira_DeleteIssueSearchFormattingRuleArgs = {
|
|
83853
84577
|
input: JiraDeleteIssueSearchFormattingRuleInput;
|
|
83854
84578
|
};
|
|
@@ -83864,10 +84588,16 @@ export declare type MutationJira_DiscardUserCalendarViewConfigArgs = {
|
|
|
83864
84588
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
83865
84589
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
83866
84590
|
};
|
|
84591
|
+
export declare type MutationJira_DragAndDropBoardViewIssueArgs = {
|
|
84592
|
+
input: JiraDragAndDropBoardViewIssueInput;
|
|
84593
|
+
};
|
|
83867
84594
|
export declare type MutationJira_EditFieldSchemeArgs = {
|
|
83868
84595
|
cloudId: Scalars['ID']['input'];
|
|
83869
84596
|
input: JiraEditFieldSchemeInput;
|
|
83870
84597
|
};
|
|
84598
|
+
export declare type MutationJira_OrderIssueSearchFormattingRuleArgs = {
|
|
84599
|
+
input: JiraOrderIssueSearchFormattingRuleInput;
|
|
84600
|
+
};
|
|
83871
84601
|
export declare type MutationJira_PublishBoardViewConfigArgs = {
|
|
83872
84602
|
input: JiraPublishBoardViewConfigInput;
|
|
83873
84603
|
};
|
|
@@ -84121,9 +84851,18 @@ export declare type MutationProjects_EditArgs = {
|
|
|
84121
84851
|
export declare type MutationProjects_EditLinkArgs = {
|
|
84122
84852
|
input?: InputMaybe<TownsquareProjectsEditLinkInput>;
|
|
84123
84853
|
};
|
|
84854
|
+
export declare type MutationProjects_EditUpdateArgs = {
|
|
84855
|
+
input?: InputMaybe<TownsquareProjectsEditUpdateInput>;
|
|
84856
|
+
};
|
|
84857
|
+
export declare type MutationProjects_RemoveGoalLinkArgs = {
|
|
84858
|
+
input: TownsquareProjectsRemoveGoalLinkInput;
|
|
84859
|
+
};
|
|
84124
84860
|
export declare type MutationProjects_RemoveMemberArgs = {
|
|
84125
84861
|
input: TownsquareProjectsRemoveMemberInput;
|
|
84126
84862
|
};
|
|
84863
|
+
export declare type MutationProjects_RemoveTeamContributorsArgs = {
|
|
84864
|
+
input: TownsquareProjectsRemoveTeamContributorsInput;
|
|
84865
|
+
};
|
|
84127
84866
|
export declare type MutationProjects_SetDependencyArgs = {
|
|
84128
84867
|
input?: InputMaybe<TownsquareProjectsSetDependencyInput>;
|
|
84129
84868
|
};
|
|
@@ -84996,6 +85735,7 @@ export declare type NoteConnection = {
|
|
|
84996
85735
|
edges?: Maybe<Array<Maybe<NoteEdge>>>;
|
|
84997
85736
|
nodes?: Maybe<Array<Maybe<NoteResponse>>>;
|
|
84998
85737
|
noteInfo: NoteInfo;
|
|
85738
|
+
pageInfo: PageInfo;
|
|
84999
85739
|
};
|
|
85000
85740
|
export declare type NoteEdge = {
|
|
85001
85741
|
__typename?: 'NoteEdge';
|
|
@@ -85022,11 +85762,13 @@ export declare type NoteMutationErrorExtension = {
|
|
|
85022
85762
|
export declare type NoteResponse = {
|
|
85023
85763
|
__typename?: 'NoteResponse';
|
|
85024
85764
|
ari: Scalars['String']['output'];
|
|
85765
|
+
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
85025
85766
|
body?: Maybe<Scalars['String']['output']>;
|
|
85026
85767
|
bodyExcerpt?: Maybe<Scalars['String']['output']>;
|
|
85027
85768
|
collectionName: Scalars['String']['output'];
|
|
85028
85769
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
85029
85770
|
extraProps?: Maybe<Array<Prop>>;
|
|
85771
|
+
id: Scalars['ID']['output'];
|
|
85030
85772
|
isPinned: Scalars['Boolean']['output'];
|
|
85031
85773
|
labels?: Maybe<Array<Scalars['String']['output']>>;
|
|
85032
85774
|
productLink?: Maybe<Scalars['String']['output']>;
|
|
@@ -85045,6 +85787,13 @@ export declare type NotesByCreatorInput = {
|
|
|
85045
85787
|
export declare enum NotesByDateLastModifiedOrder {
|
|
85046
85788
|
DateLastModified = "DATE_LAST_MODIFIED"
|
|
85047
85789
|
}
|
|
85790
|
+
export declare enum NotesContentType {
|
|
85791
|
+
Livedoc = "LIVEDOC",
|
|
85792
|
+
Page = "PAGE"
|
|
85793
|
+
}
|
|
85794
|
+
export declare enum NotesProduct {
|
|
85795
|
+
Confluence = "CONFLUENCE"
|
|
85796
|
+
}
|
|
85048
85797
|
export declare enum NotificationAction {
|
|
85049
85798
|
DontNotify = "DONT_NOTIFY",
|
|
85050
85799
|
Notify = "NOTIFY"
|
|
@@ -87568,8 +88317,11 @@ export declare type Query = {
|
|
|
87568
88317
|
assetsDM_dataSourceConfig?: Maybe<AssetsDmDataSourceConfig>;
|
|
87569
88318
|
assetsDM_dataSourceDetails?: Maybe<AssetsDmDataSourceDetails>;
|
|
87570
88319
|
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
88320
|
+
assetsDM_dataSourceMapping?: Maybe<Array<AssetsDmDataSourceMapping>>;
|
|
87571
88321
|
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
88322
|
+
assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
|
|
87572
88323
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
88324
|
+
assetsDM_objectTags?: Maybe<AssetsDmObjectTags>;
|
|
87573
88325
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
87574
88326
|
assetsDM_objectsListDataRows?: Maybe<AssetsDmObjectsListDataRows>;
|
|
87575
88327
|
assetsDM_rawData?: Maybe<AssetsDmRawDataResponse>;
|
|
@@ -87650,6 +88402,7 @@ export declare type Query = {
|
|
|
87650
88402
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
87651
88403
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
87652
88404
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
88405
|
+
confluence_note?: Maybe<NoteResponse>;
|
|
87653
88406
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
87654
88407
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
87655
88408
|
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
@@ -87720,6 +88473,7 @@ export declare type Query = {
|
|
|
87720
88473
|
countGroupByUser?: Maybe<CountGroupByUser>;
|
|
87721
88474
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
87722
88475
|
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
88476
|
+
cpls_customContributionTargets: Array<CplsCustomContributionTarget>;
|
|
87723
88477
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
87724
88478
|
csmAi_generateCoachingTriggeringCondition: Scalars['String']['output'];
|
|
87725
88479
|
csmAi_getAgentVersion?: Maybe<CsmAiAgentVersionResult>;
|
|
@@ -87831,8 +88585,8 @@ export declare type Query = {
|
|
|
87831
88585
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
87832
88586
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
87833
88587
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
87834
|
-
|
|
87835
|
-
|
|
88588
|
+
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
88589
|
+
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
87836
88590
|
graphStore?: Maybe<GraphStore>;
|
|
87837
88591
|
group?: Maybe<Group>;
|
|
87838
88592
|
groupCounts?: Maybe<GraphQlGroupCountsResult>;
|
|
@@ -87891,7 +88645,8 @@ export declare type Query = {
|
|
|
87891
88645
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
87892
88646
|
jira_fieldSchemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
87893
88647
|
jira_fieldSchemeAvailableFields?: Maybe<JiraFieldConnection>;
|
|
87894
|
-
jira_fieldSchemes?: Maybe<
|
|
88648
|
+
jira_fieldSchemes?: Maybe<JiraFieldSchemesConnection>;
|
|
88649
|
+
jira_fieldSchemesByARIs?: Maybe<Array<Maybe<JiraFieldScheme>>>;
|
|
87895
88650
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
87896
88651
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
87897
88652
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -88101,8 +88856,10 @@ export declare type Query = {
|
|
|
88101
88856
|
spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
|
|
88102
88857
|
spf_ask?: Maybe<SpfAskResult>;
|
|
88103
88858
|
spf_askCommentsByIds?: Maybe<Array<Maybe<SpfAskComment>>>;
|
|
88859
|
+
spf_askLinksByIds?: Maybe<Array<Maybe<SpfAskLink>>>;
|
|
88104
88860
|
spf_asks?: Maybe<SpfAskConnection>;
|
|
88105
88861
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
88862
|
+
spf_resolveImpactedWorkUrl?: Maybe<SpfResolveImpactedWorkUrlPayload>;
|
|
88106
88863
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
88107
88864
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
88108
88865
|
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
@@ -88116,6 +88873,7 @@ export declare type Query = {
|
|
|
88116
88873
|
stakeholderComms_getStakeholdersByAssignment?: Maybe<StakeholderCommsPaginatedStakeholderResults>;
|
|
88117
88874
|
stakeholderComms_getStakeholdersByAssignmentV2?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
88118
88875
|
stakeholderComms_isStakeholderGroupNameUnique?: Maybe<Scalars['Boolean']['output']>;
|
|
88876
|
+
stakeholderComms_listStakeholders?: Maybe<StakeholderCommsStakeholderConnection>;
|
|
88119
88877
|
stalePages?: Maybe<PaginatedStalePagePayloadList>;
|
|
88120
88878
|
suggest?: Maybe<QuerySuggestionApi>;
|
|
88121
88879
|
suggestedSpaces?: Maybe<PaginatedSpaceList>;
|
|
@@ -88203,6 +88961,7 @@ export declare type QueryAgentStudio_GetAgentsArgs = {
|
|
|
88203
88961
|
cloudId: Scalars['String']['input'];
|
|
88204
88962
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88205
88963
|
input?: InputMaybe<AgentStudioAgentQueryInput>;
|
|
88964
|
+
product?: InputMaybe<Scalars['String']['input']>;
|
|
88206
88965
|
};
|
|
88207
88966
|
export declare type QueryAgentStudio_GetByExternalReferenceArgs = {
|
|
88208
88967
|
cloudId: Scalars['String']['input'];
|
|
@@ -88414,6 +89173,12 @@ export declare type QueryAssetsDm_DataSourceFormFieldsArgs = {
|
|
|
88414
89173
|
schemaId?: InputMaybe<Scalars['String']['input']>;
|
|
88415
89174
|
workspaceId: Scalars['ID']['input'];
|
|
88416
89175
|
};
|
|
89176
|
+
export declare type QueryAssetsDm_DataSourceMappingArgs = {
|
|
89177
|
+
cloudId: Scalars['ID']['input'];
|
|
89178
|
+
dataSourceId: Scalars['ID']['input'];
|
|
89179
|
+
objectClassName: Scalars['String']['input'];
|
|
89180
|
+
workspaceId: Scalars['ID']['input'];
|
|
89181
|
+
};
|
|
88417
89182
|
export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
88418
89183
|
cloudID: Scalars['ID']['input'];
|
|
88419
89184
|
dataSourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -88422,10 +89187,20 @@ export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
|
88422
89187
|
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
88423
89188
|
workspaceId: Scalars['ID']['input'];
|
|
88424
89189
|
};
|
|
89190
|
+
export declare type QueryAssetsDm_DatasourceCleansingRulesArgs = {
|
|
89191
|
+
cloudId: Scalars['ID']['input'];
|
|
89192
|
+
dataSourceId: Scalars['ID']['input'];
|
|
89193
|
+
workspaceId: Scalars['ID']['input'];
|
|
89194
|
+
};
|
|
88425
89195
|
export declare type QueryAssetsDm_ObjectClassesArgs = {
|
|
88426
89196
|
cloudId: Scalars['ID']['input'];
|
|
88427
89197
|
workspaceId: Scalars['ID']['input'];
|
|
88428
89198
|
};
|
|
89199
|
+
export declare type QueryAssetsDm_ObjectTagsArgs = {
|
|
89200
|
+
cloudId: Scalars['ID']['input'];
|
|
89201
|
+
objectId: Scalars['ID']['input'];
|
|
89202
|
+
workspaceId: Scalars['ID']['input'];
|
|
89203
|
+
};
|
|
88429
89204
|
export declare type QueryAssetsDm_ObjectsListColumnsArgs = {
|
|
88430
89205
|
cloudId: Scalars['ID']['input'];
|
|
88431
89206
|
objectId: Scalars['ID']['input'];
|
|
@@ -88770,6 +89545,9 @@ export declare type QueryConfluence_MacrosByIdsArgs = {
|
|
|
88770
89545
|
contentId: Scalars['ID']['input'];
|
|
88771
89546
|
macroIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
88772
89547
|
};
|
|
89548
|
+
export declare type QueryConfluence_NoteArgs = {
|
|
89549
|
+
id: Scalars['ID']['input'];
|
|
89550
|
+
};
|
|
88773
89551
|
export declare type QueryConfluence_PdfExportDownloadLinkArgs = {
|
|
88774
89552
|
cloudId: Scalars['ID']['input'];
|
|
88775
89553
|
id: Scalars['ID']['input'];
|
|
@@ -89168,6 +89946,9 @@ export declare type QueryCountUsersGroupByPageArgs = {
|
|
|
89168
89946
|
export declare type QueryCpls_CapacityPlanningPeopleViewArgs = {
|
|
89169
89947
|
id: Scalars['ID']['input'];
|
|
89170
89948
|
};
|
|
89949
|
+
export declare type QueryCpls_CustomContributionTargetsArgs = {
|
|
89950
|
+
ids: Array<Scalars['ID']['input']>;
|
|
89951
|
+
};
|
|
89171
89952
|
export declare type QueryCsmAi_GenerateCoachingTriggeringConditionArgs = {
|
|
89172
89953
|
conversationId: Scalars['ID']['input'];
|
|
89173
89954
|
helpCenterAri: Scalars['ID']['input'];
|
|
@@ -89587,13 +90368,15 @@ export declare type QueryGetSummaryArgs = {
|
|
|
89587
90368
|
lastUpdatedTimeSeconds: Scalars['Long']['input'];
|
|
89588
90369
|
responseType?: InputMaybe<ResponseType>;
|
|
89589
90370
|
};
|
|
89590
|
-
export declare type
|
|
90371
|
+
export declare type QueryGraphIntegration_ComponentDirectoryDimensionsArgs = {
|
|
89591
90372
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90373
|
+
cloudId: Scalars['ID']['input'];
|
|
89592
90374
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89593
90375
|
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
89594
90376
|
};
|
|
89595
|
-
export declare type
|
|
90377
|
+
export declare type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
|
|
89596
90378
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90379
|
+
cloudId: Scalars['ID']['input'];
|
|
89597
90380
|
dimensionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89598
90381
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89599
90382
|
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
@@ -89793,6 +90576,9 @@ export declare type QueryJira_FieldSchemesArgs = {
|
|
|
89793
90576
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89794
90577
|
input?: InputMaybe<JiraFieldSchemesInput>;
|
|
89795
90578
|
};
|
|
90579
|
+
export declare type QueryJira_FieldSchemesByArIsArgs = {
|
|
90580
|
+
ids: Array<Scalars['ID']['input']>;
|
|
90581
|
+
};
|
|
89796
90582
|
export declare type QueryJira_IsRovoLlmEnabledArgs = {
|
|
89797
90583
|
cloudId: Scalars['ID']['input'];
|
|
89798
90584
|
};
|
|
@@ -90013,7 +90799,11 @@ export declare type QueryNodeArgs = {
|
|
|
90013
90799
|
id: Scalars['ID']['input'];
|
|
90014
90800
|
};
|
|
90015
90801
|
export declare type QueryNotesByCreatorArgs = {
|
|
90802
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90803
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
90804
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90016
90805
|
input?: InputMaybe<NotesByCreatorInput>;
|
|
90806
|
+
orderBy?: InputMaybe<ConfluenceNotesOrdering>;
|
|
90017
90807
|
};
|
|
90018
90808
|
export declare type QueryObjectRecommendationsArgs = {
|
|
90019
90809
|
context: CollaborationGraphRequestContext;
|
|
@@ -90431,6 +91221,9 @@ export declare type QuerySingleContentArgs = {
|
|
|
90431
91221
|
status?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
90432
91222
|
validatedShareToken?: InputMaybe<Scalars['String']['input']>;
|
|
90433
91223
|
};
|
|
91224
|
+
export declare type QuerySiteOperationsArgs = {
|
|
91225
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
91226
|
+
};
|
|
90434
91227
|
export declare type QuerySitePermissionsArgs = {
|
|
90435
91228
|
operations?: InputMaybe<Array<InputMaybe<SitePermissionOperationType>>>;
|
|
90436
91229
|
permissionTypes?: InputMaybe<Array<InputMaybe<SitePermissionType>>>;
|
|
@@ -90540,6 +91333,9 @@ export declare type QuerySpf_AskArgs = {
|
|
|
90540
91333
|
export declare type QuerySpf_AskCommentsByIdsArgs = {
|
|
90541
91334
|
ids: Array<Scalars['ID']['input']>;
|
|
90542
91335
|
};
|
|
91336
|
+
export declare type QuerySpf_AskLinksByIdsArgs = {
|
|
91337
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91338
|
+
};
|
|
90543
91339
|
export declare type QuerySpf_AsksArgs = {
|
|
90544
91340
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90545
91341
|
cloudId: Scalars['ID']['input'];
|
|
@@ -90549,6 +91345,10 @@ export declare type QuerySpf_AsksArgs = {
|
|
|
90549
91345
|
export declare type QuerySpf_AsksByIdsArgs = {
|
|
90550
91346
|
ids: Array<Scalars['ID']['input']>;
|
|
90551
91347
|
};
|
|
91348
|
+
export declare type QuerySpf_ResolveImpactedWorkUrlArgs = {
|
|
91349
|
+
cloudId: Scalars['ID']['input'];
|
|
91350
|
+
url: Scalars['String']['input'];
|
|
91351
|
+
};
|
|
90552
91352
|
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
90553
91353
|
appId: Scalars['ID']['input'];
|
|
90554
91354
|
installationId: Scalars['ID']['input'];
|
|
@@ -90595,6 +91395,9 @@ export declare type QueryStakeholderComms_GetStakeholdersByAssignmentV2Args = {
|
|
|
90595
91395
|
export declare type QueryStakeholderComms_IsStakeholderGroupNameUniqueArgs = {
|
|
90596
91396
|
name: Scalars['String']['input'];
|
|
90597
91397
|
};
|
|
91398
|
+
export declare type QueryStakeholderComms_ListStakeholdersArgs = {
|
|
91399
|
+
listStakeholderConnectionInput: StakeholderCommsListStakeholderConnectionInput;
|
|
91400
|
+
};
|
|
90598
91401
|
export declare type QueryStalePagesArgs = {
|
|
90599
91402
|
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
90600
91403
|
includePagesWithChildren?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -91342,6 +92145,7 @@ export declare type RankColumnOutput = MutationResponse & {
|
|
|
91342
92145
|
export declare type RankCustomFilterInput = {
|
|
91343
92146
|
afterFilterId?: InputMaybe<Scalars['String']['input']>;
|
|
91344
92147
|
boardId: Scalars['ID']['input'];
|
|
92148
|
+
customFilterIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
91345
92149
|
id: Scalars['String']['input'];
|
|
91346
92150
|
};
|
|
91347
92151
|
export declare type RankItem = {
|
|
@@ -96920,7 +97724,7 @@ export declare type SpfAskEdge = {
|
|
|
96920
97724
|
cursor: Scalars['String']['output'];
|
|
96921
97725
|
node?: Maybe<SpfAskResult>;
|
|
96922
97726
|
};
|
|
96923
|
-
export declare type SpfAskLink = {
|
|
97727
|
+
export declare type SpfAskLink = Node & {
|
|
96924
97728
|
__typename?: 'SpfAskLink';
|
|
96925
97729
|
askId: Scalars['String']['output'];
|
|
96926
97730
|
attachedByUser?: Maybe<User>;
|
|
@@ -97090,6 +97894,10 @@ export declare type SpfDeleteAskUpdatePayload = Payload & {
|
|
|
97090
97894
|
success: Scalars['Boolean']['output'];
|
|
97091
97895
|
};
|
|
97092
97896
|
export declare type SpfImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
97897
|
+
export declare type SpfResolveImpactedWorkUrlPayload = {
|
|
97898
|
+
__typename?: 'SpfResolveImpactedWorkUrlPayload';
|
|
97899
|
+
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
97900
|
+
};
|
|
97093
97901
|
export declare type SpfUpdateAskCommentDataInput = {
|
|
97094
97902
|
data: Scalars['String']['input'];
|
|
97095
97903
|
id: Scalars['ID']['input'];
|
|
@@ -97250,6 +98058,7 @@ export declare enum StakeholderCommsAddedFromType {
|
|
|
97250
98058
|
export declare type StakeholderCommsAssignment = {
|
|
97251
98059
|
__typename?: 'StakeholderCommsAssignment';
|
|
97252
98060
|
addedFrom?: Maybe<StakeholderCommsAddedFromType>;
|
|
98061
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
97253
98062
|
assignmentType?: Maybe<StakeholderCommsAssignmentType>;
|
|
97254
98063
|
externalAssignmentId?: Maybe<Scalars['String']['output']>;
|
|
97255
98064
|
id?: Maybe<Scalars['String']['output']>;
|
|
@@ -97278,6 +98087,7 @@ export declare type StakeholderCommsAssignmentEdge = {
|
|
|
97278
98087
|
node: StakeholderCommsAssignment;
|
|
97279
98088
|
};
|
|
97280
98089
|
export declare type StakeholderCommsAssignmentIdInput = {
|
|
98090
|
+
ari?: InputMaybe<Scalars['String']['input']>;
|
|
97281
98091
|
assignmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
97282
98092
|
assignmentType?: InputMaybe<StakeholderCommsAssignmentType>;
|
|
97283
98093
|
externalAssignmentId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -97316,10 +98126,17 @@ export declare type StakeholderCommsCreateStakeholderInput = {
|
|
|
97316
98126
|
};
|
|
97317
98127
|
export declare type StakeholderCommsGroups = {
|
|
97318
98128
|
__typename?: 'StakeholderCommsGroups';
|
|
97319
|
-
|
|
98129
|
+
avatar?: Maybe<Scalars['String']['output']>;
|
|
97320
98130
|
id?: Maybe<Scalars['ID']['output']>;
|
|
97321
98131
|
name?: Maybe<Scalars['String']['output']>;
|
|
97322
98132
|
};
|
|
98133
|
+
export declare type StakeholderCommsListStakeholderConnectionInput = {
|
|
98134
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
98135
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
98136
|
+
filter?: InputMaybe<StakeholderCommsStakeholderConnectionFilter>;
|
|
98137
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
98138
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
98139
|
+
};
|
|
97323
98140
|
export declare type StakeholderCommsModePreference = {
|
|
97324
98141
|
__typename?: 'StakeholderCommsModePreference';
|
|
97325
98142
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -97390,6 +98207,7 @@ export declare type StakeholderCommsPreferencesInput = {
|
|
|
97390
98207
|
export declare type StakeholderCommsStakeholder = {
|
|
97391
98208
|
__typename?: 'StakeholderCommsStakeholder';
|
|
97392
98209
|
aaid?: Maybe<Scalars['String']['output']>;
|
|
98210
|
+
ari?: Maybe<Scalars['String']['output']>;
|
|
97393
98211
|
avatar?: Maybe<Scalars['String']['output']>;
|
|
97394
98212
|
groups?: Maybe<Array<StakeholderCommsGroups>>;
|
|
97395
98213
|
id: Scalars['ID']['output'];
|
|
@@ -97421,6 +98239,10 @@ export declare type StakeholderCommsStakeholderConnection = {
|
|
|
97421
98239
|
pageInfo: StakeholderCommsPageInfo;
|
|
97422
98240
|
totalCount: Scalars['Int']['output'];
|
|
97423
98241
|
};
|
|
98242
|
+
export declare type StakeholderCommsStakeholderConnectionFilter = {
|
|
98243
|
+
status?: InputMaybe<Array<StakeholderCommsStakeholderStatus>>;
|
|
98244
|
+
type?: InputMaybe<Array<StakeholderCommsStakeholderType>>;
|
|
98245
|
+
};
|
|
97424
98246
|
export declare type StakeholderCommsStakeholderConnectionInput = {
|
|
97425
98247
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
97426
98248
|
assignmentIdInput: StakeholderCommsAssignmentIdInput;
|
|
@@ -97490,6 +98312,7 @@ export declare type StakeholderCommsStakeholderGroupsAndMemberships = {
|
|
|
97490
98312
|
};
|
|
97491
98313
|
export declare type StakeholderCommsStakeholderIdInput = {
|
|
97492
98314
|
aaid?: InputMaybe<Scalars['String']['input']>;
|
|
98315
|
+
ari?: InputMaybe<Scalars['String']['input']>;
|
|
97493
98316
|
emailId?: InputMaybe<Scalars['String']['input']>;
|
|
97494
98317
|
stakeholderId?: InputMaybe<Scalars['ID']['input']>;
|
|
97495
98318
|
stakeholderType?: InputMaybe<StakeholderCommsStakeholderType>;
|
|
@@ -97654,6 +98477,7 @@ export declare type Subscription = {
|
|
|
97654
98477
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
97655
98478
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
97656
98479
|
devai_onAutodevJobLogsUpdated?: Maybe<DevAiAutodevLogEdge>;
|
|
98480
|
+
devai_onBoysenberrySessionUpdated?: Maybe<DevAiRovoDevSession>;
|
|
97657
98481
|
devai_onTechnicalPlannerJobUpdated?: Maybe<DevAiTechnicalPlannerJob>;
|
|
97658
98482
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
97659
98483
|
jira?: Maybe<JiraSubscription>;
|
|
@@ -97681,6 +98505,9 @@ export declare type SubscriptionDevai_OnAutodevJobLogsUpdatedArgs = {
|
|
|
97681
98505
|
cloudId: Scalars['ID']['input'];
|
|
97682
98506
|
jobId: Scalars['ID']['input'];
|
|
97683
98507
|
};
|
|
98508
|
+
export declare type SubscriptionDevai_OnBoysenberrySessionUpdatedArgs = {
|
|
98509
|
+
sessionAri: Scalars['ID']['input'];
|
|
98510
|
+
};
|
|
97684
98511
|
export declare type SubscriptionDevai_OnTechnicalPlannerJobUpdatedArgs = {
|
|
97685
98512
|
cloudId: Scalars['ID']['input'];
|
|
97686
98513
|
jobId: Scalars['ID']['input'];
|
|
@@ -98447,6 +99274,7 @@ export declare type TeamV2 = Node & {
|
|
|
98447
99274
|
members?: Maybe<TeamMemberConnectionV2>;
|
|
98448
99275
|
membershipSettings?: Maybe<TeamMembershipSettings>;
|
|
98449
99276
|
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
99277
|
+
profileUrl?: Maybe<Scalars['String']['output']>;
|
|
98450
99278
|
smallAvatarImageUrl?: Maybe<Scalars['String']['output']>;
|
|
98451
99279
|
smallHeaderImageUrl?: Maybe<Scalars['String']['output']>;
|
|
98452
99280
|
state?: Maybe<TeamStateV2>;
|
|
@@ -99509,6 +100337,44 @@ export declare type TownsquareGoalsAddGoalTeamLinkPayload = {
|
|
|
99509
100337
|
goalTeamEdge?: Maybe<TownsquareGoalTeamEdge>;
|
|
99510
100338
|
success: Scalars['Boolean']['output'];
|
|
99511
100339
|
};
|
|
100340
|
+
export declare type TownsquareGoalsCreateUpdateInput = {
|
|
100341
|
+
goalId: Scalars['ID']['input'];
|
|
100342
|
+
score?: InputMaybe<Scalars['Int']['input']>;
|
|
100343
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
100344
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
100345
|
+
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
100346
|
+
updateNotes?: InputMaybe<Array<InputMaybe<TownsquareUpdateNoteInput>>>;
|
|
100347
|
+
};
|
|
100348
|
+
export declare type TownsquareGoalsCreateUpdatePayload = {
|
|
100349
|
+
__typename?: 'TownsquareGoalsCreateUpdatePayload';
|
|
100350
|
+
errors?: Maybe<Array<MutationError>>;
|
|
100351
|
+
success: Scalars['Boolean']['output'];
|
|
100352
|
+
update?: Maybe<TownsquareGoalUpdate>;
|
|
100353
|
+
};
|
|
100354
|
+
export declare type TownsquareGoalsDeleteLatestUpdateInput = {
|
|
100355
|
+
updateId: Scalars['ID']['input'];
|
|
100356
|
+
};
|
|
100357
|
+
export declare type TownsquareGoalsDeleteLatestUpdatePayload = {
|
|
100358
|
+
__typename?: 'TownsquareGoalsDeleteLatestUpdatePayload';
|
|
100359
|
+
errors?: Maybe<Array<MutationError>>;
|
|
100360
|
+
goal?: Maybe<TownsquareGoal>;
|
|
100361
|
+
success: Scalars['Boolean']['output'];
|
|
100362
|
+
updateId?: Maybe<Scalars['ID']['output']>;
|
|
100363
|
+
};
|
|
100364
|
+
export declare type TownsquareGoalsEditUpdateInput = {
|
|
100365
|
+
goalUpdateId: Scalars['ID']['input'];
|
|
100366
|
+
score?: InputMaybe<Scalars['Int']['input']>;
|
|
100367
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
100368
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
100369
|
+
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
100370
|
+
updateNotes?: InputMaybe<Array<InputMaybe<TownsquareUpdateNoteInput>>>;
|
|
100371
|
+
};
|
|
100372
|
+
export declare type TownsquareGoalsEditUpdatePayload = {
|
|
100373
|
+
__typename?: 'TownsquareGoalsEditUpdatePayload';
|
|
100374
|
+
errors?: Maybe<Array<MutationError>>;
|
|
100375
|
+
success: Scalars['Boolean']['output'];
|
|
100376
|
+
update?: Maybe<TownsquareGoalUpdate>;
|
|
100377
|
+
};
|
|
99512
100378
|
export declare type TownsquareGoalsRemoveGoalTeamLinkInput = {
|
|
99513
100379
|
goalId: Scalars['ID']['input'];
|
|
99514
100380
|
teamId: Scalars['ID']['input'];
|
|
@@ -100111,6 +100977,31 @@ export declare type TownsquareProjectsEditPayload = {
|
|
|
100111
100977
|
project?: Maybe<TownsquareProject>;
|
|
100112
100978
|
success: Scalars['Boolean']['output'];
|
|
100113
100979
|
};
|
|
100980
|
+
export declare type TownsquareProjectsEditUpdateInput = {
|
|
100981
|
+
highlights?: InputMaybe<Array<InputMaybe<TownsquareUpdateHighlightInput>>>;
|
|
100982
|
+
status?: InputMaybe<Scalars['String']['input']>;
|
|
100983
|
+
summary?: InputMaybe<Scalars['String']['input']>;
|
|
100984
|
+
targetDate?: InputMaybe<TownsquareTargetDateInput>;
|
|
100985
|
+
updateId: Scalars['ID']['input'];
|
|
100986
|
+
updateNotes?: InputMaybe<Array<InputMaybe<TownsquareUpdateNoteInput>>>;
|
|
100987
|
+
};
|
|
100988
|
+
export declare type TownsquareProjectsEditUpdatePayload = {
|
|
100989
|
+
__typename?: 'TownsquareProjectsEditUpdatePayload';
|
|
100990
|
+
errors?: Maybe<Array<MutationError>>;
|
|
100991
|
+
success: Scalars['Boolean']['output'];
|
|
100992
|
+
update?: Maybe<TownsquareProjectUpdate>;
|
|
100993
|
+
};
|
|
100994
|
+
export declare type TownsquareProjectsRemoveGoalLinkInput = {
|
|
100995
|
+
goalId: Scalars['ID']['input'];
|
|
100996
|
+
projectId: Scalars['ID']['input'];
|
|
100997
|
+
};
|
|
100998
|
+
export declare type TownsquareProjectsRemoveGoalLinkPayload = {
|
|
100999
|
+
__typename?: 'TownsquareProjectsRemoveGoalLinkPayload';
|
|
101000
|
+
errors?: Maybe<Array<MutationError>>;
|
|
101001
|
+
goal?: Maybe<TownsquareGoal>;
|
|
101002
|
+
project?: Maybe<TownsquareProject>;
|
|
101003
|
+
success: Scalars['Boolean']['output'];
|
|
101004
|
+
};
|
|
100114
101005
|
export declare type TownsquareProjectsRemoveMemberInput = {
|
|
100115
101006
|
projectId: Scalars['ID']['input'];
|
|
100116
101007
|
userId: Scalars['ID']['input'];
|
|
@@ -100121,6 +101012,17 @@ export declare type TownsquareProjectsRemoveMemberPayload = {
|
|
|
100121
101012
|
success: Scalars['Boolean']['output'];
|
|
100122
101013
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
100123
101014
|
};
|
|
101015
|
+
export declare type TownsquareProjectsRemoveTeamContributorsInput = {
|
|
101016
|
+
projectId: Scalars['ID']['input'];
|
|
101017
|
+
teamId: Scalars['ID']['input'];
|
|
101018
|
+
};
|
|
101019
|
+
export declare type TownsquareProjectsRemoveTeamContributorsPayload = {
|
|
101020
|
+
__typename?: 'TownsquareProjectsRemoveTeamContributorsPayload';
|
|
101021
|
+
errors?: Maybe<Array<MutationError>>;
|
|
101022
|
+
project?: Maybe<TownsquareProject>;
|
|
101023
|
+
success: Scalars['Boolean']['output'];
|
|
101024
|
+
team?: Maybe<TeamV2>;
|
|
101025
|
+
};
|
|
100124
101026
|
export declare type TownsquareProjectsSetDependencyInput = {
|
|
100125
101027
|
incomingProjectId: Scalars['ID']['input'];
|
|
100126
101028
|
outgoingProjectId: Scalars['ID']['input'];
|
|
@@ -100542,9 +101444,9 @@ export declare type TrelloAction = {
|
|
|
100542
101444
|
};
|
|
100543
101445
|
export declare type TrelloActionAttachmentEntity = {
|
|
100544
101446
|
__typename?: 'TrelloActionAttachmentEntity';
|
|
100545
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
100546
101447
|
link?: Maybe<Scalars['Boolean']['output']>;
|
|
100547
101448
|
name?: Maybe<Scalars['String']['output']>;
|
|
101449
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
100548
101450
|
previewUrl?: Maybe<Scalars['String']['output']>;
|
|
100549
101451
|
previewUrl2x?: Maybe<Scalars['String']['output']>;
|
|
100550
101452
|
type?: Maybe<Scalars['String']['output']>;
|
|
@@ -100552,8 +101454,8 @@ export declare type TrelloActionAttachmentEntity = {
|
|
|
100552
101454
|
};
|
|
100553
101455
|
export declare type TrelloActionAttachmentPreviewEntity = {
|
|
100554
101456
|
__typename?: 'TrelloActionAttachmentPreviewEntity';
|
|
100555
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
100556
101457
|
name?: Maybe<Scalars['String']['output']>;
|
|
101458
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
100557
101459
|
originalUrl?: Maybe<Scalars['URL']['output']>;
|
|
100558
101460
|
previewUrl?: Maybe<Scalars['URL']['output']>;
|
|
100559
101461
|
previewUrl2x?: Maybe<Scalars['URL']['output']>;
|
|
@@ -100583,6 +101485,7 @@ export declare type TrelloActionCardEntity = {
|
|
|
100583
101485
|
shortId?: Maybe<Scalars['Int']['output']>;
|
|
100584
101486
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
100585
101487
|
start?: Maybe<Scalars['DateTime']['output']>;
|
|
101488
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
100586
101489
|
type?: Maybe<Scalars['String']['output']>;
|
|
100587
101490
|
};
|
|
100588
101491
|
export declare type TrelloActionCheckItemEntity = {
|
|
@@ -100600,6 +101503,7 @@ export declare type TrelloActionChecklistEntity = {
|
|
|
100600
101503
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
100601
101504
|
name?: Maybe<Scalars['String']['output']>;
|
|
100602
101505
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
101506
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
100603
101507
|
type?: Maybe<Scalars['String']['output']>;
|
|
100604
101508
|
};
|
|
100605
101509
|
export declare type TrelloActionCommentEntity = {
|
|
@@ -100626,6 +101530,7 @@ export declare type TrelloActionListEntity = {
|
|
|
100626
101530
|
__typename?: 'TrelloActionListEntity';
|
|
100627
101531
|
name?: Maybe<Scalars['String']['output']>;
|
|
100628
101532
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
101533
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
100629
101534
|
type?: Maybe<Scalars['String']['output']>;
|
|
100630
101535
|
};
|
|
100631
101536
|
export declare type TrelloActionMemberEntity = {
|
|
@@ -101082,6 +101987,7 @@ export declare type TrelloBoardMirrorCardsMirrorCardsArgs = {
|
|
|
101082
101987
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101083
101988
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101084
101989
|
};
|
|
101990
|
+
export declare type TrelloBoardOrInbox = TrelloBoard | TrelloInbox;
|
|
101085
101991
|
export declare type TrelloBoardPowerUpConnection = {
|
|
101086
101992
|
__typename?: 'TrelloBoardPowerUpConnection';
|
|
101087
101993
|
edges?: Maybe<Array<TrelloBoardPowerUpEdge>>;
|
|
@@ -101697,6 +102603,7 @@ export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionDat
|
|
|
101697
102603
|
card?: Maybe<TrelloCard>;
|
|
101698
102604
|
creator?: Maybe<TrelloMember>;
|
|
101699
102605
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
102606
|
+
dateLastEdited?: Maybe<Scalars['DateTime']['output']>;
|
|
101700
102607
|
displayEntities?: Maybe<TrelloCommentCardActionDisplayEntities>;
|
|
101701
102608
|
displayKey?: Maybe<Scalars['String']['output']>;
|
|
101702
102609
|
id: Scalars['ID']['output'];
|
|
@@ -102491,6 +103398,7 @@ export declare type TrelloMutationApi = {
|
|
|
102491
103398
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
102492
103399
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
102493
103400
|
updateOAuth2AppCallbackUrls?: Maybe<TrelloUpdateOAuth2AppCallbackUrlsPayload>;
|
|
103401
|
+
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
102494
103402
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
102495
103403
|
};
|
|
102496
103404
|
export declare type TrelloMutationApiAddBoardStarArgs = {
|
|
@@ -102586,6 +103494,9 @@ export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
|
102586
103494
|
export declare type TrelloMutationApiUpdateOAuth2AppCallbackUrlsArgs = {
|
|
102587
103495
|
input: TrelloUpdateOAuth2AppCallbackUrlsInput;
|
|
102588
103496
|
};
|
|
103497
|
+
export declare type TrelloMutationApiUpdateOAuth2ClientArgs = {
|
|
103498
|
+
input: TrelloUpdateOAuth2ClientInput;
|
|
103499
|
+
};
|
|
102589
103500
|
export declare type TrelloMutationApiWatchCardArgs = {
|
|
102590
103501
|
input: TrelloWatchCardInput;
|
|
102591
103502
|
};
|
|
@@ -102594,6 +103505,7 @@ export declare type TrelloOAuth2Client = {
|
|
|
102594
103505
|
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
102595
103506
|
clientId: Scalars['String']['output'];
|
|
102596
103507
|
clientSecret: Scalars['String']['output'];
|
|
103508
|
+
clientType: Scalars['String']['output'];
|
|
102597
103509
|
profile: Scalars['String']['output'];
|
|
102598
103510
|
scopes?: Maybe<Array<TrelloOAuth2Scope>>;
|
|
102599
103511
|
};
|
|
@@ -103073,6 +103985,7 @@ export declare type TrelloQueryApi = {
|
|
|
103073
103985
|
labelsById?: Maybe<Array<Maybe<TrelloLabel>>>;
|
|
103074
103986
|
list?: Maybe<TrelloList>;
|
|
103075
103987
|
listsById?: Maybe<Array<Maybe<TrelloList>>>;
|
|
103988
|
+
me?: Maybe<TrelloMember>;
|
|
103076
103989
|
member?: Maybe<TrelloMember>;
|
|
103077
103990
|
plannerAccountsByMemberId?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
103078
103991
|
plannerByWorkspaceId?: Maybe<TrelloPlanner>;
|
|
@@ -103632,6 +104545,29 @@ export declare type TrelloUpdateOAuth2AppCallbackUrlsPayload = Payload & {
|
|
|
103632
104545
|
id?: Maybe<Scalars['ID']['output']>;
|
|
103633
104546
|
success: Scalars['Boolean']['output'];
|
|
103634
104547
|
};
|
|
104548
|
+
export declare type TrelloUpdateOAuth2ClientInput = {
|
|
104549
|
+
appContactLink?: InputMaybe<Scalars['String']['input']>;
|
|
104550
|
+
appDescription?: InputMaybe<Scalars['String']['input']>;
|
|
104551
|
+
appLogoUrl?: InputMaybe<Scalars['String']['input']>;
|
|
104552
|
+
appVendorName?: InputMaybe<Scalars['String']['input']>;
|
|
104553
|
+
callbackUrls?: InputMaybe<Array<Scalars['URL']['input']>>;
|
|
104554
|
+
clientType?: InputMaybe<Scalars['String']['input']>;
|
|
104555
|
+
id: Scalars['ID']['input'];
|
|
104556
|
+
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
104557
|
+
};
|
|
104558
|
+
export declare type TrelloUpdateOAuth2ClientPayload = Payload & {
|
|
104559
|
+
__typename?: 'TrelloUpdateOAuth2ClientPayload';
|
|
104560
|
+
appContactLink?: Maybe<Scalars['String']['output']>;
|
|
104561
|
+
appDescription?: Maybe<Scalars['String']['output']>;
|
|
104562
|
+
appLogoUrl?: Maybe<Scalars['String']['output']>;
|
|
104563
|
+
appVendorName?: Maybe<Scalars['String']['output']>;
|
|
104564
|
+
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
104565
|
+
clientType?: Maybe<Scalars['String']['output']>;
|
|
104566
|
+
errors?: Maybe<Array<MutationError>>;
|
|
104567
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
104568
|
+
scopes?: Maybe<Array<Scalars['String']['output']>>;
|
|
104569
|
+
success: Scalars['Boolean']['output'];
|
|
104570
|
+
};
|
|
103635
104571
|
export declare type TrelloUploadedBackground = {
|
|
103636
104572
|
__typename?: 'TrelloUploadedBackground';
|
|
103637
104573
|
objectId: Scalars['ID']['output'];
|
|
@@ -105498,7 +106434,7 @@ export declare type UpdateJiraPlaybookStepInput = {
|
|
|
105498
106434
|
type: JiraPlaybookStepType;
|
|
105499
106435
|
};
|
|
105500
106436
|
export declare type UpdateMetadataInput = {
|
|
105501
|
-
ari
|
|
106437
|
+
ari?: InputMaybe<Scalars['String']['input']>;
|
|
105502
106438
|
extraProps?: InputMaybe<Array<PropInput>>;
|
|
105503
106439
|
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
105504
106440
|
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -105513,8 +106449,10 @@ export declare type UpdateNestedPageOwnersPayload = Payload & {
|
|
|
105513
106449
|
warnings?: Maybe<Array<Maybe<ChangeOwnerWarning>>>;
|
|
105514
106450
|
};
|
|
105515
106451
|
export declare type UpdateNoteInput = {
|
|
106452
|
+
backgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
105516
106453
|
body?: InputMaybe<Scalars['String']['input']>;
|
|
105517
|
-
|
|
106454
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
106455
|
+
metadata?: InputMaybe<UpdateMetadataInput>;
|
|
105518
106456
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
105519
106457
|
};
|
|
105520
106458
|
export declare type UpdateNotePayload = {
|