@forge/cli-shared 8.23.0-next.5 → 8.23.0-next.6-experimental-f7c39e1
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.
|
@@ -1958,11 +1958,30 @@ export declare enum AvpIntegrationId {
|
|
|
1958
1958
|
JsmSummaryPage = "JSM_SUMMARY_PAGE",
|
|
1959
1959
|
Townsquare = "TOWNSQUARE"
|
|
1960
1960
|
}
|
|
1961
|
+
export declare type AvpJqlSource = {
|
|
1962
|
+
__typename?: 'AVPJqlSource';
|
|
1963
|
+
filterId?: Maybe<Scalars['ID']['output']>;
|
|
1964
|
+
jql?: Maybe<Scalars['String']['output']>;
|
|
1965
|
+
projectId?: Maybe<Scalars['ID']['output']>;
|
|
1966
|
+
type: AvpJqlSourceType;
|
|
1967
|
+
};
|
|
1968
|
+
export declare type AvpJqlSourceInput = {
|
|
1969
|
+
filterId?: InputMaybe<Scalars['ID']['input']>;
|
|
1970
|
+
jql?: InputMaybe<Scalars['String']['input']>;
|
|
1971
|
+
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
1972
|
+
type: AvpJqlSourceType;
|
|
1973
|
+
};
|
|
1974
|
+
export declare enum AvpJqlSourceType {
|
|
1975
|
+
FilterId = "FILTER_ID",
|
|
1976
|
+
ProjectId = "PROJECT_ID",
|
|
1977
|
+
RawJql = "RAW_JQL"
|
|
1978
|
+
}
|
|
1961
1979
|
export declare type AvpMetricsConfiguration = {
|
|
1962
1980
|
__typename?: 'AVPMetricsConfiguration';
|
|
1963
1981
|
dimensions?: Maybe<Array<AvpMetricsDimension>>;
|
|
1964
1982
|
filters?: Maybe<Array<AvpMetricsFilter>>;
|
|
1965
1983
|
granularity?: Maybe<Scalars['String']['output']>;
|
|
1984
|
+
jqlSource?: Maybe<AvpJqlSource>;
|
|
1966
1985
|
metrics?: Maybe<Array<Scalars['String']['output']>>;
|
|
1967
1986
|
searchCondition?: Maybe<Scalars['String']['output']>;
|
|
1968
1987
|
workspaceId?: Maybe<Scalars['String']['output']>;
|
|
@@ -1982,6 +2001,7 @@ export declare type AvpMetricsConfigurationInput = {
|
|
|
1982
2001
|
dimensions?: InputMaybe<Array<AvpMetricsConfigurationDimensionInput>>;
|
|
1983
2002
|
filters?: InputMaybe<Array<AvpMetricsConfigurationFilterInput>>;
|
|
1984
2003
|
granularity?: InputMaybe<Scalars['String']['input']>;
|
|
2004
|
+
jqlSource?: InputMaybe<AvpJqlSourceInput>;
|
|
1985
2005
|
metrics?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1986
2006
|
searchCondition?: InputMaybe<Scalars['String']['input']>;
|
|
1987
2007
|
workspaceId?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -2492,6 +2512,7 @@ export declare type ActionsAction = {
|
|
|
2492
2512
|
actionType: Scalars['String']['output'];
|
|
2493
2513
|
actionVerb?: Maybe<Scalars['String']['output']>;
|
|
2494
2514
|
actionVersion?: Maybe<Scalars['String']['output']>;
|
|
2515
|
+
audience?: Maybe<ActionsActionAudience>;
|
|
2495
2516
|
auth: Array<ActionsAuthType>;
|
|
2496
2517
|
connection?: Maybe<ActionsConnection>;
|
|
2497
2518
|
description?: Maybe<ActionsDescription>;
|
|
@@ -2509,6 +2530,10 @@ export declare type ActionsAction = {
|
|
|
2509
2530
|
target?: Maybe<ActionsTargetInputs>;
|
|
2510
2531
|
uiSchema?: Maybe<ActionsConfigurationUiSchema>;
|
|
2511
2532
|
};
|
|
2533
|
+
export declare enum ActionsActionAudience {
|
|
2534
|
+
External = "EXTERNAL",
|
|
2535
|
+
Internal = "INTERNAL"
|
|
2536
|
+
}
|
|
2512
2537
|
export declare type ActionsActionConfiguration = {
|
|
2513
2538
|
__typename?: 'ActionsActionConfiguration';
|
|
2514
2539
|
properties?: Maybe<Array<ActionsActionConfigurationKeyValuePair>>;
|
|
@@ -6025,6 +6050,7 @@ export declare type AgentStudioKnowledgeGapUploadJob = {
|
|
|
6025
6050
|
export declare enum AgentStudioKnowledgeGapUploadJobStatus {
|
|
6026
6051
|
Clustering = "CLUSTERING",
|
|
6027
6052
|
Completed = "COMPLETED",
|
|
6053
|
+
Dlq = "DLQ",
|
|
6028
6054
|
Failed = "FAILED",
|
|
6029
6055
|
Generating = "GENERATING",
|
|
6030
6056
|
PartialComplete = "PARTIAL_COMPLETE",
|
|
@@ -6787,6 +6813,9 @@ export declare type AgentWorkspaceAgentRecommendation = {
|
|
|
6787
6813
|
export declare type AgentWorkspaceAgentShifts = {
|
|
6788
6814
|
__typename?: 'AgentWorkspaceAgentShifts';
|
|
6789
6815
|
agent: AgentWorkspaceAgent;
|
|
6816
|
+
coverageGapDetails?: Maybe<Array<AgentWorkspaceCoverageGap>>;
|
|
6817
|
+
coverageGaps: Array<AgentWorkspaceTimeRange>;
|
|
6818
|
+
coveringShifts: Array<AgentWorkspaceCoveringShift>;
|
|
6790
6819
|
hasShifts: Scalars['Boolean']['output'];
|
|
6791
6820
|
shifts: Array<AgentWorkspaceShift>;
|
|
6792
6821
|
totalHours: Scalars['Float']['output'];
|
|
@@ -6819,12 +6848,12 @@ export declare type AgentWorkspaceArchiveSkillPayload = {
|
|
|
6819
6848
|
};
|
|
6820
6849
|
export declare type AgentWorkspaceAssignAgentToGapInput = {
|
|
6821
6850
|
assignedAgentId: Scalars['ID']['input'];
|
|
6822
|
-
|
|
6823
|
-
|
|
6824
|
-
occurrenceAgentId: Scalars['ID']['input'];
|
|
6825
|
-
occurrenceStartTime: Scalars['DateTime']['input'];
|
|
6851
|
+
endTime: Scalars['DateTime']['input'];
|
|
6852
|
+
gapOwnerAgentId: Scalars['ID']['input'];
|
|
6826
6853
|
projectARI: Scalars['ID']['input'];
|
|
6827
6854
|
scheduleId: Scalars['ID']['input'];
|
|
6855
|
+
shiftSegmentId: Scalars['ID']['input'];
|
|
6856
|
+
startTime: Scalars['DateTime']['input'];
|
|
6828
6857
|
};
|
|
6829
6858
|
export declare type AgentWorkspaceAssignAgentToGapPayload = {
|
|
6830
6859
|
__typename?: 'AgentWorkspaceAssignAgentToGapPayload';
|
|
@@ -7006,6 +7035,32 @@ export declare type AgentWorkspaceCapacitySummary = {
|
|
|
7006
7035
|
totalCapacity: Scalars['Int']['output'];
|
|
7007
7036
|
totalUnassignedWorkItems: Scalars['Int']['output'];
|
|
7008
7037
|
};
|
|
7038
|
+
export declare type AgentWorkspaceCoverShiftEditBoundsInput = {
|
|
7039
|
+
agentId: Scalars['ID']['input'];
|
|
7040
|
+
projectARI: Scalars['ID']['input'];
|
|
7041
|
+
scheduleId: Scalars['ID']['input'];
|
|
7042
|
+
shiftSegmentId: Scalars['ID']['input'];
|
|
7043
|
+
};
|
|
7044
|
+
export declare type AgentWorkspaceCoverageGap = {
|
|
7045
|
+
__typename?: 'AgentWorkspaceCoverageGap';
|
|
7046
|
+
agentId: Scalars['ID']['output'];
|
|
7047
|
+
durationMinutes: Scalars['Int']['output'];
|
|
7048
|
+
endTime: Scalars['DateTime']['output'];
|
|
7049
|
+
scheduleId: Scalars['ID']['output'];
|
|
7050
|
+
scheduleName: Scalars['String']['output'];
|
|
7051
|
+
shiftSegmentId: Scalars['ID']['output'];
|
|
7052
|
+
startTime: Scalars['DateTime']['output'];
|
|
7053
|
+
};
|
|
7054
|
+
export declare type AgentWorkspaceCoveringShift = {
|
|
7055
|
+
__typename?: 'AgentWorkspaceCoveringShift';
|
|
7056
|
+
coveringAgentId: Scalars['ID']['output'];
|
|
7057
|
+
durationMinutes: Scalars['Int']['output'];
|
|
7058
|
+
endTime: Scalars['DateTime']['output'];
|
|
7059
|
+
scheduleId: Scalars['ID']['output'];
|
|
7060
|
+
scheduleName: Scalars['String']['output'];
|
|
7061
|
+
shiftSegmentId: Scalars['ID']['output'];
|
|
7062
|
+
startTime: Scalars['DateTime']['output'];
|
|
7063
|
+
};
|
|
7009
7064
|
export declare type AgentWorkspaceCreateAndLinkTeamsInput = {
|
|
7010
7065
|
groups: Array<AgentWorkspaceCreateTeamFromGroupInput>;
|
|
7011
7066
|
projectARI: Scalars['ID']['input'];
|
|
@@ -7070,6 +7125,12 @@ export declare type AgentWorkspaceDefaultCapacity = {
|
|
|
7070
7125
|
projectId: Scalars['ID']['output'];
|
|
7071
7126
|
updatedAt: Scalars['DateTime']['output'];
|
|
7072
7127
|
};
|
|
7128
|
+
export declare type AgentWorkspaceDeleteCoverShiftInput = {
|
|
7129
|
+
agentId: Scalars['ID']['input'];
|
|
7130
|
+
projectARI: Scalars['ID']['input'];
|
|
7131
|
+
scheduleId: Scalars['ID']['input'];
|
|
7132
|
+
shiftSegmentId: Scalars['ID']['input'];
|
|
7133
|
+
};
|
|
7073
7134
|
export declare type AgentWorkspaceDeleteScheduleInput = {
|
|
7074
7135
|
cloudId: Scalars['ID']['input'];
|
|
7075
7136
|
projectId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -7095,6 +7156,14 @@ export declare type AgentWorkspaceDeleteShiftPayload = {
|
|
|
7095
7156
|
shift?: Maybe<AgentWorkspaceShift>;
|
|
7096
7157
|
success: Scalars['Boolean']['output'];
|
|
7097
7158
|
};
|
|
7159
|
+
export declare type AgentWorkspaceDiscardDraftedRoutingTableInput = {
|
|
7160
|
+
projectAri: Scalars['ID']['input'];
|
|
7161
|
+
serviceFieldId: Scalars['ID']['input'];
|
|
7162
|
+
};
|
|
7163
|
+
export declare type AgentWorkspaceDiscardDraftedRoutingTablePayload = {
|
|
7164
|
+
__typename?: 'AgentWorkspaceDiscardDraftedRoutingTablePayload';
|
|
7165
|
+
rowsDeleted: Scalars['Int']['output'];
|
|
7166
|
+
};
|
|
7098
7167
|
export declare type AgentWorkspaceDraftedRoutingTable = {
|
|
7099
7168
|
__typename?: 'AgentWorkspaceDraftedRoutingTable';
|
|
7100
7169
|
entries: Array<AgentWorkspaceDraftedRoutingTableEntry>;
|
|
@@ -7120,6 +7189,14 @@ export declare enum AgentWorkspaceDraftedRoutingTableEntrySource {
|
|
|
7120
7189
|
Manual = "MANUAL",
|
|
7121
7190
|
Rovo = "ROVO"
|
|
7122
7191
|
}
|
|
7192
|
+
export declare type AgentWorkspaceEditCoverShiftInput = {
|
|
7193
|
+
agentId: Scalars['ID']['input'];
|
|
7194
|
+
newEndTime: Scalars['DateTime']['input'];
|
|
7195
|
+
newStartTime: Scalars['DateTime']['input'];
|
|
7196
|
+
projectARI: Scalars['ID']['input'];
|
|
7197
|
+
scheduleId: Scalars['ID']['input'];
|
|
7198
|
+
shiftSegmentId: Scalars['ID']['input'];
|
|
7199
|
+
};
|
|
7123
7200
|
export declare type AgentWorkspaceEditShiftInput = {
|
|
7124
7201
|
agentId: Scalars['ID']['input'];
|
|
7125
7202
|
newEndTime: Scalars['DateTime']['input'];
|
|
@@ -7160,6 +7237,15 @@ export declare type AgentWorkspaceIssueRebalancingRecommendation = {
|
|
|
7160
7237
|
issueARI: Scalars['ID']['output'];
|
|
7161
7238
|
recommendations: Array<AgentWorkspaceRebalancingRecommendation>;
|
|
7162
7239
|
};
|
|
7240
|
+
export declare type AgentWorkspaceIssueRoutingHistory = {
|
|
7241
|
+
__typename?: 'AgentWorkspaceIssueRoutingHistory';
|
|
7242
|
+
events: AgentWorkspaceRoutingHistoryEventConnection;
|
|
7243
|
+
issueKey: Scalars['String']['output'];
|
|
7244
|
+
};
|
|
7245
|
+
export declare type AgentWorkspaceIssueRoutingHistoryEventsArgs = {
|
|
7246
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
7247
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7248
|
+
};
|
|
7163
7249
|
export declare type AgentWorkspaceMutationError = {
|
|
7164
7250
|
__typename?: 'AgentWorkspaceMutationError';
|
|
7165
7251
|
code?: Maybe<Scalars['String']['output']>;
|
|
@@ -7191,6 +7277,12 @@ export declare type AgentWorkspaceRecommendationError = {
|
|
|
7191
7277
|
__typename?: 'AgentWorkspaceRecommendationError';
|
|
7192
7278
|
message: Scalars['String']['output'];
|
|
7193
7279
|
};
|
|
7280
|
+
export declare type AgentWorkspaceRecommendedAgentsForCoverageGapInput = {
|
|
7281
|
+
gapOwnerAgentId: Scalars['ID']['input'];
|
|
7282
|
+
projectARI: Scalars['ID']['input'];
|
|
7283
|
+
scheduleId: Scalars['ID']['input'];
|
|
7284
|
+
shiftSegmentId: Scalars['ID']['input'];
|
|
7285
|
+
};
|
|
7194
7286
|
export declare type AgentWorkspaceRecommendedAgentsForGapInput = {
|
|
7195
7287
|
originalAgentId: Scalars['ID']['input'];
|
|
7196
7288
|
projectARI: Scalars['ID']['input'];
|
|
@@ -7238,6 +7330,36 @@ export declare type AgentWorkspaceRestoreSkillPayload = {
|
|
|
7238
7330
|
errors?: Maybe<Array<MutationError>>;
|
|
7239
7331
|
success: Scalars['Boolean']['output'];
|
|
7240
7332
|
};
|
|
7333
|
+
export declare type AgentWorkspaceRoutingHistoryEvent = {
|
|
7334
|
+
__typename?: 'AgentWorkspaceRoutingHistoryEvent';
|
|
7335
|
+
details: Array<Scalars['String']['output']>;
|
|
7336
|
+
headline: Scalars['String']['output'];
|
|
7337
|
+
id: Scalars['ID']['output'];
|
|
7338
|
+
kind: AgentWorkspaceRoutingHistoryEventKind;
|
|
7339
|
+
occurredAt: Scalars['DateTime']['output'];
|
|
7340
|
+
};
|
|
7341
|
+
export declare type AgentWorkspaceRoutingHistoryEventConnection = {
|
|
7342
|
+
__typename?: 'AgentWorkspaceRoutingHistoryEventConnection';
|
|
7343
|
+
edges: Array<AgentWorkspaceRoutingHistoryEventEdge>;
|
|
7344
|
+
pageInfo: AgentWorkspaceRoutingHistoryPageInfo;
|
|
7345
|
+
};
|
|
7346
|
+
export declare type AgentWorkspaceRoutingHistoryEventEdge = {
|
|
7347
|
+
__typename?: 'AgentWorkspaceRoutingHistoryEventEdge';
|
|
7348
|
+
cursor: Scalars['String']['output'];
|
|
7349
|
+
node: AgentWorkspaceRoutingHistoryEvent;
|
|
7350
|
+
};
|
|
7351
|
+
export declare enum AgentWorkspaceRoutingHistoryEventKind {
|
|
7352
|
+
DeterminedService = "DETERMINED_SERVICE",
|
|
7353
|
+
Routed = "ROUTED",
|
|
7354
|
+
Skipped = "SKIPPED"
|
|
7355
|
+
}
|
|
7356
|
+
export declare type AgentWorkspaceRoutingHistoryPageInfo = {
|
|
7357
|
+
__typename?: 'AgentWorkspaceRoutingHistoryPageInfo';
|
|
7358
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
7359
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
7360
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
7361
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
7362
|
+
};
|
|
7241
7363
|
export declare type AgentWorkspaceRoutingSetupState = {
|
|
7242
7364
|
__typename?: 'AgentWorkspaceRoutingSetupState';
|
|
7243
7365
|
hasCommittedTable: Scalars['Boolean']['output'];
|
|
@@ -7286,6 +7408,7 @@ export declare type AgentWorkspaceSchedule = {
|
|
|
7286
7408
|
__typename?: 'AgentWorkspaceSchedule';
|
|
7287
7409
|
agents: Array<AgentWorkspaceAgent>;
|
|
7288
7410
|
cloudId: Scalars['ID']['output'];
|
|
7411
|
+
coverageGapDetails?: Maybe<Array<AgentWorkspaceCoverageGap>>;
|
|
7289
7412
|
coverageGaps: Array<AgentWorkspaceTimeRange>;
|
|
7290
7413
|
createdAt: Scalars['DateTime']['output'];
|
|
7291
7414
|
createdBy: Scalars['String']['output'];
|
|
@@ -7433,7 +7556,6 @@ export declare type AgentWorkspaceSetTeamCapacitiesPayload = {
|
|
|
7433
7556
|
export declare type AgentWorkspaceShift = {
|
|
7434
7557
|
__typename?: 'AgentWorkspaceShift';
|
|
7435
7558
|
agentId: Scalars['ID']['output'];
|
|
7436
|
-
coverageGaps: Array<AgentWorkspaceTimeRange>;
|
|
7437
7559
|
durationMinutes: Scalars['Int']['output'];
|
|
7438
7560
|
endTime: Scalars['DateTime']['output'];
|
|
7439
7561
|
id: Scalars['ID']['output'];
|
|
@@ -7497,6 +7619,8 @@ export declare type AgentWorkspaceShiftsSummary = {
|
|
|
7497
7619
|
avgAgentsPerHour: Scalars['Float']['output'];
|
|
7498
7620
|
completedShiftsPercentage: Scalars['Float']['output'];
|
|
7499
7621
|
scheduledAgents: Scalars['Int']['output'];
|
|
7622
|
+
totalCoveredShifts: Scalars['Int']['output'];
|
|
7623
|
+
totalGaps: Scalars['Int']['output'];
|
|
7500
7624
|
totalShifts: Scalars['Int']['output'];
|
|
7501
7625
|
};
|
|
7502
7626
|
export declare type AgentWorkspaceSkill = {
|
|
@@ -7525,7 +7649,12 @@ export declare type AgentWorkspaceSkillCategory = {
|
|
|
7525
7649
|
id: Scalars['ID']['output'];
|
|
7526
7650
|
name?: Maybe<Scalars['String']['output']>;
|
|
7527
7651
|
skillCount?: Maybe<Scalars['Int']['output']>;
|
|
7528
|
-
skills?: Maybe<
|
|
7652
|
+
skills?: Maybe<AgentWorkspaceSkillConnection>;
|
|
7653
|
+
};
|
|
7654
|
+
export declare type AgentWorkspaceSkillCategorySkillsArgs = {
|
|
7655
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
7656
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7657
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
7529
7658
|
};
|
|
7530
7659
|
export declare type AgentWorkspaceSkillCategoryConnection = {
|
|
7531
7660
|
__typename?: 'AgentWorkspaceSkillCategoryConnection';
|
|
@@ -7533,6 +7662,7 @@ export declare type AgentWorkspaceSkillCategoryConnection = {
|
|
|
7533
7662
|
errors?: Maybe<Array<QueryError>>;
|
|
7534
7663
|
nodes?: Maybe<Array<Maybe<AgentWorkspaceSkillCategory>>>;
|
|
7535
7664
|
pageInfo: PageInfo;
|
|
7665
|
+
totalCategoryCount?: Maybe<Scalars['Int']['output']>;
|
|
7536
7666
|
};
|
|
7537
7667
|
export declare type AgentWorkspaceSkillCategoryCreateInput = {
|
|
7538
7668
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7854,6 +7984,83 @@ export declare type AiCoreApiQuestionWithType = {
|
|
|
7854
7984
|
question: Scalars['String']['output'];
|
|
7855
7985
|
type: AiCoreApiQuestionType;
|
|
7856
7986
|
};
|
|
7987
|
+
export declare type AiCoreApiRsaAssistedResult = {
|
|
7988
|
+
__typename?: 'AiCoreApiRsaAssistedResult';
|
|
7989
|
+
assistedByRovo: Scalars['Int']['output'];
|
|
7990
|
+
assistedByRovoPercentage: Scalars['Float']['output'];
|
|
7991
|
+
totalClosed: Scalars['Int']['output'];
|
|
7992
|
+
};
|
|
7993
|
+
export declare type AiCoreApiRsaEmployeeContributor = {
|
|
7994
|
+
__typename?: 'AiCoreApiRsaEmployeeContributor';
|
|
7995
|
+
accountId: Scalars['ID']['output'];
|
|
7996
|
+
delegationCount: Scalars['Int']['output'];
|
|
7997
|
+
};
|
|
7998
|
+
export declare type AiCoreApiRsaEmployeeResult = {
|
|
7999
|
+
__typename?: 'AiCoreApiRsaEmployeeResult';
|
|
8000
|
+
contributors: Array<AiCoreApiRsaEmployeeContributor>;
|
|
8001
|
+
};
|
|
8002
|
+
export declare type AiCoreApiRsaFetchReportResult = AiCoreApiRsaReportPayload | QueryError;
|
|
8003
|
+
export declare type AiCoreApiRsaFunnelResult = {
|
|
8004
|
+
__typename?: 'AiCoreApiRsaFunnelResult';
|
|
8005
|
+
autonomouslyResolved: Scalars['Int']['output'];
|
|
8006
|
+
resolvedByRovo: Scalars['Int']['output'];
|
|
8007
|
+
};
|
|
8008
|
+
export declare type AiCoreApiRsaInitiateReportResult = AiCoreApiRsaReportJob | QueryError;
|
|
8009
|
+
export declare enum AiCoreApiRsaJobStatus {
|
|
8010
|
+
Completed = "COMPLETED",
|
|
8011
|
+
Failed = "FAILED",
|
|
8012
|
+
InProgress = "IN_PROGRESS"
|
|
8013
|
+
}
|
|
8014
|
+
export declare enum AiCoreApiRsaQueryType {
|
|
8015
|
+
Assisted = "ASSISTED",
|
|
8016
|
+
Employee = "EMPLOYEE",
|
|
8017
|
+
Funnel = "FUNNEL",
|
|
8018
|
+
Resolved = "RESOLVED",
|
|
8019
|
+
RtDistribution = "RT_DISTRIBUTION"
|
|
8020
|
+
}
|
|
8021
|
+
export declare type AiCoreApiRsaReportInput = {
|
|
8022
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
8023
|
+
durationInDays?: InputMaybe<Scalars['Int']['input']>;
|
|
8024
|
+
projectAri: Scalars['ID']['input'];
|
|
8025
|
+
reportType: AiCoreApiRsaReportType;
|
|
8026
|
+
};
|
|
8027
|
+
export declare type AiCoreApiRsaReportJob = {
|
|
8028
|
+
__typename?: 'AiCoreApiRsaReportJob';
|
|
8029
|
+
jobId: Scalars['ID']['output'];
|
|
8030
|
+
};
|
|
8031
|
+
export declare type AiCoreApiRsaReportPayload = {
|
|
8032
|
+
__typename?: 'AiCoreApiRsaReportPayload';
|
|
8033
|
+
assisted?: Maybe<AiCoreApiRsaAssistedResult>;
|
|
8034
|
+
completedAt?: Maybe<Scalars['String']['output']>;
|
|
8035
|
+
employee?: Maybe<AiCoreApiRsaEmployeeResult>;
|
|
8036
|
+
errorCode?: Maybe<Scalars['String']['output']>;
|
|
8037
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
8038
|
+
funnel?: Maybe<AiCoreApiRsaFunnelResult>;
|
|
8039
|
+
resolved?: Maybe<AiCoreApiRsaResolvedResult>;
|
|
8040
|
+
rtDistribution?: Maybe<AiCoreApiRsaRtDistributionResult>;
|
|
8041
|
+
status: AiCoreApiRsaJobStatus;
|
|
8042
|
+
truncated?: Maybe<Scalars['Boolean']['output']>;
|
|
8043
|
+
};
|
|
8044
|
+
export declare enum AiCoreApiRsaReportType {
|
|
8045
|
+
Overview = "OVERVIEW"
|
|
8046
|
+
}
|
|
8047
|
+
export declare type AiCoreApiRsaRequestTypeEntry = {
|
|
8048
|
+
__typename?: 'AiCoreApiRsaRequestTypeEntry';
|
|
8049
|
+
assisted: Scalars['Int']['output'];
|
|
8050
|
+
fullyResolved: Scalars['Int']['output'];
|
|
8051
|
+
requestTypeName: Scalars['String']['output'];
|
|
8052
|
+
totalClosed: Scalars['Int']['output'];
|
|
8053
|
+
};
|
|
8054
|
+
export declare type AiCoreApiRsaResolvedResult = {
|
|
8055
|
+
__typename?: 'AiCoreApiRsaResolvedResult';
|
|
8056
|
+
fullyResolved: Scalars['Int']['output'];
|
|
8057
|
+
fullyResolvedPercentage: Scalars['Float']['output'];
|
|
8058
|
+
totalClosed: Scalars['Int']['output'];
|
|
8059
|
+
};
|
|
8060
|
+
export declare type AiCoreApiRsaRtDistributionResult = {
|
|
8061
|
+
__typename?: 'AiCoreApiRsaRtDistributionResult';
|
|
8062
|
+
byRequestType: Array<AiCoreApiRsaRequestTypeEntry>;
|
|
8063
|
+
};
|
|
7857
8064
|
export declare type AiCoreApiVsaQuestions = {
|
|
7858
8065
|
__typename?: 'AiCoreApiVSAQuestions';
|
|
7859
8066
|
projectAri: Scalars['ID']['output'];
|
|
@@ -12727,6 +12934,18 @@ export declare type AssetsUserAttributeValue = {
|
|
|
12727
12934
|
id?: Maybe<Scalars['String']['output']>;
|
|
12728
12935
|
name?: Maybe<Scalars['String']['output']>;
|
|
12729
12936
|
};
|
|
12937
|
+
export declare type AssetsVerticalArchiveInsightInput = {
|
|
12938
|
+
archived: Scalars['Boolean']['input'];
|
|
12939
|
+
cloudId: Scalars['ID']['input'];
|
|
12940
|
+
insightDefinitionId: Scalars['ID']['input'];
|
|
12941
|
+
insightSource: AssetsVerticalInsightSource;
|
|
12942
|
+
};
|
|
12943
|
+
export declare type AssetsVerticalArchiveInsightPayload = Payload & {
|
|
12944
|
+
__typename?: 'AssetsVerticalArchiveInsightPayload';
|
|
12945
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12946
|
+
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
12947
|
+
success: Scalars['Boolean']['output'];
|
|
12948
|
+
};
|
|
12730
12949
|
export declare type AssetsVerticalAssetTypeSelectionInput = {
|
|
12731
12950
|
objSchemaCdmAri: Scalars['String']['input'];
|
|
12732
12951
|
objTypeCdmAri: Scalars['String']['input'];
|
|
@@ -13026,6 +13245,7 @@ export declare type AssetsVerticalDepreciationRuleConnection = {
|
|
|
13026
13245
|
__typename?: 'AssetsVerticalDepreciationRuleConnection';
|
|
13027
13246
|
edges: Array<AssetsVerticalDepreciationRuleEdge>;
|
|
13028
13247
|
pageInfo: PageInfo;
|
|
13248
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
13029
13249
|
};
|
|
13030
13250
|
export declare type AssetsVerticalDepreciationRuleEdge = {
|
|
13031
13251
|
__typename?: 'AssetsVerticalDepreciationRuleEdge';
|
|
@@ -13127,6 +13347,10 @@ export declare type AssetsVerticalInsightGenerationError = {
|
|
|
13127
13347
|
message: Scalars['String']['output'];
|
|
13128
13348
|
retryable: Scalars['Boolean']['output'];
|
|
13129
13349
|
};
|
|
13350
|
+
export declare enum AssetsVerticalInsightSource {
|
|
13351
|
+
Custom = "CUSTOM",
|
|
13352
|
+
Ootb = "OOTB"
|
|
13353
|
+
}
|
|
13130
13354
|
export declare type AssetsVerticalInsights = {
|
|
13131
13355
|
__typename?: 'AssetsVerticalInsights';
|
|
13132
13356
|
error?: Maybe<AssetsVerticalInsightGenerationError>;
|
|
@@ -18530,6 +18754,7 @@ export declare type CommerceExpCcpEntitlement = {
|
|
|
18530
18754
|
contract?: Maybe<CommerceExpCommercialContract>;
|
|
18531
18755
|
currentPromotions?: Maybe<Array<Maybe<CommerceExpCcpPromotion>>>;
|
|
18532
18756
|
currentUserPermissions?: Maybe<Array<Maybe<CommerceExpUserPermission>>>;
|
|
18757
|
+
forecastBillEstimates?: Maybe<CommerceExpForecastBillEstimates>;
|
|
18533
18758
|
hasConnectedAnnualProductEntitlements?: Maybe<Scalars['Boolean']['output']>;
|
|
18534
18759
|
id: Scalars['ID']['output'];
|
|
18535
18760
|
inactiveSubscription?: Maybe<CommerceExpCcpSubscription>;
|
|
@@ -19905,12 +20130,17 @@ export declare type CommerceExpEntitlementAccountModificationForBac = {
|
|
|
19905
20130
|
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
19906
20131
|
validAccountModificationOrder?: Maybe<CommerceExpValidOrderResponse>;
|
|
19907
20132
|
};
|
|
20133
|
+
export declare enum CommerceExpEntitlementActionCtaType {
|
|
20134
|
+
Primary = "PRIMARY",
|
|
20135
|
+
Secondary = "SECONDARY"
|
|
20136
|
+
}
|
|
19908
20137
|
export declare enum CommerceExpEntitlementActionExperienceType {
|
|
19909
20138
|
ContactSupport = "CONTACT_SUPPORT",
|
|
19910
20139
|
NotAvailable = "NOT_AVAILABLE",
|
|
19911
20140
|
SelfServe = "SELF_SERVE"
|
|
19912
20141
|
}
|
|
19913
20142
|
export declare type CommerceExpEntitlementActionResult = {
|
|
20143
|
+
ctaType?: Maybe<CommerceExpEntitlementActionCtaType>;
|
|
19914
20144
|
experienceType?: Maybe<CommerceExpEntitlementActionExperienceType>;
|
|
19915
20145
|
};
|
|
19916
20146
|
export declare type CommerceExpEntitlementActions = {
|
|
@@ -19940,6 +20170,7 @@ export declare type CommerceExpEntitlementActionsV2 = {
|
|
|
19940
20170
|
reactivate?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
19941
20171
|
removeFromEnterprise?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
19942
20172
|
removeFromMultiInstance?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
20173
|
+
unbundleCollection?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
19943
20174
|
undoCancellation?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
19944
20175
|
viewBillingPartner?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
19945
20176
|
};
|
|
@@ -20116,6 +20347,17 @@ export declare type CommerceExpExpectedBillsLineItem = {
|
|
|
20116
20347
|
taxItems?: Maybe<Array<Maybe<CommerceExpTaxItemsResponse>>>;
|
|
20117
20348
|
total?: Maybe<Scalars['Float']['output']>;
|
|
20118
20349
|
};
|
|
20350
|
+
export declare type CommerceExpForecastBillEstimateResult = {
|
|
20351
|
+
__typename?: 'CommerceExpForecastBillEstimateResult';
|
|
20352
|
+
created?: Maybe<Scalars['Float']['output']>;
|
|
20353
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
20354
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
20355
|
+
};
|
|
20356
|
+
export declare type CommerceExpForecastBillEstimates = {
|
|
20357
|
+
__typename?: 'CommerceExpForecastBillEstimates';
|
|
20358
|
+
high?: Maybe<CommerceExpForecastBillEstimateResult>;
|
|
20359
|
+
low?: Maybe<CommerceExpForecastBillEstimateResult>;
|
|
20360
|
+
};
|
|
20119
20361
|
export declare type CommerceExpForecastResult = {
|
|
20120
20362
|
__typename?: 'CommerceExpForecastResult';
|
|
20121
20363
|
extraUsageHigh?: Maybe<Scalars['Float']['output']>;
|
|
@@ -20140,6 +20382,7 @@ export declare type CommerceExpForecastingOutput = {
|
|
|
20140
20382
|
};
|
|
20141
20383
|
export declare type CommerceExpGenericEntitlementActionResult = CommerceExpEntitlementActionResult & {
|
|
20142
20384
|
__typename?: 'CommerceExpGenericEntitlementActionResult';
|
|
20385
|
+
ctaType?: Maybe<CommerceExpEntitlementActionCtaType>;
|
|
20143
20386
|
experienceType?: Maybe<CommerceExpEntitlementActionExperienceType>;
|
|
20144
20387
|
};
|
|
20145
20388
|
export declare type CommerceExpGenericError = {
|
|
@@ -32884,6 +33127,28 @@ export declare type ConfluenceSpacePermissionPageInfo = {
|
|
|
32884
33127
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
32885
33128
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
32886
33129
|
};
|
|
33130
|
+
export declare type ConfluenceSpacePermissionTransitionTaskProgress = {
|
|
33131
|
+
__typename?: 'ConfluenceSpacePermissionTransitionTaskProgress';
|
|
33132
|
+
currentStep?: Maybe<ConfluenceSpacePermissionTransitionTaskStep>;
|
|
33133
|
+
progressPercentage?: Maybe<Scalars['Int']['output']>;
|
|
33134
|
+
taskId: Scalars['ID']['output'];
|
|
33135
|
+
taskType: ConfluenceSpacePermissionTransitionTaskType;
|
|
33136
|
+
};
|
|
33137
|
+
export declare enum ConfluenceSpacePermissionTransitionTaskStep {
|
|
33138
|
+
BulkTransitionFetchingPermissions = "BULK_TRANSITION_FETCHING_PERMISSIONS",
|
|
33139
|
+
BulkTransitionMutatingPermissions = "BULK_TRANSITION_MUTATING_PERMISSIONS",
|
|
33140
|
+
BulkTransitionResolvingSpaces = "BULK_TRANSITION_RESOLVING_SPACES",
|
|
33141
|
+
BulkTransitionUpdatingAuditData = "BULK_TRANSITION_UPDATING_AUDIT_DATA",
|
|
33142
|
+
GenerateAuditReportAggregatingCombinations = "GENERATE_AUDIT_REPORT_AGGREGATING_COMBINATIONS",
|
|
33143
|
+
GenerateAuditReportFormattingReport = "GENERATE_AUDIT_REPORT_FORMATTING_REPORT",
|
|
33144
|
+
GenerateAuditReportPersistingCombinations = "GENERATE_AUDIT_REPORT_PERSISTING_COMBINATIONS",
|
|
33145
|
+
GenerateAuditReportUploadingReport = "GENERATE_AUDIT_REPORT_UPLOADING_REPORT"
|
|
33146
|
+
}
|
|
33147
|
+
export declare enum ConfluenceSpacePermissionTransitionTaskType {
|
|
33148
|
+
BulkAssign = "BULK_ASSIGN",
|
|
33149
|
+
BulkRemove = "BULK_REMOVE",
|
|
33150
|
+
GenerateAuditReport = "GENERATE_AUDIT_REPORT"
|
|
33151
|
+
}
|
|
32887
33152
|
export declare type ConfluenceSpaceProperty = {
|
|
32888
33153
|
__typename?: 'ConfluenceSpaceProperty';
|
|
32889
33154
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -35245,6 +35510,10 @@ export declare enum ConvoAiAgentSessionState {
|
|
|
35245
35510
|
Working = "WORKING"
|
|
35246
35511
|
}
|
|
35247
35512
|
export declare type ConvoAiAgentSessionUpdate = ConvoAiAnswerPartMessage | ConvoAiConversationMessage | ConvoAiEmptyConversation | ConvoAiErrorMessage | ConvoAiTraceMessage;
|
|
35513
|
+
export declare type ConvoAiAgentSessionUpdatePayload = {
|
|
35514
|
+
__typename?: 'ConvoAiAgentSessionUpdatePayload';
|
|
35515
|
+
association?: Maybe<AgentSessionAssociation>;
|
|
35516
|
+
};
|
|
35248
35517
|
export declare type ConvoAiAgentSessionUpdatedByProjects = {
|
|
35249
35518
|
__typename?: 'ConvoAiAgentSessionUpdatedByProjects';
|
|
35250
35519
|
agent?: Maybe<ConvoAiUser>;
|
|
@@ -36244,11 +36513,6 @@ export declare type CplsSearchCustomContributionTargetsInput = {
|
|
|
36244
36513
|
query?: InputMaybe<Scalars['String']['input']>;
|
|
36245
36514
|
};
|
|
36246
36515
|
export declare type CplsSettings = CplsPlanSettings | QueryError;
|
|
36247
|
-
export declare type CplsSuggestionsExistencePayload = {
|
|
36248
|
-
__typename?: 'CplsSuggestionsExistencePayload';
|
|
36249
|
-
hasSuggestions: Scalars['Boolean']['output'];
|
|
36250
|
-
scopeId: Scalars['ID']['output'];
|
|
36251
|
-
};
|
|
36252
36516
|
export declare type CplsTimeCell = {
|
|
36253
36517
|
__typename?: 'CplsTimeCell';
|
|
36254
36518
|
endDate: Scalars['Date']['output'];
|
|
@@ -39350,6 +39614,16 @@ export declare type CustomerServiceUpdateCustomDetailValuePayload = Payload & {
|
|
|
39350
39614
|
errors?: Maybe<Array<MutationError>>;
|
|
39351
39615
|
success: Scalars['Boolean']['output'];
|
|
39352
39616
|
};
|
|
39617
|
+
export declare type CustomerServiceUpdateCustomerNameInput = {
|
|
39618
|
+
accountId: Scalars['ID']['input'];
|
|
39619
|
+
displayName: Scalars['String']['input'];
|
|
39620
|
+
};
|
|
39621
|
+
export declare type CustomerServiceUpdateCustomerNamePayload = Payload & {
|
|
39622
|
+
__typename?: 'CustomerServiceUpdateCustomerNamePayload';
|
|
39623
|
+
errors?: Maybe<Array<MutationError>>;
|
|
39624
|
+
success: Scalars['Boolean']['output'];
|
|
39625
|
+
updatedCustomer?: Maybe<CustomerServiceUpdatedCustomerAccount>;
|
|
39626
|
+
};
|
|
39353
39627
|
export declare type CustomerServiceUpdateLiveChatAgentActivitiesInput = {
|
|
39354
39628
|
id: Scalars['ID']['input'];
|
|
39355
39629
|
liveChatActivity: Scalars['String']['input'];
|
|
@@ -39365,6 +39639,12 @@ export declare type CustomerServiceUpdateRequestParticipantInput = {
|
|
|
39365
39639
|
addedParticipants: Array<Scalars['String']['input']>;
|
|
39366
39640
|
deletedParticipants: Array<Scalars['ID']['input']>;
|
|
39367
39641
|
};
|
|
39642
|
+
export declare type CustomerServiceUpdatedCustomerAccount = {
|
|
39643
|
+
__typename?: 'CustomerServiceUpdatedCustomerAccount';
|
|
39644
|
+
displayName: Scalars['String']['output'];
|
|
39645
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
39646
|
+
id: Scalars['ID']['output'];
|
|
39647
|
+
};
|
|
39368
39648
|
export declare type CustomerServiceUserDetailValue = {
|
|
39369
39649
|
__typename?: 'CustomerServiceUserDetailValue';
|
|
39370
39650
|
accountId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -40440,6 +40720,7 @@ export declare type DevAiAutodevNextWorkstreamSettings = {
|
|
|
40440
40720
|
eligibilityCriteria?: Maybe<Scalars['String']['output']>;
|
|
40441
40721
|
notifications?: Maybe<DevAiAutodevNextNotificationSettings>;
|
|
40442
40722
|
scanSchedule?: Maybe<DevAiAutodevNextScanSchedule>;
|
|
40723
|
+
suggestedJql?: Maybe<Scalars['String']['output']>;
|
|
40443
40724
|
taskOverdueAfterDays?: Maybe<Scalars['Int']['output']>;
|
|
40444
40725
|
wipLimit?: Maybe<Scalars['Int']['output']>;
|
|
40445
40726
|
};
|
|
@@ -40448,6 +40729,7 @@ export declare type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
|
40448
40729
|
eligibilityCriteria?: InputMaybe<Scalars['String']['input']>;
|
|
40449
40730
|
notifications?: InputMaybe<DevAiAutodevNextNotificationSettingsInput>;
|
|
40450
40731
|
scanSchedule?: InputMaybe<DevAiAutodevNextScanScheduleInput>;
|
|
40732
|
+
suggestedJql?: InputMaybe<Scalars['String']['input']>;
|
|
40451
40733
|
taskOverdueAfterDays?: InputMaybe<Scalars['Int']['input']>;
|
|
40452
40734
|
wipLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
40453
40735
|
};
|
|
@@ -43823,6 +44105,7 @@ export declare type EcosystemQuery = {
|
|
|
43823
44105
|
fortifiedMetrics?: Maybe<FortifiedMetricsQuery>;
|
|
43824
44106
|
globalInstallationConfig?: Maybe<Array<Maybe<EcosystemGlobalInstallationOverride>>>;
|
|
43825
44107
|
marketplaceData?: Maybe<EcosystemMarketplaceData>;
|
|
44108
|
+
rollingReleaseEligibility?: Maybe<EcosystemRollingReleaseEligibility>;
|
|
43826
44109
|
rollingReleases?: Maybe<EcosystemRollingReleaseConnection>;
|
|
43827
44110
|
siteEntitlements?: Maybe<EcosystemSiteEntitlementsResult>;
|
|
43828
44111
|
unitsByInstallationId?: Maybe<Array<Maybe<EcosystemAddonInstallationUnit>>>;
|
|
@@ -43907,6 +44190,11 @@ export declare type EcosystemQueryMarketplaceDataArgs = {
|
|
|
43907
44190
|
appKey?: InputMaybe<Scalars['ID']['input']>;
|
|
43908
44191
|
cloudAppId?: InputMaybe<Scalars['ID']['input']>;
|
|
43909
44192
|
};
|
|
44193
|
+
export declare type EcosystemQueryRollingReleaseEligibilityArgs = {
|
|
44194
|
+
appId: Scalars['ID']['input'];
|
|
44195
|
+
environmentId: Scalars['ID']['input'];
|
|
44196
|
+
targetVersionId?: InputMaybe<Scalars['ID']['input']>;
|
|
44197
|
+
};
|
|
43910
44198
|
export declare type EcosystemQueryRollingReleasesArgs = {
|
|
43911
44199
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
43912
44200
|
appId: Scalars['ID']['input'];
|
|
@@ -43975,6 +44263,12 @@ export declare type EcosystemRollingReleaseEdge = {
|
|
|
43975
44263
|
cursor: Scalars['String']['output'];
|
|
43976
44264
|
node?: Maybe<EcosystemRollingRelease>;
|
|
43977
44265
|
};
|
|
44266
|
+
export declare type EcosystemRollingReleaseEligibility = {
|
|
44267
|
+
__typename?: 'EcosystemRollingReleaseEligibility';
|
|
44268
|
+
targetVersionId: Scalars['ID']['output'];
|
|
44269
|
+
totalEligibleInstallationCount: Scalars['Int']['output'];
|
|
44270
|
+
versionEligibilityBreakdown: Array<EcosystemVersionEligibilityBreakdown>;
|
|
44271
|
+
};
|
|
43978
44272
|
export declare type EcosystemRollingReleasePageInfo = {
|
|
43979
44273
|
__typename?: 'EcosystemRollingReleasePageInfo';
|
|
43980
44274
|
endCursor?: Maybe<Scalars['String']['output']>;
|
|
@@ -44035,6 +44329,14 @@ export declare type EcosystemUpdateInstallationRemoteRegionResponse = Payload &
|
|
|
44035
44329
|
errors?: Maybe<Array<MutationError>>;
|
|
44036
44330
|
success: Scalars['Boolean']['output'];
|
|
44037
44331
|
};
|
|
44332
|
+
export declare type EcosystemVersionEligibilityBreakdown = {
|
|
44333
|
+
__typename?: 'EcosystemVersionEligibilityBreakdown';
|
|
44334
|
+
failingEligibilityRules: Array<Scalars['String']['output']>;
|
|
44335
|
+
installationCount: Scalars['Int']['output'];
|
|
44336
|
+
isEligible: Scalars['Boolean']['output'];
|
|
44337
|
+
semVer: Scalars['String']['output'];
|
|
44338
|
+
sourceVersionId: Scalars['ID']['output'];
|
|
44339
|
+
};
|
|
44038
44340
|
export declare type EditSprintInput = {
|
|
44039
44341
|
autoManaged?: InputMaybe<AutoManagedSprintSetting>;
|
|
44040
44342
|
boardId: Scalars['ID']['input'];
|
|
@@ -45517,8 +45819,11 @@ export declare type ExternalMessageLink = {
|
|
|
45517
45819
|
export declare type ExternalOrganisation = Node & {
|
|
45518
45820
|
__typename?: 'ExternalOrganisation';
|
|
45519
45821
|
associatedWith?: Maybe<ExternalAssociationConnection>;
|
|
45822
|
+
container?: Maybe<ExternalEntity>;
|
|
45823
|
+
containerId?: Maybe<Scalars['ID']['output']>;
|
|
45520
45824
|
createdAt?: Maybe<Scalars['String']['output']>;
|
|
45521
45825
|
createdBy?: Maybe<ExternalUser>;
|
|
45826
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
45522
45827
|
displayName?: Maybe<Scalars['String']['output']>;
|
|
45523
45828
|
entityExtendedValues?: Maybe<Array<Maybe<ExternalEntityExtendedValue>>>;
|
|
45524
45829
|
externalId?: Maybe<Scalars['String']['output']>;
|
|
@@ -48836,6 +49141,14 @@ export declare type GraphIntegrationCreateDataConnectorConnectionInput = {
|
|
|
48836
49141
|
contextAri: Scalars['ID']['input'];
|
|
48837
49142
|
productAri: Scalars['ID']['input'];
|
|
48838
49143
|
};
|
|
49144
|
+
export declare type GraphIntegrationCreateSkillInput = {
|
|
49145
|
+
contextAri: Scalars['ID']['input'];
|
|
49146
|
+
description: Scalars['String']['input'];
|
|
49147
|
+
displayName: Scalars['String']['input'];
|
|
49148
|
+
instructions: Scalars['String']['input'];
|
|
49149
|
+
name: Scalars['String']['input'];
|
|
49150
|
+
tools?: InputMaybe<Array<GraphIntegrationSkillToolInput>>;
|
|
49151
|
+
};
|
|
48839
49152
|
export declare type GraphIntegrationDataConnector = {
|
|
48840
49153
|
__typename?: 'GraphIntegrationDataConnector';
|
|
48841
49154
|
connectorKey: Scalars['String']['output'];
|
|
@@ -48859,6 +49172,10 @@ export declare type GraphIntegrationDeleteDataConnectorConnectionInput = {
|
|
|
48859
49172
|
connectorProviderKey: Scalars['String']['input'];
|
|
48860
49173
|
contextAri: Scalars['ID']['input'];
|
|
48861
49174
|
};
|
|
49175
|
+
export declare type GraphIntegrationDeleteSkillInput = {
|
|
49176
|
+
contextAri: Scalars['ID']['input'];
|
|
49177
|
+
skillAri: Scalars['ID']['input'];
|
|
49178
|
+
};
|
|
48862
49179
|
export declare type GraphIntegrationDirectoryFilterDimension = {
|
|
48863
49180
|
__typename?: 'GraphIntegrationDirectoryFilterDimension';
|
|
48864
49181
|
displayName: Scalars['String']['output'];
|
|
@@ -49248,6 +49565,11 @@ export declare type GraphIntegrationSkillMetadata = {
|
|
|
49248
49565
|
tools: Array<GraphIntegrationSkillTool>;
|
|
49249
49566
|
version: Scalars['String']['output'];
|
|
49250
49567
|
};
|
|
49568
|
+
export declare type GraphIntegrationSkillMutationPayload = Payload & {
|
|
49569
|
+
__typename?: 'GraphIntegrationSkillMutationPayload';
|
|
49570
|
+
errors?: Maybe<Array<MutationError>>;
|
|
49571
|
+
success: Scalars['Boolean']['output'];
|
|
49572
|
+
};
|
|
49251
49573
|
export declare type GraphIntegrationSkillProductItem = GraphIntegrationSkillDimensionItem & {
|
|
49252
49574
|
__typename?: 'GraphIntegrationSkillProductItem';
|
|
49253
49575
|
displayName: Scalars['String']['output'];
|
|
@@ -49263,6 +49585,11 @@ export declare type GraphIntegrationSkillTool = {
|
|
|
49263
49585
|
source: GraphIntegrationSkillToolSource;
|
|
49264
49586
|
type: GraphIntegrationSkillToolType;
|
|
49265
49587
|
};
|
|
49588
|
+
export declare type GraphIntegrationSkillToolInput = {
|
|
49589
|
+
id: Scalars['String']['input'];
|
|
49590
|
+
source: GraphIntegrationSkillToolSource;
|
|
49591
|
+
type: GraphIntegrationSkillToolType;
|
|
49592
|
+
};
|
|
49266
49593
|
export declare enum GraphIntegrationSkillToolSource {
|
|
49267
49594
|
IntegrationsService = "INTEGRATIONS_SERVICE"
|
|
49268
49595
|
}
|
|
@@ -49364,6 +49691,15 @@ export declare type GraphIntegrationUpdateDataConnectorConnectionInput = {
|
|
|
49364
49691
|
connectorProviderPayload: Scalars['JSON']['input'];
|
|
49365
49692
|
contextAri: Scalars['ID']['input'];
|
|
49366
49693
|
};
|
|
49694
|
+
export declare type GraphIntegrationUpdateSkillInput = {
|
|
49695
|
+
contextAri: Scalars['ID']['input'];
|
|
49696
|
+
description?: InputMaybe<Scalars['String']['input']>;
|
|
49697
|
+
displayName?: InputMaybe<Scalars['String']['input']>;
|
|
49698
|
+
instructions?: InputMaybe<Scalars['String']['input']>;
|
|
49699
|
+
skillAri: Scalars['ID']['input'];
|
|
49700
|
+
tags?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
49701
|
+
tools?: InputMaybe<Array<GraphIntegrationSkillToolInput>>;
|
|
49702
|
+
};
|
|
49367
49703
|
export declare type GraphIssueAssociatedDesignPayload = Payload & {
|
|
49368
49704
|
__typename?: 'GraphIssueAssociatedDesignPayload';
|
|
49369
49705
|
errors?: Maybe<Array<MutationError>>;
|
|
@@ -106232,6 +106568,7 @@ export declare type GravityViewConfig = {
|
|
|
106232
106568
|
hideEmptyColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
106233
106569
|
hideEmptyGroups?: Maybe<Scalars['Boolean']['output']>;
|
|
106234
106570
|
layoutType?: Maybe<GravityViewLayoutType>;
|
|
106571
|
+
showCardCovers?: Maybe<Scalars['Boolean']['output']>;
|
|
106235
106572
|
sort?: Maybe<Array<GravityViewSort>>;
|
|
106236
106573
|
sortMode?: Maybe<GravityViewSortMode>;
|
|
106237
106574
|
tableColumnSizes?: Maybe<Array<GravityViewTableColumnSize>>;
|
|
@@ -106251,6 +106588,7 @@ export declare type GravityViewConfigInput = {
|
|
|
106251
106588
|
hideEmptyColumns?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106252
106589
|
hideEmptyGroups?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106253
106590
|
layoutType?: InputMaybe<GravityViewLayoutType>;
|
|
106591
|
+
showCardCovers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106254
106592
|
sort?: InputMaybe<Array<GravityViewSortInput>>;
|
|
106255
106593
|
sortMode?: InputMaybe<GravityViewSortMode>;
|
|
106256
106594
|
tableColumnSizes?: InputMaybe<Array<GravityViewTableColumnSizeInput>>;
|
|
@@ -113183,14 +113521,20 @@ export declare type JiraBoardView = JiraView & Node & {
|
|
|
113183
113521
|
canArchiveIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
113184
113522
|
canAssignIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
113185
113523
|
canConfigureStatusColumnMapping?: Maybe<Scalars['Boolean']['output']>;
|
|
113524
|
+
canCreateStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
113525
|
+
canDeleteStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
113186
113526
|
canEditIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
113527
|
+
canInlineCreateStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
113528
|
+
canInlineDeleteStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
113187
113529
|
canInlineEditStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
113188
113530
|
canInlineEditTransitionAgents?: Maybe<Scalars['Boolean']['output']>;
|
|
113531
|
+
canInlineRenameStatusColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
113189
113532
|
canManageSprints?: Maybe<Scalars['Boolean']['output']>;
|
|
113190
113533
|
canManageStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
113191
113534
|
canMoveIssueBetweenSwimlanes?: Maybe<Scalars['Boolean']['output']>;
|
|
113192
113535
|
canMoveIssuesBetweenSwimlanes?: Maybe<Scalars['Boolean']['output']>;
|
|
113193
113536
|
canPublishViewConfig?: Maybe<Scalars['Boolean']['output']>;
|
|
113537
|
+
canRenameStatuses?: Maybe<Scalars['Boolean']['output']>;
|
|
113194
113538
|
canScheduleIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
113195
113539
|
canTransitionIssues?: Maybe<Scalars['Boolean']['output']>;
|
|
113196
113540
|
cardOptions?: Maybe<JiraBoardViewCardOptionConnection>;
|
|
@@ -113513,9 +113857,11 @@ export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & Node & {
|
|
|
113513
113857
|
id: Scalars['ID']['output'];
|
|
113514
113858
|
mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
113515
113859
|
mappedWorkflows?: Maybe<JiraBoardViewWorkflowConnection>;
|
|
113860
|
+
maximumIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
113516
113861
|
name?: Maybe<Scalars['String']['output']>;
|
|
113517
113862
|
simpleTransitions?: Maybe<JiraTransitionConnection>;
|
|
113518
113863
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
113864
|
+
totalIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
113519
113865
|
totalTransitionCount?: Maybe<Scalars['Int']['output']>;
|
|
113520
113866
|
transitionAgents?: Maybe<Array<JiraTransitionAgent>>;
|
|
113521
113867
|
workflows?: Maybe<JiraTransitionConnection>;
|
|
@@ -113532,12 +113878,16 @@ export declare type JiraBoardViewStatusColumnSimpleTransitionsArgs = {
|
|
|
113532
113878
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
113533
113879
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
113534
113880
|
};
|
|
113881
|
+
export declare type JiraBoardViewStatusColumnTotalIssueCountArgs = {
|
|
113882
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
113883
|
+
};
|
|
113535
113884
|
export declare type JiraBoardViewStatusColumnWorkflowsArgs = {
|
|
113536
113885
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
113537
113886
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
113538
113887
|
};
|
|
113539
113888
|
export declare type JiraBoardViewStatusColumnMapping = {
|
|
113540
113889
|
id?: InputMaybe<Scalars['ID']['input']>;
|
|
113890
|
+
maximumIssueCount?: InputMaybe<Scalars['Int']['input']>;
|
|
113541
113891
|
name: Scalars['String']['input'];
|
|
113542
113892
|
statusIds: Array<Scalars['ID']['input']>;
|
|
113543
113893
|
};
|
|
@@ -117674,6 +118024,7 @@ export declare type JiraFieldScheme = Node & {
|
|
|
117674
118024
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
117675
118025
|
name?: Maybe<Scalars['String']['output']>;
|
|
117676
118026
|
projectsCount?: Maybe<Scalars['Int']['output']>;
|
|
118027
|
+
requiredOnIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
117677
118028
|
schemeId?: Maybe<Scalars['ID']['output']>;
|
|
117678
118029
|
};
|
|
117679
118030
|
export declare type JiraFieldSchemeAssociatedIssueTypesArgs = {
|
|
@@ -117691,6 +118042,11 @@ export declare type JiraFieldSchemeAvailableProjectsArgs = {
|
|
|
117691
118042
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
117692
118043
|
input?: InputMaybe<JiraAvailableProjectSearchInput>;
|
|
117693
118044
|
};
|
|
118045
|
+
export declare type JiraFieldSchemeRequiredOnIssueTypesArgs = {
|
|
118046
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
118047
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
118048
|
+
input?: InputMaybe<JiraFieldSchemeRequiredOnIssueTypesInput>;
|
|
118049
|
+
};
|
|
117694
118050
|
export declare type JiraFieldSchemeAssociatedField = {
|
|
117695
118051
|
__typename?: 'JiraFieldSchemeAssociatedField';
|
|
117696
118052
|
field?: Maybe<JiraField>;
|
|
@@ -117737,6 +118093,9 @@ export declare type JiraFieldSchemePayload = Payload & {
|
|
|
117737
118093
|
fieldScheme?: Maybe<JiraFieldScheme>;
|
|
117738
118094
|
success: Scalars['Boolean']['output'];
|
|
117739
118095
|
};
|
|
118096
|
+
export declare type JiraFieldSchemeRequiredOnIssueTypesInput = {
|
|
118097
|
+
nameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
118098
|
+
};
|
|
117740
118099
|
export declare type JiraFieldSchemeSourceInput = {
|
|
117741
118100
|
sourceFieldConfigurationSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
117742
118101
|
sourceFieldSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -121676,6 +122035,7 @@ export declare enum JiraIssueSearchOperationScope {
|
|
|
121676
122035
|
NinProject = "NIN_PROJECT",
|
|
121677
122036
|
NinProjectSchemaRefactor = "NIN_PROJECT_SCHEMA_REFACTOR",
|
|
121678
122037
|
NinProjectShadowRequest = "NIN_PROJECT_SHADOW_REQUEST",
|
|
122038
|
+
TimelineBoard = "TIMELINE_BOARD",
|
|
121679
122039
|
TimelineProject = "TIMELINE_PROJECT"
|
|
121680
122040
|
}
|
|
121681
122041
|
export declare type JiraIssueSearchOptions = {
|
|
@@ -125397,6 +125757,7 @@ export declare enum JiraNavigationItemTypeKey {
|
|
|
125397
125757
|
Inbox = "INBOX",
|
|
125398
125758
|
Incidents = "INCIDENTS",
|
|
125399
125759
|
Issues = "ISSUES",
|
|
125760
|
+
Knowledge = "KNOWLEDGE",
|
|
125400
125761
|
List = "LIST",
|
|
125401
125762
|
OnCall = "ON_CALL",
|
|
125402
125763
|
Pages = "PAGES",
|
|
@@ -127132,6 +127493,7 @@ export declare type JiraProject = Node & {
|
|
|
127132
127493
|
reportCategories?: Maybe<JiraReportCategoryConnection>;
|
|
127133
127494
|
repositories?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoConnection>;
|
|
127134
127495
|
requestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
|
|
127496
|
+
requiredOnIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
127135
127497
|
roles?: Maybe<JiraRoleConnection>;
|
|
127136
127498
|
schemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
127137
127499
|
selectedDeploymentAppsProperty?: Maybe<Array<JiraDeploymentApp>>;
|
|
@@ -127308,6 +127670,11 @@ export declare type JiraProjectRequestTypesArgs = {
|
|
|
127308
127670
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
127309
127671
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127310
127672
|
};
|
|
127673
|
+
export declare type JiraProjectRequiredOnIssueTypesArgs = {
|
|
127674
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
127675
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127676
|
+
input?: InputMaybe<JiraProjectRequiredOnIssueTypesInput>;
|
|
127677
|
+
};
|
|
127311
127678
|
export declare type JiraProjectRolesArgs = {
|
|
127312
127679
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
127313
127680
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -127956,6 +128323,9 @@ export declare enum JiraProjectRecommendationType {
|
|
|
127956
128323
|
InviterActivity = "INVITER_ACTIVITY",
|
|
127957
128324
|
TenantActivity = "TENANT_ACTIVITY"
|
|
127958
128325
|
}
|
|
128326
|
+
export declare type JiraProjectRequiredOnIssueTypesInput = {
|
|
128327
|
+
nameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
128328
|
+
};
|
|
127959
128329
|
export declare type JiraProjectRoleActorLogTableEntry = {
|
|
127960
128330
|
__typename?: 'JiraProjectRoleActorLogTableEntry';
|
|
127961
128331
|
executedBy?: Maybe<User>;
|
|
@@ -128433,6 +128803,7 @@ export declare type JiraQuery = {
|
|
|
128433
128803
|
jiraWorkItemJourneys?: Maybe<JiraJourneyConnection>;
|
|
128434
128804
|
jira_recommendedAgents?: Maybe<JiraActorConnection>;
|
|
128435
128805
|
jira_semanticAgentRecommender?: Maybe<JiraSemanticAgentRecommenderConnection>;
|
|
128806
|
+
jira_semanticAgentRecommenderV2?: Maybe<JiraActorConnection>;
|
|
128436
128807
|
jpdDeliveryIssueLinkTypeId?: Maybe<Scalars['ID']['output']>;
|
|
128437
128808
|
jpdGlobalViewFields?: Maybe<JiraPolarisGlobalViewFields>;
|
|
128438
128809
|
jqlBuilder?: Maybe<JiraJqlBuilder>;
|
|
@@ -129301,6 +129672,12 @@ export declare type JiraQueryJira_SemanticAgentRecommenderArgs = {
|
|
|
129301
129672
|
text: Scalars['String']['input'];
|
|
129302
129673
|
threshold?: InputMaybe<Scalars['Float']['input']>;
|
|
129303
129674
|
};
|
|
129675
|
+
export declare type JiraQueryJira_SemanticAgentRecommenderV2Args = {
|
|
129676
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
129677
|
+
cloudId: Scalars['ID']['input'];
|
|
129678
|
+
contextAri: Scalars['ID']['input'];
|
|
129679
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
129680
|
+
};
|
|
129304
129681
|
export declare type JiraQueryJpdDeliveryIssueLinkTypeIdArgs = {
|
|
129305
129682
|
cloudId: Scalars['ID']['input'];
|
|
129306
129683
|
};
|
|
@@ -129989,7 +130366,6 @@ export declare type JiraRedactionSortInput = {
|
|
|
129989
130366
|
export declare type JiraRelatedLinkSuggestionConnection = {
|
|
129990
130367
|
__typename?: 'JiraRelatedLinkSuggestionConnection';
|
|
129991
130368
|
edges?: Maybe<Array<Maybe<JiraRelatedLinkSuggestionEdge>>>;
|
|
129992
|
-
errors?: Maybe<Array<QueryError>>;
|
|
129993
130369
|
pageInfo: PageInfo;
|
|
129994
130370
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
129995
130371
|
};
|
|
@@ -130505,7 +130881,7 @@ export declare type JiraRemoveIssueFromSprintInput = {
|
|
|
130505
130881
|
boardId: Scalars['ID']['input'];
|
|
130506
130882
|
issueId: Scalars['ID']['input'];
|
|
130507
130883
|
};
|
|
130508
|
-
export declare type JiraRemoveIssueFromSprintPayload = {
|
|
130884
|
+
export declare type JiraRemoveIssueFromSprintPayload = Payload & {
|
|
130509
130885
|
__typename?: 'JiraRemoveIssueFromSprintPayload';
|
|
130510
130886
|
errors?: Maybe<Array<MutationError>>;
|
|
130511
130887
|
jiraView?: Maybe<JiraViewResult>;
|
|
@@ -132532,6 +132908,46 @@ export declare type JiraServiceManagementSentimentFieldPayload = Payload & {
|
|
|
132532
132908
|
field?: Maybe<JiraServiceManagementSentimentField>;
|
|
132533
132909
|
success: Scalars['Boolean']['output'];
|
|
132534
132910
|
};
|
|
132911
|
+
export declare type JiraServiceManagementSla = {
|
|
132912
|
+
__typename?: 'JiraServiceManagementSla';
|
|
132913
|
+
completedCycles?: Maybe<JiraServiceManagementSlaCompletedCycleConnection>;
|
|
132914
|
+
displayFormat?: Maybe<Scalars['String']['output']>;
|
|
132915
|
+
error?: Maybe<JiraServiceManagementSlaError>;
|
|
132916
|
+
goalView?: Maybe<JiraServiceManagementSlaGoalView>;
|
|
132917
|
+
ongoingCycle?: Maybe<JiraServiceManagementSlaOngoingCycle>;
|
|
132918
|
+
timeMetricId?: Maybe<Scalars['String']['output']>;
|
|
132919
|
+
timeMetricName?: Maybe<Scalars['String']['output']>;
|
|
132920
|
+
timelineEvents?: Maybe<JiraServiceManagementSlaTimelineEventConnection>;
|
|
132921
|
+
};
|
|
132922
|
+
export declare type JiraServiceManagementSlaCompletedCyclesArgs = {
|
|
132923
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
132924
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132925
|
+
};
|
|
132926
|
+
export declare type JiraServiceManagementSlaTimelineEventsArgs = {
|
|
132927
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
132928
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132929
|
+
};
|
|
132930
|
+
export declare type JiraServiceManagementSlaCalendar = {
|
|
132931
|
+
__typename?: 'JiraServiceManagementSlaCalendar';
|
|
132932
|
+
calendarId?: Maybe<Scalars['String']['output']>;
|
|
132933
|
+
holidays?: Maybe<JiraServiceManagementSlaHolidayConnection>;
|
|
132934
|
+
kind?: Maybe<JiraServiceManagementSlaCalendarKind>;
|
|
132935
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
132936
|
+
timezone?: Maybe<Scalars['String']['output']>;
|
|
132937
|
+
workingTimes?: Maybe<JiraServiceManagementSlaWorkingTimeConnection>;
|
|
132938
|
+
};
|
|
132939
|
+
export declare type JiraServiceManagementSlaCalendarHolidaysArgs = {
|
|
132940
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
132941
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132942
|
+
};
|
|
132943
|
+
export declare type JiraServiceManagementSlaCalendarWorkingTimesArgs = {
|
|
132944
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
132945
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
132946
|
+
};
|
|
132947
|
+
export declare enum JiraServiceManagementSlaCalendarKind {
|
|
132948
|
+
Custom = "CUSTOM",
|
|
132949
|
+
Standard = "STANDARD"
|
|
132950
|
+
}
|
|
132535
132951
|
export declare type JiraServiceManagementSlaCompleteGoal = {
|
|
132536
132952
|
__typename?: 'JiraServiceManagementSlaCompleteGoal';
|
|
132537
132953
|
breachTime?: Maybe<Scalars['String']['output']>;
|
|
@@ -132541,6 +132957,76 @@ export declare type JiraServiceManagementSlaCompleteGoal = {
|
|
|
132541
132957
|
startTime?: Maybe<Scalars['String']['output']>;
|
|
132542
132958
|
stopTime?: Maybe<Scalars['String']['output']>;
|
|
132543
132959
|
};
|
|
132960
|
+
export declare type JiraServiceManagementSlaCompletedCycle = {
|
|
132961
|
+
__typename?: 'JiraServiceManagementSlaCompletedCycle';
|
|
132962
|
+
breachTime?: Maybe<Scalars['DateTime']['output']>;
|
|
132963
|
+
breached?: Maybe<Scalars['Boolean']['output']>;
|
|
132964
|
+
calendarName?: Maybe<Scalars['String']['output']>;
|
|
132965
|
+
elapsed?: Maybe<Scalars['String']['output']>;
|
|
132966
|
+
goalDuration?: Maybe<Scalars['String']['output']>;
|
|
132967
|
+
remaining?: Maybe<Scalars['String']['output']>;
|
|
132968
|
+
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
132969
|
+
stopTime?: Maybe<Scalars['DateTime']['output']>;
|
|
132970
|
+
};
|
|
132971
|
+
export declare type JiraServiceManagementSlaCompletedCycleConnection = {
|
|
132972
|
+
__typename?: 'JiraServiceManagementSlaCompletedCycleConnection';
|
|
132973
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementSlaCompletedCycleEdge>>>;
|
|
132974
|
+
pageInfo: PageInfo;
|
|
132975
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
132976
|
+
};
|
|
132977
|
+
export declare type JiraServiceManagementSlaCompletedCycleEdge = {
|
|
132978
|
+
__typename?: 'JiraServiceManagementSlaCompletedCycleEdge';
|
|
132979
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
132980
|
+
node?: Maybe<JiraServiceManagementSlaCompletedCycle>;
|
|
132981
|
+
};
|
|
132982
|
+
export declare enum JiraServiceManagementSlaDayOfWeek {
|
|
132983
|
+
Friday = "FRIDAY",
|
|
132984
|
+
Monday = "MONDAY",
|
|
132985
|
+
Saturday = "SATURDAY",
|
|
132986
|
+
Sunday = "SUNDAY",
|
|
132987
|
+
Thursday = "THURSDAY",
|
|
132988
|
+
Tuesday = "TUESDAY",
|
|
132989
|
+
Wednesday = "WEDNESDAY"
|
|
132990
|
+
}
|
|
132991
|
+
export declare enum JiraServiceManagementSlaEmergencyLevel {
|
|
132992
|
+
Breached = "BREACHED",
|
|
132993
|
+
Important = "IMPORTANT",
|
|
132994
|
+
Urgent = "URGENT"
|
|
132995
|
+
}
|
|
132996
|
+
export declare type JiraServiceManagementSlaError = {
|
|
132997
|
+
__typename?: 'JiraServiceManagementSlaError';
|
|
132998
|
+
errorCode?: Maybe<JiraServiceManagementSlaErrorCode>;
|
|
132999
|
+
goalId?: Maybe<Scalars['String']['output']>;
|
|
133000
|
+
timeMetricId?: Maybe<Scalars['String']['output']>;
|
|
133001
|
+
};
|
|
133002
|
+
export declare enum JiraServiceManagementSlaErrorCode {
|
|
133003
|
+
GoalNotFound = "GOAL_NOT_FOUND",
|
|
133004
|
+
TimeMetricsNotFound = "TIME_METRICS_NOT_FOUND",
|
|
133005
|
+
Unrecognized = "UNRECOGNIZED"
|
|
133006
|
+
}
|
|
133007
|
+
export declare type JiraServiceManagementSlaField = JiraIssueField & JiraIssueFieldConfiguration & JiraListRowField & Node & {
|
|
133008
|
+
__typename?: 'JiraServiceManagementSlaField';
|
|
133009
|
+
aliasFieldId?: Maybe<Scalars['ID']['output']>;
|
|
133010
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
133011
|
+
fieldConfig?: Maybe<JiraFieldConfig>;
|
|
133012
|
+
fieldId: Scalars['String']['output'];
|
|
133013
|
+
fieldOperations?: Maybe<JiraFieldOperation>;
|
|
133014
|
+
hasValue?: Maybe<Scalars['Boolean']['output']>;
|
|
133015
|
+
id: Scalars['ID']['output'];
|
|
133016
|
+
isEditableInIssueTransition?: Maybe<Scalars['Boolean']['output']>;
|
|
133017
|
+
isEditableInIssueView?: Maybe<Scalars['Boolean']['output']>;
|
|
133018
|
+
isSearchableInJql?: Maybe<Scalars['Boolean']['output']>;
|
|
133019
|
+
issue?: Maybe<JiraIssue>;
|
|
133020
|
+
name: Scalars['String']['output'];
|
|
133021
|
+
sla?: Maybe<JiraServiceManagementSla>;
|
|
133022
|
+
type: Scalars['String']['output'];
|
|
133023
|
+
};
|
|
133024
|
+
export declare type JiraServiceManagementSlaGoal = {
|
|
133025
|
+
__typename?: 'JiraServiceManagementSlaGoal';
|
|
133026
|
+
calendar?: Maybe<JiraServiceManagementSlaCalendar>;
|
|
133027
|
+
duration?: Maybe<Scalars['String']['output']>;
|
|
133028
|
+
goalId?: Maybe<Scalars['String']['output']>;
|
|
133029
|
+
};
|
|
132544
133030
|
export declare type JiraServiceManagementSlaGoalDetailedView = {
|
|
132545
133031
|
__typename?: 'JiraServiceManagementSlaGoalDetailedView';
|
|
132546
133032
|
active?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -132563,6 +133049,33 @@ export declare type JiraServiceManagementSlaGoalDetailedView = {
|
|
|
132563
133049
|
startTime?: Maybe<Scalars['String']['output']>;
|
|
132564
133050
|
stopTime?: Maybe<Scalars['String']['output']>;
|
|
132565
133051
|
};
|
|
133052
|
+
export declare type JiraServiceManagementSlaGoalView = {
|
|
133053
|
+
__typename?: 'JiraServiceManagementSlaGoalView';
|
|
133054
|
+
active?: Maybe<Scalars['Boolean']['output']>;
|
|
133055
|
+
calculatedAt?: Maybe<Scalars['String']['output']>;
|
|
133056
|
+
closed?: Maybe<Scalars['Boolean']['output']>;
|
|
133057
|
+
emergencyLevel?: Maybe<JiraServiceManagementSlaEmergencyLevel>;
|
|
133058
|
+
failed?: Maybe<Scalars['Boolean']['output']>;
|
|
133059
|
+
paused?: Maybe<Scalars['Boolean']['output']>;
|
|
133060
|
+
remainingTime?: Maybe<Scalars['String']['output']>;
|
|
133061
|
+
};
|
|
133062
|
+
export declare type JiraServiceManagementSlaHoliday = {
|
|
133063
|
+
__typename?: 'JiraServiceManagementSlaHoliday';
|
|
133064
|
+
date?: Maybe<Scalars['DateTime']['output']>;
|
|
133065
|
+
holidayId?: Maybe<Scalars['String']['output']>;
|
|
133066
|
+
recurring?: Maybe<Scalars['Boolean']['output']>;
|
|
133067
|
+
};
|
|
133068
|
+
export declare type JiraServiceManagementSlaHolidayConnection = {
|
|
133069
|
+
__typename?: 'JiraServiceManagementSlaHolidayConnection';
|
|
133070
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementSlaHolidayEdge>>>;
|
|
133071
|
+
pageInfo: PageInfo;
|
|
133072
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133073
|
+
};
|
|
133074
|
+
export declare type JiraServiceManagementSlaHolidayEdge = {
|
|
133075
|
+
__typename?: 'JiraServiceManagementSlaHolidayEdge';
|
|
133076
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
133077
|
+
node?: Maybe<JiraServiceManagementSlaHoliday>;
|
|
133078
|
+
};
|
|
132566
133079
|
export declare type JiraServiceManagementSlaIssue = {
|
|
132567
133080
|
__typename?: 'JiraServiceManagementSlaIssue';
|
|
132568
133081
|
goalViews?: Maybe<Array<JiraServiceManagementSlaGoalDetailedView>>;
|
|
@@ -132573,6 +133086,69 @@ export declare type JiraServiceManagementSlaIssueResult = {
|
|
|
132573
133086
|
errors?: Maybe<Array<QueryError>>;
|
|
132574
133087
|
slaIssue?: Maybe<JiraServiceManagementSlaIssue>;
|
|
132575
133088
|
};
|
|
133089
|
+
export declare type JiraServiceManagementSlaOngoingCycle = {
|
|
133090
|
+
__typename?: 'JiraServiceManagementSlaOngoingCycle';
|
|
133091
|
+
goal?: Maybe<JiraServiceManagementSlaGoal>;
|
|
133092
|
+
paused?: Maybe<Scalars['Boolean']['output']>;
|
|
133093
|
+
startTime?: Maybe<Scalars['DateTime']['output']>;
|
|
133094
|
+
};
|
|
133095
|
+
export declare type JiraServiceManagementSlaTimelineEvent = {
|
|
133096
|
+
__typename?: 'JiraServiceManagementSlaTimelineEvent';
|
|
133097
|
+
datetime?: Maybe<Scalars['DateTime']['output']>;
|
|
133098
|
+
types?: Maybe<JiraServiceManagementSlaTimelineEventTypeConnection>;
|
|
133099
|
+
};
|
|
133100
|
+
export declare type JiraServiceManagementSlaTimelineEventTypesArgs = {
|
|
133101
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
133102
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
133103
|
+
};
|
|
133104
|
+
export declare type JiraServiceManagementSlaTimelineEventConnection = {
|
|
133105
|
+
__typename?: 'JiraServiceManagementSlaTimelineEventConnection';
|
|
133106
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementSlaTimelineEventEdge>>>;
|
|
133107
|
+
pageInfo: PageInfo;
|
|
133108
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133109
|
+
};
|
|
133110
|
+
export declare type JiraServiceManagementSlaTimelineEventEdge = {
|
|
133111
|
+
__typename?: 'JiraServiceManagementSlaTimelineEventEdge';
|
|
133112
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
133113
|
+
node?: Maybe<JiraServiceManagementSlaTimelineEvent>;
|
|
133114
|
+
};
|
|
133115
|
+
export declare enum JiraServiceManagementSlaTimelineEventType {
|
|
133116
|
+
Pause = "PAUSE",
|
|
133117
|
+
Restart = "RESTART",
|
|
133118
|
+
Start = "START",
|
|
133119
|
+
Stop = "STOP",
|
|
133120
|
+
Unpause = "UNPAUSE",
|
|
133121
|
+
Unrecognized = "UNRECOGNIZED"
|
|
133122
|
+
}
|
|
133123
|
+
export declare type JiraServiceManagementSlaTimelineEventTypeConnection = {
|
|
133124
|
+
__typename?: 'JiraServiceManagementSlaTimelineEventTypeConnection';
|
|
133125
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementSlaTimelineEventTypeEdge>>>;
|
|
133126
|
+
pageInfo: PageInfo;
|
|
133127
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133128
|
+
};
|
|
133129
|
+
export declare type JiraServiceManagementSlaTimelineEventTypeEdge = {
|
|
133130
|
+
__typename?: 'JiraServiceManagementSlaTimelineEventTypeEdge';
|
|
133131
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
133132
|
+
node?: Maybe<JiraServiceManagementSlaTimelineEventType>;
|
|
133133
|
+
};
|
|
133134
|
+
export declare type JiraServiceManagementSlaWorkingTime = {
|
|
133135
|
+
__typename?: 'JiraServiceManagementSlaWorkingTime';
|
|
133136
|
+
end?: Maybe<Scalars['DateTime']['output']>;
|
|
133137
|
+
start?: Maybe<Scalars['DateTime']['output']>;
|
|
133138
|
+
weekday?: Maybe<JiraServiceManagementSlaDayOfWeek>;
|
|
133139
|
+
workingTimeId?: Maybe<Scalars['String']['output']>;
|
|
133140
|
+
};
|
|
133141
|
+
export declare type JiraServiceManagementSlaWorkingTimeConnection = {
|
|
133142
|
+
__typename?: 'JiraServiceManagementSlaWorkingTimeConnection';
|
|
133143
|
+
edges?: Maybe<Array<Maybe<JiraServiceManagementSlaWorkingTimeEdge>>>;
|
|
133144
|
+
pageInfo: PageInfo;
|
|
133145
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133146
|
+
};
|
|
133147
|
+
export declare type JiraServiceManagementSlaWorkingTimeEdge = {
|
|
133148
|
+
__typename?: 'JiraServiceManagementSlaWorkingTimeEdge';
|
|
133149
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
133150
|
+
node?: Maybe<JiraServiceManagementSlaWorkingTime>;
|
|
133151
|
+
};
|
|
132576
133152
|
export declare type JiraServiceManagementTeamResponder = {
|
|
132577
133153
|
__typename?: 'JiraServiceManagementTeamResponder';
|
|
132578
133154
|
teamId?: Maybe<Scalars['String']['output']>;
|
|
@@ -132809,6 +133385,18 @@ export declare type JiraSetBoardViewGroupByPayload = Payload & {
|
|
|
132809
133385
|
success: Scalars['Boolean']['output'];
|
|
132810
133386
|
view?: Maybe<JiraBoardView>;
|
|
132811
133387
|
};
|
|
133388
|
+
export declare type JiraSetBoardViewStatusColumnIssueCountLimitInput = {
|
|
133389
|
+
columnId: Scalars['ID']['input'];
|
|
133390
|
+
maximumIssueCount?: InputMaybe<Scalars['Int']['input']>;
|
|
133391
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
133392
|
+
};
|
|
133393
|
+
export declare type JiraSetBoardViewStatusColumnIssueCountLimitPayload = Payload & {
|
|
133394
|
+
__typename?: 'JiraSetBoardViewStatusColumnIssueCountLimitPayload';
|
|
133395
|
+
boardView?: Maybe<JiraBoardView>;
|
|
133396
|
+
column?: Maybe<JiraBoardViewStatusColumn>;
|
|
133397
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133398
|
+
success: Scalars['Boolean']['output'];
|
|
133399
|
+
};
|
|
132812
133400
|
export declare type JiraSetBoardViewStatusColumnMappingCreateStatusInput = {
|
|
132813
133401
|
name: Scalars['String']['input'];
|
|
132814
133402
|
reference: Scalars['ID']['input'];
|
|
@@ -133357,7 +133945,6 @@ export declare type JiraSimilarIssues = {
|
|
|
133357
133945
|
export declare type JiraSimilarWorkItemSuggestionConnection = {
|
|
133358
133946
|
__typename?: 'JiraSimilarWorkItemSuggestionConnection';
|
|
133359
133947
|
edges?: Maybe<Array<Maybe<JiraSimilarWorkItemSuggestionEdge>>>;
|
|
133360
|
-
errors?: Maybe<Array<QueryError>>;
|
|
133361
133948
|
pageInfo: PageInfo;
|
|
133362
133949
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133363
133950
|
};
|
|
@@ -136796,7 +137383,6 @@ export declare type JiraWhiteboardResource = JiraConsolidatedResource & {
|
|
|
136796
137383
|
export declare type JiraWorkBreakdownSuggestionConnection = {
|
|
136797
137384
|
__typename?: 'JiraWorkBreakdownSuggestionConnection';
|
|
136798
137385
|
edges?: Maybe<Array<Maybe<JiraWorkBreakdownSuggestionEdge>>>;
|
|
136799
|
-
errors?: Maybe<Array<QueryError>>;
|
|
136800
137386
|
pageInfo: PageInfo;
|
|
136801
137387
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
136802
137388
|
};
|
|
@@ -138160,10 +138746,11 @@ export declare type JsmChannelsEstablishConnectionInput = {
|
|
|
138160
138746
|
connectionType: JsmChannelsConnectionType;
|
|
138161
138747
|
displayName: Scalars['String']['input'];
|
|
138162
138748
|
exchangeUrl?: InputMaybe<Scalars['String']['input']>;
|
|
138163
|
-
hostUrl
|
|
138749
|
+
hostUrl?: InputMaybe<Scalars['String']['input']>;
|
|
138164
138750
|
profileRetrieverUrl?: InputMaybe<Scalars['String']['input']>;
|
|
138165
138751
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
138166
138752
|
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
138753
|
+
tenantId?: InputMaybe<Scalars['String']['input']>;
|
|
138167
138754
|
};
|
|
138168
138755
|
export declare type JsmChannelsEstablishConnectionPayload = Payload & {
|
|
138169
138756
|
__typename?: 'JsmChannelsEstablishConnectionPayload';
|
|
@@ -139878,6 +140465,7 @@ export declare type KitsuneInsight = Node & {
|
|
|
139878
140465
|
externalId?: Maybe<Scalars['ID']['output']>;
|
|
139879
140466
|
id: Scalars['ID']['output'];
|
|
139880
140467
|
jiraIssue?: Maybe<JiraIssue>;
|
|
140468
|
+
nbSnippets: Scalars['Int']['output'];
|
|
139881
140469
|
snippets: KitsuneSnippetConnection;
|
|
139882
140470
|
summary?: Maybe<KitsuneSummary>;
|
|
139883
140471
|
title: Scalars['String']['output'];
|
|
@@ -141843,6 +142431,111 @@ export declare type LayerScreenLookAndFeel = {
|
|
|
141843
142431
|
height?: Maybe<Scalars['String']['output']>;
|
|
141844
142432
|
width?: Maybe<Scalars['String']['output']>;
|
|
141845
142433
|
};
|
|
142434
|
+
export declare type LearningCertSort = {
|
|
142435
|
+
sortDirection?: InputMaybe<LearningSortOrder>;
|
|
142436
|
+
sortField?: InputMaybe<LearningCertSortField>;
|
|
142437
|
+
};
|
|
142438
|
+
export declare enum LearningCertSortField {
|
|
142439
|
+
ActiveDate = "ACTIVE_DATE",
|
|
142440
|
+
ExpireDate = "EXPIRE_DATE",
|
|
142441
|
+
Id = "ID",
|
|
142442
|
+
ImageUrl = "IMAGE_URL",
|
|
142443
|
+
Name = "NAME",
|
|
142444
|
+
NameAbbr = "NAME_ABBR",
|
|
142445
|
+
PublicUrl = "PUBLIC_URL",
|
|
142446
|
+
Status = "STATUS",
|
|
142447
|
+
Type = "TYPE"
|
|
142448
|
+
}
|
|
142449
|
+
export declare enum LearningCertStatus {
|
|
142450
|
+
Active = "ACTIVE",
|
|
142451
|
+
Expired = "EXPIRED"
|
|
142452
|
+
}
|
|
142453
|
+
export declare enum LearningCertType {
|
|
142454
|
+
Badge = "BADGE",
|
|
142455
|
+
Certification = "CERTIFICATION",
|
|
142456
|
+
Standing = "STANDING"
|
|
142457
|
+
}
|
|
142458
|
+
export declare type LearningCertmetricsCertificate = {
|
|
142459
|
+
__typename?: 'LearningCertmetricsCertificate';
|
|
142460
|
+
activeDate?: Maybe<Scalars['String']['output']>;
|
|
142461
|
+
expireDate?: Maybe<Scalars['String']['output']>;
|
|
142462
|
+
id?: Maybe<Scalars['String']['output']>;
|
|
142463
|
+
imageUrl?: Maybe<Scalars['String']['output']>;
|
|
142464
|
+
name?: Maybe<Scalars['String']['output']>;
|
|
142465
|
+
nameAbbr?: Maybe<Scalars['String']['output']>;
|
|
142466
|
+
publicUrl?: Maybe<Scalars['String']['output']>;
|
|
142467
|
+
status?: Maybe<LearningCertStatus>;
|
|
142468
|
+
type?: Maybe<LearningCertType>;
|
|
142469
|
+
};
|
|
142470
|
+
export declare type LearningCertmetricsCertificateConnection = {
|
|
142471
|
+
__typename?: 'LearningCertmetricsCertificateConnection';
|
|
142472
|
+
edges?: Maybe<Array<LearningCertmetricsCertificateEdge>>;
|
|
142473
|
+
pageInfo?: Maybe<LearningPageInfo>;
|
|
142474
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
142475
|
+
};
|
|
142476
|
+
export declare type LearningCertmetricsCertificateEdge = {
|
|
142477
|
+
__typename?: 'LearningCertmetricsCertificateEdge';
|
|
142478
|
+
cursor: Scalars['String']['output'];
|
|
142479
|
+
node?: Maybe<LearningCertmetricsCertificate>;
|
|
142480
|
+
};
|
|
142481
|
+
export declare type LearningCertmetricsCertificateResult = LearningCertmetricsCertificateConnection | LearningQueryError;
|
|
142482
|
+
export declare type LearningConnectionQueryErrorExtension = LearningQueryErrorExtension & {
|
|
142483
|
+
__typename?: 'LearningConnectionQueryErrorExtension';
|
|
142484
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
142485
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
142486
|
+
};
|
|
142487
|
+
export declare type LearningLearner = {
|
|
142488
|
+
__typename?: 'LearningLearner';
|
|
142489
|
+
atlassianId: Scalars['String']['output'];
|
|
142490
|
+
certmetricsCertificates?: Maybe<LearningCertmetricsCertificateResult>;
|
|
142491
|
+
id: Scalars['ID']['output'];
|
|
142492
|
+
};
|
|
142493
|
+
export declare type LearningLearnerCertmetricsCertificatesArgs = {
|
|
142494
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
142495
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
142496
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
142497
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
142498
|
+
sorting?: InputMaybe<LearningCertSort>;
|
|
142499
|
+
status?: InputMaybe<LearningCertStatus>;
|
|
142500
|
+
type?: InputMaybe<Array<InputMaybe<LearningCertType>>>;
|
|
142501
|
+
};
|
|
142502
|
+
export declare type LearningPageInfo = {
|
|
142503
|
+
__typename?: 'LearningPageInfo';
|
|
142504
|
+
endCursor?: Maybe<Scalars['String']['output']>;
|
|
142505
|
+
hasNextPage: Scalars['Boolean']['output'];
|
|
142506
|
+
hasPreviousPage: Scalars['Boolean']['output'];
|
|
142507
|
+
startCursor?: Maybe<Scalars['String']['output']>;
|
|
142508
|
+
};
|
|
142509
|
+
export declare type LearningQuery = {
|
|
142510
|
+
__typename?: 'LearningQuery';
|
|
142511
|
+
learnerByAtlassianId?: Maybe<LearningLearner>;
|
|
142512
|
+
learnersByAtlassianIds?: Maybe<Array<Maybe<LearningLearner>>>;
|
|
142513
|
+
learnersByIds?: Maybe<Array<Maybe<LearningLearner>>>;
|
|
142514
|
+
};
|
|
142515
|
+
export declare type LearningQueryLearnerByAtlassianIdArgs = {
|
|
142516
|
+
atlassianId: Scalars['String']['input'];
|
|
142517
|
+
};
|
|
142518
|
+
export declare type LearningQueryLearnersByAtlassianIdsArgs = {
|
|
142519
|
+
atlassianIds: Array<Scalars['String']['input']>;
|
|
142520
|
+
};
|
|
142521
|
+
export declare type LearningQueryLearnersByIdsArgs = {
|
|
142522
|
+
ids: Array<Scalars['ID']['input']>;
|
|
142523
|
+
};
|
|
142524
|
+
export declare type LearningQueryError = {
|
|
142525
|
+
__typename?: 'LearningQueryError';
|
|
142526
|
+
extensions?: Maybe<Array<LearningQueryErrorExtension>>;
|
|
142527
|
+
id: Scalars['ID']['output'];
|
|
142528
|
+
identifier?: Maybe<Scalars['ID']['output']>;
|
|
142529
|
+
message?: Maybe<Scalars['String']['output']>;
|
|
142530
|
+
};
|
|
142531
|
+
export declare type LearningQueryErrorExtension = {
|
|
142532
|
+
errorType?: Maybe<Scalars['String']['output']>;
|
|
142533
|
+
statusCode?: Maybe<Scalars['Int']['output']>;
|
|
142534
|
+
};
|
|
142535
|
+
export declare enum LearningSortOrder {
|
|
142536
|
+
Asc = "ASC",
|
|
142537
|
+
Desc = "DESC"
|
|
142538
|
+
}
|
|
141846
142539
|
export declare type License = {
|
|
141847
142540
|
__typename?: 'License';
|
|
141848
142541
|
billingPeriod?: Maybe<Scalars['String']['output']>;
|
|
@@ -142605,6 +143298,10 @@ export declare type LpQueryError = Node & {
|
|
|
142605
143298
|
identifier?: Maybe<Scalars['ID']['output']>;
|
|
142606
143299
|
message?: Maybe<Scalars['String']['output']>;
|
|
142607
143300
|
};
|
|
143301
|
+
export declare type M360ServiceHelloWorldPayload = {
|
|
143302
|
+
__typename?: 'M360ServiceHelloWorldPayload';
|
|
143303
|
+
greeting?: Maybe<Scalars['String']['output']>;
|
|
143304
|
+
};
|
|
142608
143305
|
export declare type Macro = {
|
|
142609
143306
|
__typename?: 'Macro';
|
|
142610
143307
|
adf: Scalars['String']['output'];
|
|
@@ -145511,6 +146208,24 @@ export declare type MarketplaceStoreEntitlementDetails = {
|
|
|
145511
146208
|
ccpUsers?: Maybe<Scalars['Int']['output']>;
|
|
145512
146209
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
145513
146210
|
};
|
|
146211
|
+
export declare type MarketplaceStoreExploreObjectsSection = MarketplaceStoreLayoutSection & {
|
|
146212
|
+
__typename?: 'MarketplaceStoreExploreObjectsSection';
|
|
146213
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
146214
|
+
key: MarketplaceStoreLayoutSectionKeys;
|
|
146215
|
+
navigationUrl?: Maybe<Scalars['String']['output']>;
|
|
146216
|
+
objectsFetchCount?: Maybe<Scalars['Int']['output']>;
|
|
146217
|
+
searchMetadata?: Maybe<MarketplaceStoreSearchMetadata>;
|
|
146218
|
+
tabs?: Maybe<Array<MarketplaceStoreExploreObjectsTab>>;
|
|
146219
|
+
title: Scalars['String']['output'];
|
|
146220
|
+
type: MarketplaceStoreLayoutSectionType;
|
|
146221
|
+
widgets?: Maybe<Array<Maybe<MarketplaceStoreLayoutWidget>>>;
|
|
146222
|
+
};
|
|
146223
|
+
export declare type MarketplaceStoreExploreObjectsTab = {
|
|
146224
|
+
__typename?: 'MarketplaceStoreExploreObjectsTab';
|
|
146225
|
+
iconKey?: Maybe<Scalars['String']['output']>;
|
|
146226
|
+
name: Scalars['String']['output'];
|
|
146227
|
+
searchMetadata?: Maybe<MarketplaceStoreSearchMetadata>;
|
|
146228
|
+
};
|
|
145514
146229
|
export declare enum MarketplaceStoreFormStatus {
|
|
145515
146230
|
Approved = "APPROVED",
|
|
145516
146231
|
Rejected = "REJECTED",
|
|
@@ -145756,7 +146471,6 @@ export declare enum MarketplaceStoreLayoutSectionKeys {
|
|
|
145756
146471
|
RecommendedForYou = "RECOMMENDED_FOR_YOU",
|
|
145757
146472
|
Spotlight = "SPOTLIGHT",
|
|
145758
146473
|
Statistics = "STATISTICS",
|
|
145759
|
-
TopUseCases = "TOP_USE_CASES",
|
|
145760
146474
|
TrustedPartners = "TRUSTED_PARTNERS"
|
|
145761
146475
|
}
|
|
145762
146476
|
export declare enum MarketplaceStoreLayoutSectionType {
|
|
@@ -145764,8 +146478,8 @@ export declare enum MarketplaceStoreLayoutSectionType {
|
|
|
145764
146478
|
Capability = "CAPABILITY",
|
|
145765
146479
|
Dark = "DARK",
|
|
145766
146480
|
ExploreCategories = "EXPLORE_CATEGORIES",
|
|
145767
|
-
|
|
145768
|
-
|
|
146481
|
+
ExploreObjects = "EXPLORE_OBJECTS",
|
|
146482
|
+
List = "LIST"
|
|
145769
146483
|
}
|
|
145770
146484
|
export declare enum MarketplaceStoreLayoutSlotTheme {
|
|
145771
146485
|
Bounded = "BOUNDED",
|
|
@@ -146574,18 +147288,6 @@ export declare type MarketplaceStoreThirdPartyInformation = {
|
|
|
146574
147288
|
isEndUserDataShared?: Maybe<Scalars['Boolean']['output']>;
|
|
146575
147289
|
thirdPartyDetails?: Maybe<Array<Maybe<MarketplaceStoreThirdPartyDetails>>>;
|
|
146576
147290
|
};
|
|
146577
|
-
export declare type MarketplaceStoreTopUseCasesSection = MarketplaceStoreLayoutSection & {
|
|
146578
|
-
__typename?: 'MarketplaceStoreTopUseCasesSection';
|
|
146579
|
-
description?: Maybe<Scalars['String']['output']>;
|
|
146580
|
-
key: MarketplaceStoreLayoutSectionKeys;
|
|
146581
|
-
navigationUrl?: Maybe<Scalars['String']['output']>;
|
|
146582
|
-
objectsFetchCount?: Maybe<Scalars['Int']['output']>;
|
|
146583
|
-
searchMetadata?: Maybe<MarketplaceStoreSearchMetadata>;
|
|
146584
|
-
title: Scalars['String']['output'];
|
|
146585
|
-
topUseCases?: Maybe<MarketplaceStoreUseCases>;
|
|
146586
|
-
type: MarketplaceStoreLayoutSectionType;
|
|
146587
|
-
widgets?: Maybe<Array<Maybe<MarketplaceStoreLayoutWidget>>>;
|
|
146588
|
-
};
|
|
146589
147291
|
export declare type MarketplaceStoreTrustSignalDataRules = {
|
|
146590
147292
|
__typename?: 'MarketplaceStoreTrustSignalDataRules';
|
|
146591
147293
|
name: Scalars['String']['output'];
|
|
@@ -146633,17 +147335,6 @@ export declare type MarketplaceStoreUpdateUserPreferencesResponse = {
|
|
|
146633
147335
|
status: Scalars['String']['output'];
|
|
146634
147336
|
version: Scalars['Int']['output'];
|
|
146635
147337
|
};
|
|
146636
|
-
export declare type MarketplaceStoreUseCaseValue = {
|
|
146637
|
-
__typename?: 'MarketplaceStoreUseCaseValue';
|
|
146638
|
-
iconKey?: Maybe<Scalars['String']['output']>;
|
|
146639
|
-
id: Scalars['String']['output'];
|
|
146640
|
-
name?: Maybe<Scalars['String']['output']>;
|
|
146641
|
-
};
|
|
146642
|
-
export declare type MarketplaceStoreUseCases = {
|
|
146643
|
-
__typename?: 'MarketplaceStoreUseCases';
|
|
146644
|
-
heading?: Maybe<Scalars['String']['output']>;
|
|
146645
|
-
values?: Maybe<Array<MarketplaceStoreUseCaseValue>>;
|
|
146646
|
-
};
|
|
146647
147338
|
export declare type MarketplaceStoreUserPreferences = {
|
|
146648
147339
|
__typename?: 'MarketplaceStoreUserPreferences';
|
|
146649
147340
|
notifyOnAppArchivalSchedule?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -151785,11 +152476,8 @@ export declare type MercuryProviderOrchestrationQueryApiSearchWorkByBenefitItemA
|
|
|
151785
152476
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
151786
152477
|
benefitItemId: Scalars['ID']['input'];
|
|
151787
152478
|
cloudId: Scalars['ID']['input'];
|
|
151788
|
-
filter?: InputMaybe<MercuryProviderWorkSearchFilters>;
|
|
151789
152479
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
151790
|
-
providerKey: Scalars['String']['input'];
|
|
151791
152480
|
textQuery?: InputMaybe<Scalars['String']['input']>;
|
|
151792
|
-
workContainerAri?: InputMaybe<Scalars['String']['input']>;
|
|
151793
152481
|
};
|
|
151794
152482
|
export declare type MercuryProviderOrchestrationQueryApiSearchWorkByChangeProposalArgs = {
|
|
151795
152483
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -154196,6 +154884,16 @@ export declare type MercuryViewSettings = {
|
|
|
154196
154884
|
export declare type MercuryViewSettingsInput = {
|
|
154197
154885
|
values: Array<MercuryViewSettingEntryInput>;
|
|
154198
154886
|
};
|
|
154887
|
+
export declare type MercuryViewSort = {
|
|
154888
|
+
field: MercuryViewSortField;
|
|
154889
|
+
order: SortOrder;
|
|
154890
|
+
};
|
|
154891
|
+
export declare enum MercuryViewSortField {
|
|
154892
|
+
Name = "NAME",
|
|
154893
|
+
Rank = "RANK",
|
|
154894
|
+
StarredDate = "STARRED_DATE",
|
|
154895
|
+
UpdatedDate = "UPDATED_DATE"
|
|
154896
|
+
}
|
|
154199
154897
|
export declare enum MercuryViewType {
|
|
154200
154898
|
HierarchyView = "HIERARCHY_VIEW",
|
|
154201
154899
|
RankingView = "RANKING_VIEW"
|
|
@@ -154591,8 +155289,11 @@ export declare type Mutation = {
|
|
|
154591
155289
|
agentWorkspace_createDraftedRoutingTable?: Maybe<AgentWorkspaceCreateDraftedRoutingTablePayload>;
|
|
154592
155290
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
154593
155291
|
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
155292
|
+
agentWorkspace_deleteCoverShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
|
|
154594
155293
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
154595
155294
|
agentWorkspace_deleteShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
|
|
155295
|
+
agentWorkspace_discardDraftedRoutingTable?: Maybe<AgentWorkspaceDiscardDraftedRoutingTablePayload>;
|
|
155296
|
+
agentWorkspace_editCoverShift?: Maybe<AgentWorkspaceEditShiftPayload>;
|
|
154596
155297
|
agentWorkspace_editShift?: Maybe<AgentWorkspaceEditShiftPayload>;
|
|
154597
155298
|
agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
154598
155299
|
agentWorkspace_restoreSkill?: Maybe<AgentWorkspaceRestoreSkillPayload>;
|
|
@@ -154611,6 +155312,7 @@ export declare type Mutation = {
|
|
|
154611
155312
|
agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
154612
155313
|
agentWorkspace_upsertDraftedRoutingTableEntry?: Maybe<AgentWorkspaceUpsertDraftedRoutingTableEntryPayload>;
|
|
154613
155314
|
aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
|
|
155315
|
+
aiCoreApi_initiateRsaReport?: Maybe<AiCoreApiRsaInitiateReportResult>;
|
|
154614
155316
|
aiManagedObject_createAiManagedObject?: Maybe<AiManagedObject>;
|
|
154615
155317
|
aiManagedObject_createAiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
|
|
154616
155318
|
aiManagedObject_deleteAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -154686,6 +155388,7 @@ export declare type Mutation = {
|
|
|
154686
155388
|
assetsDM_updateDataSourcePriority?: Maybe<AssetsDmUpdateDataSourcePayload>;
|
|
154687
155389
|
assetsDM_updateDataSourceType?: Maybe<AssetsDmUpdateDataSourceTypeResponse>;
|
|
154688
155390
|
assetsDM_updateDefaultCleansingRule?: Maybe<AssetsDmUpdateDefaultCleansingRuleResponse>;
|
|
155391
|
+
assetsVertical_archiveInsight?: Maybe<AssetsVerticalArchiveInsightPayload>;
|
|
154689
155392
|
assetsVertical_createAssetTypesTrackings?: Maybe<AssetsVerticalAssetTypesTrackingsPayload>;
|
|
154690
155393
|
assetsVertical_createDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
|
|
154691
155394
|
assetsVertical_createItemMappings?: Maybe<AssetsVerticalItemMappingsPayload>;
|
|
@@ -155043,6 +155746,7 @@ export declare type Mutation = {
|
|
|
155043
155746
|
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
|
|
155044
155747
|
csmAi_updateKnowledgeSource?: Maybe<CsmAiKnowledgeSourcePayload>;
|
|
155045
155748
|
csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
|
|
155749
|
+
csm_updateCustomerName?: Maybe<CustomerServiceUpdateCustomerNamePayload>;
|
|
155046
155750
|
csm_updateLiveChatSettings?: Maybe<CustomerServiceLiveChatSettingsPayload>;
|
|
155047
155751
|
csm_upsertEmailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigUpsertPayload>;
|
|
155048
155752
|
csm_upsertHelpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataUpsertPayload>;
|
|
@@ -155206,11 +155910,14 @@ export declare type Mutation = {
|
|
|
155206
155910
|
goals_shareUpdate?: Maybe<TownsquareGoalsShareUpdatePayload>;
|
|
155207
155911
|
goals_unlinkJiraAlignProject?: Maybe<TownsquareGoalsUnlinkJiraAlignProjectPayload>;
|
|
155208
155912
|
goals_unlinkWorkItem?: Maybe<TownsquareGoalsUnlinkWorkItemPayload>;
|
|
155913
|
+
goals_updateAppPermissionPolicies?: Maybe<TownsquareUpdateGoalsAppPermissionPoliciesPayload>;
|
|
155209
155914
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
155210
155915
|
graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
|
|
155211
155916
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
155212
155917
|
graphIntegration_createDataConnectorConnection?: Maybe<GraphIntegrationCreateConnectionPayload>;
|
|
155918
|
+
graphIntegration_createSkill?: Maybe<GraphIntegrationSkill>;
|
|
155213
155919
|
graphIntegration_deleteDataConnectorConnection?: Maybe<GraphIntegrationDeleteConnectionPayload>;
|
|
155920
|
+
graphIntegration_deleteSkill?: Maybe<GraphIntegrationSkillMutationPayload>;
|
|
155214
155921
|
graphIntegration_mcpAdminManagementRegisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementRegisterMcpServerPayload>;
|
|
155215
155922
|
graphIntegration_mcpAdminManagementTriggerToolSync?: Maybe<GraphIntegrationMcpAdminManagementTriggerToolSyncPayload>;
|
|
155216
155923
|
graphIntegration_mcpAdminManagementUnregisterMcpServer?: Maybe<GraphIntegrationMcpAdminManagementUnregisterMcpServerPayload>;
|
|
@@ -155219,6 +155926,7 @@ export declare type Mutation = {
|
|
|
155219
155926
|
graphIntegration_removeTwgCapabilityContainer?: Maybe<GraphIntegrationRemoveTwgCapabilityContainerPayload>;
|
|
155220
155927
|
graphIntegration_setTwgPlatformCapabilityGlobalAdminSetting?: Maybe<GraphIntegrationSetTwgPlatformCapabilityGlobalAdminSettingPayload>;
|
|
155221
155928
|
graphIntegration_updateDataConnectorConnection?: Maybe<GraphIntegrationUpdateConnectionPayload>;
|
|
155929
|
+
graphIntegration_updateSkill?: Maybe<GraphIntegrationSkillMutationPayload>;
|
|
155222
155930
|
graphStore?: Maybe<GraphStoreMutation>;
|
|
155223
155931
|
graphStoreV2?: Maybe<GraphStoreV2Mutation>;
|
|
155224
155932
|
gravity_addReaction?: Maybe<GravityAddReactionPayload>;
|
|
@@ -155332,6 +156040,7 @@ export declare type Mutation = {
|
|
|
155332
156040
|
jira_setBoardViewCompletedIssueSearchCutOff?: Maybe<JiraSetBoardViewCompletedIssueSearchCutOffPayload>;
|
|
155333
156041
|
jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
|
|
155334
156042
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
156043
|
+
jira_setBoardViewStatusColumnIssueCountLimit?: Maybe<JiraSetBoardViewStatusColumnIssueCountLimitPayload>;
|
|
155335
156044
|
jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
|
|
155336
156045
|
jira_setBoardViewSwimlaneState?: Maybe<JiraSetBoardViewSwimlaneStatePayload>;
|
|
155337
156046
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
@@ -155547,6 +156256,7 @@ export declare type Mutation = {
|
|
|
155547
156256
|
projects_setWatchingProject?: Maybe<TownsquareProjectsSetWatchingProjectPayload>;
|
|
155548
156257
|
projects_shareProject?: Maybe<TownsquareProjectsShareProjectPayload>;
|
|
155549
156258
|
projects_shareUpdate?: Maybe<TownsquareProjectsShareUpdatePayload>;
|
|
156259
|
+
projects_updateAppPermissionPolicies?: Maybe<TownsquareUpdateProjectsAppPermissionPoliciesPayload>;
|
|
155550
156260
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
155551
156261
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
155552
156262
|
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
@@ -156179,12 +156889,21 @@ export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
|
156179
156889
|
export declare type MutationAgentWorkspace_CreateSkillArgs = {
|
|
156180
156890
|
input: AgentWorkspaceSkillCreateInput;
|
|
156181
156891
|
};
|
|
156892
|
+
export declare type MutationAgentWorkspace_DeleteCoverShiftArgs = {
|
|
156893
|
+
input: AgentWorkspaceDeleteCoverShiftInput;
|
|
156894
|
+
};
|
|
156182
156895
|
export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
156183
156896
|
input: AgentWorkspaceDeleteScheduleInput;
|
|
156184
156897
|
};
|
|
156185
156898
|
export declare type MutationAgentWorkspace_DeleteShiftArgs = {
|
|
156186
156899
|
input: AgentWorkspaceDeleteShiftInput;
|
|
156187
156900
|
};
|
|
156901
|
+
export declare type MutationAgentWorkspace_DiscardDraftedRoutingTableArgs = {
|
|
156902
|
+
input: AgentWorkspaceDiscardDraftedRoutingTableInput;
|
|
156903
|
+
};
|
|
156904
|
+
export declare type MutationAgentWorkspace_EditCoverShiftArgs = {
|
|
156905
|
+
input: AgentWorkspaceEditCoverShiftInput;
|
|
156906
|
+
};
|
|
156188
156907
|
export declare type MutationAgentWorkspace_EditShiftArgs = {
|
|
156189
156908
|
input: AgentWorkspaceEditShiftInput;
|
|
156190
156909
|
};
|
|
@@ -156241,6 +156960,9 @@ export declare type MutationAgentWorkspace_UpsertDraftedRoutingTableEntryArgs =
|
|
|
156241
156960
|
export declare type MutationAiCoreApi_InitiateCsvExportArgs = {
|
|
156242
156961
|
input: AiCoreApiCsvExportInput;
|
|
156243
156962
|
};
|
|
156963
|
+
export declare type MutationAiCoreApi_InitiateRsaReportArgs = {
|
|
156964
|
+
input: AiCoreApiRsaReportInput;
|
|
156965
|
+
};
|
|
156244
156966
|
export declare type MutationAiManagedObject_CreateAiManagedObjectArgs = {
|
|
156245
156967
|
cloudId: Scalars['ID']['input'];
|
|
156246
156968
|
input: AiManagedObjectCreateInput;
|
|
@@ -156595,6 +157317,9 @@ export declare type MutationAssetsDm_UpdateDefaultCleansingRuleArgs = {
|
|
|
156595
157317
|
input: AssetsDmUpdateDefaultCleansingRuleInput;
|
|
156596
157318
|
workspaceId: Scalars['ID']['input'];
|
|
156597
157319
|
};
|
|
157320
|
+
export declare type MutationAssetsVertical_ArchiveInsightArgs = {
|
|
157321
|
+
input: AssetsVerticalArchiveInsightInput;
|
|
157322
|
+
};
|
|
156598
157323
|
export declare type MutationAssetsVertical_CreateAssetTypesTrackingsArgs = {
|
|
156599
157324
|
input: AssetsVerticalCreateAssetTypesTrackingsInput;
|
|
156600
157325
|
};
|
|
@@ -157869,6 +158594,10 @@ export declare type MutationCsmAi_UpdateWidgetArgs = {
|
|
|
157869
158594
|
input: CsmAiWidgetUpdateInput;
|
|
157870
158595
|
widgetId: Scalars['ID']['input'];
|
|
157871
158596
|
};
|
|
158597
|
+
export declare type MutationCsm_UpdateCustomerNameArgs = {
|
|
158598
|
+
cloudId: Scalars['ID']['input'];
|
|
158599
|
+
input: CustomerServiceUpdateCustomerNameInput;
|
|
158600
|
+
};
|
|
157872
158601
|
export declare type MutationCsm_UpdateLiveChatSettingsArgs = {
|
|
157873
158602
|
cloudId: Scalars['ID']['input'];
|
|
157874
158603
|
input: CustomerServiceLiveChatSettingsInput;
|
|
@@ -158382,6 +159111,9 @@ export declare type MutationGoals_UnlinkJiraAlignProjectArgs = {
|
|
|
158382
159111
|
export declare type MutationGoals_UnlinkWorkItemArgs = {
|
|
158383
159112
|
input?: InputMaybe<TownsquareGoalsUnlinkWorkItemInput>;
|
|
158384
159113
|
};
|
|
159114
|
+
export declare type MutationGoals_UpdateAppPermissionPoliciesArgs = {
|
|
159115
|
+
input: TownsquareUpdateGoalsAppPermissionPoliciesInput;
|
|
159116
|
+
};
|
|
158385
159117
|
export declare type MutationGrantContentAccessArgs = {
|
|
158386
159118
|
grantContentAccessInput: GrantContentAccessInput;
|
|
158387
159119
|
};
|
|
@@ -158394,9 +159126,15 @@ export declare type MutationGraphIntegration_AddTwgCapabilityContainerArgs = {
|
|
|
158394
159126
|
export declare type MutationGraphIntegration_CreateDataConnectorConnectionArgs = {
|
|
158395
159127
|
input: GraphIntegrationCreateDataConnectorConnectionInput;
|
|
158396
159128
|
};
|
|
159129
|
+
export declare type MutationGraphIntegration_CreateSkillArgs = {
|
|
159130
|
+
input: GraphIntegrationCreateSkillInput;
|
|
159131
|
+
};
|
|
158397
159132
|
export declare type MutationGraphIntegration_DeleteDataConnectorConnectionArgs = {
|
|
158398
159133
|
input: GraphIntegrationDeleteDataConnectorConnectionInput;
|
|
158399
159134
|
};
|
|
159135
|
+
export declare type MutationGraphIntegration_DeleteSkillArgs = {
|
|
159136
|
+
input: GraphIntegrationDeleteSkillInput;
|
|
159137
|
+
};
|
|
158400
159138
|
export declare type MutationGraphIntegration_McpAdminManagementRegisterMcpServerArgs = {
|
|
158401
159139
|
input: GraphIntegrationMcpAdminManagementRegisterMcpServerInput;
|
|
158402
159140
|
};
|
|
@@ -158421,6 +159159,9 @@ export declare type MutationGraphIntegration_SetTwgPlatformCapabilityGlobalAdmin
|
|
|
158421
159159
|
export declare type MutationGraphIntegration_UpdateDataConnectorConnectionArgs = {
|
|
158422
159160
|
input: GraphIntegrationUpdateDataConnectorConnectionInput;
|
|
158423
159161
|
};
|
|
159162
|
+
export declare type MutationGraphIntegration_UpdateSkillArgs = {
|
|
159163
|
+
input: GraphIntegrationUpdateSkillInput;
|
|
159164
|
+
};
|
|
158424
159165
|
export declare type MutationGravity_AddReactionArgs = {
|
|
158425
159166
|
cloudId: Scalars['ID']['input'];
|
|
158426
159167
|
input: GravityAddReactionInput;
|
|
@@ -158768,6 +159509,9 @@ export declare type MutationJira_SetBoardViewFilterArgs = {
|
|
|
158768
159509
|
export declare type MutationJira_SetBoardViewGroupByArgs = {
|
|
158769
159510
|
input: JiraSetBoardViewGroupByInput;
|
|
158770
159511
|
};
|
|
159512
|
+
export declare type MutationJira_SetBoardViewStatusColumnIssueCountLimitArgs = {
|
|
159513
|
+
input: JiraSetBoardViewStatusColumnIssueCountLimitInput;
|
|
159514
|
+
};
|
|
158771
159515
|
export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
|
|
158772
159516
|
input: JiraSetBoardViewStatusColumnMappingInput;
|
|
158773
159517
|
};
|
|
@@ -159473,6 +160217,9 @@ export declare type MutationProjects_ShareProjectArgs = {
|
|
|
159473
160217
|
export declare type MutationProjects_ShareUpdateArgs = {
|
|
159474
160218
|
input: TownsquareProjectsShareUpdateInput;
|
|
159475
160219
|
};
|
|
160220
|
+
export declare type MutationProjects_UpdateAppPermissionPoliciesArgs = {
|
|
160221
|
+
input: TownsquareUpdateProjectsAppPermissionPoliciesInput;
|
|
160222
|
+
};
|
|
159476
160223
|
export declare type MutationPublicLinkPagesAdminActionArgs = {
|
|
159477
160224
|
action: PublicLinkAdminAction;
|
|
159478
160225
|
pageIds: Array<Scalars['ID']['input']>;
|
|
@@ -163533,6 +164280,7 @@ export declare type Query = {
|
|
|
163533
164280
|
agentStudio_scenarioListByContainerId?: Maybe<AgentStudioScenariosResult>;
|
|
163534
164281
|
agentStudio_scenariosByIds?: Maybe<Array<Maybe<AgentStudioScenario>>>;
|
|
163535
164282
|
agentStudio_suggestConversationStarters?: Maybe<AgentStudioSuggestConversationStartersResult>;
|
|
164283
|
+
agentStudio_testConversationListByContainerId?: Maybe<AgentStudioConversationListResult>;
|
|
163536
164284
|
agentStudio_toolIntegrations?: Maybe<AgentStudioToolIntegrationsConnection>;
|
|
163537
164285
|
agentStudio_tools?: Maybe<AgentStudioToolsConnection>;
|
|
163538
164286
|
agentStudio_validateScenario?: Maybe<AgentStudioScenarioValidationPayload>;
|
|
@@ -163551,10 +164299,13 @@ export declare type Query = {
|
|
|
163551
164299
|
agentWorkspace_capacitySummary?: Maybe<AgentWorkspaceCapacitySummary>;
|
|
163552
164300
|
agentWorkspace_categorySkillsInProject?: Maybe<AgentWorkspaceSkillConnection>;
|
|
163553
164301
|
agentWorkspace_clusterServiceCategories?: Maybe<AgentWorkspaceServiceClusteringResult>;
|
|
164302
|
+
agentWorkspace_coverShiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
163554
164303
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
163555
164304
|
agentWorkspace_draftedRoutingTable?: Maybe<AgentWorkspaceDraftedRoutingTable>;
|
|
163556
164305
|
agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
|
|
164306
|
+
agentWorkspace_issueRoutingHistory?: Maybe<AgentWorkspaceIssueRoutingHistory>;
|
|
163557
164307
|
agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
164308
|
+
agentWorkspace_recommendedAgentsForCoverageGap?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
163558
164309
|
agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
163559
164310
|
agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
|
|
163560
164311
|
agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
@@ -163579,6 +164330,7 @@ export declare type Query = {
|
|
|
163579
164330
|
agentWorkspace_teamsConnectedToProject?: Maybe<AgentWorkspaceTeamConnection>;
|
|
163580
164331
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
163581
164332
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
164333
|
+
aiCoreApi_fetchRsaReport?: Maybe<AiCoreApiRsaFetchReportResult>;
|
|
163582
164334
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
163583
164335
|
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
163584
164336
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
@@ -163917,6 +164669,7 @@ export declare type Query = {
|
|
|
163917
164669
|
confluence_isSpaceRoleAssignedToUserTypes?: Maybe<ConfluenceSpaceRoleAssigned>;
|
|
163918
164670
|
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
163919
164671
|
confluence_latestInProgressSpacePermissionTransitionTaskId?: Maybe<Scalars['String']['output']>;
|
|
164672
|
+
confluence_latestInProgressSpacePermissionTransitionTaskProgress?: Maybe<ConfluenceSpacePermissionTransitionTaskProgress>;
|
|
163920
164673
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
163921
164674
|
confluence_legacyEditorReportDownloadLink?: Maybe<ConfluenceLegacyEditorReportDownloadLink>;
|
|
163922
164675
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
@@ -164204,6 +164957,7 @@ export declare type Query = {
|
|
|
164204
164957
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
164205
164958
|
goals_allWatchedGoalUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
164206
164959
|
goals_allWatchedGoalUpdatesCount?: Maybe<Scalars['Int']['output']>;
|
|
164960
|
+
goals_appPermissionPolicies?: Maybe<TownsquareGoalsAppPermissionPolicyConnection>;
|
|
164207
164961
|
goals_appSettings?: Maybe<TownsquareGoalsAppSettings>;
|
|
164208
164962
|
goals_byId?: Maybe<TownsquareGoal>;
|
|
164209
164963
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
@@ -164409,6 +165163,8 @@ export declare type Query = {
|
|
|
164409
165163
|
knowledgeDiscovery?: Maybe<KnowledgeDiscoveryQueryApi>;
|
|
164410
165164
|
labelSearch?: Maybe<LabelSearchResults>;
|
|
164411
165165
|
latestKnowledgeGraphObject?: Maybe<KnowledgeGraphObjectResponse>;
|
|
165166
|
+
learning?: Maybe<LearningQuery>;
|
|
165167
|
+
learning_healthCheck?: Maybe<Scalars['String']['output']>;
|
|
164412
165168
|
license?: Maybe<License>;
|
|
164413
165169
|
linksIncomingToConfluencePage?: Maybe<GraphStoreCypherQueryConnection>;
|
|
164414
165170
|
linksIncomingToJiraIssue?: Maybe<GraphStoreCypherQueryConnection>;
|
|
@@ -164445,6 +165201,7 @@ export declare type Query = {
|
|
|
164445
165201
|
loom_workspaceTrendingVideos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
164446
165202
|
loom_workspaces?: Maybe<Array<Maybe<LoomWorkspace>>>;
|
|
164447
165203
|
lpLearnerData?: Maybe<LpLearnerData>;
|
|
165204
|
+
m360Service_helloWorld?: Maybe<M360ServiceHelloWorldPayload>;
|
|
164448
165205
|
macroBodyRenderer?: Maybe<MacroBody>;
|
|
164449
165206
|
macros?: Maybe<MacroConnection>;
|
|
164450
165207
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
@@ -164540,6 +165297,7 @@ export declare type Query = {
|
|
|
164540
165297
|
productListings: Array<ProductListingResult>;
|
|
164541
165298
|
projects_allWatchedProjectUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
164542
165299
|
projects_allWatchedProjectUpdatesCount?: Maybe<Scalars['Int']['output']>;
|
|
165300
|
+
projects_appPermissionPolicies?: Maybe<TownsquareProjectsAppPermissionPolicyConnection>;
|
|
164543
165301
|
projects_appSettings?: Maybe<TownsquareProjectsAppSettings>;
|
|
164544
165302
|
projects_byAri?: Maybe<TownsquareProject>;
|
|
164545
165303
|
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
@@ -164680,6 +165438,7 @@ export declare type Query = {
|
|
|
164680
165438
|
stakeholderComms_getComponentsWithUptimeByPageIdV2?: Maybe<StakeholderCommsNestedComponentWithUptimeConnection>;
|
|
164681
165439
|
stakeholderComms_getDraftComponentsByPageId?: Maybe<StakeholderCommsPageDraftComponentResponse>;
|
|
164682
165440
|
stakeholderComms_getDraftComponentsByPageIdV2?: Maybe<StakeholderCommsNestedComponentConnection>;
|
|
165441
|
+
stakeholderComms_getDraftEmailForIncident?: Maybe<StakeholderCommsDraftEmailResponse>;
|
|
164683
165442
|
stakeholderComms_getDraftPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
164684
165443
|
stakeholderComms_getDraftPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
164685
165444
|
stakeholderComms_getFileReadMediaToken?: Maybe<StakeholderCommsMediaToken>;
|
|
@@ -165413,6 +166172,15 @@ export declare type QueryAgentStudio_SuggestConversationStartersArgs = {
|
|
|
165413
166172
|
cloudId: Scalars['String']['input'];
|
|
165414
166173
|
input: AgentStudioSuggestConversationStartersInput;
|
|
165415
166174
|
};
|
|
166175
|
+
export declare type QueryAgentStudio_TestConversationListByContainerIdArgs = {
|
|
166176
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
166177
|
+
cloudId: Scalars['String']['input'];
|
|
166178
|
+
containerAri: Scalars['ID']['input'];
|
|
166179
|
+
experienceId: Scalars['String']['input'];
|
|
166180
|
+
filter?: InputMaybe<AgentStudioLiveConversationFilterInput>;
|
|
166181
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
166182
|
+
productType: AgentStudioProductType;
|
|
166183
|
+
};
|
|
165416
166184
|
export declare type QueryAgentStudio_ToolIntegrationsArgs = {
|
|
165417
166185
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
165418
166186
|
cloudId: Scalars['String']['input'];
|
|
@@ -165511,6 +166279,9 @@ export declare type QueryAgentWorkspace_ClusterServiceCategoriesArgs = {
|
|
|
165511
166279
|
projectKey: Scalars['String']['input'];
|
|
165512
166280
|
serviceFieldId: Scalars['String']['input'];
|
|
165513
166281
|
};
|
|
166282
|
+
export declare type QueryAgentWorkspace_CoverShiftEditBoundsArgs = {
|
|
166283
|
+
input: AgentWorkspaceCoverShiftEditBoundsInput;
|
|
166284
|
+
};
|
|
165514
166285
|
export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
165515
166286
|
cloudId: Scalars['ID']['input'];
|
|
165516
166287
|
projectKey: Scalars['String']['input'];
|
|
@@ -165521,10 +166292,17 @@ export declare type QueryAgentWorkspace_DraftedRoutingTableArgs = {
|
|
|
165521
166292
|
export declare type QueryAgentWorkspace_EligibleGroupsArgs = {
|
|
165522
166293
|
projectAri: Scalars['ID']['input'];
|
|
165523
166294
|
};
|
|
166295
|
+
export declare type QueryAgentWorkspace_IssueRoutingHistoryArgs = {
|
|
166296
|
+
cloudId: Scalars['ID']['input'];
|
|
166297
|
+
issueKey: Scalars['String']['input'];
|
|
166298
|
+
};
|
|
165524
166299
|
export declare type QueryAgentWorkspace_ProjectDefaultAvailabilityArgs = {
|
|
165525
166300
|
cloudId: Scalars['ID']['input'];
|
|
165526
166301
|
projectId: Scalars['ID']['input'];
|
|
165527
166302
|
};
|
|
166303
|
+
export declare type QueryAgentWorkspace_RecommendedAgentsForCoverageGapArgs = {
|
|
166304
|
+
input: AgentWorkspaceRecommendedAgentsForCoverageGapInput;
|
|
166305
|
+
};
|
|
165528
166306
|
export declare type QueryAgentWorkspace_RecommendedAgentsForGapArgs = {
|
|
165529
166307
|
input: AgentWorkspaceRecommendedAgentsForGapInput;
|
|
165530
166308
|
};
|
|
@@ -165654,6 +166432,10 @@ export declare type QueryAgent_SessionQueryArgs = {
|
|
|
165654
166432
|
shardingContext?: InputMaybe<Scalars['String']['input']>;
|
|
165655
166433
|
sort?: InputMaybe<Scalars['String']['input']>;
|
|
165656
166434
|
};
|
|
166435
|
+
export declare type QueryAiCoreApi_FetchRsaReportArgs = {
|
|
166436
|
+
jobId: Scalars['ID']['input'];
|
|
166437
|
+
queryTypes?: InputMaybe<Array<AiCoreApiRsaQueryType>>;
|
|
166438
|
+
};
|
|
165657
166439
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
165658
166440
|
projectAri: Scalars['ID']['input'];
|
|
165659
166441
|
};
|
|
@@ -167183,6 +167965,9 @@ export declare type QueryConfluence_IsWatchingLabelArgs = {
|
|
|
167183
167965
|
export declare type QueryConfluence_LatestInProgressSpacePermissionTransitionTaskIdArgs = {
|
|
167184
167966
|
cloudId: Scalars['ID']['input'];
|
|
167185
167967
|
};
|
|
167968
|
+
export declare type QueryConfluence_LatestInProgressSpacePermissionTransitionTaskProgressArgs = {
|
|
167969
|
+
cloudId: Scalars['ID']['input'];
|
|
167970
|
+
};
|
|
167186
167971
|
export declare type QueryConfluence_LatestKnowledgeGraphObjectV2Args = {
|
|
167187
167972
|
cloudId: Scalars['String']['input'];
|
|
167188
167973
|
contentId: Scalars['ID']['input'];
|
|
@@ -168422,6 +169207,7 @@ export declare type QueryFocus_ViewsSearchArgs = {
|
|
|
168422
169207
|
cloudId: Scalars['ID']['input'];
|
|
168423
169208
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
168424
169209
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
169210
|
+
sort?: InputMaybe<Array<MercuryViewSort>>;
|
|
168425
169211
|
};
|
|
168426
169212
|
export declare type QueryForYouFeedArgs = {
|
|
168427
169213
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -168507,6 +169293,11 @@ export declare type QueryGoals_AllWatchedGoalUpdatesCountArgs = {
|
|
|
168507
169293
|
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
168508
169294
|
stateFilter?: InputMaybe<TownsquareUpdateStateFilter>;
|
|
168509
169295
|
};
|
|
169296
|
+
export declare type QueryGoals_AppPermissionPoliciesArgs = {
|
|
169297
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
169298
|
+
containerId: Scalars['ID']['input'];
|
|
169299
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
169300
|
+
};
|
|
168510
169301
|
export declare type QueryGoals_AppSettingsArgs = {
|
|
168511
169302
|
containerId: Scalars['ID']['input'];
|
|
168512
169303
|
};
|
|
@@ -169418,6 +170209,9 @@ export declare type QueryLoom_WorkspaceTrendingVideosArgs = {
|
|
|
169418
170209
|
export declare type QueryLoom_WorkspacesArgs = {
|
|
169419
170210
|
ids: Array<Scalars['ID']['input']>;
|
|
169420
170211
|
};
|
|
170212
|
+
export declare type QueryM360Service_HelloWorldArgs = {
|
|
170213
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
170214
|
+
};
|
|
169421
170215
|
export declare type QueryMacroBodyRendererArgs = {
|
|
169422
170216
|
adf: Scalars['String']['input'];
|
|
169423
170217
|
containedRender?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -169711,6 +170505,11 @@ export declare type QueryProjects_AllWatchedProjectUpdatesCountArgs = {
|
|
|
169711
170505
|
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
169712
170506
|
stateFilter?: InputMaybe<TownsquareUpdateStateFilter>;
|
|
169713
170507
|
};
|
|
170508
|
+
export declare type QueryProjects_AppPermissionPoliciesArgs = {
|
|
170509
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
170510
|
+
containerId: Scalars['ID']['input'];
|
|
170511
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170512
|
+
};
|
|
169714
170513
|
export declare type QueryProjects_AppSettingsArgs = {
|
|
169715
170514
|
containerId: Scalars['ID']['input'];
|
|
169716
170515
|
};
|
|
@@ -170289,6 +171088,11 @@ export declare type QueryStakeholderComms_GetDraftComponentsByPageIdV2Args = {
|
|
|
170289
171088
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
170290
171089
|
nestedComponentConnectionInput: StakeholderCommsNestedComponentConnectionInput;
|
|
170291
171090
|
};
|
|
171091
|
+
export declare type QueryStakeholderComms_GetDraftEmailForIncidentArgs = {
|
|
171092
|
+
audienceType: StakeholderCommsDraftEmailAudienceType;
|
|
171093
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
171094
|
+
incidentId: Scalars['String']['input'];
|
|
171095
|
+
};
|
|
170292
171096
|
export declare type QueryStakeholderComms_GetDraftPageByIdArgs = {
|
|
170293
171097
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
170294
171098
|
pageId: Scalars['String']['input'];
|
|
@@ -196746,6 +197550,16 @@ export declare type StakeholderCommsDnsRecordType = {
|
|
|
196746
197550
|
name: Scalars['String']['output'];
|
|
196747
197551
|
records: Array<StakeholderCommsDnsRecord>;
|
|
196748
197552
|
};
|
|
197553
|
+
export declare enum StakeholderCommsDraftEmailAudienceType {
|
|
197554
|
+
External = "EXTERNAL",
|
|
197555
|
+
Internal = "INTERNAL"
|
|
197556
|
+
}
|
|
197557
|
+
export declare type StakeholderCommsDraftEmailResponse = {
|
|
197558
|
+
__typename?: 'StakeholderCommsDraftEmailResponse';
|
|
197559
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
197560
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
197561
|
+
subject?: Maybe<Scalars['String']['output']>;
|
|
197562
|
+
};
|
|
196749
197563
|
export declare enum StakeholderCommsErrorType {
|
|
196750
197564
|
SystemError = "SYSTEM_ERROR",
|
|
196751
197565
|
ValidationError = "VALIDATION_ERROR"
|
|
@@ -198105,6 +198919,7 @@ export declare type Subscription = {
|
|
|
198105
198919
|
convoai_onAgentSessionCreate?: Maybe<ConvoAiAgentSessionCreate>;
|
|
198106
198920
|
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
198107
198921
|
convoai_onAgentSessionUpdatedByProjects?: Maybe<ConvoAiAgentSessionUpdatedByProjects>;
|
|
198922
|
+
convoai_onSessionUpdateByScopeId?: Maybe<ConvoAiAgentSessionUpdatePayload>;
|
|
198108
198923
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
198109
198924
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
198110
198925
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -198167,6 +198982,10 @@ export declare type SubscriptionConvoai_OnAgentSessionUpdatedByProjectsArgs = {
|
|
|
198167
198982
|
cloudId: Scalars['ID']['input'];
|
|
198168
198983
|
projectIds: Array<Scalars['String']['input']>;
|
|
198169
198984
|
};
|
|
198985
|
+
export declare type SubscriptionConvoai_OnSessionUpdateByScopeIdArgs = {
|
|
198986
|
+
cloudId: Scalars['ID']['input'];
|
|
198987
|
+
scopeId: Scalars['String']['input'];
|
|
198988
|
+
};
|
|
198170
198989
|
export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
|
|
198171
198990
|
cloudId: Scalars['ID']['input'];
|
|
198172
198991
|
jobId: Scalars['ID']['input'];
|
|
@@ -200859,6 +201678,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
200859
201678
|
parentGoalSuggestions?: Maybe<TownsquareGoalConnection>;
|
|
200860
201679
|
progress?: Maybe<TownsquareGoalProgress>;
|
|
200861
201680
|
projects?: Maybe<TownsquareProjectConnection>;
|
|
201681
|
+
restrictedBy?: Maybe<TownsquareGoal>;
|
|
200862
201682
|
risks?: Maybe<TownsquareRiskConnection>;
|
|
200863
201683
|
scoringMode?: Maybe<TownsquareGoalScoringMode>;
|
|
200864
201684
|
slackChannels?: Maybe<TownsquareSlackConnectionConnection>;
|
|
@@ -201139,8 +201959,12 @@ export declare type TownsquareGoalManageAccessInput = {
|
|
|
201139
201959
|
accessLevel?: InputMaybe<TownsquareGoalAccessLevel>;
|
|
201140
201960
|
added?: InputMaybe<TownsquareGoalManageAccessAddedInput>;
|
|
201141
201961
|
goalId: Scalars['ID']['input'];
|
|
201962
|
+
modified?: InputMaybe<TownsquareGoalManageAccessModifiedInput>;
|
|
201142
201963
|
revoked?: InputMaybe<TownsquareGoalManageAccessRevokedInput>;
|
|
201143
201964
|
};
|
|
201965
|
+
export declare type TownsquareGoalManageAccessModifiedInput = {
|
|
201966
|
+
roles: Array<TownsquareGoalRoleModifiedInput>;
|
|
201967
|
+
};
|
|
201144
201968
|
export declare type TownsquareGoalManageAccessPayload = {
|
|
201145
201969
|
__typename?: 'TownsquareGoalManageAccessPayload';
|
|
201146
201970
|
addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareGoalAccessEdge>>>;
|
|
@@ -201214,6 +202038,10 @@ export declare type TownsquareGoalRevokeAccessPayload = {
|
|
|
201214
202038
|
revokedPrincipalIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
201215
202039
|
success: Scalars['Boolean']['output'];
|
|
201216
202040
|
};
|
|
202041
|
+
export declare type TownsquareGoalRoleModifiedInput = {
|
|
202042
|
+
principalId: Scalars['ID']['input'];
|
|
202043
|
+
role: TownsquareGoalAccessRoleInput;
|
|
202044
|
+
};
|
|
201217
202045
|
export declare enum TownsquareGoalScoringMode {
|
|
201218
202046
|
Okr = "OKR",
|
|
201219
202047
|
Simple = "SIMPLE"
|
|
@@ -201425,6 +202253,49 @@ export declare type TownsquareGoalsAddViewPayload = {
|
|
|
201425
202253
|
success: Scalars['Boolean']['output'];
|
|
201426
202254
|
views?: Maybe<TownsquareGoalUserViews>;
|
|
201427
202255
|
};
|
|
202256
|
+
export declare enum TownsquareGoalsAppPermission {
|
|
202257
|
+
Archive = "ARCHIVE",
|
|
202258
|
+
ConnectionsManage = "CONNECTIONS_MANAGE",
|
|
202259
|
+
Create = "CREATE",
|
|
202260
|
+
Manage = "MANAGE",
|
|
202261
|
+
Update = "UPDATE",
|
|
202262
|
+
ViewsExport = "VIEWS_EXPORT"
|
|
202263
|
+
}
|
|
202264
|
+
export declare type TownsquareGoalsAppPermissionEntry = {
|
|
202265
|
+
__typename?: 'TownsquareGoalsAppPermissionEntry';
|
|
202266
|
+
isPermitted?: Maybe<Scalars['Boolean']['output']>;
|
|
202267
|
+
permission?: Maybe<TownsquareGoalsAppPermission>;
|
|
202268
|
+
};
|
|
202269
|
+
export declare type TownsquareGoalsAppPermissionInput = {
|
|
202270
|
+
isPermitted: Scalars['Boolean']['input'];
|
|
202271
|
+
permission: TownsquareGoalsAppPermission;
|
|
202272
|
+
};
|
|
202273
|
+
export declare type TownsquareGoalsAppPermissionPolicy = Node & {
|
|
202274
|
+
__typename?: 'TownsquareGoalsAppPermissionPolicy';
|
|
202275
|
+
appPermissions?: Maybe<Array<Maybe<TownsquareGoalsAppPermissionEntry>>>;
|
|
202276
|
+
group?: Maybe<IdentityGroup>;
|
|
202277
|
+
id: Scalars['ID']['output'];
|
|
202278
|
+
isDefaultGroup?: Maybe<Scalars['Boolean']['output']>;
|
|
202279
|
+
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
202280
|
+
productRoles?: Maybe<Array<Maybe<TownsquareProductRole>>>;
|
|
202281
|
+
resourceId: Scalars['ID']['output'];
|
|
202282
|
+
scopedGroupId: Scalars['ID']['output'];
|
|
202283
|
+
userCount?: Maybe<Scalars['Int']['output']>;
|
|
202284
|
+
};
|
|
202285
|
+
export declare type TownsquareGoalsAppPermissionPolicyConnection = {
|
|
202286
|
+
__typename?: 'TownsquareGoalsAppPermissionPolicyConnection';
|
|
202287
|
+
edges?: Maybe<Array<Maybe<TownsquareGoalsAppPermissionPolicyEdge>>>;
|
|
202288
|
+
pageInfo: PageInfo;
|
|
202289
|
+
};
|
|
202290
|
+
export declare type TownsquareGoalsAppPermissionPolicyEdge = {
|
|
202291
|
+
__typename?: 'TownsquareGoalsAppPermissionPolicyEdge';
|
|
202292
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
202293
|
+
node?: Maybe<TownsquareGoalsAppPermissionPolicy>;
|
|
202294
|
+
};
|
|
202295
|
+
export declare type TownsquareGoalsAppPermissionPolicyInput = {
|
|
202296
|
+
appPermissions: Array<TownsquareGoalsAppPermissionInput>;
|
|
202297
|
+
id: Scalars['ID']['input'];
|
|
202298
|
+
};
|
|
201428
202299
|
export declare type TownsquareGoalsAppSettings = {
|
|
201429
202300
|
__typename?: 'TownsquareGoalsAppSettings';
|
|
201430
202301
|
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -202366,6 +203237,10 @@ export declare type TownsquareNumberCustomFieldDefinition = Node & TownsquareCus
|
|
|
202366
203237
|
token?: Maybe<Scalars['String']['output']>;
|
|
202367
203238
|
type?: Maybe<TownsquareCustomFieldType>;
|
|
202368
203239
|
};
|
|
203240
|
+
export declare type TownsquareProductRole = {
|
|
203241
|
+
__typename?: 'TownsquareProductRole';
|
|
203242
|
+
role: Scalars['ID']['output'];
|
|
203243
|
+
};
|
|
202369
203244
|
export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
202370
203245
|
__typename?: 'TownsquareProject';
|
|
202371
203246
|
access?: Maybe<TownsquareProjectAccessConnection>;
|
|
@@ -202415,6 +203290,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
202415
203290
|
msteamsChannels?: Maybe<TownsquareMsteamsConnectedChannelConnection>;
|
|
202416
203291
|
name: Scalars['String']['output'];
|
|
202417
203292
|
owner?: Maybe<User>;
|
|
203293
|
+
pendingAutoAttachMilestones?: Maybe<Array<TownsquareMilestone>>;
|
|
202418
203294
|
risks?: Maybe<TownsquareRiskConnection>;
|
|
202419
203295
|
slackChannels?: Maybe<TownsquareSlackConnectionConnection>;
|
|
202420
203296
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -202697,9 +203573,13 @@ export declare type TownsquareProjectManageAccessAddedInput = {
|
|
|
202697
203573
|
export declare type TownsquareProjectManageAccessInput = {
|
|
202698
203574
|
accessLevel?: InputMaybe<TownsquareProjectAccessLevel>;
|
|
202699
203575
|
added?: InputMaybe<TownsquareProjectManageAccessAddedInput>;
|
|
203576
|
+
modified?: InputMaybe<TownsquareProjectManageAccessModifiedInput>;
|
|
202700
203577
|
projectId: Scalars['ID']['input'];
|
|
202701
203578
|
revoked?: InputMaybe<TownsquareProjectManageAccessRevokedInput>;
|
|
202702
203579
|
};
|
|
203580
|
+
export declare type TownsquareProjectManageAccessModifiedInput = {
|
|
203581
|
+
roles: Array<TownsquareProjectRoleModifiedInput>;
|
|
203582
|
+
};
|
|
202703
203583
|
export declare type TownsquareProjectManageAccessPayload = {
|
|
202704
203584
|
__typename?: 'TownsquareProjectManageAccessPayload';
|
|
202705
203585
|
addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareProjectAccessEdge>>>;
|
|
@@ -202734,6 +203614,10 @@ export declare type TownsquareProjectRevokeAccessPayload = {
|
|
|
202734
203614
|
revokedPrincipalIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
202735
203615
|
success: Scalars['Boolean']['output'];
|
|
202736
203616
|
};
|
|
203617
|
+
export declare type TownsquareProjectRoleModifiedInput = {
|
|
203618
|
+
principalId: Scalars['ID']['input'];
|
|
203619
|
+
role: TownsquareProjectAccessRoleInput;
|
|
203620
|
+
};
|
|
202737
203621
|
export declare enum TownsquareProjectSortEnum {
|
|
202738
203622
|
CreationDateAsc = "CREATION_DATE_ASC",
|
|
202739
203623
|
CreationDateDesc = "CREATION_DATE_DESC",
|
|
@@ -202907,6 +203791,49 @@ export declare type TownsquareProjectsAddViewPayload = {
|
|
|
202907
203791
|
success: Scalars['Boolean']['output'];
|
|
202908
203792
|
views?: Maybe<TownsquareProjectUserViews>;
|
|
202909
203793
|
};
|
|
203794
|
+
export declare enum TownsquareProjectsAppPermission {
|
|
203795
|
+
Archive = "ARCHIVE",
|
|
203796
|
+
ConnectionsManage = "CONNECTIONS_MANAGE",
|
|
203797
|
+
Create = "CREATE",
|
|
203798
|
+
Manage = "MANAGE",
|
|
203799
|
+
Update = "UPDATE",
|
|
203800
|
+
ViewsExport = "VIEWS_EXPORT"
|
|
203801
|
+
}
|
|
203802
|
+
export declare type TownsquareProjectsAppPermissionEntry = {
|
|
203803
|
+
__typename?: 'TownsquareProjectsAppPermissionEntry';
|
|
203804
|
+
isPermitted?: Maybe<Scalars['Boolean']['output']>;
|
|
203805
|
+
permission?: Maybe<TownsquareProjectsAppPermission>;
|
|
203806
|
+
};
|
|
203807
|
+
export declare type TownsquareProjectsAppPermissionInput = {
|
|
203808
|
+
isPermitted: Scalars['Boolean']['input'];
|
|
203809
|
+
permission: TownsquareProjectsAppPermission;
|
|
203810
|
+
};
|
|
203811
|
+
export declare type TownsquareProjectsAppPermissionPolicy = Node & {
|
|
203812
|
+
__typename?: 'TownsquareProjectsAppPermissionPolicy';
|
|
203813
|
+
appPermissions?: Maybe<Array<Maybe<TownsquareProjectsAppPermissionEntry>>>;
|
|
203814
|
+
group?: Maybe<IdentityGroup>;
|
|
203815
|
+
id: Scalars['ID']['output'];
|
|
203816
|
+
isDefaultGroup?: Maybe<Scalars['Boolean']['output']>;
|
|
203817
|
+
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
203818
|
+
productRoles?: Maybe<Array<Maybe<TownsquareProductRole>>>;
|
|
203819
|
+
resourceId: Scalars['ID']['output'];
|
|
203820
|
+
scopedGroupId: Scalars['ID']['output'];
|
|
203821
|
+
userCount?: Maybe<Scalars['Int']['output']>;
|
|
203822
|
+
};
|
|
203823
|
+
export declare type TownsquareProjectsAppPermissionPolicyConnection = {
|
|
203824
|
+
__typename?: 'TownsquareProjectsAppPermissionPolicyConnection';
|
|
203825
|
+
edges?: Maybe<Array<Maybe<TownsquareProjectsAppPermissionPolicyEdge>>>;
|
|
203826
|
+
pageInfo: PageInfo;
|
|
203827
|
+
};
|
|
203828
|
+
export declare type TownsquareProjectsAppPermissionPolicyEdge = {
|
|
203829
|
+
__typename?: 'TownsquareProjectsAppPermissionPolicyEdge';
|
|
203830
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
203831
|
+
node?: Maybe<TownsquareProjectsAppPermissionPolicy>;
|
|
203832
|
+
};
|
|
203833
|
+
export declare type TownsquareProjectsAppPermissionPolicyInput = {
|
|
203834
|
+
appPermissions: Array<TownsquareProjectsAppPermissionInput>;
|
|
203835
|
+
id: Scalars['ID']['input'];
|
|
203836
|
+
};
|
|
202910
203837
|
export declare type TownsquareProjectsAppSettings = {
|
|
202911
203838
|
__typename?: 'TownsquareProjectsAppSettings';
|
|
202912
203839
|
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -203554,6 +204481,7 @@ export declare type TownsquareSetParentGoalPayload = {
|
|
|
203554
204481
|
__typename?: 'TownsquareSetParentGoalPayload';
|
|
203555
204482
|
goal?: Maybe<TownsquareGoal>;
|
|
203556
204483
|
parentGoal?: Maybe<TownsquareGoal>;
|
|
204484
|
+
removedParentGoal?: Maybe<TownsquareGoal>;
|
|
203557
204485
|
};
|
|
203558
204486
|
export declare type TownsquareShareGoalUserInput = {
|
|
203559
204487
|
accountId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -203851,6 +204779,16 @@ export declare type TownsquareUpdateEdge = {
|
|
|
203851
204779
|
cursor: Scalars['String']['output'];
|
|
203852
204780
|
node?: Maybe<TownsquareUpdate>;
|
|
203853
204781
|
};
|
|
204782
|
+
export declare type TownsquareUpdateGoalsAppPermissionPoliciesInput = {
|
|
204783
|
+
containerId: Scalars['ID']['input'];
|
|
204784
|
+
policies: Array<TownsquareGoalsAppPermissionPolicyInput>;
|
|
204785
|
+
};
|
|
204786
|
+
export declare type TownsquareUpdateGoalsAppPermissionPoliciesPayload = {
|
|
204787
|
+
__typename?: 'TownsquareUpdateGoalsAppPermissionPoliciesPayload';
|
|
204788
|
+
errors?: Maybe<Array<MutationError>>;
|
|
204789
|
+
success: Scalars['Boolean']['output'];
|
|
204790
|
+
updatedPolicies?: Maybe<Array<Maybe<TownsquareGoalsAppPermissionPolicy>>>;
|
|
204791
|
+
};
|
|
203854
204792
|
export declare type TownsquareUpdateHighlightInput = {
|
|
203855
204793
|
description: Scalars['String']['input'];
|
|
203856
204794
|
summary: Scalars['String']['input'];
|
|
@@ -203883,6 +204821,16 @@ export declare type TownsquareUpdateNoteInput = {
|
|
|
203883
204821
|
updateNoteId?: InputMaybe<Scalars['ID']['input']>;
|
|
203884
204822
|
uuid?: InputMaybe<Scalars['String']['input']>;
|
|
203885
204823
|
};
|
|
204824
|
+
export declare type TownsquareUpdateProjectsAppPermissionPoliciesInput = {
|
|
204825
|
+
containerId: Scalars['ID']['input'];
|
|
204826
|
+
policies: Array<TownsquareProjectsAppPermissionPolicyInput>;
|
|
204827
|
+
};
|
|
204828
|
+
export declare type TownsquareUpdateProjectsAppPermissionPoliciesPayload = {
|
|
204829
|
+
__typename?: 'TownsquareUpdateProjectsAppPermissionPoliciesPayload';
|
|
204830
|
+
errors?: Maybe<Array<MutationError>>;
|
|
204831
|
+
success: Scalars['Boolean']['output'];
|
|
204832
|
+
updatedPolicies?: Maybe<Array<Maybe<TownsquareProjectsAppPermissionPolicy>>>;
|
|
204833
|
+
};
|
|
203886
204834
|
export declare enum TownsquareUpdateStateFilter {
|
|
203887
204835
|
Active = "ACTIVE",
|
|
203888
204836
|
AtRisk = "AT_RISK",
|
|
@@ -205806,6 +206754,7 @@ export declare type TrelloConvertBoardToTemplateInput = {
|
|
|
205806
206754
|
export declare type TrelloConvertBoardToTemplatePayload = Payload & {
|
|
205807
206755
|
__typename?: 'TrelloConvertBoardToTemplatePayload';
|
|
205808
206756
|
board?: Maybe<TrelloBoard>;
|
|
206757
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
205809
206758
|
errors?: Maybe<Array<MutationError>>;
|
|
205810
206759
|
success: Scalars['Boolean']['output'];
|
|
205811
206760
|
};
|
|
@@ -205935,6 +206884,7 @@ export declare type TrelloCreateBoardWithAiInput = {
|
|
|
205935
206884
|
export declare type TrelloCreateBoardWithAiPayload = Payload & {
|
|
205936
206885
|
__typename?: 'TrelloCreateBoardWithAiPayload';
|
|
205937
206886
|
board?: Maybe<TrelloBoard>;
|
|
206887
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
205938
206888
|
errors?: Maybe<Array<MutationError>>;
|
|
205939
206889
|
success: Scalars['Boolean']['output'];
|
|
205940
206890
|
};
|
|
@@ -207278,6 +208228,7 @@ export declare type TrelloMirrorCard = {
|
|
|
207278
208228
|
id: Scalars['ID']['output'];
|
|
207279
208229
|
mirrorCard?: Maybe<TrelloBaseCard>;
|
|
207280
208230
|
sourceBoard?: Maybe<TrelloBoard>;
|
|
208231
|
+
sourceBoardV2?: Maybe<TrelloBaseBoard>;
|
|
207281
208232
|
sourceCard?: Maybe<TrelloBaseCard>;
|
|
207282
208233
|
};
|
|
207283
208234
|
export declare type TrelloMirrorCardConnection = {
|
|
@@ -209023,6 +209974,7 @@ export declare type TrelloReactionLimits = {
|
|
|
209023
209974
|
};
|
|
209024
209975
|
export declare type TrelloRefreshManifestInput = {
|
|
209025
209976
|
cardId: Scalars['ID']['input'];
|
|
209977
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
209026
209978
|
};
|
|
209027
209979
|
export declare type TrelloRefreshManifestPayload = Payload & {
|
|
209028
209980
|
__typename?: 'TrelloRefreshManifestPayload';
|
|
@@ -209668,6 +210620,7 @@ export declare type TrelloUpdateBoardVisibilityInput = {
|
|
|
209668
210620
|
export declare type TrelloUpdateBoardVisibilityPayload = Payload & {
|
|
209669
210621
|
__typename?: 'TrelloUpdateBoardVisibilityPayload';
|
|
209670
210622
|
board?: Maybe<TrelloBoard>;
|
|
210623
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
209671
210624
|
errors?: Maybe<Array<MutationError>>;
|
|
209672
210625
|
success: Scalars['Boolean']['output'];
|
|
209673
210626
|
};
|