@forge/cli-shared 8.22.1-next.0 → 8.22.1-next.1
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 +12 -0
- package/out/apps/create-an-app.d.ts +3 -1
- package/out/apps/create-an-app.d.ts.map +1 -1
- package/out/apps/create-an-app.js +3 -2
- package/out/apps/register-app.d.ts +3 -1
- package/out/apps/register-app.d.ts.map +1 -1
- package/out/apps/register-app.js +2 -1
- package/out/graphql/graphql-types.d.ts +1396 -156
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +182 -67
- package/out/ui/text.d.ts +1 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +1 -0
- package/package.json +2 -2
|
@@ -824,17 +824,17 @@ export declare type AvpAnalyticsLiteralValueInput = {
|
|
|
824
824
|
};
|
|
825
825
|
export declare type AvpAnalyticsMetric = {
|
|
826
826
|
__typename?: 'AVPAnalyticsMetric';
|
|
827
|
-
cloudId
|
|
827
|
+
cloudId?: Maybe<Scalars['ID']['output']>;
|
|
828
828
|
data?: Maybe<AvpAnalyticsMetricDataConnection>;
|
|
829
829
|
defaultVisualization?: Maybe<AvpAnalyticsVisualizationConfig>;
|
|
830
830
|
definition?: Maybe<AvpAnalyticsMetricDefinition>;
|
|
831
831
|
description?: Maybe<Scalars['String']['output']>;
|
|
832
832
|
errors?: Maybe<Array<AvpAnalyticsMetricError>>;
|
|
833
|
-
id
|
|
833
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
834
834
|
metadata?: Maybe<AvpAnalyticsMetricMetadata>;
|
|
835
835
|
name?: Maybe<Scalars['String']['output']>;
|
|
836
|
-
status
|
|
837
|
-
version
|
|
836
|
+
status?: Maybe<AvpAnalyticsMetricStatus>;
|
|
837
|
+
version?: Maybe<Scalars['String']['output']>;
|
|
838
838
|
};
|
|
839
839
|
export declare type AvpAnalyticsMetricDataArgs = {
|
|
840
840
|
paginationInput: AvpAnalyticsPaginationInput;
|
|
@@ -896,20 +896,45 @@ export declare type AvpAnalyticsMetricEdge = {
|
|
|
896
896
|
};
|
|
897
897
|
export declare type AvpAnalyticsMetricError = {
|
|
898
898
|
__typename?: 'AVPAnalyticsMetricError';
|
|
899
|
-
|
|
899
|
+
field?: Maybe<AvpAnalyticsMetricErrorField>;
|
|
900
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
900
901
|
type?: Maybe<AvpAnalyticsMetricErrorType>;
|
|
901
902
|
};
|
|
903
|
+
export declare enum AvpAnalyticsMetricErrorField {
|
|
904
|
+
AggregationColumn = "AGGREGATION_COLUMN",
|
|
905
|
+
AggregationType = "AGGREGATION_TYPE",
|
|
906
|
+
ChartType = "CHART_TYPE",
|
|
907
|
+
CloudId = "CLOUD_ID",
|
|
908
|
+
ColumnConfiguration = "COLUMN_CONFIGURATION",
|
|
909
|
+
GroupBy = "GROUP_BY",
|
|
910
|
+
MetricDefinition = "METRIC_DEFINITION",
|
|
911
|
+
MetricFilter = "METRIC_FILTER",
|
|
912
|
+
MetricName = "METRIC_NAME",
|
|
913
|
+
MetricVisualization = "METRIC_VISUALIZATION",
|
|
914
|
+
Model = "MODEL",
|
|
915
|
+
SegmentBy = "SEGMENT_BY",
|
|
916
|
+
VisualizationFilter = "VISUALIZATION_FILTER"
|
|
917
|
+
}
|
|
902
918
|
export declare enum AvpAnalyticsMetricErrorType {
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
919
|
+
AggregationColumnNotAllowed = "AGGREGATION_COLUMN_NOT_ALLOWED",
|
|
920
|
+
AggregationColumnRequired = "AGGREGATION_COLUMN_REQUIRED",
|
|
921
|
+
AggregationTypeChartConfigMissing = "AGGREGATION_TYPE_CHART_CONFIG_MISSING",
|
|
922
|
+
AggregationTypeChartTypeMismatch = "AGGREGATION_TYPE_CHART_TYPE_MISMATCH",
|
|
923
|
+
AggregationTypeRequired = "AGGREGATION_TYPE_REQUIRED",
|
|
924
|
+
ChartTypeNotSupported = "CHART_TYPE_NOT_SUPPORTED",
|
|
925
|
+
ChartTypeRequired = "CHART_TYPE_REQUIRED",
|
|
926
|
+
CloudIdRequired = "CLOUD_ID_REQUIRED",
|
|
927
|
+
ColumnConfigurationDuplicate = "COLUMN_CONFIGURATION_DUPLICATE",
|
|
928
|
+
GroupByRequired = "GROUP_BY_REQUIRED",
|
|
929
|
+
MetricDefinitionRequired = "METRIC_DEFINITION_REQUIRED",
|
|
930
|
+
MetricFilterLimitExceeded = "METRIC_FILTER_LIMIT_EXCEEDED",
|
|
931
|
+
MetricNameRequired = "METRIC_NAME_REQUIRED",
|
|
932
|
+
MetricVisualizationRequired = "METRIC_VISUALIZATION_REQUIRED",
|
|
933
|
+
ModelRequired = "MODEL_REQUIRED",
|
|
934
|
+
SegmentByDuplicateColumn = "SEGMENT_BY_DUPLICATE_COLUMN",
|
|
935
|
+
SegmentByNotSupported = "SEGMENT_BY_NOT_SUPPORTED",
|
|
936
|
+
SegmentByTooManyColumns = "SEGMENT_BY_TOO_MANY_COLUMNS",
|
|
937
|
+
VisualizationFilterLimitExceeded = "VISUALIZATION_FILTER_LIMIT_EXCEEDED"
|
|
913
938
|
}
|
|
914
939
|
export declare type AvpAnalyticsMetricFilter = {
|
|
915
940
|
__typename?: 'AVPAnalyticsMetricFilter';
|
|
@@ -1618,6 +1643,7 @@ export declare type AvpDashboard = Node & {
|
|
|
1618
1643
|
fromTemplate?: Maybe<Scalars['String']['output']>;
|
|
1619
1644
|
id: Scalars['ID']['output'];
|
|
1620
1645
|
isReadOnly?: Maybe<Scalars['Boolean']['output']>;
|
|
1646
|
+
isStarred?: Maybe<Scalars['Boolean']['output']>;
|
|
1621
1647
|
isWrapper?: Maybe<Scalars['Boolean']['output']>;
|
|
1622
1648
|
settings?: Maybe<AvpDashboardSettings>;
|
|
1623
1649
|
status?: Maybe<AvpDashboardStatus>;
|
|
@@ -2911,7 +2937,7 @@ export declare type ActivityObject = {
|
|
|
2911
2937
|
subProduct?: Maybe<Scalars['String']['output']>;
|
|
2912
2938
|
type: Scalars['String']['output'];
|
|
2913
2939
|
};
|
|
2914
|
-
export declare type ActivityObjectData = AssetsObject | AssetsObjectType | AssetsSchema | BitbucketPullRequest | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSlide | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalRemoteLink | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | LoomVideo | MercuryFocusArea | MercuryPortfolio | RadarPosition | RadarView | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
2940
|
+
export declare type ActivityObjectData = AssetsObject | AssetsObjectType | AssetsSchema | BitbucketPullRequest | CompassComponent | ConfluenceBlogPost | ConfluenceDatabase | ConfluenceEmbed | ConfluenceFooterComment | ConfluenceInlineComment | ConfluencePage | ConfluenceSlide | ConfluenceWhiteboard | DevOpsDesign | DevOpsDocument | DevOpsPullRequestDetails | ExternalDocument | ExternalPullRequest | ExternalRemoteLink | ExternalWorkItem | JiraIssue | JiraPlatformComment | JiraServiceManagementComment | LoomVideo | MercuryFocusArea | MercuryPortfolio | RadarPosition | RadarView | TownsquareComment | TownsquareGoal | TownsquareProject | TrelloAttachment | TrelloBoard | TrelloCard | TrelloLabel | TrelloList | TrelloMember;
|
|
2915
2941
|
export declare enum ActivityObjectType {
|
|
2916
2942
|
Blogpost = "BLOGPOST",
|
|
2917
2943
|
Comment = "COMMENT",
|
|
@@ -3072,6 +3098,11 @@ export declare type AdminActiveUserResponsePayload = AdminPayload & {
|
|
|
3072
3098
|
errors?: Maybe<Array<AdminMutationError>>;
|
|
3073
3099
|
success: Scalars['Boolean']['output'];
|
|
3074
3100
|
};
|
|
3101
|
+
export declare type AdminAddConnectorPayload = AdminPayload & {
|
|
3102
|
+
__typename?: 'AdminAddConnectorPayload';
|
|
3103
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
3104
|
+
success: Scalars['Boolean']['output'];
|
|
3105
|
+
};
|
|
3075
3106
|
export declare type AdminAiPoliciesSearchInput = {
|
|
3076
3107
|
resources?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
3077
3108
|
};
|
|
@@ -3532,6 +3563,35 @@ export declare type AdminConnectionNode = {
|
|
|
3532
3563
|
connectedTo?: Maybe<AdminConnectedTo>;
|
|
3533
3564
|
id: Scalars['ID']['output'];
|
|
3534
3565
|
};
|
|
3566
|
+
export declare type AdminConnector = {
|
|
3567
|
+
__typename?: 'AdminConnector';
|
|
3568
|
+
datasources?: Maybe<Array<AdminDataSource>>;
|
|
3569
|
+
enabledForIntegrationHub?: Maybe<Scalars['Boolean']['output']>;
|
|
3570
|
+
enabledResourceIds?: Maybe<Array<Scalars['String']['output']>>;
|
|
3571
|
+
formConfiguration?: Maybe<AdminFormConfiguration>;
|
|
3572
|
+
type: Scalars['String']['output'];
|
|
3573
|
+
ugcReviewStatus: Scalars['String']['output'];
|
|
3574
|
+
};
|
|
3575
|
+
export declare type AdminConnectorConnection = {
|
|
3576
|
+
__typename?: 'AdminConnectorConnection';
|
|
3577
|
+
edges?: Maybe<Array<AdminConnectorEdge>>;
|
|
3578
|
+
pageInfo: PageInfo;
|
|
3579
|
+
};
|
|
3580
|
+
export declare type AdminConnectorEdge = {
|
|
3581
|
+
__typename?: 'AdminConnectorEdge';
|
|
3582
|
+
cursor: Scalars['String']['output'];
|
|
3583
|
+
node?: Maybe<AdminConnector>;
|
|
3584
|
+
};
|
|
3585
|
+
export declare type AdminConnectorIcon = {
|
|
3586
|
+
__typename?: 'AdminConnectorIcon';
|
|
3587
|
+
dark?: Maybe<Scalars['String']['output']>;
|
|
3588
|
+
light?: Maybe<Scalars['String']['output']>;
|
|
3589
|
+
};
|
|
3590
|
+
export declare type AdminConnectorPropertyInput = {
|
|
3591
|
+
isUpdated?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3592
|
+
key: Scalars['String']['input'];
|
|
3593
|
+
value?: InputMaybe<Scalars['JSON']['input']>;
|
|
3594
|
+
};
|
|
3535
3595
|
export declare type AdminCreateAiPolicyInput = {
|
|
3536
3596
|
consented?: InputMaybe<Scalars['Boolean']['input']>;
|
|
3537
3597
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -3558,6 +3618,11 @@ export declare type AdminCreateInvitePolicyResponsePayload = {
|
|
|
3558
3618
|
invitePolicy?: Maybe<AdminInvitePolicy>;
|
|
3559
3619
|
success: Scalars['Boolean']['output'];
|
|
3560
3620
|
};
|
|
3621
|
+
export declare type AdminCreateOutboundAuthServicePayload = AdminPayload & {
|
|
3622
|
+
__typename?: 'AdminCreateOutboundAuthServicePayload';
|
|
3623
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
3624
|
+
success: Scalars['Boolean']['output'];
|
|
3625
|
+
};
|
|
3561
3626
|
export declare type AdminCustomDomains = {
|
|
3562
3627
|
__typename?: 'AdminCustomDomains';
|
|
3563
3628
|
parent?: Maybe<AdminLimit>;
|
|
@@ -3577,6 +3642,38 @@ export declare type AdminDataResidencyFeature = {
|
|
|
3577
3642
|
export declare type AdminDataResidencyInput = {
|
|
3578
3643
|
realm: Scalars['String']['input'];
|
|
3579
3644
|
};
|
|
3645
|
+
export declare type AdminDataSource = {
|
|
3646
|
+
__typename?: 'AdminDataSource';
|
|
3647
|
+
actionRequired: Scalars['Boolean']['output'];
|
|
3648
|
+
connectionId?: Maybe<Scalars['String']['output']>;
|
|
3649
|
+
connectorId: Scalars['ID']['output'];
|
|
3650
|
+
connectorName: Scalars['String']['output'];
|
|
3651
|
+
connectorSyncType?: Maybe<Scalars['String']['output']>;
|
|
3652
|
+
enabled: Scalars['Boolean']['output'];
|
|
3653
|
+
failureReasons?: Maybe<Array<AdminDataSourceFailureReason>>;
|
|
3654
|
+
healthy: Scalars['Boolean']['output'];
|
|
3655
|
+
orgId: Scalars['ID']['output'];
|
|
3656
|
+
properties: Array<AdminDataSourceProperty>;
|
|
3657
|
+
providerId?: Maybe<Scalars['String']['output']>;
|
|
3658
|
+
resourceId: Scalars['ID']['output'];
|
|
3659
|
+
thirdPartyAppId?: Maybe<Scalars['String']['output']>;
|
|
3660
|
+
workspaceName?: Maybe<Scalars['String']['output']>;
|
|
3661
|
+
};
|
|
3662
|
+
export declare type AdminDataSourceFailureReason = {
|
|
3663
|
+
__typename?: 'AdminDataSourceFailureReason';
|
|
3664
|
+
failureReasonCode: Scalars['Int']['output'];
|
|
3665
|
+
failureReasonMessageValues: Array<AdminDataSourceMessageValue>;
|
|
3666
|
+
};
|
|
3667
|
+
export declare type AdminDataSourceMessageValue = {
|
|
3668
|
+
__typename?: 'AdminDataSourceMessageValue';
|
|
3669
|
+
name: Scalars['String']['output'];
|
|
3670
|
+
value: Scalars['String']['output'];
|
|
3671
|
+
};
|
|
3672
|
+
export declare type AdminDataSourceProperty = {
|
|
3673
|
+
__typename?: 'AdminDataSourceProperty';
|
|
3674
|
+
key?: Maybe<Scalars['String']['output']>;
|
|
3675
|
+
value?: Maybe<Scalars['JSON']['output']>;
|
|
3676
|
+
};
|
|
3580
3677
|
export declare type AdminDateFilterInput = {
|
|
3581
3678
|
absoluteFrom?: InputMaybe<Scalars['DateTime']['input']>;
|
|
3582
3679
|
absoluteTo?: InputMaybe<Scalars['DateTime']['input']>;
|
|
@@ -3684,6 +3781,43 @@ export declare type AdminFieldMapping = {
|
|
|
3684
3781
|
field: Scalars['String']['input'];
|
|
3685
3782
|
path: Scalars['String']['input'];
|
|
3686
3783
|
};
|
|
3784
|
+
export declare type AdminFormConfiguration = {
|
|
3785
|
+
__typename?: 'AdminFormConfiguration';
|
|
3786
|
+
beforeYouBeginList?: Maybe<Array<Scalars['String']['output']>>;
|
|
3787
|
+
connectorDisplayName?: Maybe<Scalars['String']['output']>;
|
|
3788
|
+
doesFetchConnectorFormData?: Maybe<Scalars['Boolean']['output']>;
|
|
3789
|
+
icon?: Maybe<AdminConnectorIcon>;
|
|
3790
|
+
properties?: Maybe<Array<AdminFormConfigurationProperty>>;
|
|
3791
|
+
};
|
|
3792
|
+
export declare type AdminFormConfigurationProperty = {
|
|
3793
|
+
__typename?: 'AdminFormConfigurationProperty';
|
|
3794
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
3795
|
+
fieldLabel?: Maybe<Scalars['String']['output']>;
|
|
3796
|
+
hideInEditView?: Maybe<Scalars['Boolean']['output']>;
|
|
3797
|
+
isRequired?: Maybe<Scalars['Boolean']['output']>;
|
|
3798
|
+
isSensitive?: Maybe<Scalars['Boolean']['output']>;
|
|
3799
|
+
key: Scalars['String']['output'];
|
|
3800
|
+
placeholder?: Maybe<Scalars['String']['output']>;
|
|
3801
|
+
propertyName?: Maybe<Scalars['String']['output']>;
|
|
3802
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
3803
|
+
type?: Maybe<Scalars['String']['output']>;
|
|
3804
|
+
value?: Maybe<Scalars['JSON']['output']>;
|
|
3805
|
+
};
|
|
3806
|
+
export declare type AdminFormField = {
|
|
3807
|
+
__typename?: 'AdminFormField';
|
|
3808
|
+
key: Scalars['String']['output'];
|
|
3809
|
+
value?: Maybe<Scalars['JSON']['output']>;
|
|
3810
|
+
};
|
|
3811
|
+
export declare type AdminFormFieldConnection = {
|
|
3812
|
+
__typename?: 'AdminFormFieldConnection';
|
|
3813
|
+
edges?: Maybe<Array<AdminFormFieldEdge>>;
|
|
3814
|
+
pageInfo: PageInfo;
|
|
3815
|
+
};
|
|
3816
|
+
export declare type AdminFormFieldEdge = {
|
|
3817
|
+
__typename?: 'AdminFormFieldEdge';
|
|
3818
|
+
cursor: Scalars['String']['output'];
|
|
3819
|
+
node?: Maybe<AdminFormField>;
|
|
3820
|
+
};
|
|
3687
3821
|
export declare type AdminFreezeWindowsFeature = {
|
|
3688
3822
|
__typename?: 'AdminFreezeWindowsFeature';
|
|
3689
3823
|
isEntitled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -4081,6 +4215,12 @@ export declare type AdminQueryableField = {
|
|
|
4081
4215
|
name: Scalars['String']['input'];
|
|
4082
4216
|
values: Array<Scalars['String']['input']>;
|
|
4083
4217
|
};
|
|
4218
|
+
export declare type AdminRegisterNewDataSourceIdPayload = AdminPayload & {
|
|
4219
|
+
__typename?: 'AdminRegisterNewDataSourceIdPayload';
|
|
4220
|
+
errors?: Maybe<Array<AdminMutationError>>;
|
|
4221
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
4222
|
+
success: Scalars['Boolean']['output'];
|
|
4223
|
+
};
|
|
4084
4224
|
export declare type AdminRelationships = {
|
|
4085
4225
|
__typename?: 'AdminRelationships';
|
|
4086
4226
|
connections?: Maybe<Array<AdminConnectionNode>>;
|
|
@@ -6622,6 +6762,10 @@ export declare type AgentWorkspaceAgentCapacityEdge = {
|
|
|
6622
6762
|
cursor: Scalars['String']['output'];
|
|
6623
6763
|
node: AgentWorkspaceAgentCapacity;
|
|
6624
6764
|
};
|
|
6765
|
+
export declare type AgentWorkspaceAgentRebalancingRecommendationsInput = {
|
|
6766
|
+
agentId: Scalars['ID']['input'];
|
|
6767
|
+
projectARI: Scalars['ID']['input'];
|
|
6768
|
+
};
|
|
6625
6769
|
export declare type AgentWorkspaceAgentRecommendation = {
|
|
6626
6770
|
__typename?: 'AgentWorkspaceAgentRecommendation';
|
|
6627
6771
|
accountId: Scalars['ID']['output'];
|
|
@@ -6653,7 +6797,6 @@ export declare type AgentWorkspaceAppliedFilters = {
|
|
|
6653
6797
|
scheduleIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
6654
6798
|
};
|
|
6655
6799
|
export declare type AgentWorkspaceArchiveSkillInput = {
|
|
6656
|
-
cloudId: Scalars['ID']['input'];
|
|
6657
6800
|
skillId: Scalars['ID']['input'];
|
|
6658
6801
|
};
|
|
6659
6802
|
export declare type AgentWorkspaceArchiveSkillPayload = {
|
|
@@ -6677,7 +6820,6 @@ export declare type AgentWorkspaceAssignAgentToGapPayload = {
|
|
|
6677
6820
|
success: Scalars['Boolean']['output'];
|
|
6678
6821
|
};
|
|
6679
6822
|
export declare type AgentWorkspaceAssignAgentsToSkillInput = {
|
|
6680
|
-
cloudId: Scalars['ID']['input'];
|
|
6681
6823
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
6682
6824
|
skillId: Scalars['ID']['input'];
|
|
6683
6825
|
userAris: Array<Scalars['ID']['input']>;
|
|
@@ -6793,6 +6935,15 @@ export declare enum AgentWorkspaceBulkImportJobStatus {
|
|
|
6793
6935
|
ValidationInProgress = "VALIDATION_IN_PROGRESS",
|
|
6794
6936
|
ValidationSuccessful = "VALIDATION_SUCCESSFUL"
|
|
6795
6937
|
}
|
|
6938
|
+
export declare type AgentWorkspaceCancelRoutingTableGenerationInput = {
|
|
6939
|
+
generationId: Scalars['ID']['input'];
|
|
6940
|
+
projectAri: Scalars['ID']['input'];
|
|
6941
|
+
};
|
|
6942
|
+
export declare type AgentWorkspaceCancelRoutingTableGenerationPayload = {
|
|
6943
|
+
__typename?: 'AgentWorkspaceCancelRoutingTableGenerationPayload';
|
|
6944
|
+
generationId: Scalars['ID']['output'];
|
|
6945
|
+
status: AgentWorkspaceRoutingTableGenerationStatus;
|
|
6946
|
+
};
|
|
6796
6947
|
export declare type AgentWorkspaceCapacityConnection = {
|
|
6797
6948
|
__typename?: 'AgentWorkspaceCapacityConnection';
|
|
6798
6949
|
edges: Array<AgentWorkspaceAgentCapacityEdge>;
|
|
@@ -6855,6 +7006,17 @@ export declare type AgentWorkspaceCreateAndLinkTeamsPayload = {
|
|
|
6855
7006
|
teamCreationFailures: Array<AgentWorkspaceTeamCreationFailure>;
|
|
6856
7007
|
teamLinkFailures: Array<AgentWorkspaceTeamLinkFailure>;
|
|
6857
7008
|
};
|
|
7009
|
+
export declare type AgentWorkspaceCreateDraftedRoutingTableInput = {
|
|
7010
|
+
cursor?: InputMaybe<Scalars['String']['input']>;
|
|
7011
|
+
fieldId: Scalars['String']['input'];
|
|
7012
|
+
projectAri: Scalars['ID']['input'];
|
|
7013
|
+
};
|
|
7014
|
+
export declare type AgentWorkspaceCreateDraftedRoutingTablePayload = {
|
|
7015
|
+
__typename?: 'AgentWorkspaceCreateDraftedRoutingTablePayload';
|
|
7016
|
+
pageInfo: AgentWorkspacePageInfo;
|
|
7017
|
+
rows: Array<AgentWorkspaceDraftedRoutingTableEntry>;
|
|
7018
|
+
rowsInserted: Scalars['Int']['output'];
|
|
7019
|
+
};
|
|
6858
7020
|
export declare type AgentWorkspaceCreateScheduleInput = {
|
|
6859
7021
|
agentIds: Array<Scalars['ID']['input']>;
|
|
6860
7022
|
cloudId: Scalars['ID']['input'];
|
|
@@ -6920,6 +7082,31 @@ export declare type AgentWorkspaceDeleteShiftPayload = {
|
|
|
6920
7082
|
shift?: Maybe<AgentWorkspaceShift>;
|
|
6921
7083
|
success: Scalars['Boolean']['output'];
|
|
6922
7084
|
};
|
|
7085
|
+
export declare type AgentWorkspaceDraftedRoutingTable = {
|
|
7086
|
+
__typename?: 'AgentWorkspaceDraftedRoutingTable';
|
|
7087
|
+
entries: Array<AgentWorkspaceDraftedRoutingTableEntry>;
|
|
7088
|
+
};
|
|
7089
|
+
export declare type AgentWorkspaceDraftedRoutingTableEntry = {
|
|
7090
|
+
__typename?: 'AgentWorkspaceDraftedRoutingTableEntry';
|
|
7091
|
+
confidence?: Maybe<Scalars['Float']['output']>;
|
|
7092
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
7093
|
+
serviceId: Scalars['ID']['output'];
|
|
7094
|
+
serviceName: Scalars['String']['output'];
|
|
7095
|
+
teamAri?: Maybe<Scalars['ID']['output']>;
|
|
7096
|
+
teamName?: Maybe<Scalars['String']['output']>;
|
|
7097
|
+
};
|
|
7098
|
+
export declare type AgentWorkspaceDraftedRoutingTableEntryPatch = {
|
|
7099
|
+
confidence?: InputMaybe<Scalars['Float']['input']>;
|
|
7100
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
7101
|
+
serviceName?: InputMaybe<Scalars['String']['input']>;
|
|
7102
|
+
source?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntrySource>;
|
|
7103
|
+
teamAri?: InputMaybe<Scalars['ID']['input']>;
|
|
7104
|
+
teamName?: InputMaybe<Scalars['String']['input']>;
|
|
7105
|
+
};
|
|
7106
|
+
export declare enum AgentWorkspaceDraftedRoutingTableEntrySource {
|
|
7107
|
+
Manual = "MANUAL",
|
|
7108
|
+
Rovo = "ROVO"
|
|
7109
|
+
}
|
|
6923
7110
|
export declare type AgentWorkspaceEditShiftInput = {
|
|
6924
7111
|
agentId: Scalars['ID']['input'];
|
|
6925
7112
|
newEndTime: Scalars['DateTime']['input'];
|
|
@@ -6955,6 +7142,21 @@ export declare type AgentWorkspaceGroupTooLarge = {
|
|
|
6955
7142
|
group?: Maybe<IdentityGroup>;
|
|
6956
7143
|
groupAri: Scalars['ID']['output'];
|
|
6957
7144
|
};
|
|
7145
|
+
export declare type AgentWorkspaceIssueRebalancingRecommendation = {
|
|
7146
|
+
__typename?: 'AgentWorkspaceIssueRebalancingRecommendation';
|
|
7147
|
+
issueARI: Scalars['ID']['output'];
|
|
7148
|
+
recommendations: Array<AgentWorkspaceRebalancingRecommendation>;
|
|
7149
|
+
};
|
|
7150
|
+
export declare type AgentWorkspaceMutationError = {
|
|
7151
|
+
__typename?: 'AgentWorkspaceMutationError';
|
|
7152
|
+
code?: Maybe<Scalars['String']['output']>;
|
|
7153
|
+
message: Scalars['String']['output'];
|
|
7154
|
+
};
|
|
7155
|
+
export declare type AgentWorkspacePageInfo = {
|
|
7156
|
+
__typename?: 'AgentWorkspacePageInfo';
|
|
7157
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
7158
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
7159
|
+
};
|
|
6958
7160
|
export declare type AgentWorkspaceProjectDefaultAvailability = {
|
|
6959
7161
|
__typename?: 'AgentWorkspaceProjectDefaultAvailability';
|
|
6960
7162
|
projectId: Scalars['ID']['output'];
|
|
@@ -6968,6 +7170,10 @@ export declare type AgentWorkspaceProjectDefaultAvailabilityPayload = {
|
|
|
6968
7170
|
projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
6969
7171
|
success: Scalars['Boolean']['output'];
|
|
6970
7172
|
};
|
|
7173
|
+
export declare type AgentWorkspaceRebalancingRecommendation = {
|
|
7174
|
+
__typename?: 'AgentWorkspaceRebalancingRecommendation';
|
|
7175
|
+
toAgentId: Scalars['ID']['output'];
|
|
7176
|
+
};
|
|
6971
7177
|
export declare type AgentWorkspaceRecommendationError = {
|
|
6972
7178
|
__typename?: 'AgentWorkspaceRecommendationError';
|
|
6973
7179
|
message: Scalars['String']['output'];
|
|
@@ -7012,7 +7218,6 @@ export declare type AgentWorkspaceResolvedDateRange = {
|
|
|
7012
7218
|
startTime: Scalars['DateTime']['output'];
|
|
7013
7219
|
};
|
|
7014
7220
|
export declare type AgentWorkspaceRestoreSkillInput = {
|
|
7015
|
-
cloudId: Scalars['ID']['input'];
|
|
7016
7221
|
skillId: Scalars['ID']['input'];
|
|
7017
7222
|
};
|
|
7018
7223
|
export declare type AgentWorkspaceRestoreSkillPayload = {
|
|
@@ -7020,6 +7225,24 @@ export declare type AgentWorkspaceRestoreSkillPayload = {
|
|
|
7020
7225
|
errors?: Maybe<Array<MutationError>>;
|
|
7021
7226
|
success: Scalars['Boolean']['output'];
|
|
7022
7227
|
};
|
|
7228
|
+
export declare type AgentWorkspaceRoutingSetupState = {
|
|
7229
|
+
__typename?: 'AgentWorkspaceRoutingSetupState';
|
|
7230
|
+
hasCommittedTable: Scalars['Boolean']['output'];
|
|
7231
|
+
hasDraft: Scalars['Boolean']['output'];
|
|
7232
|
+
hasField: Scalars['Boolean']['output'];
|
|
7233
|
+
};
|
|
7234
|
+
export declare type AgentWorkspaceRoutingTableEntries = {
|
|
7235
|
+
__typename?: 'AgentWorkspaceRoutingTableEntries';
|
|
7236
|
+
entries: Array<AgentWorkspaceRoutingTableEntry>;
|
|
7237
|
+
};
|
|
7238
|
+
export declare type AgentWorkspaceRoutingTableEntry = {
|
|
7239
|
+
__typename?: 'AgentWorkspaceRoutingTableEntry';
|
|
7240
|
+
description: Scalars['String']['output'];
|
|
7241
|
+
id: Scalars['ID']['output'];
|
|
7242
|
+
serviceFieldValue: Scalars['String']['output'];
|
|
7243
|
+
serviceName: Scalars['String']['output'];
|
|
7244
|
+
teamAri: Scalars['ID']['output'];
|
|
7245
|
+
};
|
|
7023
7246
|
export declare type AgentWorkspaceRoutingTableGeneration = {
|
|
7024
7247
|
__typename?: 'AgentWorkspaceRoutingTableGeneration';
|
|
7025
7248
|
completedServices: Scalars['Int']['output'];
|
|
@@ -7027,6 +7250,7 @@ export declare type AgentWorkspaceRoutingTableGeneration = {
|
|
|
7027
7250
|
endedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
7028
7251
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
7029
7252
|
generationId: Scalars['ID']['output'];
|
|
7253
|
+
selectedRowServiceIds: Array<Scalars['String']['output']>;
|
|
7030
7254
|
startedAt: Scalars['DateTime']['output'];
|
|
7031
7255
|
status: AgentWorkspaceRoutingTableGenerationStatus;
|
|
7032
7256
|
totalServices: Scalars['Int']['output'];
|
|
@@ -7038,9 +7262,12 @@ export declare enum AgentWorkspaceRoutingTableGenerationPhase {
|
|
|
7038
7262
|
ScanningTickets = "SCANNING_TICKETS"
|
|
7039
7263
|
}
|
|
7040
7264
|
export declare enum AgentWorkspaceRoutingTableGenerationStatus {
|
|
7265
|
+
Cancelled = "CANCELLED",
|
|
7266
|
+
Cancelling = "CANCELLING",
|
|
7041
7267
|
Completed = "COMPLETED",
|
|
7042
7268
|
Failed = "FAILED",
|
|
7043
|
-
InProgress = "IN_PROGRESS"
|
|
7269
|
+
InProgress = "IN_PROGRESS",
|
|
7270
|
+
Timeout = "TIMEOUT"
|
|
7044
7271
|
}
|
|
7045
7272
|
export declare type AgentWorkspaceSchedule = {
|
|
7046
7273
|
__typename?: 'AgentWorkspaceSchedule';
|
|
@@ -7266,6 +7493,7 @@ export declare type AgentWorkspaceSkillCategory = {
|
|
|
7266
7493
|
description?: Maybe<Scalars['String']['output']>;
|
|
7267
7494
|
id: Scalars['ID']['output'];
|
|
7268
7495
|
name?: Maybe<Scalars['String']['output']>;
|
|
7496
|
+
skillCount?: Maybe<Scalars['Int']['output']>;
|
|
7269
7497
|
skills?: Maybe<Array<AgentWorkspaceSkill>>;
|
|
7270
7498
|
};
|
|
7271
7499
|
export declare type AgentWorkspaceSkillCategoryConnection = {
|
|
@@ -7337,6 +7565,7 @@ export declare type AgentWorkspaceStartGenerateRoutingTableInput = {
|
|
|
7337
7565
|
days?: InputMaybe<Scalars['Int']['input']>;
|
|
7338
7566
|
maxIssues?: InputMaybe<Scalars['Int']['input']>;
|
|
7339
7567
|
projectKey: Scalars['String']['input'];
|
|
7568
|
+
selectedRowServiceIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7340
7569
|
serviceFieldId: Scalars['String']['input'];
|
|
7341
7570
|
};
|
|
7342
7571
|
export declare type AgentWorkspaceStartGenerateRoutingTablePayload = {
|
|
@@ -7344,6 +7573,16 @@ export declare type AgentWorkspaceStartGenerateRoutingTablePayload = {
|
|
|
7344
7573
|
generationId: Scalars['ID']['output'];
|
|
7345
7574
|
status: AgentWorkspaceRoutingTableGenerationStatus;
|
|
7346
7575
|
};
|
|
7576
|
+
export declare type AgentWorkspaceSubmitDraftedRoutingTableInput = {
|
|
7577
|
+
fieldId: Scalars['String']['input'];
|
|
7578
|
+
generationId: Scalars['ID']['input'];
|
|
7579
|
+
projectAri: Scalars['ID']['input'];
|
|
7580
|
+
};
|
|
7581
|
+
export declare type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
|
|
7582
|
+
__typename?: 'AgentWorkspaceSubmitDraftedRoutingTablePayload';
|
|
7583
|
+
rowsWritten: Scalars['Int']['output'];
|
|
7584
|
+
teamsNewlyConnected: Scalars['Int']['output'];
|
|
7585
|
+
};
|
|
7347
7586
|
export declare type AgentWorkspaceTeamCapacitiesInput = {
|
|
7348
7587
|
cloudId: Scalars['ID']['input'];
|
|
7349
7588
|
projectKey: Scalars['String']['input'];
|
|
@@ -7372,6 +7611,22 @@ export declare type AgentWorkspaceTeamLinkFailure = {
|
|
|
7372
7611
|
message: Scalars['String']['output'];
|
|
7373
7612
|
teamId: Scalars['ID']['output'];
|
|
7374
7613
|
};
|
|
7614
|
+
export declare type AgentWorkspaceTeamRebalancingRecommendationsInput = {
|
|
7615
|
+
projectARI: Scalars['ID']['input'];
|
|
7616
|
+
teamARI: Scalars['ID']['input'];
|
|
7617
|
+
};
|
|
7618
|
+
export declare type AgentWorkspaceTeamRebalancingSummariesInput = {
|
|
7619
|
+
projectARI: Scalars['ID']['input'];
|
|
7620
|
+
};
|
|
7621
|
+
export declare type AgentWorkspaceTeamRebalancingSummary = {
|
|
7622
|
+
__typename?: 'AgentWorkspaceTeamRebalancingSummary';
|
|
7623
|
+
averageUtilizationPercent: Scalars['Float']['output'];
|
|
7624
|
+
overloadedAgentCount: Scalars['Int']['output'];
|
|
7625
|
+
teamARI: Scalars['ID']['output'];
|
|
7626
|
+
totalCapacity: Scalars['Int']['output'];
|
|
7627
|
+
totalCurrentLoad: Scalars['Int']['output'];
|
|
7628
|
+
totalWorkItemCount: Scalars['Int']['output'];
|
|
7629
|
+
};
|
|
7375
7630
|
export declare type AgentWorkspaceTeamSchedules = {
|
|
7376
7631
|
__typename?: 'AgentWorkspaceTeamSchedules';
|
|
7377
7632
|
hasSchedules: Scalars['Boolean']['output'];
|
|
@@ -7473,6 +7728,17 @@ export declare type AgentWorkspaceUpdateSmartRoutingConfigPayload = {
|
|
|
7473
7728
|
smartRoutingConfig: AgentWorkspaceSmartRoutingConfig;
|
|
7474
7729
|
success: Scalars['Boolean']['output'];
|
|
7475
7730
|
};
|
|
7731
|
+
export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryInput = {
|
|
7732
|
+
included?: InputMaybe<Scalars['Boolean']['input']>;
|
|
7733
|
+
projectAri: Scalars['ID']['input'];
|
|
7734
|
+
row?: InputMaybe<AgentWorkspaceDraftedRoutingTableEntryPatch>;
|
|
7735
|
+
serviceId: Scalars['ID']['input'];
|
|
7736
|
+
};
|
|
7737
|
+
export declare type AgentWorkspaceUpsertDraftedRoutingTableEntryPayload = {
|
|
7738
|
+
__typename?: 'AgentWorkspaceUpsertDraftedRoutingTableEntryPayload';
|
|
7739
|
+
entry: AgentWorkspaceDraftedRoutingTableEntry;
|
|
7740
|
+
errors?: Maybe<Array<AgentWorkspaceMutationError>>;
|
|
7741
|
+
};
|
|
7476
7742
|
export declare type AiCoreApiCsvExportInput = {
|
|
7477
7743
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
7478
7744
|
fromDate?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7762,6 +8028,7 @@ export declare enum ApiGroup {
|
|
|
7762
8028
|
AgentStudio = "AGENT_STUDIO",
|
|
7763
8029
|
AppRecommendations = "APP_RECOMMENDATIONS",
|
|
7764
8030
|
AtlassianStudio = "ATLASSIAN_STUDIO",
|
|
8031
|
+
Avp = "AVP",
|
|
7765
8032
|
Caas = "CAAS",
|
|
7766
8033
|
CloudAdmin = "CLOUD_ADMIN",
|
|
7767
8034
|
CollaborationGraph = "COLLABORATION_GRAPH",
|
|
@@ -14451,19 +14718,6 @@ export declare enum CcpAllowancePoolAllocationDetailsType {
|
|
|
14451
14718
|
Custom = "CUSTOM",
|
|
14452
14719
|
Default = "DEFAULT"
|
|
14453
14720
|
}
|
|
14454
|
-
export declare type CcpAllowancePoolAllocationUpdateInput = {
|
|
14455
|
-
allocationId: Scalars['ID']['input'];
|
|
14456
|
-
billingEntity?: InputMaybe<Scalars['String']['input']>;
|
|
14457
|
-
enforcementMode?: InputMaybe<CcpLatestAllowanceEnforcementModeType>;
|
|
14458
|
-
overageCap?: InputMaybe<Scalars['Float']['input']>;
|
|
14459
|
-
poolShare?: InputMaybe<Scalars['Float']['input']>;
|
|
14460
|
-
};
|
|
14461
|
-
export declare type CcpAllowancePoolAllocationUpdateResult = {
|
|
14462
|
-
__typename?: 'CcpAllowancePoolAllocationUpdateResult';
|
|
14463
|
-
allocationId?: Maybe<Scalars['ID']['output']>;
|
|
14464
|
-
poolId?: Maybe<Scalars['ID']['output']>;
|
|
14465
|
-
transactionId?: Maybe<Scalars['ID']['output']>;
|
|
14466
|
-
};
|
|
14467
14721
|
export declare type CcpAllowancePoolAllocationsResponse = {
|
|
14468
14722
|
__typename?: 'CcpAllowancePoolAllocationsResponse';
|
|
14469
14723
|
allowance?: Maybe<Scalars['Float']['output']>;
|
|
@@ -17745,7 +17999,7 @@ export declare type CommerceExpAchInfo = {
|
|
|
17745
17999
|
routingNumber: Scalars['String']['output'];
|
|
17746
18000
|
valid: Scalars['Boolean']['output'];
|
|
17747
18001
|
};
|
|
17748
|
-
export declare type CommerceExpAchPaymentMethod =
|
|
18002
|
+
export declare type CommerceExpAchPaymentMethod = CommerceExpPaymentMethod & {
|
|
17749
18003
|
__typename?: 'CommerceExpAchPaymentMethod';
|
|
17750
18004
|
ach?: Maybe<CommerceExpAchInfo>;
|
|
17751
18005
|
ari: Scalars['ID']['output'];
|
|
@@ -18125,7 +18379,7 @@ export declare type CommerceExpCardDetails = {
|
|
|
18125
18379
|
last4?: Maybe<Scalars['String']['output']>;
|
|
18126
18380
|
postalCode?: Maybe<Scalars['String']['output']>;
|
|
18127
18381
|
};
|
|
18128
|
-
export declare type CommerceExpCardPaymentMethod =
|
|
18382
|
+
export declare type CommerceExpCardPaymentMethod = CommerceExpPaymentMethod & {
|
|
18129
18383
|
__typename?: 'CommerceExpCardPaymentMethod';
|
|
18130
18384
|
ari: Scalars['ID']['output'];
|
|
18131
18385
|
card?: Maybe<CommerceExpCardDetails>;
|
|
@@ -18165,7 +18419,7 @@ export declare type CommerceExpCcpCreditNote = {
|
|
|
18165
18419
|
refundType?: Maybe<CommerceExpCreditNoteDtoRefundTypeEnum>;
|
|
18166
18420
|
version?: Maybe<Scalars['Int']['output']>;
|
|
18167
18421
|
};
|
|
18168
|
-
export declare type CommerceExpCcpEntitlement =
|
|
18422
|
+
export declare type CommerceExpCcpEntitlement = {
|
|
18169
18423
|
__typename?: 'CommerceExpCcpEntitlement';
|
|
18170
18424
|
accountModificationForBac?: Maybe<Array<Maybe<CommerceExpEntitlementAccountModificationForBac>>>;
|
|
18171
18425
|
actions?: Maybe<CommerceExpEntitlementActions>;
|
|
@@ -18335,7 +18589,7 @@ export declare type CommerceExpCcpInvoice = {
|
|
|
18335
18589
|
total?: Maybe<Scalars['Float']['output']>;
|
|
18336
18590
|
uncollectibleAt?: Maybe<Scalars['Float']['output']>;
|
|
18337
18591
|
};
|
|
18338
|
-
export declare type CommerceExpCcpInvoiceGroup =
|
|
18592
|
+
export declare type CommerceExpCcpInvoiceGroup = {
|
|
18339
18593
|
__typename?: 'CommerceExpCcpInvoiceGroup';
|
|
18340
18594
|
active?: Maybe<Scalars['Boolean']['output']>;
|
|
18341
18595
|
billToParty?: Maybe<CommerceExpBillToParty>;
|
|
@@ -18528,7 +18782,7 @@ export declare enum CommerceExpCcpOfferingStatus {
|
|
|
18528
18782
|
Draft = "DRAFT",
|
|
18529
18783
|
Expired = "EXPIRED"
|
|
18530
18784
|
}
|
|
18531
|
-
export declare type CommerceExpCcpOrder = CommerceExpCcpOrderBase &
|
|
18785
|
+
export declare type CommerceExpCcpOrder = CommerceExpCcpOrderBase & {
|
|
18532
18786
|
__typename?: 'CommerceExpCcpOrder';
|
|
18533
18787
|
additionalTriggeredOrders?: Maybe<Array<Maybe<CommerceExpCcpOrder>>>;
|
|
18534
18788
|
createdDate?: Maybe<Scalars['Float']['output']>;
|
|
@@ -18595,7 +18849,7 @@ export declare type CommerceExpCcpPreDunning = {
|
|
|
18595
18849
|
endAt?: Maybe<Scalars['Float']['output']>;
|
|
18596
18850
|
preDunningAttempts?: Maybe<Array<Maybe<CommerceExpPreDunningAttempt>>>;
|
|
18597
18851
|
};
|
|
18598
|
-
export declare type CommerceExpCcpPricingPlan =
|
|
18852
|
+
export declare type CommerceExpCcpPricingPlan = {
|
|
18599
18853
|
__typename?: 'CommerceExpCcpPricingPlan';
|
|
18600
18854
|
activatedWithReason?: Maybe<CommerceExpPricingPlanActivatedReason>;
|
|
18601
18855
|
currency?: Maybe<CommerceExpPricingPlanCurrency>;
|
|
@@ -18631,7 +18885,7 @@ export declare enum CommerceExpCcpPricingType {
|
|
|
18631
18885
|
LimitedFree = "LIMITED_FREE",
|
|
18632
18886
|
Paid = "PAID"
|
|
18633
18887
|
}
|
|
18634
|
-
export declare type CommerceExpCcpProduct =
|
|
18888
|
+
export declare type CommerceExpCcpProduct = {
|
|
18635
18889
|
__typename?: 'CommerceExpCcpProduct';
|
|
18636
18890
|
chargeElements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
18637
18891
|
id: Scalars['ID']['output'];
|
|
@@ -18754,7 +19008,7 @@ export declare type CommerceExpCcpQueryTransactionAccountArgs = {
|
|
|
18754
19008
|
export declare type CommerceExpCcpQueryTransactionAccountsArgs = {
|
|
18755
19009
|
ids: Array<Scalars['ID']['input']>;
|
|
18756
19010
|
};
|
|
18757
|
-
export declare type CommerceExpCcpQuote =
|
|
19011
|
+
export declare type CommerceExpCcpQuote = {
|
|
18758
19012
|
__typename?: 'CommerceExpCcpQuote';
|
|
18759
19013
|
aggregatedDiscountTotalForBAC?: Maybe<Scalars['Float']['output']>;
|
|
18760
19014
|
aggregatedTaxItemsForBAC?: Maybe<Array<CommerceExpTaxItemsResponse>>;
|
|
@@ -18877,7 +19131,7 @@ export declare type CommerceExpCcpSubscriptionTrial = {
|
|
|
18877
19131
|
pricingPlanId?: Maybe<Scalars['String']['output']>;
|
|
18878
19132
|
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
18879
19133
|
};
|
|
18880
|
-
export declare type CommerceExpCcpTransactionAccount =
|
|
19134
|
+
export declare type CommerceExpCcpTransactionAccount = {
|
|
18881
19135
|
__typename?: 'CommerceExpCcpTransactionAccount';
|
|
18882
19136
|
aggCcpTransactionAccount?: Maybe<CcpTransactionAccount>;
|
|
18883
19137
|
billToParty?: Maybe<CommerceExpBillToParty>;
|
|
@@ -19422,7 +19676,7 @@ export declare type CommerceExpDefaultAllowance = {
|
|
|
19422
19676
|
type?: Maybe<CommerceExpAllowanceType>;
|
|
19423
19677
|
unit?: Maybe<Scalars['String']['output']>;
|
|
19424
19678
|
};
|
|
19425
|
-
export declare type CommerceExpDeferredPaymentMethod =
|
|
19679
|
+
export declare type CommerceExpDeferredPaymentMethod = CommerceExpPaymentMethod & {
|
|
19426
19680
|
__typename?: 'CommerceExpDeferredPaymentMethod';
|
|
19427
19681
|
ari: Scalars['ID']['output'];
|
|
19428
19682
|
currency?: Maybe<Scalars['String']['output']>;
|
|
@@ -19957,7 +20211,7 @@ export declare type CommerceExpInvoiceList = {
|
|
|
19957
20211
|
invoices?: Maybe<Array<Maybe<CommerceExpCcpInvoice>>>;
|
|
19958
20212
|
};
|
|
19959
20213
|
export declare type CommerceExpInvoiceOrNoPermissions = CommerceExpInvoiceErrorObject | CommerceExpInvoiceList;
|
|
19960
|
-
export declare type CommerceExpInvoiceRequest =
|
|
20214
|
+
export declare type CommerceExpInvoiceRequest = {
|
|
19961
20215
|
__typename?: 'CommerceExpInvoiceRequest';
|
|
19962
20216
|
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
19963
20217
|
currency?: Maybe<Scalars['String']['output']>;
|
|
@@ -20189,9 +20443,6 @@ export declare type CommerceExpMutationPayload = {
|
|
|
20189
20443
|
errors?: Maybe<Array<MutationError>>;
|
|
20190
20444
|
success: Scalars['Boolean']['output'];
|
|
20191
20445
|
};
|
|
20192
|
-
export declare type CommerceExpNode = {
|
|
20193
|
-
id: Scalars['ID']['output'];
|
|
20194
|
-
};
|
|
20195
20446
|
export declare type CommerceExpNoteDto = {
|
|
20196
20447
|
__typename?: 'CommerceExpNoteDto';
|
|
20197
20448
|
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
@@ -20527,7 +20778,7 @@ export declare enum CommerceExpOrderType {
|
|
|
20527
20778
|
TransitionOrder = "TRANSITION_ORDER"
|
|
20528
20779
|
}
|
|
20529
20780
|
export declare type CommerceExpOrgItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
|
|
20530
|
-
export declare type CommerceExpOrganisation =
|
|
20781
|
+
export declare type CommerceExpOrganisation = {
|
|
20531
20782
|
__typename?: 'CommerceExpOrganisation';
|
|
20532
20783
|
id: Scalars['ID']['output'];
|
|
20533
20784
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -20642,7 +20893,7 @@ export declare enum CommerceExpPaymentStatusType {
|
|
|
20642
20893
|
RequiresAction = "REQUIRES_ACTION",
|
|
20643
20894
|
RequiresDifferentPaymentMethod = "REQUIRES_DIFFERENT_PAYMENT_METHOD"
|
|
20644
20895
|
}
|
|
20645
|
-
export declare type CommerceExpPaypalPaymentMethod =
|
|
20896
|
+
export declare type CommerceExpPaypalPaymentMethod = CommerceExpPaymentMethod & {
|
|
20646
20897
|
__typename?: 'CommerceExpPaypalPaymentMethod';
|
|
20647
20898
|
ari: Scalars['ID']['output'];
|
|
20648
20899
|
currency?: Maybe<Scalars['String']['output']>;
|
|
@@ -21201,7 +21452,7 @@ export declare type CommerceExpSetupIntentPayload = CommerceExpMutationPayload &
|
|
|
21201
21452
|
setupIntent?: Maybe<CommerceExpSetupIntent>;
|
|
21202
21453
|
success: Scalars['Boolean']['output'];
|
|
21203
21454
|
};
|
|
21204
|
-
export declare type CommerceExpShipToParty =
|
|
21455
|
+
export declare type CommerceExpShipToParty = {
|
|
21205
21456
|
__typename?: 'CommerceExpShipToParty';
|
|
21206
21457
|
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
21207
21458
|
id: Scalars['ID']['output'];
|
|
@@ -27141,9 +27392,13 @@ export declare type ConfluenceApprovalAgentPayload = Payload & {
|
|
|
27141
27392
|
};
|
|
27142
27393
|
export declare type ConfluenceApprovalReviewerConfig = {
|
|
27143
27394
|
__typename?: 'ConfluenceApprovalReviewerConfig';
|
|
27144
|
-
|
|
27395
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
27145
27396
|
reviewers: Array<Maybe<ConfluenceSpaceApprovalReviewerEntry>>;
|
|
27146
27397
|
};
|
|
27398
|
+
export declare type ConfluenceApprovalReviewerConfigInput = {
|
|
27399
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27400
|
+
reviewers?: InputMaybe<Array<InputMaybe<ConfluenceContentApprovalsSpaceSettingReviewerInput>>>;
|
|
27401
|
+
};
|
|
27147
27402
|
export declare enum ConfluenceApprovalTransitionType {
|
|
27148
27403
|
Directed = "DIRECTED",
|
|
27149
27404
|
Initial = "INITIAL"
|
|
@@ -27766,10 +28021,10 @@ export declare type ConfluenceContentApprovalsSpaceSettingConfig = {
|
|
|
27766
28021
|
enforcedApprovalReviewerConfig: ConfluenceApprovalReviewerConfig;
|
|
27767
28022
|
};
|
|
27768
28023
|
export declare type ConfluenceContentApprovalsSpaceSettingConfigInput = {
|
|
27769
|
-
|
|
28024
|
+
defaultReviewerConfig?: InputMaybe<ConfluenceApprovalReviewerConfigInput>;
|
|
27770
28025
|
disallowFirstPublish?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27771
|
-
enabled
|
|
27772
|
-
|
|
28026
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
28027
|
+
enforcedReviewerConfig?: InputMaybe<ConfluenceApprovalReviewerConfigInput>;
|
|
27773
28028
|
};
|
|
27774
28029
|
export declare type ConfluenceContentApprovalsSpaceSettingConfigPayload = Payload & {
|
|
27775
28030
|
__typename?: 'ConfluenceContentApprovalsSpaceSettingConfigPayload';
|
|
@@ -27885,6 +28140,7 @@ export declare type ConfluenceContentModified = {
|
|
|
27885
28140
|
inlineReactionAdded?: Maybe<ConfluenceInlineReactionAdded>;
|
|
27886
28141
|
inlineReactionHighlightDeleted?: Maybe<ConfluenceInlineReactionHighlightDeleted>;
|
|
27887
28142
|
inlineReactionRemoved?: Maybe<ConfluenceInlineReactionRemoved>;
|
|
28143
|
+
markdownModeUpdated?: Maybe<ConfluenceMarkdownModeUpdated>;
|
|
27888
28144
|
pageBlogified?: Maybe<ConfluencePageBlogified>;
|
|
27889
28145
|
pageMigrated?: Maybe<ConfluencePageMigrated>;
|
|
27890
28146
|
pageMoved?: Maybe<ConfluencePageMoved>;
|
|
@@ -28587,6 +28843,10 @@ export declare type ConfluenceCustomPageSpaceSettings = {
|
|
|
28587
28843
|
footerText?: Maybe<Scalars['String']['output']>;
|
|
28588
28844
|
headerText?: Maybe<Scalars['String']['output']>;
|
|
28589
28845
|
};
|
|
28846
|
+
export declare type ConfluenceCutoverDate = {
|
|
28847
|
+
__typename?: 'ConfluenceCutoverDate';
|
|
28848
|
+
date?: Maybe<Scalars['String']['output']>;
|
|
28849
|
+
};
|
|
28590
28850
|
export declare type ConfluenceCutoverRoleConfig = {
|
|
28591
28851
|
__typename?: 'ConfluenceCutoverRoleConfig';
|
|
28592
28852
|
eligibleRoles: Array<Maybe<SpaceRole>>;
|
|
@@ -29014,6 +29274,7 @@ export declare type ConfluenceExtensionPrincipal = {
|
|
|
29014
29274
|
id?: Maybe<Scalars['ID']['output']>;
|
|
29015
29275
|
};
|
|
29016
29276
|
export declare type ConfluenceExtensionRenderingContextInput = {
|
|
29277
|
+
attachmentId?: InputMaybe<Scalars['String']['input']>;
|
|
29017
29278
|
contentId?: InputMaybe<Scalars['Long']['input']>;
|
|
29018
29279
|
spaceId?: InputMaybe<Scalars['Long']['input']>;
|
|
29019
29280
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -29716,6 +29977,10 @@ export declare type ConfluenceMarkdownDroppedElement = {
|
|
|
29716
29977
|
detail?: Maybe<Scalars['String']['output']>;
|
|
29717
29978
|
occurrences?: Maybe<Scalars['Int']['output']>;
|
|
29718
29979
|
};
|
|
29980
|
+
export declare type ConfluenceMarkdownModeUpdated = {
|
|
29981
|
+
__typename?: 'ConfluenceMarkdownModeUpdated';
|
|
29982
|
+
isMarkdownMode?: Maybe<Scalars['Boolean']['output']>;
|
|
29983
|
+
};
|
|
29719
29984
|
export declare type ConfluenceMediaTokenData = {
|
|
29720
29985
|
__typename?: 'ConfluenceMediaTokenData';
|
|
29721
29986
|
clientId: Scalars['String']['output'];
|
|
@@ -31962,6 +32227,21 @@ export declare type ConfluenceRoleRecommendation = {
|
|
|
31962
32227
|
action: ConfluenceRecommendedAction;
|
|
31963
32228
|
roleIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
31964
32229
|
};
|
|
32230
|
+
export declare enum ConfluenceRolesHubTransitionStep {
|
|
32231
|
+
AssignByUserOrGroup = "ASSIGN_BY_USER_OR_GROUP",
|
|
32232
|
+
AuditUserAccess = "AUDIT_USER_ACCESS",
|
|
32233
|
+
ChooseFallbackRole = "CHOOSE_FALLBACK_ROLE",
|
|
32234
|
+
CreateCustomRoles = "CREATE_CUSTOM_ROLES",
|
|
32235
|
+
EnforceRoleBasedAccess = "ENFORCE_ROLE_BASED_ACCESS",
|
|
32236
|
+
ReplaceLegacyCombinations = "REPLACE_LEGACY_COMBINATIONS",
|
|
32237
|
+
UpdateDefaultAccess = "UPDATE_DEFAULT_ACCESS",
|
|
32238
|
+
ViewPermissionsCombinations = "VIEW_PERMISSIONS_COMBINATIONS"
|
|
32239
|
+
}
|
|
32240
|
+
export declare type ConfluenceRolesHubTransitionStepState = {
|
|
32241
|
+
__typename?: 'ConfluenceRolesHubTransitionStepState';
|
|
32242
|
+
completed: Scalars['Boolean']['output'];
|
|
32243
|
+
step: ConfluenceRolesHubTransitionStep;
|
|
32244
|
+
};
|
|
31965
32245
|
export declare type ConfluenceSaveOrUpdateSpaceOwnerInput = {
|
|
31966
32246
|
ownerId: Scalars['ID']['input'];
|
|
31967
32247
|
spaceId: Scalars['Long']['input'];
|
|
@@ -32051,6 +32331,12 @@ export declare type ConfluenceSetContentGeneralAccessModePayload = Payload & {
|
|
|
32051
32331
|
errors?: Maybe<Array<MutationError>>;
|
|
32052
32332
|
success: Scalars['Boolean']['output'];
|
|
32053
32333
|
};
|
|
32334
|
+
export declare type ConfluenceSetRolesHubTransitionStepPayload = Payload & {
|
|
32335
|
+
__typename?: 'ConfluenceSetRolesHubTransitionStepPayload';
|
|
32336
|
+
errors?: Maybe<Array<MutationError>>;
|
|
32337
|
+
steps?: Maybe<Array<Maybe<ConfluenceRolesHubTransitionStepState>>>;
|
|
32338
|
+
success: Scalars['Boolean']['output'];
|
|
32339
|
+
};
|
|
32054
32340
|
export declare type ConfluenceSetSubCalendarReminderInput = {
|
|
32055
32341
|
isReminder: Scalars['Boolean']['input'];
|
|
32056
32342
|
subCalendarId: Scalars['ID']['input'];
|
|
@@ -32142,6 +32428,33 @@ export declare enum ConfluenceShareableLinkSpacesByCriteriaOrder {
|
|
|
32142
32428
|
ActiveLinks = "ACTIVE_LINKS",
|
|
32143
32429
|
Name = "NAME"
|
|
32144
32430
|
}
|
|
32431
|
+
export declare type ConfluenceShortcutSmartLink = {
|
|
32432
|
+
__typename?: 'ConfluenceShortcutSmartLink';
|
|
32433
|
+
canView?: Maybe<Scalars['Boolean']['output']>;
|
|
32434
|
+
customTitle?: Maybe<Scalars['String']['output']>;
|
|
32435
|
+
emojiTitle?: Maybe<Scalars['String']['output']>;
|
|
32436
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
32437
|
+
id: Scalars['Long']['output'];
|
|
32438
|
+
position: Scalars['Int']['output'];
|
|
32439
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
32440
|
+
resolved?: Maybe<Scalars['Boolean']['output']>;
|
|
32441
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
32442
|
+
styleClass?: Maybe<Scalars['String']['output']>;
|
|
32443
|
+
subType?: Maybe<Scalars['String']['output']>;
|
|
32444
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
32445
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
32446
|
+
};
|
|
32447
|
+
export declare type ConfluenceShortcutSmartLinkConnection = {
|
|
32448
|
+
__typename?: 'ConfluenceShortcutSmartLinkConnection';
|
|
32449
|
+
edges?: Maybe<Array<Maybe<ConfluenceShortcutSmartLinkEdge>>>;
|
|
32450
|
+
nodes?: Maybe<Array<Maybe<ConfluenceShortcutSmartLink>>>;
|
|
32451
|
+
pageInfo: ConfluencePageInfo;
|
|
32452
|
+
};
|
|
32453
|
+
export declare type ConfluenceShortcutSmartLinkEdge = {
|
|
32454
|
+
__typename?: 'ConfluenceShortcutSmartLinkEdge';
|
|
32455
|
+
cursor: Scalars['String']['output'];
|
|
32456
|
+
node?: Maybe<ConfluenceShortcutSmartLink>;
|
|
32457
|
+
};
|
|
32145
32458
|
export declare type ConfluenceSiteConfiguration = {
|
|
32146
32459
|
__typename?: 'ConfluenceSiteConfiguration';
|
|
32147
32460
|
attachmentSettings?: Maybe<ConfluenceAttachmentSettings>;
|
|
@@ -32162,6 +32475,7 @@ export declare type ConfluenceSiteConfiguration = {
|
|
|
32162
32475
|
isEditorFullWidthEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
32163
32476
|
isEmailNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
32164
32477
|
isExternalConnectionEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
32478
|
+
isHideTitleInUrlEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
32165
32479
|
isLikesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
32166
32480
|
isLoomEntryPointsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
32167
32481
|
isMentionReminderSlackNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -32317,6 +32631,7 @@ export declare type ConfluenceSpaceApprovalReviewerEntry = {
|
|
|
32317
32631
|
__typename?: 'ConfluenceSpaceApprovalReviewerEntry';
|
|
32318
32632
|
principalId: Scalars['String']['output'];
|
|
32319
32633
|
principalType: ConfluencePrincipalType;
|
|
32634
|
+
user?: Maybe<AtlassianUser>;
|
|
32320
32635
|
};
|
|
32321
32636
|
export declare type ConfluenceSpaceConnection = {
|
|
32322
32637
|
__typename?: 'ConfluenceSpaceConnection';
|
|
@@ -33470,6 +33785,7 @@ export declare type ConfluenceUpdateSiteSecurityConfigurationInput = {
|
|
|
33470
33785
|
isAddWildcardsToUserAndGroupSearchesEnabled: Scalars['Boolean']['input'];
|
|
33471
33786
|
isAnonymousAccessToRemoteApiEnabled: Scalars['Boolean']['input'];
|
|
33472
33787
|
isElevatedSecurityCheckEnabled: Scalars['Boolean']['input'];
|
|
33788
|
+
isHideTitleInUrlEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33473
33789
|
isNofollowExternalLinksEnabled: Scalars['Boolean']['input'];
|
|
33474
33790
|
isPrivacyModeEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33475
33791
|
isXsrfAddCommentsEnabled: Scalars['Boolean']['input'];
|
|
@@ -35070,6 +35386,8 @@ export declare type ConvoAiJiraSimilarWorkItemsInput = {
|
|
|
35070
35386
|
};
|
|
35071
35387
|
export declare type ConvoAiJiraSimilarWorkItemsSimilarityConfig = {
|
|
35072
35388
|
minimumSimScore?: InputMaybe<Scalars['Float']['input']>;
|
|
35389
|
+
topK?: InputMaybe<Scalars['Int']['input']>;
|
|
35390
|
+
useThreshold?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35073
35391
|
};
|
|
35074
35392
|
export declare type ConvoAiMessageArtifact = {
|
|
35075
35393
|
__typename?: 'ConvoAiMessageArtifact';
|
|
@@ -37264,6 +37582,7 @@ export declare type CsmAiWidgetBrandingTheme = {
|
|
|
37264
37582
|
icon: CsmAiWidgetIcon;
|
|
37265
37583
|
radius: CsmAiWidgetBrandingRadius;
|
|
37266
37584
|
space: CsmAiWidgetBrandingSpaceVariant;
|
|
37585
|
+
welcomeMessage?: Maybe<Scalars['String']['output']>;
|
|
37267
37586
|
};
|
|
37268
37587
|
export declare type CsmAiWidgetBrandingThemeUpdateInput = {
|
|
37269
37588
|
attribution?: InputMaybe<CsmAiWidgetBrandingAttributionInput>;
|
|
@@ -37272,6 +37591,7 @@ export declare type CsmAiWidgetBrandingThemeUpdateInput = {
|
|
|
37272
37591
|
icon?: InputMaybe<CsmAiWidgetIconUpdateInput>;
|
|
37273
37592
|
radius: CsmAiWidgetBrandingRadius;
|
|
37274
37593
|
space: CsmAiWidgetBrandingSpaceVariant;
|
|
37594
|
+
welcomeMessage?: InputMaybe<Scalars['String']['input']>;
|
|
37275
37595
|
};
|
|
37276
37596
|
export declare type CsmAiWidgetClientKey = {
|
|
37277
37597
|
__typename?: 'CsmAiWidgetClientKey';
|
|
@@ -37619,6 +37939,7 @@ export declare type CustomerServiceAiSuggestionsInput = {
|
|
|
37619
37939
|
export declare type CustomerServiceAiSuggestionsQueryResult = CustomerServiceAiSuggestionsResponse | QueryError;
|
|
37620
37940
|
export declare type CustomerServiceAiSuggestionsResponse = {
|
|
37621
37941
|
__typename?: 'CustomerServiceAiSuggestionsResponse';
|
|
37942
|
+
id: Scalars['ID']['output'];
|
|
37622
37943
|
requestId: Scalars['ID']['output'];
|
|
37623
37944
|
status: CustomerServiceAiResultStatus;
|
|
37624
37945
|
suggestion?: Maybe<CustomerServiceAiSuggestion>;
|
|
@@ -38000,6 +38321,29 @@ export declare type CustomerServiceDeleteCustomerPayload = Payload & {
|
|
|
38000
38321
|
errors?: Maybe<Array<MutationError>>;
|
|
38001
38322
|
success: Scalars['Boolean']['output'];
|
|
38002
38323
|
};
|
|
38324
|
+
export declare type CustomerServiceEmailChannelConfig = {
|
|
38325
|
+
__typename?: 'CustomerServiceEmailChannelConfig';
|
|
38326
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
38327
|
+
enabledBy?: Maybe<Scalars['String']['output']>;
|
|
38328
|
+
helpCenterId: Scalars['ID']['output'];
|
|
38329
|
+
id: Scalars['ID']['output'];
|
|
38330
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
38331
|
+
replyToAddress?: Maybe<Scalars['String']['output']>;
|
|
38332
|
+
supportEmail?: Maybe<Scalars['String']['output']>;
|
|
38333
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
38334
|
+
};
|
|
38335
|
+
export declare type CustomerServiceEmailChannelConfigQueryResult = CustomerServiceEmailChannelConfig | QueryError;
|
|
38336
|
+
export declare type CustomerServiceEmailChannelConfigUpsertInput = {
|
|
38337
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
38338
|
+
replyToAddress?: InputMaybe<Scalars['String']['input']>;
|
|
38339
|
+
supportEmail?: InputMaybe<Scalars['String']['input']>;
|
|
38340
|
+
};
|
|
38341
|
+
export declare type CustomerServiceEmailChannelConfigUpsertPayload = {
|
|
38342
|
+
__typename?: 'CustomerServiceEmailChannelConfigUpsertPayload';
|
|
38343
|
+
emailChannelConfig?: Maybe<CustomerServiceEmailChannelConfig>;
|
|
38344
|
+
errors?: Maybe<Array<MutationError>>;
|
|
38345
|
+
success: Scalars['Boolean']['output'];
|
|
38346
|
+
};
|
|
38003
38347
|
export declare type CustomerServiceEntitledEntity = CustomerServiceIndividual | CustomerServiceOrganization;
|
|
38004
38348
|
export declare type CustomerServiceEntitlement = Node & {
|
|
38005
38349
|
__typename?: 'CustomerServiceEntitlement';
|
|
@@ -39728,6 +40072,7 @@ export declare type DevAiAutodevNextCreateWorkstreamInput = {
|
|
|
39728
40072
|
members?: InputMaybe<Array<DevAiAutodevNextMemberItemInput>>;
|
|
39729
40073
|
name: Scalars['String']['input'];
|
|
39730
40074
|
projects?: InputMaybe<Array<DevAiAutodevNextProjectItemInput>>;
|
|
40075
|
+
scanTargets?: InputMaybe<Array<DevAiAutodevNextScanTargetItemInput>>;
|
|
39731
40076
|
settings?: InputMaybe<DevAiAutodevNextWorkstreamSettingsInput>;
|
|
39732
40077
|
status?: InputMaybe<DevAiAutodevNextWorkstreamStatus>;
|
|
39733
40078
|
};
|
|
@@ -39856,6 +40201,10 @@ export declare type DevAiAutodevNextScanScheduleInput = {
|
|
|
39856
40201
|
dayOfWeek: DevAiAutodevNextDayOfWeek;
|
|
39857
40202
|
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
39858
40203
|
};
|
|
40204
|
+
export declare type DevAiAutodevNextScanTargetItemInput = {
|
|
40205
|
+
repositoryAris: Array<Scalars['ID']['input']>;
|
|
40206
|
+
standardId: Scalars['ID']['input'];
|
|
40207
|
+
};
|
|
39859
40208
|
export declare type DevAiAutodevNextSendWorkstreamNudgesInput = {
|
|
39860
40209
|
cloudId: Scalars['ID']['input'];
|
|
39861
40210
|
message?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -41120,6 +41469,7 @@ export declare type DevConsoleDeveloperSpaceResourceTotals = {
|
|
|
41120
41469
|
llmInput?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
41121
41470
|
llmOutput?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
41122
41471
|
logsWrite?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
41472
|
+
osRequests?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
41123
41473
|
sqlCompute?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
41124
41474
|
sqlRequests?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
41125
41475
|
sqlStorage?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
@@ -41328,6 +41678,7 @@ export declare enum DevConsoleResource {
|
|
|
41328
41678
|
LlmInput = "LLM_INPUT",
|
|
41329
41679
|
LlmOutput = "LLM_OUTPUT",
|
|
41330
41680
|
LogsWrite = "LOGS_WRITE",
|
|
41681
|
+
OsRequests = "OS_REQUESTS",
|
|
41331
41682
|
SqlCompute = "SQL_COMPUTE",
|
|
41332
41683
|
SqlRequests = "SQL_REQUESTS",
|
|
41333
41684
|
SqlStorage = "SQL_STORAGE"
|
|
@@ -41349,6 +41700,7 @@ export declare type DevConsoleResourceUsageData = {
|
|
|
41349
41700
|
llmInput?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
41350
41701
|
llmOutput?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
41351
41702
|
logsWrite?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
41703
|
+
osRequests?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
41352
41704
|
sqlCompute?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
41353
41705
|
sqlRequests?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
41354
41706
|
sqlStorage?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
@@ -45003,6 +45355,7 @@ export declare type ExternalMessage = Node & {
|
|
|
45003
45355
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
45004
45356
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
45005
45357
|
links?: Maybe<Array<Maybe<ExternalMessageLink>>>;
|
|
45358
|
+
messageType?: Maybe<Scalars['String']['output']>;
|
|
45006
45359
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
45007
45360
|
parent?: Maybe<ExternalEntity>;
|
|
45008
45361
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -51592,6 +51945,8 @@ export declare type GraphStore = {
|
|
|
51592
51945
|
atlasProjectLinksJiraSpaceInverse?: Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseConnection>;
|
|
51593
51946
|
atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
|
|
51594
51947
|
atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
|
|
51948
|
+
atlassianTeamMergedIntoAtlassianTeam?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection>;
|
|
51949
|
+
atlassianTeamMergedIntoAtlassianTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection>;
|
|
51595
51950
|
atlassianUserApprovesConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection>;
|
|
51596
51951
|
atlassianUserCreatedAtlassianGoalUpdate?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateConnection>;
|
|
51597
51952
|
atlassianUserCreatedAtlassianGoalUpdateInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseConnection>;
|
|
@@ -52479,6 +52834,7 @@ export declare type GraphStore = {
|
|
|
52479
52834
|
userMentionedInConversationInverse?: Maybe<GraphStoreSimplifiedUserMentionedInConversationInverseConnection>;
|
|
52480
52835
|
userMentionedInMessage?: Maybe<GraphStoreSimplifiedUserMentionedInMessageConnection>;
|
|
52481
52836
|
userMentionedInMessageInverse?: Maybe<GraphStoreSimplifiedUserMentionedInMessageInverseConnection>;
|
|
52837
|
+
userMentionedInThirdPartyDocumentInverse?: Maybe<GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseConnection>;
|
|
52482
52838
|
userMentionedInVideoComment?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentConnection>;
|
|
52483
52839
|
userMentionedInVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentInverseConnection>;
|
|
52484
52840
|
userOwnedBranch?: Maybe<GraphStoreSimplifiedUserOwnedBranchConnection>;
|
|
@@ -53146,6 +53502,22 @@ export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemInverseArgs = {
|
|
|
53146
53502
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53147
53503
|
sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
|
|
53148
53504
|
};
|
|
53505
|
+
export declare type GraphStoreAtlassianTeamMergedIntoAtlassianTeamArgs = {
|
|
53506
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53507
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53508
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53509
|
+
id: Scalars['ID']['input'];
|
|
53510
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53511
|
+
sort?: InputMaybe<GraphStoreAtlassianTeamMergedIntoAtlassianTeamSortInput>;
|
|
53512
|
+
};
|
|
53513
|
+
export declare type GraphStoreAtlassianTeamMergedIntoAtlassianTeamInverseArgs = {
|
|
53514
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53515
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53516
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53517
|
+
id: Scalars['ID']['input'];
|
|
53518
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53519
|
+
sort?: InputMaybe<GraphStoreAtlassianTeamMergedIntoAtlassianTeamSortInput>;
|
|
53520
|
+
};
|
|
53149
53521
|
export declare type GraphStoreAtlassianUserApprovesConfluenceApprovalInverseArgs = {
|
|
53150
53522
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
53151
53523
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -60000,6 +60372,14 @@ export declare type GraphStoreUserMentionedInMessageInverseArgs = {
|
|
|
60000
60372
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
60001
60373
|
sort?: InputMaybe<GraphStoreUserMentionedInMessageSortInput>;
|
|
60002
60374
|
};
|
|
60375
|
+
export declare type GraphStoreUserMentionedInThirdPartyDocumentInverseArgs = {
|
|
60376
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
60377
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60378
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60379
|
+
id: Scalars['ID']['input'];
|
|
60380
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
60381
|
+
sort?: InputMaybe<GraphStoreUserMentionedInThirdPartyDocumentSortInput>;
|
|
60382
|
+
};
|
|
60003
60383
|
export declare type GraphStoreUserMentionedInVideoCommentArgs = {
|
|
60004
60384
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
60005
60385
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -61586,6 +61966,9 @@ export declare type GraphStoreAtlasProjectLinksJiraSpaceSortInput = {
|
|
|
61586
61966
|
export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput = {
|
|
61587
61967
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61588
61968
|
};
|
|
61969
|
+
export declare type GraphStoreAtlassianTeamMergedIntoAtlassianTeamSortInput = {
|
|
61970
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61971
|
+
};
|
|
61589
61972
|
export declare type GraphStoreAtlassianUserApprovesConfluenceApprovalSortInput = {
|
|
61590
61973
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61591
61974
|
};
|
|
@@ -70552,6 +70935,34 @@ export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverse
|
|
|
70552
70935
|
};
|
|
70553
70936
|
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseUnion = TownsquareProject;
|
|
70554
70937
|
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemUnion = JiraIssue;
|
|
70938
|
+
export declare type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection = HasPageInfo & {
|
|
70939
|
+
__typename?: 'GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection';
|
|
70940
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge>>>;
|
|
70941
|
+
pageInfo: PageInfo;
|
|
70942
|
+
};
|
|
70943
|
+
export declare type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge = {
|
|
70944
|
+
__typename?: 'GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge';
|
|
70945
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70946
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70947
|
+
id: Scalars['ID']['output'];
|
|
70948
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70949
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamUnion>;
|
|
70950
|
+
};
|
|
70951
|
+
export declare type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection = HasPageInfo & {
|
|
70952
|
+
__typename?: 'GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection';
|
|
70953
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseEdge>>>;
|
|
70954
|
+
pageInfo: PageInfo;
|
|
70955
|
+
};
|
|
70956
|
+
export declare type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseEdge = {
|
|
70957
|
+
__typename?: 'GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseEdge';
|
|
70958
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70959
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70960
|
+
id: Scalars['ID']['output'];
|
|
70961
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70962
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseUnion>;
|
|
70963
|
+
};
|
|
70964
|
+
export declare type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseUnion = TeamV2;
|
|
70965
|
+
export declare type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamUnion = TeamV2;
|
|
70555
70966
|
export declare type GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection = HasPageInfo & {
|
|
70556
70967
|
__typename?: 'GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection';
|
|
70557
70968
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseEdge>>>;
|
|
@@ -74367,7 +74778,7 @@ export declare type GraphStoreSimplifiedInferredProjectLinksEntityEdge = {
|
|
|
74367
74778
|
lastUpdated: Scalars['DateTime']['output'];
|
|
74368
74779
|
node?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityUnion>;
|
|
74369
74780
|
};
|
|
74370
|
-
export declare type GraphStoreSimplifiedInferredProjectLinksEntityUnion = JiraIssue | JiraProject;
|
|
74781
|
+
export declare type GraphStoreSimplifiedInferredProjectLinksEntityUnion = ConfluencePage | JiraIssue | JiraProject;
|
|
74371
74782
|
export declare type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
|
|
74372
74783
|
__typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection';
|
|
74373
74784
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge>>>;
|
|
@@ -80274,6 +80685,20 @@ export declare type GraphStoreSimplifiedUserMentionedInMessageInverseEdge = {
|
|
|
80274
80685
|
};
|
|
80275
80686
|
export declare type GraphStoreSimplifiedUserMentionedInMessageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80276
80687
|
export declare type GraphStoreSimplifiedUserMentionedInMessageUnion = ExternalMessage;
|
|
80688
|
+
export declare type GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
80689
|
+
__typename?: 'GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseConnection';
|
|
80690
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseEdge>>>;
|
|
80691
|
+
pageInfo: PageInfo;
|
|
80692
|
+
};
|
|
80693
|
+
export declare type GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseEdge = {
|
|
80694
|
+
__typename?: 'GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseEdge';
|
|
80695
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80696
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80697
|
+
id: Scalars['ID']['output'];
|
|
80698
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80699
|
+
node?: Maybe<GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseUnion>;
|
|
80700
|
+
};
|
|
80701
|
+
export declare type GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseUnion = ThirdPartyUser;
|
|
80277
80702
|
export declare type GraphStoreSimplifiedUserMentionedInVideoCommentConnection = HasPageInfo & {
|
|
80278
80703
|
__typename?: 'GraphStoreSimplifiedUserMentionedInVideoCommentConnection';
|
|
80279
80704
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentEdge>>>;
|
|
@@ -83161,6 +83586,9 @@ export declare type GraphStoreUserMentionedInConversationSortInput = {
|
|
|
83161
83586
|
export declare type GraphStoreUserMentionedInMessageSortInput = {
|
|
83162
83587
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
83163
83588
|
};
|
|
83589
|
+
export declare type GraphStoreUserMentionedInThirdPartyDocumentSortInput = {
|
|
83590
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
83591
|
+
};
|
|
83164
83592
|
export declare type GraphStoreUserMentionedInVideoCommentSortInput = {
|
|
83165
83593
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
83166
83594
|
};
|
|
@@ -83422,6 +83850,8 @@ export declare type GraphStoreV2 = {
|
|
|
83422
83850
|
atlassianTeamLinksOpsgenieTeamInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamLinksOpsgenieTeamInverseConnection>;
|
|
83423
83851
|
atlassianTeamLinksSpaceEntity?: Maybe<GraphStoreV2SimplifiedAtlassianTeamLinksSpaceEntityConnection>;
|
|
83424
83852
|
atlassianTeamLinksSpaceEntityInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamLinksSpaceEntityInverseConnection>;
|
|
83853
|
+
atlassianTeamMergedIntoAtlassianTeam?: Maybe<GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection>;
|
|
83854
|
+
atlassianTeamMergedIntoAtlassianTeamInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection>;
|
|
83425
83855
|
atlassianTeamOwnsCompassComponent?: Maybe<GraphStoreV2SimplifiedAtlassianTeamOwnsCompassComponentConnection>;
|
|
83426
83856
|
atlassianTeamOwnsCompassComponentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamOwnsCompassComponentInverseConnection>;
|
|
83427
83857
|
atlassianTeamReceivedFocusAsk?: Maybe<GraphStoreV2SimplifiedAtlassianTeamReceivedFocusAskConnection>;
|
|
@@ -83887,6 +84317,7 @@ export declare type GraphStoreV2 = {
|
|
|
83887
84317
|
externalUserMentionedInExternalConversationInverse?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationInverseConnection>;
|
|
83888
84318
|
externalUserMentionedInExternalMessage?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageConnection>;
|
|
83889
84319
|
externalUserMentionedInExternalMessageInverse?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageInverseConnection>;
|
|
84320
|
+
externalUserMentionedInThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseConnection>;
|
|
83890
84321
|
externalUserOwnsExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventConnection>;
|
|
83891
84322
|
externalUserOwnsExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventInverseConnection>;
|
|
83892
84323
|
externalUserOwnsExternalCampaign?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCampaignConnection>;
|
|
@@ -84503,6 +84934,20 @@ export declare type GraphStoreV2AtlassianTeamLinksSpaceEntityInverseArgs = {
|
|
|
84503
84934
|
id: Scalars['ID']['input'];
|
|
84504
84935
|
sort?: InputMaybe<GraphStoreV2AtlassianTeamLinksSpaceEntitySortInput>;
|
|
84505
84936
|
};
|
|
84937
|
+
export declare type GraphStoreV2AtlassianTeamMergedIntoAtlassianTeamArgs = {
|
|
84938
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84939
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84940
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84941
|
+
id: Scalars['ID']['input'];
|
|
84942
|
+
sort?: InputMaybe<GraphStoreV2AtlassianTeamMergedIntoAtlassianTeamSortInput>;
|
|
84943
|
+
};
|
|
84944
|
+
export declare type GraphStoreV2AtlassianTeamMergedIntoAtlassianTeamInverseArgs = {
|
|
84945
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84946
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84947
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84948
|
+
id: Scalars['ID']['input'];
|
|
84949
|
+
sort?: InputMaybe<GraphStoreV2AtlassianTeamMergedIntoAtlassianTeamSortInput>;
|
|
84950
|
+
};
|
|
84506
84951
|
export declare type GraphStoreV2AtlassianTeamOwnsCompassComponentArgs = {
|
|
84507
84952
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84508
84953
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -87773,6 +88218,13 @@ export declare type GraphStoreV2ExternalUserMentionedInExternalMessageInverseArg
|
|
|
87773
88218
|
id: Scalars['ID']['input'];
|
|
87774
88219
|
sort?: InputMaybe<GraphStoreV2ExternalUserMentionedInExternalMessageSortInput>;
|
|
87775
88220
|
};
|
|
88221
|
+
export declare type GraphStoreV2ExternalUserMentionedInThirdPartyDocumentInverseArgs = {
|
|
88222
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88223
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88224
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88225
|
+
id: Scalars['ID']['input'];
|
|
88226
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserMentionedInThirdPartyDocumentSortInput>;
|
|
88227
|
+
};
|
|
87776
88228
|
export declare type GraphStoreV2ExternalUserOwnsExternalCalendarEventArgs = {
|
|
87777
88229
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87778
88230
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -89992,6 +90444,9 @@ export declare type GraphStoreV2AtlassianTeamLinksSpaceEntitySortInput = {
|
|
|
89992
90444
|
relationship_createdFromAutocreate?: InputMaybe<GraphStoreSortInput>;
|
|
89993
90445
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
89994
90446
|
};
|
|
90447
|
+
export declare type GraphStoreV2AtlassianTeamMergedIntoAtlassianTeamSortInput = {
|
|
90448
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
90449
|
+
};
|
|
89995
90450
|
export declare type GraphStoreV2AtlassianTeamOwnsCompassComponentSortInput = {
|
|
89996
90451
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89997
90452
|
};
|
|
@@ -91832,6 +92287,9 @@ export declare type GraphStoreV2ExternalUserMentionedInExternalConversationSortI
|
|
|
91832
92287
|
export declare type GraphStoreV2ExternalUserMentionedInExternalMessageSortInput = {
|
|
91833
92288
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
91834
92289
|
};
|
|
92290
|
+
export declare type GraphStoreV2ExternalUserMentionedInThirdPartyDocumentSortInput = {
|
|
92291
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
92292
|
+
};
|
|
91835
92293
|
export declare type GraphStoreV2ExternalUserOwnsExternalCalendarEventSortInput = {
|
|
91836
92294
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
91837
92295
|
};
|
|
@@ -94169,6 +94627,34 @@ export declare type GraphStoreV2SimplifiedAtlassianTeamLinksSpaceEntityInverseEd
|
|
|
94169
94627
|
};
|
|
94170
94628
|
export declare type GraphStoreV2SimplifiedAtlassianTeamLinksSpaceEntityInverseUnion = TeamV2;
|
|
94171
94629
|
export declare type GraphStoreV2SimplifiedAtlassianTeamLinksSpaceEntityUnion = ConfluenceSpace | JiraProject | LoomSpace;
|
|
94630
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection = HasPageInfo & {
|
|
94631
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection';
|
|
94632
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge>>>;
|
|
94633
|
+
pageInfo: PageInfo;
|
|
94634
|
+
};
|
|
94635
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge = {
|
|
94636
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge';
|
|
94637
|
+
createdAt: Scalars['DateTime']['output'];
|
|
94638
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
94639
|
+
id: Scalars['ID']['output'];
|
|
94640
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
94641
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamUnion>;
|
|
94642
|
+
};
|
|
94643
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection = HasPageInfo & {
|
|
94644
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection';
|
|
94645
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseEdge>>>;
|
|
94646
|
+
pageInfo: PageInfo;
|
|
94647
|
+
};
|
|
94648
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseEdge = {
|
|
94649
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseEdge';
|
|
94650
|
+
createdAt: Scalars['DateTime']['output'];
|
|
94651
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
94652
|
+
id: Scalars['ID']['output'];
|
|
94653
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
94654
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseUnion>;
|
|
94655
|
+
};
|
|
94656
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseUnion = TeamV2;
|
|
94657
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamUnion = TeamV2;
|
|
94172
94658
|
export declare type GraphStoreV2SimplifiedAtlassianTeamOwnsCompassComponentConnection = HasPageInfo & {
|
|
94173
94659
|
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamOwnsCompassComponentConnection';
|
|
94174
94660
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamOwnsCompassComponentEdge>>>;
|
|
@@ -100733,6 +101219,20 @@ export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalMessage
|
|
|
100733
101219
|
};
|
|
100734
101220
|
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
100735
101221
|
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageUnion = ExternalMessage;
|
|
101222
|
+
export declare type GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
101223
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseConnection';
|
|
101224
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseEdge>>>;
|
|
101225
|
+
pageInfo: PageInfo;
|
|
101226
|
+
};
|
|
101227
|
+
export declare type GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseEdge = {
|
|
101228
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseEdge';
|
|
101229
|
+
createdAt: Scalars['DateTime']['output'];
|
|
101230
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
101231
|
+
id: Scalars['ID']['output'];
|
|
101232
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
101233
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseUnion>;
|
|
101234
|
+
};
|
|
101235
|
+
export declare type GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseUnion = ThirdPartyUser;
|
|
100736
101236
|
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventConnection = HasPageInfo & {
|
|
100737
101237
|
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventConnection';
|
|
100738
101238
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventEdge>>>;
|
|
@@ -102500,7 +103000,7 @@ export declare type GraphStoreV2SimplifiedInferredProjectLinksEntityEdge = {
|
|
|
102500
103000
|
lastUpdated: Scalars['DateTime']['output'];
|
|
102501
103001
|
node?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityUnion>;
|
|
102502
103002
|
};
|
|
102503
|
-
export declare type GraphStoreV2SimplifiedInferredProjectLinksEntityUnion = JiraIssue | JiraProject;
|
|
103003
|
+
export declare type GraphStoreV2SimplifiedInferredProjectLinksEntityUnion = ConfluencePage | JiraIssue | JiraProject;
|
|
102504
103004
|
export declare type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
|
|
102505
103005
|
__typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection';
|
|
102506
103006
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge>>>;
|
|
@@ -105339,8 +105839,8 @@ export declare type GravityDeleteReactionPayload = Payload & {
|
|
|
105339
105839
|
};
|
|
105340
105840
|
export declare type GravityDeliverySettings = {
|
|
105341
105841
|
__typename?: 'GravityDeliverySettings';
|
|
105842
|
+
projectId: Scalars['ID']['output'];
|
|
105342
105843
|
tableLayoutConfig: Array<GravityTableLayoutConfig>;
|
|
105343
|
-
viewId: Scalars['ID']['output'];
|
|
105344
105844
|
visibleFields: Array<Scalars['String']['output']>;
|
|
105345
105845
|
};
|
|
105346
105846
|
export declare type GravityDeliverySettingsResult = GravityDeliverySettingsSuccess | QueryError;
|
|
@@ -105365,6 +105865,10 @@ export declare type GravityEntityReactions = {
|
|
|
105365
105865
|
entityAri: Scalars['ID']['output'];
|
|
105366
105866
|
reactions: Array<GravityReactionSummary>;
|
|
105367
105867
|
};
|
|
105868
|
+
export declare enum GravityFeedbackTarget {
|
|
105869
|
+
Cf = "CF",
|
|
105870
|
+
Gsac = "GSAC"
|
|
105871
|
+
}
|
|
105368
105872
|
export declare type GravityField = {
|
|
105369
105873
|
__typename?: 'GravityField';
|
|
105370
105874
|
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -105474,6 +105978,16 @@ export declare enum GravityImportSourceType {
|
|
|
105474
105978
|
Pdf = "PDF",
|
|
105475
105979
|
Text = "TEXT"
|
|
105476
105980
|
}
|
|
105981
|
+
export declare type GravityPostFeedbackInput = {
|
|
105982
|
+
message: Scalars['String']['input'];
|
|
105983
|
+
target: GravityFeedbackTarget;
|
|
105984
|
+
test?: InputMaybe<Scalars['Boolean']['input']>;
|
|
105985
|
+
};
|
|
105986
|
+
export declare type GravityPostFeedbackPayload = Payload & {
|
|
105987
|
+
__typename?: 'GravityPostFeedbackPayload';
|
|
105988
|
+
errors?: Maybe<Array<MutationError>>;
|
|
105989
|
+
success: Scalars['Boolean']['output'];
|
|
105990
|
+
};
|
|
105477
105991
|
export declare enum GravityReactionEntityType {
|
|
105478
105992
|
IssueComment = "ISSUE_COMMENT",
|
|
105479
105993
|
ViewComment = "VIEW_COMMENT"
|
|
@@ -105531,8 +106045,8 @@ export declare type GravityTableLayoutConfigInput = {
|
|
|
105531
106045
|
size: Scalars['Int']['input'];
|
|
105532
106046
|
};
|
|
105533
106047
|
export declare type GravityUpdateDeliverySettingsInput = {
|
|
106048
|
+
projectId: Scalars['ID']['input'];
|
|
105534
106049
|
tableLayoutConfig: Array<GravityTableLayoutConfigInput>;
|
|
105535
|
-
viewId: Scalars['ID']['input'];
|
|
105536
106050
|
visibleFields?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
105537
106051
|
};
|
|
105538
106052
|
export declare type GravityUpdateDeliverySettingsPayload = GravityUpdateDeliverySettingsSuccess | QueryError;
|
|
@@ -110183,7 +110697,7 @@ export declare type JiraAddAgentToBoardViewStatusColumnInput = {
|
|
|
110183
110697
|
columnId: Scalars['ID']['input'];
|
|
110184
110698
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
110185
110699
|
};
|
|
110186
|
-
export declare type JiraAddAgentToBoardViewStatusColumnPayload = {
|
|
110700
|
+
export declare type JiraAddAgentToBoardViewStatusColumnPayload = Payload & {
|
|
110187
110701
|
__typename?: 'JiraAddAgentToBoardViewStatusColumnPayload';
|
|
110188
110702
|
boardView?: Maybe<JiraBoardView>;
|
|
110189
110703
|
column?: Maybe<JiraBoardViewStatusColumn>;
|
|
@@ -110598,6 +111112,22 @@ export declare type JiraAiAgentSessionStatus = {
|
|
|
110598
111112
|
conversationId: Scalars['ID']['output'];
|
|
110599
111113
|
state: JiraAiAgentConversationState;
|
|
110600
111114
|
};
|
|
111115
|
+
export declare enum JiraAiContextPanel {
|
|
111116
|
+
None = "NONE",
|
|
111117
|
+
ResolutionPlan = "RESOLUTION_PLAN",
|
|
111118
|
+
Suggestions = "SUGGESTIONS"
|
|
111119
|
+
}
|
|
111120
|
+
export declare type JiraAiContextPanelDecision = {
|
|
111121
|
+
__typename?: 'JiraAiContextPanelDecision';
|
|
111122
|
+
defaultPanel?: Maybe<JiraAiContextPanel>;
|
|
111123
|
+
fallbackPanel?: Maybe<JiraAiContextPanel>;
|
|
111124
|
+
initialState?: Maybe<JiraAiContextPanelInitial>;
|
|
111125
|
+
};
|
|
111126
|
+
export declare enum JiraAiContextPanelInitial {
|
|
111127
|
+
Collapsed = "COLLAPSED",
|
|
111128
|
+
Expanded = "EXPANDED",
|
|
111129
|
+
Hidden = "HIDDEN"
|
|
111130
|
+
}
|
|
110601
111131
|
export declare type JiraAiEnablementIssueInput = {
|
|
110602
111132
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
110603
111133
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -112276,6 +112806,17 @@ export declare type JiraBaseCustomFieldDefaultContextOptionPositionInput = {
|
|
|
112276
112806
|
top?: InputMaybe<JiraTopCustomFieldDefaultContextOptionPositionInput>;
|
|
112277
112807
|
topChild?: InputMaybe<JiraTopChildCustomFieldDefaultContextOptionPositionInput>;
|
|
112278
112808
|
};
|
|
112809
|
+
export declare type JiraBaseNextActionsEntity = {
|
|
112810
|
+
contentType?: Maybe<JiraNextActionContentType>;
|
|
112811
|
+
dismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
112812
|
+
group?: Maybe<JiraNextActionGroup>;
|
|
112813
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
112814
|
+
interactionType?: Maybe<JiraNextActionInteractionType>;
|
|
112815
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
112816
|
+
queryError?: Maybe<QueryError>;
|
|
112817
|
+
rank?: Maybe<Scalars['Float']['output']>;
|
|
112818
|
+
rationale?: Maybe<Scalars['String']['output']>;
|
|
112819
|
+
};
|
|
112279
112820
|
export declare type JiraBaseTimelineView = {
|
|
112280
112821
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
112281
112822
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
@@ -112614,12 +113155,16 @@ export declare type JiraBoardViewCell = Node & {
|
|
|
112614
113155
|
__typename?: 'JiraBoardViewCell';
|
|
112615
113156
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
112616
113157
|
column?: Maybe<JiraBoardViewColumn>;
|
|
113158
|
+
contextFields?: Maybe<Array<JiraBoardViewCellContextField>>;
|
|
112617
113159
|
id: Scalars['ID']['output'];
|
|
112618
113160
|
issuePositions?: Maybe<Array<JiraBoardViewCellIssuePosition>>;
|
|
112619
113161
|
issues?: Maybe<JiraIssueConnection>;
|
|
112620
113162
|
swimlane?: Maybe<JiraBoardViewSwimlane>;
|
|
112621
113163
|
workflows?: Maybe<JiraBoardViewWorkflowConnection>;
|
|
112622
113164
|
};
|
|
113165
|
+
export declare type JiraBoardViewCellContextFieldsArgs = {
|
|
113166
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
113167
|
+
};
|
|
112623
113168
|
export declare type JiraBoardViewCellIssuePositionsArgs = {
|
|
112624
113169
|
issueIds: Array<Scalars['ID']['input']>;
|
|
112625
113170
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
@@ -112649,6 +113194,11 @@ export declare type JiraBoardViewCellContainerCellsArgs = {
|
|
|
112649
113194
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
112650
113195
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
112651
113196
|
};
|
|
113197
|
+
export declare type JiraBoardViewCellContextField = {
|
|
113198
|
+
__typename?: 'JiraBoardViewCellContextField';
|
|
113199
|
+
field?: Maybe<JiraField>;
|
|
113200
|
+
fieldValue?: Maybe<JiraJqlFieldValue>;
|
|
113201
|
+
};
|
|
112652
113202
|
export declare type JiraBoardViewCellEdge = {
|
|
112653
113203
|
__typename?: 'JiraBoardViewCellEdge';
|
|
112654
113204
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -116820,7 +117370,7 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
116820
117370
|
includedFieldCategories?: InputMaybe<Array<JiraFieldCategoryType>>;
|
|
116821
117371
|
includedFieldScopes?: InputMaybe<Array<JiraFieldScopeType>>;
|
|
116822
117372
|
includedFieldStatus?: InputMaybe<Array<JiraFieldStatusType>>;
|
|
116823
|
-
includedFieldTypeCategories?: InputMaybe<Array<
|
|
117373
|
+
includedFieldTypeCategories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
116824
117374
|
includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
|
|
116825
117375
|
orderBy?: InputMaybe<JiraFieldConfigOrderBy>;
|
|
116826
117376
|
orderDirection?: InputMaybe<JiraFieldConfigOrderDirection>;
|
|
@@ -117211,17 +117761,6 @@ export declare type JiraFieldTypeGroup = {
|
|
|
117211
117761
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
117212
117762
|
key?: Maybe<Scalars['String']['output']>;
|
|
117213
117763
|
};
|
|
117214
|
-
export declare enum JiraFieldTypeGroupCategory {
|
|
117215
|
-
DateFields = "DATE_FIELDS",
|
|
117216
|
-
ListsFields = "LISTS_FIELDS",
|
|
117217
|
-
NumberFields = "NUMBER_FIELDS",
|
|
117218
|
-
OtherFields = "OTHER_FIELDS",
|
|
117219
|
-
PeopleFields = "PEOPLE_FIELDS",
|
|
117220
|
-
RestrictedFields = "RESTRICTED_FIELDS",
|
|
117221
|
-
SystemAndAppFields = "SYSTEM_AND_APP_FIELDS",
|
|
117222
|
-
TextFields = "TEXT_FIELDS",
|
|
117223
|
-
WorkSortingFields = "WORK_SORTING_FIELDS"
|
|
117224
|
-
}
|
|
117225
117764
|
export declare type JiraFieldTypeGroupConnection = {
|
|
117226
117765
|
__typename?: 'JiraFieldTypeGroupConnection';
|
|
117227
117766
|
edges?: Maybe<Array<Maybe<JiraFieldTypeGroupEdge>>>;
|
|
@@ -117960,6 +118499,7 @@ export declare type JiraFormulaFieldConfiguredProjectConnection = {
|
|
|
117960
118499
|
hasGlobalContextConfigured?: Maybe<Scalars['Boolean']['output']>;
|
|
117961
118500
|
pageInfo: PageInfo;
|
|
117962
118501
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
118502
|
+
totalSpaceCount?: Maybe<Scalars['Long']['output']>;
|
|
117963
118503
|
};
|
|
117964
118504
|
export declare type JiraFormulaFieldConfiguredProjectEdge = {
|
|
117965
118505
|
__typename?: 'JiraFormulaFieldConfiguredProjectEdge';
|
|
@@ -118630,6 +119170,18 @@ export declare type JiraHydrateJqlInput = {
|
|
|
118630
119170
|
lastUsedJqlForIssueNavigator?: InputMaybe<JiraJqlScopeInput>;
|
|
118631
119171
|
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
118632
119172
|
};
|
|
119173
|
+
export declare type JiraImproveDescriptionSuggestion = JiraBaseNextActionsEntity & {
|
|
119174
|
+
__typename?: 'JiraImproveDescriptionSuggestion';
|
|
119175
|
+
contentType?: Maybe<JiraNextActionContentType>;
|
|
119176
|
+
dismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
119177
|
+
group?: Maybe<JiraNextActionGroup>;
|
|
119178
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
119179
|
+
interactionType?: Maybe<JiraNextActionInteractionType>;
|
|
119180
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
119181
|
+
queryError?: Maybe<QueryError>;
|
|
119182
|
+
rank?: Maybe<Scalars['Float']['output']>;
|
|
119183
|
+
rationale?: Maybe<Scalars['String']['output']>;
|
|
119184
|
+
};
|
|
118633
119185
|
export declare type JiraIncidentActivityActor = {
|
|
118634
119186
|
__typename?: 'JiraIncidentActivityActor';
|
|
118635
119187
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -118752,6 +119304,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
118752
119304
|
__typename?: 'JiraIssue';
|
|
118753
119305
|
agentSessions?: Maybe<JiraIssueAgentSessions>;
|
|
118754
119306
|
aiAgentSessions?: Maybe<JiraAiAgentSessionConnection>;
|
|
119307
|
+
aiContextPanelDecision?: Maybe<JiraAiContextPanelDecision>;
|
|
118755
119308
|
allActivities?: Maybe<JiraAllActivityFeedConnection>;
|
|
118756
119309
|
allAgentSessions?: Maybe<AgentSessionAssociationConnection>;
|
|
118757
119310
|
approvalActivities?: Maybe<JiraIssueApprovalsConnection>;
|
|
@@ -118887,6 +119440,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
118887
119440
|
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
118888
119441
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
118889
119442
|
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
119443
|
+
nextActionSuggestions?: Maybe<JiraIssueNextActionSuggestions>;
|
|
118890
119444
|
parentIssue?: Maybe<JiraIssue>;
|
|
118891
119445
|
parentIssueField?: Maybe<JiraParentIssueField>;
|
|
118892
119446
|
pinnedComments?: Maybe<JiraPinnedCommentsResponse>;
|
|
@@ -118907,6 +119461,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
118907
119461
|
searchViewContext?: Maybe<JiraIssueSearchViewContexts>;
|
|
118908
119462
|
securityLevelField?: Maybe<JiraSecurityLevelField>;
|
|
118909
119463
|
securityVulnerabilityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
119464
|
+
servicedeskPractices?: Maybe<JiraServiceManagementPractice>;
|
|
118910
119465
|
shouldShowPlaybooks?: Maybe<Scalars['Boolean']['output']>;
|
|
118911
119466
|
smartSummary?: Maybe<JiraAdf>;
|
|
118912
119467
|
startDateField?: Maybe<JiraDatePickerField>;
|
|
@@ -119661,6 +120216,30 @@ export declare type JiraIssueCreateRankInput = {
|
|
|
119661
120216
|
export declare type JiraIssueCreateValidationRule = {
|
|
119662
120217
|
fieldValidations?: InputMaybe<Array<JiraIssueCreateFieldValidationRule>>;
|
|
119663
120218
|
};
|
|
120219
|
+
export declare type JiraIssueCreatedProformaFormsField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
120220
|
+
__typename?: 'JiraIssueCreatedProformaFormsField';
|
|
120221
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
120222
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
120223
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
120224
|
+
fieldId: Scalars['String']['output'];
|
|
120225
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120226
|
+
forms?: Maybe<JiraProformaFormConnection>;
|
|
120227
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
120228
|
+
id: Scalars['ID']['output'];
|
|
120229
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
120230
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
120231
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
120232
|
+
issue?: Maybe<JiraIssue>;
|
|
120233
|
+
name: Scalars['String']['output'];
|
|
120234
|
+
type: Scalars['String']['output'];
|
|
120235
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
120236
|
+
};
|
|
120237
|
+
export declare type JiraIssueCreatedProformaFormsFieldFormsArgs = {
|
|
120238
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
120239
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
120240
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
120241
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
120242
|
+
};
|
|
119664
120243
|
export declare type JiraIssueCreatedStreamHubPayload = {
|
|
119665
120244
|
__typename?: 'JiraIssueCreatedStreamHubPayload';
|
|
119666
120245
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
@@ -120576,6 +121155,14 @@ export declare type JiraIssueNavigatorSearchLayoutMutationPayload = Payload & {
|
|
|
120576
121155
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
120577
121156
|
success: Scalars['Boolean']['output'];
|
|
120578
121157
|
};
|
|
121158
|
+
export declare type JiraIssueNextActionSuggestions = {
|
|
121159
|
+
__typename?: 'JiraIssueNextActionSuggestions';
|
|
121160
|
+
improveDescriptionSuggestions?: Maybe<JiraImproveDescriptionSuggestion>;
|
|
121161
|
+
relatedLinkSuggestions?: Maybe<JiraRelatedLinkSuggestions>;
|
|
121162
|
+
sdlcSuggestions?: Maybe<JiraSdlcSuggestions>;
|
|
121163
|
+
similarWorkItemSuggestions?: Maybe<JiraSimilarWorkItemSuggestions>;
|
|
121164
|
+
workBreakdownSuggestions?: Maybe<JiraWorkBreakdownSuggestions>;
|
|
121165
|
+
};
|
|
120579
121166
|
export declare type JiraIssueNoEnrichmentStreamHubPayload = {
|
|
120580
121167
|
__typename?: 'JiraIssueNoEnrichmentStreamHubPayload';
|
|
120581
121168
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
@@ -124699,6 +125286,19 @@ export declare type JiraNavigationUiStateUserPropertyRightPanelsArgs = {
|
|
|
124699
125286
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124700
125287
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
124701
125288
|
};
|
|
125289
|
+
export declare enum JiraNextActionContentType {
|
|
125290
|
+
NextStep = "NEXT_STEP",
|
|
125291
|
+
RecommendedAction = "RECOMMENDED_ACTION"
|
|
125292
|
+
}
|
|
125293
|
+
export declare enum JiraNextActionGroup {
|
|
125294
|
+
AiFeatures = "AI_FEATURES",
|
|
125295
|
+
LoomUpdates = "LOOM_UPDATES",
|
|
125296
|
+
Sdlc = "SDLC"
|
|
125297
|
+
}
|
|
125298
|
+
export declare enum JiraNextActionInteractionType {
|
|
125299
|
+
ActionNudge = "ACTION_NUDGE",
|
|
125300
|
+
Interactive = "INTERACTIVE"
|
|
125301
|
+
}
|
|
124702
125302
|
export declare enum JiraNotificationCategoryType {
|
|
124703
125303
|
CommentChanges = "COMMENT_CHANGES",
|
|
124704
125304
|
IssueAssigned = "ISSUE_ASSIGNED",
|
|
@@ -126261,6 +126861,20 @@ export declare enum JiraProductEnum {
|
|
|
126261
126861
|
JiraSoftware = "JIRA_SOFTWARE",
|
|
126262
126862
|
JiraWorkManagement = "JIRA_WORK_MANAGEMENT"
|
|
126263
126863
|
}
|
|
126864
|
+
export declare type JiraProformaForm = {
|
|
126865
|
+
__typename?: 'JiraProformaForm';
|
|
126866
|
+
id: Scalars['ID']['output'];
|
|
126867
|
+
};
|
|
126868
|
+
export declare type JiraProformaFormConnection = {
|
|
126869
|
+
__typename?: 'JiraProformaFormConnection';
|
|
126870
|
+
edges?: Maybe<Array<Maybe<JiraProformaFormEdge>>>;
|
|
126871
|
+
pageInfo: PageInfo;
|
|
126872
|
+
};
|
|
126873
|
+
export declare type JiraProformaFormEdge = {
|
|
126874
|
+
__typename?: 'JiraProformaFormEdge';
|
|
126875
|
+
cursor: Scalars['String']['output'];
|
|
126876
|
+
node?: Maybe<JiraProformaForm>;
|
|
126877
|
+
};
|
|
126264
126878
|
export declare type JiraProformaForms = {
|
|
126265
126879
|
__typename?: 'JiraProformaForms';
|
|
126266
126880
|
hasIssueForms?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -126520,16 +127134,12 @@ export declare type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
|
|
|
126520
127134
|
};
|
|
126521
127135
|
export declare type JiraProjectPolicyAssociationsArgs = {
|
|
126522
127136
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
126523
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
126524
127137
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126525
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
126526
127138
|
};
|
|
126527
127139
|
export declare type JiraProjectPolicyViolationsArgs = {
|
|
126528
127140
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
126529
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
126530
127141
|
filter?: InputMaybe<JiraProjectPolicyRuleViolationFilter>;
|
|
126531
127142
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126532
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
126533
127143
|
};
|
|
126534
127144
|
export declare type JiraProjectProjectFieldTypeGroupsArgs = {
|
|
126535
127145
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -127066,13 +127676,12 @@ export declare type JiraProjectPolicy = Node & {
|
|
|
127066
127676
|
eligibleProjects?: Maybe<JiraProjectConnection>;
|
|
127067
127677
|
id: Scalars['ID']['output'];
|
|
127068
127678
|
name?: Maybe<Scalars['String']['output']>;
|
|
127679
|
+
rules?: Maybe<JiraProjectPolicyRuleConnection>;
|
|
127069
127680
|
};
|
|
127070
127681
|
export declare type JiraProjectPolicyAssociatedProjectsArgs = {
|
|
127071
127682
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
127072
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
127073
127683
|
filter?: InputMaybe<JiraProjectPolicyProjectFilter>;
|
|
127074
127684
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127075
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
127076
127685
|
projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
127077
127686
|
};
|
|
127078
127687
|
export declare type JiraProjectPolicyEligibleProjectsArgs = {
|
|
@@ -127080,15 +127689,29 @@ export declare type JiraProjectPolicyEligibleProjectsArgs = {
|
|
|
127080
127689
|
filter?: InputMaybe<JiraEligibleProjectsFilter>;
|
|
127081
127690
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127082
127691
|
};
|
|
127692
|
+
export declare type JiraProjectPolicyRulesArgs = {
|
|
127693
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
127694
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127695
|
+
ruleTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
127696
|
+
};
|
|
127083
127697
|
export declare type JiraProjectPolicyAssociation = {
|
|
127084
127698
|
__typename?: 'JiraProjectPolicyAssociation';
|
|
127699
|
+
complianceState?: Maybe<JiraProjectPolicyComplianceState>;
|
|
127700
|
+
policy?: Maybe<JiraProjectPolicy>;
|
|
127085
127701
|
project?: Maybe<JiraProject>;
|
|
127702
|
+
ruleViolations?: Maybe<JiraProjectPolicyRuleViolationConnection>;
|
|
127703
|
+
};
|
|
127704
|
+
export declare type JiraProjectPolicyAssociationRuleViolationsArgs = {
|
|
127705
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
127706
|
+
filter?: InputMaybe<JiraProjectPolicyRuleViolationFilter>;
|
|
127707
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127086
127708
|
};
|
|
127087
|
-
export declare type JiraProjectPolicyAssociationConnection = HasPageInfo & {
|
|
127709
|
+
export declare type JiraProjectPolicyAssociationConnection = HasPageInfo & HasTotal & {
|
|
127088
127710
|
__typename?: 'JiraProjectPolicyAssociationConnection';
|
|
127089
127711
|
edges?: Maybe<Array<Maybe<JiraProjectPolicyAssociationEdge>>>;
|
|
127090
127712
|
nodes?: Maybe<Array<Maybe<JiraProjectPolicyAssociation>>>;
|
|
127091
127713
|
pageInfo: PageInfo;
|
|
127714
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
127092
127715
|
};
|
|
127093
127716
|
export declare type JiraProjectPolicyAssociationEdge = {
|
|
127094
127717
|
__typename?: 'JiraProjectPolicyAssociationEdge';
|
|
@@ -127112,8 +127735,31 @@ export declare type JiraProjectPolicyEdge = {
|
|
|
127112
127735
|
node?: Maybe<JiraProjectPolicy>;
|
|
127113
127736
|
};
|
|
127114
127737
|
export declare type JiraProjectPolicyProjectFilter = {
|
|
127115
|
-
complianceState?: InputMaybe<JiraProjectPolicyComplianceState>;
|
|
127116
127738
|
projectCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
127739
|
+
projectNameQuery?: InputMaybe<Scalars['String']['input']>;
|
|
127740
|
+
};
|
|
127741
|
+
export declare type JiraProjectPolicyRule = {
|
|
127742
|
+
__typename?: 'JiraProjectPolicyRule';
|
|
127743
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
127744
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
127745
|
+
id: Scalars['ID']['output'];
|
|
127746
|
+
ruleType?: Maybe<JiraProjectPolicyRuleType>;
|
|
127747
|
+
};
|
|
127748
|
+
export declare type JiraProjectPolicyRuleConnection = HasPageInfo & HasTotal & {
|
|
127749
|
+
__typename?: 'JiraProjectPolicyRuleConnection';
|
|
127750
|
+
edges?: Maybe<Array<Maybe<JiraProjectPolicyRuleEdge>>>;
|
|
127751
|
+
nodes?: Maybe<Array<Maybe<JiraProjectPolicyRule>>>;
|
|
127752
|
+
pageInfo: PageInfo;
|
|
127753
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
127754
|
+
};
|
|
127755
|
+
export declare type JiraProjectPolicyRuleEdge = {
|
|
127756
|
+
__typename?: 'JiraProjectPolicyRuleEdge';
|
|
127757
|
+
cursor: Scalars['String']['output'];
|
|
127758
|
+
node?: Maybe<JiraProjectPolicyRule>;
|
|
127759
|
+
};
|
|
127760
|
+
export declare type JiraProjectPolicyRuleType = {
|
|
127761
|
+
__typename?: 'JiraProjectPolicyRuleType';
|
|
127762
|
+
id: Scalars['ID']['output'];
|
|
127117
127763
|
};
|
|
127118
127764
|
export declare type JiraProjectPolicyRuleViolation = {
|
|
127119
127765
|
__typename?: 'JiraProjectPolicyRuleViolation';
|
|
@@ -127139,6 +127785,7 @@ export declare type JiraProjectPolicyRuleViolationEdge = {
|
|
|
127139
127785
|
};
|
|
127140
127786
|
export declare type JiraProjectPolicyRuleViolationFilter = {
|
|
127141
127787
|
domains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
127788
|
+
ruleTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
127142
127789
|
};
|
|
127143
127790
|
export declare type JiraProjectRecommendation = {
|
|
127144
127791
|
__typename?: 'JiraProjectRecommendation';
|
|
@@ -127484,7 +128131,8 @@ export declare enum JiraPullRequestState {
|
|
|
127484
128131
|
Declined = "DECLINED",
|
|
127485
128132
|
Draft = "DRAFT",
|
|
127486
128133
|
Merged = "MERGED",
|
|
127487
|
-
Open = "OPEN"
|
|
128134
|
+
Open = "OPEN",
|
|
128135
|
+
Queued = "QUEUED"
|
|
127488
128136
|
}
|
|
127489
128137
|
export declare type JiraQuery = {
|
|
127490
128138
|
__typename?: 'JiraQuery';
|
|
@@ -127550,6 +128198,7 @@ export declare type JiraQuery = {
|
|
|
127550
128198
|
forge: JiraForgeQuery;
|
|
127551
128199
|
formattingRulesByProject?: Maybe<JiraFormattingRuleConnection>;
|
|
127552
128200
|
formulaFieldAvailableReferenceFields?: Maybe<JiraFormulaFieldAvailableReferenceFieldConnection>;
|
|
128201
|
+
formulaFieldAvailableReferenceFieldsForScope?: Maybe<JiraFormulaFieldAvailableReferenceFieldConnection>;
|
|
127553
128202
|
formulaFieldConfiguredProjects?: Maybe<JiraFormulaFieldConfiguredProjectConnection>;
|
|
127554
128203
|
formulaFieldExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
127555
128204
|
formulaFieldPreview?: Maybe<JiraFormulaFieldPreview>;
|
|
@@ -127586,6 +128235,7 @@ export declare type JiraQuery = {
|
|
|
127586
128235
|
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
127587
128236
|
isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
127588
128237
|
isSubtasksEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
128238
|
+
isUserActiveInAnySpace?: Maybe<Scalars['Boolean']['output']>;
|
|
127589
128239
|
isVotingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
127590
128240
|
issue?: Maybe<JiraIssue>;
|
|
127591
128241
|
issueById?: Maybe<JiraIssue>;
|
|
@@ -127719,6 +128369,7 @@ export declare type JiraQuery = {
|
|
|
127719
128369
|
searchUserTeamMention?: Maybe<JiraMentionableConnection>;
|
|
127720
128370
|
searchViewContexts?: Maybe<JiraIssueSearchBulkViewContextsConnection>;
|
|
127721
128371
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
128372
|
+
spaceSearchForYou?: Maybe<JiraSpaceSearchForYouConnection>;
|
|
127722
128373
|
sprintById?: Maybe<JiraSprint>;
|
|
127723
128374
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
127724
128375
|
startDateField?: Maybe<JiraJqlField>;
|
|
@@ -128056,6 +128707,13 @@ export declare type JiraQueryFormulaFieldAvailableReferenceFieldsArgs = {
|
|
|
128056
128707
|
projectKey: Scalars['String']['input'];
|
|
128057
128708
|
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
128058
128709
|
};
|
|
128710
|
+
export declare type JiraQueryFormulaFieldAvailableReferenceFieldsForScopeArgs = {
|
|
128711
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
128712
|
+
cloudId: Scalars['ID']['input'];
|
|
128713
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
128714
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
128715
|
+
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
128716
|
+
};
|
|
128059
128717
|
export declare type JiraQueryFormulaFieldConfiguredProjectsArgs = {
|
|
128060
128718
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
128061
128719
|
cloudId: Scalars['ID']['input'];
|
|
@@ -128226,6 +128884,9 @@ export declare type JiraQueryIsRovoLlmEnabledArgs = {
|
|
|
128226
128884
|
export declare type JiraQueryIsSubtasksEnabledArgs = {
|
|
128227
128885
|
cloudId: Scalars['ID']['input'];
|
|
128228
128886
|
};
|
|
128887
|
+
export declare type JiraQueryIsUserActiveInAnySpaceArgs = {
|
|
128888
|
+
cloudId: Scalars['ID']['input'];
|
|
128889
|
+
};
|
|
128229
128890
|
export declare type JiraQueryIsVotingEnabledArgs = {
|
|
128230
128891
|
cloudId: Scalars['ID']['input'];
|
|
128231
128892
|
};
|
|
@@ -128711,10 +129372,8 @@ export declare type JiraQueryProjectListViewTemplatesArgs = {
|
|
|
128711
129372
|
};
|
|
128712
129373
|
export declare type JiraQueryProjectPoliciesArgs = {
|
|
128713
129374
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
128714
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
128715
129375
|
cloudId: Scalars['ID']['input'];
|
|
128716
129376
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
128717
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
128718
129377
|
};
|
|
128719
129378
|
export declare type JiraQueryProjectPolicyArgs = {
|
|
128720
129379
|
id: Scalars['ID']['input'];
|
|
@@ -128909,6 +129568,12 @@ export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
|
128909
129568
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
128910
129569
|
cloudId: Scalars['ID']['input'];
|
|
128911
129570
|
};
|
|
129571
|
+
export declare type JiraQuerySpaceSearchForYouArgs = {
|
|
129572
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
129573
|
+
cloudId: Scalars['ID']['input'];
|
|
129574
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129575
|
+
input?: InputMaybe<JiraSpaceSearchForYouInput>;
|
|
129576
|
+
};
|
|
128912
129577
|
export declare type JiraQuerySprintByIdArgs = {
|
|
128913
129578
|
id: Scalars['ID']['input'];
|
|
128914
129579
|
};
|
|
@@ -129174,6 +129839,47 @@ export declare type JiraRedactionSortInput = {
|
|
|
129174
129839
|
field: JiraRedactionSortField;
|
|
129175
129840
|
order?: SortDirection;
|
|
129176
129841
|
};
|
|
129842
|
+
export declare type JiraRelatedLinkSuggestionConnection = {
|
|
129843
|
+
__typename?: 'JiraRelatedLinkSuggestionConnection';
|
|
129844
|
+
edges?: Maybe<Array<Maybe<JiraRelatedLinkSuggestionEdge>>>;
|
|
129845
|
+
errors?: Maybe<Array<QueryError>>;
|
|
129846
|
+
pageInfo: PageInfo;
|
|
129847
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
129848
|
+
};
|
|
129849
|
+
export declare type JiraRelatedLinkSuggestionEdge = {
|
|
129850
|
+
__typename?: 'JiraRelatedLinkSuggestionEdge';
|
|
129851
|
+
cursor: Scalars['String']['output'];
|
|
129852
|
+
node?: Maybe<JiraRelatedLinkSuggestionItem>;
|
|
129853
|
+
};
|
|
129854
|
+
export declare type JiraRelatedLinkSuggestionItem = {
|
|
129855
|
+
__typename?: 'JiraRelatedLinkSuggestionItem';
|
|
129856
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
129857
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
129858
|
+
linkType?: Maybe<Scalars['String']['output']>;
|
|
129859
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
129860
|
+
productSource?: Maybe<Scalars['String']['output']>;
|
|
129861
|
+
sourceProductName?: Maybe<Scalars['String']['output']>;
|
|
129862
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
129863
|
+
};
|
|
129864
|
+
export declare type JiraRelatedLinkSuggestions = JiraBaseNextActionsEntity & {
|
|
129865
|
+
__typename?: 'JiraRelatedLinkSuggestions';
|
|
129866
|
+
contentType?: Maybe<JiraNextActionContentType>;
|
|
129867
|
+
dismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
129868
|
+
group?: Maybe<JiraNextActionGroup>;
|
|
129869
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
129870
|
+
interactionType?: Maybe<JiraNextActionInteractionType>;
|
|
129871
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
129872
|
+
items?: Maybe<JiraRelatedLinkSuggestionConnection>;
|
|
129873
|
+
queryError?: Maybe<QueryError>;
|
|
129874
|
+
rank?: Maybe<Scalars['Float']['output']>;
|
|
129875
|
+
rationale?: Maybe<Scalars['String']['output']>;
|
|
129876
|
+
};
|
|
129877
|
+
export declare type JiraRelatedLinkSuggestionsItemsArgs = {
|
|
129878
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
129879
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
129880
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129881
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
129882
|
+
};
|
|
129177
129883
|
export declare type JiraReleaseNotesConfiguration = {
|
|
129178
129884
|
__typename?: 'JiraReleaseNotesConfiguration';
|
|
129179
129885
|
issueFieldIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
@@ -129605,7 +130311,7 @@ export declare type JiraRemoveAgentFromBoardViewStatusColumnInput = {
|
|
|
129605
130311
|
columnId: Scalars['ID']['input'];
|
|
129606
130312
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
129607
130313
|
};
|
|
129608
|
-
export declare type JiraRemoveAgentFromBoardViewStatusColumnPayload = {
|
|
130314
|
+
export declare type JiraRemoveAgentFromBoardViewStatusColumnPayload = Payload & {
|
|
129609
130315
|
__typename?: 'JiraRemoveAgentFromBoardViewStatusColumnPayload';
|
|
129610
130316
|
boardView?: Maybe<JiraBoardView>;
|
|
129611
130317
|
column?: Maybe<JiraBoardViewStatusColumn>;
|
|
@@ -130270,6 +130976,20 @@ export declare type JiraRovoConversationMetadata = {
|
|
|
130270
130976
|
actionMessageId?: Maybe<Scalars['String']['output']>;
|
|
130271
130977
|
channelConversationId: Scalars['ID']['output'];
|
|
130272
130978
|
};
|
|
130979
|
+
export declare type JiraSdlcSuggestions = JiraBaseNextActionsEntity & {
|
|
130980
|
+
__typename?: 'JiraSDLCSuggestions';
|
|
130981
|
+
approvedPullRequests?: Maybe<JiraIssuePullRequests>;
|
|
130982
|
+
contentType?: Maybe<JiraNextActionContentType>;
|
|
130983
|
+
dismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
130984
|
+
group?: Maybe<JiraNextActionGroup>;
|
|
130985
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
130986
|
+
interactionType?: Maybe<JiraNextActionInteractionType>;
|
|
130987
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
130988
|
+
openPullRequests?: Maybe<JiraIssuePullRequests>;
|
|
130989
|
+
queryError?: Maybe<QueryError>;
|
|
130990
|
+
rank?: Maybe<Scalars['Float']['output']>;
|
|
130991
|
+
rationale?: Maybe<Scalars['String']['output']>;
|
|
130992
|
+
};
|
|
130273
130993
|
export declare type JiraScenario = Node & {
|
|
130274
130994
|
__typename?: 'JiraScenario';
|
|
130275
130995
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -132205,6 +132925,7 @@ export declare type JiraSetTimelineBarColorModePayload = Payload & {
|
|
|
132205
132925
|
__typename?: 'JiraSetTimelineBarColorModePayload';
|
|
132206
132926
|
errors?: Maybe<Array<MutationError>>;
|
|
132207
132927
|
success: Scalars['Boolean']['output'];
|
|
132928
|
+
view?: Maybe<JiraView>;
|
|
132208
132929
|
};
|
|
132209
132930
|
export declare type JiraSetTimelineHighlightedReleasesInput = {
|
|
132210
132931
|
highlightedReleases: Array<Scalars['ID']['input']>;
|
|
@@ -132253,6 +132974,7 @@ export declare type JiraSetTimelineViewHideReleasesPayload = Payload & {
|
|
|
132253
132974
|
__typename?: 'JiraSetTimelineViewHideReleasesPayload';
|
|
132254
132975
|
errors?: Maybe<Array<MutationError>>;
|
|
132255
132976
|
success: Scalars['Boolean']['output'];
|
|
132977
|
+
view?: Maybe<JiraView>;
|
|
132256
132978
|
};
|
|
132257
132979
|
export declare type JiraSetTimelineViewHideWarningsInput = {
|
|
132258
132980
|
hideWarnings: Scalars['Boolean']['input'];
|
|
@@ -132446,6 +133168,42 @@ export declare type JiraSimilarIssues = {
|
|
|
132446
133168
|
__typename?: 'JiraSimilarIssues';
|
|
132447
133169
|
featureEnabled: Scalars['Boolean']['output'];
|
|
132448
133170
|
};
|
|
133171
|
+
export declare type JiraSimilarWorkItemSuggestionConnection = {
|
|
133172
|
+
__typename?: 'JiraSimilarWorkItemSuggestionConnection';
|
|
133173
|
+
edges?: Maybe<Array<Maybe<JiraSimilarWorkItemSuggestionEdge>>>;
|
|
133174
|
+
errors?: Maybe<Array<QueryError>>;
|
|
133175
|
+
pageInfo: PageInfo;
|
|
133176
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133177
|
+
};
|
|
133178
|
+
export declare type JiraSimilarWorkItemSuggestionEdge = {
|
|
133179
|
+
__typename?: 'JiraSimilarWorkItemSuggestionEdge';
|
|
133180
|
+
cursor: Scalars['String']['output'];
|
|
133181
|
+
node?: Maybe<JiraSimilarWorkItemSuggestionItem>;
|
|
133182
|
+
};
|
|
133183
|
+
export declare type JiraSimilarWorkItemSuggestionItem = {
|
|
133184
|
+
__typename?: 'JiraSimilarWorkItemSuggestionItem';
|
|
133185
|
+
issue?: Maybe<JiraIssue>;
|
|
133186
|
+
similarityScore?: Maybe<Scalars['Float']['output']>;
|
|
133187
|
+
};
|
|
133188
|
+
export declare type JiraSimilarWorkItemSuggestions = JiraBaseNextActionsEntity & {
|
|
133189
|
+
__typename?: 'JiraSimilarWorkItemSuggestions';
|
|
133190
|
+
contentType?: Maybe<JiraNextActionContentType>;
|
|
133191
|
+
dismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
133192
|
+
group?: Maybe<JiraNextActionGroup>;
|
|
133193
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
133194
|
+
interactionType?: Maybe<JiraNextActionInteractionType>;
|
|
133195
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
133196
|
+
items?: Maybe<JiraSimilarWorkItemSuggestionConnection>;
|
|
133197
|
+
queryError?: Maybe<QueryError>;
|
|
133198
|
+
rank?: Maybe<Scalars['Float']['output']>;
|
|
133199
|
+
rationale?: Maybe<Scalars['String']['output']>;
|
|
133200
|
+
};
|
|
133201
|
+
export declare type JiraSimilarWorkItemSuggestionsItemsArgs = {
|
|
133202
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
133203
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
133204
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133205
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
133206
|
+
};
|
|
132449
133207
|
export declare type JiraSimpleNavigationItemType = JiraNavigationItemType & Node & {
|
|
132450
133208
|
__typename?: 'JiraSimpleNavigationItemType';
|
|
132451
133209
|
id: Scalars['ID']['output'];
|
|
@@ -132747,6 +133505,22 @@ export declare type JiraSoftwareProjectNavigationMetadata = {
|
|
|
132747
133505
|
isSimpleBoard: Scalars['Boolean']['output'];
|
|
132748
133506
|
totalBoardsInProject: Scalars['Long']['output'];
|
|
132749
133507
|
};
|
|
133508
|
+
export declare type JiraSpaceSearchForYouConnection = {
|
|
133509
|
+
__typename?: 'JiraSpaceSearchForYouConnection';
|
|
133510
|
+
edges?: Maybe<Array<Maybe<JiraSpaceSearchForYouEdge>>>;
|
|
133511
|
+
pageInfo: PageInfo;
|
|
133512
|
+
};
|
|
133513
|
+
export declare type JiraSpaceSearchForYouEdge = {
|
|
133514
|
+
__typename?: 'JiraSpaceSearchForYouEdge';
|
|
133515
|
+
cursor: Scalars['String']['output'];
|
|
133516
|
+
node?: Maybe<JiraProject>;
|
|
133517
|
+
projectId: Scalars['ID']['output'];
|
|
133518
|
+
};
|
|
133519
|
+
export declare type JiraSpaceSearchForYouInput = {
|
|
133520
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
133521
|
+
teamId?: InputMaybe<Scalars['ID']['input']>;
|
|
133522
|
+
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
133523
|
+
};
|
|
132750
133524
|
export declare type JiraSpreadsheetGroup = {
|
|
132751
133525
|
__typename?: 'JiraSpreadsheetGroup';
|
|
132752
133526
|
afterGroupId?: Maybe<Scalars['String']['output']>;
|
|
@@ -135833,6 +136607,42 @@ export declare type JiraWhiteboardResource = JiraConsolidatedResource & {
|
|
|
135833
136607
|
id: Scalars['ID']['output'];
|
|
135834
136608
|
integration?: Maybe<JiraResourceIntegration>;
|
|
135835
136609
|
};
|
|
136610
|
+
export declare type JiraWorkBreakdownSuggestionConnection = {
|
|
136611
|
+
__typename?: 'JiraWorkBreakdownSuggestionConnection';
|
|
136612
|
+
edges?: Maybe<Array<Maybe<JiraWorkBreakdownSuggestionEdge>>>;
|
|
136613
|
+
errors?: Maybe<Array<QueryError>>;
|
|
136614
|
+
pageInfo: PageInfo;
|
|
136615
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
136616
|
+
};
|
|
136617
|
+
export declare type JiraWorkBreakdownSuggestionEdge = {
|
|
136618
|
+
__typename?: 'JiraWorkBreakdownSuggestionEdge';
|
|
136619
|
+
cursor: Scalars['String']['output'];
|
|
136620
|
+
node?: Maybe<JiraWorkBreakdownSuggestionItem>;
|
|
136621
|
+
};
|
|
136622
|
+
export declare type JiraWorkBreakdownSuggestionItem = {
|
|
136623
|
+
__typename?: 'JiraWorkBreakdownSuggestionItem';
|
|
136624
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
136625
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
136626
|
+
};
|
|
136627
|
+
export declare type JiraWorkBreakdownSuggestions = JiraBaseNextActionsEntity & {
|
|
136628
|
+
__typename?: 'JiraWorkBreakdownSuggestions';
|
|
136629
|
+
contentType?: Maybe<JiraNextActionContentType>;
|
|
136630
|
+
dismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
136631
|
+
group?: Maybe<JiraNextActionGroup>;
|
|
136632
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
136633
|
+
interactionType?: Maybe<JiraNextActionInteractionType>;
|
|
136634
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
136635
|
+
items?: Maybe<JiraWorkBreakdownSuggestionConnection>;
|
|
136636
|
+
queryError?: Maybe<QueryError>;
|
|
136637
|
+
rank?: Maybe<Scalars['Float']['output']>;
|
|
136638
|
+
rationale?: Maybe<Scalars['String']['output']>;
|
|
136639
|
+
};
|
|
136640
|
+
export declare type JiraWorkBreakdownSuggestionsItemsArgs = {
|
|
136641
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
136642
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
136643
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
136644
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
136645
|
+
};
|
|
135836
136646
|
export declare type JiraWorkCategory = {
|
|
135837
136647
|
__typename?: 'JiraWorkCategory';
|
|
135838
136648
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -137171,7 +137981,9 @@ export declare type JsmChannelsEstablishConnectionInput = {
|
|
|
137171
137981
|
};
|
|
137172
137982
|
export declare type JsmChannelsEstablishConnectionPayload = Payload & {
|
|
137173
137983
|
__typename?: 'JsmChannelsEstablishConnectionPayload';
|
|
137984
|
+
containerId?: Maybe<Scalars['String']['output']>;
|
|
137174
137985
|
errors?: Maybe<Array<MutationError>>;
|
|
137986
|
+
redirectUrl?: Maybe<Scalars['String']['output']>;
|
|
137175
137987
|
serviceId?: Maybe<Scalars['String']['output']>;
|
|
137176
137988
|
success: Scalars['Boolean']['output'];
|
|
137177
137989
|
};
|
|
@@ -137370,6 +138182,10 @@ export declare type JsmChannelsResolutionPlanActionPayload = Payload & {
|
|
|
137370
138182
|
errors?: Maybe<Array<MutationError>>;
|
|
137371
138183
|
success: Scalars['Boolean']['output'];
|
|
137372
138184
|
};
|
|
138185
|
+
export declare enum JsmChannelsResolutionPlanAssigneeType {
|
|
138186
|
+
Human = "HUMAN",
|
|
138187
|
+
TaskAgent = "TASK_AGENT"
|
|
138188
|
+
}
|
|
137373
138189
|
export declare type JsmChannelsResolutionPlanGraph = {
|
|
137374
138190
|
__typename?: 'JsmChannelsResolutionPlanGraph';
|
|
137375
138191
|
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -137394,6 +138210,13 @@ export declare enum JsmChannelsResolutionPlanStepStatus {
|
|
|
137394
138210
|
Pending = "PENDING",
|
|
137395
138211
|
Waiting = "WAITING"
|
|
137396
138212
|
}
|
|
138213
|
+
export declare type JsmChannelsRovoServiceAgentConfig = {
|
|
138214
|
+
__typename?: 'JsmChannelsRovoServiceAgentConfig';
|
|
138215
|
+
isRovoServiceEnabled: Scalars['Boolean']['output'];
|
|
138216
|
+
requestTypesEnabled: Scalars['Int']['output'];
|
|
138217
|
+
taskAgentsEnabled: Scalars['Int']['output'];
|
|
138218
|
+
};
|
|
138219
|
+
export declare type JsmChannelsRovoServiceAgentConfigResult = JsmChannelsRovoServiceAgentConfig | QueryError;
|
|
137397
138220
|
export declare enum JsmChannelsRuleEvaluationStrategy {
|
|
137398
138221
|
JqlFirst = "JQL_FIRST",
|
|
137399
138222
|
JqlOnly = "JQL_ONLY",
|
|
@@ -137445,6 +138268,7 @@ export declare type JsmChannelsSetPreviewModePayload = Payload & {
|
|
|
137445
138268
|
};
|
|
137446
138269
|
export declare type JsmChannelsStepNode = JsmChannelsPlanNode & {
|
|
137447
138270
|
__typename?: 'JsmChannelsStepNode';
|
|
138271
|
+
assigneeType?: Maybe<JsmChannelsResolutionPlanAssigneeType>;
|
|
137448
138272
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
137449
138273
|
estimatedDurationSeconds?: Maybe<Scalars['Int']['output']>;
|
|
137450
138274
|
id: Scalars['ID']['output'];
|
|
@@ -138774,6 +139598,7 @@ export declare type KitsuneField = Node & {
|
|
|
138774
139598
|
id: Scalars['ID']['output'];
|
|
138775
139599
|
name: Scalars['String']['output'];
|
|
138776
139600
|
type: KitsuneFieldType;
|
|
139601
|
+
valueType?: Maybe<KitsuneFieldValueType>;
|
|
138777
139602
|
};
|
|
138778
139603
|
export declare type KitsuneFieldConnection = KitsuneConnection & {
|
|
138779
139604
|
__typename?: 'KitsuneFieldConnection';
|
|
@@ -138798,6 +139623,17 @@ export declare type KitsuneFieldValue = {
|
|
|
138798
139623
|
__typename?: 'KitsuneFieldValue';
|
|
138799
139624
|
_id: Scalars['ID']['output'];
|
|
138800
139625
|
};
|
|
139626
|
+
export declare enum KitsuneFieldValueType {
|
|
139627
|
+
Boolean = "BOOLEAN",
|
|
139628
|
+
Date = "DATE",
|
|
139629
|
+
Email = "EMAIL",
|
|
139630
|
+
Multiselect = "MULTISELECT",
|
|
139631
|
+
Number = "NUMBER",
|
|
139632
|
+
Phone = "PHONE",
|
|
139633
|
+
Select = "SELECT",
|
|
139634
|
+
Text = "TEXT",
|
|
139635
|
+
Url = "URL"
|
|
139636
|
+
}
|
|
138801
139637
|
export declare type KitsuneFilter = {
|
|
138802
139638
|
__typename?: 'KitsuneFilter';
|
|
138803
139639
|
comparisonOperator: KitsuneComparisonOperator;
|
|
@@ -138828,7 +139664,9 @@ export declare type KitsuneInsight = Node & {
|
|
|
138828
139664
|
createdAt: Scalars['DateTime']['output'];
|
|
138829
139665
|
creator?: Maybe<User>;
|
|
138830
139666
|
creatorId?: Maybe<Scalars['ID']['output']>;
|
|
139667
|
+
externalId?: Maybe<Scalars['ID']['output']>;
|
|
138831
139668
|
id: Scalars['ID']['output'];
|
|
139669
|
+
jiraIssue?: Maybe<JiraIssue>;
|
|
138832
139670
|
snippets: KitsuneSnippetConnection;
|
|
138833
139671
|
summary?: Maybe<KitsuneSummary>;
|
|
138834
139672
|
title: Scalars['String']['output'];
|
|
@@ -143915,6 +144753,15 @@ export declare enum MarketplaceStoreAcceptableResponse {
|
|
|
143915
144753
|
NotApplicable = "NOT_APPLICABLE",
|
|
143916
144754
|
True = "TRUE"
|
|
143917
144755
|
}
|
|
144756
|
+
export declare type MarketplaceStoreActiveApp = {
|
|
144757
|
+
__typename?: 'MarketplaceStoreActiveApp';
|
|
144758
|
+
appKey: Scalars['String']['output'];
|
|
144759
|
+
parentProducts: Array<MarketplaceStoreActiveParentProduct>;
|
|
144760
|
+
};
|
|
144761
|
+
export declare type MarketplaceStoreActiveParentProduct = {
|
|
144762
|
+
__typename?: 'MarketplaceStoreActiveParentProduct';
|
|
144763
|
+
parentProductKey: Scalars['String']['output'];
|
|
144764
|
+
};
|
|
143918
144765
|
export declare type MarketplaceStoreAlgoliaFilter = {
|
|
143919
144766
|
__typename?: 'MarketplaceStoreAlgoliaFilter';
|
|
143920
144767
|
key: Scalars['String']['output'];
|
|
@@ -145066,6 +145913,11 @@ export declare type MarketplaceStorePrivacyEnhancingTechniques = {
|
|
|
145066
145913
|
export declare type MarketplaceStoreProduct = {
|
|
145067
145914
|
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
145068
145915
|
};
|
|
145916
|
+
export declare type MarketplaceStoreProductDetailsByCloudIdResponse = {
|
|
145917
|
+
__typename?: 'MarketplaceStoreProductDetailsByCloudIdResponse';
|
|
145918
|
+
activeApps: Array<MarketplaceStoreActiveApp>;
|
|
145919
|
+
cloudId: Scalars['String']['output'];
|
|
145920
|
+
};
|
|
145069
145921
|
export declare type MarketplaceStoreProductListing = {
|
|
145070
145922
|
__typename?: 'MarketplaceStoreProductListing';
|
|
145071
145923
|
developerId: Scalars['ID']['output'];
|
|
@@ -145187,6 +146039,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
145187
146039
|
partnerByPartnerName?: Maybe<MarketplaceStoreSearchPartnerResponse>;
|
|
145188
146040
|
personalisedContextAndLayout: MarketplaceStorePersonalisedContextAndLayoutResponse;
|
|
145189
146041
|
privacyAndSecurity: MarketplaceStorePrivacyAndSecurityResponse;
|
|
146042
|
+
productDetailsByCloudId?: Maybe<MarketplaceStoreProductDetailsByCloudIdResponse>;
|
|
145190
146043
|
productTags?: Maybe<Array<Maybe<MarketplaceStoreProductTag>>>;
|
|
145191
146044
|
recommendationsSection?: Maybe<MarketplaceStoreRecommendationsSection>;
|
|
145192
146045
|
reviewSummary?: Maybe<MarketplaceStoreReviewSummaryResponse>;
|
|
@@ -145310,6 +146163,9 @@ export declare type MarketplaceStoreQueryApiPersonalisedContextAndLayoutArgs = {
|
|
|
145310
146163
|
export declare type MarketplaceStoreQueryApiPrivacyAndSecurityArgs = {
|
|
145311
146164
|
input: MarketplaceStorePrivacyAndSecurityRequestInput;
|
|
145312
146165
|
};
|
|
146166
|
+
export declare type MarketplaceStoreQueryApiProductDetailsByCloudIdArgs = {
|
|
146167
|
+
cloudId: Scalars['String']['input'];
|
|
146168
|
+
};
|
|
145313
146169
|
export declare type MarketplaceStoreQueryApiProductTagsArgs = {
|
|
145314
146170
|
tagType?: InputMaybe<MarketplaceStoreProductTagType>;
|
|
145315
146171
|
};
|
|
@@ -147014,6 +147870,7 @@ export declare type MercuryCreateViewInput = {
|
|
|
147014
147870
|
name: Scalars['String']['input'];
|
|
147015
147871
|
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
147016
147872
|
settings: MercuryViewSettingsInput;
|
|
147873
|
+
starred?: InputMaybe<Scalars['Boolean']['input']>;
|
|
147017
147874
|
};
|
|
147018
147875
|
export declare type MercuryCurrency = {
|
|
147019
147876
|
__typename?: 'MercuryCurrency';
|
|
@@ -150724,21 +151581,23 @@ export declare type MercuryProviderOrchestrationQueryApiSearchWorkByBenefitItemA
|
|
|
150724
151581
|
};
|
|
150725
151582
|
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByChangeProposalArgs = {
|
|
150726
151583
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
151584
|
+
applicationKey?: InputMaybe<Scalars['String']['input']>;
|
|
150727
151585
|
changeProposalId: Scalars['ID']['input'];
|
|
150728
151586
|
cloudId: Scalars['ID']['input'];
|
|
150729
151587
|
filter?: InputMaybe<MercuryProviderWorkSearchFilters>;
|
|
150730
151588
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
150731
|
-
providerKey
|
|
151589
|
+
providerKey?: InputMaybe<Scalars['String']['input']>;
|
|
150732
151590
|
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
150733
151591
|
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
150734
151592
|
};
|
|
150735
151593
|
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByFocusAreaArgs = {
|
|
150736
151594
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
151595
|
+
applicationKey?: InputMaybe<Scalars['String']['input']>;
|
|
150737
151596
|
cloudId: Scalars['ID']['input'];
|
|
150738
151597
|
filter?: InputMaybe<MercuryProviderWorkSearchFilters>;
|
|
150739
151598
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
150740
151599
|
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
150741
|
-
providerKey
|
|
151600
|
+
providerKey?: InputMaybe<Scalars['String']['input']>;
|
|
150742
151601
|
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
150743
151602
|
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
150744
151603
|
};
|
|
@@ -151172,7 +152031,6 @@ export declare type MercuryReorderStarredViewInput = {
|
|
|
151172
152031
|
export declare type MercuryReorderStarredViewPayload = Payload & {
|
|
151173
152032
|
__typename?: 'MercuryReorderStarredViewPayload';
|
|
151174
152033
|
errors?: Maybe<Array<MutationError>>;
|
|
151175
|
-
starredViews?: Maybe<Array<MercuryView>>;
|
|
151176
152034
|
success: Scalars['Boolean']['output'];
|
|
151177
152035
|
};
|
|
151178
152036
|
export declare type MercuryRequestFundsChange = MercuryChangeInterface & Node & {
|
|
@@ -151740,8 +152598,8 @@ export declare type MercuryStarViewInput = {
|
|
|
151740
152598
|
export declare type MercuryStarViewPayload = Payload & {
|
|
151741
152599
|
__typename?: 'MercuryStarViewPayload';
|
|
151742
152600
|
errors?: Maybe<Array<MutationError>>;
|
|
151743
|
-
starredItem?: Maybe<MercuryView>;
|
|
151744
152601
|
success: Scalars['Boolean']['output'];
|
|
152602
|
+
view?: Maybe<MercuryView>;
|
|
151745
152603
|
};
|
|
151746
152604
|
export declare enum MercuryStatusColor {
|
|
151747
152605
|
Blue = "BLUE",
|
|
@@ -152466,7 +153324,7 @@ export declare type MercuryUnstarViewPayload = Payload & {
|
|
|
152466
153324
|
__typename?: 'MercuryUnstarViewPayload';
|
|
152467
153325
|
errors?: Maybe<Array<MutationError>>;
|
|
152468
153326
|
success: Scalars['Boolean']['output'];
|
|
152469
|
-
|
|
153327
|
+
view?: Maybe<MercuryView>;
|
|
152470
153328
|
};
|
|
152471
153329
|
export declare type MercuryUpdateActiveCurrencyInput = {
|
|
152472
153330
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -153449,6 +154307,7 @@ export declare type Mutation = {
|
|
|
153449
154307
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
153450
154308
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
153451
154309
|
admin_activateUser?: Maybe<AdminActiveUserResponsePayload>;
|
|
154310
|
+
admin_addConnector?: Maybe<AdminAddConnectorPayload>;
|
|
153452
154311
|
admin_assignRole?: Maybe<AdminAssignRoleResponsePayload>;
|
|
153453
154312
|
admin_auditLogEventExport?: Maybe<AdminAuditLogEventExportResponsePayload>;
|
|
153454
154313
|
admin_cancelAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
@@ -153456,12 +154315,14 @@ export declare type Mutation = {
|
|
|
153456
154315
|
admin_createAiPolicy?: Maybe<AdminCreateAiPolicyResponsePayload>;
|
|
153457
154316
|
admin_createAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
153458
154317
|
admin_createInvitePolicy?: Maybe<AdminCreateInvitePolicyResponsePayload>;
|
|
154318
|
+
admin_createOutboundAuthService?: Maybe<AdminCreateOutboundAuthServicePayload>;
|
|
153459
154319
|
admin_deactivateUser?: Maybe<AdminDeactivateResponsePayload>;
|
|
153460
154320
|
admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
|
|
153461
154321
|
admin_deleteAiPolicy?: Maybe<AdminDeleteAiPolicyResponsePayload>;
|
|
153462
154322
|
admin_deleteInvitePolicy?: Maybe<AdminDeleteInvitePolicyResponsePayload>;
|
|
153463
154323
|
admin_impersonateUser?: Maybe<AdminImpersonationResponsePayload>;
|
|
153464
154324
|
admin_invite?: Maybe<AdminInviteResponsePayload>;
|
|
154325
|
+
admin_registerNewDataSourceId?: Maybe<AdminRegisterNewDataSourceIdPayload>;
|
|
153465
154326
|
admin_releaseImpersonationUser?: Maybe<AdminReleaseImpersonationResponsePayload>;
|
|
153466
154327
|
admin_removeUser?: Maybe<AdminRemoveUserResponsePayload>;
|
|
153467
154328
|
admin_revokeRole?: Maybe<AdminRevokeRoleResponsePayload>;
|
|
@@ -153513,7 +154374,9 @@ export declare type Mutation = {
|
|
|
153513
154374
|
agentWorkspace_archiveSkill?: Maybe<AgentWorkspaceArchiveSkillPayload>;
|
|
153514
154375
|
agentWorkspace_assignAgentToGap?: Maybe<AgentWorkspaceAssignAgentToGapPayload>;
|
|
153515
154376
|
agentWorkspace_assignAgentsToSkill?: Maybe<AgentWorkspaceAssignAgentsToSkillPayload>;
|
|
154377
|
+
agentWorkspace_cancelRoutingTableGeneration?: Maybe<AgentWorkspaceCancelRoutingTableGenerationPayload>;
|
|
153516
154378
|
agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
|
|
154379
|
+
agentWorkspace_createDraftedRoutingTable?: Maybe<AgentWorkspaceCreateDraftedRoutingTablePayload>;
|
|
153517
154380
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
153518
154381
|
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
153519
154382
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
@@ -153528,9 +154391,11 @@ export declare type Mutation = {
|
|
|
153528
154391
|
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
153529
154392
|
agentWorkspace_startBulkScheduleImportJob?: Maybe<AgentWorkspaceStartBulkImportPayload>;
|
|
153530
154393
|
agentWorkspace_startGenerateRoutingTable?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
|
|
154394
|
+
agentWorkspace_submitDraftedRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedRoutingTablePayload>;
|
|
153531
154395
|
agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
153532
154396
|
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
153533
154397
|
agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
154398
|
+
agentWorkspace_upsertDraftedRoutingTableEntry?: Maybe<AgentWorkspaceUpsertDraftedRoutingTableEntryPayload>;
|
|
153534
154399
|
aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
|
|
153535
154400
|
aiManagedObject_createAiManagedObject?: Maybe<AiManagedObject>;
|
|
153536
154401
|
aiManagedObject_createAiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
|
|
@@ -153611,17 +154476,17 @@ export declare type Mutation = {
|
|
|
153611
154476
|
assetsVertical_createDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
|
|
153612
154477
|
assetsVertical_createItemMappings?: Maybe<AssetsVerticalItemMappingsPayload>;
|
|
153613
154478
|
assetsVertical_createRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
|
|
153614
|
-
assetsVertical_createVerticalInstantiation
|
|
154479
|
+
assetsVertical_createVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
|
|
153615
154480
|
assetsVertical_createVerticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryPayload>;
|
|
153616
154481
|
assetsVertical_deleteAssetTypesTracking?: Maybe<AssetsVerticalAssetTypesTrackingPayload>;
|
|
153617
154482
|
assetsVertical_deleteDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
|
|
153618
154483
|
assetsVertical_deleteItemMapping?: Maybe<AssetsVerticalItemMappingPayload>;
|
|
153619
154484
|
assetsVertical_deleteRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
|
|
153620
154485
|
assetsVertical_generateInsights?: Maybe<AssetsVerticalGenerateInsightsPayload>;
|
|
153621
|
-
assetsVertical_instantiateBundleByType
|
|
154486
|
+
assetsVertical_instantiateBundleByType?: Maybe<AssetsVerticalAsyncTaskPayload>;
|
|
153622
154487
|
assetsVertical_updateDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
|
|
153623
154488
|
assetsVertical_updateRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
|
|
153624
|
-
assetsVertical_updateVerticalInstantiation
|
|
154489
|
+
assetsVertical_updateVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
|
|
153625
154490
|
assetsVertical_updateVerticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryPayload>;
|
|
153626
154491
|
assets_addExternalReferenceTypeAttributeValue?: Maybe<Array<Maybe<AssetsExternalReferenceTypeAttributeOnObject>>>;
|
|
153627
154492
|
assets_deleteExternalReferenceTypeAttributeValue?: Maybe<Array<Maybe<AssetsExternalReferenceTypeAttributeOnObject>>>;
|
|
@@ -153690,7 +154555,6 @@ export declare type Mutation = {
|
|
|
153690
154555
|
bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
|
|
153691
154556
|
bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
|
|
153692
154557
|
ccp?: Maybe<CcpMutationApi>;
|
|
153693
|
-
ccp_updateAllowancePoolAllocations?: Maybe<Array<Maybe<CcpAllowancePoolAllocationUpdateResult>>>;
|
|
153694
154558
|
champion?: Maybe<UnifiedChampionMutation>;
|
|
153695
154559
|
changeManagement_deleteLastRovoRiskAssessment: Scalars['Boolean']['output'];
|
|
153696
154560
|
changeManagement_recordLastRovoRiskAssessment: Scalars['Boolean']['output'];
|
|
@@ -153749,6 +154613,7 @@ export declare type Mutation = {
|
|
|
153749
154613
|
confluence_createSmartFolder?: Maybe<ConfluenceCreateSmartFolderPayload>;
|
|
153750
154614
|
confluence_createTopic?: Maybe<ConfluenceCreateTopicPayload>;
|
|
153751
154615
|
confluence_createWorkflowApplication?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
154616
|
+
confluence_createWorkflowApplicationWithReview?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
153752
154617
|
confluence_deleteAnswer?: Maybe<ConfluenceDeleteAnswerPayload>;
|
|
153753
154618
|
confluence_deleteCalendar?: Maybe<ConfluenceDeleteCalendarPayload>;
|
|
153754
154619
|
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
@@ -153808,6 +154673,7 @@ export declare type Mutation = {
|
|
|
153808
154673
|
confluence_sendToDesktop?: Maybe<ConfluenceDesktopSendPayload>;
|
|
153809
154674
|
confluence_setContentApprovalsSpaceSettings?: Maybe<ConfluenceContentApprovalsSpaceSettingsPayload>;
|
|
153810
154675
|
confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
|
|
154676
|
+
confluence_setRolesHubTransitionStep?: Maybe<ConfluenceSetRolesHubTransitionStepPayload>;
|
|
153811
154677
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
153812
154678
|
confluence_shareContent?: Maybe<ConfluenceShareContentPayload>;
|
|
153813
154679
|
confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
|
|
@@ -153963,6 +154829,7 @@ export declare type Mutation = {
|
|
|
153963
154829
|
csmAi_updateKnowledgeSource?: Maybe<CsmAiKnowledgeSourcePayload>;
|
|
153964
154830
|
csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
|
|
153965
154831
|
csm_updateLiveChatSettings?: Maybe<CustomerServiceLiveChatSettingsPayload>;
|
|
154832
|
+
csm_upsertEmailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigUpsertPayload>;
|
|
153966
154833
|
csm_upsertHelpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataUpsertPayload>;
|
|
153967
154834
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
153968
154835
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
@@ -154056,6 +154923,14 @@ export declare type Mutation = {
|
|
|
154056
154923
|
favouritePage?: Maybe<FavouritePagePayload>;
|
|
154057
154924
|
favouriteSpace?: Maybe<FavouriteSpacePayload>;
|
|
154058
154925
|
favouriteSpaceBulk?: Maybe<FavouriteSpaceBulkPayload>;
|
|
154926
|
+
focus_createView?: Maybe<MercuryUpsertViewPayload>;
|
|
154927
|
+
focus_deleteView?: Maybe<MercuryDeleteViewPayload>;
|
|
154928
|
+
focus_reorderStarredView?: Maybe<MercuryReorderStarredViewPayload>;
|
|
154929
|
+
focus_starView?: Maybe<MercuryStarViewPayload>;
|
|
154930
|
+
focus_unstarView?: Maybe<MercuryUnstarViewPayload>;
|
|
154931
|
+
focus_updateViewName?: Maybe<MercuryUpsertViewPayload>;
|
|
154932
|
+
focus_updateViewOwner?: Maybe<MercuryUpsertViewPayload>;
|
|
154933
|
+
focus_updateViewSettings?: Maybe<MercuryUpsertViewPayload>;
|
|
154059
154934
|
followUser?: Maybe<FollowUserPayload>;
|
|
154060
154935
|
generateAdminReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
154061
154936
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
@@ -154137,6 +155012,7 @@ export declare type Mutation = {
|
|
|
154137
155012
|
gravity_createViewFromUserPrompt?: Maybe<GravityCreateViewFromUserPromptPayload>;
|
|
154138
155013
|
gravity_deleteReaction?: Maybe<GravityDeleteReactionPayload>;
|
|
154139
155014
|
gravity_generateViewTemplateFromUserPrompt?: Maybe<GravityGenerateViewTemplateFromUserPromptPayload>;
|
|
155015
|
+
gravity_postFeedback?: Maybe<GravityPostFeedbackPayload>;
|
|
154140
155016
|
gravity_updateDeliverySettings?: Maybe<GravityUpdateDeliverySettingsPayload>;
|
|
154141
155017
|
growthUnifiedProfile_createEntitlementProfile?: Maybe<GrowthUnifiedProfileCreateEntitlementProfileResponse>;
|
|
154142
155018
|
growthUnifiedProfile_createOrgProfile?: Maybe<GrowthUnifiedProfileTwcCreateOrgProfileResponse>;
|
|
@@ -154321,6 +155197,7 @@ export declare type Mutation = {
|
|
|
154321
155197
|
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
154322
155198
|
kitsune_createCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
154323
155199
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
155200
|
+
kitsune_createField?: Maybe<KitsuneField>;
|
|
154324
155201
|
kitsune_createInsight?: Maybe<KitsuneInsight>;
|
|
154325
155202
|
kitsune_createOrganization?: Maybe<KitsuneOrganization>;
|
|
154326
155203
|
kitsune_createOrganizationField?: Maybe<KitsuneCustomerCustomField>;
|
|
@@ -154335,6 +155212,7 @@ export declare type Mutation = {
|
|
|
154335
155212
|
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
154336
155213
|
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
154337
155214
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
155215
|
+
kitsune_removeField?: Maybe<KitsuneDeletedRecord>;
|
|
154338
155216
|
kitsune_removeInsight?: Maybe<KitsuneDeletedRecord>;
|
|
154339
155217
|
kitsune_removeOrganization?: Maybe<KitsuneDeletedRecord>;
|
|
154340
155218
|
kitsune_removeSection?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -154345,6 +155223,7 @@ export declare type Mutation = {
|
|
|
154345
155223
|
kitsune_syncCustomerFields?: Maybe<KitsuneJob>;
|
|
154346
155224
|
kitsune_updateCustomer?: Maybe<KitsuneCustomer>;
|
|
154347
155225
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
155226
|
+
kitsune_updateField?: Maybe<KitsuneField>;
|
|
154348
155227
|
kitsune_updateInsight?: Maybe<KitsuneInsight>;
|
|
154349
155228
|
kitsune_updateOrganization?: Maybe<KitsuneOrganization>;
|
|
154350
155229
|
kitsune_updateSection?: Maybe<KitsuneSection>;
|
|
@@ -154370,21 +155249,13 @@ export declare type Mutation = {
|
|
|
154370
155249
|
mercury?: Maybe<MercuryMutationApi>;
|
|
154371
155250
|
mercury_businessDomains?: Maybe<MercuryBusinessDomainsMutationApi>;
|
|
154372
155251
|
mercury_comments?: Maybe<MercuryCommentMutationApi>;
|
|
154373
|
-
mercury_createView?: Maybe<MercuryUpsertViewPayload>;
|
|
154374
|
-
mercury_deleteView?: Maybe<MercuryDeleteViewPayload>;
|
|
154375
155252
|
mercury_funds?: Maybe<MercuryFundsMutationApi>;
|
|
154376
155253
|
mercury_insights?: Maybe<MercuryInsightsMutationApi>;
|
|
154377
155254
|
mercury_organizations?: Maybe<MercuryOrganizationsMutationApi>;
|
|
154378
155255
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
|
|
154379
|
-
mercury_reorderStarredView?: Maybe<MercuryReorderStarredViewPayload>;
|
|
154380
155256
|
mercury_risks?: Maybe<MercuryRisksMutationApi>;
|
|
154381
|
-
mercury_starView?: Maybe<MercuryStarViewPayload>;
|
|
154382
155257
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsMutationApi>;
|
|
154383
155258
|
mercury_tags?: Maybe<MercuryTagsMutationApi>;
|
|
154384
|
-
mercury_unstarView?: Maybe<MercuryUnstarViewPayload>;
|
|
154385
|
-
mercury_updateViewName?: Maybe<MercuryUpsertViewPayload>;
|
|
154386
|
-
mercury_updateViewOwner?: Maybe<MercuryUpsertViewPayload>;
|
|
154387
|
-
mercury_updateViewSettings?: Maybe<MercuryUpsertViewPayload>;
|
|
154388
155259
|
migrateSpaceShortcuts?: Maybe<MigrateSpaceShortcutsPayload>;
|
|
154389
155260
|
moveBlog?: Maybe<MoveBlogPayload>;
|
|
154390
155261
|
movePageAfter?: Maybe<MovePagePayload>;
|
|
@@ -154565,6 +155436,7 @@ export declare type Mutation = {
|
|
|
154565
155436
|
spf_createAsk?: Maybe<SpfUpsertAskPayload>;
|
|
154566
155437
|
spf_createAskComment?: Maybe<SpfUpsertAskCommentPayload>;
|
|
154567
155438
|
spf_createAskUpdate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
155439
|
+
spf_createAsks?: Maybe<SpfCreateAsksPayload>;
|
|
154568
155440
|
spf_createPlan?: Maybe<SpfUpsertPlanPayload>;
|
|
154569
155441
|
spf_createPlanPortfolioAllowedType?: Maybe<SpfUpsertPlanPortfolioAllowedTypePayload>;
|
|
154570
155442
|
spf_createPlanScenario?: Maybe<SpfUpsertPlanScenarioPayload>;
|
|
@@ -154741,6 +155613,7 @@ export declare type Mutation = {
|
|
|
154741
155613
|
updateUserPreferences?: Maybe<UserPreferences>;
|
|
154742
155614
|
upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
|
|
154743
155615
|
userAuthTokenForExtension?: Maybe<UserAuthTokenForExtensionResponse>;
|
|
155616
|
+
uts_updateAllowancePoolAllocations?: Maybe<Array<Maybe<UtsAllowancePoolAllocationUpdateResult>>>;
|
|
154744
155617
|
virtualAgent?: Maybe<VirtualAgentMutationApi>;
|
|
154745
155618
|
watchBlogs?: Maybe<WatchSpacePayload>;
|
|
154746
155619
|
watchContent?: Maybe<WatchContentPayload>;
|
|
@@ -154772,6 +155645,16 @@ export declare type MutationAddReactionArgs = {
|
|
|
154772
155645
|
export declare type MutationAdmin_ActivateUserArgs = {
|
|
154773
155646
|
input: AdminActivateUserInput;
|
|
154774
155647
|
};
|
|
155648
|
+
export declare type MutationAdmin_AddConnectorArgs = {
|
|
155649
|
+
connectorId: Scalars['ID']['input'];
|
|
155650
|
+
connectorName: Scalars['String']['input'];
|
|
155651
|
+
connectorSyncType?: InputMaybe<Scalars['String']['input']>;
|
|
155652
|
+
connectorType: Scalars['String']['input'];
|
|
155653
|
+
consentText: Scalars['String']['input'];
|
|
155654
|
+
orgId: Scalars['ID']['input'];
|
|
155655
|
+
properties: Array<AdminConnectorPropertyInput>;
|
|
155656
|
+
resourceId: Scalars['ID']['input'];
|
|
155657
|
+
};
|
|
154775
155658
|
export declare type MutationAdmin_AssignRoleArgs = {
|
|
154776
155659
|
assignRoleInput?: InputMaybe<AdminAssignRoleInput>;
|
|
154777
155660
|
directoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -154803,6 +155686,12 @@ export declare type MutationAdmin_CreateInvitePolicyArgs = {
|
|
|
154803
155686
|
createInvitePolicyInput?: InputMaybe<AdminCreateInvitePolicyInput>;
|
|
154804
155687
|
orgId: Scalars['ID']['input'];
|
|
154805
155688
|
};
|
|
155689
|
+
export declare type MutationAdmin_CreateOutboundAuthServiceArgs = {
|
|
155690
|
+
datasourceId: Scalars['ID']['input'];
|
|
155691
|
+
orgId: Scalars['ID']['input'];
|
|
155692
|
+
properties: Array<AdminConnectorPropertyInput>;
|
|
155693
|
+
resourceId: Scalars['ID']['input'];
|
|
155694
|
+
};
|
|
154806
155695
|
export declare type MutationAdmin_DeactivateUserArgs = {
|
|
154807
155696
|
input: AdminDeactivateUserInput;
|
|
154808
155697
|
};
|
|
@@ -154824,6 +155713,11 @@ export declare type MutationAdmin_InviteArgs = {
|
|
|
154824
155713
|
inviteInput: AdminInviteInput;
|
|
154825
155714
|
orgId: Scalars['ID']['input'];
|
|
154826
155715
|
};
|
|
155716
|
+
export declare type MutationAdmin_RegisterNewDataSourceIdArgs = {
|
|
155717
|
+
connectorType: Scalars['String']['input'];
|
|
155718
|
+
orgId: Scalars['ID']['input'];
|
|
155719
|
+
resourceId: Scalars['ID']['input'];
|
|
155720
|
+
};
|
|
154827
155721
|
export declare type MutationAdmin_ReleaseImpersonationUserArgs = {
|
|
154828
155722
|
input: AdminReleaseImpersonationUserInput;
|
|
154829
155723
|
};
|
|
@@ -155055,9 +155949,15 @@ export declare type MutationAgentWorkspace_AssignAgentToGapArgs = {
|
|
|
155055
155949
|
export declare type MutationAgentWorkspace_AssignAgentsToSkillArgs = {
|
|
155056
155950
|
input: AgentWorkspaceAssignAgentsToSkillInput;
|
|
155057
155951
|
};
|
|
155952
|
+
export declare type MutationAgentWorkspace_CancelRoutingTableGenerationArgs = {
|
|
155953
|
+
input: AgentWorkspaceCancelRoutingTableGenerationInput;
|
|
155954
|
+
};
|
|
155058
155955
|
export declare type MutationAgentWorkspace_CreateAndLinkTeamsFromGroupsArgs = {
|
|
155059
155956
|
input: AgentWorkspaceCreateAndLinkTeamsInput;
|
|
155060
155957
|
};
|
|
155958
|
+
export declare type MutationAgentWorkspace_CreateDraftedRoutingTableArgs = {
|
|
155959
|
+
input: AgentWorkspaceCreateDraftedRoutingTableInput;
|
|
155960
|
+
};
|
|
155061
155961
|
export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
155062
155962
|
input: AgentWorkspaceCreateScheduleInput;
|
|
155063
155963
|
};
|
|
@@ -155102,6 +156002,9 @@ export declare type MutationAgentWorkspace_StartBulkScheduleImportJobArgs = {
|
|
|
155102
156002
|
export declare type MutationAgentWorkspace_StartGenerateRoutingTableArgs = {
|
|
155103
156003
|
input: AgentWorkspaceStartGenerateRoutingTableInput;
|
|
155104
156004
|
};
|
|
156005
|
+
export declare type MutationAgentWorkspace_SubmitDraftedRoutingTableArgs = {
|
|
156006
|
+
input: AgentWorkspaceSubmitDraftedRoutingTableInput;
|
|
156007
|
+
};
|
|
155105
156008
|
export declare type MutationAgentWorkspace_UpdateRoutingConfigArgs = {
|
|
155106
156009
|
input: AgentWorkspaceUpdateRoutingConfigInput;
|
|
155107
156010
|
};
|
|
@@ -155111,6 +156014,9 @@ export declare type MutationAgentWorkspace_UpdateScheduleArgs = {
|
|
|
155111
156014
|
export declare type MutationAgentWorkspace_UpdateSmartRoutingConfigArgs = {
|
|
155112
156015
|
input: AgentWorkspaceUpdateSmartRoutingConfigInput;
|
|
155113
156016
|
};
|
|
156017
|
+
export declare type MutationAgentWorkspace_UpsertDraftedRoutingTableEntryArgs = {
|
|
156018
|
+
input: AgentWorkspaceUpsertDraftedRoutingTableEntryInput;
|
|
156019
|
+
};
|
|
155114
156020
|
export declare type MutationAiCoreApi_InitiateCsvExportArgs = {
|
|
155115
156021
|
input: AiCoreApiCsvExportInput;
|
|
155116
156022
|
};
|
|
@@ -155729,10 +156635,6 @@ export declare type MutationBulkUpdateMainSpaceSidebarLinksArgs = {
|
|
|
155729
156635
|
input: Array<InputMaybe<BulkUpdateMainSpaceSidebarLinksInput>>;
|
|
155730
156636
|
spaceKey: Scalars['String']['input'];
|
|
155731
156637
|
};
|
|
155732
|
-
export declare type MutationCcp_UpdateAllowancePoolAllocationsArgs = {
|
|
155733
|
-
allocations: Array<CcpAllowancePoolAllocationUpdateInput>;
|
|
155734
|
-
poolId: Scalars['ID']['input'];
|
|
155735
|
-
};
|
|
155736
156638
|
export declare type MutationChangeManagement_DeleteLastRovoRiskAssessmentArgs = {
|
|
155737
156639
|
cloudId: Scalars['ID']['input'];
|
|
155738
156640
|
issueId: Scalars['String']['input'];
|
|
@@ -155921,6 +156823,10 @@ export declare type MutationConfluence_CreateWorkflowApplicationArgs = {
|
|
|
155921
156823
|
cloudId: Scalars['ID']['input'];
|
|
155922
156824
|
createWorkflowApplicationRequestInput: ConfluenceCreateWorkflowApplicationRequestInput;
|
|
155923
156825
|
};
|
|
156826
|
+
export declare type MutationConfluence_CreateWorkflowApplicationWithReviewArgs = {
|
|
156827
|
+
cloudId: Scalars['ID']['input'];
|
|
156828
|
+
createWorkflowApplicationWithReviewRequestInput: ConfluenceCreateContentApprovalRequestInput;
|
|
156829
|
+
};
|
|
155924
156830
|
export declare type MutationConfluence_DeleteAnswerArgs = {
|
|
155925
156831
|
cloudId: Scalars['ID']['input'];
|
|
155926
156832
|
input: ConfluenceDeleteAnswerInput;
|
|
@@ -156161,6 +157067,11 @@ export declare type MutationConfluence_SetContentGeneralAccessModeArgs = {
|
|
|
156161
157067
|
cloudId: Scalars['ID']['input'];
|
|
156162
157068
|
input: ConfluenceSetContentGeneralAccessModeInput;
|
|
156163
157069
|
};
|
|
157070
|
+
export declare type MutationConfluence_SetRolesHubTransitionStepArgs = {
|
|
157071
|
+
cloudId: Scalars['ID']['input'];
|
|
157072
|
+
completed: Scalars['Boolean']['input'];
|
|
157073
|
+
step: ConfluenceRolesHubTransitionStep;
|
|
157074
|
+
};
|
|
156164
157075
|
export declare type MutationConfluence_SetSubCalendarReminderArgs = {
|
|
156165
157076
|
cloudId: Scalars['ID']['input'];
|
|
156166
157077
|
input: ConfluenceSetSubCalendarReminderInput;
|
|
@@ -156737,6 +157648,10 @@ export declare type MutationCsm_UpdateLiveChatSettingsArgs = {
|
|
|
156737
157648
|
cloudId: Scalars['ID']['input'];
|
|
156738
157649
|
input: CustomerServiceLiveChatSettingsInput;
|
|
156739
157650
|
};
|
|
157651
|
+
export declare type MutationCsm_UpsertEmailChannelConfigurationArgs = {
|
|
157652
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
157653
|
+
input: CustomerServiceEmailChannelConfigUpsertInput;
|
|
157654
|
+
};
|
|
156740
157655
|
export declare type MutationCsm_UpsertHelpCenterMetadataArgs = {
|
|
156741
157656
|
helpCenterAri: Scalars['ID']['input'];
|
|
156742
157657
|
input: CustomerServiceHelpCenterMetadataUpsertInput;
|
|
@@ -157040,6 +157955,30 @@ export declare type MutationFavouriteSpaceArgs = {
|
|
|
157040
157955
|
export declare type MutationFavouriteSpaceBulkArgs = {
|
|
157041
157956
|
spaceKeys: Array<InputMaybe<Scalars['String']['input']>>;
|
|
157042
157957
|
};
|
|
157958
|
+
export declare type MutationFocus_CreateViewArgs = {
|
|
157959
|
+
input: MercuryCreateViewInput;
|
|
157960
|
+
};
|
|
157961
|
+
export declare type MutationFocus_DeleteViewArgs = {
|
|
157962
|
+
input: MercuryDeleteViewInput;
|
|
157963
|
+
};
|
|
157964
|
+
export declare type MutationFocus_ReorderStarredViewArgs = {
|
|
157965
|
+
input: MercuryReorderStarredViewInput;
|
|
157966
|
+
};
|
|
157967
|
+
export declare type MutationFocus_StarViewArgs = {
|
|
157968
|
+
input: MercuryStarViewInput;
|
|
157969
|
+
};
|
|
157970
|
+
export declare type MutationFocus_UnstarViewArgs = {
|
|
157971
|
+
input: MercuryUnstarViewInput;
|
|
157972
|
+
};
|
|
157973
|
+
export declare type MutationFocus_UpdateViewNameArgs = {
|
|
157974
|
+
input: MercuryUpdateViewNameInput;
|
|
157975
|
+
};
|
|
157976
|
+
export declare type MutationFocus_UpdateViewOwnerArgs = {
|
|
157977
|
+
input: MercuryUpdateViewOwnerInput;
|
|
157978
|
+
};
|
|
157979
|
+
export declare type MutationFocus_UpdateViewSettingsArgs = {
|
|
157980
|
+
input: MercuryUpdateViewSettingsInput;
|
|
157981
|
+
};
|
|
157043
157982
|
export declare type MutationFollowUserArgs = {
|
|
157044
157983
|
followUserInput: FollowUserInput;
|
|
157045
157984
|
};
|
|
@@ -157281,6 +158220,10 @@ export declare type MutationGravity_GenerateViewTemplateFromUserPromptArgs = {
|
|
|
157281
158220
|
cloudId: Scalars['ID']['input'];
|
|
157282
158221
|
input: GravityGenerateViewTemplateFromUserPromptInput;
|
|
157283
158222
|
};
|
|
158223
|
+
export declare type MutationGravity_PostFeedbackArgs = {
|
|
158224
|
+
cloudId: Scalars['ID']['input'];
|
|
158225
|
+
input: GravityPostFeedbackInput;
|
|
158226
|
+
};
|
|
157284
158227
|
export declare type MutationGravity_UpdateDeliverySettingsArgs = {
|
|
157285
158228
|
cloudId: Scalars['ID']['input'];
|
|
157286
158229
|
input: GravityUpdateDeliverySettingsInput;
|
|
@@ -157874,8 +158817,15 @@ export declare type MutationKitsune_CreateFeedbackArgs = {
|
|
|
157874
158817
|
spaceAri: Scalars['ID']['input'];
|
|
157875
158818
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
157876
158819
|
};
|
|
158820
|
+
export declare type MutationKitsune_CreateFieldArgs = {
|
|
158821
|
+
entityTypes: Array<KitsuneEntityType>;
|
|
158822
|
+
name: Scalars['String']['input'];
|
|
158823
|
+
valueType?: InputMaybe<KitsuneFieldValueType>;
|
|
158824
|
+
workspaceAri: Scalars['ID']['input'];
|
|
158825
|
+
};
|
|
157877
158826
|
export declare type MutationKitsune_CreateInsightArgs = {
|
|
157878
158827
|
content: Scalars['KitsuneADF']['input'];
|
|
158828
|
+
externalId?: InputMaybe<Scalars['ID']['input']>;
|
|
157879
158829
|
snippets?: InputMaybe<Array<InputMaybe<KitsuneSnippetInput>>>;
|
|
157880
158830
|
spaceAri: Scalars['ID']['input'];
|
|
157881
158831
|
title: Scalars['String']['input'];
|
|
@@ -157940,6 +158890,9 @@ export declare type MutationKitsune_RemoveCustomerArgs = {
|
|
|
157940
158890
|
export declare type MutationKitsune_RemoveFeedbackArgs = {
|
|
157941
158891
|
feedbackAri: Scalars['ID']['input'];
|
|
157942
158892
|
};
|
|
158893
|
+
export declare type MutationKitsune_RemoveFieldArgs = {
|
|
158894
|
+
id: Scalars['ID']['input'];
|
|
158895
|
+
};
|
|
157943
158896
|
export declare type MutationKitsune_RemoveInsightArgs = {
|
|
157944
158897
|
id: Scalars['ID']['input'];
|
|
157945
158898
|
};
|
|
@@ -157978,8 +158931,15 @@ export declare type MutationKitsune_UpdateFeedbackArgs = {
|
|
|
157978
158931
|
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
157979
158932
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
157980
158933
|
};
|
|
158934
|
+
export declare type MutationKitsune_UpdateFieldArgs = {
|
|
158935
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
158936
|
+
entityTypes?: InputMaybe<Array<KitsuneEntityType>>;
|
|
158937
|
+
id: Scalars['ID']['input'];
|
|
158938
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
158939
|
+
};
|
|
157981
158940
|
export declare type MutationKitsune_UpdateInsightArgs = {
|
|
157982
158941
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
158942
|
+
externalId?: InputMaybe<Scalars['ID']['input']>;
|
|
157983
158943
|
id: Scalars['ID']['input'];
|
|
157984
158944
|
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
157985
158945
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -158065,30 +159025,6 @@ export declare type MutationMarkFeatureDiscoveredArgs = {
|
|
|
158065
159025
|
featureKey: Scalars['String']['input'];
|
|
158066
159026
|
pluginKey: Scalars['String']['input'];
|
|
158067
159027
|
};
|
|
158068
|
-
export declare type MutationMercury_CreateViewArgs = {
|
|
158069
|
-
input: MercuryCreateViewInput;
|
|
158070
|
-
};
|
|
158071
|
-
export declare type MutationMercury_DeleteViewArgs = {
|
|
158072
|
-
input: MercuryDeleteViewInput;
|
|
158073
|
-
};
|
|
158074
|
-
export declare type MutationMercury_ReorderStarredViewArgs = {
|
|
158075
|
-
input: MercuryReorderStarredViewInput;
|
|
158076
|
-
};
|
|
158077
|
-
export declare type MutationMercury_StarViewArgs = {
|
|
158078
|
-
input: MercuryStarViewInput;
|
|
158079
|
-
};
|
|
158080
|
-
export declare type MutationMercury_UnstarViewArgs = {
|
|
158081
|
-
input: MercuryUnstarViewInput;
|
|
158082
|
-
};
|
|
158083
|
-
export declare type MutationMercury_UpdateViewNameArgs = {
|
|
158084
|
-
input: MercuryUpdateViewNameInput;
|
|
158085
|
-
};
|
|
158086
|
-
export declare type MutationMercury_UpdateViewOwnerArgs = {
|
|
158087
|
-
input: MercuryUpdateViewOwnerInput;
|
|
158088
|
-
};
|
|
158089
|
-
export declare type MutationMercury_UpdateViewSettingsArgs = {
|
|
158090
|
-
input: MercuryUpdateViewSettingsInput;
|
|
158091
|
-
};
|
|
158092
159028
|
export declare type MutationMigrateSpaceShortcutsArgs = {
|
|
158093
159029
|
shortcutsList: Array<InputMaybe<GraphQlSpaceShortcutsInput>>;
|
|
158094
159030
|
spaceId: Scalars['ID']['input'];
|
|
@@ -158663,6 +159599,9 @@ export declare type MutationSpf_CreateAskCommentArgs = {
|
|
|
158663
159599
|
export declare type MutationSpf_CreateAskUpdateArgs = {
|
|
158664
159600
|
input: SpfCreateAskUpdateInput;
|
|
158665
159601
|
};
|
|
159602
|
+
export declare type MutationSpf_CreateAsksArgs = {
|
|
159603
|
+
input: SpfCreateAsksInput;
|
|
159604
|
+
};
|
|
158666
159605
|
export declare type MutationSpf_CreatePlanArgs = {
|
|
158667
159606
|
input: SpfCreatePlanInput;
|
|
158668
159607
|
};
|
|
@@ -159244,6 +160183,10 @@ export declare type MutationUpgradeAppArgs = {
|
|
|
159244
160183
|
export declare type MutationUserAuthTokenForExtensionArgs = {
|
|
159245
160184
|
input: UserAuthTokenForExtensionInput;
|
|
159246
160185
|
};
|
|
160186
|
+
export declare type MutationUts_UpdateAllowancePoolAllocationsArgs = {
|
|
160187
|
+
allocations: Array<UtsAllowancePoolAllocationUpdateInput>;
|
|
160188
|
+
poolId: Scalars['ID']['input'];
|
|
160189
|
+
};
|
|
159247
160190
|
export declare type MutationWatchBlogsArgs = {
|
|
159248
160191
|
watchSpaceInput: WatchSpaceInput;
|
|
159249
160192
|
};
|
|
@@ -162279,7 +163222,10 @@ export declare type Query = {
|
|
|
162279
163222
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
162280
163223
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
162281
163224
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
163225
|
+
admin_fetchConnectorFormData?: Maybe<AdminFormFieldConnection>;
|
|
163226
|
+
admin_fetchConnectorFormEntities?: Maybe<AdminFormFieldConnection>;
|
|
162282
163227
|
admin_generateAuditLogQueryPlan?: Maybe<AdminAuditLogBackgroundQueryPlanConnection>;
|
|
163228
|
+
admin_getAllDataSources?: Maybe<AdminConnectorConnection>;
|
|
162283
163229
|
admin_group?: Maybe<AdminGroup>;
|
|
162284
163230
|
admin_groupRoleAssignments?: Maybe<AdminGroupRoleAssignmentsConnection>;
|
|
162285
163231
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
@@ -162366,6 +163312,8 @@ export declare type Query = {
|
|
|
162366
163312
|
agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
|
|
162367
163313
|
agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
|
|
162368
163314
|
agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
|
|
163315
|
+
agentWorkspace_agentAvailability?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
163316
|
+
agentWorkspace_agentRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
|
|
162369
163317
|
agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
|
|
162370
163318
|
agentWorkspace_availabilityBypassingTeamLinkCheck?: Maybe<AgentWorkspaceAvailabilityResult>;
|
|
162371
163319
|
agentWorkspace_availableAgents?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
@@ -162376,11 +163324,14 @@ export declare type Query = {
|
|
|
162376
163324
|
agentWorkspace_categorySkillsInProject?: Maybe<AgentWorkspaceSkillConnection>;
|
|
162377
163325
|
agentWorkspace_clusterServiceCategories?: Maybe<AgentWorkspaceServiceClusteringResult>;
|
|
162378
163326
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
163327
|
+
agentWorkspace_draftedRoutingTable?: Maybe<AgentWorkspaceDraftedRoutingTable>;
|
|
162379
163328
|
agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
|
|
162380
163329
|
agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
162381
163330
|
agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
162382
163331
|
agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
|
|
162383
163332
|
agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
163333
|
+
agentWorkspace_routingSetupState?: Maybe<AgentWorkspaceRoutingSetupState>;
|
|
163334
|
+
agentWorkspace_routingTableEntries?: Maybe<AgentWorkspaceRoutingTableEntries>;
|
|
162384
163335
|
agentWorkspace_routingTableGenerationStatus?: Maybe<AgentWorkspaceRoutingTableGeneration>;
|
|
162385
163336
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
162386
163337
|
agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
|
|
@@ -162389,8 +163340,11 @@ export declare type Query = {
|
|
|
162389
163340
|
agentWorkspace_skillCategories?: Maybe<AgentWorkspaceSkillCategoryConnection>;
|
|
162390
163341
|
agentWorkspace_skillCategoriesInProject?: Maybe<AgentWorkspaceSkillCategoryConnection>;
|
|
162391
163342
|
agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
|
|
163343
|
+
agentWorkspace_skillsInCategory?: Maybe<AgentWorkspaceSkillConnection>;
|
|
162392
163344
|
agentWorkspace_smartRoutingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
162393
163345
|
agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
|
|
163346
|
+
agentWorkspace_teamRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
|
|
163347
|
+
agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
|
|
162394
163348
|
agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
|
|
162395
163349
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
162396
163350
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
@@ -162494,7 +163448,7 @@ export declare type Query = {
|
|
|
162494
163448
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
162495
163449
|
assetsVertical_assetTypesTracking?: Maybe<AssetsVerticalAssetTypesTrackingResult>;
|
|
162496
163450
|
assetsVertical_assetTypesTrackings?: Maybe<AssetsVerticalAssetTypesTrackingConnection>;
|
|
162497
|
-
assetsVertical_bundle
|
|
163451
|
+
assetsVertical_bundle?: Maybe<AssetsVerticalBundleResult>;
|
|
162498
163452
|
assetsVertical_configuredObjectTypes?: Maybe<AssetsVerticalObjectTypesResult>;
|
|
162499
163453
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
162500
163454
|
assetsVertical_depreciationRule?: Maybe<AssetsVerticalDepreciationRuleResult>;
|
|
@@ -162516,7 +163470,7 @@ export declare type Query = {
|
|
|
162516
163470
|
assetsVertical_verticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationResult>;
|
|
162517
163471
|
assetsVertical_verticalInstantiationCategories?: Maybe<AssetsVerticalVerticalInstantiationCategoryConnection>;
|
|
162518
163472
|
assetsVertical_verticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryResult>;
|
|
162519
|
-
assetsVertical_verticalInstantiations
|
|
163473
|
+
assetsVertical_verticalInstantiations?: Maybe<AssetsVerticalVerticalInstantiationConnection>;
|
|
162520
163474
|
assetsVertical_verticalRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentConnection>;
|
|
162521
163475
|
assetsVertical_verticalRoles?: Maybe<AssetsVerticalRolesResult>;
|
|
162522
163476
|
assetsVertical_verticalTemplate?: Maybe<AssetsVerticalVerticalTemplateResult>;
|
|
@@ -162658,7 +163612,6 @@ export declare type Query = {
|
|
|
162658
163612
|
commerceExp_fetch__CcpTransactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
162659
163613
|
commerceExp_fetch__PaymentMethod?: Maybe<CommerceExpPaymentMethod>;
|
|
162660
163614
|
commerceExp_intercom?: Maybe<CommerceExpIntercomQuery>;
|
|
162661
|
-
commerceExp_node?: Maybe<CommerceExpNode>;
|
|
162662
163615
|
commerceExp_pls?: Maybe<CommerceExpPlsQuery>;
|
|
162663
163616
|
commerceExp_poaQuery?: Maybe<CommerceExpPoaQuery>;
|
|
162664
163617
|
commerceExp_taas?: Maybe<CommerceExpTaasQuery>;
|
|
@@ -162699,6 +163652,7 @@ export declare type Query = {
|
|
|
162699
163652
|
confluence_contents?: Maybe<Array<Maybe<Content>>>;
|
|
162700
163653
|
confluence_contextualTitleEmoji?: Maybe<Scalars['String']['output']>;
|
|
162701
163654
|
confluence_csvExportDownloadLink?: Maybe<Scalars['String']['output']>;
|
|
163655
|
+
confluence_cutoverDate?: Maybe<ConfluenceCutoverDate>;
|
|
162702
163656
|
confluence_dataLifecycleManagementPolicy?: Maybe<ConfluenceDataLifecycleManagementPolicy>;
|
|
162703
163657
|
confluence_databaseTemplateInfosAll?: Maybe<ConfluenceDatabaseTemplateInfoConnection>;
|
|
162704
163658
|
confluence_deletedUserAccountIds?: Maybe<ConfluenceDeletedUser>;
|
|
@@ -162773,6 +163727,7 @@ export declare type Query = {
|
|
|
162773
163727
|
confluence_reactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
162774
163728
|
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
162775
163729
|
confluence_resolvedSpaceKeyForContent?: Maybe<Scalars['String']['output']>;
|
|
163730
|
+
confluence_rolesHubTransitionSteps?: Maybe<Array<Maybe<ConfluenceRolesHubTransitionStepState>>>;
|
|
162776
163731
|
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
162777
163732
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
162778
163733
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
@@ -162781,6 +163736,7 @@ export declare type Query = {
|
|
|
162781
163736
|
confluence_shareableLinkSiteConfig?: Maybe<ConfluenceShareableLinkSiteConfig>;
|
|
162782
163737
|
confluence_shareableLinkSpaceConfig?: Maybe<ConfluenceShareableLinkSpaceConfig>;
|
|
162783
163738
|
confluence_shareableLinkSpacesByCriteria?: Maybe<ConfluenceShareableLinkSpaceConnection>;
|
|
163739
|
+
confluence_shortcutSmartLinksBySpaceKey?: Maybe<ConfluenceShortcutSmartLinkConnection>;
|
|
162784
163740
|
confluence_slide?: Maybe<ConfluenceSlide>;
|
|
162785
163741
|
confluence_slides?: Maybe<Array<Maybe<ConfluenceSlide>>>;
|
|
162786
163742
|
confluence_smartSpaceOverview?: Maybe<ConfluenceSmartSpaceOverview>;
|
|
@@ -162886,6 +163842,7 @@ export declare type Query = {
|
|
|
162886
163842
|
csmAi_getWidgetsWithCsmAiHub?: Maybe<CsmAiHubWithWidgetsResult>;
|
|
162887
163843
|
csmCustomersByIds?: Maybe<Array<Maybe<CustomerServiceCsmCustomer>>>;
|
|
162888
163844
|
csmOrganizationsByIds?: Maybe<Array<Maybe<CustomerServiceCsmOrganization>>>;
|
|
163845
|
+
csm_emailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigQueryResult>;
|
|
162889
163846
|
csm_helpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataQueryResult>;
|
|
162890
163847
|
csm_liveChatAgent?: Maybe<CustomerServiceLiveChatAgentQueryResult>;
|
|
162891
163848
|
csm_liveChatSettings?: Maybe<CustomerServiceLiveChatSettingsQueryResult>;
|
|
@@ -162990,6 +163947,9 @@ export declare type Query = {
|
|
|
162990
163947
|
favoriteContent?: Maybe<PaginatedContentList>;
|
|
162991
163948
|
featureDiscovery?: Maybe<Array<Maybe<DiscoveredFeature>>>;
|
|
162992
163949
|
feed?: Maybe<PaginatedFeed>;
|
|
163950
|
+
focus_viewById?: Maybe<MercuryView>;
|
|
163951
|
+
focus_viewsByIds?: Maybe<Array<Maybe<MercuryView>>>;
|
|
163952
|
+
focus_viewsSearch?: Maybe<MercuryViewConnection>;
|
|
162993
163953
|
forYouFeed?: Maybe<ForYouPaginatedFeed>;
|
|
162994
163954
|
futureContentTypeMobileSupport?: Maybe<FutureContentTypeMobileSupport>;
|
|
162995
163955
|
getAIConfig?: Maybe<AiConfigResponse>;
|
|
@@ -163169,6 +164129,7 @@ export declare type Query = {
|
|
|
163169
164129
|
jsmChannels_getResolutionPlanGraph?: Maybe<JsmChannelsResolutionPlanGraphResult>;
|
|
163170
164130
|
jsmChannels_getServiceAgentResolutionStateByTicketId: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
163171
164131
|
jsmChannels_isPreviewModeEnabled?: Maybe<JsmChannelsPreviewModeResult>;
|
|
164132
|
+
jsmChannels_rovoServiceAgentConfigByProjectId?: Maybe<JsmChannelsRovoServiceAgentConfigResult>;
|
|
163172
164133
|
jsmChannels_taskAgents: JsmChannelsTaskAgentsResult;
|
|
163173
164134
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
163174
164135
|
jsmConversation_conversations?: Maybe<JsmConversationConnection>;
|
|
@@ -163279,9 +164240,6 @@ export declare type Query = {
|
|
|
163279
164240
|
mercury_risks?: Maybe<MercuryRisksQueryApi>;
|
|
163280
164241
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
|
|
163281
164242
|
mercury_tags?: Maybe<MercuryTagsQueryApi>;
|
|
163282
|
-
mercury_view?: Maybe<MercuryView>;
|
|
163283
|
-
mercury_views?: Maybe<Array<Maybe<MercuryView>>>;
|
|
163284
|
-
mercury_viewsSearch?: Maybe<MercuryViewConnection>;
|
|
163285
164243
|
migration: MigrationQuery;
|
|
163286
164244
|
migrationCatalogue: MigrationCatalogueQuery;
|
|
163287
164245
|
migrationMediaSession?: Maybe<ContentMediaSession>;
|
|
@@ -163730,6 +164688,26 @@ export declare type QueryAdmin_EffectiveRoleAssignmentsByPrincipalArgs = {
|
|
|
163730
164688
|
orgId: Scalars['ID']['input'];
|
|
163731
164689
|
principal: Scalars['ID']['input'];
|
|
163732
164690
|
};
|
|
164691
|
+
export declare type QueryAdmin_FetchConnectorFormDataArgs = {
|
|
164692
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
164693
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
164694
|
+
connectorId: Scalars['ID']['input'];
|
|
164695
|
+
connectorType: Scalars['String']['input'];
|
|
164696
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164697
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
164698
|
+
orgId: Scalars['ID']['input'];
|
|
164699
|
+
resourceId: Scalars['ID']['input'];
|
|
164700
|
+
};
|
|
164701
|
+
export declare type QueryAdmin_FetchConnectorFormEntitiesArgs = {
|
|
164702
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
164703
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
164704
|
+
datasourceId: Scalars['ID']['input'];
|
|
164705
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164706
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
164707
|
+
orgId: Scalars['ID']['input'];
|
|
164708
|
+
properties: Array<AdminConnectorPropertyInput>;
|
|
164709
|
+
resourceId: Scalars['ID']['input'];
|
|
164710
|
+
};
|
|
163733
164711
|
export declare type QueryAdmin_GenerateAuditLogQueryPlanArgs = {
|
|
163734
164712
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
163735
164713
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -163738,6 +164716,14 @@ export declare type QueryAdmin_GenerateAuditLogQueryPlanArgs = {
|
|
|
163738
164716
|
inputFilters: AdminAuditLogBackgroundQueryFilterInput;
|
|
163739
164717
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
163740
164718
|
};
|
|
164719
|
+
export declare type QueryAdmin_GetAllDataSourcesArgs = {
|
|
164720
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
164721
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
164722
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164723
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
164724
|
+
orgId: Scalars['ID']['input'];
|
|
164725
|
+
resourceId: Scalars['ID']['input'];
|
|
164726
|
+
};
|
|
163741
164727
|
export declare type QueryAdmin_GroupArgs = {
|
|
163742
164728
|
input?: InputMaybe<AdminFetchGroupInput>;
|
|
163743
164729
|
};
|
|
@@ -164220,6 +165206,12 @@ export declare type QueryAgentStudio_WidgetByContainerAriArgs = {
|
|
|
164220
165206
|
cloudId: Scalars['String']['input'];
|
|
164221
165207
|
containerAri: Scalars['ID']['input'];
|
|
164222
165208
|
};
|
|
165209
|
+
export declare type QueryAgentWorkspace_AgentAvailabilityArgs = {
|
|
165210
|
+
cloudId: Scalars['ID']['input'];
|
|
165211
|
+
};
|
|
165212
|
+
export declare type QueryAgentWorkspace_AgentRebalancingRecommendationsArgs = {
|
|
165213
|
+
input: AgentWorkspaceAgentRebalancingRecommendationsInput;
|
|
165214
|
+
};
|
|
164223
165215
|
export declare type QueryAgentWorkspace_AvailabilityArgs = {
|
|
164224
165216
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
164225
165217
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -164276,6 +165268,9 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
|
164276
165268
|
cloudId: Scalars['ID']['input'];
|
|
164277
165269
|
projectKey: Scalars['String']['input'];
|
|
164278
165270
|
};
|
|
165271
|
+
export declare type QueryAgentWorkspace_DraftedRoutingTableArgs = {
|
|
165272
|
+
projectAri: Scalars['ID']['input'];
|
|
165273
|
+
};
|
|
164279
165274
|
export declare type QueryAgentWorkspace_EligibleGroupsArgs = {
|
|
164280
165275
|
projectAri: Scalars['ID']['input'];
|
|
164281
165276
|
};
|
|
@@ -164295,6 +165290,12 @@ export declare type QueryAgentWorkspace_RoutingConfigArgs = {
|
|
|
164295
165290
|
cloudId: Scalars['ID']['input'];
|
|
164296
165291
|
projectKey: Scalars['String']['input'];
|
|
164297
165292
|
};
|
|
165293
|
+
export declare type QueryAgentWorkspace_RoutingSetupStateArgs = {
|
|
165294
|
+
projectAri: Scalars['ID']['input'];
|
|
165295
|
+
};
|
|
165296
|
+
export declare type QueryAgentWorkspace_RoutingTableEntriesArgs = {
|
|
165297
|
+
projectAri: Scalars['ID']['input'];
|
|
165298
|
+
};
|
|
164298
165299
|
export declare type QueryAgentWorkspace_RoutingTableGenerationStatusArgs = {
|
|
164299
165300
|
cloudId: Scalars['ID']['input'];
|
|
164300
165301
|
generationId: Scalars['ID']['input'];
|
|
@@ -164324,8 +165325,11 @@ export declare type QueryAgentWorkspace_ShiftsArgs = {
|
|
|
164324
165325
|
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
164325
165326
|
};
|
|
164326
165327
|
export declare type QueryAgentWorkspace_SkillCategoriesArgs = {
|
|
165328
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
165329
|
+
agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
164327
165330
|
categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
164328
165331
|
cloudId: Scalars['ID']['input'];
|
|
165332
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164329
165333
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
164330
165334
|
};
|
|
164331
165335
|
export declare type QueryAgentWorkspace_SkillCategoriesInProjectArgs = {
|
|
@@ -164333,7 +165337,6 @@ export declare type QueryAgentWorkspace_SkillCategoriesInProjectArgs = {
|
|
|
164333
165337
|
agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
164334
165338
|
categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
164335
165339
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164336
|
-
limitSkillsToFirstCategories?: InputMaybe<Scalars['Int']['input']>;
|
|
164337
165340
|
projectId: Scalars['ID']['input'];
|
|
164338
165341
|
skillsQuery?: InputMaybe<Scalars['String']['input']>;
|
|
164339
165342
|
teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -164342,6 +165345,14 @@ export declare type QueryAgentWorkspace_SkillsArgs = {
|
|
|
164342
165345
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
164343
165346
|
cloudId: Scalars['ID']['input'];
|
|
164344
165347
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165348
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
165349
|
+
};
|
|
165350
|
+
export declare type QueryAgentWorkspace_SkillsInCategoryArgs = {
|
|
165351
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
165352
|
+
categoryId: Scalars['ID']['input'];
|
|
165353
|
+
cloudId: Scalars['ID']['input'];
|
|
165354
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165355
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
164345
165356
|
};
|
|
164346
165357
|
export declare type QueryAgentWorkspace_SmartRoutingConfigArgs = {
|
|
164347
165358
|
projectAri: Scalars['ID']['input'];
|
|
@@ -164349,6 +165360,12 @@ export declare type QueryAgentWorkspace_SmartRoutingConfigArgs = {
|
|
|
164349
165360
|
export declare type QueryAgentWorkspace_TeamCapacitiesArgs = {
|
|
164350
165361
|
input: AgentWorkspaceTeamCapacitiesInput;
|
|
164351
165362
|
};
|
|
165363
|
+
export declare type QueryAgentWorkspace_TeamRebalancingRecommendationsArgs = {
|
|
165364
|
+
input: AgentWorkspaceTeamRebalancingRecommendationsInput;
|
|
165365
|
+
};
|
|
165366
|
+
export declare type QueryAgentWorkspace_TeamRebalancingSummariesArgs = {
|
|
165367
|
+
input: AgentWorkspaceTeamRebalancingSummariesInput;
|
|
165368
|
+
};
|
|
164352
165369
|
export declare type QueryAgentWorkspace_TeamSchedulesArgs = {
|
|
164353
165370
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
164354
165371
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -165551,9 +166568,6 @@ export declare type QueryCommerceExp_Fetch__PaymentMethodArgs = {
|
|
|
165551
166568
|
export declare type QueryCommerceExp_IntercomArgs = {
|
|
165552
166569
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
165553
166570
|
};
|
|
165554
|
-
export declare type QueryCommerceExp_NodeArgs = {
|
|
165555
|
-
id: Scalars['ID']['input'];
|
|
165556
|
-
};
|
|
165557
166571
|
export declare type QueryCommerceExp_PlsArgs = {
|
|
165558
166572
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
165559
166573
|
};
|
|
@@ -165750,6 +166764,9 @@ export declare type QueryConfluence_CsvExportDownloadLinkArgs = {
|
|
|
165750
166764
|
cloudId: Scalars['ID']['input'];
|
|
165751
166765
|
taskId: Scalars['String']['input'];
|
|
165752
166766
|
};
|
|
166767
|
+
export declare type QueryConfluence_CutoverDateArgs = {
|
|
166768
|
+
cloudId: Scalars['ID']['input'];
|
|
166769
|
+
};
|
|
165753
166770
|
export declare type QueryConfluence_DataLifecycleManagementPolicyArgs = {
|
|
165754
166771
|
cloudId: Scalars['ID']['input'];
|
|
165755
166772
|
};
|
|
@@ -166091,6 +167108,9 @@ export declare type QueryConfluence_ResolvedSpaceKeyForContentArgs = {
|
|
|
166091
167108
|
cloudId: Scalars['ID']['input'];
|
|
166092
167109
|
id: Scalars['ID']['input'];
|
|
166093
167110
|
};
|
|
167111
|
+
export declare type QueryConfluence_RolesHubTransitionStepsArgs = {
|
|
167112
|
+
cloudId: Scalars['ID']['input'];
|
|
167113
|
+
};
|
|
166094
167114
|
export declare type QueryConfluence_SearchArgs = {
|
|
166095
167115
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
166096
167116
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -166141,6 +167161,12 @@ export declare type QueryConfluence_ShareableLinkSpacesByCriteriaArgs = {
|
|
|
166141
167161
|
spaceNamePattern?: InputMaybe<Scalars['String']['input']>;
|
|
166142
167162
|
status?: InputMaybe<Array<InputMaybe<ConfluenceShareableLinkSpaceStatusFilter>>>;
|
|
166143
167163
|
};
|
|
167164
|
+
export declare type QueryConfluence_ShortcutSmartLinksBySpaceKeyArgs = {
|
|
167165
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
167166
|
+
cloudId: Scalars['ID']['input'];
|
|
167167
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
167168
|
+
spaceKey: Scalars['String']['input'];
|
|
167169
|
+
};
|
|
166144
167170
|
export declare type QueryConfluence_SlideArgs = {
|
|
166145
167171
|
id: Scalars['ID']['input'];
|
|
166146
167172
|
};
|
|
@@ -166691,6 +167717,9 @@ export declare type QueryCsmCustomersByIdsArgs = {
|
|
|
166691
167717
|
export declare type QueryCsmOrganizationsByIdsArgs = {
|
|
166692
167718
|
csmOrganizationAris: Array<Scalars['ID']['input']>;
|
|
166693
167719
|
};
|
|
167720
|
+
export declare type QueryCsm_EmailChannelConfigurationArgs = {
|
|
167721
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
167722
|
+
};
|
|
166694
167723
|
export declare type QueryCsm_HelpCenterMetadataArgs = {
|
|
166695
167724
|
helpCenterAri: Scalars['ID']['input'];
|
|
166696
167725
|
};
|
|
@@ -167112,6 +168141,18 @@ export declare type QueryFeedArgs = {
|
|
|
167112
168141
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
167113
168142
|
sortBy?: InputMaybe<Scalars['String']['input']>;
|
|
167114
168143
|
};
|
|
168144
|
+
export declare type QueryFocus_ViewByIdArgs = {
|
|
168145
|
+
id: Scalars['ID']['input'];
|
|
168146
|
+
};
|
|
168147
|
+
export declare type QueryFocus_ViewsByIdsArgs = {
|
|
168148
|
+
ids: Array<Scalars['ID']['input']>;
|
|
168149
|
+
};
|
|
168150
|
+
export declare type QueryFocus_ViewsSearchArgs = {
|
|
168151
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
168152
|
+
cloudId: Scalars['ID']['input'];
|
|
168153
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
168154
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
168155
|
+
};
|
|
167115
168156
|
export declare type QueryForYouFeedArgs = {
|
|
167116
168157
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
167117
168158
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -167330,7 +168371,7 @@ export declare type QueryGraphIntegration_TwgPlatformCapabilityGlobalAdminSettin
|
|
|
167330
168371
|
};
|
|
167331
168372
|
export declare type QueryGravity_DeliverySettingsArgs = {
|
|
167332
168373
|
cloudId: Scalars['ID']['input'];
|
|
167333
|
-
|
|
168374
|
+
projectId: Scalars['ID']['input'];
|
|
167334
168375
|
};
|
|
167335
168376
|
export declare type QueryGravity_DetailedReactionArgs = {
|
|
167336
168377
|
cloudId: Scalars['ID']['input'];
|
|
@@ -167795,6 +168836,10 @@ export declare type QueryJsmChannels_IsPreviewModeEnabledArgs = {
|
|
|
167795
168836
|
experience: JsmChannelsExperience;
|
|
167796
168837
|
jiraProjectAri: Scalars['ID']['input'];
|
|
167797
168838
|
};
|
|
168839
|
+
export declare type QueryJsmChannels_RovoServiceAgentConfigByProjectIdArgs = {
|
|
168840
|
+
experience: JsmChannelsExperience;
|
|
168841
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
168842
|
+
};
|
|
167798
168843
|
export declare type QueryJsmChannels_TaskAgentsArgs = {
|
|
167799
168844
|
experience: JsmChannelsExperience;
|
|
167800
168845
|
jiraProjectAri: Scalars['ID']['input'];
|
|
@@ -168145,18 +169190,6 @@ export declare type QueryMedia_ItemsByDescriptorArgs = {
|
|
|
168145
169190
|
cloudId: Scalars['String']['input'];
|
|
168146
169191
|
input: MediaItemsInput;
|
|
168147
169192
|
};
|
|
168148
|
-
export declare type QueryMercury_ViewArgs = {
|
|
168149
|
-
id: Scalars['ID']['input'];
|
|
168150
|
-
};
|
|
168151
|
-
export declare type QueryMercury_ViewsArgs = {
|
|
168152
|
-
ids: Array<Scalars['ID']['input']>;
|
|
168153
|
-
};
|
|
168154
|
-
export declare type QueryMercury_ViewsSearchArgs = {
|
|
168155
|
-
after?: InputMaybe<Scalars['String']['input']>;
|
|
168156
|
-
cloudId: Scalars['ID']['input'];
|
|
168157
|
-
first?: InputMaybe<Scalars['Int']['input']>;
|
|
168158
|
-
q?: InputMaybe<Scalars['String']['input']>;
|
|
168159
|
-
};
|
|
168160
169193
|
export declare type QueryMyMarketplaceAppsArgs = {
|
|
168161
169194
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
168162
169195
|
filter?: InputMaybe<MarketplaceAppsFilter>;
|
|
@@ -171920,6 +172953,7 @@ export declare enum Scope {
|
|
|
171920
172953
|
Read_3PDataTwgCli = "READ_3P_DATA_TWG_CLI",
|
|
171921
172954
|
ReadAccount = "READ_ACCOUNT",
|
|
171922
172955
|
ReadAccountUpp = "READ_ACCOUNT_UPP",
|
|
172956
|
+
ReadAllTwg = "READ_ALL_TWG",
|
|
171923
172957
|
ReadAppDetails = "READ_APP_DETAILS",
|
|
171924
172958
|
ReadAppEnvironment = "READ_APP_ENVIRONMENT",
|
|
171925
172959
|
ReadAppInstallation = "READ_APP_INSTALLATION",
|
|
@@ -191546,10 +192580,26 @@ export declare type ShepherdClassificationsQueriesByResourceArgs = {
|
|
|
191546
192580
|
workspaceId: Scalars['ID']['input'];
|
|
191547
192581
|
};
|
|
191548
192582
|
export declare type ShepherdClassificationsResult = QueryError | ShepherdClassificationsConnection;
|
|
192583
|
+
export declare type ShepherdContentInfo = {
|
|
192584
|
+
__typename?: 'ShepherdContentInfo';
|
|
192585
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
192586
|
+
ati?: Maybe<Scalars['String']['output']>;
|
|
192587
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
192588
|
+
space?: Maybe<ShepherdContentSpaceInfo>;
|
|
192589
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
192590
|
+
};
|
|
192591
|
+
export declare type ShepherdContentInfoResult = QueryError | ShepherdContentInfo;
|
|
191549
192592
|
export declare type ShepherdContentLocationInput = {
|
|
191550
192593
|
index: Scalars['Int']['input'];
|
|
191551
192594
|
pointer: Scalars['String']['input'];
|
|
191552
192595
|
};
|
|
192596
|
+
export declare type ShepherdContentSpaceInfo = {
|
|
192597
|
+
__typename?: 'ShepherdContentSpaceInfo';
|
|
192598
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
192599
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
192600
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
192601
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
192602
|
+
};
|
|
191553
192603
|
export declare type ShepherdCreateAlertInput = {
|
|
191554
192604
|
actor?: InputMaybe<ShepherdActorInput>;
|
|
191555
192605
|
assignee?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -191952,6 +193002,7 @@ export declare type ShepherdQuery = {
|
|
|
191952
193002
|
__typename?: 'ShepherdQuery';
|
|
191953
193003
|
alert?: Maybe<ShepherdAlertQueries>;
|
|
191954
193004
|
classifications?: Maybe<ShepherdClassificationsQueries>;
|
|
193005
|
+
contentInfo?: Maybe<Array<ShepherdContentInfoResult>>;
|
|
191955
193006
|
enabledWorkspaceByUserContext?: Maybe<ShepherdEnabledWorkspaceByUserContext>;
|
|
191956
193007
|
exclusions?: Maybe<ShepherdExclusionsQueries>;
|
|
191957
193008
|
redaction?: Maybe<ShepherdRedactionQueries>;
|
|
@@ -191966,6 +193017,10 @@ export declare type ShepherdQuery = {
|
|
|
191966
193017
|
workspaceByOrgId?: Maybe<ShepherdWorkspaceByOrgId>;
|
|
191967
193018
|
workspacesByUserContext?: Maybe<ShepherdWorkspaceResult>;
|
|
191968
193019
|
};
|
|
193020
|
+
export declare type ShepherdQueryContentInfoArgs = {
|
|
193021
|
+
contentUrlsOrAris: Array<Scalars['String']['input']>;
|
|
193022
|
+
workspaceId: Scalars['ID']['input'];
|
|
193023
|
+
};
|
|
191969
193024
|
export declare type ShepherdQueryServiceShardAppInfoArgs = {
|
|
191970
193025
|
workspaceAri: Scalars['ID']['input'];
|
|
191971
193026
|
};
|
|
@@ -192656,6 +193711,7 @@ export declare type SiteSettings = {
|
|
|
192656
193711
|
companyHubName?: Maybe<Scalars['String']['output']>;
|
|
192657
193712
|
frontCover?: Maybe<FrontCover>;
|
|
192658
193713
|
homepage?: Maybe<Homepage>;
|
|
193714
|
+
isHideTitleInUrl: Scalars['Boolean']['output'];
|
|
192659
193715
|
isNav4OptedIn: Scalars['Boolean']['output'];
|
|
192660
193716
|
showApplicationTitle: Scalars['Boolean']['output'];
|
|
192661
193717
|
siteTitle: Scalars['String']['output'];
|
|
@@ -192802,11 +193858,25 @@ export declare type SmartsContextServiceCollaboratorRecommendation = {
|
|
|
192802
193858
|
score?: Maybe<Scalars['Float']['output']>;
|
|
192803
193859
|
user?: Maybe<User>;
|
|
192804
193860
|
};
|
|
193861
|
+
export declare type SmartsContextServiceOrbitObjectRecommendation = {
|
|
193862
|
+
__typename?: 'SmartsContextServiceOrbitObjectRecommendation';
|
|
193863
|
+
context?: Maybe<SmartsRecommendationContext>;
|
|
193864
|
+
entityAti?: Maybe<Scalars['String']['output']>;
|
|
193865
|
+
id: Scalars['ID']['output'];
|
|
193866
|
+
object?: Maybe<SmartsRecommendedEntity>;
|
|
193867
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
193868
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
193869
|
+
signals?: Maybe<Scalars['String']['output']>;
|
|
193870
|
+
};
|
|
192805
193871
|
export declare type SmartsContextServiceQueryApi = {
|
|
192806
193872
|
__typename?: 'SmartsContextServiceQueryApi';
|
|
193873
|
+
orbitObjectRecommendations?: Maybe<Array<Maybe<SmartsContextServiceOrbitObjectRecommendation>>>;
|
|
192807
193874
|
orbitRecommendations?: Maybe<Array<Maybe<SmartsContextServiceCollaboratorRecommendation>>>;
|
|
192808
193875
|
quickfindUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceUserRecommendation>>>;
|
|
192809
193876
|
};
|
|
193877
|
+
export declare type SmartsContextServiceQueryApiOrbitObjectRecommendationsArgs = {
|
|
193878
|
+
recommendationsQuery: SmartsRecommendationsQuery;
|
|
193879
|
+
};
|
|
192810
193880
|
export declare type SmartsContextServiceQueryApiOrbitRecommendationsArgs = {
|
|
192811
193881
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
192812
193882
|
};
|
|
@@ -194223,6 +195293,38 @@ export declare type SpfCreateAskUpdateInput = {
|
|
|
194223
195293
|
status?: InputMaybe<SpfAskStatus>;
|
|
194224
195294
|
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
194225
195295
|
};
|
|
195296
|
+
export declare type SpfCreateAsksAskCommentInput = {
|
|
195297
|
+
data: Scalars['String']['input'];
|
|
195298
|
+
};
|
|
195299
|
+
export declare type SpfCreateAsksAskInput = {
|
|
195300
|
+
comments?: InputMaybe<Array<SpfCreateAsksAskCommentInput>>;
|
|
195301
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
195302
|
+
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
195303
|
+
justification?: InputMaybe<Scalars['String']['input']>;
|
|
195304
|
+
links?: InputMaybe<Array<SpfCreateAsksAskLinkInput>>;
|
|
195305
|
+
name: Scalars['String']['input'];
|
|
195306
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
195307
|
+
priority: SpfAskPriority;
|
|
195308
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
195309
|
+
status: SpfAskStatus;
|
|
195310
|
+
submitterId: Scalars['String']['input'];
|
|
195311
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
195312
|
+
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
195313
|
+
};
|
|
195314
|
+
export declare type SpfCreateAsksAskLinkInput = {
|
|
195315
|
+
linkText?: InputMaybe<Scalars['String']['input']>;
|
|
195316
|
+
url: Scalars['URL']['input'];
|
|
195317
|
+
};
|
|
195318
|
+
export declare type SpfCreateAsksInput = {
|
|
195319
|
+
asks: Array<SpfCreateAsksAskInput>;
|
|
195320
|
+
cloudId: Scalars['ID']['input'];
|
|
195321
|
+
};
|
|
195322
|
+
export declare type SpfCreateAsksPayload = Payload & {
|
|
195323
|
+
__typename?: 'SpfCreateAsksPayload';
|
|
195324
|
+
asks?: Maybe<Array<SpfAsk>>;
|
|
195325
|
+
errors?: Maybe<Array<MutationError>>;
|
|
195326
|
+
success: Scalars['Boolean']['output'];
|
|
195327
|
+
};
|
|
194226
195328
|
export declare type SpfCreatePlanInput = {
|
|
194227
195329
|
approverIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
194228
195330
|
cloudId: Scalars['ID']['input'];
|
|
@@ -196001,6 +197103,7 @@ export declare type StakeholderCommsRelatedIncidentEntry = {
|
|
|
196001
197103
|
incidentName?: Maybe<Scalars['String']['output']>;
|
|
196002
197104
|
};
|
|
196003
197105
|
export declare type StakeholderCommsRemoveCustomDomainInput = {
|
|
197106
|
+
cdmMigrationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
196004
197107
|
domain: Scalars['String']['input'];
|
|
196005
197108
|
pageId: Scalars['String']['input'];
|
|
196006
197109
|
};
|
|
@@ -196388,6 +197491,7 @@ export declare type StakeholderCommsUnsubscribeSubscriberResponse = {
|
|
|
196388
197491
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
196389
197492
|
};
|
|
196390
197493
|
export declare type StakeholderCommsUpdateCustomDomainInput = {
|
|
197494
|
+
cdmMigrationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
196391
197495
|
domain: Scalars['String']['input'];
|
|
196392
197496
|
pageId: Scalars['String']['input'];
|
|
196393
197497
|
};
|
|
@@ -196695,7 +197799,6 @@ export declare type Subscription = {
|
|
|
196695
197799
|
convoai_onAgentSessionCreate?: Maybe<ConvoAiAgentSessionCreate>;
|
|
196696
197800
|
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
196697
197801
|
convoai_onAgentSessionUpdatedByProjects?: Maybe<ConvoAiAgentSessionUpdatedByProjects>;
|
|
196698
|
-
cpls_suggestionsExist: CplsSuggestionsExistencePayload;
|
|
196699
197802
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
196700
197803
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
196701
197804
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -196758,9 +197861,6 @@ export declare type SubscriptionConvoai_OnAgentSessionUpdatedByProjectsArgs = {
|
|
|
196758
197861
|
cloudId: Scalars['ID']['input'];
|
|
196759
197862
|
projectIds: Array<Scalars['String']['input']>;
|
|
196760
197863
|
};
|
|
196761
|
-
export declare type SubscriptionCpls_SuggestionsExistArgs = {
|
|
196762
|
-
scopeId: Scalars['ID']['input'];
|
|
196763
|
-
};
|
|
196764
197864
|
export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
|
|
196765
197865
|
cloudId: Scalars['ID']['input'];
|
|
196766
197866
|
jobId: Scalars['ID']['input'];
|
|
@@ -197935,6 +199035,7 @@ export declare type TeamQuery = {
|
|
|
197935
199035
|
team?: Maybe<Team>;
|
|
197936
199036
|
teamSearch?: Maybe<TeamSearchResultConnection>;
|
|
197937
199037
|
teamSearchV2?: Maybe<TeamSearchResultConnectionV2>;
|
|
199038
|
+
teamSearchV3?: Maybe<TeamSearchResultConnectionV2>;
|
|
197938
199039
|
teamV2?: Maybe<TeamV2>;
|
|
197939
199040
|
teamV3?: Maybe<TeamV2>;
|
|
197940
199041
|
teamsTql?: Maybe<TeamConnection>;
|
|
@@ -197989,6 +199090,17 @@ export declare type TeamQueryTeamSearchV2Args = {
|
|
|
197989
199090
|
sortBy?: InputMaybe<Array<InputMaybe<TeamSort>>>;
|
|
197990
199091
|
state?: InputMaybe<Array<InputMaybe<TeamSearchStateV2>>>;
|
|
197991
199092
|
};
|
|
199093
|
+
export declare type TeamQueryTeamSearchV3Args = {
|
|
199094
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
199095
|
+
enablePagination?: InputMaybe<Scalars['Boolean']['input']>;
|
|
199096
|
+
filter?: InputMaybe<TeamSearchFilter>;
|
|
199097
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
199098
|
+
scopeId: Scalars['ID']['input'];
|
|
199099
|
+
searchFields?: InputMaybe<Array<InputMaybe<TeamSearchField>>>;
|
|
199100
|
+
showEmptyTeams?: InputMaybe<Scalars['Boolean']['input']>;
|
|
199101
|
+
sortBy?: InputMaybe<Array<InputMaybe<TeamSort>>>;
|
|
199102
|
+
state?: InputMaybe<Array<InputMaybe<TeamSearchStateV2>>>;
|
|
199103
|
+
};
|
|
197992
199104
|
export declare type TeamQueryTeamV2Args = {
|
|
197993
199105
|
id: Scalars['ID']['input'];
|
|
197994
199106
|
siteId: Scalars['String']['input'];
|
|
@@ -199602,6 +200714,7 @@ export declare type TownsquareGoalAppCapabilities = {
|
|
|
199602
200714
|
__typename?: 'TownsquareGoalAppCapabilities';
|
|
199603
200715
|
canCreateGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
199604
200716
|
canExportGoals?: Maybe<Scalars['Boolean']['output']>;
|
|
200717
|
+
canManageConnections?: Maybe<Scalars['Boolean']['output']>;
|
|
199605
200718
|
focus?: Maybe<TownsquareFocusAppCapabilities>;
|
|
199606
200719
|
};
|
|
199607
200720
|
export declare type TownsquareGoalArchivedChange = {
|
|
@@ -201148,6 +202261,7 @@ export declare type TownsquareProjectAppCapabilities = {
|
|
|
201148
202261
|
__typename?: 'TownsquareProjectAppCapabilities';
|
|
201149
202262
|
canCreateProject?: Maybe<Scalars['Boolean']['output']>;
|
|
201150
202263
|
canExportProjects?: Maybe<Scalars['Boolean']['output']>;
|
|
202264
|
+
canManageConnections?: Maybe<Scalars['Boolean']['output']>;
|
|
201151
202265
|
focus?: Maybe<TownsquareFocusAppCapabilities>;
|
|
201152
202266
|
};
|
|
201153
202267
|
export declare type TownsquareProjectCapabilities = {
|
|
@@ -202866,9 +203980,12 @@ export declare type TrelloAiBoardUserInput = {
|
|
|
202866
203980
|
export declare type TrelloAiFeature = {
|
|
202867
203981
|
__typename?: 'TrelloAiFeature';
|
|
202868
203982
|
creationMethodError?: Maybe<Scalars['String']['output']>;
|
|
203983
|
+
creationMethodLoadingStartedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
203984
|
+
dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
|
|
202869
203985
|
entities?: Maybe<Array<TrelloAiFeatureEntity>>;
|
|
202870
203986
|
feature: Scalars['String']['output'];
|
|
202871
203987
|
modelMetadata?: Maybe<Array<TrelloModelMetadata>>;
|
|
203988
|
+
singleInstrumentationId?: Maybe<Scalars['String']['output']>;
|
|
202872
203989
|
};
|
|
202873
203990
|
export declare type TrelloAiFeatureEntity = {
|
|
202874
203991
|
__typename?: 'TrelloAiFeatureEntity';
|
|
@@ -203200,6 +204317,7 @@ export declare type TrelloBaseCardUpdated = {
|
|
|
203200
204317
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
203201
204318
|
limits?: Maybe<TrelloCardLimits>;
|
|
203202
204319
|
list?: Maybe<TrelloList>;
|
|
204320
|
+
manifest?: Maybe<TrelloCardManifest>;
|
|
203203
204321
|
name?: Maybe<Scalars['String']['output']>;
|
|
203204
204322
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
203205
204323
|
onActionDeleted?: Maybe<Array<TrelloActionDeleted>>;
|
|
@@ -204050,6 +205168,17 @@ export declare type TrelloCardManifest = {
|
|
|
204050
205168
|
__typename?: 'TrelloCardManifest';
|
|
204051
205169
|
contents?: Maybe<Scalars['JSON']['output']>;
|
|
204052
205170
|
schemaVersion: Scalars['Int']['output'];
|
|
205171
|
+
source?: Maybe<TrelloCardManifestSource>;
|
|
205172
|
+
};
|
|
205173
|
+
export declare type TrelloCardManifestPromptSource = {
|
|
205174
|
+
__typename?: 'TrelloCardManifestPromptSource';
|
|
205175
|
+
prompt?: Maybe<Scalars['String']['output']>;
|
|
205176
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
205177
|
+
};
|
|
205178
|
+
export declare type TrelloCardManifestSource = TrelloCardManifestPromptSource | TrelloCardManifestUnknownSource;
|
|
205179
|
+
export declare type TrelloCardManifestUnknownSource = {
|
|
205180
|
+
__typename?: 'TrelloCardManifestUnknownSource';
|
|
205181
|
+
_empty?: Maybe<Scalars['String']['output']>;
|
|
204053
205182
|
};
|
|
204054
205183
|
export declare type TrelloCardMemberEdgeUpdated = {
|
|
204055
205184
|
__typename?: 'TrelloCardMemberEdgeUpdated';
|
|
@@ -204089,6 +205218,39 @@ export declare type TrelloCardSearchResult = {
|
|
|
204089
205218
|
options?: Maybe<TrelloSearchOptions>;
|
|
204090
205219
|
results?: Maybe<TrelloSearchCardConnection>;
|
|
204091
205220
|
};
|
|
205221
|
+
export declare type TrelloCardSummary = {
|
|
205222
|
+
__typename?: 'TrelloCardSummary';
|
|
205223
|
+
generatedAt: Scalars['DateTime']['output'];
|
|
205224
|
+
sections: Array<TrelloCardSummarySection>;
|
|
205225
|
+
sourceMetadata: TrelloCardSummarySourceMetadata;
|
|
205226
|
+
};
|
|
205227
|
+
export declare enum TrelloCardSummaryNullReason {
|
|
205228
|
+
NotEnoughSignal = "NOT_ENOUGH_SIGNAL",
|
|
205229
|
+
NoContent = "NO_CONTENT",
|
|
205230
|
+
PlaceholderOnly = "PLACEHOLDER_ONLY"
|
|
205231
|
+
}
|
|
205232
|
+
export declare type TrelloCardSummarySection = {
|
|
205233
|
+
__typename?: 'TrelloCardSummarySection';
|
|
205234
|
+
items: Array<Scalars['String']['output']>;
|
|
205235
|
+
kind?: Maybe<TrelloCardSummarySectionKind>;
|
|
205236
|
+
title: Scalars['String']['output'];
|
|
205237
|
+
};
|
|
205238
|
+
export declare enum TrelloCardSummarySectionKind {
|
|
205239
|
+
Action = "ACTION",
|
|
205240
|
+
Decision = "DECISION",
|
|
205241
|
+
General = "GENERAL",
|
|
205242
|
+
Progress = "PROGRESS",
|
|
205243
|
+
Question = "QUESTION",
|
|
205244
|
+
Risk = "RISK"
|
|
205245
|
+
}
|
|
205246
|
+
export declare type TrelloCardSummarySourceMetadata = {
|
|
205247
|
+
__typename?: 'TrelloCardSummarySourceMetadata';
|
|
205248
|
+
commentCount: Scalars['Int']['output'];
|
|
205249
|
+
commentsTruncated: Scalars['Boolean']['output'];
|
|
205250
|
+
descriptionLastEditedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
205251
|
+
latestCommentAt?: Maybe<Scalars['DateTime']['output']>;
|
|
205252
|
+
latestCommentEditedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
205253
|
+
};
|
|
204092
205254
|
export declare type TrelloCardUpdated = TrelloBaseCardUpdated & {
|
|
204093
205255
|
__typename?: 'TrelloCardUpdated';
|
|
204094
205256
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
@@ -204112,6 +205274,7 @@ export declare type TrelloCardUpdated = TrelloBaseCardUpdated & {
|
|
|
204112
205274
|
limits?: Maybe<TrelloCardLimits>;
|
|
204113
205275
|
list?: Maybe<TrelloList>;
|
|
204114
205276
|
location?: Maybe<TrelloCardLocation>;
|
|
205277
|
+
manifest?: Maybe<TrelloCardManifest>;
|
|
204115
205278
|
members?: Maybe<TrelloMemberUpdatedConnection>;
|
|
204116
205279
|
membersVoted?: Maybe<TrelloMemberUpdatedConnection>;
|
|
204117
205280
|
mirrorSource?: Maybe<TrelloBaseCard>;
|
|
@@ -204166,11 +205329,22 @@ export declare type TrelloCheckItemConnectionUpdated = {
|
|
|
204166
205329
|
__typename?: 'TrelloCheckItemConnectionUpdated';
|
|
204167
205330
|
edges?: Maybe<Array<TrelloCheckItemEdgeUpdated>>;
|
|
204168
205331
|
};
|
|
205332
|
+
export declare enum TrelloCheckItemCreationMethod {
|
|
205333
|
+
Ai = "AI",
|
|
205334
|
+
Assisted = "ASSISTED",
|
|
205335
|
+
Automatic = "AUTOMATIC",
|
|
205336
|
+
Demo = "DEMO",
|
|
205337
|
+
EmailSource = "EMAIL_SOURCE"
|
|
205338
|
+
}
|
|
204169
205339
|
export declare type TrelloCheckItemDueInfo = {
|
|
204170
205340
|
__typename?: 'TrelloCheckItemDueInfo';
|
|
204171
205341
|
at?: Maybe<Scalars['DateTime']['output']>;
|
|
204172
205342
|
reminder?: Maybe<Scalars['Int']['output']>;
|
|
204173
205343
|
};
|
|
205344
|
+
export declare type TrelloCheckItemDueInfoInput = {
|
|
205345
|
+
at?: InputMaybe<Scalars['DateTime']['input']>;
|
|
205346
|
+
reminder?: InputMaybe<Scalars['Int']['input']>;
|
|
205347
|
+
};
|
|
204174
205348
|
export declare type TrelloCheckItemEdge = {
|
|
204175
205349
|
__typename?: 'TrelloCheckItemEdge';
|
|
204176
205350
|
cursor: Scalars['String']['output'];
|
|
@@ -204541,6 +205715,21 @@ export declare type TrelloCreateCardPayload = Payload & {
|
|
|
204541
205715
|
errors?: Maybe<Array<MutationError>>;
|
|
204542
205716
|
success: Scalars['Boolean']['output'];
|
|
204543
205717
|
};
|
|
205718
|
+
export declare type TrelloCreateCheckItemInput = {
|
|
205719
|
+
checked?: InputMaybe<Scalars['Boolean']['input']>;
|
|
205720
|
+
checklistId: Scalars['ID']['input'];
|
|
205721
|
+
creationMethod?: InputMaybe<TrelloCheckItemCreationMethod>;
|
|
205722
|
+
due?: InputMaybe<TrelloCheckItemDueInfoInput>;
|
|
205723
|
+
name: Scalars['String']['input'];
|
|
205724
|
+
position?: InputMaybe<TrelloRelativePosition>;
|
|
205725
|
+
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
205726
|
+
};
|
|
205727
|
+
export declare type TrelloCreateCheckItemPayload = Payload & {
|
|
205728
|
+
__typename?: 'TrelloCreateCheckItemPayload';
|
|
205729
|
+
checklist?: Maybe<TrelloChecklist>;
|
|
205730
|
+
errors?: Maybe<Array<MutationError>>;
|
|
205731
|
+
success: Scalars['Boolean']['output'];
|
|
205732
|
+
};
|
|
204544
205733
|
export declare type TrelloCreateChecklistInput = {
|
|
204545
205734
|
cardId: Scalars['ID']['input'];
|
|
204546
205735
|
creationMethod?: InputMaybe<TrelloChecklistCreationMethod>;
|
|
@@ -205037,6 +206226,17 @@ export declare type TrelloGenerateCardCoverWithAiPayload = Payload & {
|
|
|
205037
206226
|
errors?: Maybe<Array<MutationError>>;
|
|
205038
206227
|
success: Scalars['Boolean']['output'];
|
|
205039
206228
|
};
|
|
206229
|
+
export declare type TrelloGenerateCardSummaryInput = {
|
|
206230
|
+
cardId: Scalars['ID']['input'];
|
|
206231
|
+
force?: InputMaybe<Scalars['Boolean']['input']>;
|
|
206232
|
+
};
|
|
206233
|
+
export declare type TrelloGenerateCardSummaryPayload = Payload & {
|
|
206234
|
+
__typename?: 'TrelloGenerateCardSummaryPayload';
|
|
206235
|
+
errors?: Maybe<Array<MutationError>>;
|
|
206236
|
+
nullReason?: Maybe<TrelloCardSummaryNullReason>;
|
|
206237
|
+
success: Scalars['Boolean']['output'];
|
|
206238
|
+
summary?: Maybe<TrelloCardSummary>;
|
|
206239
|
+
};
|
|
205040
206240
|
export declare type TrelloGenerateCheckItemsForCardInput = {
|
|
205041
206241
|
cardId: Scalars['ID']['input'];
|
|
205042
206242
|
checklistTarget: TrelloChecklistTarget;
|
|
@@ -205209,6 +206409,7 @@ export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
|
|
|
205209
206409
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
205210
206410
|
limits?: Maybe<TrelloCardLimits>;
|
|
205211
206411
|
list?: Maybe<TrelloList>;
|
|
206412
|
+
manifest?: Maybe<TrelloCardManifest>;
|
|
205212
206413
|
name?: Maybe<Scalars['String']['output']>;
|
|
205213
206414
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
205214
206415
|
onActionDeleted?: Maybe<Array<TrelloActionDeleted>>;
|
|
@@ -205906,6 +207107,7 @@ export declare type TrelloMutationApi = {
|
|
|
205906
207107
|
createBoard?: Maybe<TrelloCreateBoardPayload>;
|
|
205907
207108
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
205908
207109
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
207110
|
+
createCheckItem?: Maybe<TrelloCreateCheckItemPayload>;
|
|
205909
207111
|
createChecklist?: Maybe<TrelloCreateChecklistPayload>;
|
|
205910
207112
|
createCustomField?: Maybe<TrelloCreateCustomFieldPayload>;
|
|
205911
207113
|
createCustomFieldOption?: Maybe<TrelloCreateCustomFieldOptionPayload>;
|
|
@@ -205932,6 +207134,7 @@ export declare type TrelloMutationApi = {
|
|
|
205932
207134
|
endVoiceCaptureSession?: Maybe<TrelloEndVoiceCaptureSessionPayload>;
|
|
205933
207135
|
generateBoardBackgroundWithAi?: Maybe<TrelloGenerateBoardBackgroundWithAiPayload>;
|
|
205934
207136
|
generateCardCoverWithAi?: Maybe<TrelloGenerateCardCoverWithAiPayload>;
|
|
207137
|
+
generateCardSummary?: Maybe<TrelloGenerateCardSummaryPayload>;
|
|
205935
207138
|
generateCheckItemsForCard?: Maybe<TrelloGenerateCheckItemsForCardPayload>;
|
|
205936
207139
|
hideCardCoversOnCardFront?: Maybe<TrelloHideCardCoversOnCardFrontPayload>;
|
|
205937
207140
|
hideVotesOnBoard?: Maybe<TrelloHideVotesOnBoardPayload>;
|
|
@@ -205944,6 +207147,7 @@ export declare type TrelloMutationApi = {
|
|
|
205944
207147
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
205945
207148
|
proactiveSmartScheduleCards?: Maybe<TrelloProactiveSmartScheduleCardsPayload>;
|
|
205946
207149
|
proposePlannerEvents?: Maybe<TrelloProposePlannerEventsPayload>;
|
|
207150
|
+
refreshCardManifest?: Maybe<TrelloRefreshManifestPayload>;
|
|
205947
207151
|
rejectProposedEvents?: Maybe<TrelloRejectProposedEventsPayload>;
|
|
205948
207152
|
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
205949
207153
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
@@ -206072,6 +207276,9 @@ export declare type TrelloMutationApiCreateBoardWithAiArgs = {
|
|
|
206072
207276
|
export declare type TrelloMutationApiCreateCardArgs = {
|
|
206073
207277
|
input: TrelloCreateCardInput;
|
|
206074
207278
|
};
|
|
207279
|
+
export declare type TrelloMutationApiCreateCheckItemArgs = {
|
|
207280
|
+
input: TrelloCreateCheckItemInput;
|
|
207281
|
+
};
|
|
206075
207282
|
export declare type TrelloMutationApiCreateChecklistArgs = {
|
|
206076
207283
|
input: TrelloCreateChecklistInput;
|
|
206077
207284
|
};
|
|
@@ -206150,6 +207357,9 @@ export declare type TrelloMutationApiGenerateBoardBackgroundWithAiArgs = {
|
|
|
206150
207357
|
export declare type TrelloMutationApiGenerateCardCoverWithAiArgs = {
|
|
206151
207358
|
input: TrelloGenerateCardCoverWithAiInput;
|
|
206152
207359
|
};
|
|
207360
|
+
export declare type TrelloMutationApiGenerateCardSummaryArgs = {
|
|
207361
|
+
input: TrelloGenerateCardSummaryInput;
|
|
207362
|
+
};
|
|
206153
207363
|
export declare type TrelloMutationApiGenerateCheckItemsForCardArgs = {
|
|
206154
207364
|
input: TrelloGenerateCheckItemsForCardInput;
|
|
206155
207365
|
};
|
|
@@ -206183,6 +207393,9 @@ export declare type TrelloMutationApiPinCardArgs = {
|
|
|
206183
207393
|
export declare type TrelloMutationApiProposePlannerEventsArgs = {
|
|
206184
207394
|
input: TrelloProposePlannerEventsInput;
|
|
206185
207395
|
};
|
|
207396
|
+
export declare type TrelloMutationApiRefreshCardManifestArgs = {
|
|
207397
|
+
input: TrelloRefreshManifestInput;
|
|
207398
|
+
};
|
|
206186
207399
|
export declare type TrelloMutationApiRejectProposedEventsArgs = {
|
|
206187
207400
|
input: TrelloRejectProposedEventsInput;
|
|
206188
207401
|
};
|
|
@@ -207498,6 +208711,15 @@ export declare type TrelloReactionLimits = {
|
|
|
207498
208711
|
perAction?: Maybe<TrelloLimitProps>;
|
|
207499
208712
|
uniquePerAction?: Maybe<TrelloLimitProps>;
|
|
207500
208713
|
};
|
|
208714
|
+
export declare type TrelloRefreshManifestInput = {
|
|
208715
|
+
cardId: Scalars['ID']['input'];
|
|
208716
|
+
};
|
|
208717
|
+
export declare type TrelloRefreshManifestPayload = Payload & {
|
|
208718
|
+
__typename?: 'TrelloRefreshManifestPayload';
|
|
208719
|
+
errors?: Maybe<Array<MutationError>>;
|
|
208720
|
+
manifest?: Maybe<TrelloCardManifest>;
|
|
208721
|
+
success: Scalars['Boolean']['output'];
|
|
208722
|
+
};
|
|
207501
208723
|
export declare type TrelloRejectProposedEventsInput = {
|
|
207502
208724
|
proposedEventIds: Array<Scalars['ID']['input']>;
|
|
207503
208725
|
};
|
|
@@ -208521,7 +209743,7 @@ export declare type TrelloUserUnrestrictedAccessSummary = {
|
|
|
208521
209743
|
};
|
|
208522
209744
|
export declare type TrelloVoiceCaptureCardUpdated = {
|
|
208523
209745
|
__typename?: 'TrelloVoiceCaptureCardUpdated';
|
|
208524
|
-
due?: Maybe<Scalars['
|
|
209746
|
+
due?: Maybe<Scalars['DateTime']['output']>;
|
|
208525
209747
|
name?: Maybe<Scalars['String']['output']>;
|
|
208526
209748
|
objectId: Scalars['ID']['output'];
|
|
208527
209749
|
};
|
|
@@ -211428,6 +212650,24 @@ export declare type UtsAlertThreshold = {
|
|
|
211428
212650
|
usageIdentifier: Scalars['String']['output'];
|
|
211429
212651
|
value?: Maybe<Scalars['Float']['output']>;
|
|
211430
212652
|
};
|
|
212653
|
+
export declare type UtsAllowancePoolAllocationUpdateInput = {
|
|
212654
|
+
allocationId: Scalars['ID']['input'];
|
|
212655
|
+
billingEntity?: InputMaybe<Scalars['String']['input']>;
|
|
212656
|
+
enforcementMode?: InputMaybe<UtsLatestAllowanceEnforcementModeType>;
|
|
212657
|
+
overageCap?: InputMaybe<Scalars['Float']['input']>;
|
|
212658
|
+
poolShare?: InputMaybe<Scalars['Float']['input']>;
|
|
212659
|
+
};
|
|
212660
|
+
export declare type UtsAllowancePoolAllocationUpdateResult = {
|
|
212661
|
+
__typename?: 'UtsAllowancePoolAllocationUpdateResult';
|
|
212662
|
+
allocationId?: Maybe<Scalars['ID']['output']>;
|
|
212663
|
+
poolId?: Maybe<Scalars['ID']['output']>;
|
|
212664
|
+
transactionId?: Maybe<Scalars['ID']['output']>;
|
|
212665
|
+
};
|
|
212666
|
+
export declare enum UtsLatestAllowanceEnforcementModeType {
|
|
212667
|
+
Block = "BLOCK",
|
|
212668
|
+
LimitedOverage = "LIMITED_OVERAGE",
|
|
212669
|
+
Overage = "OVERAGE"
|
|
212670
|
+
}
|
|
211431
212671
|
export declare type UtsUsageAlert = {
|
|
211432
212672
|
__typename?: 'UtsUsageAlert';
|
|
211433
212673
|
createdAt?: Maybe<Scalars['Float']['output']>;
|