@forge/cli-shared 8.3.1-next.1 → 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 +7 -0
- package/out/graphql/graphql-types.d.ts +905 -59
- 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'];
|
|
@@ -3655,31 +3843,43 @@ export declare type AssetsDmObjectSchema = {
|
|
|
3655
3843
|
};
|
|
3656
3844
|
export declare type AssetsDmObjectTag = {
|
|
3657
3845
|
__typename?: 'AssetsDMObjectTag';
|
|
3846
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
3847
|
+
name: Scalars['String']['output'];
|
|
3658
3848
|
objectId: Scalars['ID']['output'];
|
|
3659
3849
|
tagCode: Scalars['Int']['output'];
|
|
3660
|
-
tagDescription?: Maybe<Scalars['String']['output']>;
|
|
3661
3850
|
tagId: Scalars['ID']['output'];
|
|
3662
|
-
|
|
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'];
|
|
3663
3866
|
};
|
|
3664
3867
|
export declare type AssetsDmObjectTags = {
|
|
3665
3868
|
__typename?: 'AssetsDMObjectTags';
|
|
3666
|
-
|
|
3667
|
-
|
|
3668
|
-
};
|
|
3669
|
-
export declare type AssetsDmObjectTagsArgs = {
|
|
3670
|
-
cloudId: Scalars['ID']['input'];
|
|
3671
|
-
objectId: Scalars['ID']['input'];
|
|
3672
|
-
workspaceId: Scalars['ID']['input'];
|
|
3869
|
+
count: Scalars['Int']['output'];
|
|
3870
|
+
data: Array<AssetsDmObjectTag>;
|
|
3673
3871
|
};
|
|
3674
3872
|
export declare enum AssetsDmObjectsListColumnType {
|
|
3675
3873
|
Boolean = "BOOLEAN",
|
|
3676
3874
|
Datetime = "DATETIME",
|
|
3677
3875
|
Icon = "ICON",
|
|
3876
|
+
Number = "NUMBER",
|
|
3678
3877
|
String = "STRING",
|
|
3679
3878
|
Tag = "TAG"
|
|
3680
3879
|
}
|
|
3681
3880
|
export declare type AssetsDmObjectsListColumns = {
|
|
3682
3881
|
__typename?: 'AssetsDMObjectsListColumns';
|
|
3882
|
+
columnsCount: Scalars['Int']['output'];
|
|
3683
3883
|
dataColumns: Array<AssetsDmObjectsListDataColumn>;
|
|
3684
3884
|
};
|
|
3685
3885
|
export declare type AssetsDmObjectsListDataColumn = {
|
|
@@ -3801,12 +4001,17 @@ export declare type AssetsIcon = {
|
|
|
3801
4001
|
url16?: Maybe<Scalars['String']['output']>;
|
|
3802
4002
|
url48?: Maybe<Scalars['String']['output']>;
|
|
3803
4003
|
};
|
|
4004
|
+
export declare type AssetsLinks = {
|
|
4005
|
+
__typename?: 'AssetsLinks';
|
|
4006
|
+
web?: Maybe<Scalars['String']['output']>;
|
|
4007
|
+
};
|
|
3804
4008
|
export declare type AssetsObject = Node & {
|
|
3805
4009
|
__typename?: 'AssetsObject';
|
|
3806
4010
|
avatar?: Maybe<AssetsAvatar>;
|
|
3807
4011
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
3808
4012
|
id: Scalars['ID']['output'];
|
|
3809
4013
|
label?: Maybe<Scalars['String']['output']>;
|
|
4014
|
+
links?: Maybe<AssetsLinks>;
|
|
3810
4015
|
objectKey?: Maybe<Scalars['String']['output']>;
|
|
3811
4016
|
objectType?: Maybe<AssetsObjectType>;
|
|
3812
4017
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -3816,6 +4021,7 @@ export declare type AssetsObjectType = Node & {
|
|
|
3816
4021
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
3817
4022
|
icon?: Maybe<AssetsIcon>;
|
|
3818
4023
|
id: Scalars['ID']['output'];
|
|
4024
|
+
links?: Maybe<AssetsLinks>;
|
|
3819
4025
|
name?: Maybe<Scalars['String']['output']>;
|
|
3820
4026
|
schema?: Maybe<AssetsSchema>;
|
|
3821
4027
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -3825,6 +4031,7 @@ export declare type AssetsSchema = Node & {
|
|
|
3825
4031
|
created?: Maybe<Scalars['DateTime']['output']>;
|
|
3826
4032
|
id: Scalars['ID']['output'];
|
|
3827
4033
|
key?: Maybe<Scalars['String']['output']>;
|
|
4034
|
+
links?: Maybe<AssetsLinks>;
|
|
3828
4035
|
name?: Maybe<Scalars['String']['output']>;
|
|
3829
4036
|
updated?: Maybe<Scalars['DateTime']['output']>;
|
|
3830
4037
|
};
|
|
@@ -5436,6 +5643,8 @@ export declare type CcpOfferingChargeElement = {
|
|
|
5436
5643
|
};
|
|
5437
5644
|
export declare type CcpOfferingChargeElementUsageConfig = {
|
|
5438
5645
|
__typename?: 'CcpOfferingChargeElementUsageConfig';
|
|
5646
|
+
consumerKeyType?: Maybe<Scalars['String']['output']>;
|
|
5647
|
+
scale?: Maybe<CcpUsageConfigScale>;
|
|
5439
5648
|
usageKey?: Maybe<Scalars['String']['output']>;
|
|
5440
5649
|
};
|
|
5441
5650
|
export declare type CcpOfferingGroup = {
|
|
@@ -5449,7 +5658,8 @@ export declare type CcpOfferingGroup = {
|
|
|
5449
5658
|
slug?: Maybe<Scalars['String']['output']>;
|
|
5450
5659
|
};
|
|
5451
5660
|
export declare enum CcpOfferingHostingType {
|
|
5452
|
-
Cloud = "CLOUD"
|
|
5661
|
+
Cloud = "CLOUD",
|
|
5662
|
+
Datacenter = "DATACENTER"
|
|
5453
5663
|
}
|
|
5454
5664
|
export declare type CcpOfferingRelationship = {
|
|
5455
5665
|
__typename?: 'CcpOfferingRelationship';
|
|
@@ -6581,6 +6791,13 @@ export declare enum CcpTrialEndBehaviour {
|
|
|
6581
6791
|
BillingPlan = "BILLING_PLAN",
|
|
6582
6792
|
TrialPlan = "TRIAL_PLAN"
|
|
6583
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
|
+
};
|
|
6584
6801
|
export declare type CcpUsageQueryBucket = {
|
|
6585
6802
|
__typename?: 'CcpUsageQueryBucket';
|
|
6586
6803
|
end?: Maybe<Scalars['Float']['output']>;
|
|
@@ -12515,7 +12732,14 @@ export declare type ConfluenceAncestor = ConfluenceDatabase | ConfluenceEmbed |
|
|
|
12515
12732
|
export declare type ConfluenceAppInstallationLicense = {
|
|
12516
12733
|
__typename?: 'ConfluenceAppInstallationLicense';
|
|
12517
12734
|
active: Scalars['Boolean']['output'];
|
|
12735
|
+
billingPeriod?: Maybe<Scalars['String']['output']>;
|
|
12518
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']>;
|
|
12519
12743
|
};
|
|
12520
12744
|
export declare enum ConfluenceAppInstallationLicenseCapabilitySet {
|
|
12521
12745
|
CapabilityAdvanced = "CAPABILITY_ADVANCED",
|
|
@@ -12950,6 +13174,20 @@ export declare type ConfluenceConvertContentToFolderPayload = {
|
|
|
12950
13174
|
__typename?: 'ConfluenceConvertContentToFolderPayload';
|
|
12951
13175
|
content?: Maybe<Content>;
|
|
12952
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
|
+
};
|
|
12953
13191
|
export declare type ConfluenceCopyPageTaskResult = {
|
|
12954
13192
|
__typename?: 'ConfluenceCopyPageTaskResult';
|
|
12955
13193
|
page?: Maybe<ConfluencePage>;
|
|
@@ -13365,6 +13603,7 @@ export declare type ConfluenceExtensionPrincipal = {
|
|
|
13365
13603
|
id?: Maybe<Scalars['ID']['output']>;
|
|
13366
13604
|
};
|
|
13367
13605
|
export declare type ConfluenceExtensionRenderingContextInput = {
|
|
13606
|
+
contentId?: InputMaybe<Scalars['Long']['input']>;
|
|
13368
13607
|
spaceId?: InputMaybe<Scalars['Long']['input']>;
|
|
13369
13608
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
13370
13609
|
};
|
|
@@ -13453,10 +13692,12 @@ export declare type ConfluenceForgeExtension = {
|
|
|
13453
13692
|
appId: Scalars['ID']['output'];
|
|
13454
13693
|
appOwner?: Maybe<Scalars['String']['output']>;
|
|
13455
13694
|
appVersion?: Maybe<Scalars['String']['output']>;
|
|
13695
|
+
confluenceUserAccess?: Maybe<ConfluenceUserAccess>;
|
|
13456
13696
|
consentUrl?: Maybe<Scalars['String']['output']>;
|
|
13457
13697
|
definitionId: Scalars['ID']['output'];
|
|
13458
13698
|
egress?: Maybe<Array<ConfluenceExtensionEgressDeclaration>>;
|
|
13459
13699
|
environmentId: Scalars['ID']['output'];
|
|
13700
|
+
environmentKey?: Maybe<Scalars['String']['output']>;
|
|
13460
13701
|
environmentType: Scalars['String']['output'];
|
|
13461
13702
|
hiddenBy?: Maybe<ConfluenceExtensionVisibilityControlMechanism>;
|
|
13462
13703
|
id: Scalars['ID']['output'];
|
|
@@ -13846,6 +14087,10 @@ export declare enum ConfluenceMutationContentStatus {
|
|
|
13846
14087
|
Current = "CURRENT",
|
|
13847
14088
|
Draft = "DRAFT"
|
|
13848
14089
|
}
|
|
14090
|
+
export declare enum ConfluenceNotesOrdering {
|
|
14091
|
+
DateLastModifiedAsc = "DATE_LAST_MODIFIED_ASC",
|
|
14092
|
+
DateLastModifiedDesc = "DATE_LAST_MODIFIED_DESC"
|
|
14093
|
+
}
|
|
13849
14094
|
export declare type ConfluenceOperationCheck = {
|
|
13850
14095
|
__typename?: 'ConfluenceOperationCheck';
|
|
13851
14096
|
operation?: Maybe<ConfluenceOperationName>;
|
|
@@ -14646,6 +14891,15 @@ export declare type ConfluenceUpdateAdminAnnouncementBannerInput = {
|
|
|
14646
14891
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
14647
14892
|
visibility?: InputMaybe<ConfluenceAdminAnnouncementBannerVisibilityType>;
|
|
14648
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
|
+
};
|
|
14649
14903
|
export declare type ConfluenceUpdateCommentInput = {
|
|
14650
14904
|
body: ConfluenceContentBodyInput;
|
|
14651
14905
|
id: Scalars['ID']['input'];
|
|
@@ -14842,6 +15096,11 @@ export declare type ConfluenceUser = {
|
|
|
14842
15096
|
space?: Maybe<Space>;
|
|
14843
15097
|
userKey?: Maybe<Scalars['String']['output']>;
|
|
14844
15098
|
};
|
|
15099
|
+
export declare type ConfluenceUserAccess = {
|
|
15100
|
+
__typename?: 'ConfluenceUserAccess';
|
|
15101
|
+
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
15102
|
+
hasAccess?: Maybe<Scalars['Boolean']['output']>;
|
|
15103
|
+
};
|
|
14845
15104
|
export declare type ConfluenceUserClass = {
|
|
14846
15105
|
__typename?: 'ConfluenceUserClass';
|
|
14847
15106
|
displayName: Scalars['String']['output'];
|
|
@@ -17281,8 +17540,91 @@ export declare type CountUsersGroupByPageItem = {
|
|
|
17281
17540
|
};
|
|
17282
17541
|
export declare type CplsCapacityPlanningPeopleView = {
|
|
17283
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';
|
|
17284
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;
|
|
17285
17626
|
};
|
|
17627
|
+
export declare type CplsWorkData = CplsCustomContributionTarget | JiraIssue;
|
|
17286
17628
|
export declare type CreateAppContainerPayload = Payload & {
|
|
17287
17629
|
__typename?: 'CreateAppContainerPayload';
|
|
17288
17630
|
container?: Maybe<AppContainer>;
|
|
@@ -17854,6 +18196,7 @@ export declare type CreateMetadataInput = {
|
|
|
17854
18196
|
productLink?: InputMaybe<Scalars['String']['input']>;
|
|
17855
18197
|
};
|
|
17856
18198
|
export declare type CreateNoteInput = {
|
|
18199
|
+
backgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
17857
18200
|
body?: InputMaybe<Scalars['String']['input']>;
|
|
17858
18201
|
metadata?: InputMaybe<CreateMetadataInput>;
|
|
17859
18202
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -20089,12 +20432,14 @@ export declare type DeleteLabelPayload = {
|
|
|
20089
20432
|
label: Scalars['String']['output'];
|
|
20090
20433
|
};
|
|
20091
20434
|
export declare type DeleteNoteInput = {
|
|
20092
|
-
ari
|
|
20435
|
+
ari?: InputMaybe<Scalars['String']['input']>;
|
|
20436
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
20093
20437
|
};
|
|
20094
20438
|
export declare type DeleteNotePayload = {
|
|
20095
20439
|
__typename?: 'DeleteNotePayload';
|
|
20096
20440
|
ari?: Maybe<Scalars['String']['output']>;
|
|
20097
20441
|
errors?: Maybe<Array<NoteMutationError>>;
|
|
20442
|
+
id: Scalars['ID']['output'];
|
|
20098
20443
|
success: Scalars['Boolean']['output'];
|
|
20099
20444
|
};
|
|
20100
20445
|
export declare type DeletePagesInput = {
|
|
@@ -20820,6 +21165,12 @@ export declare type DevAiRovoDevCreateSessionPayload = Payload & {
|
|
|
20820
21165
|
session?: Maybe<DevAiRovoDevSession>;
|
|
20821
21166
|
success: Scalars['Boolean']['output'];
|
|
20822
21167
|
};
|
|
21168
|
+
export declare enum DevAiRovoDevPrStatus {
|
|
21169
|
+
Declined = "DECLINED",
|
|
21170
|
+
Draft = "DRAFT",
|
|
21171
|
+
Merged = "MERGED",
|
|
21172
|
+
Open = "OPEN"
|
|
21173
|
+
}
|
|
20823
21174
|
export declare enum DevAiRovoDevRaisePullRequestOption {
|
|
20824
21175
|
Always = "ALWAYS",
|
|
20825
21176
|
Draft = "DRAFT",
|
|
@@ -20846,7 +21197,10 @@ export declare type DevAiRovoDevSession = Node & {
|
|
|
20846
21197
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
20847
21198
|
id: Scalars['ID']['output'];
|
|
20848
21199
|
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
21200
|
+
issue?: Maybe<JiraIssue>;
|
|
21201
|
+
issueAri?: Maybe<Scalars['ID']['output']>;
|
|
20849
21202
|
options?: Maybe<DevAiRovoDevSessionOptions>;
|
|
21203
|
+
prStatus?: Maybe<DevAiRovoDevPrStatus>;
|
|
20850
21204
|
promptAdf?: Maybe<Scalars['JSON']['output']>;
|
|
20851
21205
|
repository?: Maybe<DevAiRovoDevRepository>;
|
|
20852
21206
|
sessionStatus?: Maybe<DevAiRovoDevSessionStatus>;
|
|
@@ -21647,6 +22001,12 @@ export declare type DevOpsMetricsPerProjectPrCycleTimeMetricsArgs = {
|
|
|
21647
22001
|
filter: DevOpsMetricsPerProjectPrCycleTimeMetricsFilter;
|
|
21648
22002
|
first: Scalars['Int']['input'];
|
|
21649
22003
|
};
|
|
22004
|
+
export declare enum DevOpsMetricsComparisonOperator {
|
|
22005
|
+
EqualTo = "EQUAL_TO",
|
|
22006
|
+
GreaterThan = "GREATER_THAN",
|
|
22007
|
+
LessThan = "LESS_THAN",
|
|
22008
|
+
NotEqualTo = "NOT_EQUAL_TO"
|
|
22009
|
+
}
|
|
21650
22010
|
export declare type DevOpsMetricsCycleTime = {
|
|
21651
22011
|
__typename?: 'DevOpsMetricsCycleTime';
|
|
21652
22012
|
cycleTimeMetrics?: Maybe<Array<Maybe<DevOpsMetricsCycleTimeMetrics>>>;
|
|
@@ -21661,6 +22021,9 @@ export declare type DevOpsMetricsCycleTimeData = {
|
|
|
21661
22021
|
dateTime?: Maybe<Scalars['DateTime']['output']>;
|
|
21662
22022
|
issuesShippedCount?: Maybe<Scalars['Int']['output']>;
|
|
21663
22023
|
};
|
|
22024
|
+
export declare type DevOpsMetricsCycleTimeInsight = {
|
|
22025
|
+
type: Scalars['String']['output'];
|
|
22026
|
+
};
|
|
21664
22027
|
export declare type DevOpsMetricsCycleTimeMean = DevOpsMetricsCycleTimeMetrics & {
|
|
21665
22028
|
__typename?: 'DevOpsMetricsCycleTimeMean';
|
|
21666
22029
|
aggregateData?: Maybe<Scalars['Long']['output']>;
|
|
@@ -21670,6 +22033,14 @@ export declare type DevOpsMetricsCycleTimeMetrics = {
|
|
|
21670
22033
|
aggregateData?: Maybe<Scalars['Long']['output']>;
|
|
21671
22034
|
data?: Maybe<Array<Maybe<DevOpsMetricsCycleTimeData>>>;
|
|
21672
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
|
+
};
|
|
21673
22044
|
export declare type DevOpsMetricsCycleTimePercentile = DevOpsMetricsCycleTimeMetrics & {
|
|
21674
22045
|
__typename?: 'DevOpsMetricsCycleTimePercentile';
|
|
21675
22046
|
aggregateData?: Maybe<Scalars['Long']['output']>;
|
|
@@ -21782,6 +22153,7 @@ export declare enum DevOpsMetricsPerPrCycleTimeBreakdownPhase {
|
|
|
21782
22153
|
}
|
|
21783
22154
|
export declare type DevOpsMetricsPerPrCycleTimeBreakdownPhaseMetrics = {
|
|
21784
22155
|
__typename?: 'DevOpsMetricsPerPRCycleTimeBreakdownPhaseMetrics';
|
|
22156
|
+
insights?: Maybe<Array<DevOpsMetricsCycleTimeInsight>>;
|
|
21785
22157
|
medianHistoricalPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
21786
22158
|
medianPRCyclePhaseTime?: Maybe<Scalars['Float']['output']>;
|
|
21787
22159
|
phase?: Maybe<DevOpsMetricsPerPrCycleTimeBreakdownPhase>;
|
|
@@ -21831,6 +22203,16 @@ export declare type DevOpsMetricsRollupType = {
|
|
|
21831
22203
|
percentile?: InputMaybe<Scalars['Int']['input']>;
|
|
21832
22204
|
type: DevOpsMetricsRollupOption;
|
|
21833
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
|
+
};
|
|
21834
22216
|
export declare type DevOpsMutation = {
|
|
21835
22217
|
__typename?: 'DevOpsMutation';
|
|
21836
22218
|
_empty?: Maybe<Scalars['String']['output']>;
|
|
@@ -23498,7 +23880,7 @@ export declare type ExternalAssociationEdge = {
|
|
|
23498
23880
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
23499
23881
|
node?: Maybe<ExternalAssociation>;
|
|
23500
23882
|
};
|
|
23501
|
-
export declare type ExternalAssociationEntity = DevOpsService | ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker | JiraIssue | JiraProject | JiraVersion | ThirdPartyUser;
|
|
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;
|
|
23502
23884
|
export declare type ExternalAttachment = {
|
|
23503
23885
|
__typename?: 'ExternalAttachment';
|
|
23504
23886
|
byteSize?: Maybe<Scalars['Long']['output']>;
|
|
@@ -23994,12 +24376,14 @@ export declare type ExternalEntities = {
|
|
|
23994
24376
|
softwareService?: Maybe<Array<Maybe<ExternalSoftwareService>>>;
|
|
23995
24377
|
space?: Maybe<Array<Maybe<ExternalSpace>>>;
|
|
23996
24378
|
test?: Maybe<Array<Maybe<ExternalTest>>>;
|
|
24379
|
+
testExecution?: Maybe<Array<Maybe<ExternalTestExecution>>>;
|
|
24380
|
+
testRun?: Maybe<Array<Maybe<ExternalTestRun>>>;
|
|
23997
24381
|
video?: Maybe<Array<Maybe<ExternalVideo>>>;
|
|
23998
24382
|
vulnerability?: Maybe<Array<Maybe<ExternalVulnerability>>>;
|
|
23999
24383
|
workItem?: Maybe<Array<Maybe<ExternalWorkItem>>>;
|
|
24000
24384
|
worker?: Maybe<Array<Maybe<ExternalWorker>>>;
|
|
24001
24385
|
};
|
|
24002
|
-
export declare type ExternalEntity = ExternalBranch | ExternalBuildInfo | ExternalCalendarEvent | ExternalComment | ExternalCommit | ExternalConversation | ExternalCustomerOrg | ExternalDeal | ExternalDeployment | ExternalDesign | ExternalDocument | ExternalFeatureFlag | ExternalMessage | ExternalOrganisation | ExternalPosition | ExternalProject | ExternalPullRequest | ExternalRemoteLink | ExternalRepository | ExternalSoftwareService | ExternalSpace | ExternalTest | ExternalVideo | ExternalVulnerability | ExternalWorkItem | ExternalWorker;
|
|
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;
|
|
24003
24387
|
export declare type ExternalEnvironment = {
|
|
24004
24388
|
__typename?: 'ExternalEnvironment';
|
|
24005
24389
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
@@ -24416,6 +24800,28 @@ export declare type ExternalTest = Node & {
|
|
|
24416
24800
|
url?: Maybe<Scalars['String']['output']>;
|
|
24417
24801
|
version?: Maybe<Scalars['String']['output']>;
|
|
24418
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
|
+
};
|
|
24419
24825
|
export declare type ExternalTestInfo = {
|
|
24420
24826
|
__typename?: 'ExternalTestInfo';
|
|
24421
24827
|
numberFailed?: Maybe<Scalars['Int']['output']>;
|
|
@@ -24423,6 +24829,31 @@ export declare type ExternalTestInfo = {
|
|
|
24423
24829
|
numberSkipped?: Maybe<Scalars['Int']['output']>;
|
|
24424
24830
|
totalNumber?: Maybe<Scalars['Int']['output']>;
|
|
24425
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
|
+
};
|
|
24426
24857
|
export declare type ExternalThumbnail = {
|
|
24427
24858
|
__typename?: 'ExternalThumbnail';
|
|
24428
24859
|
externalUrl?: Maybe<Scalars['String']['output']>;
|
|
@@ -30029,6 +30460,8 @@ export declare type GraphStore = {
|
|
|
30029
30460
|
parentIssueHasChildIssueRelationship?: Maybe<GraphStoreFullParentIssueHasChildIssueConnection>;
|
|
30030
30461
|
parentMessageHasChildMessage?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageConnection>;
|
|
30031
30462
|
parentMessageHasChildMessageInverse?: Maybe<GraphStoreSimplifiedParentMessageHasChildMessageInverseConnection>;
|
|
30463
|
+
parentTeamHasChildTeam?: Maybe<GraphStoreSimplifiedParentTeamHasChildTeamConnection>;
|
|
30464
|
+
parentTeamHasChildTeamInverse?: Maybe<GraphStoreSimplifiedParentTeamHasChildTeamInverseConnection>;
|
|
30032
30465
|
positionAllocatedToFocusArea?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection>;
|
|
30033
30466
|
positionAllocatedToFocusAreaInverse?: Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaInverseConnection>;
|
|
30034
30467
|
positionAssociatedExternalPosition?: Maybe<GraphStoreSimplifiedPositionAssociatedExternalPositionConnection>;
|
|
@@ -32690,6 +33123,20 @@ export declare type GraphStoreParentMessageHasChildMessageInverseArgs = {
|
|
|
32690
33123
|
id: Scalars['ID']['input'];
|
|
32691
33124
|
sort?: InputMaybe<GraphStoreParentMessageHasChildMessageSortInput>;
|
|
32692
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
|
+
};
|
|
32693
33140
|
export declare type GraphStorePositionAllocatedToFocusAreaArgs = {
|
|
32694
33141
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
32695
33142
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -37027,6 +37474,20 @@ export declare type GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderRe
|
|
|
37027
37474
|
to: Scalars['ID']['input'];
|
|
37028
37475
|
updatedAt?: InputMaybe<Scalars['DateTime']['input']>;
|
|
37029
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
|
+
};
|
|
37030
37491
|
export declare type GraphStoreCreateProjectAssociatedOpsgenieTeamInput = {
|
|
37031
37492
|
relationships: Array<GraphStoreCreateProjectAssociatedOpsgenieTeamRelationshipInput>;
|
|
37032
37493
|
};
|
|
@@ -37405,6 +37866,7 @@ export declare type GraphStoreCypherQueryV2BatchConnection = {
|
|
|
37405
37866
|
};
|
|
37406
37867
|
export declare type GraphStoreCypherQueryV2BatchEdge = {
|
|
37407
37868
|
__typename?: 'GraphStoreCypherQueryV2BatchEdge';
|
|
37869
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37408
37870
|
node: GraphStoreCypherQueryV2BatchNode;
|
|
37409
37871
|
};
|
|
37410
37872
|
export declare type GraphStoreCypherQueryV2BatchFloatObject = {
|
|
@@ -37460,6 +37922,7 @@ export declare type GraphStoreCypherQueryV2Connection = {
|
|
|
37460
37922
|
};
|
|
37461
37923
|
export declare type GraphStoreCypherQueryV2Edge = {
|
|
37462
37924
|
__typename?: 'GraphStoreCypherQueryV2Edge';
|
|
37925
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
37463
37926
|
node: GraphStoreCypherQueryV2Node;
|
|
37464
37927
|
};
|
|
37465
37928
|
export declare type GraphStoreCypherQueryV2FloatObject = {
|
|
@@ -37614,6 +38077,19 @@ export declare type GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderRe
|
|
|
37614
38077
|
from: Scalars['ID']['input'];
|
|
37615
38078
|
to: Scalars['ID']['input'];
|
|
37616
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
|
+
};
|
|
37617
38093
|
export declare type GraphStoreDeleteProjectAssociatedOpsgenieTeamInput = {
|
|
37618
38094
|
relationships: Array<GraphStoreDeleteProjectAssociatedOpsgenieTeamRelationshipInput>;
|
|
37619
38095
|
synchronousWrite?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -41753,6 +42229,7 @@ export declare type GraphStoreMutation = {
|
|
|
41753
42229
|
createJswProjectAssociatedComponent?: Maybe<GraphStoreCreateJswProjectAssociatedComponentPayload>;
|
|
41754
42230
|
createLoomVideoHasConfluencePage?: Maybe<GraphStoreCreateLoomVideoHasConfluencePagePayload>;
|
|
41755
42231
|
createMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
42232
|
+
createParentTeamHasChildTeam?: Maybe<GraphStoreCreateParentTeamHasChildTeamPayload>;
|
|
41756
42233
|
createProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreCreateProjectAssociatedOpsgenieTeamPayload>;
|
|
41757
42234
|
createProjectAssociatedToSecurityContainer?: Maybe<GraphStoreCreateProjectAssociatedToSecurityContainerPayload>;
|
|
41758
42235
|
createProjectDisassociatedRepo?: Maybe<GraphStoreCreateProjectDisassociatedRepoPayload>;
|
|
@@ -41779,6 +42256,7 @@ export declare type GraphStoreMutation = {
|
|
|
41779
42256
|
deleteJswProjectAssociatedComponent?: Maybe<GraphStoreDeleteJswProjectAssociatedComponentPayload>;
|
|
41780
42257
|
deleteLoomVideoHasConfluencePage?: Maybe<GraphStoreDeleteLoomVideoHasConfluencePagePayload>;
|
|
41781
42258
|
deleteMeetingRecordingOwnerHasMeetingNotesFolder?: Maybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderPayload>;
|
|
42259
|
+
deleteParentTeamHasChildTeam?: Maybe<GraphStoreDeleteParentTeamHasChildTeamPayload>;
|
|
41782
42260
|
deleteProjectAssociatedOpsgenieTeam?: Maybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamPayload>;
|
|
41783
42261
|
deleteProjectAssociatedToSecurityContainer?: Maybe<GraphStoreDeleteProjectAssociatedToSecurityContainerPayload>;
|
|
41784
42262
|
deleteProjectDisassociatedRepo?: Maybe<GraphStoreDeleteProjectDisassociatedRepoPayload>;
|
|
@@ -41824,6 +42302,9 @@ export declare type GraphStoreMutationCreateLoomVideoHasConfluencePageArgs = {
|
|
|
41824
42302
|
export declare type GraphStoreMutationCreateMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
41825
42303
|
input?: InputMaybe<GraphStoreCreateMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
41826
42304
|
};
|
|
42305
|
+
export declare type GraphStoreMutationCreateParentTeamHasChildTeamArgs = {
|
|
42306
|
+
input?: InputMaybe<GraphStoreCreateParentTeamHasChildTeamInput>;
|
|
42307
|
+
};
|
|
41827
42308
|
export declare type GraphStoreMutationCreateProjectAssociatedOpsgenieTeamArgs = {
|
|
41828
42309
|
input?: InputMaybe<GraphStoreCreateProjectAssociatedOpsgenieTeamInput>;
|
|
41829
42310
|
};
|
|
@@ -41902,6 +42383,9 @@ export declare type GraphStoreMutationDeleteLoomVideoHasConfluencePageArgs = {
|
|
|
41902
42383
|
export declare type GraphStoreMutationDeleteMeetingRecordingOwnerHasMeetingNotesFolderArgs = {
|
|
41903
42384
|
input?: InputMaybe<GraphStoreDeleteMeetingRecordingOwnerHasMeetingNotesFolderInput>;
|
|
41904
42385
|
};
|
|
42386
|
+
export declare type GraphStoreMutationDeleteParentTeamHasChildTeamArgs = {
|
|
42387
|
+
input?: InputMaybe<GraphStoreDeleteParentTeamHasChildTeamInput>;
|
|
42388
|
+
};
|
|
41905
42389
|
export declare type GraphStoreMutationDeleteProjectAssociatedOpsgenieTeamArgs = {
|
|
41906
42390
|
input?: InputMaybe<GraphStoreDeleteProjectAssociatedOpsgenieTeamInput>;
|
|
41907
42391
|
};
|
|
@@ -41974,6 +42458,12 @@ export declare type GraphStoreParentIssueHasChildIssueSortInput = {
|
|
|
41974
42458
|
export declare type GraphStoreParentMessageHasChildMessageSortInput = {
|
|
41975
42459
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41976
42460
|
};
|
|
42461
|
+
export declare type GraphStoreParentTeamHasChildTeamSortInput = {
|
|
42462
|
+
createdAt?: InputMaybe<GraphStoreSortInput>;
|
|
42463
|
+
fromAti?: InputMaybe<GraphStoreSortInput>;
|
|
42464
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
42465
|
+
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
42466
|
+
};
|
|
41977
42467
|
export declare type GraphStorePositionAllocatedToFocusAreaSortInput = {
|
|
41978
42468
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
41979
42469
|
};
|
|
@@ -45867,6 +46357,38 @@ export declare type GraphStoreSimplifiedParentMessageHasChildMessageInverseEdge
|
|
|
45867
46357
|
};
|
|
45868
46358
|
export declare type GraphStoreSimplifiedParentMessageHasChildMessageInverseUnion = ExternalMessage;
|
|
45869
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;
|
|
45870
46392
|
export declare type GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection = HasPageInfo & {
|
|
45871
46393
|
__typename?: 'GraphStoreSimplifiedPositionAllocatedToFocusAreaConnection';
|
|
45872
46394
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedPositionAllocatedToFocusAreaEdge>>>;
|
|
@@ -52535,6 +53057,7 @@ export declare type HelpCenter = Node & {
|
|
|
52535
53057
|
pages?: Maybe<Array<Maybe<HelpCenterPage>>>;
|
|
52536
53058
|
permissionSettings?: Maybe<HelpCenterPermissionSettingsResult>;
|
|
52537
53059
|
portals?: Maybe<HelpCenterPortals>;
|
|
53060
|
+
productEntityImages?: Maybe<Array<HelpCenterProductEntityImages>>;
|
|
52538
53061
|
projectMappingData?: Maybe<HelpCenterProjectMappingData>;
|
|
52539
53062
|
siteDefaultLanguageTag?: Maybe<Scalars['String']['output']>;
|
|
52540
53063
|
slug?: Maybe<Scalars['String']['output']>;
|
|
@@ -52551,6 +53074,9 @@ export declare type HelpCenterPortalsArgs = {
|
|
|
52551
53074
|
portalsFilter?: InputMaybe<HelpCenterPortalFilter>;
|
|
52552
53075
|
sortOrder?: InputMaybe<HelpCenterPortalsSortOrder>;
|
|
52553
53076
|
};
|
|
53077
|
+
export declare type HelpCenterProductEntityImagesArgs = {
|
|
53078
|
+
filter?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
53079
|
+
};
|
|
52554
53080
|
export declare enum HelpCenterAccessControlType {
|
|
52555
53081
|
External = "EXTERNAL",
|
|
52556
53082
|
GroupBased = "GROUP_BASED",
|
|
@@ -52756,7 +53282,8 @@ export declare type HelpCenterMediaConfig = {
|
|
|
52756
53282
|
};
|
|
52757
53283
|
export declare enum HelpCenterMediaConfigOperationType {
|
|
52758
53284
|
BannerUpload = "BANNER_UPLOAD",
|
|
52759
|
-
LogoUpload = "LOGO_UPLOAD"
|
|
53285
|
+
LogoUpload = "LOGO_UPLOAD",
|
|
53286
|
+
Read = "READ"
|
|
52760
53287
|
}
|
|
52761
53288
|
export declare type HelpCenterMutationApi = {
|
|
52762
53289
|
__typename?: 'HelpCenterMutationApi';
|
|
@@ -52986,6 +53513,21 @@ export declare enum HelpCenterPortalsType {
|
|
|
52986
53513
|
Hidden = "HIDDEN",
|
|
52987
53514
|
Visible = "VISIBLE"
|
|
52988
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
|
+
}
|
|
52989
53531
|
export declare type HelpCenterProjectMappingData = {
|
|
52990
53532
|
__typename?: 'HelpCenterProjectMappingData';
|
|
52991
53533
|
projectMapping?: Maybe<Array<HelpCenterProjectMappingEntry>>;
|
|
@@ -53030,6 +53572,7 @@ export declare type HelpCenterQueryApi = {
|
|
|
53030
53572
|
helpCentersByProjectId?: Maybe<HelpCenterQueryResultConnection>;
|
|
53031
53573
|
helpCentersConfig?: Maybe<HelpCentersConfigResult>;
|
|
53032
53574
|
helpCentersList?: Maybe<HelpCentersListQueryResult>;
|
|
53575
|
+
hubMediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
53033
53576
|
mediaConfig?: Maybe<HelpCenterMediaConfig>;
|
|
53034
53577
|
};
|
|
53035
53578
|
export declare type HelpCenterQueryApiHelpCenterByHoistedProjectIdArgs = {
|
|
@@ -53090,6 +53633,10 @@ export declare type HelpCenterQueryApiHelpCentersListArgs = {
|
|
|
53090
53633
|
sortOrder: HelpCenterSortOrder;
|
|
53091
53634
|
workspaceAri: Scalars['ID']['input'];
|
|
53092
53635
|
};
|
|
53636
|
+
export declare type HelpCenterQueryApiHubMediaConfigArgs = {
|
|
53637
|
+
ari: Scalars['ID']['input'];
|
|
53638
|
+
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
53639
|
+
};
|
|
53093
53640
|
export declare type HelpCenterQueryApiMediaConfigArgs = {
|
|
53094
53641
|
helpCenterAri: Scalars['ID']['input'];
|
|
53095
53642
|
operationType?: InputMaybe<HelpCenterMediaConfigOperationType>;
|
|
@@ -53201,6 +53748,7 @@ export declare type HelpCenterUpdateInput = {
|
|
|
53201
53748
|
helpCenterBranding?: InputMaybe<HelpCenterBrandingInput>;
|
|
53202
53749
|
homePageLayout?: InputMaybe<HelpCenterHomePageLayoutInput>;
|
|
53203
53750
|
name?: InputMaybe<HelpCenterNameInput>;
|
|
53751
|
+
productEntityImages?: InputMaybe<Array<HelpCenterProductEntityImageInput>>;
|
|
53204
53752
|
slug?: InputMaybe<Scalars['String']['input']>;
|
|
53205
53753
|
virtualAgentEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53206
53754
|
};
|
|
@@ -58435,6 +58983,13 @@ export declare type JiraCreateGlobalCustomFieldPayload = Payload & {
|
|
|
58435
58983
|
field?: Maybe<JiraIssueFieldConfig>;
|
|
58436
58984
|
success: Scalars['Boolean']['output'];
|
|
58437
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
|
+
};
|
|
58438
58993
|
export declare type JiraCreateIssueSearchFormattingRuleInput = {
|
|
58439
58994
|
afterRuleId?: InputMaybe<Scalars['String']['input']>;
|
|
58440
58995
|
expression: JiraFormattingRuleExpressionInput;
|
|
@@ -58442,11 +58997,11 @@ export declare type JiraCreateIssueSearchFormattingRuleInput = {
|
|
|
58442
58997
|
formattingColor?: InputMaybe<JiraColorInput>;
|
|
58443
58998
|
viewId: Scalars['ID']['input'];
|
|
58444
58999
|
};
|
|
58445
|
-
export declare type JiraCreateIssueSearchFormattingRulePayload = {
|
|
59000
|
+
export declare type JiraCreateIssueSearchFormattingRulePayload = Payload & {
|
|
58446
59001
|
__typename?: 'JiraCreateIssueSearchFormattingRulePayload';
|
|
58447
|
-
createdRule?: Maybe<JiraFormattingRule>;
|
|
58448
59002
|
errors?: Maybe<Array<MutationError>>;
|
|
58449
59003
|
success: Scalars['Boolean']['output'];
|
|
59004
|
+
view?: Maybe<JiraView>;
|
|
58450
59005
|
};
|
|
58451
59006
|
export declare type JiraCreateIssueTypeInput = {
|
|
58452
59007
|
avatarId: Scalars['String']['input'];
|
|
@@ -58965,11 +59520,11 @@ export declare type JiraDeleteIssueSearchFormattingRuleInput = {
|
|
|
58965
59520
|
ruleId: Scalars['ID']['input'];
|
|
58966
59521
|
viewId: Scalars['ID']['input'];
|
|
58967
59522
|
};
|
|
58968
|
-
export declare type JiraDeleteIssueSearchFormattingRulePayload = {
|
|
59523
|
+
export declare type JiraDeleteIssueSearchFormattingRulePayload = Payload & {
|
|
58969
59524
|
__typename?: 'JiraDeleteIssueSearchFormattingRulePayload';
|
|
58970
|
-
deletedRuleId?: Maybe<Scalars['ID']['output']>;
|
|
58971
59525
|
errors?: Maybe<Array<MutationError>>;
|
|
58972
59526
|
success: Scalars['Boolean']['output'];
|
|
59527
|
+
view?: Maybe<JiraView>;
|
|
58973
59528
|
};
|
|
58974
59529
|
export declare type JiraDeleteIssueTypeInput = {
|
|
58975
59530
|
cloudId: Scalars['ID']['input'];
|
|
@@ -59445,6 +60000,18 @@ export declare type JiraDismissInContextConfigPromptPayload = Payload & {
|
|
|
59445
60000
|
errors?: Maybe<Array<MutationError>>;
|
|
59446
60001
|
success: Scalars['Boolean']['output'];
|
|
59447
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
|
+
};
|
|
59448
60015
|
export declare type JiraDuplicateJourneyConfigurationInput = {
|
|
59449
60016
|
id: Scalars['ID']['input'];
|
|
59450
60017
|
};
|
|
@@ -59869,6 +60436,15 @@ export declare enum JiraFieldOptionIdsFilterOperation {
|
|
|
59869
60436
|
Allow = "ALLOW",
|
|
59870
60437
|
Exclude = "EXCLUDE"
|
|
59871
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
|
+
};
|
|
59872
60448
|
export declare type JiraFieldSchemeAssociatedField = {
|
|
59873
60449
|
__typename?: 'JiraFieldSchemeAssociatedField';
|
|
59874
60450
|
field?: Maybe<JiraField>;
|
|
@@ -59896,9 +60472,19 @@ export declare type JiraFieldSchemeAvailableFieldsInput = {
|
|
|
59896
60472
|
export declare type JiraFieldSchemePayload = Payload & {
|
|
59897
60473
|
__typename?: 'JiraFieldSchemePayload';
|
|
59898
60474
|
errors?: Maybe<Array<MutationError>>;
|
|
59899
|
-
fieldScheme?: Maybe<
|
|
60475
|
+
fieldScheme?: Maybe<JiraFieldScheme>;
|
|
59900
60476
|
success: Scalars['Boolean']['output'];
|
|
59901
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
|
+
};
|
|
59902
60488
|
export declare type JiraFieldSchemesInput = {
|
|
59903
60489
|
nameOrDescriptionFilter?: InputMaybe<Scalars['String']['input']>;
|
|
59904
60490
|
};
|
|
@@ -61080,6 +61666,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraScenarioIssueLike
|
|
|
61080
61666
|
updatedField?: Maybe<JiraDateTimePickerField>;
|
|
61081
61667
|
votesField?: Maybe<JiraVotesField>;
|
|
61082
61668
|
watchesField?: Maybe<JiraWatchesField>;
|
|
61669
|
+
webLinks?: Maybe<JiraWebRemoteIssueLinkConnection>;
|
|
61083
61670
|
webUrl?: Maybe<Scalars['URL']['output']>;
|
|
61084
61671
|
worklogs?: Maybe<JiraWorkLogConnection>;
|
|
61085
61672
|
};
|
|
@@ -61266,6 +61853,12 @@ export declare type JiraIssueStartDateViewFieldArgs = {
|
|
|
61266
61853
|
export declare type JiraIssueSuggestFieldValuesArgs = {
|
|
61267
61854
|
filterProjectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
61268
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
|
+
};
|
|
61269
61862
|
export declare type JiraIssueWorklogsArgs = {
|
|
61270
61863
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
61271
61864
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -62196,6 +62789,10 @@ export declare type JiraIssuePullRequests = {
|
|
|
62196
62789
|
export declare type JiraIssuePullRequestsInput = {
|
|
62197
62790
|
filterLegacy?: InputMaybe<Scalars['Boolean']['input']>;
|
|
62198
62791
|
};
|
|
62792
|
+
export declare type JiraIssueRankInput = {
|
|
62793
|
+
afterIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
62794
|
+
beforeIssueId?: InputMaybe<Scalars['ID']['input']>;
|
|
62795
|
+
};
|
|
62199
62796
|
export declare type JiraIssueRemoteIssueLink = {
|
|
62200
62797
|
__typename?: 'JiraIssueRemoteIssueLink';
|
|
62201
62798
|
href?: Maybe<Scalars['String']['output']>;
|
|
@@ -63180,6 +63777,9 @@ export declare enum JiraJqlAutocompleteType {
|
|
|
63180
63777
|
User = "USER",
|
|
63181
63778
|
Version = "VERSION"
|
|
63182
63779
|
}
|
|
63780
|
+
export declare type JiraJqlBacklogInput = {
|
|
63781
|
+
boardId: Scalars['Long']['input'];
|
|
63782
|
+
};
|
|
63183
63783
|
export declare type JiraJqlBoardInput = {
|
|
63184
63784
|
boardId: Scalars['Long']['input'];
|
|
63185
63785
|
swimlaneStrategy?: InputMaybe<JiraBoardSwimlaneStrategy>;
|
|
@@ -63611,6 +64211,7 @@ export declare type JiraJqlResolutionFieldValue = JiraJqlFieldValue & {
|
|
|
63611
64211
|
resolution?: Maybe<JiraResolution>;
|
|
63612
64212
|
};
|
|
63613
64213
|
export declare type JiraJqlScopeInput = {
|
|
64214
|
+
backlog?: InputMaybe<JiraJqlBacklogInput>;
|
|
63614
64215
|
board?: InputMaybe<JiraJqlBoardInput>;
|
|
63615
64216
|
plan?: InputMaybe<JiraJqlPlanInput>;
|
|
63616
64217
|
};
|
|
@@ -65408,7 +66009,6 @@ export declare type JiraNotificationPreferences = {
|
|
|
65408
66009
|
issueUpdated?: Maybe<JiraNotificationPreference>;
|
|
65409
66010
|
mentionsCombined?: Maybe<JiraNotificationPreference>;
|
|
65410
66011
|
miscellaneousIssueEventCombined?: Maybe<JiraNotificationPreference>;
|
|
65411
|
-
projectInviterNotification?: Maybe<JiraNotificationPreference>;
|
|
65412
66012
|
worklogCombined?: Maybe<JiraNotificationPreference>;
|
|
65413
66013
|
};
|
|
65414
66014
|
export declare type JiraNotificationProjectPreferenceConnection = HasPageInfo & HasTotal & {
|
|
@@ -65435,7 +66035,6 @@ export declare enum JiraNotificationType {
|
|
|
65435
66035
|
IssueUpdated = "ISSUE_UPDATED",
|
|
65436
66036
|
MentionsCombined = "MENTIONS_COMBINED",
|
|
65437
66037
|
MiscellaneousIssueEventCombined = "MISCELLANEOUS_ISSUE_EVENT_COMBINED",
|
|
65438
|
-
ProjectInviterNotification = "PROJECT_INVITER_NOTIFICATION",
|
|
65439
66038
|
WorklogCombined = "WORKLOG_COMBINED"
|
|
65440
66039
|
}
|
|
65441
66040
|
export declare type JiraNumberField = JiraIssueField & JiraIssueFieldConfiguration & JiraUserIssueFieldConfiguration & Node & {
|
|
@@ -65899,6 +66498,17 @@ export declare type JiraOrderFormattingRulePayloadRulesArgs = {
|
|
|
65899
66498
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
65900
66499
|
scope: Scalars['ID']['input'];
|
|
65901
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
|
+
};
|
|
65902
66512
|
export declare enum JiraOrganizationApprovalLocation {
|
|
65903
66513
|
DuringInstallationFlow = "DURING_INSTALLATION_FLOW",
|
|
65904
66514
|
DuringProvisioning = "DURING_PROVISIONING",
|
|
@@ -69253,6 +69863,8 @@ export declare type JiraReport = {
|
|
|
69253
69863
|
description?: Maybe<Scalars['String']['output']>;
|
|
69254
69864
|
id: Scalars['ID']['output'];
|
|
69255
69865
|
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
69866
|
+
isNotApplicableDesc?: Maybe<Scalars['String']['output']>;
|
|
69867
|
+
isNotApplicableReason?: Maybe<Scalars['String']['output']>;
|
|
69256
69868
|
key?: Maybe<Scalars['String']['output']>;
|
|
69257
69869
|
name?: Maybe<Scalars['String']['output']>;
|
|
69258
69870
|
url?: Maybe<Scalars['String']['output']>;
|
|
@@ -72774,16 +73386,16 @@ export declare type JiraUpdateIssueLinkRelationshipTypeFieldPayload = Payload &
|
|
|
72774
73386
|
};
|
|
72775
73387
|
export declare type JiraUpdateIssueSearchFormattingRuleInput = {
|
|
72776
73388
|
expression?: InputMaybe<JiraFormattingRuleExpressionInput>;
|
|
72777
|
-
|
|
73389
|
+
formattingArea?: InputMaybe<JiraFormattingArea>;
|
|
72778
73390
|
formattingColor?: InputMaybe<JiraColorInput>;
|
|
72779
73391
|
ruleId: Scalars['ID']['input'];
|
|
72780
73392
|
viewId: Scalars['ID']['input'];
|
|
72781
73393
|
};
|
|
72782
|
-
export declare type JiraUpdateIssueSearchFormattingRulePayload = {
|
|
73394
|
+
export declare type JiraUpdateIssueSearchFormattingRulePayload = Payload & {
|
|
72783
73395
|
__typename?: 'JiraUpdateIssueSearchFormattingRulePayload';
|
|
72784
73396
|
errors?: Maybe<Array<MutationError>>;
|
|
72785
73397
|
success: Scalars['Boolean']['output'];
|
|
72786
|
-
|
|
73398
|
+
view?: Maybe<JiraView>;
|
|
72787
73399
|
};
|
|
72788
73400
|
export declare type JiraUpdateIssueTransitionInput = {
|
|
72789
73401
|
comment?: InputMaybe<JiraIssueTransitionCommentInput>;
|
|
@@ -73867,6 +74479,7 @@ export declare type JiraVersionUpdateApproverDescriptionPayload = Payload & {
|
|
|
73867
74479
|
};
|
|
73868
74480
|
export declare type JiraVersionUpdateApproverStatusInput = {
|
|
73869
74481
|
approverId: Scalars['ID']['input'];
|
|
74482
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
73870
74483
|
status?: InputMaybe<JiraVersionApproverStatus>;
|
|
73871
74484
|
};
|
|
73872
74485
|
export declare type JiraVersionUpdateApproverStatusPayload = Payload & {
|
|
@@ -74036,12 +74649,27 @@ export declare enum JiraWatchesOperations {
|
|
|
74036
74649
|
}
|
|
74037
74650
|
export declare type JiraWebRemoteIssueLink = {
|
|
74038
74651
|
__typename?: 'JiraWebRemoteIssueLink';
|
|
74652
|
+
applicationName?: Maybe<Scalars['String']['output']>;
|
|
74653
|
+
applicationType?: Maybe<Scalars['String']['output']>;
|
|
74039
74654
|
href?: Maybe<Scalars['String']['output']>;
|
|
74040
74655
|
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
74041
74656
|
id: Scalars['ID']['output'];
|
|
74657
|
+
relationship?: Maybe<Scalars['String']['output']>;
|
|
74658
|
+
resolved?: Maybe<Scalars['Boolean']['output']>;
|
|
74042
74659
|
summary?: Maybe<Scalars['String']['output']>;
|
|
74043
74660
|
title?: Maybe<Scalars['String']['output']>;
|
|
74044
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
|
+
};
|
|
74045
74673
|
export declare type JiraWorkCategory = {
|
|
74046
74674
|
__typename?: 'JiraWorkCategory';
|
|
74047
74675
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -77688,7 +78316,9 @@ export declare type MarketplaceConsoleEdition = {
|
|
|
77688
78316
|
__typename?: 'MarketplaceConsoleEdition';
|
|
77689
78317
|
features: Array<MarketplaceConsoleFeature>;
|
|
77690
78318
|
id: Scalars['ID']['output'];
|
|
78319
|
+
isDecoupled?: Maybe<Scalars['Boolean']['output']>;
|
|
77691
78320
|
isDefault: Scalars['Boolean']['output'];
|
|
78321
|
+
parentProduct?: Maybe<Scalars['String']['output']>;
|
|
77692
78322
|
pricingPlan: MarketplaceConsolePricingPlan;
|
|
77693
78323
|
type: MarketplaceConsoleEditionType;
|
|
77694
78324
|
};
|
|
@@ -77698,7 +78328,9 @@ export declare type MarketplaceConsoleEditionDetailsInput = {
|
|
|
77698
78328
|
export declare type MarketplaceConsoleEditionInput = {
|
|
77699
78329
|
features: Array<MarketplaceConsoleFeatureInput>;
|
|
77700
78330
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
78331
|
+
isDecoupled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
77701
78332
|
isDefault: Scalars['Boolean']['input'];
|
|
78333
|
+
parentProduct?: InputMaybe<Scalars['String']['input']>;
|
|
77702
78334
|
pricingPlan: MarketplaceConsolePricingPlanInput;
|
|
77703
78335
|
type: MarketplaceConsoleEditionType;
|
|
77704
78336
|
};
|
|
@@ -78202,6 +78834,7 @@ export declare type MarketplaceConsolePricingPlanInput = {
|
|
|
78202
78834
|
tieredPricing: Array<MarketplaceConsolePricingItemInput>;
|
|
78203
78835
|
};
|
|
78204
78836
|
export declare enum MarketplaceConsolePricingPlanStatus {
|
|
78837
|
+
AtNotice = "AT_NOTICE",
|
|
78205
78838
|
Draft = "DRAFT",
|
|
78206
78839
|
Live = "LIVE",
|
|
78207
78840
|
Pending = "PENDING"
|
|
@@ -79768,6 +80401,7 @@ export declare type MercuryChangeProposalImpact = {
|
|
|
79768
80401
|
};
|
|
79769
80402
|
export declare type MercuryChangeProposalPositionDetails = {
|
|
79770
80403
|
__typename?: 'MercuryChangeProposalPositionDetails';
|
|
80404
|
+
positionsImpacted?: Maybe<Scalars['Int']['output']>;
|
|
79771
80405
|
positionsMoved?: Maybe<Scalars['Int']['output']>;
|
|
79772
80406
|
positionsRequested?: Maybe<Scalars['Int']['output']>;
|
|
79773
80407
|
};
|
|
@@ -79808,12 +80442,15 @@ export declare type MercuryChangeProposalSummaryByStatus = {
|
|
|
79808
80442
|
export declare type MercuryChangeProposalSummaryForStrategicEvent = {
|
|
79809
80443
|
__typename?: 'MercuryChangeProposalSummaryForStrategicEvent';
|
|
79810
80444
|
changeProposal?: Maybe<MercuryChangeProposalSummaryByStatus>;
|
|
80445
|
+
impactedPositions?: Maybe<MercuryImpactedPositionSummaryByChangeProposalStatus>;
|
|
80446
|
+
movedPositions?: Maybe<MercuryMovedPositionSummaryByChangeProposalStatus>;
|
|
79811
80447
|
newFunds?: Maybe<MercuryNewFundSummaryByChangeProposalStatus>;
|
|
79812
80448
|
newPositions?: Maybe<MercuryNewPositionSummaryByChangeProposalStatus>;
|
|
79813
80449
|
strategicEventId: Scalars['ID']['output'];
|
|
79814
80450
|
};
|
|
79815
80451
|
export declare type MercuryChangeProposalUpdate = {
|
|
79816
80452
|
__typename?: 'MercuryChangeProposalUpdate';
|
|
80453
|
+
event?: Maybe<Scalars['String']['output']>;
|
|
79817
80454
|
id: Scalars['ID']['output'];
|
|
79818
80455
|
updatedFields?: Maybe<Array<Scalars['String']['output']>>;
|
|
79819
80456
|
};
|
|
@@ -80567,6 +81204,11 @@ export declare type MercuryHumanResourcesAllocation = {
|
|
|
80567
81204
|
totalAsPercentageOfBudget?: Maybe<Scalars['BigDecimal']['output']>;
|
|
80568
81205
|
totalPositions?: Maybe<Scalars['BigDecimal']['output']>;
|
|
80569
81206
|
};
|
|
81207
|
+
export declare type MercuryImpactedPositionSummaryByChangeProposalStatus = {
|
|
81208
|
+
__typename?: 'MercuryImpactedPositionSummaryByChangeProposalStatus';
|
|
81209
|
+
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
81210
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
81211
|
+
};
|
|
80570
81212
|
export declare type MercuryJiraAlignProjectType = {
|
|
80571
81213
|
__typename?: 'MercuryJiraAlignProjectType';
|
|
80572
81214
|
displayName: Scalars['String']['output'];
|
|
@@ -80690,6 +81332,11 @@ export declare type MercuryMovePositionsChangeInput = {
|
|
|
80690
81332
|
sourceFocusAreaId: Scalars['ID']['input'];
|
|
80691
81333
|
targetFocusAreaId: Scalars['ID']['input'];
|
|
80692
81334
|
};
|
|
81335
|
+
export declare type MercuryMovedPositionSummaryByChangeProposalStatus = {
|
|
81336
|
+
__typename?: 'MercuryMovedPositionSummaryByChangeProposalStatus';
|
|
81337
|
+
countByStatus?: Maybe<Array<Maybe<MercuryPositionCountByStatus>>>;
|
|
81338
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
81339
|
+
};
|
|
80693
81340
|
export declare type MercuryMutationApi = {
|
|
80694
81341
|
__typename?: 'MercuryMutationApi';
|
|
80695
81342
|
addWatcherToFocusArea?: Maybe<MercuryAddWatcherToFocusAreaPayload>;
|
|
@@ -80849,18 +81496,6 @@ export declare type MercuryNewPositionSummaryByChangeProposalStatus = {
|
|
|
80849
81496
|
countByStatus?: Maybe<Array<Maybe<MercuryNewPositionCountByStatus>>>;
|
|
80850
81497
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
80851
81498
|
};
|
|
80852
|
-
export declare type MercuryOnCreateChangeProposalPayload = Payload & {
|
|
80853
|
-
__typename?: 'MercuryOnCreateChangeProposalPayload';
|
|
80854
|
-
errors?: Maybe<Array<MutationError>>;
|
|
80855
|
-
id: Scalars['ID']['output'];
|
|
80856
|
-
success: Scalars['Boolean']['output'];
|
|
80857
|
-
};
|
|
80858
|
-
export declare type MercuryOnDeleteChangeProposalPayload = Payload & {
|
|
80859
|
-
__typename?: 'MercuryOnDeleteChangeProposalPayload';
|
|
80860
|
-
errors?: Maybe<Array<MutationError>>;
|
|
80861
|
-
id: Scalars['ID']['output'];
|
|
80862
|
-
success: Scalars['Boolean']['output'];
|
|
80863
|
-
};
|
|
80864
81499
|
export declare type MercuryOnUpdateChangeProposalsPayload = Payload & {
|
|
80865
81500
|
__typename?: 'MercuryOnUpdateChangeProposalsPayload';
|
|
80866
81501
|
changeProposals?: Maybe<Array<MercuryChangeProposalUpdate>>;
|
|
@@ -80960,6 +81595,11 @@ export declare type MercuryPositionChangeSummaryFields = {
|
|
|
80960
81595
|
deltaByStatus?: Maybe<Array<Maybe<MercuryPositionDeltaByStatus>>>;
|
|
80961
81596
|
deltaTotal?: Maybe<Scalars['Int']['output']>;
|
|
80962
81597
|
};
|
|
81598
|
+
export declare type MercuryPositionCountByStatus = {
|
|
81599
|
+
__typename?: 'MercuryPositionCountByStatus';
|
|
81600
|
+
count?: Maybe<Scalars['Int']['output']>;
|
|
81601
|
+
status?: Maybe<MercuryChangeProposalStatus>;
|
|
81602
|
+
};
|
|
80963
81603
|
export declare type MercuryPositionDeltaByStatus = {
|
|
80964
81604
|
__typename?: 'MercuryPositionDeltaByStatus';
|
|
80965
81605
|
positionDelta?: Maybe<Scalars['Int']['output']>;
|
|
@@ -81211,6 +81851,7 @@ export declare type MercuryQueryApi = {
|
|
|
81211
81851
|
focusAreaActivityHistory?: Maybe<MercuryFocusAreaActivityConnection>;
|
|
81212
81852
|
focusAreaHierarchy?: Maybe<Array<Maybe<MercuryFocusAreaHierarchyNode>>>;
|
|
81213
81853
|
focusAreaStatusTransitions?: Maybe<Array<MercuryFocusAreaStatusTransition>>;
|
|
81854
|
+
focusAreaStatusUpdatesByAris?: Maybe<Array<MercuryFocusAreaStatusUpdate>>;
|
|
81214
81855
|
focusAreaTeamAllocations?: Maybe<MercuryFocusAreaTeamAllocationAggregationConnection>;
|
|
81215
81856
|
focusAreaTypes?: Maybe<Array<MercuryFocusAreaType>>;
|
|
81216
81857
|
focusAreaTypesByAris?: Maybe<Array<Maybe<MercuryFocusAreaType>>>;
|
|
@@ -81268,6 +81909,9 @@ export declare type MercuryQueryApiFocusAreaHierarchyArgs = {
|
|
|
81268
81909
|
export declare type MercuryQueryApiFocusAreaStatusTransitionsArgs = {
|
|
81269
81910
|
cloudId: Scalars['ID']['input'];
|
|
81270
81911
|
};
|
|
81912
|
+
export declare type MercuryQueryApiFocusAreaStatusUpdatesByArisArgs = {
|
|
81913
|
+
aris: Array<Scalars['ID']['input']>;
|
|
81914
|
+
};
|
|
81271
81915
|
export declare type MercuryQueryApiFocusAreaTeamAllocationsArgs = {
|
|
81272
81916
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
81273
81917
|
cloudId: Scalars['ID']['input'];
|
|
@@ -81750,18 +82394,9 @@ export declare type MercuryStrategicEventsQueryApiStrategicEventsSearchArgs = {
|
|
|
81750
82394
|
};
|
|
81751
82395
|
export declare type MercurySubscriptionApi = {
|
|
81752
82396
|
__typename?: 'MercurySubscriptionApi';
|
|
81753
|
-
onCreateChangeProposal?: Maybe<MercuryOnCreateChangeProposalPayload>;
|
|
81754
|
-
onDeleteChangeProposal?: Maybe<MercuryOnDeleteChangeProposalPayload>;
|
|
81755
82397
|
onUpdateChangeProposals?: Maybe<MercuryOnUpdateChangeProposalsPayload>;
|
|
81756
82398
|
onUpdateStrategicEvent?: Maybe<MercuryOnUpdateStrategicEventPayload>;
|
|
81757
82399
|
};
|
|
81758
|
-
export declare type MercurySubscriptionApiOnCreateChangeProposalArgs = {
|
|
81759
|
-
strategicEventId: Scalars['ID']['input'];
|
|
81760
|
-
};
|
|
81761
|
-
export declare type MercurySubscriptionApiOnDeleteChangeProposalArgs = {
|
|
81762
|
-
id: Scalars['ID']['input'];
|
|
81763
|
-
strategicEventId: Scalars['ID']['input'];
|
|
81764
|
-
};
|
|
81765
82400
|
export declare type MercurySubscriptionApiOnUpdateChangeProposalsArgs = {
|
|
81766
82401
|
strategicEventId: Scalars['ID']['input'];
|
|
81767
82402
|
};
|
|
@@ -82357,7 +82992,11 @@ export declare type Mutation = {
|
|
|
82357
82992
|
archivePolarisInsights?: Maybe<ArchivePolarisInsightsPayload>;
|
|
82358
82993
|
archiveSpace?: Maybe<ArchiveSpacePayload>;
|
|
82359
82994
|
assetsDM_autoColumnMapping?: Maybe<AssetsDmAutoColumnMappingResponse>;
|
|
82995
|
+
assetsDM_configureDataSourceMapping?: Maybe<AssetsDmDataSourceConfigureMappingResponse>;
|
|
82996
|
+
assetsDM_createObjectTag?: Maybe<AssetsDmObjectTagCreateResponse>;
|
|
82360
82997
|
assetsDM_dataSource?: Maybe<AssetsDmDataSourceResponse>;
|
|
82998
|
+
assetsDM_dataSourceCleansingRulesConfigure?: Maybe<AssetsDmDataSourceCleansingRulesConfigureResponse>;
|
|
82999
|
+
assetsDM_deleteObjectTag?: Maybe<AssetsDmObjectTagDeleteResponse>;
|
|
82361
83000
|
assetsDM_generateAdapterToken?: Maybe<AssetsDmGenerateAdapterTokenResponse>;
|
|
82362
83001
|
assignIssueParent?: Maybe<AssignIssueParentOutput>;
|
|
82363
83002
|
attachDanglingComment?: Maybe<Comment>;
|
|
@@ -82399,6 +83038,7 @@ export declare type Mutation = {
|
|
|
82399
83038
|
confluence?: Maybe<ConfluenceMutationApi>;
|
|
82400
83039
|
confluence_addReaction?: Maybe<ConfluenceReactionPayload>;
|
|
82401
83040
|
confluence_bulkNestedConvertToLiveDocs?: Maybe<ConfluenceBulkNestedConvertToLiveDocsPayload>;
|
|
83041
|
+
confluence_convertNote?: Maybe<ConfluenceConvertNotePayload>;
|
|
82402
83042
|
confluence_copySpaceSecurityConfiguration?: Maybe<ConfluenceCopySpaceSecurityConfigurationPayload>;
|
|
82403
83043
|
confluence_createCsvExportTask?: Maybe<ConfluenceCreateCsvExportTaskPayload>;
|
|
82404
83044
|
confluence_createCustomRole?: Maybe<ConfluenceCreateCustomRolePayload>;
|
|
@@ -82428,6 +83068,7 @@ export declare type Mutation = {
|
|
|
82428
83068
|
confluence_unmarkCommentAsDangling?: Maybe<ConfluenceUnmarkCommentAsDanglingPayload>;
|
|
82429
83069
|
confluence_unwatchLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
82430
83070
|
confluence_unwatchSubCalendar?: Maybe<ConfluenceUnwatchSubCalendarPayload>;
|
|
83071
|
+
confluence_updateCalendarView?: Maybe<ConfluenceUpdateCalendarViewPayload>;
|
|
82431
83072
|
confluence_updateContentAccessRequest?: Maybe<ConfluenceUpdateContentAccessRequestPayload>;
|
|
82432
83073
|
confluence_updateCustomRole?: Maybe<ConfluenceUpdateCustomRolePayload>;
|
|
82433
83074
|
confluence_updateDefaultTitleEmoji?: Maybe<ConfluenceUpdateDefaultTitleEmojiPayload>;
|
|
@@ -82580,6 +83221,8 @@ export declare type Mutation = {
|
|
|
82580
83221
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
82581
83222
|
goals_addGoalTeamLink?: Maybe<TownsquareGoalsAddGoalTeamLinkPayload>;
|
|
82582
83223
|
goals_createUpdate?: Maybe<TownsquareGoalsCreateUpdatePayload>;
|
|
83224
|
+
goals_deleteLatestUpdate?: Maybe<TownsquareGoalsDeleteLatestUpdatePayload>;
|
|
83225
|
+
goals_editUpdate?: Maybe<TownsquareGoalsEditUpdatePayload>;
|
|
82583
83226
|
goals_removeGoalTeamLink?: Maybe<TownsquareGoalsRemoveGoalTeamLinkPayload>;
|
|
82584
83227
|
goals_setWatchingGoal?: Maybe<TownsquareGoalsSetWatchingGoalPayload>;
|
|
82585
83228
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
@@ -82609,6 +83252,7 @@ export declare type Mutation = {
|
|
|
82609
83252
|
jira_createCustomBackground?: Maybe<JiraProjectCreateCustomBackgroundMutationPayload>;
|
|
82610
83253
|
jira_createFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
82611
83254
|
jira_createGlobalCustomField?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
83255
|
+
jira_createGlobalCustomFieldV2?: Maybe<JiraCreateGlobalCustomFieldPayload>;
|
|
82612
83256
|
jira_createIssueSearchFormattingRule?: Maybe<JiraCreateIssueSearchFormattingRulePayload>;
|
|
82613
83257
|
jira_createIssueType?: Maybe<JiraUpsertIssueTypePayload>;
|
|
82614
83258
|
jira_customizeProjectLevelSidebarMenuItem?: Maybe<JiraProjectLevelSidebarMenuCustomization>;
|
|
@@ -82621,7 +83265,9 @@ export declare type Mutation = {
|
|
|
82621
83265
|
jira_discardUserBoardViewConfig?: Maybe<JiraDiscardUserBoardViewConfigPayload>;
|
|
82622
83266
|
jira_discardUserCalendarViewConfig?: Maybe<JiraUpdateCalendarViewConfigPayload>;
|
|
82623
83267
|
jira_discardUserIssueSearchConfig?: Maybe<JiraDiscardUserIssueSearchConfigPayload>;
|
|
83268
|
+
jira_dragAndDropBoardViewIssue?: Maybe<JiraDragAndDropBoardViewIssuePayload>;
|
|
82624
83269
|
jira_editFieldScheme?: Maybe<JiraFieldSchemePayload>;
|
|
83270
|
+
jira_orderIssueSearchFormattingRule?: Maybe<JiraOrderIssueSearchFormattingRulePayload>;
|
|
82625
83271
|
jira_publishBoardViewConfig?: Maybe<JiraPublishBoardViewConfigPayload>;
|
|
82626
83272
|
jira_publishIssueSearchConfig?: Maybe<JiraPublishIssueSearchConfigPayload>;
|
|
82627
83273
|
jira_removeFieldsFromFieldScheme?: Maybe<JiraRemoveFieldsFromFieldSchemePayload>;
|
|
@@ -82713,7 +83359,9 @@ export declare type Mutation = {
|
|
|
82713
83359
|
projects_edit?: Maybe<TownsquareProjectsEditPayload>;
|
|
82714
83360
|
projects_editLink?: Maybe<TownsquareProjectsEditLinkPayload>;
|
|
82715
83361
|
projects_editUpdate?: Maybe<TownsquareProjectsEditUpdatePayload>;
|
|
83362
|
+
projects_removeGoalLink?: Maybe<TownsquareProjectsRemoveGoalLinkPayload>;
|
|
82716
83363
|
projects_removeMember?: Maybe<TownsquareProjectsRemoveMemberPayload>;
|
|
83364
|
+
projects_removeTeamContributors?: Maybe<TownsquareProjectsRemoveTeamContributorsPayload>;
|
|
82717
83365
|
projects_setDependency?: Maybe<TownsquareProjectsSetDependencyPayload>;
|
|
82718
83366
|
projects_setWatchingProject?: Maybe<TownsquareProjectsSetWatchingProjectPayload>;
|
|
82719
83367
|
projects_shareProject?: Maybe<TownsquareProjectsShareProjectPayload>;
|
|
@@ -83015,6 +83663,17 @@ export declare type MutationAssetsDm_AutoColumnMappingArgs = {
|
|
|
83015
83663
|
cloudId: Scalars['ID']['input'];
|
|
83016
83664
|
workspaceId: Scalars['ID']['input'];
|
|
83017
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
|
+
};
|
|
83018
83677
|
export declare type MutationAssetsDm_DataSourceArgs = {
|
|
83019
83678
|
cloudId: Scalars['ID']['input'];
|
|
83020
83679
|
dataSourceId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -83023,6 +83682,17 @@ export declare type MutationAssetsDm_DataSourceArgs = {
|
|
|
83023
83682
|
operation?: InputMaybe<AssetsDmDataSourceOperationEnum>;
|
|
83024
83683
|
workspaceId: Scalars['ID']['input'];
|
|
83025
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
|
+
};
|
|
83026
83696
|
export declare type MutationAssetsDm_GenerateAdapterTokenArgs = {
|
|
83027
83697
|
cloudId: Scalars['ID']['input'];
|
|
83028
83698
|
generateTokenInput: AssetsDmGenerateAdapterTokenInput;
|
|
@@ -83152,6 +83822,9 @@ export declare type MutationConfluence_BulkNestedConvertToLiveDocsArgs = {
|
|
|
83152
83822
|
cloudId: Scalars['ID']['input'];
|
|
83153
83823
|
input: Array<InputMaybe<NestedPageInput>>;
|
|
83154
83824
|
};
|
|
83825
|
+
export declare type MutationConfluence_ConvertNoteArgs = {
|
|
83826
|
+
input: ConfluenceConvertNoteInput;
|
|
83827
|
+
};
|
|
83155
83828
|
export declare type MutationConfluence_CopySpaceSecurityConfigurationArgs = {
|
|
83156
83829
|
cloudId: Scalars['ID']['input'];
|
|
83157
83830
|
input: ConfluenceCopySpaceSecurityConfigurationInput;
|
|
@@ -83266,6 +83939,10 @@ export declare type MutationConfluence_UnwatchSubCalendarArgs = {
|
|
|
83266
83939
|
cloudId: Scalars['ID']['input'];
|
|
83267
83940
|
input: ConfluenceUnwatchSubCalendarInput;
|
|
83268
83941
|
};
|
|
83942
|
+
export declare type MutationConfluence_UpdateCalendarViewArgs = {
|
|
83943
|
+
cloudId: Scalars['ID']['input'];
|
|
83944
|
+
input: ConfluenceUpdateCalendarViewInput;
|
|
83945
|
+
};
|
|
83269
83946
|
export declare type MutationConfluence_UpdateContentAccessRequestArgs = {
|
|
83270
83947
|
cloudId: Scalars['ID']['input'];
|
|
83271
83948
|
updateContentAccessRequestInput: ConfluenceUpdateContentAccessRequestInput;
|
|
@@ -83788,6 +84465,12 @@ export declare type MutationGoals_AddGoalTeamLinkArgs = {
|
|
|
83788
84465
|
export declare type MutationGoals_CreateUpdateArgs = {
|
|
83789
84466
|
input?: InputMaybe<TownsquareGoalsCreateUpdateInput>;
|
|
83790
84467
|
};
|
|
84468
|
+
export declare type MutationGoals_DeleteLatestUpdateArgs = {
|
|
84469
|
+
input?: InputMaybe<TownsquareGoalsDeleteLatestUpdateInput>;
|
|
84470
|
+
};
|
|
84471
|
+
export declare type MutationGoals_EditUpdateArgs = {
|
|
84472
|
+
input?: InputMaybe<TownsquareGoalsEditUpdateInput>;
|
|
84473
|
+
};
|
|
83791
84474
|
export declare type MutationGoals_RemoveGoalTeamLinkArgs = {
|
|
83792
84475
|
input?: InputMaybe<TownsquareGoalsRemoveGoalTeamLinkInput>;
|
|
83793
84476
|
};
|
|
@@ -83864,6 +84547,10 @@ export declare type MutationJira_CreateGlobalCustomFieldArgs = {
|
|
|
83864
84547
|
cloudId: Scalars['ID']['input'];
|
|
83865
84548
|
input: JiraCreateGlobalCustomFieldInput;
|
|
83866
84549
|
};
|
|
84550
|
+
export declare type MutationJira_CreateGlobalCustomFieldV2Args = {
|
|
84551
|
+
cloudId: Scalars['ID']['input'];
|
|
84552
|
+
input: JiraCreateGlobalCustomFieldV2Input;
|
|
84553
|
+
};
|
|
83867
84554
|
export declare type MutationJira_CreateIssueSearchFormattingRuleArgs = {
|
|
83868
84555
|
input: JiraCreateIssueSearchFormattingRuleInput;
|
|
83869
84556
|
};
|
|
@@ -83901,10 +84588,16 @@ export declare type MutationJira_DiscardUserCalendarViewConfigArgs = {
|
|
|
83901
84588
|
export declare type MutationJira_DiscardUserIssueSearchConfigArgs = {
|
|
83902
84589
|
input: JiraDiscardUserIssueSearchConfigInput;
|
|
83903
84590
|
};
|
|
84591
|
+
export declare type MutationJira_DragAndDropBoardViewIssueArgs = {
|
|
84592
|
+
input: JiraDragAndDropBoardViewIssueInput;
|
|
84593
|
+
};
|
|
83904
84594
|
export declare type MutationJira_EditFieldSchemeArgs = {
|
|
83905
84595
|
cloudId: Scalars['ID']['input'];
|
|
83906
84596
|
input: JiraEditFieldSchemeInput;
|
|
83907
84597
|
};
|
|
84598
|
+
export declare type MutationJira_OrderIssueSearchFormattingRuleArgs = {
|
|
84599
|
+
input: JiraOrderIssueSearchFormattingRuleInput;
|
|
84600
|
+
};
|
|
83908
84601
|
export declare type MutationJira_PublishBoardViewConfigArgs = {
|
|
83909
84602
|
input: JiraPublishBoardViewConfigInput;
|
|
83910
84603
|
};
|
|
@@ -84161,9 +84854,15 @@ export declare type MutationProjects_EditLinkArgs = {
|
|
|
84161
84854
|
export declare type MutationProjects_EditUpdateArgs = {
|
|
84162
84855
|
input?: InputMaybe<TownsquareProjectsEditUpdateInput>;
|
|
84163
84856
|
};
|
|
84857
|
+
export declare type MutationProjects_RemoveGoalLinkArgs = {
|
|
84858
|
+
input: TownsquareProjectsRemoveGoalLinkInput;
|
|
84859
|
+
};
|
|
84164
84860
|
export declare type MutationProjects_RemoveMemberArgs = {
|
|
84165
84861
|
input: TownsquareProjectsRemoveMemberInput;
|
|
84166
84862
|
};
|
|
84863
|
+
export declare type MutationProjects_RemoveTeamContributorsArgs = {
|
|
84864
|
+
input: TownsquareProjectsRemoveTeamContributorsInput;
|
|
84865
|
+
};
|
|
84167
84866
|
export declare type MutationProjects_SetDependencyArgs = {
|
|
84168
84867
|
input?: InputMaybe<TownsquareProjectsSetDependencyInput>;
|
|
84169
84868
|
};
|
|
@@ -85036,6 +85735,7 @@ export declare type NoteConnection = {
|
|
|
85036
85735
|
edges?: Maybe<Array<Maybe<NoteEdge>>>;
|
|
85037
85736
|
nodes?: Maybe<Array<Maybe<NoteResponse>>>;
|
|
85038
85737
|
noteInfo: NoteInfo;
|
|
85738
|
+
pageInfo: PageInfo;
|
|
85039
85739
|
};
|
|
85040
85740
|
export declare type NoteEdge = {
|
|
85041
85741
|
__typename?: 'NoteEdge';
|
|
@@ -85062,11 +85762,13 @@ export declare type NoteMutationErrorExtension = {
|
|
|
85062
85762
|
export declare type NoteResponse = {
|
|
85063
85763
|
__typename?: 'NoteResponse';
|
|
85064
85764
|
ari: Scalars['String']['output'];
|
|
85765
|
+
backgroundColor?: Maybe<Scalars['String']['output']>;
|
|
85065
85766
|
body?: Maybe<Scalars['String']['output']>;
|
|
85066
85767
|
bodyExcerpt?: Maybe<Scalars['String']['output']>;
|
|
85067
85768
|
collectionName: Scalars['String']['output'];
|
|
85068
85769
|
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
85069
85770
|
extraProps?: Maybe<Array<Prop>>;
|
|
85771
|
+
id: Scalars['ID']['output'];
|
|
85070
85772
|
isPinned: Scalars['Boolean']['output'];
|
|
85071
85773
|
labels?: Maybe<Array<Scalars['String']['output']>>;
|
|
85072
85774
|
productLink?: Maybe<Scalars['String']['output']>;
|
|
@@ -85085,6 +85787,13 @@ export declare type NotesByCreatorInput = {
|
|
|
85085
85787
|
export declare enum NotesByDateLastModifiedOrder {
|
|
85086
85788
|
DateLastModified = "DATE_LAST_MODIFIED"
|
|
85087
85789
|
}
|
|
85790
|
+
export declare enum NotesContentType {
|
|
85791
|
+
Livedoc = "LIVEDOC",
|
|
85792
|
+
Page = "PAGE"
|
|
85793
|
+
}
|
|
85794
|
+
export declare enum NotesProduct {
|
|
85795
|
+
Confluence = "CONFLUENCE"
|
|
85796
|
+
}
|
|
85088
85797
|
export declare enum NotificationAction {
|
|
85089
85798
|
DontNotify = "DONT_NOTIFY",
|
|
85090
85799
|
Notify = "NOTIFY"
|
|
@@ -87608,7 +88317,9 @@ export declare type Query = {
|
|
|
87608
88317
|
assetsDM_dataSourceConfig?: Maybe<AssetsDmDataSourceConfig>;
|
|
87609
88318
|
assetsDM_dataSourceDetails?: Maybe<AssetsDmDataSourceDetails>;
|
|
87610
88319
|
assetsDM_dataSourceFormFields?: Maybe<AssetsDmDataSourceFormFields>;
|
|
88320
|
+
assetsDM_dataSourceMapping?: Maybe<Array<AssetsDmDataSourceMapping>>;
|
|
87611
88321
|
assetsDM_dataSourceTransform?: Maybe<AssetsDmDataSourceTransform>;
|
|
88322
|
+
assetsDM_datasourceCleansingRules?: Maybe<AssetsDmDataSourceCleansingRulesResponse>;
|
|
87612
88323
|
assetsDM_objectClasses?: Maybe<Array<Maybe<AssetsDmObjectClass>>>;
|
|
87613
88324
|
assetsDM_objectTags?: Maybe<AssetsDmObjectTags>;
|
|
87614
88325
|
assetsDM_objectsListColumns?: Maybe<AssetsDmObjectsListColumns>;
|
|
@@ -87691,6 +88402,7 @@ export declare type Query = {
|
|
|
87691
88402
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
87692
88403
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
87693
88404
|
confluence_macrosByIds?: Maybe<Array<Maybe<Macro>>>;
|
|
88405
|
+
confluence_note?: Maybe<NoteResponse>;
|
|
87694
88406
|
confluence_pdfExportDownloadLink?: Maybe<ConfluencePdfExportDownloadLink>;
|
|
87695
88407
|
confluence_pdfExportTask?: Maybe<ConfluencePdfExportTask>;
|
|
87696
88408
|
confluence_publicLinkSpaceHomePage?: Maybe<PublicLinkPage>;
|
|
@@ -87761,6 +88473,7 @@ export declare type Query = {
|
|
|
87761
88473
|
countGroupByUser?: Maybe<CountGroupByUser>;
|
|
87762
88474
|
countUsersGroupByPage?: Maybe<CountUsersGroupByPage>;
|
|
87763
88475
|
cpls_capacityPlanningPeopleView?: Maybe<CplsCapacityPlanningPeopleView>;
|
|
88476
|
+
cpls_customContributionTargets: Array<CplsCustomContributionTarget>;
|
|
87764
88477
|
cqlMetaData?: Maybe<Confluence_CqlMetaData>;
|
|
87765
88478
|
csmAi_generateCoachingTriggeringCondition: Scalars['String']['output'];
|
|
87766
88479
|
csmAi_getAgentVersion?: Maybe<CsmAiAgentVersionResult>;
|
|
@@ -87872,8 +88585,8 @@ export declare type Query = {
|
|
|
87872
88585
|
glance_getVULNIssues?: Maybe<Array<Maybe<GlanceUserInsights>>>;
|
|
87873
88586
|
globalContextContentCreationMetadata?: Maybe<ContentCreationMetadata>;
|
|
87874
88587
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
87875
|
-
|
|
87876
|
-
|
|
88588
|
+
graphIntegration_componentDirectoryDimensions?: Maybe<GraphIntegrationDirectoryFilterDimensionConnection>;
|
|
88589
|
+
graphIntegration_componentDirectoryItems?: Maybe<GraphIntegrationDirectoryItemConnection>;
|
|
87877
88590
|
graphStore?: Maybe<GraphStore>;
|
|
87878
88591
|
group?: Maybe<Group>;
|
|
87879
88592
|
groupCounts?: Maybe<GraphQlGroupCountsResult>;
|
|
@@ -87932,7 +88645,8 @@ export declare type Query = {
|
|
|
87932
88645
|
jira_creatableGlobalCustomFieldTypes?: Maybe<JiraCustomFieldTypeConnection>;
|
|
87933
88646
|
jira_fieldSchemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
87934
88647
|
jira_fieldSchemeAvailableFields?: Maybe<JiraFieldConnection>;
|
|
87935
|
-
jira_fieldSchemes?: Maybe<
|
|
88648
|
+
jira_fieldSchemes?: Maybe<JiraFieldSchemesConnection>;
|
|
88649
|
+
jira_fieldSchemesByARIs?: Maybe<Array<Maybe<JiraFieldScheme>>>;
|
|
87936
88650
|
jira_isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
87937
88651
|
jira_issueSearchViewsByIds?: Maybe<Array<Maybe<JiraIssueSearchView>>>;
|
|
87938
88652
|
jira_issuesByIds?: Maybe<Array<Maybe<JiraIssue>>>;
|
|
@@ -88142,8 +88856,10 @@ export declare type Query = {
|
|
|
88142
88856
|
spacesWithExemptions?: Maybe<Array<Maybe<SpaceWithExemption>>>;
|
|
88143
88857
|
spf_ask?: Maybe<SpfAskResult>;
|
|
88144
88858
|
spf_askCommentsByIds?: Maybe<Array<Maybe<SpfAskComment>>>;
|
|
88859
|
+
spf_askLinksByIds?: Maybe<Array<Maybe<SpfAskLink>>>;
|
|
88145
88860
|
spf_asks?: Maybe<SpfAskConnection>;
|
|
88146
88861
|
spf_asksByIds?: Maybe<Array<Maybe<SpfAsk>>>;
|
|
88862
|
+
spf_resolveImpactedWorkUrl?: Maybe<SpfResolveImpactedWorkUrlPayload>;
|
|
88147
88863
|
sqlSchemaSizeLog: SqlSchemaSizeLogResponse;
|
|
88148
88864
|
sqlSlowQueryLogs: Array<SqlSlowQueryLogsResponse>;
|
|
88149
88865
|
stakeholderComms_getAssignmentsByStakeholder?: Maybe<StakeholderCommsPaginatedAssignmentResults>;
|
|
@@ -88457,6 +89173,12 @@ export declare type QueryAssetsDm_DataSourceFormFieldsArgs = {
|
|
|
88457
89173
|
schemaId?: InputMaybe<Scalars['String']['input']>;
|
|
88458
89174
|
workspaceId: Scalars['ID']['input'];
|
|
88459
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
|
+
};
|
|
88460
89182
|
export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
88461
89183
|
cloudID: Scalars['ID']['input'];
|
|
88462
89184
|
dataSourceId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -88465,12 +89187,19 @@ export declare type QueryAssetsDm_DataSourceTransformArgs = {
|
|
|
88465
89187
|
jobId?: InputMaybe<Scalars['ID']['input']>;
|
|
88466
89188
|
workspaceId: Scalars['ID']['input'];
|
|
88467
89189
|
};
|
|
89190
|
+
export declare type QueryAssetsDm_DatasourceCleansingRulesArgs = {
|
|
89191
|
+
cloudId: Scalars['ID']['input'];
|
|
89192
|
+
dataSourceId: Scalars['ID']['input'];
|
|
89193
|
+
workspaceId: Scalars['ID']['input'];
|
|
89194
|
+
};
|
|
88468
89195
|
export declare type QueryAssetsDm_ObjectClassesArgs = {
|
|
88469
89196
|
cloudId: Scalars['ID']['input'];
|
|
88470
89197
|
workspaceId: Scalars['ID']['input'];
|
|
88471
89198
|
};
|
|
88472
89199
|
export declare type QueryAssetsDm_ObjectTagsArgs = {
|
|
88473
|
-
|
|
89200
|
+
cloudId: Scalars['ID']['input'];
|
|
89201
|
+
objectId: Scalars['ID']['input'];
|
|
89202
|
+
workspaceId: Scalars['ID']['input'];
|
|
88474
89203
|
};
|
|
88475
89204
|
export declare type QueryAssetsDm_ObjectsListColumnsArgs = {
|
|
88476
89205
|
cloudId: Scalars['ID']['input'];
|
|
@@ -88816,6 +89545,9 @@ export declare type QueryConfluence_MacrosByIdsArgs = {
|
|
|
88816
89545
|
contentId: Scalars['ID']['input'];
|
|
88817
89546
|
macroIds: Array<InputMaybe<Scalars['ID']['input']>>;
|
|
88818
89547
|
};
|
|
89548
|
+
export declare type QueryConfluence_NoteArgs = {
|
|
89549
|
+
id: Scalars['ID']['input'];
|
|
89550
|
+
};
|
|
88819
89551
|
export declare type QueryConfluence_PdfExportDownloadLinkArgs = {
|
|
88820
89552
|
cloudId: Scalars['ID']['input'];
|
|
88821
89553
|
id: Scalars['ID']['input'];
|
|
@@ -89214,6 +89946,9 @@ export declare type QueryCountUsersGroupByPageArgs = {
|
|
|
89214
89946
|
export declare type QueryCpls_CapacityPlanningPeopleViewArgs = {
|
|
89215
89947
|
id: Scalars['ID']['input'];
|
|
89216
89948
|
};
|
|
89949
|
+
export declare type QueryCpls_CustomContributionTargetsArgs = {
|
|
89950
|
+
ids: Array<Scalars['ID']['input']>;
|
|
89951
|
+
};
|
|
89217
89952
|
export declare type QueryCsmAi_GenerateCoachingTriggeringConditionArgs = {
|
|
89218
89953
|
conversationId: Scalars['ID']['input'];
|
|
89219
89954
|
helpCenterAri: Scalars['ID']['input'];
|
|
@@ -89633,13 +90368,15 @@ export declare type QueryGetSummaryArgs = {
|
|
|
89633
90368
|
lastUpdatedTimeSeconds: Scalars['Long']['input'];
|
|
89634
90369
|
responseType?: InputMaybe<ResponseType>;
|
|
89635
90370
|
};
|
|
89636
|
-
export declare type
|
|
90371
|
+
export declare type QueryGraphIntegration_ComponentDirectoryDimensionsArgs = {
|
|
89637
90372
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90373
|
+
cloudId: Scalars['ID']['input'];
|
|
89638
90374
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89639
90375
|
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
89640
90376
|
};
|
|
89641
|
-
export declare type
|
|
90377
|
+
export declare type QueryGraphIntegration_ComponentDirectoryItemsArgs = {
|
|
89642
90378
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90379
|
+
cloudId: Scalars['ID']['input'];
|
|
89643
90380
|
dimensionIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
89644
90381
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89645
90382
|
relevantFor?: InputMaybe<Array<GraphIntegrationDirectoryItemType>>;
|
|
@@ -89839,6 +90576,9 @@ export declare type QueryJira_FieldSchemesArgs = {
|
|
|
89839
90576
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
89840
90577
|
input?: InputMaybe<JiraFieldSchemesInput>;
|
|
89841
90578
|
};
|
|
90579
|
+
export declare type QueryJira_FieldSchemesByArIsArgs = {
|
|
90580
|
+
ids: Array<Scalars['ID']['input']>;
|
|
90581
|
+
};
|
|
89842
90582
|
export declare type QueryJira_IsRovoLlmEnabledArgs = {
|
|
89843
90583
|
cloudId: Scalars['ID']['input'];
|
|
89844
90584
|
};
|
|
@@ -90059,7 +90799,11 @@ export declare type QueryNodeArgs = {
|
|
|
90059
90799
|
id: Scalars['ID']['input'];
|
|
90060
90800
|
};
|
|
90061
90801
|
export declare type QueryNotesByCreatorArgs = {
|
|
90802
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
90803
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
90804
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
90062
90805
|
input?: InputMaybe<NotesByCreatorInput>;
|
|
90806
|
+
orderBy?: InputMaybe<ConfluenceNotesOrdering>;
|
|
90063
90807
|
};
|
|
90064
90808
|
export declare type QueryObjectRecommendationsArgs = {
|
|
90065
90809
|
context: CollaborationGraphRequestContext;
|
|
@@ -90477,6 +91221,9 @@ export declare type QuerySingleContentArgs = {
|
|
|
90477
91221
|
status?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
90478
91222
|
validatedShareToken?: InputMaybe<Scalars['String']['input']>;
|
|
90479
91223
|
};
|
|
91224
|
+
export declare type QuerySiteOperationsArgs = {
|
|
91225
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
91226
|
+
};
|
|
90480
91227
|
export declare type QuerySitePermissionsArgs = {
|
|
90481
91228
|
operations?: InputMaybe<Array<InputMaybe<SitePermissionOperationType>>>;
|
|
90482
91229
|
permissionTypes?: InputMaybe<Array<InputMaybe<SitePermissionType>>>;
|
|
@@ -90586,6 +91333,9 @@ export declare type QuerySpf_AskArgs = {
|
|
|
90586
91333
|
export declare type QuerySpf_AskCommentsByIdsArgs = {
|
|
90587
91334
|
ids: Array<Scalars['ID']['input']>;
|
|
90588
91335
|
};
|
|
91336
|
+
export declare type QuerySpf_AskLinksByIdsArgs = {
|
|
91337
|
+
ids: Array<Scalars['ID']['input']>;
|
|
91338
|
+
};
|
|
90589
91339
|
export declare type QuerySpf_AsksArgs = {
|
|
90590
91340
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
90591
91341
|
cloudId: Scalars['ID']['input'];
|
|
@@ -90595,6 +91345,10 @@ export declare type QuerySpf_AsksArgs = {
|
|
|
90595
91345
|
export declare type QuerySpf_AsksByIdsArgs = {
|
|
90596
91346
|
ids: Array<Scalars['ID']['input']>;
|
|
90597
91347
|
};
|
|
91348
|
+
export declare type QuerySpf_ResolveImpactedWorkUrlArgs = {
|
|
91349
|
+
cloudId: Scalars['ID']['input'];
|
|
91350
|
+
url: Scalars['String']['input'];
|
|
91351
|
+
};
|
|
90598
91352
|
export declare type QuerySqlSchemaSizeLogArgs = {
|
|
90599
91353
|
appId: Scalars['ID']['input'];
|
|
90600
91354
|
installationId: Scalars['ID']['input'];
|
|
@@ -91391,6 +92145,7 @@ export declare type RankColumnOutput = MutationResponse & {
|
|
|
91391
92145
|
export declare type RankCustomFilterInput = {
|
|
91392
92146
|
afterFilterId?: InputMaybe<Scalars['String']['input']>;
|
|
91393
92147
|
boardId: Scalars['ID']['input'];
|
|
92148
|
+
customFilterIds?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
|
|
91394
92149
|
id: Scalars['String']['input'];
|
|
91395
92150
|
};
|
|
91396
92151
|
export declare type RankItem = {
|
|
@@ -96969,7 +97724,7 @@ export declare type SpfAskEdge = {
|
|
|
96969
97724
|
cursor: Scalars['String']['output'];
|
|
96970
97725
|
node?: Maybe<SpfAskResult>;
|
|
96971
97726
|
};
|
|
96972
|
-
export declare type SpfAskLink = {
|
|
97727
|
+
export declare type SpfAskLink = Node & {
|
|
96973
97728
|
__typename?: 'SpfAskLink';
|
|
96974
97729
|
askId: Scalars['String']['output'];
|
|
96975
97730
|
attachedByUser?: Maybe<User>;
|
|
@@ -97139,6 +97894,10 @@ export declare type SpfDeleteAskUpdatePayload = Payload & {
|
|
|
97139
97894
|
success: Scalars['Boolean']['output'];
|
|
97140
97895
|
};
|
|
97141
97896
|
export declare type SpfImpactedWork = JiraAlignAggProject | JiraIssue | TownsquareProject;
|
|
97897
|
+
export declare type SpfResolveImpactedWorkUrlPayload = {
|
|
97898
|
+
__typename?: 'SpfResolveImpactedWorkUrlPayload';
|
|
97899
|
+
impactedWorkId?: Maybe<Scalars['String']['output']>;
|
|
97900
|
+
};
|
|
97142
97901
|
export declare type SpfUpdateAskCommentDataInput = {
|
|
97143
97902
|
data: Scalars['String']['input'];
|
|
97144
97903
|
id: Scalars['ID']['input'];
|
|
@@ -97367,7 +98126,7 @@ export declare type StakeholderCommsCreateStakeholderInput = {
|
|
|
97367
98126
|
};
|
|
97368
98127
|
export declare type StakeholderCommsGroups = {
|
|
97369
98128
|
__typename?: 'StakeholderCommsGroups';
|
|
97370
|
-
|
|
98129
|
+
avatar?: Maybe<Scalars['String']['output']>;
|
|
97371
98130
|
id?: Maybe<Scalars['ID']['output']>;
|
|
97372
98131
|
name?: Maybe<Scalars['String']['output']>;
|
|
97373
98132
|
};
|
|
@@ -97718,6 +98477,7 @@ export declare type Subscription = {
|
|
|
97718
98477
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
97719
98478
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
97720
98479
|
devai_onAutodevJobLogsUpdated?: Maybe<DevAiAutodevLogEdge>;
|
|
98480
|
+
devai_onBoysenberrySessionUpdated?: Maybe<DevAiRovoDevSession>;
|
|
97721
98481
|
devai_onTechnicalPlannerJobUpdated?: Maybe<DevAiTechnicalPlannerJob>;
|
|
97722
98482
|
ecosystem?: Maybe<EcosystemSubscription>;
|
|
97723
98483
|
jira?: Maybe<JiraSubscription>;
|
|
@@ -97745,6 +98505,9 @@ export declare type SubscriptionDevai_OnAutodevJobLogsUpdatedArgs = {
|
|
|
97745
98505
|
cloudId: Scalars['ID']['input'];
|
|
97746
98506
|
jobId: Scalars['ID']['input'];
|
|
97747
98507
|
};
|
|
98508
|
+
export declare type SubscriptionDevai_OnBoysenberrySessionUpdatedArgs = {
|
|
98509
|
+
sessionAri: Scalars['ID']['input'];
|
|
98510
|
+
};
|
|
97748
98511
|
export declare type SubscriptionDevai_OnTechnicalPlannerJobUpdatedArgs = {
|
|
97749
98512
|
cloudId: Scalars['ID']['input'];
|
|
97750
98513
|
jobId: Scalars['ID']['input'];
|
|
@@ -98511,6 +99274,7 @@ export declare type TeamV2 = Node & {
|
|
|
98511
99274
|
members?: Maybe<TeamMemberConnectionV2>;
|
|
98512
99275
|
membershipSettings?: Maybe<TeamMembershipSettings>;
|
|
98513
99276
|
organizationId?: Maybe<Scalars['ID']['output']>;
|
|
99277
|
+
profileUrl?: Maybe<Scalars['String']['output']>;
|
|
98514
99278
|
smallAvatarImageUrl?: Maybe<Scalars['String']['output']>;
|
|
98515
99279
|
smallHeaderImageUrl?: Maybe<Scalars['String']['output']>;
|
|
98516
99280
|
state?: Maybe<TeamStateV2>;
|
|
@@ -99587,6 +100351,30 @@ export declare type TownsquareGoalsCreateUpdatePayload = {
|
|
|
99587
100351
|
success: Scalars['Boolean']['output'];
|
|
99588
100352
|
update?: Maybe<TownsquareGoalUpdate>;
|
|
99589
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
|
+
};
|
|
99590
100378
|
export declare type TownsquareGoalsRemoveGoalTeamLinkInput = {
|
|
99591
100379
|
goalId: Scalars['ID']['input'];
|
|
99592
100380
|
teamId: Scalars['ID']['input'];
|
|
@@ -100203,6 +100991,17 @@ export declare type TownsquareProjectsEditUpdatePayload = {
|
|
|
100203
100991
|
success: Scalars['Boolean']['output'];
|
|
100204
100992
|
update?: Maybe<TownsquareProjectUpdate>;
|
|
100205
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
|
+
};
|
|
100206
101005
|
export declare type TownsquareProjectsRemoveMemberInput = {
|
|
100207
101006
|
projectId: Scalars['ID']['input'];
|
|
100208
101007
|
userId: Scalars['ID']['input'];
|
|
@@ -100213,6 +101012,17 @@ export declare type TownsquareProjectsRemoveMemberPayload = {
|
|
|
100213
101012
|
success: Scalars['Boolean']['output'];
|
|
100214
101013
|
userId?: Maybe<Scalars['ID']['output']>;
|
|
100215
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
|
+
};
|
|
100216
101026
|
export declare type TownsquareProjectsSetDependencyInput = {
|
|
100217
101027
|
incomingProjectId: Scalars['ID']['input'];
|
|
100218
101028
|
outgoingProjectId: Scalars['ID']['input'];
|
|
@@ -100634,9 +101444,9 @@ export declare type TrelloAction = {
|
|
|
100634
101444
|
};
|
|
100635
101445
|
export declare type TrelloActionAttachmentEntity = {
|
|
100636
101446
|
__typename?: 'TrelloActionAttachmentEntity';
|
|
100637
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
100638
101447
|
link?: Maybe<Scalars['Boolean']['output']>;
|
|
100639
101448
|
name?: Maybe<Scalars['String']['output']>;
|
|
101449
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
100640
101450
|
previewUrl?: Maybe<Scalars['String']['output']>;
|
|
100641
101451
|
previewUrl2x?: Maybe<Scalars['String']['output']>;
|
|
100642
101452
|
type?: Maybe<Scalars['String']['output']>;
|
|
@@ -100644,8 +101454,8 @@ export declare type TrelloActionAttachmentEntity = {
|
|
|
100644
101454
|
};
|
|
100645
101455
|
export declare type TrelloActionAttachmentPreviewEntity = {
|
|
100646
101456
|
__typename?: 'TrelloActionAttachmentPreviewEntity';
|
|
100647
|
-
id?: Maybe<Scalars['ID']['output']>;
|
|
100648
101457
|
name?: Maybe<Scalars['String']['output']>;
|
|
101458
|
+
objectId?: Maybe<Scalars['ID']['output']>;
|
|
100649
101459
|
originalUrl?: Maybe<Scalars['URL']['output']>;
|
|
100650
101460
|
previewUrl?: Maybe<Scalars['URL']['output']>;
|
|
100651
101461
|
previewUrl2x?: Maybe<Scalars['URL']['output']>;
|
|
@@ -100675,6 +101485,7 @@ export declare type TrelloActionCardEntity = {
|
|
|
100675
101485
|
shortId?: Maybe<Scalars['Int']['output']>;
|
|
100676
101486
|
shortLink?: Maybe<Scalars['TrelloShortLink']['output']>;
|
|
100677
101487
|
start?: Maybe<Scalars['DateTime']['output']>;
|
|
101488
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
100678
101489
|
type?: Maybe<Scalars['String']['output']>;
|
|
100679
101490
|
};
|
|
100680
101491
|
export declare type TrelloActionCheckItemEntity = {
|
|
@@ -100692,6 +101503,7 @@ export declare type TrelloActionChecklistEntity = {
|
|
|
100692
101503
|
creationMethod?: Maybe<Scalars['String']['output']>;
|
|
100693
101504
|
name?: Maybe<Scalars['String']['output']>;
|
|
100694
101505
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
101506
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
100695
101507
|
type?: Maybe<Scalars['String']['output']>;
|
|
100696
101508
|
};
|
|
100697
101509
|
export declare type TrelloActionCommentEntity = {
|
|
@@ -100718,6 +101530,7 @@ export declare type TrelloActionListEntity = {
|
|
|
100718
101530
|
__typename?: 'TrelloActionListEntity';
|
|
100719
101531
|
name?: Maybe<Scalars['String']['output']>;
|
|
100720
101532
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
101533
|
+
text?: Maybe<Scalars['String']['output']>;
|
|
100721
101534
|
type?: Maybe<Scalars['String']['output']>;
|
|
100722
101535
|
};
|
|
100723
101536
|
export declare type TrelloActionMemberEntity = {
|
|
@@ -101174,6 +101987,7 @@ export declare type TrelloBoardMirrorCardsMirrorCardsArgs = {
|
|
|
101174
101987
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
101175
101988
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
101176
101989
|
};
|
|
101990
|
+
export declare type TrelloBoardOrInbox = TrelloBoard | TrelloInbox;
|
|
101177
101991
|
export declare type TrelloBoardPowerUpConnection = {
|
|
101178
101992
|
__typename?: 'TrelloBoardPowerUpConnection';
|
|
101179
101993
|
edges?: Maybe<Array<TrelloBoardPowerUpEdge>>;
|
|
@@ -101789,6 +102603,7 @@ export declare type TrelloCommentCardAction = TrelloAction & TrelloCardActionDat
|
|
|
101789
102603
|
card?: Maybe<TrelloCard>;
|
|
101790
102604
|
creator?: Maybe<TrelloMember>;
|
|
101791
102605
|
date?: Maybe<Scalars['DateTime']['output']>;
|
|
102606
|
+
dateLastEdited?: Maybe<Scalars['DateTime']['output']>;
|
|
101792
102607
|
displayEntities?: Maybe<TrelloCommentCardActionDisplayEntities>;
|
|
101793
102608
|
displayKey?: Maybe<Scalars['String']['output']>;
|
|
101794
102609
|
id: Scalars['ID']['output'];
|
|
@@ -102583,6 +103398,7 @@ export declare type TrelloMutationApi = {
|
|
|
102583
103398
|
updateCardPositionOnPlannerCalendarEvent?: Maybe<TrelloUpdateCardPositionOnPlannerCalendarEventPayload>;
|
|
102584
103399
|
updateKeyboardShortcutsPref?: Maybe<TrelloUpdateKeyboardShortcutsPrefPayload>;
|
|
102585
103400
|
updateOAuth2AppCallbackUrls?: Maybe<TrelloUpdateOAuth2AppCallbackUrlsPayload>;
|
|
103401
|
+
updateOAuth2Client?: Maybe<TrelloUpdateOAuth2ClientPayload>;
|
|
102586
103402
|
watchCard?: Maybe<TrelloWatchCardPayload>;
|
|
102587
103403
|
};
|
|
102588
103404
|
export declare type TrelloMutationApiAddBoardStarArgs = {
|
|
@@ -102678,6 +103494,9 @@ export declare type TrelloMutationApiUpdateKeyboardShortcutsPrefArgs = {
|
|
|
102678
103494
|
export declare type TrelloMutationApiUpdateOAuth2AppCallbackUrlsArgs = {
|
|
102679
103495
|
input: TrelloUpdateOAuth2AppCallbackUrlsInput;
|
|
102680
103496
|
};
|
|
103497
|
+
export declare type TrelloMutationApiUpdateOAuth2ClientArgs = {
|
|
103498
|
+
input: TrelloUpdateOAuth2ClientInput;
|
|
103499
|
+
};
|
|
102681
103500
|
export declare type TrelloMutationApiWatchCardArgs = {
|
|
102682
103501
|
input: TrelloWatchCardInput;
|
|
102683
103502
|
};
|
|
@@ -102686,6 +103505,7 @@ export declare type TrelloOAuth2Client = {
|
|
|
102686
103505
|
callbackUrls?: Maybe<Array<Scalars['URL']['output']>>;
|
|
102687
103506
|
clientId: Scalars['String']['output'];
|
|
102688
103507
|
clientSecret: Scalars['String']['output'];
|
|
103508
|
+
clientType: Scalars['String']['output'];
|
|
102689
103509
|
profile: Scalars['String']['output'];
|
|
102690
103510
|
scopes?: Maybe<Array<TrelloOAuth2Scope>>;
|
|
102691
103511
|
};
|
|
@@ -103165,6 +103985,7 @@ export declare type TrelloQueryApi = {
|
|
|
103165
103985
|
labelsById?: Maybe<Array<Maybe<TrelloLabel>>>;
|
|
103166
103986
|
list?: Maybe<TrelloList>;
|
|
103167
103987
|
listsById?: Maybe<Array<Maybe<TrelloList>>>;
|
|
103988
|
+
me?: Maybe<TrelloMember>;
|
|
103168
103989
|
member?: Maybe<TrelloMember>;
|
|
103169
103990
|
plannerAccountsByMemberId?: Maybe<TrelloPlannerCalendarAccountConnection>;
|
|
103170
103991
|
plannerByWorkspaceId?: Maybe<TrelloPlanner>;
|
|
@@ -103724,6 +104545,29 @@ export declare type TrelloUpdateOAuth2AppCallbackUrlsPayload = Payload & {
|
|
|
103724
104545
|
id?: Maybe<Scalars['ID']['output']>;
|
|
103725
104546
|
success: Scalars['Boolean']['output'];
|
|
103726
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
|
+
};
|
|
103727
104571
|
export declare type TrelloUploadedBackground = {
|
|
103728
104572
|
__typename?: 'TrelloUploadedBackground';
|
|
103729
104573
|
objectId: Scalars['ID']['output'];
|
|
@@ -105590,7 +106434,7 @@ export declare type UpdateJiraPlaybookStepInput = {
|
|
|
105590
106434
|
type: JiraPlaybookStepType;
|
|
105591
106435
|
};
|
|
105592
106436
|
export declare type UpdateMetadataInput = {
|
|
105593
|
-
ari
|
|
106437
|
+
ari?: InputMaybe<Scalars['String']['input']>;
|
|
105594
106438
|
extraProps?: InputMaybe<Array<PropInput>>;
|
|
105595
106439
|
isPinned?: InputMaybe<Scalars['Boolean']['input']>;
|
|
105596
106440
|
labels?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
@@ -105605,8 +106449,10 @@ export declare type UpdateNestedPageOwnersPayload = Payload & {
|
|
|
105605
106449
|
warnings?: Maybe<Array<Maybe<ChangeOwnerWarning>>>;
|
|
105606
106450
|
};
|
|
105607
106451
|
export declare type UpdateNoteInput = {
|
|
106452
|
+
backgroundColor?: InputMaybe<Scalars['String']['input']>;
|
|
105608
106453
|
body?: InputMaybe<Scalars['String']['input']>;
|
|
105609
|
-
|
|
106454
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
|
106455
|
+
metadata?: InputMaybe<UpdateMetadataInput>;
|
|
105610
106456
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
105611
106457
|
};
|
|
105612
106458
|
export declare type UpdateNotePayload = {
|