@forge/cli-shared 8.22.1-next.0 → 8.23.0-next.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -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 +1416 -156
- package/out/graphql/graphql-types.d.ts.map +1 -1
- package/out/graphql/graphql-types.js +181 -67
- package/out/ui/text.d.ts +10 -0
- package/out/ui/text.d.ts.map +1 -1
- package/out/ui/text.js +10 -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,19 @@ 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
|
+
};
|
|
6923
7098
|
export declare type AgentWorkspaceEditShiftInput = {
|
|
6924
7099
|
agentId: Scalars['ID']['input'];
|
|
6925
7100
|
newEndTime: Scalars['DateTime']['input'];
|
|
@@ -6955,6 +7130,16 @@ export declare type AgentWorkspaceGroupTooLarge = {
|
|
|
6955
7130
|
group?: Maybe<IdentityGroup>;
|
|
6956
7131
|
groupAri: Scalars['ID']['output'];
|
|
6957
7132
|
};
|
|
7133
|
+
export declare type AgentWorkspaceIssueRebalancingRecommendation = {
|
|
7134
|
+
__typename?: 'AgentWorkspaceIssueRebalancingRecommendation';
|
|
7135
|
+
issueARI: Scalars['ID']['output'];
|
|
7136
|
+
recommendations: Array<AgentWorkspaceRebalancingRecommendation>;
|
|
7137
|
+
};
|
|
7138
|
+
export declare type AgentWorkspacePageInfo = {
|
|
7139
|
+
__typename?: 'AgentWorkspacePageInfo';
|
|
7140
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
7141
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
7142
|
+
};
|
|
6958
7143
|
export declare type AgentWorkspaceProjectDefaultAvailability = {
|
|
6959
7144
|
__typename?: 'AgentWorkspaceProjectDefaultAvailability';
|
|
6960
7145
|
projectId: Scalars['ID']['output'];
|
|
@@ -6968,6 +7153,10 @@ export declare type AgentWorkspaceProjectDefaultAvailabilityPayload = {
|
|
|
6968
7153
|
projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
6969
7154
|
success: Scalars['Boolean']['output'];
|
|
6970
7155
|
};
|
|
7156
|
+
export declare type AgentWorkspaceRebalancingRecommendation = {
|
|
7157
|
+
__typename?: 'AgentWorkspaceRebalancingRecommendation';
|
|
7158
|
+
toAgentId: Scalars['ID']['output'];
|
|
7159
|
+
};
|
|
6971
7160
|
export declare type AgentWorkspaceRecommendationError = {
|
|
6972
7161
|
__typename?: 'AgentWorkspaceRecommendationError';
|
|
6973
7162
|
message: Scalars['String']['output'];
|
|
@@ -7012,7 +7201,6 @@ export declare type AgentWorkspaceResolvedDateRange = {
|
|
|
7012
7201
|
startTime: Scalars['DateTime']['output'];
|
|
7013
7202
|
};
|
|
7014
7203
|
export declare type AgentWorkspaceRestoreSkillInput = {
|
|
7015
|
-
cloudId: Scalars['ID']['input'];
|
|
7016
7204
|
skillId: Scalars['ID']['input'];
|
|
7017
7205
|
};
|
|
7018
7206
|
export declare type AgentWorkspaceRestoreSkillPayload = {
|
|
@@ -7020,6 +7208,24 @@ export declare type AgentWorkspaceRestoreSkillPayload = {
|
|
|
7020
7208
|
errors?: Maybe<Array<MutationError>>;
|
|
7021
7209
|
success: Scalars['Boolean']['output'];
|
|
7022
7210
|
};
|
|
7211
|
+
export declare type AgentWorkspaceRoutingSetupState = {
|
|
7212
|
+
__typename?: 'AgentWorkspaceRoutingSetupState';
|
|
7213
|
+
hasCommittedTable: Scalars['Boolean']['output'];
|
|
7214
|
+
hasDraft: Scalars['Boolean']['output'];
|
|
7215
|
+
hasField: Scalars['Boolean']['output'];
|
|
7216
|
+
};
|
|
7217
|
+
export declare type AgentWorkspaceRoutingTableEntries = {
|
|
7218
|
+
__typename?: 'AgentWorkspaceRoutingTableEntries';
|
|
7219
|
+
entries: Array<AgentWorkspaceRoutingTableEntry>;
|
|
7220
|
+
};
|
|
7221
|
+
export declare type AgentWorkspaceRoutingTableEntry = {
|
|
7222
|
+
__typename?: 'AgentWorkspaceRoutingTableEntry';
|
|
7223
|
+
description: Scalars['String']['output'];
|
|
7224
|
+
id: Scalars['ID']['output'];
|
|
7225
|
+
serviceFieldValue: Scalars['String']['output'];
|
|
7226
|
+
serviceName: Scalars['String']['output'];
|
|
7227
|
+
teamAri: Scalars['ID']['output'];
|
|
7228
|
+
};
|
|
7023
7229
|
export declare type AgentWorkspaceRoutingTableGeneration = {
|
|
7024
7230
|
__typename?: 'AgentWorkspaceRoutingTableGeneration';
|
|
7025
7231
|
completedServices: Scalars['Int']['output'];
|
|
@@ -7027,6 +7233,7 @@ export declare type AgentWorkspaceRoutingTableGeneration = {
|
|
|
7027
7233
|
endedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
7028
7234
|
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
7029
7235
|
generationId: Scalars['ID']['output'];
|
|
7236
|
+
selectedRowServiceIds: Array<Scalars['String']['output']>;
|
|
7030
7237
|
startedAt: Scalars['DateTime']['output'];
|
|
7031
7238
|
status: AgentWorkspaceRoutingTableGenerationStatus;
|
|
7032
7239
|
totalServices: Scalars['Int']['output'];
|
|
@@ -7038,9 +7245,12 @@ export declare enum AgentWorkspaceRoutingTableGenerationPhase {
|
|
|
7038
7245
|
ScanningTickets = "SCANNING_TICKETS"
|
|
7039
7246
|
}
|
|
7040
7247
|
export declare enum AgentWorkspaceRoutingTableGenerationStatus {
|
|
7248
|
+
Cancelled = "CANCELLED",
|
|
7249
|
+
Cancelling = "CANCELLING",
|
|
7041
7250
|
Completed = "COMPLETED",
|
|
7042
7251
|
Failed = "FAILED",
|
|
7043
|
-
InProgress = "IN_PROGRESS"
|
|
7252
|
+
InProgress = "IN_PROGRESS",
|
|
7253
|
+
Timeout = "TIMEOUT"
|
|
7044
7254
|
}
|
|
7045
7255
|
export declare type AgentWorkspaceSchedule = {
|
|
7046
7256
|
__typename?: 'AgentWorkspaceSchedule';
|
|
@@ -7266,6 +7476,7 @@ export declare type AgentWorkspaceSkillCategory = {
|
|
|
7266
7476
|
description?: Maybe<Scalars['String']['output']>;
|
|
7267
7477
|
id: Scalars['ID']['output'];
|
|
7268
7478
|
name?: Maybe<Scalars['String']['output']>;
|
|
7479
|
+
skillCount?: Maybe<Scalars['Int']['output']>;
|
|
7269
7480
|
skills?: Maybe<Array<AgentWorkspaceSkill>>;
|
|
7270
7481
|
};
|
|
7271
7482
|
export declare type AgentWorkspaceSkillCategoryConnection = {
|
|
@@ -7337,6 +7548,7 @@ export declare type AgentWorkspaceStartGenerateRoutingTableInput = {
|
|
|
7337
7548
|
days?: InputMaybe<Scalars['Int']['input']>;
|
|
7338
7549
|
maxIssues?: InputMaybe<Scalars['Int']['input']>;
|
|
7339
7550
|
projectKey: Scalars['String']['input'];
|
|
7551
|
+
selectedRowServiceIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
7340
7552
|
serviceFieldId: Scalars['String']['input'];
|
|
7341
7553
|
};
|
|
7342
7554
|
export declare type AgentWorkspaceStartGenerateRoutingTablePayload = {
|
|
@@ -7344,6 +7556,16 @@ export declare type AgentWorkspaceStartGenerateRoutingTablePayload = {
|
|
|
7344
7556
|
generationId: Scalars['ID']['output'];
|
|
7345
7557
|
status: AgentWorkspaceRoutingTableGenerationStatus;
|
|
7346
7558
|
};
|
|
7559
|
+
export declare type AgentWorkspaceSubmitDraftedRoutingTableInput = {
|
|
7560
|
+
fieldId: Scalars['String']['input'];
|
|
7561
|
+
generationId: Scalars['ID']['input'];
|
|
7562
|
+
projectAri: Scalars['ID']['input'];
|
|
7563
|
+
};
|
|
7564
|
+
export declare type AgentWorkspaceSubmitDraftedRoutingTablePayload = {
|
|
7565
|
+
__typename?: 'AgentWorkspaceSubmitDraftedRoutingTablePayload';
|
|
7566
|
+
rowsWritten: Scalars['Int']['output'];
|
|
7567
|
+
teamsNewlyConnected: Scalars['Int']['output'];
|
|
7568
|
+
};
|
|
7347
7569
|
export declare type AgentWorkspaceTeamCapacitiesInput = {
|
|
7348
7570
|
cloudId: Scalars['ID']['input'];
|
|
7349
7571
|
projectKey: Scalars['String']['input'];
|
|
@@ -7372,6 +7594,22 @@ export declare type AgentWorkspaceTeamLinkFailure = {
|
|
|
7372
7594
|
message: Scalars['String']['output'];
|
|
7373
7595
|
teamId: Scalars['ID']['output'];
|
|
7374
7596
|
};
|
|
7597
|
+
export declare type AgentWorkspaceTeamRebalancingRecommendationsInput = {
|
|
7598
|
+
projectARI: Scalars['ID']['input'];
|
|
7599
|
+
teamARI: Scalars['ID']['input'];
|
|
7600
|
+
};
|
|
7601
|
+
export declare type AgentWorkspaceTeamRebalancingSummariesInput = {
|
|
7602
|
+
projectARI: Scalars['ID']['input'];
|
|
7603
|
+
};
|
|
7604
|
+
export declare type AgentWorkspaceTeamRebalancingSummary = {
|
|
7605
|
+
__typename?: 'AgentWorkspaceTeamRebalancingSummary';
|
|
7606
|
+
averageUtilizationPercent: Scalars['Float']['output'];
|
|
7607
|
+
overloadedAgentCount: Scalars['Int']['output'];
|
|
7608
|
+
teamARI: Scalars['ID']['output'];
|
|
7609
|
+
totalCapacity: Scalars['Int']['output'];
|
|
7610
|
+
totalCurrentLoad: Scalars['Int']['output'];
|
|
7611
|
+
totalWorkItemCount: Scalars['Int']['output'];
|
|
7612
|
+
};
|
|
7375
7613
|
export declare type AgentWorkspaceTeamSchedules = {
|
|
7376
7614
|
__typename?: 'AgentWorkspaceTeamSchedules';
|
|
7377
7615
|
hasSchedules: Scalars['Boolean']['output'];
|
|
@@ -7762,6 +8000,7 @@ export declare enum ApiGroup {
|
|
|
7762
8000
|
AgentStudio = "AGENT_STUDIO",
|
|
7763
8001
|
AppRecommendations = "APP_RECOMMENDATIONS",
|
|
7764
8002
|
AtlassianStudio = "ATLASSIAN_STUDIO",
|
|
8003
|
+
Avp = "AVP",
|
|
7765
8004
|
Caas = "CAAS",
|
|
7766
8005
|
CloudAdmin = "CLOUD_ADMIN",
|
|
7767
8006
|
CollaborationGraph = "COLLABORATION_GRAPH",
|
|
@@ -14451,19 +14690,6 @@ export declare enum CcpAllowancePoolAllocationDetailsType {
|
|
|
14451
14690
|
Custom = "CUSTOM",
|
|
14452
14691
|
Default = "DEFAULT"
|
|
14453
14692
|
}
|
|
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
14693
|
export declare type CcpAllowancePoolAllocationsResponse = {
|
|
14468
14694
|
__typename?: 'CcpAllowancePoolAllocationsResponse';
|
|
14469
14695
|
allowance?: Maybe<Scalars['Float']['output']>;
|
|
@@ -17745,7 +17971,7 @@ export declare type CommerceExpAchInfo = {
|
|
|
17745
17971
|
routingNumber: Scalars['String']['output'];
|
|
17746
17972
|
valid: Scalars['Boolean']['output'];
|
|
17747
17973
|
};
|
|
17748
|
-
export declare type CommerceExpAchPaymentMethod =
|
|
17974
|
+
export declare type CommerceExpAchPaymentMethod = CommerceExpPaymentMethod & {
|
|
17749
17975
|
__typename?: 'CommerceExpAchPaymentMethod';
|
|
17750
17976
|
ach?: Maybe<CommerceExpAchInfo>;
|
|
17751
17977
|
ari: Scalars['ID']['output'];
|
|
@@ -18125,7 +18351,7 @@ export declare type CommerceExpCardDetails = {
|
|
|
18125
18351
|
last4?: Maybe<Scalars['String']['output']>;
|
|
18126
18352
|
postalCode?: Maybe<Scalars['String']['output']>;
|
|
18127
18353
|
};
|
|
18128
|
-
export declare type CommerceExpCardPaymentMethod =
|
|
18354
|
+
export declare type CommerceExpCardPaymentMethod = CommerceExpPaymentMethod & {
|
|
18129
18355
|
__typename?: 'CommerceExpCardPaymentMethod';
|
|
18130
18356
|
ari: Scalars['ID']['output'];
|
|
18131
18357
|
card?: Maybe<CommerceExpCardDetails>;
|
|
@@ -18165,7 +18391,7 @@ export declare type CommerceExpCcpCreditNote = {
|
|
|
18165
18391
|
refundType?: Maybe<CommerceExpCreditNoteDtoRefundTypeEnum>;
|
|
18166
18392
|
version?: Maybe<Scalars['Int']['output']>;
|
|
18167
18393
|
};
|
|
18168
|
-
export declare type CommerceExpCcpEntitlement =
|
|
18394
|
+
export declare type CommerceExpCcpEntitlement = {
|
|
18169
18395
|
__typename?: 'CommerceExpCcpEntitlement';
|
|
18170
18396
|
accountModificationForBac?: Maybe<Array<Maybe<CommerceExpEntitlementAccountModificationForBac>>>;
|
|
18171
18397
|
actions?: Maybe<CommerceExpEntitlementActions>;
|
|
@@ -18335,7 +18561,7 @@ export declare type CommerceExpCcpInvoice = {
|
|
|
18335
18561
|
total?: Maybe<Scalars['Float']['output']>;
|
|
18336
18562
|
uncollectibleAt?: Maybe<Scalars['Float']['output']>;
|
|
18337
18563
|
};
|
|
18338
|
-
export declare type CommerceExpCcpInvoiceGroup =
|
|
18564
|
+
export declare type CommerceExpCcpInvoiceGroup = {
|
|
18339
18565
|
__typename?: 'CommerceExpCcpInvoiceGroup';
|
|
18340
18566
|
active?: Maybe<Scalars['Boolean']['output']>;
|
|
18341
18567
|
billToParty?: Maybe<CommerceExpBillToParty>;
|
|
@@ -18528,7 +18754,7 @@ export declare enum CommerceExpCcpOfferingStatus {
|
|
|
18528
18754
|
Draft = "DRAFT",
|
|
18529
18755
|
Expired = "EXPIRED"
|
|
18530
18756
|
}
|
|
18531
|
-
export declare type CommerceExpCcpOrder = CommerceExpCcpOrderBase &
|
|
18757
|
+
export declare type CommerceExpCcpOrder = CommerceExpCcpOrderBase & {
|
|
18532
18758
|
__typename?: 'CommerceExpCcpOrder';
|
|
18533
18759
|
additionalTriggeredOrders?: Maybe<Array<Maybe<CommerceExpCcpOrder>>>;
|
|
18534
18760
|
createdDate?: Maybe<Scalars['Float']['output']>;
|
|
@@ -18595,7 +18821,7 @@ export declare type CommerceExpCcpPreDunning = {
|
|
|
18595
18821
|
endAt?: Maybe<Scalars['Float']['output']>;
|
|
18596
18822
|
preDunningAttempts?: Maybe<Array<Maybe<CommerceExpPreDunningAttempt>>>;
|
|
18597
18823
|
};
|
|
18598
|
-
export declare type CommerceExpCcpPricingPlan =
|
|
18824
|
+
export declare type CommerceExpCcpPricingPlan = {
|
|
18599
18825
|
__typename?: 'CommerceExpCcpPricingPlan';
|
|
18600
18826
|
activatedWithReason?: Maybe<CommerceExpPricingPlanActivatedReason>;
|
|
18601
18827
|
currency?: Maybe<CommerceExpPricingPlanCurrency>;
|
|
@@ -18631,7 +18857,7 @@ export declare enum CommerceExpCcpPricingType {
|
|
|
18631
18857
|
LimitedFree = "LIMITED_FREE",
|
|
18632
18858
|
Paid = "PAID"
|
|
18633
18859
|
}
|
|
18634
|
-
export declare type CommerceExpCcpProduct =
|
|
18860
|
+
export declare type CommerceExpCcpProduct = {
|
|
18635
18861
|
__typename?: 'CommerceExpCcpProduct';
|
|
18636
18862
|
chargeElements?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
18637
18863
|
id: Scalars['ID']['output'];
|
|
@@ -18754,7 +18980,7 @@ export declare type CommerceExpCcpQueryTransactionAccountArgs = {
|
|
|
18754
18980
|
export declare type CommerceExpCcpQueryTransactionAccountsArgs = {
|
|
18755
18981
|
ids: Array<Scalars['ID']['input']>;
|
|
18756
18982
|
};
|
|
18757
|
-
export declare type CommerceExpCcpQuote =
|
|
18983
|
+
export declare type CommerceExpCcpQuote = {
|
|
18758
18984
|
__typename?: 'CommerceExpCcpQuote';
|
|
18759
18985
|
aggregatedDiscountTotalForBAC?: Maybe<Scalars['Float']['output']>;
|
|
18760
18986
|
aggregatedTaxItemsForBAC?: Maybe<Array<CommerceExpTaxItemsResponse>>;
|
|
@@ -18877,7 +19103,7 @@ export declare type CommerceExpCcpSubscriptionTrial = {
|
|
|
18877
19103
|
pricingPlanId?: Maybe<Scalars['String']['output']>;
|
|
18878
19104
|
startTimestamp?: Maybe<Scalars['Float']['output']>;
|
|
18879
19105
|
};
|
|
18880
|
-
export declare type CommerceExpCcpTransactionAccount =
|
|
19106
|
+
export declare type CommerceExpCcpTransactionAccount = {
|
|
18881
19107
|
__typename?: 'CommerceExpCcpTransactionAccount';
|
|
18882
19108
|
aggCcpTransactionAccount?: Maybe<CcpTransactionAccount>;
|
|
18883
19109
|
billToParty?: Maybe<CommerceExpBillToParty>;
|
|
@@ -19422,7 +19648,7 @@ export declare type CommerceExpDefaultAllowance = {
|
|
|
19422
19648
|
type?: Maybe<CommerceExpAllowanceType>;
|
|
19423
19649
|
unit?: Maybe<Scalars['String']['output']>;
|
|
19424
19650
|
};
|
|
19425
|
-
export declare type CommerceExpDeferredPaymentMethod =
|
|
19651
|
+
export declare type CommerceExpDeferredPaymentMethod = CommerceExpPaymentMethod & {
|
|
19426
19652
|
__typename?: 'CommerceExpDeferredPaymentMethod';
|
|
19427
19653
|
ari: Scalars['ID']['output'];
|
|
19428
19654
|
currency?: Maybe<Scalars['String']['output']>;
|
|
@@ -19957,7 +20183,7 @@ export declare type CommerceExpInvoiceList = {
|
|
|
19957
20183
|
invoices?: Maybe<Array<Maybe<CommerceExpCcpInvoice>>>;
|
|
19958
20184
|
};
|
|
19959
20185
|
export declare type CommerceExpInvoiceOrNoPermissions = CommerceExpInvoiceErrorObject | CommerceExpInvoiceList;
|
|
19960
|
-
export declare type CommerceExpInvoiceRequest =
|
|
20186
|
+
export declare type CommerceExpInvoiceRequest = {
|
|
19961
20187
|
__typename?: 'CommerceExpInvoiceRequest';
|
|
19962
20188
|
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
19963
20189
|
currency?: Maybe<Scalars['String']['output']>;
|
|
@@ -20189,9 +20415,6 @@ export declare type CommerceExpMutationPayload = {
|
|
|
20189
20415
|
errors?: Maybe<Array<MutationError>>;
|
|
20190
20416
|
success: Scalars['Boolean']['output'];
|
|
20191
20417
|
};
|
|
20192
|
-
export declare type CommerceExpNode = {
|
|
20193
|
-
id: Scalars['ID']['output'];
|
|
20194
|
-
};
|
|
20195
20418
|
export declare type CommerceExpNoteDto = {
|
|
20196
20419
|
__typename?: 'CommerceExpNoteDto';
|
|
20197
20420
|
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
@@ -20527,7 +20750,7 @@ export declare enum CommerceExpOrderType {
|
|
|
20527
20750
|
TransitionOrder = "TRANSITION_ORDER"
|
|
20528
20751
|
}
|
|
20529
20752
|
export declare type CommerceExpOrgItem = CommerceExpContainerQuoteLineItem | CommerceExpGroupedBySiteQuoteLineItem | CommerceExpSingleQuoteLineItem;
|
|
20530
|
-
export declare type CommerceExpOrganisation =
|
|
20753
|
+
export declare type CommerceExpOrganisation = {
|
|
20531
20754
|
__typename?: 'CommerceExpOrganisation';
|
|
20532
20755
|
id: Scalars['ID']['output'];
|
|
20533
20756
|
name?: Maybe<Scalars['String']['output']>;
|
|
@@ -20642,7 +20865,7 @@ export declare enum CommerceExpPaymentStatusType {
|
|
|
20642
20865
|
RequiresAction = "REQUIRES_ACTION",
|
|
20643
20866
|
RequiresDifferentPaymentMethod = "REQUIRES_DIFFERENT_PAYMENT_METHOD"
|
|
20644
20867
|
}
|
|
20645
|
-
export declare type CommerceExpPaypalPaymentMethod =
|
|
20868
|
+
export declare type CommerceExpPaypalPaymentMethod = CommerceExpPaymentMethod & {
|
|
20646
20869
|
__typename?: 'CommerceExpPaypalPaymentMethod';
|
|
20647
20870
|
ari: Scalars['ID']['output'];
|
|
20648
20871
|
currency?: Maybe<Scalars['String']['output']>;
|
|
@@ -21201,7 +21424,7 @@ export declare type CommerceExpSetupIntentPayload = CommerceExpMutationPayload &
|
|
|
21201
21424
|
setupIntent?: Maybe<CommerceExpSetupIntent>;
|
|
21202
21425
|
success: Scalars['Boolean']['output'];
|
|
21203
21426
|
};
|
|
21204
|
-
export declare type CommerceExpShipToParty =
|
|
21427
|
+
export declare type CommerceExpShipToParty = {
|
|
21205
21428
|
__typename?: 'CommerceExpShipToParty';
|
|
21206
21429
|
createdAt?: Maybe<Scalars['Float']['output']>;
|
|
21207
21430
|
id: Scalars['ID']['output'];
|
|
@@ -27141,9 +27364,13 @@ export declare type ConfluenceApprovalAgentPayload = Payload & {
|
|
|
27141
27364
|
};
|
|
27142
27365
|
export declare type ConfluenceApprovalReviewerConfig = {
|
|
27143
27366
|
__typename?: 'ConfluenceApprovalReviewerConfig';
|
|
27144
|
-
|
|
27367
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
27145
27368
|
reviewers: Array<Maybe<ConfluenceSpaceApprovalReviewerEntry>>;
|
|
27146
27369
|
};
|
|
27370
|
+
export declare type ConfluenceApprovalReviewerConfigInput = {
|
|
27371
|
+
isEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27372
|
+
reviewers?: InputMaybe<Array<InputMaybe<ConfluenceContentApprovalsSpaceSettingReviewerInput>>>;
|
|
27373
|
+
};
|
|
27147
27374
|
export declare enum ConfluenceApprovalTransitionType {
|
|
27148
27375
|
Directed = "DIRECTED",
|
|
27149
27376
|
Initial = "INITIAL"
|
|
@@ -27766,10 +27993,10 @@ export declare type ConfluenceContentApprovalsSpaceSettingConfig = {
|
|
|
27766
27993
|
enforcedApprovalReviewerConfig: ConfluenceApprovalReviewerConfig;
|
|
27767
27994
|
};
|
|
27768
27995
|
export declare type ConfluenceContentApprovalsSpaceSettingConfigInput = {
|
|
27769
|
-
|
|
27996
|
+
defaultReviewerConfig?: InputMaybe<ConfluenceApprovalReviewerConfigInput>;
|
|
27770
27997
|
disallowFirstPublish?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27771
|
-
enabled
|
|
27772
|
-
|
|
27998
|
+
enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
27999
|
+
enforcedReviewerConfig?: InputMaybe<ConfluenceApprovalReviewerConfigInput>;
|
|
27773
28000
|
};
|
|
27774
28001
|
export declare type ConfluenceContentApprovalsSpaceSettingConfigPayload = Payload & {
|
|
27775
28002
|
__typename?: 'ConfluenceContentApprovalsSpaceSettingConfigPayload';
|
|
@@ -27885,6 +28112,7 @@ export declare type ConfluenceContentModified = {
|
|
|
27885
28112
|
inlineReactionAdded?: Maybe<ConfluenceInlineReactionAdded>;
|
|
27886
28113
|
inlineReactionHighlightDeleted?: Maybe<ConfluenceInlineReactionHighlightDeleted>;
|
|
27887
28114
|
inlineReactionRemoved?: Maybe<ConfluenceInlineReactionRemoved>;
|
|
28115
|
+
markdownModeUpdated?: Maybe<ConfluenceMarkdownModeUpdated>;
|
|
27888
28116
|
pageBlogified?: Maybe<ConfluencePageBlogified>;
|
|
27889
28117
|
pageMigrated?: Maybe<ConfluencePageMigrated>;
|
|
27890
28118
|
pageMoved?: Maybe<ConfluencePageMoved>;
|
|
@@ -28587,6 +28815,10 @@ export declare type ConfluenceCustomPageSpaceSettings = {
|
|
|
28587
28815
|
footerText?: Maybe<Scalars['String']['output']>;
|
|
28588
28816
|
headerText?: Maybe<Scalars['String']['output']>;
|
|
28589
28817
|
};
|
|
28818
|
+
export declare type ConfluenceCutoverDate = {
|
|
28819
|
+
__typename?: 'ConfluenceCutoverDate';
|
|
28820
|
+
date?: Maybe<Scalars['String']['output']>;
|
|
28821
|
+
};
|
|
28590
28822
|
export declare type ConfluenceCutoverRoleConfig = {
|
|
28591
28823
|
__typename?: 'ConfluenceCutoverRoleConfig';
|
|
28592
28824
|
eligibleRoles: Array<Maybe<SpaceRole>>;
|
|
@@ -29014,6 +29246,7 @@ export declare type ConfluenceExtensionPrincipal = {
|
|
|
29014
29246
|
id?: Maybe<Scalars['ID']['output']>;
|
|
29015
29247
|
};
|
|
29016
29248
|
export declare type ConfluenceExtensionRenderingContextInput = {
|
|
29249
|
+
attachmentId?: InputMaybe<Scalars['String']['input']>;
|
|
29017
29250
|
contentId?: InputMaybe<Scalars['Long']['input']>;
|
|
29018
29251
|
spaceId?: InputMaybe<Scalars['Long']['input']>;
|
|
29019
29252
|
spaceKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -29716,6 +29949,10 @@ export declare type ConfluenceMarkdownDroppedElement = {
|
|
|
29716
29949
|
detail?: Maybe<Scalars['String']['output']>;
|
|
29717
29950
|
occurrences?: Maybe<Scalars['Int']['output']>;
|
|
29718
29951
|
};
|
|
29952
|
+
export declare type ConfluenceMarkdownModeUpdated = {
|
|
29953
|
+
__typename?: 'ConfluenceMarkdownModeUpdated';
|
|
29954
|
+
isMarkdownMode?: Maybe<Scalars['Boolean']['output']>;
|
|
29955
|
+
};
|
|
29719
29956
|
export declare type ConfluenceMediaTokenData = {
|
|
29720
29957
|
__typename?: 'ConfluenceMediaTokenData';
|
|
29721
29958
|
clientId: Scalars['String']['output'];
|
|
@@ -31962,6 +32199,21 @@ export declare type ConfluenceRoleRecommendation = {
|
|
|
31962
32199
|
action: ConfluenceRecommendedAction;
|
|
31963
32200
|
roleIds?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
|
31964
32201
|
};
|
|
32202
|
+
export declare enum ConfluenceRolesHubTransitionStep {
|
|
32203
|
+
AssignByUserOrGroup = "ASSIGN_BY_USER_OR_GROUP",
|
|
32204
|
+
AuditUserAccess = "AUDIT_USER_ACCESS",
|
|
32205
|
+
ChooseFallbackRole = "CHOOSE_FALLBACK_ROLE",
|
|
32206
|
+
CreateCustomRoles = "CREATE_CUSTOM_ROLES",
|
|
32207
|
+
EnforceRoleBasedAccess = "ENFORCE_ROLE_BASED_ACCESS",
|
|
32208
|
+
ReplaceLegacyCombinations = "REPLACE_LEGACY_COMBINATIONS",
|
|
32209
|
+
UpdateDefaultAccess = "UPDATE_DEFAULT_ACCESS",
|
|
32210
|
+
ViewPermissionsCombinations = "VIEW_PERMISSIONS_COMBINATIONS"
|
|
32211
|
+
}
|
|
32212
|
+
export declare type ConfluenceRolesHubTransitionStepState = {
|
|
32213
|
+
__typename?: 'ConfluenceRolesHubTransitionStepState';
|
|
32214
|
+
completed: Scalars['Boolean']['output'];
|
|
32215
|
+
step: ConfluenceRolesHubTransitionStep;
|
|
32216
|
+
};
|
|
31965
32217
|
export declare type ConfluenceSaveOrUpdateSpaceOwnerInput = {
|
|
31966
32218
|
ownerId: Scalars['ID']['input'];
|
|
31967
32219
|
spaceId: Scalars['Long']['input'];
|
|
@@ -32051,6 +32303,12 @@ export declare type ConfluenceSetContentGeneralAccessModePayload = Payload & {
|
|
|
32051
32303
|
errors?: Maybe<Array<MutationError>>;
|
|
32052
32304
|
success: Scalars['Boolean']['output'];
|
|
32053
32305
|
};
|
|
32306
|
+
export declare type ConfluenceSetRolesHubTransitionStepPayload = Payload & {
|
|
32307
|
+
__typename?: 'ConfluenceSetRolesHubTransitionStepPayload';
|
|
32308
|
+
errors?: Maybe<Array<MutationError>>;
|
|
32309
|
+
steps?: Maybe<Array<Maybe<ConfluenceRolesHubTransitionStepState>>>;
|
|
32310
|
+
success: Scalars['Boolean']['output'];
|
|
32311
|
+
};
|
|
32054
32312
|
export declare type ConfluenceSetSubCalendarReminderInput = {
|
|
32055
32313
|
isReminder: Scalars['Boolean']['input'];
|
|
32056
32314
|
subCalendarId: Scalars['ID']['input'];
|
|
@@ -32142,6 +32400,33 @@ export declare enum ConfluenceShareableLinkSpacesByCriteriaOrder {
|
|
|
32142
32400
|
ActiveLinks = "ACTIVE_LINKS",
|
|
32143
32401
|
Name = "NAME"
|
|
32144
32402
|
}
|
|
32403
|
+
export declare type ConfluenceShortcutSmartLink = {
|
|
32404
|
+
__typename?: 'ConfluenceShortcutSmartLink';
|
|
32405
|
+
canView?: Maybe<Scalars['Boolean']['output']>;
|
|
32406
|
+
customTitle?: Maybe<Scalars['String']['output']>;
|
|
32407
|
+
emojiTitle?: Maybe<Scalars['String']['output']>;
|
|
32408
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
32409
|
+
id: Scalars['Long']['output'];
|
|
32410
|
+
position: Scalars['Int']['output'];
|
|
32411
|
+
product?: Maybe<Scalars['String']['output']>;
|
|
32412
|
+
resolved?: Maybe<Scalars['Boolean']['output']>;
|
|
32413
|
+
resourceType?: Maybe<Scalars['String']['output']>;
|
|
32414
|
+
styleClass?: Maybe<Scalars['String']['output']>;
|
|
32415
|
+
subType?: Maybe<Scalars['String']['output']>;
|
|
32416
|
+
title?: Maybe<Scalars['String']['output']>;
|
|
32417
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
32418
|
+
};
|
|
32419
|
+
export declare type ConfluenceShortcutSmartLinkConnection = {
|
|
32420
|
+
__typename?: 'ConfluenceShortcutSmartLinkConnection';
|
|
32421
|
+
edges?: Maybe<Array<Maybe<ConfluenceShortcutSmartLinkEdge>>>;
|
|
32422
|
+
nodes?: Maybe<Array<Maybe<ConfluenceShortcutSmartLink>>>;
|
|
32423
|
+
pageInfo: ConfluencePageInfo;
|
|
32424
|
+
};
|
|
32425
|
+
export declare type ConfluenceShortcutSmartLinkEdge = {
|
|
32426
|
+
__typename?: 'ConfluenceShortcutSmartLinkEdge';
|
|
32427
|
+
cursor: Scalars['String']['output'];
|
|
32428
|
+
node?: Maybe<ConfluenceShortcutSmartLink>;
|
|
32429
|
+
};
|
|
32145
32430
|
export declare type ConfluenceSiteConfiguration = {
|
|
32146
32431
|
__typename?: 'ConfluenceSiteConfiguration';
|
|
32147
32432
|
attachmentSettings?: Maybe<ConfluenceAttachmentSettings>;
|
|
@@ -32162,6 +32447,7 @@ export declare type ConfluenceSiteConfiguration = {
|
|
|
32162
32447
|
isEditorFullWidthEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
32163
32448
|
isEmailNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
32164
32449
|
isExternalConnectionEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
32450
|
+
isHideTitleInUrlEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
32165
32451
|
isLikesEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
32166
32452
|
isLoomEntryPointsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
32167
32453
|
isMentionReminderSlackNotificationEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -32317,6 +32603,7 @@ export declare type ConfluenceSpaceApprovalReviewerEntry = {
|
|
|
32317
32603
|
__typename?: 'ConfluenceSpaceApprovalReviewerEntry';
|
|
32318
32604
|
principalId: Scalars['String']['output'];
|
|
32319
32605
|
principalType: ConfluencePrincipalType;
|
|
32606
|
+
user?: Maybe<AtlassianUser>;
|
|
32320
32607
|
};
|
|
32321
32608
|
export declare type ConfluenceSpaceConnection = {
|
|
32322
32609
|
__typename?: 'ConfluenceSpaceConnection';
|
|
@@ -33470,6 +33757,7 @@ export declare type ConfluenceUpdateSiteSecurityConfigurationInput = {
|
|
|
33470
33757
|
isAddWildcardsToUserAndGroupSearchesEnabled: Scalars['Boolean']['input'];
|
|
33471
33758
|
isAnonymousAccessToRemoteApiEnabled: Scalars['Boolean']['input'];
|
|
33472
33759
|
isElevatedSecurityCheckEnabled: Scalars['Boolean']['input'];
|
|
33760
|
+
isHideTitleInUrlEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33473
33761
|
isNofollowExternalLinksEnabled: Scalars['Boolean']['input'];
|
|
33474
33762
|
isPrivacyModeEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
33475
33763
|
isXsrfAddCommentsEnabled: Scalars['Boolean']['input'];
|
|
@@ -35070,6 +35358,8 @@ export declare type ConvoAiJiraSimilarWorkItemsInput = {
|
|
|
35070
35358
|
};
|
|
35071
35359
|
export declare type ConvoAiJiraSimilarWorkItemsSimilarityConfig = {
|
|
35072
35360
|
minimumSimScore?: InputMaybe<Scalars['Float']['input']>;
|
|
35361
|
+
topK?: InputMaybe<Scalars['Int']['input']>;
|
|
35362
|
+
useThreshold?: InputMaybe<Scalars['Boolean']['input']>;
|
|
35073
35363
|
};
|
|
35074
35364
|
export declare type ConvoAiMessageArtifact = {
|
|
35075
35365
|
__typename?: 'ConvoAiMessageArtifact';
|
|
@@ -37264,6 +37554,7 @@ export declare type CsmAiWidgetBrandingTheme = {
|
|
|
37264
37554
|
icon: CsmAiWidgetIcon;
|
|
37265
37555
|
radius: CsmAiWidgetBrandingRadius;
|
|
37266
37556
|
space: CsmAiWidgetBrandingSpaceVariant;
|
|
37557
|
+
welcomeMessage?: Maybe<Scalars['String']['output']>;
|
|
37267
37558
|
};
|
|
37268
37559
|
export declare type CsmAiWidgetBrandingThemeUpdateInput = {
|
|
37269
37560
|
attribution?: InputMaybe<CsmAiWidgetBrandingAttributionInput>;
|
|
@@ -37272,6 +37563,7 @@ export declare type CsmAiWidgetBrandingThemeUpdateInput = {
|
|
|
37272
37563
|
icon?: InputMaybe<CsmAiWidgetIconUpdateInput>;
|
|
37273
37564
|
radius: CsmAiWidgetBrandingRadius;
|
|
37274
37565
|
space: CsmAiWidgetBrandingSpaceVariant;
|
|
37566
|
+
welcomeMessage?: InputMaybe<Scalars['String']['input']>;
|
|
37275
37567
|
};
|
|
37276
37568
|
export declare type CsmAiWidgetClientKey = {
|
|
37277
37569
|
__typename?: 'CsmAiWidgetClientKey';
|
|
@@ -37619,6 +37911,7 @@ export declare type CustomerServiceAiSuggestionsInput = {
|
|
|
37619
37911
|
export declare type CustomerServiceAiSuggestionsQueryResult = CustomerServiceAiSuggestionsResponse | QueryError;
|
|
37620
37912
|
export declare type CustomerServiceAiSuggestionsResponse = {
|
|
37621
37913
|
__typename?: 'CustomerServiceAiSuggestionsResponse';
|
|
37914
|
+
id: Scalars['ID']['output'];
|
|
37622
37915
|
requestId: Scalars['ID']['output'];
|
|
37623
37916
|
status: CustomerServiceAiResultStatus;
|
|
37624
37917
|
suggestion?: Maybe<CustomerServiceAiSuggestion>;
|
|
@@ -38000,6 +38293,29 @@ export declare type CustomerServiceDeleteCustomerPayload = Payload & {
|
|
|
38000
38293
|
errors?: Maybe<Array<MutationError>>;
|
|
38001
38294
|
success: Scalars['Boolean']['output'];
|
|
38002
38295
|
};
|
|
38296
|
+
export declare type CustomerServiceEmailChannelConfig = {
|
|
38297
|
+
__typename?: 'CustomerServiceEmailChannelConfig';
|
|
38298
|
+
createdAt?: Maybe<Scalars['DateTime']['output']>;
|
|
38299
|
+
enabledBy?: Maybe<Scalars['String']['output']>;
|
|
38300
|
+
helpCenterId: Scalars['ID']['output'];
|
|
38301
|
+
id: Scalars['ID']['output'];
|
|
38302
|
+
isEnabled: Scalars['Boolean']['output'];
|
|
38303
|
+
replyToAddress?: Maybe<Scalars['String']['output']>;
|
|
38304
|
+
supportEmail?: Maybe<Scalars['String']['output']>;
|
|
38305
|
+
updatedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
38306
|
+
};
|
|
38307
|
+
export declare type CustomerServiceEmailChannelConfigQueryResult = CustomerServiceEmailChannelConfig | QueryError;
|
|
38308
|
+
export declare type CustomerServiceEmailChannelConfigUpsertInput = {
|
|
38309
|
+
isEnabled: Scalars['Boolean']['input'];
|
|
38310
|
+
replyToAddress?: InputMaybe<Scalars['String']['input']>;
|
|
38311
|
+
supportEmail?: InputMaybe<Scalars['String']['input']>;
|
|
38312
|
+
};
|
|
38313
|
+
export declare type CustomerServiceEmailChannelConfigUpsertPayload = {
|
|
38314
|
+
__typename?: 'CustomerServiceEmailChannelConfigUpsertPayload';
|
|
38315
|
+
emailChannelConfig?: Maybe<CustomerServiceEmailChannelConfig>;
|
|
38316
|
+
errors?: Maybe<Array<MutationError>>;
|
|
38317
|
+
success: Scalars['Boolean']['output'];
|
|
38318
|
+
};
|
|
38003
38319
|
export declare type CustomerServiceEntitledEntity = CustomerServiceIndividual | CustomerServiceOrganization;
|
|
38004
38320
|
export declare type CustomerServiceEntitlement = Node & {
|
|
38005
38321
|
__typename?: 'CustomerServiceEntitlement';
|
|
@@ -39728,6 +40044,7 @@ export declare type DevAiAutodevNextCreateWorkstreamInput = {
|
|
|
39728
40044
|
members?: InputMaybe<Array<DevAiAutodevNextMemberItemInput>>;
|
|
39729
40045
|
name: Scalars['String']['input'];
|
|
39730
40046
|
projects?: InputMaybe<Array<DevAiAutodevNextProjectItemInput>>;
|
|
40047
|
+
scanTargets?: InputMaybe<Array<DevAiAutodevNextScanTargetItemInput>>;
|
|
39731
40048
|
settings?: InputMaybe<DevAiAutodevNextWorkstreamSettingsInput>;
|
|
39732
40049
|
status?: InputMaybe<DevAiAutodevNextWorkstreamStatus>;
|
|
39733
40050
|
};
|
|
@@ -39856,6 +40173,10 @@ export declare type DevAiAutodevNextScanScheduleInput = {
|
|
|
39856
40173
|
dayOfWeek: DevAiAutodevNextDayOfWeek;
|
|
39857
40174
|
timezone?: InputMaybe<Scalars['String']['input']>;
|
|
39858
40175
|
};
|
|
40176
|
+
export declare type DevAiAutodevNextScanTargetItemInput = {
|
|
40177
|
+
repositoryAris: Array<Scalars['ID']['input']>;
|
|
40178
|
+
standardId: Scalars['ID']['input'];
|
|
40179
|
+
};
|
|
39859
40180
|
export declare type DevAiAutodevNextSendWorkstreamNudgesInput = {
|
|
39860
40181
|
cloudId: Scalars['ID']['input'];
|
|
39861
40182
|
message?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -41120,6 +41441,7 @@ export declare type DevConsoleDeveloperSpaceResourceTotals = {
|
|
|
41120
41441
|
llmInput?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
41121
41442
|
llmOutput?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
41122
41443
|
logsWrite?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
41444
|
+
osRequests?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
41123
41445
|
sqlCompute?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
41124
41446
|
sqlRequests?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
41125
41447
|
sqlStorage?: Maybe<DevConsoleDeveloperSpaceResourceTotal>;
|
|
@@ -41328,6 +41650,7 @@ export declare enum DevConsoleResource {
|
|
|
41328
41650
|
LlmInput = "LLM_INPUT",
|
|
41329
41651
|
LlmOutput = "LLM_OUTPUT",
|
|
41330
41652
|
LogsWrite = "LOGS_WRITE",
|
|
41653
|
+
OsRequests = "OS_REQUESTS",
|
|
41331
41654
|
SqlCompute = "SQL_COMPUTE",
|
|
41332
41655
|
SqlRequests = "SQL_REQUESTS",
|
|
41333
41656
|
SqlStorage = "SQL_STORAGE"
|
|
@@ -41349,6 +41672,7 @@ export declare type DevConsoleResourceUsageData = {
|
|
|
41349
41672
|
llmInput?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
41350
41673
|
llmOutput?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
41351
41674
|
logsWrite?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
41675
|
+
osRequests?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
41352
41676
|
sqlCompute?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
41353
41677
|
sqlRequests?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
41354
41678
|
sqlStorage?: Maybe<Array<DevConsoleResourceUsage>>;
|
|
@@ -42951,6 +43275,12 @@ export declare type EarliestOnboardedProjectForCloudId = {
|
|
|
42951
43275
|
datetime?: Maybe<Scalars['String']['output']>;
|
|
42952
43276
|
template?: Maybe<Scalars['String']['output']>;
|
|
42953
43277
|
};
|
|
43278
|
+
export declare type EcosystemAddonInstallationUnit = {
|
|
43279
|
+
__typename?: 'EcosystemAddonInstallationUnit';
|
|
43280
|
+
installationId: Scalars['ID']['output'];
|
|
43281
|
+
orgId?: Maybe<Scalars['ID']['output']>;
|
|
43282
|
+
unitId?: Maybe<Scalars['ID']['output']>;
|
|
43283
|
+
};
|
|
42954
43284
|
export declare type EcosystemApp = App | EcosystemConnectApp;
|
|
42955
43285
|
export declare type EcosystemAppInstallationConfigExtension = {
|
|
42956
43286
|
__typename?: 'EcosystemAppInstallationConfigExtension';
|
|
@@ -43346,6 +43676,7 @@ export declare type EcosystemQuery = {
|
|
|
43346
43676
|
globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
|
|
43347
43677
|
marketplaceData?: Maybe<EcosystemMarketplaceData>;
|
|
43348
43678
|
rollingReleases?: Maybe<EcosystemRollingReleaseConnection>;
|
|
43679
|
+
unitsByInstallationId?: Maybe<Array<Maybe<EcosystemAddonInstallationUnit>>>;
|
|
43349
43680
|
unitsForOrg?: Maybe<EcosystemUnitsForOrgResponse>;
|
|
43350
43681
|
userAccess?: Maybe<UserAccess>;
|
|
43351
43682
|
userGrants?: Maybe<UserGrantConnection>;
|
|
@@ -43433,6 +43764,9 @@ export declare type EcosystemQueryRollingReleasesArgs = {
|
|
|
43433
43764
|
environmentId?: InputMaybe<Scalars['ID']['input']>;
|
|
43434
43765
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
43435
43766
|
};
|
|
43767
|
+
export declare type EcosystemQueryUnitsByInstallationIdArgs = {
|
|
43768
|
+
installationIds: Array<Scalars['ID']['input']>;
|
|
43769
|
+
};
|
|
43436
43770
|
export declare type EcosystemQueryUnitsForOrgArgs = {
|
|
43437
43771
|
orgId: Scalars['ID']['input'];
|
|
43438
43772
|
};
|
|
@@ -45003,6 +45337,7 @@ export declare type ExternalMessage = Node & {
|
|
|
45003
45337
|
lastUpdated?: Maybe<Scalars['String']['output']>;
|
|
45004
45338
|
lastUpdatedBy?: Maybe<ExternalUser>;
|
|
45005
45339
|
links?: Maybe<Array<Maybe<ExternalMessageLink>>>;
|
|
45340
|
+
messageType?: Maybe<Scalars['String']['output']>;
|
|
45006
45341
|
owners?: Maybe<Array<Maybe<ExternalUser>>>;
|
|
45007
45342
|
parent?: Maybe<ExternalEntity>;
|
|
45008
45343
|
parentId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -48757,6 +49092,9 @@ export declare type GraphIntegrationSkillProductItem = GraphIntegrationSkillDime
|
|
|
48757
49092
|
iconUrl: Scalars['String']['output'];
|
|
48758
49093
|
id: Scalars['String']['output'];
|
|
48759
49094
|
};
|
|
49095
|
+
export declare enum GraphIntegrationSkillSurface {
|
|
49096
|
+
RovoAgents = "ROVO_AGENTS"
|
|
49097
|
+
}
|
|
48760
49098
|
export declare type GraphIntegrationSkillTool = {
|
|
48761
49099
|
__typename?: 'GraphIntegrationSkillTool';
|
|
48762
49100
|
id: Scalars['String']['output'];
|
|
@@ -51592,6 +51930,8 @@ export declare type GraphStore = {
|
|
|
51592
51930
|
atlasProjectLinksJiraSpaceInverse?: Maybe<GraphStoreSimplifiedAtlasProjectLinksJiraSpaceInverseConnection>;
|
|
51593
51931
|
atlasProjectTrackedOnJiraWorkItem?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemConnection>;
|
|
51594
51932
|
atlasProjectTrackedOnJiraWorkItemInverse?: Maybe<GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseConnection>;
|
|
51933
|
+
atlassianTeamMergedIntoAtlassianTeam?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection>;
|
|
51934
|
+
atlassianTeamMergedIntoAtlassianTeamInverse?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection>;
|
|
51595
51935
|
atlassianUserApprovesConfluenceApprovalInverse?: Maybe<GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection>;
|
|
51596
51936
|
atlassianUserCreatedAtlassianGoalUpdate?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateConnection>;
|
|
51597
51937
|
atlassianUserCreatedAtlassianGoalUpdateInverse?: Maybe<GraphStoreSimplifiedAtlassianUserCreatedAtlassianGoalUpdateInverseConnection>;
|
|
@@ -52479,6 +52819,7 @@ export declare type GraphStore = {
|
|
|
52479
52819
|
userMentionedInConversationInverse?: Maybe<GraphStoreSimplifiedUserMentionedInConversationInverseConnection>;
|
|
52480
52820
|
userMentionedInMessage?: Maybe<GraphStoreSimplifiedUserMentionedInMessageConnection>;
|
|
52481
52821
|
userMentionedInMessageInverse?: Maybe<GraphStoreSimplifiedUserMentionedInMessageInverseConnection>;
|
|
52822
|
+
userMentionedInThirdPartyDocumentInverse?: Maybe<GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseConnection>;
|
|
52482
52823
|
userMentionedInVideoComment?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentConnection>;
|
|
52483
52824
|
userMentionedInVideoCommentInverse?: Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentInverseConnection>;
|
|
52484
52825
|
userOwnedBranch?: Maybe<GraphStoreSimplifiedUserOwnedBranchConnection>;
|
|
@@ -53146,6 +53487,22 @@ export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemInverseArgs = {
|
|
|
53146
53487
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53147
53488
|
sort?: InputMaybe<GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput>;
|
|
53148
53489
|
};
|
|
53490
|
+
export declare type GraphStoreAtlassianTeamMergedIntoAtlassianTeamArgs = {
|
|
53491
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53492
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53493
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53494
|
+
id: Scalars['ID']['input'];
|
|
53495
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53496
|
+
sort?: InputMaybe<GraphStoreAtlassianTeamMergedIntoAtlassianTeamSortInput>;
|
|
53497
|
+
};
|
|
53498
|
+
export declare type GraphStoreAtlassianTeamMergedIntoAtlassianTeamInverseArgs = {
|
|
53499
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
53500
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
53501
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
53502
|
+
id: Scalars['ID']['input'];
|
|
53503
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
53504
|
+
sort?: InputMaybe<GraphStoreAtlassianTeamMergedIntoAtlassianTeamSortInput>;
|
|
53505
|
+
};
|
|
53149
53506
|
export declare type GraphStoreAtlassianUserApprovesConfluenceApprovalInverseArgs = {
|
|
53150
53507
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
53151
53508
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -60000,6 +60357,14 @@ export declare type GraphStoreUserMentionedInMessageInverseArgs = {
|
|
|
60000
60357
|
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
60001
60358
|
sort?: InputMaybe<GraphStoreUserMentionedInMessageSortInput>;
|
|
60002
60359
|
};
|
|
60360
|
+
export declare type GraphStoreUserMentionedInThirdPartyDocumentInverseArgs = {
|
|
60361
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
60362
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
60363
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
60364
|
+
id: Scalars['ID']['input'];
|
|
60365
|
+
queryContext?: InputMaybe<Scalars['String']['input']>;
|
|
60366
|
+
sort?: InputMaybe<GraphStoreUserMentionedInThirdPartyDocumentSortInput>;
|
|
60367
|
+
};
|
|
60003
60368
|
export declare type GraphStoreUserMentionedInVideoCommentArgs = {
|
|
60004
60369
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
60005
60370
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -61586,6 +61951,9 @@ export declare type GraphStoreAtlasProjectLinksJiraSpaceSortInput = {
|
|
|
61586
61951
|
export declare type GraphStoreAtlasProjectTrackedOnJiraWorkItemSortInput = {
|
|
61587
61952
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61588
61953
|
};
|
|
61954
|
+
export declare type GraphStoreAtlassianTeamMergedIntoAtlassianTeamSortInput = {
|
|
61955
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61956
|
+
};
|
|
61589
61957
|
export declare type GraphStoreAtlassianUserApprovesConfluenceApprovalSortInput = {
|
|
61590
61958
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
61591
61959
|
};
|
|
@@ -70552,6 +70920,34 @@ export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverse
|
|
|
70552
70920
|
};
|
|
70553
70921
|
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemInverseUnion = TownsquareProject;
|
|
70554
70922
|
export declare type GraphStoreSimplifiedAtlasProjectTrackedOnJiraWorkItemUnion = JiraIssue;
|
|
70923
|
+
export declare type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection = HasPageInfo & {
|
|
70924
|
+
__typename?: 'GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection';
|
|
70925
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge>>>;
|
|
70926
|
+
pageInfo: PageInfo;
|
|
70927
|
+
};
|
|
70928
|
+
export declare type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge = {
|
|
70929
|
+
__typename?: 'GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge';
|
|
70930
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70931
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70932
|
+
id: Scalars['ID']['output'];
|
|
70933
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70934
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamUnion>;
|
|
70935
|
+
};
|
|
70936
|
+
export declare type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection = HasPageInfo & {
|
|
70937
|
+
__typename?: 'GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection';
|
|
70938
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseEdge>>>;
|
|
70939
|
+
pageInfo: PageInfo;
|
|
70940
|
+
};
|
|
70941
|
+
export declare type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseEdge = {
|
|
70942
|
+
__typename?: 'GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseEdge';
|
|
70943
|
+
createdAt: Scalars['DateTime']['output'];
|
|
70944
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
70945
|
+
id: Scalars['ID']['output'];
|
|
70946
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
70947
|
+
node?: Maybe<GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseUnion>;
|
|
70948
|
+
};
|
|
70949
|
+
export declare type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseUnion = TeamV2;
|
|
70950
|
+
export declare type GraphStoreSimplifiedAtlassianTeamMergedIntoAtlassianTeamUnion = TeamV2;
|
|
70555
70951
|
export declare type GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection = HasPageInfo & {
|
|
70556
70952
|
__typename?: 'GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseConnection';
|
|
70557
70953
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedAtlassianUserApprovesConfluenceApprovalInverseEdge>>>;
|
|
@@ -74367,7 +74763,7 @@ export declare type GraphStoreSimplifiedInferredProjectLinksEntityEdge = {
|
|
|
74367
74763
|
lastUpdated: Scalars['DateTime']['output'];
|
|
74368
74764
|
node?: Maybe<GraphStoreSimplifiedInferredProjectLinksEntityUnion>;
|
|
74369
74765
|
};
|
|
74370
|
-
export declare type GraphStoreSimplifiedInferredProjectLinksEntityUnion = JiraIssue | JiraProject;
|
|
74766
|
+
export declare type GraphStoreSimplifiedInferredProjectLinksEntityUnion = ConfluencePage | JiraIssue | JiraProject;
|
|
74371
74767
|
export declare type GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
|
|
74372
74768
|
__typename?: 'GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection';
|
|
74373
74769
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge>>>;
|
|
@@ -80274,6 +80670,20 @@ export declare type GraphStoreSimplifiedUserMentionedInMessageInverseEdge = {
|
|
|
80274
80670
|
};
|
|
80275
80671
|
export declare type GraphStoreSimplifiedUserMentionedInMessageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
80276
80672
|
export declare type GraphStoreSimplifiedUserMentionedInMessageUnion = ExternalMessage;
|
|
80673
|
+
export declare type GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
80674
|
+
__typename?: 'GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseConnection';
|
|
80675
|
+
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseEdge>>>;
|
|
80676
|
+
pageInfo: PageInfo;
|
|
80677
|
+
};
|
|
80678
|
+
export declare type GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseEdge = {
|
|
80679
|
+
__typename?: 'GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseEdge';
|
|
80680
|
+
createdAt: Scalars['DateTime']['output'];
|
|
80681
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
80682
|
+
id: Scalars['ID']['output'];
|
|
80683
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
80684
|
+
node?: Maybe<GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseUnion>;
|
|
80685
|
+
};
|
|
80686
|
+
export declare type GraphStoreSimplifiedUserMentionedInThirdPartyDocumentInverseUnion = ThirdPartyUser;
|
|
80277
80687
|
export declare type GraphStoreSimplifiedUserMentionedInVideoCommentConnection = HasPageInfo & {
|
|
80278
80688
|
__typename?: 'GraphStoreSimplifiedUserMentionedInVideoCommentConnection';
|
|
80279
80689
|
edges?: Maybe<Array<Maybe<GraphStoreSimplifiedUserMentionedInVideoCommentEdge>>>;
|
|
@@ -83161,6 +83571,9 @@ export declare type GraphStoreUserMentionedInConversationSortInput = {
|
|
|
83161
83571
|
export declare type GraphStoreUserMentionedInMessageSortInput = {
|
|
83162
83572
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
83163
83573
|
};
|
|
83574
|
+
export declare type GraphStoreUserMentionedInThirdPartyDocumentSortInput = {
|
|
83575
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
83576
|
+
};
|
|
83164
83577
|
export declare type GraphStoreUserMentionedInVideoCommentSortInput = {
|
|
83165
83578
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
83166
83579
|
};
|
|
@@ -83422,6 +83835,8 @@ export declare type GraphStoreV2 = {
|
|
|
83422
83835
|
atlassianTeamLinksOpsgenieTeamInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamLinksOpsgenieTeamInverseConnection>;
|
|
83423
83836
|
atlassianTeamLinksSpaceEntity?: Maybe<GraphStoreV2SimplifiedAtlassianTeamLinksSpaceEntityConnection>;
|
|
83424
83837
|
atlassianTeamLinksSpaceEntityInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamLinksSpaceEntityInverseConnection>;
|
|
83838
|
+
atlassianTeamMergedIntoAtlassianTeam?: Maybe<GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection>;
|
|
83839
|
+
atlassianTeamMergedIntoAtlassianTeamInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection>;
|
|
83425
83840
|
atlassianTeamOwnsCompassComponent?: Maybe<GraphStoreV2SimplifiedAtlassianTeamOwnsCompassComponentConnection>;
|
|
83426
83841
|
atlassianTeamOwnsCompassComponentInverse?: Maybe<GraphStoreV2SimplifiedAtlassianTeamOwnsCompassComponentInverseConnection>;
|
|
83427
83842
|
atlassianTeamReceivedFocusAsk?: Maybe<GraphStoreV2SimplifiedAtlassianTeamReceivedFocusAskConnection>;
|
|
@@ -83887,6 +84302,7 @@ export declare type GraphStoreV2 = {
|
|
|
83887
84302
|
externalUserMentionedInExternalConversationInverse?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalConversationInverseConnection>;
|
|
83888
84303
|
externalUserMentionedInExternalMessage?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageConnection>;
|
|
83889
84304
|
externalUserMentionedInExternalMessageInverse?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageInverseConnection>;
|
|
84305
|
+
externalUserMentionedInThirdPartyDocumentInverse?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseConnection>;
|
|
83890
84306
|
externalUserOwnsExternalCalendarEvent?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventConnection>;
|
|
83891
84307
|
externalUserOwnsExternalCalendarEventInverse?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventInverseConnection>;
|
|
83892
84308
|
externalUserOwnsExternalCampaign?: Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCampaignConnection>;
|
|
@@ -84503,6 +84919,20 @@ export declare type GraphStoreV2AtlassianTeamLinksSpaceEntityInverseArgs = {
|
|
|
84503
84919
|
id: Scalars['ID']['input'];
|
|
84504
84920
|
sort?: InputMaybe<GraphStoreV2AtlassianTeamLinksSpaceEntitySortInput>;
|
|
84505
84921
|
};
|
|
84922
|
+
export declare type GraphStoreV2AtlassianTeamMergedIntoAtlassianTeamArgs = {
|
|
84923
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84924
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84925
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84926
|
+
id: Scalars['ID']['input'];
|
|
84927
|
+
sort?: InputMaybe<GraphStoreV2AtlassianTeamMergedIntoAtlassianTeamSortInput>;
|
|
84928
|
+
};
|
|
84929
|
+
export declare type GraphStoreV2AtlassianTeamMergedIntoAtlassianTeamInverseArgs = {
|
|
84930
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
84931
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84932
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
84933
|
+
id: Scalars['ID']['input'];
|
|
84934
|
+
sort?: InputMaybe<GraphStoreV2AtlassianTeamMergedIntoAtlassianTeamSortInput>;
|
|
84935
|
+
};
|
|
84506
84936
|
export declare type GraphStoreV2AtlassianTeamOwnsCompassComponentArgs = {
|
|
84507
84937
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
84508
84938
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -87773,6 +88203,13 @@ export declare type GraphStoreV2ExternalUserMentionedInExternalMessageInverseArg
|
|
|
87773
88203
|
id: Scalars['ID']['input'];
|
|
87774
88204
|
sort?: InputMaybe<GraphStoreV2ExternalUserMentionedInExternalMessageSortInput>;
|
|
87775
88205
|
};
|
|
88206
|
+
export declare type GraphStoreV2ExternalUserMentionedInThirdPartyDocumentInverseArgs = {
|
|
88207
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
88208
|
+
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88209
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
88210
|
+
id: Scalars['ID']['input'];
|
|
88211
|
+
sort?: InputMaybe<GraphStoreV2ExternalUserMentionedInThirdPartyDocumentSortInput>;
|
|
88212
|
+
};
|
|
87776
88213
|
export declare type GraphStoreV2ExternalUserOwnsExternalCalendarEventArgs = {
|
|
87777
88214
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
87778
88215
|
consistentRead?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -89992,6 +90429,9 @@ export declare type GraphStoreV2AtlassianTeamLinksSpaceEntitySortInput = {
|
|
|
89992
90429
|
relationship_createdFromAutocreate?: InputMaybe<GraphStoreSortInput>;
|
|
89993
90430
|
toAti?: InputMaybe<GraphStoreSortInput>;
|
|
89994
90431
|
};
|
|
90432
|
+
export declare type GraphStoreV2AtlassianTeamMergedIntoAtlassianTeamSortInput = {
|
|
90433
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
90434
|
+
};
|
|
89995
90435
|
export declare type GraphStoreV2AtlassianTeamOwnsCompassComponentSortInput = {
|
|
89996
90436
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
89997
90437
|
};
|
|
@@ -91832,6 +92272,9 @@ export declare type GraphStoreV2ExternalUserMentionedInExternalConversationSortI
|
|
|
91832
92272
|
export declare type GraphStoreV2ExternalUserMentionedInExternalMessageSortInput = {
|
|
91833
92273
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
91834
92274
|
};
|
|
92275
|
+
export declare type GraphStoreV2ExternalUserMentionedInThirdPartyDocumentSortInput = {
|
|
92276
|
+
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
92277
|
+
};
|
|
91835
92278
|
export declare type GraphStoreV2ExternalUserOwnsExternalCalendarEventSortInput = {
|
|
91836
92279
|
lastModified?: InputMaybe<GraphStoreSortInput>;
|
|
91837
92280
|
};
|
|
@@ -94169,6 +94612,34 @@ export declare type GraphStoreV2SimplifiedAtlassianTeamLinksSpaceEntityInverseEd
|
|
|
94169
94612
|
};
|
|
94170
94613
|
export declare type GraphStoreV2SimplifiedAtlassianTeamLinksSpaceEntityInverseUnion = TeamV2;
|
|
94171
94614
|
export declare type GraphStoreV2SimplifiedAtlassianTeamLinksSpaceEntityUnion = ConfluenceSpace | JiraProject | LoomSpace;
|
|
94615
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection = HasPageInfo & {
|
|
94616
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamConnection';
|
|
94617
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge>>>;
|
|
94618
|
+
pageInfo: PageInfo;
|
|
94619
|
+
};
|
|
94620
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge = {
|
|
94621
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamEdge';
|
|
94622
|
+
createdAt: Scalars['DateTime']['output'];
|
|
94623
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
94624
|
+
id: Scalars['ID']['output'];
|
|
94625
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
94626
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamUnion>;
|
|
94627
|
+
};
|
|
94628
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection = HasPageInfo & {
|
|
94629
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseConnection';
|
|
94630
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseEdge>>>;
|
|
94631
|
+
pageInfo: PageInfo;
|
|
94632
|
+
};
|
|
94633
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseEdge = {
|
|
94634
|
+
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseEdge';
|
|
94635
|
+
createdAt: Scalars['DateTime']['output'];
|
|
94636
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
94637
|
+
id: Scalars['ID']['output'];
|
|
94638
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
94639
|
+
node?: Maybe<GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseUnion>;
|
|
94640
|
+
};
|
|
94641
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamInverseUnion = TeamV2;
|
|
94642
|
+
export declare type GraphStoreV2SimplifiedAtlassianTeamMergedIntoAtlassianTeamUnion = TeamV2;
|
|
94172
94643
|
export declare type GraphStoreV2SimplifiedAtlassianTeamOwnsCompassComponentConnection = HasPageInfo & {
|
|
94173
94644
|
__typename?: 'GraphStoreV2SimplifiedAtlassianTeamOwnsCompassComponentConnection';
|
|
94174
94645
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedAtlassianTeamOwnsCompassComponentEdge>>>;
|
|
@@ -100733,6 +101204,20 @@ export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalMessage
|
|
|
100733
101204
|
};
|
|
100734
101205
|
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageInverseUnion = AppUser | AtlassianAccountUser | CustomerUser | ThirdPartyUser;
|
|
100735
101206
|
export declare type GraphStoreV2SimplifiedExternalUserMentionedInExternalMessageUnion = ExternalMessage;
|
|
101207
|
+
export declare type GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseConnection = HasPageInfo & {
|
|
101208
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseConnection';
|
|
101209
|
+
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseEdge>>>;
|
|
101210
|
+
pageInfo: PageInfo;
|
|
101211
|
+
};
|
|
101212
|
+
export declare type GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseEdge = {
|
|
101213
|
+
__typename?: 'GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseEdge';
|
|
101214
|
+
createdAt: Scalars['DateTime']['output'];
|
|
101215
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
101216
|
+
id: Scalars['ID']['output'];
|
|
101217
|
+
lastUpdated: Scalars['DateTime']['output'];
|
|
101218
|
+
node?: Maybe<GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseUnion>;
|
|
101219
|
+
};
|
|
101220
|
+
export declare type GraphStoreV2SimplifiedExternalUserMentionedInThirdPartyDocumentInverseUnion = ThirdPartyUser;
|
|
100736
101221
|
export declare type GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventConnection = HasPageInfo & {
|
|
100737
101222
|
__typename?: 'GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventConnection';
|
|
100738
101223
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedExternalUserOwnsExternalCalendarEventEdge>>>;
|
|
@@ -102500,7 +102985,7 @@ export declare type GraphStoreV2SimplifiedInferredProjectLinksEntityEdge = {
|
|
|
102500
102985
|
lastUpdated: Scalars['DateTime']['output'];
|
|
102501
102986
|
node?: Maybe<GraphStoreV2SimplifiedInferredProjectLinksEntityUnion>;
|
|
102502
102987
|
};
|
|
102503
|
-
export declare type GraphStoreV2SimplifiedInferredProjectLinksEntityUnion = JiraIssue | JiraProject;
|
|
102988
|
+
export declare type GraphStoreV2SimplifiedInferredProjectLinksEntityUnion = ConfluencePage | JiraIssue | JiraProject;
|
|
102504
102989
|
export declare type GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection = HasPageInfo & {
|
|
102505
102990
|
__typename?: 'GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseConnection';
|
|
102506
102991
|
edges?: Maybe<Array<Maybe<GraphStoreV2SimplifiedInferredTeamCollaboratesOnInferredProjectInverseEdge>>>;
|
|
@@ -105339,8 +105824,8 @@ export declare type GravityDeleteReactionPayload = Payload & {
|
|
|
105339
105824
|
};
|
|
105340
105825
|
export declare type GravityDeliverySettings = {
|
|
105341
105826
|
__typename?: 'GravityDeliverySettings';
|
|
105827
|
+
projectId: Scalars['ID']['output'];
|
|
105342
105828
|
tableLayoutConfig: Array<GravityTableLayoutConfig>;
|
|
105343
|
-
viewId: Scalars['ID']['output'];
|
|
105344
105829
|
visibleFields: Array<Scalars['String']['output']>;
|
|
105345
105830
|
};
|
|
105346
105831
|
export declare type GravityDeliverySettingsResult = GravityDeliverySettingsSuccess | QueryError;
|
|
@@ -105365,6 +105850,10 @@ export declare type GravityEntityReactions = {
|
|
|
105365
105850
|
entityAri: Scalars['ID']['output'];
|
|
105366
105851
|
reactions: Array<GravityReactionSummary>;
|
|
105367
105852
|
};
|
|
105853
|
+
export declare enum GravityFeedbackTarget {
|
|
105854
|
+
Cf = "CF",
|
|
105855
|
+
Gsac = "GSAC"
|
|
105856
|
+
}
|
|
105368
105857
|
export declare type GravityField = {
|
|
105369
105858
|
__typename?: 'GravityField';
|
|
105370
105859
|
configuration?: Maybe<Scalars['JSON']['output']>;
|
|
@@ -105474,6 +105963,16 @@ export declare enum GravityImportSourceType {
|
|
|
105474
105963
|
Pdf = "PDF",
|
|
105475
105964
|
Text = "TEXT"
|
|
105476
105965
|
}
|
|
105966
|
+
export declare type GravityPostFeedbackInput = {
|
|
105967
|
+
message: Scalars['String']['input'];
|
|
105968
|
+
target: GravityFeedbackTarget;
|
|
105969
|
+
test?: InputMaybe<Scalars['Boolean']['input']>;
|
|
105970
|
+
};
|
|
105971
|
+
export declare type GravityPostFeedbackPayload = Payload & {
|
|
105972
|
+
__typename?: 'GravityPostFeedbackPayload';
|
|
105973
|
+
errors?: Maybe<Array<MutationError>>;
|
|
105974
|
+
success: Scalars['Boolean']['output'];
|
|
105975
|
+
};
|
|
105477
105976
|
export declare enum GravityReactionEntityType {
|
|
105478
105977
|
IssueComment = "ISSUE_COMMENT",
|
|
105479
105978
|
ViewComment = "VIEW_COMMENT"
|
|
@@ -105531,8 +106030,8 @@ export declare type GravityTableLayoutConfigInput = {
|
|
|
105531
106030
|
size: Scalars['Int']['input'];
|
|
105532
106031
|
};
|
|
105533
106032
|
export declare type GravityUpdateDeliverySettingsInput = {
|
|
106033
|
+
projectId: Scalars['ID']['input'];
|
|
105534
106034
|
tableLayoutConfig: Array<GravityTableLayoutConfigInput>;
|
|
105535
|
-
viewId: Scalars['ID']['input'];
|
|
105536
106035
|
visibleFields?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
105537
106036
|
};
|
|
105538
106037
|
export declare type GravityUpdateDeliverySettingsPayload = GravityUpdateDeliverySettingsSuccess | QueryError;
|
|
@@ -110183,7 +110682,7 @@ export declare type JiraAddAgentToBoardViewStatusColumnInput = {
|
|
|
110183
110682
|
columnId: Scalars['ID']['input'];
|
|
110184
110683
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
110185
110684
|
};
|
|
110186
|
-
export declare type JiraAddAgentToBoardViewStatusColumnPayload = {
|
|
110685
|
+
export declare type JiraAddAgentToBoardViewStatusColumnPayload = Payload & {
|
|
110187
110686
|
__typename?: 'JiraAddAgentToBoardViewStatusColumnPayload';
|
|
110188
110687
|
boardView?: Maybe<JiraBoardView>;
|
|
110189
110688
|
column?: Maybe<JiraBoardViewStatusColumn>;
|
|
@@ -110598,6 +111097,22 @@ export declare type JiraAiAgentSessionStatus = {
|
|
|
110598
111097
|
conversationId: Scalars['ID']['output'];
|
|
110599
111098
|
state: JiraAiAgentConversationState;
|
|
110600
111099
|
};
|
|
111100
|
+
export declare enum JiraAiContextPanel {
|
|
111101
|
+
None = "NONE",
|
|
111102
|
+
ResolutionPlan = "RESOLUTION_PLAN",
|
|
111103
|
+
Suggestions = "SUGGESTIONS"
|
|
111104
|
+
}
|
|
111105
|
+
export declare type JiraAiContextPanelDecision = {
|
|
111106
|
+
__typename?: 'JiraAiContextPanelDecision';
|
|
111107
|
+
defaultPanel?: Maybe<JiraAiContextPanel>;
|
|
111108
|
+
fallbackPanel?: Maybe<JiraAiContextPanel>;
|
|
111109
|
+
initialState?: Maybe<JiraAiContextPanelInitial>;
|
|
111110
|
+
};
|
|
111111
|
+
export declare enum JiraAiContextPanelInitial {
|
|
111112
|
+
Collapsed = "COLLAPSED",
|
|
111113
|
+
Expanded = "EXPANDED",
|
|
111114
|
+
Hidden = "HIDDEN"
|
|
111115
|
+
}
|
|
110601
111116
|
export declare type JiraAiEnablementIssueInput = {
|
|
110602
111117
|
issueId?: InputMaybe<Scalars['ID']['input']>;
|
|
110603
111118
|
issueKey?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -112276,6 +112791,17 @@ export declare type JiraBaseCustomFieldDefaultContextOptionPositionInput = {
|
|
|
112276
112791
|
top?: InputMaybe<JiraTopCustomFieldDefaultContextOptionPositionInput>;
|
|
112277
112792
|
topChild?: InputMaybe<JiraTopChildCustomFieldDefaultContextOptionPositionInput>;
|
|
112278
112793
|
};
|
|
112794
|
+
export declare type JiraBaseNextActionsEntity = {
|
|
112795
|
+
contentType?: Maybe<JiraNextActionContentType>;
|
|
112796
|
+
dismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
112797
|
+
group?: Maybe<JiraNextActionGroup>;
|
|
112798
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
112799
|
+
interactionType?: Maybe<JiraNextActionInteractionType>;
|
|
112800
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
112801
|
+
queryError?: Maybe<QueryError>;
|
|
112802
|
+
rank?: Maybe<Scalars['Float']['output']>;
|
|
112803
|
+
rationale?: Maybe<Scalars['String']['output']>;
|
|
112804
|
+
};
|
|
112279
112805
|
export declare type JiraBaseTimelineView = {
|
|
112280
112806
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
112281
112807
|
conditionalFormattingRules?: Maybe<JiraFormattingRuleConnection>;
|
|
@@ -112614,12 +113140,16 @@ export declare type JiraBoardViewCell = Node & {
|
|
|
112614
113140
|
__typename?: 'JiraBoardViewCell';
|
|
112615
113141
|
canCreateIssue?: Maybe<Scalars['Boolean']['output']>;
|
|
112616
113142
|
column?: Maybe<JiraBoardViewColumn>;
|
|
113143
|
+
contextFields?: Maybe<Array<JiraBoardViewCellContextField>>;
|
|
112617
113144
|
id: Scalars['ID']['output'];
|
|
112618
113145
|
issuePositions?: Maybe<Array<JiraBoardViewCellIssuePosition>>;
|
|
112619
113146
|
issues?: Maybe<JiraIssueConnection>;
|
|
112620
113147
|
swimlane?: Maybe<JiraBoardViewSwimlane>;
|
|
112621
113148
|
workflows?: Maybe<JiraBoardViewWorkflowConnection>;
|
|
112622
113149
|
};
|
|
113150
|
+
export declare type JiraBoardViewCellContextFieldsArgs = {
|
|
113151
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
113152
|
+
};
|
|
112623
113153
|
export declare type JiraBoardViewCellIssuePositionsArgs = {
|
|
112624
113154
|
issueIds: Array<Scalars['ID']['input']>;
|
|
112625
113155
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
@@ -112649,6 +113179,11 @@ export declare type JiraBoardViewCellContainerCellsArgs = {
|
|
|
112649
113179
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
112650
113180
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
112651
113181
|
};
|
|
113182
|
+
export declare type JiraBoardViewCellContextField = {
|
|
113183
|
+
__typename?: 'JiraBoardViewCellContextField';
|
|
113184
|
+
field?: Maybe<JiraField>;
|
|
113185
|
+
fieldValue?: Maybe<JiraJqlFieldValue>;
|
|
113186
|
+
};
|
|
112652
113187
|
export declare type JiraBoardViewCellEdge = {
|
|
112653
113188
|
__typename?: 'JiraBoardViewCellEdge';
|
|
112654
113189
|
cursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -116820,7 +117355,7 @@ export declare type JiraFieldConfigFilterInput = {
|
|
|
116820
117355
|
includedFieldCategories?: InputMaybe<Array<JiraFieldCategoryType>>;
|
|
116821
117356
|
includedFieldScopes?: InputMaybe<Array<JiraFieldScopeType>>;
|
|
116822
117357
|
includedFieldStatus?: InputMaybe<Array<JiraFieldStatusType>>;
|
|
116823
|
-
includedFieldTypeCategories?: InputMaybe<Array<
|
|
117358
|
+
includedFieldTypeCategories?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
116824
117359
|
includedFieldTypes?: InputMaybe<Array<JiraConfigFieldType>>;
|
|
116825
117360
|
orderBy?: InputMaybe<JiraFieldConfigOrderBy>;
|
|
116826
117361
|
orderDirection?: InputMaybe<JiraFieldConfigOrderDirection>;
|
|
@@ -117211,17 +117746,6 @@ export declare type JiraFieldTypeGroup = {
|
|
|
117211
117746
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
117212
117747
|
key?: Maybe<Scalars['String']['output']>;
|
|
117213
117748
|
};
|
|
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
117749
|
export declare type JiraFieldTypeGroupConnection = {
|
|
117226
117750
|
__typename?: 'JiraFieldTypeGroupConnection';
|
|
117227
117751
|
edges?: Maybe<Array<Maybe<JiraFieldTypeGroupEdge>>>;
|
|
@@ -117960,6 +118484,7 @@ export declare type JiraFormulaFieldConfiguredProjectConnection = {
|
|
|
117960
118484
|
hasGlobalContextConfigured?: Maybe<Scalars['Boolean']['output']>;
|
|
117961
118485
|
pageInfo: PageInfo;
|
|
117962
118486
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
118487
|
+
totalSpaceCount?: Maybe<Scalars['Long']['output']>;
|
|
117963
118488
|
};
|
|
117964
118489
|
export declare type JiraFormulaFieldConfiguredProjectEdge = {
|
|
117965
118490
|
__typename?: 'JiraFormulaFieldConfiguredProjectEdge';
|
|
@@ -118630,6 +119155,18 @@ export declare type JiraHydrateJqlInput = {
|
|
|
118630
119155
|
lastUsedJqlForIssueNavigator?: InputMaybe<JiraJqlScopeInput>;
|
|
118631
119156
|
viewQueryInput?: InputMaybe<JiraIssueSearchViewQueryInput>;
|
|
118632
119157
|
};
|
|
119158
|
+
export declare type JiraImproveDescriptionSuggestion = JiraBaseNextActionsEntity & {
|
|
119159
|
+
__typename?: 'JiraImproveDescriptionSuggestion';
|
|
119160
|
+
contentType?: Maybe<JiraNextActionContentType>;
|
|
119161
|
+
dismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
119162
|
+
group?: Maybe<JiraNextActionGroup>;
|
|
119163
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
119164
|
+
interactionType?: Maybe<JiraNextActionInteractionType>;
|
|
119165
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
119166
|
+
queryError?: Maybe<QueryError>;
|
|
119167
|
+
rank?: Maybe<Scalars['Float']['output']>;
|
|
119168
|
+
rationale?: Maybe<Scalars['String']['output']>;
|
|
119169
|
+
};
|
|
118633
119170
|
export declare type JiraIncidentActivityActor = {
|
|
118634
119171
|
__typename?: 'JiraIncidentActivityActor';
|
|
118635
119172
|
accountId?: Maybe<Scalars['String']['output']>;
|
|
@@ -118752,6 +119289,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
118752
119289
|
__typename?: 'JiraIssue';
|
|
118753
119290
|
agentSessions?: Maybe<JiraIssueAgentSessions>;
|
|
118754
119291
|
aiAgentSessions?: Maybe<JiraAiAgentSessionConnection>;
|
|
119292
|
+
aiContextPanelDecision?: Maybe<JiraAiContextPanelDecision>;
|
|
118755
119293
|
allActivities?: Maybe<JiraAllActivityFeedConnection>;
|
|
118756
119294
|
allAgentSessions?: Maybe<AgentSessionAssociationConnection>;
|
|
118757
119295
|
approvalActivities?: Maybe<JiraIssueApprovalsConnection>;
|
|
@@ -118887,6 +119425,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
118887
119425
|
mercuryTargetDateEnd?: Maybe<Scalars['DateTime']['output']>;
|
|
118888
119426
|
mercuryTargetDateStart?: Maybe<Scalars['DateTime']['output']>;
|
|
118889
119427
|
mercuryTargetDateType?: Maybe<MercuryProjectTargetDateType>;
|
|
119428
|
+
nextActionSuggestions?: Maybe<JiraIssueNextActionSuggestions>;
|
|
118890
119429
|
parentIssue?: Maybe<JiraIssue>;
|
|
118891
119430
|
parentIssueField?: Maybe<JiraParentIssueField>;
|
|
118892
119431
|
pinnedComments?: Maybe<JiraPinnedCommentsResponse>;
|
|
@@ -118907,6 +119446,7 @@ export declare type JiraIssue = HasMercuryProjectFields & JiraListRow & JiraScen
|
|
|
118907
119446
|
searchViewContext?: Maybe<JiraIssueSearchViewContexts>;
|
|
118908
119447
|
securityLevelField?: Maybe<JiraSecurityLevelField>;
|
|
118909
119448
|
securityVulnerabilityRelationships?: Maybe<AriGraphRelationshipConnection>;
|
|
119449
|
+
servicedeskPractices?: Maybe<JiraServiceManagementPractice>;
|
|
118910
119450
|
shouldShowPlaybooks?: Maybe<Scalars['Boolean']['output']>;
|
|
118911
119451
|
smartSummary?: Maybe<JiraAdf>;
|
|
118912
119452
|
startDateField?: Maybe<JiraDatePickerField>;
|
|
@@ -119661,6 +120201,30 @@ export declare type JiraIssueCreateRankInput = {
|
|
|
119661
120201
|
export declare type JiraIssueCreateValidationRule = {
|
|
119662
120202
|
fieldValidations?: InputMaybe<Array<JiraIssueCreateFieldValidationRule>>;
|
|
119663
120203
|
};
|
|
120204
|
+
export declare type JiraIssueCreatedProformaFormsField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
120205
|
+
__typename?: 'JiraIssueCreatedProformaFormsField';
|
|
120206
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
120207
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
120208
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
120209
|
+
fieldId: Scalars['String']['output'];
|
|
120210
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
120211
|
+
forms?: Maybe<JiraProformaFormConnection>;
|
|
120212
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
120213
|
+
id: Scalars['ID']['output'];
|
|
120214
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
120215
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
120216
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
120217
|
+
issue?: Maybe<JiraIssue>;
|
|
120218
|
+
name: Scalars['String']['output'];
|
|
120219
|
+
type: Scalars['String']['output'];
|
|
120220
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
120221
|
+
};
|
|
120222
|
+
export declare type JiraIssueCreatedProformaFormsFieldFormsArgs = {
|
|
120223
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
120224
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
120225
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
120226
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
120227
|
+
};
|
|
119664
120228
|
export declare type JiraIssueCreatedStreamHubPayload = {
|
|
119665
120229
|
__typename?: 'JiraIssueCreatedStreamHubPayload';
|
|
119666
120230
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
@@ -120576,6 +121140,14 @@ export declare type JiraIssueNavigatorSearchLayoutMutationPayload = Payload & {
|
|
|
120576
121140
|
issueNavigatorSearchLayout?: Maybe<JiraIssueNavigatorSearchLayout>;
|
|
120577
121141
|
success: Scalars['Boolean']['output'];
|
|
120578
121142
|
};
|
|
121143
|
+
export declare type JiraIssueNextActionSuggestions = {
|
|
121144
|
+
__typename?: 'JiraIssueNextActionSuggestions';
|
|
121145
|
+
improveDescriptionSuggestions?: Maybe<JiraImproveDescriptionSuggestion>;
|
|
121146
|
+
relatedLinkSuggestions?: Maybe<JiraRelatedLinkSuggestions>;
|
|
121147
|
+
sdlcSuggestions?: Maybe<JiraSdlcSuggestions>;
|
|
121148
|
+
similarWorkItemSuggestions?: Maybe<JiraSimilarWorkItemSuggestions>;
|
|
121149
|
+
workBreakdownSuggestions?: Maybe<JiraWorkBreakdownSuggestions>;
|
|
121150
|
+
};
|
|
120579
121151
|
export declare type JiraIssueNoEnrichmentStreamHubPayload = {
|
|
120580
121152
|
__typename?: 'JiraIssueNoEnrichmentStreamHubPayload';
|
|
120581
121153
|
resource?: Maybe<Scalars['ID']['output']>;
|
|
@@ -124699,6 +125271,19 @@ export declare type JiraNavigationUiStateUserPropertyRightPanelsArgs = {
|
|
|
124699
125271
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
124700
125272
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
124701
125273
|
};
|
|
125274
|
+
export declare enum JiraNextActionContentType {
|
|
125275
|
+
NextStep = "NEXT_STEP",
|
|
125276
|
+
RecommendedAction = "RECOMMENDED_ACTION"
|
|
125277
|
+
}
|
|
125278
|
+
export declare enum JiraNextActionGroup {
|
|
125279
|
+
AiFeatures = "AI_FEATURES",
|
|
125280
|
+
LoomUpdates = "LOOM_UPDATES",
|
|
125281
|
+
Sdlc = "SDLC"
|
|
125282
|
+
}
|
|
125283
|
+
export declare enum JiraNextActionInteractionType {
|
|
125284
|
+
ActionNudge = "ACTION_NUDGE",
|
|
125285
|
+
Interactive = "INTERACTIVE"
|
|
125286
|
+
}
|
|
124702
125287
|
export declare enum JiraNotificationCategoryType {
|
|
124703
125288
|
CommentChanges = "COMMENT_CHANGES",
|
|
124704
125289
|
IssueAssigned = "ISSUE_ASSIGNED",
|
|
@@ -126261,6 +126846,20 @@ export declare enum JiraProductEnum {
|
|
|
126261
126846
|
JiraSoftware = "JIRA_SOFTWARE",
|
|
126262
126847
|
JiraWorkManagement = "JIRA_WORK_MANAGEMENT"
|
|
126263
126848
|
}
|
|
126849
|
+
export declare type JiraProformaForm = {
|
|
126850
|
+
__typename?: 'JiraProformaForm';
|
|
126851
|
+
id: Scalars['ID']['output'];
|
|
126852
|
+
};
|
|
126853
|
+
export declare type JiraProformaFormConnection = {
|
|
126854
|
+
__typename?: 'JiraProformaFormConnection';
|
|
126855
|
+
edges?: Maybe<Array<Maybe<JiraProformaFormEdge>>>;
|
|
126856
|
+
pageInfo: PageInfo;
|
|
126857
|
+
};
|
|
126858
|
+
export declare type JiraProformaFormEdge = {
|
|
126859
|
+
__typename?: 'JiraProformaFormEdge';
|
|
126860
|
+
cursor: Scalars['String']['output'];
|
|
126861
|
+
node?: Maybe<JiraProformaForm>;
|
|
126862
|
+
};
|
|
126264
126863
|
export declare type JiraProformaForms = {
|
|
126265
126864
|
__typename?: 'JiraProformaForms';
|
|
126266
126865
|
hasIssueForms?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -126520,16 +127119,12 @@ export declare type JiraProjectOpsgenieTeamsAvailableToLinkWithArgs = {
|
|
|
126520
127119
|
};
|
|
126521
127120
|
export declare type JiraProjectPolicyAssociationsArgs = {
|
|
126522
127121
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
126523
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
126524
127122
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126525
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
126526
127123
|
};
|
|
126527
127124
|
export declare type JiraProjectPolicyViolationsArgs = {
|
|
126528
127125
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
126529
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
126530
127126
|
filter?: InputMaybe<JiraProjectPolicyRuleViolationFilter>;
|
|
126531
127127
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
126532
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
126533
127128
|
};
|
|
126534
127129
|
export declare type JiraProjectProjectFieldTypeGroupsArgs = {
|
|
126535
127130
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -127066,13 +127661,12 @@ export declare type JiraProjectPolicy = Node & {
|
|
|
127066
127661
|
eligibleProjects?: Maybe<JiraProjectConnection>;
|
|
127067
127662
|
id: Scalars['ID']['output'];
|
|
127068
127663
|
name?: Maybe<Scalars['String']['output']>;
|
|
127664
|
+
rules?: Maybe<JiraProjectPolicyRuleConnection>;
|
|
127069
127665
|
};
|
|
127070
127666
|
export declare type JiraProjectPolicyAssociatedProjectsArgs = {
|
|
127071
127667
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
127072
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
127073
127668
|
filter?: InputMaybe<JiraProjectPolicyProjectFilter>;
|
|
127074
127669
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127075
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
127076
127670
|
projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
127077
127671
|
};
|
|
127078
127672
|
export declare type JiraProjectPolicyEligibleProjectsArgs = {
|
|
@@ -127080,15 +127674,29 @@ export declare type JiraProjectPolicyEligibleProjectsArgs = {
|
|
|
127080
127674
|
filter?: InputMaybe<JiraEligibleProjectsFilter>;
|
|
127081
127675
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127082
127676
|
};
|
|
127677
|
+
export declare type JiraProjectPolicyRulesArgs = {
|
|
127678
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
127679
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127680
|
+
ruleTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
127681
|
+
};
|
|
127083
127682
|
export declare type JiraProjectPolicyAssociation = {
|
|
127084
127683
|
__typename?: 'JiraProjectPolicyAssociation';
|
|
127684
|
+
complianceState?: Maybe<JiraProjectPolicyComplianceState>;
|
|
127685
|
+
policy?: Maybe<JiraProjectPolicy>;
|
|
127085
127686
|
project?: Maybe<JiraProject>;
|
|
127687
|
+
ruleViolations?: Maybe<JiraProjectPolicyRuleViolationConnection>;
|
|
127086
127688
|
};
|
|
127087
|
-
export declare type
|
|
127689
|
+
export declare type JiraProjectPolicyAssociationRuleViolationsArgs = {
|
|
127690
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
127691
|
+
filter?: InputMaybe<JiraProjectPolicyRuleViolationFilter>;
|
|
127692
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127693
|
+
};
|
|
127694
|
+
export declare type JiraProjectPolicyAssociationConnection = HasPageInfo & HasTotal & {
|
|
127088
127695
|
__typename?: 'JiraProjectPolicyAssociationConnection';
|
|
127089
127696
|
edges?: Maybe<Array<Maybe<JiraProjectPolicyAssociationEdge>>>;
|
|
127090
127697
|
nodes?: Maybe<Array<Maybe<JiraProjectPolicyAssociation>>>;
|
|
127091
127698
|
pageInfo: PageInfo;
|
|
127699
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
127092
127700
|
};
|
|
127093
127701
|
export declare type JiraProjectPolicyAssociationEdge = {
|
|
127094
127702
|
__typename?: 'JiraProjectPolicyAssociationEdge';
|
|
@@ -127112,8 +127720,31 @@ export declare type JiraProjectPolicyEdge = {
|
|
|
127112
127720
|
node?: Maybe<JiraProjectPolicy>;
|
|
127113
127721
|
};
|
|
127114
127722
|
export declare type JiraProjectPolicyProjectFilter = {
|
|
127115
|
-
complianceState?: InputMaybe<JiraProjectPolicyComplianceState>;
|
|
127116
127723
|
projectCategoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
127724
|
+
projectNameQuery?: InputMaybe<Scalars['String']['input']>;
|
|
127725
|
+
};
|
|
127726
|
+
export declare type JiraProjectPolicyRule = {
|
|
127727
|
+
__typename?: 'JiraProjectPolicyRule';
|
|
127728
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
127729
|
+
domain?: Maybe<Scalars['String']['output']>;
|
|
127730
|
+
id: Scalars['ID']['output'];
|
|
127731
|
+
ruleType?: Maybe<JiraProjectPolicyRuleType>;
|
|
127732
|
+
};
|
|
127733
|
+
export declare type JiraProjectPolicyRuleConnection = HasPageInfo & HasTotal & {
|
|
127734
|
+
__typename?: 'JiraProjectPolicyRuleConnection';
|
|
127735
|
+
edges?: Maybe<Array<Maybe<JiraProjectPolicyRuleEdge>>>;
|
|
127736
|
+
nodes?: Maybe<Array<Maybe<JiraProjectPolicyRule>>>;
|
|
127737
|
+
pageInfo: PageInfo;
|
|
127738
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
127739
|
+
};
|
|
127740
|
+
export declare type JiraProjectPolicyRuleEdge = {
|
|
127741
|
+
__typename?: 'JiraProjectPolicyRuleEdge';
|
|
127742
|
+
cursor: Scalars['String']['output'];
|
|
127743
|
+
node?: Maybe<JiraProjectPolicyRule>;
|
|
127744
|
+
};
|
|
127745
|
+
export declare type JiraProjectPolicyRuleType = {
|
|
127746
|
+
__typename?: 'JiraProjectPolicyRuleType';
|
|
127747
|
+
id: Scalars['ID']['output'];
|
|
127117
127748
|
};
|
|
127118
127749
|
export declare type JiraProjectPolicyRuleViolation = {
|
|
127119
127750
|
__typename?: 'JiraProjectPolicyRuleViolation';
|
|
@@ -127139,6 +127770,7 @@ export declare type JiraProjectPolicyRuleViolationEdge = {
|
|
|
127139
127770
|
};
|
|
127140
127771
|
export declare type JiraProjectPolicyRuleViolationFilter = {
|
|
127141
127772
|
domains?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
127773
|
+
ruleTypeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
127142
127774
|
};
|
|
127143
127775
|
export declare type JiraProjectRecommendation = {
|
|
127144
127776
|
__typename?: 'JiraProjectRecommendation';
|
|
@@ -127484,7 +128116,8 @@ export declare enum JiraPullRequestState {
|
|
|
127484
128116
|
Declined = "DECLINED",
|
|
127485
128117
|
Draft = "DRAFT",
|
|
127486
128118
|
Merged = "MERGED",
|
|
127487
|
-
Open = "OPEN"
|
|
128119
|
+
Open = "OPEN",
|
|
128120
|
+
Queued = "QUEUED"
|
|
127488
128121
|
}
|
|
127489
128122
|
export declare type JiraQuery = {
|
|
127490
128123
|
__typename?: 'JiraQuery';
|
|
@@ -127550,6 +128183,7 @@ export declare type JiraQuery = {
|
|
|
127550
128183
|
forge: JiraForgeQuery;
|
|
127551
128184
|
formattingRulesByProject?: Maybe<JiraFormattingRuleConnection>;
|
|
127552
128185
|
formulaFieldAvailableReferenceFields?: Maybe<JiraFormulaFieldAvailableReferenceFieldConnection>;
|
|
128186
|
+
formulaFieldAvailableReferenceFieldsForScope?: Maybe<JiraFormulaFieldAvailableReferenceFieldConnection>;
|
|
127553
128187
|
formulaFieldConfiguredProjects?: Maybe<JiraFormulaFieldConfiguredProjectConnection>;
|
|
127554
128188
|
formulaFieldExpressionConfig?: Maybe<JiraFormulaFieldExpressionConfig>;
|
|
127555
128189
|
formulaFieldPreview?: Maybe<JiraFormulaFieldPreview>;
|
|
@@ -127586,6 +128220,7 @@ export declare type JiraQuery = {
|
|
|
127586
128220
|
isRovoEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
127587
128221
|
isRovoLLMEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
127588
128222
|
isSubtasksEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
128223
|
+
isUserActiveInAnySpace?: Maybe<Scalars['Boolean']['output']>;
|
|
127589
128224
|
isVotingEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
127590
128225
|
issue?: Maybe<JiraIssue>;
|
|
127591
128226
|
issueById?: Maybe<JiraIssue>;
|
|
@@ -127719,6 +128354,7 @@ export declare type JiraQuery = {
|
|
|
127719
128354
|
searchUserTeamMention?: Maybe<JiraMentionableConnection>;
|
|
127720
128355
|
searchViewContexts?: Maybe<JiraIssueSearchBulkViewContextsConnection>;
|
|
127721
128356
|
shouldShowAtlassianIntelligence?: Maybe<Scalars['Boolean']['output']>;
|
|
128357
|
+
spaceSearchForYou?: Maybe<JiraSpaceSearchForYouConnection>;
|
|
127722
128358
|
sprintById?: Maybe<JiraSprint>;
|
|
127723
128359
|
sprintSearch?: Maybe<JiraSprintConnection>;
|
|
127724
128360
|
startDateField?: Maybe<JiraJqlField>;
|
|
@@ -128056,6 +128692,13 @@ export declare type JiraQueryFormulaFieldAvailableReferenceFieldsArgs = {
|
|
|
128056
128692
|
projectKey: Scalars['String']['input'];
|
|
128057
128693
|
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
128058
128694
|
};
|
|
128695
|
+
export declare type JiraQueryFormulaFieldAvailableReferenceFieldsForScopeArgs = {
|
|
128696
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
128697
|
+
cloudId: Scalars['ID']['input'];
|
|
128698
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
128699
|
+
projectKey?: InputMaybe<Scalars['String']['input']>;
|
|
128700
|
+
searchTerm?: InputMaybe<Scalars['String']['input']>;
|
|
128701
|
+
};
|
|
128059
128702
|
export declare type JiraQueryFormulaFieldConfiguredProjectsArgs = {
|
|
128060
128703
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
128061
128704
|
cloudId: Scalars['ID']['input'];
|
|
@@ -128226,6 +128869,9 @@ export declare type JiraQueryIsRovoLlmEnabledArgs = {
|
|
|
128226
128869
|
export declare type JiraQueryIsSubtasksEnabledArgs = {
|
|
128227
128870
|
cloudId: Scalars['ID']['input'];
|
|
128228
128871
|
};
|
|
128872
|
+
export declare type JiraQueryIsUserActiveInAnySpaceArgs = {
|
|
128873
|
+
cloudId: Scalars['ID']['input'];
|
|
128874
|
+
};
|
|
128229
128875
|
export declare type JiraQueryIsVotingEnabledArgs = {
|
|
128230
128876
|
cloudId: Scalars['ID']['input'];
|
|
128231
128877
|
};
|
|
@@ -128711,10 +129357,8 @@ export declare type JiraQueryProjectListViewTemplatesArgs = {
|
|
|
128711
129357
|
};
|
|
128712
129358
|
export declare type JiraQueryProjectPoliciesArgs = {
|
|
128713
129359
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
128714
|
-
before?: InputMaybe<Scalars['String']['input']>;
|
|
128715
129360
|
cloudId: Scalars['ID']['input'];
|
|
128716
129361
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
128717
|
-
last?: InputMaybe<Scalars['Int']['input']>;
|
|
128718
129362
|
};
|
|
128719
129363
|
export declare type JiraQueryProjectPolicyArgs = {
|
|
128720
129364
|
id: Scalars['ID']['input'];
|
|
@@ -128909,6 +129553,12 @@ export declare type JiraQueryShouldShowAtlassianIntelligenceArgs = {
|
|
|
128909
129553
|
atlassianIntelligenceProductFeatureInput: JiraAtlassianIntelligenceProductFeatureInput;
|
|
128910
129554
|
cloudId: Scalars['ID']['input'];
|
|
128911
129555
|
};
|
|
129556
|
+
export declare type JiraQuerySpaceSearchForYouArgs = {
|
|
129557
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
129558
|
+
cloudId: Scalars['ID']['input'];
|
|
129559
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129560
|
+
input?: InputMaybe<JiraSpaceSearchForYouInput>;
|
|
129561
|
+
};
|
|
128912
129562
|
export declare type JiraQuerySprintByIdArgs = {
|
|
128913
129563
|
id: Scalars['ID']['input'];
|
|
128914
129564
|
};
|
|
@@ -129174,6 +129824,47 @@ export declare type JiraRedactionSortInput = {
|
|
|
129174
129824
|
field: JiraRedactionSortField;
|
|
129175
129825
|
order?: SortDirection;
|
|
129176
129826
|
};
|
|
129827
|
+
export declare type JiraRelatedLinkSuggestionConnection = {
|
|
129828
|
+
__typename?: 'JiraRelatedLinkSuggestionConnection';
|
|
129829
|
+
edges?: Maybe<Array<Maybe<JiraRelatedLinkSuggestionEdge>>>;
|
|
129830
|
+
errors?: Maybe<Array<QueryError>>;
|
|
129831
|
+
pageInfo: PageInfo;
|
|
129832
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
129833
|
+
};
|
|
129834
|
+
export declare type JiraRelatedLinkSuggestionEdge = {
|
|
129835
|
+
__typename?: 'JiraRelatedLinkSuggestionEdge';
|
|
129836
|
+
cursor: Scalars['String']['output'];
|
|
129837
|
+
node?: Maybe<JiraRelatedLinkSuggestionItem>;
|
|
129838
|
+
};
|
|
129839
|
+
export declare type JiraRelatedLinkSuggestionItem = {
|
|
129840
|
+
__typename?: 'JiraRelatedLinkSuggestionItem';
|
|
129841
|
+
iconUrl?: Maybe<Scalars['String']['output']>;
|
|
129842
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
129843
|
+
linkType?: Maybe<Scalars['String']['output']>;
|
|
129844
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
129845
|
+
productSource?: Maybe<Scalars['String']['output']>;
|
|
129846
|
+
sourceProductName?: Maybe<Scalars['String']['output']>;
|
|
129847
|
+
url?: Maybe<Scalars['String']['output']>;
|
|
129848
|
+
};
|
|
129849
|
+
export declare type JiraRelatedLinkSuggestions = JiraBaseNextActionsEntity & {
|
|
129850
|
+
__typename?: 'JiraRelatedLinkSuggestions';
|
|
129851
|
+
contentType?: Maybe<JiraNextActionContentType>;
|
|
129852
|
+
dismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
129853
|
+
group?: Maybe<JiraNextActionGroup>;
|
|
129854
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
129855
|
+
interactionType?: Maybe<JiraNextActionInteractionType>;
|
|
129856
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
129857
|
+
items?: Maybe<JiraRelatedLinkSuggestionConnection>;
|
|
129858
|
+
queryError?: Maybe<QueryError>;
|
|
129859
|
+
rank?: Maybe<Scalars['Float']['output']>;
|
|
129860
|
+
rationale?: Maybe<Scalars['String']['output']>;
|
|
129861
|
+
};
|
|
129862
|
+
export declare type JiraRelatedLinkSuggestionsItemsArgs = {
|
|
129863
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
129864
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
129865
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129866
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
129867
|
+
};
|
|
129177
129868
|
export declare type JiraReleaseNotesConfiguration = {
|
|
129178
129869
|
__typename?: 'JiraReleaseNotesConfiguration';
|
|
129179
129870
|
issueFieldIds?: Maybe<Array<Maybe<Scalars['ID']['output']>>>;
|
|
@@ -129605,7 +130296,7 @@ export declare type JiraRemoveAgentFromBoardViewStatusColumnInput = {
|
|
|
129605
130296
|
columnId: Scalars['ID']['input'];
|
|
129606
130297
|
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
129607
130298
|
};
|
|
129608
|
-
export declare type JiraRemoveAgentFromBoardViewStatusColumnPayload = {
|
|
130299
|
+
export declare type JiraRemoveAgentFromBoardViewStatusColumnPayload = Payload & {
|
|
129609
130300
|
__typename?: 'JiraRemoveAgentFromBoardViewStatusColumnPayload';
|
|
129610
130301
|
boardView?: Maybe<JiraBoardView>;
|
|
129611
130302
|
column?: Maybe<JiraBoardViewStatusColumn>;
|
|
@@ -130270,6 +130961,20 @@ export declare type JiraRovoConversationMetadata = {
|
|
|
130270
130961
|
actionMessageId?: Maybe<Scalars['String']['output']>;
|
|
130271
130962
|
channelConversationId: Scalars['ID']['output'];
|
|
130272
130963
|
};
|
|
130964
|
+
export declare type JiraSdlcSuggestions = JiraBaseNextActionsEntity & {
|
|
130965
|
+
__typename?: 'JiraSDLCSuggestions';
|
|
130966
|
+
approvedPullRequests?: Maybe<JiraIssuePullRequests>;
|
|
130967
|
+
contentType?: Maybe<JiraNextActionContentType>;
|
|
130968
|
+
dismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
130969
|
+
group?: Maybe<JiraNextActionGroup>;
|
|
130970
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
130971
|
+
interactionType?: Maybe<JiraNextActionInteractionType>;
|
|
130972
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
130973
|
+
openPullRequests?: Maybe<JiraIssuePullRequests>;
|
|
130974
|
+
queryError?: Maybe<QueryError>;
|
|
130975
|
+
rank?: Maybe<Scalars['Float']['output']>;
|
|
130976
|
+
rationale?: Maybe<Scalars['String']['output']>;
|
|
130977
|
+
};
|
|
130273
130978
|
export declare type JiraScenario = Node & {
|
|
130274
130979
|
__typename?: 'JiraScenario';
|
|
130275
130980
|
color?: Maybe<Scalars['String']['output']>;
|
|
@@ -130805,6 +131510,44 @@ export declare type JiraServiceManagementBulkCreateRequestTypeFromTemplateInput
|
|
|
130805
131510
|
createRequestTypeFromTemplateInputItems: Array<JiraServiceManagementCreateRequestTypeFromTemplateInput>;
|
|
130806
131511
|
projectId: Scalars['ID']['input'];
|
|
130807
131512
|
};
|
|
131513
|
+
export declare type JiraServiceManagementChannelSource = {
|
|
131514
|
+
__typename?: 'JiraServiceManagementChannelSource';
|
|
131515
|
+
displayName?: Maybe<Scalars['String']['output']>;
|
|
131516
|
+
id: Scalars['ID']['output'];
|
|
131517
|
+
};
|
|
131518
|
+
export declare type JiraServiceManagementChannelSourceConnection = {
|
|
131519
|
+
__typename?: 'JiraServiceManagementChannelSourceConnection';
|
|
131520
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementChannelSourceEdge>>>;
|
|
131521
|
+
pageInfo: PageInfo;
|
|
131522
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
131523
|
+
};
|
|
131524
|
+
export declare type JiraServiceManagementChannelSourceEdge = {
|
|
131525
|
+
__typename?: 'JiraServiceManagementChannelSourceEdge';
|
|
131526
|
+
cursor: Scalars['String']['output'];
|
|
131527
|
+
node?: Maybe<JiraServiceManagementChannelSource>;
|
|
131528
|
+
};
|
|
131529
|
+
export declare type JiraServiceManagementChannelSourceField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & JiraUserIssueFieldConfiguration & Node & {
|
|
131530
|
+
__typename?: 'JiraServiceManagementChannelSourceField';
|
|
131531
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
131532
|
+
channelSources?: Maybe<JiraServiceManagementChannelSourceConnection>;
|
|
131533
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
131534
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
131535
|
+
fieldId: Scalars['String']['output'];
|
|
131536
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
131537
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
131538
|
+
id: Scalars['ID']['output'];
|
|
131539
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
131540
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
131541
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
131542
|
+
issue?: Maybe<JiraIssue>;
|
|
131543
|
+
name: Scalars['String']['output'];
|
|
131544
|
+
type: Scalars['String']['output'];
|
|
131545
|
+
userFieldConfig?: Maybe<JiraUserFieldConfig>;
|
|
131546
|
+
};
|
|
131547
|
+
export declare type JiraServiceManagementChannelSourceFieldChannelSourcesArgs = {
|
|
131548
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
131549
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
131550
|
+
};
|
|
130808
131551
|
export declare type JiraServiceManagementComment = JiraComment & Node & {
|
|
130809
131552
|
__typename?: 'JiraServiceManagementComment';
|
|
130810
131553
|
author?: Maybe<User>;
|
|
@@ -132205,6 +132948,7 @@ export declare type JiraSetTimelineBarColorModePayload = Payload & {
|
|
|
132205
132948
|
__typename?: 'JiraSetTimelineBarColorModePayload';
|
|
132206
132949
|
errors?: Maybe<Array<MutationError>>;
|
|
132207
132950
|
success: Scalars['Boolean']['output'];
|
|
132951
|
+
view?: Maybe<JiraView>;
|
|
132208
132952
|
};
|
|
132209
132953
|
export declare type JiraSetTimelineHighlightedReleasesInput = {
|
|
132210
132954
|
highlightedReleases: Array<Scalars['ID']['input']>;
|
|
@@ -132253,6 +132997,7 @@ export declare type JiraSetTimelineViewHideReleasesPayload = Payload & {
|
|
|
132253
132997
|
__typename?: 'JiraSetTimelineViewHideReleasesPayload';
|
|
132254
132998
|
errors?: Maybe<Array<MutationError>>;
|
|
132255
132999
|
success: Scalars['Boolean']['output'];
|
|
133000
|
+
view?: Maybe<JiraView>;
|
|
132256
133001
|
};
|
|
132257
133002
|
export declare type JiraSetTimelineViewHideWarningsInput = {
|
|
132258
133003
|
hideWarnings: Scalars['Boolean']['input'];
|
|
@@ -132446,6 +133191,42 @@ export declare type JiraSimilarIssues = {
|
|
|
132446
133191
|
__typename?: 'JiraSimilarIssues';
|
|
132447
133192
|
featureEnabled: Scalars['Boolean']['output'];
|
|
132448
133193
|
};
|
|
133194
|
+
export declare type JiraSimilarWorkItemSuggestionConnection = {
|
|
133195
|
+
__typename?: 'JiraSimilarWorkItemSuggestionConnection';
|
|
133196
|
+
edges?: Maybe<Array<Maybe<JiraSimilarWorkItemSuggestionEdge>>>;
|
|
133197
|
+
errors?: Maybe<Array<QueryError>>;
|
|
133198
|
+
pageInfo: PageInfo;
|
|
133199
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133200
|
+
};
|
|
133201
|
+
export declare type JiraSimilarWorkItemSuggestionEdge = {
|
|
133202
|
+
__typename?: 'JiraSimilarWorkItemSuggestionEdge';
|
|
133203
|
+
cursor: Scalars['String']['output'];
|
|
133204
|
+
node?: Maybe<JiraSimilarWorkItemSuggestionItem>;
|
|
133205
|
+
};
|
|
133206
|
+
export declare type JiraSimilarWorkItemSuggestionItem = {
|
|
133207
|
+
__typename?: 'JiraSimilarWorkItemSuggestionItem';
|
|
133208
|
+
issue?: Maybe<JiraIssue>;
|
|
133209
|
+
similarityScore?: Maybe<Scalars['Float']['output']>;
|
|
133210
|
+
};
|
|
133211
|
+
export declare type JiraSimilarWorkItemSuggestions = JiraBaseNextActionsEntity & {
|
|
133212
|
+
__typename?: 'JiraSimilarWorkItemSuggestions';
|
|
133213
|
+
contentType?: Maybe<JiraNextActionContentType>;
|
|
133214
|
+
dismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
133215
|
+
group?: Maybe<JiraNextActionGroup>;
|
|
133216
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
133217
|
+
interactionType?: Maybe<JiraNextActionInteractionType>;
|
|
133218
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
133219
|
+
items?: Maybe<JiraSimilarWorkItemSuggestionConnection>;
|
|
133220
|
+
queryError?: Maybe<QueryError>;
|
|
133221
|
+
rank?: Maybe<Scalars['Float']['output']>;
|
|
133222
|
+
rationale?: Maybe<Scalars['String']['output']>;
|
|
133223
|
+
};
|
|
133224
|
+
export declare type JiraSimilarWorkItemSuggestionsItemsArgs = {
|
|
133225
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
133226
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
133227
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133228
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
133229
|
+
};
|
|
132449
133230
|
export declare type JiraSimpleNavigationItemType = JiraNavigationItemType & Node & {
|
|
132450
133231
|
__typename?: 'JiraSimpleNavigationItemType';
|
|
132451
133232
|
id: Scalars['ID']['output'];
|
|
@@ -132747,6 +133528,22 @@ export declare type JiraSoftwareProjectNavigationMetadata = {
|
|
|
132747
133528
|
isSimpleBoard: Scalars['Boolean']['output'];
|
|
132748
133529
|
totalBoardsInProject: Scalars['Long']['output'];
|
|
132749
133530
|
};
|
|
133531
|
+
export declare type JiraSpaceSearchForYouConnection = {
|
|
133532
|
+
__typename?: 'JiraSpaceSearchForYouConnection';
|
|
133533
|
+
edges?: Maybe<Array<Maybe<JiraSpaceSearchForYouEdge>>>;
|
|
133534
|
+
pageInfo: PageInfo;
|
|
133535
|
+
};
|
|
133536
|
+
export declare type JiraSpaceSearchForYouEdge = {
|
|
133537
|
+
__typename?: 'JiraSpaceSearchForYouEdge';
|
|
133538
|
+
cursor: Scalars['String']['output'];
|
|
133539
|
+
node?: Maybe<JiraProject>;
|
|
133540
|
+
projectId: Scalars['ID']['output'];
|
|
133541
|
+
};
|
|
133542
|
+
export declare type JiraSpaceSearchForYouInput = {
|
|
133543
|
+
spaceId?: InputMaybe<Scalars['ID']['input']>;
|
|
133544
|
+
teamId?: InputMaybe<Scalars['ID']['input']>;
|
|
133545
|
+
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
133546
|
+
};
|
|
132750
133547
|
export declare type JiraSpreadsheetGroup = {
|
|
132751
133548
|
__typename?: 'JiraSpreadsheetGroup';
|
|
132752
133549
|
afterGroupId?: Maybe<Scalars['String']['output']>;
|
|
@@ -135833,6 +136630,42 @@ export declare type JiraWhiteboardResource = JiraConsolidatedResource & {
|
|
|
135833
136630
|
id: Scalars['ID']['output'];
|
|
135834
136631
|
integration?: Maybe<JiraResourceIntegration>;
|
|
135835
136632
|
};
|
|
136633
|
+
export declare type JiraWorkBreakdownSuggestionConnection = {
|
|
136634
|
+
__typename?: 'JiraWorkBreakdownSuggestionConnection';
|
|
136635
|
+
edges?: Maybe<Array<Maybe<JiraWorkBreakdownSuggestionEdge>>>;
|
|
136636
|
+
errors?: Maybe<Array<QueryError>>;
|
|
136637
|
+
pageInfo: PageInfo;
|
|
136638
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
136639
|
+
};
|
|
136640
|
+
export declare type JiraWorkBreakdownSuggestionEdge = {
|
|
136641
|
+
__typename?: 'JiraWorkBreakdownSuggestionEdge';
|
|
136642
|
+
cursor: Scalars['String']['output'];
|
|
136643
|
+
node?: Maybe<JiraWorkBreakdownSuggestionItem>;
|
|
136644
|
+
};
|
|
136645
|
+
export declare type JiraWorkBreakdownSuggestionItem = {
|
|
136646
|
+
__typename?: 'JiraWorkBreakdownSuggestionItem';
|
|
136647
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
136648
|
+
summary?: Maybe<Scalars['String']['output']>;
|
|
136649
|
+
};
|
|
136650
|
+
export declare type JiraWorkBreakdownSuggestions = JiraBaseNextActionsEntity & {
|
|
136651
|
+
__typename?: 'JiraWorkBreakdownSuggestions';
|
|
136652
|
+
contentType?: Maybe<JiraNextActionContentType>;
|
|
136653
|
+
dismissed?: Maybe<Scalars['Boolean']['output']>;
|
|
136654
|
+
group?: Maybe<JiraNextActionGroup>;
|
|
136655
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
136656
|
+
interactionType?: Maybe<JiraNextActionInteractionType>;
|
|
136657
|
+
isHidden?: Maybe<Scalars['Boolean']['output']>;
|
|
136658
|
+
items?: Maybe<JiraWorkBreakdownSuggestionConnection>;
|
|
136659
|
+
queryError?: Maybe<QueryError>;
|
|
136660
|
+
rank?: Maybe<Scalars['Float']['output']>;
|
|
136661
|
+
rationale?: Maybe<Scalars['String']['output']>;
|
|
136662
|
+
};
|
|
136663
|
+
export declare type JiraWorkBreakdownSuggestionsItemsArgs = {
|
|
136664
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
136665
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
136666
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
136667
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
136668
|
+
};
|
|
135836
136669
|
export declare type JiraWorkCategory = {
|
|
135837
136670
|
__typename?: 'JiraWorkCategory';
|
|
135838
136671
|
value?: Maybe<Scalars['String']['output']>;
|
|
@@ -137171,7 +138004,9 @@ export declare type JsmChannelsEstablishConnectionInput = {
|
|
|
137171
138004
|
};
|
|
137172
138005
|
export declare type JsmChannelsEstablishConnectionPayload = Payload & {
|
|
137173
138006
|
__typename?: 'JsmChannelsEstablishConnectionPayload';
|
|
138007
|
+
containerId?: Maybe<Scalars['String']['output']>;
|
|
137174
138008
|
errors?: Maybe<Array<MutationError>>;
|
|
138009
|
+
redirectUrl?: Maybe<Scalars['String']['output']>;
|
|
137175
138010
|
serviceId?: Maybe<Scalars['String']['output']>;
|
|
137176
138011
|
success: Scalars['Boolean']['output'];
|
|
137177
138012
|
};
|
|
@@ -137370,6 +138205,10 @@ export declare type JsmChannelsResolutionPlanActionPayload = Payload & {
|
|
|
137370
138205
|
errors?: Maybe<Array<MutationError>>;
|
|
137371
138206
|
success: Scalars['Boolean']['output'];
|
|
137372
138207
|
};
|
|
138208
|
+
export declare enum JsmChannelsResolutionPlanAssigneeType {
|
|
138209
|
+
Human = "HUMAN",
|
|
138210
|
+
TaskAgent = "TASK_AGENT"
|
|
138211
|
+
}
|
|
137373
138212
|
export declare type JsmChannelsResolutionPlanGraph = {
|
|
137374
138213
|
__typename?: 'JsmChannelsResolutionPlanGraph';
|
|
137375
138214
|
conversationId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -137394,6 +138233,13 @@ export declare enum JsmChannelsResolutionPlanStepStatus {
|
|
|
137394
138233
|
Pending = "PENDING",
|
|
137395
138234
|
Waiting = "WAITING"
|
|
137396
138235
|
}
|
|
138236
|
+
export declare type JsmChannelsRovoServiceAgentConfig = {
|
|
138237
|
+
__typename?: 'JsmChannelsRovoServiceAgentConfig';
|
|
138238
|
+
isRovoServiceEnabled: Scalars['Boolean']['output'];
|
|
138239
|
+
requestTypesEnabled: Scalars['Int']['output'];
|
|
138240
|
+
taskAgentsEnabled: Scalars['Int']['output'];
|
|
138241
|
+
};
|
|
138242
|
+
export declare type JsmChannelsRovoServiceAgentConfigResult = JsmChannelsRovoServiceAgentConfig | QueryError;
|
|
137397
138243
|
export declare enum JsmChannelsRuleEvaluationStrategy {
|
|
137398
138244
|
JqlFirst = "JQL_FIRST",
|
|
137399
138245
|
JqlOnly = "JQL_ONLY",
|
|
@@ -137445,6 +138291,7 @@ export declare type JsmChannelsSetPreviewModePayload = Payload & {
|
|
|
137445
138291
|
};
|
|
137446
138292
|
export declare type JsmChannelsStepNode = JsmChannelsPlanNode & {
|
|
137447
138293
|
__typename?: 'JsmChannelsStepNode';
|
|
138294
|
+
assigneeType?: Maybe<JsmChannelsResolutionPlanAssigneeType>;
|
|
137448
138295
|
customPlanNodeAttributes?: Maybe<Array<JsmChannelsCustomPlanNodeAttribute>>;
|
|
137449
138296
|
estimatedDurationSeconds?: Maybe<Scalars['Int']['output']>;
|
|
137450
138297
|
id: Scalars['ID']['output'];
|
|
@@ -138774,6 +139621,7 @@ export declare type KitsuneField = Node & {
|
|
|
138774
139621
|
id: Scalars['ID']['output'];
|
|
138775
139622
|
name: Scalars['String']['output'];
|
|
138776
139623
|
type: KitsuneFieldType;
|
|
139624
|
+
valueType?: Maybe<KitsuneFieldValueType>;
|
|
138777
139625
|
};
|
|
138778
139626
|
export declare type KitsuneFieldConnection = KitsuneConnection & {
|
|
138779
139627
|
__typename?: 'KitsuneFieldConnection';
|
|
@@ -138798,6 +139646,17 @@ export declare type KitsuneFieldValue = {
|
|
|
138798
139646
|
__typename?: 'KitsuneFieldValue';
|
|
138799
139647
|
_id: Scalars['ID']['output'];
|
|
138800
139648
|
};
|
|
139649
|
+
export declare enum KitsuneFieldValueType {
|
|
139650
|
+
Boolean = "BOOLEAN",
|
|
139651
|
+
Date = "DATE",
|
|
139652
|
+
Email = "EMAIL",
|
|
139653
|
+
Multiselect = "MULTISELECT",
|
|
139654
|
+
Number = "NUMBER",
|
|
139655
|
+
Phone = "PHONE",
|
|
139656
|
+
Select = "SELECT",
|
|
139657
|
+
Text = "TEXT",
|
|
139658
|
+
Url = "URL"
|
|
139659
|
+
}
|
|
138801
139660
|
export declare type KitsuneFilter = {
|
|
138802
139661
|
__typename?: 'KitsuneFilter';
|
|
138803
139662
|
comparisonOperator: KitsuneComparisonOperator;
|
|
@@ -138828,7 +139687,9 @@ export declare type KitsuneInsight = Node & {
|
|
|
138828
139687
|
createdAt: Scalars['DateTime']['output'];
|
|
138829
139688
|
creator?: Maybe<User>;
|
|
138830
139689
|
creatorId?: Maybe<Scalars['ID']['output']>;
|
|
139690
|
+
externalId?: Maybe<Scalars['ID']['output']>;
|
|
138831
139691
|
id: Scalars['ID']['output'];
|
|
139692
|
+
jiraIssue?: Maybe<JiraIssue>;
|
|
138832
139693
|
snippets: KitsuneSnippetConnection;
|
|
138833
139694
|
summary?: Maybe<KitsuneSummary>;
|
|
138834
139695
|
title: Scalars['String']['output'];
|
|
@@ -143915,6 +144776,15 @@ export declare enum MarketplaceStoreAcceptableResponse {
|
|
|
143915
144776
|
NotApplicable = "NOT_APPLICABLE",
|
|
143916
144777
|
True = "TRUE"
|
|
143917
144778
|
}
|
|
144779
|
+
export declare type MarketplaceStoreActiveApp = {
|
|
144780
|
+
__typename?: 'MarketplaceStoreActiveApp';
|
|
144781
|
+
appKey: Scalars['String']['output'];
|
|
144782
|
+
parentProducts: Array<MarketplaceStoreActiveParentProduct>;
|
|
144783
|
+
};
|
|
144784
|
+
export declare type MarketplaceStoreActiveParentProduct = {
|
|
144785
|
+
__typename?: 'MarketplaceStoreActiveParentProduct';
|
|
144786
|
+
parentProductKey: Scalars['String']['output'];
|
|
144787
|
+
};
|
|
143918
144788
|
export declare type MarketplaceStoreAlgoliaFilter = {
|
|
143919
144789
|
__typename?: 'MarketplaceStoreAlgoliaFilter';
|
|
143920
144790
|
key: Scalars['String']['output'];
|
|
@@ -145066,6 +145936,11 @@ export declare type MarketplaceStorePrivacyEnhancingTechniques = {
|
|
|
145066
145936
|
export declare type MarketplaceStoreProduct = {
|
|
145067
145937
|
appKey?: InputMaybe<Scalars['String']['input']>;
|
|
145068
145938
|
};
|
|
145939
|
+
export declare type MarketplaceStoreProductDetailsByCloudIdResponse = {
|
|
145940
|
+
__typename?: 'MarketplaceStoreProductDetailsByCloudIdResponse';
|
|
145941
|
+
activeApps: Array<MarketplaceStoreActiveApp>;
|
|
145942
|
+
cloudId: Scalars['String']['output'];
|
|
145943
|
+
};
|
|
145069
145944
|
export declare type MarketplaceStoreProductListing = {
|
|
145070
145945
|
__typename?: 'MarketplaceStoreProductListing';
|
|
145071
145946
|
developerId: Scalars['ID']['output'];
|
|
@@ -145187,6 +146062,7 @@ export declare type MarketplaceStoreQueryApi = {
|
|
|
145187
146062
|
partnerByPartnerName?: Maybe<MarketplaceStoreSearchPartnerResponse>;
|
|
145188
146063
|
personalisedContextAndLayout: MarketplaceStorePersonalisedContextAndLayoutResponse;
|
|
145189
146064
|
privacyAndSecurity: MarketplaceStorePrivacyAndSecurityResponse;
|
|
146065
|
+
productDetailsByCloudId?: Maybe<MarketplaceStoreProductDetailsByCloudIdResponse>;
|
|
145190
146066
|
productTags?: Maybe<Array<Maybe<MarketplaceStoreProductTag>>>;
|
|
145191
146067
|
recommendationsSection?: Maybe<MarketplaceStoreRecommendationsSection>;
|
|
145192
146068
|
reviewSummary?: Maybe<MarketplaceStoreReviewSummaryResponse>;
|
|
@@ -145310,6 +146186,9 @@ export declare type MarketplaceStoreQueryApiPersonalisedContextAndLayoutArgs = {
|
|
|
145310
146186
|
export declare type MarketplaceStoreQueryApiPrivacyAndSecurityArgs = {
|
|
145311
146187
|
input: MarketplaceStorePrivacyAndSecurityRequestInput;
|
|
145312
146188
|
};
|
|
146189
|
+
export declare type MarketplaceStoreQueryApiProductDetailsByCloudIdArgs = {
|
|
146190
|
+
cloudId: Scalars['String']['input'];
|
|
146191
|
+
};
|
|
145313
146192
|
export declare type MarketplaceStoreQueryApiProductTagsArgs = {
|
|
145314
146193
|
tagType?: InputMaybe<MarketplaceStoreProductTagType>;
|
|
145315
146194
|
};
|
|
@@ -147014,6 +147893,7 @@ export declare type MercuryCreateViewInput = {
|
|
|
147014
147893
|
name: Scalars['String']['input'];
|
|
147015
147894
|
owner?: InputMaybe<Scalars['ID']['input']>;
|
|
147016
147895
|
settings: MercuryViewSettingsInput;
|
|
147896
|
+
starred?: InputMaybe<Scalars['Boolean']['input']>;
|
|
147017
147897
|
};
|
|
147018
147898
|
export declare type MercuryCurrency = {
|
|
147019
147899
|
__typename?: 'MercuryCurrency';
|
|
@@ -150724,21 +151604,23 @@ export declare type MercuryProviderOrchestrationQueryApiSearchWorkByBenefitItemA
|
|
|
150724
151604
|
};
|
|
150725
151605
|
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByChangeProposalArgs = {
|
|
150726
151606
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
151607
|
+
applicationKey?: InputMaybe<Scalars['String']['input']>;
|
|
150727
151608
|
changeProposalId: Scalars['ID']['input'];
|
|
150728
151609
|
cloudId: Scalars['ID']['input'];
|
|
150729
151610
|
filter?: InputMaybe<MercuryProviderWorkSearchFilters>;
|
|
150730
151611
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
150731
|
-
providerKey
|
|
151612
|
+
providerKey?: InputMaybe<Scalars['String']['input']>;
|
|
150732
151613
|
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
150733
151614
|
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
150734
151615
|
};
|
|
150735
151616
|
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByFocusAreaArgs = {
|
|
150736
151617
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
151618
|
+
applicationKey?: InputMaybe<Scalars['String']['input']>;
|
|
150737
151619
|
cloudId: Scalars['ID']['input'];
|
|
150738
151620
|
filter?: InputMaybe<MercuryProviderWorkSearchFilters>;
|
|
150739
151621
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
150740
151622
|
focusAreaId?: InputMaybe<Scalars['ID']['input']>;
|
|
150741
|
-
providerKey
|
|
151623
|
+
providerKey?: InputMaybe<Scalars['String']['input']>;
|
|
150742
151624
|
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
150743
151625
|
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
150744
151626
|
};
|
|
@@ -151172,7 +152054,6 @@ export declare type MercuryReorderStarredViewInput = {
|
|
|
151172
152054
|
export declare type MercuryReorderStarredViewPayload = Payload & {
|
|
151173
152055
|
__typename?: 'MercuryReorderStarredViewPayload';
|
|
151174
152056
|
errors?: Maybe<Array<MutationError>>;
|
|
151175
|
-
starredViews?: Maybe<Array<MercuryView>>;
|
|
151176
152057
|
success: Scalars['Boolean']['output'];
|
|
151177
152058
|
};
|
|
151178
152059
|
export declare type MercuryRequestFundsChange = MercuryChangeInterface & Node & {
|
|
@@ -151740,8 +152621,8 @@ export declare type MercuryStarViewInput = {
|
|
|
151740
152621
|
export declare type MercuryStarViewPayload = Payload & {
|
|
151741
152622
|
__typename?: 'MercuryStarViewPayload';
|
|
151742
152623
|
errors?: Maybe<Array<MutationError>>;
|
|
151743
|
-
starredItem?: Maybe<MercuryView>;
|
|
151744
152624
|
success: Scalars['Boolean']['output'];
|
|
152625
|
+
view?: Maybe<MercuryView>;
|
|
151745
152626
|
};
|
|
151746
152627
|
export declare enum MercuryStatusColor {
|
|
151747
152628
|
Blue = "BLUE",
|
|
@@ -152466,7 +153347,7 @@ export declare type MercuryUnstarViewPayload = Payload & {
|
|
|
152466
153347
|
__typename?: 'MercuryUnstarViewPayload';
|
|
152467
153348
|
errors?: Maybe<Array<MutationError>>;
|
|
152468
153349
|
success: Scalars['Boolean']['output'];
|
|
152469
|
-
|
|
153350
|
+
view?: Maybe<MercuryView>;
|
|
152470
153351
|
};
|
|
152471
153352
|
export declare type MercuryUpdateActiveCurrencyInput = {
|
|
152472
153353
|
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -153449,6 +154330,7 @@ export declare type Mutation = {
|
|
|
153449
154330
|
addPublicLinkPermissions?: Maybe<AddPublicLinkPermissionsPayload>;
|
|
153450
154331
|
addReaction?: Maybe<SaveReactionResponse>;
|
|
153451
154332
|
admin_activateUser?: Maybe<AdminActiveUserResponsePayload>;
|
|
154333
|
+
admin_addConnector?: Maybe<AdminAddConnectorPayload>;
|
|
153452
154334
|
admin_assignRole?: Maybe<AdminAssignRoleResponsePayload>;
|
|
153453
154335
|
admin_auditLogEventExport?: Maybe<AdminAuditLogEventExportResponsePayload>;
|
|
153454
154336
|
admin_cancelAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
@@ -153456,12 +154338,14 @@ export declare type Mutation = {
|
|
|
153456
154338
|
admin_createAiPolicy?: Maybe<AdminCreateAiPolicyResponsePayload>;
|
|
153457
154339
|
admin_createAuditLogBackgroundQuery?: Maybe<AdminAuditLogBackgroundQueryPayload>;
|
|
153458
154340
|
admin_createInvitePolicy?: Maybe<AdminCreateInvitePolicyResponsePayload>;
|
|
154341
|
+
admin_createOutboundAuthService?: Maybe<AdminCreateOutboundAuthServicePayload>;
|
|
153459
154342
|
admin_deactivateUser?: Maybe<AdminDeactivateResponsePayload>;
|
|
153460
154343
|
admin_deleteAccessUrl?: Maybe<AdminAccessUrlDeletionResponsePayload>;
|
|
153461
154344
|
admin_deleteAiPolicy?: Maybe<AdminDeleteAiPolicyResponsePayload>;
|
|
153462
154345
|
admin_deleteInvitePolicy?: Maybe<AdminDeleteInvitePolicyResponsePayload>;
|
|
153463
154346
|
admin_impersonateUser?: Maybe<AdminImpersonationResponsePayload>;
|
|
153464
154347
|
admin_invite?: Maybe<AdminInviteResponsePayload>;
|
|
154348
|
+
admin_registerNewDataSourceId?: Maybe<AdminRegisterNewDataSourceIdPayload>;
|
|
153465
154349
|
admin_releaseImpersonationUser?: Maybe<AdminReleaseImpersonationResponsePayload>;
|
|
153466
154350
|
admin_removeUser?: Maybe<AdminRemoveUserResponsePayload>;
|
|
153467
154351
|
admin_revokeRole?: Maybe<AdminRevokeRoleResponsePayload>;
|
|
@@ -153513,7 +154397,9 @@ export declare type Mutation = {
|
|
|
153513
154397
|
agentWorkspace_archiveSkill?: Maybe<AgentWorkspaceArchiveSkillPayload>;
|
|
153514
154398
|
agentWorkspace_assignAgentToGap?: Maybe<AgentWorkspaceAssignAgentToGapPayload>;
|
|
153515
154399
|
agentWorkspace_assignAgentsToSkill?: Maybe<AgentWorkspaceAssignAgentsToSkillPayload>;
|
|
154400
|
+
agentWorkspace_cancelRoutingTableGeneration?: Maybe<AgentWorkspaceCancelRoutingTableGenerationPayload>;
|
|
153516
154401
|
agentWorkspace_createAndLinkTeamsFromGroups?: Maybe<AgentWorkspaceCreateAndLinkTeamsPayload>;
|
|
154402
|
+
agentWorkspace_createDraftedRoutingTable?: Maybe<AgentWorkspaceCreateDraftedRoutingTablePayload>;
|
|
153517
154403
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
153518
154404
|
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
153519
154405
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
@@ -153528,6 +154414,7 @@ export declare type Mutation = {
|
|
|
153528
154414
|
agentWorkspace_startBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
153529
154415
|
agentWorkspace_startBulkScheduleImportJob?: Maybe<AgentWorkspaceStartBulkImportPayload>;
|
|
153530
154416
|
agentWorkspace_startGenerateRoutingTable?: Maybe<AgentWorkspaceStartGenerateRoutingTablePayload>;
|
|
154417
|
+
agentWorkspace_submitDraftedRoutingTable?: Maybe<AgentWorkspaceSubmitDraftedRoutingTablePayload>;
|
|
153531
154418
|
agentWorkspace_updateRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
153532
154419
|
agentWorkspace_updateSchedule?: Maybe<AgentWorkspaceUpdateSchedulePayload>;
|
|
153533
154420
|
agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
@@ -153611,17 +154498,17 @@ export declare type Mutation = {
|
|
|
153611
154498
|
assetsVertical_createDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
|
|
153612
154499
|
assetsVertical_createItemMappings?: Maybe<AssetsVerticalItemMappingsPayload>;
|
|
153613
154500
|
assetsVertical_createRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
|
|
153614
|
-
assetsVertical_createVerticalInstantiation
|
|
154501
|
+
assetsVertical_createVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
|
|
153615
154502
|
assetsVertical_createVerticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryPayload>;
|
|
153616
154503
|
assetsVertical_deleteAssetTypesTracking?: Maybe<AssetsVerticalAssetTypesTrackingPayload>;
|
|
153617
154504
|
assetsVertical_deleteDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
|
|
153618
154505
|
assetsVertical_deleteItemMapping?: Maybe<AssetsVerticalItemMappingPayload>;
|
|
153619
154506
|
assetsVertical_deleteRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
|
|
153620
154507
|
assetsVertical_generateInsights?: Maybe<AssetsVerticalGenerateInsightsPayload>;
|
|
153621
|
-
assetsVertical_instantiateBundleByType
|
|
154508
|
+
assetsVertical_instantiateBundleByType?: Maybe<AssetsVerticalAsyncTaskPayload>;
|
|
153622
154509
|
assetsVertical_updateDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
|
|
153623
154510
|
assetsVertical_updateRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentsMutationPayload>;
|
|
153624
|
-
assetsVertical_updateVerticalInstantiation
|
|
154511
|
+
assetsVertical_updateVerticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationPayload>;
|
|
153625
154512
|
assetsVertical_updateVerticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryPayload>;
|
|
153626
154513
|
assets_addExternalReferenceTypeAttributeValue?: Maybe<Array<Maybe<AssetsExternalReferenceTypeAttributeOnObject>>>;
|
|
153627
154514
|
assets_deleteExternalReferenceTypeAttributeValue?: Maybe<Array<Maybe<AssetsExternalReferenceTypeAttributeOnObject>>>;
|
|
@@ -153690,7 +154577,6 @@ export declare type Mutation = {
|
|
|
153690
154577
|
bulkUpdateContentDataClassificationLevel?: Maybe<BulkUpdateContentDataClassificationLevelPayload>;
|
|
153691
154578
|
bulkUpdateMainSpaceSidebarLinks?: Maybe<Array<Maybe<SpaceSidebarLink>>>;
|
|
153692
154579
|
ccp?: Maybe<CcpMutationApi>;
|
|
153693
|
-
ccp_updateAllowancePoolAllocations?: Maybe<Array<Maybe<CcpAllowancePoolAllocationUpdateResult>>>;
|
|
153694
154580
|
champion?: Maybe<UnifiedChampionMutation>;
|
|
153695
154581
|
changeManagement_deleteLastRovoRiskAssessment: Scalars['Boolean']['output'];
|
|
153696
154582
|
changeManagement_recordLastRovoRiskAssessment: Scalars['Boolean']['output'];
|
|
@@ -153749,6 +154635,7 @@ export declare type Mutation = {
|
|
|
153749
154635
|
confluence_createSmartFolder?: Maybe<ConfluenceCreateSmartFolderPayload>;
|
|
153750
154636
|
confluence_createTopic?: Maybe<ConfluenceCreateTopicPayload>;
|
|
153751
154637
|
confluence_createWorkflowApplication?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
154638
|
+
confluence_createWorkflowApplicationWithReview?: Maybe<ConfluenceWorkflowApplicationPayload>;
|
|
153752
154639
|
confluence_deleteAnswer?: Maybe<ConfluenceDeleteAnswerPayload>;
|
|
153753
154640
|
confluence_deleteCalendar?: Maybe<ConfluenceDeleteCalendarPayload>;
|
|
153754
154641
|
confluence_deleteCalendarCustomEventType?: Maybe<ConfluenceDeleteCalendarCustomEventTypePayload>;
|
|
@@ -153808,6 +154695,7 @@ export declare type Mutation = {
|
|
|
153808
154695
|
confluence_sendToDesktop?: Maybe<ConfluenceDesktopSendPayload>;
|
|
153809
154696
|
confluence_setContentApprovalsSpaceSettings?: Maybe<ConfluenceContentApprovalsSpaceSettingsPayload>;
|
|
153810
154697
|
confluence_setContentGeneralAccessMode?: Maybe<ConfluenceSetContentGeneralAccessModePayload>;
|
|
154698
|
+
confluence_setRolesHubTransitionStep?: Maybe<ConfluenceSetRolesHubTransitionStepPayload>;
|
|
153811
154699
|
confluence_setSubCalendarReminder?: Maybe<ConfluenceSetSubCalendarReminderPayload>;
|
|
153812
154700
|
confluence_shareContent?: Maybe<ConfluenceShareContentPayload>;
|
|
153813
154701
|
confluence_subscribeCalendars?: Maybe<ConfluenceSubscribeCalendarPayload>;
|
|
@@ -153963,6 +154851,7 @@ export declare type Mutation = {
|
|
|
153963
154851
|
csmAi_updateKnowledgeSource?: Maybe<CsmAiKnowledgeSourcePayload>;
|
|
153964
154852
|
csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
|
|
153965
154853
|
csm_updateLiveChatSettings?: Maybe<CustomerServiceLiveChatSettingsPayload>;
|
|
154854
|
+
csm_upsertEmailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigUpsertPayload>;
|
|
153966
154855
|
csm_upsertHelpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataUpsertPayload>;
|
|
153967
154856
|
customerService?: Maybe<CustomerServiceMutationApi>;
|
|
153968
154857
|
customerSupport?: Maybe<SupportRequestCatalogMutationApi>;
|
|
@@ -154056,6 +154945,14 @@ export declare type Mutation = {
|
|
|
154056
154945
|
favouritePage?: Maybe<FavouritePagePayload>;
|
|
154057
154946
|
favouriteSpace?: Maybe<FavouriteSpacePayload>;
|
|
154058
154947
|
favouriteSpaceBulk?: Maybe<FavouriteSpaceBulkPayload>;
|
|
154948
|
+
focus_createView?: Maybe<MercuryUpsertViewPayload>;
|
|
154949
|
+
focus_deleteView?: Maybe<MercuryDeleteViewPayload>;
|
|
154950
|
+
focus_reorderStarredView?: Maybe<MercuryReorderStarredViewPayload>;
|
|
154951
|
+
focus_starView?: Maybe<MercuryStarViewPayload>;
|
|
154952
|
+
focus_unstarView?: Maybe<MercuryUnstarViewPayload>;
|
|
154953
|
+
focus_updateViewName?: Maybe<MercuryUpsertViewPayload>;
|
|
154954
|
+
focus_updateViewOwner?: Maybe<MercuryUpsertViewPayload>;
|
|
154955
|
+
focus_updateViewSettings?: Maybe<MercuryUpsertViewPayload>;
|
|
154059
154956
|
followUser?: Maybe<FollowUserPayload>;
|
|
154060
154957
|
generateAdminReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
154061
154958
|
generatePermsReport?: Maybe<ConfluenceAdminReportPayload>;
|
|
@@ -154137,6 +155034,7 @@ export declare type Mutation = {
|
|
|
154137
155034
|
gravity_createViewFromUserPrompt?: Maybe<GravityCreateViewFromUserPromptPayload>;
|
|
154138
155035
|
gravity_deleteReaction?: Maybe<GravityDeleteReactionPayload>;
|
|
154139
155036
|
gravity_generateViewTemplateFromUserPrompt?: Maybe<GravityGenerateViewTemplateFromUserPromptPayload>;
|
|
155037
|
+
gravity_postFeedback?: Maybe<GravityPostFeedbackPayload>;
|
|
154140
155038
|
gravity_updateDeliverySettings?: Maybe<GravityUpdateDeliverySettingsPayload>;
|
|
154141
155039
|
growthUnifiedProfile_createEntitlementProfile?: Maybe<GrowthUnifiedProfileCreateEntitlementProfileResponse>;
|
|
154142
155040
|
growthUnifiedProfile_createOrgProfile?: Maybe<GrowthUnifiedProfileTwcCreateOrgProfileResponse>;
|
|
@@ -154321,6 +155219,7 @@ export declare type Mutation = {
|
|
|
154321
155219
|
kitsune_createCustomer?: Maybe<KitsuneCustomer>;
|
|
154322
155220
|
kitsune_createCustomerField?: Maybe<KitsuneCustomerCustomField>;
|
|
154323
155221
|
kitsune_createFeedback?: Maybe<KitsuneFeedback>;
|
|
155222
|
+
kitsune_createField?: Maybe<KitsuneField>;
|
|
154324
155223
|
kitsune_createInsight?: Maybe<KitsuneInsight>;
|
|
154325
155224
|
kitsune_createOrganization?: Maybe<KitsuneOrganization>;
|
|
154326
155225
|
kitsune_createOrganizationField?: Maybe<KitsuneCustomerCustomField>;
|
|
@@ -154335,6 +155234,7 @@ export declare type Mutation = {
|
|
|
154335
155234
|
kitsune_moveView?: Maybe<KitsuneSpace>;
|
|
154336
155235
|
kitsune_removeCustomer?: Maybe<KitsuneDeletedRecord>;
|
|
154337
155236
|
kitsune_removeFeedback?: Maybe<KitsuneDeletedRecord>;
|
|
155237
|
+
kitsune_removeField?: Maybe<KitsuneDeletedRecord>;
|
|
154338
155238
|
kitsune_removeInsight?: Maybe<KitsuneDeletedRecord>;
|
|
154339
155239
|
kitsune_removeOrganization?: Maybe<KitsuneDeletedRecord>;
|
|
154340
155240
|
kitsune_removeSection?: Maybe<KitsuneDeletedRecord>;
|
|
@@ -154345,6 +155245,7 @@ export declare type Mutation = {
|
|
|
154345
155245
|
kitsune_syncCustomerFields?: Maybe<KitsuneJob>;
|
|
154346
155246
|
kitsune_updateCustomer?: Maybe<KitsuneCustomer>;
|
|
154347
155247
|
kitsune_updateFeedback?: Maybe<KitsuneFeedback>;
|
|
155248
|
+
kitsune_updateField?: Maybe<KitsuneField>;
|
|
154348
155249
|
kitsune_updateInsight?: Maybe<KitsuneInsight>;
|
|
154349
155250
|
kitsune_updateOrganization?: Maybe<KitsuneOrganization>;
|
|
154350
155251
|
kitsune_updateSection?: Maybe<KitsuneSection>;
|
|
@@ -154370,21 +155271,13 @@ export declare type Mutation = {
|
|
|
154370
155271
|
mercury?: Maybe<MercuryMutationApi>;
|
|
154371
155272
|
mercury_businessDomains?: Maybe<MercuryBusinessDomainsMutationApi>;
|
|
154372
155273
|
mercury_comments?: Maybe<MercuryCommentMutationApi>;
|
|
154373
|
-
mercury_createView?: Maybe<MercuryUpsertViewPayload>;
|
|
154374
|
-
mercury_deleteView?: Maybe<MercuryDeleteViewPayload>;
|
|
154375
155274
|
mercury_funds?: Maybe<MercuryFundsMutationApi>;
|
|
154376
155275
|
mercury_insights?: Maybe<MercuryInsightsMutationApi>;
|
|
154377
155276
|
mercury_organizations?: Maybe<MercuryOrganizationsMutationApi>;
|
|
154378
155277
|
mercury_providerOrchestration?: Maybe<MercuryProviderOrchestrationMutationApi>;
|
|
154379
|
-
mercury_reorderStarredView?: Maybe<MercuryReorderStarredViewPayload>;
|
|
154380
155278
|
mercury_risks?: Maybe<MercuryRisksMutationApi>;
|
|
154381
|
-
mercury_starView?: Maybe<MercuryStarViewPayload>;
|
|
154382
155279
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsMutationApi>;
|
|
154383
155280
|
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
155281
|
migrateSpaceShortcuts?: Maybe<MigrateSpaceShortcutsPayload>;
|
|
154389
155282
|
moveBlog?: Maybe<MoveBlogPayload>;
|
|
154390
155283
|
movePageAfter?: Maybe<MovePagePayload>;
|
|
@@ -154565,6 +155458,7 @@ export declare type Mutation = {
|
|
|
154565
155458
|
spf_createAsk?: Maybe<SpfUpsertAskPayload>;
|
|
154566
155459
|
spf_createAskComment?: Maybe<SpfUpsertAskCommentPayload>;
|
|
154567
155460
|
spf_createAskUpdate?: Maybe<SpfUpsertAskUpdatePayload>;
|
|
155461
|
+
spf_createAsks?: Maybe<SpfCreateAsksPayload>;
|
|
154568
155462
|
spf_createPlan?: Maybe<SpfUpsertPlanPayload>;
|
|
154569
155463
|
spf_createPlanPortfolioAllowedType?: Maybe<SpfUpsertPlanPortfolioAllowedTypePayload>;
|
|
154570
155464
|
spf_createPlanScenario?: Maybe<SpfUpsertPlanScenarioPayload>;
|
|
@@ -154741,6 +155635,7 @@ export declare type Mutation = {
|
|
|
154741
155635
|
updateUserPreferences?: Maybe<UserPreferences>;
|
|
154742
155636
|
upgradeApp?: Maybe<AppInstallationUpgradeResponse>;
|
|
154743
155637
|
userAuthTokenForExtension?: Maybe<UserAuthTokenForExtensionResponse>;
|
|
155638
|
+
uts_updateAllowancePoolAllocations?: Maybe<Array<Maybe<UtsAllowancePoolAllocationUpdateResult>>>;
|
|
154744
155639
|
virtualAgent?: Maybe<VirtualAgentMutationApi>;
|
|
154745
155640
|
watchBlogs?: Maybe<WatchSpacePayload>;
|
|
154746
155641
|
watchContent?: Maybe<WatchContentPayload>;
|
|
@@ -154772,6 +155667,16 @@ export declare type MutationAddReactionArgs = {
|
|
|
154772
155667
|
export declare type MutationAdmin_ActivateUserArgs = {
|
|
154773
155668
|
input: AdminActivateUserInput;
|
|
154774
155669
|
};
|
|
155670
|
+
export declare type MutationAdmin_AddConnectorArgs = {
|
|
155671
|
+
connectorId: Scalars['ID']['input'];
|
|
155672
|
+
connectorName: Scalars['String']['input'];
|
|
155673
|
+
connectorSyncType?: InputMaybe<Scalars['String']['input']>;
|
|
155674
|
+
connectorType: Scalars['String']['input'];
|
|
155675
|
+
consentText: Scalars['String']['input'];
|
|
155676
|
+
orgId: Scalars['ID']['input'];
|
|
155677
|
+
properties: Array<AdminConnectorPropertyInput>;
|
|
155678
|
+
resourceId: Scalars['ID']['input'];
|
|
155679
|
+
};
|
|
154775
155680
|
export declare type MutationAdmin_AssignRoleArgs = {
|
|
154776
155681
|
assignRoleInput?: InputMaybe<AdminAssignRoleInput>;
|
|
154777
155682
|
directoryId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -154803,6 +155708,12 @@ export declare type MutationAdmin_CreateInvitePolicyArgs = {
|
|
|
154803
155708
|
createInvitePolicyInput?: InputMaybe<AdminCreateInvitePolicyInput>;
|
|
154804
155709
|
orgId: Scalars['ID']['input'];
|
|
154805
155710
|
};
|
|
155711
|
+
export declare type MutationAdmin_CreateOutboundAuthServiceArgs = {
|
|
155712
|
+
datasourceId: Scalars['ID']['input'];
|
|
155713
|
+
orgId: Scalars['ID']['input'];
|
|
155714
|
+
properties: Array<AdminConnectorPropertyInput>;
|
|
155715
|
+
resourceId: Scalars['ID']['input'];
|
|
155716
|
+
};
|
|
154806
155717
|
export declare type MutationAdmin_DeactivateUserArgs = {
|
|
154807
155718
|
input: AdminDeactivateUserInput;
|
|
154808
155719
|
};
|
|
@@ -154824,6 +155735,11 @@ export declare type MutationAdmin_InviteArgs = {
|
|
|
154824
155735
|
inviteInput: AdminInviteInput;
|
|
154825
155736
|
orgId: Scalars['ID']['input'];
|
|
154826
155737
|
};
|
|
155738
|
+
export declare type MutationAdmin_RegisterNewDataSourceIdArgs = {
|
|
155739
|
+
connectorType: Scalars['String']['input'];
|
|
155740
|
+
orgId: Scalars['ID']['input'];
|
|
155741
|
+
resourceId: Scalars['ID']['input'];
|
|
155742
|
+
};
|
|
154827
155743
|
export declare type MutationAdmin_ReleaseImpersonationUserArgs = {
|
|
154828
155744
|
input: AdminReleaseImpersonationUserInput;
|
|
154829
155745
|
};
|
|
@@ -155055,9 +155971,15 @@ export declare type MutationAgentWorkspace_AssignAgentToGapArgs = {
|
|
|
155055
155971
|
export declare type MutationAgentWorkspace_AssignAgentsToSkillArgs = {
|
|
155056
155972
|
input: AgentWorkspaceAssignAgentsToSkillInput;
|
|
155057
155973
|
};
|
|
155974
|
+
export declare type MutationAgentWorkspace_CancelRoutingTableGenerationArgs = {
|
|
155975
|
+
input: AgentWorkspaceCancelRoutingTableGenerationInput;
|
|
155976
|
+
};
|
|
155058
155977
|
export declare type MutationAgentWorkspace_CreateAndLinkTeamsFromGroupsArgs = {
|
|
155059
155978
|
input: AgentWorkspaceCreateAndLinkTeamsInput;
|
|
155060
155979
|
};
|
|
155980
|
+
export declare type MutationAgentWorkspace_CreateDraftedRoutingTableArgs = {
|
|
155981
|
+
input: AgentWorkspaceCreateDraftedRoutingTableInput;
|
|
155982
|
+
};
|
|
155061
155983
|
export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
155062
155984
|
input: AgentWorkspaceCreateScheduleInput;
|
|
155063
155985
|
};
|
|
@@ -155102,6 +156024,9 @@ export declare type MutationAgentWorkspace_StartBulkScheduleImportJobArgs = {
|
|
|
155102
156024
|
export declare type MutationAgentWorkspace_StartGenerateRoutingTableArgs = {
|
|
155103
156025
|
input: AgentWorkspaceStartGenerateRoutingTableInput;
|
|
155104
156026
|
};
|
|
156027
|
+
export declare type MutationAgentWorkspace_SubmitDraftedRoutingTableArgs = {
|
|
156028
|
+
input: AgentWorkspaceSubmitDraftedRoutingTableInput;
|
|
156029
|
+
};
|
|
155105
156030
|
export declare type MutationAgentWorkspace_UpdateRoutingConfigArgs = {
|
|
155106
156031
|
input: AgentWorkspaceUpdateRoutingConfigInput;
|
|
155107
156032
|
};
|
|
@@ -155729,10 +156654,6 @@ export declare type MutationBulkUpdateMainSpaceSidebarLinksArgs = {
|
|
|
155729
156654
|
input: Array<InputMaybe<BulkUpdateMainSpaceSidebarLinksInput>>;
|
|
155730
156655
|
spaceKey: Scalars['String']['input'];
|
|
155731
156656
|
};
|
|
155732
|
-
export declare type MutationCcp_UpdateAllowancePoolAllocationsArgs = {
|
|
155733
|
-
allocations: Array<CcpAllowancePoolAllocationUpdateInput>;
|
|
155734
|
-
poolId: Scalars['ID']['input'];
|
|
155735
|
-
};
|
|
155736
156657
|
export declare type MutationChangeManagement_DeleteLastRovoRiskAssessmentArgs = {
|
|
155737
156658
|
cloudId: Scalars['ID']['input'];
|
|
155738
156659
|
issueId: Scalars['String']['input'];
|
|
@@ -155921,6 +156842,10 @@ export declare type MutationConfluence_CreateWorkflowApplicationArgs = {
|
|
|
155921
156842
|
cloudId: Scalars['ID']['input'];
|
|
155922
156843
|
createWorkflowApplicationRequestInput: ConfluenceCreateWorkflowApplicationRequestInput;
|
|
155923
156844
|
};
|
|
156845
|
+
export declare type MutationConfluence_CreateWorkflowApplicationWithReviewArgs = {
|
|
156846
|
+
cloudId: Scalars['ID']['input'];
|
|
156847
|
+
createWorkflowApplicationWithReviewRequestInput: ConfluenceCreateContentApprovalRequestInput;
|
|
156848
|
+
};
|
|
155924
156849
|
export declare type MutationConfluence_DeleteAnswerArgs = {
|
|
155925
156850
|
cloudId: Scalars['ID']['input'];
|
|
155926
156851
|
input: ConfluenceDeleteAnswerInput;
|
|
@@ -156161,6 +157086,11 @@ export declare type MutationConfluence_SetContentGeneralAccessModeArgs = {
|
|
|
156161
157086
|
cloudId: Scalars['ID']['input'];
|
|
156162
157087
|
input: ConfluenceSetContentGeneralAccessModeInput;
|
|
156163
157088
|
};
|
|
157089
|
+
export declare type MutationConfluence_SetRolesHubTransitionStepArgs = {
|
|
157090
|
+
cloudId: Scalars['ID']['input'];
|
|
157091
|
+
completed: Scalars['Boolean']['input'];
|
|
157092
|
+
step: ConfluenceRolesHubTransitionStep;
|
|
157093
|
+
};
|
|
156164
157094
|
export declare type MutationConfluence_SetSubCalendarReminderArgs = {
|
|
156165
157095
|
cloudId: Scalars['ID']['input'];
|
|
156166
157096
|
input: ConfluenceSetSubCalendarReminderInput;
|
|
@@ -156737,6 +157667,10 @@ export declare type MutationCsm_UpdateLiveChatSettingsArgs = {
|
|
|
156737
157667
|
cloudId: Scalars['ID']['input'];
|
|
156738
157668
|
input: CustomerServiceLiveChatSettingsInput;
|
|
156739
157669
|
};
|
|
157670
|
+
export declare type MutationCsm_UpsertEmailChannelConfigurationArgs = {
|
|
157671
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
157672
|
+
input: CustomerServiceEmailChannelConfigUpsertInput;
|
|
157673
|
+
};
|
|
156740
157674
|
export declare type MutationCsm_UpsertHelpCenterMetadataArgs = {
|
|
156741
157675
|
helpCenterAri: Scalars['ID']['input'];
|
|
156742
157676
|
input: CustomerServiceHelpCenterMetadataUpsertInput;
|
|
@@ -157040,6 +157974,30 @@ export declare type MutationFavouriteSpaceArgs = {
|
|
|
157040
157974
|
export declare type MutationFavouriteSpaceBulkArgs = {
|
|
157041
157975
|
spaceKeys: Array<InputMaybe<Scalars['String']['input']>>;
|
|
157042
157976
|
};
|
|
157977
|
+
export declare type MutationFocus_CreateViewArgs = {
|
|
157978
|
+
input: MercuryCreateViewInput;
|
|
157979
|
+
};
|
|
157980
|
+
export declare type MutationFocus_DeleteViewArgs = {
|
|
157981
|
+
input: MercuryDeleteViewInput;
|
|
157982
|
+
};
|
|
157983
|
+
export declare type MutationFocus_ReorderStarredViewArgs = {
|
|
157984
|
+
input: MercuryReorderStarredViewInput;
|
|
157985
|
+
};
|
|
157986
|
+
export declare type MutationFocus_StarViewArgs = {
|
|
157987
|
+
input: MercuryStarViewInput;
|
|
157988
|
+
};
|
|
157989
|
+
export declare type MutationFocus_UnstarViewArgs = {
|
|
157990
|
+
input: MercuryUnstarViewInput;
|
|
157991
|
+
};
|
|
157992
|
+
export declare type MutationFocus_UpdateViewNameArgs = {
|
|
157993
|
+
input: MercuryUpdateViewNameInput;
|
|
157994
|
+
};
|
|
157995
|
+
export declare type MutationFocus_UpdateViewOwnerArgs = {
|
|
157996
|
+
input: MercuryUpdateViewOwnerInput;
|
|
157997
|
+
};
|
|
157998
|
+
export declare type MutationFocus_UpdateViewSettingsArgs = {
|
|
157999
|
+
input: MercuryUpdateViewSettingsInput;
|
|
158000
|
+
};
|
|
157043
158001
|
export declare type MutationFollowUserArgs = {
|
|
157044
158002
|
followUserInput: FollowUserInput;
|
|
157045
158003
|
};
|
|
@@ -157281,6 +158239,10 @@ export declare type MutationGravity_GenerateViewTemplateFromUserPromptArgs = {
|
|
|
157281
158239
|
cloudId: Scalars['ID']['input'];
|
|
157282
158240
|
input: GravityGenerateViewTemplateFromUserPromptInput;
|
|
157283
158241
|
};
|
|
158242
|
+
export declare type MutationGravity_PostFeedbackArgs = {
|
|
158243
|
+
cloudId: Scalars['ID']['input'];
|
|
158244
|
+
input: GravityPostFeedbackInput;
|
|
158245
|
+
};
|
|
157284
158246
|
export declare type MutationGravity_UpdateDeliverySettingsArgs = {
|
|
157285
158247
|
cloudId: Scalars['ID']['input'];
|
|
157286
158248
|
input: GravityUpdateDeliverySettingsInput;
|
|
@@ -157874,8 +158836,15 @@ export declare type MutationKitsune_CreateFeedbackArgs = {
|
|
|
157874
158836
|
spaceAri: Scalars['ID']['input'];
|
|
157875
158837
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
157876
158838
|
};
|
|
158839
|
+
export declare type MutationKitsune_CreateFieldArgs = {
|
|
158840
|
+
entityTypes: Array<KitsuneEntityType>;
|
|
158841
|
+
name: Scalars['String']['input'];
|
|
158842
|
+
valueType?: InputMaybe<KitsuneFieldValueType>;
|
|
158843
|
+
workspaceAri: Scalars['ID']['input'];
|
|
158844
|
+
};
|
|
157877
158845
|
export declare type MutationKitsune_CreateInsightArgs = {
|
|
157878
158846
|
content: Scalars['KitsuneADF']['input'];
|
|
158847
|
+
externalId?: InputMaybe<Scalars['ID']['input']>;
|
|
157879
158848
|
snippets?: InputMaybe<Array<InputMaybe<KitsuneSnippetInput>>>;
|
|
157880
158849
|
spaceAri: Scalars['ID']['input'];
|
|
157881
158850
|
title: Scalars['String']['input'];
|
|
@@ -157940,6 +158909,9 @@ export declare type MutationKitsune_RemoveCustomerArgs = {
|
|
|
157940
158909
|
export declare type MutationKitsune_RemoveFeedbackArgs = {
|
|
157941
158910
|
feedbackAri: Scalars['ID']['input'];
|
|
157942
158911
|
};
|
|
158912
|
+
export declare type MutationKitsune_RemoveFieldArgs = {
|
|
158913
|
+
id: Scalars['ID']['input'];
|
|
158914
|
+
};
|
|
157943
158915
|
export declare type MutationKitsune_RemoveInsightArgs = {
|
|
157944
158916
|
id: Scalars['ID']['input'];
|
|
157945
158917
|
};
|
|
@@ -157978,8 +158950,15 @@ export declare type MutationKitsune_UpdateFeedbackArgs = {
|
|
|
157978
158950
|
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
157979
158951
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
157980
158952
|
};
|
|
158953
|
+
export declare type MutationKitsune_UpdateFieldArgs = {
|
|
158954
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
158955
|
+
entityTypes?: InputMaybe<Array<KitsuneEntityType>>;
|
|
158956
|
+
id: Scalars['ID']['input'];
|
|
158957
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
158958
|
+
};
|
|
157981
158959
|
export declare type MutationKitsune_UpdateInsightArgs = {
|
|
157982
158960
|
content?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
158961
|
+
externalId?: InputMaybe<Scalars['ID']['input']>;
|
|
157983
158962
|
id: Scalars['ID']['input'];
|
|
157984
158963
|
summaryContent?: InputMaybe<Scalars['KitsuneADF']['input']>;
|
|
157985
158964
|
title?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -158065,30 +159044,6 @@ export declare type MutationMarkFeatureDiscoveredArgs = {
|
|
|
158065
159044
|
featureKey: Scalars['String']['input'];
|
|
158066
159045
|
pluginKey: Scalars['String']['input'];
|
|
158067
159046
|
};
|
|
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
159047
|
export declare type MutationMigrateSpaceShortcutsArgs = {
|
|
158093
159048
|
shortcutsList: Array<InputMaybe<GraphQlSpaceShortcutsInput>>;
|
|
158094
159049
|
spaceId: Scalars['ID']['input'];
|
|
@@ -158663,6 +159618,9 @@ export declare type MutationSpf_CreateAskCommentArgs = {
|
|
|
158663
159618
|
export declare type MutationSpf_CreateAskUpdateArgs = {
|
|
158664
159619
|
input: SpfCreateAskUpdateInput;
|
|
158665
159620
|
};
|
|
159621
|
+
export declare type MutationSpf_CreateAsksArgs = {
|
|
159622
|
+
input: SpfCreateAsksInput;
|
|
159623
|
+
};
|
|
158666
159624
|
export declare type MutationSpf_CreatePlanArgs = {
|
|
158667
159625
|
input: SpfCreatePlanInput;
|
|
158668
159626
|
};
|
|
@@ -159244,6 +160202,10 @@ export declare type MutationUpgradeAppArgs = {
|
|
|
159244
160202
|
export declare type MutationUserAuthTokenForExtensionArgs = {
|
|
159245
160203
|
input: UserAuthTokenForExtensionInput;
|
|
159246
160204
|
};
|
|
160205
|
+
export declare type MutationUts_UpdateAllowancePoolAllocationsArgs = {
|
|
160206
|
+
allocations: Array<UtsAllowancePoolAllocationUpdateInput>;
|
|
160207
|
+
poolId: Scalars['ID']['input'];
|
|
160208
|
+
};
|
|
159247
160209
|
export declare type MutationWatchBlogsArgs = {
|
|
159248
160210
|
watchSpaceInput: WatchSpaceInput;
|
|
159249
160211
|
};
|
|
@@ -162279,7 +163241,10 @@ export declare type Query = {
|
|
|
162279
163241
|
admin_checkLicensesCapacity?: Maybe<AdminCheckLicensesCapacity>;
|
|
162280
163242
|
admin_connectedAppInstallations?: Maybe<AdminConnectedResourcesConnection>;
|
|
162281
163243
|
admin_effectiveRoleAssignmentsByPrincipal?: Maybe<AdminRoleAssignmentEffectiveConnection>;
|
|
163244
|
+
admin_fetchConnectorFormData?: Maybe<AdminFormFieldConnection>;
|
|
163245
|
+
admin_fetchConnectorFormEntities?: Maybe<AdminFormFieldConnection>;
|
|
162282
163246
|
admin_generateAuditLogQueryPlan?: Maybe<AdminAuditLogBackgroundQueryPlanConnection>;
|
|
163247
|
+
admin_getAllDataSources?: Maybe<AdminConnectorConnection>;
|
|
162283
163248
|
admin_group?: Maybe<AdminGroup>;
|
|
162284
163249
|
admin_groupRoleAssignments?: Maybe<AdminGroupRoleAssignmentsConnection>;
|
|
162285
163250
|
admin_groups?: Maybe<AdminGroupConnection>;
|
|
@@ -162366,6 +163331,8 @@ export declare type Query = {
|
|
|
162366
163331
|
agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
|
|
162367
163332
|
agentStudio_validateScenarios?: Maybe<AgentStudioScenarioValidateModeOutput>;
|
|
162368
163333
|
agentStudio_widgetByContainerAri?: Maybe<AgentStudioWidgetByContainerAriResult>;
|
|
163334
|
+
agentWorkspace_agentAvailability?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
163335
|
+
agentWorkspace_agentRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
|
|
162369
163336
|
agentWorkspace_availability?: Maybe<AgentWorkspaceAvailabilityConnection>;
|
|
162370
163337
|
agentWorkspace_availabilityBypassingTeamLinkCheck?: Maybe<AgentWorkspaceAvailabilityResult>;
|
|
162371
163338
|
agentWorkspace_availableAgents?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
@@ -162376,11 +163343,14 @@ export declare type Query = {
|
|
|
162376
163343
|
agentWorkspace_categorySkillsInProject?: Maybe<AgentWorkspaceSkillConnection>;
|
|
162377
163344
|
agentWorkspace_clusterServiceCategories?: Maybe<AgentWorkspaceServiceClusteringResult>;
|
|
162378
163345
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
163346
|
+
agentWorkspace_draftedRoutingTable?: Maybe<AgentWorkspaceDraftedRoutingTable>;
|
|
162379
163347
|
agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
|
|
162380
163348
|
agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
162381
163349
|
agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
162382
163350
|
agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
|
|
162383
163351
|
agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
163352
|
+
agentWorkspace_routingSetupState?: Maybe<AgentWorkspaceRoutingSetupState>;
|
|
163353
|
+
agentWorkspace_routingTableEntries?: Maybe<AgentWorkspaceRoutingTableEntries>;
|
|
162384
163354
|
agentWorkspace_routingTableGenerationStatus?: Maybe<AgentWorkspaceRoutingTableGeneration>;
|
|
162385
163355
|
agentWorkspace_schedule?: Maybe<AgentWorkspaceSchedule>;
|
|
162386
163356
|
agentWorkspace_schedules?: Maybe<AgentWorkspaceSchedulesConnection>;
|
|
@@ -162389,8 +163359,11 @@ export declare type Query = {
|
|
|
162389
163359
|
agentWorkspace_skillCategories?: Maybe<AgentWorkspaceSkillCategoryConnection>;
|
|
162390
163360
|
agentWorkspace_skillCategoriesInProject?: Maybe<AgentWorkspaceSkillCategoryConnection>;
|
|
162391
163361
|
agentWorkspace_skills?: Maybe<AgentWorkspaceSkillConnection>;
|
|
163362
|
+
agentWorkspace_skillsInCategory?: Maybe<AgentWorkspaceSkillConnection>;
|
|
162392
163363
|
agentWorkspace_smartRoutingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
162393
163364
|
agentWorkspace_teamCapacities?: Maybe<Array<AgentWorkspaceTeamCapacity>>;
|
|
163365
|
+
agentWorkspace_teamRebalancingRecommendations?: Maybe<Array<AgentWorkspaceIssueRebalancingRecommendation>>;
|
|
163366
|
+
agentWorkspace_teamRebalancingSummaries?: Maybe<Array<AgentWorkspaceTeamRebalancingSummary>>;
|
|
162394
163367
|
agentWorkspace_teamSchedules?: Maybe<AgentWorkspaceTeamSchedulesConnection>;
|
|
162395
163368
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
162396
163369
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
@@ -162494,7 +163467,7 @@ export declare type Query = {
|
|
|
162494
163467
|
assetsDM_transformedData?: Maybe<AssetsDmTransformedDataResponse>;
|
|
162495
163468
|
assetsVertical_assetTypesTracking?: Maybe<AssetsVerticalAssetTypesTrackingResult>;
|
|
162496
163469
|
assetsVertical_assetTypesTrackings?: Maybe<AssetsVerticalAssetTypesTrackingConnection>;
|
|
162497
|
-
assetsVertical_bundle
|
|
163470
|
+
assetsVertical_bundle?: Maybe<AssetsVerticalBundleResult>;
|
|
162498
163471
|
assetsVertical_configuredObjectTypes?: Maybe<AssetsVerticalObjectTypesResult>;
|
|
162499
163472
|
assetsVertical_countByStatus?: Maybe<AssetsVerticalCountByStatusResult>;
|
|
162500
163473
|
assetsVertical_depreciationRule?: Maybe<AssetsVerticalDepreciationRuleResult>;
|
|
@@ -162516,7 +163489,7 @@ export declare type Query = {
|
|
|
162516
163489
|
assetsVertical_verticalInstantiation?: Maybe<AssetsVerticalVerticalInstantiationResult>;
|
|
162517
163490
|
assetsVertical_verticalInstantiationCategories?: Maybe<AssetsVerticalVerticalInstantiationCategoryConnection>;
|
|
162518
163491
|
assetsVertical_verticalInstantiationCategory?: Maybe<AssetsVerticalVerticalInstantiationCategoryResult>;
|
|
162519
|
-
assetsVertical_verticalInstantiations
|
|
163492
|
+
assetsVertical_verticalInstantiations?: Maybe<AssetsVerticalVerticalInstantiationConnection>;
|
|
162520
163493
|
assetsVertical_verticalRoleAssignments?: Maybe<AssetsVerticalRoleAssignmentConnection>;
|
|
162521
163494
|
assetsVertical_verticalRoles?: Maybe<AssetsVerticalRolesResult>;
|
|
162522
163495
|
assetsVertical_verticalTemplate?: Maybe<AssetsVerticalVerticalTemplateResult>;
|
|
@@ -162658,7 +163631,6 @@ export declare type Query = {
|
|
|
162658
163631
|
commerceExp_fetch__CcpTransactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
162659
163632
|
commerceExp_fetch__PaymentMethod?: Maybe<CommerceExpPaymentMethod>;
|
|
162660
163633
|
commerceExp_intercom?: Maybe<CommerceExpIntercomQuery>;
|
|
162661
|
-
commerceExp_node?: Maybe<CommerceExpNode>;
|
|
162662
163634
|
commerceExp_pls?: Maybe<CommerceExpPlsQuery>;
|
|
162663
163635
|
commerceExp_poaQuery?: Maybe<CommerceExpPoaQuery>;
|
|
162664
163636
|
commerceExp_taas?: Maybe<CommerceExpTaasQuery>;
|
|
@@ -162699,6 +163671,7 @@ export declare type Query = {
|
|
|
162699
163671
|
confluence_contents?: Maybe<Array<Maybe<Content>>>;
|
|
162700
163672
|
confluence_contextualTitleEmoji?: Maybe<Scalars['String']['output']>;
|
|
162701
163673
|
confluence_csvExportDownloadLink?: Maybe<Scalars['String']['output']>;
|
|
163674
|
+
confluence_cutoverDate?: Maybe<ConfluenceCutoverDate>;
|
|
162702
163675
|
confluence_dataLifecycleManagementPolicy?: Maybe<ConfluenceDataLifecycleManagementPolicy>;
|
|
162703
163676
|
confluence_databaseTemplateInfosAll?: Maybe<ConfluenceDatabaseTemplateInfoConnection>;
|
|
162704
163677
|
confluence_deletedUserAccountIds?: Maybe<ConfluenceDeletedUser>;
|
|
@@ -162773,6 +163746,7 @@ export declare type Query = {
|
|
|
162773
163746
|
confluence_reactionsSummary?: Maybe<ConfluenceReactionSummary>;
|
|
162774
163747
|
confluence_refreshMigrationMediaSession?: Maybe<ContentMediaSession>;
|
|
162775
163748
|
confluence_resolvedSpaceKeyForContent?: Maybe<Scalars['String']['output']>;
|
|
163749
|
+
confluence_rolesHubTransitionSteps?: Maybe<Array<Maybe<ConfluenceRolesHubTransitionStepState>>>;
|
|
162776
163750
|
confluence_search?: Maybe<ConfluenceSearchConnection>;
|
|
162777
163751
|
confluence_searchTeamLabels?: Maybe<LabelSearchResults>;
|
|
162778
163752
|
confluence_searchUser?: Maybe<ConfluenceSearchConnection>;
|
|
@@ -162781,6 +163755,7 @@ export declare type Query = {
|
|
|
162781
163755
|
confluence_shareableLinkSiteConfig?: Maybe<ConfluenceShareableLinkSiteConfig>;
|
|
162782
163756
|
confluence_shareableLinkSpaceConfig?: Maybe<ConfluenceShareableLinkSpaceConfig>;
|
|
162783
163757
|
confluence_shareableLinkSpacesByCriteria?: Maybe<ConfluenceShareableLinkSpaceConnection>;
|
|
163758
|
+
confluence_shortcutSmartLinksBySpaceKey?: Maybe<ConfluenceShortcutSmartLinkConnection>;
|
|
162784
163759
|
confluence_slide?: Maybe<ConfluenceSlide>;
|
|
162785
163760
|
confluence_slides?: Maybe<Array<Maybe<ConfluenceSlide>>>;
|
|
162786
163761
|
confluence_smartSpaceOverview?: Maybe<ConfluenceSmartSpaceOverview>;
|
|
@@ -162886,6 +163861,7 @@ export declare type Query = {
|
|
|
162886
163861
|
csmAi_getWidgetsWithCsmAiHub?: Maybe<CsmAiHubWithWidgetsResult>;
|
|
162887
163862
|
csmCustomersByIds?: Maybe<Array<Maybe<CustomerServiceCsmCustomer>>>;
|
|
162888
163863
|
csmOrganizationsByIds?: Maybe<Array<Maybe<CustomerServiceCsmOrganization>>>;
|
|
163864
|
+
csm_emailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigQueryResult>;
|
|
162889
163865
|
csm_helpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataQueryResult>;
|
|
162890
163866
|
csm_liveChatAgent?: Maybe<CustomerServiceLiveChatAgentQueryResult>;
|
|
162891
163867
|
csm_liveChatSettings?: Maybe<CustomerServiceLiveChatSettingsQueryResult>;
|
|
@@ -162990,6 +163966,9 @@ export declare type Query = {
|
|
|
162990
163966
|
favoriteContent?: Maybe<PaginatedContentList>;
|
|
162991
163967
|
featureDiscovery?: Maybe<Array<Maybe<DiscoveredFeature>>>;
|
|
162992
163968
|
feed?: Maybe<PaginatedFeed>;
|
|
163969
|
+
focus_viewById?: Maybe<MercuryView>;
|
|
163970
|
+
focus_viewsByIds?: Maybe<Array<Maybe<MercuryView>>>;
|
|
163971
|
+
focus_viewsSearch?: Maybe<MercuryViewConnection>;
|
|
162993
163972
|
forYouFeed?: Maybe<ForYouPaginatedFeed>;
|
|
162994
163973
|
futureContentTypeMobileSupport?: Maybe<FutureContentTypeMobileSupport>;
|
|
162995
163974
|
getAIConfig?: Maybe<AiConfigResponse>;
|
|
@@ -163169,6 +164148,7 @@ export declare type Query = {
|
|
|
163169
164148
|
jsmChannels_getResolutionPlanGraph?: Maybe<JsmChannelsResolutionPlanGraphResult>;
|
|
163170
164149
|
jsmChannels_getServiceAgentResolutionStateByTicketId: JsmChannelsTicketServiceAgentResolutionStateResult;
|
|
163171
164150
|
jsmChannels_isPreviewModeEnabled?: Maybe<JsmChannelsPreviewModeResult>;
|
|
164151
|
+
jsmChannels_rovoServiceAgentConfigByProjectId?: Maybe<JsmChannelsRovoServiceAgentConfigResult>;
|
|
163172
164152
|
jsmChannels_taskAgents: JsmChannelsTaskAgentsResult;
|
|
163173
164153
|
jsmChat?: Maybe<JsmChatQuery>;
|
|
163174
164154
|
jsmConversation_conversations?: Maybe<JsmConversationConnection>;
|
|
@@ -163279,9 +164259,6 @@ export declare type Query = {
|
|
|
163279
164259
|
mercury_risks?: Maybe<MercuryRisksQueryApi>;
|
|
163280
164260
|
mercury_strategicEvents?: Maybe<MercuryStrategicEventsQueryApi>;
|
|
163281
164261
|
mercury_tags?: Maybe<MercuryTagsQueryApi>;
|
|
163282
|
-
mercury_view?: Maybe<MercuryView>;
|
|
163283
|
-
mercury_views?: Maybe<Array<Maybe<MercuryView>>>;
|
|
163284
|
-
mercury_viewsSearch?: Maybe<MercuryViewConnection>;
|
|
163285
164262
|
migration: MigrationQuery;
|
|
163286
164263
|
migrationCatalogue: MigrationCatalogueQuery;
|
|
163287
164264
|
migrationMediaSession?: Maybe<ContentMediaSession>;
|
|
@@ -163730,6 +164707,26 @@ export declare type QueryAdmin_EffectiveRoleAssignmentsByPrincipalArgs = {
|
|
|
163730
164707
|
orgId: Scalars['ID']['input'];
|
|
163731
164708
|
principal: Scalars['ID']['input'];
|
|
163732
164709
|
};
|
|
164710
|
+
export declare type QueryAdmin_FetchConnectorFormDataArgs = {
|
|
164711
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
164712
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
164713
|
+
connectorId: Scalars['ID']['input'];
|
|
164714
|
+
connectorType: Scalars['String']['input'];
|
|
164715
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164716
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
164717
|
+
orgId: Scalars['ID']['input'];
|
|
164718
|
+
resourceId: Scalars['ID']['input'];
|
|
164719
|
+
};
|
|
164720
|
+
export declare type QueryAdmin_FetchConnectorFormEntitiesArgs = {
|
|
164721
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
164722
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
164723
|
+
datasourceId: Scalars['ID']['input'];
|
|
164724
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164725
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
164726
|
+
orgId: Scalars['ID']['input'];
|
|
164727
|
+
properties: Array<AdminConnectorPropertyInput>;
|
|
164728
|
+
resourceId: Scalars['ID']['input'];
|
|
164729
|
+
};
|
|
163733
164730
|
export declare type QueryAdmin_GenerateAuditLogQueryPlanArgs = {
|
|
163734
164731
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
163735
164732
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -163738,6 +164735,14 @@ export declare type QueryAdmin_GenerateAuditLogQueryPlanArgs = {
|
|
|
163738
164735
|
inputFilters: AdminAuditLogBackgroundQueryFilterInput;
|
|
163739
164736
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
163740
164737
|
};
|
|
164738
|
+
export declare type QueryAdmin_GetAllDataSourcesArgs = {
|
|
164739
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
164740
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
164741
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164742
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
164743
|
+
orgId: Scalars['ID']['input'];
|
|
164744
|
+
resourceId: Scalars['ID']['input'];
|
|
164745
|
+
};
|
|
163741
164746
|
export declare type QueryAdmin_GroupArgs = {
|
|
163742
164747
|
input?: InputMaybe<AdminFetchGroupInput>;
|
|
163743
164748
|
};
|
|
@@ -164220,6 +165225,12 @@ export declare type QueryAgentStudio_WidgetByContainerAriArgs = {
|
|
|
164220
165225
|
cloudId: Scalars['String']['input'];
|
|
164221
165226
|
containerAri: Scalars['ID']['input'];
|
|
164222
165227
|
};
|
|
165228
|
+
export declare type QueryAgentWorkspace_AgentAvailabilityArgs = {
|
|
165229
|
+
cloudId: Scalars['ID']['input'];
|
|
165230
|
+
};
|
|
165231
|
+
export declare type QueryAgentWorkspace_AgentRebalancingRecommendationsArgs = {
|
|
165232
|
+
input: AgentWorkspaceAgentRebalancingRecommendationsInput;
|
|
165233
|
+
};
|
|
164223
165234
|
export declare type QueryAgentWorkspace_AvailabilityArgs = {
|
|
164224
165235
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
164225
165236
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -164276,6 +165287,9 @@ export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
|
164276
165287
|
cloudId: Scalars['ID']['input'];
|
|
164277
165288
|
projectKey: Scalars['String']['input'];
|
|
164278
165289
|
};
|
|
165290
|
+
export declare type QueryAgentWorkspace_DraftedRoutingTableArgs = {
|
|
165291
|
+
projectAri: Scalars['ID']['input'];
|
|
165292
|
+
};
|
|
164279
165293
|
export declare type QueryAgentWorkspace_EligibleGroupsArgs = {
|
|
164280
165294
|
projectAri: Scalars['ID']['input'];
|
|
164281
165295
|
};
|
|
@@ -164295,6 +165309,12 @@ export declare type QueryAgentWorkspace_RoutingConfigArgs = {
|
|
|
164295
165309
|
cloudId: Scalars['ID']['input'];
|
|
164296
165310
|
projectKey: Scalars['String']['input'];
|
|
164297
165311
|
};
|
|
165312
|
+
export declare type QueryAgentWorkspace_RoutingSetupStateArgs = {
|
|
165313
|
+
projectAri: Scalars['ID']['input'];
|
|
165314
|
+
};
|
|
165315
|
+
export declare type QueryAgentWorkspace_RoutingTableEntriesArgs = {
|
|
165316
|
+
projectAri: Scalars['ID']['input'];
|
|
165317
|
+
};
|
|
164298
165318
|
export declare type QueryAgentWorkspace_RoutingTableGenerationStatusArgs = {
|
|
164299
165319
|
cloudId: Scalars['ID']['input'];
|
|
164300
165320
|
generationId: Scalars['ID']['input'];
|
|
@@ -164324,8 +165344,11 @@ export declare type QueryAgentWorkspace_ShiftsArgs = {
|
|
|
164324
165344
|
isInitialFetch?: InputMaybe<Scalars['Boolean']['input']>;
|
|
164325
165345
|
};
|
|
164326
165346
|
export declare type QueryAgentWorkspace_SkillCategoriesArgs = {
|
|
165347
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
165348
|
+
agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
164327
165349
|
categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
164328
165350
|
cloudId: Scalars['ID']['input'];
|
|
165351
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164329
165352
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
164330
165353
|
};
|
|
164331
165354
|
export declare type QueryAgentWorkspace_SkillCategoriesInProjectArgs = {
|
|
@@ -164333,7 +165356,6 @@ export declare type QueryAgentWorkspace_SkillCategoriesInProjectArgs = {
|
|
|
164333
165356
|
agentAccountIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
164334
165357
|
categoryIds?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
164335
165358
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
164336
|
-
limitSkillsToFirstCategories?: InputMaybe<Scalars['Int']['input']>;
|
|
164337
165359
|
projectId: Scalars['ID']['input'];
|
|
164338
165360
|
skillsQuery?: InputMaybe<Scalars['String']['input']>;
|
|
164339
165361
|
teamARIs?: InputMaybe<Array<Scalars['ID']['input']>>;
|
|
@@ -164342,6 +165364,14 @@ export declare type QueryAgentWorkspace_SkillsArgs = {
|
|
|
164342
165364
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
164343
165365
|
cloudId: Scalars['ID']['input'];
|
|
164344
165366
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165367
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
165368
|
+
};
|
|
165369
|
+
export declare type QueryAgentWorkspace_SkillsInCategoryArgs = {
|
|
165370
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
165371
|
+
categoryId: Scalars['ID']['input'];
|
|
165372
|
+
cloudId: Scalars['ID']['input'];
|
|
165373
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
165374
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
164345
165375
|
};
|
|
164346
165376
|
export declare type QueryAgentWorkspace_SmartRoutingConfigArgs = {
|
|
164347
165377
|
projectAri: Scalars['ID']['input'];
|
|
@@ -164349,6 +165379,12 @@ export declare type QueryAgentWorkspace_SmartRoutingConfigArgs = {
|
|
|
164349
165379
|
export declare type QueryAgentWorkspace_TeamCapacitiesArgs = {
|
|
164350
165380
|
input: AgentWorkspaceTeamCapacitiesInput;
|
|
164351
165381
|
};
|
|
165382
|
+
export declare type QueryAgentWorkspace_TeamRebalancingRecommendationsArgs = {
|
|
165383
|
+
input: AgentWorkspaceTeamRebalancingRecommendationsInput;
|
|
165384
|
+
};
|
|
165385
|
+
export declare type QueryAgentWorkspace_TeamRebalancingSummariesArgs = {
|
|
165386
|
+
input: AgentWorkspaceTeamRebalancingSummariesInput;
|
|
165387
|
+
};
|
|
164352
165388
|
export declare type QueryAgentWorkspace_TeamSchedulesArgs = {
|
|
164353
165389
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
164354
165390
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -165551,9 +166587,6 @@ export declare type QueryCommerceExp_Fetch__PaymentMethodArgs = {
|
|
|
165551
166587
|
export declare type QueryCommerceExp_IntercomArgs = {
|
|
165552
166588
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
165553
166589
|
};
|
|
165554
|
-
export declare type QueryCommerceExp_NodeArgs = {
|
|
165555
|
-
id: Scalars['ID']['input'];
|
|
165556
|
-
};
|
|
165557
166590
|
export declare type QueryCommerceExp_PlsArgs = {
|
|
165558
166591
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
165559
166592
|
};
|
|
@@ -165750,6 +166783,9 @@ export declare type QueryConfluence_CsvExportDownloadLinkArgs = {
|
|
|
165750
166783
|
cloudId: Scalars['ID']['input'];
|
|
165751
166784
|
taskId: Scalars['String']['input'];
|
|
165752
166785
|
};
|
|
166786
|
+
export declare type QueryConfluence_CutoverDateArgs = {
|
|
166787
|
+
cloudId: Scalars['ID']['input'];
|
|
166788
|
+
};
|
|
165753
166789
|
export declare type QueryConfluence_DataLifecycleManagementPolicyArgs = {
|
|
165754
166790
|
cloudId: Scalars['ID']['input'];
|
|
165755
166791
|
};
|
|
@@ -166091,6 +167127,9 @@ export declare type QueryConfluence_ResolvedSpaceKeyForContentArgs = {
|
|
|
166091
167127
|
cloudId: Scalars['ID']['input'];
|
|
166092
167128
|
id: Scalars['ID']['input'];
|
|
166093
167129
|
};
|
|
167130
|
+
export declare type QueryConfluence_RolesHubTransitionStepsArgs = {
|
|
167131
|
+
cloudId: Scalars['ID']['input'];
|
|
167132
|
+
};
|
|
166094
167133
|
export declare type QueryConfluence_SearchArgs = {
|
|
166095
167134
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
166096
167135
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -166141,6 +167180,12 @@ export declare type QueryConfluence_ShareableLinkSpacesByCriteriaArgs = {
|
|
|
166141
167180
|
spaceNamePattern?: InputMaybe<Scalars['String']['input']>;
|
|
166142
167181
|
status?: InputMaybe<Array<InputMaybe<ConfluenceShareableLinkSpaceStatusFilter>>>;
|
|
166143
167182
|
};
|
|
167183
|
+
export declare type QueryConfluence_ShortcutSmartLinksBySpaceKeyArgs = {
|
|
167184
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
167185
|
+
cloudId: Scalars['ID']['input'];
|
|
167186
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
167187
|
+
spaceKey: Scalars['String']['input'];
|
|
167188
|
+
};
|
|
166144
167189
|
export declare type QueryConfluence_SlideArgs = {
|
|
166145
167190
|
id: Scalars['ID']['input'];
|
|
166146
167191
|
};
|
|
@@ -166691,6 +167736,9 @@ export declare type QueryCsmCustomersByIdsArgs = {
|
|
|
166691
167736
|
export declare type QueryCsmOrganizationsByIdsArgs = {
|
|
166692
167737
|
csmOrganizationAris: Array<Scalars['ID']['input']>;
|
|
166693
167738
|
};
|
|
167739
|
+
export declare type QueryCsm_EmailChannelConfigurationArgs = {
|
|
167740
|
+
helpCenterAri: Scalars['ID']['input'];
|
|
167741
|
+
};
|
|
166694
167742
|
export declare type QueryCsm_HelpCenterMetadataArgs = {
|
|
166695
167743
|
helpCenterAri: Scalars['ID']['input'];
|
|
166696
167744
|
};
|
|
@@ -167112,6 +168160,18 @@ export declare type QueryFeedArgs = {
|
|
|
167112
168160
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
167113
168161
|
sortBy?: InputMaybe<Scalars['String']['input']>;
|
|
167114
168162
|
};
|
|
168163
|
+
export declare type QueryFocus_ViewByIdArgs = {
|
|
168164
|
+
id: Scalars['ID']['input'];
|
|
168165
|
+
};
|
|
168166
|
+
export declare type QueryFocus_ViewsByIdsArgs = {
|
|
168167
|
+
ids: Array<Scalars['ID']['input']>;
|
|
168168
|
+
};
|
|
168169
|
+
export declare type QueryFocus_ViewsSearchArgs = {
|
|
168170
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
168171
|
+
cloudId: Scalars['ID']['input'];
|
|
168172
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
168173
|
+
q?: InputMaybe<Scalars['String']['input']>;
|
|
168174
|
+
};
|
|
167115
168175
|
export declare type QueryForYouFeedArgs = {
|
|
167116
168176
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
167117
168177
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -167313,6 +168373,7 @@ export declare type QueryGraphIntegration_SkillDimensionMetadataArgs = {
|
|
|
167313
168373
|
export declare type QueryGraphIntegration_SkillItemsArgs = {
|
|
167314
168374
|
contextAri: Scalars['ID']['input'];
|
|
167315
168375
|
skillAris: Array<Scalars['ID']['input']>;
|
|
168376
|
+
surface?: InputMaybe<GraphIntegrationSkillSurface>;
|
|
167316
168377
|
};
|
|
167317
168378
|
export declare type QueryGraphIntegration_TwgCapabilityContainerArgs = {
|
|
167318
168379
|
contextAri: Scalars['ID']['input'];
|
|
@@ -167330,7 +168391,7 @@ export declare type QueryGraphIntegration_TwgPlatformCapabilityGlobalAdminSettin
|
|
|
167330
168391
|
};
|
|
167331
168392
|
export declare type QueryGravity_DeliverySettingsArgs = {
|
|
167332
168393
|
cloudId: Scalars['ID']['input'];
|
|
167333
|
-
|
|
168394
|
+
projectId: Scalars['ID']['input'];
|
|
167334
168395
|
};
|
|
167335
168396
|
export declare type QueryGravity_DetailedReactionArgs = {
|
|
167336
168397
|
cloudId: Scalars['ID']['input'];
|
|
@@ -167795,6 +168856,10 @@ export declare type QueryJsmChannels_IsPreviewModeEnabledArgs = {
|
|
|
167795
168856
|
experience: JsmChannelsExperience;
|
|
167796
168857
|
jiraProjectAri: Scalars['ID']['input'];
|
|
167797
168858
|
};
|
|
168859
|
+
export declare type QueryJsmChannels_RovoServiceAgentConfigByProjectIdArgs = {
|
|
168860
|
+
experience: JsmChannelsExperience;
|
|
168861
|
+
jiraProjectAri: Scalars['ID']['input'];
|
|
168862
|
+
};
|
|
167798
168863
|
export declare type QueryJsmChannels_TaskAgentsArgs = {
|
|
167799
168864
|
experience: JsmChannelsExperience;
|
|
167800
168865
|
jiraProjectAri: Scalars['ID']['input'];
|
|
@@ -168145,18 +169210,6 @@ export declare type QueryMedia_ItemsByDescriptorArgs = {
|
|
|
168145
169210
|
cloudId: Scalars['String']['input'];
|
|
168146
169211
|
input: MediaItemsInput;
|
|
168147
169212
|
};
|
|
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
169213
|
export declare type QueryMyMarketplaceAppsArgs = {
|
|
168161
169214
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
168162
169215
|
filter?: InputMaybe<MarketplaceAppsFilter>;
|
|
@@ -171920,6 +172973,7 @@ export declare enum Scope {
|
|
|
171920
172973
|
Read_3PDataTwgCli = "READ_3P_DATA_TWG_CLI",
|
|
171921
172974
|
ReadAccount = "READ_ACCOUNT",
|
|
171922
172975
|
ReadAccountUpp = "READ_ACCOUNT_UPP",
|
|
172976
|
+
ReadAllTwg = "READ_ALL_TWG",
|
|
171923
172977
|
ReadAppDetails = "READ_APP_DETAILS",
|
|
171924
172978
|
ReadAppEnvironment = "READ_APP_ENVIRONMENT",
|
|
171925
172979
|
ReadAppInstallation = "READ_APP_INSTALLATION",
|
|
@@ -191546,10 +192600,26 @@ export declare type ShepherdClassificationsQueriesByResourceArgs = {
|
|
|
191546
192600
|
workspaceId: Scalars['ID']['input'];
|
|
191547
192601
|
};
|
|
191548
192602
|
export declare type ShepherdClassificationsResult = QueryError | ShepherdClassificationsConnection;
|
|
192603
|
+
export declare type ShepherdContentInfo = {
|
|
192604
|
+
__typename?: 'ShepherdContentInfo';
|
|
192605
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
192606
|
+
ati?: Maybe<Scalars['String']['output']>;
|
|
192607
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
192608
|
+
space?: Maybe<ShepherdContentSpaceInfo>;
|
|
192609
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
192610
|
+
};
|
|
192611
|
+
export declare type ShepherdContentInfoResult = QueryError | ShepherdContentInfo;
|
|
191549
192612
|
export declare type ShepherdContentLocationInput = {
|
|
191550
192613
|
index: Scalars['Int']['input'];
|
|
191551
192614
|
pointer: Scalars['String']['input'];
|
|
191552
192615
|
};
|
|
192616
|
+
export declare type ShepherdContentSpaceInfo = {
|
|
192617
|
+
__typename?: 'ShepherdContentSpaceInfo';
|
|
192618
|
+
ari?: Maybe<Scalars['ID']['output']>;
|
|
192619
|
+
iconUrl?: Maybe<Scalars['URL']['output']>;
|
|
192620
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
192621
|
+
url?: Maybe<Scalars['URL']['output']>;
|
|
192622
|
+
};
|
|
191553
192623
|
export declare type ShepherdCreateAlertInput = {
|
|
191554
192624
|
actor?: InputMaybe<ShepherdActorInput>;
|
|
191555
192625
|
assignee?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -191952,6 +193022,7 @@ export declare type ShepherdQuery = {
|
|
|
191952
193022
|
__typename?: 'ShepherdQuery';
|
|
191953
193023
|
alert?: Maybe<ShepherdAlertQueries>;
|
|
191954
193024
|
classifications?: Maybe<ShepherdClassificationsQueries>;
|
|
193025
|
+
contentInfo?: Maybe<Array<ShepherdContentInfoResult>>;
|
|
191955
193026
|
enabledWorkspaceByUserContext?: Maybe<ShepherdEnabledWorkspaceByUserContext>;
|
|
191956
193027
|
exclusions?: Maybe<ShepherdExclusionsQueries>;
|
|
191957
193028
|
redaction?: Maybe<ShepherdRedactionQueries>;
|
|
@@ -191966,6 +193037,10 @@ export declare type ShepherdQuery = {
|
|
|
191966
193037
|
workspaceByOrgId?: Maybe<ShepherdWorkspaceByOrgId>;
|
|
191967
193038
|
workspacesByUserContext?: Maybe<ShepherdWorkspaceResult>;
|
|
191968
193039
|
};
|
|
193040
|
+
export declare type ShepherdQueryContentInfoArgs = {
|
|
193041
|
+
contentUrlsOrAris: Array<Scalars['String']['input']>;
|
|
193042
|
+
workspaceId: Scalars['ID']['input'];
|
|
193043
|
+
};
|
|
191969
193044
|
export declare type ShepherdQueryServiceShardAppInfoArgs = {
|
|
191970
193045
|
workspaceAri: Scalars['ID']['input'];
|
|
191971
193046
|
};
|
|
@@ -192656,6 +193731,7 @@ export declare type SiteSettings = {
|
|
|
192656
193731
|
companyHubName?: Maybe<Scalars['String']['output']>;
|
|
192657
193732
|
frontCover?: Maybe<FrontCover>;
|
|
192658
193733
|
homepage?: Maybe<Homepage>;
|
|
193734
|
+
isHideTitleInUrl: Scalars['Boolean']['output'];
|
|
192659
193735
|
isNav4OptedIn: Scalars['Boolean']['output'];
|
|
192660
193736
|
showApplicationTitle: Scalars['Boolean']['output'];
|
|
192661
193737
|
siteTitle: Scalars['String']['output'];
|
|
@@ -192802,11 +193878,25 @@ export declare type SmartsContextServiceCollaboratorRecommendation = {
|
|
|
192802
193878
|
score?: Maybe<Scalars['Float']['output']>;
|
|
192803
193879
|
user?: Maybe<User>;
|
|
192804
193880
|
};
|
|
193881
|
+
export declare type SmartsContextServiceOrbitObjectRecommendation = {
|
|
193882
|
+
__typename?: 'SmartsContextServiceOrbitObjectRecommendation';
|
|
193883
|
+
context?: Maybe<SmartsRecommendationContext>;
|
|
193884
|
+
entityAti?: Maybe<Scalars['String']['output']>;
|
|
193885
|
+
id: Scalars['ID']['output'];
|
|
193886
|
+
object?: Maybe<SmartsRecommendedEntity>;
|
|
193887
|
+
reason?: Maybe<Scalars['String']['output']>;
|
|
193888
|
+
score?: Maybe<Scalars['Float']['output']>;
|
|
193889
|
+
signals?: Maybe<Scalars['String']['output']>;
|
|
193890
|
+
};
|
|
192805
193891
|
export declare type SmartsContextServiceQueryApi = {
|
|
192806
193892
|
__typename?: 'SmartsContextServiceQueryApi';
|
|
193893
|
+
orbitObjectRecommendations?: Maybe<Array<Maybe<SmartsContextServiceOrbitObjectRecommendation>>>;
|
|
192807
193894
|
orbitRecommendations?: Maybe<Array<Maybe<SmartsContextServiceCollaboratorRecommendation>>>;
|
|
192808
193895
|
quickfindUserRecommendations?: Maybe<Array<Maybe<SmartsContextServiceUserRecommendation>>>;
|
|
192809
193896
|
};
|
|
193897
|
+
export declare type SmartsContextServiceQueryApiOrbitObjectRecommendationsArgs = {
|
|
193898
|
+
recommendationsQuery: SmartsRecommendationsQuery;
|
|
193899
|
+
};
|
|
192810
193900
|
export declare type SmartsContextServiceQueryApiOrbitRecommendationsArgs = {
|
|
192811
193901
|
recommendationsQuery: SmartsRecommendationsQuery;
|
|
192812
193902
|
};
|
|
@@ -194223,6 +195313,38 @@ export declare type SpfCreateAskUpdateInput = {
|
|
|
194223
195313
|
status?: InputMaybe<SpfAskStatus>;
|
|
194224
195314
|
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
194225
195315
|
};
|
|
195316
|
+
export declare type SpfCreateAsksAskCommentInput = {
|
|
195317
|
+
data: Scalars['String']['input'];
|
|
195318
|
+
};
|
|
195319
|
+
export declare type SpfCreateAsksAskInput = {
|
|
195320
|
+
comments?: InputMaybe<Array<SpfCreateAsksAskCommentInput>>;
|
|
195321
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
195322
|
+
impactedWorkId?: InputMaybe<Scalars['String']['input']>;
|
|
195323
|
+
justification?: InputMaybe<Scalars['String']['input']>;
|
|
195324
|
+
links?: InputMaybe<Array<SpfCreateAsksAskLinkInput>>;
|
|
195325
|
+
name: Scalars['String']['input'];
|
|
195326
|
+
ownerId?: InputMaybe<Scalars['String']['input']>;
|
|
195327
|
+
priority: SpfAskPriority;
|
|
195328
|
+
receivingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
195329
|
+
status: SpfAskStatus;
|
|
195330
|
+
submitterId: Scalars['String']['input'];
|
|
195331
|
+
submittingTeamId?: InputMaybe<Scalars['String']['input']>;
|
|
195332
|
+
targetDate?: InputMaybe<SpfAskTargetDateInput>;
|
|
195333
|
+
};
|
|
195334
|
+
export declare type SpfCreateAsksAskLinkInput = {
|
|
195335
|
+
linkText?: InputMaybe<Scalars['String']['input']>;
|
|
195336
|
+
url: Scalars['URL']['input'];
|
|
195337
|
+
};
|
|
195338
|
+
export declare type SpfCreateAsksInput = {
|
|
195339
|
+
asks: Array<SpfCreateAsksAskInput>;
|
|
195340
|
+
cloudId: Scalars['ID']['input'];
|
|
195341
|
+
};
|
|
195342
|
+
export declare type SpfCreateAsksPayload = Payload & {
|
|
195343
|
+
__typename?: 'SpfCreateAsksPayload';
|
|
195344
|
+
asks?: Maybe<Array<SpfAsk>>;
|
|
195345
|
+
errors?: Maybe<Array<MutationError>>;
|
|
195346
|
+
success: Scalars['Boolean']['output'];
|
|
195347
|
+
};
|
|
194226
195348
|
export declare type SpfCreatePlanInput = {
|
|
194227
195349
|
approverIds?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
194228
195350
|
cloudId: Scalars['ID']['input'];
|
|
@@ -196001,6 +197123,7 @@ export declare type StakeholderCommsRelatedIncidentEntry = {
|
|
|
196001
197123
|
incidentName?: Maybe<Scalars['String']['output']>;
|
|
196002
197124
|
};
|
|
196003
197125
|
export declare type StakeholderCommsRemoveCustomDomainInput = {
|
|
197126
|
+
cdmMigrationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
196004
197127
|
domain: Scalars['String']['input'];
|
|
196005
197128
|
pageId: Scalars['String']['input'];
|
|
196006
197129
|
};
|
|
@@ -196388,6 +197511,7 @@ export declare type StakeholderCommsUnsubscribeSubscriberResponse = {
|
|
|
196388
197511
|
success?: Maybe<Scalars['Boolean']['output']>;
|
|
196389
197512
|
};
|
|
196390
197513
|
export declare type StakeholderCommsUpdateCustomDomainInput = {
|
|
197514
|
+
cdmMigrationEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
196391
197515
|
domain: Scalars['String']['input'];
|
|
196392
197516
|
pageId: Scalars['String']['input'];
|
|
196393
197517
|
};
|
|
@@ -196695,7 +197819,6 @@ export declare type Subscription = {
|
|
|
196695
197819
|
convoai_onAgentSessionCreate?: Maybe<ConvoAiAgentSessionCreate>;
|
|
196696
197820
|
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
196697
197821
|
convoai_onAgentSessionUpdatedByProjects?: Maybe<ConvoAiAgentSessionUpdatedByProjects>;
|
|
196698
|
-
cpls_suggestionsExist: CplsSuggestionsExistencePayload;
|
|
196699
197822
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
196700
197823
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
196701
197824
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -196758,9 +197881,6 @@ export declare type SubscriptionConvoai_OnAgentSessionUpdatedByProjectsArgs = {
|
|
|
196758
197881
|
cloudId: Scalars['ID']['input'];
|
|
196759
197882
|
projectIds: Array<Scalars['String']['input']>;
|
|
196760
197883
|
};
|
|
196761
|
-
export declare type SubscriptionCpls_SuggestionsExistArgs = {
|
|
196762
|
-
scopeId: Scalars['ID']['input'];
|
|
196763
|
-
};
|
|
196764
197884
|
export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
|
|
196765
197885
|
cloudId: Scalars['ID']['input'];
|
|
196766
197886
|
jobId: Scalars['ID']['input'];
|
|
@@ -197935,6 +199055,7 @@ export declare type TeamQuery = {
|
|
|
197935
199055
|
team?: Maybe<Team>;
|
|
197936
199056
|
teamSearch?: Maybe<TeamSearchResultConnection>;
|
|
197937
199057
|
teamSearchV2?: Maybe<TeamSearchResultConnectionV2>;
|
|
199058
|
+
teamSearchV3?: Maybe<TeamSearchResultConnectionV2>;
|
|
197938
199059
|
teamV2?: Maybe<TeamV2>;
|
|
197939
199060
|
teamV3?: Maybe<TeamV2>;
|
|
197940
199061
|
teamsTql?: Maybe<TeamConnection>;
|
|
@@ -197989,6 +199110,17 @@ export declare type TeamQueryTeamSearchV2Args = {
|
|
|
197989
199110
|
sortBy?: InputMaybe<Array<InputMaybe<TeamSort>>>;
|
|
197990
199111
|
state?: InputMaybe<Array<InputMaybe<TeamSearchStateV2>>>;
|
|
197991
199112
|
};
|
|
199113
|
+
export declare type TeamQueryTeamSearchV3Args = {
|
|
199114
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
199115
|
+
enablePagination?: InputMaybe<Scalars['Boolean']['input']>;
|
|
199116
|
+
filter?: InputMaybe<TeamSearchFilter>;
|
|
199117
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
199118
|
+
scopeId: Scalars['ID']['input'];
|
|
199119
|
+
searchFields?: InputMaybe<Array<InputMaybe<TeamSearchField>>>;
|
|
199120
|
+
showEmptyTeams?: InputMaybe<Scalars['Boolean']['input']>;
|
|
199121
|
+
sortBy?: InputMaybe<Array<InputMaybe<TeamSort>>>;
|
|
199122
|
+
state?: InputMaybe<Array<InputMaybe<TeamSearchStateV2>>>;
|
|
199123
|
+
};
|
|
197992
199124
|
export declare type TeamQueryTeamV2Args = {
|
|
197993
199125
|
id: Scalars['ID']['input'];
|
|
197994
199126
|
siteId: Scalars['String']['input'];
|
|
@@ -199602,6 +200734,7 @@ export declare type TownsquareGoalAppCapabilities = {
|
|
|
199602
200734
|
__typename?: 'TownsquareGoalAppCapabilities';
|
|
199603
200735
|
canCreateGoal?: Maybe<Scalars['Boolean']['output']>;
|
|
199604
200736
|
canExportGoals?: Maybe<Scalars['Boolean']['output']>;
|
|
200737
|
+
canManageConnections?: Maybe<Scalars['Boolean']['output']>;
|
|
199605
200738
|
focus?: Maybe<TownsquareFocusAppCapabilities>;
|
|
199606
200739
|
};
|
|
199607
200740
|
export declare type TownsquareGoalArchivedChange = {
|
|
@@ -201148,6 +202281,7 @@ export declare type TownsquareProjectAppCapabilities = {
|
|
|
201148
202281
|
__typename?: 'TownsquareProjectAppCapabilities';
|
|
201149
202282
|
canCreateProject?: Maybe<Scalars['Boolean']['output']>;
|
|
201150
202283
|
canExportProjects?: Maybe<Scalars['Boolean']['output']>;
|
|
202284
|
+
canManageConnections?: Maybe<Scalars['Boolean']['output']>;
|
|
201151
202285
|
focus?: Maybe<TownsquareFocusAppCapabilities>;
|
|
201152
202286
|
};
|
|
201153
202287
|
export declare type TownsquareProjectCapabilities = {
|
|
@@ -202866,9 +204000,12 @@ export declare type TrelloAiBoardUserInput = {
|
|
|
202866
204000
|
export declare type TrelloAiFeature = {
|
|
202867
204001
|
__typename?: 'TrelloAiFeature';
|
|
202868
204002
|
creationMethodError?: Maybe<Scalars['String']['output']>;
|
|
204003
|
+
creationMethodLoadingStartedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
204004
|
+
dateViewedByCreator?: Maybe<Scalars['DateTime']['output']>;
|
|
202869
204005
|
entities?: Maybe<Array<TrelloAiFeatureEntity>>;
|
|
202870
204006
|
feature: Scalars['String']['output'];
|
|
202871
204007
|
modelMetadata?: Maybe<Array<TrelloModelMetadata>>;
|
|
204008
|
+
singleInstrumentationId?: Maybe<Scalars['String']['output']>;
|
|
202872
204009
|
};
|
|
202873
204010
|
export declare type TrelloAiFeatureEntity = {
|
|
202874
204011
|
__typename?: 'TrelloAiFeatureEntity';
|
|
@@ -203200,6 +204337,7 @@ export declare type TrelloBaseCardUpdated = {
|
|
|
203200
204337
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
203201
204338
|
limits?: Maybe<TrelloCardLimits>;
|
|
203202
204339
|
list?: Maybe<TrelloList>;
|
|
204340
|
+
manifest?: Maybe<TrelloCardManifest>;
|
|
203203
204341
|
name?: Maybe<Scalars['String']['output']>;
|
|
203204
204342
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
203205
204343
|
onActionDeleted?: Maybe<Array<TrelloActionDeleted>>;
|
|
@@ -204050,6 +205188,17 @@ export declare type TrelloCardManifest = {
|
|
|
204050
205188
|
__typename?: 'TrelloCardManifest';
|
|
204051
205189
|
contents?: Maybe<Scalars['JSON']['output']>;
|
|
204052
205190
|
schemaVersion: Scalars['Int']['output'];
|
|
205191
|
+
source?: Maybe<TrelloCardManifestSource>;
|
|
205192
|
+
};
|
|
205193
|
+
export declare type TrelloCardManifestPromptSource = {
|
|
205194
|
+
__typename?: 'TrelloCardManifestPromptSource';
|
|
205195
|
+
prompt?: Maybe<Scalars['String']['output']>;
|
|
205196
|
+
version?: Maybe<Scalars['Int']['output']>;
|
|
205197
|
+
};
|
|
205198
|
+
export declare type TrelloCardManifestSource = TrelloCardManifestPromptSource | TrelloCardManifestUnknownSource;
|
|
205199
|
+
export declare type TrelloCardManifestUnknownSource = {
|
|
205200
|
+
__typename?: 'TrelloCardManifestUnknownSource';
|
|
205201
|
+
_empty?: Maybe<Scalars['String']['output']>;
|
|
204053
205202
|
};
|
|
204054
205203
|
export declare type TrelloCardMemberEdgeUpdated = {
|
|
204055
205204
|
__typename?: 'TrelloCardMemberEdgeUpdated';
|
|
@@ -204089,6 +205238,39 @@ export declare type TrelloCardSearchResult = {
|
|
|
204089
205238
|
options?: Maybe<TrelloSearchOptions>;
|
|
204090
205239
|
results?: Maybe<TrelloSearchCardConnection>;
|
|
204091
205240
|
};
|
|
205241
|
+
export declare type TrelloCardSummary = {
|
|
205242
|
+
__typename?: 'TrelloCardSummary';
|
|
205243
|
+
generatedAt: Scalars['DateTime']['output'];
|
|
205244
|
+
sections: Array<TrelloCardSummarySection>;
|
|
205245
|
+
sourceMetadata: TrelloCardSummarySourceMetadata;
|
|
205246
|
+
};
|
|
205247
|
+
export declare enum TrelloCardSummaryNullReason {
|
|
205248
|
+
NotEnoughSignal = "NOT_ENOUGH_SIGNAL",
|
|
205249
|
+
NoContent = "NO_CONTENT",
|
|
205250
|
+
PlaceholderOnly = "PLACEHOLDER_ONLY"
|
|
205251
|
+
}
|
|
205252
|
+
export declare type TrelloCardSummarySection = {
|
|
205253
|
+
__typename?: 'TrelloCardSummarySection';
|
|
205254
|
+
items: Array<Scalars['String']['output']>;
|
|
205255
|
+
kind?: Maybe<TrelloCardSummarySectionKind>;
|
|
205256
|
+
title: Scalars['String']['output'];
|
|
205257
|
+
};
|
|
205258
|
+
export declare enum TrelloCardSummarySectionKind {
|
|
205259
|
+
Action = "ACTION",
|
|
205260
|
+
Decision = "DECISION",
|
|
205261
|
+
General = "GENERAL",
|
|
205262
|
+
Progress = "PROGRESS",
|
|
205263
|
+
Question = "QUESTION",
|
|
205264
|
+
Risk = "RISK"
|
|
205265
|
+
}
|
|
205266
|
+
export declare type TrelloCardSummarySourceMetadata = {
|
|
205267
|
+
__typename?: 'TrelloCardSummarySourceMetadata';
|
|
205268
|
+
commentCount: Scalars['Int']['output'];
|
|
205269
|
+
commentsTruncated: Scalars['Boolean']['output'];
|
|
205270
|
+
descriptionLastEditedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
205271
|
+
latestCommentAt?: Maybe<Scalars['DateTime']['output']>;
|
|
205272
|
+
latestCommentEditedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
205273
|
+
};
|
|
204092
205274
|
export declare type TrelloCardUpdated = TrelloBaseCardUpdated & {
|
|
204093
205275
|
__typename?: 'TrelloCardUpdated';
|
|
204094
205276
|
actions?: Maybe<TrelloCardActionConnectionUpdated>;
|
|
@@ -204112,6 +205294,7 @@ export declare type TrelloCardUpdated = TrelloBaseCardUpdated & {
|
|
|
204112
205294
|
limits?: Maybe<TrelloCardLimits>;
|
|
204113
205295
|
list?: Maybe<TrelloList>;
|
|
204114
205296
|
location?: Maybe<TrelloCardLocation>;
|
|
205297
|
+
manifest?: Maybe<TrelloCardManifest>;
|
|
204115
205298
|
members?: Maybe<TrelloMemberUpdatedConnection>;
|
|
204116
205299
|
membersVoted?: Maybe<TrelloMemberUpdatedConnection>;
|
|
204117
205300
|
mirrorSource?: Maybe<TrelloBaseCard>;
|
|
@@ -204166,11 +205349,22 @@ export declare type TrelloCheckItemConnectionUpdated = {
|
|
|
204166
205349
|
__typename?: 'TrelloCheckItemConnectionUpdated';
|
|
204167
205350
|
edges?: Maybe<Array<TrelloCheckItemEdgeUpdated>>;
|
|
204168
205351
|
};
|
|
205352
|
+
export declare enum TrelloCheckItemCreationMethod {
|
|
205353
|
+
Ai = "AI",
|
|
205354
|
+
Assisted = "ASSISTED",
|
|
205355
|
+
Automatic = "AUTOMATIC",
|
|
205356
|
+
Demo = "DEMO",
|
|
205357
|
+
EmailSource = "EMAIL_SOURCE"
|
|
205358
|
+
}
|
|
204169
205359
|
export declare type TrelloCheckItemDueInfo = {
|
|
204170
205360
|
__typename?: 'TrelloCheckItemDueInfo';
|
|
204171
205361
|
at?: Maybe<Scalars['DateTime']['output']>;
|
|
204172
205362
|
reminder?: Maybe<Scalars['Int']['output']>;
|
|
204173
205363
|
};
|
|
205364
|
+
export declare type TrelloCheckItemDueInfoInput = {
|
|
205365
|
+
at?: InputMaybe<Scalars['DateTime']['input']>;
|
|
205366
|
+
reminder?: InputMaybe<Scalars['Int']['input']>;
|
|
205367
|
+
};
|
|
204174
205368
|
export declare type TrelloCheckItemEdge = {
|
|
204175
205369
|
__typename?: 'TrelloCheckItemEdge';
|
|
204176
205370
|
cursor: Scalars['String']['output'];
|
|
@@ -204541,6 +205735,21 @@ export declare type TrelloCreateCardPayload = Payload & {
|
|
|
204541
205735
|
errors?: Maybe<Array<MutationError>>;
|
|
204542
205736
|
success: Scalars['Boolean']['output'];
|
|
204543
205737
|
};
|
|
205738
|
+
export declare type TrelloCreateCheckItemInput = {
|
|
205739
|
+
checked?: InputMaybe<Scalars['Boolean']['input']>;
|
|
205740
|
+
checklistId: Scalars['ID']['input'];
|
|
205741
|
+
creationMethod?: InputMaybe<TrelloCheckItemCreationMethod>;
|
|
205742
|
+
due?: InputMaybe<TrelloCheckItemDueInfoInput>;
|
|
205743
|
+
name: Scalars['String']['input'];
|
|
205744
|
+
position?: InputMaybe<TrelloRelativePosition>;
|
|
205745
|
+
userId?: InputMaybe<Scalars['ID']['input']>;
|
|
205746
|
+
};
|
|
205747
|
+
export declare type TrelloCreateCheckItemPayload = Payload & {
|
|
205748
|
+
__typename?: 'TrelloCreateCheckItemPayload';
|
|
205749
|
+
checklist?: Maybe<TrelloChecklist>;
|
|
205750
|
+
errors?: Maybe<Array<MutationError>>;
|
|
205751
|
+
success: Scalars['Boolean']['output'];
|
|
205752
|
+
};
|
|
204544
205753
|
export declare type TrelloCreateChecklistInput = {
|
|
204545
205754
|
cardId: Scalars['ID']['input'];
|
|
204546
205755
|
creationMethod?: InputMaybe<TrelloChecklistCreationMethod>;
|
|
@@ -205037,6 +206246,17 @@ export declare type TrelloGenerateCardCoverWithAiPayload = Payload & {
|
|
|
205037
206246
|
errors?: Maybe<Array<MutationError>>;
|
|
205038
206247
|
success: Scalars['Boolean']['output'];
|
|
205039
206248
|
};
|
|
206249
|
+
export declare type TrelloGenerateCardSummaryInput = {
|
|
206250
|
+
cardId: Scalars['ID']['input'];
|
|
206251
|
+
force?: InputMaybe<Scalars['Boolean']['input']>;
|
|
206252
|
+
};
|
|
206253
|
+
export declare type TrelloGenerateCardSummaryPayload = Payload & {
|
|
206254
|
+
__typename?: 'TrelloGenerateCardSummaryPayload';
|
|
206255
|
+
errors?: Maybe<Array<MutationError>>;
|
|
206256
|
+
nullReason?: Maybe<TrelloCardSummaryNullReason>;
|
|
206257
|
+
success: Scalars['Boolean']['output'];
|
|
206258
|
+
summary?: Maybe<TrelloCardSummary>;
|
|
206259
|
+
};
|
|
205040
206260
|
export declare type TrelloGenerateCheckItemsForCardInput = {
|
|
205041
206261
|
cardId: Scalars['ID']['input'];
|
|
205042
206262
|
checklistTarget: TrelloChecklistTarget;
|
|
@@ -205209,6 +206429,7 @@ export declare type TrelloInboxCardUpdated = TrelloBaseCardUpdated & {
|
|
|
205209
206429
|
lastActivityAt?: Maybe<Scalars['DateTime']['output']>;
|
|
205210
206430
|
limits?: Maybe<TrelloCardLimits>;
|
|
205211
206431
|
list?: Maybe<TrelloList>;
|
|
206432
|
+
manifest?: Maybe<TrelloCardManifest>;
|
|
205212
206433
|
name?: Maybe<Scalars['String']['output']>;
|
|
205213
206434
|
objectId?: Maybe<Scalars['ID']['output']>;
|
|
205214
206435
|
onActionDeleted?: Maybe<Array<TrelloActionDeleted>>;
|
|
@@ -205906,6 +207127,7 @@ export declare type TrelloMutationApi = {
|
|
|
205906
207127
|
createBoard?: Maybe<TrelloCreateBoardPayload>;
|
|
205907
207128
|
createBoardWithAi?: Maybe<TrelloCreateBoardWithAiPayload>;
|
|
205908
207129
|
createCard?: Maybe<TrelloCreateCardPayload>;
|
|
207130
|
+
createCheckItem?: Maybe<TrelloCreateCheckItemPayload>;
|
|
205909
207131
|
createChecklist?: Maybe<TrelloCreateChecklistPayload>;
|
|
205910
207132
|
createCustomField?: Maybe<TrelloCreateCustomFieldPayload>;
|
|
205911
207133
|
createCustomFieldOption?: Maybe<TrelloCreateCustomFieldOptionPayload>;
|
|
@@ -205932,6 +207154,7 @@ export declare type TrelloMutationApi = {
|
|
|
205932
207154
|
endVoiceCaptureSession?: Maybe<TrelloEndVoiceCaptureSessionPayload>;
|
|
205933
207155
|
generateBoardBackgroundWithAi?: Maybe<TrelloGenerateBoardBackgroundWithAiPayload>;
|
|
205934
207156
|
generateCardCoverWithAi?: Maybe<TrelloGenerateCardCoverWithAiPayload>;
|
|
207157
|
+
generateCardSummary?: Maybe<TrelloGenerateCardSummaryPayload>;
|
|
205935
207158
|
generateCheckItemsForCard?: Maybe<TrelloGenerateCheckItemsForCardPayload>;
|
|
205936
207159
|
hideCardCoversOnCardFront?: Maybe<TrelloHideCardCoversOnCardFrontPayload>;
|
|
205937
207160
|
hideVotesOnBoard?: Maybe<TrelloHideVotesOnBoardPayload>;
|
|
@@ -205944,6 +207167,7 @@ export declare type TrelloMutationApi = {
|
|
|
205944
207167
|
pinCard?: Maybe<TrelloPinCardPayload>;
|
|
205945
207168
|
proactiveSmartScheduleCards?: Maybe<TrelloProactiveSmartScheduleCardsPayload>;
|
|
205946
207169
|
proposePlannerEvents?: Maybe<TrelloProposePlannerEventsPayload>;
|
|
207170
|
+
refreshCardManifest?: Maybe<TrelloRefreshManifestPayload>;
|
|
205947
207171
|
rejectProposedEvents?: Maybe<TrelloRejectProposedEventsPayload>;
|
|
205948
207172
|
removeBoardStar?: Maybe<TrelloRemoveBoardStarPayload>;
|
|
205949
207173
|
removeCardFromPlannerCalendarEvent?: Maybe<TrelloRemoveCardFromPlannerCalendarEventPayload>;
|
|
@@ -206072,6 +207296,9 @@ export declare type TrelloMutationApiCreateBoardWithAiArgs = {
|
|
|
206072
207296
|
export declare type TrelloMutationApiCreateCardArgs = {
|
|
206073
207297
|
input: TrelloCreateCardInput;
|
|
206074
207298
|
};
|
|
207299
|
+
export declare type TrelloMutationApiCreateCheckItemArgs = {
|
|
207300
|
+
input: TrelloCreateCheckItemInput;
|
|
207301
|
+
};
|
|
206075
207302
|
export declare type TrelloMutationApiCreateChecklistArgs = {
|
|
206076
207303
|
input: TrelloCreateChecklistInput;
|
|
206077
207304
|
};
|
|
@@ -206150,6 +207377,9 @@ export declare type TrelloMutationApiGenerateBoardBackgroundWithAiArgs = {
|
|
|
206150
207377
|
export declare type TrelloMutationApiGenerateCardCoverWithAiArgs = {
|
|
206151
207378
|
input: TrelloGenerateCardCoverWithAiInput;
|
|
206152
207379
|
};
|
|
207380
|
+
export declare type TrelloMutationApiGenerateCardSummaryArgs = {
|
|
207381
|
+
input: TrelloGenerateCardSummaryInput;
|
|
207382
|
+
};
|
|
206153
207383
|
export declare type TrelloMutationApiGenerateCheckItemsForCardArgs = {
|
|
206154
207384
|
input: TrelloGenerateCheckItemsForCardInput;
|
|
206155
207385
|
};
|
|
@@ -206183,6 +207413,9 @@ export declare type TrelloMutationApiPinCardArgs = {
|
|
|
206183
207413
|
export declare type TrelloMutationApiProposePlannerEventsArgs = {
|
|
206184
207414
|
input: TrelloProposePlannerEventsInput;
|
|
206185
207415
|
};
|
|
207416
|
+
export declare type TrelloMutationApiRefreshCardManifestArgs = {
|
|
207417
|
+
input: TrelloRefreshManifestInput;
|
|
207418
|
+
};
|
|
206186
207419
|
export declare type TrelloMutationApiRejectProposedEventsArgs = {
|
|
206187
207420
|
input: TrelloRejectProposedEventsInput;
|
|
206188
207421
|
};
|
|
@@ -207498,6 +208731,15 @@ export declare type TrelloReactionLimits = {
|
|
|
207498
208731
|
perAction?: Maybe<TrelloLimitProps>;
|
|
207499
208732
|
uniquePerAction?: Maybe<TrelloLimitProps>;
|
|
207500
208733
|
};
|
|
208734
|
+
export declare type TrelloRefreshManifestInput = {
|
|
208735
|
+
cardId: Scalars['ID']['input'];
|
|
208736
|
+
};
|
|
208737
|
+
export declare type TrelloRefreshManifestPayload = Payload & {
|
|
208738
|
+
__typename?: 'TrelloRefreshManifestPayload';
|
|
208739
|
+
errors?: Maybe<Array<MutationError>>;
|
|
208740
|
+
manifest?: Maybe<TrelloCardManifest>;
|
|
208741
|
+
success: Scalars['Boolean']['output'];
|
|
208742
|
+
};
|
|
207501
208743
|
export declare type TrelloRejectProposedEventsInput = {
|
|
207502
208744
|
proposedEventIds: Array<Scalars['ID']['input']>;
|
|
207503
208745
|
};
|
|
@@ -208521,7 +209763,7 @@ export declare type TrelloUserUnrestrictedAccessSummary = {
|
|
|
208521
209763
|
};
|
|
208522
209764
|
export declare type TrelloVoiceCaptureCardUpdated = {
|
|
208523
209765
|
__typename?: 'TrelloVoiceCaptureCardUpdated';
|
|
208524
|
-
due?: Maybe<Scalars['
|
|
209766
|
+
due?: Maybe<Scalars['DateTime']['output']>;
|
|
208525
209767
|
name?: Maybe<Scalars['String']['output']>;
|
|
208526
209768
|
objectId: Scalars['ID']['output'];
|
|
208527
209769
|
};
|
|
@@ -211428,6 +212670,24 @@ export declare type UtsAlertThreshold = {
|
|
|
211428
212670
|
usageIdentifier: Scalars['String']['output'];
|
|
211429
212671
|
value?: Maybe<Scalars['Float']['output']>;
|
|
211430
212672
|
};
|
|
212673
|
+
export declare type UtsAllowancePoolAllocationUpdateInput = {
|
|
212674
|
+
allocationId: Scalars['ID']['input'];
|
|
212675
|
+
billingEntity?: InputMaybe<Scalars['String']['input']>;
|
|
212676
|
+
enforcementMode?: InputMaybe<UtsLatestAllowanceEnforcementModeType>;
|
|
212677
|
+
overageCap?: InputMaybe<Scalars['Float']['input']>;
|
|
212678
|
+
poolShare?: InputMaybe<Scalars['Float']['input']>;
|
|
212679
|
+
};
|
|
212680
|
+
export declare type UtsAllowancePoolAllocationUpdateResult = {
|
|
212681
|
+
__typename?: 'UtsAllowancePoolAllocationUpdateResult';
|
|
212682
|
+
allocationId?: Maybe<Scalars['ID']['output']>;
|
|
212683
|
+
poolId?: Maybe<Scalars['ID']['output']>;
|
|
212684
|
+
transactionId?: Maybe<Scalars['ID']['output']>;
|
|
212685
|
+
};
|
|
212686
|
+
export declare enum UtsLatestAllowanceEnforcementModeType {
|
|
212687
|
+
Block = "BLOCK",
|
|
212688
|
+
LimitedOverage = "LIMITED_OVERAGE",
|
|
212689
|
+
Overage = "OVERAGE"
|
|
212690
|
+
}
|
|
211431
212691
|
export declare type UtsUsageAlert = {
|
|
211432
212692
|
__typename?: 'UtsUsageAlert';
|
|
211433
212693
|
createdAt?: Maybe<Scalars['Float']['output']>;
|