@forge/cli-shared 8.23.0-next.5 → 8.23.0-next.6
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'];
|
|
@@ -7191,6 +7268,12 @@ export declare type AgentWorkspaceRecommendationError = {
|
|
|
7191
7268
|
__typename?: 'AgentWorkspaceRecommendationError';
|
|
7192
7269
|
message: Scalars['String']['output'];
|
|
7193
7270
|
};
|
|
7271
|
+
export declare type AgentWorkspaceRecommendedAgentsForCoverageGapInput = {
|
|
7272
|
+
gapOwnerAgentId: Scalars['ID']['input'];
|
|
7273
|
+
projectARI: Scalars['ID']['input'];
|
|
7274
|
+
scheduleId: Scalars['ID']['input'];
|
|
7275
|
+
shiftSegmentId: Scalars['ID']['input'];
|
|
7276
|
+
};
|
|
7194
7277
|
export declare type AgentWorkspaceRecommendedAgentsForGapInput = {
|
|
7195
7278
|
originalAgentId: Scalars['ID']['input'];
|
|
7196
7279
|
projectARI: Scalars['ID']['input'];
|
|
@@ -7286,6 +7369,7 @@ export declare type AgentWorkspaceSchedule = {
|
|
|
7286
7369
|
__typename?: 'AgentWorkspaceSchedule';
|
|
7287
7370
|
agents: Array<AgentWorkspaceAgent>;
|
|
7288
7371
|
cloudId: Scalars['ID']['output'];
|
|
7372
|
+
coverageGapDetails?: Maybe<Array<AgentWorkspaceCoverageGap>>;
|
|
7289
7373
|
coverageGaps: Array<AgentWorkspaceTimeRange>;
|
|
7290
7374
|
createdAt: Scalars['DateTime']['output'];
|
|
7291
7375
|
createdBy: Scalars['String']['output'];
|
|
@@ -7433,7 +7517,6 @@ export declare type AgentWorkspaceSetTeamCapacitiesPayload = {
|
|
|
7433
7517
|
export declare type AgentWorkspaceShift = {
|
|
7434
7518
|
__typename?: 'AgentWorkspaceShift';
|
|
7435
7519
|
agentId: Scalars['ID']['output'];
|
|
7436
|
-
coverageGaps: Array<AgentWorkspaceTimeRange>;
|
|
7437
7520
|
durationMinutes: Scalars['Int']['output'];
|
|
7438
7521
|
endTime: Scalars['DateTime']['output'];
|
|
7439
7522
|
id: Scalars['ID']['output'];
|
|
@@ -7497,6 +7580,8 @@ export declare type AgentWorkspaceShiftsSummary = {
|
|
|
7497
7580
|
avgAgentsPerHour: Scalars['Float']['output'];
|
|
7498
7581
|
completedShiftsPercentage: Scalars['Float']['output'];
|
|
7499
7582
|
scheduledAgents: Scalars['Int']['output'];
|
|
7583
|
+
totalCoveredShifts: Scalars['Int']['output'];
|
|
7584
|
+
totalGaps: Scalars['Int']['output'];
|
|
7500
7585
|
totalShifts: Scalars['Int']['output'];
|
|
7501
7586
|
};
|
|
7502
7587
|
export declare type AgentWorkspaceSkill = {
|
|
@@ -7525,7 +7610,12 @@ export declare type AgentWorkspaceSkillCategory = {
|
|
|
7525
7610
|
id: Scalars['ID']['output'];
|
|
7526
7611
|
name?: Maybe<Scalars['String']['output']>;
|
|
7527
7612
|
skillCount?: Maybe<Scalars['Int']['output']>;
|
|
7528
|
-
skills?: Maybe<
|
|
7613
|
+
skills?: Maybe<AgentWorkspaceSkillConnection>;
|
|
7614
|
+
};
|
|
7615
|
+
export declare type AgentWorkspaceSkillCategorySkillsArgs = {
|
|
7616
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
7617
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
7618
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
7529
7619
|
};
|
|
7530
7620
|
export declare type AgentWorkspaceSkillCategoryConnection = {
|
|
7531
7621
|
__typename?: 'AgentWorkspaceSkillCategoryConnection';
|
|
@@ -7533,6 +7623,7 @@ export declare type AgentWorkspaceSkillCategoryConnection = {
|
|
|
7533
7623
|
errors?: Maybe<Array<QueryError>>;
|
|
7534
7624
|
nodes?: Maybe<Array<Maybe<AgentWorkspaceSkillCategory>>>;
|
|
7535
7625
|
pageInfo: PageInfo;
|
|
7626
|
+
totalCategoryCount?: Maybe<Scalars['Int']['output']>;
|
|
7536
7627
|
};
|
|
7537
7628
|
export declare type AgentWorkspaceSkillCategoryCreateInput = {
|
|
7538
7629
|
description?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -7854,6 +7945,83 @@ export declare type AiCoreApiQuestionWithType = {
|
|
|
7854
7945
|
question: Scalars['String']['output'];
|
|
7855
7946
|
type: AiCoreApiQuestionType;
|
|
7856
7947
|
};
|
|
7948
|
+
export declare type AiCoreApiRsaAssistedResult = {
|
|
7949
|
+
__typename?: 'AiCoreApiRsaAssistedResult';
|
|
7950
|
+
assistedByRovo: Scalars['Int']['output'];
|
|
7951
|
+
assistedByRovoPercentage: Scalars['Float']['output'];
|
|
7952
|
+
totalClosed: Scalars['Int']['output'];
|
|
7953
|
+
};
|
|
7954
|
+
export declare type AiCoreApiRsaEmployeeContributor = {
|
|
7955
|
+
__typename?: 'AiCoreApiRsaEmployeeContributor';
|
|
7956
|
+
accountId: Scalars['ID']['output'];
|
|
7957
|
+
delegationCount: Scalars['Int']['output'];
|
|
7958
|
+
};
|
|
7959
|
+
export declare type AiCoreApiRsaEmployeeResult = {
|
|
7960
|
+
__typename?: 'AiCoreApiRsaEmployeeResult';
|
|
7961
|
+
contributors: Array<AiCoreApiRsaEmployeeContributor>;
|
|
7962
|
+
};
|
|
7963
|
+
export declare type AiCoreApiRsaFetchReportResult = AiCoreApiRsaReportPayload | QueryError;
|
|
7964
|
+
export declare type AiCoreApiRsaFunnelResult = {
|
|
7965
|
+
__typename?: 'AiCoreApiRsaFunnelResult';
|
|
7966
|
+
autonomouslyResolved: Scalars['Int']['output'];
|
|
7967
|
+
resolvedByRovo: Scalars['Int']['output'];
|
|
7968
|
+
};
|
|
7969
|
+
export declare type AiCoreApiRsaInitiateReportResult = AiCoreApiRsaReportJob | QueryError;
|
|
7970
|
+
export declare enum AiCoreApiRsaJobStatus {
|
|
7971
|
+
Completed = "COMPLETED",
|
|
7972
|
+
Failed = "FAILED",
|
|
7973
|
+
InProgress = "IN_PROGRESS"
|
|
7974
|
+
}
|
|
7975
|
+
export declare enum AiCoreApiRsaQueryType {
|
|
7976
|
+
Assisted = "ASSISTED",
|
|
7977
|
+
Employee = "EMPLOYEE",
|
|
7978
|
+
Funnel = "FUNNEL",
|
|
7979
|
+
Resolved = "RESOLVED",
|
|
7980
|
+
RtDistribution = "RT_DISTRIBUTION"
|
|
7981
|
+
}
|
|
7982
|
+
export declare type AiCoreApiRsaReportInput = {
|
|
7983
|
+
cloudId?: InputMaybe<Scalars['ID']['input']>;
|
|
7984
|
+
durationInDays?: InputMaybe<Scalars['Int']['input']>;
|
|
7985
|
+
projectAri: Scalars['ID']['input'];
|
|
7986
|
+
reportType: AiCoreApiRsaReportType;
|
|
7987
|
+
};
|
|
7988
|
+
export declare type AiCoreApiRsaReportJob = {
|
|
7989
|
+
__typename?: 'AiCoreApiRsaReportJob';
|
|
7990
|
+
jobId: Scalars['ID']['output'];
|
|
7991
|
+
};
|
|
7992
|
+
export declare type AiCoreApiRsaReportPayload = {
|
|
7993
|
+
__typename?: 'AiCoreApiRsaReportPayload';
|
|
7994
|
+
assisted?: Maybe<AiCoreApiRsaAssistedResult>;
|
|
7995
|
+
completedAt?: Maybe<Scalars['String']['output']>;
|
|
7996
|
+
employee?: Maybe<AiCoreApiRsaEmployeeResult>;
|
|
7997
|
+
errorCode?: Maybe<Scalars['String']['output']>;
|
|
7998
|
+
errorMessage?: Maybe<Scalars['String']['output']>;
|
|
7999
|
+
funnel?: Maybe<AiCoreApiRsaFunnelResult>;
|
|
8000
|
+
resolved?: Maybe<AiCoreApiRsaResolvedResult>;
|
|
8001
|
+
rtDistribution?: Maybe<AiCoreApiRsaRtDistributionResult>;
|
|
8002
|
+
status: AiCoreApiRsaJobStatus;
|
|
8003
|
+
truncated?: Maybe<Scalars['Boolean']['output']>;
|
|
8004
|
+
};
|
|
8005
|
+
export declare enum AiCoreApiRsaReportType {
|
|
8006
|
+
Overview = "OVERVIEW"
|
|
8007
|
+
}
|
|
8008
|
+
export declare type AiCoreApiRsaRequestTypeEntry = {
|
|
8009
|
+
__typename?: 'AiCoreApiRsaRequestTypeEntry';
|
|
8010
|
+
assisted: Scalars['Int']['output'];
|
|
8011
|
+
fullyResolved: Scalars['Int']['output'];
|
|
8012
|
+
requestTypeName: Scalars['String']['output'];
|
|
8013
|
+
totalClosed: Scalars['Int']['output'];
|
|
8014
|
+
};
|
|
8015
|
+
export declare type AiCoreApiRsaResolvedResult = {
|
|
8016
|
+
__typename?: 'AiCoreApiRsaResolvedResult';
|
|
8017
|
+
fullyResolved: Scalars['Int']['output'];
|
|
8018
|
+
fullyResolvedPercentage: Scalars['Float']['output'];
|
|
8019
|
+
totalClosed: Scalars['Int']['output'];
|
|
8020
|
+
};
|
|
8021
|
+
export declare type AiCoreApiRsaRtDistributionResult = {
|
|
8022
|
+
__typename?: 'AiCoreApiRsaRtDistributionResult';
|
|
8023
|
+
byRequestType: Array<AiCoreApiRsaRequestTypeEntry>;
|
|
8024
|
+
};
|
|
7857
8025
|
export declare type AiCoreApiVsaQuestions = {
|
|
7858
8026
|
__typename?: 'AiCoreApiVSAQuestions';
|
|
7859
8027
|
projectAri: Scalars['ID']['output'];
|
|
@@ -12727,6 +12895,18 @@ export declare type AssetsUserAttributeValue = {
|
|
|
12727
12895
|
id?: Maybe<Scalars['String']['output']>;
|
|
12728
12896
|
name?: Maybe<Scalars['String']['output']>;
|
|
12729
12897
|
};
|
|
12898
|
+
export declare type AssetsVerticalArchiveInsightInput = {
|
|
12899
|
+
archived: Scalars['Boolean']['input'];
|
|
12900
|
+
cloudId: Scalars['ID']['input'];
|
|
12901
|
+
insightDefinitionId: Scalars['ID']['input'];
|
|
12902
|
+
insightSource: AssetsVerticalInsightSource;
|
|
12903
|
+
};
|
|
12904
|
+
export declare type AssetsVerticalArchiveInsightPayload = Payload & {
|
|
12905
|
+
__typename?: 'AssetsVerticalArchiveInsightPayload';
|
|
12906
|
+
errors?: Maybe<Array<MutationError>>;
|
|
12907
|
+
isArchived?: Maybe<Scalars['Boolean']['output']>;
|
|
12908
|
+
success: Scalars['Boolean']['output'];
|
|
12909
|
+
};
|
|
12730
12910
|
export declare type AssetsVerticalAssetTypeSelectionInput = {
|
|
12731
12911
|
objSchemaCdmAri: Scalars['String']['input'];
|
|
12732
12912
|
objTypeCdmAri: Scalars['String']['input'];
|
|
@@ -13026,6 +13206,7 @@ export declare type AssetsVerticalDepreciationRuleConnection = {
|
|
|
13026
13206
|
__typename?: 'AssetsVerticalDepreciationRuleConnection';
|
|
13027
13207
|
edges: Array<AssetsVerticalDepreciationRuleEdge>;
|
|
13028
13208
|
pageInfo: PageInfo;
|
|
13209
|
+
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
13029
13210
|
};
|
|
13030
13211
|
export declare type AssetsVerticalDepreciationRuleEdge = {
|
|
13031
13212
|
__typename?: 'AssetsVerticalDepreciationRuleEdge';
|
|
@@ -13127,6 +13308,10 @@ export declare type AssetsVerticalInsightGenerationError = {
|
|
|
13127
13308
|
message: Scalars['String']['output'];
|
|
13128
13309
|
retryable: Scalars['Boolean']['output'];
|
|
13129
13310
|
};
|
|
13311
|
+
export declare enum AssetsVerticalInsightSource {
|
|
13312
|
+
Custom = "CUSTOM",
|
|
13313
|
+
Ootb = "OOTB"
|
|
13314
|
+
}
|
|
13130
13315
|
export declare type AssetsVerticalInsights = {
|
|
13131
13316
|
__typename?: 'AssetsVerticalInsights';
|
|
13132
13317
|
error?: Maybe<AssetsVerticalInsightGenerationError>;
|
|
@@ -18530,6 +18715,7 @@ export declare type CommerceExpCcpEntitlement = {
|
|
|
18530
18715
|
contract?: Maybe<CommerceExpCommercialContract>;
|
|
18531
18716
|
currentPromotions?: Maybe<Array<Maybe<CommerceExpCcpPromotion>>>;
|
|
18532
18717
|
currentUserPermissions?: Maybe<Array<Maybe<CommerceExpUserPermission>>>;
|
|
18718
|
+
forecastBillEstimates?: Maybe<CommerceExpForecastBillEstimates>;
|
|
18533
18719
|
hasConnectedAnnualProductEntitlements?: Maybe<Scalars['Boolean']['output']>;
|
|
18534
18720
|
id: Scalars['ID']['output'];
|
|
18535
18721
|
inactiveSubscription?: Maybe<CommerceExpCcpSubscription>;
|
|
@@ -19905,12 +20091,17 @@ export declare type CommerceExpEntitlementAccountModificationForBac = {
|
|
|
19905
20091
|
transactionAccount?: Maybe<CommerceExpCcpTransactionAccount>;
|
|
19906
20092
|
validAccountModificationOrder?: Maybe<CommerceExpValidOrderResponse>;
|
|
19907
20093
|
};
|
|
20094
|
+
export declare enum CommerceExpEntitlementActionCtaType {
|
|
20095
|
+
Primary = "PRIMARY",
|
|
20096
|
+
Secondary = "SECONDARY"
|
|
20097
|
+
}
|
|
19908
20098
|
export declare enum CommerceExpEntitlementActionExperienceType {
|
|
19909
20099
|
ContactSupport = "CONTACT_SUPPORT",
|
|
19910
20100
|
NotAvailable = "NOT_AVAILABLE",
|
|
19911
20101
|
SelfServe = "SELF_SERVE"
|
|
19912
20102
|
}
|
|
19913
20103
|
export declare type CommerceExpEntitlementActionResult = {
|
|
20104
|
+
ctaType?: Maybe<CommerceExpEntitlementActionCtaType>;
|
|
19914
20105
|
experienceType?: Maybe<CommerceExpEntitlementActionExperienceType>;
|
|
19915
20106
|
};
|
|
19916
20107
|
export declare type CommerceExpEntitlementActions = {
|
|
@@ -19940,6 +20131,7 @@ export declare type CommerceExpEntitlementActionsV2 = {
|
|
|
19940
20131
|
reactivate?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
19941
20132
|
removeFromEnterprise?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
19942
20133
|
removeFromMultiInstance?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
20134
|
+
unbundleCollection?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
19943
20135
|
undoCancellation?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
19944
20136
|
viewBillingPartner?: Maybe<CommerceExpGenericEntitlementActionResult>;
|
|
19945
20137
|
};
|
|
@@ -20116,6 +20308,17 @@ export declare type CommerceExpExpectedBillsLineItem = {
|
|
|
20116
20308
|
taxItems?: Maybe<Array<Maybe<CommerceExpTaxItemsResponse>>>;
|
|
20117
20309
|
total?: Maybe<Scalars['Float']['output']>;
|
|
20118
20310
|
};
|
|
20311
|
+
export declare type CommerceExpForecastBillEstimateResult = {
|
|
20312
|
+
__typename?: 'CommerceExpForecastBillEstimateResult';
|
|
20313
|
+
created?: Maybe<Scalars['Float']['output']>;
|
|
20314
|
+
currency?: Maybe<Scalars['String']['output']>;
|
|
20315
|
+
total?: Maybe<Scalars['Float']['output']>;
|
|
20316
|
+
};
|
|
20317
|
+
export declare type CommerceExpForecastBillEstimates = {
|
|
20318
|
+
__typename?: 'CommerceExpForecastBillEstimates';
|
|
20319
|
+
high?: Maybe<CommerceExpForecastBillEstimateResult>;
|
|
20320
|
+
low?: Maybe<CommerceExpForecastBillEstimateResult>;
|
|
20321
|
+
};
|
|
20119
20322
|
export declare type CommerceExpForecastResult = {
|
|
20120
20323
|
__typename?: 'CommerceExpForecastResult';
|
|
20121
20324
|
extraUsageHigh?: Maybe<Scalars['Float']['output']>;
|
|
@@ -20140,6 +20343,7 @@ export declare type CommerceExpForecastingOutput = {
|
|
|
20140
20343
|
};
|
|
20141
20344
|
export declare type CommerceExpGenericEntitlementActionResult = CommerceExpEntitlementActionResult & {
|
|
20142
20345
|
__typename?: 'CommerceExpGenericEntitlementActionResult';
|
|
20346
|
+
ctaType?: Maybe<CommerceExpEntitlementActionCtaType>;
|
|
20143
20347
|
experienceType?: Maybe<CommerceExpEntitlementActionExperienceType>;
|
|
20144
20348
|
};
|
|
20145
20349
|
export declare type CommerceExpGenericError = {
|
|
@@ -32884,6 +33088,28 @@ export declare type ConfluenceSpacePermissionPageInfo = {
|
|
|
32884
33088
|
hasPreviousPage: Scalars['Boolean']['output'];
|
|
32885
33089
|
startCursor?: Maybe<Scalars['String']['output']>;
|
|
32886
33090
|
};
|
|
33091
|
+
export declare type ConfluenceSpacePermissionTransitionTaskProgress = {
|
|
33092
|
+
__typename?: 'ConfluenceSpacePermissionTransitionTaskProgress';
|
|
33093
|
+
currentStep?: Maybe<ConfluenceSpacePermissionTransitionTaskStep>;
|
|
33094
|
+
progressPercentage?: Maybe<Scalars['Int']['output']>;
|
|
33095
|
+
taskId: Scalars['ID']['output'];
|
|
33096
|
+
taskType: ConfluenceSpacePermissionTransitionTaskType;
|
|
33097
|
+
};
|
|
33098
|
+
export declare enum ConfluenceSpacePermissionTransitionTaskStep {
|
|
33099
|
+
BulkTransitionFetchingPermissions = "BULK_TRANSITION_FETCHING_PERMISSIONS",
|
|
33100
|
+
BulkTransitionMutatingPermissions = "BULK_TRANSITION_MUTATING_PERMISSIONS",
|
|
33101
|
+
BulkTransitionResolvingSpaces = "BULK_TRANSITION_RESOLVING_SPACES",
|
|
33102
|
+
BulkTransitionUpdatingAuditData = "BULK_TRANSITION_UPDATING_AUDIT_DATA",
|
|
33103
|
+
GenerateAuditReportAggregatingCombinations = "GENERATE_AUDIT_REPORT_AGGREGATING_COMBINATIONS",
|
|
33104
|
+
GenerateAuditReportFormattingReport = "GENERATE_AUDIT_REPORT_FORMATTING_REPORT",
|
|
33105
|
+
GenerateAuditReportPersistingCombinations = "GENERATE_AUDIT_REPORT_PERSISTING_COMBINATIONS",
|
|
33106
|
+
GenerateAuditReportUploadingReport = "GENERATE_AUDIT_REPORT_UPLOADING_REPORT"
|
|
33107
|
+
}
|
|
33108
|
+
export declare enum ConfluenceSpacePermissionTransitionTaskType {
|
|
33109
|
+
BulkAssign = "BULK_ASSIGN",
|
|
33110
|
+
BulkRemove = "BULK_REMOVE",
|
|
33111
|
+
GenerateAuditReport = "GENERATE_AUDIT_REPORT"
|
|
33112
|
+
}
|
|
32887
33113
|
export declare type ConfluenceSpaceProperty = {
|
|
32888
33114
|
__typename?: 'ConfluenceSpaceProperty';
|
|
32889
33115
|
id?: Maybe<Scalars['ID']['output']>;
|
|
@@ -35245,6 +35471,10 @@ export declare enum ConvoAiAgentSessionState {
|
|
|
35245
35471
|
Working = "WORKING"
|
|
35246
35472
|
}
|
|
35247
35473
|
export declare type ConvoAiAgentSessionUpdate = ConvoAiAnswerPartMessage | ConvoAiConversationMessage | ConvoAiEmptyConversation | ConvoAiErrorMessage | ConvoAiTraceMessage;
|
|
35474
|
+
export declare type ConvoAiAgentSessionUpdatePayload = {
|
|
35475
|
+
__typename?: 'ConvoAiAgentSessionUpdatePayload';
|
|
35476
|
+
association?: Maybe<AgentSessionAssociation>;
|
|
35477
|
+
};
|
|
35248
35478
|
export declare type ConvoAiAgentSessionUpdatedByProjects = {
|
|
35249
35479
|
__typename?: 'ConvoAiAgentSessionUpdatedByProjects';
|
|
35250
35480
|
agent?: Maybe<ConvoAiUser>;
|
|
@@ -39350,6 +39580,16 @@ export declare type CustomerServiceUpdateCustomDetailValuePayload = Payload & {
|
|
|
39350
39580
|
errors?: Maybe<Array<MutationError>>;
|
|
39351
39581
|
success: Scalars['Boolean']['output'];
|
|
39352
39582
|
};
|
|
39583
|
+
export declare type CustomerServiceUpdateCustomerNameInput = {
|
|
39584
|
+
accountId: Scalars['ID']['input'];
|
|
39585
|
+
displayName: Scalars['String']['input'];
|
|
39586
|
+
};
|
|
39587
|
+
export declare type CustomerServiceUpdateCustomerNamePayload = Payload & {
|
|
39588
|
+
__typename?: 'CustomerServiceUpdateCustomerNamePayload';
|
|
39589
|
+
errors?: Maybe<Array<MutationError>>;
|
|
39590
|
+
success: Scalars['Boolean']['output'];
|
|
39591
|
+
updatedCustomer?: Maybe<CustomerServiceUpdatedCustomerAccount>;
|
|
39592
|
+
};
|
|
39353
39593
|
export declare type CustomerServiceUpdateLiveChatAgentActivitiesInput = {
|
|
39354
39594
|
id: Scalars['ID']['input'];
|
|
39355
39595
|
liveChatActivity: Scalars['String']['input'];
|
|
@@ -39365,6 +39605,12 @@ export declare type CustomerServiceUpdateRequestParticipantInput = {
|
|
|
39365
39605
|
addedParticipants: Array<Scalars['String']['input']>;
|
|
39366
39606
|
deletedParticipants: Array<Scalars['ID']['input']>;
|
|
39367
39607
|
};
|
|
39608
|
+
export declare type CustomerServiceUpdatedCustomerAccount = {
|
|
39609
|
+
__typename?: 'CustomerServiceUpdatedCustomerAccount';
|
|
39610
|
+
displayName: Scalars['String']['output'];
|
|
39611
|
+
email?: Maybe<Scalars['String']['output']>;
|
|
39612
|
+
id: Scalars['ID']['output'];
|
|
39613
|
+
};
|
|
39368
39614
|
export declare type CustomerServiceUserDetailValue = {
|
|
39369
39615
|
__typename?: 'CustomerServiceUserDetailValue';
|
|
39370
39616
|
accountId?: Maybe<Scalars['ID']['output']>;
|
|
@@ -40440,6 +40686,7 @@ export declare type DevAiAutodevNextWorkstreamSettings = {
|
|
|
40440
40686
|
eligibilityCriteria?: Maybe<Scalars['String']['output']>;
|
|
40441
40687
|
notifications?: Maybe<DevAiAutodevNextNotificationSettings>;
|
|
40442
40688
|
scanSchedule?: Maybe<DevAiAutodevNextScanSchedule>;
|
|
40689
|
+
suggestedJql?: Maybe<Scalars['String']['output']>;
|
|
40443
40690
|
taskOverdueAfterDays?: Maybe<Scalars['Int']['output']>;
|
|
40444
40691
|
wipLimit?: Maybe<Scalars['Int']['output']>;
|
|
40445
40692
|
};
|
|
@@ -40448,6 +40695,7 @@ export declare type DevAiAutodevNextWorkstreamSettingsInput = {
|
|
|
40448
40695
|
eligibilityCriteria?: InputMaybe<Scalars['String']['input']>;
|
|
40449
40696
|
notifications?: InputMaybe<DevAiAutodevNextNotificationSettingsInput>;
|
|
40450
40697
|
scanSchedule?: InputMaybe<DevAiAutodevNextScanScheduleInput>;
|
|
40698
|
+
suggestedJql?: InputMaybe<Scalars['String']['input']>;
|
|
40451
40699
|
taskOverdueAfterDays?: InputMaybe<Scalars['Int']['input']>;
|
|
40452
40700
|
wipLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
40453
40701
|
};
|
|
@@ -106232,6 +106480,7 @@ export declare type GravityViewConfig = {
|
|
|
106232
106480
|
hideEmptyColumns?: Maybe<Scalars['Boolean']['output']>;
|
|
106233
106481
|
hideEmptyGroups?: Maybe<Scalars['Boolean']['output']>;
|
|
106234
106482
|
layoutType?: Maybe<GravityViewLayoutType>;
|
|
106483
|
+
showCardCovers?: Maybe<Scalars['Boolean']['output']>;
|
|
106235
106484
|
sort?: Maybe<Array<GravityViewSort>>;
|
|
106236
106485
|
sortMode?: Maybe<GravityViewSortMode>;
|
|
106237
106486
|
tableColumnSizes?: Maybe<Array<GravityViewTableColumnSize>>;
|
|
@@ -106251,6 +106500,7 @@ export declare type GravityViewConfigInput = {
|
|
|
106251
106500
|
hideEmptyColumns?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106252
106501
|
hideEmptyGroups?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106253
106502
|
layoutType?: InputMaybe<GravityViewLayoutType>;
|
|
106503
|
+
showCardCovers?: InputMaybe<Scalars['Boolean']['input']>;
|
|
106254
106504
|
sort?: InputMaybe<Array<GravityViewSortInput>>;
|
|
106255
106505
|
sortMode?: InputMaybe<GravityViewSortMode>;
|
|
106256
106506
|
tableColumnSizes?: InputMaybe<Array<GravityViewTableColumnSizeInput>>;
|
|
@@ -113513,9 +113763,11 @@ export declare type JiraBoardViewStatusColumn = JiraBoardViewColumn & Node & {
|
|
|
113513
113763
|
id: Scalars['ID']['output'];
|
|
113514
113764
|
mappedStatuses?: Maybe<JiraBoardViewStatusConnection>;
|
|
113515
113765
|
mappedWorkflows?: Maybe<JiraBoardViewWorkflowConnection>;
|
|
113766
|
+
maximumIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
113516
113767
|
name?: Maybe<Scalars['String']['output']>;
|
|
113517
113768
|
simpleTransitions?: Maybe<JiraTransitionConnection>;
|
|
113518
113769
|
statuses?: Maybe<Array<Maybe<JiraStatus>>>;
|
|
113770
|
+
totalIssueCount?: Maybe<Scalars['Int']['output']>;
|
|
113519
113771
|
totalTransitionCount?: Maybe<Scalars['Int']['output']>;
|
|
113520
113772
|
transitionAgents?: Maybe<Array<JiraTransitionAgent>>;
|
|
113521
113773
|
workflows?: Maybe<JiraTransitionConnection>;
|
|
@@ -113532,6 +113784,9 @@ export declare type JiraBoardViewStatusColumnSimpleTransitionsArgs = {
|
|
|
113532
113784
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
113533
113785
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
113534
113786
|
};
|
|
113787
|
+
export declare type JiraBoardViewStatusColumnTotalIssueCountArgs = {
|
|
113788
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
113789
|
+
};
|
|
113535
113790
|
export declare type JiraBoardViewStatusColumnWorkflowsArgs = {
|
|
113536
113791
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
113537
113792
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -117674,6 +117929,7 @@ export declare type JiraFieldScheme = Node & {
|
|
|
117674
117929
|
isDefault?: Maybe<Scalars['Boolean']['output']>;
|
|
117675
117930
|
name?: Maybe<Scalars['String']['output']>;
|
|
117676
117931
|
projectsCount?: Maybe<Scalars['Int']['output']>;
|
|
117932
|
+
requiredOnIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
117677
117933
|
schemeId?: Maybe<Scalars['ID']['output']>;
|
|
117678
117934
|
};
|
|
117679
117935
|
export declare type JiraFieldSchemeAssociatedIssueTypesArgs = {
|
|
@@ -117691,6 +117947,11 @@ export declare type JiraFieldSchemeAvailableProjectsArgs = {
|
|
|
117691
117947
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
117692
117948
|
input?: InputMaybe<JiraAvailableProjectSearchInput>;
|
|
117693
117949
|
};
|
|
117950
|
+
export declare type JiraFieldSchemeRequiredOnIssueTypesArgs = {
|
|
117951
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
117952
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
117953
|
+
input?: InputMaybe<JiraFieldSchemeRequiredOnIssueTypesInput>;
|
|
117954
|
+
};
|
|
117694
117955
|
export declare type JiraFieldSchemeAssociatedField = {
|
|
117695
117956
|
__typename?: 'JiraFieldSchemeAssociatedField';
|
|
117696
117957
|
field?: Maybe<JiraField>;
|
|
@@ -117737,6 +117998,9 @@ export declare type JiraFieldSchemePayload = Payload & {
|
|
|
117737
117998
|
fieldScheme?: Maybe<JiraFieldScheme>;
|
|
117738
117999
|
success: Scalars['Boolean']['output'];
|
|
117739
118000
|
};
|
|
118001
|
+
export declare type JiraFieldSchemeRequiredOnIssueTypesInput = {
|
|
118002
|
+
nameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
118003
|
+
};
|
|
117740
118004
|
export declare type JiraFieldSchemeSourceInput = {
|
|
117741
118005
|
sourceFieldConfigurationSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
117742
118006
|
sourceFieldSchemeId?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -121676,6 +121940,7 @@ export declare enum JiraIssueSearchOperationScope {
|
|
|
121676
121940
|
NinProject = "NIN_PROJECT",
|
|
121677
121941
|
NinProjectSchemaRefactor = "NIN_PROJECT_SCHEMA_REFACTOR",
|
|
121678
121942
|
NinProjectShadowRequest = "NIN_PROJECT_SHADOW_REQUEST",
|
|
121943
|
+
TimelineBoard = "TIMELINE_BOARD",
|
|
121679
121944
|
TimelineProject = "TIMELINE_PROJECT"
|
|
121680
121945
|
}
|
|
121681
121946
|
export declare type JiraIssueSearchOptions = {
|
|
@@ -127132,6 +127397,7 @@ export declare type JiraProject = Node & {
|
|
|
127132
127397
|
reportCategories?: Maybe<JiraReportCategoryConnection>;
|
|
127133
127398
|
repositories?: Maybe<GraphStoreSimplifiedProjectAssociatedRepoConnection>;
|
|
127134
127399
|
requestTypes?: Maybe<JiraServiceManagementRequestTypeConnection>;
|
|
127400
|
+
requiredOnIssueTypes?: Maybe<JiraIssueTypeConnection>;
|
|
127135
127401
|
roles?: Maybe<JiraRoleConnection>;
|
|
127136
127402
|
schemeAssociatedFields?: Maybe<JiraFieldSchemeAssociatedFieldsConnection>;
|
|
127137
127403
|
selectedDeploymentAppsProperty?: Maybe<Array<JiraDeploymentApp>>;
|
|
@@ -127308,6 +127574,11 @@ export declare type JiraProjectRequestTypesArgs = {
|
|
|
127308
127574
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
127309
127575
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127310
127576
|
};
|
|
127577
|
+
export declare type JiraProjectRequiredOnIssueTypesArgs = {
|
|
127578
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
127579
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
127580
|
+
input?: InputMaybe<JiraProjectRequiredOnIssueTypesInput>;
|
|
127581
|
+
};
|
|
127311
127582
|
export declare type JiraProjectRolesArgs = {
|
|
127312
127583
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
127313
127584
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -127956,6 +128227,9 @@ export declare enum JiraProjectRecommendationType {
|
|
|
127956
128227
|
InviterActivity = "INVITER_ACTIVITY",
|
|
127957
128228
|
TenantActivity = "TENANT_ACTIVITY"
|
|
127958
128229
|
}
|
|
128230
|
+
export declare type JiraProjectRequiredOnIssueTypesInput = {
|
|
128231
|
+
nameFilter?: InputMaybe<Scalars['String']['input']>;
|
|
128232
|
+
};
|
|
127959
128233
|
export declare type JiraProjectRoleActorLogTableEntry = {
|
|
127960
128234
|
__typename?: 'JiraProjectRoleActorLogTableEntry';
|
|
127961
128235
|
executedBy?: Maybe<User>;
|
|
@@ -129989,7 +130263,6 @@ export declare type JiraRedactionSortInput = {
|
|
|
129989
130263
|
export declare type JiraRelatedLinkSuggestionConnection = {
|
|
129990
130264
|
__typename?: 'JiraRelatedLinkSuggestionConnection';
|
|
129991
130265
|
edges?: Maybe<Array<Maybe<JiraRelatedLinkSuggestionEdge>>>;
|
|
129992
|
-
errors?: Maybe<Array<QueryError>>;
|
|
129993
130266
|
pageInfo: PageInfo;
|
|
129994
130267
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
129995
130268
|
};
|
|
@@ -130505,7 +130778,7 @@ export declare type JiraRemoveIssueFromSprintInput = {
|
|
|
130505
130778
|
boardId: Scalars['ID']['input'];
|
|
130506
130779
|
issueId: Scalars['ID']['input'];
|
|
130507
130780
|
};
|
|
130508
|
-
export declare type JiraRemoveIssueFromSprintPayload = {
|
|
130781
|
+
export declare type JiraRemoveIssueFromSprintPayload = Payload & {
|
|
130509
130782
|
__typename?: 'JiraRemoveIssueFromSprintPayload';
|
|
130510
130783
|
errors?: Maybe<Array<MutationError>>;
|
|
130511
130784
|
jiraView?: Maybe<JiraViewResult>;
|
|
@@ -132809,6 +133082,18 @@ export declare type JiraSetBoardViewGroupByPayload = Payload & {
|
|
|
132809
133082
|
success: Scalars['Boolean']['output'];
|
|
132810
133083
|
view?: Maybe<JiraBoardView>;
|
|
132811
133084
|
};
|
|
133085
|
+
export declare type JiraSetBoardViewStatusColumnIssueCountLimitInput = {
|
|
133086
|
+
columnId: Scalars['ID']['input'];
|
|
133087
|
+
maximumIssueCount?: InputMaybe<Scalars['Int']['input']>;
|
|
133088
|
+
settings?: InputMaybe<JiraBoardViewSettings>;
|
|
133089
|
+
};
|
|
133090
|
+
export declare type JiraSetBoardViewStatusColumnIssueCountLimitPayload = {
|
|
133091
|
+
__typename?: 'JiraSetBoardViewStatusColumnIssueCountLimitPayload';
|
|
133092
|
+
boardView?: Maybe<JiraBoardView>;
|
|
133093
|
+
column?: Maybe<JiraBoardViewStatusColumn>;
|
|
133094
|
+
errors?: Maybe<Array<MutationError>>;
|
|
133095
|
+
success: Scalars['Boolean']['output'];
|
|
133096
|
+
};
|
|
132812
133097
|
export declare type JiraSetBoardViewStatusColumnMappingCreateStatusInput = {
|
|
132813
133098
|
name: Scalars['String']['input'];
|
|
132814
133099
|
reference: Scalars['ID']['input'];
|
|
@@ -133357,7 +133642,6 @@ export declare type JiraSimilarIssues = {
|
|
|
133357
133642
|
export declare type JiraSimilarWorkItemSuggestionConnection = {
|
|
133358
133643
|
__typename?: 'JiraSimilarWorkItemSuggestionConnection';
|
|
133359
133644
|
edges?: Maybe<Array<Maybe<JiraSimilarWorkItemSuggestionEdge>>>;
|
|
133360
|
-
errors?: Maybe<Array<QueryError>>;
|
|
133361
133645
|
pageInfo: PageInfo;
|
|
133362
133646
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
133363
133647
|
};
|
|
@@ -136796,7 +137080,6 @@ export declare type JiraWhiteboardResource = JiraConsolidatedResource & {
|
|
|
136796
137080
|
export declare type JiraWorkBreakdownSuggestionConnection = {
|
|
136797
137081
|
__typename?: 'JiraWorkBreakdownSuggestionConnection';
|
|
136798
137082
|
edges?: Maybe<Array<Maybe<JiraWorkBreakdownSuggestionEdge>>>;
|
|
136799
|
-
errors?: Maybe<Array<QueryError>>;
|
|
136800
137083
|
pageInfo: PageInfo;
|
|
136801
137084
|
totalCount?: Maybe<Scalars['Int']['output']>;
|
|
136802
137085
|
};
|
|
@@ -138160,10 +138443,11 @@ export declare type JsmChannelsEstablishConnectionInput = {
|
|
|
138160
138443
|
connectionType: JsmChannelsConnectionType;
|
|
138161
138444
|
displayName: Scalars['String']['input'];
|
|
138162
138445
|
exchangeUrl?: InputMaybe<Scalars['String']['input']>;
|
|
138163
|
-
hostUrl
|
|
138446
|
+
hostUrl?: InputMaybe<Scalars['String']['input']>;
|
|
138164
138447
|
profileRetrieverUrl?: InputMaybe<Scalars['String']['input']>;
|
|
138165
138448
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
|
138166
138449
|
scopes?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
138450
|
+
tenantId?: InputMaybe<Scalars['String']['input']>;
|
|
138167
138451
|
};
|
|
138168
138452
|
export declare type JsmChannelsEstablishConnectionPayload = Payload & {
|
|
138169
138453
|
__typename?: 'JsmChannelsEstablishConnectionPayload';
|
|
@@ -139878,6 +140162,7 @@ export declare type KitsuneInsight = Node & {
|
|
|
139878
140162
|
externalId?: Maybe<Scalars['ID']['output']>;
|
|
139879
140163
|
id: Scalars['ID']['output'];
|
|
139880
140164
|
jiraIssue?: Maybe<JiraIssue>;
|
|
140165
|
+
nbSnippets: Scalars['Int']['output'];
|
|
139881
140166
|
snippets: KitsuneSnippetConnection;
|
|
139882
140167
|
summary?: Maybe<KitsuneSummary>;
|
|
139883
140168
|
title: Scalars['String']['output'];
|
|
@@ -142605,6 +142890,10 @@ export declare type LpQueryError = Node & {
|
|
|
142605
142890
|
identifier?: Maybe<Scalars['ID']['output']>;
|
|
142606
142891
|
message?: Maybe<Scalars['String']['output']>;
|
|
142607
142892
|
};
|
|
142893
|
+
export declare type M360ServiceHelloWorldPayload = {
|
|
142894
|
+
__typename?: 'M360ServiceHelloWorldPayload';
|
|
142895
|
+
greeting?: Maybe<Scalars['String']['output']>;
|
|
142896
|
+
};
|
|
142608
142897
|
export declare type Macro = {
|
|
142609
142898
|
__typename?: 'Macro';
|
|
142610
142899
|
adf: Scalars['String']['output'];
|
|
@@ -145511,6 +145800,24 @@ export declare type MarketplaceStoreEntitlementDetails = {
|
|
|
145511
145800
|
ccpUsers?: Maybe<Scalars['Int']['output']>;
|
|
145512
145801
|
productKey?: Maybe<Scalars['String']['output']>;
|
|
145513
145802
|
};
|
|
145803
|
+
export declare type MarketplaceStoreExploreObjectsSection = MarketplaceStoreLayoutSection & {
|
|
145804
|
+
__typename?: 'MarketplaceStoreExploreObjectsSection';
|
|
145805
|
+
description?: Maybe<Scalars['String']['output']>;
|
|
145806
|
+
key: MarketplaceStoreLayoutSectionKeys;
|
|
145807
|
+
navigationUrl?: Maybe<Scalars['String']['output']>;
|
|
145808
|
+
objectsFetchCount?: Maybe<Scalars['Int']['output']>;
|
|
145809
|
+
searchMetadata?: Maybe<MarketplaceStoreSearchMetadata>;
|
|
145810
|
+
tabs?: Maybe<Array<MarketplaceStoreExploreObjectsTab>>;
|
|
145811
|
+
title: Scalars['String']['output'];
|
|
145812
|
+
type: MarketplaceStoreLayoutSectionType;
|
|
145813
|
+
widgets?: Maybe<Array<Maybe<MarketplaceStoreLayoutWidget>>>;
|
|
145814
|
+
};
|
|
145815
|
+
export declare type MarketplaceStoreExploreObjectsTab = {
|
|
145816
|
+
__typename?: 'MarketplaceStoreExploreObjectsTab';
|
|
145817
|
+
iconKey?: Maybe<Scalars['String']['output']>;
|
|
145818
|
+
name: Scalars['String']['output'];
|
|
145819
|
+
searchMetadata?: Maybe<MarketplaceStoreSearchMetadata>;
|
|
145820
|
+
};
|
|
145514
145821
|
export declare enum MarketplaceStoreFormStatus {
|
|
145515
145822
|
Approved = "APPROVED",
|
|
145516
145823
|
Rejected = "REJECTED",
|
|
@@ -145756,7 +146063,6 @@ export declare enum MarketplaceStoreLayoutSectionKeys {
|
|
|
145756
146063
|
RecommendedForYou = "RECOMMENDED_FOR_YOU",
|
|
145757
146064
|
Spotlight = "SPOTLIGHT",
|
|
145758
146065
|
Statistics = "STATISTICS",
|
|
145759
|
-
TopUseCases = "TOP_USE_CASES",
|
|
145760
146066
|
TrustedPartners = "TRUSTED_PARTNERS"
|
|
145761
146067
|
}
|
|
145762
146068
|
export declare enum MarketplaceStoreLayoutSectionType {
|
|
@@ -145764,8 +146070,8 @@ export declare enum MarketplaceStoreLayoutSectionType {
|
|
|
145764
146070
|
Capability = "CAPABILITY",
|
|
145765
146071
|
Dark = "DARK",
|
|
145766
146072
|
ExploreCategories = "EXPLORE_CATEGORIES",
|
|
145767
|
-
|
|
145768
|
-
|
|
146073
|
+
ExploreObjects = "EXPLORE_OBJECTS",
|
|
146074
|
+
List = "LIST"
|
|
145769
146075
|
}
|
|
145770
146076
|
export declare enum MarketplaceStoreLayoutSlotTheme {
|
|
145771
146077
|
Bounded = "BOUNDED",
|
|
@@ -146574,18 +146880,6 @@ export declare type MarketplaceStoreThirdPartyInformation = {
|
|
|
146574
146880
|
isEndUserDataShared?: Maybe<Scalars['Boolean']['output']>;
|
|
146575
146881
|
thirdPartyDetails?: Maybe<Array<Maybe<MarketplaceStoreThirdPartyDetails>>>;
|
|
146576
146882
|
};
|
|
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
146883
|
export declare type MarketplaceStoreTrustSignalDataRules = {
|
|
146590
146884
|
__typename?: 'MarketplaceStoreTrustSignalDataRules';
|
|
146591
146885
|
name: Scalars['String']['output'];
|
|
@@ -146633,17 +146927,6 @@ export declare type MarketplaceStoreUpdateUserPreferencesResponse = {
|
|
|
146633
146927
|
status: Scalars['String']['output'];
|
|
146634
146928
|
version: Scalars['Int']['output'];
|
|
146635
146929
|
};
|
|
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
146930
|
export declare type MarketplaceStoreUserPreferences = {
|
|
146648
146931
|
__typename?: 'MarketplaceStoreUserPreferences';
|
|
146649
146932
|
notifyOnAppArchivalSchedule?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -154196,6 +154479,16 @@ export declare type MercuryViewSettings = {
|
|
|
154196
154479
|
export declare type MercuryViewSettingsInput = {
|
|
154197
154480
|
values: Array<MercuryViewSettingEntryInput>;
|
|
154198
154481
|
};
|
|
154482
|
+
export declare type MercuryViewSort = {
|
|
154483
|
+
field: MercuryViewSortField;
|
|
154484
|
+
order: SortOrder;
|
|
154485
|
+
};
|
|
154486
|
+
export declare enum MercuryViewSortField {
|
|
154487
|
+
Name = "NAME",
|
|
154488
|
+
Rank = "RANK",
|
|
154489
|
+
StarredDate = "STARRED_DATE",
|
|
154490
|
+
UpdatedDate = "UPDATED_DATE"
|
|
154491
|
+
}
|
|
154199
154492
|
export declare enum MercuryViewType {
|
|
154200
154493
|
HierarchyView = "HIERARCHY_VIEW",
|
|
154201
154494
|
RankingView = "RANKING_VIEW"
|
|
@@ -154591,8 +154884,11 @@ export declare type Mutation = {
|
|
|
154591
154884
|
agentWorkspace_createDraftedRoutingTable?: Maybe<AgentWorkspaceCreateDraftedRoutingTablePayload>;
|
|
154592
154885
|
agentWorkspace_createSchedule?: Maybe<AgentWorkspaceCreateSchedulePayload>;
|
|
154593
154886
|
agentWorkspace_createSkill?: Maybe<AgentWorkspaceSkillCreatePayload>;
|
|
154887
|
+
agentWorkspace_deleteCoverShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
|
|
154594
154888
|
agentWorkspace_deleteSchedule?: Maybe<AgentWorkspaceDeleteSchedulePayload>;
|
|
154595
154889
|
agentWorkspace_deleteShift?: Maybe<AgentWorkspaceDeleteShiftPayload>;
|
|
154890
|
+
agentWorkspace_discardDraftedRoutingTable?: Maybe<AgentWorkspaceDiscardDraftedRoutingTablePayload>;
|
|
154891
|
+
agentWorkspace_editCoverShift?: Maybe<AgentWorkspaceEditShiftPayload>;
|
|
154596
154892
|
agentWorkspace_editShift?: Maybe<AgentWorkspaceEditShiftPayload>;
|
|
154597
154893
|
agentWorkspace_endBreak?: Maybe<AgentWorkspaceAgentAvailability>;
|
|
154598
154894
|
agentWorkspace_restoreSkill?: Maybe<AgentWorkspaceRestoreSkillPayload>;
|
|
@@ -154611,6 +154907,7 @@ export declare type Mutation = {
|
|
|
154611
154907
|
agentWorkspace_updateSmartRoutingConfig?: Maybe<AgentWorkspaceUpdateSmartRoutingConfigPayload>;
|
|
154612
154908
|
agentWorkspace_upsertDraftedRoutingTableEntry?: Maybe<AgentWorkspaceUpsertDraftedRoutingTableEntryPayload>;
|
|
154613
154909
|
aiCoreApi_initiateCsvExport?: Maybe<AiCoreApiCsvExportResult>;
|
|
154910
|
+
aiCoreApi_initiateRsaReport?: Maybe<AiCoreApiRsaInitiateReportResult>;
|
|
154614
154911
|
aiManagedObject_createAiManagedObject?: Maybe<AiManagedObject>;
|
|
154615
154912
|
aiManagedObject_createAiManagedObjectConfig?: Maybe<AiManagedObjectConfig>;
|
|
154616
154913
|
aiManagedObject_deleteAiManagedObject?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -154686,6 +154983,7 @@ export declare type Mutation = {
|
|
|
154686
154983
|
assetsDM_updateDataSourcePriority?: Maybe<AssetsDmUpdateDataSourcePayload>;
|
|
154687
154984
|
assetsDM_updateDataSourceType?: Maybe<AssetsDmUpdateDataSourceTypeResponse>;
|
|
154688
154985
|
assetsDM_updateDefaultCleansingRule?: Maybe<AssetsDmUpdateDefaultCleansingRuleResponse>;
|
|
154986
|
+
assetsVertical_archiveInsight?: Maybe<AssetsVerticalArchiveInsightPayload>;
|
|
154689
154987
|
assetsVertical_createAssetTypesTrackings?: Maybe<AssetsVerticalAssetTypesTrackingsPayload>;
|
|
154690
154988
|
assetsVertical_createDepreciationRule?: Maybe<AssetsVerticalDepreciationRulePayload>;
|
|
154691
154989
|
assetsVertical_createItemMappings?: Maybe<AssetsVerticalItemMappingsPayload>;
|
|
@@ -155043,6 +155341,7 @@ export declare type Mutation = {
|
|
|
155043
155341
|
csmAi_updateHandoffConfig?: Maybe<CsmAiUpdateHandoffConfigPayload>;
|
|
155044
155342
|
csmAi_updateKnowledgeSource?: Maybe<CsmAiKnowledgeSourcePayload>;
|
|
155045
155343
|
csmAi_updateWidget?: Maybe<CsmAiUpdateWidgetPayload>;
|
|
155344
|
+
csm_updateCustomerName?: Maybe<CustomerServiceUpdateCustomerNamePayload>;
|
|
155046
155345
|
csm_updateLiveChatSettings?: Maybe<CustomerServiceLiveChatSettingsPayload>;
|
|
155047
155346
|
csm_upsertEmailChannelConfiguration?: Maybe<CustomerServiceEmailChannelConfigUpsertPayload>;
|
|
155048
155347
|
csm_upsertHelpCenterMetadata?: Maybe<CustomerServiceHelpCenterMetadataUpsertPayload>;
|
|
@@ -155206,6 +155505,7 @@ export declare type Mutation = {
|
|
|
155206
155505
|
goals_shareUpdate?: Maybe<TownsquareGoalsShareUpdatePayload>;
|
|
155207
155506
|
goals_unlinkJiraAlignProject?: Maybe<TownsquareGoalsUnlinkJiraAlignProjectPayload>;
|
|
155208
155507
|
goals_unlinkWorkItem?: Maybe<TownsquareGoalsUnlinkWorkItemPayload>;
|
|
155508
|
+
goals_updateAppPermissionPolicies?: Maybe<TownsquareUpdateGoalsAppPermissionPoliciesPayload>;
|
|
155209
155509
|
grantContentAccess?: Maybe<GrantContentAccessPayload>;
|
|
155210
155510
|
graphIntegration_actionAdminManagementUpdateActionConfiguration?: Maybe<GraphIntegrationActionAdminManagementUpdateActionConfigurationPayload>;
|
|
155211
155511
|
graphIntegration_addTwgCapabilityContainer?: Maybe<GraphIntegrationAddTwgCapabilityContainerPayload>;
|
|
@@ -155332,6 +155632,7 @@ export declare type Mutation = {
|
|
|
155332
155632
|
jira_setBoardViewCompletedIssueSearchCutOff?: Maybe<JiraSetBoardViewCompletedIssueSearchCutOffPayload>;
|
|
155333
155633
|
jira_setBoardViewFilter?: Maybe<JiraSetBoardViewFilterPayload>;
|
|
155334
155634
|
jira_setBoardViewGroupBy?: Maybe<JiraSetBoardViewGroupByPayload>;
|
|
155635
|
+
jira_setBoardViewStatusColumnIssueCountLimit?: Maybe<JiraSetBoardViewStatusColumnIssueCountLimitPayload>;
|
|
155335
155636
|
jira_setBoardViewStatusColumnMapping?: Maybe<JiraSetBoardViewStatusColumnMappingPayload>;
|
|
155336
155637
|
jira_setBoardViewSwimlaneState?: Maybe<JiraSetBoardViewSwimlaneStatePayload>;
|
|
155337
155638
|
jira_setBoardViewWorkflowSelected?: Maybe<JiraSetBoardViewWorkflowSelectedPayload>;
|
|
@@ -155547,6 +155848,7 @@ export declare type Mutation = {
|
|
|
155547
155848
|
projects_setWatchingProject?: Maybe<TownsquareProjectsSetWatchingProjectPayload>;
|
|
155548
155849
|
projects_shareProject?: Maybe<TownsquareProjectsShareProjectPayload>;
|
|
155549
155850
|
projects_shareUpdate?: Maybe<TownsquareProjectsShareUpdatePayload>;
|
|
155851
|
+
projects_updateAppPermissionPolicies?: Maybe<TownsquareUpdateProjectsAppPermissionPoliciesPayload>;
|
|
155550
155852
|
publicLinkPagesAdminAction?: Maybe<PublicLinkPagesAdminActionPayload>;
|
|
155551
155853
|
publicLinkSpacesAction?: Maybe<PublicLinkSpacesActionPayload>;
|
|
155552
155854
|
radar_clearFocusAreaProposals?: Maybe<RadarMutationResponse>;
|
|
@@ -156179,12 +156481,21 @@ export declare type MutationAgentWorkspace_CreateScheduleArgs = {
|
|
|
156179
156481
|
export declare type MutationAgentWorkspace_CreateSkillArgs = {
|
|
156180
156482
|
input: AgentWorkspaceSkillCreateInput;
|
|
156181
156483
|
};
|
|
156484
|
+
export declare type MutationAgentWorkspace_DeleteCoverShiftArgs = {
|
|
156485
|
+
input: AgentWorkspaceDeleteCoverShiftInput;
|
|
156486
|
+
};
|
|
156182
156487
|
export declare type MutationAgentWorkspace_DeleteScheduleArgs = {
|
|
156183
156488
|
input: AgentWorkspaceDeleteScheduleInput;
|
|
156184
156489
|
};
|
|
156185
156490
|
export declare type MutationAgentWorkspace_DeleteShiftArgs = {
|
|
156186
156491
|
input: AgentWorkspaceDeleteShiftInput;
|
|
156187
156492
|
};
|
|
156493
|
+
export declare type MutationAgentWorkspace_DiscardDraftedRoutingTableArgs = {
|
|
156494
|
+
input: AgentWorkspaceDiscardDraftedRoutingTableInput;
|
|
156495
|
+
};
|
|
156496
|
+
export declare type MutationAgentWorkspace_EditCoverShiftArgs = {
|
|
156497
|
+
input: AgentWorkspaceEditCoverShiftInput;
|
|
156498
|
+
};
|
|
156188
156499
|
export declare type MutationAgentWorkspace_EditShiftArgs = {
|
|
156189
156500
|
input: AgentWorkspaceEditShiftInput;
|
|
156190
156501
|
};
|
|
@@ -156241,6 +156552,9 @@ export declare type MutationAgentWorkspace_UpsertDraftedRoutingTableEntryArgs =
|
|
|
156241
156552
|
export declare type MutationAiCoreApi_InitiateCsvExportArgs = {
|
|
156242
156553
|
input: AiCoreApiCsvExportInput;
|
|
156243
156554
|
};
|
|
156555
|
+
export declare type MutationAiCoreApi_InitiateRsaReportArgs = {
|
|
156556
|
+
input: AiCoreApiRsaReportInput;
|
|
156557
|
+
};
|
|
156244
156558
|
export declare type MutationAiManagedObject_CreateAiManagedObjectArgs = {
|
|
156245
156559
|
cloudId: Scalars['ID']['input'];
|
|
156246
156560
|
input: AiManagedObjectCreateInput;
|
|
@@ -156595,6 +156909,9 @@ export declare type MutationAssetsDm_UpdateDefaultCleansingRuleArgs = {
|
|
|
156595
156909
|
input: AssetsDmUpdateDefaultCleansingRuleInput;
|
|
156596
156910
|
workspaceId: Scalars['ID']['input'];
|
|
156597
156911
|
};
|
|
156912
|
+
export declare type MutationAssetsVertical_ArchiveInsightArgs = {
|
|
156913
|
+
input: AssetsVerticalArchiveInsightInput;
|
|
156914
|
+
};
|
|
156598
156915
|
export declare type MutationAssetsVertical_CreateAssetTypesTrackingsArgs = {
|
|
156599
156916
|
input: AssetsVerticalCreateAssetTypesTrackingsInput;
|
|
156600
156917
|
};
|
|
@@ -157869,6 +158186,10 @@ export declare type MutationCsmAi_UpdateWidgetArgs = {
|
|
|
157869
158186
|
input: CsmAiWidgetUpdateInput;
|
|
157870
158187
|
widgetId: Scalars['ID']['input'];
|
|
157871
158188
|
};
|
|
158189
|
+
export declare type MutationCsm_UpdateCustomerNameArgs = {
|
|
158190
|
+
cloudId: Scalars['ID']['input'];
|
|
158191
|
+
input: CustomerServiceUpdateCustomerNameInput;
|
|
158192
|
+
};
|
|
157872
158193
|
export declare type MutationCsm_UpdateLiveChatSettingsArgs = {
|
|
157873
158194
|
cloudId: Scalars['ID']['input'];
|
|
157874
158195
|
input: CustomerServiceLiveChatSettingsInput;
|
|
@@ -158382,6 +158703,9 @@ export declare type MutationGoals_UnlinkJiraAlignProjectArgs = {
|
|
|
158382
158703
|
export declare type MutationGoals_UnlinkWorkItemArgs = {
|
|
158383
158704
|
input?: InputMaybe<TownsquareGoalsUnlinkWorkItemInput>;
|
|
158384
158705
|
};
|
|
158706
|
+
export declare type MutationGoals_UpdateAppPermissionPoliciesArgs = {
|
|
158707
|
+
input: TownsquareUpdateGoalsAppPermissionPoliciesInput;
|
|
158708
|
+
};
|
|
158385
158709
|
export declare type MutationGrantContentAccessArgs = {
|
|
158386
158710
|
grantContentAccessInput: GrantContentAccessInput;
|
|
158387
158711
|
};
|
|
@@ -158768,6 +159092,9 @@ export declare type MutationJira_SetBoardViewFilterArgs = {
|
|
|
158768
159092
|
export declare type MutationJira_SetBoardViewGroupByArgs = {
|
|
158769
159093
|
input: JiraSetBoardViewGroupByInput;
|
|
158770
159094
|
};
|
|
159095
|
+
export declare type MutationJira_SetBoardViewStatusColumnIssueCountLimitArgs = {
|
|
159096
|
+
input: JiraSetBoardViewStatusColumnIssueCountLimitInput;
|
|
159097
|
+
};
|
|
158771
159098
|
export declare type MutationJira_SetBoardViewStatusColumnMappingArgs = {
|
|
158772
159099
|
input: JiraSetBoardViewStatusColumnMappingInput;
|
|
158773
159100
|
};
|
|
@@ -159473,6 +159800,9 @@ export declare type MutationProjects_ShareProjectArgs = {
|
|
|
159473
159800
|
export declare type MutationProjects_ShareUpdateArgs = {
|
|
159474
159801
|
input: TownsquareProjectsShareUpdateInput;
|
|
159475
159802
|
};
|
|
159803
|
+
export declare type MutationProjects_UpdateAppPermissionPoliciesArgs = {
|
|
159804
|
+
input: TownsquareUpdateProjectsAppPermissionPoliciesInput;
|
|
159805
|
+
};
|
|
159476
159806
|
export declare type MutationPublicLinkPagesAdminActionArgs = {
|
|
159477
159807
|
action: PublicLinkAdminAction;
|
|
159478
159808
|
pageIds: Array<Scalars['ID']['input']>;
|
|
@@ -163551,10 +163881,12 @@ export declare type Query = {
|
|
|
163551
163881
|
agentWorkspace_capacitySummary?: Maybe<AgentWorkspaceCapacitySummary>;
|
|
163552
163882
|
agentWorkspace_categorySkillsInProject?: Maybe<AgentWorkspaceSkillConnection>;
|
|
163553
163883
|
agentWorkspace_clusterServiceCategories?: Maybe<AgentWorkspaceServiceClusteringResult>;
|
|
163884
|
+
agentWorkspace_coverShiftEditBounds?: Maybe<AgentWorkspaceShiftEditBounds>;
|
|
163554
163885
|
agentWorkspace_defaultCapacity?: Maybe<AgentWorkspaceDefaultCapacity>;
|
|
163555
163886
|
agentWorkspace_draftedRoutingTable?: Maybe<AgentWorkspaceDraftedRoutingTable>;
|
|
163556
163887
|
agentWorkspace_eligibleGroups?: Maybe<AgentWorkspaceEligibleGroupsPayload>;
|
|
163557
163888
|
agentWorkspace_projectDefaultAvailability?: Maybe<AgentWorkspaceProjectDefaultAvailability>;
|
|
163889
|
+
agentWorkspace_recommendedAgentsForCoverageGap?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
163558
163890
|
agentWorkspace_recommendedAgentsForGap?: Maybe<Array<AgentWorkspaceAgent>>;
|
|
163559
163891
|
agentWorkspace_recommendedAssignees?: Maybe<AgentWorkspaceRecommendedAssigneesResponse>;
|
|
163560
163892
|
agentWorkspace_routingConfig?: Maybe<AgentWorkspaceSmartRoutingConfig>;
|
|
@@ -163579,6 +163911,7 @@ export declare type Query = {
|
|
|
163579
163911
|
agentWorkspace_teamsConnectedToProject?: Maybe<AgentWorkspaceTeamConnection>;
|
|
163580
163912
|
agent_sessionAssociationQuery?: Maybe<AgentSessionAssociationConnection>;
|
|
163581
163913
|
agent_sessionQuery?: Maybe<AgentSessionConnection>;
|
|
163914
|
+
aiCoreApi_fetchRsaReport?: Maybe<AiCoreApiRsaFetchReportResult>;
|
|
163582
163915
|
aiCoreApi_vsaQuestionsByProject?: Maybe<AiCoreApiVsaQuestionsResult>;
|
|
163583
163916
|
aiCoreApi_vsaQuestionsByProjectAndType?: Maybe<AiCoreApiVsaQuestionsWithTypeResult>;
|
|
163584
163917
|
aiCoreApi_vsaReportingByProject?: Maybe<AiCoreApiVsaReportingResult>;
|
|
@@ -163917,6 +164250,7 @@ export declare type Query = {
|
|
|
163917
164250
|
confluence_isSpaceRoleAssignedToUserTypes?: Maybe<ConfluenceSpaceRoleAssigned>;
|
|
163918
164251
|
confluence_isWatchingLabel?: Maybe<ConfluenceLabelWatchStatus>;
|
|
163919
164252
|
confluence_latestInProgressSpacePermissionTransitionTaskId?: Maybe<Scalars['String']['output']>;
|
|
164253
|
+
confluence_latestInProgressSpacePermissionTransitionTaskProgress?: Maybe<ConfluenceSpacePermissionTransitionTaskProgress>;
|
|
163920
164254
|
confluence_latestKnowledgeGraphObjectV2?: Maybe<KnowledgeGraphObjectResponseV2>;
|
|
163921
164255
|
confluence_legacyEditorReportDownloadLink?: Maybe<ConfluenceLegacyEditorReportDownloadLink>;
|
|
163922
164256
|
confluence_loomEntryPoints?: Maybe<ConfluenceLoomEntryPoints>;
|
|
@@ -164204,6 +164538,7 @@ export declare type Query = {
|
|
|
164204
164538
|
globalSpaceConfiguration?: Maybe<GlobalSpaceConfiguration>;
|
|
164205
164539
|
goals_allWatchedGoalUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
164206
164540
|
goals_allWatchedGoalUpdatesCount?: Maybe<Scalars['Int']['output']>;
|
|
164541
|
+
goals_appPermissionPolicies?: Maybe<TownsquareGoalsAppPermissionPolicyConnection>;
|
|
164207
164542
|
goals_appSettings?: Maybe<TownsquareGoalsAppSettings>;
|
|
164208
164543
|
goals_byId?: Maybe<TownsquareGoal>;
|
|
164209
164544
|
goals_byIds?: Maybe<Array<Maybe<TownsquareGoal>>>;
|
|
@@ -164445,6 +164780,7 @@ export declare type Query = {
|
|
|
164445
164780
|
loom_workspaceTrendingVideos?: Maybe<Array<Maybe<LoomVideo>>>;
|
|
164446
164781
|
loom_workspaces?: Maybe<Array<Maybe<LoomWorkspace>>>;
|
|
164447
164782
|
lpLearnerData?: Maybe<LpLearnerData>;
|
|
164783
|
+
m360Service_helloWorld?: Maybe<M360ServiceHelloWorldPayload>;
|
|
164448
164784
|
macroBodyRenderer?: Maybe<MacroBody>;
|
|
164449
164785
|
macros?: Maybe<MacroConnection>;
|
|
164450
164786
|
marketplaceApp?: Maybe<MarketplaceApp>;
|
|
@@ -164540,6 +164876,7 @@ export declare type Query = {
|
|
|
164540
164876
|
productListings: Array<ProductListingResult>;
|
|
164541
164877
|
projects_allWatchedProjectUpdates?: Maybe<TownsquareUpdateConnection>;
|
|
164542
164878
|
projects_allWatchedProjectUpdatesCount?: Maybe<Scalars['Int']['output']>;
|
|
164879
|
+
projects_appPermissionPolicies?: Maybe<TownsquareProjectsAppPermissionPolicyConnection>;
|
|
164543
164880
|
projects_appSettings?: Maybe<TownsquareProjectsAppSettings>;
|
|
164544
164881
|
projects_byAri?: Maybe<TownsquareProject>;
|
|
164545
164882
|
projects_byAris?: Maybe<Array<Maybe<TownsquareProject>>>;
|
|
@@ -164680,6 +165017,7 @@ export declare type Query = {
|
|
|
164680
165017
|
stakeholderComms_getComponentsWithUptimeByPageIdV2?: Maybe<StakeholderCommsNestedComponentWithUptimeConnection>;
|
|
164681
165018
|
stakeholderComms_getDraftComponentsByPageId?: Maybe<StakeholderCommsPageDraftComponentResponse>;
|
|
164682
165019
|
stakeholderComms_getDraftComponentsByPageIdV2?: Maybe<StakeholderCommsNestedComponentConnection>;
|
|
165020
|
+
stakeholderComms_getDraftEmailForIncident?: Maybe<StakeholderCommsDraftEmailResponse>;
|
|
164683
165021
|
stakeholderComms_getDraftPageById?: Maybe<StakeholderCommsPageResponse>;
|
|
164684
165022
|
stakeholderComms_getDraftPageByName?: Maybe<StakeholderCommsPageResponse>;
|
|
164685
165023
|
stakeholderComms_getFileReadMediaToken?: Maybe<StakeholderCommsMediaToken>;
|
|
@@ -165511,6 +165849,9 @@ export declare type QueryAgentWorkspace_ClusterServiceCategoriesArgs = {
|
|
|
165511
165849
|
projectKey: Scalars['String']['input'];
|
|
165512
165850
|
serviceFieldId: Scalars['String']['input'];
|
|
165513
165851
|
};
|
|
165852
|
+
export declare type QueryAgentWorkspace_CoverShiftEditBoundsArgs = {
|
|
165853
|
+
input: AgentWorkspaceCoverShiftEditBoundsInput;
|
|
165854
|
+
};
|
|
165514
165855
|
export declare type QueryAgentWorkspace_DefaultCapacityArgs = {
|
|
165515
165856
|
cloudId: Scalars['ID']['input'];
|
|
165516
165857
|
projectKey: Scalars['String']['input'];
|
|
@@ -165525,6 +165866,9 @@ export declare type QueryAgentWorkspace_ProjectDefaultAvailabilityArgs = {
|
|
|
165525
165866
|
cloudId: Scalars['ID']['input'];
|
|
165526
165867
|
projectId: Scalars['ID']['input'];
|
|
165527
165868
|
};
|
|
165869
|
+
export declare type QueryAgentWorkspace_RecommendedAgentsForCoverageGapArgs = {
|
|
165870
|
+
input: AgentWorkspaceRecommendedAgentsForCoverageGapInput;
|
|
165871
|
+
};
|
|
165528
165872
|
export declare type QueryAgentWorkspace_RecommendedAgentsForGapArgs = {
|
|
165529
165873
|
input: AgentWorkspaceRecommendedAgentsForGapInput;
|
|
165530
165874
|
};
|
|
@@ -165654,6 +165998,10 @@ export declare type QueryAgent_SessionQueryArgs = {
|
|
|
165654
165998
|
shardingContext?: InputMaybe<Scalars['String']['input']>;
|
|
165655
165999
|
sort?: InputMaybe<Scalars['String']['input']>;
|
|
165656
166000
|
};
|
|
166001
|
+
export declare type QueryAiCoreApi_FetchRsaReportArgs = {
|
|
166002
|
+
jobId: Scalars['ID']['input'];
|
|
166003
|
+
queryTypes?: InputMaybe<Array<AiCoreApiRsaQueryType>>;
|
|
166004
|
+
};
|
|
165657
166005
|
export declare type QueryAiCoreApi_VsaQuestionsByProjectArgs = {
|
|
165658
166006
|
projectAri: Scalars['ID']['input'];
|
|
165659
166007
|
};
|
|
@@ -167183,6 +167531,9 @@ export declare type QueryConfluence_IsWatchingLabelArgs = {
|
|
|
167183
167531
|
export declare type QueryConfluence_LatestInProgressSpacePermissionTransitionTaskIdArgs = {
|
|
167184
167532
|
cloudId: Scalars['ID']['input'];
|
|
167185
167533
|
};
|
|
167534
|
+
export declare type QueryConfluence_LatestInProgressSpacePermissionTransitionTaskProgressArgs = {
|
|
167535
|
+
cloudId: Scalars['ID']['input'];
|
|
167536
|
+
};
|
|
167186
167537
|
export declare type QueryConfluence_LatestKnowledgeGraphObjectV2Args = {
|
|
167187
167538
|
cloudId: Scalars['String']['input'];
|
|
167188
167539
|
contentId: Scalars['ID']['input'];
|
|
@@ -168422,6 +168773,7 @@ export declare type QueryFocus_ViewsSearchArgs = {
|
|
|
168422
168773
|
cloudId: Scalars['ID']['input'];
|
|
168423
168774
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
168424
168775
|
q?: InputMaybe<Scalars['String']['input']>;
|
|
168776
|
+
sort?: InputMaybe<Array<MercuryViewSort>>;
|
|
168425
168777
|
};
|
|
168426
168778
|
export declare type QueryForYouFeedArgs = {
|
|
168427
168779
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -168507,6 +168859,11 @@ export declare type QueryGoals_AllWatchedGoalUpdatesCountArgs = {
|
|
|
168507
168859
|
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
168508
168860
|
stateFilter?: InputMaybe<TownsquareUpdateStateFilter>;
|
|
168509
168861
|
};
|
|
168862
|
+
export declare type QueryGoals_AppPermissionPoliciesArgs = {
|
|
168863
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
168864
|
+
containerId: Scalars['ID']['input'];
|
|
168865
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
168866
|
+
};
|
|
168510
168867
|
export declare type QueryGoals_AppSettingsArgs = {
|
|
168511
168868
|
containerId: Scalars['ID']['input'];
|
|
168512
168869
|
};
|
|
@@ -169418,6 +169775,9 @@ export declare type QueryLoom_WorkspaceTrendingVideosArgs = {
|
|
|
169418
169775
|
export declare type QueryLoom_WorkspacesArgs = {
|
|
169419
169776
|
ids: Array<Scalars['ID']['input']>;
|
|
169420
169777
|
};
|
|
169778
|
+
export declare type QueryM360Service_HelloWorldArgs = {
|
|
169779
|
+
name?: InputMaybe<Scalars['String']['input']>;
|
|
169780
|
+
};
|
|
169421
169781
|
export declare type QueryMacroBodyRendererArgs = {
|
|
169422
169782
|
adf: Scalars['String']['input'];
|
|
169423
169783
|
containedRender?: InputMaybe<Scalars['Boolean']['input']>;
|
|
@@ -169711,6 +170071,11 @@ export declare type QueryProjects_AllWatchedProjectUpdatesCountArgs = {
|
|
|
169711
170071
|
createdBefore?: InputMaybe<Scalars['DateTime']['input']>;
|
|
169712
170072
|
stateFilter?: InputMaybe<TownsquareUpdateStateFilter>;
|
|
169713
170073
|
};
|
|
170074
|
+
export declare type QueryProjects_AppPermissionPoliciesArgs = {
|
|
170075
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
170076
|
+
containerId: Scalars['ID']['input'];
|
|
170077
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
170078
|
+
};
|
|
169714
170079
|
export declare type QueryProjects_AppSettingsArgs = {
|
|
169715
170080
|
containerId: Scalars['ID']['input'];
|
|
169716
170081
|
};
|
|
@@ -170289,6 +170654,11 @@ export declare type QueryStakeholderComms_GetDraftComponentsByPageIdV2Args = {
|
|
|
170289
170654
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
170290
170655
|
nestedComponentConnectionInput: StakeholderCommsNestedComponentConnectionInput;
|
|
170291
170656
|
};
|
|
170657
|
+
export declare type QueryStakeholderComms_GetDraftEmailForIncidentArgs = {
|
|
170658
|
+
audienceType: StakeholderCommsDraftEmailAudienceType;
|
|
170659
|
+
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
170660
|
+
incidentId: Scalars['String']['input'];
|
|
170661
|
+
};
|
|
170292
170662
|
export declare type QueryStakeholderComms_GetDraftPageByIdArgs = {
|
|
170293
170663
|
cloudId?: InputMaybe<Scalars['String']['input']>;
|
|
170294
170664
|
pageId: Scalars['String']['input'];
|
|
@@ -196746,6 +197116,16 @@ export declare type StakeholderCommsDnsRecordType = {
|
|
|
196746
197116
|
name: Scalars['String']['output'];
|
|
196747
197117
|
records: Array<StakeholderCommsDnsRecord>;
|
|
196748
197118
|
};
|
|
197119
|
+
export declare enum StakeholderCommsDraftEmailAudienceType {
|
|
197120
|
+
External = "EXTERNAL",
|
|
197121
|
+
Internal = "INTERNAL"
|
|
197122
|
+
}
|
|
197123
|
+
export declare type StakeholderCommsDraftEmailResponse = {
|
|
197124
|
+
__typename?: 'StakeholderCommsDraftEmailResponse';
|
|
197125
|
+
body?: Maybe<Scalars['String']['output']>;
|
|
197126
|
+
error?: Maybe<Scalars['String']['output']>;
|
|
197127
|
+
subject?: Maybe<Scalars['String']['output']>;
|
|
197128
|
+
};
|
|
196749
197129
|
export declare enum StakeholderCommsErrorType {
|
|
196750
197130
|
SystemError = "SYSTEM_ERROR",
|
|
196751
197131
|
ValidationError = "VALIDATION_ERROR"
|
|
@@ -198105,6 +198485,7 @@ export declare type Subscription = {
|
|
|
198105
198485
|
convoai_onAgentSessionCreate?: Maybe<ConvoAiAgentSessionCreate>;
|
|
198106
198486
|
convoai_onAgentSessionUpdate?: Maybe<ConvoAiAgentSessionUpdate>;
|
|
198107
198487
|
convoai_onAgentSessionUpdatedByProjects?: Maybe<ConvoAiAgentSessionUpdatedByProjects>;
|
|
198488
|
+
convoai_onSessionUpdateByScopeId?: Maybe<ConvoAiAgentSessionUpdatePayload>;
|
|
198108
198489
|
devOps?: Maybe<AriGraphSubscriptions>;
|
|
198109
198490
|
devai_onAutodevJobLogGroupsUpdated?: Maybe<DevAiAutodevLogGroupConnection>;
|
|
198110
198491
|
devai_onAutodevJobLogsListUpdated?: Maybe<DevAiAutodevLogConnection>;
|
|
@@ -198167,6 +198548,10 @@ export declare type SubscriptionConvoai_OnAgentSessionUpdatedByProjectsArgs = {
|
|
|
198167
198548
|
cloudId: Scalars['ID']['input'];
|
|
198168
198549
|
projectIds: Array<Scalars['String']['input']>;
|
|
198169
198550
|
};
|
|
198551
|
+
export declare type SubscriptionConvoai_OnSessionUpdateByScopeIdArgs = {
|
|
198552
|
+
cloudId: Scalars['ID']['input'];
|
|
198553
|
+
scopeId: Scalars['String']['input'];
|
|
198554
|
+
};
|
|
198170
198555
|
export declare type SubscriptionDevai_OnAutodevJobLogGroupsUpdatedArgs = {
|
|
198171
198556
|
cloudId: Scalars['ID']['input'];
|
|
198172
198557
|
jobId: Scalars['ID']['input'];
|
|
@@ -200859,6 +201244,7 @@ export declare type TownsquareGoal = Node & {
|
|
|
200859
201244
|
parentGoalSuggestions?: Maybe<TownsquareGoalConnection>;
|
|
200860
201245
|
progress?: Maybe<TownsquareGoalProgress>;
|
|
200861
201246
|
projects?: Maybe<TownsquareProjectConnection>;
|
|
201247
|
+
restrictedBy?: Maybe<TownsquareGoal>;
|
|
200862
201248
|
risks?: Maybe<TownsquareRiskConnection>;
|
|
200863
201249
|
scoringMode?: Maybe<TownsquareGoalScoringMode>;
|
|
200864
201250
|
slackChannels?: Maybe<TownsquareSlackConnectionConnection>;
|
|
@@ -201139,8 +201525,12 @@ export declare type TownsquareGoalManageAccessInput = {
|
|
|
201139
201525
|
accessLevel?: InputMaybe<TownsquareGoalAccessLevel>;
|
|
201140
201526
|
added?: InputMaybe<TownsquareGoalManageAccessAddedInput>;
|
|
201141
201527
|
goalId: Scalars['ID']['input'];
|
|
201528
|
+
modified?: InputMaybe<TownsquareGoalManageAccessModifiedInput>;
|
|
201142
201529
|
revoked?: InputMaybe<TownsquareGoalManageAccessRevokedInput>;
|
|
201143
201530
|
};
|
|
201531
|
+
export declare type TownsquareGoalManageAccessModifiedInput = {
|
|
201532
|
+
roles: Array<TownsquareGoalRoleModifiedInput>;
|
|
201533
|
+
};
|
|
201144
201534
|
export declare type TownsquareGoalManageAccessPayload = {
|
|
201145
201535
|
__typename?: 'TownsquareGoalManageAccessPayload';
|
|
201146
201536
|
addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareGoalAccessEdge>>>;
|
|
@@ -201214,6 +201604,10 @@ export declare type TownsquareGoalRevokeAccessPayload = {
|
|
|
201214
201604
|
revokedPrincipalIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
201215
201605
|
success: Scalars['Boolean']['output'];
|
|
201216
201606
|
};
|
|
201607
|
+
export declare type TownsquareGoalRoleModifiedInput = {
|
|
201608
|
+
principalId: Scalars['ID']['input'];
|
|
201609
|
+
role: TownsquareGoalAccessRoleInput;
|
|
201610
|
+
};
|
|
201217
201611
|
export declare enum TownsquareGoalScoringMode {
|
|
201218
201612
|
Okr = "OKR",
|
|
201219
201613
|
Simple = "SIMPLE"
|
|
@@ -201425,6 +201819,49 @@ export declare type TownsquareGoalsAddViewPayload = {
|
|
|
201425
201819
|
success: Scalars['Boolean']['output'];
|
|
201426
201820
|
views?: Maybe<TownsquareGoalUserViews>;
|
|
201427
201821
|
};
|
|
201822
|
+
export declare enum TownsquareGoalsAppPermission {
|
|
201823
|
+
Archive = "ARCHIVE",
|
|
201824
|
+
ConnectionsManage = "CONNECTIONS_MANAGE",
|
|
201825
|
+
Create = "CREATE",
|
|
201826
|
+
Manage = "MANAGE",
|
|
201827
|
+
Update = "UPDATE",
|
|
201828
|
+
ViewsExport = "VIEWS_EXPORT"
|
|
201829
|
+
}
|
|
201830
|
+
export declare type TownsquareGoalsAppPermissionEntry = {
|
|
201831
|
+
__typename?: 'TownsquareGoalsAppPermissionEntry';
|
|
201832
|
+
isPermitted?: Maybe<Scalars['Boolean']['output']>;
|
|
201833
|
+
permission?: Maybe<TownsquareGoalsAppPermission>;
|
|
201834
|
+
};
|
|
201835
|
+
export declare type TownsquareGoalsAppPermissionInput = {
|
|
201836
|
+
isPermitted: Scalars['Boolean']['input'];
|
|
201837
|
+
permission: TownsquareGoalsAppPermission;
|
|
201838
|
+
};
|
|
201839
|
+
export declare type TownsquareGoalsAppPermissionPolicy = Node & {
|
|
201840
|
+
__typename?: 'TownsquareGoalsAppPermissionPolicy';
|
|
201841
|
+
appPermissions?: Maybe<Array<Maybe<TownsquareGoalsAppPermissionEntry>>>;
|
|
201842
|
+
group?: Maybe<IdentityGroup>;
|
|
201843
|
+
id: Scalars['ID']['output'];
|
|
201844
|
+
isDefaultGroup?: Maybe<Scalars['Boolean']['output']>;
|
|
201845
|
+
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
201846
|
+
productRoles?: Maybe<Array<Maybe<TownsquareProductRole>>>;
|
|
201847
|
+
resourceId: Scalars['ID']['output'];
|
|
201848
|
+
scopedGroupId: Scalars['ID']['output'];
|
|
201849
|
+
userCount?: Maybe<Scalars['Int']['output']>;
|
|
201850
|
+
};
|
|
201851
|
+
export declare type TownsquareGoalsAppPermissionPolicyConnection = {
|
|
201852
|
+
__typename?: 'TownsquareGoalsAppPermissionPolicyConnection';
|
|
201853
|
+
edges?: Maybe<Array<Maybe<TownsquareGoalsAppPermissionPolicyEdge>>>;
|
|
201854
|
+
pageInfo: PageInfo;
|
|
201855
|
+
};
|
|
201856
|
+
export declare type TownsquareGoalsAppPermissionPolicyEdge = {
|
|
201857
|
+
__typename?: 'TownsquareGoalsAppPermissionPolicyEdge';
|
|
201858
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
201859
|
+
node?: Maybe<TownsquareGoalsAppPermissionPolicy>;
|
|
201860
|
+
};
|
|
201861
|
+
export declare type TownsquareGoalsAppPermissionPolicyInput = {
|
|
201862
|
+
appPermissions: Array<TownsquareGoalsAppPermissionInput>;
|
|
201863
|
+
id: Scalars['ID']['input'];
|
|
201864
|
+
};
|
|
201428
201865
|
export declare type TownsquareGoalsAppSettings = {
|
|
201429
201866
|
__typename?: 'TownsquareGoalsAppSettings';
|
|
201430
201867
|
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -202366,6 +202803,10 @@ export declare type TownsquareNumberCustomFieldDefinition = Node & TownsquareCus
|
|
|
202366
202803
|
token?: Maybe<Scalars['String']['output']>;
|
|
202367
202804
|
type?: Maybe<TownsquareCustomFieldType>;
|
|
202368
202805
|
};
|
|
202806
|
+
export declare type TownsquareProductRole = {
|
|
202807
|
+
__typename?: 'TownsquareProductRole';
|
|
202808
|
+
role: Scalars['ID']['output'];
|
|
202809
|
+
};
|
|
202369
202810
|
export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
202370
202811
|
__typename?: 'TownsquareProject';
|
|
202371
202812
|
access?: Maybe<TownsquareProjectAccessConnection>;
|
|
@@ -202415,6 +202856,7 @@ export declare type TownsquareProject = HasMercuryProjectFields & Node & {
|
|
|
202415
202856
|
msteamsChannels?: Maybe<TownsquareMsteamsConnectedChannelConnection>;
|
|
202416
202857
|
name: Scalars['String']['output'];
|
|
202417
202858
|
owner?: Maybe<User>;
|
|
202859
|
+
pendingAutoAttachMilestones?: Maybe<Array<TownsquareMilestone>>;
|
|
202418
202860
|
risks?: Maybe<TownsquareRiskConnection>;
|
|
202419
202861
|
slackChannels?: Maybe<TownsquareSlackConnectionConnection>;
|
|
202420
202862
|
startDate?: Maybe<Scalars['DateTime']['output']>;
|
|
@@ -202697,9 +203139,13 @@ export declare type TownsquareProjectManageAccessAddedInput = {
|
|
|
202697
203139
|
export declare type TownsquareProjectManageAccessInput = {
|
|
202698
203140
|
accessLevel?: InputMaybe<TownsquareProjectAccessLevel>;
|
|
202699
203141
|
added?: InputMaybe<TownsquareProjectManageAccessAddedInput>;
|
|
203142
|
+
modified?: InputMaybe<TownsquareProjectManageAccessModifiedInput>;
|
|
202700
203143
|
projectId: Scalars['ID']['input'];
|
|
202701
203144
|
revoked?: InputMaybe<TownsquareProjectManageAccessRevokedInput>;
|
|
202702
203145
|
};
|
|
203146
|
+
export declare type TownsquareProjectManageAccessModifiedInput = {
|
|
203147
|
+
roles: Array<TownsquareProjectRoleModifiedInput>;
|
|
203148
|
+
};
|
|
202703
203149
|
export declare type TownsquareProjectManageAccessPayload = {
|
|
202704
203150
|
__typename?: 'TownsquareProjectManageAccessPayload';
|
|
202705
203151
|
addedPrincipalEdges?: Maybe<Array<Maybe<TownsquareProjectAccessEdge>>>;
|
|
@@ -202734,6 +203180,10 @@ export declare type TownsquareProjectRevokeAccessPayload = {
|
|
|
202734
203180
|
revokedPrincipalIds?: Maybe<Array<Scalars['ID']['output']>>;
|
|
202735
203181
|
success: Scalars['Boolean']['output'];
|
|
202736
203182
|
};
|
|
203183
|
+
export declare type TownsquareProjectRoleModifiedInput = {
|
|
203184
|
+
principalId: Scalars['ID']['input'];
|
|
203185
|
+
role: TownsquareProjectAccessRoleInput;
|
|
203186
|
+
};
|
|
202737
203187
|
export declare enum TownsquareProjectSortEnum {
|
|
202738
203188
|
CreationDateAsc = "CREATION_DATE_ASC",
|
|
202739
203189
|
CreationDateDesc = "CREATION_DATE_DESC",
|
|
@@ -202907,6 +203357,49 @@ export declare type TownsquareProjectsAddViewPayload = {
|
|
|
202907
203357
|
success: Scalars['Boolean']['output'];
|
|
202908
203358
|
views?: Maybe<TownsquareProjectUserViews>;
|
|
202909
203359
|
};
|
|
203360
|
+
export declare enum TownsquareProjectsAppPermission {
|
|
203361
|
+
Archive = "ARCHIVE",
|
|
203362
|
+
ConnectionsManage = "CONNECTIONS_MANAGE",
|
|
203363
|
+
Create = "CREATE",
|
|
203364
|
+
Manage = "MANAGE",
|
|
203365
|
+
Update = "UPDATE",
|
|
203366
|
+
ViewsExport = "VIEWS_EXPORT"
|
|
203367
|
+
}
|
|
203368
|
+
export declare type TownsquareProjectsAppPermissionEntry = {
|
|
203369
|
+
__typename?: 'TownsquareProjectsAppPermissionEntry';
|
|
203370
|
+
isPermitted?: Maybe<Scalars['Boolean']['output']>;
|
|
203371
|
+
permission?: Maybe<TownsquareProjectsAppPermission>;
|
|
203372
|
+
};
|
|
203373
|
+
export declare type TownsquareProjectsAppPermissionInput = {
|
|
203374
|
+
isPermitted: Scalars['Boolean']['input'];
|
|
203375
|
+
permission: TownsquareProjectsAppPermission;
|
|
203376
|
+
};
|
|
203377
|
+
export declare type TownsquareProjectsAppPermissionPolicy = Node & {
|
|
203378
|
+
__typename?: 'TownsquareProjectsAppPermissionPolicy';
|
|
203379
|
+
appPermissions?: Maybe<Array<Maybe<TownsquareProjectsAppPermissionEntry>>>;
|
|
203380
|
+
group?: Maybe<IdentityGroup>;
|
|
203381
|
+
id: Scalars['ID']['output'];
|
|
203382
|
+
isDefaultGroup?: Maybe<Scalars['Boolean']['output']>;
|
|
203383
|
+
isEditable?: Maybe<Scalars['Boolean']['output']>;
|
|
203384
|
+
productRoles?: Maybe<Array<Maybe<TownsquareProductRole>>>;
|
|
203385
|
+
resourceId: Scalars['ID']['output'];
|
|
203386
|
+
scopedGroupId: Scalars['ID']['output'];
|
|
203387
|
+
userCount?: Maybe<Scalars['Int']['output']>;
|
|
203388
|
+
};
|
|
203389
|
+
export declare type TownsquareProjectsAppPermissionPolicyConnection = {
|
|
203390
|
+
__typename?: 'TownsquareProjectsAppPermissionPolicyConnection';
|
|
203391
|
+
edges?: Maybe<Array<Maybe<TownsquareProjectsAppPermissionPolicyEdge>>>;
|
|
203392
|
+
pageInfo: PageInfo;
|
|
203393
|
+
};
|
|
203394
|
+
export declare type TownsquareProjectsAppPermissionPolicyEdge = {
|
|
203395
|
+
__typename?: 'TownsquareProjectsAppPermissionPolicyEdge';
|
|
203396
|
+
cursor?: Maybe<Scalars['String']['output']>;
|
|
203397
|
+
node?: Maybe<TownsquareProjectsAppPermissionPolicy>;
|
|
203398
|
+
};
|
|
203399
|
+
export declare type TownsquareProjectsAppPermissionPolicyInput = {
|
|
203400
|
+
appPermissions: Array<TownsquareProjectsAppPermissionInput>;
|
|
203401
|
+
id: Scalars['ID']['input'];
|
|
203402
|
+
};
|
|
202910
203403
|
export declare type TownsquareProjectsAppSettings = {
|
|
202911
203404
|
__typename?: 'TownsquareProjectsAppSettings';
|
|
202912
203405
|
aiEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -203851,6 +204344,16 @@ export declare type TownsquareUpdateEdge = {
|
|
|
203851
204344
|
cursor: Scalars['String']['output'];
|
|
203852
204345
|
node?: Maybe<TownsquareUpdate>;
|
|
203853
204346
|
};
|
|
204347
|
+
export declare type TownsquareUpdateGoalsAppPermissionPoliciesInput = {
|
|
204348
|
+
containerId: Scalars['ID']['input'];
|
|
204349
|
+
policies: Array<TownsquareGoalsAppPermissionPolicyInput>;
|
|
204350
|
+
};
|
|
204351
|
+
export declare type TownsquareUpdateGoalsAppPermissionPoliciesPayload = {
|
|
204352
|
+
__typename?: 'TownsquareUpdateGoalsAppPermissionPoliciesPayload';
|
|
204353
|
+
errors?: Maybe<Array<MutationError>>;
|
|
204354
|
+
success: Scalars['Boolean']['output'];
|
|
204355
|
+
updatedPolicies?: Maybe<Array<Maybe<TownsquareGoalsAppPermissionPolicy>>>;
|
|
204356
|
+
};
|
|
203854
204357
|
export declare type TownsquareUpdateHighlightInput = {
|
|
203855
204358
|
description: Scalars['String']['input'];
|
|
203856
204359
|
summary: Scalars['String']['input'];
|
|
@@ -203883,6 +204386,16 @@ export declare type TownsquareUpdateNoteInput = {
|
|
|
203883
204386
|
updateNoteId?: InputMaybe<Scalars['ID']['input']>;
|
|
203884
204387
|
uuid?: InputMaybe<Scalars['String']['input']>;
|
|
203885
204388
|
};
|
|
204389
|
+
export declare type TownsquareUpdateProjectsAppPermissionPoliciesInput = {
|
|
204390
|
+
containerId: Scalars['ID']['input'];
|
|
204391
|
+
policies: Array<TownsquareProjectsAppPermissionPolicyInput>;
|
|
204392
|
+
};
|
|
204393
|
+
export declare type TownsquareUpdateProjectsAppPermissionPoliciesPayload = {
|
|
204394
|
+
__typename?: 'TownsquareUpdateProjectsAppPermissionPoliciesPayload';
|
|
204395
|
+
errors?: Maybe<Array<MutationError>>;
|
|
204396
|
+
success: Scalars['Boolean']['output'];
|
|
204397
|
+
updatedPolicies?: Maybe<Array<Maybe<TownsquareProjectsAppPermissionPolicy>>>;
|
|
204398
|
+
};
|
|
203886
204399
|
export declare enum TownsquareUpdateStateFilter {
|
|
203887
204400
|
Active = "ACTIVE",
|
|
203888
204401
|
AtRisk = "AT_RISK",
|
|
@@ -205806,6 +206319,7 @@ export declare type TrelloConvertBoardToTemplateInput = {
|
|
|
205806
206319
|
export declare type TrelloConvertBoardToTemplatePayload = Payload & {
|
|
205807
206320
|
__typename?: 'TrelloConvertBoardToTemplatePayload';
|
|
205808
206321
|
board?: Maybe<TrelloBoard>;
|
|
206322
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
205809
206323
|
errors?: Maybe<Array<MutationError>>;
|
|
205810
206324
|
success: Scalars['Boolean']['output'];
|
|
205811
206325
|
};
|
|
@@ -205935,6 +206449,7 @@ export declare type TrelloCreateBoardWithAiInput = {
|
|
|
205935
206449
|
export declare type TrelloCreateBoardWithAiPayload = Payload & {
|
|
205936
206450
|
__typename?: 'TrelloCreateBoardWithAiPayload';
|
|
205937
206451
|
board?: Maybe<TrelloBoard>;
|
|
206452
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
205938
206453
|
errors?: Maybe<Array<MutationError>>;
|
|
205939
206454
|
success: Scalars['Boolean']['output'];
|
|
205940
206455
|
};
|
|
@@ -207278,6 +207793,7 @@ export declare type TrelloMirrorCard = {
|
|
|
207278
207793
|
id: Scalars['ID']['output'];
|
|
207279
207794
|
mirrorCard?: Maybe<TrelloBaseCard>;
|
|
207280
207795
|
sourceBoard?: Maybe<TrelloBoard>;
|
|
207796
|
+
sourceBoardV2?: Maybe<TrelloBaseBoard>;
|
|
207281
207797
|
sourceCard?: Maybe<TrelloBaseCard>;
|
|
207282
207798
|
};
|
|
207283
207799
|
export declare type TrelloMirrorCardConnection = {
|
|
@@ -209023,6 +209539,7 @@ export declare type TrelloReactionLimits = {
|
|
|
209023
209539
|
};
|
|
209024
209540
|
export declare type TrelloRefreshManifestInput = {
|
|
209025
209541
|
cardId: Scalars['ID']['input'];
|
|
209542
|
+
prompt?: InputMaybe<Scalars['String']['input']>;
|
|
209026
209543
|
};
|
|
209027
209544
|
export declare type TrelloRefreshManifestPayload = Payload & {
|
|
209028
209545
|
__typename?: 'TrelloRefreshManifestPayload';
|
|
@@ -209668,6 +210185,7 @@ export declare type TrelloUpdateBoardVisibilityInput = {
|
|
|
209668
210185
|
export declare type TrelloUpdateBoardVisibilityPayload = Payload & {
|
|
209669
210186
|
__typename?: 'TrelloUpdateBoardVisibilityPayload';
|
|
209670
210187
|
board?: Maybe<TrelloBoard>;
|
|
210188
|
+
boardV2?: Maybe<TrelloBaseBoard>;
|
|
209671
210189
|
errors?: Maybe<Array<MutationError>>;
|
|
209672
210190
|
success: Scalars['Boolean']['output'];
|
|
209673
210191
|
};
|